
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



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

.ir_c00000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_3d663f4abe486ad66654234a.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_dd6ea5f15a166d6e7b1c3fb0.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00000{vertical-align:-92.145150px;}
.v3_c00000{vertical-align:-81.718415px;}
.v2_c00000{vertical-align:-80.642034px;}
.v0_c00000{vertical-align:0.000000px;}
.lsd_c00000{letter-spacing:-0.140040px;}
.lsc_c00000{letter-spacing:0.000000px;}
.ls3_c00000{letter-spacing:0.016314px;}
.lsa_c00000{letter-spacing:0.040786px;}
.ls7_c00000{letter-spacing:0.073415px;}
.lsb_c00000{letter-spacing:0.081572px;}
.ls9_c00000{letter-spacing:0.089730px;}
.ls5_c00000{letter-spacing:0.097887px;}
.ls0_c00000{letter-spacing:0.114201px;}
.ls6_c00000{letter-spacing:0.138673px;}
.ls8_c00000{letter-spacing:0.179459px;}
.ls4_c00000{letter-spacing:0.187617px;}
.ls1_c00000{letter-spacing:1271.653902px;}
.ls2_c00000{letter-spacing:2560.813452px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00000{word-spacing:-0.231066px;}
.ws1_c00000{word-spacing:-0.179459px;}
.wsb_c00000{word-spacing:-0.122359px;}
.ws0_c00000{word-spacing:-0.097887px;}
.wsa_c00000{word-spacing:-0.073415px;}
.wsc_c00000{word-spacing:-0.024472px;}
.ws2_c00000{word-spacing:0.000000px;}
.ws5_c00000{word-spacing:6.925497px;}
.ws4_c00000{word-spacing:7.023384px;}
.ws8_c00000{word-spacing:11.150947px;}
.ws9_c00000{word-spacing:11.281463px;}
.ws6_c00000{word-spacing:32.049796px;}
.ws7_c00000{word-spacing:32.074268px;}
._1_c00000{margin-left:-1.378574px;}
._0_c00000{width:1.218348px;}
._2_c00000{width:2345.985490px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs1_c00000{font-size:70.020000px;}
.fs0_c00000{font-size:81.572400px;}
.y0_c00000{bottom:0.000000px;}
.y27_c00000{bottom:224.670469px;}
.y26_c00000{bottom:248.251011px;}
.y25_c00000{bottom:271.741823px;}
.y24_c00000{bottom:295.140866px;}
.y23_c00000{bottom:318.721407px;}
.y22_c00000{bottom:342.120450px;}
.y21_c00000{bottom:365.249442px;}
.y20_c00000{bottom:385.409950px;}
.y1f_c00000{bottom:405.570459px;}
.y1e_c00000{bottom:425.639941px;}
.y1d_c00000{bottom:466.230054px;}
.y1c_c00000{bottom:489.720866px;}
.y1b_c00000{bottom:513.301407px;}
.y1a_c00000{bottom:536.700450px;}
.y19_c00000{bottom:559.829950px;}
.y18_c00000{bottom:579.990459px;}
.y28_c00000{bottom:604.380450px;}
.y17_c00000{bottom:620.220450px;}
.y16_c00000{bottom:663.776737px;}
.y15_c00000{bottom:683.937246px;}
.y14_c00000{bottom:704.097754px;}
.y13_c00000{bottom:724.167237px;}
.y12_c00000{bottom:744.327745px;}
.y11_c00000{bottom:764.488254px;}
.y10_c00000{bottom:784.557736px;}
.yf_c00000{bottom:804.718245px;}
.ye_c00000{bottom:824.878754px;}
.yd_c00000{bottom:844.948236px;}
.yc_c00000{bottom:865.108744px;}
.yb_c00000{bottom:885.269253px;}
.ya_c00000{bottom:905.338735px;}
.y9_c00000{bottom:925.499244px;}
.y8_c00000{bottom:945.659752px;}
.y7_c00000{bottom:965.820261px;}
.y6_c00000{bottom:985.889743px;}
.y5_c00000{bottom:1006.050252px;}
.y4_c00000{bottom:1026.210760px;}
.y3_c00000{bottom:1046.099941px;}
.y2_c00000{bottom:1066.260450px;}
.y1_c00000{bottom:1086.870450px;}
.h3_c00000{height:68.720801px;}
.h2_c00000{height:73.028672px;}
.h1_c00000{height:85.077464px;}
.h0_c00000{height:1263.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x4_c00000{left:124.110274px;}
.x1_c00000{left:201.960000px;}
.x3_c00000{left:227.969190px;}
.x8_c00000{left:286.289693px;}
.x7_c00000{left:290.969910px;}
.x9_c00000{left:362.070000px;}
.x6_c00000{left:446.400193px;}
.x2_c00000{left:458.370000px;}
.x5_c00000{left:768.689613px;}
@media print{
.v1_c00000{vertical-align:-81.906800pt;}
.v3_c00000{vertical-align:-72.638591pt;}
.v2_c00000{vertical-align:-71.681808pt;}
.v0_c00000{vertical-align:0.000000pt;}
.lsd_c00000{letter-spacing:-0.124480pt;}
.lsc_c00000{letter-spacing:0.000000pt;}
.ls3_c00000{letter-spacing:0.014502pt;}
.lsa_c00000{letter-spacing:0.036254pt;}
.ls7_c00000{letter-spacing:0.065258pt;}
.lsb_c00000{letter-spacing:0.072509pt;}
.ls9_c00000{letter-spacing:0.079760pt;}
.ls5_c00000{letter-spacing:0.087011pt;}
.ls0_c00000{letter-spacing:0.101512pt;}
.ls6_c00000{letter-spacing:0.123265pt;}
.ls8_c00000{letter-spacing:0.159519pt;}
.ls4_c00000{letter-spacing:0.166770pt;}
.ls1_c00000{letter-spacing:1130.359024pt;}
.ls2_c00000{letter-spacing:2276.278624pt;}
.ws3_c00000{word-spacing:-0.205392pt;}
.ws1_c00000{word-spacing:-0.159519pt;}
.wsb_c00000{word-spacing:-0.108763pt;}
.ws0_c00000{word-spacing:-0.087011pt;}
.wsa_c00000{word-spacing:-0.065258pt;}
.wsc_c00000{word-spacing:-0.021753pt;}
.ws2_c00000{word-spacing:0.000000pt;}
.ws5_c00000{word-spacing:6.155997pt;}
.ws4_c00000{word-spacing:6.243008pt;}
.ws8_c00000{word-spacing:9.911953pt;}
.ws9_c00000{word-spacing:10.027967pt;}
.ws6_c00000{word-spacing:28.488708pt;}
.ws7_c00000{word-spacing:28.510460pt;}
._1_c00000{margin-left:-1.225399pt;}
._0_c00000{width:1.082976pt;}
._2_c00000{width:2085.320436pt;}
.fs1_c00000{font-size:62.240000pt;}
.fs0_c00000{font-size:72.508800pt;}
.y0_c00000{bottom:0.000000pt;}
.y27_c00000{bottom:199.707084pt;}
.y26_c00000{bottom:220.667565pt;}
.y25_c00000{bottom:241.548287pt;}
.y24_c00000{bottom:262.347436pt;}
.y23_c00000{bottom:283.307917pt;}
.y22_c00000{bottom:304.107067pt;}
.y21_c00000{bottom:324.666171pt;}
.y20_c00000{bottom:342.586623pt;}
.y1f_c00000{bottom:360.507075pt;}
.y1e_c00000{bottom:378.346615pt;}
.y1d_c00000{bottom:414.426714pt;}
.y1c_c00000{bottom:435.307436pt;}
.y1b_c00000{bottom:456.267917pt;}
.y1a_c00000{bottom:477.067067pt;}
.y19_c00000{bottom:497.626623pt;}
.y18_c00000{bottom:515.547075pt;}
.y28_c00000{bottom:537.227067pt;}
.y17_c00000{bottom:551.307067pt;}
.y16_c00000{bottom:590.023767pt;}
.y15_c00000{bottom:607.944219pt;}
.y14_c00000{bottom:625.864671pt;}
.y13_c00000{bottom:643.704211pt;}
.y12_c00000{bottom:661.624663pt;}
.y11_c00000{bottom:679.545115pt;}
.y10_c00000{bottom:697.384655pt;}
.yf_c00000{bottom:715.305107pt;}
.ye_c00000{bottom:733.225559pt;}
.yd_c00000{bottom:751.065099pt;}
.yc_c00000{bottom:768.985551pt;}
.yb_c00000{bottom:786.906003pt;}
.ya_c00000{bottom:804.745543pt;}
.y9_c00000{bottom:822.665995pt;}
.y8_c00000{bottom:840.586447pt;}
.y7_c00000{bottom:858.506899pt;}
.y6_c00000{bottom:876.346439pt;}
.y5_c00000{bottom:894.266891pt;}
.y4_c00000{bottom:912.187343pt;}
.y3_c00000{bottom:929.866615pt;}
.y2_c00000{bottom:947.787067pt;}
.y1_c00000{bottom:966.107067pt;}
.h3_c00000{height:61.085156pt;}
.h2_c00000{height:64.914375pt;}
.h1_c00000{height:75.624413pt;}
.h0_c00000{height:1122.666667pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x4_c00000{left:110.320244pt;}
.x1_c00000{left:179.520000pt;}
.x3_c00000{left:202.639280pt;}
.x8_c00000{left:254.479727pt;}
.x7_c00000{left:258.639920pt;}
.x9_c00000{left:321.840000pt;}
.x6_c00000{left:396.800172pt;}
.x2_c00000{left:407.440000pt;}
.x5_c00000{left:683.279656pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_807714efae6fba22b31b3c7f.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_fb2c0d3227df13afc448b350.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00001{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m7_c00001{transform:matrix(0.231557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231557,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls10_c00001{letter-spacing:-4.928550px;}
.lsc_c00001{letter-spacing:-4.214700px;}
.lsb_c00001{letter-spacing:-4.078125px;}
.lsd_c00001{letter-spacing:-3.263438px;}
.lsf_c00001{letter-spacing:-3.239100px;}
.ls8_c00001{letter-spacing:-2.445938px;}
.lse_c00001{letter-spacing:-2.433900px;}
.ls6_c00001{letter-spacing:-1.645425px;}
.lsa_c00001{letter-spacing:-1.631250px;}
.ls7_c00001{letter-spacing:-0.818850px;}
.ls9_c00001{letter-spacing:-0.815625px;}
.ls5_c00001{letter-spacing:0.000000px;}
.ls3_c00001{letter-spacing:0.818850px;}
.ls2_c00001{letter-spacing:1.645425px;}
.ls1_c00001{letter-spacing:3.290850px;}
.ls0_c00001{letter-spacing:4.110473px;}
.ls4_c00001{letter-spacing:8.219400px;}
.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;}
._e_c00001{margin-left:-22.774399px;}
._1_c00001{margin-left:-3.246357px;}
._f_c00001{width:1.220747px;}
._5_c00001{width:2.641720px;}
._10_c00001{width:3.940144px;}
._2_c00001{width:5.562066px;}
._4_c00001{width:6.805758px;}
._3_c00001{width:8.180775px;}
._0_c00001{width:10.035268px;}
._12_c00001{width:11.895678px;}
._d_c00001{width:14.200353px;}
._11_c00001{width:17.118863px;}
._b_c00001{width:24.100793px;}
._7_c00001{width:26.109717px;}
._c_c00001{width:27.379940px;}
._8_c00001{width:29.565473px;}
._6_c00001{width:33.066082px;}
._9_c00001{width:36.740250px;}
._a_c00001{width:38.653158px;}
.fc0_c00001{color:transparent;}
.fs0_c00001{font-size:77.250000px;}
.fs2_c00001{font-size:79.500000px;}
.fs1_c00001{font-size:83.250000px;}
.fs6_c00001{font-size:91.500000px;}
.fs3_c00001{font-size:93.750000px;}
.fs4_c00001{font-size:94.500000px;}
.fs5_c00001{font-size:96.000000px;}
.y0_c00001{bottom:0.000000px;}
.yc_c00001{bottom:313.559235px;}
.yd_c00001{bottom:313.560285px;}
.yb_c00001{bottom:463.679025px;}
.ya_c00001{bottom:552.599460px;}
.y9_c00001{bottom:641.881170px;}
.y8_c00001{bottom:733.320870px;}
.y7_c00001{bottom:768.961035px;}
.y6_c00001{bottom:804.240420px;}
.y5_c00001{bottom:1015.560240px;}
.y4_c00001{bottom:1015.560660px;}
.y3_c00001{bottom:1045.440855px;}
.y2_c00001{bottom:1045.441755px;}
.y1_c00001{bottom:1104.841185px;}
.h1_c00001{height:77.853516px;}
.h3_c00001{height:80.121094px;}
.h2_c00001{height:83.900391px;}
.h4_c00001{height:94.482422px;}
.h5_c00001{height:95.238281px;}
.h7_c00001{height:95.431641px;}
.h6_c00001{height:96.750000px;}
.h0_c00001{height:1263.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x6_c00001{left:141.479715px;}
.x1_c00001{left:142.559100px;}
.xb_c00001{left:218.519685px;}
.x2_c00001{left:313.919535px;}
.x3_c00001{left:327.958350px;}
.xd_c00001{left:358.917045px;}
.x4_c00001{left:378.359235px;}
.x5_c00001{left:393.479235px;}
.xc_c00001{left:412.918350px;}
.x8_c00001{left:662.759085px;}
.x9_c00001{left:690.479235px;}
.xa_c00001{left:765.719520px;}
.x7_c00001{left:797.759130px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls10_c00001{letter-spacing:-4.380933pt;}
.lsc_c00001{letter-spacing:-3.746400pt;}
.lsb_c00001{letter-spacing:-3.625000pt;}
.lsd_c00001{letter-spacing:-2.900833pt;}
.lsf_c00001{letter-spacing:-2.879200pt;}
.ls8_c00001{letter-spacing:-2.174167pt;}
.lse_c00001{letter-spacing:-2.163467pt;}
.ls6_c00001{letter-spacing:-1.462600pt;}
.lsa_c00001{letter-spacing:-1.450000pt;}
.ls7_c00001{letter-spacing:-0.727867pt;}
.ls9_c00001{letter-spacing:-0.725000pt;}
.ls5_c00001{letter-spacing:0.000000pt;}
.ls3_c00001{letter-spacing:0.727867pt;}
.ls2_c00001{letter-spacing:1.462600pt;}
.ls1_c00001{letter-spacing:2.925200pt;}
.ls0_c00001{letter-spacing:3.653753pt;}
.ls4_c00001{letter-spacing:7.306133pt;}
.ws0_c00001{word-spacing:0.000000pt;}
._e_c00001{margin-left:-20.243910pt;}
._1_c00001{margin-left:-2.885651pt;}
._f_c00001{width:1.085109pt;}
._5_c00001{width:2.348195pt;}
._10_c00001{width:3.502351pt;}
._2_c00001{width:4.944058pt;}
._4_c00001{width:6.049563pt;}
._3_c00001{width:7.271800pt;}
._0_c00001{width:8.920238pt;}
._12_c00001{width:10.573936pt;}
._d_c00001{width:12.622536pt;}
._11_c00001{width:15.216767pt;}
._b_c00001{width:21.422928pt;}
._7_c00001{width:23.208638pt;}
._c_c00001{width:24.337725pt;}
._8_c00001{width:26.280420pt;}
._6_c00001{width:29.392072pt;}
._9_c00001{width:32.658000pt;}
._a_c00001{width:34.358362pt;}
.fs0_c00001{font-size:68.666667pt;}
.fs2_c00001{font-size:70.666667pt;}
.fs1_c00001{font-size:74.000000pt;}
.fs6_c00001{font-size:81.333333pt;}
.fs3_c00001{font-size:83.333333pt;}
.fs4_c00001{font-size:84.000000pt;}
.fs5_c00001{font-size:85.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.yc_c00001{bottom:278.719320pt;}
.yd_c00001{bottom:278.720253pt;}
.yb_c00001{bottom:412.159133pt;}
.ya_c00001{bottom:491.199520pt;}
.y9_c00001{bottom:570.561040pt;}
.y8_c00001{bottom:651.840773pt;}
.y7_c00001{bottom:683.520920pt;}
.y6_c00001{bottom:714.880373pt;}
.y5_c00001{bottom:902.720213pt;}
.y4_c00001{bottom:902.720587pt;}
.y3_c00001{bottom:929.280760pt;}
.y2_c00001{bottom:929.281560pt;}
.y1_c00001{bottom:982.081053pt;}
.h1_c00001{height:69.203125pt;}
.h3_c00001{height:71.218750pt;}
.h2_c00001{height:74.578125pt;}
.h4_c00001{height:83.984375pt;}
.h5_c00001{height:84.656250pt;}
.h7_c00001{height:84.828125pt;}
.h6_c00001{height:86.000000pt;}
.h0_c00001{height:1122.666667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x6_c00001{left:125.759747pt;}
.x1_c00001{left:126.719200pt;}
.xb_c00001{left:194.239720pt;}
.x2_c00001{left:279.039587pt;}
.x3_c00001{left:291.518533pt;}
.xd_c00001{left:319.037373pt;}
.x4_c00001{left:336.319320pt;}
.x5_c00001{left:349.759320pt;}
.xc_c00001{left:367.038533pt;}
.x8_c00001{left:589.119187pt;}
.x9_c00001{left:613.759320pt;}
.xa_c00001{left:680.639573pt;}
.x7_c00001{left:709.119227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9499b385f387e22ec4b52a91.woff2')format("woff");}.ff1_c00002{font-family:ff1_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;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_fdd16db9222d6868b282faf3.woff2')format("woff");}.ff2_c00002{font-family:ff2_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:ff3_c00002;src:url('chunks/assets/font_12ca47076d5e4e7e38a0b0b8.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.364746;font-style:normal;font-weight:normal;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_7a2cae85ae58d8cd248614c3.woff2')format("woff");}.ff4_c00002{font-family:ff4_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;}
.m6_c00002{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mb_c00002{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2_c00002{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.ma_c00002{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m8_c00002{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m3_c00002{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m0_c00002{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00002{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m9_c00002{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m7_c00002{transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls9_c00002{letter-spacing:-13.274115px;}
.lse_c00002{letter-spacing:-12.433298px;}
.lsa_c00002{letter-spacing:-4.543088px;}
.lsb_c00002{letter-spacing:-3.751800px;}
.ls6_c00002{letter-spacing:-3.031875px;}
.lsd_c00002{letter-spacing:-3.003000px;}
.ls8_c00002{letter-spacing:-3.001350px;}
.ls7_c00002{letter-spacing:-2.382623px;}
.ls1_c00002{letter-spacing:-2.288805px;}
.ls2_c00002{letter-spacing:-2.267213px;}
.ls11_c00002{letter-spacing:-1.606800px;}
.lsf_c00002{letter-spacing:-1.590750px;}
.ls3_c00002{letter-spacing:-1.512000px;}
.ls4_c00002{letter-spacing:-0.756000px;}
.ls10_c00002{letter-spacing:-0.733200px;}
.ls5_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:0.756000px;}
.lsc_c00002{letter-spacing:2.722200px;}
.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;}
._1_c00002{margin-left:-8.308488px;}
._2_c00002{margin-left:-5.307568px;}
._12_c00002{margin-left:-4.141644px;}
._0_c00002{margin-left:-3.102508px;}
._9_c00002{margin-left:-1.334449px;}
._b_c00002{width:1.161987px;}
._3_c00002{width:2.332272px;}
._7_c00002{width:3.758980px;}
._4_c00002{width:5.305206px;}
._11_c00002{width:6.497602px;}
._6_c00002{width:8.449814px;}
._13_c00002{width:9.837511px;}
._8_c00002{width:11.342363px;}
._5_c00002{width:14.434814px;}
._a_c00002{width:18.994682px;}
._14_c00002{width:22.278557px;}
._f_c00002{width:26.103202px;}
._10_c00002{width:29.400162px;}
._e_c00002{width:30.759144px;}
._c_c00002{width:32.823121px;}
._d_c00002{width:33.894303px;}
.fc0_c00002{color:transparent;}
.fs5_c00002{font-size:78.000000px;}
.fs1_c00002{font-size:78.750000px;}
.fs0_c00002{font-size:79.500000px;}
.fs3_c00002{font-size:80.250000px;}
.fs2_c00002{font-size:82.500000px;}
.fs6_c00002{font-size:87.750000px;}
.fs4_c00002{font-size:88.500000px;}
.y0_c00002{bottom:0.000000px;}
.y19_c00002{bottom:465.840585px;}
.y17_c00002{bottom:495.000600px;}
.y18_c00002{bottom:495.001050px;}
.y16_c00002{bottom:524.880315px;}
.y15_c00002{bottom:554.401650px;}
.y13_c00002{bottom:583.920930px;}
.y14_c00002{bottom:583.921185px;}
.y12_c00002{bottom:613.079985px;}
.y11_c00002{bottom:642.601320px;}
.y10_c00002{bottom:642.601455px;}
.yf_c00002{bottom:672.120990px;}
.yd_c00002{bottom:702.360120px;}
.ye_c00002{bottom:702.360900px;}
.yc_c00002{bottom:731.521275px;}
.yb_c00002{bottom:761.761185px;}
.ya_c00002{bottom:761.761320px;}
.y8_c00002{bottom:791.280810px;}
.y9_c00002{bottom:791.280855px;}
.y7_c00002{bottom:821.520720px;}
.y6_c00002{bottom:850.681455px;}
.y4_c00002{bottom:880.199865px;}
.y5_c00002{bottom:880.200990px;}
.y3_c00002{bottom:1000.081050px;}
.y2_c00002{bottom:1029.600765px;}
.y1_c00002{bottom:1118.520720px;}
.h6_c00002{height:76.552734px;}
.h2_c00002{height:77.288818px;}
.ha_c00002{height:78.609375px;}
.h4_c00002{height:78.760986px;}
.h9_c00002{height:79.365234px;}
.h1_c00002{height:80.121094px;}
.h3_c00002{height:80.969238px;}
.h7_c00002{height:81.351562px;}
.h8_c00002{height:86.721680px;}
.h5_c00002{height:87.462891px;}
.h0_c00002{height:1263.000000px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:162.000000px;}
.x4_c00002{left:194.039400px;}
.x5_c00002{left:216.000405px;}
.x11_c00002{left:217.079985px;}
.xa_c00002{left:242.279850px;}
.x6_c00002{left:248.039385px;}
.xd_c00002{left:254.519100px;}
.x7_c00002{left:273.958350px;}
.xe_c00002{left:286.919535px;}
.xf_c00002{left:328.319250px;}
.x10_c00002{left:368.639700px;}
.x2_c00002{left:469.439670px;}
.x3_c00002{left:482.758530px;}
.x8_c00002{left:486.359250px;}
.xb_c00002{left:518.398635px;}
.x12_c00002{left:526.318770px;}
.x9_c00002{left:539.639100px;}
.xc_c00002{left:542.878920px;}
.x13_c00002{left:544.678530px;}
.x14_c00002{left:651.958335px;}
.x15_c00002{left:674.279850px;}
.x16_c00002{left:793.798920px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls9_c00002{letter-spacing:-11.799213pt;}
.lse_c00002{letter-spacing:-11.051820pt;}
.lsa_c00002{letter-spacing:-4.038300pt;}
.lsb_c00002{letter-spacing:-3.334933pt;}
.ls6_c00002{letter-spacing:-2.695000pt;}
.lsd_c00002{letter-spacing:-2.669333pt;}
.ls8_c00002{letter-spacing:-2.667867pt;}
.ls7_c00002{letter-spacing:-2.117887pt;}
.ls1_c00002{letter-spacing:-2.034493pt;}
.ls2_c00002{letter-spacing:-2.015300pt;}
.ls11_c00002{letter-spacing:-1.428267pt;}
.lsf_c00002{letter-spacing:-1.414000pt;}
.ls3_c00002{letter-spacing:-1.344000pt;}
.ls4_c00002{letter-spacing:-0.672000pt;}
.ls10_c00002{letter-spacing:-0.651733pt;}
.ls5_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:0.672000pt;}
.lsc_c00002{letter-spacing:2.419733pt;}
.ws0_c00002{word-spacing:0.000000pt;}
._1_c00002{margin-left:-7.385323pt;}
._2_c00002{margin-left:-4.717838pt;}
._12_c00002{margin-left:-3.681462pt;}
._0_c00002{margin-left:-2.757785pt;}
._9_c00002{margin-left:-1.186177pt;}
._b_c00002{width:1.032877pt;}
._3_c00002{width:2.073131pt;}
._7_c00002{width:3.341315pt;}
._4_c00002{width:4.715738pt;}
._11_c00002{width:5.775646pt;}
._6_c00002{width:7.510946pt;}
._13_c00002{width:8.744454pt;}
._8_c00002{width:10.082100pt;}
._5_c00002{width:12.830946pt;}
._a_c00002{width:16.884162pt;}
._14_c00002{width:19.803162pt;}
._f_c00002{width:23.202846pt;}
._10_c00002{width:26.133477pt;}
._e_c00002{width:27.341462pt;}
._c_c00002{width:29.176108pt;}
._d_c00002{width:30.128269pt;}
.fs5_c00002{font-size:69.333333pt;}
.fs1_c00002{font-size:70.000000pt;}
.fs0_c00002{font-size:70.666667pt;}
.fs3_c00002{font-size:71.333333pt;}
.fs2_c00002{font-size:73.333333pt;}
.fs6_c00002{font-size:78.000000pt;}
.fs4_c00002{font-size:78.666667pt;}
.y0_c00002{bottom:0.000000pt;}
.y19_c00002{bottom:414.080520pt;}
.y17_c00002{bottom:440.000533pt;}
.y18_c00002{bottom:440.000933pt;}
.y16_c00002{bottom:466.560280pt;}
.y15_c00002{bottom:492.801467pt;}
.y13_c00002{bottom:519.040827pt;}
.y14_c00002{bottom:519.041053pt;}
.y12_c00002{bottom:544.959987pt;}
.y11_c00002{bottom:571.201173pt;}
.y10_c00002{bottom:571.201293pt;}
.yf_c00002{bottom:597.440880pt;}
.yd_c00002{bottom:624.320107pt;}
.ye_c00002{bottom:624.320800pt;}
.yc_c00002{bottom:650.241133pt;}
.yb_c00002{bottom:677.121053pt;}
.ya_c00002{bottom:677.121173pt;}
.y8_c00002{bottom:703.360720pt;}
.y9_c00002{bottom:703.360760pt;}
.y7_c00002{bottom:730.240640pt;}
.y6_c00002{bottom:756.161293pt;}
.y4_c00002{bottom:782.399880pt;}
.y5_c00002{bottom:782.400880pt;}
.y3_c00002{bottom:888.960933pt;}
.y2_c00002{bottom:915.200680pt;}
.y1_c00002{bottom:994.240640pt;}
.h6_c00002{height:68.046875pt;}
.h2_c00002{height:68.701172pt;}
.ha_c00002{height:69.875000pt;}
.h4_c00002{height:70.009766pt;}
.h9_c00002{height:70.546875pt;}
.h1_c00002{height:71.218750pt;}
.h3_c00002{height:71.972656pt;}
.h7_c00002{height:72.312500pt;}
.h8_c00002{height:77.085938pt;}
.h5_c00002{height:77.744792pt;}
.h0_c00002{height:1122.666667pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:144.000000pt;}
.x4_c00002{left:172.479467pt;}
.x5_c00002{left:192.000360pt;}
.x11_c00002{left:192.959987pt;}
.xa_c00002{left:215.359867pt;}
.x6_c00002{left:220.479453pt;}
.xd_c00002{left:226.239200pt;}
.x7_c00002{left:243.518533pt;}
.xe_c00002{left:255.039587pt;}
.xf_c00002{left:291.839333pt;}
.x10_c00002{left:327.679733pt;}
.x2_c00002{left:417.279707pt;}
.x3_c00002{left:429.118693pt;}
.x8_c00002{left:432.319333pt;}
.xb_c00002{left:460.798787pt;}
.x12_c00002{left:467.838907pt;}
.x9_c00002{left:479.679200pt;}
.xc_c00002{left:482.559040pt;}
.x13_c00002{left:484.158693pt;}
.x14_c00002{left:579.518520pt;}
.x15_c00002{left:599.359867pt;}
.x16_c00002{left:705.599040pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_642a8f58e611b623c16b0608.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_b210be9c34c598b282372be4.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_4ceaf1a62635408cabe2eff0.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_0da9eac54d0a3602eb1aabc0.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_dcc2e73efa53bff01c5aef78.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:1.284180;font-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_c00003{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m9_c00003{transform:matrix(0.225260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225260,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);}
.mc_c00003{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m18_c00003{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m26_c00003{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m8_c00003{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m28_c00003{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m2a_c00003{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m19_c00003{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00003{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m2c_c00003{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m20_c00003{transform:matrix(0.254491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254491,0.000000,0.000000,0.250000,0,0);}
.mb_c00003{transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);}
.m23_c00003{transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);}
.m1a_c00003{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m4_c00003{transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);}
.ma_c00003{transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);}
.m11_c00003{transform:matrix(0.260736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260736,0.000000,0.000000,0.250000,0,0);}
.m22_c00003{transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);}
.m1b_c00003{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.m17_c00003{transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262270,0.000000,0.000000,0.250000,0,0);}
.m21_c00003{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.mf_c00003{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m1c_c00003{transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);}
.m12_c00003{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m2b_c00003{transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00003{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m24_c00003{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m2d_c00003{transform:matrix(0.265723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265723,0.000000,0.000000,0.250000,0,0);}
.m13_c00003{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00003{transform:matrix(0.267188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267188,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m1e_c00003{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m1d_c00003{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.m29_c00003{transform:matrix(0.270440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270440,0.000000,0.000000,0.250000,0,0);}
.m27_c00003{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m6_c00003{transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);}
.m25_c00003{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m10_c00003{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m16_c00003{transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);}
.m15_c00003{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m14_c00003{transform:matrix(0.723118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723118,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls23_c00003{letter-spacing:-9.747135px;}
.ls12_c00003{letter-spacing:-9.455775px;}
.lsd_c00003{letter-spacing:-7.880850px;}
.ls35_c00003{letter-spacing:-7.496850px;}
.ls1e_c00003{letter-spacing:-7.364175px;}
.lsc_c00003{letter-spacing:-7.090898px;}
.ls36_c00003{letter-spacing:-6.752700px;}
.ls20_c00003{letter-spacing:-6.463800px;}
.ls28_c00003{letter-spacing:-6.305925px;}
.lsf_c00003{letter-spacing:-5.514728px;}
.ls13_c00003{letter-spacing:-5.194200px;}
.ls17_c00003{letter-spacing:-4.553018px;}
.ls39_c00003{letter-spacing:-3.899475px;}
.lsa_c00003{letter-spacing:-3.790733px;}
.ls48_c00003{letter-spacing:-3.149850px;}
.ls5_c00003{letter-spacing:-3.037125px;}
.ls40_c00003{letter-spacing:-3.001200px;}
.ls3f_c00003{letter-spacing:-2.364878px;}
.ls3_c00003{letter-spacing:-2.276175px;}
.ls22_c00003{letter-spacing:-1.574925px;}
.ls6_c00003{letter-spacing:-1.515893px;}
.ls24_c00003{letter-spacing:-1.500600px;}
.ls27_c00003{letter-spacing:-0.790575px;}
.ls21_c00003{letter-spacing:-0.756900px;}
.ls14_c00003{letter-spacing:-0.750915px;}
.ls8_c00003{letter-spacing:-0.437265px;}
.ls25_c00003{letter-spacing:-0.363225px;}
.ls16_c00003{letter-spacing:-0.292500px;}
.lsb_c00003{letter-spacing:-0.291600px;}
.ls33_c00003{letter-spacing:-0.149738px;}
.ls1_c00003{letter-spacing:0.000000px;}
.ls41_c00003{letter-spacing:0.040223px;}
.ls1b_c00003{letter-spacing:0.060750px;}
.ls2c_c00003{letter-spacing:0.072000px;}
.ls29_c00003{letter-spacing:0.087150px;}
.ls7_c00003{letter-spacing:0.125745px;}
.ls3d_c00003{letter-spacing:0.155025px;}
.ls15_c00003{letter-spacing:0.172200px;}
.ls9_c00003{letter-spacing:0.186750px;}
.ls2d_c00003{letter-spacing:0.251618px;}
.ls1a_c00003{letter-spacing:0.267300px;}
.ls34_c00003{letter-spacing:0.272250px;}
.ls30_c00003{letter-spacing:0.288075px;}
.ls2a_c00003{letter-spacing:0.307500px;}
.ls1d_c00003{letter-spacing:0.347655px;}
.ls4_c00003{letter-spacing:0.356168px;}
.lse_c00003{letter-spacing:0.431888px;}
.ls38_c00003{letter-spacing:0.588000px;}
.ls2e_c00003{letter-spacing:0.600000px;}
.ls10_c00003{letter-spacing:0.602453px;}
.ls31_c00003{letter-spacing:0.602700px;}
.ls2b_c00003{letter-spacing:0.611250px;}
.ls26_c00003{letter-spacing:0.633750px;}
.ls18_c00003{letter-spacing:0.646703px;}
.ls1f_c00003{letter-spacing:0.660150px;}
.ls3b_c00003{letter-spacing:0.678600px;}
.ls43_c00003{letter-spacing:0.713633px;}
.ls11_c00003{letter-spacing:0.740228px;}
.ls0_c00003{letter-spacing:0.750915px;}
.ls3e_c00003{letter-spacing:0.762000px;}
.ls46_c00003{letter-spacing:0.762008px;}
.ls1c_c00003{letter-spacing:0.790575px;}
.ls47_c00003{letter-spacing:1.380600px;}
.ls32_c00003{letter-spacing:1.574925px;}
.ls2_c00003{letter-spacing:1.657500px;}
.ls37_c00003{letter-spacing:1.896075px;}
.ls45_c00003{letter-spacing:2.224875px;}
.ls19_c00003{letter-spacing:2.364878px;}
.ls42_c00003{letter-spacing:2.741558px;}
.ls2f_c00003{letter-spacing:3.149850px;}
.ls44_c00003{letter-spacing:7.414125px;}
.ls3a_c00003{letter-spacing:14.258813px;}
.ls3c_c00003{letter-spacing:23.576400px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
._f_c00003{margin-left:-31.410348px;}
._6_c00003{margin-left:-14.226003px;}
._7_c00003{margin-left:-12.054060px;}
._3_c00003{margin-left:-9.558600px;}
._4_c00003{margin-left:-7.834326px;}
._a_c00003{margin-left:-6.826705px;}
._1_c00003{margin-left:-5.680304px;}
._5_c00003{margin-left:-3.739274px;}
._2_c00003{margin-left:-2.000194px;}
._e_c00003{width:1.541384px;}
._0_c00003{width:2.699880px;}
._11_c00003{width:4.260288px;}
._9_c00003{width:5.333628px;}
._d_c00003{width:6.817800px;}
._c_c00003{width:27.822360px;}
._b_c00003{width:31.549710px;}
._10_c00003{width:33.585240px;}
._8_c00003{width:44.234115px;}
.fc0_c00003{color:transparent;}
.fs16_c00003{font-size:54.000000px;}
.fs15_c00003{font-size:56.250000px;}
.fs17_c00003{font-size:60.000000px;}
.fs0_c00003{font-size:61.500000px;}
.fs8_c00003{font-size:62.250000px;}
.fs5_c00003{font-size:63.000000px;}
.fs1_c00003{font-size:63.750000px;}
.fs12_c00003{font-size:65.250000px;}
.fsc_c00003{font-size:66.000000px;}
.fs2_c00003{font-size:66.750000px;}
.fs10_c00003{font-size:69.750000px;}
.fs11_c00003{font-size:115.500000px;}
.fse_c00003{font-size:117.000000px;}
.fs6_c00003{font-size:118.500000px;}
.fs14_c00003{font-size:119.250000px;}
.fs13_c00003{font-size:120.000000px;}
.fs19_c00003{font-size:120.750000px;}
.fs7_c00003{font-size:121.500000px;}
.fsf_c00003{font-size:122.250000px;}
.fsd_c00003{font-size:123.000000px;}
.fsa_c00003{font-size:123.750000px;}
.fs4_c00003{font-size:124.500000px;}
.fsb_c00003{font-size:125.250000px;}
.fs3_c00003{font-size:126.750000px;}
.fs18_c00003{font-size:129.750000px;}
.fs9_c00003{font-size:144.000000px;}
.y0_c00003{bottom:0.000000px;}
.y3e_c00003{bottom:251.999400px;}
.y3d_c00003{bottom:252.360285px;}
.y3b_c00003{bottom:267.118635px;}
.y3c_c00003{bottom:267.119385px;}
.y39_c00003{bottom:282.239250px;}
.y3a_c00003{bottom:282.600150px;}
.y38_c00003{bottom:297.720150px;}
.y37_c00003{bottom:298.079385px;}
.y36_c00003{bottom:328.680150px;}
.y35_c00003{bottom:359.279250px;}
.y34_c00003{bottom:390.239220px;}
.y33_c00003{bottom:390.959385px;}
.y32_c00003{bottom:420.840135px;}
.y30_c00003{bottom:450.900195px;}
.y31_c00003{bottom:450.900285px;}
.y2e_c00003{bottom:466.558830px;}
.y2f_c00003{bottom:466.559100px;}
.y2d_c00003{bottom:497.879970px;}
.y2c_c00003{bottom:528.479235px;}
.y2b_c00003{bottom:558.719100px;}
.y2a_c00003{bottom:574.199850px;}
.y29_c00003{bottom:574.200645px;}
.y28_c00003{bottom:589.679070px;}
.y26_c00003{bottom:604.798365px;}
.y27_c00003{bottom:604.798920px;}
.y25_c00003{bottom:619.918950px;}
.y23_c00003{bottom:634.678935px;}
.y24_c00003{bottom:634.679670px;}
.y22_c00003{bottom:649.799520px;}
.y20_c00003{bottom:664.918755px;}
.y21_c00003{bottom:664.919535px;}
.y1f_c00003{bottom:680.400285px;}
.y1e_c00003{bottom:680.401080px;}
.y1d_c00003{bottom:695.879520px;}
.y1c_c00003{bottom:696.240420px;}
.y1b_c00003{bottom:726.480285px;}
.y1a_c00003{bottom:757.440255px;}
.y19_c00003{bottom:788.400240px;}
.y18_c00003{bottom:818.999355px;}
.y17_c00003{bottom:820.439670px;}
.y15_c00003{bottom:834.118650px;}
.y16_c00003{bottom:834.119385px;}
.y14_c00003{bottom:849.239220px;}
.y13_c00003{bottom:849.239775px;}
.y12_c00003{bottom:865.079400px;}
.y11_c00003{bottom:895.680090px;}
.y10_c00003{bottom:926.279205px;}
.yf_c00003{bottom:941.760135px;}
.ye_c00003{bottom:941.760795px;}
.yd_c00003{bottom:957.239220px;}
.yc_c00003{bottom:957.239955px;}
.yb_c00003{bottom:987.119940px;}
.ya_c00003{bottom:987.479190px;}
.y8_c00003{bottom:1018.079295px;}
.y9_c00003{bottom:1018.079955px;}
.y7_c00003{bottom:1033.199805px;}
.y5_c00003{bottom:1048.319640px;}
.y6_c00003{bottom:1048.319820px;}
.y4_c00003{bottom:1063.798920px;}
.y3_c00003{bottom:1079.279850px;}
.y2_c00003{bottom:1109.878860px;}
.y1_c00003{bottom:1140.479640px;}
.h19_c00003{height:56.320312px;}
.h18_c00003{height:58.666992px;}
.h1a_c00003{height:59.296875px;}
.h1_c00003{height:60.779297px;}
.h9_c00003{height:61.520508px;}
.h6_c00003{height:61.800293px;}
.h13_c00003{height:62.261719px;}
.h1d_c00003{height:62.536011px;}
.h2_c00003{height:63.002930px;}
.h14_c00003{height:64.485352px;}
.h17_c00003{height:64.743164px;}
.hd_c00003{height:65.226562px;}
.h3_c00003{height:65.478882px;}
.h11_c00003{height:72.747070px;}
.h12_c00003{height:120.462891px;}
.hf_c00003{height:122.027344px;}
.h7_c00003{height:123.591797px;}
.h16_c00003{height:124.374023px;}
.h15_c00003{height:125.156250px;}
.h1c_c00003{height:125.938477px;}
.h8_c00003{height:126.720703px;}
.h10_c00003{height:127.502930px;}
.he_c00003{height:128.285156px;}
.hb_c00003{height:129.067383px;}
.h5_c00003{height:129.849609px;}
.hc_c00003{height:130.631836px;}
.h4_c00003{height:132.196289px;}
.h1b_c00003{height:135.325195px;}
.ha_c00003{height:150.187500px;}
.h0_c00003{height:1263.000000px;}
.w0_c00003{width:892.500000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:141.118815px;}
.x1_c00003{left:142.199850px;}
.x24_c00003{left:143.279250px;}
.x35_c00003{left:144.358665px;}
.xb_c00003{left:153.359850px;}
.x2d_c00003{left:154.798515px;}
.xc_c00003{left:168.479685px;}
.x2e_c00003{left:169.918350px;}
.x1b_c00003{left:171.719565px;}
.xd_c00003{left:187.198785px;}
.x1f_c00003{left:205.558635px;}
.x3_c00003{left:207.719100px;}
.x1c_c00003{left:214.918950px;}
.x9_c00003{left:216.718500px;}
.x20_c00003{left:223.918350px;}
.x36_c00003{left:225.358635px;}
.x11_c00003{left:259.199385px;}
.x12_c00003{left:287.278800px;}
.x7_c00003{left:289.080000px;}
.x5_c00003{left:307.439685px;}
.x34_c00003{left:309.239250px;}
.x21_c00003{left:353.158785px;}
.xe_c00003{left:370.798515px;}
.xf_c00003{left:397.798515px;}
.x16_c00003{left:405.359250px;}
.x15_c00003{left:416.159820px;}
.x18_c00003{left:422.639700px;}
.x29_c00003{left:424.439250px;}
.x27_c00003{left:443.878320px;}
.x19_c00003{left:449.639700px;}
.x14_c00003{left:452.159415px;}
.x13_c00003{left:460.799565px;}
.x2b_c00003{left:461.878920px;}
.x2f_c00003{left:478.080000px;}
.x1d_c00003{left:497.519070px;}
.x10_c00003{left:506.159415px;}
.x26_c00003{left:515.878920px;}
.x30_c00003{left:523.078770px;}
.x22_c00003{left:542.878920px;}
.x31_c00003{left:543.958335px;}
.x2a_c00003{left:552.598530px;}
.x1a_c00003{left:560.879520px;}
.x25_c00003{left:579.598530px;}
.x23_c00003{left:597.239820px;}
.x1e_c00003{left:642.958920px;}
.x28_c00003{left:662.038920px;}
.x37_c00003{left:680.759535px;}
.x2c_c00003{left:707.398635px;}
.x17_c00003{left:742.318770px;}
.x33_c00003{left:761.398635px;}
.x8_c00003{left:775.079955px;}
.xa_c00003{left:785.878965px;}
.x32_c00003{left:786.958380px;}
.x6_c00003{left:793.078770px;}
.x4_c00003{left:794.519070px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls23_c00003{letter-spacing:-8.664120pt;}
.ls12_c00003{letter-spacing:-8.405133pt;}
.lsd_c00003{letter-spacing:-7.005200pt;}
.ls35_c00003{letter-spacing:-6.663867pt;}
.ls1e_c00003{letter-spacing:-6.545933pt;}
.lsc_c00003{letter-spacing:-6.303020pt;}
.ls36_c00003{letter-spacing:-6.002400pt;}
.ls20_c00003{letter-spacing:-5.745600pt;}
.ls28_c00003{letter-spacing:-5.605267pt;}
.lsf_c00003{letter-spacing:-4.901980pt;}
.ls13_c00003{letter-spacing:-4.617067pt;}
.ls17_c00003{letter-spacing:-4.047127pt;}
.ls39_c00003{letter-spacing:-3.466200pt;}
.lsa_c00003{letter-spacing:-3.369540pt;}
.ls48_c00003{letter-spacing:-2.799867pt;}
.ls5_c00003{letter-spacing:-2.699667pt;}
.ls40_c00003{letter-spacing:-2.667733pt;}
.ls3f_c00003{letter-spacing:-2.102113pt;}
.ls3_c00003{letter-spacing:-2.023267pt;}
.ls22_c00003{letter-spacing:-1.399933pt;}
.ls6_c00003{letter-spacing:-1.347460pt;}
.ls24_c00003{letter-spacing:-1.333867pt;}
.ls27_c00003{letter-spacing:-0.702733pt;}
.ls21_c00003{letter-spacing:-0.672800pt;}
.ls14_c00003{letter-spacing:-0.667480pt;}
.ls8_c00003{letter-spacing:-0.388680pt;}
.ls25_c00003{letter-spacing:-0.322867pt;}
.ls16_c00003{letter-spacing:-0.260000pt;}
.lsb_c00003{letter-spacing:-0.259200pt;}
.ls33_c00003{letter-spacing:-0.133100pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.ls41_c00003{letter-spacing:0.035753pt;}
.ls1b_c00003{letter-spacing:0.054000pt;}
.ls2c_c00003{letter-spacing:0.064000pt;}
.ls29_c00003{letter-spacing:0.077467pt;}
.ls7_c00003{letter-spacing:0.111773pt;}
.ls3d_c00003{letter-spacing:0.137800pt;}
.ls15_c00003{letter-spacing:0.153067pt;}
.ls9_c00003{letter-spacing:0.166000pt;}
.ls2d_c00003{letter-spacing:0.223660pt;}
.ls1a_c00003{letter-spacing:0.237600pt;}
.ls34_c00003{letter-spacing:0.242000pt;}
.ls30_c00003{letter-spacing:0.256067pt;}
.ls2a_c00003{letter-spacing:0.273333pt;}
.ls1d_c00003{letter-spacing:0.309027pt;}
.ls4_c00003{letter-spacing:0.316593pt;}
.lse_c00003{letter-spacing:0.383900pt;}
.ls38_c00003{letter-spacing:0.522667pt;}
.ls2e_c00003{letter-spacing:0.533333pt;}
.ls10_c00003{letter-spacing:0.535513pt;}
.ls31_c00003{letter-spacing:0.535733pt;}
.ls2b_c00003{letter-spacing:0.543333pt;}
.ls26_c00003{letter-spacing:0.563333pt;}
.ls18_c00003{letter-spacing:0.574847pt;}
.ls1f_c00003{letter-spacing:0.586800pt;}
.ls3b_c00003{letter-spacing:0.603200pt;}
.ls43_c00003{letter-spacing:0.634340pt;}
.ls11_c00003{letter-spacing:0.657980pt;}
.ls0_c00003{letter-spacing:0.667480pt;}
.ls3e_c00003{letter-spacing:0.677333pt;}
.ls46_c00003{letter-spacing:0.677340pt;}
.ls1c_c00003{letter-spacing:0.702733pt;}
.ls47_c00003{letter-spacing:1.227200pt;}
.ls32_c00003{letter-spacing:1.399933pt;}
.ls2_c00003{letter-spacing:1.473333pt;}
.ls37_c00003{letter-spacing:1.685400pt;}
.ls45_c00003{letter-spacing:1.977667pt;}
.ls19_c00003{letter-spacing:2.102113pt;}
.ls42_c00003{letter-spacing:2.436940pt;}
.ls2f_c00003{letter-spacing:2.799867pt;}
.ls44_c00003{letter-spacing:6.590333pt;}
.ls3a_c00003{letter-spacing:12.674500pt;}
.ls3c_c00003{letter-spacing:20.956800pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._f_c00003{margin-left:-27.920310pt;}
._6_c00003{margin-left:-12.645336pt;}
._7_c00003{margin-left:-10.714720pt;}
._3_c00003{margin-left:-8.496533pt;}
._4_c00003{margin-left:-6.963845pt;}
._a_c00003{margin-left:-6.068182pt;}
._1_c00003{margin-left:-5.049159pt;}
._5_c00003{margin-left:-3.323799pt;}
._2_c00003{margin-left:-1.777950pt;}
._e_c00003{width:1.370119pt;}
._0_c00003{width:2.399893pt;}
._11_c00003{width:3.786923pt;}
._9_c00003{width:4.741003pt;}
._d_c00003{width:6.060267pt;}
._c_c00003{width:24.730987pt;}
._b_c00003{width:28.044187pt;}
._10_c00003{width:29.853547pt;}
._8_c00003{width:39.319213pt;}
.fs16_c00003{font-size:48.000000pt;}
.fs15_c00003{font-size:50.000000pt;}
.fs17_c00003{font-size:53.333333pt;}
.fs0_c00003{font-size:54.666667pt;}
.fs8_c00003{font-size:55.333333pt;}
.fs5_c00003{font-size:56.000000pt;}
.fs1_c00003{font-size:56.666667pt;}
.fs12_c00003{font-size:58.000000pt;}
.fsc_c00003{font-size:58.666667pt;}
.fs2_c00003{font-size:59.333333pt;}
.fs10_c00003{font-size:62.000000pt;}
.fs11_c00003{font-size:102.666667pt;}
.fse_c00003{font-size:104.000000pt;}
.fs6_c00003{font-size:105.333333pt;}
.fs14_c00003{font-size:106.000000pt;}
.fs13_c00003{font-size:106.666667pt;}
.fs19_c00003{font-size:107.333333pt;}
.fs7_c00003{font-size:108.000000pt;}
.fsf_c00003{font-size:108.666667pt;}
.fsd_c00003{font-size:109.333333pt;}
.fsa_c00003{font-size:110.000000pt;}
.fs4_c00003{font-size:110.666667pt;}
.fsb_c00003{font-size:111.333333pt;}
.fs3_c00003{font-size:112.666667pt;}
.fs18_c00003{font-size:115.333333pt;}
.fs9_c00003{font-size:128.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y3e_c00003{bottom:223.999467pt;}
.y3d_c00003{bottom:224.320253pt;}
.y3b_c00003{bottom:237.438787pt;}
.y3c_c00003{bottom:237.439453pt;}
.y39_c00003{bottom:250.879333pt;}
.y3a_c00003{bottom:251.200133pt;}
.y38_c00003{bottom:264.640133pt;}
.y37_c00003{bottom:264.959453pt;}
.y36_c00003{bottom:292.160133pt;}
.y35_c00003{bottom:319.359333pt;}
.y34_c00003{bottom:346.879307pt;}
.y33_c00003{bottom:347.519453pt;}
.y32_c00003{bottom:374.080120pt;}
.y30_c00003{bottom:400.800173pt;}
.y31_c00003{bottom:400.800253pt;}
.y2e_c00003{bottom:414.718960pt;}
.y2f_c00003{bottom:414.719200pt;}
.y2d_c00003{bottom:442.559973pt;}
.y2c_c00003{bottom:469.759320pt;}
.y2b_c00003{bottom:496.639200pt;}
.y2a_c00003{bottom:510.399867pt;}
.y29_c00003{bottom:510.400573pt;}
.y28_c00003{bottom:524.159173pt;}
.y26_c00003{bottom:537.598547pt;}
.y27_c00003{bottom:537.599040pt;}
.y25_c00003{bottom:551.039067pt;}
.y23_c00003{bottom:564.159053pt;}
.y24_c00003{bottom:564.159707pt;}
.y22_c00003{bottom:577.599573pt;}
.y20_c00003{bottom:591.038893pt;}
.y21_c00003{bottom:591.039587pt;}
.y1f_c00003{bottom:604.800253pt;}
.y1e_c00003{bottom:604.800960pt;}
.y1d_c00003{bottom:618.559573pt;}
.y1c_c00003{bottom:618.880373pt;}
.y1b_c00003{bottom:645.760253pt;}
.y1a_c00003{bottom:673.280227pt;}
.y19_c00003{bottom:700.800213pt;}
.y18_c00003{bottom:727.999427pt;}
.y17_c00003{bottom:729.279707pt;}
.y15_c00003{bottom:741.438800pt;}
.y16_c00003{bottom:741.439453pt;}
.y14_c00003{bottom:754.879307pt;}
.y13_c00003{bottom:754.879800pt;}
.y12_c00003{bottom:768.959467pt;}
.y11_c00003{bottom:796.160080pt;}
.y10_c00003{bottom:823.359293pt;}
.yf_c00003{bottom:837.120120pt;}
.ye_c00003{bottom:837.120707pt;}
.yd_c00003{bottom:850.879307pt;}
.yc_c00003{bottom:850.879960pt;}
.yb_c00003{bottom:877.439947pt;}
.ya_c00003{bottom:877.759280pt;}
.y8_c00003{bottom:904.959373pt;}
.y9_c00003{bottom:904.959960pt;}
.y7_c00003{bottom:918.399827pt;}
.y5_c00003{bottom:931.839680pt;}
.y6_c00003{bottom:931.839840pt;}
.y4_c00003{bottom:945.599040pt;}
.y3_c00003{bottom:959.359867pt;}
.y2_c00003{bottom:986.558987pt;}
.y1_c00003{bottom:1013.759680pt;}
.h19_c00003{height:50.062500pt;}
.h18_c00003{height:52.148438pt;}
.h1a_c00003{height:52.708333pt;}
.h1_c00003{height:54.026042pt;}
.h9_c00003{height:54.684896pt;}
.h6_c00003{height:54.933594pt;}
.h13_c00003{height:55.343750pt;}
.h1d_c00003{height:55.587565pt;}
.h2_c00003{height:56.002604pt;}
.h14_c00003{height:57.320313pt;}
.h17_c00003{height:57.549479pt;}
.hd_c00003{height:57.979167pt;}
.h3_c00003{height:58.203451pt;}
.h11_c00003{height:64.664062pt;}
.h12_c00003{height:107.078125pt;}
.hf_c00003{height:108.468750pt;}
.h7_c00003{height:109.859375pt;}
.h16_c00003{height:110.554688pt;}
.h15_c00003{height:111.250000pt;}
.h1c_c00003{height:111.945312pt;}
.h8_c00003{height:112.640625pt;}
.h10_c00003{height:113.335938pt;}
.he_c00003{height:114.031250pt;}
.hb_c00003{height:114.726562pt;}
.h5_c00003{height:115.421875pt;}
.hc_c00003{height:116.117188pt;}
.h4_c00003{height:117.507812pt;}
.h1b_c00003{height:120.289062pt;}
.ha_c00003{height:133.500000pt;}
.h0_c00003{height:1122.666667pt;}
.w0_c00003{width:793.333333pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:125.438947pt;}
.x1_c00003{left:126.399867pt;}
.x24_c00003{left:127.359333pt;}
.x35_c00003{left:128.318813pt;}
.xb_c00003{left:136.319867pt;}
.x2d_c00003{left:137.598680pt;}
.xc_c00003{left:149.759720pt;}
.x2e_c00003{left:151.038533pt;}
.x1b_c00003{left:152.639613pt;}
.xd_c00003{left:166.398920pt;}
.x1f_c00003{left:182.718787pt;}
.x3_c00003{left:184.639200pt;}
.x1c_c00003{left:191.039067pt;}
.x9_c00003{left:192.638667pt;}
.x20_c00003{left:199.038533pt;}
.x36_c00003{left:200.318787pt;}
.x11_c00003{left:230.399453pt;}
.x12_c00003{left:255.358933pt;}
.x7_c00003{left:256.960000pt;}
.x5_c00003{left:273.279720pt;}
.x34_c00003{left:274.879333pt;}
.x21_c00003{left:313.918920pt;}
.xe_c00003{left:329.598680pt;}
.xf_c00003{left:353.598680pt;}
.x16_c00003{left:360.319333pt;}
.x15_c00003{left:369.919840pt;}
.x18_c00003{left:375.679733pt;}
.x29_c00003{left:377.279333pt;}
.x27_c00003{left:394.558507pt;}
.x19_c00003{left:399.679733pt;}
.x14_c00003{left:401.919480pt;}
.x13_c00003{left:409.599613pt;}
.x2b_c00003{left:410.559040pt;}
.x2f_c00003{left:424.960000pt;}
.x1d_c00003{left:442.239173pt;}
.x10_c00003{left:449.919480pt;}
.x26_c00003{left:458.559040pt;}
.x30_c00003{left:464.958907pt;}
.x22_c00003{left:482.559040pt;}
.x31_c00003{left:483.518520pt;}
.x2a_c00003{left:491.198693pt;}
.x1a_c00003{left:498.559573pt;}
.x25_c00003{left:515.198693pt;}
.x23_c00003{left:530.879840pt;}
.x1e_c00003{left:571.519040pt;}
.x28_c00003{left:588.479040pt;}
.x37_c00003{left:605.119587pt;}
.x2c_c00003{left:628.798787pt;}
.x17_c00003{left:659.838907pt;}
.x33_c00003{left:676.798787pt;}
.x8_c00003{left:688.959960pt;}
.xa_c00003{left:698.559080pt;}
.x32_c00003{left:699.518560pt;}
.x6_c00003{left:704.958907pt;}
.x4_c00003{left:706.239173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff1_c00004{font-family:ff1_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:ff2_c00004;src:url('chunks/assets/font_bfb940b8a9d15c44e47c952f.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.364746;font-style:normal;font-weight:normal;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_ababdb79010ecbeb55b8cfa7.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.281250;font-style:normal;font-weight:normal;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_0e768a0f92a56d1a580486ec.woff2')format("woff");}.ff4_c00004{font-family:ff4_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;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_b8040d631b3d9954c79ba909.woff2')format("woff");}.ff5_c00004{font-family:ff5_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:ff6_c00004;src:url('chunks/assets/font_402b0134422b65d69a1243bb.woff2')format("woff");}.ff6_c00004{font-family:ff6_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;}
.m33_c00004{transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00004{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m28_c00004{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m37_c00004{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.ma_c00004{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m16_c00004{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m9_c00004{transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);}
.md_c00004{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.m6_c00004{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m1e_c00004{transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);}
.m30_c00004{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.mc_c00004{transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);}
.m5_c00004{transform:matrix(0.254412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254412,0.000000,0.000000,0.250000,0,0);}
.m21_c00004{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m15_c00004{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00004{transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257485,0.000000,0.000000,0.250000,0,0);}
.m10_c00004{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m17_c00004{transform:matrix(0.258876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258876,0.000000,0.000000,0.250000,0,0);}
.m11_c00004{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{transform:matrix(0.258982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258982,0.000000,0.000000,0.250000,0,0);}
.m1f_c00004{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m34_c00004{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.m14_c00004{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.m13_c00004{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m18_c00004{transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);}
.m32_c00004{transform:matrix(0.260802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260802,0.000000,0.000000,0.250000,0,0);}
.m3b_c00004{transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260937,0.000000,0.000000,0.250000,0,0);}
.m8_c00004{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m31_c00004{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.m29_c00004{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m3c_c00004{transform:matrix(0.262739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262739,0.000000,0.000000,0.250000,0,0);}
.m12_c00004{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m2b_c00004{transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263804,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m3e_c00004{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m26_c00004{transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);}
.m19_c00004{transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);}
.m2c_c00004{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m24_c00004{transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);}
.m39_c00004{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.mf_c00004{transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);}
.m1c_c00004{transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);}
.m1d_c00004{transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);}
.m35_c00004{transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);}
.m2e_c00004{transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);}
.m2d_c00004{transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269108,0.000000,0.000000,0.250000,0,0);}
.m22_c00004{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);}
.m25_c00004{transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);}
.m23_c00004{transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);}
.m20_c00004{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.m36_c00004{transform:matrix(0.271242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271242,0.000000,0.000000,0.250000,0,0);}
.m7_c00004{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.mb_c00004{transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);}
.me_c00004{transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);}
.m2a_c00004{transform:matrix(0.273734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273734,0.000000,0.000000,0.250000,0,0);}
.m2f_c00004{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m3d_c00004{transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);}
.m3a_c00004{transform:matrix(0.412791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412791,0.000000,0.000000,0.250000,0,0);}
.m38_c00004{transform:matrix(0.414634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414634,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls3c_c00004{letter-spacing:-9.573428px;}
.ls2f_c00004{letter-spacing:-9.529740px;}
.ls3a_c00004{letter-spacing:-7.980450px;}
.ls47_c00004{letter-spacing:-7.692000px;}
.ls3e_c00004{letter-spacing:-7.501125px;}
.ls21_c00004{letter-spacing:-7.324875px;}
.ls3_c00004{letter-spacing:-7.183650px;}
.ls10_c00004{letter-spacing:-6.445125px;}
.ls6_c00004{letter-spacing:-6.386850px;}
.ls16_c00004{letter-spacing:-5.929215px;}
.ls1a_c00004{letter-spacing:-5.584448px;}
.ls15_c00004{letter-spacing:-4.787025px;}
.ls40_c00004{letter-spacing:-4.553018px;}
.lsd_c00004{letter-spacing:-3.990225px;}
.ls24_c00004{letter-spacing:-3.790733px;}
.ls4_c00004{letter-spacing:-3.037125px;}
.lsb_c00004{letter-spacing:-2.276175px;}
.ls13_c00004{letter-spacing:-1.612875px;}
.ls7_c00004{letter-spacing:-1.515893px;}
.ls5_c00004{letter-spacing:-0.796800px;}
.ls17_c00004{letter-spacing:-0.778388px;}
.ls4f_c00004{letter-spacing:-0.760950px;}
.ls1e_c00004{letter-spacing:-0.450900px;}
.ls32_c00004{letter-spacing:-0.421418px;}
.ls1d_c00004{letter-spacing:-0.420750px;}
.ls33_c00004{letter-spacing:-0.403425px;}
.ls1b_c00004{letter-spacing:-0.386033px;}
.ls39_c00004{letter-spacing:-0.385950px;}
.ls54_c00004{letter-spacing:-0.286200px;}
.ls37_c00004{letter-spacing:-0.280500px;}
.ls20_c00004{letter-spacing:-0.278850px;}
.lsf_c00004{letter-spacing:-0.276000px;}
.ls34_c00004{letter-spacing:-0.265860px;}
.ls3d_c00004{letter-spacing:-0.259530px;}
.ls18_c00004{letter-spacing:-0.233498px;}
.ls1c_c00004{letter-spacing:-0.212940px;}
.ls38_c00004{letter-spacing:-0.157950px;}
.ls23_c00004{letter-spacing:-0.128018px;}
.ls45_c00004{letter-spacing:-0.111375px;}
.ls26_c00004{letter-spacing:-0.110700px;}
.ls14_c00004{letter-spacing:-0.083475px;}
.lse_c00004{letter-spacing:0.000000px;}
.ls25_c00004{letter-spacing:0.038595px;}
.ls2e_c00004{letter-spacing:0.121200px;}
.lsa_c00004{letter-spacing:0.162825px;}
.ls35_c00004{letter-spacing:0.211673px;}
.ls41_c00004{letter-spacing:0.237000px;}
.ls3b_c00004{letter-spacing:0.324398px;}
.lsc_c00004{letter-spacing:0.344250px;}
.ls2b_c00004{letter-spacing:0.345765px;}
.ls29_c00004{letter-spacing:0.421418px;}
.ls43_c00004{letter-spacing:0.437400px;}
.ls42_c00004{letter-spacing:0.440100px;}
.ls48_c00004{letter-spacing:0.472133px;}
.ls31_c00004{letter-spacing:0.519750px;}
.ls36_c00004{letter-spacing:0.567525px;}
.ls2d_c00004{letter-spacing:0.631125px;}
.ls46_c00004{letter-spacing:0.642330px;}
.ls2a_c00004{letter-spacing:0.643950px;}
.ls49_c00004{letter-spacing:0.664200px;}
.ls2_c00004{letter-spacing:0.680400px;}
.ls8_c00004{letter-spacing:0.750300px;}
.ls27_c00004{letter-spacing:0.751500px;}
.ls50_c00004{letter-spacing:0.756000px;}
.ls22_c00004{letter-spacing:0.793350px;}
.ls1_c00004{letter-spacing:0.796800px;}
.ls3f_c00004{letter-spacing:0.885735px;}
.ls44_c00004{letter-spacing:0.918450px;}
.ls4a_c00004{letter-spacing:1.032750px;}
.ls4c_c00004{letter-spacing:1.274130px;}
.ls30_c00004{letter-spacing:1.389375px;}
.ls52_c00004{letter-spacing:1.465200px;}
.ls55_c00004{letter-spacing:1.474200px;}
.ls4d_c00004{letter-spacing:1.572075px;}
.ls0_c00004{letter-spacing:1.593600px;}
.ls53_c00004{letter-spacing:1.673228px;}
.ls4b_c00004{letter-spacing:1.681200px;}
.ls19_c00004{letter-spacing:2.396625px;}
.ls4e_c00004{letter-spacing:3.164482px;}
.ls28_c00004{letter-spacing:3.193425px;}
.ls11_c00004{letter-spacing:3.790733px;}
.ls1f_c00004{letter-spacing:3.990225px;}
.ls9_c00004{letter-spacing:4.787025px;}
.ls2c_c00004{letter-spacing:6.386850px;}
.ls12_c00004{letter-spacing:7.879500px;}
.ls51_c00004{letter-spacing:23.165498px;}
.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;}
._e_c00004{margin-left:-21.106471px;}
._b_c00004{margin-left:-12.495000px;}
._a_c00004{margin-left:-10.726300px;}
._4_c00004{margin-left:-8.697768px;}
._8_c00004{margin-left:-7.498218px;}
._1_c00004{margin-left:-6.372744px;}
._3_c00004{margin-left:-5.170880px;}
._5_c00004{margin-left:-4.054274px;}
._0_c00004{margin-left:-2.169739px;}
._2_c00004{margin-left:-1.067818px;}
._7_c00004{width:1.903839px;}
._d_c00004{width:4.716858px;}
._9_c00004{width:7.179691px;}
._c_c00004{width:11.123151px;}
._f_c00004{width:958.089686px;}
._6_c00004{width:966.132705px;}
.fc0_c00004{color:transparent;}
.fs1e_c00004{font-size:30.750000px;}
.fs1f_c00004{font-size:32.250000px;}
.fs17_c00004{font-size:56.250000px;}
.fsb_c00004{font-size:57.000000px;}
.fs1b_c00004{font-size:60.000000px;}
.fsa_c00004{font-size:61.500000px;}
.fs1_c00004{font-size:62.250000px;}
.fs8_c00004{font-size:63.750000px;}
.fs11_c00004{font-size:64.500000px;}
.fs13_c00004{font-size:65.250000px;}
.fs16_c00004{font-size:66.000000px;}
.fs2_c00004{font-size:66.750000px;}
.fs6_c00004{font-size:68.250000px;}
.fs1c_c00004{font-size:114.750000px;}
.fs1a_c00004{font-size:117.000000px;}
.fs19_c00004{font-size:117.750000px;}
.fs18_c00004{font-size:118.500000px;}
.fs9_c00004{font-size:119.250000px;}
.fs7_c00004{font-size:120.000000px;}
.fs14_c00004{font-size:120.750000px;}
.fs0_c00004{font-size:121.500000px;}
.fsc_c00004{font-size:122.250000px;}
.fs3_c00004{font-size:123.000000px;}
.fsf_c00004{font-size:123.750000px;}
.fs12_c00004{font-size:124.500000px;}
.fs4_c00004{font-size:125.250000px;}
.fse_c00004{font-size:126.000000px;}
.fs10_c00004{font-size:126.750000px;}
.fs5_c00004{font-size:127.500000px;}
.fsd_c00004{font-size:128.250000px;}
.fs15_c00004{font-size:133.500000px;}
.fs1d_c00004{font-size:159.000000px;}
.y0_c00004{bottom:0.000000px;}
.y5c_c00004{bottom:249.840585px;}
.y5b_c00004{bottom:250.560750px;}
.y59_c00004{bottom:264.779115px;}
.y5a_c00004{bottom:264.960600px;}
.y57_c00004{bottom:280.259715px;}
.y58_c00004{bottom:280.439685px;}
.y56_c00004{bottom:310.679700px;}
.y55_c00004{bottom:341.280435px;}
.y54_c00004{bottom:347.760135px;}
.y53_c00004{bottom:357.120435px;}
.y52_c00004{bottom:357.120615px;}
.y50_c00004{bottom:372.419685px;}
.y51_c00004{bottom:372.420000px;}
.y4f_c00004{bottom:387.180720px;}
.y4e_c00004{bottom:387.181395px;}
.y4d_c00004{bottom:402.659820px;}
.y4c_c00004{bottom:403.200435px;}
.y4a_c00004{bottom:417.958830px;}
.y4b_c00004{bottom:417.959385px;}
.y49_c00004{bottom:433.079400px;}
.y47_c00004{bottom:448.198605px;}
.y48_c00004{bottom:448.199385px;}
.y46_c00004{bottom:463.680135px;}
.y45_c00004{bottom:464.400285px;}
.y43_c00004{bottom:479.158635px;}
.y44_c00004{bottom:479.159415px;}
.y41_c00004{bottom:494.639835px;}
.y42_c00004{bottom:494.640150px;}
.y3f_c00004{bottom:509.400720px;}
.y40_c00004{bottom:509.400885px;}
.y3e_c00004{bottom:540.359250px;}
.y3d_c00004{bottom:540.359280px;}
.y3c_c00004{bottom:571.319235px;}
.y3a_c00004{bottom:601.560150px;}
.y3b_c00004{bottom:601.560750px;}
.y38_c00004{bottom:616.680000px;}
.y39_c00004{bottom:616.680720px;}
.y36_c00004{bottom:631.800015px;}
.y37_c00004{bottom:631.800570px;}
.y35_c00004{bottom:646.920600px;}
.y34_c00004{bottom:647.279850px;}
.y33_c00004{bottom:662.040570px;}
.y32_c00004{bottom:662.399820px;}
.y31_c00004{bottom:677.519670px;}
.y30_c00004{bottom:677.880570px;}
.y2f_c00004{bottom:693.000600px;}
.y2e_c00004{bottom:693.359850px;}
.y2c_c00004{bottom:707.758890px;}
.y2d_c00004{bottom:707.759535px;}
.y2b_c00004{bottom:723.240420px;}
.y2a_c00004{bottom:723.241080px;}
.y28_c00004{bottom:738.718920px;}
.y29_c00004{bottom:738.719520px;}
.y27_c00004{bottom:754.200435px;}
.y25_c00004{bottom:769.678980px;}
.y26_c00004{bottom:769.679715px;}
.y23_c00004{bottom:784.798875px;}
.y24_c00004{bottom:784.799565px;}
.y22_c00004{bottom:800.280390px;}
.y21_c00004{bottom:800.281065px;}
.y20_c00004{bottom:815.759490px;}
.y1f_c00004{bottom:816.120390px;}
.y1e_c00004{bottom:830.520270px;}
.y1d_c00004{bottom:831.240420px;}
.y1b_c00004{bottom:845.998770px;}
.y1c_c00004{bottom:845.999355px;}
.y1a_c00004{bottom:861.480285px;}
.y19_c00004{bottom:861.839535px;}
.y18_c00004{bottom:876.779850px;}
.y17_c00004{bottom:876.958710px;}
.y16_c00004{bottom:906.480840px;}
.y15_c00004{bottom:937.079955px;}
.y14_c00004{bottom:937.080315px;}
.y12_c00004{bottom:952.919400px;}
.y13_c00004{bottom:952.919955px;}
.y10_c00004{bottom:968.039205px;}
.y11_c00004{bottom:968.039985px;}
.yf_c00004{bottom:983.520720px;}
.ye_c00004{bottom:983.521575px;}
.yd_c00004{bottom:999.000000px;}
.yc_c00004{bottom:999.000075px;}
.yb_c00004{bottom:1029.960015px;}
.ya_c00004{bottom:1060.560705px;}
.y9_c00004{bottom:1075.680720px;}
.y8_c00004{bottom:1076.039985px;}
.y6_c00004{bottom:1090.439670px;}
.y7_c00004{bottom:1090.800570px;}
.y5_c00004{bottom:1105.920600px;}
.y4_c00004{bottom:1106.279850px;}
.y3_c00004{bottom:1121.579400px;}
.y2_c00004{bottom:1121.579565px;}
.y1_c00004{bottom:1136.880615px;}
.h21_c00004{height:32.071289px;}
.h22_c00004{height:33.635742px;}
.h1a_c00004{height:58.666992px;}
.h1e_c00004{height:59.296875px;}
.he_c00004{height:59.449219px;}
.hd_c00004{height:60.779297px;}
.h2_c00004{height:61.520508px;}
.h9_c00004{height:62.536011px;}
.hb_c00004{height:63.002930px;}
.h14_c00004{height:63.744141px;}
.ha_c00004{height:64.248047px;}
.h16_c00004{height:64.485352px;}
.h19_c00004{height:64.743164px;}
.h3_c00004{height:65.478882px;}
.h7_c00004{height:66.950317px;}
.h1f_c00004{height:119.680664px;}
.h1d_c00004{height:122.027344px;}
.h1c_c00004{height:122.809570px;}
.h1b_c00004{height:123.591797px;}
.hc_c00004{height:124.374023px;}
.h8_c00004{height:125.156250px;}
.h17_c00004{height:125.938477px;}
.h1_c00004{height:126.720703px;}
.hf_c00004{height:127.502930px;}
.h4_c00004{height:128.285156px;}
.h12_c00004{height:129.067383px;}
.h15_c00004{height:129.849609px;}
.h5_c00004{height:130.631836px;}
.h11_c00004{height:131.414062px;}
.h13_c00004{height:132.196289px;}
.h6_c00004{height:132.978516px;}
.h10_c00004{height:133.760742px;}
.h18_c00004{height:139.236328px;}
.h20_c00004{height:165.832031px;}
.h0_c00004{height:1263.000000px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:141.838950px;}
.x2b_c00004{left:142.918905px;}
.x3d_c00004{left:143.998785px;}
.x12_c00004{left:186.478665px;}
.x2e_c00004{left:187.559685px;}
.x8_c00004{left:204.479250px;}
.x19_c00004{left:205.558635px;}
.x41_c00004{left:206.998950px;}
.x3_c00004{left:223.559100px;}
.x3b_c00004{left:225.358635px;}
.x33_c00004{left:242.639100px;}
.x48_c00004{left:243.718500px;}
.x13_c00004{left:258.838515px;}
.x14_c00004{left:276.838950px;}
.x27_c00004{left:280.439685px;}
.x17_c00004{left:288.719100px;}
.x2d_c00004{left:290.159385px;}
.xc_c00004{left:295.918950px;}
.x3a_c00004{left:306.719535px;}
.xd_c00004{left:322.198785px;}
.x16_c00004{left:324.718500px;}
.x18_c00004{left:334.078785px;}
.x2c_c00004{left:335.159850px;}
.x6_c00004{left:343.080000px;}
.x31_c00004{left:344.518635px;}
.x2a_c00004{left:353.158785px;}
.x1b_c00004{left:358.559100px;}
.x1a_c00004{left:361.439685px;}
.x32_c00004{left:371.879535px;}
.x25_c00004{left:378.359235px;}
.x23_c00004{left:379.799535px;}
.x15_c00004{left:397.080000px;}
.x9_c00004{left:403.918950px;}
.x2f_c00004{left:405.000000px;}
.x11_c00004{left:406.079400px;}
.x45_c00004{left:417.959385px;}
.xa_c00004{left:422.278800px;}
.x46_c00004{left:436.319235px;}
.xe_c00004{left:440.279250px;}
.x5_c00004{left:442.078815px;}
.x28_c00004{left:443.159820px;}
.x3c_c00004{left:444.598530px;}
.x49_c00004{left:445.679670px;}
.x20_c00004{left:449.278800px;}
.x22_c00004{left:452.159415px;}
.x40_c00004{left:453.958920px;}
.xf_c00004{left:467.999400px;}
.x29_c00004{left:470.519070px;}
.x3e_c00004{left:471.598530px;}
.x42_c00004{left:478.439250px;}
.x1_c00004{left:487.438665px;}
.x43_c00004{left:496.439670px;}
.x34_c00004{left:498.239220px;}
.x10_c00004{left:502.919535px;}
.x26_c00004{left:506.159415px;}
.x37_c00004{left:516.599070px;}
.x1c_c00004{left:532.798515px;}
.x36_c00004{left:534.599670px;}
.x44_c00004{left:543.958335px;}
.x35_c00004{left:552.239220px;}
.x47_c00004{left:553.318770px;}
.xb_c00004{left:559.439250px;}
.x1e_c00004{left:614.518620px;}
.x39_c00004{left:634.679670px;}
.x30_c00004{left:661.318770px;}
.x21_c00004{left:669.238770px;}
.x7_c00004{left:695.159370px;}
.x1d_c00004{left:768.959385px;}
.x24_c00004{left:776.879520px;}
.x38_c00004{left:777.958920px;}
.x4_c00004{left:784.438665px;}
.x1f_c00004{left:785.519715px;}
.x3f_c00004{left:786.958380px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls3c_c00004{letter-spacing:-8.509713pt;}
.ls2f_c00004{letter-spacing:-8.470880pt;}
.ls3a_c00004{letter-spacing:-7.093733pt;}
.ls47_c00004{letter-spacing:-6.837333pt;}
.ls3e_c00004{letter-spacing:-6.667667pt;}
.ls21_c00004{letter-spacing:-6.511000pt;}
.ls3_c00004{letter-spacing:-6.385467pt;}
.ls10_c00004{letter-spacing:-5.729000pt;}
.ls6_c00004{letter-spacing:-5.677200pt;}
.ls16_c00004{letter-spacing:-5.270413pt;}
.ls1a_c00004{letter-spacing:-4.963953pt;}
.ls15_c00004{letter-spacing:-4.255133pt;}
.ls40_c00004{letter-spacing:-4.047127pt;}
.lsd_c00004{letter-spacing:-3.546867pt;}
.ls24_c00004{letter-spacing:-3.369540pt;}
.ls4_c00004{letter-spacing:-2.699667pt;}
.lsb_c00004{letter-spacing:-2.023267pt;}
.ls13_c00004{letter-spacing:-1.433667pt;}
.ls7_c00004{letter-spacing:-1.347460pt;}
.ls5_c00004{letter-spacing:-0.708267pt;}
.ls17_c00004{letter-spacing:-0.691900pt;}
.ls4f_c00004{letter-spacing:-0.676400pt;}
.ls1e_c00004{letter-spacing:-0.400800pt;}
.ls32_c00004{letter-spacing:-0.374593pt;}
.ls1d_c00004{letter-spacing:-0.374000pt;}
.ls33_c00004{letter-spacing:-0.358600pt;}
.ls1b_c00004{letter-spacing:-0.343140pt;}
.ls39_c00004{letter-spacing:-0.343067pt;}
.ls54_c00004{letter-spacing:-0.254400pt;}
.ls37_c00004{letter-spacing:-0.249333pt;}
.ls20_c00004{letter-spacing:-0.247867pt;}
.lsf_c00004{letter-spacing:-0.245333pt;}
.ls34_c00004{letter-spacing:-0.236320pt;}
.ls3d_c00004{letter-spacing:-0.230693pt;}
.ls18_c00004{letter-spacing:-0.207553pt;}
.ls1c_c00004{letter-spacing:-0.189280pt;}
.ls38_c00004{letter-spacing:-0.140400pt;}
.ls23_c00004{letter-spacing:-0.113793pt;}
.ls45_c00004{letter-spacing:-0.099000pt;}
.ls26_c00004{letter-spacing:-0.098400pt;}
.ls14_c00004{letter-spacing:-0.074200pt;}
.lse_c00004{letter-spacing:0.000000pt;}
.ls25_c00004{letter-spacing:0.034307pt;}
.ls2e_c00004{letter-spacing:0.107733pt;}
.lsa_c00004{letter-spacing:0.144733pt;}
.ls35_c00004{letter-spacing:0.188153pt;}
.ls41_c00004{letter-spacing:0.210667pt;}
.ls3b_c00004{letter-spacing:0.288353pt;}
.lsc_c00004{letter-spacing:0.306000pt;}
.ls2b_c00004{letter-spacing:0.307347pt;}
.ls29_c00004{letter-spacing:0.374593pt;}
.ls43_c00004{letter-spacing:0.388800pt;}
.ls42_c00004{letter-spacing:0.391200pt;}
.ls48_c00004{letter-spacing:0.419673pt;}
.ls31_c00004{letter-spacing:0.462000pt;}
.ls36_c00004{letter-spacing:0.504467pt;}
.ls2d_c00004{letter-spacing:0.561000pt;}
.ls46_c00004{letter-spacing:0.570960pt;}
.ls2a_c00004{letter-spacing:0.572400pt;}
.ls49_c00004{letter-spacing:0.590400pt;}
.ls2_c00004{letter-spacing:0.604800pt;}
.ls8_c00004{letter-spacing:0.666933pt;}
.ls27_c00004{letter-spacing:0.668000pt;}
.ls50_c00004{letter-spacing:0.672000pt;}
.ls22_c00004{letter-spacing:0.705200pt;}
.ls1_c00004{letter-spacing:0.708267pt;}
.ls3f_c00004{letter-spacing:0.787320pt;}
.ls44_c00004{letter-spacing:0.816400pt;}
.ls4a_c00004{letter-spacing:0.918000pt;}
.ls4c_c00004{letter-spacing:1.132560pt;}
.ls30_c00004{letter-spacing:1.235000pt;}
.ls52_c00004{letter-spacing:1.302400pt;}
.ls55_c00004{letter-spacing:1.310400pt;}
.ls4d_c00004{letter-spacing:1.397400pt;}
.ls0_c00004{letter-spacing:1.416533pt;}
.ls53_c00004{letter-spacing:1.487313pt;}
.ls4b_c00004{letter-spacing:1.494400pt;}
.ls19_c00004{letter-spacing:2.130333pt;}
.ls4e_c00004{letter-spacing:2.812873pt;}
.ls28_c00004{letter-spacing:2.838600pt;}
.ls11_c00004{letter-spacing:3.369540pt;}
.ls1f_c00004{letter-spacing:3.546867pt;}
.ls9_c00004{letter-spacing:4.255133pt;}
.ls2c_c00004{letter-spacing:5.677200pt;}
.ls12_c00004{letter-spacing:7.004000pt;}
.ls51_c00004{letter-spacing:20.591553pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._e_c00004{margin-left:-18.761308pt;}
._b_c00004{margin-left:-11.106667pt;}
._a_c00004{margin-left:-9.534489pt;}
._4_c00004{margin-left:-7.731349pt;}
._8_c00004{margin-left:-6.665082pt;}
._1_c00004{margin-left:-5.664661pt;}
._3_c00004{margin-left:-4.596338pt;}
._5_c00004{margin-left:-3.603799pt;}
._0_c00004{margin-left:-1.928657pt;}
._2_c00004{margin-left:-0.949172pt;}
._7_c00004{width:1.692302pt;}
._d_c00004{width:4.192763pt;}
._9_c00004{width:6.381947pt;}
._c_c00004{width:9.887246pt;}
._f_c00004{width:851.635277pt;}
._6_c00004{width:858.784627pt;}
.fs1e_c00004{font-size:27.333333pt;}
.fs1f_c00004{font-size:28.666667pt;}
.fs17_c00004{font-size:50.000000pt;}
.fsb_c00004{font-size:50.666667pt;}
.fs1b_c00004{font-size:53.333333pt;}
.fsa_c00004{font-size:54.666667pt;}
.fs1_c00004{font-size:55.333333pt;}
.fs8_c00004{font-size:56.666667pt;}
.fs11_c00004{font-size:57.333333pt;}
.fs13_c00004{font-size:58.000000pt;}
.fs16_c00004{font-size:58.666667pt;}
.fs2_c00004{font-size:59.333333pt;}
.fs6_c00004{font-size:60.666667pt;}
.fs1c_c00004{font-size:102.000000pt;}
.fs1a_c00004{font-size:104.000000pt;}
.fs19_c00004{font-size:104.666667pt;}
.fs18_c00004{font-size:105.333333pt;}
.fs9_c00004{font-size:106.000000pt;}
.fs7_c00004{font-size:106.666667pt;}
.fs14_c00004{font-size:107.333333pt;}
.fs0_c00004{font-size:108.000000pt;}
.fsc_c00004{font-size:108.666667pt;}
.fs3_c00004{font-size:109.333333pt;}
.fsf_c00004{font-size:110.000000pt;}
.fs12_c00004{font-size:110.666667pt;}
.fs4_c00004{font-size:111.333333pt;}
.fse_c00004{font-size:112.000000pt;}
.fs10_c00004{font-size:112.666667pt;}
.fs5_c00004{font-size:113.333333pt;}
.fsd_c00004{font-size:114.000000pt;}
.fs15_c00004{font-size:118.666667pt;}
.fs1d_c00004{font-size:141.333333pt;}
.y0_c00004{bottom:0.000000pt;}
.y5c_c00004{bottom:222.080520pt;}
.y5b_c00004{bottom:222.720667pt;}
.y59_c00004{bottom:235.359213pt;}
.y5a_c00004{bottom:235.520533pt;}
.y57_c00004{bottom:249.119747pt;}
.y58_c00004{bottom:249.279720pt;}
.y56_c00004{bottom:276.159733pt;}
.y55_c00004{bottom:303.360387pt;}
.y54_c00004{bottom:309.120120pt;}
.y53_c00004{bottom:317.440387pt;}
.y52_c00004{bottom:317.440547pt;}
.y50_c00004{bottom:331.039720pt;}
.y51_c00004{bottom:331.040000pt;}
.y4f_c00004{bottom:344.160640pt;}
.y4e_c00004{bottom:344.161240pt;}
.y4d_c00004{bottom:357.919840pt;}
.y4c_c00004{bottom:358.400387pt;}
.y4a_c00004{bottom:371.518960pt;}
.y4b_c00004{bottom:371.519453pt;}
.y49_c00004{bottom:384.959467pt;}
.y47_c00004{bottom:398.398760pt;}
.y48_c00004{bottom:398.399453pt;}
.y46_c00004{bottom:412.160120pt;}
.y45_c00004{bottom:412.800253pt;}
.y43_c00004{bottom:425.918787pt;}
.y44_c00004{bottom:425.919480pt;}
.y41_c00004{bottom:439.679853pt;}
.y42_c00004{bottom:439.680133pt;}
.y3f_c00004{bottom:452.800640pt;}
.y40_c00004{bottom:452.800787pt;}
.y3e_c00004{bottom:480.319333pt;}
.y3d_c00004{bottom:480.319360pt;}
.y3c_c00004{bottom:507.839320pt;}
.y3a_c00004{bottom:534.720133pt;}
.y3b_c00004{bottom:534.720667pt;}
.y38_c00004{bottom:548.160000pt;}
.y39_c00004{bottom:548.160640pt;}
.y36_c00004{bottom:561.600013pt;}
.y37_c00004{bottom:561.600507pt;}
.y35_c00004{bottom:575.040533pt;}
.y34_c00004{bottom:575.359867pt;}
.y33_c00004{bottom:588.480507pt;}
.y32_c00004{bottom:588.799840pt;}
.y31_c00004{bottom:602.239707pt;}
.y30_c00004{bottom:602.560507pt;}
.y2f_c00004{bottom:616.000533pt;}
.y2e_c00004{bottom:616.319867pt;}
.y2c_c00004{bottom:629.119013pt;}
.y2d_c00004{bottom:629.119587pt;}
.y2b_c00004{bottom:642.880373pt;}
.y2a_c00004{bottom:642.880960pt;}
.y28_c00004{bottom:656.639040pt;}
.y29_c00004{bottom:656.639573pt;}
.y27_c00004{bottom:670.400387pt;}
.y25_c00004{bottom:684.159093pt;}
.y26_c00004{bottom:684.159747pt;}
.y23_c00004{bottom:697.599000pt;}
.y24_c00004{bottom:697.599613pt;}
.y22_c00004{bottom:711.360347pt;}
.y21_c00004{bottom:711.360947pt;}
.y20_c00004{bottom:725.119547pt;}
.y1f_c00004{bottom:725.440347pt;}
.y1e_c00004{bottom:738.240240pt;}
.y1d_c00004{bottom:738.880373pt;}
.y1b_c00004{bottom:751.998907pt;}
.y1c_c00004{bottom:751.999427pt;}
.y1a_c00004{bottom:765.760253pt;}
.y19_c00004{bottom:766.079587pt;}
.y18_c00004{bottom:779.359867pt;}
.y17_c00004{bottom:779.518853pt;}
.y16_c00004{bottom:805.760747pt;}
.y15_c00004{bottom:832.959960pt;}
.y14_c00004{bottom:832.960280pt;}
.y12_c00004{bottom:847.039467pt;}
.y13_c00004{bottom:847.039960pt;}
.y10_c00004{bottom:860.479293pt;}
.y11_c00004{bottom:860.479987pt;}
.yf_c00004{bottom:874.240640pt;}
.ye_c00004{bottom:874.241400pt;}
.yd_c00004{bottom:888.000000pt;}
.yc_c00004{bottom:888.000067pt;}
.yb_c00004{bottom:915.520013pt;}
.ya_c00004{bottom:942.720627pt;}
.y9_c00004{bottom:956.160640pt;}
.y8_c00004{bottom:956.479987pt;}
.y6_c00004{bottom:969.279707pt;}
.y7_c00004{bottom:969.600507pt;}
.y5_c00004{bottom:983.040533pt;}
.y4_c00004{bottom:983.359867pt;}
.y3_c00004{bottom:996.959467pt;}
.y2_c00004{bottom:996.959613pt;}
.y1_c00004{bottom:1010.560547pt;}
.h21_c00004{height:28.507812pt;}
.h22_c00004{height:29.898438pt;}
.h1a_c00004{height:52.148438pt;}
.h1e_c00004{height:52.708333pt;}
.he_c00004{height:52.843750pt;}
.hd_c00004{height:54.026042pt;}
.h2_c00004{height:54.684896pt;}
.h9_c00004{height:55.587565pt;}
.hb_c00004{height:56.002604pt;}
.h14_c00004{height:56.661458pt;}
.ha_c00004{height:57.109375pt;}
.h16_c00004{height:57.320313pt;}
.h19_c00004{height:57.549479pt;}
.h3_c00004{height:58.203451pt;}
.h7_c00004{height:59.511393pt;}
.h1f_c00004{height:106.382812pt;}
.h1d_c00004{height:108.468750pt;}
.h1c_c00004{height:109.164062pt;}
.h1b_c00004{height:109.859375pt;}
.hc_c00004{height:110.554688pt;}
.h8_c00004{height:111.250000pt;}
.h17_c00004{height:111.945312pt;}
.h1_c00004{height:112.640625pt;}
.hf_c00004{height:113.335938pt;}
.h4_c00004{height:114.031250pt;}
.h12_c00004{height:114.726562pt;}
.h15_c00004{height:115.421875pt;}
.h5_c00004{height:116.117188pt;}
.h11_c00004{height:116.812500pt;}
.h13_c00004{height:117.507812pt;}
.h6_c00004{height:118.203125pt;}
.h10_c00004{height:118.898438pt;}
.h18_c00004{height:123.765625pt;}
.h20_c00004{height:147.406250pt;}
.h0_c00004{height:1122.666667pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:126.079067pt;}
.x2b_c00004{left:127.039027pt;}
.x3d_c00004{left:127.998920pt;}
.x12_c00004{left:165.758813pt;}
.x2e_c00004{left:166.719720pt;}
.x8_c00004{left:181.759333pt;}
.x19_c00004{left:182.718787pt;}
.x41_c00004{left:183.999067pt;}
.x3_c00004{left:198.719200pt;}
.x3b_c00004{left:200.318787pt;}
.x33_c00004{left:215.679200pt;}
.x48_c00004{left:216.638667pt;}
.x13_c00004{left:230.078680pt;}
.x14_c00004{left:246.079067pt;}
.x27_c00004{left:249.279720pt;}
.x17_c00004{left:256.639200pt;}
.x2d_c00004{left:257.919453pt;}
.xc_c00004{left:263.039067pt;}
.x3a_c00004{left:272.639587pt;}
.xd_c00004{left:286.398920pt;}
.x16_c00004{left:288.638667pt;}
.x18_c00004{left:296.958920pt;}
.x2c_c00004{left:297.919867pt;}
.x6_c00004{left:304.960000pt;}
.x31_c00004{left:306.238787pt;}
.x2a_c00004{left:313.918920pt;}
.x1b_c00004{left:318.719200pt;}
.x1a_c00004{left:321.279720pt;}
.x32_c00004{left:330.559587pt;}
.x25_c00004{left:336.319320pt;}
.x23_c00004{left:337.599587pt;}
.x15_c00004{left:352.960000pt;}
.x9_c00004{left:359.039067pt;}
.x2f_c00004{left:360.000000pt;}
.x11_c00004{left:360.959467pt;}
.x45_c00004{left:371.519453pt;}
.xa_c00004{left:375.358933pt;}
.x46_c00004{left:387.839320pt;}
.xe_c00004{left:391.359333pt;}
.x5_c00004{left:392.958947pt;}
.x28_c00004{left:393.919840pt;}
.x3c_c00004{left:395.198693pt;}
.x49_c00004{left:396.159707pt;}
.x20_c00004{left:399.358933pt;}
.x22_c00004{left:401.919480pt;}
.x40_c00004{left:403.519040pt;}
.xf_c00004{left:415.999467pt;}
.x29_c00004{left:418.239173pt;}
.x3e_c00004{left:419.198693pt;}
.x42_c00004{left:425.279333pt;}
.x1_c00004{left:433.278813pt;}
.x43_c00004{left:441.279707pt;}
.x34_c00004{left:442.879307pt;}
.x10_c00004{left:447.039587pt;}
.x26_c00004{left:449.919480pt;}
.x37_c00004{left:459.199173pt;}
.x1c_c00004{left:473.598680pt;}
.x36_c00004{left:475.199707pt;}
.x44_c00004{left:483.518520pt;}
.x35_c00004{left:490.879307pt;}
.x47_c00004{left:491.838907pt;}
.xb_c00004{left:497.279333pt;}
.x1e_c00004{left:546.238773pt;}
.x39_c00004{left:564.159707pt;}
.x30_c00004{left:587.838907pt;}
.x21_c00004{left:594.878907pt;}
.x7_c00004{left:617.919440pt;}
.x1d_c00004{left:683.519453pt;}
.x24_c00004{left:690.559573pt;}
.x38_c00004{left:691.519040pt;}
.x4_c00004{left:697.278813pt;}
.x1f_c00004{left:698.239747pt;}
.x3f_c00004{left:699.518560pt;}
}





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

.ir_c00005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_19f3af1a967388cd04290bb3.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_7cd09dff64e2dd106b703227.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_f06b38d97f7a3b75c29e838b.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00005{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m19_c00005{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m14_c00005{transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);}
.m36_c00005{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.mc_c00005{transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);}
.m3f_c00005{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5_c00005{transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.ma_c00005{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.md_c00005{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m9_c00005{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.me_c00005{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m24_c00005{transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);}
.m35_c00005{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);}
.m23_c00005{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m1d_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf_c00005{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.mb_c00005{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m12_c00005{transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);}
.m30_c00005{transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);}
.m7_c00005{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m6_c00005{transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);}
.m10_c00005{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m3d_c00005{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m2d_c00005{transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);}
.m34_c00005{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m2c_c00005{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m1e_c00005{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m2_c00005{transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);}
.m26_c00005{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m21_c00005{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m37_c00005{transform:matrix(0.259202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259202,0.000000,0.000000,0.250000,0,0);}
.m15_c00005{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m18_c00005{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m13_c00005{transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);}
.m1f_c00005{transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);}
.m17_c00005{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.m39_c00005{transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262422,0.000000,0.000000,0.250000,0,0);}
.m27_c00005{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m3a_c00005{transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);}
.m22_c00005{transform:matrix(0.265337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265337,0.000000,0.000000,0.250000,0,0);}
.m4_c00005{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m16_c00005{transform:matrix(0.266566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266566,0.000000,0.000000,0.250000,0,0);}
.m2a_c00005{transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);}
.m31_c00005{transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);}
.m2e_c00005{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m1b_c00005{transform:matrix(0.268634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268634,0.000000,0.000000,0.250000,0,0);}
.m38_c00005{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m33_c00005{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m29_c00005{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m3e_c00005{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m28_c00005{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.m20_c00005{transform:matrix(0.270701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270701,0.000000,0.000000,0.250000,0,0);}
.m2b_c00005{transform:matrix(0.271104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271104,0.000000,0.000000,0.250000,0,0);}
.m1c_c00005{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m11_c00005{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m25_c00005{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m32_c00005{transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);}
.m3c_c00005{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);}
.m3b_c00005{transform:matrix(0.278146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278146,0.000000,0.000000,0.250000,0,0);}
.m1a_c00005{transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280255,0.000000,0.000000,0.250000,0,0);}
.m2f_c00005{transform:matrix(0.290268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290268,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.v1_c00005{vertical-align:1.442220px;}
.ls21_c00005{letter-spacing:-8.777873px;}
.ls2a_c00005{letter-spacing:-8.157600px;}
.lsf_c00005{letter-spacing:-8.153625px;}
.ls18_c00005{letter-spacing:-7.980450px;}
.ls2_c00005{letter-spacing:-7.183650px;}
.lsd_c00005{letter-spacing:-6.386850px;}
.ls8_c00005{letter-spacing:-5.584448px;}
.ls37_c00005{letter-spacing:-4.553018px;}
.lsc_c00005{letter-spacing:-3.790733px;}
.ls12_c00005{letter-spacing:-3.709200px;}
.ls29_c00005{letter-spacing:-3.140183px;}
.ls9_c00005{letter-spacing:-3.037125px;}
.ls4_c00005{letter-spacing:-2.276175px;}
.ls1b_c00005{letter-spacing:-1.531350px;}
.ls5_c00005{letter-spacing:-1.515893px;}
.ls32_c00005{letter-spacing:-1.161450px;}
.ls16_c00005{letter-spacing:-0.760950px;}
.ls17_c00005{letter-spacing:-0.334110px;}
.ls34_c00005{letter-spacing:-0.328050px;}
.ls1d_c00005{letter-spacing:-0.324398px;}
.lsa_c00005{letter-spacing:-0.259050px;}
.ls23_c00005{letter-spacing:-0.226800px;}
.ls1e_c00005{letter-spacing:-0.188400px;}
.ls22_c00005{letter-spacing:-0.182250px;}
.ls30_c00005{letter-spacing:-0.134475px;}
.ls20_c00005{letter-spacing:-0.132825px;}
.ls1a_c00005{letter-spacing:-0.113400px;}
.ls19_c00005{letter-spacing:-0.098948px;}
.ls3_c00005{letter-spacing:0.000000px;}
.ls15_c00005{letter-spacing:0.013283px;}
.ls36_c00005{letter-spacing:0.034643px;}
.ls38_c00005{letter-spacing:0.039758px;}
.ls1f_c00005{letter-spacing:0.099540px;}
.ls2e_c00005{letter-spacing:0.132000px;}
.ls27_c00005{letter-spacing:0.147923px;}
.ls42_c00005{letter-spacing:0.183375px;}
.ls24_c00005{letter-spacing:0.222750px;}
.ls3a_c00005{letter-spacing:0.290625px;}
.ls33_c00005{letter-spacing:0.315000px;}
.ls3c_c00005{letter-spacing:0.317925px;}
.ls44_c00005{letter-spacing:0.326025px;}
.ls43_c00005{letter-spacing:0.370230px;}
.ls1c_c00005{letter-spacing:0.393600px;}
.ls3b_c00005{letter-spacing:0.413565px;}
.ls39_c00005{letter-spacing:0.530093px;}
.ls2c_c00005{letter-spacing:0.543263px;}
.ls25_c00005{letter-spacing:0.553425px;}
.ls7_c00005{letter-spacing:0.560250px;}
.ls47_c00005{letter-spacing:0.565950px;}
.ls35_c00005{letter-spacing:0.591630px;}
.ls26_c00005{letter-spacing:0.664200px;}
.lsb_c00005{letter-spacing:0.667035px;}
.ls2b_c00005{letter-spacing:0.672353px;}
.ls3d_c00005{letter-spacing:0.693000px;}
.ls2d_c00005{letter-spacing:0.729000px;}
.ls14_c00005{letter-spacing:0.730800px;}
.lse_c00005{letter-spacing:0.785850px;}
.ls13_c00005{letter-spacing:0.790575px;}
.ls6_c00005{letter-spacing:0.796800px;}
.ls3f_c00005{letter-spacing:0.800100px;}
.ls45_c00005{letter-spacing:0.809025px;}
.ls41_c00005{letter-spacing:0.904650px;}
.ls46_c00005{letter-spacing:1.189125px;}
.ls31_c00005{letter-spacing:1.280895px;}
.ls2f_c00005{letter-spacing:1.287000px;}
.ls49_c00005{letter-spacing:1.342575px;}
.ls0_c00005{letter-spacing:1.593600px;}
.ls48_c00005{letter-spacing:1.617165px;}
.ls10_c00005{letter-spacing:1.682100px;}
.ls11_c00005{letter-spacing:2.393370px;}
.ls1_c00005{letter-spacing:2.396625px;}
.ls40_c00005{letter-spacing:3.269700px;}
.ls28_c00005{letter-spacing:6.840000px;}
.ls3e_c00005{letter-spacing:8.595000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
._a_c00005{margin-left:-15.784130px;}
._8_c00005{margin-left:-11.415888px;}
._0_c00005{margin-left:-9.464907px;}
._2_c00005{margin-left:-7.834326px;}
._5_c00005{margin-left:-6.372744px;}
._1_c00005{margin-left:-5.272825px;}
._3_c00005{margin-left:-3.462808px;}
._7_c00005{margin-left:-2.007355px;}
._d_c00005{width:1.758923px;}
._6_c00005{width:3.103572px;}
._c_c00005{width:4.557993px;}
._4_c00005{width:6.545869px;}
._9_c00005{width:8.807845px;}
._e_c00005{width:10.865808px;}
._f_c00005{width:12.774069px;}
._10_c00005{width:884.610265px;}
._b_c00005{width:887.989674px;}
.fc0_c00005{color:transparent;}
.fs1b_c00005{font-size:56.250000px;}
.fs12_c00005{font-size:57.000000px;}
.fs1e_c00005{font-size:60.000000px;}
.fsf_c00005{font-size:61.500000px;}
.fs0_c00005{font-size:62.250000px;}
.fs8_c00005{font-size:63.000000px;}
.fs7_c00005{font-size:63.750000px;}
.fs9_c00005{font-size:66.000000px;}
.fs1_c00005{font-size:66.750000px;}
.fs5_c00005{font-size:68.250000px;}
.fs17_c00005{font-size:111.750000px;}
.fs1c_c00005{font-size:113.250000px;}
.fs1d_c00005{font-size:114.750000px;}
.fs15_c00005{font-size:115.500000px;}
.fs19_c00005{font-size:116.250000px;}
.fs14_c00005{font-size:117.000000px;}
.fs3_c00005{font-size:117.750000px;}
.fs1a_c00005{font-size:118.500000px;}
.fs13_c00005{font-size:120.000000px;}
.fsb_c00005{font-size:120.750000px;}
.fs4_c00005{font-size:121.500000px;}
.fs11_c00005{font-size:122.250000px;}
.fse_c00005{font-size:123.000000px;}
.fs10_c00005{font-size:123.750000px;}
.fs2_c00005{font-size:124.500000px;}
.fsd_c00005{font-size:125.250000px;}
.fsa_c00005{font-size:126.000000px;}
.fs6_c00005{font-size:126.750000px;}
.fs18_c00005{font-size:128.250000px;}
.fsc_c00005{font-size:129.000000px;}
.fs16_c00005{font-size:130.500000px;}
.y0_c00005{bottom:0.000000px;}
.y68_c00005{bottom:248.400285px;}
.y67_c00005{bottom:249.481335px;}
.y66_c00005{bottom:264.240435px;}
.y65_c00005{bottom:264.240600px;}
.y64_c00005{bottom:279.541650px;}
.y63_c00005{bottom:279.541815px;}
.y62_c00005{bottom:294.841185px;}
.y61_c00005{bottom:295.200435px;}
.y60_c00005{bottom:324.360900px;}
.y5f_c00005{bottom:325.440285px;}
.y5d_c00005{bottom:354.959700px;}
.y5e_c00005{bottom:354.960000px;}
.y5b_c00005{bottom:369.720015px;}
.y5c_c00005{bottom:369.720750px;}
.y5a_c00005{bottom:385.201545px;}
.y59_c00005{bottom:385.202295px;}
.y57_c00005{bottom:400.680000px;}
.y58_c00005{bottom:400.680720px;}
.y55_c00005{bottom:416.160960px;}
.y56_c00005{bottom:416.161515px;}
.y54_c00005{bottom:431.281545px;}
.y53_c00005{bottom:446.401515px;}
.y52_c00005{bottom:446.401890px;}
.y51_c00005{bottom:462.241515px;}
.y50_c00005{bottom:462.242310px;}
.y4e_c00005{bottom:477.720015px;}
.y4f_c00005{bottom:477.720750px;}
.y4c_c00005{bottom:492.840000px;}
.y4d_c00005{bottom:492.840585px;}
.y4a_c00005{bottom:508.321065px;}
.y4b_c00005{bottom:508.321515px;}
.y49_c00005{bottom:523.080465px;}
.y48_c00005{bottom:523.080960px;}
.y47_c00005{bottom:538.920600px;}
.y46_c00005{bottom:540.000000px;}
.y45_c00005{bottom:553.681185px;}
.y44_c00005{bottom:554.760720px;}
.y43_c00005{bottom:584.641335px;}
.y42_c00005{bottom:584.641665px;}
.y41_c00005{bottom:614.881170px;}
.y40_c00005{bottom:615.601320px;}
.y3f_c00005{bottom:629.640150px;}
.y3e_c00005{bottom:630.001050px;}
.y3d_c00005{bottom:645.480285px;}
.y3c_c00005{bottom:646.200435px;}
.y3b_c00005{bottom:660.600135px;}
.y3a_c00005{bottom:661.681185px;}
.y38_c00005{bottom:676.080465px;}
.y39_c00005{bottom:676.081050px;}
.y37_c00005{bottom:691.201035px;}
.y36_c00005{bottom:691.560285px;}
.y35_c00005{bottom:706.320870px;}
.y34_c00005{bottom:706.321680px;}
.y33_c00005{bottom:721.800105px;}
.y32_c00005{bottom:722.520270px;}
.y2f_c00005{bottom:736.919355px;}
.y30_c00005{bottom:736.920000px;}
.y31_c00005{bottom:737.280900px;}
.y2e_c00005{bottom:752.400885px;}
.y2d_c00005{bottom:753.841185px;}
.y2b_c00005{bottom:768.240330px;}
.y2c_c00005{bottom:768.240870px;}
.y2a_c00005{bottom:783.360900px;}
.y29_c00005{bottom:783.361020px;}
.y28_c00005{bottom:813.960015px;}
.y27_c00005{bottom:814.680090px;}
.y26_c00005{bottom:844.919955px;}
.y25_c00005{bottom:844.920390px;}
.y24_c00005{bottom:860.221155px;}
.y23_c00005{bottom:860.221455px;}
.y21_c00005{bottom:875.161005px;}
.y22_c00005{bottom:875.161560px;}
.y20_c00005{bottom:890.281590px;}
.y1f_c00005{bottom:891.000000px;}
.y1e_c00005{bottom:906.121575px;}
.y1d_c00005{bottom:906.480840px;}
.y1b_c00005{bottom:920.880015px;}
.y1c_c00005{bottom:920.880615px;}
.y1a_c00005{bottom:936.361545px;}
.y19_c00005{bottom:936.362115px;}
.y17_c00005{bottom:951.840045px;}
.y18_c00005{bottom:951.840540px;}
.y16_c00005{bottom:967.321560px;}
.y15_c00005{bottom:967.680720px;}
.y13_c00005{bottom:982.440765px;}
.y14_c00005{bottom:982.441320px;}
.y12_c00005{bottom:997.561335px;}
.y11_c00005{bottom:997.562190px;}
.yf_c00005{bottom:1013.039835px;}
.y10_c00005{bottom:1013.040615px;}
.ye_c00005{bottom:1028.521365px;}
.yd_c00005{bottom:1028.522115px;}
.yc_c00005{bottom:1044.000555px;}
.yb_c00005{bottom:1044.361545px;}
.y9_c00005{bottom:1059.120255px;}
.ya_c00005{bottom:1059.120390px;}
.y8_c00005{bottom:1074.601320px;}
.y6_c00005{bottom:1089.720615px;}
.y7_c00005{bottom:1089.721155px;}
.y5_c00005{bottom:1104.841185px;}
.y4_c00005{bottom:1105.200435px;}
.y2_c00005{bottom:1120.319730px;}
.y3_c00005{bottom:1120.320285px;}
.y1_c00005{bottom:1135.440315px;}
.h1f_c00005{height:58.666992px;}
.h22_c00005{height:59.296875px;}
.h15_c00005{height:59.449219px;}
.h12_c00005{height:60.779297px;}
.hb_c00005{height:61.064575px;}
.h1_c00005{height:61.520508px;}
.h9_c00005{height:62.261719px;}
.h8_c00005{height:62.536011px;}
.hc_c00005{height:63.002930px;}
.ha_c00005{height:64.743164px;}
.h2_c00005{height:65.478882px;}
.h16_c00005{height:66.921102px;}
.h6_c00005{height:66.950317px;}
.h1b_c00005{height:116.551758px;}
.h20_c00005{height:118.116211px;}
.h21_c00005{height:119.680664px;}
.h19_c00005{height:120.462891px;}
.h1d_c00005{height:121.245117px;}
.h18_c00005{height:122.027344px;}
.h4_c00005{height:122.809570px;}
.h1e_c00005{height:123.591797px;}
.h17_c00005{height:125.156250px;}
.he_c00005{height:125.938477px;}
.h5_c00005{height:126.720703px;}
.h14_c00005{height:127.502930px;}
.h11_c00005{height:128.285156px;}
.h13_c00005{height:129.067383px;}
.h3_c00005{height:129.849609px;}
.h10_c00005{height:130.631836px;}
.hd_c00005{height:131.414062px;}
.h7_c00005{height:132.196289px;}
.h1c_c00005{height:133.760742px;}
.hf_c00005{height:134.542969px;}
.h1a_c00005{height:136.107422px;}
.h0_c00005{height:1263.000000px;}
.w0_c00005{width:892.500000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:140.759565px;}
.x36_c00005{left:141.838950px;}
.x44_c00005{left:142.918215px;}
.x27_c00005{left:204.120000px;}
.x49_c00005{left:206.278800px;}
.x9_c00005{left:221.398635px;}
.x1e_c00005{left:222.479685px;}
.x3c_c00005{left:223.559100px;}
.x47_c00005{left:224.638500px;}
.x2_c00005{left:239.758500px;}
.x31_c00005{left:240.839535px;}
.x3e_c00005{left:241.918950px;}
.x26_c00005{left:243.000000px;}
.xd_c00005{left:249.118785px;}
.x2e_c00005{left:250.559100px;}
.x3f_c00005{left:305.638500px;}
.xe_c00005{left:321.478635px;}
.x40_c00005{left:333.358635px;}
.x1a_c00005{left:339.479235px;}
.x4b_c00005{left:344.518635px;}
.xf_c00005{left:349.198785px;}
.x4e_c00005{left:351.718500px;}
.x15_c00005{left:357.479685px;}
.x1b_c00005{left:358.918350px;}
.x19_c00005{left:359.999385px;}
.x1d_c00005{left:368.998950px;}
.x3a_c00005{left:370.439235px;}
.x16_c00005{left:375.839535px;}
.x23_c00005{left:396.359850px;}
.x45_c00005{left:398.518665px;}
.x3_c00005{left:405.359250px;}
.x3d_c00005{left:407.158770px;}
.x18_c00005{left:413.999400px;}
.x21_c00005{left:423.359850px;}
.x46_c00005{left:425.879520px;}
.x4c_c00005{left:434.878920px;}
.xa_c00005{left:438.838950px;}
.x2b_c00005{left:439.918350px;}
.x33_c00005{left:451.439250px;}
.x41_c00005{left:452.518620px;}
.xb_c00005{left:456.839535px;}
.x2c_c00005{left:457.918950px;}
.x6_c00005{left:459.359250px;}
.x20_c00005{left:468.719565px;}
.x32_c00005{left:469.798920px;}
.x4d_c00005{left:471.598530px;}
.x10_c00005{left:475.919535px;}
.x11_c00005{left:501.838530px;}
.x28_c00005{left:511.559685px;}
.x4_c00005{left:513.000000px;}
.x2f_c00005{left:514.079400px;}
.x3b_c00005{left:515.158770px;}
.x24_c00005{left:520.559100px;}
.x22_c00005{left:522.719565px;}
.x25_c00005{left:539.279850px;}
.x34_c00005{left:541.438620px;}
.x37_c00005{left:548.638500px;}
.x35_c00005{left:550.798920px;}
.x42_c00005{left:551.878320px;}
.x30_c00005{left:559.798515px;}
.x7_c00005{left:567.359250px;}
.x48_c00005{left:570.239820px;}
.x12_c00005{left:574.199850px;}
.xc_c00005{left:576.358665px;}
.x2d_c00005{left:577.439670px;}
.x39_c00005{left:578.519070px;}
.x17_c00005{left:585.719100px;}
.x29_c00005{left:586.798515px;}
.x4a_c00005{left:588.599670px;}
.x1f_c00005{left:595.079400px;}
.x13_c00005{left:602.279250px;}
.x1c_c00005{left:613.439250px;}
.x38_c00005{left:614.879520px;}
.x14_c00005{left:638.278800px;}
.x8_c00005{left:639.719100px;}
.x5_c00005{left:774.359805px;}
.x2a_c00005{left:775.439205px;}
.x43_c00005{left:776.518620px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.v1_c00005{vertical-align:1.281973pt;}
.ls21_c00005{letter-spacing:-7.802553pt;}
.ls2a_c00005{letter-spacing:-7.251200pt;}
.lsf_c00005{letter-spacing:-7.247667pt;}
.ls18_c00005{letter-spacing:-7.093733pt;}
.ls2_c00005{letter-spacing:-6.385467pt;}
.lsd_c00005{letter-spacing:-5.677200pt;}
.ls8_c00005{letter-spacing:-4.963953pt;}
.ls37_c00005{letter-spacing:-4.047127pt;}
.lsc_c00005{letter-spacing:-3.369540pt;}
.ls12_c00005{letter-spacing:-3.297067pt;}
.ls29_c00005{letter-spacing:-2.791273pt;}
.ls9_c00005{letter-spacing:-2.699667pt;}
.ls4_c00005{letter-spacing:-2.023267pt;}
.ls1b_c00005{letter-spacing:-1.361200pt;}
.ls5_c00005{letter-spacing:-1.347460pt;}
.ls32_c00005{letter-spacing:-1.032400pt;}
.ls16_c00005{letter-spacing:-0.676400pt;}
.ls17_c00005{letter-spacing:-0.296987pt;}
.ls34_c00005{letter-spacing:-0.291600pt;}
.ls1d_c00005{letter-spacing:-0.288353pt;}
.lsa_c00005{letter-spacing:-0.230267pt;}
.ls23_c00005{letter-spacing:-0.201600pt;}
.ls1e_c00005{letter-spacing:-0.167467pt;}
.ls22_c00005{letter-spacing:-0.162000pt;}
.ls30_c00005{letter-spacing:-0.119533pt;}
.ls20_c00005{letter-spacing:-0.118067pt;}
.ls1a_c00005{letter-spacing:-0.100800pt;}
.ls19_c00005{letter-spacing:-0.087953pt;}
.ls3_c00005{letter-spacing:0.000000pt;}
.ls15_c00005{letter-spacing:0.011807pt;}
.ls36_c00005{letter-spacing:0.030793pt;}
.ls38_c00005{letter-spacing:0.035340pt;}
.ls1f_c00005{letter-spacing:0.088480pt;}
.ls2e_c00005{letter-spacing:0.117333pt;}
.ls27_c00005{letter-spacing:0.131487pt;}
.ls42_c00005{letter-spacing:0.163000pt;}
.ls24_c00005{letter-spacing:0.198000pt;}
.ls3a_c00005{letter-spacing:0.258333pt;}
.ls33_c00005{letter-spacing:0.280000pt;}
.ls3c_c00005{letter-spacing:0.282600pt;}
.ls44_c00005{letter-spacing:0.289800pt;}
.ls43_c00005{letter-spacing:0.329093pt;}
.ls1c_c00005{letter-spacing:0.349867pt;}
.ls3b_c00005{letter-spacing:0.367613pt;}
.ls39_c00005{letter-spacing:0.471193pt;}
.ls2c_c00005{letter-spacing:0.482900pt;}
.ls25_c00005{letter-spacing:0.491933pt;}
.ls7_c00005{letter-spacing:0.498000pt;}
.ls47_c00005{letter-spacing:0.503067pt;}
.ls35_c00005{letter-spacing:0.525893pt;}
.ls26_c00005{letter-spacing:0.590400pt;}
.lsb_c00005{letter-spacing:0.592920pt;}
.ls2b_c00005{letter-spacing:0.597647pt;}
.ls3d_c00005{letter-spacing:0.616000pt;}
.ls2d_c00005{letter-spacing:0.648000pt;}
.ls14_c00005{letter-spacing:0.649600pt;}
.lse_c00005{letter-spacing:0.698533pt;}
.ls13_c00005{letter-spacing:0.702733pt;}
.ls6_c00005{letter-spacing:0.708267pt;}
.ls3f_c00005{letter-spacing:0.711200pt;}
.ls45_c00005{letter-spacing:0.719133pt;}
.ls41_c00005{letter-spacing:0.804133pt;}
.ls46_c00005{letter-spacing:1.057000pt;}
.ls31_c00005{letter-spacing:1.138573pt;}
.ls2f_c00005{letter-spacing:1.144000pt;}
.ls49_c00005{letter-spacing:1.193400pt;}
.ls0_c00005{letter-spacing:1.416533pt;}
.ls48_c00005{letter-spacing:1.437480pt;}
.ls10_c00005{letter-spacing:1.495200pt;}
.ls11_c00005{letter-spacing:2.127440pt;}
.ls1_c00005{letter-spacing:2.130333pt;}
.ls40_c00005{letter-spacing:2.906400pt;}
.ls28_c00005{letter-spacing:6.080000pt;}
.ls3e_c00005{letter-spacing:7.640000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._a_c00005{margin-left:-14.030338pt;}
._8_c00005{margin-left:-10.147456pt;}
._0_c00005{margin-left:-8.413251pt;}
._2_c00005{margin-left:-6.963845pt;}
._5_c00005{margin-left:-5.664661pt;}
._1_c00005{margin-left:-4.686956pt;}
._3_c00005{margin-left:-3.078052pt;}
._7_c00005{margin-left:-1.784315pt;}
._d_c00005{width:1.563487pt;}
._6_c00005{width:2.758730pt;}
._c_c00005{width:4.051550pt;}
._4_c00005{width:5.818550pt;}
._9_c00005{width:7.829195pt;}
._e_c00005{width:9.658496pt;}
._f_c00005{width:11.354728pt;}
._10_c00005{width:786.320236pt;}
._b_c00005{width:789.324155pt;}
.fs1b_c00005{font-size:50.000000pt;}
.fs12_c00005{font-size:50.666667pt;}
.fs1e_c00005{font-size:53.333333pt;}
.fsf_c00005{font-size:54.666667pt;}
.fs0_c00005{font-size:55.333333pt;}
.fs8_c00005{font-size:56.000000pt;}
.fs7_c00005{font-size:56.666667pt;}
.fs9_c00005{font-size:58.666667pt;}
.fs1_c00005{font-size:59.333333pt;}
.fs5_c00005{font-size:60.666667pt;}
.fs17_c00005{font-size:99.333333pt;}
.fs1c_c00005{font-size:100.666667pt;}
.fs1d_c00005{font-size:102.000000pt;}
.fs15_c00005{font-size:102.666667pt;}
.fs19_c00005{font-size:103.333333pt;}
.fs14_c00005{font-size:104.000000pt;}
.fs3_c00005{font-size:104.666667pt;}
.fs1a_c00005{font-size:105.333333pt;}
.fs13_c00005{font-size:106.666667pt;}
.fsb_c00005{font-size:107.333333pt;}
.fs4_c00005{font-size:108.000000pt;}
.fs11_c00005{font-size:108.666667pt;}
.fse_c00005{font-size:109.333333pt;}
.fs10_c00005{font-size:110.000000pt;}
.fs2_c00005{font-size:110.666667pt;}
.fsd_c00005{font-size:111.333333pt;}
.fsa_c00005{font-size:112.000000pt;}
.fs6_c00005{font-size:112.666667pt;}
.fs18_c00005{font-size:114.000000pt;}
.fsc_c00005{font-size:114.666667pt;}
.fs16_c00005{font-size:116.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y68_c00005{bottom:220.800253pt;}
.y67_c00005{bottom:221.761187pt;}
.y66_c00005{bottom:234.880387pt;}
.y65_c00005{bottom:234.880533pt;}
.y64_c00005{bottom:248.481467pt;}
.y63_c00005{bottom:248.481613pt;}
.y62_c00005{bottom:262.081053pt;}
.y61_c00005{bottom:262.400387pt;}
.y60_c00005{bottom:288.320800pt;}
.y5f_c00005{bottom:289.280253pt;}
.y5d_c00005{bottom:315.519733pt;}
.y5e_c00005{bottom:315.520000pt;}
.y5b_c00005{bottom:328.640013pt;}
.y5c_c00005{bottom:328.640667pt;}
.y5a_c00005{bottom:342.401373pt;}
.y59_c00005{bottom:342.402040pt;}
.y57_c00005{bottom:356.160000pt;}
.y58_c00005{bottom:356.160640pt;}
.y55_c00005{bottom:369.920853pt;}
.y56_c00005{bottom:369.921347pt;}
.y54_c00005{bottom:383.361373pt;}
.y53_c00005{bottom:396.801347pt;}
.y52_c00005{bottom:396.801680pt;}
.y51_c00005{bottom:410.881347pt;}
.y50_c00005{bottom:410.882053pt;}
.y4e_c00005{bottom:424.640013pt;}
.y4f_c00005{bottom:424.640667pt;}
.y4c_c00005{bottom:438.080000pt;}
.y4d_c00005{bottom:438.080520pt;}
.y4a_c00005{bottom:451.840947pt;}
.y4b_c00005{bottom:451.841347pt;}
.y49_c00005{bottom:464.960413pt;}
.y48_c00005{bottom:464.960853pt;}
.y47_c00005{bottom:479.040533pt;}
.y46_c00005{bottom:480.000000pt;}
.y45_c00005{bottom:492.161053pt;}
.y44_c00005{bottom:493.120640pt;}
.y43_c00005{bottom:519.681187pt;}
.y42_c00005{bottom:519.681480pt;}
.y41_c00005{bottom:546.561040pt;}
.y40_c00005{bottom:547.201173pt;}
.y3f_c00005{bottom:559.680133pt;}
.y3e_c00005{bottom:560.000933pt;}
.y3d_c00005{bottom:573.760253pt;}
.y3c_c00005{bottom:574.400387pt;}
.y3b_c00005{bottom:587.200120pt;}
.y3a_c00005{bottom:588.161053pt;}
.y38_c00005{bottom:600.960413pt;}
.y39_c00005{bottom:600.960933pt;}
.y37_c00005{bottom:614.400920pt;}
.y36_c00005{bottom:614.720253pt;}
.y35_c00005{bottom:627.840773pt;}
.y34_c00005{bottom:627.841493pt;}
.y33_c00005{bottom:641.600093pt;}
.y32_c00005{bottom:642.240240pt;}
.y2f_c00005{bottom:655.039427pt;}
.y30_c00005{bottom:655.040000pt;}
.y31_c00005{bottom:655.360800pt;}
.y2e_c00005{bottom:668.800787pt;}
.y2d_c00005{bottom:670.081053pt;}
.y2b_c00005{bottom:682.880293pt;}
.y2c_c00005{bottom:682.880773pt;}
.y2a_c00005{bottom:696.320800pt;}
.y29_c00005{bottom:696.320907pt;}
.y28_c00005{bottom:723.520013pt;}
.y27_c00005{bottom:724.160080pt;}
.y26_c00005{bottom:751.039960pt;}
.y25_c00005{bottom:751.040347pt;}
.y24_c00005{bottom:764.641027pt;}
.y23_c00005{bottom:764.641293pt;}
.y21_c00005{bottom:777.920893pt;}
.y22_c00005{bottom:777.921387pt;}
.y20_c00005{bottom:791.361413pt;}
.y1f_c00005{bottom:792.000000pt;}
.y1e_c00005{bottom:805.441400pt;}
.y1d_c00005{bottom:805.760747pt;}
.y1b_c00005{bottom:818.560013pt;}
.y1c_c00005{bottom:818.560547pt;}
.y1a_c00005{bottom:832.321373pt;}
.y19_c00005{bottom:832.321880pt;}
.y17_c00005{bottom:846.080040pt;}
.y18_c00005{bottom:846.080480pt;}
.y16_c00005{bottom:859.841387pt;}
.y15_c00005{bottom:860.160640pt;}
.y13_c00005{bottom:873.280680pt;}
.y14_c00005{bottom:873.281173pt;}
.y12_c00005{bottom:886.721187pt;}
.y11_c00005{bottom:886.721947pt;}
.yf_c00005{bottom:900.479853pt;}
.y10_c00005{bottom:900.480547pt;}
.ye_c00005{bottom:914.241213pt;}
.yd_c00005{bottom:914.241880pt;}
.yc_c00005{bottom:928.000493pt;}
.yb_c00005{bottom:928.321373pt;}
.y9_c00005{bottom:941.440227pt;}
.ya_c00005{bottom:941.440347pt;}
.y8_c00005{bottom:955.201173pt;}
.y6_c00005{bottom:968.640547pt;}
.y7_c00005{bottom:968.641027pt;}
.y5_c00005{bottom:982.081053pt;}
.y4_c00005{bottom:982.400387pt;}
.y2_c00005{bottom:995.839760pt;}
.y3_c00005{bottom:995.840253pt;}
.y1_c00005{bottom:1009.280280pt;}
.h1f_c00005{height:52.148438pt;}
.h22_c00005{height:52.708333pt;}
.h15_c00005{height:52.843750pt;}
.h12_c00005{height:54.026042pt;}
.hb_c00005{height:54.279622pt;}
.h1_c00005{height:54.684896pt;}
.h9_c00005{height:55.343750pt;}
.h8_c00005{height:55.587565pt;}
.hc_c00005{height:56.002604pt;}
.ha_c00005{height:57.549479pt;}
.h2_c00005{height:58.203451pt;}
.h16_c00005{height:59.485424pt;}
.h6_c00005{height:59.511393pt;}
.h1b_c00005{height:103.601562pt;}
.h20_c00005{height:104.992188pt;}
.h21_c00005{height:106.382812pt;}
.h19_c00005{height:107.078125pt;}
.h1d_c00005{height:107.773438pt;}
.h18_c00005{height:108.468750pt;}
.h4_c00005{height:109.164062pt;}
.h1e_c00005{height:109.859375pt;}
.h17_c00005{height:111.250000pt;}
.he_c00005{height:111.945312pt;}
.h5_c00005{height:112.640625pt;}
.h14_c00005{height:113.335938pt;}
.h11_c00005{height:114.031250pt;}
.h13_c00005{height:114.726562pt;}
.h3_c00005{height:115.421875pt;}
.h10_c00005{height:116.117188pt;}
.hd_c00005{height:116.812500pt;}
.h7_c00005{height:117.507812pt;}
.h1c_c00005{height:118.898438pt;}
.hf_c00005{height:119.593750pt;}
.h1a_c00005{height:120.984375pt;}
.h0_c00005{height:1122.666667pt;}
.w0_c00005{width:793.333333pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:125.119613pt;}
.x36_c00005{left:126.079067pt;}
.x44_c00005{left:127.038413pt;}
.x27_c00005{left:181.440000pt;}
.x49_c00005{left:183.358933pt;}
.x9_c00005{left:196.798787pt;}
.x1e_c00005{left:197.759720pt;}
.x3c_c00005{left:198.719200pt;}
.x47_c00005{left:199.678667pt;}
.x2_c00005{left:213.118667pt;}
.x31_c00005{left:214.079587pt;}
.x3e_c00005{left:215.039067pt;}
.x26_c00005{left:216.000000pt;}
.xd_c00005{left:221.438920pt;}
.x2e_c00005{left:222.719200pt;}
.x3f_c00005{left:271.678667pt;}
.xe_c00005{left:285.758787pt;}
.x40_c00005{left:296.318787pt;}
.x1a_c00005{left:301.759320pt;}
.x4b_c00005{left:306.238787pt;}
.xf_c00005{left:310.398920pt;}
.x4e_c00005{left:312.638667pt;}
.x15_c00005{left:317.759720pt;}
.x1b_c00005{left:319.038533pt;}
.x19_c00005{left:319.999453pt;}
.x1d_c00005{left:327.999067pt;}
.x3a_c00005{left:329.279320pt;}
.x16_c00005{left:334.079587pt;}
.x23_c00005{left:352.319867pt;}
.x45_c00005{left:354.238813pt;}
.x3_c00005{left:360.319333pt;}
.x3d_c00005{left:361.918907pt;}
.x18_c00005{left:367.999467pt;}
.x21_c00005{left:376.319867pt;}
.x46_c00005{left:378.559573pt;}
.x4c_c00005{left:386.559040pt;}
.xa_c00005{left:390.079067pt;}
.x2b_c00005{left:391.038533pt;}
.x33_c00005{left:401.279333pt;}
.x41_c00005{left:402.238773pt;}
.xb_c00005{left:406.079587pt;}
.x2c_c00005{left:407.039067pt;}
.x6_c00005{left:408.319333pt;}
.x20_c00005{left:416.639613pt;}
.x32_c00005{left:417.599040pt;}
.x4d_c00005{left:419.198693pt;}
.x10_c00005{left:423.039587pt;}
.x11_c00005{left:446.078693pt;}
.x28_c00005{left:454.719720pt;}
.x4_c00005{left:456.000000pt;}
.x2f_c00005{left:456.959467pt;}
.x3b_c00005{left:457.918907pt;}
.x24_c00005{left:462.719200pt;}
.x22_c00005{left:464.639613pt;}
.x25_c00005{left:479.359867pt;}
.x34_c00005{left:481.278773pt;}
.x37_c00005{left:487.678667pt;}
.x35_c00005{left:489.599040pt;}
.x42_c00005{left:490.558507pt;}
.x30_c00005{left:497.598680pt;}
.x7_c00005{left:504.319333pt;}
.x48_c00005{left:506.879840pt;}
.x12_c00005{left:510.399867pt;}
.xc_c00005{left:512.318813pt;}
.x2d_c00005{left:513.279707pt;}
.x39_c00005{left:514.239173pt;}
.x17_c00005{left:520.639200pt;}
.x29_c00005{left:521.598680pt;}
.x4a_c00005{left:523.199707pt;}
.x1f_c00005{left:528.959467pt;}
.x13_c00005{left:535.359333pt;}
.x1c_c00005{left:545.279333pt;}
.x38_c00005{left:546.559573pt;}
.x14_c00005{left:567.358933pt;}
.x8_c00005{left:568.639200pt;}
.x5_c00005{left:688.319827pt;}
.x2a_c00005{left:689.279293pt;}
.x43_c00005{left:690.238773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_55733d72ae9abb4f8c7db067.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_79bdf8692e1a7754d455dbd2.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_53750ac6417a43251a8b209d.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00006{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00006{transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);}
.m14_c00006{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m17_c00006{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m16_c00006{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.mc_c00006{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m19_c00006{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.m15_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb_c00006{transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254360,0.000000,0.000000,0.250000,0,0);}
.m5_c00006{transform:matrix(0.255848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255848,0.000000,0.000000,0.250000,0,0);}
.m1e_c00006{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m13_c00006{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.ma_c00006{transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257310,0.000000,0.000000,0.250000,0,0);}
.m12_c00006{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m7_c00006{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m1a_c00006{transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);}
.m18_c00006{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{transform:matrix(0.264062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264062,0.000000,0.000000,0.250000,0,0);}
.m9_c00006{transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);}
.m1f_c00006{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.m10_c00006{transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266871,0.000000,0.000000,0.250000,0,0);}
.md_c00006{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.m11_c00006{transform:matrix(0.271472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271472,0.000000,0.000000,0.250000,0,0);}
.m4_c00006{transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);}
.mf_c00006{transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);}
.me_c00006{transform:matrix(0.274351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274351,0.000000,0.000000,0.250000,0,0);}
.m20_c00006{transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);}
.m1c_c00006{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m8_c00006{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.758621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758621,0.000000,0.000000,0.250000,0,0);}
.v1_c00006{vertical-align:-1.445160px;}
.v0_c00006{vertical-align:0.000000px;}
.ls8_c00006{letter-spacing:-7.884300px;}
.ls9_c00006{letter-spacing:-7.097100px;}
.ls21_c00006{letter-spacing:-6.381900px;}
.lsb_c00006{letter-spacing:-6.309900px;}
.ls25_c00006{letter-spacing:-6.002025px;}
.lse_c00006{letter-spacing:-5.517165px;}
.ls27_c00006{letter-spacing:-5.283600px;}
.ls23_c00006{letter-spacing:-4.554900px;}
.ls28_c00006{letter-spacing:-1.715400px;}
.ls11_c00006{letter-spacing:-0.739500px;}
.ls1d_c00006{letter-spacing:-0.391200px;}
.ls14_c00006{letter-spacing:-0.361050px;}
.ls15_c00006{letter-spacing:-0.346275px;}
.ls1c_c00006{letter-spacing:-0.343523px;}
.ls29_c00006{letter-spacing:-0.318750px;}
.ls12_c00006{letter-spacing:-0.250500px;}
.ls10_c00006{letter-spacing:-0.205200px;}
.ls20_c00006{letter-spacing:-0.192375px;}
.ls16_c00006{letter-spacing:-0.064500px;}
.lsd_c00006{letter-spacing:-0.036968px;}
.ls1e_c00006{letter-spacing:-0.025200px;}
.ls7_c00006{letter-spacing:-0.024750px;}
.lsf_c00006{letter-spacing:0.000000px;}
.ls18_c00006{letter-spacing:0.037200px;}
.ls26_c00006{letter-spacing:0.060000px;}
.ls19_c00006{letter-spacing:0.136125px;}
.ls24_c00006{letter-spacing:0.237795px;}
.ls22_c00006{letter-spacing:0.516600px;}
.lsa_c00006{letter-spacing:0.615825px;}
.ls1_c00006{letter-spacing:0.787200px;}
.ls5_c00006{letter-spacing:0.790575px;}
.lsc_c00006{letter-spacing:0.982800px;}
.ls1a_c00006{letter-spacing:1.039500px;}
.ls1f_c00006{letter-spacing:1.169730px;}
.ls1b_c00006{letter-spacing:1.239300px;}
.ls17_c00006{letter-spacing:1.540500px;}
.ls0_c00006{letter-spacing:1.574400px;}
.ls4_c00006{letter-spacing:1.574925px;}
.ls6_c00006{letter-spacing:2.364878px;}
.ls2_c00006{letter-spacing:2.367750px;}
.ls3_c00006{letter-spacing:3.942150px;}
.ls13_c00006{letter-spacing:7.663950px;}
.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;}
._4_c00006{margin-left:-7.515268px;}
._f_c00006{margin-left:-5.160607px;}
._9_c00006{margin-left:-2.663234px;}
._e_c00006{margin-left:-1.242647px;}
._1_c00006{width:1.137403px;}
._5_c00006{width:2.152878px;}
._c_c00006{width:3.327150px;}
._14_c00006{width:4.526242px;}
._7_c00006{width:6.582140px;}
._12_c00006{width:8.431745px;}
._18_c00006{width:45.237681px;}
._15_c00006{width:54.790192px;}
._11_c00006{width:65.306755px;}
._d_c00006{width:66.819403px;}
._8_c00006{width:71.094363px;}
._16_c00006{width:72.391555px;}
._6_c00006{width:78.301737px;}
._0_c00006{width:79.476292px;}
._3_c00006{width:89.986295px;}
._b_c00006{width:91.505692px;}
._17_c00006{width:1036.397968px;}
._13_c00006{width:1491.031231px;}
._a_c00006{width:1525.323252px;}
._10_c00006{width:1565.390092px;}
._2_c00006{width:1715.745545px;}
.fc0_c00006{color:transparent;}
.fs6_c00006{font-size:43.500000px;}
.fs8_c00006{font-size:47.250000px;}
.fs14_c00006{font-size:55.500000px;}
.fsb_c00006{font-size:59.250000px;}
.fs15_c00006{font-size:60.000000px;}
.fs1_c00006{font-size:61.500000px;}
.fs11_c00006{font-size:62.250000px;}
.fs13_c00006{font-size:63.000000px;}
.fsd_c00006{font-size:114.750000px;}
.fsc_c00006{font-size:115.500000px;}
.fs4_c00006{font-size:119.250000px;}
.fs3_c00006{font-size:120.000000px;}
.fs2_c00006{font-size:120.750000px;}
.fse_c00006{font-size:122.250000px;}
.fs10_c00006{font-size:123.000000px;}
.fs0_c00006{font-size:123.750000px;}
.fs9_c00006{font-size:124.500000px;}
.fs7_c00006{font-size:125.250000px;}
.fsf_c00006{font-size:126.000000px;}
.fs16_c00006{font-size:127.500000px;}
.fs5_c00006{font-size:128.250000px;}
.fsa_c00006{font-size:129.000000px;}
.fs12_c00006{font-size:129.750000px;}
.y0_c00006{bottom:0.000000px;}
.y2b_c00006{bottom:361.800585px;}
.y2a_c00006{bottom:392.040570px;}
.y29_c00006{bottom:453.601320px;}
.y28_c00006{bottom:576.360300px;}
.y27_c00006{bottom:698.400885px;}
.y26_c00006{bottom:729.000000px;}
.y25_c00006{bottom:790.199805px;}
.y24_c00006{bottom:820.800570px;}
.y23_c00006{bottom:821.159820px;}
.y21_c00006{bottom:851.760240px;}
.y22_c00006{bottom:851.760780px;}
.y20_c00006{bottom:882.540990px;}
.y1f_c00006{bottom:882.720795px;}
.y1e_c00006{bottom:897.840540px;}
.y1d_c00006{bottom:898.199805px;}
.y1b_c00006{bottom:912.959925px;}
.y1c_c00006{bottom:912.960570px;}
.y19_c00006{bottom:943.920255px;}
.y1a_c00006{bottom:943.920600px;}
.y18_c00006{bottom:974.700990px;}
.y17_c00006{bottom:974.701485px;}
.y16_c00006{bottom:989.641290px;}
.y15_c00006{bottom:990.000555px;}
.y14_c00006{bottom:1004.761140px;}
.y13_c00006{bottom:1020.601320px;}
.y12_c00006{bottom:1020.601410px;}
.y11_c00006{bottom:1035.721155px;}
.y10_c00006{bottom:1035.721440px;}
.yf_c00006{bottom:1050.841185px;}
.ye_c00006{bottom:1051.200435px;}
.yd_c00006{bottom:1066.320285px;}
.yc_c00006{bottom:1066.681185px;}
.yb_c00006{bottom:1074.960570px;}
.y9_c00006{bottom:1081.440105px;}
.ya_c00006{bottom:1081.440315px;}
.y8_c00006{bottom:1096.921140px;}
.y7_c00006{bottom:1097.280390px;}
.y5_c00006{bottom:1111.500030px;}
.y6_c00006{bottom:1111.500555px;}
.y4_c00006{bottom:1126.979640px;}
.y3_c00006{bottom:1126.979760px;}
.y2_c00006{bottom:1142.280855px;}
.y1_c00006{bottom:1142.640105px;}
.h7_c00006{height:45.369141px;}
.h9_c00006{height:49.280273px;}
.h17_c00006{height:57.884766px;}
.hc_c00006{height:58.555664px;}
.h18_c00006{height:60.468750px;}
.h2_c00006{height:60.779297px;}
.h10_c00006{height:61.499117px;}
.h13_c00006{height:61.520508px;}
.h16_c00006{height:61.795898px;}
.h15_c00006{height:62.261719px;}
.he_c00006{height:119.680664px;}
.hd_c00006{height:120.462891px;}
.h5_c00006{height:124.374023px;}
.h4_c00006{height:125.156250px;}
.h3_c00006{height:125.938477px;}
.hf_c00006{height:127.502930px;}
.h12_c00006{height:128.285156px;}
.h1_c00006{height:129.067383px;}
.ha_c00006{height:129.849609px;}
.h8_c00006{height:130.631836px;}
.h11_c00006{height:131.414062px;}
.h19_c00006{height:132.978516px;}
.h6_c00006{height:133.760742px;}
.hb_c00006{height:134.542969px;}
.h14_c00006{height:135.325195px;}
.h0_c00006{height:1263.000000px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:142.199850px;}
.x11_c00006{left:153.359850px;}
.x12_c00006{left:169.199850px;}
.x13_c00006{left:186.478665px;}
.x17_c00006{left:241.559685px;}
.x19_c00006{left:272.158785px;}
.x10_c00006{left:289.080000px;}
.x16_c00006{left:361.798950px;}
.x1_c00006{left:370.439235px;}
.x15_c00006{left:379.438635px;}
.xa_c00006{left:397.080000px;}
.x7_c00006{left:406.438665px;}
.x5_c00006{left:415.439670px;}
.xb_c00006{left:424.080000px;}
.x8_c00006{left:451.439250px;}
.x9_c00006{left:469.439670px;}
.x14_c00006{left:496.439670px;}
.x3_c00006{left:514.438665px;}
.xe_c00006{left:532.439250px;}
.xc_c00006{left:550.798920px;}
.x6_c00006{left:559.798515px;}
.xd_c00006{left:695.879520px;}
.xf_c00006{left:741.598530px;}
.x4_c00006{left:775.439205px;}
.x18_c00006{left:776.879520px;}
@media print{
.v1_c00006{vertical-align:-1.284587pt;}
.v0_c00006{vertical-align:0.000000pt;}
.ls8_c00006{letter-spacing:-7.008267pt;}
.ls9_c00006{letter-spacing:-6.308533pt;}
.ls21_c00006{letter-spacing:-5.672800pt;}
.lsb_c00006{letter-spacing:-5.608800pt;}
.ls25_c00006{letter-spacing:-5.335133pt;}
.lse_c00006{letter-spacing:-4.904147pt;}
.ls27_c00006{letter-spacing:-4.696533pt;}
.ls23_c00006{letter-spacing:-4.048800pt;}
.ls28_c00006{letter-spacing:-1.524800pt;}
.ls11_c00006{letter-spacing:-0.657333pt;}
.ls1d_c00006{letter-spacing:-0.347733pt;}
.ls14_c00006{letter-spacing:-0.320933pt;}
.ls15_c00006{letter-spacing:-0.307800pt;}
.ls1c_c00006{letter-spacing:-0.305353pt;}
.ls29_c00006{letter-spacing:-0.283333pt;}
.ls12_c00006{letter-spacing:-0.222667pt;}
.ls10_c00006{letter-spacing:-0.182400pt;}
.ls20_c00006{letter-spacing:-0.171000pt;}
.ls16_c00006{letter-spacing:-0.057333pt;}
.lsd_c00006{letter-spacing:-0.032860pt;}
.ls1e_c00006{letter-spacing:-0.022400pt;}
.ls7_c00006{letter-spacing:-0.022000pt;}
.lsf_c00006{letter-spacing:0.000000pt;}
.ls18_c00006{letter-spacing:0.033067pt;}
.ls26_c00006{letter-spacing:0.053333pt;}
.ls19_c00006{letter-spacing:0.121000pt;}
.ls24_c00006{letter-spacing:0.211373pt;}
.ls22_c00006{letter-spacing:0.459200pt;}
.lsa_c00006{letter-spacing:0.547400pt;}
.ls1_c00006{letter-spacing:0.699733pt;}
.ls5_c00006{letter-spacing:0.702733pt;}
.lsc_c00006{letter-spacing:0.873600pt;}
.ls1a_c00006{letter-spacing:0.924000pt;}
.ls1f_c00006{letter-spacing:1.039760pt;}
.ls1b_c00006{letter-spacing:1.101600pt;}
.ls17_c00006{letter-spacing:1.369333pt;}
.ls0_c00006{letter-spacing:1.399467pt;}
.ls4_c00006{letter-spacing:1.399933pt;}
.ls6_c00006{letter-spacing:2.102113pt;}
.ls2_c00006{letter-spacing:2.104667pt;}
.ls3_c00006{letter-spacing:3.504133pt;}
.ls13_c00006{letter-spacing:6.812400pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._4_c00006{margin-left:-6.680239pt;}
._f_c00006{margin-left:-4.587206pt;}
._9_c00006{margin-left:-2.367319pt;}
._e_c00006{margin-left:-1.104575pt;}
._1_c00006{width:1.011025pt;}
._5_c00006{width:1.913670pt;}
._c_c00006{width:2.957467pt;}
._14_c00006{width:4.023326pt;}
._7_c00006{width:5.850791pt;}
._12_c00006{width:7.494884pt;}
._18_c00006{width:40.211272pt;}
._15_c00006{width:48.702393pt;}
._11_c00006{width:58.050449pt;}
._d_c00006{width:59.395025pt;}
._8_c00006{width:63.194989pt;}
._16_c00006{width:64.348049pt;}
._6_c00006{width:69.601544pt;}
._0_c00006{width:70.645593pt;}
._3_c00006{width:79.987818pt;}
._b_c00006{width:81.338393pt;}
._17_c00006{width:921.242639pt;}
._13_c00006{width:1325.361094pt;}
._a_c00006{width:1355.842891pt;}
._10_c00006{width:1391.457860pt;}
._2_c00006{width:1525.107151pt;}
.fs6_c00006{font-size:38.666667pt;}
.fs8_c00006{font-size:42.000000pt;}
.fs14_c00006{font-size:49.333333pt;}
.fsb_c00006{font-size:52.666667pt;}
.fs15_c00006{font-size:53.333333pt;}
.fs1_c00006{font-size:54.666667pt;}
.fs11_c00006{font-size:55.333333pt;}
.fs13_c00006{font-size:56.000000pt;}
.fsd_c00006{font-size:102.000000pt;}
.fsc_c00006{font-size:102.666667pt;}
.fs4_c00006{font-size:106.000000pt;}
.fs3_c00006{font-size:106.666667pt;}
.fs2_c00006{font-size:107.333333pt;}
.fse_c00006{font-size:108.666667pt;}
.fs10_c00006{font-size:109.333333pt;}
.fs0_c00006{font-size:110.000000pt;}
.fs9_c00006{font-size:110.666667pt;}
.fs7_c00006{font-size:111.333333pt;}
.fsf_c00006{font-size:112.000000pt;}
.fs16_c00006{font-size:113.333333pt;}
.fs5_c00006{font-size:114.000000pt;}
.fsa_c00006{font-size:114.666667pt;}
.fs12_c00006{font-size:115.333333pt;}
.y0_c00006{bottom:0.000000pt;}
.y2b_c00006{bottom:321.600520pt;}
.y2a_c00006{bottom:348.480507pt;}
.y29_c00006{bottom:403.201173pt;}
.y28_c00006{bottom:512.320267pt;}
.y27_c00006{bottom:620.800787pt;}
.y26_c00006{bottom:648.000000pt;}
.y25_c00006{bottom:702.399827pt;}
.y24_c00006{bottom:729.600507pt;}
.y23_c00006{bottom:729.919840pt;}
.y21_c00006{bottom:757.120213pt;}
.y22_c00006{bottom:757.120693pt;}
.y20_c00006{bottom:784.480880pt;}
.y1f_c00006{bottom:784.640707pt;}
.y1e_c00006{bottom:798.080480pt;}
.y1d_c00006{bottom:798.399827pt;}
.y1b_c00006{bottom:811.519933pt;}
.y1c_c00006{bottom:811.520507pt;}
.y19_c00006{bottom:839.040227pt;}
.y1a_c00006{bottom:839.040533pt;}
.y18_c00006{bottom:866.400880pt;}
.y17_c00006{bottom:866.401320pt;}
.y16_c00006{bottom:879.681147pt;}
.y15_c00006{bottom:880.000493pt;}
.y14_c00006{bottom:893.121013pt;}
.y13_c00006{bottom:907.201173pt;}
.y12_c00006{bottom:907.201253pt;}
.y11_c00006{bottom:920.641027pt;}
.y10_c00006{bottom:920.641280pt;}
.yf_c00006{bottom:934.081053pt;}
.ye_c00006{bottom:934.400387pt;}
.yd_c00006{bottom:947.840253pt;}
.yc_c00006{bottom:948.161053pt;}
.yb_c00006{bottom:955.520507pt;}
.y9_c00006{bottom:961.280093pt;}
.ya_c00006{bottom:961.280280pt;}
.y8_c00006{bottom:975.041013pt;}
.y7_c00006{bottom:975.360347pt;}
.y5_c00006{bottom:988.000027pt;}
.y6_c00006{bottom:988.000493pt;}
.y4_c00006{bottom:1001.759680pt;}
.y3_c00006{bottom:1001.759787pt;}
.y2_c00006{bottom:1015.360760pt;}
.y1_c00006{bottom:1015.680093pt;}
.h7_c00006{height:40.328125pt;}
.h9_c00006{height:43.804688pt;}
.h17_c00006{height:51.453125pt;}
.hc_c00006{height:52.049479pt;}
.h18_c00006{height:53.750000pt;}
.h2_c00006{height:54.026042pt;}
.h10_c00006{height:54.665882pt;}
.h13_c00006{height:54.684896pt;}
.h16_c00006{height:54.929688pt;}
.h15_c00006{height:55.343750pt;}
.he_c00006{height:106.382812pt;}
.hd_c00006{height:107.078125pt;}
.h5_c00006{height:110.554688pt;}
.h4_c00006{height:111.250000pt;}
.h3_c00006{height:111.945312pt;}
.hf_c00006{height:113.335938pt;}
.h12_c00006{height:114.031250pt;}
.h1_c00006{height:114.726562pt;}
.ha_c00006{height:115.421875pt;}
.h8_c00006{height:116.117188pt;}
.h11_c00006{height:116.812500pt;}
.h19_c00006{height:118.203125pt;}
.h6_c00006{height:118.898438pt;}
.hb_c00006{height:119.593750pt;}
.h14_c00006{height:120.289062pt;}
.h0_c00006{height:1122.666667pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:126.399867pt;}
.x11_c00006{left:136.319867pt;}
.x12_c00006{left:150.399867pt;}
.x13_c00006{left:165.758813pt;}
.x17_c00006{left:214.719720pt;}
.x19_c00006{left:241.918920pt;}
.x10_c00006{left:256.960000pt;}
.x16_c00006{left:321.599067pt;}
.x1_c00006{left:329.279320pt;}
.x15_c00006{left:337.278787pt;}
.xa_c00006{left:352.960000pt;}
.x7_c00006{left:361.278813pt;}
.x5_c00006{left:369.279707pt;}
.xb_c00006{left:376.960000pt;}
.x8_c00006{left:401.279333pt;}
.x9_c00006{left:417.279707pt;}
.x14_c00006{left:441.279707pt;}
.x3_c00006{left:457.278813pt;}
.xe_c00006{left:473.279333pt;}
.xc_c00006{left:489.599040pt;}
.x6_c00006{left:497.598680pt;}
.xd_c00006{left:618.559573pt;}
.xf_c00006{left:659.198693pt;}
.x4_c00006{left:689.279293pt;}
.x18_c00006{left:690.559573pt;}
}





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

.ir_c00007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_3e2185f1e28524de850f0b3e.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_a038037465048d65da3f5342.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00007{transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);}
.m5_c00007{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.mb_c00007{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m29_c00007{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m23_c00007{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m3b_c00007{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m39_c00007{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m1c_c00007{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.mc_c00007{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m6_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c00007{transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m3c_c00007{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m16_c00007{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m2d_c00007{transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);}
.m3a_c00007{transform:matrix(0.257530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257530,0.000000,0.000000,0.250000,0,0);}
.m10_c00007{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);}
.m21_c00007{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m1b_c00007{transform:matrix(0.258982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258982,0.000000,0.000000,0.250000,0,0);}
.m2e_c00007{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);}
.m36_c00007{transform:matrix(0.260671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260671,0.000000,0.000000,0.250000,0,0);}
.m18_c00007{transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261976,0.000000,0.000000,0.250000,0,0);}
.m26_c00007{transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);}
.m22_c00007{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m33_c00007{transform:matrix(0.264062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264062,0.000000,0.000000,0.250000,0,0);}
.m2f_c00007{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m27_c00007{transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);}
.m1f_c00007{transform:matrix(0.265337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265337,0.000000,0.000000,0.250000,0,0);}
.m35_c00007{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m32_c00007{transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265528,0.000000,0.000000,0.250000,0,0);}
.m31_c00007{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(0.266272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266272,0.000000,0.000000,0.250000,0,0);}
.m37_c00007{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00007{transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267296,0.000000,0.000000,0.250000,0,0);}
.mf_c00007{transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);}
.m19_c00007{transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270062,0.000000,0.000000,0.250000,0,0);}
.m12_c00007{transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270186,0.000000,0.000000,0.250000,0,0);}
.m25_c00007{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m1e_c00007{transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272013,0.000000,0.000000,0.250000,0,0);}
.m1a_c00007{transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m17_c00007{transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);}
.m1d_c00007{transform:matrix(0.275478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275478,0.000000,0.000000,0.250000,0,0);}
.m3d_c00007{transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);}
.m14_c00007{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m38_c00007{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m11_c00007{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m24_c00007{transform:matrix(0.376087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376087,0.000000,0.000000,0.250000,0,0);}
.m2a_c00007{transform:matrix(1.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.394737,0.000000,0.000000,0.250000,0,0);}
.m2b_c00007{transform:matrix(2.789474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.789474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.789474,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.v1_c00007{vertical-align:1.440660px;}
.v2_c00007{vertical-align:3.602040px;}
.ls18_c00007{letter-spacing:-8.989388px;}
.ls34_c00007{letter-spacing:-3.270375px;}
.lse_c00007{letter-spacing:-2.998605px;}
.ls35_c00007{letter-spacing:-2.454375px;}
.ls39_c00007{letter-spacing:-1.632000px;}
.ls11_c00007{letter-spacing:-1.065968px;}
.ls10_c00007{letter-spacing:-0.816000px;}
.ls14_c00007{letter-spacing:-0.472133px;}
.ls30_c00007{letter-spacing:-0.413325px;}
.lsb_c00007{letter-spacing:-0.358275px;}
.ls2a_c00007{letter-spacing:-0.356700px;}
.ls2b_c00007{letter-spacing:-0.320625px;}
.ls17_c00007{letter-spacing:-0.306915px;}
.ls12_c00007{letter-spacing:-0.282900px;}
.ls23_c00007{letter-spacing:-0.277200px;}
.ls1f_c00007{letter-spacing:-0.274275px;}
.ls13_c00007{letter-spacing:-0.270608px;}
.ls26_c00007{letter-spacing:-0.260700px;}
.ls15_c00007{letter-spacing:-0.246870px;}
.ls1e_c00007{letter-spacing:-0.224903px;}
.ls2c_c00007{letter-spacing:-0.198000px;}
.ls1a_c00007{letter-spacing:-0.147015px;}
.ls31_c00007{letter-spacing:-0.111375px;}
.ls24_c00007{letter-spacing:-0.063000px;}
.ls28_c00007{letter-spacing:-0.037433px;}
.ls3f_c00007{letter-spacing:-0.036270px;}
.ls16_c00007{letter-spacing:-0.014025px;}
.ls7_c00007{letter-spacing:0.000000px;}
.ls2f_c00007{letter-spacing:0.038130px;}
.ls20_c00007{letter-spacing:0.061125px;}
.ls19_c00007{letter-spacing:0.098948px;}
.ls3b_c00007{letter-spacing:0.122715px;}
.ls2e_c00007{letter-spacing:0.138600px;}
.ls25_c00007{letter-spacing:0.172200px;}
.ls29_c00007{letter-spacing:0.209138px;}
.ls1d_c00007{letter-spacing:0.211673px;}
.ls22_c00007{letter-spacing:0.360383px;}
.ls32_c00007{letter-spacing:0.365025px;}
.ls1b_c00007{letter-spacing:0.379200px;}
.ls3d_c00007{letter-spacing:0.398400px;}
.ls9_c00007{letter-spacing:0.405450px;}
.ls3a_c00007{letter-spacing:0.418200px;}
.ls38_c00007{letter-spacing:0.498150px;}
.ls36_c00007{letter-spacing:0.519225px;}
.ls2d_c00007{letter-spacing:0.543375px;}
.ls3e_c00007{letter-spacing:0.634950px;}
.lsa_c00007{letter-spacing:0.679388px;}
.ls33_c00007{letter-spacing:0.720000px;}
.ls6_c00007{letter-spacing:0.809625px;}
.ls1_c00007{letter-spacing:0.816000px;}
.ls37_c00007{letter-spacing:0.972000px;}
.ls8_c00007{letter-spacing:1.518000px;}
.ls0_c00007{letter-spacing:1.632000px;}
.ls5_c00007{letter-spacing:2.393370px;}
.ls2_c00007{letter-spacing:2.454375px;}
.ls3c_c00007{letter-spacing:2.569050px;}
.ls4_c00007{letter-spacing:3.270375px;}
.lsf_c00007{letter-spacing:3.442500px;}
.ls3_c00007{letter-spacing:4.086375px;}
.ls27_c00007{letter-spacing:4.852350px;}
.ls1c_c00007{letter-spacing:4.902375px;}
.ls21_c00007{letter-spacing:5.719013px;}
.lsc_c00007{letter-spacing:7.398600px;}
.lsd_c00007{letter-spacing:9.861405px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:0.000000px;}
._8_c00007{margin-left:-15.803658px;}
._15_c00007{margin-left:-9.085846px;}
._14_c00007{margin-left:-6.291667px;}
._12_c00007{margin-left:-4.994992px;}
._11_c00007{margin-left:-3.654869px;}
._0_c00007{margin-left:-2.078315px;}
._1a_c00007{margin-left:-1.051581px;}
._3_c00007{width:1.644292px;}
._c_c00007{width:2.753869px;}
._1_c00007{width:4.591112px;}
._2_c00007{width:6.137654px;}
._17_c00007{width:8.269356px;}
._16_c00007{width:13.021640px;}
._6_c00007{width:14.025327px;}
._d_c00007{width:15.299935px;}
._a_c00007{width:18.047200px;}
._1b_c00007{width:23.631896px;}
._19_c00007{width:550.667367px;}
._1c_c00007{width:628.971492px;}
._13_c00007{width:752.358440px;}
._4_c00007{width:759.434756px;}
._f_c00007{width:793.196658px;}
._e_c00007{width:794.764712px;}
._9_c00007{width:912.460419px;}
._7_c00007{width:989.349262px;}
._b_c00007{width:990.917315px;}
._1d_c00007{width:1186.552629px;}
._1f_c00007{width:1346.591381px;}
._5_c00007{width:1348.994952px;}
._10_c00007{width:1612.450016px;}
._18_c00007{width:1668.059713px;}
._1e_c00007{width:1812.342408px;}
.fc0_c00007{color:transparent;}
.fs19_c00007{font-size:14.250000px;}
.fs18_c00007{font-size:28.500000px;}
.fs1b_c00007{font-size:49.500000px;}
.fs3_c00007{font-size:60.000000px;}
.fs8_c00007{font-size:60.750000px;}
.fsf_c00007{font-size:61.500000px;}
.fs2_c00007{font-size:62.250000px;}
.fs1_c00007{font-size:63.000000px;}
.fs0_c00007{font-size:63.750000px;}
.fsa_c00007{font-size:64.500000px;}
.fs17_c00007{font-size:86.250000px;}
.fs9_c00007{font-size:115.500000px;}
.fs10_c00007{font-size:117.000000px;}
.fs14_c00007{font-size:117.750000px;}
.fs11_c00007{font-size:118.500000px;}
.fs5_c00007{font-size:119.250000px;}
.fs1a_c00007{font-size:120.000000px;}
.fse_c00007{font-size:120.750000px;}
.fs13_c00007{font-size:121.500000px;}
.fs15_c00007{font-size:122.250000px;}
.fsc_c00007{font-size:123.000000px;}
.fs6_c00007{font-size:123.750000px;}
.fs1c_c00007{font-size:124.500000px;}
.fs12_c00007{font-size:125.250000px;}
.fs16_c00007{font-size:126.000000px;}
.fsb_c00007{font-size:126.750000px;}
.fs7_c00007{font-size:127.500000px;}
.fsd_c00007{font-size:128.250000px;}
.fs4_c00007{font-size:129.750000px;}
.y0_c00007{bottom:0.000000px;}
.y6b_c00007{bottom:266.760090px;}
.y6c_c00007{bottom:266.760135px;}
.y6a_c00007{bottom:281.880000px;}
.y69_c00007{bottom:281.880645px;}
.y68_c00007{bottom:297.359250px;}
.y67_c00007{bottom:298.440285px;}
.y65_c00007{bottom:312.840090px;}
.y66_c00007{bottom:312.840135px;}
.y64_c00007{bottom:327.960000px;}
.y63_c00007{bottom:328.680150px;}
.y61_c00007{bottom:343.439235px;}
.y60_c00007{bottom:343.439820px;}
.y62_c00007{bottom:343.800135px;}
.y5f_c00007{bottom:358.379535px;}
.y5e_c00007{bottom:359.279250px;}
.y5d_c00007{bottom:373.679100px;}
.y5c_c00007{bottom:373.679760px;}
.y5b_c00007{bottom:389.159820px;}
.y5a_c00007{bottom:389.160480px;}
.y59_c00007{bottom:404.639100px;}
.y58_c00007{bottom:404.639175px;}
.y56_c00007{bottom:419.758710px;}
.y57_c00007{bottom:419.759085px;}
.y54_c00007{bottom:435.059745px;}
.y55_c00007{bottom:435.060285px;}
.y52_c00007{bottom:450.359625px;}
.y53_c00007{bottom:450.359850px;}
.y51_c00007{bottom:466.199850px;}
.y50_c00007{bottom:466.199910px;}
.y4f_c00007{bottom:481.319820px;}
.y4e_c00007{bottom:481.320300px;}
.y4d_c00007{bottom:496.798920px;}
.y4c_c00007{bottom:497.519070px;}
.y4b_c00007{bottom:511.918950px;}
.y4a_c00007{bottom:511.918965px;}
.y47_c00007{bottom:526.679100px;}
.y48_c00007{bottom:526.679670px;}
.y49_c00007{bottom:527.040570px;}
.y46_c00007{bottom:541.440315px;}
.y45_c00007{bottom:541.440510px;}
.y43_c00007{bottom:557.098710px;}
.y44_c00007{bottom:557.099070px;}
.y42_c00007{bottom:572.400285px;}
.y41_c00007{bottom:572.400540px;}
.y40_c00007{bottom:588.059100px;}
.y3f_c00007{bottom:588.059160px;}
.y3d_c00007{bottom:603.178710px;}
.y3e_c00007{bottom:603.179070px;}
.y3c_c00007{bottom:618.480285px;}
.y3b_c00007{bottom:618.839535px;}
.y3a_c00007{bottom:633.959385px;}
.y39_c00007{bottom:633.960210px;}
.y37_c00007{bottom:649.439640px;}
.y38_c00007{bottom:649.440255px;}
.y36_c00007{bottom:664.199385px;}
.y35_c00007{bottom:676.440255px;}
.y34_c00007{bottom:680.039385px;}
.y33_c00007{bottom:680.039445px;}
.y32_c00007{bottom:695.159370px;}
.y31_c00007{bottom:695.520270px;}
.y2f_c00007{bottom:710.639490px;}
.y30_c00007{bottom:710.640150px;}
.y2d_c00007{bottom:725.399160px;}
.y2e_c00007{bottom:725.399235px;}
.y2c_c00007{bottom:740.519070px;}
.y2b_c00007{bottom:740.519940px;}
.y2a_c00007{bottom:756.000000px;}
.y28_c00007{bottom:771.478665px;}
.y29_c00007{bottom:771.479190px;}
.y27_c00007{bottom:786.239865px;}
.y26_c00007{bottom:786.240435px;}
.y24_c00007{bottom:801.718830px;}
.y25_c00007{bottom:801.719055px;}
.y23_c00007{bottom:817.559055px;}
.y22_c00007{bottom:817.559160px;}
.y21_c00007{bottom:832.679070px;}
.y20_c00007{bottom:832.679760px;}
.y1f_c00007{bottom:848.159820px;}
.y1e_c00007{bottom:848.159940px;}
.y1d_c00007{bottom:863.279850px;}
.y1c_c00007{bottom:863.280420px;}
.y1b_c00007{bottom:878.759040px;}
.y1a_c00007{bottom:878.759805px;}
.y18_c00007{bottom:894.239340px;}
.y19_c00007{bottom:894.239865px;}
.y16_c00007{bottom:909.000135px;}
.y17_c00007{bottom:909.000555px;}
.y15_c00007{bottom:924.838905px;}
.y14_c00007{bottom:924.838965px;}
.y13_c00007{bottom:939.960570px;}
.y12_c00007{bottom:940.319820px;}
.y10_c00007{bottom:955.618830px;}
.y11_c00007{bottom:955.619385px;}
.yf_c00007{bottom:970.918950px;}
.ye_c00007{bottom:971.279850px;}
.yd_c00007{bottom:986.040615px;}
.yc_c00007{bottom:1001.519715px;}
.yb_c00007{bottom:1016.639655px;}
.ya_c00007{bottom:1031.400240px;}
.y9_c00007{bottom:1046.879520px;}
.y8_c00007{bottom:1062.360255px;}
.y7_c00007{bottom:1062.719520px;}
.y6_c00007{bottom:1077.839535px;}
.y4_c00007{bottom:1092.599670px;}
.y5_c00007{bottom:1092.600135px;}
.y2_c00007{bottom:1107.720150px;}
.y3_c00007{bottom:1107.899775px;}
.y1_c00007{bottom:1139.039340px;}
.h1d_c00007{height:14.862305px;}
.h1c_c00007{height:29.724609px;}
.h21_c00007{height:48.919922px;}
.h4_c00007{height:59.296875px;}
.hc_c00007{height:60.468750px;}
.h13_c00007{height:60.779297px;}
.ha_c00007{height:61.224609px;}
.h3_c00007{height:61.520508px;}
.h2_c00007{height:62.261719px;}
.h1_c00007{height:63.002930px;}
.h6_c00007{height:63.723710px;}
.he_c00007{height:63.744141px;}
.h1e_c00007{height:64.443590px;}
.hd_c00007{height:65.003906px;}
.h20_c00007{height:66.604970px;}
.h23_c00007{height:67.318970px;}
.h1b_c00007{height:89.956055px;}
.hb_c00007{height:120.462891px;}
.h14_c00007{height:122.027344px;}
.h18_c00007{height:122.809570px;}
.h15_c00007{height:123.591797px;}
.h7_c00007{height:124.374023px;}
.h1f_c00007{height:125.156250px;}
.h12_c00007{height:125.938477px;}
.h17_c00007{height:126.720703px;}
.h19_c00007{height:127.502930px;}
.h10_c00007{height:128.285156px;}
.h8_c00007{height:129.067383px;}
.h22_c00007{height:129.849609px;}
.h16_c00007{height:130.631836px;}
.h1a_c00007{height:131.414062px;}
.hf_c00007{height:132.196289px;}
.h9_c00007{height:132.978516px;}
.h11_c00007{height:133.760742px;}
.h5_c00007{height:135.325195px;}
.h0_c00007{height:1263.000000px;}
.w0_c00007{width:892.500000px;}
.x0_c00007{left:0.000000px;}
.x27_c00007{left:120.598965px;}
.x1_c00007{left:121.679700px;}
.x7_c00007{left:130.679100px;}
.x8_c00007{left:141.118815px;}
.x9_c00007{left:156.599700px;}
.x30_c00007{left:158.040000px;}
.x2_c00007{left:184.319850px;}
.x3_c00007{left:212.758500px;}
.x2c_c00007{left:229.318800px;}
.xe_c00007{left:230.399850px;}
.x2a_c00007{left:240.839535px;}
.x2d_c00007{left:247.319250px;}
.x35_c00007{left:250.559100px;}
.x31_c00007{left:268.198785px;}
.x3a_c00007{left:284.038950px;}
.x4_c00007{left:286.558635px;}
.x2e_c00007{left:294.839535px;}
.x3b_c00007{left:302.398635px;}
.xf_c00007{left:311.038950px;}
.x5_c00007{left:339.120000px;}
.x34_c00007{left:340.919535px;}
.x21_c00007{left:347.040000px;}
.x1f_c00007{left:349.198785px;}
.x6_c00007{left:358.918350px;}
.x10_c00007{left:365.399850px;}
.x36_c00007{left:368.278800px;}
.x22_c00007{left:374.758500px;}
.x2b_c00007{left:385.559100px;}
.x3d_c00007{left:393.119985px;}
.x13_c00007{left:401.039985px;}
.x3f_c00007{left:404.279850px;}
.x3e_c00007{left:411.479685px;}
.xa_c00007{left:412.559100px;}
.x16_c00007{left:419.038920px;}
.x14_c00007{left:420.119985px;}
.x1b_c00007{left:421.558635px;}
.x32_c00007{left:428.758530px;}
.x20_c00007{left:430.559685px;}
.x17_c00007{left:438.118785px;}
.x19_c00007{left:446.038920px;}
.x23_c00007{left:448.558635px;}
.x24_c00007{left:457.559685px;}
.x3c_c00007{left:458.639100px;}
.x1a_c00007{left:465.118785px;}
.x11_c00007{left:466.199850px;}
.x1e_c00007{left:475.558635px;}
.x26_c00007{left:484.918950px;}
.xc_c00007{left:493.199850px;}
.x37_c00007{left:494.279250px;}
.x28_c00007{left:502.199385px;}
.x29_c00007{left:520.559100px;}
.x1c_c00007{left:529.558635px;}
.x38_c00007{left:537.478635px;}
.x12_c00007{left:547.559100px;}
.x39_c00007{left:564.478635px;}
.x15_c00007{left:565.918950px;}
.x18_c00007{left:593.279850px;}
.xd_c00007{left:602.279250px;}
.x33_c00007{left:621.359250px;}
.x2f_c00007{left:639.359850px;}
.x25_c00007{left:764.279250px;}
.x1d_c00007{left:773.278755px;}
.xb_c00007{left:781.559685px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.v1_c00007{vertical-align:1.280587pt;}
.v2_c00007{vertical-align:3.201813pt;}
.ls18_c00007{letter-spacing:-7.990567pt;}
.ls34_c00007{letter-spacing:-2.907000pt;}
.lse_c00007{letter-spacing:-2.665427pt;}
.ls35_c00007{letter-spacing:-2.181667pt;}
.ls39_c00007{letter-spacing:-1.450667pt;}
.ls11_c00007{letter-spacing:-0.947527pt;}
.ls10_c00007{letter-spacing:-0.725333pt;}
.ls14_c00007{letter-spacing:-0.419673pt;}
.ls30_c00007{letter-spacing:-0.367400pt;}
.lsb_c00007{letter-spacing:-0.318467pt;}
.ls2a_c00007{letter-spacing:-0.317067pt;}
.ls2b_c00007{letter-spacing:-0.285000pt;}
.ls17_c00007{letter-spacing:-0.272813pt;}
.ls12_c00007{letter-spacing:-0.251467pt;}
.ls23_c00007{letter-spacing:-0.246400pt;}
.ls1f_c00007{letter-spacing:-0.243800pt;}
.ls13_c00007{letter-spacing:-0.240540pt;}
.ls26_c00007{letter-spacing:-0.231733pt;}
.ls15_c00007{letter-spacing:-0.219440pt;}
.ls1e_c00007{letter-spacing:-0.199913pt;}
.ls2c_c00007{letter-spacing:-0.176000pt;}
.ls1a_c00007{letter-spacing:-0.130680pt;}
.ls31_c00007{letter-spacing:-0.099000pt;}
.ls24_c00007{letter-spacing:-0.056000pt;}
.ls28_c00007{letter-spacing:-0.033273pt;}
.ls3f_c00007{letter-spacing:-0.032240pt;}
.ls16_c00007{letter-spacing:-0.012467pt;}
.ls7_c00007{letter-spacing:0.000000pt;}
.ls2f_c00007{letter-spacing:0.033893pt;}
.ls20_c00007{letter-spacing:0.054333pt;}
.ls19_c00007{letter-spacing:0.087953pt;}
.ls3b_c00007{letter-spacing:0.109080pt;}
.ls2e_c00007{letter-spacing:0.123200pt;}
.ls25_c00007{letter-spacing:0.153067pt;}
.ls29_c00007{letter-spacing:0.185900pt;}
.ls1d_c00007{letter-spacing:0.188153pt;}
.ls22_c00007{letter-spacing:0.320340pt;}
.ls32_c00007{letter-spacing:0.324467pt;}
.ls1b_c00007{letter-spacing:0.337067pt;}
.ls3d_c00007{letter-spacing:0.354133pt;}
.ls9_c00007{letter-spacing:0.360400pt;}
.ls3a_c00007{letter-spacing:0.371733pt;}
.ls38_c00007{letter-spacing:0.442800pt;}
.ls36_c00007{letter-spacing:0.461533pt;}
.ls2d_c00007{letter-spacing:0.483000pt;}
.ls3e_c00007{letter-spacing:0.564400pt;}
.lsa_c00007{letter-spacing:0.603900pt;}
.ls33_c00007{letter-spacing:0.640000pt;}
.ls6_c00007{letter-spacing:0.719667pt;}
.ls1_c00007{letter-spacing:0.725333pt;}
.ls37_c00007{letter-spacing:0.864000pt;}
.ls8_c00007{letter-spacing:1.349333pt;}
.ls0_c00007{letter-spacing:1.450667pt;}
.ls5_c00007{letter-spacing:2.127440pt;}
.ls2_c00007{letter-spacing:2.181667pt;}
.ls3c_c00007{letter-spacing:2.283600pt;}
.ls4_c00007{letter-spacing:2.907000pt;}
.lsf_c00007{letter-spacing:3.060000pt;}
.ls3_c00007{letter-spacing:3.632333pt;}
.ls27_c00007{letter-spacing:4.313200pt;}
.ls1c_c00007{letter-spacing:4.357667pt;}
.ls21_c00007{letter-spacing:5.083567pt;}
.lsc_c00007{letter-spacing:6.576533pt;}
.lsd_c00007{letter-spacing:8.765693pt;}
.ws0_c00007{word-spacing:0.000000pt;}
._8_c00007{margin-left:-14.047696pt;}
._15_c00007{margin-left:-8.076308pt;}
._14_c00007{margin-left:-5.592593pt;}
._12_c00007{margin-left:-4.439993pt;}
._11_c00007{margin-left:-3.248773pt;}
._0_c00007{margin-left:-1.847391pt;}
._1a_c00007{margin-left:-0.934738pt;}
._3_c00007{width:1.461593pt;}
._c_c00007{width:2.447884pt;}
._1_c00007{width:4.080988pt;}
._2_c00007{width:5.455692pt;}
._17_c00007{width:7.350538pt;}
._16_c00007{width:11.574791pt;}
._6_c00007{width:12.466957pt;}
._d_c00007{width:13.599942pt;}
._a_c00007{width:16.041956pt;}
._1b_c00007{width:21.006130pt;}
._19_c00007{width:489.482104pt;}
._1c_c00007{width:559.085771pt;}
._13_c00007{width:668.763058pt;}
._4_c00007{width:675.053116pt;}
._f_c00007{width:705.063696pt;}
._e_c00007{width:706.457521pt;}
._9_c00007{width:811.075928pt;}
._7_c00007{width:879.421566pt;}
._b_c00007{width:880.815391pt;}
._1d_c00007{width:1054.713448pt;}
._1f_c00007{width:1196.970116pt;}
._5_c00007{width:1199.106624pt;}
._10_c00007{width:1433.288903pt;}
._18_c00007{width:1482.719745pt;}
._1e_c00007{width:1610.971029pt;}
.fs19_c00007{font-size:12.666667pt;}
.fs18_c00007{font-size:25.333333pt;}
.fs1b_c00007{font-size:44.000000pt;}
.fs3_c00007{font-size:53.333333pt;}
.fs8_c00007{font-size:54.000000pt;}
.fsf_c00007{font-size:54.666667pt;}
.fs2_c00007{font-size:55.333333pt;}
.fs1_c00007{font-size:56.000000pt;}
.fs0_c00007{font-size:56.666667pt;}
.fsa_c00007{font-size:57.333333pt;}
.fs17_c00007{font-size:76.666667pt;}
.fs9_c00007{font-size:102.666667pt;}
.fs10_c00007{font-size:104.000000pt;}
.fs14_c00007{font-size:104.666667pt;}
.fs11_c00007{font-size:105.333333pt;}
.fs5_c00007{font-size:106.000000pt;}
.fs1a_c00007{font-size:106.666667pt;}
.fse_c00007{font-size:107.333333pt;}
.fs13_c00007{font-size:108.000000pt;}
.fs15_c00007{font-size:108.666667pt;}
.fsc_c00007{font-size:109.333333pt;}
.fs6_c00007{font-size:110.000000pt;}
.fs1c_c00007{font-size:110.666667pt;}
.fs12_c00007{font-size:111.333333pt;}
.fs16_c00007{font-size:112.000000pt;}
.fsb_c00007{font-size:112.666667pt;}
.fs7_c00007{font-size:113.333333pt;}
.fsd_c00007{font-size:114.000000pt;}
.fs4_c00007{font-size:115.333333pt;}
.y0_c00007{bottom:0.000000pt;}
.y6b_c00007{bottom:237.120080pt;}
.y6c_c00007{bottom:237.120120pt;}
.y6a_c00007{bottom:250.560000pt;}
.y69_c00007{bottom:250.560573pt;}
.y68_c00007{bottom:264.319333pt;}
.y67_c00007{bottom:265.280253pt;}
.y65_c00007{bottom:278.080080pt;}
.y66_c00007{bottom:278.080120pt;}
.y64_c00007{bottom:291.520000pt;}
.y63_c00007{bottom:292.160133pt;}
.y61_c00007{bottom:305.279320pt;}
.y60_c00007{bottom:305.279840pt;}
.y62_c00007{bottom:305.600120pt;}
.y5f_c00007{bottom:318.559587pt;}
.y5e_c00007{bottom:319.359333pt;}
.y5d_c00007{bottom:332.159200pt;}
.y5c_c00007{bottom:332.159787pt;}
.y5b_c00007{bottom:345.919840pt;}
.y5a_c00007{bottom:345.920427pt;}
.y59_c00007{bottom:359.679200pt;}
.y58_c00007{bottom:359.679267pt;}
.y56_c00007{bottom:373.118853pt;}
.y57_c00007{bottom:373.119187pt;}
.y54_c00007{bottom:386.719773pt;}
.y55_c00007{bottom:386.720253pt;}
.y52_c00007{bottom:400.319667pt;}
.y53_c00007{bottom:400.319867pt;}
.y51_c00007{bottom:414.399867pt;}
.y50_c00007{bottom:414.399920pt;}
.y4f_c00007{bottom:427.839840pt;}
.y4e_c00007{bottom:427.840267pt;}
.y4d_c00007{bottom:441.599040pt;}
.y4c_c00007{bottom:442.239173pt;}
.y4b_c00007{bottom:455.039067pt;}
.y4a_c00007{bottom:455.039080pt;}
.y47_c00007{bottom:468.159200pt;}
.y48_c00007{bottom:468.159707pt;}
.y49_c00007{bottom:468.480507pt;}
.y46_c00007{bottom:481.280280pt;}
.y45_c00007{bottom:481.280453pt;}
.y43_c00007{bottom:495.198853pt;}
.y44_c00007{bottom:495.199173pt;}
.y42_c00007{bottom:508.800253pt;}
.y41_c00007{bottom:508.800480pt;}
.y40_c00007{bottom:522.719200pt;}
.y3f_c00007{bottom:522.719253pt;}
.y3d_c00007{bottom:536.158853pt;}
.y3e_c00007{bottom:536.159173pt;}
.y3c_c00007{bottom:549.760253pt;}
.y3b_c00007{bottom:550.079587pt;}
.y3a_c00007{bottom:563.519453pt;}
.y39_c00007{bottom:563.520187pt;}
.y37_c00007{bottom:577.279680pt;}
.y38_c00007{bottom:577.280227pt;}
.y36_c00007{bottom:590.399453pt;}
.y35_c00007{bottom:601.280227pt;}
.y34_c00007{bottom:604.479453pt;}
.y33_c00007{bottom:604.479507pt;}
.y32_c00007{bottom:617.919440pt;}
.y31_c00007{bottom:618.240240pt;}
.y2f_c00007{bottom:631.679547pt;}
.y30_c00007{bottom:631.680133pt;}
.y2d_c00007{bottom:644.799253pt;}
.y2e_c00007{bottom:644.799320pt;}
.y2c_c00007{bottom:658.239173pt;}
.y2b_c00007{bottom:658.239947pt;}
.y2a_c00007{bottom:672.000000pt;}
.y28_c00007{bottom:685.758813pt;}
.y29_c00007{bottom:685.759280pt;}
.y27_c00007{bottom:698.879880pt;}
.y26_c00007{bottom:698.880387pt;}
.y24_c00007{bottom:712.638960pt;}
.y25_c00007{bottom:712.639160pt;}
.y23_c00007{bottom:726.719160pt;}
.y22_c00007{bottom:726.719253pt;}
.y21_c00007{bottom:740.159173pt;}
.y20_c00007{bottom:740.159787pt;}
.y1f_c00007{bottom:753.919840pt;}
.y1e_c00007{bottom:753.919947pt;}
.y1d_c00007{bottom:767.359867pt;}
.y1c_c00007{bottom:767.360373pt;}
.y1b_c00007{bottom:781.119147pt;}
.y1a_c00007{bottom:781.119827pt;}
.y18_c00007{bottom:794.879413pt;}
.y19_c00007{bottom:794.879880pt;}
.y16_c00007{bottom:808.000120pt;}
.y17_c00007{bottom:808.000493pt;}
.y15_c00007{bottom:822.079027pt;}
.y14_c00007{bottom:822.079080pt;}
.y13_c00007{bottom:835.520507pt;}
.y12_c00007{bottom:835.839840pt;}
.y10_c00007{bottom:849.438960pt;}
.y11_c00007{bottom:849.439453pt;}
.yf_c00007{bottom:863.039067pt;}
.ye_c00007{bottom:863.359867pt;}
.yd_c00007{bottom:876.480547pt;}
.yc_c00007{bottom:890.239747pt;}
.yb_c00007{bottom:903.679693pt;}
.ya_c00007{bottom:916.800213pt;}
.y9_c00007{bottom:930.559573pt;}
.y8_c00007{bottom:944.320227pt;}
.y7_c00007{bottom:944.639573pt;}
.y6_c00007{bottom:958.079587pt;}
.y4_c00007{bottom:971.199707pt;}
.y5_c00007{bottom:971.200120pt;}
.y2_c00007{bottom:984.640133pt;}
.y3_c00007{bottom:984.799800pt;}
.y1_c00007{bottom:1012.479413pt;}
.h1d_c00007{height:13.210937pt;}
.h1c_c00007{height:26.421875pt;}
.h21_c00007{height:43.484375pt;}
.h4_c00007{height:52.708333pt;}
.hc_c00007{height:53.750000pt;}
.h13_c00007{height:54.026042pt;}
.ha_c00007{height:54.421875pt;}
.h3_c00007{height:54.684896pt;}
.h2_c00007{height:55.343750pt;}
.h1_c00007{height:56.002604pt;}
.h6_c00007{height:56.643297pt;}
.he_c00007{height:56.661458pt;}
.h1e_c00007{height:57.283191pt;}
.hd_c00007{height:57.781250pt;}
.h20_c00007{height:59.204418pt;}
.h23_c00007{height:59.839084pt;}
.h1b_c00007{height:79.960938pt;}
.hb_c00007{height:107.078125pt;}
.h14_c00007{height:108.468750pt;}
.h18_c00007{height:109.164062pt;}
.h15_c00007{height:109.859375pt;}
.h7_c00007{height:110.554688pt;}
.h1f_c00007{height:111.250000pt;}
.h12_c00007{height:111.945312pt;}
.h17_c00007{height:112.640625pt;}
.h19_c00007{height:113.335938pt;}
.h10_c00007{height:114.031250pt;}
.h8_c00007{height:114.726562pt;}
.h22_c00007{height:115.421875pt;}
.h16_c00007{height:116.117188pt;}
.h1a_c00007{height:116.812500pt;}
.hf_c00007{height:117.507812pt;}
.h9_c00007{height:118.203125pt;}
.h11_c00007{height:118.898438pt;}
.h5_c00007{height:120.289062pt;}
.h0_c00007{height:1122.666667pt;}
.w0_c00007{width:793.333333pt;}
.x0_c00007{left:0.000000pt;}
.x27_c00007{left:107.199080pt;}
.x1_c00007{left:108.159733pt;}
.x7_c00007{left:116.159200pt;}
.x8_c00007{left:125.438947pt;}
.x9_c00007{left:139.199733pt;}
.x30_c00007{left:140.480000pt;}
.x2_c00007{left:163.839867pt;}
.x3_c00007{left:189.118667pt;}
.x2c_c00007{left:203.838933pt;}
.xe_c00007{left:204.799867pt;}
.x2a_c00007{left:214.079587pt;}
.x2d_c00007{left:219.839333pt;}
.x35_c00007{left:222.719200pt;}
.x31_c00007{left:238.398920pt;}
.x3a_c00007{left:252.479067pt;}
.x4_c00007{left:254.718787pt;}
.x2e_c00007{left:262.079587pt;}
.x3b_c00007{left:268.798787pt;}
.xf_c00007{left:276.479067pt;}
.x5_c00007{left:301.440000pt;}
.x34_c00007{left:303.039587pt;}
.x21_c00007{left:308.480000pt;}
.x1f_c00007{left:310.398920pt;}
.x6_c00007{left:319.038533pt;}
.x10_c00007{left:324.799867pt;}
.x36_c00007{left:327.358933pt;}
.x22_c00007{left:333.118667pt;}
.x2b_c00007{left:342.719200pt;}
.x3d_c00007{left:349.439987pt;}
.x13_c00007{left:356.479987pt;}
.x3f_c00007{left:359.359867pt;}
.x3e_c00007{left:365.759720pt;}
.xa_c00007{left:366.719200pt;}
.x16_c00007{left:372.479040pt;}
.x14_c00007{left:373.439987pt;}
.x1b_c00007{left:374.718787pt;}
.x32_c00007{left:381.118693pt;}
.x20_c00007{left:382.719720pt;}
.x17_c00007{left:389.438920pt;}
.x19_c00007{left:396.479040pt;}
.x23_c00007{left:398.718787pt;}
.x24_c00007{left:406.719720pt;}
.x3c_c00007{left:407.679200pt;}
.x1a_c00007{left:413.438920pt;}
.x11_c00007{left:414.399867pt;}
.x1e_c00007{left:422.718787pt;}
.x26_c00007{left:431.039067pt;}
.xc_c00007{left:438.399867pt;}
.x37_c00007{left:439.359333pt;}
.x28_c00007{left:446.399453pt;}
.x29_c00007{left:462.719200pt;}
.x1c_c00007{left:470.718787pt;}
.x38_c00007{left:477.758787pt;}
.x12_c00007{left:486.719200pt;}
.x39_c00007{left:501.758787pt;}
.x15_c00007{left:503.039067pt;}
.x18_c00007{left:527.359867pt;}
.xd_c00007{left:535.359333pt;}
.x33_c00007{left:552.319333pt;}
.x2f_c00007{left:568.319867pt;}
.x25_c00007{left:679.359333pt;}
.x1d_c00007{left:687.358893pt;}
.xb_c00007{left:694.719720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65e24118563cb66a4f9b98f0.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.281250;font-style:normal;font-weight:normal;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_0e4191b38c700af36178ebf9.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_687f9a336f4372df2ad18006.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_8e582ae8ca696de2c6a9db14.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_0213f7ee73e383890f6bfb8c.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00008{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.ma_c00008{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c00008{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m2e_c00008{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.me_c00008{transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254335,0.000000,0.000000,0.250000,0,0);}
.m2f_c00008{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.m26_c00008{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m8_c00008{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m13_c00008{transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257440,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.257764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257764,0.000000,0.000000,0.250000,0,0);}
.md_c00008{transform:matrix(0.258876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258876,0.000000,0.000000,0.250000,0,0);}
.m30_c00008{transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);}
.m1a_c00008{transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260479,0.000000,0.000000,0.250000,0,0);}
.m29_c00008{transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260542,0.000000,0.000000,0.250000,0,0);}
.m28_c00008{transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260606,0.000000,0.000000,0.250000,0,0);}
.m24_c00008{transform:matrix(0.261076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261076,0.000000,0.000000,0.250000,0,0);}
.m21_c00008{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m15_c00008{transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262121,0.000000,0.000000,0.250000,0,0);}
.m17_c00008{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m33_c00008{transform:matrix(0.262739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262739,0.000000,0.000000,0.250000,0,0);}
.mf_c00008{transform:matrix(0.263473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263473,0.000000,0.000000,0.250000,0,0);}
.m1f_c00008{transform:matrix(0.263554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263554,0.000000,0.000000,0.250000,0,0);}
.m16_c00008{transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263720,0.000000,0.000000,0.250000,0,0);}
.m34_c00008{transform:matrix(0.264241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264241,0.000000,0.000000,0.250000,0,0);}
.m11_c00008{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m18_c00008{transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);}
.m22_c00008{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.m32_c00008{transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267081,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);}
.m14_c00008{transform:matrix(0.268634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268634,0.000000,0.000000,0.250000,0,0);}
.m1e_c00008{transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270313,0.000000,0.000000,0.250000,0,0);}
.m1d_c00008{transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);}
.m19_c00008{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.m2c_c00008{transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272293,0.000000,0.000000,0.250000,0,0);}
.m25_c00008{transform:matrix(0.273006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273006,0.000000,0.000000,0.250000,0,0);}
.mb_c00008{transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);}
.m12_c00008{transform:matrix(0.273734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273734,0.000000,0.000000,0.250000,0,0);}
.m27_c00008{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m35_c00008{transform:matrix(0.274351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274351,0.000000,0.000000,0.250000,0,0);}
.m23_c00008{transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277244,0.000000,0.000000,0.250000,0,0);}
.m10_c00008{transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277457,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m1b_c00008{transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281977,0.000000,0.000000,0.250000,0,0);}
.m2d_c00008{transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);}
.mc_c00008{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m1c_c00008{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m31_c00008{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_c00008{transform:matrix(0.417391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417391,0.000000,0.000000,0.250000,0,0);}
.m2a_c00008{transform:matrix(0.498311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498311,0.000000,0.000000,0.250000,0,0);}
.m2b_c00008{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.v1_c00008{vertical-align:1.445160px;}
.ls31_c00008{letter-spacing:-12.953700px;}
.ls1_c00008{letter-spacing:-7.677450px;}
.ls27_c00008{letter-spacing:-6.067575px;}
.ls7_c00008{letter-spacing:-5.306625px;}
.ls22_c00008{letter-spacing:-4.656900px;}
.lsb_c00008{letter-spacing:-4.553018px;}
.ls5_c00008{letter-spacing:-3.790733px;}
.ls6_c00008{letter-spacing:-3.276000px;}
.ls3_c00008{letter-spacing:-3.037125px;}
.ls8_c00008{letter-spacing:-2.276175px;}
.ls4_c00008{letter-spacing:-1.515893px;}
.ls23_c00008{letter-spacing:-1.071945px;}
.ls12_c00008{letter-spacing:-0.760950px;}
.ls14_c00008{letter-spacing:-0.635775px;}
.ls2b_c00008{letter-spacing:-0.588023px;}
.ls21_c00008{letter-spacing:-0.413325px;}
.ls16_c00008{letter-spacing:-0.363225px;}
.ls26_c00008{letter-spacing:-0.286350px;}
.ls35_c00008{letter-spacing:-0.249000px;}
.ls2c_c00008{letter-spacing:-0.229500px;}
.ls20_c00008{letter-spacing:-0.216000px;}
.ls36_c00008{letter-spacing:-0.169050px;}
.ls25_c00008{letter-spacing:-0.150645px;}
.ls24_c00008{letter-spacing:-0.132000px;}
.ls30_c00008{letter-spacing:-0.112050px;}
.lsf_c00008{letter-spacing:-0.083475px;}
.ls1e_c00008{letter-spacing:-0.038130px;}
.ls2_c00008{letter-spacing:0.000000px;}
.ls17_c00008{letter-spacing:0.038363px;}
.ls2d_c00008{letter-spacing:0.097763px;}
.ls1c_c00008{letter-spacing:0.110700px;}
.ls1a_c00008{letter-spacing:0.132825px;}
.ls19_c00008{letter-spacing:0.138600px;}
.ls1b_c00008{letter-spacing:0.173250px;}
.ls29_c00008{letter-spacing:0.175500px;}
.ls32_c00008{letter-spacing:0.224903px;}
.ls18_c00008{letter-spacing:0.250035px;}
.ls1f_c00008{letter-spacing:0.261113px;}
.ls3f_c00008{letter-spacing:0.403095px;}
.ls2f_c00008{letter-spacing:0.431888px;}
.ls3c_c00008{letter-spacing:0.458850px;}
.ls37_c00008{letter-spacing:0.504000px;}
.ls2e_c00008{letter-spacing:0.526500px;}
.ls39_c00008{letter-spacing:0.610050px;}
.ls34_c00008{letter-spacing:0.691740px;}
.ls28_c00008{letter-spacing:0.756000px;}
.lse_c00008{letter-spacing:0.781050px;}
.ls0_c00008{letter-spacing:0.787200px;}
.ls1d_c00008{letter-spacing:0.972000px;}
.ls9_c00008{letter-spacing:1.126935px;}
.ls3e_c00008{letter-spacing:1.527465px;}
.lsc_c00008{letter-spacing:1.569750px;}
.ls10_c00008{letter-spacing:1.574400px;}
.ls3d_c00008{letter-spacing:1.719150px;}
.ls2a_c00008{letter-spacing:2.014500px;}
.ls15_c00008{letter-spacing:2.367750px;}
.lsa_c00008{letter-spacing:3.154950px;}
.ls13_c00008{letter-spacing:3.942150px;}
.ls33_c00008{letter-spacing:4.275427px;}
.ls11_c00008{letter-spacing:4.729350px;}
.lsd_c00008{letter-spacing:5.108723px;}
.ls3b_c00008{letter-spacing:5.517165px;}
.ls3a_c00008{letter-spacing:7.778700px;}
.ls38_c00008{letter-spacing:16.149105px;}
.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;}
._5_c00008{margin-left:-13.837275px;}
._d_c00008{margin-left:-11.914390px;}
._2_c00008{margin-left:-9.913164px;}
._7_c00008{margin-left:-8.704867px;}
._10_c00008{margin-left:-7.539655px;}
._9_c00008{margin-left:-5.924305px;}
._6_c00008{margin-left:-4.667099px;}
._0_c00008{margin-left:-3.477493px;}
._1_c00008{margin-left:-2.007355px;}
._15_c00008{margin-left:-1.005316px;}
._a_c00008{width:1.356117px;}
._b_c00008{width:2.475879px;}
._8_c00008{width:3.508562px;}
._3_c00008{width:4.964015px;}
._4_c00008{width:6.822396px;}
._c_c00008{width:12.403910px;}
._f_c00008{width:14.592703px;}
._e_c00008{width:18.995412px;}
._11_c00008{width:839.468755px;}
._14_c00008{width:1446.510971px;}
._13_c00008{width:1522.211100px;}
._12_c00008{width:1561.571037px;}
.fc0_c00008{color:transparent;}
.fs1f_c00008{font-size:30.000000px;}
.fs1e_c00008{font-size:34.500000px;}
.fs1b_c00008{font-size:38.250000px;}
.fs1d_c00008{font-size:42.750000px;}
.fs8_c00008{font-size:54.750000px;}
.fs5_c00008{font-size:61.500000px;}
.fsa_c00008{font-size:64.500000px;}
.fs16_c00008{font-size:66.000000px;}
.fs2_c00008{font-size:66.750000px;}
.fs15_c00008{font-size:68.250000px;}
.fs0_c00008{font-size:70.500000px;}
.fs3_c00008{font-size:72.000000px;}
.fs9_c00008{font-size:86.250000px;}
.fs13_c00008{font-size:101.250000px;}
.fs1a_c00008{font-size:111.000000px;}
.fs1_c00008{font-size:115.500000px;}
.fs17_c00008{font-size:117.000000px;}
.fs1c_c00008{font-size:117.750000px;}
.fs4_c00008{font-size:118.500000px;}
.fsb_c00008{font-size:119.250000px;}
.fs12_c00008{font-size:120.000000px;}
.fs7_c00008{font-size:120.750000px;}
.fs11_c00008{font-size:121.500000px;}
.fs18_c00008{font-size:122.250000px;}
.fs10_c00008{font-size:123.000000px;}
.fse_c00008{font-size:123.750000px;}
.fs14_c00008{font-size:124.500000px;}
.fsd_c00008{font-size:125.250000px;}
.fsf_c00008{font-size:126.000000px;}
.fsc_c00008{font-size:126.750000px;}
.fs19_c00008{font-size:127.500000px;}
.fs6_c00008{font-size:129.750000px;}
.y0_c00008{bottom:0.000000px;}
.y6e_c00008{bottom:253.980285px;}
.y6d_c00008{bottom:253.980375px;}
.y6b_c00008{bottom:268.920225px;}
.y6c_c00008{bottom:268.920600px;}
.y6a_c00008{bottom:284.399850px;}
.y69_c00008{bottom:284.400405px;}
.y68_c00008{bottom:299.699385px;}
.y67_c00008{bottom:299.699895px;}
.y66_c00008{bottom:314.280435px;}
.y65_c00008{bottom:314.639700px;}
.y64_c00008{bottom:329.759535px;}
.y63_c00008{bottom:344.879535px;}
.y62_c00008{bottom:349.200435px;}
.y61_c00008{bottom:360.360285px;}
.y60_c00008{bottom:360.360540px;}
.y5f_c00008{bottom:375.480285px;}
.y5e_c00008{bottom:375.480990px;}
.y5c_c00008{bottom:391.319940px;}
.y5d_c00008{bottom:391.320285px;}
.y5b_c00008{bottom:406.799565px;}
.y5a_c00008{bottom:421.919535px;}
.y59_c00008{bottom:429.839535px;}
.y58_c00008{bottom:436.680135px;}
.y57_c00008{bottom:452.159415px;}
.y56_c00008{bottom:452.160120px;}
.y54_c00008{bottom:467.998875px;}
.y55_c00008{bottom:467.999400px;}
.y53_c00008{bottom:483.119385px;}
.y52_c00008{bottom:483.119475px;}
.y50_c00008{bottom:498.238740px;}
.y51_c00008{bottom:498.239220px;}
.y4e_c00008{bottom:513.359100px;}
.y4f_c00008{bottom:513.359250px;}
.y4d_c00008{bottom:528.840135px;}
.y4c_c00008{bottom:529.199385px;}
.y4b_c00008{bottom:543.959970px;}
.y4a_c00008{bottom:543.960645px;}
.y49_c00008{bottom:558.720750px;}
.y48_c00008{bottom:558.720870px;}
.y47_c00008{bottom:574.560705px;}
.y46_c00008{bottom:590.039985px;}
.y45_c00008{bottom:590.040075px;}
.y43_c00008{bottom:605.159340px;}
.y44_c00008{bottom:605.159820px;}
.y42_c00008{bottom:620.279850px;}
.y41_c00008{bottom:620.280075px;}
.y3f_c00008{bottom:635.399535px;}
.y40_c00008{bottom:635.399820px;}
.y3e_c00008{bottom:650.880570px;}
.y3d_c00008{bottom:650.880840px;}
.y3c_c00008{bottom:666.000600px;}
.y3b_c00008{bottom:666.359850px;}
.y39_c00008{bottom:681.120045px;}
.y3a_c00008{bottom:681.120435px;}
.y38_c00008{bottom:696.240420px;}
.y37_c00008{bottom:696.599670px;}
.y36_c00008{bottom:711.719520px;}
.y35_c00008{bottom:711.719790px;}
.y34_c00008{bottom:726.839535px;}
.y33_c00008{bottom:727.200435px;}
.y31_c00008{bottom:741.958995px;}
.y32_c00008{bottom:741.959385px;}
.y30_c00008{bottom:757.619985px;}
.y2f_c00008{bottom:772.919490px;}
.y2e_c00008{bottom:773.280390px;}
.y2d_c00008{bottom:788.400240px;}
.y2c_c00008{bottom:788.759490px;}
.y2b_c00008{bottom:803.520270px;}
.y2a_c00008{bottom:803.520975px;}
.y28_c00008{bottom:819.359910px;}
.y29_c00008{bottom:819.360255px;}
.y27_c00008{bottom:834.839535px;}
.y26_c00008{bottom:835.200435px;}
.y25_c00008{bottom:849.959385px;}
.y24_c00008{bottom:850.320285px;}
.y22_c00008{bottom:865.079175px;}
.y23_c00008{bottom:865.079400px;}
.y21_c00008{bottom:880.560240px;}
.y20_c00008{bottom:880.560330px;}
.y1f_c00008{bottom:895.680090px;}
.y1e_c00008{bottom:911.159370px;}
.y1d_c00008{bottom:911.159850px;}
.y1b_c00008{bottom:925.919820px;}
.y1c_c00008{bottom:925.919955px;}
.y19_c00008{bottom:941.400345px;}
.y1a_c00008{bottom:941.400885px;}
.y17_c00008{bottom:956.879625px;}
.y18_c00008{bottom:956.879970px;}
.y16_c00008{bottom:972.359250px;}
.y15_c00008{bottom:972.359820px;}
.y13_c00008{bottom:987.119700px;}
.y14_c00008{bottom:987.119940px;}
.y12_c00008{bottom:1002.600765px;}
.y11_c00008{bottom:1002.600945px;}
.y10_c00008{bottom:1017.720705px;}
.yf_c00008{bottom:1018.079955px;}
.ye_c00008{bottom:1033.199805px;}
.yd_c00008{bottom:1033.200075px;}
.yb_c00008{bottom:1048.319160px;}
.yc_c00008{bottom:1048.319820px;}
.ya_c00008{bottom:1063.439670px;}
.y9_c00008{bottom:1063.439940px;}
.y8_c00008{bottom:1078.559685px;}
.y6_c00008{bottom:1094.039955px;}
.y7_c00008{bottom:1094.040525px;}
.y4_c00008{bottom:1109.160030px;}
.y5_c00008{bottom:1109.160465px;}
.y2_c00008{bottom:1124.639325px;}
.y3_c00008{bottom:1124.639655px;}
.y1_c00008{bottom:1140.120390px;}
.h21_c00008{height:29.648438px;}
.h20_c00008{height:35.982422px;}
.h1d_c00008{height:39.893555px;}
.h1f_c00008{height:42.249023px;}
.h9_c00008{height:57.102539px;}
.h6_c00008{height:60.779297px;}
.h14_c00008{height:62.224457px;}
.hb_c00008{height:63.271729px;}
.h18_c00008{height:64.743164px;}
.h3_c00008{height:65.478882px;}
.h17_c00008{height:66.950317px;}
.h1_c00008{height:69.157471px;}
.h4_c00008{height:70.628906px;}
.ha_c00008{height:89.956055px;}
.h15_c00008{height:105.600586px;}
.h1c_c00008{height:115.769531px;}
.h2_c00008{height:120.462891px;}
.h19_c00008{height:122.027344px;}
.h1e_c00008{height:122.809570px;}
.h5_c00008{height:123.591797px;}
.hc_c00008{height:124.374023px;}
.h13_c00008{height:125.156250px;}
.h8_c00008{height:125.938477px;}
.h12_c00008{height:126.720703px;}
.h1a_c00008{height:127.502930px;}
.h11_c00008{height:128.285156px;}
.hf_c00008{height:129.067383px;}
.h16_c00008{height:129.849609px;}
.he_c00008{height:130.631836px;}
.h10_c00008{height:131.414062px;}
.hd_c00008{height:132.196289px;}
.h1b_c00008{height:132.978516px;}
.h7_c00008{height:135.325195px;}
.h0_c00008{height:1263.000000px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x13_c00008{left:118.798530px;}
.x1_c00008{left:119.878350px;}
.xf_c00008{left:128.518095px;}
.x2_c00008{left:139.678500px;}
.x3_c00008{left:155.518665px;}
.x8_c00008{left:156.599700px;}
.xa_c00008{left:219.239850px;}
.x10_c00008{left:230.038950px;}
.x14_c00008{left:239.399250px;}
.xb_c00008{left:246.958350px;}
.x22_c00008{left:273.239850px;}
.xd_c00008{left:284.399850px;}
.x23_c00008{left:290.879535px;}
.x2c_c00008{left:293.758500px;}
.x36_c00008{left:303.838950px;}
.x2f_c00008{left:327.958350px;}
.x34_c00008{left:330.479685px;}
.x9_c00008{left:339.120000px;}
.x1c_c00008{left:346.679100px;}
.x1e_c00008{left:356.039385px;}
.x25_c00008{left:357.118785px;}
.x24_c00008{left:374.040000px;}
.xe_c00008{left:393.479235px;}
.x1d_c00008{left:402.478635px;}
.x21_c00008{left:420.479235px;}
.x18_c00008{left:428.399235px;}
.x2d_c00008{left:429.839535px;}
.x1f_c00008{left:437.039385px;}
.x2b_c00008{left:465.838950px;}
.x19_c00008{left:472.318770px;}
.x20_c00008{left:483.478635px;}
.x1a_c00008{left:491.039385px;}
.x33_c00008{left:493.199850px;}
.xc_c00008{left:501.119985px;}
.x11_c00008{left:510.478635px;}
.x16_c00008{left:518.039385px;}
.x6_c00008{left:519.118785px;}
.x26_c00008{left:526.318770px;}
.x1b_c00008{left:537.839535px;}
.x27_c00008{left:544.319235px;}
.x30_c00008{left:547.199850px;}
.x15_c00008{left:564.478635px;}
.x35_c00008{left:565.918950px;}
.x4_c00008{left:590.399235px;}
.x17_c00008{left:610.199385px;}
.x5_c00008{left:644.039985px;}
.x31_c00008{left:646.559685px;}
.x29_c00008{left:682.918350px;}
.x32_c00008{left:692.998950px;}
.x12_c00008{left:700.918950px;}
.x2a_c00008{left:709.918350px;}
.x7_c00008{left:762.118785px;}
.x28_c00008{left:763.199850px;}
.x2e_c00008{left:780.839535px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.v1_c00008{vertical-align:1.284587pt;}
.ls31_c00008{letter-spacing:-11.514400pt;}
.ls1_c00008{letter-spacing:-6.824400pt;}
.ls27_c00008{letter-spacing:-5.393400pt;}
.ls7_c00008{letter-spacing:-4.717000pt;}
.ls22_c00008{letter-spacing:-4.139467pt;}
.lsb_c00008{letter-spacing:-4.047127pt;}
.ls5_c00008{letter-spacing:-3.369540pt;}
.ls6_c00008{letter-spacing:-2.912000pt;}
.ls3_c00008{letter-spacing:-2.699667pt;}
.ls8_c00008{letter-spacing:-2.023267pt;}
.ls4_c00008{letter-spacing:-1.347460pt;}
.ls23_c00008{letter-spacing:-0.952840pt;}
.ls12_c00008{letter-spacing:-0.676400pt;}
.ls14_c00008{letter-spacing:-0.565133pt;}
.ls2b_c00008{letter-spacing:-0.522687pt;}
.ls21_c00008{letter-spacing:-0.367400pt;}
.ls16_c00008{letter-spacing:-0.322867pt;}
.ls26_c00008{letter-spacing:-0.254533pt;}
.ls35_c00008{letter-spacing:-0.221333pt;}
.ls2c_c00008{letter-spacing:-0.204000pt;}
.ls20_c00008{letter-spacing:-0.192000pt;}
.ls36_c00008{letter-spacing:-0.150267pt;}
.ls25_c00008{letter-spacing:-0.133907pt;}
.ls24_c00008{letter-spacing:-0.117333pt;}
.ls30_c00008{letter-spacing:-0.099600pt;}
.lsf_c00008{letter-spacing:-0.074200pt;}
.ls1e_c00008{letter-spacing:-0.033893pt;}
.ls2_c00008{letter-spacing:0.000000pt;}
.ls17_c00008{letter-spacing:0.034100pt;}
.ls2d_c00008{letter-spacing:0.086900pt;}
.ls1c_c00008{letter-spacing:0.098400pt;}
.ls1a_c00008{letter-spacing:0.118067pt;}
.ls19_c00008{letter-spacing:0.123200pt;}
.ls1b_c00008{letter-spacing:0.154000pt;}
.ls29_c00008{letter-spacing:0.156000pt;}
.ls32_c00008{letter-spacing:0.199913pt;}
.ls18_c00008{letter-spacing:0.222253pt;}
.ls1f_c00008{letter-spacing:0.232100pt;}
.ls3f_c00008{letter-spacing:0.358307pt;}
.ls2f_c00008{letter-spacing:0.383900pt;}
.ls3c_c00008{letter-spacing:0.407867pt;}
.ls37_c00008{letter-spacing:0.448000pt;}
.ls2e_c00008{letter-spacing:0.468000pt;}
.ls39_c00008{letter-spacing:0.542267pt;}
.ls34_c00008{letter-spacing:0.614880pt;}
.ls28_c00008{letter-spacing:0.672000pt;}
.lse_c00008{letter-spacing:0.694267pt;}
.ls0_c00008{letter-spacing:0.699733pt;}
.ls1d_c00008{letter-spacing:0.864000pt;}
.ls9_c00008{letter-spacing:1.001720pt;}
.ls3e_c00008{letter-spacing:1.357747pt;}
.lsc_c00008{letter-spacing:1.395333pt;}
.ls10_c00008{letter-spacing:1.399467pt;}
.ls3d_c00008{letter-spacing:1.528133pt;}
.ls2a_c00008{letter-spacing:1.790667pt;}
.ls15_c00008{letter-spacing:2.104667pt;}
.lsa_c00008{letter-spacing:2.804400pt;}
.ls13_c00008{letter-spacing:3.504133pt;}
.ls33_c00008{letter-spacing:3.800380pt;}
.ls11_c00008{letter-spacing:4.203867pt;}
.lsd_c00008{letter-spacing:4.541087pt;}
.ls3b_c00008{letter-spacing:4.904147pt;}
.ls3a_c00008{letter-spacing:6.914400pt;}
.ls38_c00008{letter-spacing:14.354760pt;}
.ws0_c00008{word-spacing:0.000000pt;}
._5_c00008{margin-left:-12.299800pt;}
._d_c00008{margin-left:-10.590568pt;}
._2_c00008{margin-left:-8.811701pt;}
._7_c00008{margin-left:-7.737660pt;}
._10_c00008{margin-left:-6.701916pt;}
._9_c00008{margin-left:-5.266049pt;}
._6_c00008{margin-left:-4.148533pt;}
._0_c00008{margin-left:-3.091105pt;}
._1_c00008{margin-left:-1.784315pt;}
._15_c00008{margin-left:-0.893614pt;}
._a_c00008{width:1.205438pt;}
._b_c00008{width:2.200781pt;}
._8_c00008{width:3.118722pt;}
._3_c00008{width:4.412458pt;}
._4_c00008{width:6.064352pt;}
._c_c00008{width:11.025698pt;}
._f_c00008{width:12.971292pt;}
._e_c00008{width:16.884810pt;}
._11_c00008{width:746.194449pt;}
._14_c00008{width:1285.787530pt;}
._13_c00008{width:1353.076533pt;}
._12_c00008{width:1388.063144pt;}
.fs1f_c00008{font-size:26.666667pt;}
.fs1e_c00008{font-size:30.666667pt;}
.fs1b_c00008{font-size:34.000000pt;}
.fs1d_c00008{font-size:38.000000pt;}
.fs8_c00008{font-size:48.666667pt;}
.fs5_c00008{font-size:54.666667pt;}
.fsa_c00008{font-size:57.333333pt;}
.fs16_c00008{font-size:58.666667pt;}
.fs2_c00008{font-size:59.333333pt;}
.fs15_c00008{font-size:60.666667pt;}
.fs0_c00008{font-size:62.666667pt;}
.fs3_c00008{font-size:64.000000pt;}
.fs9_c00008{font-size:76.666667pt;}
.fs13_c00008{font-size:90.000000pt;}
.fs1a_c00008{font-size:98.666667pt;}
.fs1_c00008{font-size:102.666667pt;}
.fs17_c00008{font-size:104.000000pt;}
.fs1c_c00008{font-size:104.666667pt;}
.fs4_c00008{font-size:105.333333pt;}
.fsb_c00008{font-size:106.000000pt;}
.fs12_c00008{font-size:106.666667pt;}
.fs7_c00008{font-size:107.333333pt;}
.fs11_c00008{font-size:108.000000pt;}
.fs18_c00008{font-size:108.666667pt;}
.fs10_c00008{font-size:109.333333pt;}
.fse_c00008{font-size:110.000000pt;}
.fs14_c00008{font-size:110.666667pt;}
.fsd_c00008{font-size:111.333333pt;}
.fsf_c00008{font-size:112.000000pt;}
.fsc_c00008{font-size:112.666667pt;}
.fs19_c00008{font-size:113.333333pt;}
.fs6_c00008{font-size:115.333333pt;}
.y0_c00008{bottom:0.000000pt;}
.y6e_c00008{bottom:225.760253pt;}
.y6d_c00008{bottom:225.760333pt;}
.y6b_c00008{bottom:239.040200pt;}
.y6c_c00008{bottom:239.040533pt;}
.y6a_c00008{bottom:252.799867pt;}
.y69_c00008{bottom:252.800360pt;}
.y68_c00008{bottom:266.399453pt;}
.y67_c00008{bottom:266.399907pt;}
.y66_c00008{bottom:279.360387pt;}
.y65_c00008{bottom:279.679733pt;}
.y64_c00008{bottom:293.119587pt;}
.y63_c00008{bottom:306.559587pt;}
.y62_c00008{bottom:310.400387pt;}
.y61_c00008{bottom:320.320253pt;}
.y60_c00008{bottom:320.320480pt;}
.y5f_c00008{bottom:333.760253pt;}
.y5e_c00008{bottom:333.760880pt;}
.y5c_c00008{bottom:347.839947pt;}
.y5d_c00008{bottom:347.840253pt;}
.y5b_c00008{bottom:361.599613pt;}
.y5a_c00008{bottom:375.039587pt;}
.y59_c00008{bottom:382.079587pt;}
.y58_c00008{bottom:388.160120pt;}
.y57_c00008{bottom:401.919480pt;}
.y56_c00008{bottom:401.920107pt;}
.y54_c00008{bottom:415.999000pt;}
.y55_c00008{bottom:415.999467pt;}
.y53_c00008{bottom:429.439453pt;}
.y52_c00008{bottom:429.439533pt;}
.y50_c00008{bottom:442.878880pt;}
.y51_c00008{bottom:442.879307pt;}
.y4e_c00008{bottom:456.319200pt;}
.y4f_c00008{bottom:456.319333pt;}
.y4d_c00008{bottom:470.080120pt;}
.y4c_c00008{bottom:470.399453pt;}
.y4b_c00008{bottom:483.519973pt;}
.y4a_c00008{bottom:483.520573pt;}
.y49_c00008{bottom:496.640667pt;}
.y48_c00008{bottom:496.640773pt;}
.y47_c00008{bottom:510.720627pt;}
.y46_c00008{bottom:524.479987pt;}
.y45_c00008{bottom:524.480067pt;}
.y43_c00008{bottom:537.919413pt;}
.y44_c00008{bottom:537.919840pt;}
.y42_c00008{bottom:551.359867pt;}
.y41_c00008{bottom:551.360067pt;}
.y3f_c00008{bottom:564.799587pt;}
.y40_c00008{bottom:564.799840pt;}
.y3e_c00008{bottom:578.560507pt;}
.y3d_c00008{bottom:578.560747pt;}
.y3c_c00008{bottom:592.000533pt;}
.y3b_c00008{bottom:592.319867pt;}
.y39_c00008{bottom:605.440040pt;}
.y3a_c00008{bottom:605.440387pt;}
.y38_c00008{bottom:618.880373pt;}
.y37_c00008{bottom:619.199707pt;}
.y36_c00008{bottom:632.639573pt;}
.y35_c00008{bottom:632.639813pt;}
.y34_c00008{bottom:646.079587pt;}
.y33_c00008{bottom:646.400387pt;}
.y31_c00008{bottom:659.519107pt;}
.y32_c00008{bottom:659.519453pt;}
.y30_c00008{bottom:673.439987pt;}
.y2f_c00008{bottom:687.039547pt;}
.y2e_c00008{bottom:687.360347pt;}
.y2d_c00008{bottom:700.800213pt;}
.y2c_c00008{bottom:701.119547pt;}
.y2b_c00008{bottom:714.240240pt;}
.y2a_c00008{bottom:714.240867pt;}
.y28_c00008{bottom:728.319920pt;}
.y29_c00008{bottom:728.320227pt;}
.y27_c00008{bottom:742.079587pt;}
.y26_c00008{bottom:742.400387pt;}
.y25_c00008{bottom:755.519453pt;}
.y24_c00008{bottom:755.840253pt;}
.y22_c00008{bottom:768.959267pt;}
.y23_c00008{bottom:768.959467pt;}
.y21_c00008{bottom:782.720213pt;}
.y20_c00008{bottom:782.720293pt;}
.y1f_c00008{bottom:796.160080pt;}
.y1e_c00008{bottom:809.919440pt;}
.y1d_c00008{bottom:809.919867pt;}
.y1b_c00008{bottom:823.039840pt;}
.y1c_c00008{bottom:823.039960pt;}
.y19_c00008{bottom:836.800307pt;}
.y1a_c00008{bottom:836.800787pt;}
.y17_c00008{bottom:850.559667pt;}
.y18_c00008{bottom:850.559973pt;}
.y16_c00008{bottom:864.319333pt;}
.y15_c00008{bottom:864.319840pt;}
.y13_c00008{bottom:877.439733pt;}
.y14_c00008{bottom:877.439947pt;}
.y12_c00008{bottom:891.200680pt;}
.y11_c00008{bottom:891.200840pt;}
.y10_c00008{bottom:904.640627pt;}
.yf_c00008{bottom:904.959960pt;}
.ye_c00008{bottom:918.399827pt;}
.yd_c00008{bottom:918.400067pt;}
.yb_c00008{bottom:931.839253pt;}
.yc_c00008{bottom:931.839840pt;}
.ya_c00008{bottom:945.279707pt;}
.y9_c00008{bottom:945.279947pt;}
.y8_c00008{bottom:958.719720pt;}
.y6_c00008{bottom:972.479960pt;}
.y7_c00008{bottom:972.480467pt;}
.y4_c00008{bottom:985.920027pt;}
.y5_c00008{bottom:985.920413pt;}
.y2_c00008{bottom:999.679400pt;}
.y3_c00008{bottom:999.679693pt;}
.y1_c00008{bottom:1013.440347pt;}
.h21_c00008{height:26.354167pt;}
.h20_c00008{height:31.984375pt;}
.h1d_c00008{height:35.460938pt;}
.h1f_c00008{height:37.554687pt;}
.h9_c00008{height:50.757812pt;}
.h6_c00008{height:54.026042pt;}
.h14_c00008{height:55.310628pt;}
.hb_c00008{height:56.241536pt;}
.h18_c00008{height:57.549479pt;}
.h3_c00008{height:58.203451pt;}
.h17_c00008{height:59.511393pt;}
.h1_c00008{height:61.473307pt;}
.h4_c00008{height:62.781250pt;}
.ha_c00008{height:79.960938pt;}
.h15_c00008{height:93.867188pt;}
.h1c_c00008{height:102.906250pt;}
.h2_c00008{height:107.078125pt;}
.h19_c00008{height:108.468750pt;}
.h1e_c00008{height:109.164062pt;}
.h5_c00008{height:109.859375pt;}
.hc_c00008{height:110.554688pt;}
.h13_c00008{height:111.250000pt;}
.h8_c00008{height:111.945312pt;}
.h12_c00008{height:112.640625pt;}
.h1a_c00008{height:113.335938pt;}
.h11_c00008{height:114.031250pt;}
.hf_c00008{height:114.726562pt;}
.h16_c00008{height:115.421875pt;}
.he_c00008{height:116.117188pt;}
.h10_c00008{height:116.812500pt;}
.hd_c00008{height:117.507812pt;}
.h1b_c00008{height:118.203125pt;}
.h7_c00008{height:120.289062pt;}
.h0_c00008{height:1122.666667pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x13_c00008{left:105.598693pt;}
.x1_c00008{left:106.558533pt;}
.xf_c00008{left:114.238307pt;}
.x2_c00008{left:124.158667pt;}
.x3_c00008{left:138.238813pt;}
.x8_c00008{left:139.199733pt;}
.xa_c00008{left:194.879867pt;}
.x10_c00008{left:204.479067pt;}
.x14_c00008{left:212.799333pt;}
.xb_c00008{left:219.518533pt;}
.x22_c00008{left:242.879867pt;}
.xd_c00008{left:252.799867pt;}
.x23_c00008{left:258.559587pt;}
.x2c_c00008{left:261.118667pt;}
.x36_c00008{left:270.079067pt;}
.x2f_c00008{left:291.518533pt;}
.x34_c00008{left:293.759720pt;}
.x9_c00008{left:301.440000pt;}
.x1c_c00008{left:308.159200pt;}
.x1e_c00008{left:316.479453pt;}
.x25_c00008{left:317.438920pt;}
.x24_c00008{left:332.480000pt;}
.xe_c00008{left:349.759320pt;}
.x1d_c00008{left:357.758787pt;}
.x21_c00008{left:373.759320pt;}
.x18_c00008{left:380.799320pt;}
.x2d_c00008{left:382.079587pt;}
.x1f_c00008{left:388.479453pt;}
.x2b_c00008{left:414.079067pt;}
.x19_c00008{left:419.838907pt;}
.x20_c00008{left:429.758787pt;}
.x1a_c00008{left:436.479453pt;}
.x33_c00008{left:438.399867pt;}
.xc_c00008{left:445.439987pt;}
.x11_c00008{left:453.758787pt;}
.x16_c00008{left:460.479453pt;}
.x6_c00008{left:461.438920pt;}
.x26_c00008{left:467.838907pt;}
.x1b_c00008{left:478.079587pt;}
.x27_c00008{left:483.839320pt;}
.x30_c00008{left:486.399867pt;}
.x15_c00008{left:501.758787pt;}
.x35_c00008{left:503.039067pt;}
.x4_c00008{left:524.799320pt;}
.x17_c00008{left:542.399453pt;}
.x5_c00008{left:572.479987pt;}
.x31_c00008{left:574.719720pt;}
.x29_c00008{left:607.038533pt;}
.x32_c00008{left:615.999067pt;}
.x12_c00008{left:623.039067pt;}
.x2a_c00008{left:631.038533pt;}
.x7_c00008{left:677.438920pt;}
.x28_c00008{left:678.399867pt;}
.x2e_c00008{left:694.079587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e32bc4078189912a2c0cfe9b.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.364746;font-style:normal;font-weight:normal;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_db7813c4d5d724c8ef058fda.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_a6be2af3b8539bd4e8fd2868.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_af29fd837fcee9d45bb96ef1.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00009{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2c_c00009{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);}
.m1e_c00009{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m38_c00009{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m35_c00009{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m37_c00009{transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);}
.m22_c00009{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m15_c00009{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.m3b_c00009{transform:matrix(0.218023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218023,0.000000,0.000000,0.250000,0,0);}
.m26_c00009{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m3a_c00009{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m33_c00009{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m29_c00009{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m1a_c00009{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m32_c00009{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m20_c00009{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m34_c00009{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m3c_c00009{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_c00009{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.mc_c00009{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m30_c00009{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m1d_c00009{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m31_c00009{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m19_c00009{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m1c_c00009{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m18_c00009{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m36_c00009{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m27_c00009{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m39_c00009{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m2d_c00009{transform:matrix(0.270115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270115,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);}
.m23_c00009{transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);}
.m2e_c00009{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2a_c00009{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m2b_c00009{transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);}
.m1b_c00009{transform:matrix(0.314103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314103,0.000000,0.000000,0.250000,0,0);}
.m3d_c00009{transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315341,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00009{transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);}
.m21_c00009{transform:matrix(0.334337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334337,0.000000,0.000000,0.250000,0,0);}
.m24_c00009{transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);}
.m28_c00009{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);}
.m2f_c00009{transform:matrix(0.365132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365132,0.000000,0.000000,0.250000,0,0);}
.m25_c00009{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls18_c00009{letter-spacing:-7.884300px;}
.ls3f_c00009{letter-spacing:-7.445100px;}
.ls19_c00009{letter-spacing:-7.369778px;}
.ls21_c00009{letter-spacing:-7.097100px;}
.ls25_c00009{letter-spacing:-6.309900px;}
.ls3a_c00009{letter-spacing:-5.517165px;}
.ls26_c00009{letter-spacing:-4.729350px;}
.ls29_c00009{letter-spacing:-3.942150px;}
.ls17_c00009{letter-spacing:-3.609375px;}
.ls23_c00009{letter-spacing:-3.417525px;}
.ls28_c00009{letter-spacing:-3.154950px;}
.ls1a_c00009{letter-spacing:-2.739623px;}
.ls2a_c00009{letter-spacing:-2.367750px;}
.ls1e_c00009{letter-spacing:-2.223270px;}
.ls4c_c00009{letter-spacing:-1.574400px;}
.ls36_c00009{letter-spacing:-1.517670px;}
.ls55_c00009{letter-spacing:-1.369500px;}
.ls27_c00009{letter-spacing:-0.826395px;}
.ls24_c00009{letter-spacing:-0.684750px;}
.ls16_c00009{letter-spacing:0.000000px;}
.lse_c00009{letter-spacing:0.684750px;}
.ls4d_c00009{letter-spacing:0.777600px;}
.ls1d_c00009{letter-spacing:0.796800px;}
.ls15_c00009{letter-spacing:0.800100px;}
.ls34_c00009{letter-spacing:0.825600px;}
.lsd_c00009{letter-spacing:1.369500px;}
.ls13_c00009{letter-spacing:1.593600px;}
.lsc_c00009{letter-spacing:2.054250px;}
.ls14_c00009{letter-spacing:2.279400px;}
.ls35_c00009{letter-spacing:2.386800px;}
.ls2_c00009{letter-spacing:2.739623px;}
.ls12_c00009{letter-spacing:3.417525px;}
.ls4_c00009{letter-spacing:4.102275px;}
.lsf_c00009{letter-spacing:4.787025px;}
.ls32_c00009{letter-spacing:5.129400px;}
.ls49_c00009{letter-spacing:5.252100px;}
.ls5_c00009{letter-spacing:5.472398px;}
.ls22_c00009{letter-spacing:5.522175px;}
.ls2e_c00009{letter-spacing:5.903625px;}
.ls33_c00009{letter-spacing:6.080063px;}
.ls8_c00009{letter-spacing:6.157148px;}
.ls20_c00009{letter-spacing:6.256800px;}
.ls42_c00009{letter-spacing:6.390270px;}
.ls2b_c00009{letter-spacing:6.515100px;}
.ls4a_c00009{letter-spacing:6.674700px;}
.ls44_c00009{letter-spacing:6.726600px;}
.ls1_c00009{letter-spacing:6.840653px;}
.ls40_c00009{letter-spacing:7.062930px;}
.ls4b_c00009{letter-spacing:7.251660px;}
.ls52_c00009{letter-spacing:7.281225px;}
.ls3c_c00009{letter-spacing:7.352378px;}
.ls46_c00009{letter-spacing:7.377300px;}
.ls5a_c00009{letter-spacing:7.447500px;}
.ls0_c00009{letter-spacing:7.526025px;}
.ls2d_c00009{letter-spacing:8.070750px;}
.ls4e_c00009{letter-spacing:8.205750px;}
.ls3_c00009{letter-spacing:8.210775px;}
.ls1f_c00009{letter-spacing:8.252475px;}
.ls45_c00009{letter-spacing:8.294625px;}
.ls56_c00009{letter-spacing:8.384130px;}
.ls2c_c00009{letter-spacing:8.392500px;}
.ls3d_c00009{letter-spacing:8.409975px;}
.ls43_c00009{letter-spacing:8.420003px;}
.ls1c_c00009{letter-spacing:8.441700px;}
.ls3b_c00009{letter-spacing:8.511300px;}
.ls58_c00009{letter-spacing:8.650688px;}
.ls7_c00009{letter-spacing:8.895525px;}
.ls59_c00009{letter-spacing:8.916600px;}
.ls9_c00009{letter-spacing:9.573428px;}
.ls51_c00009{letter-spacing:9.644400px;}
.ls54_c00009{letter-spacing:9.669938px;}
.ls38_c00009{letter-spacing:9.898200px;}
.ls6_c00009{letter-spacing:10.258178px;}
.ls2f_c00009{letter-spacing:10.325250px;}
.ls48_c00009{letter-spacing:10.716188px;}
.ls47_c00009{letter-spacing:10.754438px;}
.lsa_c00009{letter-spacing:10.943550px;}
.ls53_c00009{letter-spacing:11.286000px;}
.ls10_c00009{letter-spacing:11.628300px;}
.ls4f_c00009{letter-spacing:11.631060px;}
.ls3e_c00009{letter-spacing:12.115688px;}
.ls57_c00009{letter-spacing:12.229313px;}
.ls50_c00009{letter-spacing:12.243300px;}
.ls31_c00009{letter-spacing:12.408750px;}
.ls39_c00009{letter-spacing:12.438773px;}
.lsb_c00009{letter-spacing:12.997800px;}
.ls37_c00009{letter-spacing:13.687500px;}
.ls1b_c00009{letter-spacing:13.900050px;}
.ls41_c00009{letter-spacing:14.709938px;}
.ls30_c00009{letter-spacing:15.298335px;}
.ls11_c00009{letter-spacing:17.785448px;}
.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;}
._17_c00009{margin-left:-12.875893px;}
._13_c00009{margin-left:-11.083537px;}
._b_c00009{margin-left:-8.367761px;}
._11_c00009{margin-left:-4.869325px;}
._c_c00009{margin-left:-2.257041px;}
._d_c00009{margin-left:-1.003819px;}
._14_c00009{width:1.268758px;}
._2_c00009{width:2.348775px;}
._9_c00009{width:3.655778px;}
._1_c00009{width:5.023917px;}
._a_c00009{width:6.150423px;}
._6_c00009{width:7.946589px;}
._f_c00009{width:9.652485px;}
._15_c00009{width:10.662283px;}
._5_c00009{width:11.766844px;}
._3_c00009{width:13.100827px;}
._e_c00009{width:15.158244px;}
._16_c00009{width:18.127665px;}
._10_c00009{width:19.776975px;}
._7_c00009{width:20.866665px;}
._0_c00009{width:23.197244px;}
._8_c00009{width:24.510869px;}
._4_c00009{width:26.586756px;}
._12_c00009{width:28.435253px;}
.fc0_c00009{color:transparent;}
.fs13_c00009{font-size:50.250000px;}
.fs12_c00009{font-size:52.500000px;}
.fs11_c00009{font-size:54.000000px;}
.fsf_c00009{font-size:54.750000px;}
.fsa_c00009{font-size:55.500000px;}
.fsb_c00009{font-size:56.250000px;}
.fs6_c00009{font-size:57.000000px;}
.fs3_c00009{font-size:57.750000px;}
.fsd_c00009{font-size:58.500000px;}
.fs5_c00009{font-size:59.250000px;}
.fs1_c00009{font-size:60.000000px;}
.fs9_c00009{font-size:60.750000px;}
.fs4_c00009{font-size:61.500000px;}
.fs0_c00009{font-size:62.250000px;}
.fs2_c00009{font-size:63.000000px;}
.fs7_c00009{font-size:63.750000px;}
.fse_c00009{font-size:64.500000px;}
.fs10_c00009{font-size:65.250000px;}
.fs8_c00009{font-size:66.000000px;}
.fsc_c00009{font-size:68.250000px;}
.y0_c00009{bottom:0.000000px;}
.y54_c00009{bottom:249.838950px;}
.y53_c00009{bottom:265.319850px;}
.y51_c00009{bottom:280.798650px;}
.y52_c00009{bottom:280.798950px;}
.y50_c00009{bottom:295.559685px;}
.y4f_c00009{bottom:310.679700px;}
.y4e_c00009{bottom:326.160435px;}
.y4d_c00009{bottom:341.280435px;}
.y4c_c00009{bottom:356.400285px;}
.y4b_c00009{bottom:356.401110px;}
.y4a_c00009{bottom:371.879535px;}
.y49_c00009{bottom:387.360300px;}
.y48_c00009{bottom:402.480285px;}
.y47_c00009{bottom:417.600135px;}
.y46_c00009{bottom:433.079400px;}
.y45_c00009{bottom:433.079565px;}
.y44_c00009{bottom:448.019670px;}
.y43_c00009{bottom:464.039385px;}
.y42_c00009{bottom:478.800150px;}
.y41_c00009{bottom:494.279250px;}
.y3f_c00009{bottom:509.398500px;}
.y40_c00009{bottom:509.399235px;}
.y3e_c00009{bottom:524.519070px;}
.y3c_c00009{bottom:539.999400px;}
.y3d_c00009{bottom:540.000000px;}
.y3b_c00009{bottom:555.119985px;}
.y3a_c00009{bottom:570.599070px;}
.y39_c00009{bottom:586.080000px;}
.y38_c00009{bottom:600.838950px;}
.y36_c00009{bottom:616.319085px;}
.y37_c00009{bottom:616.319820px;}
.y35_c00009{bottom:631.439670px;}
.y34_c00009{bottom:646.918950px;}
.y33_c00009{bottom:661.679670px;}
.y32_c00009{bottom:677.160420px;}
.y30_c00009{bottom:692.638965px;}
.y31_c00009{bottom:692.639700px;}
.y2e_c00009{bottom:707.759220px;}
.y2f_c00009{bottom:707.759535px;}
.y2d_c00009{bottom:722.520270px;}
.y2c_c00009{bottom:737.999355px;}
.y2b_c00009{bottom:737.999910px;}
.y2a_c00009{bottom:753.839535px;}
.y28_c00009{bottom:768.958830px;}
.y29_c00009{bottom:768.959385px;}
.y27_c00009{bottom:784.079400px;}
.y26_c00009{bottom:799.560240px;}
.y25_c00009{bottom:799.560615px;}
.y24_c00009{bottom:815.400240px;}
.y22_c00009{bottom:830.879340px;}
.y23_c00009{bottom:830.879520px;}
.y21_c00009{bottom:845.999910px;}
.y1f_c00009{bottom:861.838800px;}
.y20_c00009{bottom:861.839535px;}
.y1d_c00009{bottom:876.958785px;}
.y1e_c00009{bottom:876.959385px;}
.y1b_c00009{bottom:892.439670px;}
.y1c_c00009{bottom:892.440315px;}
.y19_c00009{bottom:907.559790px;}
.y1a_c00009{bottom:907.560240px;}
.y17_c00009{bottom:922.318590px;}
.y18_c00009{bottom:922.319190px;}
.y16_c00009{bottom:937.800105px;}
.y15_c00009{bottom:937.800780px;}
.y13_c00009{bottom:953.278935px;}
.y14_c00009{bottom:953.279205px;}
.y12_c00009{bottom:968.039985px;}
.y11_c00009{bottom:968.040645px;}
.yf_c00009{bottom:983.518485px;}
.y10_c00009{bottom:983.519070px;}
.ye_c00009{bottom:999.000000px;}
.yd_c00009{bottom:999.000465px;}
.yb_c00009{bottom:1014.839445px;}
.yc_c00009{bottom:1014.840090px;}
.ya_c00009{bottom:1029.960015px;}
.y9_c00009{bottom:1029.960780px;}
.y8_c00009{bottom:1045.439205px;}
.y7_c00009{bottom:1045.439580px;}
.y6_c00009{bottom:1061.279205px;}
.y5_c00009{bottom:1076.760135px;}
.y4_c00009{bottom:1091.159820px;}
.y3_c00009{bottom:1091.160660px;}
.y2_c00009{bottom:1106.639100px;}
.y1_c00009{bottom:1137.239775px;}
.h1d_c00009{height:51.525879px;}
.h1e_c00009{height:52.409180px;}
.h1b_c00009{height:52.998047px;}
.h16_c00009{height:53.734131px;}
.hd_c00009{height:54.470215px;}
.he_c00009{height:55.206299px;}
.hf_c00009{height:55.942383px;}
.ha_c00009{height:56.678467px;}
.h4_c00009{height:57.073242px;}
.h12_c00009{height:57.414551px;}
.h8_c00009{height:57.445312px;}
.h14_c00009{height:58.666992px;}
.h18_c00009{height:58.886719px;}
.h2_c00009{height:59.296875px;}
.hc_c00009{height:59.622803px;}
.h7_c00009{height:59.712891px;}
.h1c_c00009{height:60.038086px;}
.h19_c00009{height:60.358887px;}
.h6_c00009{height:60.779297px;}
.h5_c00009{height:61.094971px;}
.h1_c00009{height:61.520508px;}
.h17_c00009{height:61.831055px;}
.h3_c00009{height:62.261719px;}
.h10_c00009{height:62.567139px;}
.h13_c00009{height:62.736328px;}
.h9_c00009{height:63.002930px;}
.h15_c00009{height:63.744141px;}
.h1a_c00009{height:64.039307px;}
.hb_c00009{height:64.775391px;}
.h11_c00009{height:66.983643px;}
.h0_c00009{height:1263.000000px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.xe_c00009{left:120.599355px;}
.x1_c00009{left:121.679700px;}
.x2_c00009{left:184.319850px;}
.xd_c00009{left:185.758500px;}
.x6_c00009{left:194.759535px;}
.x3_c00009{left:211.319850px;}
.x7_c00009{left:220.678500px;}
.x4_c00009{left:268.198785px;}
.x8_c00009{left:275.398635px;}
.x5_c00009{left:321.119385px;}
.x9_c00009{left:329.398635px;}
.xf_c00009{left:338.759100px;}
.xa_c00009{left:356.398635px;}
.x10_c00009{left:365.759100px;}
.x13_c00009{left:366.838515px;}
.x25_c00009{left:375.478635px;}
.x14_c00009{left:402.478635px;}
.x1a_c00009{left:420.119985px;}
.x27_c00009{left:429.478635px;}
.x1b_c00009{left:438.479685px;}
.xb_c00009{left:456.119385px;}
.x28_c00009{left:457.198785px;}
.xc_c00009{left:483.839535px;}
.x26_c00009{left:493.199850px;}
.x29_c00009{left:510.478635px;}
.x1e_c00009{left:537.119385px;}
.x1f_c00009{left:556.199385px;}
.x23_c00009{left:574.559100px;}
.x1c_c00009{left:591.839535px;}
.x11_c00009{left:618.839535px;}
.x1d_c00009{left:619.918950px;}
.x24_c00009{left:628.559100px;}
.x17_c00009{left:637.558635px;}
.x12_c00009{left:655.199850px;}
.x15_c00009{left:664.558635px;}
.x19_c00009{left:665.639700px;}
.x16_c00009{left:673.559685px;}
.x20_c00009{left:709.918350px;}
.x18_c00009{left:718.919535px;}
.x21_c00009{left:737.638545px;}
.x22_c00009{left:790.918305px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls18_c00009{letter-spacing:-7.008267pt;}
.ls3f_c00009{letter-spacing:-6.617867pt;}
.ls19_c00009{letter-spacing:-6.550913pt;}
.ls21_c00009{letter-spacing:-6.308533pt;}
.ls25_c00009{letter-spacing:-5.608800pt;}
.ls3a_c00009{letter-spacing:-4.904147pt;}
.ls26_c00009{letter-spacing:-4.203867pt;}
.ls29_c00009{letter-spacing:-3.504133pt;}
.ls17_c00009{letter-spacing:-3.208333pt;}
.ls23_c00009{letter-spacing:-3.037800pt;}
.ls28_c00009{letter-spacing:-2.804400pt;}
.ls1a_c00009{letter-spacing:-2.435220pt;}
.ls2a_c00009{letter-spacing:-2.104667pt;}
.ls1e_c00009{letter-spacing:-1.976240pt;}
.ls4c_c00009{letter-spacing:-1.399467pt;}
.ls36_c00009{letter-spacing:-1.349040pt;}
.ls55_c00009{letter-spacing:-1.217333pt;}
.ls27_c00009{letter-spacing:-0.734573pt;}
.ls24_c00009{letter-spacing:-0.608667pt;}
.ls16_c00009{letter-spacing:0.000000pt;}
.lse_c00009{letter-spacing:0.608667pt;}
.ls4d_c00009{letter-spacing:0.691200pt;}
.ls1d_c00009{letter-spacing:0.708267pt;}
.ls15_c00009{letter-spacing:0.711200pt;}
.ls34_c00009{letter-spacing:0.733867pt;}
.lsd_c00009{letter-spacing:1.217333pt;}
.ls13_c00009{letter-spacing:1.416533pt;}
.lsc_c00009{letter-spacing:1.826000pt;}
.ls14_c00009{letter-spacing:2.026133pt;}
.ls35_c00009{letter-spacing:2.121600pt;}
.ls2_c00009{letter-spacing:2.435220pt;}
.ls12_c00009{letter-spacing:3.037800pt;}
.ls4_c00009{letter-spacing:3.646467pt;}
.lsf_c00009{letter-spacing:4.255133pt;}
.ls32_c00009{letter-spacing:4.559467pt;}
.ls49_c00009{letter-spacing:4.668533pt;}
.ls5_c00009{letter-spacing:4.864353pt;}
.ls22_c00009{letter-spacing:4.908600pt;}
.ls2e_c00009{letter-spacing:5.247667pt;}
.ls33_c00009{letter-spacing:5.404500pt;}
.ls8_c00009{letter-spacing:5.473020pt;}
.ls20_c00009{letter-spacing:5.561600pt;}
.ls42_c00009{letter-spacing:5.680240pt;}
.ls2b_c00009{letter-spacing:5.791200pt;}
.ls4a_c00009{letter-spacing:5.933067pt;}
.ls44_c00009{letter-spacing:5.979200pt;}
.ls1_c00009{letter-spacing:6.080580pt;}
.ls40_c00009{letter-spacing:6.278160pt;}
.ls4b_c00009{letter-spacing:6.445920pt;}
.ls52_c00009{letter-spacing:6.472200pt;}
.ls3c_c00009{letter-spacing:6.535447pt;}
.ls46_c00009{letter-spacing:6.557600pt;}
.ls5a_c00009{letter-spacing:6.620000pt;}
.ls0_c00009{letter-spacing:6.689800pt;}
.ls2d_c00009{letter-spacing:7.174000pt;}
.ls4e_c00009{letter-spacing:7.294000pt;}
.ls3_c00009{letter-spacing:7.298467pt;}
.ls1f_c00009{letter-spacing:7.335533pt;}
.ls45_c00009{letter-spacing:7.373000pt;}
.ls56_c00009{letter-spacing:7.452560pt;}
.ls2c_c00009{letter-spacing:7.460000pt;}
.ls3d_c00009{letter-spacing:7.475533pt;}
.ls43_c00009{letter-spacing:7.484447pt;}
.ls1c_c00009{letter-spacing:7.503733pt;}
.ls3b_c00009{letter-spacing:7.565600pt;}
.ls58_c00009{letter-spacing:7.689500pt;}
.ls7_c00009{letter-spacing:7.907133pt;}
.ls59_c00009{letter-spacing:7.925867pt;}
.ls9_c00009{letter-spacing:8.509713pt;}
.ls51_c00009{letter-spacing:8.572800pt;}
.ls54_c00009{letter-spacing:8.595500pt;}
.ls38_c00009{letter-spacing:8.798400pt;}
.ls6_c00009{letter-spacing:9.118380pt;}
.ls2f_c00009{letter-spacing:9.178000pt;}
.ls48_c00009{letter-spacing:9.525500pt;}
.ls47_c00009{letter-spacing:9.559500pt;}
.lsa_c00009{letter-spacing:9.727600pt;}
.ls53_c00009{letter-spacing:10.032000pt;}
.ls10_c00009{letter-spacing:10.336267pt;}
.ls4f_c00009{letter-spacing:10.338720pt;}
.ls3e_c00009{letter-spacing:10.769500pt;}
.ls57_c00009{letter-spacing:10.870500pt;}
.ls50_c00009{letter-spacing:10.882933pt;}
.ls31_c00009{letter-spacing:11.030000pt;}
.ls39_c00009{letter-spacing:11.056687pt;}
.lsb_c00009{letter-spacing:11.553600pt;}
.ls37_c00009{letter-spacing:12.166667pt;}
.ls1b_c00009{letter-spacing:12.355600pt;}
.ls41_c00009{letter-spacing:13.075500pt;}
.ls30_c00009{letter-spacing:13.598520pt;}
.ls11_c00009{letter-spacing:15.809287pt;}
.ws0_c00009{word-spacing:0.000000pt;}
._17_c00009{margin-left:-11.445238pt;}
._13_c00009{margin-left:-9.852033pt;}
._b_c00009{margin-left:-7.438010pt;}
._11_c00009{margin-left:-4.328289pt;}
._c_c00009{margin-left:-2.006259pt;}
._d_c00009{margin-left:-0.892283pt;}
._14_c00009{width:1.127785pt;}
._2_c00009{width:2.087800pt;}
._9_c00009{width:3.249581pt;}
._1_c00009{width:4.465704pt;}
._a_c00009{width:5.467043pt;}
._6_c00009{width:7.063634pt;}
._f_c00009{width:8.579987pt;}
._15_c00009{width:9.477585pt;}
._5_c00009{width:10.459417pt;}
._3_c00009{width:11.645180pt;}
._e_c00009{width:13.473995pt;}
._16_c00009{width:16.113480pt;}
._10_c00009{width:17.579534pt;}
._7_c00009{width:18.548147pt;}
._0_c00009{width:20.619772pt;}
._8_c00009{width:21.787439pt;}
._4_c00009{width:23.632672pt;}
._12_c00009{width:25.275780pt;}
.fs13_c00009{font-size:44.666667pt;}
.fs12_c00009{font-size:46.666667pt;}
.fs11_c00009{font-size:48.000000pt;}
.fsf_c00009{font-size:48.666667pt;}
.fsa_c00009{font-size:49.333333pt;}
.fsb_c00009{font-size:50.000000pt;}
.fs6_c00009{font-size:50.666667pt;}
.fs3_c00009{font-size:51.333333pt;}
.fsd_c00009{font-size:52.000000pt;}
.fs5_c00009{font-size:52.666667pt;}
.fs1_c00009{font-size:53.333333pt;}
.fs9_c00009{font-size:54.000000pt;}
.fs4_c00009{font-size:54.666667pt;}
.fs0_c00009{font-size:55.333333pt;}
.fs2_c00009{font-size:56.000000pt;}
.fs7_c00009{font-size:56.666667pt;}
.fse_c00009{font-size:57.333333pt;}
.fs10_c00009{font-size:58.000000pt;}
.fs8_c00009{font-size:58.666667pt;}
.fsc_c00009{font-size:60.666667pt;}
.y0_c00009{bottom:0.000000pt;}
.y54_c00009{bottom:222.079067pt;}
.y53_c00009{bottom:235.839867pt;}
.y51_c00009{bottom:249.598800pt;}
.y52_c00009{bottom:249.599067pt;}
.y50_c00009{bottom:262.719720pt;}
.y4f_c00009{bottom:276.159733pt;}
.y4e_c00009{bottom:289.920387pt;}
.y4d_c00009{bottom:303.360387pt;}
.y4c_c00009{bottom:316.800253pt;}
.y4b_c00009{bottom:316.800987pt;}
.y4a_c00009{bottom:330.559587pt;}
.y49_c00009{bottom:344.320267pt;}
.y48_c00009{bottom:357.760253pt;}
.y47_c00009{bottom:371.200120pt;}
.y46_c00009{bottom:384.959467pt;}
.y45_c00009{bottom:384.959613pt;}
.y44_c00009{bottom:398.239707pt;}
.y43_c00009{bottom:412.479453pt;}
.y42_c00009{bottom:425.600133pt;}
.y41_c00009{bottom:439.359333pt;}
.y3f_c00009{bottom:452.798667pt;}
.y40_c00009{bottom:452.799320pt;}
.y3e_c00009{bottom:466.239173pt;}
.y3c_c00009{bottom:479.999467pt;}
.y3d_c00009{bottom:480.000000pt;}
.y3b_c00009{bottom:493.439987pt;}
.y3a_c00009{bottom:507.199173pt;}
.y39_c00009{bottom:520.960000pt;}
.y38_c00009{bottom:534.079067pt;}
.y36_c00009{bottom:547.839187pt;}
.y37_c00009{bottom:547.839840pt;}
.y35_c00009{bottom:561.279707pt;}
.y34_c00009{bottom:575.039067pt;}
.y33_c00009{bottom:588.159707pt;}
.y32_c00009{bottom:601.920373pt;}
.y30_c00009{bottom:615.679080pt;}
.y31_c00009{bottom:615.679733pt;}
.y2e_c00009{bottom:629.119307pt;}
.y2f_c00009{bottom:629.119587pt;}
.y2d_c00009{bottom:642.240240pt;}
.y2c_c00009{bottom:655.999427pt;}
.y2b_c00009{bottom:655.999920pt;}
.y2a_c00009{bottom:670.079587pt;}
.y28_c00009{bottom:683.518960pt;}
.y29_c00009{bottom:683.519453pt;}
.y27_c00009{bottom:696.959467pt;}
.y26_c00009{bottom:710.720213pt;}
.y25_c00009{bottom:710.720547pt;}
.y24_c00009{bottom:724.800213pt;}
.y22_c00009{bottom:738.559413pt;}
.y23_c00009{bottom:738.559573pt;}
.y21_c00009{bottom:751.999920pt;}
.y1f_c00009{bottom:766.078933pt;}
.y20_c00009{bottom:766.079587pt;}
.y1d_c00009{bottom:779.518920pt;}
.y1e_c00009{bottom:779.519453pt;}
.y1b_c00009{bottom:793.279707pt;}
.y1c_c00009{bottom:793.280280pt;}
.y19_c00009{bottom:806.719813pt;}
.y1a_c00009{bottom:806.720213pt;}
.y17_c00009{bottom:819.838747pt;}
.y18_c00009{bottom:819.839280pt;}
.y16_c00009{bottom:833.600093pt;}
.y15_c00009{bottom:833.600693pt;}
.y13_c00009{bottom:847.359053pt;}
.y14_c00009{bottom:847.359293pt;}
.y12_c00009{bottom:860.479987pt;}
.y11_c00009{bottom:860.480573pt;}
.yf_c00009{bottom:874.238653pt;}
.y10_c00009{bottom:874.239173pt;}
.ye_c00009{bottom:888.000000pt;}
.yd_c00009{bottom:888.000413pt;}
.yb_c00009{bottom:902.079507pt;}
.yc_c00009{bottom:902.080080pt;}
.ya_c00009{bottom:915.520013pt;}
.y9_c00009{bottom:915.520693pt;}
.y8_c00009{bottom:929.279293pt;}
.y7_c00009{bottom:929.279627pt;}
.y6_c00009{bottom:943.359293pt;}
.y5_c00009{bottom:957.120120pt;}
.y4_c00009{bottom:969.919840pt;}
.y3_c00009{bottom:969.920587pt;}
.y2_c00009{bottom:983.679200pt;}
.y1_c00009{bottom:1010.879800pt;}
.h1d_c00009{height:45.800781pt;}
.h1e_c00009{height:46.585938pt;}
.h1b_c00009{height:47.109375pt;}
.h16_c00009{height:47.763672pt;}
.hd_c00009{height:48.417969pt;}
.he_c00009{height:49.072266pt;}
.hf_c00009{height:49.726562pt;}
.ha_c00009{height:50.380859pt;}
.h4_c00009{height:50.731771pt;}
.h12_c00009{height:51.035156pt;}
.h8_c00009{height:51.062500pt;}
.h14_c00009{height:52.148438pt;}
.h18_c00009{height:52.343750pt;}
.h2_c00009{height:52.708333pt;}
.hc_c00009{height:52.998047pt;}
.h7_c00009{height:53.078125pt;}
.h1c_c00009{height:53.367188pt;}
.h19_c00009{height:53.652344pt;}
.h6_c00009{height:54.026042pt;}
.h5_c00009{height:54.306641pt;}
.h1_c00009{height:54.684896pt;}
.h17_c00009{height:54.960938pt;}
.h3_c00009{height:55.343750pt;}
.h10_c00009{height:55.615234pt;}
.h13_c00009{height:55.765625pt;}
.h9_c00009{height:56.002604pt;}
.h15_c00009{height:56.661458pt;}
.h1a_c00009{height:56.923828pt;}
.hb_c00009{height:57.578125pt;}
.h11_c00009{height:59.541016pt;}
.h0_c00009{height:1122.666667pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.xe_c00009{left:107.199427pt;}
.x1_c00009{left:108.159733pt;}
.x2_c00009{left:163.839867pt;}
.xd_c00009{left:165.118667pt;}
.x6_c00009{left:173.119587pt;}
.x3_c00009{left:187.839867pt;}
.x7_c00009{left:196.158667pt;}
.x4_c00009{left:238.398920pt;}
.x8_c00009{left:244.798787pt;}
.x5_c00009{left:285.439453pt;}
.x9_c00009{left:292.798787pt;}
.xf_c00009{left:301.119200pt;}
.xa_c00009{left:316.798787pt;}
.x10_c00009{left:325.119200pt;}
.x13_c00009{left:326.078680pt;}
.x25_c00009{left:333.758787pt;}
.x14_c00009{left:357.758787pt;}
.x1a_c00009{left:373.439987pt;}
.x27_c00009{left:381.758787pt;}
.x1b_c00009{left:389.759720pt;}
.xb_c00009{left:405.439453pt;}
.x28_c00009{left:406.398920pt;}
.xc_c00009{left:430.079587pt;}
.x26_c00009{left:438.399867pt;}
.x29_c00009{left:453.758787pt;}
.x1e_c00009{left:477.439453pt;}
.x1f_c00009{left:494.399453pt;}
.x23_c00009{left:510.719200pt;}
.x1c_c00009{left:526.079587pt;}
.x11_c00009{left:550.079587pt;}
.x1d_c00009{left:551.039067pt;}
.x24_c00009{left:558.719200pt;}
.x17_c00009{left:566.718787pt;}
.x12_c00009{left:582.399867pt;}
.x15_c00009{left:590.718787pt;}
.x19_c00009{left:591.679733pt;}
.x16_c00009{left:598.719720pt;}
.x20_c00009{left:631.038533pt;}
.x18_c00009{left:639.039587pt;}
.x21_c00009{left:655.678707pt;}
.x22_c00009{left:703.038493pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebe894f1a63b67403ac9777f.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.364746;font-style:normal;font-weight:normal;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_cbf481ea21e53b2ff462543c.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.281250;font-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_c00010{transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls10_c00010{letter-spacing:-8.343750px;}
.ls4_c00010{letter-spacing:-7.497000px;}
.ls11_c00010{letter-spacing:-6.067575px;}
.lsf_c00010{letter-spacing:-5.306625px;}
.lse_c00010{letter-spacing:-4.553018px;}
.lsc_c00010{letter-spacing:-4.501800px;}
.lsb_c00010{letter-spacing:-3.270375px;}
.ls12_c00010{letter-spacing:-3.037125px;}
.lsa_c00010{letter-spacing:-2.454375px;}
.ls9_c00010{letter-spacing:-2.307893px;}
.ls13_c00010{letter-spacing:-2.276175px;}
.ls5_c00010{letter-spacing:-1.632000px;}
.ls8_c00010{letter-spacing:-1.536885px;}
.ls6_c00010{letter-spacing:-0.816000px;}
.lsd_c00010{letter-spacing:0.000000px;}
.ls1_c00010{letter-spacing:0.816000px;}
.ls0_c00010{letter-spacing:1.632000px;}
.ls7_c00010{letter-spacing:1.689600px;}
.ls2_c00010{letter-spacing:2.454375px;}
.ls3_c00010{letter-spacing:4.086375px;}
.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;}
._7_c00010{margin-left:-5.858723px;}
._6_c00010{margin-left:-4.616710px;}
._3_c00010{margin-left:-2.721635px;}
._2_c00010{margin-left:-1.421396px;}
._0_c00010{width:1.714777px;}
._1_c00010{width:3.282831px;}
._4_c00010{width:4.910319px;}
._5_c00010{width:6.615550px;}
._8_c00010{width:8.544331px;}
.fc0_c00010{color:transparent;}
.fs4_c00010{font-size:60.750000px;}
.fs3_c00010{font-size:61.500000px;}
.fs1_c00010{font-size:63.000000px;}
.fs0_c00010{font-size:63.750000px;}
.fs2_c00010{font-size:66.000000px;}
.fs5_c00010{font-size:66.750000px;}
.y0_c00010{bottom:0.000000px;}
.y16_c00010{bottom:816.118725px;}
.y17_c00010{bottom:816.118740px;}
.y32_c00010{bottom:816.480990px;}
.y15_c00010{bottom:831.598785px;}
.y31_c00010{bottom:831.959610px;}
.y14_c00010{bottom:847.077390px;}
.y30_c00010{bottom:847.439670px;}
.y2f_c00010{bottom:847.439775px;}
.y13_c00010{bottom:862.197285px;}
.y2d_c00010{bottom:862.559070px;}
.y2e_c00010{bottom:862.559685px;}
.y12_c00010{bottom:876.958485px;}
.y2c_c00010{bottom:877.318815px;}
.y2b_c00010{bottom:877.319505px;}
.y11_c00010{bottom:892.438575px;}
.y2a_c00010{bottom:892.799565px;}
.y29_c00010{bottom:892.800345px;}
.y10_c00010{bottom:907.558455px;}
.y28_c00010{bottom:907.920255px;}
.yf_c00010{bottom:922.678365px;}
.y27_c00010{bottom:923.040165px;}
.ye_c00010{bottom:937.799970px;}
.y26_c00010{bottom:938.160075px;}
.yd_c00010{bottom:953.278590px;}
.y25_c00010{bottom:953.638665px;}
.yc_c00010{bottom:968.398500px;}
.y24_c00010{bottom:968.758575px;}
.yb_c00010{bottom:983.159700px;}
.y23_c00010{bottom:983.879970px;}
.ya_c00010{bottom:998.999925px;}
.y22_c00010{bottom:999.359250px;}
.y9_c00010{bottom:1014.840150px;}
.y21_c00010{bottom:1015.199340px;}
.y8_c00010{bottom:1030.318755px;}
.y20_c00010{bottom:1030.678530px;}
.y7_c00010{bottom:1045.079955px;}
.y1e_c00010{bottom:1045.800060px;}
.y1f_c00010{bottom:1045.800105px;}
.y6_c00010{bottom:1060.919955px;}
.y1d_c00010{bottom:1061.278650px;}
.y5_c00010{bottom:1076.039985px;}
.y1c_c00010{bottom:1077.118875px;}
.y4_c00010{bottom:1091.519235px;}
.y1b_c00010{bottom:1091.880090px;}
.y3_c00010{bottom:1106.639115px;}
.y1a_c00010{bottom:1107.000000px;}
.y2_c00010{bottom:1121.759040px;}
.y19_c00010{bottom:1122.119940px;}
.y1_c00010{bottom:1136.878875px;}
.y18_c00010{bottom:1137.239775px;}
.h5_c00010{height:60.038086px;}
.h4_c00010{height:60.779297px;}
.h2_c00010{height:62.261719px;}
.h1_c00010{height:63.002930px;}
.h3_c00010{height:65.226562px;}
.h6_c00010{height:65.478882px;}
.h0_c00010{height:1263.000000px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:114.479715px;}
.x2_c00010{left:178.919535px;}
.xa_c00010{left:211.678185px;}
.x3_c00010{left:213.839535px;}
.x5_c00010{left:493.918350px;}
.x4_c00010{left:502.919535px;}
.x6_c00010{left:611.998950px;}
.x7_c00010{left:648.718545px;}
.x8_c00010{left:657.719520px;}
.x9_c00010{left:667.080000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls10_c00010{letter-spacing:-7.416667pt;}
.ls4_c00010{letter-spacing:-6.664000pt;}
.ls11_c00010{letter-spacing:-5.393400pt;}
.lsf_c00010{letter-spacing:-4.717000pt;}
.lse_c00010{letter-spacing:-4.047127pt;}
.lsc_c00010{letter-spacing:-4.001600pt;}
.lsb_c00010{letter-spacing:-2.907000pt;}
.ls12_c00010{letter-spacing:-2.699667pt;}
.lsa_c00010{letter-spacing:-2.181667pt;}
.ls9_c00010{letter-spacing:-2.051460pt;}
.ls13_c00010{letter-spacing:-2.023267pt;}
.ls5_c00010{letter-spacing:-1.450667pt;}
.ls8_c00010{letter-spacing:-1.366120pt;}
.ls6_c00010{letter-spacing:-0.725333pt;}
.lsd_c00010{letter-spacing:0.000000pt;}
.ls1_c00010{letter-spacing:0.725333pt;}
.ls0_c00010{letter-spacing:1.450667pt;}
.ls7_c00010{letter-spacing:1.501867pt;}
.ls2_c00010{letter-spacing:2.181667pt;}
.ls3_c00010{letter-spacing:3.632333pt;}
.ws0_c00010{word-spacing:0.000000pt;}
._7_c00010{margin-left:-5.207754pt;}
._6_c00010{margin-left:-4.103742pt;}
._3_c00010{margin-left:-2.419231pt;}
._2_c00010{margin-left:-1.263463pt;}
._0_c00010{width:1.524246pt;}
._1_c00010{width:2.918072pt;}
._4_c00010{width:4.364728pt;}
._5_c00010{width:5.880489pt;}
._8_c00010{width:7.594961pt;}
.fs4_c00010{font-size:54.000000pt;}
.fs3_c00010{font-size:54.666667pt;}
.fs1_c00010{font-size:56.000000pt;}
.fs0_c00010{font-size:56.666667pt;}
.fs2_c00010{font-size:58.666667pt;}
.fs5_c00010{font-size:59.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.y16_c00010{bottom:725.438867pt;}
.y17_c00010{bottom:725.438880pt;}
.y32_c00010{bottom:725.760880pt;}
.y15_c00010{bottom:739.198920pt;}
.y31_c00010{bottom:739.519653pt;}
.y14_c00010{bottom:752.957680pt;}
.y30_c00010{bottom:753.279707pt;}
.y2f_c00010{bottom:753.279800pt;}
.y13_c00010{bottom:766.397587pt;}
.y2d_c00010{bottom:766.719173pt;}
.y2e_c00010{bottom:766.719720pt;}
.y12_c00010{bottom:779.518653pt;}
.y2c_c00010{bottom:779.838947pt;}
.y2b_c00010{bottom:779.839560pt;}
.y11_c00010{bottom:793.278733pt;}
.y2a_c00010{bottom:793.599613pt;}
.y29_c00010{bottom:793.600307pt;}
.y10_c00010{bottom:806.718627pt;}
.y28_c00010{bottom:807.040227pt;}
.yf_c00010{bottom:820.158547pt;}
.y27_c00010{bottom:820.480147pt;}
.ye_c00010{bottom:833.599973pt;}
.y26_c00010{bottom:833.920067pt;}
.yd_c00010{bottom:847.358747pt;}
.y25_c00010{bottom:847.678813pt;}
.yc_c00010{bottom:860.798667pt;}
.y24_c00010{bottom:861.118733pt;}
.yb_c00010{bottom:873.919733pt;}
.y23_c00010{bottom:874.559973pt;}
.ya_c00010{bottom:887.999933pt;}
.y22_c00010{bottom:888.319333pt;}
.y9_c00010{bottom:902.080133pt;}
.y21_c00010{bottom:902.399413pt;}
.y8_c00010{bottom:915.838893pt;}
.y20_c00010{bottom:916.158693pt;}
.y7_c00010{bottom:928.959960pt;}
.y1e_c00010{bottom:929.600053pt;}
.y1f_c00010{bottom:929.600093pt;}
.y6_c00010{bottom:943.039960pt;}
.y1d_c00010{bottom:943.358800pt;}
.y5_c00010{bottom:956.479987pt;}
.y1c_c00010{bottom:957.439000pt;}
.y4_c00010{bottom:970.239320pt;}
.y1b_c00010{bottom:970.560080pt;}
.y3_c00010{bottom:983.679213pt;}
.y1a_c00010{bottom:984.000000pt;}
.y2_c00010{bottom:997.119147pt;}
.y19_c00010{bottom:997.439947pt;}
.y1_c00010{bottom:1010.559000pt;}
.y18_c00010{bottom:1010.879800pt;}
.h5_c00010{height:53.367188pt;}
.h4_c00010{height:54.026042pt;}
.h2_c00010{height:55.343750pt;}
.h1_c00010{height:56.002604pt;}
.h3_c00010{height:57.979167pt;}
.h6_c00010{height:58.203451pt;}
.h0_c00010{height:1122.666667pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:101.759747pt;}
.x2_c00010{left:159.039587pt;}
.xa_c00010{left:188.158387pt;}
.x3_c00010{left:190.079587pt;}
.x5_c00010{left:439.038533pt;}
.x4_c00010{left:447.039587pt;}
.x6_c00010{left:543.999067pt;}
.x7_c00010{left:576.638707pt;}
.x8_c00010{left:584.639573pt;}
.x9_c00010{left:592.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a5d5f1a86497df82dc6725e.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.311035;font-style:normal;font-weight:normal;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_6785796875db8e33a33d2a4a.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_15f6f384c0697ffaa55a82ab.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_19d0647dfc5107b723b89d3e.woff2')format("woff");}.ff5_c00011{font-family:ff5_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:ff6_c00011;src:url('chunks/assets/font_a59fd7946bdc4a5b8e330919.woff2')format("woff");}.ff6_c00011{font-family:ff6_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00011;src:url('chunks/assets/font_9afb4f6c9280f327fca52fc7.woff2')format("woff");}.ff7_c00011{font-family:ff7_c00011;line-height:1.364746;font-style:normal;font-weight: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_c00011;src:url('chunks/assets/font_ef0375d493b245fca7fae129.woff2')format("woff");}.ff8_c00011{font-family:ff8_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;}
.m4_c00011{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m10_c00011{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.211988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211988,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.m27_c00011{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m12_c00011{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m26_c00011{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m2d_c00011{transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);}
.m1a_c00011{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m25_c00011{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m23_c00011{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m24_c00011{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m2e_c00011{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m2a_c00011{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);}
.m2b_c00011{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m16_c00011{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);}
.m2c_c00011{transform:matrix(0.367788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367788,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.382075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382075,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{transform:matrix(0.408537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408537,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.419492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419492,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.478723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478723,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls8_c00011{letter-spacing:-12.803018px;}
.ls35_c00011{letter-spacing:-12.741150px;}
.ls33_c00011{letter-spacing:-11.216400px;}
.ls32_c00011{letter-spacing:-9.923100px;}
.ls29_c00011{letter-spacing:-9.654750px;}
.ls26_c00011{letter-spacing:-8.216775px;}
.ls2c_c00011{letter-spacing:-8.175038px;}
.ls16_c00011{letter-spacing:-7.426125px;}
.ls2d_c00011{letter-spacing:-7.004250px;}
.ls28_c00011{letter-spacing:-6.685875px;}
.ls23_c00011{letter-spacing:-6.552900px;}
.ls5_c00011{letter-spacing:-6.119003px;}
.ls15_c00011{letter-spacing:-6.051443px;}
.ls12_c00011{letter-spacing:-5.945625px;}
.ls2a_c00011{letter-spacing:-5.297400px;}
.ls2b_c00011{letter-spacing:-5.203125px;}
.ls9_c00011{letter-spacing:-5.202600px;}
.lsa_c00011{letter-spacing:-5.196713px;}
.ls11_c00011{letter-spacing:-5.054963px;}
.ls17_c00011{letter-spacing:-4.921875px;}
.ls14_c00011{letter-spacing:-4.456463px;}
.ls36_c00011{letter-spacing:-4.181625px;}
.ls2e_c00011{letter-spacing:-4.153800px;}
.lsb_c00011{letter-spacing:-3.717000px;}
.ls24_c00011{letter-spacing:-3.539700px;}
.ls7_c00011{letter-spacing:-3.458250px;}
.ls19_c00011{letter-spacing:-3.366765px;}
.ls27_c00011{letter-spacing:-3.000375px;}
.lse_c00011{letter-spacing:-2.968875px;}
.ls31_c00011{letter-spacing:-2.741288px;}
.ls6_c00011{letter-spacing:-2.581005px;}
.lsc_c00011{letter-spacing:-2.229413px;}
.ls20_c00011{letter-spacing:-1.959900px;}
.ls30_c00011{letter-spacing:-1.693125px;}
.ls4_c00011{letter-spacing:-1.512420px;}
.lsd_c00011{letter-spacing:-1.489163px;}
.ls18_c00011{letter-spacing:-0.826800px;}
.lsf_c00011{letter-spacing:-0.740250px;}
.ls25_c00011{letter-spacing:-0.730800px;}
.ls13_c00011{letter-spacing:0.000000px;}
.ls1c_c00011{letter-spacing:0.567300px;}
.ls0_c00011{letter-spacing:0.740250px;}
.ls3_c00011{letter-spacing:0.826800px;}
.ls2_c00011{letter-spacing:1.661400px;}
.ls1d_c00011{letter-spacing:2.681108px;}
.ls22_c00011{letter-spacing:2.820893px;}
.ls10_c00011{letter-spacing:3.189075px;}
.ls1a_c00011{letter-spacing:4.576500px;}
.ls1_c00011{letter-spacing:4.976400px;}
.ls1f_c00011{letter-spacing:5.637165px;}
.ls21_c00011{letter-spacing:7.836075px;}
.ls1b_c00011{letter-spacing:9.637050px;}
.ls2f_c00011{letter-spacing:14.553000px;}
.ls1e_c00011{letter-spacing:15.897600px;}
.ls34_c00011{letter-spacing:62.721000px;}
.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;}
._18_c00011{margin-left:-12.179832px;}
._19_c00011{margin-left:-10.173876px;}
._c_c00011{margin-left:-8.262911px;}
._e_c00011{margin-left:-7.087173px;}
._b_c00011{margin-left:-6.062606px;}
._d_c00011{margin-left:-4.645046px;}
._a_c00011{margin-left:-3.618206px;}
._12_c00011{margin-left:-2.030264px;}
._11_c00011{width:1.709856px;}
._1c_c00011{width:2.720530px;}
._f_c00011{width:3.800980px;}
._13_c00011{width:5.232997px;}
._10_c00011{width:6.284458px;}
._14_c00011{width:7.721556px;}
._6_c00011{width:9.128982px;}
._7_c00011{width:10.883369px;}
._16_c00011{width:11.935053px;}
._1d_c00011{width:13.174964px;}
._9_c00011{width:14.576892px;}
._15_c00011{width:16.511839px;}
._17_c00011{width:17.755094px;}
._8_c00011{width:18.815871px;}
._4_c00011{width:20.890859px;}
._3_c00011{width:22.949786px;}
._2_c00011{width:25.676646px;}
._1_c00011{width:29.129417px;}
._5_c00011{width:31.024380px;}
._0_c00011{width:34.308790px;}
._1a_c00011{width:36.876040px;}
._1b_c00011{width:40.766825px;}
.fc0_c00011{color:transparent;}
.fs19_c00011{font-size:15.750000px;}
.fsf_c00011{font-size:30.000000px;}
.fse_c00011{font-size:30.750000px;}
.fs14_c00011{font-size:35.250000px;}
.fs12_c00011{font-size:36.000000px;}
.fs11_c00011{font-size:39.750000px;}
.fs15_c00011{font-size:42.750000px;}
.fs13_c00011{font-size:43.500000px;}
.fs10_c00011{font-size:44.250000px;}
.fsd_c00011{font-size:47.250000px;}
.fs16_c00011{font-size:59.250000px;}
.fs18_c00011{font-size:63.000000px;}
.fs1d_c00011{font-size:69.000000px;}
.fs2_c00011{font-size:70.500000px;}
.fsa_c00011{font-size:71.250000px;}
.fs1_c00011{font-size:72.750000px;}
.fs1e_c00011{font-size:74.250000px;}
.fs6_c00011{font-size:75.750000px;}
.fsb_c00011{font-size:76.500000px;}
.fs0_c00011{font-size:78.000000px;}
.fs5_c00011{font-size:78.750000px;}
.fs7_c00011{font-size:79.327800px;}
.fs3_c00011{font-size:79.500000px;}
.fs8_c00011{font-size:80.250000px;}
.fsc_c00011{font-size:81.000000px;}
.fs1b_c00011{font-size:81.750000px;}
.fs1c_c00011{font-size:82.500000px;}
.fs4_c00011{font-size:83.250000px;}
.fs9_c00011{font-size:84.000000px;}
.fs17_c00011{font-size:128.250000px;}
.fs1a_c00011{font-size:144.000000px;}
.y0_c00011{bottom:0.000000px;}
.y24_c00011{bottom:304.199385px;}
.y25_c00011{bottom:304.199850px;}
.y23_c00011{bottom:333.360540px;}
.y22_c00011{bottom:363.600450px;}
.y21_c00011{bottom:393.119985px;}
.y20_c00011{bottom:423.000600px;}
.y1f_c00011{bottom:423.001485px;}
.y1d_c00011{bottom:452.880360px;}
.y1e_c00011{bottom:452.881215px;}
.y1c_c00011{bottom:483.120270px;}
.y1a_c00011{bottom:512.999910px;}
.y1b_c00011{bottom:513.000000px;}
.y18_c00011{bottom:543.239595px;}
.y19_c00011{bottom:543.239820px;}
.y17_c00011{bottom:572.760930px;}
.y16_c00011{bottom:602.101140px;}
.y15_c00011{bottom:631.441320px;}
.y14_c00011{bottom:691.560285px;}
.y12_c00011{bottom:750.960525px;}
.y13_c00011{bottom:752.580420px;}
.y11_c00011{bottom:781.200435px;}
.y10_c00011{bottom:781.200630px;}
.yf_c00011{bottom:810.720150px;}
.ye_c00011{bottom:840.961005px;}
.yd_c00011{bottom:871.200915px;}
.yc_c00011{bottom:901.080645px;}
.yb_c00011{bottom:930.960360px;}
.ya_c00011{bottom:960.840090px;}
.y9_c00011{bottom:960.840195px;}
.y7_c00011{bottom:990.361410px;}
.y8_c00011{bottom:990.361545px;}
.y5_c00011{bottom:1020.600570px;}
.y6_c00011{bottom:1020.601320px;}
.y4_c00011{bottom:1050.480285px;}
.y3_c00011{bottom:1050.480465px;}
.y2_c00011{bottom:1080.000000px;}
.y1_c00011{bottom:1139.040990px;}
.h1d_c00011{height:16.426758px;}
.h12_c00011{height:31.289062px;}
.h11_c00011{height:32.071289px;}
.h15_c00011{height:36.281250px;}
.h17_c00011{height:36.764648px;}
.h14_c00011{height:38.993042px;}
.h16_c00011{height:42.990234px;}
.h18_c00011{height:44.586914px;}
.h13_c00011{height:46.151367px;}
.h10_c00011{height:49.280273px;}
.h19_c00011{height:59.712891px;}
.h1c_c00011{height:63.492188px;}
.h21_c00011{height:71.964844px;}
.h3_c00011{height:73.529297px;}
.hd_c00011{height:74.311523px;}
.h7_c00011{height:74.344482px;}
.h2_c00011{height:75.875977px;}
.h24_c00011{height:76.341797px;}
.hb_c00011{height:76.552734px;}
.h6_c00011{height:77.288818px;}
.h23_c00011{height:77.440430px;}
.h8_c00011{height:77.855897px;}
.h1_c00011{height:78.609375px;}
.ha_c00011{height:78.760986px;}
.h22_c00011{height:79.365234px;}
.he_c00011{height:79.787109px;}
.h4_c00011{height:80.121094px;}
.h1f_c00011{height:80.233154px;}
.h20_c00011{height:80.969238px;}
.hf_c00011{height:81.632812px;}
.h9_c00011{height:81.705322px;}
.h5_c00011{height:82.274414px;}
.h1a_c00011{height:84.480469px;}
.hc_c00011{height:84.656250px;}
.h1b_c00011{height:133.760742px;}
.h1e_c00011{height:150.187500px;}
.h0_c00011{height:1263.000000px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:143.999400px;}
.x25_c00011{left:145.078815px;}
.x38_c00011{left:146.166510px;}
.x37_c00011{left:147.241905px;}
.x2_c00011{left:176.759100px;}
.x11_c00011{left:203.399850px;}
.x3_c00011{left:216.000000px;}
.x12_c00011{left:228.239250px;}
.x18_c00011{left:245.878950px;}
.x19_c00011{left:259.919535px;}
.x1a_c00011{left:263.159385px;}
.x1b_c00011{left:277.199850px;}
.x4_c00011{left:278.638500px;}
.x5_c00011{left:304.199850px;}
.x1c_c00011{left:329.759535px;}
.x15_c00011{left:332.638530px;}
.x16_c00011{left:348.478635px;}
.x2a_c00011{left:379.799535px;}
.x6_c00011{left:388.078815px;}
.x1d_c00011{left:394.199385px;}
.x2c_c00011{left:398.159415px;}
.x17_c00011{left:399.599670px;}
.x2b_c00011{left:400.679070px;}
.x1e_c00011{left:408.958335px;}
.x39_c00011{left:414.358665px;}
.x2d_c00011{left:418.679670px;}
.x13_c00011{left:423.719100px;}
.x1f_c00011{left:440.999400px;}
.x14_c00011{left:443.878320px;}
.x2e_c00011{left:446.038920px;}
.x28_c00011{left:453.238770px;}
.x29_c00011{left:474.479235px;}
.x2f_c00011{left:482.399235px;}
.x3a_c00011{left:486.000000px;}
.x20_c00011{left:495.719565px;}
.x30_c00011{left:497.159820px;}
.x21_c00011{left:522.719565px;}
.x26_c00011{left:530.639700px;}
.xb_c00011{left:545.398635px;}
.x27_c00011{left:563.399235px;}
.x31_c00011{left:578.159820px;}
.x7_c00011{left:584.278800px;}
.x22_c00011{left:591.478635px;}
.x32_c00011{left:610.558635px;}
.x8_c00011{left:612.359850px;}
.x23_c00011{left:627.118785px;}
.xc_c00011{left:641.518620px;}
.x33_c00011{left:653.759535px;}
.x24_c00011{left:664.558635px;}
.x34_c00011{left:674.279850px;}
.x9_c00011{left:710.638545px;}
.xd_c00011{left:712.798920px;}
.xe_c00011{left:731.519670px;}
.xa_c00011{left:733.678530px;}
.x35_c00011{left:738.358605px;}
.xf_c00011{left:783.718500px;}
.x36_c00011{left:790.918305px;}
.x10_c00011{left:798.120030px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls8_c00011{letter-spacing:-11.380460pt;}
.ls35_c00011{letter-spacing:-11.325467pt;}
.ls33_c00011{letter-spacing:-9.970133pt;}
.ls32_c00011{letter-spacing:-8.820533pt;}
.ls29_c00011{letter-spacing:-8.582000pt;}
.ls26_c00011{letter-spacing:-7.303800pt;}
.ls2c_c00011{letter-spacing:-7.266700pt;}
.ls16_c00011{letter-spacing:-6.601000pt;}
.ls2d_c00011{letter-spacing:-6.226000pt;}
.ls28_c00011{letter-spacing:-5.943000pt;}
.ls23_c00011{letter-spacing:-5.824800pt;}
.ls5_c00011{letter-spacing:-5.439113pt;}
.ls15_c00011{letter-spacing:-5.379060pt;}
.ls12_c00011{letter-spacing:-5.285000pt;}
.ls2a_c00011{letter-spacing:-4.708800pt;}
.ls2b_c00011{letter-spacing:-4.625000pt;}
.ls9_c00011{letter-spacing:-4.624533pt;}
.lsa_c00011{letter-spacing:-4.619300pt;}
.ls11_c00011{letter-spacing:-4.493300pt;}
.ls17_c00011{letter-spacing:-4.375000pt;}
.ls14_c00011{letter-spacing:-3.961300pt;}
.ls36_c00011{letter-spacing:-3.717000pt;}
.ls2e_c00011{letter-spacing:-3.692267pt;}
.lsb_c00011{letter-spacing:-3.304000pt;}
.ls24_c00011{letter-spacing:-3.146400pt;}
.ls7_c00011{letter-spacing:-3.074000pt;}
.ls19_c00011{letter-spacing:-2.992680pt;}
.ls27_c00011{letter-spacing:-2.667000pt;}
.lse_c00011{letter-spacing:-2.639000pt;}
.ls31_c00011{letter-spacing:-2.436700pt;}
.ls6_c00011{letter-spacing:-2.294227pt;}
.lsc_c00011{letter-spacing:-1.981700pt;}
.ls20_c00011{letter-spacing:-1.742133pt;}
.ls30_c00011{letter-spacing:-1.505000pt;}
.ls4_c00011{letter-spacing:-1.344373pt;}
.lsd_c00011{letter-spacing:-1.323700pt;}
.ls18_c00011{letter-spacing:-0.734933pt;}
.lsf_c00011{letter-spacing:-0.658000pt;}
.ls25_c00011{letter-spacing:-0.649600pt;}
.ls13_c00011{letter-spacing:0.000000pt;}
.ls1c_c00011{letter-spacing:0.504267pt;}
.ls0_c00011{letter-spacing:0.658000pt;}
.ls3_c00011{letter-spacing:0.734933pt;}
.ls2_c00011{letter-spacing:1.476800pt;}
.ls1d_c00011{letter-spacing:2.383207pt;}
.ls22_c00011{letter-spacing:2.507460pt;}
.ls10_c00011{letter-spacing:2.834733pt;}
.ls1a_c00011{letter-spacing:4.068000pt;}
.ls1_c00011{letter-spacing:4.423467pt;}
.ls1f_c00011{letter-spacing:5.010813pt;}
.ls21_c00011{letter-spacing:6.965400pt;}
.ls1b_c00011{letter-spacing:8.566267pt;}
.ls2f_c00011{letter-spacing:12.936000pt;}
.ls1e_c00011{letter-spacing:14.131200pt;}
.ls34_c00011{letter-spacing:55.752000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
._18_c00011{margin-left:-10.826517pt;}
._19_c00011{margin-left:-9.043445pt;}
._c_c00011{margin-left:-7.344809pt;}
._e_c00011{margin-left:-6.299709pt;}
._b_c00011{margin-left:-5.388983pt;}
._d_c00011{margin-left:-4.128930pt;}
._a_c00011{margin-left:-3.216183pt;}
._12_c00011{margin-left:-1.804679pt;}
._11_c00011{width:1.519872pt;}
._1c_c00011{width:2.418249pt;}
._f_c00011{width:3.378649pt;}
._13_c00011{width:4.651553pt;}
._10_c00011{width:5.586185pt;}
._14_c00011{width:6.863606pt;}
._6_c00011{width:8.114651pt;}
._7_c00011{width:9.674106pt;}
._16_c00011{width:10.608936pt;}
._1d_c00011{width:11.711079pt;}
._9_c00011{width:12.957238pt;}
._15_c00011{width:14.677191pt;}
._17_c00011{width:15.782306pt;}
._8_c00011{width:16.725219pt;}
._4_c00011{width:18.569653pt;}
._3_c00011{width:20.399809pt;}
._2_c00011{width:22.823685pt;}
._1_c00011{width:25.892815pt;}
._5_c00011{width:27.577226pt;}
._0_c00011{width:30.496702pt;}
._1a_c00011{width:32.778702pt;}
._1b_c00011{width:36.237177pt;}
.fs19_c00011{font-size:14.000000pt;}
.fsf_c00011{font-size:26.666667pt;}
.fse_c00011{font-size:27.333333pt;}
.fs14_c00011{font-size:31.333333pt;}
.fs12_c00011{font-size:32.000000pt;}
.fs11_c00011{font-size:35.333333pt;}
.fs15_c00011{font-size:38.000000pt;}
.fs13_c00011{font-size:38.666667pt;}
.fs10_c00011{font-size:39.333333pt;}
.fsd_c00011{font-size:42.000000pt;}
.fs16_c00011{font-size:52.666667pt;}
.fs18_c00011{font-size:56.000000pt;}
.fs1d_c00011{font-size:61.333333pt;}
.fs2_c00011{font-size:62.666667pt;}
.fsa_c00011{font-size:63.333333pt;}
.fs1_c00011{font-size:64.666667pt;}
.fs1e_c00011{font-size:66.000000pt;}
.fs6_c00011{font-size:67.333333pt;}
.fsb_c00011{font-size:68.000000pt;}
.fs0_c00011{font-size:69.333333pt;}
.fs5_c00011{font-size:70.000000pt;}
.fs7_c00011{font-size:70.513600pt;}
.fs3_c00011{font-size:70.666667pt;}
.fs8_c00011{font-size:71.333333pt;}
.fsc_c00011{font-size:72.000000pt;}
.fs1b_c00011{font-size:72.666667pt;}
.fs1c_c00011{font-size:73.333333pt;}
.fs4_c00011{font-size:74.000000pt;}
.fs9_c00011{font-size:74.666667pt;}
.fs17_c00011{font-size:114.000000pt;}
.fs1a_c00011{font-size:128.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y24_c00011{bottom:270.399453pt;}
.y25_c00011{bottom:270.399867pt;}
.y23_c00011{bottom:296.320480pt;}
.y22_c00011{bottom:323.200400pt;}
.y21_c00011{bottom:349.439987pt;}
.y20_c00011{bottom:376.000533pt;}
.y1f_c00011{bottom:376.001320pt;}
.y1d_c00011{bottom:402.560320pt;}
.y1e_c00011{bottom:402.561080pt;}
.y1c_c00011{bottom:429.440240pt;}
.y1a_c00011{bottom:455.999920pt;}
.y1b_c00011{bottom:456.000000pt;}
.y18_c00011{bottom:482.879640pt;}
.y19_c00011{bottom:482.879840pt;}
.y17_c00011{bottom:509.120827pt;}
.y16_c00011{bottom:535.201013pt;}
.y15_c00011{bottom:561.281173pt;}
.y14_c00011{bottom:614.720253pt;}
.y12_c00011{bottom:667.520467pt;}
.y13_c00011{bottom:668.960373pt;}
.y11_c00011{bottom:694.400387pt;}
.y10_c00011{bottom:694.400560pt;}
.yf_c00011{bottom:720.640133pt;}
.ye_c00011{bottom:747.520893pt;}
.yd_c00011{bottom:774.400813pt;}
.yc_c00011{bottom:800.960573pt;}
.yb_c00011{bottom:827.520320pt;}
.ya_c00011{bottom:854.080080pt;}
.y9_c00011{bottom:854.080173pt;}
.y7_c00011{bottom:880.321253pt;}
.y8_c00011{bottom:880.321373pt;}
.y5_c00011{bottom:907.200507pt;}
.y6_c00011{bottom:907.201173pt;}
.y4_c00011{bottom:933.760253pt;}
.y3_c00011{bottom:933.760413pt;}
.y2_c00011{bottom:960.000000pt;}
.y1_c00011{bottom:1012.480880pt;}
.h1d_c00011{height:14.601562pt;}
.h12_c00011{height:27.812500pt;}
.h11_c00011{height:28.507812pt;}
.h15_c00011{height:32.250000pt;}
.h17_c00011{height:32.679688pt;}
.h14_c00011{height:34.660482pt;}
.h16_c00011{height:38.213542pt;}
.h18_c00011{height:39.632812pt;}
.h13_c00011{height:41.023438pt;}
.h10_c00011{height:43.804688pt;}
.h19_c00011{height:53.078125pt;}
.h1c_c00011{height:56.437500pt;}
.h21_c00011{height:63.968750pt;}
.h3_c00011{height:65.359375pt;}
.hd_c00011{height:66.054688pt;}
.h7_c00011{height:66.083984pt;}
.h2_c00011{height:67.445312pt;}
.h24_c00011{height:67.859375pt;}
.hb_c00011{height:68.046875pt;}
.h6_c00011{height:68.701172pt;}
.h23_c00011{height:68.835938pt;}
.h8_c00011{height:69.205242pt;}
.h1_c00011{height:69.875000pt;}
.ha_c00011{height:70.009766pt;}
.h22_c00011{height:70.546875pt;}
.he_c00011{height:70.921875pt;}
.h4_c00011{height:71.218750pt;}
.h1f_c00011{height:71.318359pt;}
.h20_c00011{height:71.972656pt;}
.hf_c00011{height:72.562500pt;}
.h9_c00011{height:72.626953pt;}
.h5_c00011{height:73.132813pt;}
.h1a_c00011{height:75.093750pt;}
.hc_c00011{height:75.250000pt;}
.h1b_c00011{height:118.898438pt;}
.h1e_c00011{height:133.500000pt;}
.h0_c00011{height:1122.666667pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:127.999467pt;}
.x25_c00011{left:128.958947pt;}
.x38_c00011{left:129.925787pt;}
.x37_c00011{left:130.881693pt;}
.x2_c00011{left:157.119200pt;}
.x11_c00011{left:180.799867pt;}
.x3_c00011{left:192.000000pt;}
.x12_c00011{left:202.879333pt;}
.x18_c00011{left:218.559067pt;}
.x19_c00011{left:231.039587pt;}
.x1a_c00011{left:233.919453pt;}
.x1b_c00011{left:246.399867pt;}
.x4_c00011{left:247.678667pt;}
.x5_c00011{left:270.399867pt;}
.x1c_c00011{left:293.119587pt;}
.x15_c00011{left:295.678693pt;}
.x16_c00011{left:309.758787pt;}
.x2a_c00011{left:337.599587pt;}
.x6_c00011{left:344.958947pt;}
.x1d_c00011{left:350.399453pt;}
.x2c_c00011{left:353.919480pt;}
.x17_c00011{left:355.199707pt;}
.x2b_c00011{left:356.159173pt;}
.x1e_c00011{left:363.518520pt;}
.x39_c00011{left:368.318813pt;}
.x2d_c00011{left:372.159707pt;}
.x13_c00011{left:376.639200pt;}
.x1f_c00011{left:391.999467pt;}
.x14_c00011{left:394.558507pt;}
.x2e_c00011{left:396.479040pt;}
.x28_c00011{left:402.878907pt;}
.x29_c00011{left:421.759320pt;}
.x2f_c00011{left:428.799320pt;}
.x3a_c00011{left:432.000000pt;}
.x20_c00011{left:440.639613pt;}
.x30_c00011{left:441.919840pt;}
.x21_c00011{left:464.639613pt;}
.x26_c00011{left:471.679733pt;}
.xb_c00011{left:484.798787pt;}
.x27_c00011{left:500.799320pt;}
.x31_c00011{left:513.919840pt;}
.x7_c00011{left:519.358933pt;}
.x22_c00011{left:525.758787pt;}
.x32_c00011{left:542.718787pt;}
.x8_c00011{left:544.319867pt;}
.x23_c00011{left:557.438920pt;}
.xc_c00011{left:570.238773pt;}
.x33_c00011{left:581.119587pt;}
.x24_c00011{left:590.718787pt;}
.x34_c00011{left:599.359867pt;}
.x9_c00011{left:631.678707pt;}
.xd_c00011{left:633.599040pt;}
.xe_c00011{left:650.239707pt;}
.xa_c00011{left:652.158693pt;}
.x35_c00011{left:656.318760pt;}
.xf_c00011{left:696.638667pt;}
.x36_c00011{left:703.038493pt;}
.x10_c00011{left:709.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c9e1d033dcbfab02969cb23.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.311035;font-style:normal;font-weight:normal;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_9f79535e6af48986034c3136.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.364746;font-style:normal;font-weight:normal;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_40e8357caa52fdcfd5ccc027.woff2')format("woff");}.ff3_c00012{font-family:ff3_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:ff4_c00012;src:url('chunks/assets/font_ece7fa0ca5ecc4e673a13d6b.woff2')format("woff");}.ff4_c00012{font-family:ff4_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:ff5_c00012;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff5_c00012{font-family:ff5_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;}
.m22_c00012{transform:matrix(0.180863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180863,0.000000,0.000000,0.250000,0,0);}
.m2a_c00012{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m20_c00012{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.ma_c00012{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.md_c00012{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m13_c00012{transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);}
.m1b_c00012{transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);}
.m29_c00012{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_c00012{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{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);}
.m23_c00012{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00012{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m15_c00012{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m26_c00012{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m17_c00012{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1e_c00012{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.me_c00012{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m25_c00012{transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256303,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m14_c00012{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m24_c00012{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.268018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268018,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls2_c00012{letter-spacing:-20.988158px;}
.ls1b_c00012{letter-spacing:-12.130200px;}
.ls2a_c00012{letter-spacing:-8.914500px;}
.ls23_c00012{letter-spacing:-7.426125px;}
.ls18_c00012{letter-spacing:-6.817200px;}
.ls14_c00012{letter-spacing:-6.572700px;}
.ls10_c00012{letter-spacing:-6.452100px;}
.lsa_c00012{letter-spacing:-5.945625px;}
.ls5_c00012{letter-spacing:-5.428800px;}
.ls25_c00012{letter-spacing:-5.247533px;}
.lse_c00012{letter-spacing:-5.196713px;}
.ls22_c00012{letter-spacing:-5.054963px;}
.ls13_c00012{letter-spacing:-4.456463px;}
.ls26_c00012{letter-spacing:-4.390208px;}
.ls19_c00012{letter-spacing:-4.368150px;}
.ls9_c00012{letter-spacing:-3.717000px;}
.ls21_c00012{letter-spacing:-3.060750px;}
.lsb_c00012{letter-spacing:-2.968875px;}
.ls16_c00012{letter-spacing:-2.889150px;}
.ls1_c00012{letter-spacing:-2.400750px;}
.ls27_c00012{letter-spacing:-2.340000px;}
.ls12_c00012{letter-spacing:-2.267213px;}
.lsc_c00012{letter-spacing:-2.229413px;}
.ls8_c00012{letter-spacing:-2.051288px;}
.ls6_c00012{letter-spacing:-1.512420px;}
.lsd_c00012{letter-spacing:-1.489163px;}
.ls15_c00012{letter-spacing:-1.483200px;}
.ls29_c00012{letter-spacing:-1.439250px;}
.ls24_c00012{letter-spacing:-1.417283px;}
.ls20_c00012{letter-spacing:-0.786450px;}
.ls4_c00012{letter-spacing:-0.777600px;}
.ls28_c00012{letter-spacing:-0.756608px;}
.lsf_c00012{letter-spacing:-0.740250px;}
.ls7_c00012{letter-spacing:0.000000px;}
.ls3_c00012{letter-spacing:0.748800px;}
.ls0_c00012{letter-spacing:1.526963px;}
.ls1d_c00012{letter-spacing:2.276175px;}
.ls1e_c00012{letter-spacing:3.060000px;}
.ls1a_c00012{letter-spacing:3.142800px;}
.ls11_c00012{letter-spacing:3.637710px;}
.ls17_c00012{letter-spacing:4.547400px;}
.ls1f_c00012{letter-spacing:8.445150px;}
.ls1c_c00012{letter-spacing:18.353250px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:0.000000px;}
._1c_c00012{margin-left:-8.279166px;}
._1a_c00012{margin-left:-5.561370px;}
._19_c00012{margin-left:-4.407712px;}
._1b_c00012{margin-left:-2.947984px;}
._14_c00012{margin-left:-1.714402px;}
._11_c00012{width:1.358497px;}
._e_c00012{width:2.857050px;}
._10_c00012{width:4.214581px;}
._13_c00012{width:5.307750px;}
._d_c00012{width:6.373297px;}
._12_c00012{width:7.409394px;}
._6_c00012{width:8.969447px;}
._f_c00012{width:10.016807px;}
._4_c00012{width:12.058779px;}
._3_c00012{width:13.312242px;}
._2_c00012{width:15.080566px;}
._c_c00012{width:16.107005px;}
._18_c00012{width:18.215648px;}
._0_c00012{width:20.947203px;}
._5_c00012{width:23.621479px;}
._1d_c00012{width:26.680530px;}
._1_c00012{width:27.940114px;}
._17_c00012{width:29.861212px;}
._a_c00012{width:30.861679px;}
._9_c00012{width:32.435223px;}
._15_c00012{width:34.101900px;}
._8_c00012{width:35.645519px;}
._7_c00012{width:36.658422px;}
._b_c00012{width:42.137996px;}
._16_c00012{width:44.375016px;}
.fc0_c00012{color:transparent;}
.fsd_c00012{font-size:66.750000px;}
.fsa_c00012{font-size:69.000000px;}
.fs5_c00012{font-size:71.250000px;}
.fse_c00012{font-size:73.500000px;}
.fs13_c00012{font-size:74.250000px;}
.fsc_c00012{font-size:75.000000px;}
.fs11_c00012{font-size:75.750000px;}
.fsb_c00012{font-size:76.500000px;}
.fs10_c00012{font-size:76.885800px;}
.fs9_c00012{font-size:77.250000px;}
.fs3_c00012{font-size:78.000000px;}
.fs0_c00012{font-size:78.750000px;}
.fsf_c00012{font-size:79.500000px;}
.fs6_c00012{font-size:80.250000px;}
.fs4_c00012{font-size:81.000000px;}
.fs7_c00012{font-size:81.750000px;}
.fs1_c00012{font-size:82.500000px;}
.fs2_c00012{font-size:83.250000px;}
.fs8_c00012{font-size:84.750000px;}
.fs12_c00012{font-size:89.250000px;}
.y0_c00012{bottom:0.000000px;}
.y2a_c00012{bottom:183.240630px;}
.y29_c00012{bottom:212.760150px;}
.y28_c00012{bottom:212.760315px;}
.y26_c00012{bottom:242.279130px;}
.y27_c00012{bottom:242.279850px;}
.y25_c00012{bottom:271.440285px;}
.y23_c00012{bottom:300.959865px;}
.y24_c00012{bottom:300.960000px;}
.y22_c00012{bottom:331.199775px;}
.y21_c00012{bottom:361.439685px;}
.y20_c00012{bottom:361.439850px;}
.y1f_c00012{bottom:390.959385px;}
.y1d_c00012{bottom:420.839910px;}
.y1e_c00012{bottom:420.840135px;}
.y1c_c00012{bottom:449.998950px;}
.y1a_c00012{bottom:480.239655px;}
.y1b_c00012{bottom:480.240420px;}
.y19_c00012{bottom:510.119385px;}
.y18_c00012{bottom:540.359250px;}
.y17_c00012{bottom:569.878920px;}
.y16_c00012{bottom:628.559100px;}
.y15_c00012{bottom:718.919535px;}
.y14_c00012{bottom:748.800105px;}
.y13_c00012{bottom:778.319820px;}
.y12_c00012{bottom:778.320000px;}
.y11_c00012{bottom:807.839535px;}
.y10_c00012{bottom:807.839715px;}
.yf_c00012{bottom:837.359250px;}
.ye_c00012{bottom:837.359475px;}
.yd_c00012{bottom:867.239205px;}
.yb_c00012{bottom:898.199040px;}
.yc_c00012{bottom:898.199805px;}
.y9_c00012{bottom:928.078125px;}
.ya_c00012{bottom:928.078770px;}
.y8_c00012{bottom:957.599460px;}
.y7_c00012{bottom:987.479190px;}
.y6_c00012{bottom:987.479400px;}
.y5_c00012{bottom:1017.359115px;}
.y4_c00012{bottom:1046.520270px;}
.y3_c00012{bottom:1046.521095px;}
.y2_c00012{bottom:1077.119385px;}
.y1_c00012{bottom:1136.158815px;}
.h11_c00012{height:69.618164px;}
.h7_c00012{height:69.927979px;}
.he_c00012{height:71.964844px;}
.h19_c00012{height:72.872314px;}
.h10_c00012{height:73.608398px;}
.h1a_c00012{height:74.344482px;}
.h16_c00012{height:75.080566px;}
.h15_c00012{height:75.459208px;}
.h17_c00012{height:76.341797px;}
.h4_c00012{height:76.552734px;}
.h12_c00012{height:76.658203px;}
.hf_c00012{height:77.097656px;}
.h8_c00012{height:77.288818px;}
.hc_c00012{height:77.853516px;}
.h1b_c00012{height:78.222656px;}
.hd_c00012{height:78.609375px;}
.h9_c00012{height:78.760986px;}
.h1_c00012{height:79.365234px;}
.h5_c00012{height:79.497070px;}
.h14_c00012{height:80.121094px;}
.ha_c00012{height:80.233154px;}
.h13_c00012{height:80.876953px;}
.h6_c00012{height:80.969238px;}
.h3_c00012{height:82.274414px;}
.h2_c00012{height:83.144531px;}
.hb_c00012{height:83.177490px;}
.h18_c00012{height:88.204102px;}
.h0_c00012{height:1263.000000px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.xd_c00012{left:138.237780px;}
.x3_c00012{left:139.319250px;}
.x1_c00012{left:140.398665px;}
.x3d_c00012{left:152.998950px;}
.x30_c00012{left:154.080000px;}
.x2d_c00012{left:155.518665px;}
.x2_c00012{left:160.918950px;}
.x4_c00012{left:168.118815px;}
.x28_c00012{left:175.318800px;}
.x1e_c00012{left:195.838950px;}
.x3e_c00012{left:203.759100px;}
.x31_c00012{left:212.399250px;}
.x32_c00012{left:227.878350px;}
.x5_c00012{left:236.518635px;}
.x29_c00012{left:256.318800px;}
.x6_c00012{left:281.878350px;}
.x2a_c00012{left:284.399850px;}
.x41_c00012{left:289.439235px;}
.x1f_c00012{left:291.238785px;}
.x7_c00012{left:304.199850px;}
.x42_c00012{left:305.638500px;}
.xe_c00012{left:310.318800px;}
.x2b_c00012{left:312.479235px;}
.x20_c00012{left:324.000000px;}
.xf_c00012{left:331.559100px;}
.xb_c00012{left:339.120000px;}
.x1a_c00012{left:344.879535px;}
.xc_c00012{left:355.678530px;}
.x1b_c00012{left:359.999385px;}
.x8_c00012{left:373.679100px;}
.x16_c00012{left:384.118785px;}
.x9_c00012{left:391.679670px;}
.x14_c00012{left:392.759085px;}
.x17_c00012{left:399.599670px;}
.xa_c00012{left:413.279250px;}
.x15_c00012{left:419.759085px;}
.x21_c00012{left:423.359850px;}
.x10_c00012{left:441.358665px;}
.x38_c00012{left:459.359250px;}
.x11_c00012{left:466.199850px;}
.x22_c00012{left:469.439670px;}
.x33_c00012{left:471.959385px;}
.x39_c00012{left:475.919535px;}
.x23_c00012{left:488.878920px;}
.x34_c00012{left:497.878320px;}
.x3f_c00012{left:514.438665px;}
.x2e_c00012{left:537.119385px;}
.x2f_c00012{left:550.078770px;}
.x43_c00012{left:566.639100px;}
.x24_c00012{left:584.278800px;}
.x40_c00012{left:599.039385px;}
.x12_c00012{left:615.238770px;}
.x35_c00012{left:620.279850px;}
.x13_c00012{left:629.638545px;}
.x25_c00012{left:639.719100px;}
.x36_c00012{left:652.319235px;}
.x18_c00012{left:655.199850px;}
.x1c_c00012{left:670.679070px;}
.x19_c00012{left:676.799520px;}
.x3a_c00012{left:679.678530px;}
.x1d_c00012{left:685.798920px;}
.x3c_c00012{left:697.319820px;}
.x3b_c00012{left:700.918950px;}
.x26_c00012{left:717.119985px;}
.x27_c00012{left:740.519070px;}
.x37_c00012{left:764.999355px;}
.x2c_c00012{left:771.120030px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls2_c00012{letter-spacing:-18.656140pt;}
.ls1b_c00012{letter-spacing:-10.782400pt;}
.ls2a_c00012{letter-spacing:-7.924000pt;}
.ls23_c00012{letter-spacing:-6.601000pt;}
.ls18_c00012{letter-spacing:-6.059733pt;}
.ls14_c00012{letter-spacing:-5.842400pt;}
.ls10_c00012{letter-spacing:-5.735200pt;}
.lsa_c00012{letter-spacing:-5.285000pt;}
.ls5_c00012{letter-spacing:-4.825600pt;}
.ls25_c00012{letter-spacing:-4.664473pt;}
.lse_c00012{letter-spacing:-4.619300pt;}
.ls22_c00012{letter-spacing:-4.493300pt;}
.ls13_c00012{letter-spacing:-3.961300pt;}
.ls26_c00012{letter-spacing:-3.902407pt;}
.ls19_c00012{letter-spacing:-3.882800pt;}
.ls9_c00012{letter-spacing:-3.304000pt;}
.ls21_c00012{letter-spacing:-2.720667pt;}
.lsb_c00012{letter-spacing:-2.639000pt;}
.ls16_c00012{letter-spacing:-2.568133pt;}
.ls1_c00012{letter-spacing:-2.134000pt;}
.ls27_c00012{letter-spacing:-2.080000pt;}
.ls12_c00012{letter-spacing:-2.015300pt;}
.lsc_c00012{letter-spacing:-1.981700pt;}
.ls8_c00012{letter-spacing:-1.823367pt;}
.ls6_c00012{letter-spacing:-1.344373pt;}
.lsd_c00012{letter-spacing:-1.323700pt;}
.ls15_c00012{letter-spacing:-1.318400pt;}
.ls29_c00012{letter-spacing:-1.279333pt;}
.ls24_c00012{letter-spacing:-1.259807pt;}
.ls20_c00012{letter-spacing:-0.699067pt;}
.ls4_c00012{letter-spacing:-0.691200pt;}
.ls28_c00012{letter-spacing:-0.672540pt;}
.lsf_c00012{letter-spacing:-0.658000pt;}
.ls7_c00012{letter-spacing:0.000000pt;}
.ls3_c00012{letter-spacing:0.665600pt;}
.ls0_c00012{letter-spacing:1.357300pt;}
.ls1d_c00012{letter-spacing:2.023267pt;}
.ls1e_c00012{letter-spacing:2.720000pt;}
.ls1a_c00012{letter-spacing:2.793600pt;}
.ls11_c00012{letter-spacing:3.233520pt;}
.ls17_c00012{letter-spacing:4.042133pt;}
.ls1f_c00012{letter-spacing:7.506800pt;}
.ls1c_c00012{letter-spacing:16.314000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
._1c_c00012{margin-left:-7.359258pt;}
._1a_c00012{margin-left:-4.943440pt;}
._19_c00012{margin-left:-3.917966pt;}
._1b_c00012{margin-left:-2.620430pt;}
._14_c00012{margin-left:-1.523913pt;}
._11_c00012{width:1.207553pt;}
._e_c00012{width:2.539600pt;}
._10_c00012{width:3.746294pt;}
._13_c00012{width:4.718000pt;}
._d_c00012{width:5.665153pt;}
._12_c00012{width:6.586128pt;}
._6_c00012{width:7.972842pt;}
._f_c00012{width:8.903828pt;}
._4_c00012{width:10.718915pt;}
._3_c00012{width:11.833104pt;}
._2_c00012{width:13.404947pt;}
._c_c00012{width:14.317338pt;}
._18_c00012{width:16.191687pt;}
._0_c00012{width:18.619736pt;}
._5_c00012{width:20.996870pt;}
._1d_c00012{width:23.716026pt;}
._1_c00012{width:24.835657pt;}
._17_c00012{width:26.543300pt;}
._a_c00012{width:27.432604pt;}
._9_c00012{width:28.831309pt;}
._15_c00012{width:30.312800pt;}
._8_c00012{width:31.684906pt;}
._7_c00012{width:32.585264pt;}
._b_c00012{width:37.455996pt;}
._16_c00012{width:39.444458pt;}
.fsd_c00012{font-size:59.333333pt;}
.fsa_c00012{font-size:61.333333pt;}
.fs5_c00012{font-size:63.333333pt;}
.fse_c00012{font-size:65.333333pt;}
.fs13_c00012{font-size:66.000000pt;}
.fsc_c00012{font-size:66.666667pt;}
.fs11_c00012{font-size:67.333333pt;}
.fsb_c00012{font-size:68.000000pt;}
.fs10_c00012{font-size:68.342933pt;}
.fs9_c00012{font-size:68.666667pt;}
.fs3_c00012{font-size:69.333333pt;}
.fs0_c00012{font-size:70.000000pt;}
.fsf_c00012{font-size:70.666667pt;}
.fs6_c00012{font-size:71.333333pt;}
.fs4_c00012{font-size:72.000000pt;}
.fs7_c00012{font-size:72.666667pt;}
.fs1_c00012{font-size:73.333333pt;}
.fs2_c00012{font-size:74.000000pt;}
.fs8_c00012{font-size:75.333333pt;}
.fs12_c00012{font-size:79.333333pt;}
.y0_c00012{bottom:0.000000pt;}
.y2a_c00012{bottom:162.880560pt;}
.y29_c00012{bottom:189.120133pt;}
.y28_c00012{bottom:189.120280pt;}
.y26_c00012{bottom:215.359227pt;}
.y27_c00012{bottom:215.359867pt;}
.y25_c00012{bottom:241.280253pt;}
.y23_c00012{bottom:267.519880pt;}
.y24_c00012{bottom:267.520000pt;}
.y22_c00012{bottom:294.399800pt;}
.y21_c00012{bottom:321.279720pt;}
.y20_c00012{bottom:321.279867pt;}
.y1f_c00012{bottom:347.519453pt;}
.y1d_c00012{bottom:374.079920pt;}
.y1e_c00012{bottom:374.080120pt;}
.y1c_c00012{bottom:399.999067pt;}
.y1a_c00012{bottom:426.879693pt;}
.y1b_c00012{bottom:426.880373pt;}
.y19_c00012{bottom:453.439453pt;}
.y18_c00012{bottom:480.319333pt;}
.y17_c00012{bottom:506.559040pt;}
.y16_c00012{bottom:558.719200pt;}
.y15_c00012{bottom:639.039587pt;}
.y14_c00012{bottom:665.600093pt;}
.y13_c00012{bottom:691.839840pt;}
.y12_c00012{bottom:691.840000pt;}
.y11_c00012{bottom:718.079587pt;}
.y10_c00012{bottom:718.079747pt;}
.yf_c00012{bottom:744.319333pt;}
.ye_c00012{bottom:744.319533pt;}
.yd_c00012{bottom:770.879293pt;}
.yb_c00012{bottom:798.399147pt;}
.yc_c00012{bottom:798.399827pt;}
.y9_c00012{bottom:824.958333pt;}
.ya_c00012{bottom:824.958907pt;}
.y8_c00012{bottom:851.199520pt;}
.y7_c00012{bottom:877.759280pt;}
.y6_c00012{bottom:877.759467pt;}
.y5_c00012{bottom:904.319213pt;}
.y4_c00012{bottom:930.240240pt;}
.y3_c00012{bottom:930.240973pt;}
.y2_c00012{bottom:957.439453pt;}
.y1_c00012{bottom:1009.918947pt;}
.h11_c00012{height:61.882812pt;}
.h7_c00012{height:62.158203pt;}
.he_c00012{height:63.968750pt;}
.h19_c00012{height:64.775391pt;}
.h10_c00012{height:65.429688pt;}
.h1a_c00012{height:66.083984pt;}
.h16_c00012{height:66.738281pt;}
.h15_c00012{height:67.074852pt;}
.h17_c00012{height:67.859375pt;}
.h4_c00012{height:68.046875pt;}
.h12_c00012{height:68.140625pt;}
.hf_c00012{height:68.531250pt;}
.h8_c00012{height:68.701172pt;}
.hc_c00012{height:69.203125pt;}
.h1b_c00012{height:69.531250pt;}
.hd_c00012{height:69.875000pt;}
.h9_c00012{height:70.009766pt;}
.h1_c00012{height:70.546875pt;}
.h5_c00012{height:70.664062pt;}
.h14_c00012{height:71.218750pt;}
.ha_c00012{height:71.318359pt;}
.h13_c00012{height:71.890625pt;}
.h6_c00012{height:71.972656pt;}
.h3_c00012{height:73.132813pt;}
.h2_c00012{height:73.906250pt;}
.hb_c00012{height:73.935547pt;}
.h18_c00012{height:78.403646pt;}
.h0_c00012{height:1122.666667pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.xd_c00012{left:122.878027pt;}
.x3_c00012{left:123.839333pt;}
.x1_c00012{left:124.798813pt;}
.x3d_c00012{left:135.999067pt;}
.x30_c00012{left:136.960000pt;}
.x2d_c00012{left:138.238813pt;}
.x2_c00012{left:143.039067pt;}
.x4_c00012{left:149.438947pt;}
.x28_c00012{left:155.838933pt;}
.x1e_c00012{left:174.079067pt;}
.x3e_c00012{left:181.119200pt;}
.x31_c00012{left:188.799333pt;}
.x32_c00012{left:202.558533pt;}
.x5_c00012{left:210.238787pt;}
.x29_c00012{left:227.838933pt;}
.x6_c00012{left:250.558533pt;}
.x2a_c00012{left:252.799867pt;}
.x41_c00012{left:257.279320pt;}
.x1f_c00012{left:258.878920pt;}
.x7_c00012{left:270.399867pt;}
.x42_c00012{left:271.678667pt;}
.xe_c00012{left:275.838933pt;}
.x2b_c00012{left:277.759320pt;}
.x20_c00012{left:288.000000pt;}
.xf_c00012{left:294.719200pt;}
.xb_c00012{left:301.440000pt;}
.x1a_c00012{left:306.559587pt;}
.xc_c00012{left:316.158693pt;}
.x1b_c00012{left:319.999453pt;}
.x8_c00012{left:332.159200pt;}
.x16_c00012{left:341.438920pt;}
.x9_c00012{left:348.159707pt;}
.x14_c00012{left:349.119187pt;}
.x17_c00012{left:355.199707pt;}
.xa_c00012{left:367.359333pt;}
.x15_c00012{left:373.119187pt;}
.x21_c00012{left:376.319867pt;}
.x10_c00012{left:392.318813pt;}
.x38_c00012{left:408.319333pt;}
.x11_c00012{left:414.399867pt;}
.x22_c00012{left:417.279707pt;}
.x33_c00012{left:419.519453pt;}
.x39_c00012{left:423.039587pt;}
.x23_c00012{left:434.559040pt;}
.x34_c00012{left:442.558507pt;}
.x3f_c00012{left:457.278813pt;}
.x2e_c00012{left:477.439453pt;}
.x2f_c00012{left:488.958907pt;}
.x43_c00012{left:503.679200pt;}
.x24_c00012{left:519.358933pt;}
.x40_c00012{left:532.479453pt;}
.x12_c00012{left:546.878907pt;}
.x35_c00012{left:551.359867pt;}
.x13_c00012{left:559.678707pt;}
.x25_c00012{left:568.639200pt;}
.x36_c00012{left:579.839320pt;}
.x18_c00012{left:582.399867pt;}
.x1c_c00012{left:596.159173pt;}
.x19_c00012{left:601.599573pt;}
.x3a_c00012{left:604.158693pt;}
.x1d_c00012{left:609.599040pt;}
.x3c_c00012{left:619.839840pt;}
.x3b_c00012{left:623.039067pt;}
.x26_c00012{left:637.439987pt;}
.x27_c00012{left:658.239173pt;}
.x37_c00012{left:679.999427pt;}
.x2c_c00012{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3bb0066a2296574092d25522.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_fb3cdafb295381cc1c582e3f.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_ca004050f58980f01545bd65.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_8fa974e817e8ccb9a507fb09.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_709ed81592fe2c4e3be94191.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00013;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00013{font-family:ff6_c00013;line-height:1.364746;font-style:normal;font-weight: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_c00013;src:url('chunks/assets/font_f86476570052eaefe03e94cb.woff2')format("woff");}.ff7_c00013{font-family:ff7_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00013{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m10_c00013{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m9_c00013{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1a_c00013{transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);}
.mf_c00013{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m1c_c00013{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00013{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m11_c00013{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.mb_c00013{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_c00013{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.mc_c00013{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m13_c00013{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m14_c00013{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m12_c00013{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00013{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.267677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267677,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m19_c00013{transform:matrix(0.314189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314189,0.000000,0.000000,0.250000,0,0);}
.m17_c00013{transform:matrix(0.317010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317010,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{transform:matrix(0.351351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351351,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls16_c00013{letter-spacing:-24.034275px;}
.ls1b_c00013{letter-spacing:-14.594850px;}
.ls8_c00013{letter-spacing:-14.319000px;}
.ls13_c00013{letter-spacing:-10.561980px;}
.ls15_c00013{letter-spacing:-8.914500px;}
.ls6_c00013{letter-spacing:-8.175038px;}
.ls1c_c00013{letter-spacing:-5.945625px;}
.lse_c00013{letter-spacing:-5.698125px;}
.lsb_c00013{letter-spacing:-5.196713px;}
.ls1a_c00013{letter-spacing:-4.921875px;}
.lsd_c00013{letter-spacing:-4.498965px;}
.lsa_c00013{letter-spacing:-4.456463px;}
.ls1e_c00013{letter-spacing:-3.823950px;}
.ls4_c00013{letter-spacing:-3.717000px;}
.ls12_c00013{letter-spacing:-3.412500px;}
.lsf_c00013{letter-spacing:-3.205125px;}
.ls17_c00013{letter-spacing:-3.053700px;}
.ls2_c00013{letter-spacing:-2.968875px;}
.ls0_c00013{letter-spacing:-2.229413px;}
.ls9_c00013{letter-spacing:-2.102018px;}
.ls10_c00013{letter-spacing:-1.869825px;}
.ls20_c00013{letter-spacing:-1.652400px;}
.ls18_c00013{letter-spacing:-1.605900px;}
.ls3_c00013{letter-spacing:-1.489163px;}
.ls14_c00013{letter-spacing:-1.391250px;}
.ls1d_c00013{letter-spacing:-1.185825px;}
.ls19_c00013{letter-spacing:-0.784800px;}
.ls5_c00013{letter-spacing:-0.740250px;}
.lsc_c00013{letter-spacing:0.000000px;}
.ls7_c00013{letter-spacing:1.644750px;}
.ls1_c00013{letter-spacing:3.839805px;}
.ls11_c00013{letter-spacing:6.953100px;}
.ls1f_c00013{letter-spacing:21.125018px;}
.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;}
._8_c00013{margin-left:-6.138964px;}
._a_c00013{margin-left:-3.940353px;}
._6_c00013{margin-left:-2.816620px;}
._7_c00013{margin-left:-1.403444px;}
._11_c00013{width:1.246791px;}
._5_c00013{width:3.142006px;}
._b_c00013{width:4.843095px;}
._2_c00013{width:5.845241px;}
._0_c00013{width:6.897296px;}
._1_c00013{width:8.970799px;}
._4_c00013{width:10.017089px;}
._3_c00013{width:11.911101px;}
._19_c00013{width:13.427989px;}
._c_c00013{width:16.076084px;}
._9_c00013{width:17.786208px;}
._e_c00013{width:18.902288px;}
._1c_c00013{width:21.477220px;}
._10_c00013{width:23.079991px;}
._f_c00013{width:24.082121px;}
._d_c00013{width:27.111352px;}
._18_c00013{width:28.521318px;}
._1a_c00013{width:29.532572px;}
._1b_c00013{width:39.350900px;}
._16_c00013{width:63.867335px;}
._12_c00013{width:64.947755px;}
._13_c00013{width:66.286535px;}
._17_c00013{width:68.045037px;}
._14_c00013{width:69.630928px;}
._15_c00013{width:70.654857px;}
.fc0_c00013{color:transparent;}
.fs11_c00013{font-size:55.500000px;}
.fs6_c00013{font-size:56.250000px;}
.fs10_c00013{font-size:72.750000px;}
.fs8_c00013{font-size:73.500000px;}
.fs4_c00013{font-size:74.250000px;}
.fs9_c00013{font-size:75.000000px;}
.fs2_c00013{font-size:76.500000px;}
.fsa_c00013{font-size:78.000000px;}
.fs0_c00013{font-size:78.750000px;}
.fsb_c00013{font-size:79.500000px;}
.fs7_c00013{font-size:80.250000px;}
.fse_c00013{font-size:81.000000px;}
.fsf_c00013{font-size:81.750000px;}
.fsd_c00013{font-size:82.500000px;}
.fs3_c00013{font-size:83.250000px;}
.fsc_c00013{font-size:84.750000px;}
.fs1_c00013{font-size:85.500000px;}
.fs5_c00013{font-size:101.250000px;}
.y0_c00013{bottom:0.000000px;}
.y1f_c00013{bottom:183.600615px;}
.y1e_c00013{bottom:212.761755px;}
.y1d_c00013{bottom:271.800525px;}
.y1c_c00013{bottom:301.680240px;}
.y1b_c00013{bottom:361.439685px;}
.y1a_c00013{bottom:361.439850px;}
.y19_c00013{bottom:390.959385px;}
.y18_c00013{bottom:420.840135px;}
.y17_c00013{bottom:480.599670px;}
.y16_c00013{bottom:569.878920px;}
.y15_c00013{bottom:599.759535px;}
.y14_c00013{bottom:599.759955px;}
.y13_c00013{bottom:629.639670px;}
.y12_c00013{bottom:659.519400px;}
.y11_c00013{bottom:689.038920px;}
.y10_c00013{bottom:689.039820px;}
.yf_c00013{bottom:718.919535px;}
.yd_c00013{bottom:748.439205px;}
.ye_c00013{bottom:748.800105px;}
.yc_c00013{bottom:759.239820px;}
.yb_c00013{bottom:778.322160px;}
.ya_c00013{bottom:808.562070px;}
.y9_c00013{bottom:838.081605px;}
.y8_c00013{bottom:867.961320px;}
.y7_c00013{bottom:898.201245px;}
.y6_c00013{bottom:957.960690px;}
.y5_c00013{bottom:987.480210px;}
.y4_c00013{bottom:1046.521095px;}
.y3_c00013{bottom:1077.119385px;}
.y2_c00013{bottom:1106.638965px;}
.y1_c00013{bottom:1136.878875px;}
.h14_c00013{height:57.884766px;}
.h7_c00013{height:58.666992px;}
.h5_c00013{height:72.872314px;}
.h13_c00013{height:75.875977px;}
.ha_c00013{height:76.658203px;}
.h3_c00013{height:77.097656px;}
.h1_c00013{height:77.288818px;}
.hb_c00013{height:78.222656px;}
.hc_c00013{height:78.609375px;}
.h16_c00013{height:78.760986px;}
.h15_c00013{height:79.457520px;}
.hd_c00013{height:80.121094px;}
.h9_c00013{height:80.876953px;}
.hf_c00013{height:80.969238px;}
.h10_c00013{height:81.632812px;}
.h4_c00013{height:82.274414px;}
.h11_c00013{height:82.388672px;}
.he_c00013{height:83.177490px;}
.h8_c00013{height:83.900391px;}
.h2_c00013{height:83.913574px;}
.h12_c00013{height:84.498047px;}
.h6_c00013{height:105.600586px;}
.h0_c00013{height:1263.000000px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:139.678500px;}
.x2_c00013{left:163.438665px;}
.x18_c00013{left:168.118815px;}
.x15_c00013{left:175.679700px;}
.x3_c00013{left:188.639100px;}
.x7_c00013{left:193.672800px;}
.x19_c00013{left:231.838515px;}
.x4_c00013{left:235.080000px;}
.x1a_c00013{left:258.120000px;}
.x16_c00013{left:267.119385px;}
.xa_c00013{left:268.198785px;}
.x5_c00013{left:286.919535px;}
.xb_c00013{left:294.119385px;}
.x17_c00013{left:295.559685px;}
.x8_c00013{left:311.399850px;}
.x6_c00013{left:323.639100px;}
.x9_c00013{left:333.719535px;}
.x13_c00013{left:365.759100px;}
.xc_c00013{left:380.519685px;}
.x22_c00013{left:394.199385px;}
.x23_c00013{left:409.319235px;}
.xd_c00013{left:463.678530px;}
.x11_c00013{left:488.519670px;}
.x12_c00013{left:503.639700px;}
.xe_c00013{left:540.000000px;}
.xf_c00013{left:563.039985px;}
.x1b_c00013{left:584.998950px;}
.x1c_c00013{left:613.439250px;}
.x10_c00013{left:667.798560px;}
.x1d_c00013{left:690.479235px;}
.x1e_c00013{left:710.999400px;}
.x20_c00013{left:750.958920px;}
.x1f_c00013{left:763.199850px;}
.x21_c00013{left:767.159820px;}
.x14_c00013{left:771.838530px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls16_c00013{letter-spacing:-21.363800pt;}
.ls1b_c00013{letter-spacing:-12.973200pt;}
.ls8_c00013{letter-spacing:-12.728000pt;}
.ls13_c00013{letter-spacing:-9.388427pt;}
.ls15_c00013{letter-spacing:-7.924000pt;}
.ls6_c00013{letter-spacing:-7.266700pt;}
.ls1c_c00013{letter-spacing:-5.285000pt;}
.lse_c00013{letter-spacing:-5.065000pt;}
.lsb_c00013{letter-spacing:-4.619300pt;}
.ls1a_c00013{letter-spacing:-4.375000pt;}
.lsd_c00013{letter-spacing:-3.999080pt;}
.lsa_c00013{letter-spacing:-3.961300pt;}
.ls1e_c00013{letter-spacing:-3.399067pt;}
.ls4_c00013{letter-spacing:-3.304000pt;}
.ls12_c00013{letter-spacing:-3.033333pt;}
.lsf_c00013{letter-spacing:-2.849000pt;}
.ls17_c00013{letter-spacing:-2.714400pt;}
.ls2_c00013{letter-spacing:-2.639000pt;}
.ls0_c00013{letter-spacing:-1.981700pt;}
.ls9_c00013{letter-spacing:-1.868460pt;}
.ls10_c00013{letter-spacing:-1.662067pt;}
.ls20_c00013{letter-spacing:-1.468800pt;}
.ls18_c00013{letter-spacing:-1.427467pt;}
.ls3_c00013{letter-spacing:-1.323700pt;}
.ls14_c00013{letter-spacing:-1.236667pt;}
.ls1d_c00013{letter-spacing:-1.054067pt;}
.ls19_c00013{letter-spacing:-0.697600pt;}
.ls5_c00013{letter-spacing:-0.658000pt;}
.lsc_c00013{letter-spacing:0.000000pt;}
.ls7_c00013{letter-spacing:1.462000pt;}
.ls1_c00013{letter-spacing:3.413160pt;}
.ls11_c00013{letter-spacing:6.180533pt;}
.ls1f_c00013{letter-spacing:18.777793pt;}
.ws0_c00013{word-spacing:0.000000pt;}
._8_c00013{margin-left:-5.456857pt;}
._a_c00013{margin-left:-3.502536pt;}
._6_c00013{margin-left:-2.503662pt;}
._7_c00013{margin-left:-1.247506pt;}
._11_c00013{width:1.108258pt;}
._5_c00013{width:2.792894pt;}
._b_c00013{width:4.304974pt;}
._2_c00013{width:5.195770pt;}
._0_c00013{width:6.130930pt;}
._1_c00013{width:7.974043pt;}
._4_c00013{width:8.904079pt;}
._3_c00013{width:10.587645pt;}
._19_c00013{width:11.935991pt;}
._c_c00013{width:14.289853pt;}
._9_c00013{width:15.809962pt;}
._e_c00013{width:16.802034pt;}
._1c_c00013{width:19.090862pt;}
._10_c00013{width:20.515547pt;}
._f_c00013{width:21.406330pt;}
._d_c00013{width:24.098979pt;}
._18_c00013{width:25.352283pt;}
._1a_c00013{width:26.251175pt;}
._1b_c00013{width:34.978577pt;}
._16_c00013{width:56.770964pt;}
._12_c00013{width:57.731338pt;}
._13_c00013{width:58.921364pt;}
._17_c00013{width:60.484477pt;}
._14_c00013{width:61.894158pt;}
._15_c00013{width:62.804317pt;}
.fs11_c00013{font-size:49.333333pt;}
.fs6_c00013{font-size:50.000000pt;}
.fs10_c00013{font-size:64.666667pt;}
.fs8_c00013{font-size:65.333333pt;}
.fs4_c00013{font-size:66.000000pt;}
.fs9_c00013{font-size:66.666667pt;}
.fs2_c00013{font-size:68.000000pt;}
.fsa_c00013{font-size:69.333333pt;}
.fs0_c00013{font-size:70.000000pt;}
.fsb_c00013{font-size:70.666667pt;}
.fs7_c00013{font-size:71.333333pt;}
.fse_c00013{font-size:72.000000pt;}
.fsf_c00013{font-size:72.666667pt;}
.fsd_c00013{font-size:73.333333pt;}
.fs3_c00013{font-size:74.000000pt;}
.fsc_c00013{font-size:75.333333pt;}
.fs1_c00013{font-size:76.000000pt;}
.fs5_c00013{font-size:90.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y1f_c00013{bottom:163.200547pt;}
.y1e_c00013{bottom:189.121560pt;}
.y1d_c00013{bottom:241.600467pt;}
.y1c_c00013{bottom:268.160213pt;}
.y1b_c00013{bottom:321.279720pt;}
.y1a_c00013{bottom:321.279867pt;}
.y19_c00013{bottom:347.519453pt;}
.y18_c00013{bottom:374.080120pt;}
.y17_c00013{bottom:427.199707pt;}
.y16_c00013{bottom:506.559040pt;}
.y15_c00013{bottom:533.119587pt;}
.y14_c00013{bottom:533.119960pt;}
.y13_c00013{bottom:559.679707pt;}
.y12_c00013{bottom:586.239467pt;}
.y11_c00013{bottom:612.479040pt;}
.y10_c00013{bottom:612.479840pt;}
.yf_c00013{bottom:639.039587pt;}
.yd_c00013{bottom:665.279293pt;}
.ye_c00013{bottom:665.600093pt;}
.yc_c00013{bottom:674.879840pt;}
.yb_c00013{bottom:691.841920pt;}
.ya_c00013{bottom:718.721840pt;}
.y9_c00013{bottom:744.961427pt;}
.y8_c00013{bottom:771.521173pt;}
.y7_c00013{bottom:798.401107pt;}
.y6_c00013{bottom:851.520613pt;}
.y5_c00013{bottom:877.760187pt;}
.y4_c00013{bottom:930.240973pt;}
.y3_c00013{bottom:957.439453pt;}
.y2_c00013{bottom:983.679080pt;}
.y1_c00013{bottom:1010.559000pt;}
.h14_c00013{height:51.453125pt;}
.h7_c00013{height:52.148438pt;}
.h5_c00013{height:64.775391pt;}
.h13_c00013{height:67.445312pt;}
.ha_c00013{height:68.140625pt;}
.h3_c00013{height:68.531250pt;}
.h1_c00013{height:68.701172pt;}
.hb_c00013{height:69.531250pt;}
.hc_c00013{height:69.875000pt;}
.h16_c00013{height:70.009766pt;}
.h15_c00013{height:70.628906pt;}
.hd_c00013{height:71.218750pt;}
.h9_c00013{height:71.890625pt;}
.hf_c00013{height:71.972656pt;}
.h10_c00013{height:72.562500pt;}
.h4_c00013{height:73.132813pt;}
.h11_c00013{height:73.234375pt;}
.he_c00013{height:73.935547pt;}
.h8_c00013{height:74.578125pt;}
.h2_c00013{height:74.589844pt;}
.h12_c00013{height:75.109375pt;}
.h6_c00013{height:93.867188pt;}
.h0_c00013{height:1122.666667pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:124.158667pt;}
.x2_c00013{left:145.278813pt;}
.x18_c00013{left:149.438947pt;}
.x15_c00013{left:156.159733pt;}
.x3_c00013{left:167.679200pt;}
.x7_c00013{left:172.153600pt;}
.x19_c00013{left:206.078680pt;}
.x4_c00013{left:208.960000pt;}
.x1a_c00013{left:229.440000pt;}
.x16_c00013{left:237.439453pt;}
.xa_c00013{left:238.398920pt;}
.x5_c00013{left:255.039587pt;}
.xb_c00013{left:261.439453pt;}
.x17_c00013{left:262.719720pt;}
.x8_c00013{left:276.799867pt;}
.x6_c00013{left:287.679200pt;}
.x9_c00013{left:296.639587pt;}
.x13_c00013{left:325.119200pt;}
.xc_c00013{left:338.239720pt;}
.x22_c00013{left:350.399453pt;}
.x23_c00013{left:363.839320pt;}
.xd_c00013{left:412.158693pt;}
.x11_c00013{left:434.239707pt;}
.x12_c00013{left:447.679733pt;}
.xe_c00013{left:480.000000pt;}
.xf_c00013{left:500.479987pt;}
.x1b_c00013{left:519.999067pt;}
.x1c_c00013{left:545.279333pt;}
.x10_c00013{left:593.598720pt;}
.x1d_c00013{left:613.759320pt;}
.x1e_c00013{left:631.999467pt;}
.x20_c00013{left:667.519040pt;}
.x1f_c00013{left:678.399867pt;}
.x21_c00013{left:681.919840pt;}
.x14_c00013{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1c50162852cfc37119f0f45.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_8ac599e0b286d3734e19c00e.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_dd8171a9e3af1a1a5dd53ff4.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_7bf570f9b22ad3a144a8f6ff.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00014;src:url('chunks/assets/font_0ee6997f30c84531bde0502d.woff2')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00014;src:url('chunks/assets/font_dd7c54a42cc2190bd684f83e.woff2')format("woff");}.ff7_c00014{font-family:ff7_c00014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00014;src:url('chunks/assets/font_1be11ca1ecdf2a6b521ad7f2.woff2')format("woff");}.ff8_c00014{font-family:ff8_c00014;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c00014{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m12_c00014{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);}
.m2a_c00014{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m22_c00014{transform:matrix(0.190541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190541,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m17_c00014{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2f_c00014{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m6_c00014{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m23_c00014{transform:matrix(0.222756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222756,0.000000,0.000000,0.250000,0,0);}
.m3_c00014{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m26_c00014{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m24_c00014{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m29_c00014{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00014{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m28_c00014{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m5_c00014{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m27_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m25_c00014{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00014{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m1a_c00014{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m2d_c00014{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m1e_c00014{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);}
.m16_c00014{transform:matrix(0.296429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296429,0.000000,0.000000,0.250000,0,0);}
.m15_c00014{transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);}
.m1c_c00014{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00014{transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);}
.md_c00014{transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{transform:matrix(0.348958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348958,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m1f_c00014{transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{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);}
.m1b_c00014{transform:matrix(0.459459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459459,0.000000,0.000000,0.250000,0,0);}
.m21_c00014{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);}
.m20_c00014{transform:matrix(0.740741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740741,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(1.138158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.138158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.138158,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls1b_c00014{letter-spacing:-24.259500px;}
.ls3c_c00014{letter-spacing:-16.095750px;}
.ls35_c00014{letter-spacing:-15.510450px;}
.ls36_c00014{letter-spacing:-15.276375px;}
.ls10_c00014{letter-spacing:-13.570650px;}
.ls39_c00014{letter-spacing:-12.887100px;}
.ls37_c00014{letter-spacing:-8.914500px;}
.ls25_c00014{letter-spacing:-8.498100px;}
.lsf_c00014{letter-spacing:-8.175038px;}
.ls2e_c00014{letter-spacing:-7.906613px;}
.ls16_c00014{letter-spacing:-7.745963px;}
.ls34_c00014{letter-spacing:-7.426125px;}
.ls14_c00014{letter-spacing:-6.685875px;}
.ls11_c00014{letter-spacing:-5.945625px;}
.ls2c_c00014{letter-spacing:-5.315625px;}
.ls33_c00014{letter-spacing:-5.247533px;}
.lsd_c00014{letter-spacing:-5.196713px;}
.ls3e_c00014{letter-spacing:-4.766850px;}
.lsc_c00014{letter-spacing:-4.456463px;}
.ls8_c00014{letter-spacing:-3.717000px;}
.ls2f_c00014{letter-spacing:-3.368430px;}
.ls31_c00014{letter-spacing:-2.971800px;}
.ls4_c00014{letter-spacing:-2.968875px;}
.ls20_c00014{letter-spacing:-2.857950px;}
.ls24_c00014{letter-spacing:-2.595375px;}
.ls12_c00014{letter-spacing:-2.382623px;}
.ls28_c00014{letter-spacing:-2.305875px;}
.ls6_c00014{letter-spacing:-2.229413px;}
.ls3b_c00014{letter-spacing:-2.129993px;}
.lsb_c00014{letter-spacing:-2.034900px;}
.ls2d_c00014{letter-spacing:-1.876095px;}
.ls3_c00014{letter-spacing:-1.489163px;}
.ls2b_c00014{letter-spacing:-1.026750px;}
.ls9_c00014{letter-spacing:-0.823650px;}
.lse_c00014{letter-spacing:-0.756000px;}
.ls5_c00014{letter-spacing:-0.740250px;}
.ls7_c00014{letter-spacing:0.000000px;}
.ls29_c00014{letter-spacing:0.646350px;}
.ls2a_c00014{letter-spacing:0.704250px;}
.ls0_c00014{letter-spacing:0.740250px;}
.ls3a_c00014{letter-spacing:0.772200px;}
.ls38_c00014{letter-spacing:0.787950px;}
.ls32_c00014{letter-spacing:0.827595px;}
.ls26_c00014{letter-spacing:1.431675px;}
.ls15_c00014{letter-spacing:1.476923px;}
.ls30_c00014{letter-spacing:1.606800px;}
.ls18_c00014{letter-spacing:3.415343px;}
.ls3d_c00014{letter-spacing:3.570345px;}
.ls19_c00014{letter-spacing:3.825382px;}
.lsa_c00014{letter-spacing:4.183125px;}
.ls1a_c00014{letter-spacing:4.376400px;}
.ls1c_c00014{letter-spacing:4.736850px;}
.ls27_c00014{letter-spacing:4.897875px;}
.ls17_c00014{letter-spacing:5.752890px;}
.ls21_c00014{letter-spacing:5.816003px;}
.ls13_c00014{letter-spacing:6.354998px;}
.ls1d_c00014{letter-spacing:6.447240px;}
.ls1e_c00014{letter-spacing:8.118195px;}
.ls1f_c00014{letter-spacing:9.998730px;}
.ls23_c00014{letter-spacing:11.506950px;}
.ls2_c00014{letter-spacing:14.385150px;}
.ls22_c00014{letter-spacing:15.858375px;}
.ls1_c00014{letter-spacing:23.013900px;}
.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;}
._15_c00014{margin-left:-136.462969px;}
._14_c00014{margin-left:-38.438024px;}
._16_c00014{margin-left:-17.626338px;}
._18_c00014{margin-left:-4.941250px;}
._13_c00014{margin-left:-3.100521px;}
._4_c00014{margin-left:-1.098503px;}
._10_c00014{width:1.146615px;}
._12_c00014{width:2.213157px;}
._5_c00014{width:3.272181px;}
._e_c00014{width:5.163548px;}
._8_c00014{width:6.221191px;}
._d_c00014{width:7.560981px;}
._6_c00014{width:9.376688px;}
._7_c00014{width:11.025505px;}
._f_c00014{width:12.099492px;}
._17_c00014{width:13.351765px;}
._c_c00014{width:15.301630px;}
._11_c00014{width:16.714613px;}
._9_c00014{width:17.953187px;}
._a_c00014{width:20.397676px;}
._0_c00014{width:22.746388px;}
._b_c00014{width:24.635467px;}
._2_c00014{width:25.729586px;}
._1_c00014{width:28.547321px;}
._19_c00014{width:30.421274px;}
._3_c00014{width:32.446902px;}
._1a_c00014{width:38.138090px;}
.fc0_c00014{color:transparent;}
.fs18_c00014{font-size:19.500000px;}
.fs17_c00014{font-size:20.250000px;}
.fs16_c00014{font-size:22.500000px;}
.fs15_c00014{font-size:23.250000px;}
.fs13_c00014{font-size:27.750000px;}
.fs2_c00014{font-size:28.500000px;}
.fs7_c00014{font-size:33.750000px;}
.fsb_c00014{font-size:34.500000px;}
.fsc_c00014{font-size:36.000000px;}
.fs14_c00014{font-size:37.500000px;}
.fs9_c00014{font-size:38.250000px;}
.fs8_c00014{font-size:39.000000px;}
.fsa_c00014{font-size:42.000000px;}
.fse_c00014{font-size:45.000000px;}
.fsf_c00014{font-size:47.250000px;}
.fs10_c00014{font-size:48.750000px;}
.fs11_c00014{font-size:52.500000px;}
.fs12_c00014{font-size:58.500000px;}
.fsd_c00014{font-size:63.000000px;}
.fs21_c00014{font-size:66.750000px;}
.fs3_c00014{font-size:72.750000px;}
.fs20_c00014{font-size:76.500000px;}
.fs1c_c00014{font-size:77.250000px;}
.fs1d_c00014{font-size:78.000000px;}
.fs0_c00014{font-size:78.750000px;}
.fs5_c00014{font-size:79.500000px;}
.fs4_c00014{font-size:80.250000px;}
.fs1e_c00014{font-size:81.750000px;}
.fs1_c00014{font-size:82.500000px;}
.fs1f_c00014{font-size:83.250000px;}
.fs6_c00014{font-size:92.250000px;}
.fs19_c00014{font-size:101.250000px;}
.fs1b_c00014{font-size:117.000000px;}
.fs1a_c00014{font-size:138.750000px;}
.y0_c00014{bottom:0.000000px;}
.y27_c00014{bottom:243.361065px;}
.y26_c00014{bottom:272.880585px;}
.y25_c00014{bottom:272.881455px;}
.y24_c00014{bottom:302.761185px;}
.y23_c00014{bottom:302.762355px;}
.y22_c00014{bottom:362.521800px;}
.y21_c00014{bottom:392.401515px;}
.y1f_c00014{bottom:422.640570px;}
.y20_c00014{bottom:422.641335px;}
.y1e_c00014{bottom:482.041620px;}
.y1d_c00014{bottom:511.920600px;}
.y1c_c00014{bottom:511.921620px;}
.y1b_c00014{bottom:541.801350px;}
.y1a_c00014{bottom:571.320870px;}
.y19_c00014{bottom:601.201545px;}
.y17_c00014{bottom:631.080000px;}
.y18_c00014{bottom:631.080420px;}
.y16_c00014{bottom:660.959730px;}
.y15_c00014{bottom:690.120870px;}
.y14_c00014{bottom:720.000600px;}
.y13_c00014{bottom:749.881170px;}
.y12_c00014{bottom:757.440255px;}
.y11_c00014{bottom:779.760135px;}
.yf_c00014{bottom:810.360675px;}
.y10_c00014{bottom:810.360900px;}
.ye_c00014{bottom:840.240390px;}
.yd_c00014{bottom:870.120120px;}
.yc_c00014{bottom:900.360030px;}
.yb_c00014{bottom:929.879565px;}
.y9_c00014{bottom:960.121005px;}
.ya_c00014{bottom:960.121575px;}
.y8_c00014{bottom:1019.520270px;}
.y7_c00014{bottom:1019.520285px;}
.y6_c00014{bottom:1049.041620px;}
.y5_c00014{bottom:1049.041785px;}
.y4_c00014{bottom:1079.461035px;}
.y3_c00014{bottom:1109.160465px;}
.y2_c00014{bottom:1109.161260px;}
.y1_c00014{bottom:1139.040990px;}
.h1d_c00014{height:20.337891px;}
.h1c_c00014{height:21.120117px;}
.h1b_c00014{height:23.466797px;}
.h1a_c00014{height:24.249023px;}
.h18_c00014{height:28.942383px;}
.h3_c00014{height:29.724609px;}
.hd_c00014{height:33.354492px;}
.h9_c00014{height:35.200195px;}
.he_c00014{height:35.982422px;}
.hf_c00014{height:37.546875px;}
.h16_c00014{height:38.542969px;}
.h19_c00014{height:39.111328px;}
.ha_c00014{height:39.304688px;}
.hb_c00014{height:39.893555px;}
.hc_c00014{height:43.804688px;}
.h11_c00014{height:46.933594px;}
.h17_c00014{height:47.619141px;}
.h12_c00014{height:49.280273px;}
.h13_c00014{height:50.844727px;}
.h14_c00014{height:54.755859px;}
.h15_c00014{height:58.957031px;}
.h10_c00014{height:62.261719px;}
.h28_c00014{height:67.271484px;}
.h4_c00014{height:73.318359px;}
.h26_c00014{height:75.080566px;}
.h21_c00014{height:75.816650px;}
.h22_c00014{height:76.552734px;}
.h1_c00014{height:77.288818px;}
.h23_c00014{height:78.024902px;}
.h6_c00014{height:78.568359px;}
.h7_c00014{height:78.721802px;}
.h5_c00014{height:78.760986px;}
.h24_c00014{height:80.233154px;}
.h2_c00014{height:80.969238px;}
.h27_c00014{height:81.533203px;}
.h25_c00014{height:82.274414px;}
.h8_c00014{height:96.213867px;}
.h1e_c00014{height:105.600586px;}
.h20_c00014{height:122.027344px;}
.h1f_c00014{height:144.711914px;}
.h0_c00014{height:1263.000000px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x38_c00014{left:142.556355px;}
.x1_c00014{left:143.638500px;}
.x4_c00014{left:159.839565px;}
.x24_c00014{left:210.238785px;}
.x11_c00014{left:214.918950px;}
.x6_c00014{left:216.359250px;}
.x25_c00014{left:225.358635px;}
.x15_c00014{left:230.759100px;}
.x12_c00014{left:231.838515px;}
.x7_c00014{left:238.319850px;}
.x33_c00014{left:244.079385px;}
.x39_c00014{left:247.678500px;}
.x5_c00014{left:256.679700px;}
.x34_c00014{left:261.359850px;}
.xc_c00014{left:266.758500px;}
.x35_c00014{left:282.959400px;}
.x8_c00014{left:298.438635px;}
.x9_c00014{left:313.199385px;}
.x3a_c00014{left:316.080000px;}
.x16_c00014{left:336.959385px;}
.xd_c00014{left:345.958950px;}
.x36_c00014{left:356.759535px;}
.x17_c00014{left:358.918350px;}
.xe_c00014{left:362.159850px;}
.x18_c00014{left:377.279850px;}
.x37_c00014{left:382.678530px;}
.xf_c00014{left:433.079400px;}
.x2d_c00014{left:435.239820px;}
.xa_c00014{left:436.319235px;}
.x2_c00014{left:437.398635px;}
.x13_c00014{left:446.759085px;}
.x3_c00014{left:452.159415px;}
.x19_c00014{left:454.319820px;}
.xb_c00014{left:457.559685px;}
.x14_c00014{left:462.958335px;}
.x1a_c00014{left:471.959385px;}
.x2b_c00014{left:484.198785px;}
.x2c_c00014{left:504.719100px;}
.x26_c00014{left:534.238770px;}
.x1b_c00014{left:548.279250px;}
.x3b_c00014{left:561.958920px;}
.x2f_c00014{left:563.399235px;}
.x1c_c00014{left:565.918950px;}
.x27_c00014{left:567.000000px;}
.x3c_c00014{left:576.358665px;}
.x28_c00014{left:585.719100px;}
.x22_c00014{left:604.798920px;}
.x1d_c00014{left:624.239820px;}
.x29_c00014{left:630.719520px;}
.x30_c00014{left:645.478635px;}
.x1e_c00014{left:647.279850px;}
.x1f_c00014{left:664.919535px;}
.x2e_c00014{left:710.638545px;}
.x31_c00014{left:712.798920px;}
.x20_c00014{left:729.000000px;}
.x32_c00014{left:730.799520px;}
.x23_c00014{left:758.158770px;}
.x2a_c00014{left:768.959385px;}
.x21_c00014{left:771.120030px;}
.x10_c00014{left:775.439205px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls1b_c00014{letter-spacing:-21.564000pt;}
.ls3c_c00014{letter-spacing:-14.307333pt;}
.ls35_c00014{letter-spacing:-13.787067pt;}
.ls36_c00014{letter-spacing:-13.579000pt;}
.ls10_c00014{letter-spacing:-12.062800pt;}
.ls39_c00014{letter-spacing:-11.455200pt;}
.ls37_c00014{letter-spacing:-7.924000pt;}
.ls25_c00014{letter-spacing:-7.553867pt;}
.lsf_c00014{letter-spacing:-7.266700pt;}
.ls2e_c00014{letter-spacing:-7.028100pt;}
.ls16_c00014{letter-spacing:-6.885300pt;}
.ls34_c00014{letter-spacing:-6.601000pt;}
.ls14_c00014{letter-spacing:-5.943000pt;}
.ls11_c00014{letter-spacing:-5.285000pt;}
.ls2c_c00014{letter-spacing:-4.725000pt;}
.ls33_c00014{letter-spacing:-4.664473pt;}
.lsd_c00014{letter-spacing:-4.619300pt;}
.ls3e_c00014{letter-spacing:-4.237200pt;}
.lsc_c00014{letter-spacing:-3.961300pt;}
.ls8_c00014{letter-spacing:-3.304000pt;}
.ls2f_c00014{letter-spacing:-2.994160pt;}
.ls31_c00014{letter-spacing:-2.641600pt;}
.ls4_c00014{letter-spacing:-2.639000pt;}
.ls20_c00014{letter-spacing:-2.540400pt;}
.ls24_c00014{letter-spacing:-2.307000pt;}
.ls12_c00014{letter-spacing:-2.117887pt;}
.ls28_c00014{letter-spacing:-2.049667pt;}
.ls6_c00014{letter-spacing:-1.981700pt;}
.ls3b_c00014{letter-spacing:-1.893327pt;}
.lsb_c00014{letter-spacing:-1.808800pt;}
.ls2d_c00014{letter-spacing:-1.667640pt;}
.ls3_c00014{letter-spacing:-1.323700pt;}
.ls2b_c00014{letter-spacing:-0.912667pt;}
.ls9_c00014{letter-spacing:-0.732133pt;}
.lse_c00014{letter-spacing:-0.672000pt;}
.ls5_c00014{letter-spacing:-0.658000pt;}
.ls7_c00014{letter-spacing:0.000000pt;}
.ls29_c00014{letter-spacing:0.574533pt;}
.ls2a_c00014{letter-spacing:0.626000pt;}
.ls0_c00014{letter-spacing:0.658000pt;}
.ls3a_c00014{letter-spacing:0.686400pt;}
.ls38_c00014{letter-spacing:0.700400pt;}
.ls32_c00014{letter-spacing:0.735640pt;}
.ls26_c00014{letter-spacing:1.272600pt;}
.ls15_c00014{letter-spacing:1.312820pt;}
.ls30_c00014{letter-spacing:1.428267pt;}
.ls18_c00014{letter-spacing:3.035860pt;}
.ls3d_c00014{letter-spacing:3.173640pt;}
.ls19_c00014{letter-spacing:3.400340pt;}
.lsa_c00014{letter-spacing:3.718333pt;}
.ls1a_c00014{letter-spacing:3.890133pt;}
.ls1c_c00014{letter-spacing:4.210533pt;}
.ls27_c00014{letter-spacing:4.353667pt;}
.ls17_c00014{letter-spacing:5.113680pt;}
.ls21_c00014{letter-spacing:5.169780pt;}
.ls13_c00014{letter-spacing:5.648887pt;}
.ls1d_c00014{letter-spacing:5.730880pt;}
.ls1e_c00014{letter-spacing:7.216173pt;}
.ls1f_c00014{letter-spacing:8.887760pt;}
.ls23_c00014{letter-spacing:10.228400pt;}
.ls2_c00014{letter-spacing:12.786800pt;}
.ls22_c00014{letter-spacing:14.096333pt;}
.ls1_c00014{letter-spacing:20.456800pt;}
.ws0_c00014{word-spacing:0.000000pt;}
._15_c00014{margin-left:-121.300417pt;}
._14_c00014{margin-left:-34.167132pt;}
._16_c00014{margin-left:-15.667856pt;}
._18_c00014{margin-left:-4.392223pt;}
._13_c00014{margin-left:-2.756019pt;}
._4_c00014{margin-left:-0.976447pt;}
._10_c00014{width:1.019213pt;}
._12_c00014{width:1.967251pt;}
._5_c00014{width:2.908606pt;}
._e_c00014{width:4.589821pt;}
._8_c00014{width:5.529947pt;}
._d_c00014{width:6.720872pt;}
._6_c00014{width:8.334834pt;}
._7_c00014{width:9.800449pt;}
._f_c00014{width:10.755104pt;}
._17_c00014{width:11.868236pt;}
._c_c00014{width:13.601449pt;}
._11_c00014{width:14.857434pt;}
._9_c00014{width:15.958389pt;}
._a_c00014{width:18.131268pt;}
._0_c00014{width:20.219011pt;}
._b_c00014{width:21.898192pt;}
._2_c00014{width:22.870743pt;}
._1_c00014{width:25.375396pt;}
._19_c00014{width:27.041132pt;}
._3_c00014{width:28.841691pt;}
._1a_c00014{width:33.900525pt;}
.fs18_c00014{font-size:17.333333pt;}
.fs17_c00014{font-size:18.000000pt;}
.fs16_c00014{font-size:20.000000pt;}
.fs15_c00014{font-size:20.666667pt;}
.fs13_c00014{font-size:24.666667pt;}
.fs2_c00014{font-size:25.333333pt;}
.fs7_c00014{font-size:30.000000pt;}
.fsb_c00014{font-size:30.666667pt;}
.fsc_c00014{font-size:32.000000pt;}
.fs14_c00014{font-size:33.333333pt;}
.fs9_c00014{font-size:34.000000pt;}
.fs8_c00014{font-size:34.666667pt;}
.fsa_c00014{font-size:37.333333pt;}
.fse_c00014{font-size:40.000000pt;}
.fsf_c00014{font-size:42.000000pt;}
.fs10_c00014{font-size:43.333333pt;}
.fs11_c00014{font-size:46.666667pt;}
.fs12_c00014{font-size:52.000000pt;}
.fsd_c00014{font-size:56.000000pt;}
.fs21_c00014{font-size:59.333333pt;}
.fs3_c00014{font-size:64.666667pt;}
.fs20_c00014{font-size:68.000000pt;}
.fs1c_c00014{font-size:68.666667pt;}
.fs1d_c00014{font-size:69.333333pt;}
.fs0_c00014{font-size:70.000000pt;}
.fs5_c00014{font-size:70.666667pt;}
.fs4_c00014{font-size:71.333333pt;}
.fs1e_c00014{font-size:72.666667pt;}
.fs1_c00014{font-size:73.333333pt;}
.fs1f_c00014{font-size:74.000000pt;}
.fs6_c00014{font-size:82.000000pt;}
.fs19_c00014{font-size:90.000000pt;}
.fs1b_c00014{font-size:104.000000pt;}
.fs1a_c00014{font-size:123.333333pt;}
.y0_c00014{bottom:0.000000pt;}
.y27_c00014{bottom:216.320947pt;}
.y26_c00014{bottom:242.560520pt;}
.y25_c00014{bottom:242.561293pt;}
.y24_c00014{bottom:269.121053pt;}
.y23_c00014{bottom:269.122093pt;}
.y22_c00014{bottom:322.241600pt;}
.y21_c00014{bottom:348.801347pt;}
.y1f_c00014{bottom:375.680507pt;}
.y20_c00014{bottom:375.681187pt;}
.y1e_c00014{bottom:428.481440pt;}
.y1d_c00014{bottom:455.040533pt;}
.y1c_c00014{bottom:455.041440pt;}
.y1b_c00014{bottom:481.601200pt;}
.y1a_c00014{bottom:507.840773pt;}
.y19_c00014{bottom:534.401373pt;}
.y17_c00014{bottom:560.960000pt;}
.y18_c00014{bottom:560.960373pt;}
.y16_c00014{bottom:587.519760pt;}
.y15_c00014{bottom:613.440773pt;}
.y14_c00014{bottom:640.000533pt;}
.y13_c00014{bottom:666.561040pt;}
.y12_c00014{bottom:673.280227pt;}
.y11_c00014{bottom:693.120120pt;}
.yf_c00014{bottom:720.320600pt;}
.y10_c00014{bottom:720.320800pt;}
.ye_c00014{bottom:746.880347pt;}
.yd_c00014{bottom:773.440107pt;}
.yc_c00014{bottom:800.320027pt;}
.yb_c00014{bottom:826.559613pt;}
.y9_c00014{bottom:853.440893pt;}
.ya_c00014{bottom:853.441400pt;}
.y8_c00014{bottom:906.240240pt;}
.y7_c00014{bottom:906.240253pt;}
.y6_c00014{bottom:932.481440pt;}
.y5_c00014{bottom:932.481587pt;}
.y4_c00014{bottom:959.520920pt;}
.y3_c00014{bottom:985.920413pt;}
.y2_c00014{bottom:985.921120pt;}
.y1_c00014{bottom:1012.480880pt;}
.h1d_c00014{height:18.078125pt;}
.h1c_c00014{height:18.773437pt;}
.h1b_c00014{height:20.859375pt;}
.h1a_c00014{height:21.554687pt;}
.h18_c00014{height:25.726562pt;}
.h3_c00014{height:26.421875pt;}
.hd_c00014{height:29.648437pt;}
.h9_c00014{height:31.289062pt;}
.he_c00014{height:31.984375pt;}
.hf_c00014{height:33.375000pt;}
.h16_c00014{height:34.260417pt;}
.h19_c00014{height:34.765625pt;}
.ha_c00014{height:34.937500pt;}
.hb_c00014{height:35.460938pt;}
.hc_c00014{height:38.937500pt;}
.h11_c00014{height:41.718750pt;}
.h17_c00014{height:42.328125pt;}
.h12_c00014{height:43.804688pt;}
.h13_c00014{height:45.195312pt;}
.h14_c00014{height:48.671875pt;}
.h15_c00014{height:52.406250pt;}
.h10_c00014{height:55.343750pt;}
.h28_c00014{height:59.796875pt;}
.h4_c00014{height:65.171875pt;}
.h26_c00014{height:66.738281pt;}
.h21_c00014{height:67.392578pt;}
.h22_c00014{height:68.046875pt;}
.h1_c00014{height:68.701172pt;}
.h23_c00014{height:69.355469pt;}
.h6_c00014{height:69.838542pt;}
.h7_c00014{height:69.974935pt;}
.h5_c00014{height:70.009766pt;}
.h24_c00014{height:71.318359pt;}
.h2_c00014{height:71.972656pt;}
.h27_c00014{height:72.473958pt;}
.h25_c00014{height:73.132813pt;}
.h8_c00014{height:85.523438pt;}
.h1e_c00014{height:93.867188pt;}
.h20_c00014{height:108.468750pt;}
.h1f_c00014{height:128.632812pt;}
.h0_c00014{height:1122.666667pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x38_c00014{left:126.716760pt;}
.x1_c00014{left:127.678667pt;}
.x4_c00014{left:142.079613pt;}
.x24_c00014{left:186.878920pt;}
.x11_c00014{left:191.039067pt;}
.x6_c00014{left:192.319333pt;}
.x25_c00014{left:200.318787pt;}
.x15_c00014{left:205.119200pt;}
.x12_c00014{left:206.078680pt;}
.x7_c00014{left:211.839867pt;}
.x33_c00014{left:216.959453pt;}
.x39_c00014{left:220.158667pt;}
.x5_c00014{left:228.159733pt;}
.x34_c00014{left:232.319867pt;}
.xc_c00014{left:237.118667pt;}
.x35_c00014{left:251.519467pt;}
.x8_c00014{left:265.278787pt;}
.x9_c00014{left:278.399453pt;}
.x3a_c00014{left:280.960000pt;}
.x16_c00014{left:299.519453pt;}
.xd_c00014{left:307.519067pt;}
.x36_c00014{left:317.119587pt;}
.x17_c00014{left:319.038533pt;}
.xe_c00014{left:321.919867pt;}
.x18_c00014{left:335.359867pt;}
.x37_c00014{left:340.158693pt;}
.xf_c00014{left:384.959467pt;}
.x2d_c00014{left:386.879840pt;}
.xa_c00014{left:387.839320pt;}
.x2_c00014{left:388.798787pt;}
.x13_c00014{left:397.119187pt;}
.x3_c00014{left:401.919480pt;}
.x19_c00014{left:403.839840pt;}
.xb_c00014{left:406.719720pt;}
.x14_c00014{left:411.518520pt;}
.x1a_c00014{left:419.519453pt;}
.x2b_c00014{left:430.398920pt;}
.x2c_c00014{left:448.639200pt;}
.x26_c00014{left:474.878907pt;}
.x1b_c00014{left:487.359333pt;}
.x3b_c00014{left:499.519040pt;}
.x2f_c00014{left:500.799320pt;}
.x1c_c00014{left:503.039067pt;}
.x27_c00014{left:504.000000pt;}
.x3c_c00014{left:512.318813pt;}
.x28_c00014{left:520.639200pt;}
.x22_c00014{left:537.599040pt;}
.x1d_c00014{left:554.879840pt;}
.x29_c00014{left:560.639573pt;}
.x30_c00014{left:573.758787pt;}
.x1e_c00014{left:575.359867pt;}
.x1f_c00014{left:591.039587pt;}
.x2e_c00014{left:631.678707pt;}
.x31_c00014{left:633.599040pt;}
.x20_c00014{left:648.000000pt;}
.x32_c00014{left:649.599573pt;}
.x23_c00014{left:673.918907pt;}
.x2a_c00014{left:683.519453pt;}
.x21_c00014{left:685.440027pt;}
.x10_c00014{left:689.279293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_acadcae6cbb70090914ca99d.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_7199c77ba29d7486e6d52f1c.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_5f309f619177823df8de1133.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_9606f67043f7a4c7175cf655.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_15ca188042a2e03a4be51066.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00015;src:url('chunks/assets/font_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff6_c00015{font-family:ff6_c00015;line-height:1.432129;font-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_c00015{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m1f_c00015{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m20_c00015{transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);}
.m1e_c00015{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m24_c00015{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m1a_c00015{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_c00015{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m13_c00015{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m0_c00015{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m25_c00015{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m1b_c00015{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.mc_c00015{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);}
.m26_c00015{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268229,0.000000,0.000000,0.250000,0,0);}
.m27_c00015{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls6_c00015{letter-spacing:-17.602650px;}
.ls25_c00015{letter-spacing:-10.402875px;}
.ls24_c00015{letter-spacing:-8.914500px;}
.ls16_c00015{letter-spacing:-7.500375px;}
.ls22_c00015{letter-spacing:-7.426125px;}
.ls8_c00015{letter-spacing:-6.813225px;}
.ls26_c00015{letter-spacing:-6.685875px;}
.ls1d_c00015{letter-spacing:-6.372885px;}
.ls13_c00015{letter-spacing:-5.945625px;}
.ls14_c00015{letter-spacing:-5.196713px;}
.ls27_c00015{letter-spacing:-4.539450px;}
.ls23_c00015{letter-spacing:-4.496625px;}
.lsf_c00015{letter-spacing:-4.456463px;}
.ls10_c00015{letter-spacing:-3.717000px;}
.ls2a_c00015{letter-spacing:-3.480750px;}
.ls1f_c00015{letter-spacing:-3.262500px;}
.ls20_c00015{letter-spacing:-3.057525px;}
.lse_c00015{letter-spacing:-2.968875px;}
.ls1c_c00015{letter-spacing:-2.616300px;}
.ls4_c00015{letter-spacing:-2.382623px;}
.lsd_c00015{letter-spacing:-2.229413px;}
.ls19_c00015{letter-spacing:-1.605000px;}
.lsb_c00015{letter-spacing:-1.560000px;}
.ls21_c00015{letter-spacing:-1.541505px;}
.ls5_c00015{letter-spacing:-1.539000px;}
.ls11_c00015{letter-spacing:-1.489163px;}
.ls29_c00015{letter-spacing:-1.404780px;}
.ls9_c00015{letter-spacing:-0.801150px;}
.ls3_c00015{letter-spacing:-0.794475px;}
.ls12_c00015{letter-spacing:-0.740250px;}
.ls2_c00015{letter-spacing:0.000000px;}
.lsc_c00015{letter-spacing:0.698400px;}
.ls1_c00015{letter-spacing:0.740250px;}
.ls7_c00015{letter-spacing:0.763200px;}
.ls1a_c00015{letter-spacing:2.430000px;}
.ls15_c00015{letter-spacing:2.596620px;}
.ls0_c00015{letter-spacing:3.717000px;}
.ls28_c00015{letter-spacing:4.576163px;}
.lsa_c00015{letter-spacing:6.820200px;}
.ls17_c00015{letter-spacing:6.893100px;}
.ls1e_c00015{letter-spacing:15.466283px;}
.ls1b_c00015{letter-spacing:28.915425px;}
.ls18_c00015{letter-spacing:63.797475px;}
.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;}
._1d_c00015{margin-left:-39.225420px;}
._20_c00015{margin-left:-36.267000px;}
._19_c00015{margin-left:-15.686627px;}
._1a_c00015{margin-left:-14.451011px;}
._21_c00015{margin-left:-10.073997px;}
._18_c00015{margin-left:-8.680375px;}
._14_c00015{margin-left:-6.455494px;}
._7_c00015{margin-left:-5.194083px;}
._0_c00015{margin-left:-4.133352px;}
._6_c00015{margin-left:-2.223662px;}
._1f_c00015{margin-left:-1.020568px;}
._1b_c00015{width:1.097047px;}
._11_c00015{width:2.117944px;}
._9_c00015{width:3.685857px;}
._8_c00015{width:5.192968px;}
._5_c00015{width:6.373297px;}
._13_c00015{width:7.510700px;}
._2_c00015{width:8.594047px;}
._1_c00015{width:10.477027px;}
._4_c00015{width:12.200797px;}
._3_c00015{width:13.717953px;}
._a_c00015{width:15.713448px;}
._1c_c00015{width:16.926657px;}
._b_c00015{width:18.378422px;}
._c_c00015{width:20.100625px;}
._d_c00015{width:21.994050px;}
._f_c00015{width:23.343113px;}
._10_c00015{width:24.634880px;}
._12_c00015{width:25.760989px;}
._16_c00015{width:27.418967px;}
._15_c00015{width:28.422042px;}
._e_c00015{width:30.501681px;}
._17_c00015{width:32.604543px;}
._1e_c00015{width:37.152477px;}
.fc0_c00015{color:transparent;}
.fsd_c00015{font-size:52.500000px;}
.fsf_c00015{font-size:60.000000px;}
.fs7_c00015{font-size:72.000000px;}
.fs10_c00015{font-size:72.750000px;}
.fs6_c00015{font-size:75.000000px;}
.fs5_c00015{font-size:75.750000px;}
.fs2_c00015{font-size:76.500000px;}
.fsa_c00015{font-size:78.000000px;}
.fs8_c00015{font-size:78.750000px;}
.fs3_c00015{font-size:79.500000px;}
.fs0_c00015{font-size:80.250000px;}
.fs1_c00015{font-size:81.000000px;}
.fs4_c00015{font-size:81.750000px;}
.fs9_c00015{font-size:82.500000px;}
.fsc_c00015{font-size:84.750000px;}
.fsb_c00015{font-size:87.000000px;}
.fse_c00015{font-size:88.500000px;}
.fs11_c00015{font-size:115.500000px;}
.y0_c00015{bottom:0.000000px;}
.y2b_c00015{bottom:181.800150px;}
.y2a_c00015{bottom:181.800315px;}
.y29_c00015{bottom:211.319850px;}
.y28_c00015{bottom:241.198785px;}
.y27_c00015{bottom:270.720150px;}
.y26_c00015{bottom:270.721065px;}
.y25_c00015{bottom:330.480510px;}
.y23_c00015{bottom:360.178890px;}
.y24_c00015{bottom:360.179100px;}
.y22_c00015{bottom:389.519070px;}
.y21_c00015{bottom:389.520105px;}
.y20_c00015{bottom:419.399820px;}
.y1f_c00015{bottom:419.400285px;}
.y1e_c00015{bottom:448.919820px;}
.y1d_c00015{bottom:479.520225px;}
.y1b_c00015{bottom:509.759370px;}
.y1c_c00015{bottom:509.760135px;}
.y1a_c00015{bottom:539.639100px;}
.y19_c00015{bottom:568.799520px;}
.y18_c00015{bottom:598.680135px;}
.y17_c00015{bottom:598.680315px;}
.y16_c00015{bottom:628.199850px;}
.y15_c00015{bottom:628.200255px;}
.y14_c00015{bottom:657.719790px;}
.y13_c00015{bottom:717.479235px;}
.y12_c00015{bottom:752.760135px;}
.y10_c00015{bottom:777.238725px;}
.y11_c00015{bottom:777.238770px;}
.ye_c00015{bottom:807.478365px;}
.yf_c00015{bottom:807.478635px;}
.yd_c00015{bottom:837.720390px;}
.yc_c00015{bottom:867.600105px;}
.yb_c00015{bottom:897.479835px;}
.ya_c00015{bottom:926.999355px;}
.y9_c00015{bottom:927.000120px;}
.y8_c00015{bottom:956.879835px;}
.y6_c00015{bottom:986.038830px;}
.y7_c00015{bottom:986.038875px;}
.y5_c00015{bottom:1016.278755px;}
.y4_c00015{bottom:1016.279820px;}
.y3_c00015{bottom:1046.159550px;}
.y2_c00015{bottom:1075.679070px;}
.y1_c00015{bottom:1135.438665px;}
.hf_c00015{height:52.910156px;}
.h12_c00015{height:59.296875px;}
.h9_c00015{height:70.664062px;}
.h7_c00015{height:74.344482px;}
.h3_c00015{height:75.080566px;}
.h8_c00015{height:75.585938px;}
.h14_c00015{height:75.875977px;}
.hc_c00015{height:76.552734px;}
.ha_c00015{height:77.288818px;}
.h17_c00015{height:78.024902px;}
.h13_c00015{height:78.222656px;}
.h15_c00015{height:78.760986px;}
.h6_c00015{height:79.497070px;}
.h4_c00015{height:80.121094px;}
.h16_c00015{height:80.233154px;}
.h1_c00015{height:80.876953px;}
.hb_c00015{height:80.969238px;}
.h10_c00015{height:81.533203px;}
.h2_c00015{height:81.632812px;}
.h19_c00015{height:82.133789px;}
.h5_c00015{height:82.388672px;}
.he_c00015{height:83.177490px;}
.hd_c00015{height:85.385742px;}
.h11_c00015{height:87.462891px;}
.h18_c00015{height:120.462891px;}
.h0_c00015{height:1263.000000px;}
.w0_c00015{width:892.500000px;}
.x0_c00015{left:0.000000px;}
.x5_c00015{left:140.039400px;}
.x1_c00015{left:141.479715px;}
.x25_c00015{left:156.958950px;}
.x6_c00015{left:163.799565px;}
.x2_c00015{left:176.399850px;}
.x13_c00015{left:187.198785px;}
.x14_c00015{left:200.519100px;}
.x17_c00015{left:205.199385px;}
.x23_c00015{left:218.519685px;}
.x7_c00015{left:222.838950px;}
.x18_c00015{left:237.958950px;}
.x8_c00015{left:246.239850px;}
.x32_c00015{left:247.678500px;}
.x33_c00015{left:253.798950px;}
.x19_c00015{left:264.958950px;}
.x34_c00015{left:266.040000px;}
.x9_c00015{left:274.319250px;}
.x15_c00015{left:275.398635px;}
.x35_c00015{left:276.838950px;}
.x16_c00015{left:297.718500px;}
.x36_c00015{left:318.958950px;}
.x1a_c00015{left:338.759100px;}
.xa_c00015{left:341.278800px;}
.x3_c00015{left:365.038950px;}
.x1b_c00015{left:371.518635px;}
.x4_c00015{left:388.798920px;}
.x28_c00015{left:390.598530px;}
.xe_c00015{left:399.599670px;}
.x1c_c00015{left:403.559685px;}
.x29_c00015{left:405.000000px;}
.xf_c00015{left:415.078815px;}
.xb_c00015{left:434.158770px;}
.x2a_c00015{left:436.319235px;}
.x2b_c00015{left:444.959385px;}
.x1d_c00015{left:447.479235px;}
.x1e_c00015{left:461.519670px;}
.xc_c00015{left:511.198785px;}
.x1f_c00015{left:531.359850px;}
.xd_c00015{left:534.958920px;}
.x20_c00015{left:555.119985px;}
.x10_c00015{left:567.359250px;}
.x11_c00015{left:584.639700px;}
.x12_c00015{left:587.879520px;}
.x2e_c00015{left:651.239820px;}
.x21_c00015{left:655.559100px;}
.x2f_c00015{left:665.639700px;}
.x22_c00015{left:670.679070px;}
.x2c_c00015{left:676.079355px;}
.x2d_c00015{left:696.599670px;}
.x26_c00015{left:722.159370px;}
.x27_c00015{left:736.199850px;}
.x31_c00015{left:747.719100px;}
.x30_c00015{left:761.759535px;}
.x24_c00015{left:762.838950px;}
.x37_c00015{left:768.239220px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls6_c00015{letter-spacing:-15.646800pt;}
.ls25_c00015{letter-spacing:-9.247000pt;}
.ls24_c00015{letter-spacing:-7.924000pt;}
.ls16_c00015{letter-spacing:-6.667000pt;}
.ls22_c00015{letter-spacing:-6.601000pt;}
.ls8_c00015{letter-spacing:-6.056200pt;}
.ls26_c00015{letter-spacing:-5.943000pt;}
.ls1d_c00015{letter-spacing:-5.664787pt;}
.ls13_c00015{letter-spacing:-5.285000pt;}
.ls14_c00015{letter-spacing:-4.619300pt;}
.ls27_c00015{letter-spacing:-4.035067pt;}
.ls23_c00015{letter-spacing:-3.997000pt;}
.lsf_c00015{letter-spacing:-3.961300pt;}
.ls10_c00015{letter-spacing:-3.304000pt;}
.ls2a_c00015{letter-spacing:-3.094000pt;}
.ls1f_c00015{letter-spacing:-2.900000pt;}
.ls20_c00015{letter-spacing:-2.717800pt;}
.lse_c00015{letter-spacing:-2.639000pt;}
.ls1c_c00015{letter-spacing:-2.325600pt;}
.ls4_c00015{letter-spacing:-2.117887pt;}
.lsd_c00015{letter-spacing:-1.981700pt;}
.ls19_c00015{letter-spacing:-1.426667pt;}
.lsb_c00015{letter-spacing:-1.386667pt;}
.ls21_c00015{letter-spacing:-1.370227pt;}
.ls5_c00015{letter-spacing:-1.368000pt;}
.ls11_c00015{letter-spacing:-1.323700pt;}
.ls29_c00015{letter-spacing:-1.248693pt;}
.ls9_c00015{letter-spacing:-0.712133pt;}
.ls3_c00015{letter-spacing:-0.706200pt;}
.ls12_c00015{letter-spacing:-0.658000pt;}
.ls2_c00015{letter-spacing:0.000000pt;}
.lsc_c00015{letter-spacing:0.620800pt;}
.ls1_c00015{letter-spacing:0.658000pt;}
.ls7_c00015{letter-spacing:0.678400pt;}
.ls1a_c00015{letter-spacing:2.160000pt;}
.ls15_c00015{letter-spacing:2.308107pt;}
.ls0_c00015{letter-spacing:3.304000pt;}
.ls28_c00015{letter-spacing:4.067700pt;}
.lsa_c00015{letter-spacing:6.062400pt;}
.ls17_c00015{letter-spacing:6.127200pt;}
.ls1e_c00015{letter-spacing:13.747807pt;}
.ls1b_c00015{letter-spacing:25.702600pt;}
.ls18_c00015{letter-spacing:56.708867pt;}
.ws0_c00015{word-spacing:0.000000pt;}
._1d_c00015{margin-left:-34.867040pt;}
._20_c00015{margin-left:-32.237333pt;}
._19_c00015{margin-left:-13.943668pt;}
._1a_c00015{margin-left:-12.845343pt;}
._21_c00015{margin-left:-8.954664pt;}
._18_c00015{margin-left:-7.715889pt;}
._14_c00015{margin-left:-5.738217pt;}
._7_c00015{margin-left:-4.616962pt;}
._0_c00015{margin-left:-3.674090pt;}
._6_c00015{margin-left:-1.976589pt;}
._1f_c00015{margin-left:-0.907172pt;}
._1b_c00015{width:0.975153pt;}
._11_c00015{width:1.882617pt;}
._9_c00015{width:3.276317pt;}
._8_c00015{width:4.615972pt;}
._5_c00015{width:5.665153pt;}
._13_c00015{width:6.676177pt;}
._2_c00015{width:7.639153pt;}
._1_c00015{width:9.312913pt;}
._4_c00015{width:10.845153pt;}
._3_c00015{width:12.193736pt;}
._a_c00015{width:13.967509pt;}
._1c_c00015{width:15.045917pt;}
._b_c00015{width:16.336375pt;}
._c_c00015{width:17.867223pt;}
._d_c00015{width:19.550267pt;}
._f_c00015{width:20.749433pt;}
._10_c00015{width:21.897671pt;}
._12_c00015{width:22.898657pt;}
._16_c00015{width:24.372415pt;}
._15_c00015{width:25.264037pt;}
._e_c00015{width:27.112605pt;}
._17_c00015{width:28.981816pt;}
._1e_c00015{width:33.024424pt;}
.fsd_c00015{font-size:46.666667pt;}
.fsf_c00015{font-size:53.333333pt;}
.fs7_c00015{font-size:64.000000pt;}
.fs10_c00015{font-size:64.666667pt;}
.fs6_c00015{font-size:66.666667pt;}
.fs5_c00015{font-size:67.333333pt;}
.fs2_c00015{font-size:68.000000pt;}
.fsa_c00015{font-size:69.333333pt;}
.fs8_c00015{font-size:70.000000pt;}
.fs3_c00015{font-size:70.666667pt;}
.fs0_c00015{font-size:71.333333pt;}
.fs1_c00015{font-size:72.000000pt;}
.fs4_c00015{font-size:72.666667pt;}
.fs9_c00015{font-size:73.333333pt;}
.fsc_c00015{font-size:75.333333pt;}
.fsb_c00015{font-size:77.333333pt;}
.fse_c00015{font-size:78.666667pt;}
.fs11_c00015{font-size:102.666667pt;}
.y0_c00015{bottom:0.000000pt;}
.y2b_c00015{bottom:161.600133pt;}
.y2a_c00015{bottom:161.600280pt;}
.y29_c00015{bottom:187.839867pt;}
.y28_c00015{bottom:214.398920pt;}
.y27_c00015{bottom:240.640133pt;}
.y26_c00015{bottom:240.640947pt;}
.y25_c00015{bottom:293.760453pt;}
.y23_c00015{bottom:320.159013pt;}
.y24_c00015{bottom:320.159200pt;}
.y22_c00015{bottom:346.239173pt;}
.y21_c00015{bottom:346.240093pt;}
.y20_c00015{bottom:372.799840pt;}
.y1f_c00015{bottom:372.800253pt;}
.y1e_c00015{bottom:399.039840pt;}
.y1d_c00015{bottom:426.240200pt;}
.y1b_c00015{bottom:453.119440pt;}
.y1c_c00015{bottom:453.120120pt;}
.y1a_c00015{bottom:479.679200pt;}
.y19_c00015{bottom:505.599573pt;}
.y18_c00015{bottom:532.160120pt;}
.y17_c00015{bottom:532.160280pt;}
.y16_c00015{bottom:558.399867pt;}
.y15_c00015{bottom:558.400227pt;}
.y14_c00015{bottom:584.639813pt;}
.y13_c00015{bottom:637.759320pt;}
.y12_c00015{bottom:669.120120pt;}
.y10_c00015{bottom:690.878867pt;}
.y11_c00015{bottom:690.878907pt;}
.ye_c00015{bottom:717.758547pt;}
.yf_c00015{bottom:717.758787pt;}
.yd_c00015{bottom:744.640347pt;}
.yc_c00015{bottom:771.200093pt;}
.yb_c00015{bottom:797.759853pt;}
.ya_c00015{bottom:823.999427pt;}
.y9_c00015{bottom:824.000107pt;}
.y8_c00015{bottom:850.559853pt;}
.y6_c00015{bottom:876.478960pt;}
.y7_c00015{bottom:876.479000pt;}
.y5_c00015{bottom:903.358893pt;}
.y4_c00015{bottom:903.359840pt;}
.y3_c00015{bottom:929.919600pt;}
.y2_c00015{bottom:956.159173pt;}
.y1_c00015{bottom:1009.278813pt;}
.hf_c00015{height:47.031250pt;}
.h12_c00015{height:52.708333pt;}
.h9_c00015{height:62.812500pt;}
.h7_c00015{height:66.083984pt;}
.h3_c00015{height:66.738281pt;}
.h8_c00015{height:67.187500pt;}
.h14_c00015{height:67.445312pt;}
.hc_c00015{height:68.046875pt;}
.ha_c00015{height:68.701172pt;}
.h17_c00015{height:69.355469pt;}
.h13_c00015{height:69.531250pt;}
.h15_c00015{height:70.009766pt;}
.h6_c00015{height:70.664062pt;}
.h4_c00015{height:71.218750pt;}
.h16_c00015{height:71.318359pt;}
.h1_c00015{height:71.890625pt;}
.hb_c00015{height:71.972656pt;}
.h10_c00015{height:72.473958pt;}
.h2_c00015{height:72.562500pt;}
.h19_c00015{height:73.007812pt;}
.h5_c00015{height:73.234375pt;}
.he_c00015{height:73.935547pt;}
.hd_c00015{height:75.898438pt;}
.h11_c00015{height:77.744792pt;}
.h18_c00015{height:107.078125pt;}
.h0_c00015{height:1122.666667pt;}
.w0_c00015{width:793.333333pt;}
.x0_c00015{left:0.000000pt;}
.x5_c00015{left:124.479467pt;}
.x1_c00015{left:125.759747pt;}
.x25_c00015{left:139.519067pt;}
.x6_c00015{left:145.599613pt;}
.x2_c00015{left:156.799867pt;}
.x13_c00015{left:166.398920pt;}
.x14_c00015{left:178.239200pt;}
.x17_c00015{left:182.399453pt;}
.x23_c00015{left:194.239720pt;}
.x7_c00015{left:198.079067pt;}
.x18_c00015{left:211.519067pt;}
.x8_c00015{left:218.879867pt;}
.x32_c00015{left:220.158667pt;}
.x33_c00015{left:225.599067pt;}
.x19_c00015{left:235.519067pt;}
.x34_c00015{left:236.480000pt;}
.x9_c00015{left:243.839333pt;}
.x15_c00015{left:244.798787pt;}
.x35_c00015{left:246.079067pt;}
.x16_c00015{left:264.638667pt;}
.x36_c00015{left:283.519067pt;}
.x1a_c00015{left:301.119200pt;}
.xa_c00015{left:303.358933pt;}
.x3_c00015{left:324.479067pt;}
.x1b_c00015{left:330.238787pt;}
.x4_c00015{left:345.599040pt;}
.x28_c00015{left:347.198693pt;}
.xe_c00015{left:355.199707pt;}
.x1c_c00015{left:358.719720pt;}
.x29_c00015{left:360.000000pt;}
.xf_c00015{left:368.958947pt;}
.xb_c00015{left:385.918907pt;}
.x2a_c00015{left:387.839320pt;}
.x2b_c00015{left:395.519453pt;}
.x1d_c00015{left:397.759320pt;}
.x1e_c00015{left:410.239707pt;}
.xc_c00015{left:454.398920pt;}
.x1f_c00015{left:472.319867pt;}
.xd_c00015{left:475.519040pt;}
.x20_c00015{left:493.439987pt;}
.x10_c00015{left:504.319333pt;}
.x11_c00015{left:519.679733pt;}
.x12_c00015{left:522.559573pt;}
.x2e_c00015{left:578.879840pt;}
.x21_c00015{left:582.719200pt;}
.x2f_c00015{left:591.679733pt;}
.x22_c00015{left:596.159173pt;}
.x2c_c00015{left:600.959427pt;}
.x2d_c00015{left:619.199707pt;}
.x26_c00015{left:641.919440pt;}
.x27_c00015{left:654.399867pt;}
.x31_c00015{left:664.639200pt;}
.x30_c00015{left:677.119587pt;}
.x24_c00015{left:678.079067pt;}
.x37_c00015{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b926e40e3792858438e4f77.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_148f35414385e0436c73d69a.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_a7bea42901c4dafff1ca864f.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_b2fdcb70d4edf743efe10c67.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_c255651393828b7723d014ad.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.364746;font-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_c00016{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.m20_c00016{transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);}
.m21_c00016{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{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);}
.m23_c00016{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.186782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186782,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);}
.m17_c00016{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m9_c00016{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m19_c00016{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m1a_c00016{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c00016{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.310345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310345,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.326613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326613,0.000000,0.000000,0.250000,0,0);}
.m13_c00016{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);}
.m11_c00016{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.m12_c00016{transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431818,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.491935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491935,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.737245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737245,0.000000,0.000000,0.250000,0,0);}
.m15_c00016{transform:matrix(2.740741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.740741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.740741,0.000000,0.000000,0.250000,0,0);}
.v1_c00016{vertical-align:-1.438920px;}
.v0_c00016{vertical-align:0.000000px;}
.lsb_c00016{letter-spacing:-19.562775px;}
.ls17_c00016{letter-spacing:-7.354125px;}
.ls20_c00016{letter-spacing:-5.406180px;}
.ls9_c00016{letter-spacing:-4.190288px;}
.lsc_c00016{letter-spacing:-3.354750px;}
.ls10_c00016{letter-spacing:-3.216533px;}
.ls23_c00016{letter-spacing:-3.014550px;}
.ls1c_c00016{letter-spacing:-2.740500px;}
.lsf_c00016{letter-spacing:-2.512913px;}
.ls16_c00016{letter-spacing:-2.431905px;}
.lse_c00016{letter-spacing:-2.145705px;}
.ls7_c00016{letter-spacing:-1.677375px;}
.ls1e_c00016{letter-spacing:-1.475738px;}
.ls8_c00016{letter-spacing:-0.834750px;}
.ls26_c00016{letter-spacing:-0.828675px;}
.ls1d_c00016{letter-spacing:-0.820125px;}
.ls15_c00016{letter-spacing:-0.714285px;}
.lsa_c00016{letter-spacing:0.000000px;}
.ls19_c00016{letter-spacing:0.440258px;}
.ls24_c00016{letter-spacing:0.828675px;}
.ls2_c00016{letter-spacing:0.986355px;}
.ls29_c00016{letter-spacing:1.497600px;}
.ls12_c00016{letter-spacing:1.627680px;}
.ls1_c00016{letter-spacing:1.677375px;}
.lsd_c00016{letter-spacing:1.889550px;}
.ls21_c00016{letter-spacing:2.116245px;}
.ls14_c00016{letter-spacing:2.296635px;}
.ls11_c00016{letter-spacing:2.956305px;}
.ls2a_c00016{letter-spacing:3.078000px;}
.ls1f_c00016{letter-spacing:3.166875px;}
.ls0_c00016{letter-spacing:3.354750px;}
.ls1a_c00016{letter-spacing:3.474900px;}
.ls25_c00016{letter-spacing:3.881460px;}
.ls4_c00016{letter-spacing:4.498650px;}
.ls3_c00016{letter-spacing:5.248425px;}
.ls22_c00016{letter-spacing:5.435325px;}
.ls18_c00016{letter-spacing:6.014700px;}
.ls27_c00016{letter-spacing:6.156000px;}
.ls28_c00016{letter-spacing:9.227400px;}
.ls13_c00016{letter-spacing:9.362955px;}
.ls1b_c00016{letter-spacing:11.250000px;}
.ls5_c00016{letter-spacing:17.999865px;}
.ls2b_c00016{letter-spacing:19.498050px;}
.ls6_c00016{letter-spacing:22.499100px;}
.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;}
._0_c00016{margin-left:-12.953839px;}
._2_c00016{margin-left:-11.780497px;}
._5_c00016{margin-left:-8.683913px;}
._6_c00016{margin-left:-5.867646px;}
._1_c00016{margin-left:-4.763939px;}
._4_c00016{margin-left:-1.976055px;}
._a_c00016{width:1.204573px;}
._3_c00016{width:2.977387px;}
._7_c00016{width:4.292277px;}
._b_c00016{width:6.646433px;}
._c_c00016{width:11.552860px;}
._9_c00016{width:20.766946px;}
._8_c00016{width:22.412767px;}
._10_c00016{width:618.038055px;}
._11_c00016{width:646.056180px;}
._d_c00016{width:723.259005px;}
._f_c00016{width:727.067430px;}
._e_c00016{width:1259.362335px;}
.fc0_c00016{color:transparent;}
.fs13_c00016{font-size:20.250000px;}
.fs11_c00016{font-size:22.500000px;}
.fs12_c00016{font-size:27.000000px;}
.fse_c00016{font-size:30.750000px;}
.fs10_c00016{font-size:33.000000px;}
.fsd_c00016{font-size:33.750000px;}
.fs6_c00016{font-size:34.500000px;}
.fsf_c00016{font-size:38.250000px;}
.fs5_c00016{font-size:44.250000px;}
.fs8_c00016{font-size:46.500000px;}
.fs7_c00016{font-size:48.000000px;}
.fs16_c00016{font-size:56.250000px;}
.fsa_c00016{font-size:58.500000px;}
.fs1a_c00016{font-size:60.000000px;}
.fsb_c00016{font-size:64.500000px;}
.fs17_c00016{font-size:65.250000px;}
.fs18_c00016{font-size:66.000000px;}
.fs1b_c00016{font-size:68.250000px;}
.fs15_c00016{font-size:69.000000px;}
.fs9_c00016{font-size:71.250000px;}
.fsc_c00016{font-size:73.500000px;}
.fs3_c00016{font-size:76.500000px;}
.fs2_c00016{font-size:78.000000px;}
.fs0_c00016{font-size:78.750000px;}
.fs4_c00016{font-size:79.500000px;}
.fs1_c00016{font-size:81.750000px;}
.fs14_c00016{font-size:86.250000px;}
.fs19_c00016{font-size:96.750000px;}
.y0_c00016{bottom:0.000000px;}
.y9_c00016{bottom:793.798920px;}
.yc_c00016{bottom:828.719055px;}
.yb_c00016{bottom:829.079955px;}
.ya_c00016{bottom:829.439205px;}
.y8_c00016{bottom:887.399235px;}
.y7_c00016{bottom:1013.399730px;}
.y6_c00016{bottom:1043.639655px;}
.y5_c00016{bottom:1073.159370px;}
.y4_c00016{bottom:1078.559685px;}
.y3_c00016{bottom:1102.679070px;}
.y2_c00016{bottom:1102.679970px;}
.y1_c00016{bottom:1132.559685px;}
.h15_c00016{height:21.120117px;}
.h13_c00016{height:23.466797px;}
.h14_c00016{height:28.160156px;}
.h10_c00016{height:30.389648px;}
.hf_c00016{height:33.354492px;}
.h12_c00016{height:34.417969px;}
.h7_c00016{height:35.982422px;}
.h11_c00016{height:38.548828px;}
.h6_c00016{height:46.151367px;}
.hc_c00016{height:46.863281px;}
.h9_c00016{height:48.498047px;}
.h8_c00016{height:50.062500px;}
.h18_c00016{height:58.666992px;}
.hb_c00016{height:61.013672px;}
.h1c_c00016{height:62.578125px;}
.hd_c00016{height:65.003906px;}
.h19_c00016{height:65.759766px;}
.h1a_c00016{height:66.515625px;}
.h1d_c00016{height:67.450195px;}
.h17_c00016{height:71.964844px;}
.ha_c00016{height:74.311523px;}
.he_c00016{height:76.658203px;}
.h4_c00016{height:77.097656px;}
.h3_c00016{height:78.609375px;}
.h1_c00016{height:79.365234px;}
.h5_c00016{height:80.121094px;}
.h2_c00016{height:82.388672px;}
.h16_c00016{height:89.956055px;}
.h1b_c00016{height:100.907227px;}
.h0_c00016{height:1263.000000px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:138.599100px;}
.x19_c00016{left:139.678500px;}
.x1f_c00016{left:141.838950px;}
.x20_c00016{left:157.679100px;}
.x8_c00016{left:162.000000px;}
.x1a_c00016{left:180.359850px;}
.x1b_c00016{left:197.999400px;}
.x12_c00016{left:203.759100px;}
.x21_c00016{left:235.080000px;}
.x1c_c00016{left:244.799535px;}
.x2_c00016{left:253.798950px;}
.x3_c00016{left:277.918350px;}
.x24_c00016{left:285.838515px;}
.x9_c00016{left:295.918950px;}
.x1d_c00016{left:297.000000px;}
.x22_c00016{left:303.479685px;}
.x1e_c00016{left:315.359850px;}
.xa_c00016{left:322.559685px;}
.x25_c00016{left:402.839535px;}
.xb_c00016{left:411.479685px;}
.x4_c00016{left:480.238770px;}
.x13_c00016{left:482.758530px;}
.x17_c00016{left:498.598530px;}
.x26_c00016{left:500.399820px;}
.x5_c00016{left:503.998950px;}
.x6_c00016{left:519.118785px;}
.x18_c00016{left:538.198785px;}
.xc_c00016{left:556.199385px;}
.xd_c00016{left:573.479685px;}
.x7_c00016{left:588.599670px;}
.xe_c00016{left:622.438620px;}
.x14_c00016{left:667.798560px;}
.xf_c00016{left:681.838950px;}
.x15_c00016{left:682.918350px;}
.x16_c00016{left:691.558635px;}
.x10_c00016{left:731.519670px;}
.x11_c00016{left:766.439670px;}
.x23_c00016{left:786.599115px;}
@media print{
.v1_c00016{vertical-align:-1.279040pt;}
.v0_c00016{vertical-align:0.000000pt;}
.lsb_c00016{letter-spacing:-17.389133pt;}
.ls17_c00016{letter-spacing:-6.537000pt;}
.ls20_c00016{letter-spacing:-4.805493pt;}
.ls9_c00016{letter-spacing:-3.724700pt;}
.lsc_c00016{letter-spacing:-2.982000pt;}
.ls10_c00016{letter-spacing:-2.859140pt;}
.ls23_c00016{letter-spacing:-2.679600pt;}
.ls1c_c00016{letter-spacing:-2.436000pt;}
.lsf_c00016{letter-spacing:-2.233700pt;}
.ls16_c00016{letter-spacing:-2.161693pt;}
.lse_c00016{letter-spacing:-1.907293pt;}
.ls7_c00016{letter-spacing:-1.491000pt;}
.ls1e_c00016{letter-spacing:-1.311767pt;}
.ls8_c00016{letter-spacing:-0.742000pt;}
.ls26_c00016{letter-spacing:-0.736600pt;}
.ls1d_c00016{letter-spacing:-0.729000pt;}
.ls15_c00016{letter-spacing:-0.634920pt;}
.lsa_c00016{letter-spacing:0.000000pt;}
.ls19_c00016{letter-spacing:0.391340pt;}
.ls24_c00016{letter-spacing:0.736600pt;}
.ls2_c00016{letter-spacing:0.876760pt;}
.ls29_c00016{letter-spacing:1.331200pt;}
.ls12_c00016{letter-spacing:1.446827pt;}
.ls1_c00016{letter-spacing:1.491000pt;}
.lsd_c00016{letter-spacing:1.679600pt;}
.ls21_c00016{letter-spacing:1.881107pt;}
.ls14_c00016{letter-spacing:2.041453pt;}
.ls11_c00016{letter-spacing:2.627827pt;}
.ls2a_c00016{letter-spacing:2.736000pt;}
.ls1f_c00016{letter-spacing:2.815000pt;}
.ls0_c00016{letter-spacing:2.982000pt;}
.ls1a_c00016{letter-spacing:3.088800pt;}
.ls25_c00016{letter-spacing:3.450187pt;}
.ls4_c00016{letter-spacing:3.998800pt;}
.ls3_c00016{letter-spacing:4.665267pt;}
.ls22_c00016{letter-spacing:4.831400pt;}
.ls18_c00016{letter-spacing:5.346400pt;}
.ls27_c00016{letter-spacing:5.472000pt;}
.ls28_c00016{letter-spacing:8.202133pt;}
.ls13_c00016{letter-spacing:8.322627pt;}
.ls1b_c00016{letter-spacing:10.000000pt;}
.ls5_c00016{letter-spacing:15.999880pt;}
.ls2b_c00016{letter-spacing:17.331600pt;}
.ls6_c00016{letter-spacing:19.999200pt;}
.ws0_c00016{word-spacing:0.000000pt;}
._0_c00016{margin-left:-11.514523pt;}
._2_c00016{margin-left:-10.471553pt;}
._5_c00016{margin-left:-7.719034pt;}
._6_c00016{margin-left:-5.215685pt;}
._1_c00016{margin-left:-4.234613pt;}
._4_c00016{margin-left:-1.756494pt;}
._a_c00016{width:1.070732pt;}
._3_c00016{width:2.646566pt;}
._7_c00016{width:3.815357pt;}
._b_c00016{width:5.907940pt;}
._c_c00016{width:10.269209pt;}
._9_c00016{width:18.459507pt;}
._8_c00016{width:19.922460pt;}
._10_c00016{width:549.367160pt;}
._11_c00016{width:574.272160pt;}
._d_c00016{width:642.896893pt;}
._f_c00016{width:646.282160pt;}
._e_c00016{width:1119.433187pt;}
.fs13_c00016{font-size:18.000000pt;}
.fs11_c00016{font-size:20.000000pt;}
.fs12_c00016{font-size:24.000000pt;}
.fse_c00016{font-size:27.333333pt;}
.fs10_c00016{font-size:29.333333pt;}
.fsd_c00016{font-size:30.000000pt;}
.fs6_c00016{font-size:30.666667pt;}
.fsf_c00016{font-size:34.000000pt;}
.fs5_c00016{font-size:39.333333pt;}
.fs8_c00016{font-size:41.333333pt;}
.fs7_c00016{font-size:42.666667pt;}
.fs16_c00016{font-size:50.000000pt;}
.fsa_c00016{font-size:52.000000pt;}
.fs1a_c00016{font-size:53.333333pt;}
.fsb_c00016{font-size:57.333333pt;}
.fs17_c00016{font-size:58.000000pt;}
.fs18_c00016{font-size:58.666667pt;}
.fs1b_c00016{font-size:60.666667pt;}
.fs15_c00016{font-size:61.333333pt;}
.fs9_c00016{font-size:63.333333pt;}
.fsc_c00016{font-size:65.333333pt;}
.fs3_c00016{font-size:68.000000pt;}
.fs2_c00016{font-size:69.333333pt;}
.fs0_c00016{font-size:70.000000pt;}
.fs4_c00016{font-size:70.666667pt;}
.fs1_c00016{font-size:72.666667pt;}
.fs14_c00016{font-size:76.666667pt;}
.fs19_c00016{font-size:86.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y9_c00016{bottom:705.599040pt;}
.yc_c00016{bottom:736.639160pt;}
.yb_c00016{bottom:736.959960pt;}
.ya_c00016{bottom:737.279293pt;}
.y8_c00016{bottom:788.799320pt;}
.y7_c00016{bottom:900.799760pt;}
.y6_c00016{bottom:927.679693pt;}
.y5_c00016{bottom:953.919440pt;}
.y4_c00016{bottom:958.719720pt;}
.y3_c00016{bottom:980.159173pt;}
.y2_c00016{bottom:980.159973pt;}
.y1_c00016{bottom:1006.719720pt;}
.h15_c00016{height:18.773437pt;}
.h13_c00016{height:20.859375pt;}
.h14_c00016{height:25.031250pt;}
.h10_c00016{height:27.013021pt;}
.hf_c00016{height:29.648437pt;}
.h12_c00016{height:30.593750pt;}
.h7_c00016{height:31.984375pt;}
.h11_c00016{height:34.265625pt;}
.h6_c00016{height:41.023438pt;}
.hc_c00016{height:41.656250pt;}
.h9_c00016{height:43.109375pt;}
.h8_c00016{height:44.500000pt;}
.h18_c00016{height:52.148438pt;}
.hb_c00016{height:54.234375pt;}
.h1c_c00016{height:55.625000pt;}
.hd_c00016{height:57.781250pt;}
.h19_c00016{height:58.453125pt;}
.h1a_c00016{height:59.125000pt;}
.h1d_c00016{height:59.955729pt;}
.h17_c00016{height:63.968750pt;}
.ha_c00016{height:66.054688pt;}
.he_c00016{height:68.140625pt;}
.h4_c00016{height:68.531250pt;}
.h3_c00016{height:69.875000pt;}
.h1_c00016{height:70.546875pt;}
.h5_c00016{height:71.218750pt;}
.h2_c00016{height:73.234375pt;}
.h16_c00016{height:79.960938pt;}
.h1b_c00016{height:89.695312pt;}
.h0_c00016{height:1122.666667pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:123.199200pt;}
.x19_c00016{left:124.158667pt;}
.x1f_c00016{left:126.079067pt;}
.x20_c00016{left:140.159200pt;}
.x8_c00016{left:144.000000pt;}
.x1a_c00016{left:160.319867pt;}
.x1b_c00016{left:175.999467pt;}
.x12_c00016{left:181.119200pt;}
.x21_c00016{left:208.960000pt;}
.x1c_c00016{left:217.599587pt;}
.x2_c00016{left:225.599067pt;}
.x3_c00016{left:247.038533pt;}
.x24_c00016{left:254.078680pt;}
.x9_c00016{left:263.039067pt;}
.x1d_c00016{left:264.000000pt;}
.x22_c00016{left:269.759720pt;}
.x1e_c00016{left:280.319867pt;}
.xa_c00016{left:286.719720pt;}
.x25_c00016{left:358.079587pt;}
.xb_c00016{left:365.759720pt;}
.x4_c00016{left:426.878907pt;}
.x13_c00016{left:429.118693pt;}
.x17_c00016{left:443.198693pt;}
.x26_c00016{left:444.799840pt;}
.x5_c00016{left:447.999067pt;}
.x6_c00016{left:461.438920pt;}
.x18_c00016{left:478.398920pt;}
.xc_c00016{left:494.399453pt;}
.xd_c00016{left:509.759720pt;}
.x7_c00016{left:523.199707pt;}
.xe_c00016{left:553.278773pt;}
.x14_c00016{left:593.598720pt;}
.xf_c00016{left:606.079067pt;}
.x15_c00016{left:607.038533pt;}
.x16_c00016{left:614.718787pt;}
.x10_c00016{left:650.239707pt;}
.x11_c00016{left:681.279707pt;}
.x23_c00016{left:699.199213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e85f60ce64c81cc63f55e794.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_3b6b151533a4dc28bdd71264.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;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_a1d6dd5f0298da7753516512.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00017{transform:matrix(0.200342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200342,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.224832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224832,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls3_c00017{letter-spacing:0.000000px;}
.ls2_c00017{letter-spacing:2.803200px;}
.ls7_c00017{letter-spacing:4.540050px;}
.ls1_c00017{letter-spacing:5.796375px;}
.ls5_c00017{letter-spacing:5.946945px;}
.ls0_c00017{letter-spacing:7.482000px;}
.ls4_c00017{letter-spacing:8.212500px;}
.ls6_c00017{letter-spacing:8.305200px;}
.ls8_c00017{letter-spacing:53.502675px;}
.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;}
.fc0_c00017{color:transparent;}
.fs5_c00017{font-size:80.250000px;}
.fs4_c00017{font-size:85.500000px;}
.fs3_c00017{font-size:108.000000px;}
.fs0_c00017{font-size:108.750000px;}
.fs1_c00017{font-size:109.500000px;}
.fs2_c00017{font-size:111.750000px;}
.y0_c00017{bottom:0.000000px;}
.y2_c00017{bottom:362.580435px;}
.y3_c00017{bottom:598.380570px;}
.y1_c00017{bottom:746.340135px;}
.h7_c00017{height:78.721802px;}
.h6_c00017{height:83.871826px;}
.h1_c00017{height:106.732178px;}
.h4_c00017{height:107.468262px;}
.h5_c00017{height:108.843750px;}
.h3_c00017{height:109.676514px;}
.h2_c00017{height:110.355469px;}
.h0_c00017{height:892.500000px;}
.w0_c00017{width:1263.000000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:83.878950px;}
.x2_c00017{left:192.599100px;}
.x3_c00017{left:233.998950px;}
.x8_c00017{left:276.838950px;}
.x4_c00017{left:323.639100px;}
.x5_c00017{left:376.559685px;}
.x9_c00017{left:423.719100px;}
.x6_c00017{left:589.679070px;}
.x7_c00017{left:803.518620px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls3_c00017{letter-spacing:0.000000pt;}
.ls2_c00017{letter-spacing:2.491733pt;}
.ls7_c00017{letter-spacing:4.035600pt;}
.ls1_c00017{letter-spacing:5.152333pt;}
.ls5_c00017{letter-spacing:5.286173pt;}
.ls0_c00017{letter-spacing:6.650667pt;}
.ls4_c00017{letter-spacing:7.300000pt;}
.ls6_c00017{letter-spacing:7.382400pt;}
.ls8_c00017{letter-spacing:47.557933pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.fs5_c00017{font-size:71.333333pt;}
.fs4_c00017{font-size:76.000000pt;}
.fs3_c00017{font-size:96.000000pt;}
.fs0_c00017{font-size:96.666667pt;}
.fs1_c00017{font-size:97.333333pt;}
.fs2_c00017{font-size:99.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.y2_c00017{bottom:322.293720pt;}
.y3_c00017{bottom:531.893840pt;}
.y1_c00017{bottom:663.413453pt;}
.h7_c00017{height:69.974935pt;}
.h6_c00017{height:74.552734pt;}
.h1_c00017{height:94.873047pt;}
.h4_c00017{height:95.527344pt;}
.h5_c00017{height:96.750000pt;}
.h3_c00017{height:97.490234pt;}
.h2_c00017{height:98.093750pt;}
.h0_c00017{height:793.333333pt;}
.w0_c00017{width:1122.666667pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:74.559067pt;}
.x2_c00017{left:171.199200pt;}
.x3_c00017{left:207.999067pt;}
.x8_c00017{left:246.079067pt;}
.x4_c00017{left:287.679200pt;}
.x5_c00017{left:334.719720pt;}
.x9_c00017{left:376.639200pt;}
.x6_c00017{left:524.159173pt;}
.x7_c00017{left:714.238773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aaa18166898db1fa71d5d1ea.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_573a57af7c955070d9fc62e4.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.364746;font-style:normal;font-weight:normal;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_dbe00a2b04917d06587f9bd6.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_bc1cdcadd0bb26ae0381ab71.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00018;src:url('chunks/assets/font_a7b50a46268581efa72a535f.woff2')format("woff");}.ff6_c00018{font-family:ff6_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;}
.m1a_c00018{transform:matrix(0.170354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170354,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.192708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192708,0.000000,0.000000,0.250000,0,0);}
.m18_c00018{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m1d_c00018{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m17_c00018{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00018{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m22_c00018{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m12_c00018{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m15_c00018{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m20_c00018{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m23_c00018{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m1b_c00018{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.md_c00018{transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{transform:matrix(0.453883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453883,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{transform:matrix(0.586420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586420,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls1e_c00018{letter-spacing:-20.042400px;}
.lsa_c00018{letter-spacing:-16.539120px;}
.lsb_c00018{letter-spacing:-11.299815px;}
.ls4_c00018{letter-spacing:-9.260850px;}
.ls16_c00018{letter-spacing:-8.914500px;}
.ls19_c00018{letter-spacing:-8.175038px;}
.ls11_c00018{letter-spacing:-7.426125px;}
.ls23_c00018{letter-spacing:-6.685875px;}
.lsf_c00018{letter-spacing:-6.622200px;}
.ls13_c00018{letter-spacing:-5.945625px;}
.ls18_c00018{letter-spacing:-5.196713px;}
.ls28_c00018{letter-spacing:-5.054963px;}
.ls1c_c00018{letter-spacing:-4.456463px;}
.ls20_c00018{letter-spacing:-4.398525px;}
.lsc_c00018{letter-spacing:-4.376580px;}
.lsd_c00018{letter-spacing:-3.984450px;}
.ls2_c00018{letter-spacing:-3.860025px;}
.ls15_c00018{letter-spacing:-3.717000px;}
.ls25_c00018{letter-spacing:-3.337200px;}
.ls7_c00018{letter-spacing:-3.306300px;}
.ls5_c00018{letter-spacing:-3.171900px;}
.ls3_c00018{letter-spacing:-3.025425px;}
.ls14_c00018{letter-spacing:-2.968875px;}
.ls26_c00018{letter-spacing:-2.943225px;}
.lse_c00018{letter-spacing:-2.940600px;}
.ls1d_c00018{letter-spacing:-2.730510px;}
.ls1f_c00018{letter-spacing:-2.456550px;}
.ls12_c00018{letter-spacing:-2.229413px;}
.ls22_c00018{letter-spacing:-2.062575px;}
.ls10_c00018{letter-spacing:-1.489163px;}
.ls1a_c00018{letter-spacing:-0.772200px;}
.ls1b_c00018{letter-spacing:-0.740250px;}
.ls6_c00018{letter-spacing:0.000000px;}
.ls1_c00018{letter-spacing:0.731588px;}
.ls17_c00018{letter-spacing:0.740250px;}
.ls27_c00018{letter-spacing:2.338088px;}
.ls9_c00018{letter-spacing:2.479725px;}
.ls0_c00018{letter-spacing:3.305250px;}
.ls24_c00018{letter-spacing:3.502980px;}
.ls21_c00018{letter-spacing:9.870000px;}
.ls8_c00018{letter-spacing:40.797075px;}
.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;}
._17_c00018{margin-left:-16.645208px;}
._1f_c00018{margin-left:-12.954464px;}
._b_c00018{margin-left:-9.621957px;}
._15_c00018{margin-left:-8.124088px;}
._1e_c00018{margin-left:-6.481214px;}
._a_c00018{margin-left:-3.914764px;}
._8_c00018{margin-left:-2.804704px;}
._1a_c00018{margin-left:-1.684775px;}
._14_c00018{width:1.504038px;}
._9_c00018{width:2.874833px;}
._0_c00018{width:5.062082px;}
._12_c00018{width:6.869382px;}
._13_c00018{width:8.780892px;}
._c_c00018{width:9.998947px;}
._16_c00018{width:12.017458px;}
._19_c00018{width:13.198010px;}
._10_c00018{width:14.232562px;}
._3_c00018{width:15.831499px;}
._6_c00018{width:18.798888px;}
._1_c00018{width:20.756316px;}
._4_c00018{width:23.241636px;}
._7_c00018{width:24.381000px;}
._11_c00018{width:25.458300px;}
._d_c00018{width:26.501529px;}
._e_c00018{width:28.413386px;}
._18_c00018{width:29.555380px;}
._5_c00018{width:30.791577px;}
._1d_c00018{width:32.184055px;}
._1c_c00018{width:34.153697px;}
._2_c00018{width:35.233196px;}
._1b_c00018{width:39.153371px;}
._f_c00018{width:40.844817px;}
.fc0_c00018{color:transparent;}
.fs4_c00018{font-size:57.750000px;}
.fs3_c00018{font-size:60.000000px;}
.fs11_c00018{font-size:70.500000px;}
.fs7_c00018{font-size:72.000000px;}
.fsa_c00018{font-size:75.750000px;}
.fs8_c00018{font-size:76.500000px;}
.fsc_c00018{font-size:77.250000px;}
.fs9_c00018{font-size:78.000000px;}
.fs0_c00018{font-size:78.750000px;}
.fs6_c00018{font-size:79.500000px;}
.fs1_c00018{font-size:80.250000px;}
.fse_c00018{font-size:81.000000px;}
.fs2_c00018{font-size:81.750000px;}
.fs5_c00018{font-size:82.500000px;}
.fsd_c00018{font-size:83.250000px;}
.fsf_c00018{font-size:84.000000px;}
.fs10_c00018{font-size:84.750000px;}
.fsb_c00018{font-size:121.500000px;}
.y0_c00018{bottom:0.000000px;}
.y26_c00018{bottom:178.201380px;}
.y25_c00018{bottom:207.720915px;}
.y24_c00018{bottom:237.240435px;}
.y23_c00018{bottom:266.400900px;}
.y22_c00018{bottom:266.400930px;}
.y21_c00018{bottom:296.280645px;}
.y20_c00018{bottom:326.160375px;}
.y1f_c00018{bottom:356.400285px;}
.y1e_c00018{bottom:416.159820px;}
.y1c_c00018{bottom:445.679175px;}
.y1d_c00018{bottom:445.679670px;}
.y1a_c00018{bottom:475.920570px;}
.y1b_c00018{bottom:475.921185px;}
.y19_c00018{bottom:505.440105px;}
.y18_c00018{bottom:535.319820px;}
.y17_c00018{bottom:535.320720px;}
.y16_c00018{bottom:565.200435px;}
.y15_c00018{bottom:595.081050px;}
.y14_c00018{bottom:595.081770px;}
.y13_c00018{bottom:624.240810px;}
.y12_c00018{bottom:654.120525px;}
.y11_c00018{bottom:683.640060px;}
.y10_c00018{bottom:713.879970px;}
.yf_c00018{bottom:713.880060px;}
.yd_c00018{bottom:743.760720px;}
.ye_c00018{bottom:744.119985px;}
.yc_c00018{bottom:773.639625px;}
.yb_c00018{bottom:803.879535px;}
.ya_c00018{bottom:833.400885px;}
.y9_c00018{bottom:893.160465px;}
.y8_c00018{bottom:952.920270px;}
.y7_c00018{bottom:982.800000px;}
.y5_c00018{bottom:1012.679655px;}
.y6_c00018{bottom:1012.679715px;}
.y4_c00018{bottom:1042.200990px;}
.y3_c00018{bottom:1072.440855px;}
.y2_c00018{bottom:1073.879520px;}
.y1_c00018{bottom:1132.200435px;}
.h5_c00018{height:58.201172px;}
.h4_c00018{height:59.296875px;}
.h16_c00018{height:71.050781px;}
.hc_c00018{height:74.344482px;}
.h9_c00018{height:75.093750px;}
.h11_c00018{height:75.816650px;}
.h10_c00018{height:76.552734px;}
.ha_c00018{height:77.097656px;}
.he_c00018{height:77.288818px;}
.h8_c00018{height:78.024902px;}
.hb_c00018{height:78.609375px;}
.hf_c00018{height:78.760986px;}
.h1_c00018{height:79.365234px;}
.h18_c00018{height:79.457520px;}
.h19_c00018{height:79.497070px;}
.h7_c00018{height:80.121094px;}
.h2_c00018{height:80.876953px;}
.h17_c00018{height:80.969238px;}
.h13_c00018{height:81.632812px;}
.h3_c00018{height:82.388672px;}
.h14_c00018{height:83.015625px;}
.h6_c00018{height:83.144531px;}
.h15_c00018{height:83.756836px;}
.h12_c00018{height:83.900391px;}
.hd_c00018{height:126.720703px;}
.h0_c00018{height:1263.000000px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:137.878950px;}
.x22_c00018{left:138.964140px;}
.x23_c00018{left:140.404980px;}
.x2e_c00018{left:141.479715px;}
.x6_c00018{left:148.318800px;}
.x2_c00018{left:159.478665px;}
.x7_c00018{left:163.438665px;}
.x2c_c00018{left:169.199850px;}
.x15_c00018{left:174.598500px;}
.x2b_c00018{left:212.040000px;}
.x13_c00018{left:223.918350px;}
.x18_c00018{left:227.159850px;}
.x14_c00018{left:238.319850px;}
.x3_c00018{left:239.758500px;}
.x19_c00018{left:252.358635px;}
.x8_c00018{left:267.478635px;}
.x4_c00018{left:271.438635px;}
.x9_c00018{left:298.438635px;}
.x5_c00018{left:303.118785px;}
.x28_c00018{left:308.519100px;}
.x1a_c00018{left:315.719100px;}
.x29_c00018{left:324.718500px;}
.x1b_c00018{left:339.838515px;}
.x26_c00018{left:342.719100px;}
.x2f_c00018{left:348.478635px;}
.xa_c00018{left:362.159850px;}
.x30_c00018{left:370.080000px;}
.xb_c00018{left:376.918950px;}
.x25_c00018{left:379.799535px;}
.x20_c00018{left:413.279250px;}
.x21_c00018{left:431.639100px;}
.x1c_c00018{left:453.238770px;}
.xc_c00018{left:470.519070px;}
.xd_c00018{left:488.878920px;}
.x27_c00018{left:504.359850px;}
.x16_c00018{left:515.519670px;}
.x17_c00018{left:533.879520px;}
.x1d_c00018{left:547.199850px;}
.xe_c00018{left:553.679670px;}
.xf_c00018{left:623.878920px;}
.x1e_c00018{left:647.279850px;}
.x2d_c00018{left:648.718545px;}
.x10_c00018{left:666.719100px;}
.x1f_c00018{left:700.198785px;}
.x11_c00018{left:751.679070px;}
.x2a_c00018{left:762.118785px;}
.x12_c00018{left:766.439670px;}
.x24_c00018{left:770.759130px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls1e_c00018{letter-spacing:-17.815467pt;}
.lsa_c00018{letter-spacing:-14.701440pt;}
.lsb_c00018{letter-spacing:-10.044280pt;}
.ls4_c00018{letter-spacing:-8.231867pt;}
.ls16_c00018{letter-spacing:-7.924000pt;}
.ls19_c00018{letter-spacing:-7.266700pt;}
.ls11_c00018{letter-spacing:-6.601000pt;}
.ls23_c00018{letter-spacing:-5.943000pt;}
.lsf_c00018{letter-spacing:-5.886400pt;}
.ls13_c00018{letter-spacing:-5.285000pt;}
.ls18_c00018{letter-spacing:-4.619300pt;}
.ls28_c00018{letter-spacing:-4.493300pt;}
.ls1c_c00018{letter-spacing:-3.961300pt;}
.ls20_c00018{letter-spacing:-3.909800pt;}
.lsc_c00018{letter-spacing:-3.890293pt;}
.lsd_c00018{letter-spacing:-3.541733pt;}
.ls2_c00018{letter-spacing:-3.431133pt;}
.ls15_c00018{letter-spacing:-3.304000pt;}
.ls25_c00018{letter-spacing:-2.966400pt;}
.ls7_c00018{letter-spacing:-2.938933pt;}
.ls5_c00018{letter-spacing:-2.819467pt;}
.ls3_c00018{letter-spacing:-2.689267pt;}
.ls14_c00018{letter-spacing:-2.639000pt;}
.ls26_c00018{letter-spacing:-2.616200pt;}
.lse_c00018{letter-spacing:-2.613867pt;}
.ls1d_c00018{letter-spacing:-2.427120pt;}
.ls1f_c00018{letter-spacing:-2.183600pt;}
.ls12_c00018{letter-spacing:-1.981700pt;}
.ls22_c00018{letter-spacing:-1.833400pt;}
.ls10_c00018{letter-spacing:-1.323700pt;}
.ls1a_c00018{letter-spacing:-0.686400pt;}
.ls1b_c00018{letter-spacing:-0.658000pt;}
.ls6_c00018{letter-spacing:0.000000pt;}
.ls1_c00018{letter-spacing:0.650300pt;}
.ls17_c00018{letter-spacing:0.658000pt;}
.ls27_c00018{letter-spacing:2.078300pt;}
.ls9_c00018{letter-spacing:2.204200pt;}
.ls0_c00018{letter-spacing:2.938000pt;}
.ls24_c00018{letter-spacing:3.113760pt;}
.ls21_c00018{letter-spacing:8.773333pt;}
.ls8_c00018{letter-spacing:36.264067pt;}
.ws0_c00018{word-spacing:0.000000pt;}
._17_c00018{margin-left:-14.795741pt;}
._1f_c00018{margin-left:-11.515079pt;}
._b_c00018{margin-left:-8.552851pt;}
._15_c00018{margin-left:-7.221411pt;}
._1e_c00018{margin-left:-5.761079pt;}
._a_c00018{margin-left:-3.479790pt;}
._8_c00018{margin-left:-2.493070pt;}
._1a_c00018{margin-left:-1.497577pt;}
._14_c00018{width:1.336923pt;}
._9_c00018{width:2.555407pt;}
._0_c00018{width:4.499629pt;}
._12_c00018{width:6.106118pt;}
._13_c00018{width:7.805238pt;}
._c_c00018{width:8.887953pt;}
._16_c00018{width:10.682185pt;}
._19_c00018{width:11.731564pt;}
._10_c00018{width:12.651166pt;}
._3_c00018{width:14.072443pt;}
._6_c00018{width:16.710123pt;}
._1_c00018{width:18.450058pt;}
._4_c00018{width:20.659232pt;}
._7_c00018{width:21.672000pt;}
._11_c00018{width:22.629600pt;}
._d_c00018{width:23.556915pt;}
._e_c00018{width:25.256343pt;}
._18_c00018{width:26.271449pt;}
._5_c00018{width:27.370291pt;}
._1d_c00018{width:28.608049pt;}
._1c_c00018{width:30.358842pt;}
._2_c00018{width:31.318396pt;}
._1b_c00018{width:34.802996pt;}
._f_c00018{width:36.306504pt;}
.fs4_c00018{font-size:51.333333pt;}
.fs3_c00018{font-size:53.333333pt;}
.fs11_c00018{font-size:62.666667pt;}
.fs7_c00018{font-size:64.000000pt;}
.fsa_c00018{font-size:67.333333pt;}
.fs8_c00018{font-size:68.000000pt;}
.fsc_c00018{font-size:68.666667pt;}
.fs9_c00018{font-size:69.333333pt;}
.fs0_c00018{font-size:70.000000pt;}
.fs6_c00018{font-size:70.666667pt;}
.fs1_c00018{font-size:71.333333pt;}
.fse_c00018{font-size:72.000000pt;}
.fs2_c00018{font-size:72.666667pt;}
.fs5_c00018{font-size:73.333333pt;}
.fsd_c00018{font-size:74.000000pt;}
.fsf_c00018{font-size:74.666667pt;}
.fs10_c00018{font-size:75.333333pt;}
.fsb_c00018{font-size:108.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y26_c00018{bottom:158.401227pt;}
.y25_c00018{bottom:184.640813pt;}
.y24_c00018{bottom:210.880387pt;}
.y23_c00018{bottom:236.800800pt;}
.y22_c00018{bottom:236.800827pt;}
.y21_c00018{bottom:263.360573pt;}
.y20_c00018{bottom:289.920333pt;}
.y1f_c00018{bottom:316.800253pt;}
.y1e_c00018{bottom:369.919840pt;}
.y1c_c00018{bottom:396.159267pt;}
.y1d_c00018{bottom:396.159707pt;}
.y1a_c00018{bottom:423.040507pt;}
.y1b_c00018{bottom:423.041053pt;}
.y19_c00018{bottom:449.280093pt;}
.y18_c00018{bottom:475.839840pt;}
.y17_c00018{bottom:475.840640pt;}
.y16_c00018{bottom:502.400387pt;}
.y15_c00018{bottom:528.960933pt;}
.y14_c00018{bottom:528.961573pt;}
.y13_c00018{bottom:554.880720pt;}
.y12_c00018{bottom:581.440467pt;}
.y11_c00018{bottom:607.680053pt;}
.y10_c00018{bottom:634.559973pt;}
.yf_c00018{bottom:634.560053pt;}
.yd_c00018{bottom:661.120640pt;}
.ye_c00018{bottom:661.439987pt;}
.yc_c00018{bottom:687.679667pt;}
.yb_c00018{bottom:714.559587pt;}
.ya_c00018{bottom:740.800787pt;}
.y9_c00018{bottom:793.920413pt;}
.y8_c00018{bottom:847.040240pt;}
.y7_c00018{bottom:873.600000pt;}
.y5_c00018{bottom:900.159693pt;}
.y6_c00018{bottom:900.159747pt;}
.y4_c00018{bottom:926.400880pt;}
.y3_c00018{bottom:953.280760pt;}
.y2_c00018{bottom:954.559573pt;}
.y1_c00018{bottom:1006.400387pt;}
.h5_c00018{height:51.734375pt;}
.h4_c00018{height:52.708333pt;}
.h16_c00018{height:63.156250pt;}
.hc_c00018{height:66.083984pt;}
.h9_c00018{height:66.750000pt;}
.h11_c00018{height:67.392578pt;}
.h10_c00018{height:68.046875pt;}
.ha_c00018{height:68.531250pt;}
.he_c00018{height:68.701172pt;}
.h8_c00018{height:69.355469pt;}
.hb_c00018{height:69.875000pt;}
.hf_c00018{height:70.009766pt;}
.h1_c00018{height:70.546875pt;}
.h18_c00018{height:70.628906pt;}
.h19_c00018{height:70.664062pt;}
.h7_c00018{height:71.218750pt;}
.h2_c00018{height:71.890625pt;}
.h17_c00018{height:71.972656pt;}
.h13_c00018{height:72.562500pt;}
.h3_c00018{height:73.234375pt;}
.h14_c00018{height:73.791667pt;}
.h6_c00018{height:73.906250pt;}
.h15_c00018{height:74.450521pt;}
.h12_c00018{height:74.578125pt;}
.hd_c00018{height:112.640625pt;}
.h0_c00018{height:1122.666667pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:122.559067pt;}
.x22_c00018{left:123.523680pt;}
.x23_c00018{left:124.804427pt;}
.x2e_c00018{left:125.759747pt;}
.x6_c00018{left:131.838933pt;}
.x2_c00018{left:141.758813pt;}
.x7_c00018{left:145.278813pt;}
.x2c_c00018{left:150.399867pt;}
.x15_c00018{left:155.198667pt;}
.x2b_c00018{left:188.480000pt;}
.x13_c00018{left:199.038533pt;}
.x18_c00018{left:201.919867pt;}
.x14_c00018{left:211.839867pt;}
.x3_c00018{left:213.118667pt;}
.x19_c00018{left:224.318787pt;}
.x8_c00018{left:237.758787pt;}
.x4_c00018{left:241.278787pt;}
.x9_c00018{left:265.278787pt;}
.x5_c00018{left:269.438920pt;}
.x28_c00018{left:274.239200pt;}
.x1a_c00018{left:280.639200pt;}
.x29_c00018{left:288.638667pt;}
.x1b_c00018{left:302.078680pt;}
.x26_c00018{left:304.639200pt;}
.x2f_c00018{left:309.758787pt;}
.xa_c00018{left:321.919867pt;}
.x30_c00018{left:328.960000pt;}
.xb_c00018{left:335.039067pt;}
.x25_c00018{left:337.599587pt;}
.x20_c00018{left:367.359333pt;}
.x21_c00018{left:383.679200pt;}
.x1c_c00018{left:402.878907pt;}
.xc_c00018{left:418.239173pt;}
.xd_c00018{left:434.559040pt;}
.x27_c00018{left:448.319867pt;}
.x16_c00018{left:458.239707pt;}
.x17_c00018{left:474.559573pt;}
.x1d_c00018{left:486.399867pt;}
.xe_c00018{left:492.159707pt;}
.xf_c00018{left:554.559040pt;}
.x1e_c00018{left:575.359867pt;}
.x2d_c00018{left:576.638707pt;}
.x10_c00018{left:592.639200pt;}
.x1f_c00018{left:622.398920pt;}
.x11_c00018{left:668.159173pt;}
.x2a_c00018{left:677.438920pt;}
.x12_c00018{left:681.279707pt;}
.x24_c00018{left:685.119227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e535c15ce5089d180dd9851.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_a68fab3ff0e46e1a3a1d8abd.woff2')format("woff");}.ff2_c00019{font-family:ff2_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:ff3_c00019;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_f4131e31068884046cb7007b.woff2')format("woff");}.ff4_c00019{font-family:ff4_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:ff5_c00019;src:url('chunks/assets/font_bc555b0ccc3516245d24a9d9.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00019;src:url('chunks/assets/font_430991dbf1486066f25a84c1.woff2')format("woff");}.ff6_c00019{font-family:ff6_c00019;line-height:1.311035;font-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_c00019{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m22_c00019{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215470,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m21_c00019{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);}
.m23_c00019{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m0_c00019{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1f_c00019{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m24_c00019{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m1e_c00019{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m16_c00019{transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);}
.m1c_c00019{transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);}
.m1b_c00019{transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.353448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353448,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{transform:matrix(0.453488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453488,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454545,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.470930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470930,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.548611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548611,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls12_c00019{letter-spacing:-23.023200px;}
.ls10_c00019{letter-spacing:-11.911050px;}
.lsc_c00019{letter-spacing:-8.914500px;}
.ls14_c00019{letter-spacing:-8.248148px;}
.ls8_c00019{letter-spacing:-8.175038px;}
.ls9_c00019{letter-spacing:-7.426125px;}
.lse_c00019{letter-spacing:-7.037625px;}
.ls13_c00019{letter-spacing:-6.751200px;}
.ls0_c00019{letter-spacing:-5.945625px;}
.ls1a_c00019{letter-spacing:-5.408370px;}
.lsb_c00019{letter-spacing:-5.196713px;}
.ls2a_c00019{letter-spacing:-5.054963px;}
.ls1d_c00019{letter-spacing:-4.833900px;}
.ls3_c00019{letter-spacing:-4.456463px;}
.ls11_c00019{letter-spacing:-3.758670px;}
.ls4_c00019{letter-spacing:-3.717000px;}
.ls1e_c00019{letter-spacing:-3.599100px;}
.ls2_c00019{letter-spacing:-2.968875px;}
.ls1_c00019{letter-spacing:-2.229413px;}
.ls26_c00019{letter-spacing:-2.227050px;}
.ls6_c00019{letter-spacing:-1.489163px;}
.ls1b_c00019{letter-spacing:-0.825600px;}
.ls16_c00019{letter-spacing:-0.796575px;}
.ls7_c00019{letter-spacing:-0.740250px;}
.ls25_c00019{letter-spacing:-0.706118px;}
.ls18_c00019{letter-spacing:-0.665640px;}
.lsa_c00019{letter-spacing:0.000000px;}
.ls22_c00019{letter-spacing:0.540000px;}
.lsf_c00019{letter-spacing:0.707243px;}
.ls17_c00019{letter-spacing:1.237500px;}
.ls28_c00019{letter-spacing:1.612500px;}
.ls19_c00019{letter-spacing:1.714080px;}
.ls27_c00019{letter-spacing:1.838250px;}
.ls29_c00019{letter-spacing:2.387025px;}
.lsd_c00019{letter-spacing:3.283800px;}
.ls5_c00019{letter-spacing:3.637710px;}
.ls21_c00019{letter-spacing:4.050405px;}
.ls15_c00019{letter-spacing:5.998215px;}
.ls1c_c00019{letter-spacing:9.017985px;}
.ls1f_c00019{letter-spacing:9.248250px;}
.ls23_c00019{letter-spacing:11.705400px;}
.ls24_c00019{letter-spacing:12.148110px;}
.ls20_c00019{letter-spacing:20.781833px;}
.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;}
._1a_c00019{margin-left:-18.684775px;}
._1b_c00019{margin-left:-12.261316px;}
._f_c00019{margin-left:-7.108867px;}
._1c_c00019{margin-left:-5.347764px;}
._12_c00019{margin-left:-4.340492px;}
._5_c00019{margin-left:-2.900689px;}
._1_c00019{margin-left:-1.731296px;}
._10_c00019{width:1.097047px;}
._4_c00019{width:2.287569px;}
._2_c00019{width:3.348420px;}
._3_c00019{width:4.967580px;}
._a_c00019{width:6.178487px;}
._7_c00019{width:7.798404px;}
._0_c00019{width:9.395469px;}
._c_c00019{width:10.656584px;}
._8_c00019{width:12.088690px;}
._1f_c00019{width:13.133568px;}
._d_c00019{width:14.296721px;}
._e_c00019{width:15.399741px;}
._6_c00019{width:16.529506px;}
._b_c00019{width:18.710881px;}
._1e_c00019{width:19.806918px;}
._11_c00019{width:21.018940px;}
._9_c00019{width:22.045171px;}
._18_c00019{width:23.987473px;}
._13_c00019{width:25.721013px;}
._1d_c00019{width:27.035469px;}
._17_c00019{width:28.342392px;}
._16_c00019{width:30.473353px;}
._19_c00019{width:33.895679px;}
._14_c00019{width:138.530160px;}
._15_c00019{width:197.431733px;}
.fc0_c00019{color:transparent;}
.fsc_c00019{font-size:24.750000px;}
.fs15_c00019{font-size:26.250000px;}
.fs7_c00019{font-size:27.000000px;}
.fs13_c00019{font-size:29.250000px;}
.fs11_c00019{font-size:30.750000px;}
.fsb_c00019{font-size:32.250000px;}
.fsf_c00019{font-size:33.000000px;}
.fsa_c00019{font-size:35.250000px;}
.fsd_c00019{font-size:36.000000px;}
.fs4_c00019{font-size:36.750000px;}
.fs5_c00019{font-size:38.250000px;}
.fs10_c00019{font-size:39.000000px;}
.fs6_c00019{font-size:40.500000px;}
.fs14_c00019{font-size:42.000000px;}
.fs9_c00019{font-size:43.500000px;}
.fs12_c00019{font-size:44.250000px;}
.fse_c00019{font-size:48.000000px;}
.fs17_c00019{font-size:74.250000px;}
.fs16_c00019{font-size:75.000000px;}
.fs18_c00019{font-size:75.750000px;}
.fs1b_c00019{font-size:77.250000px;}
.fs2_c00019{font-size:78.000000px;}
.fs0_c00019{font-size:78.750000px;}
.fs3_c00019{font-size:80.250000px;}
.fs1_c00019{font-size:81.000000px;}
.fs1a_c00019{font-size:82.500000px;}
.fs19_c00019{font-size:85.500000px;}
.fs8_c00019{font-size:135.750000px;}
.y0_c00019{bottom:0.000000px;}
.y24_c00019{bottom:180.720750px;}
.y23_c00019{bottom:180.721485px;}
.y22_c00019{bottom:210.601200px;}
.y21_c00019{bottom:268.921395px;}
.y20_c00019{bottom:299.161305px;}
.y1f_c00019{bottom:329.041035px;}
.y1e_c00019{bottom:358.920000px;}
.y1d_c00019{bottom:388.800570px;}
.y1c_c00019{bottom:388.802355px;}
.y1b_c00019{bottom:447.841125px;}
.y1a_c00019{bottom:477.720840px;}
.y19_c00019{bottom:507.240375px;}
.y18_c00019{bottom:537.480285px;}
.y17_c00019{bottom:537.481080px;}
.y16_c00019{bottom:567.360810px;}
.y15_c00019{bottom:597.600720px;}
.y14_c00019{bottom:627.120435px;}
.y13_c00019{bottom:627.121380px;}
.y12_c00019{bottom:686.160135px;}
.y11_c00019{bottom:715.679670px;}
.y10_c00019{bottom:745.921185px;}
.yf_c00019{bottom:752.400885px;}
.ye_c00019{bottom:775.800105px;}
.yd_c00019{bottom:805.680675px;}
.yc_c00019{bottom:835.920600px;}
.yb_c00019{bottom:896.039775px;}
.ya_c00019{bottom:925.559310px;}
.y9_c00019{bottom:955.439025px;}
.y8_c00019{bottom:984.960360px;}
.y7_c00019{bottom:1014.840090px;}
.y6_c00019{bottom:1014.840825px;}
.y5_c00019{bottom:1044.360345px;}
.y4_c00019{bottom:1074.960750px;}
.y3_c00019{bottom:1104.480285px;}
.y2_c00019{bottom:1104.481185px;}
.y1_c00019{bottom:1134.360900px;}
.h17_c00019{height:25.762939px;}
.hc_c00019{height:25.813477px;}
.h15_c00019{height:26.499023px;}
.h8_c00019{height:28.160156px;}
.h13_c00019{height:28.707275px;}
.h11_c00019{height:32.071289px;}
.hb_c00019{height:33.635742px;}
.hf_c00019{height:34.417969px;}
.hd_c00019{height:37.546875px;}
.h18_c00019{height:38.276367px;}
.h5_c00019{height:38.329102px;}
.h10_c00019{height:38.542969px;}
.h14_c00019{height:39.748535px;}
.h6_c00019{height:39.893555px;}
.h16_c00019{height:41.220703px;}
.h7_c00019{height:42.240234px;}
.h12_c00019{height:43.428955px;}
.ha_c00019{height:45.369141px;}
.he_c00019{height:50.062500px;}
.h1a_c00019{height:72.872314px;}
.h19_c00019{height:73.608398px;}
.h1e_c00019{height:75.816650px;}
.h1b_c00019{height:76.341797px;}
.h3_c00019{height:76.552734px;}
.h1_c00019{height:77.288818px;}
.h4_c00019{height:78.760986px;}
.h2_c00019{height:79.497070px;}
.h1d_c00019{height:80.969238px;}
.h1c_c00019{height:83.913574px;}
.h9_c00019{height:141.583008px;}
.h0_c00019{height:1263.000000px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:140.039400px;}
.x1a_c00019{left:141.479715px;}
.x25_c00019{left:142.558290px;}
.x7_c00019{left:158.040000px;}
.x6_c00019{left:164.878950px;}
.x2_c00019{left:167.398665px;}
.x3_c00019{left:190.799565px;}
.x8_c00019{left:241.918950px;}
.x1d_c00019{left:258.120000px;}
.x9_c00019{left:268.918950px;}
.x1e_c00019{left:287.998950px;}
.x1b_c00019{left:310.318800px;}
.x10_c00019{left:318.238785px;}
.x11_c00019{left:325.799535px;}
.x1c_c00019{left:333.358635px;}
.xa_c00019{left:358.559100px;}
.xb_c00019{left:388.798920px;}
.x1f_c00019{left:409.678530px;}
.xc_c00019{left:411.838950px;}
.x20_c00019{left:438.118785px;}
.x12_c00019{left:478.798515px;}
.x13_c00019{left:541.799520px;}
.x16_c00019{left:615.238770px;}
.xd_c00019{left:635.759085px;}
.x17_c00019{left:638.998950px;}
.x14_c00019{left:657.358605px;}
.x22_c00019{left:662.759085px;}
.x18_c00019{left:668.518620px;}
.x23_c00019{left:681.838950px;}
.xe_c00019{left:682.918350px;}
.x19_c00019{left:705.599070px;}
.x15_c00019{left:713.519070px;}
.xf_c00019{left:730.438620px;}
.x4_c00019{left:749.879520px;}
.x26_c00019{left:754.918950px;}
.x5_c00019{left:767.519070px;}
.x24_c00019{left:768.598575px;}
.x27_c00019{left:771.120030px;}
.x21_c00019{left:773.998905px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls12_c00019{letter-spacing:-20.465067pt;}
.ls10_c00019{letter-spacing:-10.587600pt;}
.lsc_c00019{letter-spacing:-7.924000pt;}
.ls14_c00019{letter-spacing:-7.331687pt;}
.ls8_c00019{letter-spacing:-7.266700pt;}
.ls9_c00019{letter-spacing:-6.601000pt;}
.lse_c00019{letter-spacing:-6.255667pt;}
.ls13_c00019{letter-spacing:-6.001067pt;}
.ls0_c00019{letter-spacing:-5.285000pt;}
.ls1a_c00019{letter-spacing:-4.807440pt;}
.lsb_c00019{letter-spacing:-4.619300pt;}
.ls2a_c00019{letter-spacing:-4.493300pt;}
.ls1d_c00019{letter-spacing:-4.296800pt;}
.ls3_c00019{letter-spacing:-3.961300pt;}
.ls11_c00019{letter-spacing:-3.341040pt;}
.ls4_c00019{letter-spacing:-3.304000pt;}
.ls1e_c00019{letter-spacing:-3.199200pt;}
.ls2_c00019{letter-spacing:-2.639000pt;}
.ls1_c00019{letter-spacing:-1.981700pt;}
.ls26_c00019{letter-spacing:-1.979600pt;}
.ls6_c00019{letter-spacing:-1.323700pt;}
.ls1b_c00019{letter-spacing:-0.733867pt;}
.ls16_c00019{letter-spacing:-0.708067pt;}
.ls7_c00019{letter-spacing:-0.658000pt;}
.ls25_c00019{letter-spacing:-0.627660pt;}
.ls18_c00019{letter-spacing:-0.591680pt;}
.lsa_c00019{letter-spacing:0.000000pt;}
.ls22_c00019{letter-spacing:0.480000pt;}
.lsf_c00019{letter-spacing:0.628660pt;}
.ls17_c00019{letter-spacing:1.100000pt;}
.ls28_c00019{letter-spacing:1.433333pt;}
.ls19_c00019{letter-spacing:1.523627pt;}
.ls27_c00019{letter-spacing:1.634000pt;}
.ls29_c00019{letter-spacing:2.121800pt;}
.lsd_c00019{letter-spacing:2.918933pt;}
.ls5_c00019{letter-spacing:3.233520pt;}
.ls21_c00019{letter-spacing:3.600360pt;}
.ls15_c00019{letter-spacing:5.331747pt;}
.ls1c_c00019{letter-spacing:8.015987pt;}
.ls1f_c00019{letter-spacing:8.220667pt;}
.ls23_c00019{letter-spacing:10.404800pt;}
.ls24_c00019{letter-spacing:10.798320pt;}
.ls20_c00019{letter-spacing:18.472740pt;}
.ws0_c00019{word-spacing:0.000000pt;}
._1a_c00019{margin-left:-16.608689pt;}
._1b_c00019{margin-left:-10.898947pt;}
._f_c00019{margin-left:-6.318992pt;}
._1c_c00019{margin-left:-4.753568pt;}
._12_c00019{margin-left:-3.858215pt;}
._5_c00019{margin-left:-2.578391pt;}
._1_c00019{margin-left:-1.538930pt;}
._10_c00019{width:0.975153pt;}
._4_c00019{width:2.033394pt;}
._2_c00019{width:2.976374pt;}
._3_c00019{width:4.415626pt;}
._a_c00019{width:5.491989pt;}
._7_c00019{width:6.931915pt;}
._0_c00019{width:8.351528pt;}
._c_c00019{width:9.472519pt;}
._8_c00019{width:10.745502pt;}
._1f_c00019{width:11.674283pt;}
._d_c00019{width:12.708196pt;}
._e_c00019{width:13.688658pt;}
._6_c00019{width:14.692894pt;}
._b_c00019{width:16.631894pt;}
._1e_c00019{width:17.606149pt;}
._11_c00019{width:18.683502pt;}
._9_c00019{width:19.595708pt;}
._18_c00019{width:21.322198pt;}
._13_c00019{width:22.863123pt;}
._1d_c00019{width:24.031528pt;}
._17_c00019{width:25.193238pt;}
._16_c00019{width:27.087425pt;}
._19_c00019{width:30.129492pt;}
._14_c00019{width:123.137920pt;}
._15_c00019{width:175.494873pt;}
.fsc_c00019{font-size:22.000000pt;}
.fs15_c00019{font-size:23.333333pt;}
.fs7_c00019{font-size:24.000000pt;}
.fs13_c00019{font-size:26.000000pt;}
.fs11_c00019{font-size:27.333333pt;}
.fsb_c00019{font-size:28.666667pt;}
.fsf_c00019{font-size:29.333333pt;}
.fsa_c00019{font-size:31.333333pt;}
.fsd_c00019{font-size:32.000000pt;}
.fs4_c00019{font-size:32.666667pt;}
.fs5_c00019{font-size:34.000000pt;}
.fs10_c00019{font-size:34.666667pt;}
.fs6_c00019{font-size:36.000000pt;}
.fs14_c00019{font-size:37.333333pt;}
.fs9_c00019{font-size:38.666667pt;}
.fs12_c00019{font-size:39.333333pt;}
.fse_c00019{font-size:42.666667pt;}
.fs17_c00019{font-size:66.000000pt;}
.fs16_c00019{font-size:66.666667pt;}
.fs18_c00019{font-size:67.333333pt;}
.fs1b_c00019{font-size:68.666667pt;}
.fs2_c00019{font-size:69.333333pt;}
.fs0_c00019{font-size:70.000000pt;}
.fs3_c00019{font-size:71.333333pt;}
.fs1_c00019{font-size:72.000000pt;}
.fs1a_c00019{font-size:73.333333pt;}
.fs19_c00019{font-size:76.000000pt;}
.fs8_c00019{font-size:120.666667pt;}
.y0_c00019{bottom:0.000000pt;}
.y24_c00019{bottom:160.640667pt;}
.y23_c00019{bottom:160.641320pt;}
.y22_c00019{bottom:187.201067pt;}
.y21_c00019{bottom:239.041240pt;}
.y20_c00019{bottom:265.921160pt;}
.y1f_c00019{bottom:292.480920pt;}
.y1e_c00019{bottom:319.040000pt;}
.y1d_c00019{bottom:345.600507pt;}
.y1c_c00019{bottom:345.602093pt;}
.y1b_c00019{bottom:398.081000pt;}
.y1a_c00019{bottom:424.640747pt;}
.y19_c00019{bottom:450.880333pt;}
.y18_c00019{bottom:477.760253pt;}
.y17_c00019{bottom:477.760960pt;}
.y16_c00019{bottom:504.320720pt;}
.y15_c00019{bottom:531.200640pt;}
.y14_c00019{bottom:557.440387pt;}
.y13_c00019{bottom:557.441227pt;}
.y12_c00019{bottom:609.920120pt;}
.y11_c00019{bottom:636.159707pt;}
.y10_c00019{bottom:663.041053pt;}
.yf_c00019{bottom:668.800787pt;}
.ye_c00019{bottom:689.600093pt;}
.yd_c00019{bottom:716.160600pt;}
.yc_c00019{bottom:743.040533pt;}
.yb_c00019{bottom:796.479800pt;}
.ya_c00019{bottom:822.719387pt;}
.y9_c00019{bottom:849.279133pt;}
.y8_c00019{bottom:875.520320pt;}
.y7_c00019{bottom:902.080080pt;}
.y6_c00019{bottom:902.080733pt;}
.y5_c00019{bottom:928.320307pt;}
.y4_c00019{bottom:955.520667pt;}
.y3_c00019{bottom:981.760253pt;}
.y2_c00019{bottom:981.761053pt;}
.y1_c00019{bottom:1008.320800pt;}
.h17_c00019{height:22.900391pt;}
.hc_c00019{height:22.945312pt;}
.h15_c00019{height:23.554688pt;}
.h8_c00019{height:25.031250pt;}
.h13_c00019{height:25.517578pt;}
.h11_c00019{height:28.507812pt;}
.hb_c00019{height:29.898438pt;}
.hf_c00019{height:30.593750pt;}
.hd_c00019{height:33.375000pt;}
.h18_c00019{height:34.023438pt;}
.h5_c00019{height:34.070312pt;}
.h10_c00019{height:34.260417pt;}
.h14_c00019{height:35.332031pt;}
.h6_c00019{height:35.460938pt;}
.h16_c00019{height:36.640625pt;}
.h7_c00019{height:37.546875pt;}
.h12_c00019{height:38.603516pt;}
.ha_c00019{height:40.328125pt;}
.he_c00019{height:44.500000pt;}
.h1a_c00019{height:64.775391pt;}
.h19_c00019{height:65.429688pt;}
.h1e_c00019{height:67.392578pt;}
.h1b_c00019{height:67.859375pt;}
.h3_c00019{height:68.046875pt;}
.h1_c00019{height:68.701172pt;}
.h4_c00019{height:70.009766pt;}
.h2_c00019{height:70.664062pt;}
.h1d_c00019{height:71.972656pt;}
.h1c_c00019{height:74.589844pt;}
.h9_c00019{height:125.851562pt;}
.h0_c00019{height:1122.666667pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:124.479467pt;}
.x1a_c00019{left:125.759747pt;}
.x25_c00019{left:126.718480pt;}
.x7_c00019{left:140.480000pt;}
.x6_c00019{left:146.559067pt;}
.x2_c00019{left:148.798813pt;}
.x3_c00019{left:169.599613pt;}
.x8_c00019{left:215.039067pt;}
.x1d_c00019{left:229.440000pt;}
.x9_c00019{left:239.039067pt;}
.x1e_c00019{left:255.999067pt;}
.x1b_c00019{left:275.838933pt;}
.x10_c00019{left:282.878920pt;}
.x11_c00019{left:289.599587pt;}
.x1c_c00019{left:296.318787pt;}
.xa_c00019{left:318.719200pt;}
.xb_c00019{left:345.599040pt;}
.x1f_c00019{left:364.158693pt;}
.xc_c00019{left:366.079067pt;}
.x20_c00019{left:389.438920pt;}
.x12_c00019{left:425.598680pt;}
.x13_c00019{left:481.599573pt;}
.x16_c00019{left:546.878907pt;}
.xd_c00019{left:565.119187pt;}
.x17_c00019{left:567.999067pt;}
.x14_c00019{left:584.318760pt;}
.x22_c00019{left:589.119187pt;}
.x18_c00019{left:594.238773pt;}
.x23_c00019{left:606.079067pt;}
.xe_c00019{left:607.038533pt;}
.x19_c00019{left:627.199173pt;}
.x15_c00019{left:634.239173pt;}
.xf_c00019{left:649.278773pt;}
.x4_c00019{left:666.559573pt;}
.x26_c00019{left:671.039067pt;}
.x5_c00019{left:682.239173pt;}
.x24_c00019{left:683.198733pt;}
.x27_c00019{left:685.440027pt;}
.x21_c00019{left:687.999027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9cd97bd89d6eda25612875b.woff2')format("woff");}.ff1_c00020{font-family:ff1_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:ff2_c00020;src:url('chunks/assets/font_27123d5f70fc3d750fe02408.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_61ef800d3548a09231b3cb72.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_19ff7273464e795fc5cad54d.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00020;src:url('chunks/assets/font_27f4a8db68159f37cf754109.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00020;src:url('chunks/assets/font_dae18f1ae26d8cdef5f8a9e7.woff2')format("woff");}.ff6_c00020{font-family:ff6_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;}
.m12_c00020{transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180952,0.000000,0.000000,0.250000,0,0);}
.m16_c00020{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m17_c00020{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00020{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00020{transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);}
.m13_c00020{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m1d_c00020{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{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);}
.m1a_c00020{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.md_c00020{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.me_c00020{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m20_c00020{transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00020{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m21_c00020{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m5_c00020{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m1c_c00020{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m8_c00020{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m0_c00020{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m15_c00020{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.ma_c00020{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m18_c00020{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.m10_c00020{transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);}
.m1f_c00020{transform:matrix(0.475410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475410,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls8_c00020{letter-spacing:-18.749640px;}
.ls21_c00020{letter-spacing:-13.041000px;}
.ls24_c00020{letter-spacing:-9.751178px;}
.ls2a_c00020{letter-spacing:-9.742800px;}
.ls2b_c00020{letter-spacing:-9.400822px;}
.lsf_c00020{letter-spacing:-8.914500px;}
.ls28_c00020{letter-spacing:-8.280750px;}
.lse_c00020{letter-spacing:-8.175038px;}
.ls13_c00020{letter-spacing:-7.426125px;}
.ls1c_c00020{letter-spacing:-7.107750px;}
.ls16_c00020{letter-spacing:-6.685875px;}
.ls10_c00020{letter-spacing:-5.945625px;}
.ls11_c00020{letter-spacing:-5.343818px;}
.ls17_c00020{letter-spacing:-5.247533px;}
.lsc_c00020{letter-spacing:-5.196713px;}
.ls20_c00020{letter-spacing:-5.054963px;}
.lsd_c00020{letter-spacing:-4.456463px;}
.ls2c_c00020{letter-spacing:-4.123350px;}
.ls1a_c00020{letter-spacing:-4.063020px;}
.ls2_c00020{letter-spacing:-3.717000px;}
.ls1b_c00020{letter-spacing:-3.412500px;}
.ls1d_c00020{letter-spacing:-3.209198px;}
.ls27_c00020{letter-spacing:-3.197250px;}
.ls1e_c00020{letter-spacing:-3.111413px;}
.ls18_c00020{letter-spacing:-3.027750px;}
.ls15_c00020{letter-spacing:-2.971800px;}
.ls1_c00020{letter-spacing:-2.968875px;}
.ls25_c00020{letter-spacing:-2.340000px;}
.ls0_c00020{letter-spacing:-2.229413px;}
.ls1f_c00020{letter-spacing:-1.725300px;}
.ls4_c00020{letter-spacing:-1.489163px;}
.ls22_c00020{letter-spacing:-0.849420px;}
.ls19_c00020{letter-spacing:-0.824175px;}
.ls7_c00020{letter-spacing:-0.803400px;}
.ls9_c00020{letter-spacing:-0.780225px;}
.ls3_c00020{letter-spacing:-0.740250px;}
.ls5_c00020{letter-spacing:0.000000px;}
.ls14_c00020{letter-spacing:0.719100px;}
.ls23_c00020{letter-spacing:0.772500px;}
.ls26_c00020{letter-spacing:0.857588px;}
.lsa_c00020{letter-spacing:1.485000px;}
.ls29_c00020{letter-spacing:2.968875px;}
.ls12_c00020{letter-spacing:3.290850px;}
.ls6_c00020{letter-spacing:3.502980px;}
.lsb_c00020{letter-spacing:4.314668px;}
.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;}
._1d_c00020{margin-left:-19.980197px;}
._1a_c00020{margin-left:-12.946084px;}
._19_c00020{margin-left:-11.193376px;}
._1e_c00020{margin-left:-8.207384px;}
._9_c00020{margin-left:-6.715889px;}
._c_c00020{margin-left:-5.485666px;}
._1b_c00020{margin-left:-3.875094px;}
._17_c00020{margin-left:-2.670145px;}
._18_c00020{margin-left:-1.147283px;}
._a_c00020{width:1.059083px;}
._3_c00020{width:2.331238px;}
._1_c00020{width:3.938704px;}
._2_c00020{width:5.807203px;}
._12_c00020{width:7.012643px;}
._0_c00020{width:8.036735px;}
._7_c00020{width:9.613339px;}
._5_c00020{width:10.898941px;}
._f_c00020{width:12.169639px;}
._b_c00020{width:13.760894px;}
._e_c00020{width:15.167354px;}
._4_c00020{width:16.308828px;}
._6_c00020{width:18.313000px;}
._8_c00020{width:19.379781px;}
._1c_c00020{width:20.754577px;}
._1f_c00020{width:22.931421px;}
._13_c00020{width:24.536925px;}
._14_c00020{width:26.179308px;}
._10_c00020{width:27.331748px;}
._15_c00020{width:30.505700px;}
._11_c00020{width:33.250672px;}
._d_c00020{width:34.613626px;}
._16_c00020{width:36.712983px;}
.fc0_c00020{color:transparent;}
.fs11_c00020{font-size:35.250000px;}
.fsf_c00020{font-size:45.750000px;}
.fs12_c00020{font-size:49.500000px;}
.fsb_c00020{font-size:60.750000px;}
.fs10_c00020{font-size:69.000000px;}
.fse_c00020{font-size:73.500000px;}
.fs4_c00020{font-size:74.250000px;}
.fsa_c00020{font-size:75.000000px;}
.fs7_c00020{font-size:76.500000px;}
.fs3_c00020{font-size:77.250000px;}
.fs1_c00020{font-size:78.000000px;}
.fs0_c00020{font-size:78.750000px;}
.fsc_c00020{font-size:80.250000px;}
.fsd_c00020{font-size:81.000000px;}
.fs8_c00020{font-size:81.750000px;}
.fs9_c00020{font-size:82.500000px;}
.fs5_c00020{font-size:83.250000px;}
.fs2_c00020{font-size:84.000000px;}
.fs6_c00020{font-size:101.250000px;}
.y0_c00020{bottom:0.000000px;}
.y29_c00020{bottom:252.719535px;}
.y28_c00020{bottom:282.959400px;}
.y27_c00020{bottom:282.959535px;}
.y26_c00020{bottom:312.480885px;}
.y24_c00020{bottom:342.359850px;}
.y25_c00020{bottom:342.720750px;}
.y22_c00020{bottom:372.238890px;}
.y23_c00020{bottom:372.240435px;}
.y21_c00020{bottom:402.118605px;}
.y20_c00020{bottom:431.639940px;}
.y1f_c00020{bottom:461.519670px;}
.y1e_c00020{bottom:461.520555px;}
.y1c_c00020{bottom:491.400240px;}
.y1d_c00020{bottom:491.400285px;}
.y1a_c00020{bottom:521.639805px;}
.y1b_c00020{bottom:521.640150px;}
.y19_c00020{bottom:581.040870px;}
.y18_c00020{bottom:602.640150px;}
.y17_c00020{bottom:602.641635px;}
.y16_c00020{bottom:623.520270px;}
.y15_c00020{bottom:644.761155px;}
.y14_c00020{bottom:665.639790px;}
.y13_c00020{bottom:687.240870px;}
.y12_c00020{bottom:753.480285px;}
.y11_c00020{bottom:777.240420px;}
.y10_c00020{bottom:777.240735px;}
.yf_c00020{bottom:806.760270px;}
.ye_c00020{bottom:837.000180px;}
.yc_c00020{bottom:866.519550px;}
.yd_c00020{bottom:866.519715px;}
.yb_c00020{bottom:896.759475px;}
.ya_c00020{bottom:926.280810px;}
.y8_c00020{bottom:956.520060px;}
.y9_c00020{bottom:956.520720px;}
.y7_c00020{bottom:986.399775px;}
.y6_c00020{bottom:986.401215px;}
.y5_c00020{bottom:1015.920750px;}
.y4_c00020{bottom:1045.800480px;}
.y3_c00020{bottom:1076.400885px;}
.y2_c00020{bottom:1105.920600px;}
.y1_c00020{bottom:1136.160465px;}
.h19_c00020{height:34.836914px;}
.h17_c00020{height:47.715820px;}
.h1a_c00020{height:51.626953px;}
.hd_c00020{height:60.038086px;}
.h18_c00020{height:71.964844px;}
.h6_c00020{height:72.872314px;}
.h15_c00020{height:73.608398px;}
.h9_c00020{height:75.080566px;}
.h5_c00020{height:75.816650px;}
.h2_c00020{height:76.552734px;}
.h16_c00020{height:76.658203px;}
.h1_c00020{height:77.288818px;}
.h14_c00020{height:77.853516px;}
.hc_c00020{height:78.222656px;}
.h3_c00020{height:78.609375px;}
.h11_c00020{height:78.760986px;}
.hf_c00020{height:79.365234px;}
.h13_c00020{height:79.497070px;}
.ha_c00020{height:80.233154px;}
.he_c00020{height:80.876953px;}
.h12_c00020{height:80.969238px;}
.h10_c00020{height:81.632812px;}
.h7_c00020{height:81.705322px;}
.h4_c00020{height:83.015625px;}
.hb_c00020{height:83.144531px;}
.h8_c00020{height:105.600586px;}
.h0_c00020{height:1263.000000px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:142.559100px;}
.xa_c00020{left:143.634450px;}
.x2a_c00020{left:160.918950px;}
.xd_c00020{left:169.199850px;}
.x2_c00020{left:171.358665px;}
.x2b_c00020{left:182.518665px;}
.x17_c00020{left:194.398635px;}
.xe_c00020{left:197.638500px;}
.x18_c00020{left:213.478635px;}
.x5_c00020{left:222.838950px;}
.x6_c00020{left:246.599100px;}
.x21_c00020{left:263.159385px;}
.x25_c00020{left:270.000000px;}
.x22_c00020{left:284.038950px;}
.x7_c00020{left:295.559685px;}
.x19_c00020{left:300.599100px;}
.x8_c00020{left:317.159385px;}
.x11_c00020{left:322.198785px;}
.x1a_c00020{left:323.639100px;}
.x9_c00020{left:339.838515px;}
.x12_c00020{left:347.758500px;}
.x23_c00020{left:363.239250px;}
.x24_c00020{left:376.559685px;}
.x2c_c00020{left:388.078815px;}
.x2d_c00020{left:409.678530px;}
.x1b_c00020{left:416.159820px;}
.x13_c00020{left:421.558635px;}
.x1c_c00020{left:435.239820px;}
.x14_c00020{left:445.679670px;}
.x1f_c00020{left:461.158770px;}
.x20_c00020{left:475.919535px;}
.x1d_c00020{left:477.359850px;}
.x15_c00020{left:478.798515px;}
.x2e_c00020{left:486.359250px;}
.x28_c00020{left:489.599070px;}
.x1e_c00020{left:495.719565px;}
.x16_c00020{left:499.679670px;}
.x2f_c00020{left:512.279850px;}
.x29_c00020{left:514.438665px;}
.x30_c00020{left:536.039985px;}
.x3_c00020{left:569.519670px;}
.x4_c00020{left:596.878920px;}
.x26_c00020{left:645.478635px;}
.xb_c00020{left:646.559685px;}
.x27_c00020{left:660.598530px;}
.xc_c00020{left:667.439250px;}
.x31_c00020{left:675.718545px;}
.x32_c00020{left:699.119385px;}
.xf_c00020{left:717.479235px;}
.x10_c00020{left:739.798920px;}
.x33_c00020{left:768.598575px;}
.x34_c00020{left:775.439205px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls8_c00020{letter-spacing:-16.666347pt;}
.ls21_c00020{letter-spacing:-11.592000pt;}
.ls24_c00020{letter-spacing:-8.667713pt;}
.ls2a_c00020{letter-spacing:-8.660267pt;}
.ls2b_c00020{letter-spacing:-8.356287pt;}
.lsf_c00020{letter-spacing:-7.924000pt;}
.ls28_c00020{letter-spacing:-7.360667pt;}
.lse_c00020{letter-spacing:-7.266700pt;}
.ls13_c00020{letter-spacing:-6.601000pt;}
.ls1c_c00020{letter-spacing:-6.318000pt;}
.ls16_c00020{letter-spacing:-5.943000pt;}
.ls10_c00020{letter-spacing:-5.285000pt;}
.ls11_c00020{letter-spacing:-4.750060pt;}
.ls17_c00020{letter-spacing:-4.664473pt;}
.lsc_c00020{letter-spacing:-4.619300pt;}
.ls20_c00020{letter-spacing:-4.493300pt;}
.lsd_c00020{letter-spacing:-3.961300pt;}
.ls2c_c00020{letter-spacing:-3.665200pt;}
.ls1a_c00020{letter-spacing:-3.611573pt;}
.ls2_c00020{letter-spacing:-3.304000pt;}
.ls1b_c00020{letter-spacing:-3.033333pt;}
.ls1d_c00020{letter-spacing:-2.852620pt;}
.ls27_c00020{letter-spacing:-2.842000pt;}
.ls1e_c00020{letter-spacing:-2.765700pt;}
.ls18_c00020{letter-spacing:-2.691333pt;}
.ls15_c00020{letter-spacing:-2.641600pt;}
.ls1_c00020{letter-spacing:-2.639000pt;}
.ls25_c00020{letter-spacing:-2.080000pt;}
.ls0_c00020{letter-spacing:-1.981700pt;}
.ls1f_c00020{letter-spacing:-1.533600pt;}
.ls4_c00020{letter-spacing:-1.323700pt;}
.ls22_c00020{letter-spacing:-0.755040pt;}
.ls19_c00020{letter-spacing:-0.732600pt;}
.ls7_c00020{letter-spacing:-0.714133pt;}
.ls9_c00020{letter-spacing:-0.693533pt;}
.ls3_c00020{letter-spacing:-0.658000pt;}
.ls5_c00020{letter-spacing:0.000000pt;}
.ls14_c00020{letter-spacing:0.639200pt;}
.ls23_c00020{letter-spacing:0.686667pt;}
.ls26_c00020{letter-spacing:0.762300pt;}
.lsa_c00020{letter-spacing:1.320000pt;}
.ls29_c00020{letter-spacing:2.639000pt;}
.ls12_c00020{letter-spacing:2.925200pt;}
.ls6_c00020{letter-spacing:3.113760pt;}
.lsb_c00020{letter-spacing:3.835260pt;}
.ws0_c00020{word-spacing:0.000000pt;}
._1d_c00020{margin-left:-17.760175pt;}
._1a_c00020{margin-left:-11.507630pt;}
._19_c00020{margin-left:-9.949668pt;}
._1e_c00020{margin-left:-7.295453pt;}
._9_c00020{margin-left:-5.969679pt;}
._c_c00020{margin-left:-4.876147pt;}
._1b_c00020{margin-left:-3.444528pt;}
._17_c00020{margin-left:-2.373462pt;}
._18_c00020{margin-left:-1.019808pt;}
._a_c00020{width:0.941408pt;}
._3_c00020{width:2.072211pt;}
._1_c00020{width:3.501070pt;}
._2_c00020{width:5.161958pt;}
._12_c00020{width:6.233460pt;}
._0_c00020{width:7.143764pt;}
._7_c00020{width:8.545191pt;}
._5_c00020{width:9.687947pt;}
._f_c00020{width:10.817457pt;}
._b_c00020{width:12.231906pt;}
._e_c00020{width:13.482092pt;}
._4_c00020{width:14.496736pt;}
._6_c00020{width:16.278223pt;}
._8_c00020{width:17.226472pt;}
._1c_c00020{width:18.448513pt;}
._1f_c00020{width:20.383485pt;}
._13_c00020{width:21.810600pt;}
._14_c00020{width:23.270496pt;}
._10_c00020{width:24.294887pt;}
._15_c00020{width:27.116177pt;}
._11_c00020{width:29.556153pt;}
._d_c00020{width:30.767668pt;}
._16_c00020{width:32.633762pt;}
.fs11_c00020{font-size:31.333333pt;}
.fsf_c00020{font-size:40.666667pt;}
.fs12_c00020{font-size:44.000000pt;}
.fsb_c00020{font-size:54.000000pt;}
.fs10_c00020{font-size:61.333333pt;}
.fse_c00020{font-size:65.333333pt;}
.fs4_c00020{font-size:66.000000pt;}
.fsa_c00020{font-size:66.666667pt;}
.fs7_c00020{font-size:68.000000pt;}
.fs3_c00020{font-size:68.666667pt;}
.fs1_c00020{font-size:69.333333pt;}
.fs0_c00020{font-size:70.000000pt;}
.fsc_c00020{font-size:71.333333pt;}
.fsd_c00020{font-size:72.000000pt;}
.fs8_c00020{font-size:72.666667pt;}
.fs9_c00020{font-size:73.333333pt;}
.fs5_c00020{font-size:74.000000pt;}
.fs2_c00020{font-size:74.666667pt;}
.fs6_c00020{font-size:90.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y29_c00020{bottom:224.639587pt;}
.y28_c00020{bottom:251.519467pt;}
.y27_c00020{bottom:251.519587pt;}
.y26_c00020{bottom:277.760787pt;}
.y24_c00020{bottom:304.319867pt;}
.y25_c00020{bottom:304.640667pt;}
.y22_c00020{bottom:330.879013pt;}
.y23_c00020{bottom:330.880387pt;}
.y21_c00020{bottom:357.438760pt;}
.y20_c00020{bottom:383.679947pt;}
.y1f_c00020{bottom:410.239707pt;}
.y1e_c00020{bottom:410.240493pt;}
.y1c_c00020{bottom:436.800213pt;}
.y1d_c00020{bottom:436.800253pt;}
.y1a_c00020{bottom:463.679827pt;}
.y1b_c00020{bottom:463.680133pt;}
.y19_c00020{bottom:516.480773pt;}
.y18_c00020{bottom:535.680133pt;}
.y17_c00020{bottom:535.681453pt;}
.y16_c00020{bottom:554.240240pt;}
.y15_c00020{bottom:573.121027pt;}
.y14_c00020{bottom:591.679813pt;}
.y13_c00020{bottom:610.880773pt;}
.y12_c00020{bottom:669.760253pt;}
.y11_c00020{bottom:690.880373pt;}
.y10_c00020{bottom:690.880653pt;}
.yf_c00020{bottom:717.120240pt;}
.ye_c00020{bottom:744.000160pt;}
.yc_c00020{bottom:770.239600pt;}
.yd_c00020{bottom:770.239747pt;}
.yb_c00020{bottom:797.119533pt;}
.ya_c00020{bottom:823.360720pt;}
.y8_c00020{bottom:850.240053pt;}
.y9_c00020{bottom:850.240640pt;}
.y7_c00020{bottom:876.799800pt;}
.y6_c00020{bottom:876.801080pt;}
.y5_c00020{bottom:903.040667pt;}
.y4_c00020{bottom:929.600427pt;}
.y3_c00020{bottom:956.800787pt;}
.y2_c00020{bottom:983.040533pt;}
.y1_c00020{bottom:1009.920413pt;}
.h19_c00020{height:30.966146pt;}
.h17_c00020{height:42.414062pt;}
.h1a_c00020{height:45.890625pt;}
.hd_c00020{height:53.367188pt;}
.h18_c00020{height:63.968750pt;}
.h6_c00020{height:64.775391pt;}
.h15_c00020{height:65.429688pt;}
.h9_c00020{height:66.738281pt;}
.h5_c00020{height:67.392578pt;}
.h2_c00020{height:68.046875pt;}
.h16_c00020{height:68.140625pt;}
.h1_c00020{height:68.701172pt;}
.h14_c00020{height:69.203125pt;}
.hc_c00020{height:69.531250pt;}
.h3_c00020{height:69.875000pt;}
.h11_c00020{height:70.009766pt;}
.hf_c00020{height:70.546875pt;}
.h13_c00020{height:70.664062pt;}
.ha_c00020{height:71.318359pt;}
.he_c00020{height:71.890625pt;}
.h12_c00020{height:71.972656pt;}
.h10_c00020{height:72.562500pt;}
.h7_c00020{height:72.626953pt;}
.h4_c00020{height:73.791667pt;}
.hb_c00020{height:73.906250pt;}
.h8_c00020{height:93.867188pt;}
.h0_c00020{height:1122.666667pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:126.719200pt;}
.xa_c00020{left:127.675067pt;}
.x2a_c00020{left:143.039067pt;}
.xd_c00020{left:150.399867pt;}
.x2_c00020{left:152.318813pt;}
.x2b_c00020{left:162.238813pt;}
.x17_c00020{left:172.798787pt;}
.xe_c00020{left:175.678667pt;}
.x18_c00020{left:189.758787pt;}
.x5_c00020{left:198.079067pt;}
.x6_c00020{left:219.199200pt;}
.x21_c00020{left:233.919453pt;}
.x25_c00020{left:240.000000pt;}
.x22_c00020{left:252.479067pt;}
.x7_c00020{left:262.719720pt;}
.x19_c00020{left:267.199200pt;}
.x8_c00020{left:281.919453pt;}
.x11_c00020{left:286.398920pt;}
.x1a_c00020{left:287.679200pt;}
.x9_c00020{left:302.078680pt;}
.x12_c00020{left:309.118667pt;}
.x23_c00020{left:322.879333pt;}
.x24_c00020{left:334.719720pt;}
.x2c_c00020{left:344.958947pt;}
.x2d_c00020{left:364.158693pt;}
.x1b_c00020{left:369.919840pt;}
.x13_c00020{left:374.718787pt;}
.x1c_c00020{left:386.879840pt;}
.x14_c00020{left:396.159707pt;}
.x1f_c00020{left:409.918907pt;}
.x20_c00020{left:423.039587pt;}
.x1d_c00020{left:424.319867pt;}
.x15_c00020{left:425.598680pt;}
.x2e_c00020{left:432.319333pt;}
.x28_c00020{left:435.199173pt;}
.x1e_c00020{left:440.639613pt;}
.x16_c00020{left:444.159707pt;}
.x2f_c00020{left:455.359867pt;}
.x29_c00020{left:457.278813pt;}
.x30_c00020{left:476.479987pt;}
.x3_c00020{left:506.239707pt;}
.x4_c00020{left:530.559040pt;}
.x26_c00020{left:573.758787pt;}
.xb_c00020{left:574.719720pt;}
.x27_c00020{left:587.198693pt;}
.xc_c00020{left:593.279333pt;}
.x31_c00020{left:600.638707pt;}
.x32_c00020{left:621.439453pt;}
.xf_c00020{left:637.759320pt;}
.x10_c00020{left:657.599040pt;}
.x33_c00020{left:683.198733pt;}
.x34_c00020{left:689.279293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4337f4100b35e8b60479ed4.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_f24a554f4622dc9827a4ef0d.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_e1501db139e1c518214b2aee.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.364746;font-style:normal;font-weight:normal;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_b11149e8a9e1a8fd6dfd1932.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_7e3690146cc34d8b40da962e.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_72226a38bfff7d5757465a1e.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;}
.m7_c00021{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m28_c00021{transform:matrix(0.237603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237603,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.mc_c00021{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m21_c00021{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);}
.m24_c00021{transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322222,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);}
.m1f_c00021{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_c00021{transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);}
.m1d_c00021{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_c00021{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_c00021{transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.354545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354545,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.647727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647727,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.817308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817308,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls12_c00021{letter-spacing:-8.914500px;}
.ls4_c00021{letter-spacing:-8.331600px;}
.ls1d_c00021{letter-spacing:-8.191125px;}
.lsf_c00021{letter-spacing:-8.175038px;}
.ls15_c00021{letter-spacing:-7.426125px;}
.lsb_c00021{letter-spacing:-6.685875px;}
.ls13_c00021{letter-spacing:-5.945625px;}
.ls11_c00021{letter-spacing:-5.196713px;}
.ls17_c00021{letter-spacing:-4.760250px;}
.lsd_c00021{letter-spacing:-4.456463px;}
.ls2f_c00021{letter-spacing:-3.947625px;}
.lse_c00021{letter-spacing:-3.717000px;}
.ls25_c00021{letter-spacing:-3.704760px;}
.ls10_c00021{letter-spacing:-3.455400px;}
.ls9_c00021{letter-spacing:-2.968875px;}
.ls2e_c00021{letter-spacing:-2.359350px;}
.ls23_c00021{letter-spacing:-2.237925px;}
.lsa_c00021{letter-spacing:-2.229413px;}
.ls14_c00021{letter-spacing:-2.142000px;}
.ls8_c00021{letter-spacing:-1.489163px;}
.ls5_c00021{letter-spacing:-0.795375px;}
.ls16_c00021{letter-spacing:-0.749700px;}
.lsc_c00021{letter-spacing:-0.740250px;}
.ls3_c00021{letter-spacing:0.000000px;}
.ls1e_c00021{letter-spacing:0.458250px;}
.ls1a_c00021{letter-spacing:0.536063px;}
.ls27_c00021{letter-spacing:0.921600px;}
.ls2a_c00021{letter-spacing:1.168650px;}
.ls1b_c00021{letter-spacing:1.171875px;}
.ls2b_c00021{letter-spacing:1.548030px;}
.ls28_c00021{letter-spacing:1.706250px;}
.ls22_c00021{letter-spacing:1.808625px;}
.ls20_c00021{letter-spacing:1.811700px;}
.ls29_c00021{letter-spacing:2.163375px;}
.ls26_c00021{letter-spacing:2.205375px;}
.ls1_c00021{letter-spacing:2.229413px;}
.ls6_c00021{letter-spacing:2.271878px;}
.ls24_c00021{letter-spacing:2.327910px;}
.ls18_c00021{letter-spacing:3.394800px;}
.ls2_c00021{letter-spacing:3.677700px;}
.ls0_c00021{letter-spacing:3.977663px;}
.ls21_c00021{letter-spacing:4.118850px;}
.ls1c_c00021{letter-spacing:4.342800px;}
.ls1f_c00021{letter-spacing:4.414800px;}
.ls7_c00021{letter-spacing:4.636500px;}
.ls2d_c00021{letter-spacing:4.653787px;}
.ls19_c00021{letter-spacing:4.755600px;}
.ls2c_c00021{letter-spacing:9.291600px;}
.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;}
._0_c00021{margin-left:-48.115335px;}
._13_c00021{margin-left:-20.746420px;}
._15_c00021{margin-left:-11.965602px;}
._1e_c00021{margin-left:-10.505666px;}
._1d_c00021{margin-left:-8.463166px;}
._11_c00021{margin-left:-6.359100px;}
._4_c00021{margin-left:-3.561721px;}
._2_c00021{margin-left:-2.308252px;}
._1b_c00021{margin-left:-1.007941px;}
._1c_c00021{width:1.149222px;}
._3_c00021{width:2.705486px;}
._1f_c00021{width:3.765439px;}
._1_c00021{width:4.890709px;}
._f_c00021{width:6.773986px;}
._10_c00021{width:7.799519px;}
._16_c00021{width:9.735862px;}
._17_c00021{width:11.851518px;}
._e_c00021{width:13.458524px;}
._14_c00021{width:14.726101px;}
._19_c00021{width:16.322290px;}
._18_c00021{width:17.739775px;}
._12_c00021{width:19.349752px;}
._9_c00021{width:21.233883px;}
._20_c00021{width:22.310975px;}
._1a_c00021{width:23.656351px;}
._8_c00021{width:24.731111px;}
._5_c00021{width:27.769523px;}
._7_c00021{width:29.455873px;}
._a_c00021{width:31.953600px;}
._6_c00021{width:33.520027px;}
._d_c00021{width:40.793689px;}
._b_c00021{width:42.107417px;}
._c_c00021{width:57.860924px;}
.fc0_c00021{color:transparent;}
.fsb_c00021{font-size:16.500000px;}
.fsa_c00021{font-size:18.750000px;}
.fsd_c00021{font-size:19.500000px;}
.fsf_c00021{font-size:24.750000px;}
.fs14_c00021{font-size:33.000000px;}
.fs15_c00021{font-size:33.750000px;}
.fs9_c00021{font-size:36.000000px;}
.fs13_c00021{font-size:36.750000px;}
.fs12_c00021{font-size:37.500000px;}
.fse_c00021{font-size:39.000000px;}
.fs11_c00021{font-size:39.750000px;}
.fs10_c00021{font-size:40.500000px;}
.fs8_c00021{font-size:41.250000px;}
.fs5_c00021{font-size:72.750000px;}
.fs7_c00021{font-size:76.500000px;}
.fs6_c00021{font-size:78.000000px;}
.fs2_c00021{font-size:78.750000px;}
.fs1_c00021{font-size:79.500000px;}
.fs3_c00021{font-size:80.250000px;}
.fs0_c00021{font-size:81.000000px;}
.fs4_c00021{font-size:82.500000px;}
.fs16_c00021{font-size:90.750000px;}
.fsc_c00021{font-size:101.250000px;}
.y0_c00021{bottom:0.000000px;}
.y2d_c00021{bottom:208.799490px;}
.y2c_c00021{bottom:238.679220px;}
.y2b_c00021{bottom:268.198740px;}
.y2a_c00021{bottom:298.438665px;}
.y28_c00021{bottom:327.958665px;}
.y29_c00021{bottom:327.960000px;}
.y27_c00021{bottom:357.838395px;}
.y26_c00021{bottom:387.357930px;}
.y25_c00021{bottom:416.519070px;}
.y23_c00021{bottom:446.038260px;}
.y24_c00021{bottom:446.038920px;}
.y22_c00021{bottom:476.998860px;}
.y20_c00021{bottom:507.238725px;}
.y21_c00021{bottom:507.238770px;}
.y1f_c00021{bottom:536.760060px;}
.y1e_c00021{bottom:566.639790px;}
.y1c_c00021{bottom:624.959220px;}
.y1d_c00021{bottom:624.959970px;}
.y1b_c00021{bottom:654.838950px;}
.y1a_c00021{bottom:685.078860px;}
.y19_c00021{bottom:715.318770px;}
.y13_c00021{bottom:744.840135px;}
.y14_c00021{bottom:745.019670px;}
.y15_c00021{bottom:745.199385px;}
.y16_c00021{bottom:745.378920px;}
.y17_c00021{bottom:745.560285px;}
.y18_c00021{bottom:745.739820px;}
.y12_c00021{bottom:752.039985px;}
.y11_c00021{bottom:775.079955px;}
.y10_c00021{bottom:805.319820px;}
.yf_c00021{bottom:805.319955px;}
.ye_c00021{bottom:835.199685px;}
.yd_c00021{bottom:865.079400px;}
.yc_c00021{bottom:865.080300px;}
.ya_c00021{bottom:894.959355px;}
.yb_c00021{bottom:894.960015px;}
.y9_c00021{bottom:924.839085px;}
.y8_c00021{bottom:954.358605px;}
.y6_c00021{bottom:984.599460px;}
.y7_c00021{bottom:984.600135px;}
.y4_c00021{bottom:1014.478800px;}
.y5_c00021{bottom:1014.479190px;}
.y3_c00021{bottom:1044.539685px;}
.y2_c00021{bottom:1074.958920px;}
.y1_c00021{bottom:1134.359250px;}
.hf_c00021{height:17.208984px;}
.he_c00021{height:19.555664px;}
.h11_c00021{height:20.337891px;}
.h13_c00021{height:25.813477px;}
.h1b_c00021{height:33.123779px;}
.h1a_c00021{height:34.417969px;}
.h18_c00021{height:35.332031px;}
.h19_c00021{height:36.068115px;}
.h17_c00021{height:36.804199px;}
.hd_c00021{height:37.546875px;}
.h16_c00021{height:38.276367px;}
.h15_c00021{height:39.012451px;}
.h14_c00021{height:39.748535px;}
.h12_c00021{height:40.675781px;}
.hc_c00021{height:40.766602px;}
.h6_c00021{height:71.400146px;}
.hb_c00021{height:75.080566px;}
.h9_c00021{height:76.552734px;}
.h7_c00021{height:77.288818px;}
.ha_c00021{height:78.760986px;}
.h3_c00021{height:79.365234px;}
.h2_c00021{height:80.121094px;}
.h4_c00021{height:80.876953px;}
.h8_c00021{height:80.969238px;}
.h1_c00021{height:81.632812px;}
.h5_c00021{height:83.144531px;}
.h1c_c00021{height:89.686523px;}
.h10_c00021{height:105.600586px;}
.h0_c00021{height:1263.000000px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:136.438665px;}
.x9_c00021{left:137.878095px;}
.x6_c00021{left:154.439250px;}
.x2_c00021{left:173.159850px;}
.x19_c00021{left:193.678500px;}
.x3_c00021{left:200.519100px;}
.x26_c00021{left:203.399850px;}
.x27_c00021{left:218.158785px;}
.x1a_c00021{left:243.718500px;}
.x2e_c00021{left:260.278800px;}
.x1b_c00021{left:262.439250px;}
.x2f_c00021{left:275.039385px;}
.x28_c00021{left:277.559100px;}
.x14_c00021{left:309.598530px;}
.x1c_c00021{left:313.199385px;}
.x15_c00021{left:331.199850px;}
.x1d_c00021{left:333.358635px;}
.x2d_c00021{left:346.319850px;}
.x4_c00021{left:350.639100px;}
.x5_c00021{left:391.679670px;}
.x1e_c00021{left:400.319820px;}
.xa_c00021{left:410.759535px;}
.x7_c00021{left:431.639100px;}
.xb_c00021{left:434.878920px;}
.x1f_c00021{left:435.958335px;}
.x8_c00021{left:455.399235px;}
.xf_c00021{left:473.399820px;}
.x20_c00021{left:480.958920px;}
.x10_c00021{left:486.359250px;}
.x21_c00021{left:504.719100px;}
.x16_c00021{left:530.998950px;}
.x17_c00021{left:545.759535px;}
.x18_c00021{left:568.079400px;}
.x22_c00021{left:573.838950px;}
.x29_c00021{left:575.279250px;}
.x2a_c00021{left:589.319820px;}
.x24_c00021{left:595.799520px;}
.x2b_c00021{left:660.239220px;}
.x2c_c00021{left:682.918350px;}
.x11_c00021{left:691.558635px;}
.x23_c00021{left:698.039985px;}
.x25_c00021{left:699.119385px;}
.x12_c00021{left:704.519670px;}
.xd_c00021{left:721.798560px;}
.xe_c00021{left:739.078770px;}
.x13_c00021{left:758.158770px;}
.xc_c00021{left:768.598575px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls12_c00021{letter-spacing:-7.924000pt;}
.ls4_c00021{letter-spacing:-7.405867pt;}
.ls1d_c00021{letter-spacing:-7.281000pt;}
.lsf_c00021{letter-spacing:-7.266700pt;}
.ls15_c00021{letter-spacing:-6.601000pt;}
.lsb_c00021{letter-spacing:-5.943000pt;}
.ls13_c00021{letter-spacing:-5.285000pt;}
.ls11_c00021{letter-spacing:-4.619300pt;}
.ls17_c00021{letter-spacing:-4.231333pt;}
.lsd_c00021{letter-spacing:-3.961300pt;}
.ls2f_c00021{letter-spacing:-3.509000pt;}
.lse_c00021{letter-spacing:-3.304000pt;}
.ls25_c00021{letter-spacing:-3.293120pt;}
.ls10_c00021{letter-spacing:-3.071467pt;}
.ls9_c00021{letter-spacing:-2.639000pt;}
.ls2e_c00021{letter-spacing:-2.097200pt;}
.ls23_c00021{letter-spacing:-1.989267pt;}
.lsa_c00021{letter-spacing:-1.981700pt;}
.ls14_c00021{letter-spacing:-1.904000pt;}
.ls8_c00021{letter-spacing:-1.323700pt;}
.ls5_c00021{letter-spacing:-0.707000pt;}
.ls16_c00021{letter-spacing:-0.666400pt;}
.lsc_c00021{letter-spacing:-0.658000pt;}
.ls3_c00021{letter-spacing:0.000000pt;}
.ls1e_c00021{letter-spacing:0.407333pt;}
.ls1a_c00021{letter-spacing:0.476500pt;}
.ls27_c00021{letter-spacing:0.819200pt;}
.ls2a_c00021{letter-spacing:1.038800pt;}
.ls1b_c00021{letter-spacing:1.041667pt;}
.ls2b_c00021{letter-spacing:1.376027pt;}
.ls28_c00021{letter-spacing:1.516667pt;}
.ls22_c00021{letter-spacing:1.607667pt;}
.ls20_c00021{letter-spacing:1.610400pt;}
.ls29_c00021{letter-spacing:1.923000pt;}
.ls26_c00021{letter-spacing:1.960333pt;}
.ls1_c00021{letter-spacing:1.981700pt;}
.ls6_c00021{letter-spacing:2.019447pt;}
.ls24_c00021{letter-spacing:2.069253pt;}
.ls18_c00021{letter-spacing:3.017600pt;}
.ls2_c00021{letter-spacing:3.269067pt;}
.ls0_c00021{letter-spacing:3.535700pt;}
.ls21_c00021{letter-spacing:3.661200pt;}
.ls1c_c00021{letter-spacing:3.860267pt;}
.ls1f_c00021{letter-spacing:3.924267pt;}
.ls7_c00021{letter-spacing:4.121333pt;}
.ls2d_c00021{letter-spacing:4.136700pt;}
.ls19_c00021{letter-spacing:4.227200pt;}
.ls2c_c00021{letter-spacing:8.259200pt;}
.ws0_c00021{word-spacing:0.000000pt;}
._0_c00021{margin-left:-42.769187pt;}
._13_c00021{margin-left:-18.441262pt;}
._15_c00021{margin-left:-10.636091pt;}
._1e_c00021{margin-left:-9.338370pt;}
._1d_c00021{margin-left:-7.522814pt;}
._11_c00021{margin-left:-5.652533pt;}
._4_c00021{margin-left:-3.165974pt;}
._2_c00021{margin-left:-2.051779pt;}
._1b_c00021{margin-left:-0.895947pt;}
._1c_c00021{width:1.021531pt;}
._3_c00021{width:2.404877pt;}
._1f_c00021{width:3.347057pt;}
._1_c00021{width:4.347297pt;}
._f_c00021{width:6.021321pt;}
._10_c00021{width:6.932906pt;}
._16_c00021{width:8.654100pt;}
._17_c00021{width:10.534683pt;}
._e_c00021{width:11.963132pt;}
._14_c00021{width:13.089868pt;}
._19_c00021{width:14.508702pt;}
._18_c00021{width:15.768689pt;}
._12_c00021{width:17.199779pt;}
._9_c00021{width:18.874562pt;}
._20_c00021{width:19.831977pt;}
._1a_c00021{width:21.027868pt;}
._8_c00021{width:21.983209pt;}
._5_c00021{width:24.684021pt;}
._7_c00021{width:26.182998pt;}
._a_c00021{width:28.403200pt;}
._6_c00021{width:29.795579pt;}
._d_c00021{width:36.261057pt;}
._b_c00021{width:37.428815pt;}
._c_c00021{width:51.431932pt;}
.fsb_c00021{font-size:14.666667pt;}
.fsa_c00021{font-size:16.666667pt;}
.fsd_c00021{font-size:17.333333pt;}
.fsf_c00021{font-size:22.000000pt;}
.fs14_c00021{font-size:29.333333pt;}
.fs15_c00021{font-size:30.000000pt;}
.fs9_c00021{font-size:32.000000pt;}
.fs13_c00021{font-size:32.666667pt;}
.fs12_c00021{font-size:33.333333pt;}
.fse_c00021{font-size:34.666667pt;}
.fs11_c00021{font-size:35.333333pt;}
.fs10_c00021{font-size:36.000000pt;}
.fs8_c00021{font-size:36.666667pt;}
.fs5_c00021{font-size:64.666667pt;}
.fs7_c00021{font-size:68.000000pt;}
.fs6_c00021{font-size:69.333333pt;}
.fs2_c00021{font-size:70.000000pt;}
.fs1_c00021{font-size:70.666667pt;}
.fs3_c00021{font-size:71.333333pt;}
.fs0_c00021{font-size:72.000000pt;}
.fs4_c00021{font-size:73.333333pt;}
.fs16_c00021{font-size:80.666667pt;}
.fsc_c00021{font-size:90.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y2d_c00021{bottom:185.599547pt;}
.y2c_c00021{bottom:212.159307pt;}
.y2b_c00021{bottom:238.398880pt;}
.y2a_c00021{bottom:265.278813pt;}
.y28_c00021{bottom:291.518813pt;}
.y29_c00021{bottom:291.520000pt;}
.y27_c00021{bottom:318.078573pt;}
.y26_c00021{bottom:344.318160pt;}
.y25_c00021{bottom:370.239173pt;}
.y23_c00021{bottom:396.478453pt;}
.y24_c00021{bottom:396.479040pt;}
.y22_c00021{bottom:423.998987pt;}
.y20_c00021{bottom:450.878867pt;}
.y21_c00021{bottom:450.878907pt;}
.y1f_c00021{bottom:477.120053pt;}
.y1e_c00021{bottom:503.679813pt;}
.y1c_c00021{bottom:555.519307pt;}
.y1d_c00021{bottom:555.519973pt;}
.y1b_c00021{bottom:582.079067pt;}
.y1a_c00021{bottom:608.958987pt;}
.y19_c00021{bottom:635.838907pt;}
.y13_c00021{bottom:662.080120pt;}
.y14_c00021{bottom:662.239707pt;}
.y15_c00021{bottom:662.399453pt;}
.y16_c00021{bottom:662.559040pt;}
.y17_c00021{bottom:662.720253pt;}
.y18_c00021{bottom:662.879840pt;}
.y12_c00021{bottom:668.479987pt;}
.y11_c00021{bottom:688.959960pt;}
.y10_c00021{bottom:715.839840pt;}
.yf_c00021{bottom:715.839960pt;}
.ye_c00021{bottom:742.399720pt;}
.yd_c00021{bottom:768.959467pt;}
.yc_c00021{bottom:768.960267pt;}
.ya_c00021{bottom:795.519427pt;}
.yb_c00021{bottom:795.520013pt;}
.y9_c00021{bottom:822.079187pt;}
.y8_c00021{bottom:848.318760pt;}
.y6_c00021{bottom:875.199520pt;}
.y7_c00021{bottom:875.200120pt;}
.y4_c00021{bottom:901.758933pt;}
.y5_c00021{bottom:901.759280pt;}
.y3_c00021{bottom:928.479720pt;}
.y2_c00021{bottom:955.519040pt;}
.y1_c00021{bottom:1008.319333pt;}
.hf_c00021{height:15.296875pt;}
.he_c00021{height:17.382812pt;}
.h11_c00021{height:18.078125pt;}
.h13_c00021{height:22.945312pt;}
.h1b_c00021{height:29.443359pt;}
.h1a_c00021{height:30.593750pt;}
.h18_c00021{height:31.406250pt;}
.h19_c00021{height:32.060547pt;}
.h17_c00021{height:32.714844pt;}
.hd_c00021{height:33.375000pt;}
.h16_c00021{height:34.023438pt;}
.h15_c00021{height:34.677734pt;}
.h14_c00021{height:35.332031pt;}
.h12_c00021{height:36.156250pt;}
.hc_c00021{height:36.236979pt;}
.h6_c00021{height:63.466797pt;}
.hb_c00021{height:66.738281pt;}
.h9_c00021{height:68.046875pt;}
.h7_c00021{height:68.701172pt;}
.ha_c00021{height:70.009766pt;}
.h3_c00021{height:70.546875pt;}
.h2_c00021{height:71.218750pt;}
.h4_c00021{height:71.890625pt;}
.h8_c00021{height:71.972656pt;}
.h1_c00021{height:72.562500pt;}
.h5_c00021{height:73.906250pt;}
.h1c_c00021{height:79.721354pt;}
.h10_c00021{height:93.867188pt;}
.h0_c00021{height:1122.666667pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:121.278813pt;}
.x9_c00021{left:122.558307pt;}
.x6_c00021{left:137.279333pt;}
.x2_c00021{left:153.919867pt;}
.x19_c00021{left:172.158667pt;}
.x3_c00021{left:178.239200pt;}
.x26_c00021{left:180.799867pt;}
.x27_c00021{left:193.918920pt;}
.x1a_c00021{left:216.638667pt;}
.x2e_c00021{left:231.358933pt;}
.x1b_c00021{left:233.279333pt;}
.x2f_c00021{left:244.479453pt;}
.x28_c00021{left:246.719200pt;}
.x14_c00021{left:275.198693pt;}
.x1c_c00021{left:278.399453pt;}
.x15_c00021{left:294.399867pt;}
.x1d_c00021{left:296.318787pt;}
.x2d_c00021{left:307.839867pt;}
.x4_c00021{left:311.679200pt;}
.x5_c00021{left:348.159707pt;}
.x1e_c00021{left:355.839840pt;}
.xa_c00021{left:365.119587pt;}
.x7_c00021{left:383.679200pt;}
.xb_c00021{left:386.559040pt;}
.x1f_c00021{left:387.518520pt;}
.x8_c00021{left:404.799320pt;}
.xf_c00021{left:420.799840pt;}
.x20_c00021{left:427.519040pt;}
.x10_c00021{left:432.319333pt;}
.x21_c00021{left:448.639200pt;}
.x16_c00021{left:471.999067pt;}
.x17_c00021{left:485.119587pt;}
.x18_c00021{left:504.959467pt;}
.x22_c00021{left:510.079067pt;}
.x29_c00021{left:511.359333pt;}
.x2a_c00021{left:523.839840pt;}
.x24_c00021{left:529.599573pt;}
.x2b_c00021{left:586.879307pt;}
.x2c_c00021{left:607.038533pt;}
.x11_c00021{left:614.718787pt;}
.x23_c00021{left:620.479987pt;}
.x25_c00021{left:621.439453pt;}
.x12_c00021{left:626.239707pt;}
.xd_c00021{left:641.598720pt;}
.xe_c00021{left:656.958907pt;}
.x13_c00021{left:673.918907pt;}
.xc_c00021{left:683.198733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6e957e29615426739092952.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;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_e0f3588f7ebad77faa6a60bb.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_462ab6b95f0d7840ecfe31b4.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_cdff252c4e8064f3ee7f9a31.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_046785a0586967ab3fbe6dce.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00022{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m17_c00022{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m15_c00022{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m1f_c00022{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m21_c00022{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1e_c00022{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{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_c00022{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.304455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304455,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls1d_c00022{letter-spacing:-12.019875px;}
.ls1b_c00022{letter-spacing:-9.941303px;}
.ls11_c00022{letter-spacing:-8.914500px;}
.ls8_c00022{letter-spacing:-7.426125px;}
.ls24_c00022{letter-spacing:-6.685875px;}
.ls10_c00022{letter-spacing:-6.572700px;}
.ls27_c00022{letter-spacing:-6.000300px;}
.ls23_c00022{letter-spacing:-5.945625px;}
.ls1f_c00022{letter-spacing:-5.614110px;}
.ls25_c00022{letter-spacing:-5.350800px;}
.ls12_c00022{letter-spacing:-5.203125px;}
.ls6_c00022{letter-spacing:-5.196713px;}
.ls1c_c00022{letter-spacing:-4.809750px;}
.ls16_c00022{letter-spacing:-4.795875px;}
.lsb_c00022{letter-spacing:-4.496625px;}
.ls7_c00022{letter-spacing:-4.456463px;}
.ls2c_c00022{letter-spacing:-4.410975px;}
.ls18_c00022{letter-spacing:-4.116825px;}
.lsf_c00022{letter-spacing:-3.717000px;}
.lsc_c00022{letter-spacing:-3.388950px;}
.ls14_c00022{letter-spacing:-3.265785px;}
.ls2_c00022{letter-spacing:-2.968875px;}
.ls15_c00022{letter-spacing:-2.886075px;}
.lse_c00022{letter-spacing:-2.761200px;}
.ls20_c00022{letter-spacing:-2.315790px;}
.ls3_c00022{letter-spacing:-2.229413px;}
.ls26_c00022{letter-spacing:-2.224028px;}
.ls19_c00022{letter-spacing:-1.544288px;}
.lsd_c00022{letter-spacing:-1.530000px;}
.ls29_c00022{letter-spacing:-1.510500px;}
.ls4_c00022{letter-spacing:-1.489163px;}
.ls9_c00022{letter-spacing:-0.740250px;}
.ls5_c00022{letter-spacing:0.000000px;}
.ls1_c00022{letter-spacing:0.740250px;}
.ls2b_c00022{letter-spacing:0.765075px;}
.ls0_c00022{letter-spacing:1.489163px;}
.ls1a_c00022{letter-spacing:1.545300px;}
.lsa_c00022{letter-spacing:1.645800px;}
.ls13_c00022{letter-spacing:1.823310px;}
.ls2a_c00022{letter-spacing:3.315375px;}
.ls28_c00022{letter-spacing:3.637710px;}
.ls22_c00022{letter-spacing:5.249520px;}
.ls17_c00022{letter-spacing:6.055875px;}
.ls1e_c00022{letter-spacing:9.109905px;}
.ls21_c00022{letter-spacing:18.933300px;}
.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;}
._13_c00022{margin-left:-9.079429px;}
._11_c00022{margin-left:-7.632108px;}
._d_c00022{margin-left:-6.253419px;}
._1d_c00022{margin-left:-4.720691px;}
._12_c00022{margin-left:-3.719407px;}
._14_c00022{margin-left:-1.416296px;}
._15_c00022{width:1.647613px;}
._16_c00022{width:3.173239px;}
._18_c00022{width:5.234676px;}
._1c_c00022{width:6.394827px;}
._17_c00022{width:7.400613px;}
._10_c00022{width:8.453902px;}
._2_c00022{width:10.132391px;}
._5_c00022{width:11.479551px;}
._1_c00022{width:13.005785px;}
._4_c00022{width:14.302976px;}
._3_c00022{width:15.729332px;}
._1b_c00022{width:17.035527px;}
._0_c00022{width:18.136036px;}
._9_c00022{width:19.251478px;}
._1e_c00022{width:20.325732px;}
._8_c00022{width:21.392244px;}
._c_c00022{width:23.333298px;}
._6_c00022{width:24.467001px;}
._1a_c00022{width:26.714407px;}
._b_c00022{width:28.368870px;}
._7_c00022{width:31.079817px;}
._a_c00022{width:33.854209px;}
._19_c00022{width:36.864703px;}
._f_c00022{width:40.091358px;}
._1f_c00022{width:41.544562px;}
._e_c00022{width:44.305047px;}
.fc0_c00022{color:transparent;}
.fs4_c00022{font-size:38.250000px;}
.fsb_c00022{font-size:71.250000px;}
.fsd_c00022{font-size:72.000000px;}
.fs10_c00022{font-size:75.000000px;}
.fs9_c00022{font-size:75.750000px;}
.fs3_c00022{font-size:76.500000px;}
.fsa_c00022{font-size:77.250000px;}
.fs2_c00022{font-size:78.000000px;}
.fs0_c00022{font-size:78.750000px;}
.fsc_c00022{font-size:79.500000px;}
.fs1_c00022{font-size:80.250000px;}
.fs8_c00022{font-size:81.000000px;}
.fs5_c00022{font-size:81.750000px;}
.fs6_c00022{font-size:82.500000px;}
.fs7_c00022{font-size:83.250000px;}
.fsf_c00022{font-size:84.750000px;}
.fse_c00022{font-size:101.250000px;}
.y0_c00022{bottom:0.000000px;}
.y33_c00022{bottom:177.840150px;}
.y32_c00022{bottom:208.080000px;}
.y31_c00022{bottom:208.080870px;}
.y2f_c00022{bottom:237.959820px;}
.y30_c00022{bottom:237.960600px;}
.y2e_c00022{bottom:267.839535px;}
.y2d_c00022{bottom:267.839565px;}
.y2c_c00022{bottom:297.360900px;}
.y2a_c00022{bottom:326.879820px;}
.y2b_c00022{bottom:326.880585px;}
.y29_c00022{bottom:356.759535px;}
.y28_c00022{bottom:356.760435px;}
.y27_c00022{bottom:386.640150px;}
.y26_c00022{bottom:386.641095px;}
.y25_c00022{bottom:416.520810px;}
.y24_c00022{bottom:446.760720px;}
.y23_c00022{bottom:477.360690px;}
.y21_c00022{bottom:507.239730px;}
.y22_c00022{bottom:507.240420px;}
.y20_c00022{bottom:536.400885px;}
.y1e_c00022{bottom:565.920015px;}
.y1f_c00022{bottom:565.920600px;}
.y1d_c00022{bottom:625.679460px;}
.y1c_c00022{bottom:647.640750px;}
.y1b_c00022{bottom:668.881170px;}
.y1a_c00022{bottom:668.881185px;}
.y19_c00022{bottom:690.119985px;}
.y18_c00022{bottom:749.881170px;}
.y16_c00022{bottom:779.400840px;}
.y17_c00022{bottom:779.400885px;}
.y14_c00022{bottom:809.639985px;}
.y15_c00022{bottom:809.640750px;}
.y13_c00022{bottom:839.519715px;}
.y12_c00022{bottom:839.520510px;}
.y11_c00022{bottom:869.400240px;}
.y10_c00022{bottom:869.400420px;}
.yf_c00022{bottom:898.919955px;}
.ye_c00022{bottom:898.920840px;}
.yd_c00022{bottom:928.800570px;}
.yb_c00022{bottom:959.040480px;}
.yc_c00022{bottom:959.040615px;}
.ya_c00022{bottom:989.280390px;}
.y9_c00022{bottom:989.281290px;}
.y7_c00022{bottom:1019.160780px;}
.y8_c00022{bottom:1019.161005px;}
.y6_c00022{bottom:1048.319820px;}
.y5_c00022{bottom:1074.240420px;}
.y4_c00022{bottom:1078.200435px;}
.y3_c00022{bottom:1078.201425px;}
.y2_c00022{bottom:1107.720960px;}
.y1_c00022{bottom:1137.600675px;}
.h5_c00022{height:37.801758px;}
.h15_c00022{height:73.608398px;}
.hd_c00022{height:74.311523px;}
.ha_c00022{height:74.344482px;}
.h4_c00022{height:75.080566px;}
.h12_c00022{height:75.093750px;}
.hc_c00022{height:75.816650px;}
.h3_c00022{height:76.552734px;}
.hb_c00022{height:77.097656px;}
.h1_c00022{height:77.288818px;}
.he_c00022{height:78.024902px;}
.h2_c00022{height:78.760986px;}
.h10_c00022{height:79.004883px;}
.h9_c00022{height:79.497070px;}
.h6_c00022{height:80.233154px;}
.h7_c00022{height:80.969238px;}
.hf_c00022{height:81.632812px;}
.h8_c00022{height:81.705322px;}
.h11_c00022{height:82.388672px;}
.h14_c00022{height:83.177490px;}
.h13_c00022{height:105.600586px;}
.h0_c00022{height:1263.000000px;}
.w0_c00022{width:892.500000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:137.878950px;}
.xf_c00022{left:139.318020px;}
.x23_c00022{left:161.639100px;}
.x38_c00022{left:163.438665px;}
.x2e_c00022{left:192.240915px;}
.x2b_c00022{left:193.678500px;}
.xc_c00022{left:213.478635px;}
.x1d_c00022{left:233.998950px;}
.xd_c00022{left:236.518635px;}
.x1e_c00022{left:254.159850px;}
.x11_c00022{left:260.998950px;}
.x24_c00022{left:273.958350px;}
.x12_c00022{left:280.798950px;}
.x4_c00022{left:312.479235px;}
.x18_c00022{left:328.319250px;}
.x21_c00022{left:335.878350px;}
.x19_c00022{left:352.799535px;}
.x22_c00022{left:356.759535px;}
.x5_c00022{left:359.638530px;}
.x2_c00022{left:367.558635px;}
.x3_c00022{left:384.838950px;}
.xe_c00022{left:386.279250px;}
.x36_c00022{left:390.239220px;}
.x34_c00022{left:392.759085px;}
.x6_c00022{left:393.838530px;}
.x40_c00022{left:402.119385px;}
.xa_c00022{left:406.438665px;}
.x25_c00022{left:408.958335px;}
.x35_c00022{left:412.199850px;}
.x37_c00022{left:415.798920px;}
.xb_c00022{left:423.359850px;}
.x1a_c00022{left:432.000000px;}
.x26_c00022{left:451.080000px;}
.x1b_c00022{left:455.039985px;}
.x41_c00022{left:477.719100px;}
.x1f_c00022{left:479.518620px;}
.x42_c00022{left:497.159820px;}
.x27_c00022{left:500.759085px;}
.x20_c00022{left:503.998950px;}
.x2c_c00022{left:520.918350px;}
.x39_c00022{left:522.358665px;}
.x2d_c00022{left:532.439250px;}
.x3a_c00022{left:546.118785px;}
.x3b_c00022{left:557.998950px;}
.x28_c00022{left:584.639700px;}
.x14_c00022{left:593.639100px;}
.x3c_c00022{left:605.519070px;}
.x15_c00022{left:615.599670px;}
.x43_c00022{left:634.679670px;}
.x31_c00022{left:638.639700px;}
.x29_c00022{left:647.279850px;}
.x44_c00022{left:650.158770px;}
.x32_c00022{left:661.318770px;}
.x7_c00022{left:665.998950px;}
.x3e_c00022{left:671.399235px;}
.x3f_c00022{left:689.038920px;}
.x8_c00022{left:697.319820px;}
.x16_c00022{left:707.039385px;}
.x2a_c00022{left:728.639100px;}
.x17_c00022{left:733.678530px;}
.x3d_c00022{left:739.439670px;}
.x10_c00022{left:748.798560px;}
.x1c_c00022{left:753.839535px;}
.x33_c00022{left:754.918950px;}
.x2f_c00022{left:758.878920px;}
.x45_c00022{left:760.678530px;}
.x9_c00022{left:765.719520px;}
.x30_c00022{left:770.038965px;}
.x13_c00022{left:771.479190px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls1d_c00022{letter-spacing:-10.684333pt;}
.ls1b_c00022{letter-spacing:-8.836713pt;}
.ls11_c00022{letter-spacing:-7.924000pt;}
.ls8_c00022{letter-spacing:-6.601000pt;}
.ls24_c00022{letter-spacing:-5.943000pt;}
.ls10_c00022{letter-spacing:-5.842400pt;}
.ls27_c00022{letter-spacing:-5.333600pt;}
.ls23_c00022{letter-spacing:-5.285000pt;}
.ls1f_c00022{letter-spacing:-4.990320pt;}
.ls25_c00022{letter-spacing:-4.756267pt;}
.ls12_c00022{letter-spacing:-4.625000pt;}
.ls6_c00022{letter-spacing:-4.619300pt;}
.ls1c_c00022{letter-spacing:-4.275333pt;}
.ls16_c00022{letter-spacing:-4.263000pt;}
.lsb_c00022{letter-spacing:-3.997000pt;}
.ls7_c00022{letter-spacing:-3.961300pt;}
.ls2c_c00022{letter-spacing:-3.920867pt;}
.ls18_c00022{letter-spacing:-3.659400pt;}
.lsf_c00022{letter-spacing:-3.304000pt;}
.lsc_c00022{letter-spacing:-3.012400pt;}
.ls14_c00022{letter-spacing:-2.902920pt;}
.ls2_c00022{letter-spacing:-2.639000pt;}
.ls15_c00022{letter-spacing:-2.565400pt;}
.lse_c00022{letter-spacing:-2.454400pt;}
.ls20_c00022{letter-spacing:-2.058480pt;}
.ls3_c00022{letter-spacing:-1.981700pt;}
.ls26_c00022{letter-spacing:-1.976913pt;}
.ls19_c00022{letter-spacing:-1.372700pt;}
.lsd_c00022{letter-spacing:-1.360000pt;}
.ls29_c00022{letter-spacing:-1.342667pt;}
.ls4_c00022{letter-spacing:-1.323700pt;}
.ls9_c00022{letter-spacing:-0.658000pt;}
.ls5_c00022{letter-spacing:0.000000pt;}
.ls1_c00022{letter-spacing:0.658000pt;}
.ls2b_c00022{letter-spacing:0.680067pt;}
.ls0_c00022{letter-spacing:1.323700pt;}
.ls1a_c00022{letter-spacing:1.373600pt;}
.lsa_c00022{letter-spacing:1.462933pt;}
.ls13_c00022{letter-spacing:1.620720pt;}
.ls2a_c00022{letter-spacing:2.947000pt;}
.ls28_c00022{letter-spacing:3.233520pt;}
.ls22_c00022{letter-spacing:4.666240pt;}
.ls17_c00022{letter-spacing:5.383000pt;}
.ls1e_c00022{letter-spacing:8.097693pt;}
.ls21_c00022{letter-spacing:16.829600pt;}
.ws0_c00022{word-spacing:0.000000pt;}
._13_c00022{margin-left:-8.070604pt;}
._11_c00022{margin-left:-6.784096pt;}
._d_c00022{margin-left:-5.558594pt;}
._1d_c00022{margin-left:-4.196170pt;}
._12_c00022{margin-left:-3.306140pt;}
._14_c00022{margin-left:-1.258930pt;}
._15_c00022{width:1.464545pt;}
._16_c00022{width:2.820657pt;}
._18_c00022{width:4.653045pt;}
._1c_c00022{width:5.684291pt;}
._17_c00022{width:6.578323pt;}
._10_c00022{width:7.514579pt;}
._2_c00022{width:9.006570pt;}
._5_c00022{width:10.204045pt;}
._1_c00022{width:11.560698pt;}
._4_c00022{width:12.713757pt;}
._3_c00022{width:13.981628pt;}
._1b_c00022{width:15.142691pt;}
._0_c00022{width:16.120921pt;}
._9_c00022{width:17.112425pt;}
._1e_c00022{width:18.067317pt;}
._8_c00022{width:19.015328pt;}
._c_c00022{width:20.740709pt;}
._6_c00022{width:21.748445pt;}
._1a_c00022{width:23.746140pt;}
._b_c00022{width:25.216774pt;}
._7_c00022{width:27.626504pt;}
._a_c00022{width:30.092630pt;}
._19_c00022{width:32.768625pt;}
._f_c00022{width:35.636762pt;}
._1f_c00022{width:36.928500pt;}
._e_c00022{width:39.382264pt;}
.fs4_c00022{font-size:34.000000pt;}
.fsb_c00022{font-size:63.333333pt;}
.fsd_c00022{font-size:64.000000pt;}
.fs10_c00022{font-size:66.666667pt;}
.fs9_c00022{font-size:67.333333pt;}
.fs3_c00022{font-size:68.000000pt;}
.fsa_c00022{font-size:68.666667pt;}
.fs2_c00022{font-size:69.333333pt;}
.fs0_c00022{font-size:70.000000pt;}
.fsc_c00022{font-size:70.666667pt;}
.fs1_c00022{font-size:71.333333pt;}
.fs8_c00022{font-size:72.000000pt;}
.fs5_c00022{font-size:72.666667pt;}
.fs6_c00022{font-size:73.333333pt;}
.fs7_c00022{font-size:74.000000pt;}
.fsf_c00022{font-size:75.333333pt;}
.fse_c00022{font-size:90.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y33_c00022{bottom:158.080133pt;}
.y32_c00022{bottom:184.960000pt;}
.y31_c00022{bottom:184.960773pt;}
.y2f_c00022{bottom:211.519840pt;}
.y30_c00022{bottom:211.520533pt;}
.y2e_c00022{bottom:238.079587pt;}
.y2d_c00022{bottom:238.079613pt;}
.y2c_c00022{bottom:264.320800pt;}
.y2a_c00022{bottom:290.559840pt;}
.y2b_c00022{bottom:290.560520pt;}
.y29_c00022{bottom:317.119587pt;}
.y28_c00022{bottom:317.120387pt;}
.y27_c00022{bottom:343.680133pt;}
.y26_c00022{bottom:343.680973pt;}
.y25_c00022{bottom:370.240720pt;}
.y24_c00022{bottom:397.120640pt;}
.y23_c00022{bottom:424.320613pt;}
.y21_c00022{bottom:450.879760pt;}
.y22_c00022{bottom:450.880373pt;}
.y20_c00022{bottom:476.800787pt;}
.y1e_c00022{bottom:503.040013pt;}
.y1f_c00022{bottom:503.040533pt;}
.y1d_c00022{bottom:556.159520pt;}
.y1c_c00022{bottom:575.680667pt;}
.y1b_c00022{bottom:594.561040pt;}
.y1a_c00022{bottom:594.561053pt;}
.y19_c00022{bottom:613.439987pt;}
.y18_c00022{bottom:666.561040pt;}
.y16_c00022{bottom:692.800747pt;}
.y17_c00022{bottom:692.800787pt;}
.y14_c00022{bottom:719.679987pt;}
.y15_c00022{bottom:719.680667pt;}
.y13_c00022{bottom:746.239747pt;}
.y12_c00022{bottom:746.240453pt;}
.y11_c00022{bottom:772.800213pt;}
.y10_c00022{bottom:772.800373pt;}
.yf_c00022{bottom:799.039960pt;}
.ye_c00022{bottom:799.040747pt;}
.yd_c00022{bottom:825.600507pt;}
.yb_c00022{bottom:852.480427pt;}
.yc_c00022{bottom:852.480547pt;}
.ya_c00022{bottom:879.360347pt;}
.y9_c00022{bottom:879.361147pt;}
.y7_c00022{bottom:905.920693pt;}
.y8_c00022{bottom:905.920893pt;}
.y6_c00022{bottom:931.839840pt;}
.y5_c00022{bottom:954.880373pt;}
.y4_c00022{bottom:958.400387pt;}
.y3_c00022{bottom:958.401267pt;}
.y2_c00022{bottom:984.640853pt;}
.y1_c00022{bottom:1011.200600pt;}
.h5_c00022{height:33.601562pt;}
.h15_c00022{height:65.429688pt;}
.hd_c00022{height:66.054688pt;}
.ha_c00022{height:66.083984pt;}
.h4_c00022{height:66.738281pt;}
.h12_c00022{height:66.750000pt;}
.hc_c00022{height:67.392578pt;}
.h3_c00022{height:68.046875pt;}
.hb_c00022{height:68.531250pt;}
.h1_c00022{height:68.701172pt;}
.he_c00022{height:69.355469pt;}
.h2_c00022{height:70.009766pt;}
.h10_c00022{height:70.226562pt;}
.h9_c00022{height:70.664062pt;}
.h6_c00022{height:71.318359pt;}
.h7_c00022{height:71.972656pt;}
.hf_c00022{height:72.562500pt;}
.h8_c00022{height:72.626953pt;}
.h11_c00022{height:73.234375pt;}
.h14_c00022{height:73.935547pt;}
.h13_c00022{height:93.867188pt;}
.h0_c00022{height:1122.666667pt;}
.w0_c00022{width:793.333333pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:122.559067pt;}
.xf_c00022{left:123.838240pt;}
.x23_c00022{left:143.679200pt;}
.x38_c00022{left:145.278813pt;}
.x2e_c00022{left:170.880813pt;}
.x2b_c00022{left:172.158667pt;}
.xc_c00022{left:189.758787pt;}
.x1d_c00022{left:207.999067pt;}
.xd_c00022{left:210.238787pt;}
.x1e_c00022{left:225.919867pt;}
.x11_c00022{left:231.999067pt;}
.x24_c00022{left:243.518533pt;}
.x12_c00022{left:249.599067pt;}
.x4_c00022{left:277.759320pt;}
.x18_c00022{left:291.839333pt;}
.x21_c00022{left:298.558533pt;}
.x19_c00022{left:313.599587pt;}
.x22_c00022{left:317.119587pt;}
.x5_c00022{left:319.678693pt;}
.x2_c00022{left:326.718787pt;}
.x3_c00022{left:342.079067pt;}
.xe_c00022{left:343.359333pt;}
.x36_c00022{left:346.879307pt;}
.x34_c00022{left:349.119187pt;}
.x6_c00022{left:350.078693pt;}
.x40_c00022{left:357.439453pt;}
.xa_c00022{left:361.278813pt;}
.x25_c00022{left:363.518520pt;}
.x35_c00022{left:366.399867pt;}
.x37_c00022{left:369.599040pt;}
.xb_c00022{left:376.319867pt;}
.x1a_c00022{left:384.000000pt;}
.x26_c00022{left:400.960000pt;}
.x1b_c00022{left:404.479987pt;}
.x41_c00022{left:424.639200pt;}
.x1f_c00022{left:426.238773pt;}
.x42_c00022{left:441.919840pt;}
.x27_c00022{left:445.119187pt;}
.x20_c00022{left:447.999067pt;}
.x2c_c00022{left:463.038533pt;}
.x39_c00022{left:464.318813pt;}
.x2d_c00022{left:473.279333pt;}
.x3a_c00022{left:485.438920pt;}
.x3b_c00022{left:495.999067pt;}
.x28_c00022{left:519.679733pt;}
.x14_c00022{left:527.679200pt;}
.x3c_c00022{left:538.239173pt;}
.x15_c00022{left:547.199707pt;}
.x43_c00022{left:564.159707pt;}
.x31_c00022{left:567.679733pt;}
.x29_c00022{left:575.359867pt;}
.x44_c00022{left:577.918907pt;}
.x32_c00022{left:587.838907pt;}
.x7_c00022{left:591.999067pt;}
.x3e_c00022{left:596.799320pt;}
.x3f_c00022{left:612.479040pt;}
.x8_c00022{left:619.839840pt;}
.x16_c00022{left:628.479453pt;}
.x2a_c00022{left:647.679200pt;}
.x17_c00022{left:652.158693pt;}
.x3d_c00022{left:657.279707pt;}
.x10_c00022{left:665.598720pt;}
.x1c_c00022{left:670.079587pt;}
.x33_c00022{left:671.039067pt;}
.x2f_c00022{left:674.559040pt;}
.x45_c00022{left:676.158693pt;}
.x9_c00022{left:680.639573pt;}
.x30_c00022{left:684.479080pt;}
.x13_c00022{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96857f530b6311180949a92e.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_d80bcf3c01b10e37323d5cab.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_adfa9f912ffcb8784d27911a.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00023;src:url('chunks/assets/font_4d821559cd80e8e120374c0c.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00023;src:url('chunks/assets/font_1bb0f4d917bc4e981ef74ef0.woff2')format("woff");}.ff6_c00023{font-family:ff6_c00023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00023{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m0_c00023{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{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_c00023{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.406863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406863,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls1a_c00023{letter-spacing:-11.942700px;}
.ls17_c00023{letter-spacing:-9.691050px;}
.ls9_c00023{letter-spacing:-8.914500px;}
.ls1d_c00023{letter-spacing:-8.175038px;}
.ls21_c00023{letter-spacing:-7.426125px;}
.lse_c00023{letter-spacing:-5.945625px;}
.ls15_c00023{letter-spacing:-5.819400px;}
.ls14_c00023{letter-spacing:-5.767500px;}
.ls11_c00023{letter-spacing:-5.306700px;}
.lsd_c00023{letter-spacing:-5.247533px;}
.lsb_c00023{letter-spacing:-5.196713px;}
.ls1c_c00023{letter-spacing:-5.015625px;}
.ls8_c00023{letter-spacing:-4.456463px;}
.lsa_c00023{letter-spacing:-3.717000px;}
.ls1f_c00023{letter-spacing:-3.110250px;}
.ls3_c00023{letter-spacing:-2.968875px;}
.ls18_c00023{letter-spacing:-2.488350px;}
.ls4_c00023{letter-spacing:-2.229413px;}
.ls10_c00023{letter-spacing:-2.206875px;}
.ls5_c00023{letter-spacing:-1.792200px;}
.ls1b_c00023{letter-spacing:-1.585673px;}
.ls2_c00023{letter-spacing:-1.489163px;}
.ls6_c00023{letter-spacing:-0.896100px;}
.ls7_c00023{letter-spacing:-0.740250px;}
.ls16_c00023{letter-spacing:-0.698475px;}
.lsf_c00023{letter-spacing:0.000000px;}
.ls1_c00023{letter-spacing:0.740250px;}
.lsc_c00023{letter-spacing:0.803250px;}
.ls0_c00023{letter-spacing:0.896100px;}
.ls13_c00023{letter-spacing:1.438650px;}
.ls20_c00023{letter-spacing:2.535300px;}
.ls1e_c00023{letter-spacing:3.029400px;}
.ls12_c00023{letter-spacing:3.687683px;}
.ls19_c00023{letter-spacing:25.208655px;}
.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;}
._1d_c00023{margin-left:-14.379631px;}
._23_c00023{margin-left:-9.602017px;}
._c_c00023{margin-left:-8.372923px;}
._12_c00023{margin-left:-7.128272px;}
._b_c00023{margin-left:-5.154856px;}
._13_c00023{margin-left:-4.110126px;}
._11_c00023{margin-left:-2.986601px;}
._1e_c00023{margin-left:-1.972925px;}
._9_c00023{width:2.119192px;}
._a_c00023{width:3.700864px;}
._f_c00023{width:5.154069px;}
._8_c00023{width:6.183539px;}
._3_c00023{width:8.040226px;}
._7_c00023{width:9.891208px;}
._e_c00023{width:10.924408px;}
._0_c00023{width:12.082226px;}
._1_c00023{width:13.733911px;}
._d_c00023{width:14.933496px;}
._2_c00023{width:15.973684px;}
._10_c00023{width:17.421580px;}
._4_c00023{width:19.325042px;}
._15_c00023{width:20.421539px;}
._6_c00023{width:21.979571px;}
._22_c00023{width:23.340608px;}
._20_c00023{width:24.893083px;}
._21_c00023{width:26.229604px;}
._5_c00023{width:27.609275px;}
._16_c00023{width:28.916435px;}
._24_c00023{width:30.194711px;}
._1f_c00023{width:31.374416px;}
._14_c00023{width:32.688780px;}
._25_c00023{width:40.114091px;}
._19_c00023{width:41.612525px;}
._1b_c00023{width:44.970544px;}
._1c_c00023{width:46.736743px;}
._1a_c00023{width:49.289001px;}
._18_c00023{width:55.752444px;}
._17_c00023{width:57.259363px;}
.fc0_c00023{color:transparent;}
.fs9_c00023{font-size:34.500000px;}
.fs7_c00023{font-size:38.250000px;}
.fsc_c00023{font-size:50.250000px;}
.fsd_c00023{font-size:70.500000px;}
.fs5_c00023{font-size:73.500000px;}
.fsa_c00023{font-size:75.000000px;}
.fs2_c00023{font-size:76.500000px;}
.fs0_c00023{font-size:78.750000px;}
.fsb_c00023{font-size:79.500000px;}
.fs4_c00023{font-size:80.250000px;}
.fsf_c00023{font-size:81.000000px;}
.fs3_c00023{font-size:81.750000px;}
.fs6_c00023{font-size:82.500000px;}
.fse_c00023{font-size:84.750000px;}
.fs8_c00023{font-size:86.250000px;}
.fs1_c00023{font-size:87.000000px;}
.y0_c00023{bottom:0.000000px;}
.y2e_c00023{bottom:239.399250px;}
.y2d_c00023{bottom:239.400060px;}
.y2c_c00023{bottom:269.279775px;}
.y2b_c00023{bottom:299.519685px;}
.y2a_c00023{bottom:299.519850px;}
.y29_c00023{bottom:329.039385px;}
.y28_c00023{bottom:329.040270px;}
.y26_c00023{bottom:358.919520px;}
.y27_c00023{bottom:358.920000px;}
.y25_c00023{bottom:388.799235px;}
.y24_c00023{bottom:418.318770px;}
.y23_c00023{bottom:418.319670px;}
.y22_c00023{bottom:448.199385px;}
.y21_c00023{bottom:448.199760px;}
.y1f_c00023{bottom:478.799955px;}
.y20_c00023{bottom:478.800150px;}
.y1e_c00023{bottom:507.958995px;}
.y1d_c00023{bottom:567.360060px;}
.y1c_c00023{bottom:597.599970px;}
.y1b_c00023{bottom:627.479685px;}
.y1a_c00023{bottom:627.480105px;}
.y19_c00023{bottom:657.359820px;}
.y18_c00023{bottom:687.239550px;}
.y17_c00023{bottom:716.759085px;}
.y16_c00023{bottom:746.278800px;}
.y14_c00023{bottom:752.039985px;}
.y15_c00023{bottom:757.438620px;}
.y13_c00023{bottom:776.159370px;}
.y12_c00023{bottom:776.160255px;}
.y11_c00023{bottom:806.039985px;}
.y10_c00023{bottom:806.040795px;}
.yf_c00023{bottom:836.639100px;}
.ye_c00023{bottom:836.639985px;}
.yd_c00023{bottom:866.519715px;}
.yc_c00023{bottom:866.519760px;}
.yb_c00023{bottom:896.399490px;}
.ya_c00023{bottom:926.279205px;}
.y9_c00023{bottom:926.279430px;}
.y8_c00023{bottom:956.519355px;}
.y7_c00023{bottom:986.038875px;}
.y6_c00023{bottom:986.039775px;}
.y5_c00023{bottom:1015.919490px;}
.y4_c00023{bottom:1015.920180px;}
.y3_c00023{bottom:1075.679625px;}
.y2_c00023{bottom:1105.199160px;}
.y1_c00023{bottom:1135.799565px;}
.ha_c00023{height:34.095703px;}
.h8_c00023{height:39.893555px;}
.hd_c00023{height:52.409180px;}
.he_c00023{height:69.191895px;}
.h3_c00023{height:75.080566px;}
.hb_c00023{height:75.585938px;}
.h6_c00023{height:76.658203px;}
.h1_c00023{height:77.288818px;}
.h11_c00023{height:78.024902px;}
.hc_c00023{height:78.568359px;}
.h5_c00023{height:78.760986px;}
.h12_c00023{height:79.497070px;}
.h10_c00023{height:80.121094px;}
.h4_c00023{height:80.233154px;}
.h7_c00023{height:80.969238px;}
.h13_c00023{height:83.177490px;}
.hf_c00023{height:83.756836px;}
.h2_c00023{height:85.343262px;}
.h9_c00023{height:89.956055px;}
.h0_c00023{height:1263.000000px;}
.w0_c00023{width:892.500000px;}
.x0_c00023{left:0.000000px;}
.x27_c00023{left:135.363540px;}
.x1_c00023{left:136.438665px;}
.xd_c00023{left:137.877450px;}
.x12_c00023{left:156.238785px;}
.x14_c00023{left:185.399250px;}
.x13_c00023{left:202.679700px;}
.x15_c00023{left:203.759100px;}
.xe_c00023{left:217.438635px;}
.xf_c00023{left:233.998950px;}
.x37_c00023{left:235.439250px;}
.xb_c00023{left:246.958350px;}
.x38_c00023{left:250.559100px;}
.x2_c00023{left:255.598500px;}
.x1a_c00023{left:257.759100px;}
.xc_c00023{left:264.238785px;}
.x21_c00023{left:307.439685px;}
.x2c_c00023{left:321.839535px;}
.x22_c00023{left:333.358635px;}
.x1b_c00023{left:339.479235px;}
.x2d_c00023{left:340.919535px;}
.x2a_c00023{left:344.159385px;}
.x3_c00023{left:358.199850px;}
.x1c_c00023{left:370.080000px;}
.x2b_c00023{left:375.839535px;}
.x33_c00023{left:397.080000px;}
.x23_c00023{left:399.238770px;}
.x28_c00023{left:410.039385px;}
.x34_c00023{left:412.559100px;}
.x24_c00023{left:414.719565px;}
.x6_c00023{left:425.879520px;}
.x29_c00023{left:437.039385px;}
.x32_c00023{left:451.439250px;}
.x7_c00023{left:457.559685px;}
.x1d_c00023{left:459.000000px;}
.x8_c00023{left:476.998950px;}
.x30_c00023{left:483.478635px;}
.x35_c00023{left:491.039385px;}
.x31_c00023{left:500.038920px;}
.x36_c00023{left:505.439250px;}
.x1e_c00023{left:513.359250px;}
.x10_c00023{left:523.798920px;}
.x19_c00023{left:532.080000px;}
.x11_c00023{left:545.759535px;}
.x2e_c00023{left:563.039985px;}
.x2f_c00023{left:577.078770px;}
.x1f_c00023{left:580.318770px;}
.x16_c00023{left:599.759535px;}
.x17_c00023{left:613.080000px;}
.x9_c00023{left:627.118785px;}
.xa_c00023{left:640.798515px;}
.x25_c00023{left:642.958920px;}
.x20_c00023{left:652.678530px;}
.x26_c00023{left:664.199385px;}
.x4_c00023{left:690.838530px;}
.x5_c00023{left:760.319235px;}
.x18_c00023{left:769.318815px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls1a_c00023{letter-spacing:-10.615733pt;}
.ls17_c00023{letter-spacing:-8.614267pt;}
.ls9_c00023{letter-spacing:-7.924000pt;}
.ls1d_c00023{letter-spacing:-7.266700pt;}
.ls21_c00023{letter-spacing:-6.601000pt;}
.lse_c00023{letter-spacing:-5.285000pt;}
.ls15_c00023{letter-spacing:-5.172800pt;}
.ls14_c00023{letter-spacing:-5.126667pt;}
.ls11_c00023{letter-spacing:-4.717067pt;}
.lsd_c00023{letter-spacing:-4.664473pt;}
.lsb_c00023{letter-spacing:-4.619300pt;}
.ls1c_c00023{letter-spacing:-4.458333pt;}
.ls8_c00023{letter-spacing:-3.961300pt;}
.lsa_c00023{letter-spacing:-3.304000pt;}
.ls1f_c00023{letter-spacing:-2.764667pt;}
.ls3_c00023{letter-spacing:-2.639000pt;}
.ls18_c00023{letter-spacing:-2.211867pt;}
.ls4_c00023{letter-spacing:-1.981700pt;}
.ls10_c00023{letter-spacing:-1.961667pt;}
.ls5_c00023{letter-spacing:-1.593067pt;}
.ls1b_c00023{letter-spacing:-1.409487pt;}
.ls2_c00023{letter-spacing:-1.323700pt;}
.ls6_c00023{letter-spacing:-0.796533pt;}
.ls7_c00023{letter-spacing:-0.658000pt;}
.ls16_c00023{letter-spacing:-0.620867pt;}
.lsf_c00023{letter-spacing:0.000000pt;}
.ls1_c00023{letter-spacing:0.658000pt;}
.lsc_c00023{letter-spacing:0.714000pt;}
.ls0_c00023{letter-spacing:0.796533pt;}
.ls13_c00023{letter-spacing:1.278800pt;}
.ls20_c00023{letter-spacing:2.253600pt;}
.ls1e_c00023{letter-spacing:2.692800pt;}
.ls12_c00023{letter-spacing:3.277940pt;}
.ls19_c00023{letter-spacing:22.407693pt;}
.ws0_c00023{word-spacing:0.000000pt;}
._1d_c00023{margin-left:-12.781894pt;}
._23_c00023{margin-left:-8.535126pt;}
._c_c00023{margin-left:-7.442598pt;}
._12_c00023{margin-left:-6.336242pt;}
._b_c00023{margin-left:-4.582094pt;}
._13_c00023{margin-left:-3.653445pt;}
._11_c00023{margin-left:-2.654757pt;}
._1e_c00023{margin-left:-1.753711pt;}
._9_c00023{width:1.883726pt;}
._a_c00023{width:3.289657pt;}
._f_c00023{width:4.581394pt;}
._8_c00023{width:5.496479pt;}
._3_c00023{width:7.146868pt;}
._7_c00023{width:8.792185pt;}
._e_c00023{width:9.710585pt;}
._0_c00023{width:10.739757pt;}
._1_c00023{width:12.207921pt;}
._d_c00023{width:13.274219pt;}
._2_c00023{width:14.198831pt;}
._10_c00023{width:15.485849pt;}
._4_c00023{width:17.177815pt;}
._15_c00023{width:18.152479pt;}
._6_c00023{width:19.537396pt;}
._22_c00023{width:20.747208pt;}
._20_c00023{width:22.127185pt;}
._21_c00023{width:23.315204pt;}
._5_c00023{width:24.541577pt;}
._16_c00023{width:25.703498pt;}
._24_c00023{width:26.839743pt;}
._1f_c00023{width:27.888370pt;}
._14_c00023{width:29.056693pt;}
._25_c00023{width:35.656970pt;}
._19_c00023{width:36.988911pt;}
._1b_c00023{width:39.973817pt;}
._1c_c00023{width:41.543772pt;}
._1a_c00023{width:43.812445pt;}
._18_c00023{width:49.557728pt;}
._17_c00023{width:50.897211pt;}
.fs9_c00023{font-size:30.666667pt;}
.fs7_c00023{font-size:34.000000pt;}
.fsc_c00023{font-size:44.666667pt;}
.fsd_c00023{font-size:62.666667pt;}
.fs5_c00023{font-size:65.333333pt;}
.fsa_c00023{font-size:66.666667pt;}
.fs2_c00023{font-size:68.000000pt;}
.fs0_c00023{font-size:70.000000pt;}
.fsb_c00023{font-size:70.666667pt;}
.fs4_c00023{font-size:71.333333pt;}
.fsf_c00023{font-size:72.000000pt;}
.fs3_c00023{font-size:72.666667pt;}
.fs6_c00023{font-size:73.333333pt;}
.fse_c00023{font-size:75.333333pt;}
.fs8_c00023{font-size:76.666667pt;}
.fs1_c00023{font-size:77.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y2e_c00023{bottom:212.799333pt;}
.y2d_c00023{bottom:212.800053pt;}
.y2c_c00023{bottom:239.359800pt;}
.y2b_c00023{bottom:266.239720pt;}
.y2a_c00023{bottom:266.239867pt;}
.y29_c00023{bottom:292.479453pt;}
.y28_c00023{bottom:292.480240pt;}
.y26_c00023{bottom:319.039573pt;}
.y27_c00023{bottom:319.040000pt;}
.y25_c00023{bottom:345.599320pt;}
.y24_c00023{bottom:371.838907pt;}
.y23_c00023{bottom:371.839707pt;}
.y22_c00023{bottom:398.399453pt;}
.y21_c00023{bottom:398.399787pt;}
.y1f_c00023{bottom:425.599960pt;}
.y20_c00023{bottom:425.600133pt;}
.y1e_c00023{bottom:451.519107pt;}
.y1d_c00023{bottom:504.320053pt;}
.y1c_c00023{bottom:531.199973pt;}
.y1b_c00023{bottom:557.759720pt;}
.y1a_c00023{bottom:557.760093pt;}
.y19_c00023{bottom:584.319840pt;}
.y18_c00023{bottom:610.879600pt;}
.y17_c00023{bottom:637.119187pt;}
.y16_c00023{bottom:663.358933pt;}
.y14_c00023{bottom:668.479987pt;}
.y15_c00023{bottom:673.278773pt;}
.y13_c00023{bottom:689.919440pt;}
.y12_c00023{bottom:689.920227pt;}
.y11_c00023{bottom:716.479987pt;}
.y10_c00023{bottom:716.480707pt;}
.yf_c00023{bottom:743.679200pt;}
.ye_c00023{bottom:743.679987pt;}
.yd_c00023{bottom:770.239747pt;}
.yc_c00023{bottom:770.239787pt;}
.yb_c00023{bottom:796.799547pt;}
.ya_c00023{bottom:823.359293pt;}
.y9_c00023{bottom:823.359493pt;}
.y8_c00023{bottom:850.239427pt;}
.y7_c00023{bottom:876.479000pt;}
.y6_c00023{bottom:876.479800pt;}
.y5_c00023{bottom:903.039547pt;}
.y4_c00023{bottom:903.040160pt;}
.y3_c00023{bottom:956.159667pt;}
.y2_c00023{bottom:982.399253pt;}
.y1_c00023{bottom:1009.599613pt;}
.ha_c00023{height:30.307292pt;}
.h8_c00023{height:35.460938pt;}
.hd_c00023{height:46.585938pt;}
.he_c00023{height:61.503906pt;}
.h3_c00023{height:66.738281pt;}
.hb_c00023{height:67.187500pt;}
.h6_c00023{height:68.140625pt;}
.h1_c00023{height:68.701172pt;}
.h11_c00023{height:69.355469pt;}
.hc_c00023{height:69.838542pt;}
.h5_c00023{height:70.009766pt;}
.h12_c00023{height:70.664062pt;}
.h10_c00023{height:71.218750pt;}
.h4_c00023{height:71.318359pt;}
.h7_c00023{height:71.972656pt;}
.h13_c00023{height:73.935547pt;}
.hf_c00023{height:74.450521pt;}
.h2_c00023{height:75.860677pt;}
.h9_c00023{height:79.960938pt;}
.h0_c00023{height:1122.666667pt;}
.w0_c00023{width:793.333333pt;}
.x0_c00023{left:0.000000pt;}
.x27_c00023{left:120.323147pt;}
.x1_c00023{left:121.278813pt;}
.xd_c00023{left:122.557733pt;}
.x12_c00023{left:138.878920pt;}
.x14_c00023{left:164.799333pt;}
.x13_c00023{left:180.159733pt;}
.x15_c00023{left:181.119200pt;}
.xe_c00023{left:193.278787pt;}
.xf_c00023{left:207.999067pt;}
.x37_c00023{left:209.279333pt;}
.xb_c00023{left:219.518533pt;}
.x38_c00023{left:222.719200pt;}
.x2_c00023{left:227.198667pt;}
.x1a_c00023{left:229.119200pt;}
.xc_c00023{left:234.878920pt;}
.x21_c00023{left:273.279720pt;}
.x2c_c00023{left:286.079587pt;}
.x22_c00023{left:296.318787pt;}
.x1b_c00023{left:301.759320pt;}
.x2d_c00023{left:303.039587pt;}
.x2a_c00023{left:305.919453pt;}
.x3_c00023{left:318.399867pt;}
.x1c_c00023{left:328.960000pt;}
.x2b_c00023{left:334.079587pt;}
.x33_c00023{left:352.960000pt;}
.x23_c00023{left:354.878907pt;}
.x28_c00023{left:364.479453pt;}
.x34_c00023{left:366.719200pt;}
.x24_c00023{left:368.639613pt;}
.x6_c00023{left:378.559573pt;}
.x29_c00023{left:388.479453pt;}
.x32_c00023{left:401.279333pt;}
.x7_c00023{left:406.719720pt;}
.x1d_c00023{left:408.000000pt;}
.x8_c00023{left:423.999067pt;}
.x30_c00023{left:429.758787pt;}
.x35_c00023{left:436.479453pt;}
.x31_c00023{left:444.479040pt;}
.x36_c00023{left:449.279333pt;}
.x1e_c00023{left:456.319333pt;}
.x10_c00023{left:465.599040pt;}
.x19_c00023{left:472.960000pt;}
.x11_c00023{left:485.119587pt;}
.x2e_c00023{left:500.479987pt;}
.x2f_c00023{left:512.958907pt;}
.x1f_c00023{left:515.838907pt;}
.x16_c00023{left:533.119587pt;}
.x17_c00023{left:544.960000pt;}
.x9_c00023{left:557.438920pt;}
.xa_c00023{left:569.598680pt;}
.x25_c00023{left:571.519040pt;}
.x20_c00023{left:580.158693pt;}
.x26_c00023{left:590.399453pt;}
.x4_c00023{left:614.078693pt;}
.x5_c00023{left:675.839320pt;}
.x18_c00023{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_437df6b344dde11e25936b9e.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_d5bced03c9bd3e3b09ece0d3.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_cb6179aa7d7aedbe7a6d1013.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;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_b244a85ae40e9b09fb38863e.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00024;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00024;src:url('chunks/assets/font_b5816e42ca33b664c53303a4.woff2')format("woff");}.ff6_c00024{font-family:ff6_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;}
.m18_c00024{transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{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_c00024{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m27_c00024{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1c_c00024{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m1d_c00024{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m25_c00024{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m22_c00024{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m21_c00024{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m26_c00024{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m23_c00024{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m20_c00024{transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);}
.m24_c00024{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{transform:matrix(0.655941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655941,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls28_c00024{letter-spacing:-16.154400px;}
.lse_c00024{letter-spacing:-13.502700px;}
.ls20_c00024{letter-spacing:-12.425288px;}
.ls4_c00024{letter-spacing:-8.914500px;}
.ls11_c00024{letter-spacing:-8.535300px;}
.ls16_c00024{letter-spacing:-8.175038px;}
.ls1c_c00024{letter-spacing:-8.059500px;}
.ls1e_c00024{letter-spacing:-7.725773px;}
.ls1d_c00024{letter-spacing:-7.158375px;}
.ls17_c00024{letter-spacing:-6.685875px;}
.ls24_c00024{letter-spacing:-6.612900px;}
.ls1_c00024{letter-spacing:-5.945625px;}
.ls13_c00024{letter-spacing:-5.196713px;}
.ls18_c00024{letter-spacing:-4.456463px;}
.ls21_c00024{letter-spacing:-4.323450px;}
.ls5_c00024{letter-spacing:-3.717000px;}
.ls10_c00024{letter-spacing:-3.283875px;}
.ls8_c00024{letter-spacing:-3.121200px;}
.ls26_c00024{letter-spacing:-2.972700px;}
.ls3_c00024{letter-spacing:-2.968875px;}
.ls29_c00024{letter-spacing:-2.408963px;}
.lsf_c00024{letter-spacing:-2.245620px;}
.ls0_c00024{letter-spacing:-2.229413px;}
.ls2a_c00024{letter-spacing:-2.186948px;}
.ls22_c00024{letter-spacing:-1.999800px;}
.ls2_c00024{letter-spacing:-1.489163px;}
.ls27_c00024{letter-spacing:-1.380600px;}
.ls23_c00024{letter-spacing:-1.294283px;}
.lsb_c00024{letter-spacing:-1.000800px;}
.ls1f_c00024{letter-spacing:-0.882000px;}
.ls6_c00024{letter-spacing:-0.842700px;}
.ls14_c00024{letter-spacing:-0.740250px;}
.ls1b_c00024{letter-spacing:-0.717600px;}
.ls7_c00024{letter-spacing:0.000000px;}
.ls9_c00024{letter-spacing:0.731850px;}
.lsd_c00024{letter-spacing:1.227150px;}
.ls12_c00024{letter-spacing:1.353090px;}
.ls1a_c00024{letter-spacing:1.418250px;}
.ls15_c00024{letter-spacing:1.931160px;}
.lsa_c00024{letter-spacing:2.845718px;}
.lsc_c00024{letter-spacing:2.928015px;}
.ls19_c00024{letter-spacing:4.035000px;}
.ls25_c00024{letter-spacing:6.418500px;}
.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;}
._19_c00024{margin-left:-42.855988px;}
._16_c00024{margin-left:-10.164931px;}
._17_c00024{margin-left:-5.430600px;}
._15_c00024{margin-left:-2.737261px;}
._13_c00024{margin-left:-1.428228px;}
._c_c00024{width:1.169096px;}
._f_c00024{width:2.417848px;}
._e_c00024{width:3.534374px;}
._b_c00024{width:5.113267px;}
._d_c00024{width:6.921679px;}
._10_c00024{width:8.580793px;}
._a_c00024{width:10.556452px;}
._6_c00024{width:12.120323px;}
._12_c00024{width:13.189139px;}
._9_c00024{width:14.323362px;}
._14_c00024{width:16.203986px;}
._7_c00024{width:18.451511px;}
._8_c00024{width:20.333725px;}
._18_c00024{width:21.743841px;}
._11_c00024{width:23.030854px;}
._4_c00024{width:24.288536px;}
._0_c00024{width:25.675992px;}
._3_c00024{width:27.420081px;}
._1_c00024{width:29.847394px;}
._2_c00024{width:32.216803px;}
._5_c00024{width:39.649525px;}
.fc0_c00024{color:transparent;}
.fs5_c00024{font-size:11.250000px;}
.fs14_c00024{font-size:55.500000px;}
.fs8_c00024{font-size:60.750000px;}
.fs4_c00024{font-size:61.500000px;}
.fs11_c00024{font-size:62.360400px;}
.fs16_c00024{font-size:66.750000px;}
.fs10_c00024{font-size:67.500000px;}
.fsa_c00024{font-size:69.000000px;}
.fs17_c00024{font-size:70.500000px;}
.fs13_c00024{font-size:71.250000px;}
.fs7_c00024{font-size:72.000000px;}
.fse_c00024{font-size:75.000000px;}
.fs15_c00024{font-size:75.750000px;}
.fs3_c00024{font-size:76.500000px;}
.fs12_c00024{font-size:77.250000px;}
.fs2_c00024{font-size:78.000000px;}
.fs0_c00024{font-size:78.750000px;}
.fs1_c00024{font-size:79.500000px;}
.fsf_c00024{font-size:80.250000px;}
.fs9_c00024{font-size:81.000000px;}
.fs6_c00024{font-size:81.750000px;}
.fsd_c00024{font-size:82.500000px;}
.fsc_c00024{font-size:84.000000px;}
.fsb_c00024{font-size:84.750000px;}
.y0_c00024{bottom:0.000000px;}
.y31_c00024{bottom:179.640750px;}
.y30_c00024{bottom:209.160285px;}
.y2f_c00024{bottom:239.040000px;}
.y2e_c00024{bottom:239.040165px;}
.y2c_c00024{bottom:268.559625px;}
.y2d_c00024{bottom:268.559685px;}
.y2b_c00024{bottom:298.799535px;}
.y2a_c00024{bottom:328.319250px;}
.y29_c00024{bottom:328.320300px;}
.y28_c00024{bottom:358.200030px;}
.y27_c00024{bottom:387.719565px;}
.y26_c00024{bottom:417.959385px;}
.y25_c00024{bottom:417.959700px;}
.y24_c00024{bottom:447.479235px;}
.y23_c00024{bottom:447.479985px;}
.y22_c00024{bottom:477.719895px;}
.y21_c00024{bottom:507.599625px;}
.y20_c00024{bottom:537.839535px;}
.y1f_c00024{bottom:537.839715px;}
.y1d_c00024{bottom:567.359160px;}
.y1e_c00024{bottom:567.359250px;}
.y1c_c00024{bottom:597.599070px;}
.y1b_c00024{bottom:597.599490px;}
.y1a_c00024{bottom:627.119025px;}
.y18_c00024{bottom:656.637765px;}
.y19_c00024{bottom:656.638545px;}
.y17_c00024{bottom:685.798920px;}
.y16_c00024{bottom:685.799010px;}
.y15_c00024{bottom:716.038920px;}
.y13_c00024{bottom:745.919535px;}
.y14_c00024{bottom:746.278800px;}
.y12_c00024{bottom:806.399235px;}
.y11_c00024{bottom:806.400120px;}
.yf_c00024{bottom:836.279610px;}
.y10_c00024{bottom:836.279850px;}
.ye_c00024{bottom:865.438665px;}
.yd_c00024{bottom:865.439730px;}
.yc_c00024{bottom:895.319460px;}
.yb_c00024{bottom:925.199175px;}
.ya_c00024{bottom:955.439100px;}
.y9_c00024{bottom:985.318815px;}
.y8_c00024{bottom:985.320510px;}
.y7_c00024{bottom:1015.200240px;}
.y6_c00024{bottom:1045.079955px;}
.y5_c00024{bottom:1045.080030px;}
.y4_c00024{bottom:1077.119385px;}
.y3_c00024{bottom:1105.198785px;}
.y2_c00024{bottom:1105.199070px;}
.y1_c00024{bottom:1134.718590px;}
.h6_c00024{height:11.733398px;}
.h1b_c00024{height:55.933594px;}
.h5_c00024{height:61.980469px;}
.h9_c00024{height:63.360352px;}
.h18_c00024{height:65.039948px;}
.h17_c00024{height:66.247559px;}
.hf_c00024{height:67.719727px;}
.h1d_c00024{height:69.618164px;}
.he_c00024{height:71.964844px;}
.h1e_c00024{height:73.529297px;}
.h14_c00024{height:73.608398px;}
.h1a_c00024{height:74.311523px;}
.h4_c00024{height:75.080566px;}
.h8_c00024{height:75.093750px;}
.h13_c00024{height:75.585938px;}
.h19_c00024{height:75.816650px;}
.h3_c00024{height:76.514648px;}
.h16_c00024{height:76.552734px;}
.h1_c00024{height:77.288818px;}
.h2_c00024{height:77.986084px;}
.h20_c00024{height:78.024902px;}
.hb_c00024{height:78.609375px;}
.h15_c00024{height:78.760986px;}
.h1c_c00024{height:79.004883px;}
.hd_c00024{height:79.365234px;}
.h1f_c00024{height:79.497070px;}
.ha_c00024{height:80.050781px;}
.h12_c00024{height:80.969238px;}
.hc_c00024{height:82.388672px;}
.h11_c00024{height:82.441406px;}
.h10_c00024{height:83.177490px;}
.h7_c00024{height:85.262695px;}
.h0_c00024{height:1263.000000px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:142.918350px;}
.x40_c00024{left:144.720480px;}
.x6_c00024{left:169.559100px;}
.x7_c00024{left:174.239250px;}
.x1a_c00024{left:185.758500px;}
.x2a_c00024{left:203.759100px;}
.x1b_c00024{left:206.278800px;}
.x8_c00024{left:215.279850px;}
.x2b_c00024{left:222.479685px;}
.x20_c00024{left:236.518635px;}
.x3a_c00024{left:248.398635px;}
.x9_c00024{left:259.919535px;}
.x3b_c00024{left:265.319850px;}
.x14_c00024{left:270.000000px;}
.x1c_c00024{left:272.878950px;}
.xa_c00024{left:283.318800px;}
.x15_c00024{left:284.399850px;}
.x21_c00024{left:298.799535px;}
.xb_c00024{left:322.918950px;}
.x2_c00024{left:331.918350px;}
.x35_c00024{left:336.959385px;}
.xc_c00024{left:351.718500px;}
.x36_c00024{left:354.239850px;}
.x11_c00024{left:379.799535px;}
.x3_c00024{left:381.239850px;}
.xd_c00024{left:392.399820px;}
.x12_c00024{left:394.558635px;}
.x22_c00024{left:398.518665px;}
.x4_c00024{left:407.158770px;}
.x13_c00024{left:418.679670px;}
.x18_c00024{left:422.639700px;}
.x5_c00024{left:436.319235px;}
.x3d_c00024{left:444.239220px;}
.x23_c00024{left:446.038920px;}
.x19_c00024{left:447.479235px;}
.xe_c00024{left:451.798515px;}
.x3e_c00024{left:460.079400px;}
.x31_c00024{left:471.959385px;}
.x24_c00024{left:475.558635px;}
.x32_c00024{left:487.438665px;}
.x2f_c00024{left:490.319235px;}
.x37_c00024{left:498.959385px;}
.x2c_c00024{left:501.479235px;}
.x30_c00024{left:504.359850px;}
.xf_c00024{left:508.319820px;}
.x25_c00024{left:516.958335px;}
.x38_c00024{left:519.118785px;}
.x1d_c00024{left:522.358665px;}
.x10_c00024{left:531.719100px;}
.x26_c00024{left:537.839535px;}
.x2d_c00024{left:539.279850px;}
.x2e_c00024{left:560.159415px;}
.x33_c00024{left:571.319235px;}
.x34_c00024{left:587.159370px;}
.x27_c00024{left:597.958335px;}
.x3f_c00024{left:659.159820px;}
.x28_c00024{left:675.359250px;}
.x16_c00024{left:687.239220px;}
.x17_c00024{left:701.279850px;}
.x29_c00024{left:728.279850px;}
.x1e_c00024{left:740.159820px;}
.x1f_c00024{left:754.198785px;}
.x39_c00024{left:766.078770px;}
.x3c_c00024{left:775.439205px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls28_c00024{letter-spacing:-14.359467pt;}
.lse_c00024{letter-spacing:-12.002400pt;}
.ls20_c00024{letter-spacing:-11.044700pt;}
.ls4_c00024{letter-spacing:-7.924000pt;}
.ls11_c00024{letter-spacing:-7.586933pt;}
.ls16_c00024{letter-spacing:-7.266700pt;}
.ls1c_c00024{letter-spacing:-7.164000pt;}
.ls1e_c00024{letter-spacing:-6.867353pt;}
.ls1d_c00024{letter-spacing:-6.363000pt;}
.ls17_c00024{letter-spacing:-5.943000pt;}
.ls24_c00024{letter-spacing:-5.878133pt;}
.ls1_c00024{letter-spacing:-5.285000pt;}
.ls13_c00024{letter-spacing:-4.619300pt;}
.ls18_c00024{letter-spacing:-3.961300pt;}
.ls21_c00024{letter-spacing:-3.843067pt;}
.ls5_c00024{letter-spacing:-3.304000pt;}
.ls10_c00024{letter-spacing:-2.919000pt;}
.ls8_c00024{letter-spacing:-2.774400pt;}
.ls26_c00024{letter-spacing:-2.642400pt;}
.ls3_c00024{letter-spacing:-2.639000pt;}
.ls29_c00024{letter-spacing:-2.141300pt;}
.lsf_c00024{letter-spacing:-1.996107pt;}
.ls0_c00024{letter-spacing:-1.981700pt;}
.ls2a_c00024{letter-spacing:-1.943953pt;}
.ls22_c00024{letter-spacing:-1.777600pt;}
.ls2_c00024{letter-spacing:-1.323700pt;}
.ls27_c00024{letter-spacing:-1.227200pt;}
.ls23_c00024{letter-spacing:-1.150473pt;}
.lsb_c00024{letter-spacing:-0.889600pt;}
.ls1f_c00024{letter-spacing:-0.784000pt;}
.ls6_c00024{letter-spacing:-0.749067pt;}
.ls14_c00024{letter-spacing:-0.658000pt;}
.ls1b_c00024{letter-spacing:-0.637867pt;}
.ls7_c00024{letter-spacing:0.000000pt;}
.ls9_c00024{letter-spacing:0.650533pt;}
.lsd_c00024{letter-spacing:1.090800pt;}
.ls12_c00024{letter-spacing:1.202747pt;}
.ls1a_c00024{letter-spacing:1.260667pt;}
.ls15_c00024{letter-spacing:1.716587pt;}
.lsa_c00024{letter-spacing:2.529527pt;}
.lsc_c00024{letter-spacing:2.602680pt;}
.ls19_c00024{letter-spacing:3.586667pt;}
.ls25_c00024{letter-spacing:5.705333pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._19_c00024{margin-left:-38.094211pt;}
._16_c00024{margin-left:-9.035494pt;}
._17_c00024{margin-left:-4.827200pt;}
._15_c00024{margin-left:-2.433121pt;}
._13_c00024{margin-left:-1.269536pt;}
._c_c00024{width:1.039196pt;}
._f_c00024{width:2.149198pt;}
._e_c00024{width:3.141666pt;}
._b_c00024{width:4.545126pt;}
._d_c00024{width:6.152604pt;}
._10_c00024{width:7.627372pt;}
._a_c00024{width:9.383513pt;}
._6_c00024{width:10.773621pt;}
._12_c00024{width:11.723679pt;}
._9_c00024{width:12.731877pt;}
._14_c00024{width:14.403543pt;}
._7_c00024{width:16.401343pt;}
._8_c00024{width:18.074423pt;}
._18_c00024{width:19.327858pt;}
._11_c00024{width:20.471870pt;}
._4_c00024{width:21.589809pt;}
._0_c00024{width:22.823104pt;}
._3_c00024{width:24.373406pt;}
._1_c00024{width:26.531017pt;}
._2_c00024{width:28.637158pt;}
._5_c00024{width:35.244023pt;}
.fs5_c00024{font-size:10.000000pt;}
.fs14_c00024{font-size:49.333333pt;}
.fs8_c00024{font-size:54.000000pt;}
.fs4_c00024{font-size:54.666667pt;}
.fs11_c00024{font-size:55.431467pt;}
.fs16_c00024{font-size:59.333333pt;}
.fs10_c00024{font-size:60.000000pt;}
.fsa_c00024{font-size:61.333333pt;}
.fs17_c00024{font-size:62.666667pt;}
.fs13_c00024{font-size:63.333333pt;}
.fs7_c00024{font-size:64.000000pt;}
.fse_c00024{font-size:66.666667pt;}
.fs15_c00024{font-size:67.333333pt;}
.fs3_c00024{font-size:68.000000pt;}
.fs12_c00024{font-size:68.666667pt;}
.fs2_c00024{font-size:69.333333pt;}
.fs0_c00024{font-size:70.000000pt;}
.fs1_c00024{font-size:70.666667pt;}
.fsf_c00024{font-size:71.333333pt;}
.fs9_c00024{font-size:72.000000pt;}
.fs6_c00024{font-size:72.666667pt;}
.fsd_c00024{font-size:73.333333pt;}
.fsc_c00024{font-size:74.666667pt;}
.fsb_c00024{font-size:75.333333pt;}
.y0_c00024{bottom:0.000000pt;}
.y31_c00024{bottom:159.680667pt;}
.y30_c00024{bottom:185.920253pt;}
.y2f_c00024{bottom:212.480000pt;}
.y2e_c00024{bottom:212.480147pt;}
.y2c_c00024{bottom:238.719667pt;}
.y2d_c00024{bottom:238.719720pt;}
.y2b_c00024{bottom:265.599587pt;}
.y2a_c00024{bottom:291.839333pt;}
.y29_c00024{bottom:291.840267pt;}
.y28_c00024{bottom:318.400027pt;}
.y27_c00024{bottom:344.639613pt;}
.y26_c00024{bottom:371.519453pt;}
.y25_c00024{bottom:371.519733pt;}
.y24_c00024{bottom:397.759320pt;}
.y23_c00024{bottom:397.759987pt;}
.y22_c00024{bottom:424.639907pt;}
.y21_c00024{bottom:451.199667pt;}
.y20_c00024{bottom:478.079587pt;}
.y1f_c00024{bottom:478.079747pt;}
.y1d_c00024{bottom:504.319253pt;}
.y1e_c00024{bottom:504.319333pt;}
.y1c_c00024{bottom:531.199173pt;}
.y1b_c00024{bottom:531.199547pt;}
.y1a_c00024{bottom:557.439133pt;}
.y18_c00024{bottom:583.678013pt;}
.y19_c00024{bottom:583.678707pt;}
.y17_c00024{bottom:609.599040pt;}
.y16_c00024{bottom:609.599120pt;}
.y15_c00024{bottom:636.479040pt;}
.y13_c00024{bottom:663.039587pt;}
.y14_c00024{bottom:663.358933pt;}
.y12_c00024{bottom:716.799320pt;}
.y11_c00024{bottom:716.800107pt;}
.yf_c00024{bottom:743.359653pt;}
.y10_c00024{bottom:743.359867pt;}
.ye_c00024{bottom:769.278813pt;}
.yd_c00024{bottom:769.279760pt;}
.yc_c00024{bottom:795.839520pt;}
.yb_c00024{bottom:822.399267pt;}
.ya_c00024{bottom:849.279200pt;}
.y9_c00024{bottom:875.838947pt;}
.y8_c00024{bottom:875.840453pt;}
.y7_c00024{bottom:902.400213pt;}
.y6_c00024{bottom:928.959960pt;}
.y5_c00024{bottom:928.960027pt;}
.y4_c00024{bottom:957.439453pt;}
.y3_c00024{bottom:982.398920pt;}
.y2_c00024{bottom:982.399173pt;}
.y1_c00024{bottom:1008.638747pt;}
.h6_c00024{height:10.429688pt;}
.h1b_c00024{height:49.718750pt;}
.h5_c00024{height:55.093750pt;}
.h9_c00024{height:56.320312pt;}
.h18_c00024{height:57.813288pt;}
.h17_c00024{height:58.886719pt;}
.hf_c00024{height:60.195312pt;}
.h1d_c00024{height:61.882812pt;}
.he_c00024{height:63.968750pt;}
.h1e_c00024{height:65.359375pt;}
.h14_c00024{height:65.429688pt;}
.h1a_c00024{height:66.054688pt;}
.h4_c00024{height:66.738281pt;}
.h8_c00024{height:66.750000pt;}
.h13_c00024{height:67.187500pt;}
.h19_c00024{height:67.392578pt;}
.h3_c00024{height:68.013021pt;}
.h16_c00024{height:68.046875pt;}
.h1_c00024{height:68.701172pt;}
.h2_c00024{height:69.320964pt;}
.h20_c00024{height:69.355469pt;}
.hb_c00024{height:69.875000pt;}
.h15_c00024{height:70.009766pt;}
.h1c_c00024{height:70.226562pt;}
.hd_c00024{height:70.546875pt;}
.h1f_c00024{height:70.664062pt;}
.ha_c00024{height:71.156250pt;}
.h12_c00024{height:71.972656pt;}
.hc_c00024{height:73.234375pt;}
.h11_c00024{height:73.281250pt;}
.h10_c00024{height:73.935547pt;}
.h7_c00024{height:75.789062pt;}
.h0_c00024{height:1122.666667pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:127.038533pt;}
.x40_c00024{left:128.640427pt;}
.x6_c00024{left:150.719200pt;}
.x7_c00024{left:154.879333pt;}
.x1a_c00024{left:165.118667pt;}
.x2a_c00024{left:181.119200pt;}
.x1b_c00024{left:183.358933pt;}
.x8_c00024{left:191.359867pt;}
.x2b_c00024{left:197.759720pt;}
.x20_c00024{left:210.238787pt;}
.x3a_c00024{left:220.798787pt;}
.x9_c00024{left:231.039587pt;}
.x3b_c00024{left:235.839867pt;}
.x14_c00024{left:240.000000pt;}
.x1c_c00024{left:242.559067pt;}
.xa_c00024{left:251.838933pt;}
.x15_c00024{left:252.799867pt;}
.x21_c00024{left:265.599587pt;}
.xb_c00024{left:287.039067pt;}
.x2_c00024{left:295.038533pt;}
.x35_c00024{left:299.519453pt;}
.xc_c00024{left:312.638667pt;}
.x36_c00024{left:314.879867pt;}
.x11_c00024{left:337.599587pt;}
.x3_c00024{left:338.879867pt;}
.xd_c00024{left:348.799840pt;}
.x12_c00024{left:350.718787pt;}
.x22_c00024{left:354.238813pt;}
.x4_c00024{left:361.918907pt;}
.x13_c00024{left:372.159707pt;}
.x18_c00024{left:375.679733pt;}
.x5_c00024{left:387.839320pt;}
.x3d_c00024{left:394.879307pt;}
.x23_c00024{left:396.479040pt;}
.x19_c00024{left:397.759320pt;}
.xe_c00024{left:401.598680pt;}
.x3e_c00024{left:408.959467pt;}
.x31_c00024{left:419.519453pt;}
.x24_c00024{left:422.718787pt;}
.x32_c00024{left:433.278813pt;}
.x2f_c00024{left:435.839320pt;}
.x37_c00024{left:443.519453pt;}
.x2c_c00024{left:445.759320pt;}
.x30_c00024{left:448.319867pt;}
.xf_c00024{left:451.839840pt;}
.x25_c00024{left:459.518520pt;}
.x38_c00024{left:461.438920pt;}
.x1d_c00024{left:464.318813pt;}
.x10_c00024{left:472.639200pt;}
.x26_c00024{left:478.079587pt;}
.x2d_c00024{left:479.359867pt;}
.x2e_c00024{left:497.919480pt;}
.x33_c00024{left:507.839320pt;}
.x34_c00024{left:521.919440pt;}
.x27_c00024{left:531.518520pt;}
.x3f_c00024{left:585.919840pt;}
.x28_c00024{left:600.319333pt;}
.x16_c00024{left:610.879307pt;}
.x17_c00024{left:623.359867pt;}
.x29_c00024{left:647.359867pt;}
.x1e_c00024{left:657.919840pt;}
.x1f_c00024{left:670.398920pt;}
.x39_c00024{left:680.958907pt;}
.x3c_c00024{left:689.279293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcddcb0e806a5aa029b6883e.woff2')format("woff");}.ff1_c00025{font-family:ff1_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;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_bc38078c6e1f1ac100f742c0.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_a7bea42901c4dafff1ca864f.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_de73caebd4aec8c89b576f7c.woff2')format("woff");}.ff4_c00025{font-family:ff4_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:ff5_c00025;src:url('chunks/assets/font_dd61a6059109f307f75f8534.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00025;src:url('chunks/assets/font_77bd4ffce87159d50a877bec.woff2')format("woff");}.ff6_c00025{font-family:ff6_c00025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00025{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m1_c00025{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.315385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315385,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.335616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335616,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338983,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.400568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400568,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.517241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517241,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.527778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527778,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.547619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547619,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(1.369048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.369048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.369048,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls14_c00025{letter-spacing:-24.353753px;}
.ls16_c00025{letter-spacing:-18.857025px;}
.ls2f_c00025{letter-spacing:-11.007090px;}
.ls24_c00025{letter-spacing:-8.914500px;}
.ls12_c00025{letter-spacing:-8.699783px;}
.ls11_c00025{letter-spacing:-7.743750px;}
.ls26_c00025{letter-spacing:-7.426125px;}
.ls28_c00025{letter-spacing:-6.685875px;}
.ls22_c00025{letter-spacing:-6.572700px;}
.ls35_c00025{letter-spacing:-5.998200px;}
.ls33_c00025{letter-spacing:-5.976675px;}
.ls23_c00025{letter-spacing:-5.945625px;}
.lsf_c00025{letter-spacing:-5.443200px;}
.ls21_c00025{letter-spacing:-5.196713px;}
.ls2e_c00025{letter-spacing:-5.054400px;}
.ls25_c00025{letter-spacing:-4.496625px;}
.ls2_c00025{letter-spacing:-4.460745px;}
.ls27_c00025{letter-spacing:-4.456463px;}
.ls29_c00025{letter-spacing:-4.412948px;}
.ls32_c00025{letter-spacing:-4.334498px;}
.ls20_c00025{letter-spacing:-3.717000px;}
.ls2a_c00025{letter-spacing:-3.679650px;}
.ls1d_c00025{letter-spacing:-2.968875px;}
.lsd_c00025{letter-spacing:-2.359350px;}
.ls4_c00025{letter-spacing:-2.335275px;}
.ls1b_c00025{letter-spacing:-2.229413px;}
.ls3_c00025{letter-spacing:-1.529580px;}
.ls5_c00025{letter-spacing:-1.497600px;}
.ls1e_c00025{letter-spacing:-1.489163px;}
.ls34_c00025{letter-spacing:-1.459380px;}
.ls17_c00025{letter-spacing:-1.096200px;}
.ls1c_c00025{letter-spacing:-0.740250px;}
.ls18_c00025{letter-spacing:-0.341775px;}
.ls13_c00025{letter-spacing:-0.312690px;}
.ls1_c00025{letter-spacing:0.000000px;}
.lsc_c00025{letter-spacing:0.682035px;}
.ls15_c00025{letter-spacing:0.710775px;}
.ls1a_c00025{letter-spacing:0.841350px;}
.ls19_c00025{letter-spacing:0.946125px;}
.ls6_c00025{letter-spacing:1.189500px;}
.ls2c_c00025{letter-spacing:1.560038px;}
.ls7_c00025{letter-spacing:1.831140px;}
.ls2b_c00025{letter-spacing:2.519400px;}
.lsa_c00025{letter-spacing:5.641650px;}
.ls9_c00025{letter-spacing:5.847405px;}
.ls1f_c00025{letter-spacing:6.856980px;}
.ls8_c00025{letter-spacing:7.049700px;}
.ls2d_c00025{letter-spacing:7.200720px;}
.ls0_c00025{letter-spacing:7.758450px;}
.ls10_c00025{letter-spacing:9.187763px;}
.lsb_c00025{letter-spacing:18.992228px;}
.ls30_c00025{letter-spacing:23.524050px;}
.ls31_c00025{letter-spacing:37.679647px;}
.lse_c00025{letter-spacing:52.413750px;}
.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;}
._21_c00025{margin-left:-19.763207px;}
._1a_c00025{margin-left:-9.444621px;}
._12_c00025{margin-left:-7.778497px;}
._b_c00025{margin-left:-6.058567px;}
._8_c00025{margin-left:-5.037489px;}
._a_c00025{margin-left:-3.811351px;}
._9_c00025{margin-left:-2.560593px;}
._0_c00025{margin-left:-1.351124px;}
._6_c00025{width:1.068890px;}
._d_c00025{width:2.089475px;}
._c_c00025{width:3.523022px;}
._7_c00025{width:4.772785px;}
._18_c00025{width:5.851066px;}
._f_c00025{width:7.163516px;}
._e_c00025{width:8.825721px;}
._13_c00025{width:10.141131px;}
._11_c00025{width:11.266688px;}
._1_c00025{width:12.826235px;}
._4_c00025{width:13.864190px;}
._5_c00025{width:14.933630px;}
._14_c00025{width:16.632475px;}
._2_c00025{width:18.347264px;}
._3_c00025{width:19.432439px;}
._1d_c00025{width:20.635427px;}
._1e_c00025{width:21.737689px;}
._17_c00025{width:22.839877px;}
._15_c00025{width:23.941204px;}
._19_c00025{width:25.302316px;}
._10_c00025{width:26.335218px;}
._1b_c00025{width:27.529856px;}
._20_c00025{width:28.982437px;}
._1f_c00025{width:30.019589px;}
._1c_c00025{width:34.596257px;}
._16_c00025{width:38.057988px;}
._22_c00025{width:42.849762px;}
._24_c00025{width:44.970202px;}
._23_c00025{width:47.647702px;}
.fc0_c00025{color:transparent;}
.fs15_c00025{font-size:15.750000px;}
.fs13_c00025{font-size:20.250000px;}
.fs11_c00025{font-size:21.000000px;}
.fs10_c00025{font-size:21.750000px;}
.fs14_c00025{font-size:24.750000px;}
.fse_c00025{font-size:26.250000px;}
.fs8_c00025{font-size:34.500000px;}
.fsf_c00025{font-size:44.250000px;}
.fs7_c00025{font-size:47.250000px;}
.fs5_c00025{font-size:48.750000px;}
.fs4_c00025{font-size:50.250000px;}
.fs6_c00025{font-size:54.000000px;}
.fs9_c00025{font-size:54.750000px;}
.fs12_c00025{font-size:57.750000px;}
.fsa_c00025{font-size:61.500000px;}
.fsd_c00025{font-size:63.000000px;}
.fsb_c00025{font-size:66.000000px;}
.fsc_c00025{font-size:67.500000px;}
.fs1d_c00025{font-size:69.750000px;}
.fs1b_c00025{font-size:72.000000px;}
.fs1f_c00025{font-size:75.750000px;}
.fs1a_c00025{font-size:76.500000px;}
.fs1e_c00025{font-size:77.250000px;}
.fs2_c00025{font-size:78.000000px;}
.fs0_c00025{font-size:78.750000px;}
.fs1_c00025{font-size:79.500000px;}
.fs3_c00025{font-size:80.250000px;}
.fs1c_c00025{font-size:81.000000px;}
.fs18_c00025{font-size:81.750000px;}
.fs19_c00025{font-size:82.500000px;}
.fs17_c00025{font-size:84.750000px;}
.fs16_c00025{font-size:118.500000px;}
.y0_c00025{bottom:0.000000px;}
.y2c_c00025{bottom:177.479250px;}
.y2a_c00025{bottom:207.359070px;}
.y2b_c00025{bottom:207.359850px;}
.y28_c00025{bottom:237.238680px;}
.y29_c00025{bottom:237.238785px;}
.y27_c00025{bottom:267.478590px;}
.y26_c00025{bottom:297.718500px;}
.y24_c00025{bottom:327.238515px;}
.y25_c00025{bottom:327.239850px;}
.y23_c00025{bottom:356.758050px;}
.y22_c00025{bottom:385.919190px;}
.y21_c00025{bottom:415.798920px;}
.y1f_c00025{bottom:476.638305px;}
.y20_c00025{bottom:476.639700px;}
.y1e_c00025{bottom:506.518020px;}
.y1d_c00025{bottom:536.757930px;}
.y1c_c00025{bottom:565.919085px;}
.y1a_c00025{bottom:595.438590px;}
.y1b_c00025{bottom:595.438620px;}
.y19_c00025{bottom:624.959925px;}
.y17_c00025{bottom:655.199040px;}
.y18_c00025{bottom:655.199850px;}
.y16_c00025{bottom:685.078770px;}
.y15_c00025{bottom:685.078995px;}
.y14_c00025{bottom:714.598530px;}
.y12_c00025{bottom:744.839475px;}
.y13_c00025{bottom:744.840135px;}
.y11_c00025{bottom:804.598920px;}
.y10_c00025{bottom:834.478635px;}
.yf_c00025{bottom:834.480510px;}
.ye_c00025{bottom:864.360240px;}
.yd_c00025{bottom:893.879775px;}
.yb_c00025{bottom:923.759445px;}
.yc_c00025{bottom:923.759490px;}
.ya_c00025{bottom:953.999355px;}
.y9_c00025{bottom:954.000255px;}
.y7_c00025{bottom:983.879310px;}
.y8_c00025{bottom:983.879970px;}
.y6_c00025{bottom:1013.759040px;}
.y5_c00025{bottom:1043.639655px;}
.y3_c00025{bottom:1073.159370px;}
.y4_c00025{bottom:1073.518620px;}
.y2_c00025{bottom:1076.039985px;}
.y1_c00025{bottom:1132.918950px;}
.h17_c00025{height:16.426758px;}
.h15_c00025{height:19.874268px;}
.h13_c00025{height:20.753906px;}
.h12_c00025{height:21.346436px;}
.h18_c00025{height:22.684570px;}
.h16_c00025{height:24.459961px;}
.h10_c00025{height:27.377930px;}
.h9_c00025{height:35.982422px;}
.h11_c00025{height:43.731445px;}
.h6_c00025{height:49.130859px;}
.h8_c00025{height:49.280273px;}
.h5_c00025{height:52.409180px;}
.h7_c00025{height:56.320312px;}
.h14_c00025{height:57.073242px;}
.ha_c00025{height:57.102539px;}
.hb_c00025{height:61.980469px;}
.hf_c00025{height:63.492188px;}
.hd_c00025{height:65.226562px;}
.he_c00025{height:68.027344px;}
.h22_c00025{height:72.747070px;}
.h24_c00025{height:74.344482px;}
.h20_c00025{height:75.093750px;}
.h23_c00025{height:75.816650px;}
.h1b_c00025{height:76.552734px;}
.h1f_c00025{height:77.097656px;}
.h1a_c00025{height:77.288818px;}
.h3_c00025{height:78.609375px;}
.hc_c00025{height:78.760986px;}
.h1_c00025{height:79.365234px;}
.h21_c00025{height:80.050781px;}
.h2_c00025{height:80.121094px;}
.h1d_c00025{height:80.233154px;}
.h4_c00025{height:80.876953px;}
.h1e_c00025{height:80.969238px;}
.h25_c00025{height:82.133789px;}
.h1c_c00025{height:83.177490px;}
.h19_c00025{height:123.591797px;}
.h0_c00025{height:1263.000000px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x31_c00025{left:139.679130px;}
.x1_c00025{left:140.759565px;}
.x6_c00025{left:143.638500px;}
.x7_c00025{left:160.559685px;}
.x36_c00025{left:167.398665px;}
.x2_c00025{left:177.479250px;}
.x8_c00025{left:207.359850px;}
.x3_c00025{left:211.679100px;}
.x16_c00025{left:226.798950px;}
.x30_c00025{left:228.598500px;}
.x9_c00025{left:231.120000px;}
.x17_c00025{left:242.279850px;}
.x13_c00025{left:250.918350px;}
.x39_c00025{left:262.798515px;}
.x3a_c00025{left:278.999385px;}
.x1f_c00025{left:283.679700px;}
.x20_c00025{left:296.639100px;}
.x4_c00025{left:299.158785px;}
.x2d_c00025{left:310.318800px;}
.xa_c00025{left:316.439235px;}
.x1c_c00025{left:327.239850px;}
.x23_c00025{left:331.918350px;}
.x2e_c00025{left:335.878350px;}
.x5_c00025{left:336.959385px;}
.x1d_c00025{left:343.080000px;}
.x24_c00025{left:350.279850px;}
.x34_c00025{left:360.719535px;}
.x35_c00025{left:368.639700px;}
.xb_c00025{left:370.080000px;}
.x14_c00025{left:384.838950px;}
.x37_c00025{left:396.359850px;}
.x38_c00025{left:413.279250px;}
.x32_c00025{left:427.319820px;}
.x25_c00025{left:429.839535px;}
.xc_c00025{left:440.999400px;}
.x33_c00025{left:444.598530px;}
.x26_c00025{left:452.518620px;}
.xd_c00025{left:467.999400px;}
.x27_c00025{left:485.279850px;}
.x3d_c00025{left:489.599070px;}
.x1e_c00025{left:493.559100px;}
.x3e_c00025{left:513.000000px;}
.xe_c00025{left:533.879520px;}
.x28_c00025{left:542.878920px;}
.x21_c00025{left:550.078770px;}
.x22_c00025{left:564.478635px;}
.xf_c00025{left:598.678530px;}
.x18_c00025{left:614.879520px;}
.x19_c00025{left:629.999400px;}
.x29_c00025{left:637.919535px;}
.x10_c00025{left:641.159370px;}
.x11_c00025{left:661.679670px;}
.x2a_c00025{left:667.080000px;}
.x2b_c00025{left:700.918950px;}
.x3b_c00025{left:704.878920px;}
.x1a_c00025{left:715.318770px;}
.x3c_c00025{left:721.439205px;}
.x2f_c00025{left:723.958920px;}
.x1b_c00025{left:736.199850px;}
.x2c_c00025{left:756.359250px;}
.x15_c00025{left:762.479685px;}
.x12_c00025{left:765.358605px;}
.x3f_c00025{left:773.278755px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls14_c00025{letter-spacing:-21.647780pt;}
.ls16_c00025{letter-spacing:-16.761800pt;}
.ls2f_c00025{letter-spacing:-9.784080pt;}
.ls24_c00025{letter-spacing:-7.924000pt;}
.ls12_c00025{letter-spacing:-7.733140pt;}
.ls11_c00025{letter-spacing:-6.883333pt;}
.ls26_c00025{letter-spacing:-6.601000pt;}
.ls28_c00025{letter-spacing:-5.943000pt;}
.ls22_c00025{letter-spacing:-5.842400pt;}
.ls35_c00025{letter-spacing:-5.331733pt;}
.ls33_c00025{letter-spacing:-5.312600pt;}
.ls23_c00025{letter-spacing:-5.285000pt;}
.lsf_c00025{letter-spacing:-4.838400pt;}
.ls21_c00025{letter-spacing:-4.619300pt;}
.ls2e_c00025{letter-spacing:-4.492800pt;}
.ls25_c00025{letter-spacing:-3.997000pt;}
.ls2_c00025{letter-spacing:-3.965107pt;}
.ls27_c00025{letter-spacing:-3.961300pt;}
.ls29_c00025{letter-spacing:-3.922620pt;}
.ls32_c00025{letter-spacing:-3.852887pt;}
.ls20_c00025{letter-spacing:-3.304000pt;}
.ls2a_c00025{letter-spacing:-3.270800pt;}
.ls1d_c00025{letter-spacing:-2.639000pt;}
.lsd_c00025{letter-spacing:-2.097200pt;}
.ls4_c00025{letter-spacing:-2.075800pt;}
.ls1b_c00025{letter-spacing:-1.981700pt;}
.ls3_c00025{letter-spacing:-1.359627pt;}
.ls5_c00025{letter-spacing:-1.331200pt;}
.ls1e_c00025{letter-spacing:-1.323700pt;}
.ls34_c00025{letter-spacing:-1.297227pt;}
.ls17_c00025{letter-spacing:-0.974400pt;}
.ls1c_c00025{letter-spacing:-0.658000pt;}
.ls18_c00025{letter-spacing:-0.303800pt;}
.ls13_c00025{letter-spacing:-0.277947pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.lsc_c00025{letter-spacing:0.606253pt;}
.ls15_c00025{letter-spacing:0.631800pt;}
.ls1a_c00025{letter-spacing:0.747867pt;}
.ls19_c00025{letter-spacing:0.841000pt;}
.ls6_c00025{letter-spacing:1.057333pt;}
.ls2c_c00025{letter-spacing:1.386700pt;}
.ls7_c00025{letter-spacing:1.627680pt;}
.ls2b_c00025{letter-spacing:2.239467pt;}
.lsa_c00025{letter-spacing:5.014800pt;}
.ls9_c00025{letter-spacing:5.197693pt;}
.ls1f_c00025{letter-spacing:6.095093pt;}
.ls8_c00025{letter-spacing:6.266400pt;}
.ls2d_c00025{letter-spacing:6.400640pt;}
.ls0_c00025{letter-spacing:6.896400pt;}
.ls10_c00025{letter-spacing:8.166900pt;}
.lsb_c00025{letter-spacing:16.881980pt;}
.ls30_c00025{letter-spacing:20.910267pt;}
.ls31_c00025{letter-spacing:33.493020pt;}
.lse_c00025{letter-spacing:46.590000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
._21_c00025{margin-left:-17.567295pt;}
._1a_c00025{margin-left:-8.395219pt;}
._12_c00025{margin-left:-6.914219pt;}
._b_c00025{margin-left:-5.385393pt;}
._8_c00025{margin-left:-4.477768pt;}
._a_c00025{margin-left:-3.387868pt;}
._9_c00025{margin-left:-2.276083pt;}
._0_c00025{margin-left:-1.200999pt;}
._6_c00025{width:0.950125pt;}
._d_c00025{width:1.857311pt;}
._c_c00025{width:3.131575pt;}
._7_c00025{width:4.242475pt;}
._18_c00025{width:5.200947pt;}
._f_c00025{width:6.367570pt;}
._e_c00025{width:7.845085pt;}
._13_c00025{width:9.014338pt;}
._11_c00025{width:10.014834pt;}
._1_c00025{width:11.401098pt;}
._4_c00025{width:12.323725pt;}
._5_c00025{width:13.274338pt;}
._14_c00025{width:14.784423pt;}
._2_c00025{width:16.308679pt;}
._3_c00025{width:17.273279pt;}
._1d_c00025{width:18.342602pt;}
._1e_c00025{width:19.322391pt;}
._17_c00025{width:20.302113pt;}
._15_c00025{width:21.281070pt;}
._19_c00025{width:22.490947pt;}
._10_c00025{width:23.409083pt;}
._1b_c00025{width:24.470983pt;}
._20_c00025{width:25.762166pt;}
._1f_c00025{width:26.684079pt;}
._1c_c00025{width:30.752228pt;}
._16_c00025{width:33.829323pt;}
._22_c00025{width:38.088677pt;}
._24_c00025{width:39.973513pt;}
._23_c00025{width:42.353513pt;}
.fs15_c00025{font-size:14.000000pt;}
.fs13_c00025{font-size:18.000000pt;}
.fs11_c00025{font-size:18.666667pt;}
.fs10_c00025{font-size:19.333333pt;}
.fs14_c00025{font-size:22.000000pt;}
.fse_c00025{font-size:23.333333pt;}
.fs8_c00025{font-size:30.666667pt;}
.fsf_c00025{font-size:39.333333pt;}
.fs7_c00025{font-size:42.000000pt;}
.fs5_c00025{font-size:43.333333pt;}
.fs4_c00025{font-size:44.666667pt;}
.fs6_c00025{font-size:48.000000pt;}
.fs9_c00025{font-size:48.666667pt;}
.fs12_c00025{font-size:51.333333pt;}
.fsa_c00025{font-size:54.666667pt;}
.fsd_c00025{font-size:56.000000pt;}
.fsb_c00025{font-size:58.666667pt;}
.fsc_c00025{font-size:60.000000pt;}
.fs1d_c00025{font-size:62.000000pt;}
.fs1b_c00025{font-size:64.000000pt;}
.fs1f_c00025{font-size:67.333333pt;}
.fs1a_c00025{font-size:68.000000pt;}
.fs1e_c00025{font-size:68.666667pt;}
.fs2_c00025{font-size:69.333333pt;}
.fs0_c00025{font-size:70.000000pt;}
.fs1_c00025{font-size:70.666667pt;}
.fs3_c00025{font-size:71.333333pt;}
.fs1c_c00025{font-size:72.000000pt;}
.fs18_c00025{font-size:72.666667pt;}
.fs19_c00025{font-size:73.333333pt;}
.fs17_c00025{font-size:75.333333pt;}
.fs16_c00025{font-size:105.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y2c_c00025{bottom:157.759333pt;}
.y2a_c00025{bottom:184.319173pt;}
.y2b_c00025{bottom:184.319867pt;}
.y28_c00025{bottom:210.878827pt;}
.y29_c00025{bottom:210.878920pt;}
.y27_c00025{bottom:237.758747pt;}
.y26_c00025{bottom:264.638667pt;}
.y24_c00025{bottom:290.878680pt;}
.y25_c00025{bottom:290.879867pt;}
.y23_c00025{bottom:317.118267pt;}
.y22_c00025{bottom:343.039280pt;}
.y21_c00025{bottom:369.599040pt;}
.y1f_c00025{bottom:423.678493pt;}
.y20_c00025{bottom:423.679733pt;}
.y1e_c00025{bottom:450.238240pt;}
.y1d_c00025{bottom:477.118160pt;}
.y1c_c00025{bottom:503.039187pt;}
.y1a_c00025{bottom:529.278747pt;}
.y1b_c00025{bottom:529.278773pt;}
.y19_c00025{bottom:555.519933pt;}
.y17_c00025{bottom:582.399147pt;}
.y18_c00025{bottom:582.399867pt;}
.y16_c00025{bottom:608.958907pt;}
.y15_c00025{bottom:608.959107pt;}
.y14_c00025{bottom:635.198693pt;}
.y12_c00025{bottom:662.079533pt;}
.y13_c00025{bottom:662.080120pt;}
.y11_c00025{bottom:715.199040pt;}
.y10_c00025{bottom:741.758787pt;}
.yf_c00025{bottom:741.760453pt;}
.ye_c00025{bottom:768.320213pt;}
.yd_c00025{bottom:794.559800pt;}
.yb_c00025{bottom:821.119507pt;}
.yc_c00025{bottom:821.119547pt;}
.ya_c00025{bottom:847.999427pt;}
.y9_c00025{bottom:848.000227pt;}
.y7_c00025{bottom:874.559387pt;}
.y8_c00025{bottom:874.559973pt;}
.y6_c00025{bottom:901.119147pt;}
.y5_c00025{bottom:927.679693pt;}
.y3_c00025{bottom:953.919440pt;}
.y4_c00025{bottom:954.238773pt;}
.y2_c00025{bottom:956.479987pt;}
.y1_c00025{bottom:1007.039067pt;}
.h17_c00025{height:14.601562pt;}
.h15_c00025{height:17.666016pt;}
.h13_c00025{height:18.447917pt;}
.h12_c00025{height:18.974609pt;}
.h18_c00025{height:20.164062pt;}
.h16_c00025{height:21.742187pt;}
.h10_c00025{height:24.335938pt;}
.h9_c00025{height:31.984375pt;}
.h11_c00025{height:38.872396pt;}
.h6_c00025{height:43.671875pt;}
.h8_c00025{height:43.804688pt;}
.h5_c00025{height:46.585938pt;}
.h7_c00025{height:50.062500pt;}
.h14_c00025{height:50.731771pt;}
.ha_c00025{height:50.757812pt;}
.hb_c00025{height:55.093750pt;}
.hf_c00025{height:56.437500pt;}
.hd_c00025{height:57.979167pt;}
.he_c00025{height:60.468750pt;}
.h22_c00025{height:64.664062pt;}
.h24_c00025{height:66.083984pt;}
.h20_c00025{height:66.750000pt;}
.h23_c00025{height:67.392578pt;}
.h1b_c00025{height:68.046875pt;}
.h1f_c00025{height:68.531250pt;}
.h1a_c00025{height:68.701172pt;}
.h3_c00025{height:69.875000pt;}
.hc_c00025{height:70.009766pt;}
.h1_c00025{height:70.546875pt;}
.h21_c00025{height:71.156250pt;}
.h2_c00025{height:71.218750pt;}
.h1d_c00025{height:71.318359pt;}
.h4_c00025{height:71.890625pt;}
.h1e_c00025{height:71.972656pt;}
.h25_c00025{height:73.007812pt;}
.h1c_c00025{height:73.935547pt;}
.h19_c00025{height:109.859375pt;}
.h0_c00025{height:1122.666667pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x31_c00025{left:124.159227pt;}
.x1_c00025{left:125.119613pt;}
.x6_c00025{left:127.678667pt;}
.x7_c00025{left:142.719720pt;}
.x36_c00025{left:148.798813pt;}
.x2_c00025{left:157.759333pt;}
.x8_c00025{left:184.319867pt;}
.x3_c00025{left:188.159200pt;}
.x16_c00025{left:201.599067pt;}
.x30_c00025{left:203.198667pt;}
.x9_c00025{left:205.440000pt;}
.x17_c00025{left:215.359867pt;}
.x13_c00025{left:223.038533pt;}
.x39_c00025{left:233.598680pt;}
.x3a_c00025{left:247.999453pt;}
.x1f_c00025{left:252.159733pt;}
.x20_c00025{left:263.679200pt;}
.x4_c00025{left:265.918920pt;}
.x2d_c00025{left:275.838933pt;}
.xa_c00025{left:281.279320pt;}
.x1c_c00025{left:290.879867pt;}
.x23_c00025{left:295.038533pt;}
.x2e_c00025{left:298.558533pt;}
.x5_c00025{left:299.519453pt;}
.x1d_c00025{left:304.960000pt;}
.x24_c00025{left:311.359867pt;}
.x34_c00025{left:320.639587pt;}
.x35_c00025{left:327.679733pt;}
.xb_c00025{left:328.960000pt;}
.x14_c00025{left:342.079067pt;}
.x37_c00025{left:352.319867pt;}
.x38_c00025{left:367.359333pt;}
.x32_c00025{left:379.839840pt;}
.x25_c00025{left:382.079587pt;}
.xc_c00025{left:391.999467pt;}
.x33_c00025{left:395.198693pt;}
.x26_c00025{left:402.238773pt;}
.xd_c00025{left:415.999467pt;}
.x27_c00025{left:431.359867pt;}
.x3d_c00025{left:435.199173pt;}
.x1e_c00025{left:438.719200pt;}
.x3e_c00025{left:456.000000pt;}
.xe_c00025{left:474.559573pt;}
.x28_c00025{left:482.559040pt;}
.x21_c00025{left:488.958907pt;}
.x22_c00025{left:501.758787pt;}
.xf_c00025{left:532.158693pt;}
.x18_c00025{left:546.559573pt;}
.x19_c00025{left:559.999467pt;}
.x29_c00025{left:567.039587pt;}
.x10_c00025{left:569.919440pt;}
.x11_c00025{left:588.159707pt;}
.x2a_c00025{left:592.960000pt;}
.x2b_c00025{left:623.039067pt;}
.x3b_c00025{left:626.559040pt;}
.x1a_c00025{left:635.838907pt;}
.x3c_c00025{left:641.279293pt;}
.x2f_c00025{left:643.519040pt;}
.x1b_c00025{left:654.399867pt;}
.x2c_c00025{left:672.319333pt;}
.x15_c00025{left:677.759720pt;}
.x12_c00025{left:680.318760pt;}
.x3f_c00025{left:687.358893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d60c6124e37241b8339f8b86.woff2')format("woff");}.ff1_c00026{font-family:ff1_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:ff2_c00026;src:url('chunks/assets/font_b78e60699bd503fdc53deab2.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_faa0131b58aeb62780cf21a9.woff2')format("woff");}.ff3_c00026{font-family:ff3_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:ff4_c00026;src:url('chunks/assets/font_8c93fc095fbad3db6b065a44.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00026{transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.md_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.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00026{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls10_c00026{letter-spacing:-12.799958px;}
.lsc_c00026{letter-spacing:-8.175038px;}
.ls8_c00026{letter-spacing:-7.426125px;}
.ls12_c00026{letter-spacing:-6.685875px;}
.ls11_c00026{letter-spacing:-6.197625px;}
.ls5_c00026{letter-spacing:-5.945625px;}
.lsa_c00026{letter-spacing:-5.196713px;}
.lsd_c00026{letter-spacing:-4.456463px;}
.ls1_c00026{letter-spacing:-3.717000px;}
.lsf_c00026{letter-spacing:-3.086100px;}
.ls14_c00026{letter-spacing:-3.085500px;}
.ls3_c00026{letter-spacing:-2.968875px;}
.ls0_c00026{letter-spacing:-2.229413px;}
.ls17_c00026{letter-spacing:-1.709400px;}
.ls2_c00026{letter-spacing:-1.489163px;}
.ls6_c00026{letter-spacing:-1.459380px;}
.ls18_c00026{letter-spacing:-1.245375px;}
.ls13_c00026{letter-spacing:-0.756743px;}
.lsb_c00026{letter-spacing:-0.740250px;}
.ls7_c00026{letter-spacing:0.000000px;}
.ls9_c00026{letter-spacing:1.591200px;}
.ls15_c00026{letter-spacing:1.781550px;}
.lse_c00026{letter-spacing:3.283800px;}
.ls4_c00026{letter-spacing:3.637710px;}
.ls16_c00026{letter-spacing:3.864840px;}
.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;}
._a_c00026{margin-left:-32.243326px;}
._1e_c00026{margin-left:-13.922762px;}
._16_c00026{margin-left:-9.998694px;}
._14_c00026{margin-left:-6.753763px;}
._12_c00026{margin-left:-5.163608px;}
._17_c00026{margin-left:-3.515786px;}
._7_c00026{margin-left:-1.655236px;}
._9_c00026{width:1.418644px;}
._5_c00026{width:2.591291px;}
._13_c00026{width:4.331696px;}
._8_c00026{width:5.403498px;}
._b_c00026{width:6.411246px;}
._11_c00026{width:7.625363px;}
._6_c00026{width:9.395469px;}
._f_c00026{width:10.951346px;}
._18_c00026{width:12.896486px;}
._15_c00026{width:14.523981px;}
._d_c00026{width:16.135830px;}
._19_c00026{width:17.158095px;}
._10_c00026{width:18.876628px;}
._4_c00026{width:20.085083px;}
._2_c00026{width:21.418915px;}
._3_c00026{width:22.838704px;}
._1_c00026{width:24.105702px;}
._0_c00026{width:25.843135px;}
._20_c00026{width:26.941430px;}
._e_c00026{width:28.027021px;}
._24_c00026{width:29.126728px;}
._1a_c00026{width:30.390071px;}
._c_c00026{width:31.427520px;}
._1d_c00026{width:32.799464px;}
._1b_c00026{width:35.462121px;}
._1c_c00026{width:37.763820px;}
._21_c00026{width:43.698642px;}
._1f_c00026{width:46.900811px;}
._23_c00026{width:49.006274px;}
._22_c00026{width:51.371938px;}
.fc0_c00026{color:transparent;}
.fs6_c00026{font-size:57.750000px;}
.fs7_c00026{font-size:60.750000px;}
.fs8_c00026{font-size:74.250000px;}
.fs9_c00026{font-size:75.000000px;}
.fsa_c00026{font-size:75.750000px;}
.fs4_c00026{font-size:76.500000px;}
.fs2_c00026{font-size:78.000000px;}
.fs0_c00026{font-size:78.750000px;}
.fs3_c00026{font-size:80.250000px;}
.fs1_c00026{font-size:81.000000px;}
.fs5_c00026{font-size:82.500000px;}
.fsc_c00026{font-size:84.000000px;}
.fsb_c00026{font-size:84.750000px;}
.fse_c00026{font-size:101.250000px;}
.fsd_c00026{font-size:115.500000px;}
.y0_c00026{bottom:0.000000px;}
.y2f_c00026{bottom:174.959400px;}
.y2e_c00026{bottom:174.960300px;}
.y2d_c00026{bottom:196.201200px;}
.y2c_c00026{bottom:217.079820px;}
.y2b_c00026{bottom:238.679100px;}
.y2a_c00026{bottom:298.079505px;}
.y29_c00026{bottom:328.140360px;}
.y28_c00026{bottom:357.838950px;}
.y27_c00026{bottom:387.358665px;}
.y26_c00026{bottom:387.359505px;}
.y25_c00026{bottom:417.239220px;}
.y24_c00026{bottom:417.240255px;}
.y22_c00026{bottom:447.119940px;}
.y23_c00026{bottom:447.119985px;}
.y21_c00026{bottom:477.359850px;}
.y1f_c00026{bottom:507.599625px;}
.y20_c00026{bottom:507.599670px;}
.y1e_c00026{bottom:537.839535px;}
.y1d_c00026{bottom:537.840150px;}
.y1c_c00026{bottom:566.639010px;}
.y1b_c00026{bottom:596.878920px;}
.y19_c00026{bottom:655.919295px;}
.y1a_c00026{bottom:655.920000px;}
.y18_c00026{bottom:685.799010px;}
.y17_c00026{bottom:716.038920px;}
.y15_c00026{bottom:752.039040px;}
.y16_c00026{bottom:752.039985px;}
.y14_c00026{bottom:775.979115px;}
.y12_c00026{bottom:806.039220px;}
.y13_c00026{bottom:806.039985px;}
.y11_c00026{bottom:835.918950px;}
.y10_c00026{bottom:835.919130px;}
.yf_c00026{bottom:865.438665px;}
.ye_c00026{bottom:865.439460px;}
.yc_c00026{bottom:895.319145px;}
.yd_c00026{bottom:895.319190px;}
.yb_c00026{bottom:925.559055px;}
.ya_c00026{bottom:925.560315px;}
.y9_c00026{bottom:955.800225px;}
.y8_c00026{bottom:985.319760px;}
.y7_c00026{bottom:1015.199475px;}
.y6_c00026{bottom:1044.719010px;}
.y5_c00026{bottom:1074.958920px;}
.y4_c00026{bottom:1074.959100px;}
.y2_c00026{bottom:1104.478140px;}
.y3_c00026{bottom:1104.478635px;}
.y1_c00026{bottom:1134.720150px;}
.h7_c00026{height:56.678467px;}
.h8_c00026{height:63.360352px;}
.hb_c00026{height:73.608398px;}
.hc_c00026{height:74.344482px;}
.hf_c00026{height:75.080566px;}
.h3_c00026{height:76.552734px;}
.h5_c00026{height:77.097656px;}
.h1_c00026{height:77.288818px;}
.h9_c00026{height:77.440430px;}
.h4_c00026{height:78.760986px;}
.ha_c00026{height:79.365234px;}
.h2_c00026{height:79.497070px;}
.h6_c00026{height:80.969238px;}
.he_c00026{height:82.441406px;}
.hd_c00026{height:83.177490px;}
.h11_c00026{height:105.600586px;}
.h10_c00026{height:120.462891px;}
.h0_c00026{height:1263.000000px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.xd_c00026{left:137.883180px;}
.x1_c00026{left:138.958350px;}
.x22_c00026{left:159.119415px;}
.x26_c00026{left:191.158785px;}
.x32_c00026{left:192.955050px;}
.x23_c00026{left:195.118785px;}
.x27_c00026{left:204.479250px;}
.x24_c00026{left:214.559685px;}
.x31_c00026{left:228.598500px;}
.x8_c00026{left:286.919535px;}
.x20_c00026{left:293.399250px;}
.x21_c00026{left:308.878350px;}
.x2f_c00026{left:349.559685px;}
.xe_c00026{left:353.158785px;}
.x1a_c00026{left:363.239250px;}
.xf_c00026{left:369.719100px;}
.x9_c00026{left:371.159385px;}
.x1b_c00026{left:378.000000px;}
.x30_c00026{left:379.079385px;}
.xa_c00026{left:395.639700px;}
.x28_c00026{left:397.798515px;}
.x2_c00026{left:408.239820px;}
.x29_c00026{left:420.838530px;}
.x3_c00026{left:435.958335px;}
.x10_c00026{left:451.080000px;}
.x11_c00026{left:471.598530px;}
.x12_c00026{left:523.798920px;}
.x18_c00026{left:537.478635px;}
.xb_c00026{left:540.718500px;}
.x13_c00026{left:542.158770px;}
.x19_c00026{left:550.798920px;}
.x4_c00026{left:563.039985px;}
.x1c_c00026{left:569.878920px;}
.x5_c00026{left:583.919535px;}
.x1d_c00026{left:610.558635px;}
.xc_c00026{left:620.279850px;}
.x14_c00026{left:633.239220px;}
.x1e_c00026{left:636.479235px;}
.x15_c00026{left:649.079355px;}
.x33_c00026{left:660.239220px;}
.x6_c00026{left:668.879520px;}
.x16_c00026{left:680.039385px;}
.x7_c00026{left:681.838950px;}
.x2a_c00026{left:693.719100px;}
.x17_c00026{left:706.678530px;}
.x25_c00026{left:708.118785px;}
.x2b_c00026{left:716.038920px;}
.x2c_c00026{left:734.759535px;}
.x1f_c00026{left:758.158770px;}
.x2d_c00026{left:760.319235px;}
.x2e_c00026{left:771.120030px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls10_c00026{letter-spacing:-11.377740pt;}
.lsc_c00026{letter-spacing:-7.266700pt;}
.ls8_c00026{letter-spacing:-6.601000pt;}
.ls12_c00026{letter-spacing:-5.943000pt;}
.ls11_c00026{letter-spacing:-5.509000pt;}
.ls5_c00026{letter-spacing:-5.285000pt;}
.lsa_c00026{letter-spacing:-4.619300pt;}
.lsd_c00026{letter-spacing:-3.961300pt;}
.ls1_c00026{letter-spacing:-3.304000pt;}
.lsf_c00026{letter-spacing:-2.743200pt;}
.ls14_c00026{letter-spacing:-2.742667pt;}
.ls3_c00026{letter-spacing:-2.639000pt;}
.ls0_c00026{letter-spacing:-1.981700pt;}
.ls17_c00026{letter-spacing:-1.519467pt;}
.ls2_c00026{letter-spacing:-1.323700pt;}
.ls6_c00026{letter-spacing:-1.297227pt;}
.ls18_c00026{letter-spacing:-1.107000pt;}
.ls13_c00026{letter-spacing:-0.672660pt;}
.lsb_c00026{letter-spacing:-0.658000pt;}
.ls7_c00026{letter-spacing:0.000000pt;}
.ls9_c00026{letter-spacing:1.414400pt;}
.ls15_c00026{letter-spacing:1.583600pt;}
.lse_c00026{letter-spacing:2.918933pt;}
.ls4_c00026{letter-spacing:3.233520pt;}
.ls16_c00026{letter-spacing:3.435413pt;}
.ws0_c00026{word-spacing:0.000000pt;}
._a_c00026{margin-left:-28.660734pt;}
._1e_c00026{margin-left:-12.375789pt;}
._16_c00026{margin-left:-8.887728pt;}
._14_c00026{margin-left:-6.003345pt;}
._12_c00026{margin-left:-4.589874pt;}
._17_c00026{margin-left:-3.125143pt;}
._7_c00026{margin-left:-1.471321pt;}
._9_c00026{width:1.261017pt;}
._5_c00026{width:2.303370pt;}
._13_c00026{width:3.850396pt;}
._8_c00026{width:4.803109pt;}
._b_c00026{width:5.698885pt;}
._11_c00026{width:6.778100pt;}
._6_c00026{width:8.351528pt;}
._f_c00026{width:9.734530pt;}
._18_c00026{width:11.463543pt;}
._15_c00026{width:12.910206pt;}
._d_c00026{width:14.342960pt;}
._19_c00026{width:15.251640pt;}
._10_c00026{width:16.779225pt;}
._4_c00026{width:17.853408pt;}
._2_c00026{width:19.039036pt;}
._3_c00026{width:20.301070pt;}
._1_c00026{width:21.427291pt;}
._0_c00026{width:22.971675pt;}
._20_c00026{width:23.947938pt;}
._e_c00026{width:24.912908pt;}
._24_c00026{width:25.890425pt;}
._1a_c00026{width:27.013396pt;}
._c_c00026{width:27.935574pt;}
._1d_c00026{width:29.155079pt;}
._1b_c00026{width:31.521885pt;}
._1c_c00026{width:33.567840pt;}
._21_c00026{width:38.843238pt;}
._1f_c00026{width:41.689609pt;}
._23_c00026{width:43.561132pt;}
._22_c00026{width:45.663945pt;}
.fs6_c00026{font-size:51.333333pt;}
.fs7_c00026{font-size:54.000000pt;}
.fs8_c00026{font-size:66.000000pt;}
.fs9_c00026{font-size:66.666667pt;}
.fsa_c00026{font-size:67.333333pt;}
.fs4_c00026{font-size:68.000000pt;}
.fs2_c00026{font-size:69.333333pt;}
.fs0_c00026{font-size:70.000000pt;}
.fs3_c00026{font-size:71.333333pt;}
.fs1_c00026{font-size:72.000000pt;}
.fs5_c00026{font-size:73.333333pt;}
.fsc_c00026{font-size:74.666667pt;}
.fsb_c00026{font-size:75.333333pt;}
.fse_c00026{font-size:90.000000pt;}
.fsd_c00026{font-size:102.666667pt;}
.y0_c00026{bottom:0.000000pt;}
.y2f_c00026{bottom:155.519467pt;}
.y2e_c00026{bottom:155.520267pt;}
.y2d_c00026{bottom:174.401067pt;}
.y2c_c00026{bottom:192.959840pt;}
.y2b_c00026{bottom:212.159200pt;}
.y2a_c00026{bottom:264.959560pt;}
.y29_c00026{bottom:291.680320pt;}
.y28_c00026{bottom:318.079067pt;}
.y27_c00026{bottom:344.318813pt;}
.y26_c00026{bottom:344.319560pt;}
.y25_c00026{bottom:370.879307pt;}
.y24_c00026{bottom:370.880227pt;}
.y22_c00026{bottom:397.439947pt;}
.y23_c00026{bottom:397.439987pt;}
.y21_c00026{bottom:424.319867pt;}
.y1f_c00026{bottom:451.199667pt;}
.y20_c00026{bottom:451.199707pt;}
.y1e_c00026{bottom:478.079587pt;}
.y1d_c00026{bottom:478.080133pt;}
.y1c_c00026{bottom:503.679120pt;}
.y1b_c00026{bottom:530.559040pt;}
.y19_c00026{bottom:583.039373pt;}
.y1a_c00026{bottom:583.040000pt;}
.y18_c00026{bottom:609.599120pt;}
.y17_c00026{bottom:636.479040pt;}
.y15_c00026{bottom:668.479147pt;}
.y16_c00026{bottom:668.479987pt;}
.y14_c00026{bottom:689.759213pt;}
.y12_c00026{bottom:716.479307pt;}
.y13_c00026{bottom:716.479987pt;}
.y11_c00026{bottom:743.039067pt;}
.y10_c00026{bottom:743.039227pt;}
.yf_c00026{bottom:769.278813pt;}
.ye_c00026{bottom:769.279520pt;}
.yc_c00026{bottom:795.839240pt;}
.yd_c00026{bottom:795.839280pt;}
.yb_c00026{bottom:822.719160pt;}
.ya_c00026{bottom:822.720280pt;}
.y9_c00026{bottom:849.600200pt;}
.y8_c00026{bottom:875.839787pt;}
.y7_c00026{bottom:902.399533pt;}
.y6_c00026{bottom:928.639120pt;}
.y5_c00026{bottom:955.519040pt;}
.y4_c00026{bottom:955.519200pt;}
.y2_c00026{bottom:981.758347pt;}
.y3_c00026{bottom:981.758787pt;}
.y1_c00026{bottom:1008.640133pt;}
.h7_c00026{height:50.380859pt;}
.h8_c00026{height:56.320312pt;}
.hb_c00026{height:65.429688pt;}
.hc_c00026{height:66.083984pt;}
.hf_c00026{height:66.738281pt;}
.h3_c00026{height:68.046875pt;}
.h5_c00026{height:68.531250pt;}
.h1_c00026{height:68.701172pt;}
.h9_c00026{height:68.835938pt;}
.h4_c00026{height:70.009766pt;}
.ha_c00026{height:70.546875pt;}
.h2_c00026{height:70.664062pt;}
.h6_c00026{height:71.972656pt;}
.he_c00026{height:73.281250pt;}
.hd_c00026{height:73.935547pt;}
.h11_c00026{height:93.867188pt;}
.h10_c00026{height:107.078125pt;}
.h0_c00026{height:1122.666667pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.xd_c00026{left:122.562827pt;}
.x1_c00026{left:123.518533pt;}
.x22_c00026{left:141.439480pt;}
.x26_c00026{left:169.918920pt;}
.x32_c00026{left:171.515600pt;}
.x23_c00026{left:173.438920pt;}
.x27_c00026{left:181.759333pt;}
.x24_c00026{left:190.719720pt;}
.x31_c00026{left:203.198667pt;}
.x8_c00026{left:255.039587pt;}
.x20_c00026{left:260.799333pt;}
.x21_c00026{left:274.558533pt;}
.x2f_c00026{left:310.719720pt;}
.xe_c00026{left:313.918920pt;}
.x1a_c00026{left:322.879333pt;}
.xf_c00026{left:328.639200pt;}
.x9_c00026{left:329.919453pt;}
.x1b_c00026{left:336.000000pt;}
.x30_c00026{left:336.959453pt;}
.xa_c00026{left:351.679733pt;}
.x28_c00026{left:353.598680pt;}
.x2_c00026{left:362.879840pt;}
.x29_c00026{left:374.078693pt;}
.x3_c00026{left:387.518520pt;}
.x10_c00026{left:400.960000pt;}
.x11_c00026{left:419.198693pt;}
.x12_c00026{left:465.599040pt;}
.x18_c00026{left:477.758787pt;}
.xb_c00026{left:480.638667pt;}
.x13_c00026{left:481.918907pt;}
.x19_c00026{left:489.599040pt;}
.x4_c00026{left:500.479987pt;}
.x1c_c00026{left:506.559040pt;}
.x5_c00026{left:519.039587pt;}
.x1d_c00026{left:542.718787pt;}
.xc_c00026{left:551.359867pt;}
.x14_c00026{left:562.879307pt;}
.x1e_c00026{left:565.759320pt;}
.x15_c00026{left:576.959427pt;}
.x33_c00026{left:586.879307pt;}
.x6_c00026{left:594.559573pt;}
.x16_c00026{left:604.479453pt;}
.x7_c00026{left:606.079067pt;}
.x2a_c00026{left:616.639200pt;}
.x17_c00026{left:628.158693pt;}
.x25_c00026{left:629.438920pt;}
.x2b_c00026{left:636.479040pt;}
.x2c_c00026{left:653.119587pt;}
.x1f_c00026{left:673.918907pt;}
.x2d_c00026{left:675.839320pt;}
.x2e_c00026{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e823e30d852b5c21f833aba.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_b232c5c5d87f11252f5b6d0c.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_1d67fa34988bfc4a70d7110a.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.364746;font-style:normal;font-weight:normal;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_bd58f053393937049846c4e8.woff2')format("woff");}.ff4_c00027{font-family:ff4_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:ff5_c00027;src:url('chunks/assets/font_c552d41b2dc8b5ab0ad28108.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00027{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m9_c00027{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.mf_c00027{transform:matrix(0.352632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352632,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.lsa_c00027{letter-spacing:-15.229208px;}
.ls16_c00027{letter-spacing:-7.951500px;}
.ls6_c00027{letter-spacing:-7.426125px;}
.ls3_c00027{letter-spacing:-5.945625px;}
.ls7_c00027{letter-spacing:-5.196713px;}
.ls9_c00027{letter-spacing:-4.761000px;}
.ls18_c00027{letter-spacing:-4.456463px;}
.ls11_c00027{letter-spacing:-3.862493px;}
.ls8_c00027{letter-spacing:-3.717000px;}
.ls0_c00027{letter-spacing:-2.968875px;}
.ls19_c00027{letter-spacing:-2.855775px;}
.lsd_c00027{letter-spacing:-2.230020px;}
.ls1_c00027{letter-spacing:-2.229413px;}
.ls17_c00027{letter-spacing:-1.560000px;}
.ls5_c00027{letter-spacing:-1.489163px;}
.lsf_c00027{letter-spacing:-0.882000px;}
.ls4_c00027{letter-spacing:-0.740250px;}
.ls2_c00027{letter-spacing:0.000000px;}
.lsb_c00027{letter-spacing:0.708750px;}
.lsc_c00027{letter-spacing:0.810105px;}
.ls12_c00027{letter-spacing:1.109250px;}
.ls1a_c00027{letter-spacing:2.470950px;}
.ls14_c00027{letter-spacing:5.119950px;}
.ls13_c00027{letter-spacing:5.196713px;}
.ls10_c00027{letter-spacing:6.058800px;}
.ls15_c00027{letter-spacing:11.699250px;}
.lse_c00027{letter-spacing:15.904350px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:0.000000px;}
._10_c00027{margin-left:-20.487422px;}
._e_c00027{margin-left:-7.789668px;}
._9_c00027{margin-left:-5.389204px;}
._14_c00027{margin-left:-3.679245px;}
._12_c00027{margin-left:-2.450418px;}
._8_c00027{margin-left:-1.398897px;}
._4_c00027{width:1.917250px;}
._c_c00027{width:3.126093px;}
._a_c00027{width:4.424056px;}
._d_c00027{width:5.449114px;}
._13_c00027{width:7.004396px;}
._5_c00027{width:8.244872px;}
._7_c00027{width:10.011279px;}
._b_c00027{width:12.030370px;}
._f_c00027{width:13.374915px;}
._6_c00027{width:15.309565px;}
._16_c00027{width:16.342155px;}
._15_c00027{width:17.822834px;}
._0_c00027{width:19.664202px;}
._1_c00027{width:21.512494px;}
._3_c00027{width:23.566680px;}
._11_c00027{width:24.868552px;}
._1b_c00027{width:25.915184px;}
._17_c00027{width:27.657059px;}
._2_c00027{width:29.358149px;}
._18_c00027{width:31.413524px;}
._1a_c00027{width:32.486084px;}
._19_c00027{width:36.500566px;}
.fc0_c00027{color:transparent;}
.fs2_c00027{font-size:69.000000px;}
.fsa_c00027{font-size:71.250000px;}
.fs9_c00027{font-size:74.250000px;}
.fsc_c00027{font-size:75.000000px;}
.fs3_c00027{font-size:75.750000px;}
.fs8_c00027{font-size:76.500000px;}
.fs7_c00027{font-size:78.000000px;}
.fs0_c00027{font-size:78.750000px;}
.fs6_c00027{font-size:79.500000px;}
.fs5_c00027{font-size:80.250000px;}
.fs4_c00027{font-size:81.750000px;}
.fs1_c00027{font-size:82.500000px;}
.fsd_c00027{font-size:84.750000px;}
.fsb_c00027{font-size:85.500000px;}
.y0_c00027{bottom:0.000000px;}
.y26_c00027{bottom:181.081335px;}
.y25_c00027{bottom:210.961050px;}
.y24_c00027{bottom:240.840780px;}
.y23_c00027{bottom:270.720495px;}
.y22_c00027{bottom:330.121560px;}
.y21_c00027{bottom:360.361470px;}
.y20_c00027{bottom:389.881005px;}
.y1f_c00027{bottom:419.760720px;}
.y1e_c00027{bottom:419.762580px;}
.y1d_c00027{bottom:449.282115px;}
.y1c_c00027{bottom:479.880405px;}
.y1b_c00027{bottom:509.760135px;}
.y1a_c00027{bottom:509.760405px;}
.y19_c00027{bottom:539.640135px;}
.y18_c00027{bottom:599.039385px;}
.y17_c00027{bottom:628.199850px;}
.y16_c00027{bottom:628.200735px;}
.y15_c00027{bottom:658.440645px;}
.y14_c00027{bottom:688.320375px;}
.y13_c00027{bottom:718.560285px;}
.y11_c00027{bottom:747.719895px;}
.y12_c00027{bottom:747.720750px;}
.y10_c00027{bottom:777.959820px;}
.yf_c00027{bottom:807.839535px;}
.ye_c00027{bottom:837.720150px;}
.yd_c00027{bottom:837.721095px;}
.yc_c00027{bottom:867.600810px;}
.yb_c00027{bottom:927.360255px;}
.ya_c00027{bottom:927.360495px;}
.y9_c00027{bottom:957.240210px;}
.y7_c00027{bottom:987.119895px;}
.y8_c00027{bottom:987.119940px;}
.y6_c00027{bottom:1017.359805px;}
.y5_c00027{bottom:1077.480285px;}
.y4_c00027{bottom:1098.000840px;}
.y3_c00027{bottom:1119.600135px;}
.y2_c00027{bottom:1119.601020px;}
.y1_c00027{bottom:1140.479640px;}
.h3_c00027{height:71.964844px;}
.hb_c00027{height:72.872314px;}
.h11_c00027{height:73.608398px;}
.he_c00027{height:74.311523px;}
.h4_c00027{height:74.344482px;}
.h9_c00027{height:75.080566px;}
.hc_c00027{height:76.341797px;}
.h8_c00027{height:76.552734px;}
.hd_c00027{height:77.097656px;}
.h1_c00027{height:77.288818px;}
.h10_c00027{height:78.609375px;}
.h6_c00027{height:78.760986px;}
.ha_c00027{height:79.365234px;}
.h7_c00027{height:80.121094px;}
.h5_c00027{height:80.791992px;}
.h2_c00027{height:80.969238px;}
.h12_c00027{height:83.177490px;}
.hf_c00027{height:84.498047px;}
.h0_c00027{height:1263.000000px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x1e_c00027{left:140.039400px;}
.x8_c00027{left:141.118815px;}
.x21_c00027{left:174.959400px;}
.x1_c00027{left:195.838950px;}
.x6_c00027{left:218.878950px;}
.x15_c00027{left:248.039385px;}
.x16_c00027{left:275.759535px;}
.x7_c00027{left:296.639100px;}
.xd_c00027{left:334.439685px;}
.x4_c00027{left:344.879535px;}
.xe_c00027{left:349.559685px;}
.x5_c00027{left:359.638530px;}
.x13_c00027{left:373.679100px;}
.x2_c00027{left:395.639700px;}
.x17_c00027{left:406.079400px;}
.x3_c00027{left:420.119985px;}
.x18_c00027{left:426.599670px;}
.x14_c00027{left:483.839535px;}
.x22_c00027{left:493.918350px;}
.x23_c00027{left:502.919535px;}
.x19_c00027{left:511.918950px;}
.x1f_c00027{left:533.159415px;}
.x1a_c00027{left:540.359250px;}
.x20_c00027{left:547.199850px;}
.xf_c00027{left:550.439670px;}
.x10_c00027{left:578.159820px;}
.xb_c00027{left:596.878920px;}
.xc_c00027{left:614.159370px;}
.x11_c00027{left:629.999400px;}
.x1b_c00027{left:636.479235px;}
.x26_c00027{left:640.080000px;}
.x24_c00027{left:648.718545px;}
.x1c_c00027{left:662.399820px;}
.x25_c00027{left:665.998950px;}
.x27_c00027{left:667.439250px;}
.x1d_c00027{left:698.758530px;}
.x9_c00027{left:754.918950px;}
.x12_c00027{left:762.479685px;}
.xa_c00027{left:768.959385px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.lsa_c00027{letter-spacing:-13.537073pt;}
.ls16_c00027{letter-spacing:-7.068000pt;}
.ls6_c00027{letter-spacing:-6.601000pt;}
.ls3_c00027{letter-spacing:-5.285000pt;}
.ls7_c00027{letter-spacing:-4.619300pt;}
.ls9_c00027{letter-spacing:-4.232000pt;}
.ls18_c00027{letter-spacing:-3.961300pt;}
.ls11_c00027{letter-spacing:-3.433327pt;}
.ls8_c00027{letter-spacing:-3.304000pt;}
.ls0_c00027{letter-spacing:-2.639000pt;}
.ls19_c00027{letter-spacing:-2.538467pt;}
.lsd_c00027{letter-spacing:-1.982240pt;}
.ls1_c00027{letter-spacing:-1.981700pt;}
.ls17_c00027{letter-spacing:-1.386667pt;}
.ls5_c00027{letter-spacing:-1.323700pt;}
.lsf_c00027{letter-spacing:-0.784000pt;}
.ls4_c00027{letter-spacing:-0.658000pt;}
.ls2_c00027{letter-spacing:0.000000pt;}
.lsb_c00027{letter-spacing:0.630000pt;}
.lsc_c00027{letter-spacing:0.720093pt;}
.ls12_c00027{letter-spacing:0.986000pt;}
.ls1a_c00027{letter-spacing:2.196400pt;}
.ls14_c00027{letter-spacing:4.551067pt;}
.ls13_c00027{letter-spacing:4.619300pt;}
.ls10_c00027{letter-spacing:5.385600pt;}
.ls15_c00027{letter-spacing:10.399333pt;}
.lse_c00027{letter-spacing:14.137200pt;}
.ws0_c00027{word-spacing:0.000000pt;}
._10_c00027{margin-left:-18.211042pt;}
._e_c00027{margin-left:-6.924149pt;}
._9_c00027{margin-left:-4.790404pt;}
._14_c00027{margin-left:-3.270440pt;}
._12_c00027{margin-left:-2.178149pt;}
._8_c00027{margin-left:-1.243464pt;}
._4_c00027{width:1.704223pt;}
._c_c00027{width:2.778749pt;}
._a_c00027{width:3.932494pt;}
._d_c00027{width:4.843657pt;}
._13_c00027{width:6.226130pt;}
._5_c00027{width:7.328775pt;}
._7_c00027{width:8.898915pt;}
._b_c00027{width:10.693662pt;}
._f_c00027{width:11.888813pt;}
._6_c00027{width:13.608502pt;}
._16_c00027{width:14.526360pt;}
._15_c00027{width:15.842519pt;}
._0_c00027{width:17.479291pt;}
._1_c00027{width:19.122217pt;}
._3_c00027{width:20.948160pt;}
._11_c00027{width:22.105379pt;}
._1b_c00027{width:23.035719pt;}
._17_c00027{width:24.584053pt;}
._2_c00027{width:26.096132pt;}
._18_c00027{width:27.923132pt;}
._1a_c00027{width:28.876519pt;}
._19_c00027{width:32.444947pt;}
.fs2_c00027{font-size:61.333333pt;}
.fsa_c00027{font-size:63.333333pt;}
.fs9_c00027{font-size:66.000000pt;}
.fsc_c00027{font-size:66.666667pt;}
.fs3_c00027{font-size:67.333333pt;}
.fs8_c00027{font-size:68.000000pt;}
.fs7_c00027{font-size:69.333333pt;}
.fs0_c00027{font-size:70.000000pt;}
.fs6_c00027{font-size:70.666667pt;}
.fs5_c00027{font-size:71.333333pt;}
.fs4_c00027{font-size:72.666667pt;}
.fs1_c00027{font-size:73.333333pt;}
.fsd_c00027{font-size:75.333333pt;}
.fsb_c00027{font-size:76.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y26_c00027{bottom:160.961187pt;}
.y25_c00027{bottom:187.520933pt;}
.y24_c00027{bottom:214.080693pt;}
.y23_c00027{bottom:240.640440pt;}
.y22_c00027{bottom:293.441387pt;}
.y21_c00027{bottom:320.321307pt;}
.y20_c00027{bottom:346.560893pt;}
.y1f_c00027{bottom:373.120640pt;}
.y1e_c00027{bottom:373.122293pt;}
.y1d_c00027{bottom:399.361880pt;}
.y1c_c00027{bottom:426.560360pt;}
.y1b_c00027{bottom:453.120120pt;}
.y1a_c00027{bottom:453.120360pt;}
.y19_c00027{bottom:479.680120pt;}
.y18_c00027{bottom:532.479453pt;}
.y17_c00027{bottom:558.399867pt;}
.y16_c00027{bottom:558.400653pt;}
.y15_c00027{bottom:585.280573pt;}
.y14_c00027{bottom:611.840333pt;}
.y13_c00027{bottom:638.720253pt;}
.y11_c00027{bottom:664.639907pt;}
.y12_c00027{bottom:664.640667pt;}
.y10_c00027{bottom:691.519840pt;}
.yf_c00027{bottom:718.079587pt;}
.ye_c00027{bottom:744.640133pt;}
.yd_c00027{bottom:744.640973pt;}
.yc_c00027{bottom:771.200720pt;}
.yb_c00027{bottom:824.320227pt;}
.ya_c00027{bottom:824.320440pt;}
.y9_c00027{bottom:850.880187pt;}
.y7_c00027{bottom:877.439907pt;}
.y8_c00027{bottom:877.439947pt;}
.y6_c00027{bottom:904.319827pt;}
.y5_c00027{bottom:957.760253pt;}
.y4_c00027{bottom:976.000747pt;}
.y3_c00027{bottom:995.200120pt;}
.y2_c00027{bottom:995.200907pt;}
.y1_c00027{bottom:1013.759680pt;}
.h3_c00027{height:63.968750pt;}
.hb_c00027{height:64.775391pt;}
.h11_c00027{height:65.429688pt;}
.he_c00027{height:66.054688pt;}
.h4_c00027{height:66.083984pt;}
.h9_c00027{height:66.738281pt;}
.hc_c00027{height:67.859375pt;}
.h8_c00027{height:68.046875pt;}
.hd_c00027{height:68.531250pt;}
.h1_c00027{height:68.701172pt;}
.h10_c00027{height:69.875000pt;}
.h6_c00027{height:70.009766pt;}
.ha_c00027{height:70.546875pt;}
.h7_c00027{height:71.218750pt;}
.h5_c00027{height:71.815104pt;}
.h2_c00027{height:71.972656pt;}
.h12_c00027{height:73.935547pt;}
.hf_c00027{height:75.109375pt;}
.h0_c00027{height:1122.666667pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x1e_c00027{left:124.479467pt;}
.x8_c00027{left:125.438947pt;}
.x21_c00027{left:155.519467pt;}
.x1_c00027{left:174.079067pt;}
.x6_c00027{left:194.559067pt;}
.x15_c00027{left:220.479453pt;}
.x16_c00027{left:245.119587pt;}
.x7_c00027{left:263.679200pt;}
.xd_c00027{left:297.279720pt;}
.x4_c00027{left:306.559587pt;}
.xe_c00027{left:310.719720pt;}
.x5_c00027{left:319.678693pt;}
.x13_c00027{left:332.159200pt;}
.x2_c00027{left:351.679733pt;}
.x17_c00027{left:360.959467pt;}
.x3_c00027{left:373.439987pt;}
.x18_c00027{left:379.199707pt;}
.x14_c00027{left:430.079587pt;}
.x22_c00027{left:439.038533pt;}
.x23_c00027{left:447.039587pt;}
.x19_c00027{left:455.039067pt;}
.x1f_c00027{left:473.919480pt;}
.x1a_c00027{left:480.319333pt;}
.x20_c00027{left:486.399867pt;}
.xf_c00027{left:489.279707pt;}
.x10_c00027{left:513.919840pt;}
.xb_c00027{left:530.559040pt;}
.xc_c00027{left:545.919440pt;}
.x11_c00027{left:559.999467pt;}
.x1b_c00027{left:565.759320pt;}
.x26_c00027{left:568.960000pt;}
.x24_c00027{left:576.638707pt;}
.x1c_c00027{left:588.799840pt;}
.x25_c00027{left:591.999067pt;}
.x27_c00027{left:593.279333pt;}
.x1d_c00027{left:621.118693pt;}
.x9_c00027{left:671.039067pt;}
.x12_c00027{left:677.759720pt;}
.xa_c00027{left:683.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10b9949b25a7cf71abe018d8.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_c7e5f73e2bca0f9cacd434cf.woff2')format("woff");}.ff2_c00028{font-family:ff2_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:ff3_c00028;src:url('chunks/assets/font_00611e4068144df9af055476.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.364746;font-style:normal;font-weight:normal;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_ae4ced2c4b92ee7e2ff34ace.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;}
.m18_c00028{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m20_c00028{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00028{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00028{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1a_c00028{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1b_c00028{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m22_c00028{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m19_c00028{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1d_c00028{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.mf_c00028{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m16_c00028{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m13_c00028{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m17_c00028{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m1c_c00028{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m3_c00028{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m0_c00028{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m12_c00028{transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m4_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.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m15_c00028{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m21_c00028{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m1e_c00028{transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);}
.md_c00028{transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls16_c00028{letter-spacing:-27.721425px;}
.ls1f_c00028{letter-spacing:-10.312500px;}
.ls7_c00028{letter-spacing:-8.914500px;}
.ls14_c00028{letter-spacing:-8.602200px;}
.ls3_c00028{letter-spacing:-7.426125px;}
.ls1d_c00028{letter-spacing:-6.685875px;}
.ls24_c00028{letter-spacing:-6.414390px;}
.lsf_c00028{letter-spacing:-6.000300px;}
.lsc_c00028{letter-spacing:-5.945625px;}
.ls13_c00028{letter-spacing:-5.196713px;}
.ls17_c00028{letter-spacing:-5.140800px;}
.ls12_c00028{letter-spacing:-5.109375px;}
.ls27_c00028{letter-spacing:-4.910535px;}
.ls6_c00028{letter-spacing:-4.456463px;}
.ls20_c00028{letter-spacing:-3.819750px;}
.lsb_c00028{letter-spacing:-3.717000px;}
.ls26_c00028{letter-spacing:-3.543750px;}
.ls19_c00028{letter-spacing:-3.148200px;}
.ls11_c00028{letter-spacing:-3.089228px;}
.ls2_c00028{letter-spacing:-2.968875px;}
.ls1e_c00028{letter-spacing:-2.835000px;}
.lsd_c00028{letter-spacing:-2.268000px;}
.ls8_c00028{letter-spacing:-2.250645px;}
.ls1_c00028{letter-spacing:-2.229413px;}
.ls15_c00028{letter-spacing:-1.555200px;}
.ls4_c00028{letter-spacing:-1.489163px;}
.lse_c00028{letter-spacing:-1.425000px;}
.ls23_c00028{letter-spacing:-0.756045px;}
.ls5_c00028{letter-spacing:-0.740250px;}
.ls1b_c00028{letter-spacing:-0.720225px;}
.ls9_c00028{letter-spacing:0.000000px;}
.ls1c_c00028{letter-spacing:0.772650px;}
.ls10_c00028{letter-spacing:0.795675px;}
.ls0_c00028{letter-spacing:0.801900px;}
.ls28_c00028{letter-spacing:1.661625px;}
.ls22_c00028{letter-spacing:3.283800px;}
.ls21_c00028{letter-spacing:3.795825px;}
.lsa_c00028{letter-spacing:3.898125px;}
.ls1a_c00028{letter-spacing:4.230195px;}
.ls18_c00028{letter-spacing:4.771463px;}
.ls29_c00028{letter-spacing:8.394150px;}
.ls25_c00028{letter-spacing:12.422025px;}
.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;}
._10_c00028{margin-left:-9.890822px;}
._1d_c00028{margin-left:-6.961767px;}
._1c_c00028{margin-left:-4.037349px;}
._15_c00028{margin-left:-1.787179px;}
._e_c00028{width:1.274428px;}
._7_c00028{width:2.888179px;}
._d_c00028{width:4.344281px;}
._8_c00028{width:6.377636px;}
._11_c00028{width:7.475188px;}
._a_c00028{width:9.074214px;}
._b_c00028{width:10.210903px;}
._9_c00028{width:11.351055px;}
._3_c00028{width:12.915787px;}
._6_c00028{width:14.551039px;}
._1b_c00028{width:15.576126px;}
._f_c00028{width:18.081669px;}
._2_c00028{width:19.549078px;}
._c_c00028{width:20.889463px;}
._1_c00028{width:22.372741px;}
._5_c00028{width:23.436906px;}
._1e_c00028{width:24.645184px;}
._13_c00028{width:25.904931px;}
._4_c00028{width:27.009824px;}
._12_c00028{width:28.940298px;}
._0_c00028{width:30.086794px;}
._14_c00028{width:33.249023px;}
._1a_c00028{width:35.671922px;}
._17_c00028{width:36.700591px;}
._19_c00028{width:37.878453px;}
._16_c00028{width:39.988745px;}
._18_c00028{width:44.741619px;}
.fc0_c00028{color:transparent;}
.fs9_c00028{font-size:54.000000px;}
.fsd_c00028{font-size:57.750000px;}
.fsa_c00028{font-size:72.750000px;}
.fs3_c00028{font-size:75.000000px;}
.fsb_c00028{font-size:76.500000px;}
.fs6_c00028{font-size:77.250000px;}
.fsc_c00028{font-size:78.000000px;}
.fs0_c00028{font-size:78.750000px;}
.fs1_c00028{font-size:79.500000px;}
.fs8_c00028{font-size:80.250000px;}
.fs2_c00028{font-size:81.000000px;}
.fs7_c00028{font-size:81.750000px;}
.fs5_c00028{font-size:82.500000px;}
.fs4_c00028{font-size:84.750000px;}
.y0_c00028{bottom:0.000000px;}
.y2e_c00028{bottom:184.679100px;}
.y2d_c00028{bottom:184.679535px;}
.y2c_c00028{bottom:214.199070px;}
.y2b_c00028{bottom:273.600135px;}
.y2a_c00028{bottom:303.479850px;}
.y29_c00028{bottom:332.999385px;}
.y28_c00028{bottom:333.000270px;}
.y27_c00028{bottom:362.880000px;}
.y26_c00028{bottom:392.759085px;}
.y25_c00028{bottom:423.359850px;}
.y24_c00028{bottom:423.360810px;}
.y23_c00028{bottom:452.880345px;}
.y21_c00028{bottom:483.477945px;}
.y22_c00028{bottom:483.478635px;}
.y20_c00028{bottom:512.639100px;}
.y1f_c00028{bottom:512.639235px;}
.y1e_c00028{bottom:542.158770px;}
.y1d_c00028{bottom:542.158995px;}
.y1c_c00028{bottom:571.678530px;}
.y1b_c00028{bottom:602.279250px;}
.y1a_c00028{bottom:602.279385px;}
.y19_c00028{bottom:631.798920px;}
.y18_c00028{bottom:661.678935px;}
.y17_c00028{bottom:721.080000px;}
.y16_c00028{bottom:750.958920px;}
.y15_c00028{bottom:781.198785px;}
.y14_c00028{bottom:781.199685px;}
.y12_c00028{bottom:811.079265px;}
.y13_c00028{bottom:811.079400px;}
.y10_c00028{bottom:841.318500px;}
.y11_c00028{bottom:841.319190px;}
.ye_c00028{bottom:870.479595px;}
.yf_c00028{bottom:870.479640px;}
.yd_c00028{bottom:900.719520px;}
.yc_c00028{bottom:900.719700px;}
.yb_c00028{bottom:930.239220px;}
.ya_c00028{bottom:930.239565px;}
.y8_c00028{bottom:960.658200px;}
.y9_c00028{bottom:960.658815px;}
.y7_c00028{bottom:990.719055px;}
.y6_c00028{bottom:990.719265px;}
.y4_c00028{bottom:1049.760090px;}
.y5_c00028{bottom:1049.760135px;}
.y3_c00028{bottom:1080.000000px;}
.y2_c00028{bottom:1109.518860px;}
.y1_c00028{bottom:1139.398590px;}
.hd_c00028{height:56.320312px;}
.h16_c00028{height:58.201172px;}
.h4_c00028{height:73.608398px;}
.h12_c00028{height:75.080566px;}
.h8_c00028{height:75.816650px;}
.h11_c00028{height:75.875977px;}
.h14_c00028{height:76.552734px;}
.h1_c00028{height:77.288818px;}
.h9_c00028{height:77.853516px;}
.h6_c00028{height:78.013378px;}
.h2_c00028{height:78.024902px;}
.hb_c00028{height:78.760986px;}
.hf_c00028{height:79.365234px;}
.h3_c00028{height:79.497070px;}
.h10_c00028{height:80.121094px;}
.ha_c00028{height:80.233154px;}
.hc_c00028{height:80.791992px;}
.he_c00028{height:80.876953px;}
.h7_c00028{height:80.969238px;}
.h13_c00028{height:81.533203px;}
.h15_c00028{height:81.632812px;}
.h17_c00028{height:82.388672px;}
.h5_c00028{height:83.177490px;}
.h0_c00028{height:1263.000000px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x20_c00028{left:140.039400px;}
.x1_c00028{left:141.118815px;}
.x21_c00028{left:160.559685px;}
.x2_c00028{left:166.319250px;}
.x17_c00028{left:219.958350px;}
.x2b_c00028{left:228.959400px;}
.x18_c00028{left:245.158785px;}
.x2c_c00028{left:247.319250px;}
.x10_c00028{left:264.599700px;}
.x33_c00028{left:269.639100px;}
.x19_c00028{left:271.079385px;}
.x14_c00028{left:273.239850px;}
.x11_c00028{left:284.759100px;}
.x34_c00028{left:292.679100px;}
.x15_c00028{left:296.279850px;}
.xd_c00028{left:299.158785px;}
.x9_c00028{left:301.678500px;}
.xa_c00028{left:327.239850px;}
.x1a_c00028{left:336.598530px;}
.x5_c00028{left:392.759085px;}
.x12_c00028{left:407.878920px;}
.x3_c00028{left:413.638500px;}
.x13_c00028{left:425.518665px;}
.x1b_c00028{left:434.158770px;}
.x6_c00028{left:437.398635px;}
.x4_c00028{left:440.999400px;}
.x25_c00028{left:446.759085px;}
.x29_c00028{left:448.558635px;}
.x16_c00028{left:451.080000px;}
.x2a_c00028{left:462.599070px;}
.x37_c00028{left:465.118785px;}
.x26_c00028{left:473.399820px;}
.xb_c00028{left:476.998950px;}
.x38_c00028{left:482.758530px;}
.xc_c00028{left:496.078770px;}
.x23_c00028{left:509.399235px;}
.x1c_c00028{left:522.358665px;}
.x27_c00028{left:553.318770px;}
.x7_c00028{left:554.399820px;}
.x24_c00028{left:555.479235px;}
.x2f_c00028{left:566.279850px;}
.x8_c00028{left:575.279250px;}
.xe_c00028{left:577.798920px;}
.x39_c00028{left:579.598530px;}
.x28_c00028{left:582.119985px;}
.x30_c00028{left:593.279850px;}
.x2d_c00028{left:611.998950px;}
.x1d_c00028{left:628.559100px;}
.x2e_c00028{left:630.358605px;}
.x1e_c00028{left:646.198785px;}
.xf_c00028{left:664.199385px;}
.x22_c00028{left:707.039385px;}
.x31_c00028{left:722.879520px;}
.x35_c00028{left:737.638545px;}
.x36_c00028{left:757.079355px;}
.x1f_c00028{left:764.999355px;}
.x3a_c00028{left:767.519070px;}
.x32_c00028{left:772.919490px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls16_c00028{letter-spacing:-24.641267pt;}
.ls1f_c00028{letter-spacing:-9.166667pt;}
.ls7_c00028{letter-spacing:-7.924000pt;}
.ls14_c00028{letter-spacing:-7.646400pt;}
.ls3_c00028{letter-spacing:-6.601000pt;}
.ls1d_c00028{letter-spacing:-5.943000pt;}
.ls24_c00028{letter-spacing:-5.701680pt;}
.lsf_c00028{letter-spacing:-5.333600pt;}
.lsc_c00028{letter-spacing:-5.285000pt;}
.ls13_c00028{letter-spacing:-4.619300pt;}
.ls17_c00028{letter-spacing:-4.569600pt;}
.ls12_c00028{letter-spacing:-4.541667pt;}
.ls27_c00028{letter-spacing:-4.364920pt;}
.ls6_c00028{letter-spacing:-3.961300pt;}
.ls20_c00028{letter-spacing:-3.395333pt;}
.lsb_c00028{letter-spacing:-3.304000pt;}
.ls26_c00028{letter-spacing:-3.150000pt;}
.ls19_c00028{letter-spacing:-2.798400pt;}
.ls11_c00028{letter-spacing:-2.745980pt;}
.ls2_c00028{letter-spacing:-2.639000pt;}
.ls1e_c00028{letter-spacing:-2.520000pt;}
.lsd_c00028{letter-spacing:-2.016000pt;}
.ls8_c00028{letter-spacing:-2.000573pt;}
.ls1_c00028{letter-spacing:-1.981700pt;}
.ls15_c00028{letter-spacing:-1.382400pt;}
.ls4_c00028{letter-spacing:-1.323700pt;}
.lse_c00028{letter-spacing:-1.266667pt;}
.ls23_c00028{letter-spacing:-0.672040pt;}
.ls5_c00028{letter-spacing:-0.658000pt;}
.ls1b_c00028{letter-spacing:-0.640200pt;}
.ls9_c00028{letter-spacing:0.000000pt;}
.ls1c_c00028{letter-spacing:0.686800pt;}
.ls10_c00028{letter-spacing:0.707267pt;}
.ls0_c00028{letter-spacing:0.712800pt;}
.ls28_c00028{letter-spacing:1.477000pt;}
.ls22_c00028{letter-spacing:2.918933pt;}
.ls21_c00028{letter-spacing:3.374067pt;}
.lsa_c00028{letter-spacing:3.465000pt;}
.ls1a_c00028{letter-spacing:3.760173pt;}
.ls18_c00028{letter-spacing:4.241300pt;}
.ls29_c00028{letter-spacing:7.461467pt;}
.ls25_c00028{letter-spacing:11.041800pt;}
.ws0_c00028{word-spacing:0.000000pt;}
._10_c00028{margin-left:-8.791842pt;}
._1d_c00028{margin-left:-6.188238pt;}
._1c_c00028{margin-left:-3.588755pt;}
._15_c00028{margin-left:-1.588604pt;}
._e_c00028{width:1.132825pt;}
._7_c00028{width:2.567270pt;}
._d_c00028{width:3.861583pt;}
._8_c00028{width:5.669009pt;}
._11_c00028{width:6.644611pt;}
._a_c00028{width:8.065968pt;}
._b_c00028{width:9.076358pt;}
._9_c00028{width:10.089826pt;}
._3_c00028{width:11.480700pt;}
._6_c00028{width:12.934257pt;}
._1b_c00028{width:13.845445pt;}
._f_c00028{width:16.072594pt;}
._2_c00028{width:17.376958pt;}
._c_c00028{width:18.568411pt;}
._1_c00028{width:19.886881pt;}
._5_c00028{width:20.832806pt;}
._1e_c00028{width:21.906830pt;}
._13_c00028{width:23.026606pt;}
._4_c00028{width:24.008732pt;}
._12_c00028{width:25.724709pt;}
._0_c00028{width:26.743817pt;}
._14_c00028{width:29.554687pt;}
._1a_c00028{width:31.708375pt;}
._17_c00028{width:32.622747pt;}
._19_c00028{width:33.669736pt;}
._16_c00028{width:35.545551pt;}
._18_c00028{width:39.770328pt;}
.fs9_c00028{font-size:48.000000pt;}
.fsd_c00028{font-size:51.333333pt;}
.fsa_c00028{font-size:64.666667pt;}
.fs3_c00028{font-size:66.666667pt;}
.fsb_c00028{font-size:68.000000pt;}
.fs6_c00028{font-size:68.666667pt;}
.fsc_c00028{font-size:69.333333pt;}
.fs0_c00028{font-size:70.000000pt;}
.fs1_c00028{font-size:70.666667pt;}
.fs8_c00028{font-size:71.333333pt;}
.fs2_c00028{font-size:72.000000pt;}
.fs7_c00028{font-size:72.666667pt;}
.fs5_c00028{font-size:73.333333pt;}
.fs4_c00028{font-size:75.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y2e_c00028{bottom:164.159200pt;}
.y2d_c00028{bottom:164.159587pt;}
.y2c_c00028{bottom:190.399173pt;}
.y2b_c00028{bottom:243.200120pt;}
.y2a_c00028{bottom:269.759867pt;}
.y29_c00028{bottom:295.999453pt;}
.y28_c00028{bottom:296.000240pt;}
.y27_c00028{bottom:322.560000pt;}
.y26_c00028{bottom:349.119187pt;}
.y25_c00028{bottom:376.319867pt;}
.y24_c00028{bottom:376.320720pt;}
.y23_c00028{bottom:402.560307pt;}
.y21_c00028{bottom:429.758173pt;}
.y22_c00028{bottom:429.758787pt;}
.y20_c00028{bottom:455.679200pt;}
.y1f_c00028{bottom:455.679320pt;}
.y1e_c00028{bottom:481.918907pt;}
.y1d_c00028{bottom:481.919107pt;}
.y1c_c00028{bottom:508.158693pt;}
.y1b_c00028{bottom:535.359333pt;}
.y1a_c00028{bottom:535.359453pt;}
.y19_c00028{bottom:561.599040pt;}
.y18_c00028{bottom:588.159053pt;}
.y17_c00028{bottom:640.960000pt;}
.y16_c00028{bottom:667.519040pt;}
.y15_c00028{bottom:694.398920pt;}
.y14_c00028{bottom:694.399720pt;}
.y12_c00028{bottom:720.959347pt;}
.y13_c00028{bottom:720.959467pt;}
.y10_c00028{bottom:747.838667pt;}
.y11_c00028{bottom:747.839280pt;}
.ye_c00028{bottom:773.759640pt;}
.yf_c00028{bottom:773.759680pt;}
.yd_c00028{bottom:800.639573pt;}
.yc_c00028{bottom:800.639733pt;}
.yb_c00028{bottom:826.879307pt;}
.ya_c00028{bottom:826.879613pt;}
.y8_c00028{bottom:853.918400pt;}
.y9_c00028{bottom:853.918947pt;}
.y7_c00028{bottom:880.639160pt;}
.y6_c00028{bottom:880.639347pt;}
.y4_c00028{bottom:933.120080pt;}
.y5_c00028{bottom:933.120120pt;}
.y3_c00028{bottom:960.000000pt;}
.y2_c00028{bottom:986.238987pt;}
.y1_c00028{bottom:1012.798747pt;}
.hd_c00028{height:50.062500pt;}
.h16_c00028{height:51.734375pt;}
.h4_c00028{height:65.429688pt;}
.h12_c00028{height:66.738281pt;}
.h8_c00028{height:67.392578pt;}
.h11_c00028{height:67.445312pt;}
.h14_c00028{height:68.046875pt;}
.h1_c00028{height:68.701172pt;}
.h9_c00028{height:69.203125pt;}
.h6_c00028{height:69.345225pt;}
.h2_c00028{height:69.355469pt;}
.hb_c00028{height:70.009766pt;}
.hf_c00028{height:70.546875pt;}
.h3_c00028{height:70.664062pt;}
.h10_c00028{height:71.218750pt;}
.ha_c00028{height:71.318359pt;}
.hc_c00028{height:71.815104pt;}
.he_c00028{height:71.890625pt;}
.h7_c00028{height:71.972656pt;}
.h13_c00028{height:72.473958pt;}
.h15_c00028{height:72.562500pt;}
.h17_c00028{height:73.234375pt;}
.h5_c00028{height:73.935547pt;}
.h0_c00028{height:1122.666667pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x20_c00028{left:124.479467pt;}
.x1_c00028{left:125.438947pt;}
.x21_c00028{left:142.719720pt;}
.x2_c00028{left:147.839333pt;}
.x17_c00028{left:195.518533pt;}
.x2b_c00028{left:203.519467pt;}
.x18_c00028{left:217.918920pt;}
.x2c_c00028{left:219.839333pt;}
.x10_c00028{left:235.199733pt;}
.x33_c00028{left:239.679200pt;}
.x19_c00028{left:240.959453pt;}
.x14_c00028{left:242.879867pt;}
.x11_c00028{left:253.119200pt;}
.x34_c00028{left:260.159200pt;}
.x15_c00028{left:263.359867pt;}
.xd_c00028{left:265.918920pt;}
.x9_c00028{left:268.158667pt;}
.xa_c00028{left:290.879867pt;}
.x1a_c00028{left:299.198693pt;}
.x5_c00028{left:349.119187pt;}
.x12_c00028{left:362.559040pt;}
.x3_c00028{left:367.678667pt;}
.x13_c00028{left:378.238813pt;}
.x1b_c00028{left:385.918907pt;}
.x6_c00028{left:388.798787pt;}
.x4_c00028{left:391.999467pt;}
.x25_c00028{left:397.119187pt;}
.x29_c00028{left:398.718787pt;}
.x16_c00028{left:400.960000pt;}
.x2a_c00028{left:411.199173pt;}
.x37_c00028{left:413.438920pt;}
.x26_c00028{left:420.799840pt;}
.xb_c00028{left:423.999067pt;}
.x38_c00028{left:429.118693pt;}
.xc_c00028{left:440.958907pt;}
.x23_c00028{left:452.799320pt;}
.x1c_c00028{left:464.318813pt;}
.x27_c00028{left:491.838907pt;}
.x7_c00028{left:492.799840pt;}
.x24_c00028{left:493.759320pt;}
.x2f_c00028{left:503.359867pt;}
.x8_c00028{left:511.359333pt;}
.xe_c00028{left:513.599040pt;}
.x39_c00028{left:515.198693pt;}
.x28_c00028{left:517.439987pt;}
.x30_c00028{left:527.359867pt;}
.x2d_c00028{left:543.999067pt;}
.x1d_c00028{left:558.719200pt;}
.x2e_c00028{left:560.318760pt;}
.x1e_c00028{left:574.398920pt;}
.xf_c00028{left:590.399453pt;}
.x22_c00028{left:628.479453pt;}
.x31_c00028{left:642.559573pt;}
.x35_c00028{left:655.678707pt;}
.x36_c00028{left:672.959427pt;}
.x1f_c00028{left:679.999427pt;}
.x3a_c00028{left:682.239173pt;}
.x32_c00028{left:687.039547pt;}
}





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

.ir_c00029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_d41712540e353995b562977c.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_a58fec69d6998cecd9db2860.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_9441a4b938dd00c56c81a994.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_40487ccd93f0c0cb2b1e339f.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_d3ceecd57bfddbc85d2cddd5.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.284180;font-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_c00029{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00029{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00029{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);}
.m21_c00029{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1e_c00029{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m18_c00029{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m15_c00029{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1b_c00029{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m17_c00029{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m2_c00029{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00029{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m12_c00029{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.m1f_c00029{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m1d_c00029{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m11_c00029{transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);}
.m20_c00029{transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);}
.mc_c00029{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m10_c00029{transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);}
.mf_c00029{transform:matrix(0.510870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510870,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls20_c00029{letter-spacing:-10.402875px;}
.ls15_c00029{letter-spacing:-8.914500px;}
.ls17_c00029{letter-spacing:-8.175038px;}
.ls1a_c00029{letter-spacing:-7.426125px;}
.ls12_c00029{letter-spacing:-6.940890px;}
.lsf_c00029{letter-spacing:-5.945625px;}
.ls1c_c00029{letter-spacing:-5.476380px;}
.ls16_c00029{letter-spacing:-5.196713px;}
.ls6_c00029{letter-spacing:-5.121225px;}
.ls21_c00029{letter-spacing:-5.071500px;}
.ls8_c00029{letter-spacing:-5.063910px;}
.ls7_c00029{letter-spacing:-5.063775px;}
.ls19_c00029{letter-spacing:-4.456463px;}
.ls3_c00029{letter-spacing:-3.717000px;}
.ls1f_c00029{letter-spacing:-3.457125px;}
.ls1_c00029{letter-spacing:-2.968875px;}
.lsb_c00029{letter-spacing:-2.271308px;}
.ls0_c00029{letter-spacing:-2.229413px;}
.ls4_c00029{letter-spacing:-1.606800px;}
.ls13_c00029{letter-spacing:-1.541505px;}
.ls5_c00029{letter-spacing:-1.489163px;}
.lsa_c00029{letter-spacing:-0.871883px;}
.ls1d_c00029{letter-spacing:-0.826875px;}
.ls11_c00029{letter-spacing:-0.808583px;}
.ls10_c00029{letter-spacing:-0.740250px;}
.ls2_c00029{letter-spacing:0.000000px;}
.ls9_c00029{letter-spacing:0.704475px;}
.ls18_c00029{letter-spacing:0.794820px;}
.ls1e_c00029{letter-spacing:0.826875px;}
.lsd_c00029{letter-spacing:1.606500px;}
.lsc_c00029{letter-spacing:2.845800px;}
.ls1b_c00029{letter-spacing:3.502980px;}
.ls14_c00029{letter-spacing:4.582275px;}
.lse_c00029{letter-spacing:4.587000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:0.000000px;}
._e_c00029{margin-left:-20.672325px;}
._4_c00029{margin-left:-19.088346px;}
._1d_c00029{margin-left:-14.450402px;}
._5_c00029{margin-left:-13.114728px;}
._1_c00029{margin-left:-11.020305px;}
._2_c00029{margin-left:-7.665792px;}
._3_c00029{margin-left:-5.268702px;}
._12_c00029{margin-left:-2.178656px;}
._0_c00029{margin-left:-1.096259px;}
._c_c00029{width:1.580498px;}
._14_c00029{width:2.837288px;}
._d_c00029{width:3.945360px;}
._b_c00029{width:5.625543px;}
._6_c00029{width:6.654761px;}
._8_c00029{width:8.382209px;}
._13_c00029{width:9.594350px;}
._a_c00029{width:10.642899px;}
._11_c00029{width:11.921918px;}
._9_c00029{width:13.655473px;}
._1a_c00029{width:15.227516px;}
._16_c00029{width:16.723083px;}
._10_c00029{width:18.794044px;}
._15_c00029{width:20.125528px;}
._1c_c00029{width:21.155296px;}
._18_c00029{width:22.404613px;}
._7_c00029{width:23.706098px;}
._f_c00029{width:25.578297px;}
._1f_c00029{width:26.939929px;}
._19_c00029{width:28.037912px;}
._20_c00029{width:30.670228px;}
._1e_c00029{width:31.974417px;}
._1b_c00029{width:33.807925px;}
._17_c00029{width:37.791427px;}
._21_c00029{width:39.381567px;}
.fc0_c00029{color:transparent;}
.fs9_c00029{font-size:51.750000px;}
.fs3_c00029{font-size:60.750000px;}
.fs2_c00029{font-size:65.250000px;}
.fs5_c00029{font-size:69.000000px;}
.fs6_c00029{font-size:69.750000px;}
.fsf_c00029{font-size:73.500000px;}
.fs8_c00029{font-size:74.250000px;}
.fs7_c00029{font-size:75.750000px;}
.fs1_c00029{font-size:77.250000px;}
.fse_c00029{font-size:78.000000px;}
.fs0_c00029{font-size:78.750000px;}
.fsc_c00029{font-size:79.500000px;}
.fs4_c00029{font-size:80.250000px;}
.fsb_c00029{font-size:81.000000px;}
.fsa_c00029{font-size:82.500000px;}
.fsd_c00029{font-size:84.750000px;}
.y0_c00029{bottom:0.000000px;}
.y25_c00029{bottom:181.438515px;}
.y26_c00029{bottom:181.439250px;}
.y24_c00029{bottom:202.679415px;}
.y23_c00029{bottom:224.278725px;}
.y22_c00029{bottom:245.519625px;}
.y21_c00029{bottom:304.558395px;}
.y1f_c00029{bottom:333.719265px;}
.y20_c00029{bottom:333.719535px;}
.y1e_c00029{bottom:394.199385px;}
.y1d_c00029{bottom:416.159820px;}
.y1b_c00029{bottom:437.399430px;}
.y1c_c00029{bottom:437.400285px;}
.y1a_c00029{bottom:497.519070px;}
.y19_c00029{bottom:526.680525px;}
.y17_c00029{bottom:586.800135px;}
.y18_c00029{bottom:586.800150px;}
.y16_c00029{bottom:608.038920px;}
.y14_c00029{bottom:629.278770px;}
.y15_c00029{bottom:629.279250px;}
.y12_c00029{bottom:650.519235px;}
.y13_c00029{bottom:650.519670px;}
.y10_c00029{bottom:671.759925px;}
.y11_c00029{bottom:671.760135px;}
.yf_c00029{bottom:693.359235px;}
.ye_c00029{bottom:714.600135px;}
.yd_c00029{bottom:774.720975px;}
.yc_c00029{bottom:804.600705px;}
.yb_c00029{bottom:834.480420px;}
.ya_c00029{bottom:864.360150px;}
.y9_c00029{bottom:894.239865px;}
.y8_c00029{bottom:954.360255px;}
.y7_c00029{bottom:1014.119250px;}
.y6_c00029{bottom:1043.280390px;}
.y5_c00029{bottom:1073.520270px;}
.y4_c00029{bottom:1074.958920px;}
.y3_c00029{bottom:1103.039985px;}
.y2_c00029{bottom:1103.040795px;}
.y1_c00029{bottom:1133.639100px;}
.hc_c00029{height:53.973633px;}
.h4_c00029{height:63.360352px;}
.h3_c00029{height:65.759766px;}
.ha_c00029{height:68.455811px;}
.h6_c00029{height:69.539062px;}
.h7_c00029{height:70.294922px;}
.hb_c00029{height:71.964844px;}
.h9_c00029{height:74.830078px;}
.h8_c00029{height:76.341797px;}
.h13_c00029{height:76.552734px;}
.h16_c00029{height:76.658203px;}
.h15_c00029{height:77.250366px;}
.h1_c00029{height:77.288818px;}
.he_c00029{height:77.440430px;}
.h2_c00029{height:77.853516px;}
.h5_c00029{height:78.760986px;}
.h10_c00029{height:80.121094px;}
.h11_c00029{height:80.876953px;}
.hd_c00029{height:80.969238px;}
.hf_c00029{height:81.632812px;}
.h14_c00029{height:82.133789px;}
.h12_c00029{height:83.177490px;}
.h0_c00029{height:1263.000000px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:136.799565px;}
.x1b_c00029{left:137.879535px;}
.xd_c00029{left:144.358665px;}
.xe_c00029{left:151.558665px;}
.xf_c00029{left:164.878950px;}
.x4_c00029{left:170.279250px;}
.x16_c00029{left:173.519100px;}
.x10_c00029{left:177.838515px;}
.x20_c00029{left:191.877390px;}
.x1c_c00029{left:193.319250px;}
.x2f_c00029{left:194.759850px;}
.x11_c00029{left:196.199850px;}
.x17_c00029{left:200.519100px;}
.x12_c00029{left:204.479250px;}
.x5_c00029{left:217.799535px;}
.x1d_c00029{left:227.878350px;}
.x29_c00029{left:232.199385px;}
.x2_c00029{left:250.559100px;}
.x2a_c00029{left:253.439685px;}
.x21_c00029{left:255.598500px;}
.x6_c00029{left:269.639100px;}
.x7_c00029{left:287.278800px;}
.x18_c00029{left:299.158785px;}
.x13_c00029{left:346.319850px;}
.x3_c00029{left:354.958350px;}
.x8_c00029{left:361.078785px;}
.x14_c00029{left:374.758500px;}
.x22_c00029{left:399.238770px;}
.x23_c00029{left:413.279250px;}
.x15_c00029{left:438.479685px;}
.x25_c00029{left:451.439250px;}
.x9_c00029{left:462.239820px;}
.x26_c00029{left:465.838950px;}
.xa_c00029{left:485.639100px;}
.x27_c00029{left:546.479685px;}
.x28_c00029{left:559.439250px;}
.xb_c00029{left:577.798920px;}
.xc_c00029{left:593.279850px;}
.x30_c00029{left:597.958335px;}
.x19_c00029{left:607.318770px;}
.x31_c00029{left:613.439250px;}
.x1a_c00029{left:621.718545px;}
.x1e_c00029{left:653.759535px;}
.x1f_c00029{left:668.879520px;}
.x2d_c00029{left:751.319820px;}
.x24_c00029{left:761.398635px;}
.x2e_c00029{left:766.078770px;}
.x2c_c00029{left:767.159820px;}
.x2b_c00029{left:770.399865px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls20_c00029{letter-spacing:-9.247000pt;}
.ls15_c00029{letter-spacing:-7.924000pt;}
.ls17_c00029{letter-spacing:-7.266700pt;}
.ls1a_c00029{letter-spacing:-6.601000pt;}
.ls12_c00029{letter-spacing:-6.169680pt;}
.lsf_c00029{letter-spacing:-5.285000pt;}
.ls1c_c00029{letter-spacing:-4.867893pt;}
.ls16_c00029{letter-spacing:-4.619300pt;}
.ls6_c00029{letter-spacing:-4.552200pt;}
.ls21_c00029{letter-spacing:-4.508000pt;}
.ls8_c00029{letter-spacing:-4.501253pt;}
.ls7_c00029{letter-spacing:-4.501133pt;}
.ls19_c00029{letter-spacing:-3.961300pt;}
.ls3_c00029{letter-spacing:-3.304000pt;}
.ls1f_c00029{letter-spacing:-3.073000pt;}
.ls1_c00029{letter-spacing:-2.639000pt;}
.lsb_c00029{letter-spacing:-2.018940pt;}
.ls0_c00029{letter-spacing:-1.981700pt;}
.ls4_c00029{letter-spacing:-1.428267pt;}
.ls13_c00029{letter-spacing:-1.370227pt;}
.ls5_c00029{letter-spacing:-1.323700pt;}
.lsa_c00029{letter-spacing:-0.775007pt;}
.ls1d_c00029{letter-spacing:-0.735000pt;}
.ls11_c00029{letter-spacing:-0.718740pt;}
.ls10_c00029{letter-spacing:-0.658000pt;}
.ls2_c00029{letter-spacing:0.000000pt;}
.ls9_c00029{letter-spacing:0.626200pt;}
.ls18_c00029{letter-spacing:0.706507pt;}
.ls1e_c00029{letter-spacing:0.735000pt;}
.lsd_c00029{letter-spacing:1.428000pt;}
.lsc_c00029{letter-spacing:2.529600pt;}
.ls1b_c00029{letter-spacing:3.113760pt;}
.ls14_c00029{letter-spacing:4.073133pt;}
.lse_c00029{letter-spacing:4.077333pt;}
.ws0_c00029{word-spacing:0.000000pt;}
._e_c00029{margin-left:-18.375400pt;}
._4_c00029{margin-left:-16.967419pt;}
._1d_c00029{margin-left:-12.844802pt;}
._5_c00029{margin-left:-11.657536pt;}
._1_c00029{margin-left:-9.795826pt;}
._2_c00029{margin-left:-6.814038pt;}
._3_c00029{margin-left:-4.683291pt;}
._12_c00029{margin-left:-1.936583pt;}
._0_c00029{margin-left:-0.974453pt;}
._c_c00029{width:1.404887pt;}
._14_c00029{width:2.522034pt;}
._d_c00029{width:3.506987pt;}
._b_c00029{width:5.000483pt;}
._6_c00029{width:5.915343pt;}
._8_c00029{width:7.450853pt;}
._13_c00029{width:8.528311pt;}
._a_c00029{width:9.460355pt;}
._11_c00029{width:10.597260pt;}
._9_c00029{width:12.138198pt;}
._1a_c00029{width:13.535570pt;}
._16_c00029{width:14.864962pt;}
._10_c00029{width:16.705817pt;}
._15_c00029{width:17.889358pt;}
._1c_c00029{width:18.804708pt;}
._18_c00029{width:19.915211pt;}
._7_c00029{width:21.072087pt;}
._f_c00029{width:22.736264pt;}
._1f_c00029{width:23.946604pt;}
._19_c00029{width:24.922589pt;}
._20_c00029{width:27.262425pt;}
._1e_c00029{width:28.421704pt;}
._1b_c00029{width:30.051489pt;}
._17_c00029{width:33.592379pt;}
._21_c00029{width:35.005838pt;}
.fs9_c00029{font-size:46.000000pt;}
.fs3_c00029{font-size:54.000000pt;}
.fs2_c00029{font-size:58.000000pt;}
.fs5_c00029{font-size:61.333333pt;}
.fs6_c00029{font-size:62.000000pt;}
.fsf_c00029{font-size:65.333333pt;}
.fs8_c00029{font-size:66.000000pt;}
.fs7_c00029{font-size:67.333333pt;}
.fs1_c00029{font-size:68.666667pt;}
.fse_c00029{font-size:69.333333pt;}
.fs0_c00029{font-size:70.000000pt;}
.fsc_c00029{font-size:70.666667pt;}
.fs4_c00029{font-size:71.333333pt;}
.fsb_c00029{font-size:72.000000pt;}
.fsa_c00029{font-size:73.333333pt;}
.fsd_c00029{font-size:75.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.y25_c00029{bottom:161.278680pt;}
.y26_c00029{bottom:161.279333pt;}
.y24_c00029{bottom:180.159480pt;}
.y23_c00029{bottom:199.358867pt;}
.y22_c00029{bottom:218.239667pt;}
.y21_c00029{bottom:270.718573pt;}
.y1f_c00029{bottom:296.639347pt;}
.y20_c00029{bottom:296.639587pt;}
.y1e_c00029{bottom:350.399453pt;}
.y1d_c00029{bottom:369.919840pt;}
.y1b_c00029{bottom:388.799493pt;}
.y1c_c00029{bottom:388.800253pt;}
.y1a_c00029{bottom:442.239173pt;}
.y19_c00029{bottom:468.160467pt;}
.y17_c00029{bottom:521.600120pt;}
.y18_c00029{bottom:521.600133pt;}
.y16_c00029{bottom:540.479040pt;}
.y14_c00029{bottom:559.358907pt;}
.y15_c00029{bottom:559.359333pt;}
.y12_c00029{bottom:578.239320pt;}
.y13_c00029{bottom:578.239707pt;}
.y10_c00029{bottom:597.119933pt;}
.y11_c00029{bottom:597.120120pt;}
.yf_c00029{bottom:616.319320pt;}
.ye_c00029{bottom:635.200120pt;}
.yd_c00029{bottom:688.640867pt;}
.yc_c00029{bottom:715.200627pt;}
.yb_c00029{bottom:741.760373pt;}
.ya_c00029{bottom:768.320133pt;}
.y9_c00029{bottom:794.879880pt;}
.y8_c00029{bottom:848.320227pt;}
.y7_c00029{bottom:901.439333pt;}
.y6_c00029{bottom:927.360347pt;}
.y5_c00029{bottom:954.240240pt;}
.y4_c00029{bottom:955.519040pt;}
.y3_c00029{bottom:980.479987pt;}
.y2_c00029{bottom:980.480707pt;}
.y1_c00029{bottom:1007.679200pt;}
.hc_c00029{height:47.976562pt;}
.h4_c00029{height:56.320312pt;}
.h3_c00029{height:58.453125pt;}
.ha_c00029{height:60.849609pt;}
.h6_c00029{height:61.812500pt;}
.h7_c00029{height:62.484375pt;}
.hb_c00029{height:63.968750pt;}
.h9_c00029{height:66.515625pt;}
.h8_c00029{height:67.859375pt;}
.h13_c00029{height:68.046875pt;}
.h16_c00029{height:68.140625pt;}
.h15_c00029{height:68.666992pt;}
.h1_c00029{height:68.701172pt;}
.he_c00029{height:68.835938pt;}
.h2_c00029{height:69.203125pt;}
.h5_c00029{height:70.009766pt;}
.h10_c00029{height:71.218750pt;}
.h11_c00029{height:71.890625pt;}
.hd_c00029{height:71.972656pt;}
.hf_c00029{height:72.562500pt;}
.h14_c00029{height:73.007812pt;}
.h12_c00029{height:73.935547pt;}
.h0_c00029{height:1122.666667pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:121.599613pt;}
.x1b_c00029{left:122.559587pt;}
.xd_c00029{left:128.318813pt;}
.xe_c00029{left:134.718813pt;}
.xf_c00029{left:146.559067pt;}
.x4_c00029{left:151.359333pt;}
.x16_c00029{left:154.239200pt;}
.x10_c00029{left:158.078680pt;}
.x20_c00029{left:170.557680pt;}
.x1c_c00029{left:171.839333pt;}
.x2f_c00029{left:173.119867pt;}
.x11_c00029{left:174.399867pt;}
.x17_c00029{left:178.239200pt;}
.x12_c00029{left:181.759333pt;}
.x5_c00029{left:193.599587pt;}
.x1d_c00029{left:202.558533pt;}
.x29_c00029{left:206.399453pt;}
.x2_c00029{left:222.719200pt;}
.x2a_c00029{left:225.279720pt;}
.x21_c00029{left:227.198667pt;}
.x6_c00029{left:239.679200pt;}
.x7_c00029{left:255.358933pt;}
.x18_c00029{left:265.918920pt;}
.x13_c00029{left:307.839867pt;}
.x3_c00029{left:315.518533pt;}
.x8_c00029{left:320.958920pt;}
.x14_c00029{left:333.118667pt;}
.x22_c00029{left:354.878907pt;}
.x23_c00029{left:367.359333pt;}
.x15_c00029{left:389.759720pt;}
.x25_c00029{left:401.279333pt;}
.x9_c00029{left:410.879840pt;}
.x26_c00029{left:414.079067pt;}
.xa_c00029{left:431.679200pt;}
.x27_c00029{left:485.759720pt;}
.x28_c00029{left:497.279333pt;}
.xb_c00029{left:513.599040pt;}
.xc_c00029{left:527.359867pt;}
.x30_c00029{left:531.518520pt;}
.x19_c00029{left:539.838907pt;}
.x31_c00029{left:545.279333pt;}
.x1a_c00029{left:552.638707pt;}
.x1e_c00029{left:581.119587pt;}
.x1f_c00029{left:594.559573pt;}
.x2d_c00029{left:667.839840pt;}
.x24_c00029{left:676.798787pt;}
.x2e_c00029{left:680.958907pt;}
.x2c_c00029{left:681.919840pt;}
.x2b_c00029{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_992119db4c1c96a6f3fdecf0.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_537e36246cbb258e91d17325.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_491264376b191e6dfa979bbf.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_e04bfb61c7e7be10dc3de2c4.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00030;src:url('chunks/assets/font_bec81276043b037a7c5c23bc.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00030{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);}
.m15_c00030{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1a_c00030{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00030{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00030{transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.m18_c00030{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m13_c00030{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.me_c00030{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m12_c00030{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m19_c00030{transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00030{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m16_c00030{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00030{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.261161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261161,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m1d_c00030{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m17_c00030{transform:matrix(0.331395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331395,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls7_c00030{letter-spacing:-29.510798px;}
.lsc_c00030{letter-spacing:-13.102875px;}
.ls19_c00030{letter-spacing:-12.799500px;}
.ls1e_c00030{letter-spacing:-11.694375px;}
.ls23_c00030{letter-spacing:-7.576538px;}
.ls18_c00030{letter-spacing:-6.811875px;}
.ls4_c00030{letter-spacing:-6.597150px;}
.ls12_c00030{letter-spacing:-6.055875px;}
.ls3_c00030{letter-spacing:-5.300663px;}
.ls1f_c00030{letter-spacing:-4.499820px;}
.ls17_c00030{letter-spacing:-3.787875px;}
.ls1d_c00030{letter-spacing:-3.149213px;}
.ls13_c00030{letter-spacing:-3.031875px;}
.lse_c00030{letter-spacing:-2.978250px;}
.ls11_c00030{letter-spacing:-2.855775px;}
.ls22_c00030{letter-spacing:-2.802750px;}
.lsd_c00030{letter-spacing:-2.431575px;}
.ls5_c00030{letter-spacing:-2.267213px;}
.ls15_c00030{letter-spacing:-1.724925px;}
.ls2_c00030{letter-spacing:-1.512000px;}
.ls6_c00030{letter-spacing:-0.756000px;}
.lsf_c00030{letter-spacing:-0.745523px;}
.ls14_c00030{letter-spacing:0.000000px;}
.ls10_c00030{letter-spacing:0.747300px;}
.ls1_c00030{letter-spacing:0.756000px;}
.ls16_c00030{letter-spacing:0.858375px;}
.lsb_c00030{letter-spacing:2.150400px;}
.ls1b_c00030{letter-spacing:2.271285px;}
.ls21_c00030{letter-spacing:2.294325px;}
.ls1c_c00030{letter-spacing:2.317950px;}
.ls1a_c00030{letter-spacing:2.338088px;}
.ls0_c00030{letter-spacing:2.583300px;}
.ls20_c00030{letter-spacing:2.831550px;}
.ls9_c00030{letter-spacing:3.818588px;}
.ls8_c00030{letter-spacing:12.684600px;}
.lsa_c00030{letter-spacing:42.155100px;}
.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;}
._3_c00030{margin-left:-19.758557px;}
._2_c00030{margin-left:-16.825604px;}
._1a_c00030{margin-left:-10.164872px;}
._18_c00030{margin-left:-8.500457px;}
._17_c00030{margin-left:-6.940298px;}
._0_c00030{margin-left:-4.866084px;}
._19_c00030{margin-left:-3.777274px;}
._14_c00030{margin-left:-2.448580px;}
._1_c00030{width:1.976746px;}
._13_c00030{width:3.853359px;}
._11_c00030{width:5.329682px;}
._a_c00030{width:7.321387px;}
._9_c00030{width:8.374033px;}
._15_c00030{width:9.760097px;}
._8_c00030{width:10.880342px;}
._7_c00030{width:12.741265px;}
._10_c00030{width:13.985576px;}
._4_c00030{width:16.040947px;}
._16_c00030{width:17.803012px;}
._6_c00030{width:19.467545px;}
._d_c00030{width:21.120511px;}
._12_c00030{width:22.159765px;}
._1b_c00030{width:23.184303px;}
._5_c00030{width:24.357860px;}
._f_c00030{width:25.700850px;}
._c_c00030{width:27.643491px;}
._e_c00030{width:29.917606px;}
._1d_c00030{width:32.082590px;}
._22_c00030{width:34.198542px;}
._1c_c00030{width:35.283794px;}
._b_c00030{width:38.766160px;}
._20_c00030{width:41.871617px;}
._1e_c00030{width:43.533242px;}
._1f_c00030{width:45.459407px;}
._21_c00030{width:48.646266px;}
.fc0_c00030{color:transparent;}
.fse_c00030{font-size:57.750000px;}
.fs4_c00030{font-size:58.500000px;}
.fs10_c00030{font-size:64.500000px;}
.fs9_c00030{font-size:70.500000px;}
.fs6_c00030{font-size:71.250000px;}
.fs11_c00030{font-size:74.250000px;}
.fsa_c00030{font-size:75.750000px;}
.fsd_c00030{font-size:76.500000px;}
.fsf_c00030{font-size:78.000000px;}
.fs0_c00030{font-size:78.750000px;}
.fsc_c00030{font-size:79.500000px;}
.fs7_c00030{font-size:80.250000px;}
.fs3_c00030{font-size:81.000000px;}
.fsb_c00030{font-size:81.750000px;}
.fs8_c00030{font-size:82.500000px;}
.fs5_c00030{font-size:84.000000px;}
.fs2_c00030{font-size:84.750000px;}
.fs1_c00030{font-size:91.500000px;}
.y0_c00030{bottom:0.000000px;}
.y28_c00030{bottom:179.640750px;}
.y27_c00030{bottom:209.520465px;}
.y26_c00030{bottom:239.040000px;}
.y25_c00030{bottom:268.920600px;}
.y24_c00030{bottom:268.920870px;}
.y23_c00030{bottom:298.440405px;}
.y22_c00030{bottom:328.320120px;}
.y21_c00030{bottom:358.199850px;}
.y20_c00030{bottom:358.201260px;}
.y1f_c00030{bottom:417.242130px;}
.y1e_c00030{bottom:446.761665px;}
.y1d_c00030{bottom:477.001575px;}
.y1c_c00030{bottom:507.241500px;}
.y1b_c00030{bottom:536.761020px;}
.y19_c00030{bottom:566.639940px;}
.y1a_c00030{bottom:566.640750px;}
.y18_c00030{bottom:596.519670px;}
.y17_c00030{bottom:596.520555px;}
.y16_c00030{bottom:626.400285px;}
.y15_c00030{bottom:685.800750px;}
.y14_c00030{bottom:715.320285px;}
.y13_c00030{bottom:745.560285px;}
.y12_c00030{bottom:745.561095px;}
.y11_c00030{bottom:775.440810px;}
.y10_c00030{bottom:805.680720px;}
.yf_c00030{bottom:805.680915px;}
.ye_c00030{bottom:835.200435px;}
.yd_c00030{bottom:835.201290px;}
.yc_c00030{bottom:865.441200px;}
.ya_c00030{bottom:895.320780px;}
.yb_c00030{bottom:895.320930px;}
.y9_c00030{bottom:925.560705px;}
.y8_c00030{bottom:925.561815px;}
.y7_c00030{bottom:955.801740px;}
.y6_c00030{bottom:985.321260px;}
.y4_c00030{bottom:1015.200900px;}
.y5_c00030{bottom:1015.200990px;}
.y3_c00030{bottom:1045.440810px;}
.y2_c00030{bottom:1075.680720px;}
.y1_c00030{bottom:1135.799565px;}
.h11_c00030{height:57.073242px;}
.h6_c00030{height:58.957031px;}
.h13_c00030{height:63.303223px;}
.h15_c00030{height:72.872314px;}
.h8_c00030{height:74.311523px;}
.hc_c00030{height:74.344482px;}
.h10_c00030{height:75.080566px;}
.h16_c00030{height:76.552734px;}
.h1_c00030{height:77.288818px;}
.hf_c00030{height:78.024902px;}
.h12_c00030{height:78.609375px;}
.hb_c00030{height:78.760986px;}
.h5_c00030{height:79.365234px;}
.h4_c00030{height:80.050781px;}
.hd_c00030{height:80.193237px;}
.h9_c00030{height:80.876953px;}
.he_c00030{height:80.928955px;}
.h14_c00030{height:80.969238px;}
.ha_c00030{height:81.533203px;}
.h7_c00030{height:82.400391px;}
.h3_c00030{height:83.756836px;}
.h2_c00030{height:90.427734px;}
.h0_c00030{height:1263.000000px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x25_c00030{left:139.319250px;}
.x4_c00030{left:140.398665px;}
.x26_c00030{left:164.519685px;}
.x5_c00030{left:165.599100px;}
.x1_c00030{left:196.918350px;}
.x6_c00030{left:207.359850px;}
.xf_c00030{left:244.438635px;}
.x7_c00030{left:289.798515px;}
.x8_c00030{left:324.000000px;}
.x10_c00030{left:356.398635px;}
.x2_c00030{left:359.279250px;}
.x11_c00030{left:361.078785px;}
.x24_c00030{left:372.958950px;}
.x9_c00030{left:386.999400px;}
.xa_c00030{left:408.958335px;}
.x1b_c00030{left:412.199850px;}
.x1c_c00030{left:431.279850px;}
.x3_c00030{left:451.798515px;}
.x12_c00030{left:461.158770px;}
.x18_c00030{left:467.999400px;}
.x13_c00030{left:476.998950px;}
.x14_c00030{left:484.918950px;}
.xb_c00030{left:489.958335px;}
.x29_c00030{left:495.358665px;}
.x1d_c00030{left:507.238770px;}
.x15_c00030{left:508.679070px;}
.x2b_c00030{left:516.958335px;}
.xc_c00030{left:524.159820px;}
.x1e_c00030{left:529.919535px;}
.x2c_c00030{left:533.159415px;}
.x16_c00030{left:567.718500px;}
.x17_c00030{left:585.719100px;}
.x1f_c00030{left:607.679670px;}
.xd_c00030{left:614.518620px;}
.x20_c00030{left:627.118785px;}
.x2a_c00030{left:632.519070px;}
.x19_c00030{left:637.558635px;}
.xe_c00030{left:648.718545px;}
.x1a_c00030{left:659.519070px;}
.x27_c00030{left:670.679070px;}
.x28_c00030{left:685.798920px;}
.x21_c00030{left:708.479685px;}
.x22_c00030{left:722.879520px;}
.x23_c00030{left:741.598530px;}
.x2d_c00030{left:767.519070px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls7_c00030{letter-spacing:-26.231820pt;}
.lsc_c00030{letter-spacing:-11.647000pt;}
.ls19_c00030{letter-spacing:-11.377333pt;}
.ls1e_c00030{letter-spacing:-10.395000pt;}
.ls23_c00030{letter-spacing:-6.734700pt;}
.ls18_c00030{letter-spacing:-6.055000pt;}
.ls4_c00030{letter-spacing:-5.864133pt;}
.ls12_c00030{letter-spacing:-5.383000pt;}
.ls3_c00030{letter-spacing:-4.711700pt;}
.ls1f_c00030{letter-spacing:-3.999840pt;}
.ls17_c00030{letter-spacing:-3.367000pt;}
.ls1d_c00030{letter-spacing:-2.799300pt;}
.ls13_c00030{letter-spacing:-2.695000pt;}
.lse_c00030{letter-spacing:-2.647333pt;}
.ls11_c00030{letter-spacing:-2.538467pt;}
.ls22_c00030{letter-spacing:-2.491333pt;}
.lsd_c00030{letter-spacing:-2.161400pt;}
.ls5_c00030{letter-spacing:-2.015300pt;}
.ls15_c00030{letter-spacing:-1.533267pt;}
.ls2_c00030{letter-spacing:-1.344000pt;}
.ls6_c00030{letter-spacing:-0.672000pt;}
.lsf_c00030{letter-spacing:-0.662687pt;}
.ls14_c00030{letter-spacing:0.000000pt;}
.ls10_c00030{letter-spacing:0.664267pt;}
.ls1_c00030{letter-spacing:0.672000pt;}
.ls16_c00030{letter-spacing:0.763000pt;}
.lsb_c00030{letter-spacing:1.911467pt;}
.ls1b_c00030{letter-spacing:2.018920pt;}
.ls21_c00030{letter-spacing:2.039400pt;}
.ls1c_c00030{letter-spacing:2.060400pt;}
.ls1a_c00030{letter-spacing:2.078300pt;}
.ls0_c00030{letter-spacing:2.296267pt;}
.ls20_c00030{letter-spacing:2.516933pt;}
.ls9_c00030{letter-spacing:3.394300pt;}
.ls8_c00030{letter-spacing:11.275200pt;}
.lsa_c00030{letter-spacing:37.471200pt;}
.ws0_c00030{word-spacing:0.000000pt;}
._3_c00030{margin-left:-17.563162pt;}
._2_c00030{margin-left:-14.956092pt;}
._1a_c00030{margin-left:-9.035442pt;}
._18_c00030{margin-left:-7.555962pt;}
._17_c00030{margin-left:-6.169154pt;}
._0_c00030{margin-left:-4.325408pt;}
._19_c00030{margin-left:-3.357577pt;}
._14_c00030{margin-left:-2.176515pt;}
._1_c00030{width:1.757108pt;}
._13_c00030{width:3.425208pt;}
._11_c00030{width:4.737495pt;}
._a_c00030{width:6.507900pt;}
._9_c00030{width:7.443585pt;}
._15_c00030{width:8.675642pt;}
._8_c00030{width:9.671415pt;}
._7_c00030{width:11.325569pt;}
._10_c00030{width:12.431623pt;}
._4_c00030{width:14.258620pt;}
._16_c00030{width:15.824900pt;}
._6_c00030{width:17.304485pt;}
._d_c00030{width:18.773788pt;}
._12_c00030{width:19.697569pt;}
._1b_c00030{width:20.608269pt;}
._5_c00030{width:21.651431pt;}
._f_c00030{width:22.845200pt;}
._c_c00030{width:24.571992pt;}
._e_c00030{width:26.593428pt;}
._1d_c00030{width:28.517858pt;}
._22_c00030{width:30.398704pt;}
._1c_c00030{width:31.363373pt;}
._b_c00030{width:34.458809pt;}
._20_c00030{width:37.219215pt;}
._1e_c00030{width:38.696215pt;}
._1f_c00030{width:40.408362pt;}
._21_c00030{width:43.241126pt;}
.fse_c00030{font-size:51.333333pt;}
.fs4_c00030{font-size:52.000000pt;}
.fs10_c00030{font-size:57.333333pt;}
.fs9_c00030{font-size:62.666667pt;}
.fs6_c00030{font-size:63.333333pt;}
.fs11_c00030{font-size:66.000000pt;}
.fsa_c00030{font-size:67.333333pt;}
.fsd_c00030{font-size:68.000000pt;}
.fsf_c00030{font-size:69.333333pt;}
.fs0_c00030{font-size:70.000000pt;}
.fsc_c00030{font-size:70.666667pt;}
.fs7_c00030{font-size:71.333333pt;}
.fs3_c00030{font-size:72.000000pt;}
.fsb_c00030{font-size:72.666667pt;}
.fs8_c00030{font-size:73.333333pt;}
.fs5_c00030{font-size:74.666667pt;}
.fs2_c00030{font-size:75.333333pt;}
.fs1_c00030{font-size:81.333333pt;}
.y0_c00030{bottom:0.000000pt;}
.y28_c00030{bottom:159.680667pt;}
.y27_c00030{bottom:186.240413pt;}
.y26_c00030{bottom:212.480000pt;}
.y25_c00030{bottom:239.040533pt;}
.y24_c00030{bottom:239.040773pt;}
.y23_c00030{bottom:265.280360pt;}
.y22_c00030{bottom:291.840107pt;}
.y21_c00030{bottom:318.399867pt;}
.y20_c00030{bottom:318.401120pt;}
.y1f_c00030{bottom:370.881893pt;}
.y1e_c00030{bottom:397.121480pt;}
.y1d_c00030{bottom:424.001400pt;}
.y1c_c00030{bottom:450.881333pt;}
.y1b_c00030{bottom:477.120907pt;}
.y19_c00030{bottom:503.679947pt;}
.y1a_c00030{bottom:503.680667pt;}
.y18_c00030{bottom:530.239707pt;}
.y17_c00030{bottom:530.240493pt;}
.y16_c00030{bottom:556.800253pt;}
.y15_c00030{bottom:609.600667pt;}
.y14_c00030{bottom:635.840253pt;}
.y13_c00030{bottom:662.720253pt;}
.y12_c00030{bottom:662.720973pt;}
.y11_c00030{bottom:689.280720pt;}
.y10_c00030{bottom:716.160640pt;}
.yf_c00030{bottom:716.160813pt;}
.ye_c00030{bottom:742.400387pt;}
.yd_c00030{bottom:742.401147pt;}
.yc_c00030{bottom:769.281067pt;}
.ya_c00030{bottom:795.840693pt;}
.yb_c00030{bottom:795.840827pt;}
.y9_c00030{bottom:822.720627pt;}
.y8_c00030{bottom:822.721613pt;}
.y7_c00030{bottom:849.601547pt;}
.y6_c00030{bottom:875.841120pt;}
.y4_c00030{bottom:902.400800pt;}
.y5_c00030{bottom:902.400880pt;}
.y3_c00030{bottom:929.280720pt;}
.y2_c00030{bottom:956.160640pt;}
.y1_c00030{bottom:1009.599613pt;}
.h11_c00030{height:50.731771pt;}
.h6_c00030{height:52.406250pt;}
.h13_c00030{height:56.269531pt;}
.h15_c00030{height:64.775391pt;}
.h8_c00030{height:66.054688pt;}
.hc_c00030{height:66.083984pt;}
.h10_c00030{height:66.738281pt;}
.h16_c00030{height:68.046875pt;}
.h1_c00030{height:68.701172pt;}
.hf_c00030{height:69.355469pt;}
.h12_c00030{height:69.875000pt;}
.hb_c00030{height:70.009766pt;}
.h5_c00030{height:70.546875pt;}
.h4_c00030{height:71.156250pt;}
.hd_c00030{height:71.282878pt;}
.h9_c00030{height:71.890625pt;}
.he_c00030{height:71.936849pt;}
.h14_c00030{height:71.972656pt;}
.ha_c00030{height:72.473958pt;}
.h7_c00030{height:73.244792pt;}
.h3_c00030{height:74.450521pt;}
.h2_c00030{height:80.380208pt;}
.h0_c00030{height:1122.666667pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x25_c00030{left:123.839333pt;}
.x4_c00030{left:124.798813pt;}
.x26_c00030{left:146.239720pt;}
.x5_c00030{left:147.199200pt;}
.x1_c00030{left:175.038533pt;}
.x6_c00030{left:184.319867pt;}
.xf_c00030{left:217.278787pt;}
.x7_c00030{left:257.598680pt;}
.x8_c00030{left:288.000000pt;}
.x10_c00030{left:316.798787pt;}
.x2_c00030{left:319.359333pt;}
.x11_c00030{left:320.958920pt;}
.x24_c00030{left:331.519067pt;}
.x9_c00030{left:343.999467pt;}
.xa_c00030{left:363.518520pt;}
.x1b_c00030{left:366.399867pt;}
.x1c_c00030{left:383.359867pt;}
.x3_c00030{left:401.598680pt;}
.x12_c00030{left:409.918907pt;}
.x18_c00030{left:415.999467pt;}
.x13_c00030{left:423.999067pt;}
.x14_c00030{left:431.039067pt;}
.xb_c00030{left:435.518520pt;}
.x29_c00030{left:440.318813pt;}
.x1d_c00030{left:450.878907pt;}
.x15_c00030{left:452.159173pt;}
.x2b_c00030{left:459.518520pt;}
.xc_c00030{left:465.919840pt;}
.x1e_c00030{left:471.039587pt;}
.x2c_c00030{left:473.919480pt;}
.x16_c00030{left:504.638667pt;}
.x17_c00030{left:520.639200pt;}
.x1f_c00030{left:540.159707pt;}
.xd_c00030{left:546.238773pt;}
.x20_c00030{left:557.438920pt;}
.x2a_c00030{left:562.239173pt;}
.x19_c00030{left:566.718787pt;}
.xe_c00030{left:576.638707pt;}
.x1a_c00030{left:586.239173pt;}
.x27_c00030{left:596.159173pt;}
.x28_c00030{left:609.599040pt;}
.x21_c00030{left:629.759720pt;}
.x22_c00030{left:642.559573pt;}
.x23_c00030{left:659.198693pt;}
.x2d_c00030{left:682.239173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1d417cef2fe45e1d15187e9.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_0afc9a18e87e28f6bdceadff.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00031{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00031{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.mf_c00031{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_c00031{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.me_c00031{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls9_c00031{letter-spacing:-10.402875px;}
.ls4_c00031{letter-spacing:-8.914500px;}
.ls10_c00031{letter-spacing:-8.175038px;}
.ls12_c00031{letter-spacing:-7.426125px;}
.lse_c00031{letter-spacing:-6.685875px;}
.ls5_c00031{letter-spacing:-5.945625px;}
.lsc_c00031{letter-spacing:-5.196713px;}
.lsd_c00031{letter-spacing:-4.456463px;}
.ls6_c00031{letter-spacing:-3.717000px;}
.ls2_c00031{letter-spacing:-2.968875px;}
.lsb_c00031{letter-spacing:-2.862600px;}
.ls0_c00031{letter-spacing:-2.229413px;}
.lsf_c00031{letter-spacing:-2.211300px;}
.ls3_c00031{letter-spacing:-1.489163px;}
.lsa_c00031{letter-spacing:-1.487850px;}
.ls14_c00031{letter-spacing:-1.468800px;}
.ls13_c00031{letter-spacing:-0.742350px;}
.ls1_c00031{letter-spacing:-0.740250px;}
.ls7_c00031{letter-spacing:0.000000px;}
.ls15_c00031{letter-spacing:0.749700px;}
.ls11_c00031{letter-spacing:1.497600px;}
.ls8_c00031{letter-spacing:3.637710px;}
.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;}
._13_c00031{margin-left:-19.733844px;}
._2_c00031{margin-left:-7.464965px;}
._7_c00031{margin-left:-6.220715px;}
._1_c00031{margin-left:-4.785831px;}
._1e_c00031{margin-left:-3.769391px;}
._6_c00031{margin-left:-2.206961px;}
._0_c00031{margin-left:-1.176213px;}
._1b_c00031{width:1.020065px;}
._3_c00031{width:2.142327px;}
._8_c00031{width:3.893430px;}
._9_c00031{width:5.318805px;}
._4_c00031{width:7.213797px;}
._19_c00031{width:8.973993px;}
._a_c00031{width:10.778929px;}
._1c_c00031{width:11.997265px;}
._1a_c00031{width:13.914233px;}
._5_c00031{width:16.364309px;}
._1d_c00031{width:17.870381px;}
._15_c00031{width:19.924760px;}
._b_c00031{width:21.062133px;}
._18_c00031{width:22.177322px;}
._d_c00031{width:24.180604px;}
._e_c00031{width:25.358644px;}
._f_c00031{width:27.169835px;}
._12_c00031{width:29.118184px;}
._11_c00031{width:30.935273px;}
._10_c00031{width:32.751159px;}
._c_c00031{width:34.579303px;}
._14_c00031{width:36.988548px;}
._16_c00031{width:38.584796px;}
._17_c00031{width:44.028768px;}
.fc0_c00031{color:transparent;}
.fs8_c00031{font-size:72.000000px;}
.fsc_c00031{font-size:75.000000px;}
.fs9_c00031{font-size:75.750000px;}
.fsb_c00031{font-size:76.500000px;}
.fs3_c00031{font-size:78.000000px;}
.fs0_c00031{font-size:78.750000px;}
.fsa_c00031{font-size:80.250000px;}
.fs2_c00031{font-size:81.000000px;}
.fs4_c00031{font-size:81.750000px;}
.fs1_c00031{font-size:82.500000px;}
.fs7_c00031{font-size:84.000000px;}
.fs5_c00031{font-size:84.750000px;}
.fs6_c00031{font-size:101.250000px;}
.y0_c00031{bottom:0.000000px;}
.y2e_c00031{bottom:175.679700px;}
.y2d_c00031{bottom:175.679850px;}
.y2c_c00031{bottom:205.199385px;}
.y2b_c00031{bottom:205.200285px;}
.y2a_c00031{bottom:235.080000px;}
.y29_c00031{bottom:235.080870px;}
.y27_c00031{bottom:264.959820px;}
.y28_c00031{bottom:264.960600px;}
.y25_c00031{bottom:294.838950px;}
.y26_c00031{bottom:294.839535px;}
.y24_c00031{bottom:324.358470px;}
.y23_c00031{bottom:353.879820px;}
.y22_c00031{bottom:383.759535px;}
.y21_c00031{bottom:413.999400px;}
.y20_c00031{bottom:414.000525px;}
.y1f_c00031{bottom:443.521860px;}
.y1e_c00031{bottom:474.120165px;}
.y1d_c00031{bottom:503.639700px;}
.y1c_c00031{bottom:503.640525px;}
.y1b_c00031{bottom:533.520240px;}
.y1a_c00031{bottom:592.559010px;}
.y18_c00031{bottom:621.720060px;}
.y19_c00031{bottom:621.720150px;}
.y17_c00031{bottom:651.959970px;}
.y16_c00031{bottom:651.960870px;}
.y14_c00031{bottom:681.839745px;}
.y15_c00031{bottom:681.840585px;}
.y13_c00031{bottom:711.719460px;}
.y12_c00031{bottom:741.959385px;}
.y10_c00031{bottom:772.198650px;}
.y11_c00031{bottom:772.199340px;}
.yf_c00031{bottom:801.359805px;}
.ye_c00031{bottom:801.360165px;}
.yc_c00031{bottom:831.959790px;}
.yd_c00031{bottom:831.960570px;}
.yb_c00031{bottom:862.199700px;}
.ya_c00031{bottom:892.079430px;}
.y9_c00031{bottom:921.600765px;}
.y7_c00031{bottom:981.718800px;}
.y8_c00031{bottom:981.719520px;}
.y6_c00031{bottom:1003.680090px;}
.y5_c00031{bottom:1025.100135px;}
.y3_c00031{bottom:1046.878440px;}
.y4_c00031{bottom:1046.879520px;}
.y2_c00031{bottom:1106.639985px;}
.y1_c00031{bottom:1136.519715px;}
.ha_c00031{height:70.664062px;}
.he_c00031{height:73.608398px;}
.hb_c00031{height:74.344482px;}
.hd_c00031{height:75.080566px;}
.h6_c00031{height:76.552734px;}
.h1_c00031{height:77.288818px;}
.hc_c00031{height:78.760986px;}
.h3_c00031{height:79.497070px;}
.h5_c00031{height:80.233154px;}
.h2_c00031{height:80.969238px;}
.h4_c00031{height:81.351562px;}
.h7_c00031{height:83.177490px;}
.h9_c00031{height:87.609375px;}
.h8_c00031{height:105.600586px;}
.h0_c00031{height:1263.000000px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x16_c00031{left:137.519355px;}
.x2_c00031{left:138.598155px;}
.x1_c00031{left:140.398665px;}
.xa_c00031{left:176.399850px;}
.x7_c00031{left:192.238995px;}
.x5_c00031{left:193.319250px;}
.x3_c00031{left:194.758320px;}
.xb_c00031{left:199.078785px;}
.xe_c00031{left:236.879535px;}
.x11_c00031{left:245.878950px;}
.xf_c00031{left:251.279250px;}
.x12_c00031{left:252.358635px;}
.x1d_c00031{left:255.239250px;}
.xc_c00031{left:261.359850px;}
.x13_c00031{left:266.040000px;}
.x10_c00031{left:269.639100px;}
.x1e_c00031{left:270.718500px;}
.x26_c00031{left:274.678500px;}
.xd_c00031{left:284.759100px;}
.x27_c00031{left:290.159385px;}
.x2b_c00031{left:302.398635px;}
.x2c_c00031{left:329.398635px;}
.x14_c00031{left:475.558635px;}
.x17_c00031{left:479.879520px;}
.x22_c00031{left:484.559685px;}
.x15_c00031{left:487.438665px;}
.x1f_c00031{left:491.759535px;}
.x23_c00031{left:499.679670px;}
.x18_c00031{left:501.119985px;}
.x24_c00031{left:507.599670px;}
.x8_c00031{left:514.079400px;}
.x20_c00031{left:519.118785px;}
.x9_c00031{left:520.918350px;}
.x25_c00031{left:535.319820px;}
.x19_c00031{left:553.318770px;}
.x1a_c00031{left:567.000000px;}
.x1b_c00031{left:605.159820px;}
.x1c_c00031{left:618.839535px;}
.x29_c00031{left:652.678530px;}
.x2a_c00031{left:669.238770px;}
.x28_c00031{left:751.319820px;}
.x6_c00031{left:762.838950px;}
.x21_c00031{left:766.798920px;}
.x4_c00031{left:771.120030px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls9_c00031{letter-spacing:-9.247000pt;}
.ls4_c00031{letter-spacing:-7.924000pt;}
.ls10_c00031{letter-spacing:-7.266700pt;}
.ls12_c00031{letter-spacing:-6.601000pt;}
.lse_c00031{letter-spacing:-5.943000pt;}
.ls5_c00031{letter-spacing:-5.285000pt;}
.lsc_c00031{letter-spacing:-4.619300pt;}
.lsd_c00031{letter-spacing:-3.961300pt;}
.ls6_c00031{letter-spacing:-3.304000pt;}
.ls2_c00031{letter-spacing:-2.639000pt;}
.lsb_c00031{letter-spacing:-2.544533pt;}
.ls0_c00031{letter-spacing:-1.981700pt;}
.lsf_c00031{letter-spacing:-1.965600pt;}
.ls3_c00031{letter-spacing:-1.323700pt;}
.lsa_c00031{letter-spacing:-1.322533pt;}
.ls14_c00031{letter-spacing:-1.305600pt;}
.ls13_c00031{letter-spacing:-0.659867pt;}
.ls1_c00031{letter-spacing:-0.658000pt;}
.ls7_c00031{letter-spacing:0.000000pt;}
.ls15_c00031{letter-spacing:0.666400pt;}
.ls11_c00031{letter-spacing:1.331200pt;}
.ls8_c00031{letter-spacing:3.233520pt;}
.ws0_c00031{word-spacing:0.000000pt;}
._13_c00031{margin-left:-17.541194pt;}
._2_c00031{margin-left:-6.635525pt;}
._7_c00031{margin-left:-5.529525pt;}
._1_c00031{margin-left:-4.254072pt;}
._1e_c00031{margin-left:-3.350570pt;}
._6_c00031{margin-left:-1.961743pt;}
._0_c00031{margin-left:-1.045523pt;}
._1b_c00031{width:0.906725pt;}
._3_c00031{width:1.904291pt;}
._8_c00031{width:3.460826pt;}
._9_c00031{width:4.727826pt;}
._4_c00031{width:6.412264pt;}
._19_c00031{width:7.976883pt;}
._a_c00031{width:9.581270pt;}
._1c_c00031{width:10.664236pt;}
._1a_c00031{width:12.368208pt;}
._5_c00031{width:14.546053pt;}
._1d_c00031{width:15.884783pt;}
._15_c00031{width:17.710898pt;}
._b_c00031{width:18.721896pt;}
._18_c00031{width:19.713175pt;}
._d_c00031{width:21.493870pt;}
._e_c00031{width:22.541017pt;}
._f_c00031{width:24.150964pt;}
._12_c00031{width:25.882830pt;}
._11_c00031{width:27.498021pt;}
._10_c00031{width:29.112142pt;}
._c_c00031{width:30.737158pt;}
._14_c00031{width:32.878709pt;}
._16_c00031{width:34.297596pt;}
._17_c00031{width:39.136683pt;}
.fs8_c00031{font-size:64.000000pt;}
.fsc_c00031{font-size:66.666667pt;}
.fs9_c00031{font-size:67.333333pt;}
.fsb_c00031{font-size:68.000000pt;}
.fs3_c00031{font-size:69.333333pt;}
.fs0_c00031{font-size:70.000000pt;}
.fsa_c00031{font-size:71.333333pt;}
.fs2_c00031{font-size:72.000000pt;}
.fs4_c00031{font-size:72.666667pt;}
.fs1_c00031{font-size:73.333333pt;}
.fs7_c00031{font-size:74.666667pt;}
.fs5_c00031{font-size:75.333333pt;}
.fs6_c00031{font-size:90.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y2e_c00031{bottom:156.159733pt;}
.y2d_c00031{bottom:156.159867pt;}
.y2c_c00031{bottom:182.399453pt;}
.y2b_c00031{bottom:182.400253pt;}
.y2a_c00031{bottom:208.960000pt;}
.y29_c00031{bottom:208.960773pt;}
.y27_c00031{bottom:235.519840pt;}
.y28_c00031{bottom:235.520533pt;}
.y25_c00031{bottom:262.079067pt;}
.y26_c00031{bottom:262.079587pt;}
.y24_c00031{bottom:288.318640pt;}
.y23_c00031{bottom:314.559840pt;}
.y22_c00031{bottom:341.119587pt;}
.y21_c00031{bottom:367.999467pt;}
.y20_c00031{bottom:368.000467pt;}
.y1f_c00031{bottom:394.241653pt;}
.y1e_c00031{bottom:421.440147pt;}
.y1d_c00031{bottom:447.679733pt;}
.y1c_c00031{bottom:447.680467pt;}
.y1b_c00031{bottom:474.240213pt;}
.y1a_c00031{bottom:526.719120pt;}
.y18_c00031{bottom:552.640053pt;}
.y19_c00031{bottom:552.640133pt;}
.y17_c00031{bottom:579.519973pt;}
.y16_c00031{bottom:579.520773pt;}
.y14_c00031{bottom:606.079773pt;}
.y15_c00031{bottom:606.080520pt;}
.y13_c00031{bottom:632.639520pt;}
.y12_c00031{bottom:659.519453pt;}
.y10_c00031{bottom:686.398800pt;}
.y11_c00031{bottom:686.399413pt;}
.yf_c00031{bottom:712.319827pt;}
.ye_c00031{bottom:712.320147pt;}
.yc_c00031{bottom:739.519813pt;}
.yd_c00031{bottom:739.520507pt;}
.yb_c00031{bottom:766.399733pt;}
.ya_c00031{bottom:792.959493pt;}
.y9_c00031{bottom:819.200680pt;}
.y7_c00031{bottom:872.638933pt;}
.y8_c00031{bottom:872.639573pt;}
.y6_c00031{bottom:892.160080pt;}
.y5_c00031{bottom:911.200120pt;}
.y3_c00031{bottom:930.558613pt;}
.y4_c00031{bottom:930.559573pt;}
.y2_c00031{bottom:983.679987pt;}
.y1_c00031{bottom:1010.239747pt;}
.ha_c00031{height:62.812500pt;}
.he_c00031{height:65.429688pt;}
.hb_c00031{height:66.083984pt;}
.hd_c00031{height:66.738281pt;}
.h6_c00031{height:68.046875pt;}
.h1_c00031{height:68.701172pt;}
.hc_c00031{height:70.009766pt;}
.h3_c00031{height:70.664062pt;}
.h5_c00031{height:71.318359pt;}
.h2_c00031{height:71.972656pt;}
.h4_c00031{height:72.312500pt;}
.h7_c00031{height:73.935547pt;}
.h9_c00031{height:77.875000pt;}
.h8_c00031{height:93.867188pt;}
.h0_c00031{height:1122.666667pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x16_c00031{left:122.239427pt;}
.x2_c00031{left:123.198360pt;}
.x1_c00031{left:124.798813pt;}
.xa_c00031{left:156.799867pt;}
.x7_c00031{left:170.879107pt;}
.x5_c00031{left:171.839333pt;}
.x3_c00031{left:173.118507pt;}
.xb_c00031{left:176.958920pt;}
.xe_c00031{left:210.559587pt;}
.x11_c00031{left:218.559067pt;}
.xf_c00031{left:223.359333pt;}
.x12_c00031{left:224.318787pt;}
.x1d_c00031{left:226.879333pt;}
.xc_c00031{left:232.319867pt;}
.x13_c00031{left:236.480000pt;}
.x10_c00031{left:239.679200pt;}
.x1e_c00031{left:240.638667pt;}
.x26_c00031{left:244.158667pt;}
.xd_c00031{left:253.119200pt;}
.x27_c00031{left:257.919453pt;}
.x2b_c00031{left:268.798787pt;}
.x2c_c00031{left:292.798787pt;}
.x14_c00031{left:422.718787pt;}
.x17_c00031{left:426.559573pt;}
.x22_c00031{left:430.719720pt;}
.x15_c00031{left:433.278813pt;}
.x1f_c00031{left:437.119587pt;}
.x23_c00031{left:444.159707pt;}
.x18_c00031{left:445.439987pt;}
.x24_c00031{left:451.199707pt;}
.x8_c00031{left:456.959467pt;}
.x20_c00031{left:461.438920pt;}
.x9_c00031{left:463.038533pt;}
.x25_c00031{left:475.839840pt;}
.x19_c00031{left:491.838907pt;}
.x1a_c00031{left:504.000000pt;}
.x1b_c00031{left:537.919840pt;}
.x1c_c00031{left:550.079587pt;}
.x29_c00031{left:580.158693pt;}
.x2a_c00031{left:594.878907pt;}
.x28_c00031{left:667.839840pt;}
.x6_c00031{left:678.079067pt;}
.x21_c00031{left:681.599040pt;}
.x4_c00031{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88c702483a10d3587c08f357.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_553e0c32cd9e82df5b65c92d.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_956ac81a67550bfc7f5ea435.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_b99c36b33bf7e980e5089205.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_d31388a0a04b0d4255c0aef0.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00032;src:url('chunks/assets/font_80c6d52541db616edff08e03.woff2')format("woff");}.ff6_c00032{font-family:ff6_c00032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00032;src:url('chunks/assets/font_9a62dc8cb221365c5bdb35f5.woff2')format("woff");}.ff7_c00032{font-family:ff7_c00032;line-height:1.284180;font-style:normal;font-weight: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_c00032;src:url('chunks/assets/font_d9e4c90c0c32e6058155d98a.woff2')format("woff");}.ff8_c00032{font-family:ff8_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;}
@font-face{font-family:ff9_c00032;src:url('chunks/assets/font_5025ba72dfe2ff1333a5f587.woff2')format("woff");}.ff9_c00032{font-family:ff9_c00032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00032{transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m19_c00032{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m10_c00032{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m17_c00032{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00032{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);}
.m3_c00032{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m16_c00032{transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);}
.m21_c00032{transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);}
.mf_c00032{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m24_c00032{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m22_c00032{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m23_c00032{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.md_c00032{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m15_c00032{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m1f_c00032{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m1e_c00032{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m20_c00032{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m1b_c00032{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m13_c00032{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m1a_c00032{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.m25_c00032{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.303922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303922,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m18_c00032{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls1a_c00032{letter-spacing:-16.318043px;}
.ls19_c00032{letter-spacing:-11.003550px;}
.lsd_c00032{letter-spacing:-8.914500px;}
.ls1b_c00032{letter-spacing:-8.175038px;}
.ls1c_c00032{letter-spacing:-7.683683px;}
.ls1f_c00032{letter-spacing:-7.426125px;}
.ls18_c00032{letter-spacing:-7.178325px;}
.lsb_c00032{letter-spacing:-6.685875px;}
.ls7_c00032{letter-spacing:-5.945625px;}
.ls4_c00032{letter-spacing:-5.196713px;}
.ls1d_c00032{letter-spacing:-5.109375px;}
.lsa_c00032{letter-spacing:-4.456463px;}
.ls6_c00032{letter-spacing:-3.717000px;}
.ls22_c00032{letter-spacing:-2.973300px;}
.ls5_c00032{letter-spacing:-2.968875px;}
.ls13_c00032{letter-spacing:-2.804400px;}
.ls17_c00032{letter-spacing:-2.268750px;}
.ls3_c00032{letter-spacing:-2.229413px;}
.ls11_c00032{letter-spacing:-1.881600px;}
.ls24_c00032{letter-spacing:-1.560450px;}
.ls25_c00032{letter-spacing:-1.558995px;}
.lsf_c00032{letter-spacing:-1.496250px;}
.ls8_c00032{letter-spacing:-1.489163px;}
.ls20_c00032{letter-spacing:-0.756743px;}
.lsc_c00032{letter-spacing:-0.740250px;}
.ls26_c00032{letter-spacing:-0.680850px;}
.ls9_c00032{letter-spacing:0.000000px;}
.ls12_c00032{letter-spacing:0.312690px;}
.ls1_c00032{letter-spacing:0.740250px;}
.ls14_c00032{letter-spacing:0.774900px;}
.ls15_c00032{letter-spacing:0.822585px;}
.ls21_c00032{letter-spacing:1.513200px;}
.ls23_c00032{letter-spacing:1.705133px;}
.ls0_c00032{letter-spacing:2.229413px;}
.ls1e_c00032{letter-spacing:3.828870px;}
.lse_c00032{letter-spacing:7.186643px;}
.ls2_c00032{letter-spacing:8.914500px;}
.ls10_c00032{letter-spacing:10.273500px;}
.ls16_c00032{letter-spacing:22.125000px;}
.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;}
._13_c00032{margin-left:-20.695738px;}
._9_c00032{margin-left:-14.225281px;}
._16_c00032{margin-left:-6.819022px;}
._15_c00032{margin-left:-3.908080px;}
._19_c00032{margin-left:-2.520030px;}
._14_c00032{margin-left:-1.428258px;}
._12_c00032{width:1.044745px;}
._e_c00032{width:2.171568px;}
._f_c00032{width:3.914648px;}
._6_c00032{width:5.195880px;}
._1a_c00032{width:6.232349px;}
._2_c00032{width:7.323334px;}
._4_c00032{width:8.565132px;}
._5_c00032{width:10.493854px;}
._0_c00032{width:12.535574px;}
._10_c00032{width:15.348063px;}
._7_c00032{width:16.354221px;}
._3_c00032{width:18.853107px;}
._c_c00032{width:19.966394px;}
._1_c00032{width:21.464575px;}
._a_c00032{width:22.990602px;}
._b_c00032{width:24.018899px;}
._11_c00032{width:25.637612px;}
._8_c00032{width:27.357185px;}
._d_c00032{width:28.544839px;}
._18_c00032{width:30.341543px;}
._17_c00032{width:32.980975px;}
.fc0_c00032{color:transparent;}
.fs9_c00032{font-size:21.000000px;}
.fs6_c00032{font-size:24.000000px;}
.fs7_c00032{font-size:33.750000px;}
.fs8_c00032{font-size:34.500000px;}
.fsd_c00032{font-size:37.500000px;}
.fsa_c00032{font-size:38.250000px;}
.fsb_c00032{font-size:42.750000px;}
.fse_c00032{font-size:43.500000px;}
.fsf_c00032{font-size:44.250000px;}
.fsc_c00032{font-size:47.250000px;}
.fs10_c00032{font-size:54.750000px;}
.fs11_c00032{font-size:59.250000px;}
.fs17_c00032{font-size:72.750000px;}
.fs16_c00032{font-size:75.750000px;}
.fs19_c00032{font-size:76.500000px;}
.fs2_c00032{font-size:77.250000px;}
.fs3_c00032{font-size:78.000000px;}
.fs0_c00032{font-size:78.750000px;}
.fs18_c00032{font-size:79.500000px;}
.fs12_c00032{font-size:80.250000px;}
.fs4_c00032{font-size:81.750000px;}
.fs1_c00032{font-size:82.500000px;}
.fs13_c00032{font-size:84.000000px;}
.fs5_c00032{font-size:84.750000px;}
.fs15_c00032{font-size:87.000000px;}
.fs14_c00032{font-size:90.000000px;}
.y0_c00032{bottom:0.000000px;}
.y2a_c00032{bottom:270.720150px;}
.y29_c00032{bottom:270.720870px;}
.y28_c00032{bottom:300.240390px;}
.y27_c00032{bottom:329.399430px;}
.y26_c00032{bottom:359.279160px;}
.y25_c00032{bottom:389.519070px;}
.y24_c00032{bottom:419.399820px;}
.y23_c00032{bottom:419.400015px;}
.y21_c00032{bottom:448.918920px;}
.y22_c00032{bottom:448.919535px;}
.y20_c00032{bottom:479.879520px;}
.y1f_c00032{bottom:479.879700px;}
.y1e_c00032{bottom:509.399235px;}
.y1d_c00032{bottom:509.400255px;}
.y1c_c00032{bottom:539.279985px;}
.y1a_c00032{bottom:568.799475px;}
.y1b_c00032{bottom:568.799520px;}
.y19_c00032{bottom:599.039385px;}
.y18_c00032{bottom:599.039565px;}
.y17_c00032{bottom:628.559100px;}
.y16_c00032{bottom:628.559355px;}
.y15_c00032{bottom:658.439070px;}
.y14_c00032{bottom:717.840135px;}
.y13_c00032{bottom:747.719100px;}
.y12_c00032{bottom:755.639100px;}
.y11_c00032{bottom:777.959820px;}
.y10_c00032{bottom:807.839535px;}
.yf_c00032{bottom:807.840390px;}
.ye_c00032{bottom:838.080300px;}
.yc_c00032{bottom:867.959175px;}
.yd_c00032{bottom:867.960015px;}
.yb_c00032{bottom:897.838905px;}
.ya_c00032{bottom:897.839790px;}
.y9_c00032{bottom:927.719520px;}
.y7_c00032{bottom:957.599070px;}
.y8_c00032{bottom:957.600135px;}
.y6_c00032{bottom:987.478800px;}
.y5_c00032{bottom:1018.079205px;}
.y4_c00032{bottom:1047.958920px;}
.y3_c00032{bottom:1107.359250px;}
.y2_c00032{bottom:1107.359340px;}
.y1_c00032{bottom:1136.878875px;}
.ha_c00032{height:20.753906px;}
.h7_c00032{height:23.718750px;}
.h8_c00032{height:33.107300px;}
.h9_c00032{height:35.982422px;}
.he_c00032{height:39.111328px;}
.hb_c00032{height:39.893555px;}
.hf_c00032{height:42.990234px;}
.h10_c00032{height:43.731445px;}
.hc_c00032{height:44.586914px;}
.hd_c00032{height:46.696289px;}
.h13_c00032{height:53.707397px;}
.h16_c00032{height:58.555664px;}
.h1c_c00032{height:71.400146px;}
.h1b_c00032{height:74.344482px;}
.h21_c00032{height:75.080566px;}
.h3_c00032{height:75.816650px;}
.h4_c00032{height:76.552734px;}
.h1_c00032{height:77.288818px;}
.h1f_c00032{height:77.853516px;}
.h1d_c00032{height:78.024902px;}
.h15_c00032{height:78.609375px;}
.h17_c00032{height:78.760986px;}
.h1e_c00032{height:79.004883px;}
.h20_c00032{height:80.121094px;}
.h5_c00032{height:80.233154px;}
.h14_c00032{height:80.791992px;}
.h11_c00032{height:80.928955px;}
.h2_c00032{height:80.969238px;}
.h12_c00032{height:81.533203px;}
.h6_c00032{height:83.177490px;}
.h1a_c00032{height:85.385742px;}
.h18_c00032{height:87.609375px;}
.h19_c00032{height:93.867188px;}
.h0_c00032{height:1263.000000px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x1e_c00032{left:137.158815px;}
.x27_c00032{left:138.240765px;}
.x1_c00032{left:139.319250px;}
.x2_c00032{left:141.481860px;}
.x11_c00032{left:168.838950px;}
.x5_c00032{left:169.918350px;}
.x34_c00032{left:211.319850px;}
.x12_c00032{left:215.639100px;}
.x15_c00032{left:216.718500px;}
.x2e_c00032{left:220.319250px;}
.x35_c00032{left:226.439685px;}
.xf_c00032{left:252.358635px;}
.x10_c00032{left:272.158785px;}
.x13_c00032{left:295.918950px;}
.x16_c00032{left:297.000000px;}
.x17_c00032{left:330.118785px;}
.x1f_c00032{left:344.159385px;}
.x20_c00032{left:359.999385px;}
.x14_c00032{left:382.319235px;}
.x3_c00032{left:398.518665px;}
.x2f_c00032{left:399.599670px;}
.x4_c00032{left:413.638500px;}
.x30_c00032{left:438.479685px;}
.x31_c00032{left:452.518620px;}
.xd_c00032{left:462.958335px;}
.x18_c00032{left:472.318770px;}
.xe_c00032{left:477.359850px;}
.x32_c00032{left:496.798920px;}
.x19_c00032{left:529.199385px;}
.x6_c00032{left:536.399235px;}
.x7_c00032{left:555.479235px;}
.x28_c00032{left:558.719100px;}
.x1a_c00032{left:571.319235px;}
.xb_c00032{left:574.199850px;}
.x29_c00032{left:581.399820px;}
.x1b_c00032{left:589.679070px;}
.xc_c00032{left:592.559685px;}
.x2c_c00032{left:631.078770px;}
.x2a_c00032{left:646.559685px;}
.x2b_c00032{left:654.118785px;}
.x2d_c00032{left:658.798920px;}
.x23_c00032{left:660.239220px;}
.x25_c00032{left:668.518620px;}
.x24_c00032{left:675.000000px;}
.x33_c00032{left:677.158770px;}
.x1c_c00032{left:678.239820px;}
.x8_c00032{left:679.319235px;}
.x26_c00032{left:687.959385px;}
.x9_c00032{left:698.039985px;}
.x21_c00032{left:744.119985px;}
.x22_c00032{left:755.639100px;}
.x1d_c00032{left:761.398635px;}
.xa_c00032{left:768.239220px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls1a_c00032{letter-spacing:-14.504927pt;}
.ls19_c00032{letter-spacing:-9.780933pt;}
.lsd_c00032{letter-spacing:-7.924000pt;}
.ls1b_c00032{letter-spacing:-7.266700pt;}
.ls1c_c00032{letter-spacing:-6.829940pt;}
.ls1f_c00032{letter-spacing:-6.601000pt;}
.ls18_c00032{letter-spacing:-6.380733pt;}
.lsb_c00032{letter-spacing:-5.943000pt;}
.ls7_c00032{letter-spacing:-5.285000pt;}
.ls4_c00032{letter-spacing:-4.619300pt;}
.ls1d_c00032{letter-spacing:-4.541667pt;}
.lsa_c00032{letter-spacing:-3.961300pt;}
.ls6_c00032{letter-spacing:-3.304000pt;}
.ls22_c00032{letter-spacing:-2.642933pt;}
.ls5_c00032{letter-spacing:-2.639000pt;}
.ls13_c00032{letter-spacing:-2.492800pt;}
.ls17_c00032{letter-spacing:-2.016667pt;}
.ls3_c00032{letter-spacing:-1.981700pt;}
.ls11_c00032{letter-spacing:-1.672533pt;}
.ls24_c00032{letter-spacing:-1.387067pt;}
.ls25_c00032{letter-spacing:-1.385773pt;}
.lsf_c00032{letter-spacing:-1.330000pt;}
.ls8_c00032{letter-spacing:-1.323700pt;}
.ls20_c00032{letter-spacing:-0.672660pt;}
.lsc_c00032{letter-spacing:-0.658000pt;}
.ls26_c00032{letter-spacing:-0.605200pt;}
.ls9_c00032{letter-spacing:0.000000pt;}
.ls12_c00032{letter-spacing:0.277947pt;}
.ls1_c00032{letter-spacing:0.658000pt;}
.ls14_c00032{letter-spacing:0.688800pt;}
.ls15_c00032{letter-spacing:0.731187pt;}
.ls21_c00032{letter-spacing:1.345067pt;}
.ls23_c00032{letter-spacing:1.515673pt;}
.ls0_c00032{letter-spacing:1.981700pt;}
.ls1e_c00032{letter-spacing:3.403440pt;}
.lse_c00032{letter-spacing:6.388127pt;}
.ls2_c00032{letter-spacing:7.924000pt;}
.ls10_c00032{letter-spacing:9.132000pt;}
.ls16_c00032{letter-spacing:19.666667pt;}
.ws0_c00032{word-spacing:0.000000pt;}
._13_c00032{margin-left:-18.396211pt;}
._9_c00032{margin-left:-12.644694pt;}
._16_c00032{margin-left:-6.061353pt;}
._15_c00032{margin-left:-3.473849pt;}
._19_c00032{margin-left:-2.240026pt;}
._14_c00032{margin-left:-1.269562pt;}
._12_c00032{width:0.928662pt;}
._e_c00032{width:1.930283pt;}
._f_c00032{width:3.479687pt;}
._6_c00032{width:4.618560pt;}
._1a_c00032{width:5.539866pt;}
._2_c00032{width:6.509630pt;}
._4_c00032{width:7.613451pt;}
._5_c00032{width:9.327870pt;}
._0_c00032{width:11.142732pt;}
._10_c00032{width:13.642723pt;}
._7_c00032{width:14.537085pt;}
._3_c00032{width:16.758317pt;}
._c_c00032{width:17.747906pt;}
._1_c00032{width:19.079623pt;}
._a_c00032{width:20.436091pt;}
._b_c00032{width:21.350132pt;}
._11_c00032{width:22.788989pt;}
._8_c00032{width:24.317498pt;}
._d_c00032{width:25.373191pt;}
._18_c00032{width:26.970260pt;}
._17_c00032{width:29.316423pt;}
.fs9_c00032{font-size:18.666667pt;}
.fs6_c00032{font-size:21.333333pt;}
.fs7_c00032{font-size:30.000000pt;}
.fs8_c00032{font-size:30.666667pt;}
.fsd_c00032{font-size:33.333333pt;}
.fsa_c00032{font-size:34.000000pt;}
.fsb_c00032{font-size:38.000000pt;}
.fse_c00032{font-size:38.666667pt;}
.fsf_c00032{font-size:39.333333pt;}
.fsc_c00032{font-size:42.000000pt;}
.fs10_c00032{font-size:48.666667pt;}
.fs11_c00032{font-size:52.666667pt;}
.fs17_c00032{font-size:64.666667pt;}
.fs16_c00032{font-size:67.333333pt;}
.fs19_c00032{font-size:68.000000pt;}
.fs2_c00032{font-size:68.666667pt;}
.fs3_c00032{font-size:69.333333pt;}
.fs0_c00032{font-size:70.000000pt;}
.fs18_c00032{font-size:70.666667pt;}
.fs12_c00032{font-size:71.333333pt;}
.fs4_c00032{font-size:72.666667pt;}
.fs1_c00032{font-size:73.333333pt;}
.fs13_c00032{font-size:74.666667pt;}
.fs5_c00032{font-size:75.333333pt;}
.fs15_c00032{font-size:77.333333pt;}
.fs14_c00032{font-size:80.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y2a_c00032{bottom:240.640133pt;}
.y29_c00032{bottom:240.640773pt;}
.y28_c00032{bottom:266.880347pt;}
.y27_c00032{bottom:292.799493pt;}
.y26_c00032{bottom:319.359253pt;}
.y25_c00032{bottom:346.239173pt;}
.y24_c00032{bottom:372.799840pt;}
.y23_c00032{bottom:372.800013pt;}
.y21_c00032{bottom:399.039040pt;}
.y22_c00032{bottom:399.039587pt;}
.y20_c00032{bottom:426.559573pt;}
.y1f_c00032{bottom:426.559733pt;}
.y1e_c00032{bottom:452.799320pt;}
.y1d_c00032{bottom:452.800227pt;}
.y1c_c00032{bottom:479.359987pt;}
.y1a_c00032{bottom:505.599533pt;}
.y1b_c00032{bottom:505.599573pt;}
.y19_c00032{bottom:532.479453pt;}
.y18_c00032{bottom:532.479613pt;}
.y17_c00032{bottom:558.719200pt;}
.y16_c00032{bottom:558.719427pt;}
.y15_c00032{bottom:585.279173pt;}
.y14_c00032{bottom:638.080120pt;}
.y13_c00032{bottom:664.639200pt;}
.y12_c00032{bottom:671.679200pt;}
.y11_c00032{bottom:691.519840pt;}
.y10_c00032{bottom:718.079587pt;}
.yf_c00032{bottom:718.080347pt;}
.ye_c00032{bottom:744.960267pt;}
.yc_c00032{bottom:771.519267pt;}
.yd_c00032{bottom:771.520013pt;}
.yb_c00032{bottom:798.079027pt;}
.ya_c00032{bottom:798.079813pt;}
.y9_c00032{bottom:824.639573pt;}
.y7_c00032{bottom:851.199173pt;}
.y8_c00032{bottom:851.200120pt;}
.y6_c00032{bottom:877.758933pt;}
.y5_c00032{bottom:904.959293pt;}
.y4_c00032{bottom:931.519040pt;}
.y3_c00032{bottom:984.319333pt;}
.y2_c00032{bottom:984.319413pt;}
.y1_c00032{bottom:1010.559000pt;}
.ha_c00032{height:18.447917pt;}
.h7_c00032{height:21.083333pt;}
.h8_c00032{height:29.428711pt;}
.h9_c00032{height:31.984375pt;}
.he_c00032{height:34.765625pt;}
.hb_c00032{height:35.460938pt;}
.hf_c00032{height:38.213542pt;}
.h10_c00032{height:38.872396pt;}
.hc_c00032{height:39.632812pt;}
.hd_c00032{height:41.507812pt;}
.h13_c00032{height:47.739909pt;}
.h16_c00032{height:52.049479pt;}
.h1c_c00032{height:63.466797pt;}
.h1b_c00032{height:66.083984pt;}
.h21_c00032{height:66.738281pt;}
.h3_c00032{height:67.392578pt;}
.h4_c00032{height:68.046875pt;}
.h1_c00032{height:68.701172pt;}
.h1f_c00032{height:69.203125pt;}
.h1d_c00032{height:69.355469pt;}
.h15_c00032{height:69.875000pt;}
.h17_c00032{height:70.009766pt;}
.h1e_c00032{height:70.226562pt;}
.h20_c00032{height:71.218750pt;}
.h5_c00032{height:71.318359pt;}
.h14_c00032{height:71.815104pt;}
.h11_c00032{height:71.936849pt;}
.h2_c00032{height:71.972656pt;}
.h12_c00032{height:72.473958pt;}
.h6_c00032{height:73.935547pt;}
.h1a_c00032{height:75.898438pt;}
.h18_c00032{height:77.875000pt;}
.h19_c00032{height:83.437500pt;}
.h0_c00032{height:1122.666667pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x1e_c00032{left:121.918947pt;}
.x27_c00032{left:122.880680pt;}
.x1_c00032{left:123.839333pt;}
.x2_c00032{left:125.761653pt;}
.x11_c00032{left:150.079067pt;}
.x5_c00032{left:151.038533pt;}
.x34_c00032{left:187.839867pt;}
.x12_c00032{left:191.679200pt;}
.x15_c00032{left:192.638667pt;}
.x2e_c00032{left:195.839333pt;}
.x35_c00032{left:201.279720pt;}
.xf_c00032{left:224.318787pt;}
.x10_c00032{left:241.918920pt;}
.x13_c00032{left:263.039067pt;}
.x16_c00032{left:264.000000pt;}
.x17_c00032{left:293.438920pt;}
.x1f_c00032{left:305.919453pt;}
.x20_c00032{left:319.999453pt;}
.x14_c00032{left:339.839320pt;}
.x3_c00032{left:354.238813pt;}
.x2f_c00032{left:355.199707pt;}
.x4_c00032{left:367.678667pt;}
.x30_c00032{left:389.759720pt;}
.x31_c00032{left:402.238773pt;}
.xd_c00032{left:411.518520pt;}
.x18_c00032{left:419.838907pt;}
.xe_c00032{left:424.319867pt;}
.x32_c00032{left:441.599040pt;}
.x19_c00032{left:470.399453pt;}
.x6_c00032{left:476.799320pt;}
.x7_c00032{left:493.759320pt;}
.x28_c00032{left:496.639200pt;}
.x1a_c00032{left:507.839320pt;}
.xb_c00032{left:510.399867pt;}
.x29_c00032{left:516.799840pt;}
.x1b_c00032{left:524.159173pt;}
.xc_c00032{left:526.719720pt;}
.x2c_c00032{left:560.958907pt;}
.x2a_c00032{left:574.719720pt;}
.x2b_c00032{left:581.438920pt;}
.x2d_c00032{left:585.599040pt;}
.x23_c00032{left:586.879307pt;}
.x25_c00032{left:594.238773pt;}
.x24_c00032{left:600.000000pt;}
.x33_c00032{left:601.918907pt;}
.x1c_c00032{left:602.879840pt;}
.x8_c00032{left:603.839320pt;}
.x26_c00032{left:611.519453pt;}
.x9_c00032{left:620.479987pt;}
.x21_c00032{left:661.439987pt;}
.x22_c00032{left:671.679200pt;}
.x1d_c00032{left:676.798787pt;}
.xa_c00032{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6b9c6c89b120f483c7abd08.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_2d725e0256e814f1fc8e7bcd.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;}
.m6_c00033{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.lsc_c00033{letter-spacing:-7.426125px;}
.ls10_c00033{letter-spacing:-6.000300px;}
.lsf_c00033{letter-spacing:-5.945625px;}
.lsd_c00033{letter-spacing:-5.247533px;}
.lsa_c00033{letter-spacing:-5.196713px;}
.lse_c00033{letter-spacing:-4.456463px;}
.lsb_c00033{letter-spacing:-3.717000px;}
.ls2_c00033{letter-spacing:-3.118500px;}
.ls5_c00033{letter-spacing:-2.968875px;}
.ls1_c00033{letter-spacing:-2.338088px;}
.ls6_c00033{letter-spacing:-2.229413px;}
.ls4_c00033{letter-spacing:-1.560038px;}
.ls3_c00033{letter-spacing:-1.556048px;}
.ls8_c00033{letter-spacing:-1.489163px;}
.ls7_c00033{letter-spacing:-0.740250px;}
.ls9_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.792975px;}
.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;}
._18_c00033{margin-left:-11.641939px;}
._19_c00033{margin-left:-9.319053px;}
._e_c00033{margin-left:-7.759579px;}
._2_c00033{margin-left:-5.453393px;}
._3_c00033{margin-left:-3.244262px;}
._5_c00033{margin-left:-1.753228px;}
._1_c00033{width:1.701569px;}
._c_c00033{width:3.036046px;}
._4_c00033{width:4.254981px;}
._d_c00033{width:5.572365px;}
._0_c00033{width:7.320927px;}
._1a_c00033{width:8.350768px;}
._6_c00033{width:9.375232px;}
._9_c00033{width:11.025000px;}
._16_c00033{width:12.576732px;}
._b_c00033{width:14.332634px;}
._7_c00033{width:15.946177px;}
._8_c00033{width:18.010600px;}
._a_c00033{width:20.714623px;}
._12_c00033{width:22.763163px;}
._10_c00033{width:24.922235px;}
._13_c00033{width:26.303466px;}
._17_c00033{width:27.752986px;}
._f_c00033{width:29.460524px;}
._15_c00033{width:33.539566px;}
._11_c00033{width:36.500566px;}
._14_c00033{width:39.743549px;}
.fc0_c00033{color:transparent;}
.fs1_c00033{font-size:78.750000px;}
.fs2_c00033{font-size:80.250000px;}
.fs0_c00033{font-size:81.750000px;}
.fs4_c00033{font-size:82.500000px;}
.fs5_c00033{font-size:84.000000px;}
.fs3_c00033{font-size:84.750000px;}
.y0_c00033{bottom:0.000000px;}
.y1f_c00033{bottom:213.119565px;}
.y1e_c00033{bottom:242.999295px;}
.y1c_c00033{bottom:272.159685px;}
.y1d_c00033{bottom:272.160435px;}
.y1a_c00033{bottom:331.558710px;}
.y1b_c00033{bottom:331.560750px;}
.y19_c00033{bottom:361.438425px;}
.y18_c00033{bottom:390.959745px;}
.y17_c00033{bottom:451.079385px;}
.y15_c00033{bottom:482.039490px;}
.y16_c00033{bottom:482.039985px;}
.y14_c00033{bottom:541.080375px;}
.y13_c00033{bottom:570.960090px;}
.y12_c00033{bottom:630.000960px;}
.y10_c00033{bottom:660.240255px;}
.y11_c00033{bottom:660.240870px;}
.yf_c00033{bottom:690.119985px;}
.ye_c00033{bottom:720.541035px;}
.yd_c00033{bottom:720.541725px;}
.yc_c00033{bottom:779.759805px;}
.yb_c00033{bottom:809.639535px;}
.ya_c00033{bottom:839.879445px;}
.y9_c00033{bottom:869.759175px;}
.y8_c00033{bottom:929.520720px;}
.y7_c00033{bottom:959.760825px;}
.y6_c00033{bottom:989.640540px;}
.y4_c00033{bottom:1019.519580px;}
.y5_c00033{bottom:1019.520270px;}
.y3_c00033{bottom:1048.680720px;}
.y2_c00033{bottom:1108.440405px;}
.y1_c00033{bottom:1137.959925px;}
.h4_c00033{height:77.288818px;}
.h5_c00033{height:78.760986px;}
.h2_c00033{height:79.365234px;}
.h6_c00033{height:80.233154px;}
.h3_c00033{height:80.876953px;}
.h8_c00033{height:80.969238px;}
.h1_c00033{height:82.388672px;}
.h9_c00033{height:82.441406px;}
.h7_c00033{height:83.177490px;}
.h0_c00033{height:1263.000000px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:141.479715px;}
.x16_c00033{left:142.559370px;}
.x2_c00033{left:162.718500px;}
.x13_c00033{left:195.838950px;}
.xd_c00033{left:210.238785px;}
.xb_c00033{left:230.759100px;}
.x14_c00033{left:238.319850px;}
.xc_c00033{left:246.958350px;}
.x15_c00033{left:254.519100px;}
.xe_c00033{left:275.398635px;}
.x3_c00033{left:495.358665px;}
.x4_c00033{left:525.959385px;}
.xf_c00033{left:533.518620px;}
.x10_c00033{left:548.638500px;}
.x9_c00033{left:554.399820px;}
.xa_c00033{left:574.559100px;}
.x7_c00033{left:632.159820px;}
.x8_c00033{left:650.878920px;}
.x5_c00033{left:678.958335px;}
.x6_c00033{left:692.278800px;}
.x11_c00033{left:704.878920px;}
.x12_c00033{left:719.639700px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.lsc_c00033{letter-spacing:-6.601000pt;}
.ls10_c00033{letter-spacing:-5.333600pt;}
.lsf_c00033{letter-spacing:-5.285000pt;}
.lsd_c00033{letter-spacing:-4.664473pt;}
.lsa_c00033{letter-spacing:-4.619300pt;}
.lse_c00033{letter-spacing:-3.961300pt;}
.lsb_c00033{letter-spacing:-3.304000pt;}
.ls2_c00033{letter-spacing:-2.772000pt;}
.ls5_c00033{letter-spacing:-2.639000pt;}
.ls1_c00033{letter-spacing:-2.078300pt;}
.ls6_c00033{letter-spacing:-1.981700pt;}
.ls4_c00033{letter-spacing:-1.386700pt;}
.ls3_c00033{letter-spacing:-1.383153pt;}
.ls8_c00033{letter-spacing:-1.323700pt;}
.ls7_c00033{letter-spacing:-0.658000pt;}
.ls9_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.704867pt;}
.ws0_c00033{word-spacing:0.000000pt;}
._18_c00033{margin-left:-10.348391pt;}
._19_c00033{margin-left:-8.283602pt;}
._e_c00033{margin-left:-6.897404pt;}
._2_c00033{margin-left:-4.847460pt;}
._3_c00033{margin-left:-2.883789pt;}
._5_c00033{margin-left:-1.558425pt;}
._1_c00033{width:1.512506pt;}
._c_c00033{width:2.698707pt;}
._4_c00033{width:3.782206pt;}
._d_c00033{width:4.953213pt;}
._0_c00033{width:6.507491pt;}
._1a_c00033{width:7.422905pt;}
._6_c00033{width:8.333540pt;}
._9_c00033{width:9.800000pt;}
._16_c00033{width:11.179317pt;}
._b_c00033{width:12.740119pt;}
._7_c00033{width:14.174379pt;}
._8_c00033{width:16.009423pt;}
._a_c00033{width:18.412998pt;}
._12_c00033{width:20.233923pt;}
._10_c00033{width:22.153098pt;}
._13_c00033{width:23.380858pt;}
._17_c00033{width:24.669321pt;}
._f_c00033{width:26.187132pt;}
._15_c00033{width:29.812947pt;}
._11_c00033{width:32.444947pt;}
._14_c00033{width:35.327599pt;}
.fs1_c00033{font-size:70.000000pt;}
.fs2_c00033{font-size:71.333333pt;}
.fs0_c00033{font-size:72.666667pt;}
.fs4_c00033{font-size:73.333333pt;}
.fs5_c00033{font-size:74.666667pt;}
.fs3_c00033{font-size:75.333333pt;}
.y0_c00033{bottom:0.000000pt;}
.y1f_c00033{bottom:189.439613pt;}
.y1e_c00033{bottom:215.999373pt;}
.y1c_c00033{bottom:241.919720pt;}
.y1d_c00033{bottom:241.920387pt;}
.y1a_c00033{bottom:294.718853pt;}
.y1b_c00033{bottom:294.720667pt;}
.y19_c00033{bottom:321.278600pt;}
.y18_c00033{bottom:347.519773pt;}
.y17_c00033{bottom:400.959453pt;}
.y15_c00033{bottom:428.479547pt;}
.y16_c00033{bottom:428.479987pt;}
.y14_c00033{bottom:480.960333pt;}
.y13_c00033{bottom:507.520080pt;}
.y12_c00033{bottom:560.000853pt;}
.y10_c00033{bottom:586.880227pt;}
.y11_c00033{bottom:586.880773pt;}
.yf_c00033{bottom:613.439987pt;}
.ye_c00033{bottom:640.480920pt;}
.yd_c00033{bottom:640.481533pt;}
.yc_c00033{bottom:693.119827pt;}
.yb_c00033{bottom:719.679587pt;}
.ya_c00033{bottom:746.559507pt;}
.y9_c00033{bottom:773.119267pt;}
.y8_c00033{bottom:826.240640pt;}
.y7_c00033{bottom:853.120733pt;}
.y6_c00033{bottom:879.680480pt;}
.y4_c00033{bottom:906.239627pt;}
.y5_c00033{bottom:906.240240pt;}
.y3_c00033{bottom:932.160640pt;}
.y2_c00033{bottom:985.280360pt;}
.y1_c00033{bottom:1011.519933pt;}
.h4_c00033{height:68.701172pt;}
.h5_c00033{height:70.009766pt;}
.h2_c00033{height:70.546875pt;}
.h6_c00033{height:71.318359pt;}
.h3_c00033{height:71.890625pt;}
.h8_c00033{height:71.972656pt;}
.h1_c00033{height:73.234375pt;}
.h9_c00033{height:73.281250pt;}
.h7_c00033{height:73.935547pt;}
.h0_c00033{height:1122.666667pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:125.759747pt;}
.x16_c00033{left:126.719440pt;}
.x2_c00033{left:144.638667pt;}
.x13_c00033{left:174.079067pt;}
.xd_c00033{left:186.878920pt;}
.xb_c00033{left:205.119200pt;}
.x14_c00033{left:211.839867pt;}
.xc_c00033{left:219.518533pt;}
.x15_c00033{left:226.239200pt;}
.xe_c00033{left:244.798787pt;}
.x3_c00033{left:440.318813pt;}
.x4_c00033{left:467.519453pt;}
.xf_c00033{left:474.238773pt;}
.x10_c00033{left:487.678667pt;}
.x9_c00033{left:492.799840pt;}
.xa_c00033{left:510.719200pt;}
.x7_c00033{left:561.919840pt;}
.x8_c00033{left:578.559040pt;}
.x5_c00033{left:603.518520pt;}
.x6_c00033{left:615.358933pt;}
.x11_c00033{left:626.559040pt;}
.x12_c00033{left:639.679733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ded94f96e3029e3cbce7f55c.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.364746;font-style:normal;font-weight:normal;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_a4e89742499f17fed69622ff.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_950bd608ce82a4803699b11d.woff2')format("woff");}.ff4_c00034{font-family:ff4_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:ff5_c00034;src:url('chunks/assets/font_d5b8aeb2d8b96389583929ed.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_e28ce296fb552f0bd8034539.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:1.364746;font-style:normal;font-weight: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_c00034;src:url('chunks/assets/font_55c78d9a7438a22c67bba74a.woff2')format("woff");}.ff7_c00034{font-family:ff7_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;}
.m2_c00034{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m15_c00034{transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m10_c00034{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_c00034{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{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_c00034{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00034{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m14_c00034{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00034{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m12_c00034{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m13_c00034{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.md_c00034{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m11_c00034{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:1.440780px;}
.ls25_c00034{letter-spacing:-14.082750px;}
.ls9_c00034{letter-spacing:-13.149045px;}
.ls23_c00034{letter-spacing:-10.288050px;}
.ls1c_c00034{letter-spacing:-9.654750px;}
.ls16_c00034{letter-spacing:-8.914500px;}
.ls21_c00034{letter-spacing:-8.260875px;}
.lsc_c00034{letter-spacing:-8.175038px;}
.ls1b_c00034{letter-spacing:-6.685875px;}
.ls10_c00034{letter-spacing:-6.619553px;}
.lsd_c00034{letter-spacing:-5.945625px;}
.ls1f_c00034{letter-spacing:-5.580000px;}
.lsb_c00034{letter-spacing:-5.196713px;}
.ls14_c00034{letter-spacing:-4.496625px;}
.ls15_c00034{letter-spacing:-4.456463px;}
.ls7_c00034{letter-spacing:-3.717000px;}
.ls12_c00034{letter-spacing:-3.031875px;}
.ls5_c00034{letter-spacing:-2.968875px;}
.ls1e_c00034{letter-spacing:-2.785365px;}
.ls18_c00034{letter-spacing:-2.301375px;}
.ls11_c00034{letter-spacing:-2.267213px;}
.ls4_c00034{letter-spacing:-2.229413px;}
.ls1d_c00034{letter-spacing:-1.823310px;}
.ls8_c00034{letter-spacing:-1.489163px;}
.ls20_c00034{letter-spacing:-0.996300px;}
.ls1a_c00034{letter-spacing:-0.748913px;}
.lse_c00034{letter-spacing:-0.740250px;}
.lsa_c00034{letter-spacing:0.000000px;}
.ls1_c00034{letter-spacing:0.740250px;}
.lsf_c00034{letter-spacing:2.394450px;}
.ls2_c00034{letter-spacing:2.968875px;}
.ls22_c00034{letter-spacing:3.570345px;}
.ls24_c00034{letter-spacing:3.637710px;}
.ls3_c00034{letter-spacing:4.456463px;}
.ls6_c00034{letter-spacing:4.685175px;}
.ls13_c00034{letter-spacing:5.300663px;}
.ls0_c00034{letter-spacing:6.685875px;}
.ls17_c00034{letter-spacing:8.004150px;}
.ls19_c00034{letter-spacing:8.175038px;}
.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;}
._14_c00034{margin-left:-42.112127px;}
._13_c00034{margin-left:-11.788994px;}
._15_c00034{margin-left:-5.362370px;}
._0_c00034{margin-left:-3.775305px;}
._3_c00034{margin-left:-1.812914px;}
._1_c00034{width:1.771459px;}
._b_c00034{width:3.369282px;}
._2_c00034{width:5.512322px;}
._7_c00034{width:6.842721px;}
._4_c00034{width:7.898982px;}
._8_c00034{width:9.520548px;}
._e_c00034{width:10.867247px;}
._9_c00034{width:12.112760px;}
._a_c00034{width:13.484764px;}
._11_c00034{width:14.513417px;}
._5_c00034{width:16.175621px;}
._16_c00034{width:17.852179px;}
._6_c00034{width:18.981350px;}
._17_c00034{width:20.569292px;}
._c_c00034{width:22.176238px;}
._19_c00034{width:23.550098px;}
._18_c00034{width:25.784830px;}
._1b_c00034{width:27.042483px;}
._10_c00034{width:28.966910px;}
._f_c00034{width:30.279197px;}
._1a_c00034{width:32.875183px;}
._12_c00034{width:34.007742px;}
._d_c00034{width:36.883097px;}
._1c_c00034{width:68.056092px;}
.fc0_c00034{color:transparent;}
.fs8_c00034{font-size:71.250000px;}
.fs7_c00034{font-size:74.250000px;}
.fsa_c00034{font-size:75.000000px;}
.fs4_c00034{font-size:76.500000px;}
.fs5_c00034{font-size:77.250000px;}
.fs0_c00034{font-size:78.750000px;}
.fsb_c00034{font-size:79.500000px;}
.fs6_c00034{font-size:80.250000px;}
.fs9_c00034{font-size:81.000000px;}
.fs1_c00034{font-size:82.500000px;}
.fsc_c00034{font-size:83.250000px;}
.fs2_c00034{font-size:85.500000px;}
.fs3_c00034{font-size:86.250000px;}
.y0_c00034{bottom:0.000000px;}
.y22_c00034{bottom:181.800150px;}
.y21_c00034{bottom:211.319850px;}
.y20_c00034{bottom:241.198785px;}
.y1e_c00034{bottom:271.079340px;}
.y1f_c00034{bottom:271.079385px;}
.y1d_c00034{bottom:301.319250px;}
.y1c_c00034{bottom:301.320285px;}
.y1b_c00034{bottom:330.839820px;}
.y1a_c00034{bottom:360.719535px;}
.y18_c00034{bottom:420.479235px;}
.y19_c00034{bottom:420.840135px;}
.y17_c00034{bottom:450.362235px;}
.y16_c00034{bottom:480.960525px;}
.y15_c00034{bottom:510.480060px;}
.y14_c00034{bottom:540.722070px;}
.y13_c00034{bottom:569.881125px;}
.y12_c00034{bottom:599.760840px;}
.y11_c00034{bottom:629.280375px;}
.y10_c00034{bottom:659.160090px;}
.yf_c00034{bottom:689.039820px;}
.ye_c00034{bottom:718.919535px;}
.yd_c00034{bottom:749.518620px;}
.yc_c00034{bottom:778.679220px;}
.yb_c00034{bottom:808.558935px;}
.ya_c00034{bottom:838.438665px;}
.y9_c00034{bottom:838.439460px;}
.y8_c00034{bottom:868.319190px;}
.y7_c00034{bottom:928.439670px;}
.y6_c00034{bottom:987.481110px;}
.y5_c00034{bottom:1017.360825px;}
.y4_c00034{bottom:1046.880360px;}
.y3_c00034{bottom:1107.000000px;}
.y2_c00034{bottom:1135.079400px;}
.y1_c00034{bottom:1137.239775px;}
.hd_c00034{height:74.121094px;}
.ha_c00034{height:74.311523px;}
.hc_c00034{height:75.080566px;}
.h5_c00034{height:77.097656px;}
.h1_c00034{height:77.288818px;}
.h9_c00034{height:77.440430px;}
.h6_c00034{height:77.853516px;}
.he_c00034{height:78.024902px;}
.hf_c00034{height:78.729598px;}
.h8_c00034{height:78.760986px;}
.h11_c00034{height:79.309570px;}
.h7_c00034{height:79.365234px;}
.h12_c00034{height:79.497070px;}
.h2_c00034{height:80.969238px;}
.h13_c00034{height:81.533203px;}
.hb_c00034{height:81.632812px;}
.h10_c00034{height:81.664673px;}
.h3_c00034{height:84.498047px;}
.h4_c00034{height:89.956055px;}
.h0_c00034{height:1263.000000px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x8_c00034{left:139.319250px;}
.x1_c00034{left:140.398665px;}
.x9_c00034{left:166.678500px;}
.x6_c00034{left:175.679700px;}
.xe_c00034{left:191.878950px;}
.x7_c00034{left:203.038950px;}
.x14_c00034{left:208.080000px;}
.x15_c00034{left:231.120000px;}
.x16_c00034{left:250.559100px;}
.x26_c00034{left:256.679700px;}
.x17_c00034{left:285.120000px;}
.x18_c00034{left:308.519100px;}
.x1f_c00034{left:338.759100px;}
.x20_c00034{left:364.679700px;}
.xf_c00034{left:398.159415px;}
.x23_c00034{left:400.679070px;}
.x24_c00034{left:416.519070px;}
.x10_c00034{left:417.598530px;}
.xa_c00034{left:430.918950px;}
.xb_c00034{left:448.919535px;}
.x19_c00034{left:476.998950px;}
.x27_c00034{left:481.319820px;}
.x28_c00034{left:497.159820px;}
.x1a_c00034{left:499.318770px;}
.x1b_c00034{left:518.759535px;}
.x12_c00034{left:519.838950px;}
.x2_c00034{left:525.239220px;}
.x13_c00034{left:534.599670px;}
.x21_c00034{left:539.639100px;}
.x3_c00034{left:548.999400px;}
.x22_c00034{left:565.198785px;}
.x1c_c00034{left:591.839535px;}
.xc_c00034{left:595.438620px;}
.x1d_c00034{left:606.959385px;}
.xd_c00034{left:624.239820px;}
.x1e_c00034{left:626.398635px;}
.x4_c00034{left:704.878920px;}
.x5_c00034{left:724.679070px;}
.x29_c00034{left:763.199850px;}
.x25_c00034{left:766.439670px;}
.x11_c00034{left:768.239220px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:1.280693pt;}
.ls25_c00034{letter-spacing:-12.518000pt;}
.ls9_c00034{letter-spacing:-11.688040pt;}
.ls23_c00034{letter-spacing:-9.144933pt;}
.ls1c_c00034{letter-spacing:-8.582000pt;}
.ls16_c00034{letter-spacing:-7.924000pt;}
.ls21_c00034{letter-spacing:-7.343000pt;}
.lsc_c00034{letter-spacing:-7.266700pt;}
.ls1b_c00034{letter-spacing:-5.943000pt;}
.ls10_c00034{letter-spacing:-5.884047pt;}
.lsd_c00034{letter-spacing:-5.285000pt;}
.ls1f_c00034{letter-spacing:-4.960000pt;}
.lsb_c00034{letter-spacing:-4.619300pt;}
.ls14_c00034{letter-spacing:-3.997000pt;}
.ls15_c00034{letter-spacing:-3.961300pt;}
.ls7_c00034{letter-spacing:-3.304000pt;}
.ls12_c00034{letter-spacing:-2.695000pt;}
.ls5_c00034{letter-spacing:-2.639000pt;}
.ls1e_c00034{letter-spacing:-2.475880pt;}
.ls18_c00034{letter-spacing:-2.045667pt;}
.ls11_c00034{letter-spacing:-2.015300pt;}
.ls4_c00034{letter-spacing:-1.981700pt;}
.ls1d_c00034{letter-spacing:-1.620720pt;}
.ls8_c00034{letter-spacing:-1.323700pt;}
.ls20_c00034{letter-spacing:-0.885600pt;}
.ls1a_c00034{letter-spacing:-0.665700pt;}
.lse_c00034{letter-spacing:-0.658000pt;}
.lsa_c00034{letter-spacing:0.000000pt;}
.ls1_c00034{letter-spacing:0.658000pt;}
.lsf_c00034{letter-spacing:2.128400pt;}
.ls2_c00034{letter-spacing:2.639000pt;}
.ls22_c00034{letter-spacing:3.173640pt;}
.ls24_c00034{letter-spacing:3.233520pt;}
.ls3_c00034{letter-spacing:3.961300pt;}
.ls6_c00034{letter-spacing:4.164600pt;}
.ls13_c00034{letter-spacing:4.711700pt;}
.ls0_c00034{letter-spacing:5.943000pt;}
.ls17_c00034{letter-spacing:7.114800pt;}
.ls19_c00034{letter-spacing:7.266700pt;}
.ws0_c00034{word-spacing:0.000000pt;}
._14_c00034{margin-left:-37.433002pt;}
._13_c00034{margin-left:-10.479106pt;}
._15_c00034{margin-left:-4.766551pt;}
._0_c00034{margin-left:-3.355826pt;}
._3_c00034{margin-left:-1.611479pt;}
._1_c00034{width:1.574630pt;}
._b_c00034{width:2.994917pt;}
._2_c00034{width:4.899842pt;}
._7_c00034{width:6.082419pt;}
._4_c00034{width:7.021317pt;}
._8_c00034{width:8.462709pt;}
._e_c00034{width:9.659775pt;}
._9_c00034{width:10.766898pt;}
._a_c00034{width:11.986457pt;}
._11_c00034{width:12.900815pt;}
._5_c00034{width:14.378330pt;}
._16_c00034{width:15.868604pt;}
._6_c00034{width:16.872311pt;}
._17_c00034{width:18.283815pt;}
._c_c00034{width:19.712211pt;}
._19_c00034{width:20.933421pt;}
._18_c00034{width:22.919849pt;}
._1b_c00034{width:24.037762pt;}
._10_c00034{width:25.748364pt;}
._f_c00034{width:26.914842pt;}
._1a_c00034{width:29.222385pt;}
._12_c00034{width:30.229104pt;}
._d_c00034{width:32.784975pt;}
._1c_c00034{width:60.494304pt;}
.fs8_c00034{font-size:63.333333pt;}
.fs7_c00034{font-size:66.000000pt;}
.fsa_c00034{font-size:66.666667pt;}
.fs4_c00034{font-size:68.000000pt;}
.fs5_c00034{font-size:68.666667pt;}
.fs0_c00034{font-size:70.000000pt;}
.fsb_c00034{font-size:70.666667pt;}
.fs6_c00034{font-size:71.333333pt;}
.fs9_c00034{font-size:72.000000pt;}
.fs1_c00034{font-size:73.333333pt;}
.fsc_c00034{font-size:74.000000pt;}
.fs2_c00034{font-size:76.000000pt;}
.fs3_c00034{font-size:76.666667pt;}
.y0_c00034{bottom:0.000000pt;}
.y22_c00034{bottom:161.600133pt;}
.y21_c00034{bottom:187.839867pt;}
.y20_c00034{bottom:214.398920pt;}
.y1e_c00034{bottom:240.959413pt;}
.y1f_c00034{bottom:240.959453pt;}
.y1d_c00034{bottom:267.839333pt;}
.y1c_c00034{bottom:267.840253pt;}
.y1b_c00034{bottom:294.079840pt;}
.y1a_c00034{bottom:320.639587pt;}
.y18_c00034{bottom:373.759320pt;}
.y19_c00034{bottom:374.080120pt;}
.y17_c00034{bottom:400.321987pt;}
.y16_c00034{bottom:427.520467pt;}
.y15_c00034{bottom:453.760053pt;}
.y14_c00034{bottom:480.641840pt;}
.y13_c00034{bottom:506.561000pt;}
.y12_c00034{bottom:533.120747pt;}
.y11_c00034{bottom:559.360333pt;}
.y10_c00034{bottom:585.920080pt;}
.yf_c00034{bottom:612.479840pt;}
.ye_c00034{bottom:639.039587pt;}
.yd_c00034{bottom:666.238773pt;}
.yc_c00034{bottom:692.159307pt;}
.yb_c00034{bottom:718.719053pt;}
.ya_c00034{bottom:745.278813pt;}
.y9_c00034{bottom:745.279520pt;}
.y8_c00034{bottom:771.839280pt;}
.y7_c00034{bottom:825.279707pt;}
.y6_c00034{bottom:877.760987pt;}
.y5_c00034{bottom:904.320733pt;}
.y4_c00034{bottom:930.560320pt;}
.y3_c00034{bottom:984.000000pt;}
.y2_c00034{bottom:1008.959467pt;}
.y1_c00034{bottom:1010.879800pt;}
.hd_c00034{height:65.885417pt;}
.ha_c00034{height:66.054688pt;}
.hc_c00034{height:66.738281pt;}
.h5_c00034{height:68.531250pt;}
.h1_c00034{height:68.701172pt;}
.h9_c00034{height:68.835938pt;}
.h6_c00034{height:69.203125pt;}
.he_c00034{height:69.355469pt;}
.hf_c00034{height:69.981865pt;}
.h8_c00034{height:70.009766pt;}
.h11_c00034{height:70.497396pt;}
.h7_c00034{height:70.546875pt;}
.h12_c00034{height:70.664062pt;}
.h2_c00034{height:71.972656pt;}
.h13_c00034{height:72.473958pt;}
.hb_c00034{height:72.562500pt;}
.h10_c00034{height:72.590820pt;}
.h3_c00034{height:75.109375pt;}
.h4_c00034{height:79.960938pt;}
.h0_c00034{height:1122.666667pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x8_c00034{left:123.839333pt;}
.x1_c00034{left:124.798813pt;}
.x9_c00034{left:148.158667pt;}
.x6_c00034{left:156.159733pt;}
.xe_c00034{left:170.559067pt;}
.x7_c00034{left:180.479067pt;}
.x14_c00034{left:184.960000pt;}
.x15_c00034{left:205.440000pt;}
.x16_c00034{left:222.719200pt;}
.x26_c00034{left:228.159733pt;}
.x17_c00034{left:253.440000pt;}
.x18_c00034{left:274.239200pt;}
.x1f_c00034{left:301.119200pt;}
.x20_c00034{left:324.159733pt;}
.xf_c00034{left:353.919480pt;}
.x23_c00034{left:356.159173pt;}
.x24_c00034{left:370.239173pt;}
.x10_c00034{left:371.198693pt;}
.xa_c00034{left:383.039067pt;}
.xb_c00034{left:399.039587pt;}
.x19_c00034{left:423.999067pt;}
.x27_c00034{left:427.839840pt;}
.x28_c00034{left:441.919840pt;}
.x1a_c00034{left:443.838907pt;}
.x1b_c00034{left:461.119587pt;}
.x12_c00034{left:462.079067pt;}
.x2_c00034{left:466.879307pt;}
.x13_c00034{left:475.199707pt;}
.x21_c00034{left:479.679200pt;}
.x3_c00034{left:487.999467pt;}
.x22_c00034{left:502.398920pt;}
.x1c_c00034{left:526.079587pt;}
.xc_c00034{left:529.278773pt;}
.x1d_c00034{left:539.519453pt;}
.xd_c00034{left:554.879840pt;}
.x1e_c00034{left:556.798787pt;}
.x4_c00034{left:626.559040pt;}
.x5_c00034{left:644.159173pt;}
.x29_c00034{left:678.399867pt;}
.x25_c00034{left:681.279707pt;}
.x11_c00034{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc8a28fb852fc3ae296e915a.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_0ec5127786e5a707648babf8.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.364746;font-style:normal;font-weight:normal;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_ae9bc01787950a70e1056412.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_1161990374a9f6b934f2f83f.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_1860d90847ce112cd58e6294.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00035;src:url('chunks/assets/font_04e06d94b54edd3aebcfcc4b.woff2')format("woff");}.ff6_c00035{font-family:ff6_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:ff7_c00035;src:url('chunks/assets/font_c4692b91454ebe82cd30e9e9.woff2')format("woff");}.ff7_c00035{font-family:ff7_c00035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00035{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.193627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193627,0.000000,0.000000,0.250000,0,0);}
.m20_c00035{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m19_c00035{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00035{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m21_c00035{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.mf_c00035{transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c00035{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m5_c00035{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.mb_c00035{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m15_c00035{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.ma_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.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m1a_c00035{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m12_c00035{transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);}
.me_c00035{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m14_c00035{transform:matrix(0.339912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339912,0.000000,0.000000,0.250000,0,0);}
.md_c00035{transform:matrix(0.352273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352273,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(5.956279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.956279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.956279,0.000000,0.000000,0.250000,0,0);}
.m1e_c00035{transform:matrix(9.800825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.800825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.800825,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls1c_c00035{letter-spacing:-19.861650px;}
.ls14_c00035{letter-spacing:-18.915975px;}
.ls8_c00035{letter-spacing:-12.591900px;}
.ls19_c00035{letter-spacing:-11.343750px;}
.lsb_c00035{letter-spacing:-10.204425px;}
.ls10_c00035{letter-spacing:-8.175038px;}
.ls22_c00035{letter-spacing:-7.426125px;}
.ls1e_c00035{letter-spacing:-6.172200px;}
.ls11_c00035{letter-spacing:-5.945625px;}
.lse_c00035{letter-spacing:-5.786025px;}
.ls6_c00035{letter-spacing:-5.196713px;}
.ls9_c00035{letter-spacing:-4.727700px;}
.ls7_c00035{letter-spacing:-4.456463px;}
.ls12_c00035{letter-spacing:-3.748478px;}
.ls3_c00035{letter-spacing:-3.717000px;}
.ls17_c00035{letter-spacing:-3.497175px;}
.ls1b_c00035{letter-spacing:-3.148200px;}
.ls1d_c00035{letter-spacing:-2.997150px;}
.ls1_c00035{letter-spacing:-2.968875px;}
.ls5_c00035{letter-spacing:-2.229413px;}
.ls21_c00035{letter-spacing:-2.187135px;}
.ls13_c00035{letter-spacing:-1.569600px;}
.ls20_c00035{letter-spacing:-1.524750px;}
.ls4_c00035{letter-spacing:-1.489163px;}
.lsd_c00035{letter-spacing:-1.439708px;}
.ls2_c00035{letter-spacing:-0.740250px;}
.lsa_c00035{letter-spacing:0.000000px;}
.ls23_c00035{letter-spacing:1.052415px;}
.lsc_c00035{letter-spacing:1.676325px;}
.ls24_c00035{letter-spacing:3.502980px;}
.lsf_c00035{letter-spacing:3.637710px;}
.ls16_c00035{letter-spacing:3.820500px;}
.ls18_c00035{letter-spacing:4.080000px;}
.ls15_c00035{letter-spacing:4.791600px;}
.ls0_c00035{letter-spacing:5.196713px;}
.ls1a_c00035{letter-spacing:9.340538px;}
.ls1f_c00035{letter-spacing:9.341955px;}
.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;}
._18_c00035{margin-left:-56.292595px;}
._13_c00035{margin-left:-4.679919px;}
._16_c00035{margin-left:-3.370842px;}
._10_c00035{margin-left:-1.468910px;}
._d_c00035{width:1.611448px;}
._7_c00035{width:2.918386px;}
._c_c00035{width:3.947321px;}
._b_c00035{width:5.126402px;}
._f_c00035{width:6.457649px;}
._a_c00035{width:7.806785px;}
._e_c00035{width:8.906224px;}
._8_c00035{width:10.327869px;}
._11_c00035{width:11.486267px;}
._9_c00035{width:12.524965px;}
._17_c00035{width:16.066798px;}
._19_c00035{width:17.954673px;}
._12_c00035{width:19.134170px;}
._1a_c00035{width:20.635427px;}
._14_c00035{width:21.987208px;}
._1e_c00035{width:23.760985px;}
._1b_c00035{width:25.105455px;}
._1_c00035{width:28.011345px;}
._5_c00035{width:29.562631px;}
._2_c00035{width:31.891343px;}
._3_c00035{width:34.077978px;}
._0_c00035{width:35.862899px;}
._1c_c00035{width:37.432654px;}
._4_c00035{width:40.248858px;}
._6_c00035{width:41.389499px;}
._1d_c00035{width:43.978339px;}
._15_c00035{width:63.693208px;}
.fc0_c00035{color:transparent;}
.fsb_c00035{font-size:33.000000px;}
.fsc_c00035{font-size:33.750000px;}
.fsd_c00035{font-size:51.000000px;}
.fs3_c00035{font-size:51.750000px;}
.fs4_c00035{font-size:69.750000px;}
.fs11_c00035{font-size:70.500000px;}
.fs6_c00035{font-size:74.250000px;}
.fs5_c00035{font-size:75.750000px;}
.fs1_c00035{font-size:76.500000px;}
.fs2_c00035{font-size:77.250000px;}
.fs13_c00035{font-size:78.000000px;}
.fs0_c00035{font-size:78.750000px;}
.fsf_c00035{font-size:79.500000px;}
.fs7_c00035{font-size:80.250000px;}
.fs8_c00035{font-size:81.000000px;}
.fs9_c00035{font-size:81.750000px;}
.fse_c00035{font-size:82.500000px;}
.fs12_c00035{font-size:84.000000px;}
.fs15_c00035{font-size:84.750000px;}
.fs10_c00035{font-size:85.500000px;}
.fs14_c00035{font-size:136.500000px;}
.fsa_c00035{font-size:167.250000px;}
.y0_c00035{bottom:0.000000px;}
.y28_c00035{bottom:212.399250px;}
.y27_c00035{bottom:212.399340px;}
.y26_c00035{bottom:242.279070px;}
.y24_c00035{bottom:272.158680px;}
.y25_c00035{bottom:272.158785px;}
.y23_c00035{bottom:302.398590px;}
.y22_c00035{bottom:331.919925px;}
.y20_c00035{bottom:362.159415px;}
.y21_c00035{bottom:362.159850px;}
.y1f_c00035{bottom:421.560465px;}
.y1e_c00035{bottom:451.080000px;}
.y1d_c00035{bottom:451.080780px;}
.y1c_c00035{bottom:481.679070px;}
.y1b_c00035{bottom:541.438620px;}
.y1a_c00035{bottom:541.439505px;}
.y19_c00035{bottom:571.319235px;}
.y18_c00035{bottom:571.319415px;}
.y17_c00035{bottom:600.838950px;}
.y16_c00035{bottom:600.839790px;}
.y15_c00035{bottom:630.719520px;}
.y14_c00035{bottom:630.719700px;}
.y12_c00035{bottom:660.238635px;}
.y13_c00035{bottom:660.239220px;}
.y11_c00035{bottom:719.639700px;}
.y10_c00035{bottom:749.879520px;}
.yf_c00035{bottom:757.799520px;}
.ye_c00035{bottom:780.480285px;}
.yd_c00035{bottom:839.520075px;}
.yc_c00035{bottom:869.039610px;}
.yb_c00035{bottom:928.799055px;}
.y9_c00035{bottom:959.038905px;}
.ya_c00035{bottom:959.038965px;}
.y7_c00035{bottom:988.560195px;}
.y8_c00035{bottom:988.560240px;}
.y6_c00035{bottom:1018.800105px;}
.y5_c00035{bottom:1048.679070px;}
.y4_c00035{bottom:1048.679445px;}
.y3_c00035{bottom:1079.279850px;}
.y2_c00035{bottom:1108.438065px;}
.y1_c00035{bottom:1138.680090px;}
.hc_c00035{height:32.613281px;}
.hd_c00035{height:33.354492px;}
.hf_c00035{height:50.402344px;}
.h4_c00035{height:53.973633px;}
.h5_c00035{height:72.747070px;}
.h7_c00035{height:72.872314px;}
.he_c00035{height:73.379883px;}
.h14_c00035{height:73.529297px;}
.h6_c00035{height:74.344482px;}
.h16_c00035{height:75.080566px;}
.h2_c00035{height:75.603516px;}
.h3_c00035{height:75.816650px;}
.h17_c00035{height:76.552734px;}
.h1_c00035{height:77.288818px;}
.h8_c00035{height:78.760986px;}
.h9_c00035{height:79.497070px;}
.h11_c00035{height:80.121094px;}
.ha_c00035{height:80.233154px;}
.h18_c00035{height:80.969238px;}
.h10_c00035{height:81.533203px;}
.h13_c00035{height:81.632812px;}
.h15_c00035{height:83.015625px;}
.h1a_c00035{height:83.177490px;}
.h12_c00035{height:84.498047px;}
.h19_c00035{height:142.365234px;}
.hb_c00035{height:164.065063px;}
.h0_c00035{height:1263.000000px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x10_c00035{left:147.239250px;}
.x1_c00035{left:148.318800px;}
.x2_c00035{left:168.838950px;}
.x1d_c00035{left:195.118785px;}
.x12_c00035{left:200.878350px;}
.x28_c00035{left:227.878350px;}
.x3_c00035{left:232.558635px;}
.x29_c00035{left:243.000000px;}
.x4_c00035{left:248.039385px;}
.x14_c00035{left:250.918350px;}
.x13_c00035{left:252.358635px;}
.x30_c00035{left:264.599700px;}
.x5_c00035{left:267.839535px;}
.x15_c00035{left:303.118785px;}
.x16_c00035{left:324.718500px;}
.x6_c00035{left:352.079385px;}
.x1e_c00035{left:362.159850px;}
.x1f_c00035{left:376.918950px;}
.x17_c00035{left:392.399820px;}
.x7_c00035{left:407.519670px;}
.x2b_c00035{left:449.278800px;}
.x2c_c00035{left:466.559100px;}
.x22_c00035{left:468.719565px;}
.x8_c00035{left:477.359850px;}
.x23_c00035{left:484.198785px;}
.xe_c00035{left:490.678530px;}
.x18_c00035{left:493.199850px;}
.x19_c00035{left:521.638500px;}
.x2a_c00035{left:527.038920px;}
.x11_c00035{left:530.278800px;}
.xf_c00035{left:540.359250px;}
.x9_c00035{left:573.118785px;}
.xa_c00035{left:592.559685px;}
.x20_c00035{left:599.398635px;}
.x1a_c00035{left:602.638545px;}
.x2f_c00035{left:624.599070px;}
.x24_c00035{left:629.638545px;}
.x21_c00035{left:634.318770px;}
.x1b_c00035{left:636.479235px;}
.x25_c00035{left:645.839535px;}
.x26_c00035{left:660.239220px;}
.x27_c00035{left:674.279850px;}
.xc_c00035{left:680.398635px;}
.xd_c00035{left:712.798920px;}
.x1c_c00035{left:718.919535px;}
.x2d_c00035{left:750.238770px;}
.x2e_c00035{left:768.959385px;}
.xb_c00035{left:771.838530px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls1c_c00035{letter-spacing:-17.654800pt;}
.ls14_c00035{letter-spacing:-16.814200pt;}
.ls8_c00035{letter-spacing:-11.192800pt;}
.ls19_c00035{letter-spacing:-10.083333pt;}
.lsb_c00035{letter-spacing:-9.070600pt;}
.ls10_c00035{letter-spacing:-7.266700pt;}
.ls22_c00035{letter-spacing:-6.601000pt;}
.ls1e_c00035{letter-spacing:-5.486400pt;}
.ls11_c00035{letter-spacing:-5.285000pt;}
.lse_c00035{letter-spacing:-5.143133pt;}
.ls6_c00035{letter-spacing:-4.619300pt;}
.ls9_c00035{letter-spacing:-4.202400pt;}
.ls7_c00035{letter-spacing:-3.961300pt;}
.ls12_c00035{letter-spacing:-3.331980pt;}
.ls3_c00035{letter-spacing:-3.304000pt;}
.ls17_c00035{letter-spacing:-3.108600pt;}
.ls1b_c00035{letter-spacing:-2.798400pt;}
.ls1d_c00035{letter-spacing:-2.664133pt;}
.ls1_c00035{letter-spacing:-2.639000pt;}
.ls5_c00035{letter-spacing:-1.981700pt;}
.ls21_c00035{letter-spacing:-1.944120pt;}
.ls13_c00035{letter-spacing:-1.395200pt;}
.ls20_c00035{letter-spacing:-1.355333pt;}
.ls4_c00035{letter-spacing:-1.323700pt;}
.lsd_c00035{letter-spacing:-1.279740pt;}
.ls2_c00035{letter-spacing:-0.658000pt;}
.lsa_c00035{letter-spacing:0.000000pt;}
.ls23_c00035{letter-spacing:0.935480pt;}
.lsc_c00035{letter-spacing:1.490067pt;}
.ls24_c00035{letter-spacing:3.113760pt;}
.lsf_c00035{letter-spacing:3.233520pt;}
.ls16_c00035{letter-spacing:3.396000pt;}
.ls18_c00035{letter-spacing:3.626667pt;}
.ls15_c00035{letter-spacing:4.259200pt;}
.ls0_c00035{letter-spacing:4.619300pt;}
.ls1a_c00035{letter-spacing:8.302700pt;}
.ls1f_c00035{letter-spacing:8.303960pt;}
.ws0_c00035{word-spacing:0.000000pt;}
._18_c00035{margin-left:-50.037862pt;}
._13_c00035{margin-left:-4.159928pt;}
._16_c00035{margin-left:-2.996304pt;}
._10_c00035{margin-left:-1.305698pt;}
._d_c00035{width:1.432398pt;}
._7_c00035{width:2.594121pt;}
._c_c00035{width:3.508730pt;}
._b_c00035{width:4.556802pt;}
._f_c00035{width:5.740132pt;}
._a_c00035{width:6.939364pt;}
._e_c00035{width:7.916643pt;}
._8_c00035{width:9.180328pt;}
._11_c00035{width:10.210015pt;}
._9_c00035{width:11.133302pt;}
._17_c00035{width:14.281598pt;}
._19_c00035{width:15.959709pt;}
._12_c00035{width:17.008151pt;}
._1a_c00035{width:18.342602pt;}
._14_c00035{width:19.544185pt;}
._1e_c00035{width:21.120875pt;}
._1b_c00035{width:22.315960pt;}
._1_c00035{width:24.898974pt;}
._5_c00035{width:26.277894pt;}
._2_c00035{width:28.347860pt;}
._3_c00035{width:30.291536pt;}
._0_c00035{width:31.878132pt;}
._1c_c00035{width:33.273470pt;}
._4_c00035{width:35.776762pt;}
._6_c00035{width:36.790666pt;}
._1d_c00035{width:39.091857pt;}
._15_c00035{width:56.616185pt;}
.fsb_c00035{font-size:29.333333pt;}
.fsc_c00035{font-size:30.000000pt;}
.fsd_c00035{font-size:45.333333pt;}
.fs3_c00035{font-size:46.000000pt;}
.fs4_c00035{font-size:62.000000pt;}
.fs11_c00035{font-size:62.666667pt;}
.fs6_c00035{font-size:66.000000pt;}
.fs5_c00035{font-size:67.333333pt;}
.fs1_c00035{font-size:68.000000pt;}
.fs2_c00035{font-size:68.666667pt;}
.fs13_c00035{font-size:69.333333pt;}
.fs0_c00035{font-size:70.000000pt;}
.fsf_c00035{font-size:70.666667pt;}
.fs7_c00035{font-size:71.333333pt;}
.fs8_c00035{font-size:72.000000pt;}
.fs9_c00035{font-size:72.666667pt;}
.fse_c00035{font-size:73.333333pt;}
.fs12_c00035{font-size:74.666667pt;}
.fs15_c00035{font-size:75.333333pt;}
.fs10_c00035{font-size:76.000000pt;}
.fs14_c00035{font-size:121.333333pt;}
.fsa_c00035{font-size:148.666667pt;}
.y0_c00035{bottom:0.000000pt;}
.y28_c00035{bottom:188.799333pt;}
.y27_c00035{bottom:188.799413pt;}
.y26_c00035{bottom:215.359173pt;}
.y24_c00035{bottom:241.918827pt;}
.y25_c00035{bottom:241.918920pt;}
.y23_c00035{bottom:268.798747pt;}
.y22_c00035{bottom:295.039933pt;}
.y20_c00035{bottom:321.919480pt;}
.y21_c00035{bottom:321.919867pt;}
.y1f_c00035{bottom:374.720413pt;}
.y1e_c00035{bottom:400.960000pt;}
.y1d_c00035{bottom:400.960693pt;}
.y1c_c00035{bottom:428.159173pt;}
.y1b_c00035{bottom:481.278773pt;}
.y1a_c00035{bottom:481.279560pt;}
.y19_c00035{bottom:507.839320pt;}
.y18_c00035{bottom:507.839480pt;}
.y17_c00035{bottom:534.079067pt;}
.y16_c00035{bottom:534.079813pt;}
.y15_c00035{bottom:560.639573pt;}
.y14_c00035{bottom:560.639733pt;}
.y12_c00035{bottom:586.878787pt;}
.y13_c00035{bottom:586.879307pt;}
.y11_c00035{bottom:639.679733pt;}
.y10_c00035{bottom:666.559573pt;}
.yf_c00035{bottom:673.599573pt;}
.ye_c00035{bottom:693.760253pt;}
.yd_c00035{bottom:746.240067pt;}
.yc_c00035{bottom:772.479653pt;}
.yb_c00035{bottom:825.599160pt;}
.y9_c00035{bottom:852.479027pt;}
.ya_c00035{bottom:852.479080pt;}
.y7_c00035{bottom:878.720173pt;}
.y8_c00035{bottom:878.720213pt;}
.y6_c00035{bottom:905.600093pt;}
.y5_c00035{bottom:932.159173pt;}
.y4_c00035{bottom:932.159507pt;}
.y3_c00035{bottom:959.359867pt;}
.y2_c00035{bottom:985.278280pt;}
.y1_c00035{bottom:1012.160080pt;}
.hc_c00035{height:28.989583pt;}
.hd_c00035{height:29.648437pt;}
.hf_c00035{height:44.802083pt;}
.h4_c00035{height:47.976562pt;}
.h5_c00035{height:64.664062pt;}
.h7_c00035{height:64.775391pt;}
.he_c00035{height:65.226563pt;}
.h14_c00035{height:65.359375pt;}
.h6_c00035{height:66.083984pt;}
.h16_c00035{height:66.738281pt;}
.h2_c00035{height:67.203125pt;}
.h3_c00035{height:67.392578pt;}
.h17_c00035{height:68.046875pt;}
.h1_c00035{height:68.701172pt;}
.h8_c00035{height:70.009766pt;}
.h9_c00035{height:70.664062pt;}
.h11_c00035{height:71.218750pt;}
.ha_c00035{height:71.318359pt;}
.h18_c00035{height:71.972656pt;}
.h10_c00035{height:72.473958pt;}
.h13_c00035{height:72.562500pt;}
.h15_c00035{height:73.791667pt;}
.h1a_c00035{height:73.935547pt;}
.h12_c00035{height:75.109375pt;}
.h19_c00035{height:126.546875pt;}
.hb_c00035{height:145.835612pt;}
.h0_c00035{height:1122.666667pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x10_c00035{left:130.879333pt;}
.x1_c00035{left:131.838933pt;}
.x2_c00035{left:150.079067pt;}
.x1d_c00035{left:173.438920pt;}
.x12_c00035{left:178.558533pt;}
.x28_c00035{left:202.558533pt;}
.x3_c00035{left:206.718787pt;}
.x29_c00035{left:216.000000pt;}
.x4_c00035{left:220.479453pt;}
.x14_c00035{left:223.038533pt;}
.x13_c00035{left:224.318787pt;}
.x30_c00035{left:235.199733pt;}
.x5_c00035{left:238.079587pt;}
.x15_c00035{left:269.438920pt;}
.x16_c00035{left:288.638667pt;}
.x6_c00035{left:312.959453pt;}
.x1e_c00035{left:321.919867pt;}
.x1f_c00035{left:335.039067pt;}
.x17_c00035{left:348.799840pt;}
.x7_c00035{left:362.239707pt;}
.x2b_c00035{left:399.358933pt;}
.x2c_c00035{left:414.719200pt;}
.x22_c00035{left:416.639613pt;}
.x8_c00035{left:424.319867pt;}
.x23_c00035{left:430.398920pt;}
.xe_c00035{left:436.158693pt;}
.x18_c00035{left:438.399867pt;}
.x19_c00035{left:463.678667pt;}
.x2a_c00035{left:468.479040pt;}
.x11_c00035{left:471.358933pt;}
.xf_c00035{left:480.319333pt;}
.x9_c00035{left:509.438920pt;}
.xa_c00035{left:526.719720pt;}
.x20_c00035{left:532.798787pt;}
.x1a_c00035{left:535.678707pt;}
.x2f_c00035{left:555.199173pt;}
.x24_c00035{left:559.678707pt;}
.x21_c00035{left:563.838907pt;}
.x1b_c00035{left:565.759320pt;}
.x25_c00035{left:574.079587pt;}
.x26_c00035{left:586.879307pt;}
.x27_c00035{left:599.359867pt;}
.xc_c00035{left:604.798787pt;}
.xd_c00035{left:633.599040pt;}
.x1c_c00035{left:639.039587pt;}
.x2d_c00035{left:666.878907pt;}
.x2e_c00035{left:683.519453pt;}
.xb_c00035{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e95bc52967d2bf17efbaea90.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.311035;font-style:normal;font-weight:normal;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_4cfca9db38222cded73f03dc.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.364746;font-style:normal;font-weight:normal;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_a315f60f5074c0ad2f0502b9.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00036;src:url('chunks/assets/font_77ad7cfd108346c2f8bbb5ab.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_437f8110a5bd2d13d71d9274.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00036;src:url('chunks/assets/font_4b3cd47e8b587c257f1c0d6c.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:1.281250;font-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_c00036{transform:matrix(0.058453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058453,0.000000,0.000000,0.250000,0,0);}
.m14_c00036{transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059091,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{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);}
.m13_c00036{transform:matrix(0.063725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063725,0.000000,0.000000,0.250000,0,0);}
.m18_c00036{transform:matrix(0.071667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071667,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.073276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073276,0.000000,0.000000,0.250000,0,0);}
.ma_c00036{transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076923,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{transform:matrix(0.081731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081731,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.082090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082090,0.000000,0.000000,0.250000,0,0);}
.m12_c00036{transform:matrix(0.088542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088542,0.000000,0.000000,0.250000,0,0);}
.m9_c00036{transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091667,0.000000,0.000000,0.250000,0,0);}
.mb_c00036{transform:matrix(0.094444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094444,0.000000,0.000000,0.250000,0,0);}
.m1a_c00036{transform:matrix(0.095361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095361,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.108247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108247,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{transform:matrix(0.109043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109043,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116848,0.000000,0.000000,0.250000,0,0);}
.m6_c00036{transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);}
.md_c00036{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m1b_c00036{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m1c_c00036{transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m11_c00036{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m19_c00036{transform:matrix(0.380814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380814,0.000000,0.000000,0.250000,0,0);}
.mc_c00036{transform:matrix(0.389535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389535,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls17_c00036{letter-spacing:-12.306600px;}
.lsb_c00036{letter-spacing:-5.931225px;}
.ls9_c00036{letter-spacing:-5.241060px;}
.ls10_c00036{letter-spacing:-3.896100px;}
.ls16_c00036{letter-spacing:-1.601055px;}
.lsd_c00036{letter-spacing:-1.361700px;}
.ls14_c00036{letter-spacing:0.000000px;}
.lsc_c00036{letter-spacing:1.049400px;}
.ls19_c00036{letter-spacing:1.601055px;}
.ls18_c00036{letter-spacing:3.207750px;}
.ls2_c00036{letter-spacing:4.191660px;}
.ls5_c00036{letter-spacing:4.808805px;}
.ls8_c00036{letter-spacing:6.211800px;}
.ls6_c00036{letter-spacing:6.408450px;}
.ls1_c00036{letter-spacing:7.332600px;}
.ls4_c00036{letter-spacing:8.008800px;}
.lsa_c00036{letter-spacing:8.382000px;}
.ls3_c00036{letter-spacing:11.216550px;}
.ls11_c00036{letter-spacing:11.233200px;}
.ls0_c00036{letter-spacing:11.524260px;}
.lsf_c00036{letter-spacing:12.127425px;}
.ls12_c00036{letter-spacing:15.474750px;}
.ls7_c00036{letter-spacing:17.807460px;}
.lse_c00036{letter-spacing:20.955000px;}
.ls13_c00036{letter-spacing:26.595000px;}
.ls15_c00036{letter-spacing:34.009875px;}
.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;}
._9_c00036{margin-left:-38.659060px;}
._4_c00036{margin-left:-32.556900px;}
._1_c00036{margin-left:-9.902273px;}
._2_c00036{width:1.854328px;}
._3_c00036{width:11.676416px;}
._a_c00036{width:12.685514px;}
._0_c00036{width:22.524522px;}
._5_c00036{width:372.578400px;}
._8_c00036{width:1026.952735px;}
._6_c00036{width:1152.090875px;}
._7_c00036{width:1285.404965px;}
.fc0_c00036{color:transparent;}
.fsa_c00036{font-size:32.250000px;}
.fs9_c00036{font-size:33.750000px;}
.fse_c00036{font-size:34.500000px;}
.fsf_c00036{font-size:36.000000px;}
.fs10_c00036{font-size:38.250000px;}
.fs8_c00036{font-size:39.000000px;}
.fs11_c00036{font-size:41.250000px;}
.fsd_c00036{font-size:43.500000px;}
.fs13_c00036{font-size:48.000000px;}
.fs12_c00036{font-size:50.250000px;}
.fs1_c00036{font-size:65.250000px;}
.fs0_c00036{font-size:66.000000px;}
.fs2_c00036{font-size:66.750000px;}
.fs6_c00036{font-size:69.000000px;}
.fs5_c00036{font-size:70.500000px;}
.fs3_c00036{font-size:72.750000px;}
.fs4_c00036{font-size:87.750000px;}
.fs7_c00036{font-size:90.000000px;}
.fsb_c00036{font-size:103.500000px;}
.fs14_c00036{font-size:112.500000px;}
.fs15_c00036{font-size:129.000000px;}
.fsc_c00036{font-size:208.500000px;}
.fs16_c00036{font-size:803.250000px;}
.fs17_c00036{font-size:883.500000px;}
.y0_c00036{bottom:0.000000px;}
.y18_c00036{bottom:228.600375px;}
.y17_c00036{bottom:251.999430px;}
.y16_c00036{bottom:379.800045px;}
.y26_c00036{bottom:380.161680px;}
.y2a_c00036{bottom:380.520195px;}
.y15_c00036{bottom:402.839535px;}
.y25_c00036{bottom:403.201170px;}
.y29_c00036{bottom:403.559685px;}
.y28_c00036{bottom:453.240420px;}
.y24_c00036{bottom:497.521380px;}
.y27_c00036{bottom:521.279730px;}
.y23_c00036{bottom:544.319235px;}
.y22_c00036{bottom:600.120435px;}
.y14_c00036{bottom:602.999400px;}
.y13_c00036{bottom:614.520285px;}
.y12_c00036{bottom:626.039385px;}
.y21_c00036{bottom:636.480885px;}
.y11_c00036{bottom:637.919535px;}
.y10_c00036{bottom:649.799520px;}
.y20_c00036{bottom:659.520945px;}
.yf_c00036{bottom:660.959385px;}
.ye_c00036{bottom:672.480285px;}
.y1f_c00036{bottom:682.920000px;}
.yd_c00036{bottom:684.360255px;}
.yc_c00036{bottom:695.879520px;}
.yb_c00036{bottom:707.400285px;}
.ya_c00036{bottom:719.639700px;}
.y8_c00036{bottom:731.160420px;}
.y1e_c00036{bottom:732.600720px;}
.y9_c00036{bottom:736.199850px;}
.y7_c00036{bottom:764.278320px;}
.y1d_c00036{bottom:764.999835px;}
.y6_c00036{bottom:776.159370px;}
.y1b_c00036{bottom:781.559685px;}
.y5_c00036{bottom:787.680180px;}
.y1c_c00036{bottom:788.039340px;}
.y3_c00036{bottom:803.879520px;}
.y4_c00036{bottom:811.440315px;}
.y1a_c00036{bottom:811.799190px;}
.y2_c00036{bottom:822.600135px;}
.y19_c00036{bottom:823.320690px;}
.y1_c00036{bottom:1161.720150px;}
.ha_c00036{height:33.354492px;}
.hb_c00036{height:33.635742px;}
.h10_c00036{height:35.578125px;}
.hf_c00036{height:35.982422px;}
.h11_c00036{height:37.801758px;}
.h9_c00036{height:38.542969px;}
.h12_c00036{height:40.766602px;}
.he_c00036{height:42.990234px;}
.h14_c00036{height:50.062500px;}
.h13_c00036{height:50.642578px;}
.h2_c00036{height:65.759766px;}
.h3_c00036{height:65.967773px;}
.h1_c00036{height:66.515625px;}
.h7_c00036{height:68.191406px;}
.h6_c00036{height:69.673828px;}
.h4_c00036{height:71.897461px;}
.h8_c00036{height:88.945312px;}
.h5_c00036{height:91.520508px;}
.hc_c00036{height:107.947266px;}
.h15_c00036{height:117.333984px;}
.h16_c00036{height:134.542969px;}
.hd_c00036{height:217.458984px;}
.h17_c00036{height:787.953735px;}
.h18_c00036{height:866.675537px;}
.h0_c00036{height:1263.000000px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:136.079400px;}
.x9_c00036{left:167.759565px;}
.x2_c00036{left:182.159415px;}
.x10_c00036{left:194.398635px;}
.x3_c00036{left:199.798950px;}
.xe_c00036{left:200.878350px;}
.xf_c00036{left:206.639700px;}
.xc_c00036{left:217.438635px;}
.x11_c00036{left:219.239850px;}
.x8_c00036{left:276.118785px;}
.xa_c00036{left:281.159850px;}
.x4_c00036{left:298.079385px;}
.xb_c00036{left:305.999385px;}
.x5_c00036{left:316.080000px;}
.x14_c00036{left:367.919520px;}
.x13_c00036{left:379.799535px;}
.x6_c00036{left:390.598530px;}
.xd_c00036{left:395.998950px;}
.x12_c00036{left:398.518665px;}
.x7_c00036{left:408.239820px;}
.x1a_c00036{left:541.799520px;}
.x1b_c00036{left:546.479805px;}
.x1d_c00036{left:552.239910px;}
.x1c_c00036{left:557.999295px;}
.x17_c00036{left:615.238770px;}
.x18_c00036{left:621.000000px;}
.x15_c00036{left:633.239430px;}
.x16_c00036{left:638.639895px;}
.x19_c00036{left:645.119385px;}
.x1f_c00036{left:713.159820px;}
.x1e_c00036{left:719.639790px;}
.x20_c00036{left:736.918350px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls17_c00036{letter-spacing:-10.939200pt;}
.lsb_c00036{letter-spacing:-5.272200pt;}
.ls9_c00036{letter-spacing:-4.658720pt;}
.ls10_c00036{letter-spacing:-3.463200pt;}
.ls16_c00036{letter-spacing:-1.423160pt;}
.lsd_c00036{letter-spacing:-1.210400pt;}
.ls14_c00036{letter-spacing:0.000000pt;}
.lsc_c00036{letter-spacing:0.932800pt;}
.ls19_c00036{letter-spacing:1.423160pt;}
.ls18_c00036{letter-spacing:2.851333pt;}
.ls2_c00036{letter-spacing:3.725920pt;}
.ls5_c00036{letter-spacing:4.274493pt;}
.ls8_c00036{letter-spacing:5.521600pt;}
.ls6_c00036{letter-spacing:5.696400pt;}
.ls1_c00036{letter-spacing:6.517867pt;}
.ls4_c00036{letter-spacing:7.118933pt;}
.lsa_c00036{letter-spacing:7.450667pt;}
.ls3_c00036{letter-spacing:9.970267pt;}
.ls11_c00036{letter-spacing:9.985067pt;}
.ls0_c00036{letter-spacing:10.243787pt;}
.lsf_c00036{letter-spacing:10.779933pt;}
.ls12_c00036{letter-spacing:13.755333pt;}
.ls7_c00036{letter-spacing:15.828853pt;}
.lse_c00036{letter-spacing:18.626667pt;}
.ls13_c00036{letter-spacing:23.640000pt;}
.ls15_c00036{letter-spacing:30.231000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
._9_c00036{margin-left:-34.363608pt;}
._4_c00036{margin-left:-28.939467pt;}
._1_c00036{margin-left:-8.802021pt;}
._2_c00036{width:1.648291pt;}
._3_c00036{width:10.379037pt;}
._a_c00036{width:11.276012pt;}
._0_c00036{width:20.021797pt;}
._5_c00036{width:331.180800pt;}
._8_c00036{width:912.846875pt;}
._6_c00036{width:1024.080778pt;}
._7_c00036{width:1142.582192pt;}
.fsa_c00036{font-size:28.666667pt;}
.fs9_c00036{font-size:30.000000pt;}
.fse_c00036{font-size:30.666667pt;}
.fsf_c00036{font-size:32.000000pt;}
.fs10_c00036{font-size:34.000000pt;}
.fs8_c00036{font-size:34.666667pt;}
.fs11_c00036{font-size:36.666667pt;}
.fsd_c00036{font-size:38.666667pt;}
.fs13_c00036{font-size:42.666667pt;}
.fs12_c00036{font-size:44.666667pt;}
.fs1_c00036{font-size:58.000000pt;}
.fs0_c00036{font-size:58.666667pt;}
.fs2_c00036{font-size:59.333333pt;}
.fs6_c00036{font-size:61.333333pt;}
.fs5_c00036{font-size:62.666667pt;}
.fs3_c00036{font-size:64.666667pt;}
.fs4_c00036{font-size:78.000000pt;}
.fs7_c00036{font-size:80.000000pt;}
.fsb_c00036{font-size:92.000000pt;}
.fs14_c00036{font-size:100.000000pt;}
.fs15_c00036{font-size:114.666667pt;}
.fsc_c00036{font-size:185.333333pt;}
.fs16_c00036{font-size:714.000000pt;}
.fs17_c00036{font-size:785.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y18_c00036{bottom:203.200333pt;}
.y17_c00036{bottom:223.999493pt;}
.y16_c00036{bottom:337.600040pt;}
.y26_c00036{bottom:337.921493pt;}
.y2a_c00036{bottom:338.240173pt;}
.y15_c00036{bottom:358.079587pt;}
.y25_c00036{bottom:358.401040pt;}
.y29_c00036{bottom:358.719720pt;}
.y28_c00036{bottom:402.880373pt;}
.y24_c00036{bottom:442.241227pt;}
.y27_c00036{bottom:463.359760pt;}
.y23_c00036{bottom:483.839320pt;}
.y22_c00036{bottom:533.440387pt;}
.y14_c00036{bottom:535.999467pt;}
.y13_c00036{bottom:546.240253pt;}
.y12_c00036{bottom:556.479453pt;}
.y21_c00036{bottom:565.760787pt;}
.y11_c00036{bottom:567.039587pt;}
.y10_c00036{bottom:577.599573pt;}
.y20_c00036{bottom:586.240840pt;}
.yf_c00036{bottom:587.519453pt;}
.ye_c00036{bottom:597.760253pt;}
.y1f_c00036{bottom:607.040000pt;}
.yd_c00036{bottom:608.320227pt;}
.yc_c00036{bottom:618.559573pt;}
.yb_c00036{bottom:628.800253pt;}
.ya_c00036{bottom:639.679733pt;}
.y8_c00036{bottom:649.920373pt;}
.y1e_c00036{bottom:651.200640pt;}
.y9_c00036{bottom:654.399867pt;}
.y7_c00036{bottom:679.358507pt;}
.y1d_c00036{bottom:679.999853pt;}
.y6_c00036{bottom:689.919440pt;}
.y1b_c00036{bottom:694.719720pt;}
.y5_c00036{bottom:700.160160pt;}
.y1c_c00036{bottom:700.479413pt;}
.y3_c00036{bottom:714.559573pt;}
.y4_c00036{bottom:721.280280pt;}
.y1a_c00036{bottom:721.599280pt;}
.y2_c00036{bottom:731.200120pt;}
.y19_c00036{bottom:731.840613pt;}
.y1_c00036{bottom:1032.640133pt;}
.ha_c00036{height:29.648437pt;}
.hb_c00036{height:29.898438pt;}
.h10_c00036{height:31.625000pt;}
.hf_c00036{height:31.984375pt;}
.h11_c00036{height:33.601562pt;}
.h9_c00036{height:34.260417pt;}
.h12_c00036{height:36.236979pt;}
.he_c00036{height:38.213542pt;}
.h14_c00036{height:44.500000pt;}
.h13_c00036{height:45.015625pt;}
.h2_c00036{height:58.453125pt;}
.h3_c00036{height:58.638021pt;}
.h1_c00036{height:59.125000pt;}
.h7_c00036{height:60.614583pt;}
.h6_c00036{height:61.932292pt;}
.h4_c00036{height:63.908854pt;}
.h8_c00036{height:79.062500pt;}
.h5_c00036{height:81.351562pt;}
.hc_c00036{height:95.953125pt;}
.h15_c00036{height:104.296875pt;}
.h16_c00036{height:119.593750pt;}
.hd_c00036{height:193.296875pt;}
.h17_c00036{height:700.403320pt;}
.h18_c00036{height:770.378255pt;}
.h0_c00036{height:1122.666667pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:120.959467pt;}
.x9_c00036{left:149.119613pt;}
.x2_c00036{left:161.919480pt;}
.x10_c00036{left:172.798787pt;}
.x3_c00036{left:177.599067pt;}
.xe_c00036{left:178.558533pt;}
.xf_c00036{left:183.679733pt;}
.xc_c00036{left:193.278787pt;}
.x11_c00036{left:194.879867pt;}
.x8_c00036{left:245.438920pt;}
.xa_c00036{left:249.919867pt;}
.x4_c00036{left:264.959453pt;}
.xb_c00036{left:271.999453pt;}
.x5_c00036{left:280.960000pt;}
.x14_c00036{left:327.039573pt;}
.x13_c00036{left:337.599587pt;}
.x6_c00036{left:347.198693pt;}
.xd_c00036{left:351.999067pt;}
.x12_c00036{left:354.238813pt;}
.x7_c00036{left:362.879840pt;}
.x1a_c00036{left:481.599573pt;}
.x1b_c00036{left:485.759827pt;}
.x1d_c00036{left:490.879920pt;}
.x1c_c00036{left:495.999373pt;}
.x17_c00036{left:546.878907pt;}
.x18_c00036{left:552.000000pt;}
.x15_c00036{left:562.879493pt;}
.x16_c00036{left:567.679907pt;}
.x19_c00036{left:573.439453pt;}
.x1f_c00036{left:633.919840pt;}
.x1e_c00036{left:639.679813pt;}
.x20_c00036{left:655.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b0aef69d22e1091c06f2abc.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_b137b78bc1d9694255402a56.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_8ee4efd0ac4629dfeb00e846.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.364746;font-style:normal;font-weight:normal;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_1391162cf5471e95699acb96.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00037;src:url('chunks/assets/font_fc3303d56f8ed2038f9cadcb.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00037;src:url('chunks/assets/font_ee1570a4d33f4c1b46793880.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00037;src:url('chunks/assets/font_f72b4c07237035755d9ce376.woff2')format("woff");}.ff7_c00037{font-family:ff7_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;}
.m22_c00037{transform:matrix(0.153302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153302,0.000000,0.000000,0.250000,0,0);}
.m21_c00037{transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.186916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186916,0.000000,0.000000,0.250000,0,0);}
.m1a_c00037{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1c_c00037{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m20_c00037{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.m12_c00037{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m14_c00037{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m10_c00037{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m23_c00037{transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);}
.m1e_c00037{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m1b_c00037{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1f_c00037{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m16_c00037{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.352041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352041,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.v1_c00037{vertical-align:1.440780px;}
.lsb_c00037{letter-spacing:-11.034375px;}
.ls1d_c00037{letter-spacing:-7.426125px;}
.lsd_c00037{letter-spacing:-5.945625px;}
.ls19_c00037{letter-spacing:-5.778855px;}
.ls1f_c00037{letter-spacing:-5.343818px;}
.ls15_c00037{letter-spacing:-5.248350px;}
.ls22_c00037{letter-spacing:-5.199698px;}
.lsc_c00037{letter-spacing:-5.196713px;}
.lsf_c00037{letter-spacing:-4.456463px;}
.ls1b_c00037{letter-spacing:-4.258800px;}
.ls26_c00037{letter-spacing:-3.855600px;}
.ls10_c00037{letter-spacing:-3.753000px;}
.lse_c00037{letter-spacing:-3.717000px;}
.ls3_c00037{letter-spacing:-3.329168px;}
.ls17_c00037{letter-spacing:-3.139500px;}
.ls13_c00037{letter-spacing:-3.114450px;}
.ls24_c00037{letter-spacing:-3.000375px;}
.lsa_c00037{letter-spacing:-2.968875px;}
.ls20_c00037{letter-spacing:-2.914650px;}
.ls1c_c00037{letter-spacing:-2.337233px;}
.ls6_c00037{letter-spacing:-2.315250px;}
.ls8_c00037{letter-spacing:-2.229413px;}
.ls1a_c00037{letter-spacing:-2.226000px;}
.ls18_c00037{letter-spacing:-1.669200px;}
.ls5_c00037{letter-spacing:-1.638000px;}
.ls7_c00037{letter-spacing:-1.489163px;}
.ls25_c00037{letter-spacing:-1.224300px;}
.ls11_c00037{letter-spacing:-0.893498px;}
.ls2_c00037{letter-spacing:-0.831668px;}
.ls21_c00037{letter-spacing:-0.763875px;}
.ls9_c00037{letter-spacing:-0.740250px;}
.ls1_c00037{letter-spacing:0.000000px;}
.ls0_c00037{letter-spacing:0.740250px;}
.ls1e_c00037{letter-spacing:1.890840px;}
.ls4_c00037{letter-spacing:2.497500px;}
.ls12_c00037{letter-spacing:2.902800px;}
.ls14_c00037{letter-spacing:12.781282px;}
.ls23_c00037{letter-spacing:12.827025px;}
.ls16_c00037{letter-spacing:13.750350px;}
.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;}
._1b_c00037{margin-left:-7.909185px;}
._1c_c00037{margin-left:-6.650357px;}
._e_c00037{margin-left:-5.071253px;}
._5_c00037{margin-left:-2.748850px;}
._d_c00037{margin-left:-1.276697px;}
._4_c00037{width:1.229228px;}
._15_c00037{width:2.349077px;}
._1_c00037{width:3.576686px;}
._2_c00037{width:5.538622px;}
._0_c00037{width:7.336123px;}
._12_c00037{width:8.349550px;}
._10_c00037{width:9.559492px;}
._b_c00037{width:10.691262px;}
._3_c00037{width:12.318502px;}
._c_c00037{width:13.994915px;}
._f_c00037{width:15.751144px;}
._11_c00037{width:17.884645px;}
._14_c00037{width:19.217511px;}
._1a_c00037{width:20.552398px;}
._8_c00037{width:21.789783px;}
._a_c00037{width:22.909192px;}
._7_c00037{width:24.459096px;}
._6_c00037{width:26.506923px;}
._13_c00037{width:27.563050px;}
._16_c00037{width:28.814447px;}
._19_c00037{width:30.097745px;}
._9_c00037{width:31.395173px;}
._17_c00037{width:33.425794px;}
._18_c00037{width:35.374975px;}
.fc0_c00037{color:transparent;}
.fs7_c00037{font-size:28.500000px;}
.fsd_c00037{font-size:31.500000px;}
.fsc_c00037{font-size:36.750000px;}
.fsb_c00037{font-size:40.500000px;}
.fsa_c00037{font-size:44.250000px;}
.fs9_c00037{font-size:47.250000px;}
.fsf_c00037{font-size:69.000000px;}
.fs15_c00037{font-size:69.750000px;}
.fs5_c00037{font-size:70.500000px;}
.fs13_c00037{font-size:76.500000px;}
.fs14_c00037{font-size:77.250000px;}
.fs11_c00037{font-size:78.000000px;}
.fs2_c00037{font-size:78.750000px;}
.fs10_c00037{font-size:79.500000px;}
.fs3_c00037{font-size:80.250000px;}
.fse_c00037{font-size:81.750000px;}
.fs4_c00037{font-size:82.500000px;}
.fs1_c00037{font-size:83.250000px;}
.fs12_c00037{font-size:84.000000px;}
.fs0_c00037{font-size:84.750000px;}
.fs6_c00037{font-size:96.000000px;}
.fs8_c00037{font-size:104.250000px;}
.y0_c00037{bottom:0.000000px;}
.y24_c00037{bottom:336.600465px;}
.y23_c00037{bottom:366.120000px;}
.y22_c00037{bottom:396.000600px;}
.y21_c00037{bottom:426.420000px;}
.y20_c00037{bottom:426.420060px;}
.y1f_c00037{bottom:455.760240px;}
.y1e_c00037{bottom:486.360645px;}
.y1d_c00037{bottom:515.880180px;}
.y1c_c00037{bottom:576.360300px;}
.y1b_c00037{bottom:576.360450px;}
.y1a_c00037{bottom:605.879970px;}
.y18_c00037{bottom:635.040525px;}
.y19_c00037{bottom:635.040570px;}
.y17_c00037{bottom:665.280435px;}
.y16_c00037{bottom:665.280585px;}
.y15_c00037{bottom:694.800105px;}
.y14_c00037{bottom:694.800480px;}
.y13_c00037{bottom:725.400885px;}
.y12_c00037{bottom:755.279850px;}
.y11_c00037{bottom:761.400285px;}
.y10_c00037{bottom:815.400240px;}
.ye_c00037{bottom:844.919955px;}
.yf_c00037{bottom:845.280855px;}
.yc_c00037{bottom:874.439205px;}
.yd_c00037{bottom:874.439670px;}
.yb_c00037{bottom:904.681230px;}
.y9_c00037{bottom:934.920390px;}
.ya_c00037{bottom:934.921140px;}
.y8_c00037{bottom:964.800105px;}
.y7_c00037{bottom:994.681620px;}
.y6_c00037{bottom:1024.561335px;}
.y5_c00037{bottom:1024.561530px;}
.y4_c00037{bottom:1054.081050px;}
.y3_c00037{bottom:1054.081140px;}
.y2_c00037{bottom:1083.600675px;}
.y1_c00037{bottom:1143.360255px;}
.hb_c00037{height:29.724609px;}
.h11_c00037{height:31.746094px;}
.h10_c00037{height:38.329102px;}
.hf_c00037{height:42.240234px;}
.he_c00037{height:46.151367px;}
.hd_c00037{height:49.280273px;}
.h14_c00037{height:71.964844px;}
.h1d_c00037{height:72.747070px;}
.h8_c00037{height:73.529297px;}
.h1b_c00037{height:75.080566px;}
.h17_c00037{height:76.552734px;}
.h4_c00037{height:77.288818px;}
.h1c_c00037{height:77.853516px;}
.h16_c00037{height:78.024902px;}
.h1f_c00037{height:78.568359px;}
.h1a_c00037{height:78.721802px;}
.ha_c00037{height:78.729598px;}
.h5_c00037{height:78.760986px;}
.h6_c00037{height:79.309570px;}
.h3_c00037{height:79.365234px;}
.h15_c00037{height:80.121094px;}
.h13_c00037{height:80.233154px;}
.h12_c00037{height:80.876953px;}
.h7_c00037{height:80.969238px;}
.h19_c00037{height:81.705322px;}
.h18_c00037{height:82.441406px;}
.h1e_c00037{height:83.756836px;}
.h2_c00037{height:83.900391px;}
.h1_c00037{height:85.412109px;}
.h9_c00037{height:100.125000px;}
.hc_c00037{height:108.729492px;}
.h0_c00037{height:1263.000000px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x22_c00037{left:141.480555px;}
.x1_c00037{left:142.918350px;}
.xb_c00037{left:160.198785px;}
.x13_c00037{left:170.999400px;}
.x2_c00037{left:179.639700px;}
.x3_c00037{left:182.159415px;}
.x14_c00037{left:205.919535px;}
.x5_c00037{left:238.679100px;}
.x15_c00037{left:253.439685px;}
.x4_c00037{left:255.598500px;}
.x6_c00037{left:258.479235px;}
.x16_c00037{left:361.078785px;}
.x7_c00037{left:378.000000px;}
.x17_c00037{left:385.199850px;}
.x30_c00037{left:394.558635px;}
.x8_c00037{left:403.198785px;}
.xc_c00037{left:413.999400px;}
.x10_c00037{left:425.879520px;}
.xd_c00037{left:433.079400px;}
.x11_c00037{left:446.399820px;}
.x23_c00037{left:451.080000px;}
.x29_c00037{left:453.958920px;}
.x18_c00037{left:456.839535px;}
.x24_c00037{left:470.878320px;}
.x19_c00037{left:483.478635px;}
.x21_c00037{left:509.758530px;}
.x2a_c00037{left:513.000000px;}
.x1a_c00037{left:519.479685px;}
.x1b_c00037{left:563.758530px;}
.x1c_c00037{left:590.399235px;}
.x9_c00037{left:603.358605px;}
.x2b_c00037{left:614.518620px;}
.xa_c00037{left:619.559685px;}
.x2c_c00037{left:643.319820px;}
.x1d_c00037{left:662.038920px;}
.x25_c00037{left:675.000000px;}
.x27_c00037{left:681.118785px;}
.x26_c00037{left:689.759085px;}
.x1f_c00037{left:707.398635px;}
.x2d_c00037{left:720.359850px;}
.x20_c00037{left:730.079355px;}
.x28_c00037{left:744.479235px;}
.x1e_c00037{left:751.679070px;}
.x2e_c00037{left:757.079355px;}
.x2f_c00037{left:762.479685px;}
.xe_c00037{left:772.199340px;}
.x12_c00037{left:775.798560px;}
.xf_c00037{left:779.758575px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:1.280693pt;}
.lsb_c00037{letter-spacing:-9.808333pt;}
.ls1d_c00037{letter-spacing:-6.601000pt;}
.lsd_c00037{letter-spacing:-5.285000pt;}
.ls19_c00037{letter-spacing:-5.136760pt;}
.ls1f_c00037{letter-spacing:-4.750060pt;}
.ls15_c00037{letter-spacing:-4.665200pt;}
.ls22_c00037{letter-spacing:-4.621953pt;}
.lsc_c00037{letter-spacing:-4.619300pt;}
.lsf_c00037{letter-spacing:-3.961300pt;}
.ls1b_c00037{letter-spacing:-3.785600pt;}
.ls26_c00037{letter-spacing:-3.427200pt;}
.ls10_c00037{letter-spacing:-3.336000pt;}
.lse_c00037{letter-spacing:-3.304000pt;}
.ls3_c00037{letter-spacing:-2.959260pt;}
.ls17_c00037{letter-spacing:-2.790667pt;}
.ls13_c00037{letter-spacing:-2.768400pt;}
.ls24_c00037{letter-spacing:-2.667000pt;}
.lsa_c00037{letter-spacing:-2.639000pt;}
.ls20_c00037{letter-spacing:-2.590800pt;}
.ls1c_c00037{letter-spacing:-2.077540pt;}
.ls6_c00037{letter-spacing:-2.058000pt;}
.ls8_c00037{letter-spacing:-1.981700pt;}
.ls1a_c00037{letter-spacing:-1.978667pt;}
.ls18_c00037{letter-spacing:-1.483733pt;}
.ls5_c00037{letter-spacing:-1.456000pt;}
.ls7_c00037{letter-spacing:-1.323700pt;}
.ls25_c00037{letter-spacing:-1.088267pt;}
.ls11_c00037{letter-spacing:-0.794220pt;}
.ls2_c00037{letter-spacing:-0.739260pt;}
.ls21_c00037{letter-spacing:-0.679000pt;}
.ls9_c00037{letter-spacing:-0.658000pt;}
.ls1_c00037{letter-spacing:0.000000pt;}
.ls0_c00037{letter-spacing:0.658000pt;}
.ls1e_c00037{letter-spacing:1.680747pt;}
.ls4_c00037{letter-spacing:2.220000pt;}
.ls12_c00037{letter-spacing:2.580267pt;}
.ls14_c00037{letter-spacing:11.361140pt;}
.ls23_c00037{letter-spacing:11.401800pt;}
.ls16_c00037{letter-spacing:12.222533pt;}
.ws0_c00037{word-spacing:0.000000pt;}
._1b_c00037{margin-left:-7.030386pt;}
._1c_c00037{margin-left:-5.911428pt;}
._e_c00037{margin-left:-4.507780pt;}
._5_c00037{margin-left:-2.443423pt;}
._d_c00037{margin-left:-1.134842pt;}
._4_c00037{width:1.092647pt;}
._15_c00037{width:2.088068pt;}
._1_c00037{width:3.179277pt;}
._2_c00037{width:4.923220pt;}
._0_c00037{width:6.520998pt;}
._12_c00037{width:7.421823pt;}
._10_c00037{width:8.497326pt;}
._b_c00037{width:9.503344pt;}
._3_c00037{width:10.949780pt;}
._c_c00037{width:12.439925pt;}
._f_c00037{width:14.001017pt;}
._11_c00037{width:15.897462pt;}
._14_c00037{width:17.082232pt;}
._1a_c00037{width:18.268798pt;}
._8_c00037{width:19.368696pt;}
._a_c00037{width:20.363726pt;}
._7_c00037{width:21.741419pt;}
._6_c00037{width:23.561709pt;}
._13_c00037{width:24.500489pt;}
._16_c00037{width:25.612842pt;}
._19_c00037{width:26.753551pt;}
._9_c00037{width:27.906821pt;}
._17_c00037{width:29.711817pt;}
._18_c00037{width:31.444423pt;}
.fs7_c00037{font-size:25.333333pt;}
.fsd_c00037{font-size:28.000000pt;}
.fsc_c00037{font-size:32.666667pt;}
.fsb_c00037{font-size:36.000000pt;}
.fsa_c00037{font-size:39.333333pt;}
.fs9_c00037{font-size:42.000000pt;}
.fsf_c00037{font-size:61.333333pt;}
.fs15_c00037{font-size:62.000000pt;}
.fs5_c00037{font-size:62.666667pt;}
.fs13_c00037{font-size:68.000000pt;}
.fs14_c00037{font-size:68.666667pt;}
.fs11_c00037{font-size:69.333333pt;}
.fs2_c00037{font-size:70.000000pt;}
.fs10_c00037{font-size:70.666667pt;}
.fs3_c00037{font-size:71.333333pt;}
.fse_c00037{font-size:72.666667pt;}
.fs4_c00037{font-size:73.333333pt;}
.fs1_c00037{font-size:74.000000pt;}
.fs12_c00037{font-size:74.666667pt;}
.fs0_c00037{font-size:75.333333pt;}
.fs6_c00037{font-size:85.333333pt;}
.fs8_c00037{font-size:92.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y24_c00037{bottom:299.200413pt;}
.y23_c00037{bottom:325.440000pt;}
.y22_c00037{bottom:352.000533pt;}
.y21_c00037{bottom:379.040000pt;}
.y20_c00037{bottom:379.040053pt;}
.y1f_c00037{bottom:405.120213pt;}
.y1e_c00037{bottom:432.320573pt;}
.y1d_c00037{bottom:458.560160pt;}
.y1c_c00037{bottom:512.320267pt;}
.y1b_c00037{bottom:512.320400pt;}
.y1a_c00037{bottom:538.559973pt;}
.y18_c00037{bottom:564.480467pt;}
.y19_c00037{bottom:564.480507pt;}
.y17_c00037{bottom:591.360387pt;}
.y16_c00037{bottom:591.360520pt;}
.y15_c00037{bottom:617.600093pt;}
.y14_c00037{bottom:617.600427pt;}
.y13_c00037{bottom:644.800787pt;}
.y12_c00037{bottom:671.359867pt;}
.y11_c00037{bottom:676.800253pt;}
.y10_c00037{bottom:724.800213pt;}
.ye_c00037{bottom:751.039960pt;}
.yf_c00037{bottom:751.360760pt;}
.yc_c00037{bottom:777.279293pt;}
.yd_c00037{bottom:777.279707pt;}
.yb_c00037{bottom:804.161093pt;}
.y9_c00037{bottom:831.040347pt;}
.ya_c00037{bottom:831.041013pt;}
.y8_c00037{bottom:857.600093pt;}
.y7_c00037{bottom:884.161440pt;}
.y6_c00037{bottom:910.721187pt;}
.y5_c00037{bottom:910.721360pt;}
.y4_c00037{bottom:936.960933pt;}
.y3_c00037{bottom:936.961013pt;}
.y2_c00037{bottom:963.200600pt;}
.y1_c00037{bottom:1016.320227pt;}
.hb_c00037{height:26.421875pt;}
.h11_c00037{height:28.218750pt;}
.h10_c00037{height:34.070312pt;}
.hf_c00037{height:37.546875pt;}
.he_c00037{height:41.023438pt;}
.hd_c00037{height:43.804688pt;}
.h14_c00037{height:63.968750pt;}
.h1d_c00037{height:64.664062pt;}
.h8_c00037{height:65.359375pt;}
.h1b_c00037{height:66.738281pt;}
.h17_c00037{height:68.046875pt;}
.h4_c00037{height:68.701172pt;}
.h1c_c00037{height:69.203125pt;}
.h16_c00037{height:69.355469pt;}
.h1f_c00037{height:69.838542pt;}
.h1a_c00037{height:69.974935pt;}
.ha_c00037{height:69.981865pt;}
.h5_c00037{height:70.009766pt;}
.h6_c00037{height:70.497396pt;}
.h3_c00037{height:70.546875pt;}
.h15_c00037{height:71.218750pt;}
.h13_c00037{height:71.318359pt;}
.h12_c00037{height:71.890625pt;}
.h7_c00037{height:71.972656pt;}
.h19_c00037{height:72.626953pt;}
.h18_c00037{height:73.281250pt;}
.h1e_c00037{height:74.450521pt;}
.h2_c00037{height:74.578125pt;}
.h1_c00037{height:75.921875pt;}
.h9_c00037{height:89.000000pt;}
.hc_c00037{height:96.648438pt;}
.h0_c00037{height:1122.666667pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x22_c00037{left:125.760493pt;}
.x1_c00037{left:127.038533pt;}
.xb_c00037{left:142.398920pt;}
.x13_c00037{left:151.999467pt;}
.x2_c00037{left:159.679733pt;}
.x3_c00037{left:161.919480pt;}
.x14_c00037{left:183.039587pt;}
.x5_c00037{left:212.159200pt;}
.x15_c00037{left:225.279720pt;}
.x4_c00037{left:227.198667pt;}
.x6_c00037{left:229.759320pt;}
.x16_c00037{left:320.958920pt;}
.x7_c00037{left:336.000000pt;}
.x17_c00037{left:342.399867pt;}
.x30_c00037{left:350.718787pt;}
.x8_c00037{left:358.398920pt;}
.xc_c00037{left:367.999467pt;}
.x10_c00037{left:378.559573pt;}
.xd_c00037{left:384.959467pt;}
.x11_c00037{left:396.799840pt;}
.x23_c00037{left:400.960000pt;}
.x29_c00037{left:403.519040pt;}
.x18_c00037{left:406.079587pt;}
.x24_c00037{left:418.558507pt;}
.x19_c00037{left:429.758787pt;}
.x21_c00037{left:453.118693pt;}
.x2a_c00037{left:456.000000pt;}
.x1a_c00037{left:461.759720pt;}
.x1b_c00037{left:501.118693pt;}
.x1c_c00037{left:524.799320pt;}
.x9_c00037{left:536.318760pt;}
.x2b_c00037{left:546.238773pt;}
.xa_c00037{left:550.719720pt;}
.x2c_c00037{left:571.839840pt;}
.x1d_c00037{left:588.479040pt;}
.x25_c00037{left:600.000000pt;}
.x27_c00037{left:605.438920pt;}
.x26_c00037{left:613.119187pt;}
.x1f_c00037{left:628.798787pt;}
.x2d_c00037{left:640.319867pt;}
.x20_c00037{left:648.959427pt;}
.x28_c00037{left:661.759320pt;}
.x1e_c00037{left:668.159173pt;}
.x2e_c00037{left:672.959427pt;}
.x2f_c00037{left:677.759720pt;}
.xe_c00037{left:686.399413pt;}
.x12_c00037{left:689.598720pt;}
.xf_c00037{left:693.118733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0507454f3a1cc0b5239b2bc.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_ddd1f55776a28689128737df.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.364746;font-style:normal;font-weight:normal;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_c7de2ecc7a8bee6fcda42b02.woff2')format("woff");}.ff3_c00038{font-family:ff3_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:ff4_c00038;src:url('chunks/assets/font_e6c1030fa385369c65a36387.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.281250;font-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_c00038{transform:matrix(0.090164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090164,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.095865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095865,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.103084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103084,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.740901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740901,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(1.186548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.186548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.186548,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(3.055305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.055305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.055305,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{transform:matrix(8.411222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.411222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.411222,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls3_c00038{letter-spacing:-9.101400px;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls5_c00038{letter-spacing:4.808805px;}
.ls0_c00038{letter-spacing:6.408450px;}
.ls4_c00038{letter-spacing:8.008800px;}
.ls2_c00038{letter-spacing:8.317350px;}
.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;}
._0_c00038{margin-left:-43.061015px;}
.fc0_c00038{color:transparent;}
.fs3_c00038{font-size:70.500000px;}
.fs1_c00038{font-size:91.500000px;}
.fs7_c00038{font-size:147.750000px;}
.fs0_c00038{font-size:199.500000px;}
.fs2_c00038{font-size:231.000000px;}
.fs5_c00038{font-size:264.000000px;}
.fs4_c00038{font-size:332.250000px;}
.fs6_c00038{font-size:432.750000px;}
.y0_c00038{bottom:0.000000px;}
.y12_c00038{bottom:412.559100px;}
.y11_c00038{bottom:438.118785px;}
.y9_c00038{bottom:532.439505px;}
.y8_c00038{bottom:555.478980px;}
.y7_c00038{bottom:624.599070px;}
.yd_c00038{bottom:672.840045px;}
.yc_c00038{bottom:696.239085px;}
.y6_c00038{bottom:704.519670px;}
.y5_c00038{bottom:729.719700px;}
.y10_c00038{bottom:742.679670px;}
.yf_c00038{bottom:756.359505px;}
.ye_c00038{bottom:767.881005px;}
.yb_c00038{bottom:825.841050px;}
.ya_c00038{bottom:848.880540px;}
.y3_c00038{bottom:903.239220px;}
.y4_c00038{bottom:917.639100px;}
.y2_c00038{bottom:928.439670px;}
.y1_c00038{bottom:1009.439670px;}
.h4_c00038{height:69.673828px;}
.h2_c00038{height:90.427734px;}
.h8_c00038{height:144.936401px;}
.h1_c00038{height:208.072266px;}
.h3_c00038{height:226.713867px;}
.h6_c00038{height:275.343750px;}
.h5_c00038{height:346.526367px;}
.h7_c00038{height:451.344727px;}
.h0_c00038{height:1263.000000px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:192.958350px;}
.x6_c00038{left:194.759535px;}
.xe_c00038{left:197.279250px;}
.x2_c00038{left:205.199385px;}
.x5_c00038{left:206.999250px;}
.x7_c00038{left:208.080000px;}
.x3_c00038{left:277.199850px;}
.x4_c00038{left:332.638530px;}
.x8_c00038{left:453.599970px;}
.x9_c00038{left:454.679055px;}
.xa_c00038{left:455.758140px;}
.xd_c00038{left:569.519670px;}
.xc_c00038{left:581.758710px;}
.xb_c00038{left:587.518065px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls3_c00038{letter-spacing:-8.090133pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls5_c00038{letter-spacing:4.274493pt;}
.ls0_c00038{letter-spacing:5.696400pt;}
.ls4_c00038{letter-spacing:7.118933pt;}
.ls2_c00038{letter-spacing:7.393200pt;}
.ws0_c00038{word-spacing:0.000000pt;}
._0_c00038{margin-left:-38.276458pt;}
.fs3_c00038{font-size:62.666667pt;}
.fs1_c00038{font-size:81.333333pt;}
.fs7_c00038{font-size:131.333333pt;}
.fs0_c00038{font-size:177.333333pt;}
.fs2_c00038{font-size:205.333333pt;}
.fs5_c00038{font-size:234.666667pt;}
.fs4_c00038{font-size:295.333333pt;}
.fs6_c00038{font-size:384.666667pt;}
.y0_c00038{bottom:0.000000pt;}
.y12_c00038{bottom:366.719200pt;}
.y11_c00038{bottom:389.438920pt;}
.y9_c00038{bottom:473.279560pt;}
.y8_c00038{bottom:493.759093pt;}
.y7_c00038{bottom:555.199173pt;}
.yd_c00038{bottom:598.080040pt;}
.yc_c00038{bottom:618.879187pt;}
.y6_c00038{bottom:626.239707pt;}
.y5_c00038{bottom:648.639733pt;}
.y10_c00038{bottom:660.159707pt;}
.yf_c00038{bottom:672.319560pt;}
.ye_c00038{bottom:682.560893pt;}
.yb_c00038{bottom:734.080933pt;}
.ya_c00038{bottom:754.560480pt;}
.y3_c00038{bottom:802.879307pt;}
.y4_c00038{bottom:815.679200pt;}
.y2_c00038{bottom:825.279707pt;}
.y1_c00038{bottom:897.279707pt;}
.h4_c00038{height:61.932292pt;}
.h2_c00038{height:80.380208pt;}
.h8_c00038{height:128.832357pt;}
.h1_c00038{height:184.953125pt;}
.h3_c00038{height:201.523438pt;}
.h6_c00038{height:244.750000pt;}
.h5_c00038{height:308.023438pt;}
.h7_c00038{height:401.195312pt;}
.h0_c00038{height:1122.666667pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:171.518533pt;}
.x6_c00038{left:173.119587pt;}
.xe_c00038{left:175.359333pt;}
.x2_c00038{left:182.399453pt;}
.x5_c00038{left:183.999333pt;}
.x7_c00038{left:184.960000pt;}
.x3_c00038{left:246.399867pt;}
.x4_c00038{left:295.678693pt;}
.x8_c00038{left:403.199973pt;}
.x9_c00038{left:404.159160pt;}
.xa_c00038{left:405.118347pt;}
.xd_c00038{left:506.239707pt;}
.xc_c00038{left:517.118853pt;}
.xb_c00038{left:522.238280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b295b656001a90cff75cdad.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_39bb8f18c4f29d4ee50171c0.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.364746;font-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_c00039{transform:matrix(0.109043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109043,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168605,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.173333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173333,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);}
.v1_c00039{vertical-align:-92.158020px;}
.v0_c00039{vertical-align:0.000000px;}
.ls8_c00039{letter-spacing:-2.744093px;}
.ls6_c00039{letter-spacing:0.000000px;}
.ls4_c00039{letter-spacing:3.692498px;}
.ls0_c00039{letter-spacing:4.450500px;}
.ls5_c00039{letter-spacing:6.675750px;}
.ls3_c00039{letter-spacing:8.893905px;}
.ls1_c00039{letter-spacing:10.010400px;}
.ls2_c00039{letter-spacing:10.314150px;}
.ls7_c00039{letter-spacing:12.034350px;}
.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;}
._0_c00039{width:7.656639px;}
._1_c00039{width:14.138311px;}
._2_c00039{width:896.781528px;}
.fc0_c00039{color:transparent;}
.fs2_c00039{font-size:56.250000px;}
.fs0_c00039{font-size:64.500000px;}
.fs1_c00039{font-size:65.250000px;}
.fs4_c00039{font-size:66.750000px;}
.fs3_c00039{font-size:70.500000px;}
.y0_c00039{bottom:0.000000px;}
.y5_c00039{bottom:443.159820px;}
.y4_c00039{bottom:829.081050px;}
.y3_c00039{bottom:875.160030px;}
.y2_c00039{bottom:898.560705px;}
.y1_c00039{bottom:1167.120390px;}
.h3_c00039{height:56.689453px;}
.h1_c00039{height:65.003906px;}
.h2_c00039{height:65.759766px;}
.h5_c00039{height:67.271484px;}
.h4_c00039{height:69.673828px;}
.h0_c00039{height:1263.000000px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:208.080000px;}
.x9_c00039{left:209.879535px;}
.x6_c00039{left:215.279850px;}
.x7_c00039{left:226.798785px;}
.x2_c00039{left:266.040000px;}
.x3_c00039{left:283.679700px;}
.x8_c00039{left:377.279340px;}
.x4_c00039{left:421.919535px;}
.x5_c00039{left:433.438665px;}
@media print{
.v1_c00039{vertical-align:-81.918240pt;}
.v0_c00039{vertical-align:0.000000pt;}
.ls8_c00039{letter-spacing:-2.439193pt;}
.ls6_c00039{letter-spacing:0.000000pt;}
.ls4_c00039{letter-spacing:3.282220pt;}
.ls0_c00039{letter-spacing:3.956000pt;}
.ls5_c00039{letter-spacing:5.934000pt;}
.ls3_c00039{letter-spacing:7.905693pt;}
.ls1_c00039{letter-spacing:8.898133pt;}
.ls2_c00039{letter-spacing:9.168133pt;}
.ls7_c00039{letter-spacing:10.697200pt;}
.ws0_c00039{word-spacing:0.000000pt;}
._0_c00039{width:6.805902pt;}
._1_c00039{width:12.567388pt;}
._2_c00039{width:797.139136pt;}
.fs2_c00039{font-size:50.000000pt;}
.fs0_c00039{font-size:57.333333pt;}
.fs1_c00039{font-size:58.000000pt;}
.fs4_c00039{font-size:59.333333pt;}
.fs3_c00039{font-size:62.666667pt;}
.y0_c00039{bottom:0.000000pt;}
.y5_c00039{bottom:393.919840pt;}
.y4_c00039{bottom:736.960933pt;}
.y3_c00039{bottom:777.920027pt;}
.y2_c00039{bottom:798.720627pt;}
.y1_c00039{bottom:1037.440347pt;}
.h3_c00039{height:50.390625pt;}
.h1_c00039{height:57.781250pt;}
.h2_c00039{height:58.453125pt;}
.h5_c00039{height:59.796875pt;}
.h4_c00039{height:61.932292pt;}
.h0_c00039{height:1122.666667pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:184.960000pt;}
.x9_c00039{left:186.559587pt;}
.x6_c00039{left:191.359867pt;}
.x7_c00039{left:201.598920pt;}
.x2_c00039{left:236.480000pt;}
.x3_c00039{left:252.159733pt;}
.x8_c00039{left:335.359413pt;}
.x4_c00039{left:375.039587pt;}
.x5_c00039{left:385.278813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8140016a18513cc9c496823c.woff2')format("woff");}.ff1_c00040{font-family:ff1_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;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_92f7fdef9a80fddc26aa75b2.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_a4ed75c0c6c58f0222613f88.woff2')format("woff");}.ff3_c00040{font-family:ff3_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:ff4_c00040;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_6ac3e0d0f0a03a8efa347817.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00040;src:url('chunks/assets/font_4c19d0fb34d678eae795dda9.woff2')format("woff");}.ff6_c00040{font-family:ff6_c00040;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00040{transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1f_c00040{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1a_c00040{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00040{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m1e_c00040{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.md_c00040{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{transform:matrix(0.241304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241304,0.000000,0.000000,0.250000,0,0);}
.m21_c00040{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m10_c00040{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m19_c00040{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00040{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m23_c00040{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.me_c00040{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls29_c00040{letter-spacing:-16.095750px;}
.ls1e_c00040{letter-spacing:-8.914500px;}
.ls19_c00040{letter-spacing:-8.175038px;}
.ls2d_c00040{letter-spacing:-7.426125px;}
.ls2a_c00040{letter-spacing:-6.981293px;}
.lse_c00040{letter-spacing:-6.813225px;}
.ls15_c00040{letter-spacing:-6.781500px;}
.ls1f_c00040{letter-spacing:-6.685875px;}
.ls2b_c00040{letter-spacing:-6.000750px;}
.ls1c_c00040{letter-spacing:-5.945625px;}
.ls12_c00040{letter-spacing:-5.775750px;}
.ls1b_c00040{letter-spacing:-5.196713px;}
.ls1a_c00040{letter-spacing:-5.109375px;}
.ls14_c00040{letter-spacing:-4.591125px;}
.ls6_c00040{letter-spacing:-4.582275px;}
.ls22_c00040{letter-spacing:-4.461900px;}
.ls21_c00040{letter-spacing:-4.456463px;}
.ls2e_c00040{letter-spacing:-4.334498px;}
.lsc_c00040{letter-spacing:-4.053173px;}
.ls16_c00040{letter-spacing:-3.717000px;}
.ls13_c00040{letter-spacing:-3.333600px;}
.ls4_c00040{letter-spacing:-3.142800px;}
.ls3_c00040{letter-spacing:-3.057525px;}
.ls24_c00040{letter-spacing:-2.997300px;}
.ls2c_c00040{letter-spacing:-2.971800px;}
.ls1d_c00040{letter-spacing:-2.968875px;}
.ls5_c00040{letter-spacing:-2.310398px;}
.ls2_c00040{letter-spacing:-2.294348px;}
.ls25_c00040{letter-spacing:-2.293200px;}
.ls18_c00040{letter-spacing:-2.229413px;}
.ls28_c00040{letter-spacing:-1.856400px;}
.ls27_c00040{letter-spacing:-1.698345px;}
.ls10_c00040{letter-spacing:-1.668600px;}
.ls11_c00040{letter-spacing:-1.637100px;}
.ls8_c00040{letter-spacing:-1.584000px;}
.ls17_c00040{letter-spacing:-1.489163px;}
.lsf_c00040{letter-spacing:-0.850500px;}
.ls20_c00040{letter-spacing:-0.776250px;}
.ls9_c00040{letter-spacing:-0.740250px;}
.ls1_c00040{letter-spacing:0.000000px;}
.ls23_c00040{letter-spacing:0.873338px;}
.lsb_c00040{letter-spacing:1.588410px;}
.ls0_c00040{letter-spacing:2.229413px;}
.lsa_c00040{letter-spacing:2.968875px;}
.ls26_c00040{letter-spacing:6.049950px;}
.lsd_c00040{letter-spacing:16.777800px;}
.ls7_c00040{letter-spacing:94.427280px;}
.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;}
._1e_c00040{margin-left:-5.952866px;}
._7_c00040{margin-left:-4.877864px;}
._13_c00040{margin-left:-3.837740px;}
._1f_c00040{margin-left:-2.608497px;}
._8_c00040{margin-left:-1.118800px;}
._4_c00040{width:1.209793px;}
._b_c00040{width:2.876195px;}
._5_c00040{width:4.016890px;}
._0_c00040{width:5.966847px;}
._3_c00040{width:7.000845px;}
._14_c00040{width:8.578028px;}
._1_c00040{width:10.287607px;}
._9_c00040{width:11.297936px;}
._2_c00040{width:13.197965px;}
._10_c00040{width:14.411800px;}
._a_c00040{width:15.536467px;}
._11_c00040{width:16.783647px;}
._c_c00040{width:18.579606px;}
._e_c00040{width:19.819906px;}
._6_c00040{width:21.650827px;}
._d_c00040{width:23.506548px;}
._24_c00040{width:24.630915px;}
._15_c00040{width:25.682232px;}
._12_c00040{width:27.711694px;}
._f_c00040{width:29.846696px;}
._23_c00040{width:32.753774px;}
._21_c00040{width:34.279756px;}
._22_c00040{width:38.888667px;}
._18_c00040{width:45.166230px;}
._1a_c00040{width:46.315475px;}
._16_c00040{width:48.434400px;}
._17_c00040{width:49.594625px;}
._1d_c00040{width:51.396173px;}
._1b_c00040{width:53.611975px;}
._1c_c00040{width:55.323643px;}
._19_c00040{width:57.067971px;}
._20_c00040{width:61.079362px;}
.fc0_c00040{color:transparent;}
.fsd_c00040{font-size:68.250000px;}
.fs5_c00040{font-size:69.750000px;}
.fsc_c00040{font-size:70.500000px;}
.fs3_c00040{font-size:72.000000px;}
.fs7_c00040{font-size:76.500000px;}
.fsa_c00040{font-size:77.250000px;}
.fs6_c00040{font-size:78.000000px;}
.fs0_c00040{font-size:78.750000px;}
.fsb_c00040{font-size:79.500000px;}
.fs1_c00040{font-size:80.250000px;}
.fs2_c00040{font-size:81.000000px;}
.fs8_c00040{font-size:81.750000px;}
.fs4_c00040{font-size:82.500000px;}
.fs9_c00040{font-size:86.250000px;}
.y0_c00040{bottom:0.000000px;}
.y26_c00040{bottom:209.160990px;}
.y25_c00040{bottom:239.400900px;}
.y24_c00040{bottom:239.401935px;}
.y23_c00040{bottom:268.921470px;}
.y21_c00040{bottom:298.800270px;}
.y22_c00040{bottom:298.801185px;}
.y20_c00040{bottom:328.680000px;}
.y1f_c00040{bottom:358.919910px;}
.y1e_c00040{bottom:388.081050px;}
.y1d_c00040{bottom:418.681455px;}
.y1c_c00040{bottom:448.200990px;}
.y1b_c00040{bottom:478.440900px;}
.y1a_c00040{bottom:478.441800px;}
.y19_c00040{bottom:508.321515px;}
.y18_c00040{bottom:567.360720px;}
.y17_c00040{bottom:597.240435px;}
.y16_c00040{bottom:627.120165px;}
.y15_c00040{bottom:657.360075px;}
.y14_c00040{bottom:686.879610px;}
.y13_c00040{bottom:717.121635px;}
.y12_c00040{bottom:746.641335px;}
.y11_c00040{bottom:746.641485px;}
.y10_c00040{bottom:776.161005px;}
.yf_c00040{bottom:776.161785px;}
.ye_c00040{bottom:806.760090px;}
.yd_c00040{bottom:837.000000px;}
.yc_c00040{bottom:866.521230px;}
.yb_c00040{bottom:896.761140px;}
.ya_c00040{bottom:896.761320px;}
.y9_c00040{bottom:926.280855px;}
.y8_c00040{bottom:926.281260px;}
.y7_c00040{bottom:955.800795px;}
.y6_c00040{bottom:985.320330px;}
.y5_c00040{bottom:1015.560240px;}
.y4_c00040{bottom:1015.561140px;}
.y3_c00040{bottom:1045.440855px;}
.y2_c00040{bottom:1076.041620px;}
.y1_c00040{bottom:1135.081050px;}
.h14_c00040{height:67.450195px;}
.ha_c00040{height:70.664062px;}
.h7_c00040{height:72.747070px;}
.h12_c00040{height:73.529297px;}
.h4_c00040{height:75.093750px;}
.h10_c00040{height:75.816650px;}
.hd_c00040{height:76.552734px;}
.h13_c00040{height:77.085938px;}
.h9_c00040{height:77.097656px;}
.h6_c00040{height:77.288818px;}
.h15_c00040{height:78.005038px;}
.h8_c00040{height:78.609375px;}
.hf_c00040{height:78.760986px;}
.h1_c00040{height:79.365234px;}
.h11_c00040{height:80.121094px;}
.hc_c00040{height:80.233154px;}
.h2_c00040{height:80.876953px;}
.h5_c00040{height:80.969238px;}
.hb_c00040{height:81.533203px;}
.h3_c00040{height:81.632812px;}
.he_c00040{height:85.239258px;}
.h0_c00040{height:1263.000000px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x1d_c00040{left:140.039175px;}
.x1_c00040{left:141.479715px;}
.x1b_c00040{left:156.958950px;}
.x26_c00040{left:165.239850px;}
.x6_c00040{left:177.479250px;}
.x2_c00040{left:192.599100px;}
.x7_c00040{left:247.678500px;}
.x29_c00040{left:253.078785px;}
.x2a_c00040{left:278.279250px;}
.x13_c00040{left:314.998950px;}
.x14_c00040{left:329.759535px;}
.x18_c00040{left:331.918350px;}
.x19_c00040{left:344.879535px;}
.x15_c00040{left:350.279850px;}
.x8_c00040{left:395.998950px;}
.x3_c00040{left:410.759535px;}
.x1e_c00040{left:422.639700px;}
.x1c_c00040{left:431.279850px;}
.x4_c00040{left:435.239820px;}
.x9_c00040{left:436.678530px;}
.x1a_c00040{left:444.239220px;}
.x1f_c00040{left:453.958920px;}
.xa_c00040{left:473.399820px;}
.x5_c00040{left:487.079400px;}
.xb_c00040{left:509.399235px;}
.x20_c00040{left:516.239820px;}
.xc_c00040{left:534.958920px;}
.x16_c00040{left:538.198785px;}
.x17_c00040{left:555.479235px;}
.x21_c00040{left:596.519670px;}
.xd_c00040{left:601.559100px;}
.x22_c00040{left:620.639100px;}
.xe_c00040{left:622.799520px;}
.x27_c00040{left:626.759535px;}
.x28_c00040{left:641.879520px;}
.x2b_c00040{left:645.478635px;}
.x2c_c00040{left:660.239220px;}
.xf_c00040{left:664.199385px;}
.x23_c00040{left:700.198785px;}
.x10_c00040{left:712.078770px;}
.x24_c00040{left:723.958920px;}
.x11_c00040{left:732.958335px;}
.x25_c00040{left:765.719520px;}
.x12_c00040{left:768.239220px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls29_c00040{letter-spacing:-14.307333pt;}
.ls1e_c00040{letter-spacing:-7.924000pt;}
.ls19_c00040{letter-spacing:-7.266700pt;}
.ls2d_c00040{letter-spacing:-6.601000pt;}
.ls2a_c00040{letter-spacing:-6.205593pt;}
.lse_c00040{letter-spacing:-6.056200pt;}
.ls15_c00040{letter-spacing:-6.028000pt;}
.ls1f_c00040{letter-spacing:-5.943000pt;}
.ls2b_c00040{letter-spacing:-5.334000pt;}
.ls1c_c00040{letter-spacing:-5.285000pt;}
.ls12_c00040{letter-spacing:-5.134000pt;}
.ls1b_c00040{letter-spacing:-4.619300pt;}
.ls1a_c00040{letter-spacing:-4.541667pt;}
.ls14_c00040{letter-spacing:-4.081000pt;}
.ls6_c00040{letter-spacing:-4.073133pt;}
.ls22_c00040{letter-spacing:-3.966133pt;}
.ls21_c00040{letter-spacing:-3.961300pt;}
.ls2e_c00040{letter-spacing:-3.852887pt;}
.lsc_c00040{letter-spacing:-3.602820pt;}
.ls16_c00040{letter-spacing:-3.304000pt;}
.ls13_c00040{letter-spacing:-2.963200pt;}
.ls4_c00040{letter-spacing:-2.793600pt;}
.ls3_c00040{letter-spacing:-2.717800pt;}
.ls24_c00040{letter-spacing:-2.664267pt;}
.ls2c_c00040{letter-spacing:-2.641600pt;}
.ls1d_c00040{letter-spacing:-2.639000pt;}
.ls5_c00040{letter-spacing:-2.053687pt;}
.ls2_c00040{letter-spacing:-2.039420pt;}
.ls25_c00040{letter-spacing:-2.038400pt;}
.ls18_c00040{letter-spacing:-1.981700pt;}
.ls28_c00040{letter-spacing:-1.650133pt;}
.ls27_c00040{letter-spacing:-1.509640pt;}
.ls10_c00040{letter-spacing:-1.483200pt;}
.ls11_c00040{letter-spacing:-1.455200pt;}
.ls8_c00040{letter-spacing:-1.408000pt;}
.ls17_c00040{letter-spacing:-1.323700pt;}
.lsf_c00040{letter-spacing:-0.756000pt;}
.ls20_c00040{letter-spacing:-0.690000pt;}
.ls9_c00040{letter-spacing:-0.658000pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.ls23_c00040{letter-spacing:0.776300pt;}
.lsb_c00040{letter-spacing:1.411920pt;}
.ls0_c00040{letter-spacing:1.981700pt;}
.lsa_c00040{letter-spacing:2.639000pt;}
.ls26_c00040{letter-spacing:5.377733pt;}
.lsd_c00040{letter-spacing:14.913600pt;}
.ls7_c00040{letter-spacing:83.935360pt;}
.ws0_c00040{word-spacing:0.000000pt;}
._1e_c00040{margin-left:-5.291436pt;}
._7_c00040{margin-left:-4.335879pt;}
._13_c00040{margin-left:-3.411325pt;}
._1f_c00040{margin-left:-2.318664pt;}
._8_c00040{margin-left:-0.994489pt;}
._4_c00040{width:1.075372pt;}
._b_c00040{width:2.556618pt;}
._5_c00040{width:3.570569pt;}
._0_c00040{width:5.303864pt;}
._3_c00040{width:6.222974pt;}
._14_c00040{width:7.624914pt;}
._1_c00040{width:9.144539pt;}
._9_c00040{width:10.042609pt;}
._2_c00040{width:11.731525pt;}
._10_c00040{width:12.810489pt;}
._a_c00040{width:13.810193pt;}
._11_c00040{width:14.918798pt;}
._c_c00040{width:16.515206pt;}
._e_c00040{width:17.617694pt;}
._6_c00040{width:19.245179pt;}
._d_c00040{width:20.894709pt;}
._24_c00040{width:21.894147pt;}
._15_c00040{width:22.828651pt;}
._12_c00040{width:24.632617pt;}
._f_c00040{width:26.530396pt;}
._23_c00040{width:29.114466pt;}
._21_c00040{width:30.470894pt;}
._22_c00040{width:34.567704pt;}
._18_c00040{width:40.147760pt;}
._1a_c00040{width:41.169311pt;}
._16_c00040{width:43.052800pt;}
._17_c00040{width:44.084111pt;}
._1d_c00040{width:45.685487pt;}
._1b_c00040{width:47.655089pt;}
._1c_c00040{width:49.176572pt;}
._19_c00040{width:50.727085pt;}
._20_c00040{width:54.292766pt;}
.fsd_c00040{font-size:60.666667pt;}
.fs5_c00040{font-size:62.000000pt;}
.fsc_c00040{font-size:62.666667pt;}
.fs3_c00040{font-size:64.000000pt;}
.fs7_c00040{font-size:68.000000pt;}
.fsa_c00040{font-size:68.666667pt;}
.fs6_c00040{font-size:69.333333pt;}
.fs0_c00040{font-size:70.000000pt;}
.fsb_c00040{font-size:70.666667pt;}
.fs1_c00040{font-size:71.333333pt;}
.fs2_c00040{font-size:72.000000pt;}
.fs8_c00040{font-size:72.666667pt;}
.fs4_c00040{font-size:73.333333pt;}
.fs9_c00040{font-size:76.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y26_c00040{bottom:185.920880pt;}
.y25_c00040{bottom:212.800800pt;}
.y24_c00040{bottom:212.801720pt;}
.y23_c00040{bottom:239.041307pt;}
.y21_c00040{bottom:265.600240pt;}
.y22_c00040{bottom:265.601053pt;}
.y20_c00040{bottom:292.160000pt;}
.y1f_c00040{bottom:319.039920pt;}
.y1e_c00040{bottom:344.960933pt;}
.y1d_c00040{bottom:372.161293pt;}
.y1c_c00040{bottom:398.400880pt;}
.y1b_c00040{bottom:425.280800pt;}
.y1a_c00040{bottom:425.281600pt;}
.y19_c00040{bottom:451.841347pt;}
.y18_c00040{bottom:504.320640pt;}
.y17_c00040{bottom:530.880387pt;}
.y16_c00040{bottom:557.440147pt;}
.y15_c00040{bottom:584.320067pt;}
.y14_c00040{bottom:610.559653pt;}
.y13_c00040{bottom:637.441453pt;}
.y12_c00040{bottom:663.681187pt;}
.y11_c00040{bottom:663.681320pt;}
.y10_c00040{bottom:689.920893pt;}
.yf_c00040{bottom:689.921587pt;}
.ye_c00040{bottom:717.120080pt;}
.yd_c00040{bottom:744.000000pt;}
.yc_c00040{bottom:770.241093pt;}
.yb_c00040{bottom:797.121013pt;}
.ya_c00040{bottom:797.121173pt;}
.y9_c00040{bottom:823.360760pt;}
.y8_c00040{bottom:823.361120pt;}
.y7_c00040{bottom:849.600707pt;}
.y6_c00040{bottom:875.840293pt;}
.y5_c00040{bottom:902.720213pt;}
.y4_c00040{bottom:902.721013pt;}
.y3_c00040{bottom:929.280760pt;}
.y2_c00040{bottom:956.481440pt;}
.y1_c00040{bottom:1008.960933pt;}
.h14_c00040{height:59.955729pt;}
.ha_c00040{height:62.812500pt;}
.h7_c00040{height:64.664062pt;}
.h12_c00040{height:65.359375pt;}
.h4_c00040{height:66.750000pt;}
.h10_c00040{height:67.392578pt;}
.hd_c00040{height:68.046875pt;}
.h13_c00040{height:68.520833pt;}
.h9_c00040{height:68.531250pt;}
.h6_c00040{height:68.701172pt;}
.h15_c00040{height:69.337812pt;}
.h8_c00040{height:69.875000pt;}
.hf_c00040{height:70.009766pt;}
.h1_c00040{height:70.546875pt;}
.h11_c00040{height:71.218750pt;}
.hc_c00040{height:71.318359pt;}
.h2_c00040{height:71.890625pt;}
.h5_c00040{height:71.972656pt;}
.hb_c00040{height:72.473958pt;}
.h3_c00040{height:72.562500pt;}
.he_c00040{height:75.768229pt;}
.h0_c00040{height:1122.666667pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x1d_c00040{left:124.479267pt;}
.x1_c00040{left:125.759747pt;}
.x1b_c00040{left:139.519067pt;}
.x26_c00040{left:146.879867pt;}
.x6_c00040{left:157.759333pt;}
.x2_c00040{left:171.199200pt;}
.x7_c00040{left:220.158667pt;}
.x29_c00040{left:224.958920pt;}
.x2a_c00040{left:247.359333pt;}
.x13_c00040{left:279.999067pt;}
.x14_c00040{left:293.119587pt;}
.x18_c00040{left:295.038533pt;}
.x19_c00040{left:306.559587pt;}
.x15_c00040{left:311.359867pt;}
.x8_c00040{left:351.999067pt;}
.x3_c00040{left:365.119587pt;}
.x1e_c00040{left:375.679733pt;}
.x1c_c00040{left:383.359867pt;}
.x4_c00040{left:386.879840pt;}
.x9_c00040{left:388.158693pt;}
.x1a_c00040{left:394.879307pt;}
.x1f_c00040{left:403.519040pt;}
.xa_c00040{left:420.799840pt;}
.x5_c00040{left:432.959467pt;}
.xb_c00040{left:452.799320pt;}
.x20_c00040{left:458.879840pt;}
.xc_c00040{left:475.519040pt;}
.x16_c00040{left:478.398920pt;}
.x17_c00040{left:493.759320pt;}
.x21_c00040{left:530.239707pt;}
.xd_c00040{left:534.719200pt;}
.x22_c00040{left:551.679200pt;}
.xe_c00040{left:553.599573pt;}
.x27_c00040{left:557.119587pt;}
.x28_c00040{left:570.559573pt;}
.x2b_c00040{left:573.758787pt;}
.x2c_c00040{left:586.879307pt;}
.xf_c00040{left:590.399453pt;}
.x23_c00040{left:622.398920pt;}
.x10_c00040{left:632.958907pt;}
.x24_c00040{left:643.519040pt;}
.x11_c00040{left:651.518520pt;}
.x25_c00040{left:680.639573pt;}
.x12_c00040{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d06188b0fdbf2260c53b4a39.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_71cd666a1111210b0b73a941.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.364746;font-style:normal;font-weight:normal;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_b30da231680af56058a1ecdb.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.432129;font-style:normal;font-weight:normal;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_faede3d5823e47795fc8b95e.woff2')format("woff");}.ff4_c00041{font-family:ff4_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:ff5_c00041;src:url('chunks/assets/font_e6bee8ce270ba98e58aadb40.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.432129;font-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_c00041{transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.mc_c00041{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00041{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m8_c00041{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m12_c00041{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.md_c00041{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.mb_c00041{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m1_c00041{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m19_c00041{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1a_c00041{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m2_c00041{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.m9_c00041{transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);}
.mf_c00041{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.me_c00041{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);}
.v0_c00041{vertical-align:0.000000px;}
.lsa_c00041{letter-spacing:-22.379963px;}
.ls17_c00041{letter-spacing:-8.972685px;}
.ls4_c00041{letter-spacing:-8.914500px;}
.ls15_c00041{letter-spacing:-7.426125px;}
.ls11_c00041{letter-spacing:-5.945625px;}
.lsf_c00041{letter-spacing:-5.196713px;}
.ls7_c00041{letter-spacing:-5.054963px;}
.ls12_c00041{letter-spacing:-4.456463px;}
.ls1f_c00041{letter-spacing:-4.410975px;}
.ls1_c00041{letter-spacing:-4.376580px;}
.ls5_c00041{letter-spacing:-3.717000px;}
.ls6_c00041{letter-spacing:-2.968875px;}
.ls1a_c00041{letter-spacing:-2.690835px;}
.ls1d_c00041{letter-spacing:-2.396768px;}
.ls13_c00041{letter-spacing:-2.331990px;}
.ls18_c00041{letter-spacing:-2.267213px;}
.ls2_c00041{letter-spacing:-2.229413px;}
.ls1e_c00041{letter-spacing:-2.224028px;}
.ls16_c00041{letter-spacing:-1.695000px;}
.ls1c_c00041{letter-spacing:-1.669185px;}
.ls8_c00041{letter-spacing:-1.489163px;}
.ls19_c00041{letter-spacing:-1.442220px;}
.ls1b_c00041{letter-spacing:-1.370850px;}
.ls10_c00041{letter-spacing:-1.368000px;}
.lsc_c00041{letter-spacing:-0.749520px;}
.ls3_c00041{letter-spacing:-0.740250px;}
.ls9_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.740250px;}
.lsd_c00041{letter-spacing:0.747300px;}
.ls14_c00041{letter-spacing:0.779625px;}
.lse_c00041{letter-spacing:1.600500px;}
.lsb_c00041{letter-spacing:7.976475px;}
.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;}
._15_c00041{margin-left:-8.198261px;}
._a_c00041{margin-left:-7.166131px;}
._7_c00041{margin-left:-5.611800px;}
._12_c00041{margin-left:-4.023858px;}
._16_c00041{margin-left:-3.022589px;}
._9_c00041{margin-left:-1.991869px;}
._13_c00041{width:1.439030px;}
._14_c00041{width:2.689134px;}
._1b_c00041{width:3.856224px;}
._8_c00041{width:4.858340px;}
._1_c00041{width:6.622429px;}
._0_c00041{width:7.703934px;}
._b_c00041{width:8.863134px;}
._5_c00041{width:9.998263px;}
._4_c00041{width:11.496014px;}
._6_c00041{width:12.566227px;}
._3_c00041{width:14.001512px;}
._11_c00041{width:15.282136px;}
._10_c00041{width:16.539833px;}
._f_c00041{width:18.580780px;}
._d_c00041{width:20.646779px;}
._e_c00041{width:21.953895px;}
._17_c00041{width:23.254697px;}
._c_c00041{width:24.271151px;}
._1a_c00041{width:26.938681px;}
._18_c00041{width:28.636412px;}
._2_c00041{width:31.003251px;}
._19_c00041{width:34.801557px;}
.fc0_c00041{color:transparent;}
.fs11_c00041{font-size:55.500000px;}
.fs9_c00041{font-size:57.000000px;}
.fs3_c00041{font-size:68.250000px;}
.fs6_c00041{font-size:70.500000px;}
.fs8_c00041{font-size:71.250000px;}
.fs5_c00041{font-size:72.000000px;}
.fs7_c00041{font-size:72.750000px;}
.fs10_c00041{font-size:73.500000px;}
.fsc_c00041{font-size:75.000000px;}
.fse_c00041{font-size:75.257460px;}
.fs4_c00041{font-size:75.750000px;}
.fsd_c00041{font-size:76.500000px;}
.fs13_c00041{font-size:77.250000px;}
.fs0_c00041{font-size:78.000000px;}
.fs1_c00041{font-size:78.750000px;}
.fsb_c00041{font-size:80.250000px;}
.fsa_c00041{font-size:81.000000px;}
.fsf_c00041{font-size:81.750000px;}
.fs2_c00041{font-size:82.500000px;}
.fs12_c00041{font-size:83.250000px;}
.y0_c00041{bottom:0.000000px;}
.y29_c00041{bottom:176.760750px;}
.y28_c00041{bottom:207.000600px;}
.y27_c00041{bottom:237.240435px;}
.y26_c00041{bottom:237.241305px;}
.y25_c00041{bottom:267.121035px;}
.y24_c00041{bottom:267.121215px;}
.y23_c00041{bottom:296.640750px;}
.y22_c00041{bottom:356.041125px;}
.y21_c00041{bottom:415.800570px;}
.y20_c00041{bottom:415.800750px;}
.y1e_c00041{bottom:445.320165px;}
.y1f_c00041{bottom:445.320285px;}
.y1d_c00041{bottom:475.920570px;}
.y1c_c00041{bottom:505.440105px;}
.y1b_c00041{bottom:535.319820px;}
.y1a_c00041{bottom:535.320720px;}
.y19_c00041{bottom:565.200435px;}
.y18_c00041{bottom:565.202460px;}
.y17_c00041{bottom:595.800750px;}
.y16_c00041{bottom:624.961905px;}
.y15_c00041{bottom:654.481425px;}
.y14_c00041{bottom:684.361155px;}
.y13_c00041{bottom:714.240870px;}
.y12_c00041{bottom:749.879520px;}
.y11_c00041{bottom:774.001530px;}
.y10_c00041{bottom:804.241440px;}
.yf_c00041{bottom:834.121170px;}
.yd_c00041{bottom:893.879775px;}
.ye_c00041{bottom:893.880615px;}
.yc_c00041{bottom:923.759490px;}
.yb_c00041{bottom:954.001005px;}
.ya_c00041{bottom:954.001230px;}
.y9_c00041{bottom:983.520765px;}
.y7_c00041{bottom:1013.759925px;}
.y8_c00041{bottom:1013.760675px;}
.y6_c00041{bottom:1043.639655px;}
.y5_c00041{bottom:1073.520270px;}
.y4_c00041{bottom:1074.960570px;}
.y2_c00041{bottom:1103.039925px;}
.y3_c00041{bottom:1103.039985px;}
.y1_c00041{bottom:1133.279850px;}
.h13_c00041{height:55.933594px;}
.h9_c00041{height:59.449219px;}
.h4_c00041{height:66.983643px;}
.h8_c00041{height:69.927979px;}
.h7_c00041{height:71.400146px;}
.hc_c00041{height:73.608398px;}
.hf_c00041{height:73.861081px;}
.h12_c00041{height:74.074219px;}
.h5_c00041{height:74.862305px;}
.h6_c00041{height:75.093750px;}
.h16_c00041{height:75.816650px;}
.h1_c00041{height:76.552734px;}
.h14_c00041{height:76.658203px;}
.hd_c00041{height:77.097656px;}
.h2_c00041{height:77.288818px;}
.h11_c00041{height:78.609375px;}
.hb_c00041{height:78.760986px;}
.he_c00041{height:79.365234px;}
.ha_c00041{height:79.497070px;}
.h10_c00041{height:80.233154px;}
.h3_c00041{height:80.969238px;}
.h15_c00041{height:81.705322px;}
.h0_c00041{height:1263.000000px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:138.958350px;}
.x11_c00041{left:140.039490px;}
.x27_c00041{left:141.478455px;}
.x26_c00041{left:164.878950px;}
.x2_c00041{left:166.319250px;}
.x7_c00041{left:186.119415px;}
.x12_c00041{left:201.598500px;}
.x8_c00041{left:203.759100px;}
.x14_c00041{left:209.518635px;}
.x13_c00041{left:229.318800px;}
.x1e_c00041{left:233.278800px;}
.x9_c00041{left:237.599700px;}
.x1f_c00041{left:247.678500px;}
.x15_c00041{left:286.558635px;}
.xa_c00041{left:310.679700px;}
.x16_c00041{left:313.199385px;}
.x24_c00041{left:333.358635px;}
.x25_c00041{left:348.478635px;}
.xb_c00041{left:377.279850px;}
.xc_c00041{left:407.878920px;}
.x17_c00041{left:416.159820px;}
.xd_c00041{left:425.159415px;}
.x5_c00041{left:435.958335px;}
.x20_c00041{left:446.759085px;}
.x6_c00041{left:451.439250px;}
.xe_c00041{left:461.878920px;}
.x3_c00041{left:467.638500px;}
.x22_c00041{left:480.238770px;}
.x21_c00041{left:484.559685px;}
.x18_c00041{left:486.359250px;}
.x4_c00041{left:489.599070px;}
.x23_c00041{left:496.078770px;}
.xf_c00041{left:506.159415px;}
.x19_c00041{left:507.958920px;}
.x1a_c00041{left:543.599070px;}
.x1b_c00041{left:646.198785px;}
.x28_c00041{left:689.038920px;}
.x1c_c00041{left:703.799520px;}
.x29_c00041{left:709.559100px;}
.x1d_c00041{left:735.118785px;}
.x2a_c00041{left:763.199850px;}
.x10_c00041{left:772.558590px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.lsa_c00041{letter-spacing:-19.893300pt;}
.ls17_c00041{letter-spacing:-7.975720pt;}
.ls4_c00041{letter-spacing:-7.924000pt;}
.ls15_c00041{letter-spacing:-6.601000pt;}
.ls11_c00041{letter-spacing:-5.285000pt;}
.lsf_c00041{letter-spacing:-4.619300pt;}
.ls7_c00041{letter-spacing:-4.493300pt;}
.ls12_c00041{letter-spacing:-3.961300pt;}
.ls1f_c00041{letter-spacing:-3.920867pt;}
.ls1_c00041{letter-spacing:-3.890293pt;}
.ls5_c00041{letter-spacing:-3.304000pt;}
.ls6_c00041{letter-spacing:-2.639000pt;}
.ls1a_c00041{letter-spacing:-2.391853pt;}
.ls1d_c00041{letter-spacing:-2.130460pt;}
.ls13_c00041{letter-spacing:-2.072880pt;}
.ls18_c00041{letter-spacing:-2.015300pt;}
.ls2_c00041{letter-spacing:-1.981700pt;}
.ls1e_c00041{letter-spacing:-1.976913pt;}
.ls16_c00041{letter-spacing:-1.506667pt;}
.ls1c_c00041{letter-spacing:-1.483720pt;}
.ls8_c00041{letter-spacing:-1.323700pt;}
.ls19_c00041{letter-spacing:-1.281973pt;}
.ls1b_c00041{letter-spacing:-1.218533pt;}
.ls10_c00041{letter-spacing:-1.216000pt;}
.lsc_c00041{letter-spacing:-0.666240pt;}
.ls3_c00041{letter-spacing:-0.658000pt;}
.ls9_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.658000pt;}
.lsd_c00041{letter-spacing:0.664267pt;}
.ls14_c00041{letter-spacing:0.693000pt;}
.lse_c00041{letter-spacing:1.422667pt;}
.lsb_c00041{letter-spacing:7.090200pt;}
.ws0_c00041{word-spacing:0.000000pt;}
._15_c00041{margin-left:-7.287343pt;}
._a_c00041{margin-left:-6.369894pt;}
._7_c00041{margin-left:-4.988267pt;}
._12_c00041{margin-left:-3.576762pt;}
._16_c00041{margin-left:-2.686746pt;}
._9_c00041{margin-left:-1.770550pt;}
._13_c00041{width:1.279138pt;}
._14_c00041{width:2.390342pt;}
._1b_c00041{width:3.427755pt;}
._8_c00041{width:4.318525pt;}
._1_c00041{width:5.886604pt;}
._0_c00041{width:6.847942pt;}
._b_c00041{width:7.878342pt;}
._5_c00041{width:8.887345pt;}
._4_c00041{width:10.218679pt;}
._6_c00041{width:11.169979pt;}
._3_c00041{width:12.445789pt;}
._11_c00041{width:13.584121pt;}
._10_c00041{width:14.702074pt;}
._f_c00041{width:16.516249pt;}
._d_c00041{width:18.352692pt;}
._e_c00041{width:19.514574pt;}
._17_c00041{width:20.670842pt;}
._c_c00041{width:21.574357pt;}
._1a_c00041{width:23.945494pt;}
._18_c00041{width:25.454589pt;}
._2_c00041{width:27.558445pt;}
._19_c00041{width:30.934717pt;}
.fs11_c00041{font-size:49.333333pt;}
.fs9_c00041{font-size:50.666667pt;}
.fs3_c00041{font-size:60.666667pt;}
.fs6_c00041{font-size:62.666667pt;}
.fs8_c00041{font-size:63.333333pt;}
.fs5_c00041{font-size:64.000000pt;}
.fs7_c00041{font-size:64.666667pt;}
.fs10_c00041{font-size:65.333333pt;}
.fsc_c00041{font-size:66.666667pt;}
.fse_c00041{font-size:66.895520pt;}
.fs4_c00041{font-size:67.333333pt;}
.fsd_c00041{font-size:68.000000pt;}
.fs13_c00041{font-size:68.666667pt;}
.fs0_c00041{font-size:69.333333pt;}
.fs1_c00041{font-size:70.000000pt;}
.fsb_c00041{font-size:71.333333pt;}
.fsa_c00041{font-size:72.000000pt;}
.fsf_c00041{font-size:72.666667pt;}
.fs2_c00041{font-size:73.333333pt;}
.fs12_c00041{font-size:74.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y29_c00041{bottom:157.120667pt;}
.y28_c00041{bottom:184.000533pt;}
.y27_c00041{bottom:210.880387pt;}
.y26_c00041{bottom:210.881160pt;}
.y25_c00041{bottom:237.440920pt;}
.y24_c00041{bottom:237.441080pt;}
.y23_c00041{bottom:263.680667pt;}
.y22_c00041{bottom:316.481000pt;}
.y21_c00041{bottom:369.600507pt;}
.y20_c00041{bottom:369.600667pt;}
.y1e_c00041{bottom:395.840147pt;}
.y1f_c00041{bottom:395.840253pt;}
.y1d_c00041{bottom:423.040507pt;}
.y1c_c00041{bottom:449.280093pt;}
.y1b_c00041{bottom:475.839840pt;}
.y1a_c00041{bottom:475.840640pt;}
.y19_c00041{bottom:502.400387pt;}
.y18_c00041{bottom:502.402187pt;}
.y17_c00041{bottom:529.600667pt;}
.y16_c00041{bottom:555.521693pt;}
.y15_c00041{bottom:581.761267pt;}
.y14_c00041{bottom:608.321027pt;}
.y13_c00041{bottom:634.880773pt;}
.y12_c00041{bottom:666.559573pt;}
.y11_c00041{bottom:688.001360pt;}
.y10_c00041{bottom:714.881280pt;}
.yf_c00041{bottom:741.441040pt;}
.yd_c00041{bottom:794.559800pt;}
.ye_c00041{bottom:794.560547pt;}
.yc_c00041{bottom:821.119547pt;}
.yb_c00041{bottom:848.000893pt;}
.ya_c00041{bottom:848.001093pt;}
.y9_c00041{bottom:874.240680pt;}
.y7_c00041{bottom:901.119933pt;}
.y8_c00041{bottom:901.120600pt;}
.y6_c00041{bottom:927.679693pt;}
.y5_c00041{bottom:954.240240pt;}
.y4_c00041{bottom:955.520507pt;}
.y2_c00041{bottom:980.479933pt;}
.y3_c00041{bottom:980.479987pt;}
.y1_c00041{bottom:1007.359867pt;}
.h13_c00041{height:49.718750pt;}
.h9_c00041{height:52.843750pt;}
.h4_c00041{height:59.541016pt;}
.h8_c00041{height:62.158203pt;}
.h7_c00041{height:63.466797pt;}
.hc_c00041{height:65.429688pt;}
.hf_c00041{height:65.654295pt;}
.h12_c00041{height:65.843750pt;}
.h5_c00041{height:66.544271pt;}
.h6_c00041{height:66.750000pt;}
.h16_c00041{height:67.392578pt;}
.h1_c00041{height:68.046875pt;}
.h14_c00041{height:68.140625pt;}
.hd_c00041{height:68.531250pt;}
.h2_c00041{height:68.701172pt;}
.h11_c00041{height:69.875000pt;}
.hb_c00041{height:70.009766pt;}
.he_c00041{height:70.546875pt;}
.ha_c00041{height:70.664062pt;}
.h10_c00041{height:71.318359pt;}
.h3_c00041{height:71.972656pt;}
.h15_c00041{height:72.626953pt;}
.h0_c00041{height:1122.666667pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:123.518533pt;}
.x11_c00041{left:124.479547pt;}
.x27_c00041{left:125.758627pt;}
.x26_c00041{left:146.559067pt;}
.x2_c00041{left:147.839333pt;}
.x7_c00041{left:165.439480pt;}
.x12_c00041{left:179.198667pt;}
.x8_c00041{left:181.119200pt;}
.x14_c00041{left:186.238787pt;}
.x13_c00041{left:203.838933pt;}
.x1e_c00041{left:207.358933pt;}
.x9_c00041{left:211.199733pt;}
.x1f_c00041{left:220.158667pt;}
.x15_c00041{left:254.718787pt;}
.xa_c00041{left:276.159733pt;}
.x16_c00041{left:278.399453pt;}
.x24_c00041{left:296.318787pt;}
.x25_c00041{left:309.758787pt;}
.xb_c00041{left:335.359867pt;}
.xc_c00041{left:362.559040pt;}
.x17_c00041{left:369.919840pt;}
.xd_c00041{left:377.919480pt;}
.x5_c00041{left:387.518520pt;}
.x20_c00041{left:397.119187pt;}
.x6_c00041{left:401.279333pt;}
.xe_c00041{left:410.559040pt;}
.x3_c00041{left:415.678667pt;}
.x22_c00041{left:426.878907pt;}
.x21_c00041{left:430.719720pt;}
.x18_c00041{left:432.319333pt;}
.x4_c00041{left:435.199173pt;}
.x23_c00041{left:440.958907pt;}
.xf_c00041{left:449.919480pt;}
.x19_c00041{left:451.519040pt;}
.x1a_c00041{left:483.199173pt;}
.x1b_c00041{left:574.398920pt;}
.x28_c00041{left:612.479040pt;}
.x1c_c00041{left:625.599573pt;}
.x29_c00041{left:630.719200pt;}
.x1d_c00041{left:653.438920pt;}
.x2a_c00041{left:678.399867pt;}
.x10_c00041{left:686.718747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fc66370e21e19fc483bfd29.woff2')format("woff");}.ff1_c00042{font-family:ff1_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:ff2_c00042;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.364746;font-style:normal;font-weight:normal;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_f7379fd9db4be7f6ae33d7a9.woff2')format("woff");}.ff3_c00042{font-family:ff3_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:ff4_c00042;src:url('chunks/assets/font_cc9a4b3a5eeea8c47adc2270.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_669615b53e14f1c589223589.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.364746;font-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_c00042{transform:matrix(0.143182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143182,0.000000,0.000000,0.250000,0,0);}
.m12_c00042{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m10_c00042{transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183761,0.000000,0.000000,0.250000,0,0);}
.mc_c00042{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);}
.m15_c00042{transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{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);}
.m13_c00042{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m1a_c00042{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00042{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.md_c00042{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.me_c00042{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m11_c00042{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_c00042{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m18_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.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m19_c00042{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls17_c00042{letter-spacing:-13.053150px;}
.lsc_c00042{letter-spacing:-9.819600px;}
.ls14_c00042{letter-spacing:-9.001800px;}
.ls21_c00042{letter-spacing:-8.914500px;}
.ls2_c00042{letter-spacing:-8.175038px;}
.ls1b_c00042{letter-spacing:-7.804500px;}
.lsb_c00042{letter-spacing:-7.426125px;}
.ls11_c00042{letter-spacing:-6.876900px;}
.ls19_c00042{letter-spacing:-6.685875px;}
.lsd_c00042{letter-spacing:-5.945625px;}
.ls5_c00042{letter-spacing:-5.196713px;}
.ls1d_c00042{letter-spacing:-4.876200px;}
.ls7_c00042{letter-spacing:-4.456463px;}
.ls16_c00042{letter-spacing:-4.012500px;}
.ls13_c00042{letter-spacing:-3.975000px;}
.ls3_c00042{letter-spacing:-3.717000px;}
.ls10_c00042{letter-spacing:-3.496500px;}
.ls4_c00042{letter-spacing:-2.968875px;}
.ls1f_c00042{letter-spacing:-2.623500px;}
.ls1_c00042{letter-spacing:-2.229413px;}
.ls9_c00042{letter-spacing:-1.489163px;}
.ls18_c00042{letter-spacing:-1.440000px;}
.ls1a_c00042{letter-spacing:-1.017900px;}
.ls15_c00042{letter-spacing:-0.850650px;}
.ls6_c00042{letter-spacing:-0.740250px;}
.lse_c00042{letter-spacing:0.000000px;}
.ls1c_c00042{letter-spacing:0.889200px;}
.ls12_c00042{letter-spacing:1.622250px;}
.ls0_c00042{letter-spacing:1.771380px;}
.ls1e_c00042{letter-spacing:3.057525px;}
.lsa_c00042{letter-spacing:3.637710px;}
.ls8_c00042{letter-spacing:4.685175px;}
.lsf_c00042{letter-spacing:7.363913px;}
.ls20_c00042{letter-spacing:7.504380px;}
.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;}
._f_c00042{margin-left:-9.992379px;}
._18_c00042{margin-left:-4.987044px;}
._19_c00042{margin-left:-3.402550px;}
._10_c00042{margin-left:-2.386125px;}
._11_c00042{margin-left:-1.259094px;}
._b_c00042{width:1.612800px;}
._d_c00042{width:3.061399px;}
._8_c00042{width:4.785593px;}
._e_c00042{width:6.320445px;}
._7_c00042{width:7.421043px;}
._12_c00042{width:8.526292px;}
._6_c00042{width:9.628658px;}
._0_c00042{width:11.731670px;}
._5_c00042{width:13.730999px;}
._3_c00042{width:15.207071px;}
._2_c00042{width:16.251221px;}
._a_c00042{width:18.003037px;}
._1a_c00042{width:19.967716px;}
._4_c00042{width:21.464575px;}
._9_c00042{width:23.061551px;}
._15_c00042{width:24.297674px;}
._c_c00042{width:25.309046px;}
._16_c00042{width:26.369809px;}
._13_c00042{width:27.724235px;}
._14_c00042{width:29.161110px;}
._1_c00042{width:30.218470px;}
._1d_c00042{width:32.047714px;}
._1b_c00042{width:34.823042px;}
._1e_c00042{width:36.148211px;}
._1c_c00042{width:37.839226px;}
._1f_c00042{width:39.850769px;}
._17_c00042{width:44.947989px;}
.fc0_c00042{color:transparent;}
.fs7_c00042{font-size:54.000000px;}
.fsc_c00042{font-size:67.500000px;}
.fs5_c00042{font-size:72.750000px;}
.fs8_c00042{font-size:74.250000px;}
.fs9_c00042{font-size:75.000000px;}
.fsb_c00042{font-size:78.000000px;}
.fs0_c00042{font-size:78.750000px;}
.fs6_c00042{font-size:79.500000px;}
.fs4_c00042{font-size:80.250000px;}
.fs2_c00042{font-size:81.000000px;}
.fs1_c00042{font-size:82.500000px;}
.fs3_c00042{font-size:84.000000px;}
.fsa_c00042{font-size:87.750000px;}
.y0_c00042{bottom:0.000000px;}
.y29_c00042{bottom:184.319145px;}
.y28_c00042{bottom:213.480285px;}
.y27_c00042{bottom:213.480330px;}
.y26_c00042{bottom:243.360060px;}
.y25_c00042{bottom:273.599970px;}
.y24_c00042{bottom:303.479685px;}
.y23_c00042{bottom:303.481335px;}
.y22_c00042{bottom:333.361065px;}
.y21_c00042{bottom:392.399820px;}
.y20_c00042{bottom:422.280435px;}
.y1f_c00042{bottom:422.280945px;}
.y1e_c00042{bottom:451.800480px;}
.y1d_c00042{bottom:482.400885px;}
.y1b_c00042{bottom:512.279760px;}
.y1c_c00042{bottom:512.279850px;}
.y1a_c00042{bottom:542.519670px;}
.y19_c00042{bottom:542.519850px;}
.y18_c00042{bottom:572.039385px;}
.y17_c00042{bottom:572.039985px;}
.y16_c00042{bottom:601.561290px;}
.y15_c00042{bottom:631.441020px;}
.y14_c00042{bottom:661.320735px;}
.y13_c00042{bottom:690.840300px;}
.y12_c00042{bottom:721.259535px;}
.y11_c00042{bottom:750.599670px;}
.y10_c00042{bottom:780.839535px;}
.yf_c00042{bottom:780.842265px;}
.ye_c00042{bottom:810.721980px;}
.yd_c00042{bottom:841.322385px;}
.yc_c00042{bottom:870.481425px;}
.yb_c00042{bottom:900.361155px;}
.y9_c00042{bottom:930.240300px;}
.ya_c00042{bottom:930.240870px;}
.y8_c00042{bottom:960.480210px;}
.y7_c00042{bottom:990.359940px;}
.y6_c00042{bottom:1050.119385px;}
.y5_c00042{bottom:1050.120465px;}
.y4_c00042{bottom:1080.000180px;}
.y3_c00042{bottom:1109.519715px;}
.y2_c00042{bottom:1109.520510px;}
.y1_c00042{bottom:1139.400240px;}
.ha_c00042{height:56.320312px;}
.h12_c00042{height:68.027344px;}
.hc_c00042{height:73.608398px;}
.h7_c00042{height:75.875977px;}
.h1_c00042{height:77.288818px;}
.hb_c00042{height:77.440430px;}
.h10_c00042{height:78.609375px;}
.hf_c00042{height:78.760986px;}
.h6_c00042{height:79.365234px;}
.h3_c00042{height:79.497070px;}
.h11_c00042{height:80.050781px;}
.h9_c00042{height:80.121094px;}
.h5_c00042{height:80.876953px;}
.h2_c00042{height:80.969238px;}
.he_c00042{height:81.533203px;}
.h8_c00042{height:81.632812px;}
.h4_c00042{height:83.015625px;}
.hd_c00042{height:86.721680px;}
.h0_c00042{height:1263.000000px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x8_c00042{left:141.484125px;}
.x1_c00042{left:142.559100px;}
.x15_c00042{left:164.519685px;}
.x16_c00042{left:183.958950px;}
.xb_c00042{left:204.838515px;}
.xc_c00042{left:277.918350px;}
.x4_c00042{left:309.959385px;}
.x17_c00042{left:316.439235px;}
.xd_c00042{left:317.518635px;}
.x5_c00042{left:334.078785px;}
.x6_c00042{left:338.038950px;}
.x18_c00042{left:341.639700px;}
.x7_c00042{left:356.759535px;}
.x19_c00042{left:359.999385px;}
.x26_c00042{left:421.558635px;}
.xe_c00042{left:432.000000px;}
.x27_c00042{left:436.319235px;}
.xf_c00042{left:457.918950px;}
.x1f_c00042{left:460.079400px;}
.x1a_c00042{left:495.719565px;}
.x24_c00042{left:509.039985px;}
.x1b_c00042{left:519.479685px;}
.x25_c00042{left:527.399820px;}
.x9_c00042{left:529.199385px;}
.x20_c00042{left:534.238770px;}
.xa_c00042{left:545.398635px;}
.x21_c00042{left:566.279850px;}
.x10_c00042{left:574.199850px;}
.x11_c00042{left:600.118785px;}
.x12_c00042{left:629.999400px;}
.x22_c00042{left:644.758530px;}
.x2_c00042{left:664.558635px;}
.x3_c00042{left:689.038920px;}
.x13_c00042{left:699.839535px;}
.x1d_c00042{left:713.878320px;}
.x23_c00042{left:718.919535px;}
.x1e_c00042{left:730.799520px;}
.x14_c00042{left:770.399865px;}
.x1c_c00042{left:775.079955px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls17_c00042{letter-spacing:-11.602800pt;}
.lsc_c00042{letter-spacing:-8.728533pt;}
.ls14_c00042{letter-spacing:-8.001600pt;}
.ls21_c00042{letter-spacing:-7.924000pt;}
.ls2_c00042{letter-spacing:-7.266700pt;}
.ls1b_c00042{letter-spacing:-6.937333pt;}
.lsb_c00042{letter-spacing:-6.601000pt;}
.ls11_c00042{letter-spacing:-6.112800pt;}
.ls19_c00042{letter-spacing:-5.943000pt;}
.lsd_c00042{letter-spacing:-5.285000pt;}
.ls5_c00042{letter-spacing:-4.619300pt;}
.ls1d_c00042{letter-spacing:-4.334400pt;}
.ls7_c00042{letter-spacing:-3.961300pt;}
.ls16_c00042{letter-spacing:-3.566667pt;}
.ls13_c00042{letter-spacing:-3.533333pt;}
.ls3_c00042{letter-spacing:-3.304000pt;}
.ls10_c00042{letter-spacing:-3.108000pt;}
.ls4_c00042{letter-spacing:-2.639000pt;}
.ls1f_c00042{letter-spacing:-2.332000pt;}
.ls1_c00042{letter-spacing:-1.981700pt;}
.ls9_c00042{letter-spacing:-1.323700pt;}
.ls18_c00042{letter-spacing:-1.280000pt;}
.ls1a_c00042{letter-spacing:-0.904800pt;}
.ls15_c00042{letter-spacing:-0.756133pt;}
.ls6_c00042{letter-spacing:-0.658000pt;}
.lse_c00042{letter-spacing:0.000000pt;}
.ls1c_c00042{letter-spacing:0.790400pt;}
.ls12_c00042{letter-spacing:1.442000pt;}
.ls0_c00042{letter-spacing:1.574560pt;}
.ls1e_c00042{letter-spacing:2.717800pt;}
.lsa_c00042{letter-spacing:3.233520pt;}
.ls8_c00042{letter-spacing:4.164600pt;}
.lsf_c00042{letter-spacing:6.545700pt;}
.ls20_c00042{letter-spacing:6.670560pt;}
.ws0_c00042{word-spacing:0.000000pt;}
._f_c00042{margin-left:-8.882115pt;}
._18_c00042{margin-left:-4.432928pt;}
._19_c00042{margin-left:-3.024489pt;}
._10_c00042{margin-left:-2.121000pt;}
._11_c00042{margin-left:-1.119194pt;}
._b_c00042{width:1.433600pt;}
._d_c00042{width:2.721243pt;}
._8_c00042{width:4.253860pt;}
._e_c00042{width:5.618174pt;}
._7_c00042{width:6.596483pt;}
._12_c00042{width:7.578926pt;}
._6_c00042{width:8.558808pt;}
._0_c00042{width:10.428151pt;}
._5_c00042{width:12.205332pt;}
._3_c00042{width:13.517396pt;}
._2_c00042{width:14.445530pt;}
._a_c00042{width:16.002700pt;}
._1a_c00042{width:17.749081pt;}
._4_c00042{width:19.079623pt;}
._9_c00042{width:20.499157pt;}
._15_c00042{width:21.597932pt;}
._c_c00042{width:22.496930pt;}
._16_c00042{width:23.439830pt;}
._13_c00042{width:24.643764pt;}
._14_c00042{width:25.920987pt;}
._1_c00042{width:26.860862pt;}
._1d_c00042{width:28.486857pt;}
._1b_c00042{width:30.953815pt;}
._1e_c00042{width:32.131743pt;}
._1c_c00042{width:33.634868pt;}
._1f_c00042{width:35.422906pt;}
._17_c00042{width:39.953768pt;}
.fs7_c00042{font-size:48.000000pt;}
.fsc_c00042{font-size:60.000000pt;}
.fs5_c00042{font-size:64.666667pt;}
.fs8_c00042{font-size:66.000000pt;}
.fs9_c00042{font-size:66.666667pt;}
.fsb_c00042{font-size:69.333333pt;}
.fs0_c00042{font-size:70.000000pt;}
.fs6_c00042{font-size:70.666667pt;}
.fs4_c00042{font-size:71.333333pt;}
.fs2_c00042{font-size:72.000000pt;}
.fs1_c00042{font-size:73.333333pt;}
.fs3_c00042{font-size:74.666667pt;}
.fsa_c00042{font-size:78.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y29_c00042{bottom:163.839240pt;}
.y28_c00042{bottom:189.760253pt;}
.y27_c00042{bottom:189.760293pt;}
.y26_c00042{bottom:216.320053pt;}
.y25_c00042{bottom:243.199973pt;}
.y24_c00042{bottom:269.759720pt;}
.y23_c00042{bottom:269.761187pt;}
.y22_c00042{bottom:296.320947pt;}
.y21_c00042{bottom:348.799840pt;}
.y20_c00042{bottom:375.360387pt;}
.y1f_c00042{bottom:375.360840pt;}
.y1e_c00042{bottom:401.600427pt;}
.y1d_c00042{bottom:428.800787pt;}
.y1b_c00042{bottom:455.359787pt;}
.y1c_c00042{bottom:455.359867pt;}
.y1a_c00042{bottom:482.239707pt;}
.y19_c00042{bottom:482.239867pt;}
.y18_c00042{bottom:508.479453pt;}
.y17_c00042{bottom:508.479987pt;}
.y16_c00042{bottom:534.721147pt;}
.y15_c00042{bottom:561.280907pt;}
.y14_c00042{bottom:587.840653pt;}
.y13_c00042{bottom:614.080267pt;}
.y12_c00042{bottom:641.119587pt;}
.y11_c00042{bottom:667.199707pt;}
.y10_c00042{bottom:694.079587pt;}
.yf_c00042{bottom:694.082013pt;}
.ye_c00042{bottom:720.641760pt;}
.yd_c00042{bottom:747.842120pt;}
.yc_c00042{bottom:773.761267pt;}
.yb_c00042{bottom:800.321027pt;}
.y9_c00042{bottom:826.880267pt;}
.ya_c00042{bottom:826.880773pt;}
.y8_c00042{bottom:853.760187pt;}
.y7_c00042{bottom:880.319947pt;}
.y6_c00042{bottom:933.439453pt;}
.y5_c00042{bottom:933.440413pt;}
.y4_c00042{bottom:960.000160pt;}
.y3_c00042{bottom:986.239747pt;}
.y2_c00042{bottom:986.240453pt;}
.y1_c00042{bottom:1012.800213pt;}
.ha_c00042{height:50.062500pt;}
.h12_c00042{height:60.468750pt;}
.hc_c00042{height:65.429688pt;}
.h7_c00042{height:67.445312pt;}
.h1_c00042{height:68.701172pt;}
.hb_c00042{height:68.835938pt;}
.h10_c00042{height:69.875000pt;}
.hf_c00042{height:70.009766pt;}
.h6_c00042{height:70.546875pt;}
.h3_c00042{height:70.664062pt;}
.h11_c00042{height:71.156250pt;}
.h9_c00042{height:71.218750pt;}
.h5_c00042{height:71.890625pt;}
.h2_c00042{height:71.972656pt;}
.he_c00042{height:72.473958pt;}
.h8_c00042{height:72.562500pt;}
.h4_c00042{height:73.791667pt;}
.hd_c00042{height:77.085938pt;}
.h0_c00042{height:1122.666667pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x8_c00042{left:125.763667pt;}
.x1_c00042{left:126.719200pt;}
.x15_c00042{left:146.239720pt;}
.x16_c00042{left:163.519067pt;}
.xb_c00042{left:182.078680pt;}
.xc_c00042{left:247.038533pt;}
.x4_c00042{left:275.519453pt;}
.x17_c00042{left:281.279320pt;}
.xd_c00042{left:282.238787pt;}
.x5_c00042{left:296.958920pt;}
.x6_c00042{left:300.479067pt;}
.x18_c00042{left:303.679733pt;}
.x7_c00042{left:317.119587pt;}
.x19_c00042{left:319.999453pt;}
.x26_c00042{left:374.718787pt;}
.xe_c00042{left:384.000000pt;}
.x27_c00042{left:387.839320pt;}
.xf_c00042{left:407.039067pt;}
.x1f_c00042{left:408.959467pt;}
.x1a_c00042{left:440.639613pt;}
.x24_c00042{left:452.479987pt;}
.x1b_c00042{left:461.759720pt;}
.x25_c00042{left:468.799840pt;}
.x9_c00042{left:470.399453pt;}
.x20_c00042{left:474.878907pt;}
.xa_c00042{left:484.798787pt;}
.x21_c00042{left:503.359867pt;}
.x10_c00042{left:510.399867pt;}
.x11_c00042{left:533.438920pt;}
.x12_c00042{left:559.999467pt;}
.x22_c00042{left:573.118693pt;}
.x2_c00042{left:590.718787pt;}
.x3_c00042{left:612.479040pt;}
.x13_c00042{left:622.079587pt;}
.x1d_c00042{left:634.558507pt;}
.x23_c00042{left:639.039587pt;}
.x1e_c00042{left:649.599573pt;}
.x14_c00042{left:684.799880pt;}
.x1c_c00042{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ebcc2572c832beb4faf3f31.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_76a850eac24b73831a1f475b.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_42095c9aecd29e077abf3c78.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_5ef0e5047c03a1d19e833bb6.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00043;src:url('chunks/assets/font_ca7769885f52a7b5b943875f.woff2')format("woff");}.ff6_c00043{font-family:ff6_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;}
.m2_c00043{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.v0_c00043{vertical-align:0.000000px;}
.ls6_c00043{letter-spacing:-12.687675px;}
.ls8_c00043{letter-spacing:-8.974350px;}
.lse_c00043{letter-spacing:-7.426125px;}
.ls7_c00043{letter-spacing:-7.374375px;}
.ls5_c00043{letter-spacing:-5.945625px;}
.lsc_c00043{letter-spacing:-3.580200px;}
.ls4_c00043{letter-spacing:-3.346500px;}
.ls1_c00043{letter-spacing:-2.968875px;}
.lsb_c00043{letter-spacing:-2.335575px;}
.ls3_c00043{letter-spacing:-2.229413px;}
.ls0_c00043{letter-spacing:-1.489163px;}
.lsa_c00043{letter-spacing:-0.858375px;}
.ls2_c00043{letter-spacing:-0.740250px;}
.lsd_c00043{letter-spacing:0.000000px;}
.ls9_c00043{letter-spacing:6.817500px;}
.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;}
._2_c00043{margin-left:-7.996810px;}
._3_c00043{margin-left:-4.122117px;}
._0_c00043{margin-left:-1.553366px;}
._4_c00043{width:1.873403px;}
._1_c00043{width:3.620747px;}
._e_c00043{width:4.825830px;}
._7_c00043{width:6.204103px;}
._5_c00043{width:7.402782px;}
._6_c00043{width:8.555251px;}
._d_c00043{width:10.634861px;}
._c_c00043{width:14.284685px;}
._a_c00043{width:16.962275px;}
._b_c00043{width:18.743094px;}
._9_c00043{width:21.427622px;}
._8_c00043{width:24.889695px;}
.fc0_c00043{color:transparent;}
.fs3_c00043{font-size:71.250000px;}
.fs5_c00043{font-size:75.000000px;}
.fs7_c00043{font-size:78.000000px;}
.fs0_c00043{font-size:78.750000px;}
.fs8_c00043{font-size:80.250000px;}
.fs6_c00043{font-size:81.750000px;}
.fs2_c00043{font-size:82.500000px;}
.fs4_c00043{font-size:83.250000px;}
.fs1_c00043{font-size:86.250000px;}
.y0_c00043{bottom:0.000000px;}
.y8_c00043{bottom:988.560195px;}
.y7_c00043{bottom:1018.800105px;}
.y6_c00043{bottom:1018.800225px;}
.y4_c00043{bottom:1048.321425px;}
.y5_c00043{bottom:1048.321560px;}
.y3_c00043{bottom:1078.561335px;}
.y2_c00043{bottom:1108.441110px;}
.y1_c00043{bottom:1138.320825px;}
.h4_c00043{height:74.311523px;}
.h9_c00043{height:76.552734px;}
.h1_c00043{height:77.288818px;}
.h6_c00043{height:78.222656px;}
.ha_c00043{height:78.760986px;}
.h8_c00043{height:80.969238px;}
.h3_c00043{height:81.533203px;}
.h5_c00043{height:81.664673px;}
.h7_c00043{height:82.388672px;}
.h2_c00043{height:84.649658px;}
.h0_c00043{height:1263.000000px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:142.199850px;}
.x4_c00043{left:165.599100px;}
.x5_c00043{left:267.839535px;}
.x6_c00043{left:292.319850px;}
.x7_c00043{left:352.799535px;}
.x8_c00043{left:449.639700px;}
.x9_c00043{left:496.078770px;}
.xa_c00043{left:523.798920px;}
.xb_c00043{left:568.079400px;}
.xc_c00043{left:586.798515px;}
.x2_c00043{left:691.919535px;}
.x3_c00043{left:714.598530px;}
.xd_c00043{left:746.278800px;}
.xe_c00043{left:762.479685px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls6_c00043{letter-spacing:-11.277933pt;}
.ls8_c00043{letter-spacing:-7.977200pt;}
.lse_c00043{letter-spacing:-6.601000pt;}
.ls7_c00043{letter-spacing:-6.555000pt;}
.ls5_c00043{letter-spacing:-5.285000pt;}
.lsc_c00043{letter-spacing:-3.182400pt;}
.ls4_c00043{letter-spacing:-2.974667pt;}
.ls1_c00043{letter-spacing:-2.639000pt;}
.lsb_c00043{letter-spacing:-2.076067pt;}
.ls3_c00043{letter-spacing:-1.981700pt;}
.ls0_c00043{letter-spacing:-1.323700pt;}
.lsa_c00043{letter-spacing:-0.763000pt;}
.ls2_c00043{letter-spacing:-0.658000pt;}
.lsd_c00043{letter-spacing:0.000000pt;}
.ls9_c00043{letter-spacing:6.060000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
._2_c00043{margin-left:-7.108275pt;}
._3_c00043{margin-left:-3.664104pt;}
._0_c00043{margin-left:-1.380770pt;}
._4_c00043{width:1.665247pt;}
._1_c00043{width:3.218442pt;}
._e_c00043{width:4.289626pt;}
._7_c00043{width:5.514758pt;}
._5_c00043{width:6.580251pt;}
._6_c00043{width:7.604668pt;}
._d_c00043{width:9.453209pt;}
._c_c00043{width:12.697498pt;}
._a_c00043{width:15.077577pt;}
._b_c00043{width:16.660528pt;}
._9_c00043{width:19.046775pt;}
._8_c00043{width:22.124174pt;}
.fs3_c00043{font-size:63.333333pt;}
.fs5_c00043{font-size:66.666667pt;}
.fs7_c00043{font-size:69.333333pt;}
.fs0_c00043{font-size:70.000000pt;}
.fs8_c00043{font-size:71.333333pt;}
.fs6_c00043{font-size:72.666667pt;}
.fs2_c00043{font-size:73.333333pt;}
.fs4_c00043{font-size:74.000000pt;}
.fs1_c00043{font-size:76.666667pt;}
.y0_c00043{bottom:0.000000pt;}
.y8_c00043{bottom:878.720173pt;}
.y7_c00043{bottom:905.600093pt;}
.y6_c00043{bottom:905.600200pt;}
.y4_c00043{bottom:931.841267pt;}
.y5_c00043{bottom:931.841387pt;}
.y3_c00043{bottom:958.721187pt;}
.y2_c00043{bottom:985.280987pt;}
.y1_c00043{bottom:1011.840733pt;}
.h4_c00043{height:66.054688pt;}
.h9_c00043{height:68.046875pt;}
.h1_c00043{height:68.701172pt;}
.h6_c00043{height:69.531250pt;}
.ha_c00043{height:70.009766pt;}
.h8_c00043{height:71.972656pt;}
.h3_c00043{height:72.473958pt;}
.h5_c00043{height:72.590820pt;}
.h7_c00043{height:73.234375pt;}
.h2_c00043{height:75.244141pt;}
.h0_c00043{height:1122.666667pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:126.399867pt;}
.x4_c00043{left:147.199200pt;}
.x5_c00043{left:238.079587pt;}
.x6_c00043{left:259.839867pt;}
.x7_c00043{left:313.599587pt;}
.x8_c00043{left:399.679733pt;}
.x9_c00043{left:440.958907pt;}
.xa_c00043{left:465.599040pt;}
.xb_c00043{left:504.959467pt;}
.xc_c00043{left:521.598680pt;}
.x2_c00043{left:615.039587pt;}
.x3_c00043{left:635.198693pt;}
.xd_c00043{left:663.358933pt;}
.xe_c00043{left:677.759720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba5a7f3f0a24656c4cf7d829.woff2')format("woff");}.ff1_c00044{font-family:ff1_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;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_7aa155851413b0ffad34f40a.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_7be98e45c4cdc32e4eb72759.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_aba148a6a7e3b51d174ca9b9.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.281250;font-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_c00044{transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112245,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.185801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185801,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.209402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209402,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328302,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.365993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365993,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.lsc_c00044{letter-spacing:-131.094585px;}
.lse_c00044{letter-spacing:-41.383275px;}
.lsa_c00044{letter-spacing:-32.062500px;}
.lsd_c00044{letter-spacing:-15.503100px;}
.ls3_c00044{letter-spacing:-6.132848px;}
.ls5_c00044{letter-spacing:-4.125000px;}
.ls7_c00044{letter-spacing:0.000000px;}
.ls9_c00044{letter-spacing:1.028940px;}
.ls6_c00044{letter-spacing:2.065800px;}
.ls8_c00044{letter-spacing:5.013435px;}
.ls0_c00044{letter-spacing:5.153940px;}
.ls2_c00044{letter-spacing:6.681150px;}
.ls1_c00044{letter-spacing:8.349600px;}
.ls4_c00044{letter-spacing:9.161100px;}
.lsb_c00044{letter-spacing:11.693850px;}
.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;}
._4_c00044{margin-left:-6.592683px;}
._2_c00044{width:3.020716px;}
._1_c00044{width:15.581692px;}
._0_c00044{width:24.023918px;}
._3_c00044{width:563.413715px;}
.fc0_c00044{color:transparent;}
.fs2_c00044{font-size:54.000000px;}
.fs0_c00044{font-size:65.250000px;}
.fs1_c00044{font-size:66.000000px;}
.fs3_c00044{font-size:73.500000px;}
.fs9_c00044{font-size:93.000000px;}
.fs7_c00044{font-size:171.000000px;}
.fsa_c00044{font-size:248.250000px;}
.fs8_c00044{font-size:256.500000px;}
.fs6_c00044{font-size:263.250000px;}
.fs5_c00044{font-size:426.750000px;}
.fs4_c00044{font-size:596.250120px;}
.y0_c00044{bottom:0.000000px;}
.y8_c00044{bottom:177.120000px;}
.y7_c00044{bottom:213.478635px;}
.y6_c00044{bottom:446.399820px;}
.ya_c00044{bottom:762.118785px;}
.y5_c00044{bottom:783.359250px;}
.y9_c00044{bottom:785.519715px;}
.y4_c00044{bottom:832.318275px;}
.y3_c00044{bottom:960.478410px;}
.y2_c00044{bottom:984.239220px;}
.y1_c00044{bottom:1076.760135px;}
.h3_c00044{height:54.421875px;}
.h1_c00044{height:65.759766px;}
.h2_c00044{height:66.515625px;}
.h4_c00044{height:72.638672px;}
.ha_c00044{height:91.910156px;}
.h8_c00044{height:168.996094px;}
.hb_c00044{height:245.340820px;}
.h9_c00044{height:251.615479px;}
.h7_c00044{height:258.236938px;}
.h6_c00044{height:445.086914px;}
.h5_c00044{height:621.870242px;}
.h0_c00044{height:1263.000000px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:183.599700px;}
.x8_c00044{left:190.079400px;}
.x9_c00044{left:197.999400px;}
.xa_c00044{left:204.838515px;}
.x6_c00044{left:207.719100px;}
.x7_c00044{left:212.758170px;}
.x2_c00044{left:223.918350px;}
.x3_c00044{left:241.559685px;}
.xb_c00044{left:311.038950px;}
.xc_c00044{left:346.319850px;}
.x11_c00044{left:347.399235px;}
.x4_c00044{left:408.599070px;}
.xd_c00044{left:413.279250px;}
.x5_c00044{left:420.119985px;}
.xe_c00044{left:468.358665px;}
.xf_c00044{left:536.399235px;}
.x10_c00044{left:579.239220px;}
.x12_c00044{left:582.838530px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.lsc_c00044{letter-spacing:-116.528520pt;}
.lse_c00044{letter-spacing:-36.785133pt;}
.lsa_c00044{letter-spacing:-28.500000pt;}
.lsd_c00044{letter-spacing:-13.780533pt;}
.ls3_c00044{letter-spacing:-5.451420pt;}
.ls5_c00044{letter-spacing:-3.666667pt;}
.ls7_c00044{letter-spacing:0.000000pt;}
.ls9_c00044{letter-spacing:0.914613pt;}
.ls6_c00044{letter-spacing:1.836267pt;}
.ls8_c00044{letter-spacing:4.456387pt;}
.ls0_c00044{letter-spacing:4.581280pt;}
.ls2_c00044{letter-spacing:5.938800pt;}
.ls1_c00044{letter-spacing:7.421867pt;}
.ls4_c00044{letter-spacing:8.143200pt;}
.lsb_c00044{letter-spacing:10.394533pt;}
.ws0_c00044{word-spacing:0.000000pt;}
._4_c00044{margin-left:-5.860162pt;}
._2_c00044{width:2.685081pt;}
._1_c00044{width:13.850393pt;}
._0_c00044{width:21.354593pt;}
._3_c00044{width:500.812192pt;}
.fs2_c00044{font-size:48.000000pt;}
.fs0_c00044{font-size:58.000000pt;}
.fs1_c00044{font-size:58.666667pt;}
.fs3_c00044{font-size:65.333333pt;}
.fs9_c00044{font-size:82.666667pt;}
.fs7_c00044{font-size:152.000000pt;}
.fsa_c00044{font-size:220.666667pt;}
.fs8_c00044{font-size:228.000000pt;}
.fs6_c00044{font-size:234.000000pt;}
.fs5_c00044{font-size:379.333333pt;}
.fs4_c00044{font-size:530.000107pt;}
.y0_c00044{bottom:0.000000pt;}
.y8_c00044{bottom:157.440000pt;}
.y7_c00044{bottom:189.758787pt;}
.y6_c00044{bottom:396.799840pt;}
.ya_c00044{bottom:677.438920pt;}
.y5_c00044{bottom:696.319333pt;}
.y9_c00044{bottom:698.239747pt;}
.y4_c00044{bottom:739.838467pt;}
.y3_c00044{bottom:853.758587pt;}
.y2_c00044{bottom:874.879307pt;}
.y1_c00044{bottom:957.120120pt;}
.h3_c00044{height:48.375000pt;}
.h1_c00044{height:58.453125pt;}
.h2_c00044{height:59.125000pt;}
.h4_c00044{height:64.567708pt;}
.ha_c00044{height:81.697917pt;}
.h8_c00044{height:150.218750pt;}
.hb_c00044{height:218.080729pt;}
.h9_c00044{height:223.658203pt;}
.h7_c00044{height:229.543945pt;}
.h6_c00044{height:395.632812pt;}
.h5_c00044{height:552.773549pt;}
.h0_c00044{height:1122.666667pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:163.199733pt;}
.x8_c00044{left:168.959467pt;}
.x9_c00044{left:175.999467pt;}
.xa_c00044{left:182.078680pt;}
.x6_c00044{left:184.639200pt;}
.x7_c00044{left:189.118373pt;}
.x2_c00044{left:199.038533pt;}
.x3_c00044{left:214.719720pt;}
.xb_c00044{left:276.479067pt;}
.xc_c00044{left:307.839867pt;}
.x11_c00044{left:308.799320pt;}
.x4_c00044{left:363.199173pt;}
.xd_c00044{left:367.359333pt;}
.x5_c00044{left:373.439987pt;}
.xe_c00044{left:416.318813pt;}
.xf_c00044{left:476.799320pt;}
.x10_c00044{left:514.879307pt;}
.x12_c00044{left:518.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2eb84729aae9f51a8d52fe82.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_3fd7a88cf0c3466bc3f29e91.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_cc2c94730fcb678ed535fe66.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_04bde492434b517b31909577.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.126344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126344,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136364,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.144886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144886,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.199468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199468,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.239078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239078,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.740901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740901,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.v1_c00045{vertical-align:93.604140px;}
.ls4_c00045{letter-spacing:-18.714150px;}
.ls6_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:1.485675px;}
.ls1_c00045{letter-spacing:2.971350px;}
.ls2_c00045{letter-spacing:4.450050px;}
.ls8_c00045{letter-spacing:4.702350px;}
.ls9_c00045{letter-spacing:6.246225px;}
.ls5_c00045{letter-spacing:7.421400px;}
.ls7_c00045{letter-spacing:11.871450px;}
.ls3_c00045{letter-spacing:37.100722px;}
.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;}
._3_c00045{width:2.309111px;}
._5_c00045{width:6.144767px;}
._1_c00045{width:7.993706px;}
._4_c00045{width:9.450680px;}
._0_c00045{width:27.049109px;}
._2_c00045{width:538.742173px;}
.fc0_c00045{color:transparent;}
.fs7_c00045{font-size:51.750000px;}
.fs2_c00045{font-size:57.750000px;}
.fs3_c00045{font-size:66.000000px;}
.fs1_c00045{font-size:68.250000px;}
.fs0_c00045{font-size:69.750000px;}
.fs6_c00045{font-size:70.500000px;}
.fs5_c00045{font-size:432.750000px;}
.fs4_c00045{font-size:463.500000px;}
.y0_c00045{bottom:0.000000px;}
.yc_c00045{bottom:129.599445px;}
.yd_c00045{bottom:129.599700px;}
.yb_c00045{bottom:152.639700px;}
.ya_c00045{bottom:419.759085px;}
.y9_c00045{bottom:434.519670px;}
.y8_c00045{bottom:444.237120px;}
.y7_c00045{bottom:480.597885px;}
.y5_c00045{bottom:713.517675px;}
.y6_c00045{bottom:713.878470px;}
.y4_c00045{bottom:736.557900px;}
.y3_c00045{bottom:853.199130px;}
.y2_c00045{bottom:876.600180px;}
.y1_c00045{bottom:1097.998905px;}
.h9_c00045{height:52.154297px;}
.h3_c00045{height:57.073242px;}
.h5_c00045{height:65.226562px;}
.h2_c00045{height:67.450195px;}
.ha_c00045{height:68.835938px;}
.h1_c00045{height:68.932617px;}
.h8_c00045{height:69.673828px;}
.h4_c00045{height:162.536757px;}
.h7_c00045{height:451.344727px;}
.h6_c00045{height:454.899902px;}
.h0_c00045{height:1263.000000px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:214.559685px;}
.xd_c00045{left:217.079385px;}
.x8_c00045{left:221.039205px;}
.xa_c00045{left:226.439580px;}
.xb_c00045{left:227.519070px;}
.x6_c00045{left:232.558800px;}
.x7_c00045{left:237.599595px;}
.xe_c00045{left:239.399250px;}
.x2_c00045{left:254.878350px;}
.x3_c00045{left:272.519685px;}
.xc_c00045{left:298.079385px;}
.xf_c00045{left:303.479685px;}
.x10_c00045{left:326.519685px;}
.x9_c00045{left:365.039040px;}
.x11_c00045{left:419.759085px;}
.x4_c00045{left:428.039985px;}
.x5_c00045{left:439.559100px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.v1_c00045{vertical-align:83.203680pt;}
.ls4_c00045{letter-spacing:-16.634800pt;}
.ls6_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:1.320600pt;}
.ls1_c00045{letter-spacing:2.641200pt;}
.ls2_c00045{letter-spacing:3.955600pt;}
.ls8_c00045{letter-spacing:4.179867pt;}
.ls9_c00045{letter-spacing:5.552200pt;}
.ls5_c00045{letter-spacing:6.596800pt;}
.ls7_c00045{letter-spacing:10.552400pt;}
.ls3_c00045{letter-spacing:32.978420pt;}
.ws0_c00045{word-spacing:0.000000pt;}
._3_c00045{width:2.052543pt;}
._5_c00045{width:5.462015pt;}
._1_c00045{width:7.105517pt;}
._4_c00045{width:8.400604pt;}
._0_c00045{width:24.043653pt;}
._2_c00045{width:478.881932pt;}
.fs7_c00045{font-size:46.000000pt;}
.fs2_c00045{font-size:51.333333pt;}
.fs3_c00045{font-size:58.666667pt;}
.fs1_c00045{font-size:60.666667pt;}
.fs0_c00045{font-size:62.000000pt;}
.fs6_c00045{font-size:62.666667pt;}
.fs5_c00045{font-size:384.666667pt;}
.fs4_c00045{font-size:412.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.yc_c00045{bottom:115.199507pt;}
.yd_c00045{bottom:115.199733pt;}
.yb_c00045{bottom:135.679733pt;}
.ya_c00045{bottom:373.119187pt;}
.y9_c00045{bottom:386.239707pt;}
.y8_c00045{bottom:394.877440pt;}
.y7_c00045{bottom:427.198120pt;}
.y5_c00045{bottom:634.237933pt;}
.y6_c00045{bottom:634.558640pt;}
.y4_c00045{bottom:654.718133pt;}
.y3_c00045{bottom:758.399227pt;}
.y2_c00045{bottom:779.200160pt;}
.y1_c00045{bottom:975.999027pt;}
.h9_c00045{height:46.359375pt;}
.h3_c00045{height:50.731771pt;}
.h5_c00045{height:57.979167pt;}
.h2_c00045{height:59.955729pt;}
.ha_c00045{height:61.187500pt;}
.h1_c00045{height:61.273438pt;}
.h8_c00045{height:61.932292pt;}
.h4_c00045{height:144.477117pt;}
.h7_c00045{height:401.195312pt;}
.h6_c00045{height:404.355469pt;}
.h0_c00045{height:1122.666667pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:190.719720pt;}
.xd_c00045{left:192.959453pt;}
.x8_c00045{left:196.479293pt;}
.xa_c00045{left:201.279627pt;}
.xb_c00045{left:202.239173pt;}
.x6_c00045{left:206.718933pt;}
.x7_c00045{left:211.199640pt;}
.xe_c00045{left:212.799333pt;}
.x2_c00045{left:226.558533pt;}
.x3_c00045{left:242.239720pt;}
.xc_c00045{left:264.959453pt;}
.xf_c00045{left:269.759720pt;}
.x10_c00045{left:290.239720pt;}
.x9_c00045{left:324.479147pt;}
.x11_c00045{left:373.119187pt;}
.x4_c00045{left:380.479987pt;}
.x5_c00045{left:390.719200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3bb56cb54156c28893603627.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.364746;font-style:normal;font-weight:normal;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_8482d4d09c7864dc81bf4287.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_b7742dda9568d72455496b96.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_a57f5224b6267193b5aaf478.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_64b5572ec2335ec3ba91a3d5.woff2')format("woff");}.ff5_c00046{font-family:ff5_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:ff6_c00046;src:url('chunks/assets/font_2ca8a333186b4b2a423e4e5a.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00046{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00046{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m1d_c00046{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m1b_c00046{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.303371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303371,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.323864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323864,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{transform:matrix(0.506757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506757,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls5_c00046{letter-spacing:-14.280750px;}
.ls1c_c00046{letter-spacing:-10.319400px;}
.ls10_c00046{letter-spacing:-9.654750px;}
.ls11_c00046{letter-spacing:-8.914500px;}
.ls1e_c00046{letter-spacing:-8.650133px;}
.ls26_c00046{letter-spacing:-8.175038px;}
.ls29_c00046{letter-spacing:-7.426125px;}
.ls19_c00046{letter-spacing:-6.876900px;}
.ls25_c00046{letter-spacing:-6.685875px;}
.ls27_c00046{letter-spacing:-6.160478px;}
.lse_c00046{letter-spacing:-5.945625px;}
.ls1d_c00046{letter-spacing:-5.788860px;}
.ls28_c00046{letter-spacing:-5.779463px;}
.lsc_c00046{letter-spacing:-5.196713px;}
.lsd_c00046{letter-spacing:-4.456463px;}
.ls1a_c00046{letter-spacing:-4.204958px;}
.lsb_c00046{letter-spacing:-3.717000px;}
.ls1b_c00046{letter-spacing:-3.244500px;}
.ls9_c00046{letter-spacing:-2.968875px;}
.ls7_c00046{letter-spacing:-2.229413px;}
.ls8_c00046{letter-spacing:-1.489163px;}
.ls20_c00046{letter-spacing:-1.479075px;}
.ls6_c00046{letter-spacing:-0.763875px;}
.lsa_c00046{letter-spacing:-0.740250px;}
.ls13_c00046{letter-spacing:-0.464400px;}
.lsf_c00046{letter-spacing:0.000000px;}
.ls4_c00046{letter-spacing:0.740250px;}
.ls14_c00046{letter-spacing:1.178430px;}
.ls2_c00046{letter-spacing:1.489163px;}
.ls24_c00046{letter-spacing:2.387025px;}
.ls3_c00046{letter-spacing:2.968875px;}
.ls18_c00046{letter-spacing:3.145050px;}
.ls12_c00046{letter-spacing:4.499302px;}
.ls23_c00046{letter-spacing:4.928550px;}
.ls0_c00046{letter-spacing:5.771700px;}
.ls21_c00046{letter-spacing:5.901600px;}
.ls1_c00046{letter-spacing:6.411675px;}
.ls2a_c00046{letter-spacing:7.114500px;}
.ls1f_c00046{letter-spacing:8.335575px;}
.ls15_c00046{letter-spacing:10.849950px;}
.ls17_c00046{letter-spacing:13.550400px;}
.ls22_c00046{letter-spacing:14.666040px;}
.ls16_c00046{letter-spacing:18.546975px;}
.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;}
._1f_c00046{margin-left:-41.526836px;}
._1e_c00046{margin-left:-35.003840px;}
._9_c00046{margin-left:-4.803988px;}
._6_c00046{margin-left:-3.224055px;}
._a_c00046{margin-left:-1.644969px;}
._7_c00046{width:1.116957px;}
._8_c00046{width:2.399914px;}
._0_c00046{width:3.987751px;}
._4_c00046{width:5.356085px;}
._2_c00046{width:6.373238px;}
._5_c00046{width:7.941908px;}
._21_c00046{width:8.950963px;}
._1_c00046{width:9.982157px;}
._11_c00046{width:11.794804px;}
._3_c00046{width:13.418851px;}
._13_c00046{width:15.614535px;}
._12_c00046{width:17.087205px;}
._1a_c00046{width:18.309880px;}
._19_c00046{width:19.652508px;}
._10_c00046{width:21.285263px;}
._d_c00046{width:22.463542px;}
._c_c00046{width:24.256144px;}
._e_c00046{width:25.444244px;}
._1b_c00046{width:26.719830px;}
._1d_c00046{width:28.768356px;}
._b_c00046{width:31.395233px;}
._20_c00046{width:32.935226px;}
._1c_c00046{width:35.678995px;}
._f_c00046{width:40.548583px;}
._15_c00046{width:46.146519px;}
._14_c00046{width:48.259322px;}
._18_c00046{width:50.081107px;}
._16_c00046{width:54.740314px;}
._17_c00046{width:66.708546px;}
.fc0_c00046{color:transparent;}
.fs10_c00046{font-size:24.000000px;}
.fs3_c00046{font-size:24.750000px;}
.fs4_c00046{font-size:27.000000px;}
.fs11_c00046{font-size:27.750000px;}
.fs5_c00046{font-size:33.000000px;}
.fs12_c00046{font-size:36.000000px;}
.fsf_c00046{font-size:39.750000px;}
.fs6_c00046{font-size:40.500000px;}
.fs8_c00046{font-size:48.000000px;}
.fs7_c00046{font-size:53.250000px;}
.fs9_c00046{font-size:65.250000px;}
.fsd_c00046{font-size:66.000000px;}
.fse_c00046{font-size:66.750000px;}
.fs15_c00046{font-size:76.500000px;}
.fs13_c00046{font-size:77.250000px;}
.fs1_c00046{font-size:78.750000px;}
.fs14_c00046{font-size:80.250000px;}
.fsa_c00046{font-size:81.000000px;}
.fs0_c00046{font-size:82.500000px;}
.fsb_c00046{font-size:83.250000px;}
.fs2_c00046{font-size:84.750000px;}
.fsc_c00046{font-size:87.750000px;}
.y0_c00046{bottom:0.000000px;}
.y24_c00046{bottom:187.200465px;}
.y23_c00046{bottom:216.720150px;}
.y22_c00046{bottom:246.600750px;}
.y21_c00046{bottom:246.601800px;}
.y20_c00046{bottom:276.121335px;}
.y1f_c00046{bottom:336.240960px;}
.y1e_c00046{bottom:366.480885px;}
.y1d_c00046{bottom:366.481065px;}
.y1c_c00046{bottom:396.000600px;}
.y1b_c00046{bottom:455.039925px;}
.y1a_c00046{bottom:485.279850px;}
.y19_c00046{bottom:485.280690px;}
.y18_c00046{bottom:515.160420px;}
.y17_c00046{bottom:515.160465px;}
.y16_c00046{bottom:545.400375px;}
.y15_c00046{bottom:605.159820px;}
.y14_c00046{bottom:605.161215px;}
.y13_c00046{bottom:635.040945px;}
.y12_c00046{bottom:664.560465px;}
.y10_c00046{bottom:694.079910px;}
.y11_c00046{bottom:694.080000px;}
.yf_c00046{bottom:724.319820px;}
.ye_c00046{bottom:753.480285px;}
.yd_c00046{bottom:756.360900px;}
.yc_c00046{bottom:759.959970px;}
.yb_c00046{bottom:813.961185px;}
.ya_c00046{bottom:844.201110px;}
.y9_c00046{bottom:872.999955px;}
.y8_c00046{bottom:903.241980px;}
.y7_c00046{bottom:932.761500px;}
.y6_c00046{bottom:963.359805px;}
.y5_c00046{bottom:963.361020px;}
.y4_c00046{bottom:993.240735px;}
.y3_c00046{bottom:1023.120465px;}
.y2_c00046{bottom:1052.639985px;}
.y1_c00046{bottom:1082.519715px;}
.h12_c00046{height:23.718750px;}
.h4_c00046{height:24.278687px;}
.h14_c00046{height:25.031250px;}
.h5_c00046{height:28.160156px;}
.h13_c00046{height:28.942383px;}
.h6_c00046{height:34.417969px;}
.h15_c00046{height:37.546875px;}
.h11_c00046{height:40.060547px;}
.h7_c00046{height:42.240234px;}
.h9_c00046{height:50.062500px;}
.h8_c00046{height:55.538086px;}
.ha_c00046{height:65.759766px;}
.hf_c00046{height:68.835938px;}
.h10_c00046{height:69.618164px;}
.h19_c00046{height:75.080566px;}
.h16_c00046{height:75.816650px;}
.h2_c00046{height:77.288818px;}
.h17_c00046{height:78.760986px;}
.hd_c00046{height:79.365234px;}
.h18_c00046{height:80.969238px;}
.h1_c00046{height:81.533203px;}
.hb_c00046{height:81.632812px;}
.h3_c00046{height:83.177490px;}
.hc_c00046{height:83.900391px;}
.he_c00046{height:86.721680px;}
.h0_c00046{height:1263.000000px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.x11_c00046{left:147.239250px;}
.x1_c00046{left:148.679700px;}
.x1f_c00046{left:172.798950px;}
.x12_c00046{left:173.878350px;}
.x2_c00046{left:181.798515px;}
.x13_c00046{left:233.639700px;}
.x6_c00046{left:262.439250px;}
.x3_c00046{left:266.040000px;}
.x7_c00046{left:290.879535px;}
.x14_c00046{left:311.399850px;}
.x8_c00046{left:342.719100px;}
.x9_c00046{left:436.319235px;}
.x1d_c00046{left:444.598530px;}
.xa_c00046{left:462.958335px;}
.x1e_c00046{left:466.918350px;}
.x1b_c00046{left:468.719565px;}
.x4_c00046{left:474.119985px;}
.x15_c00046{left:476.639700px;}
.x1c_c00046{left:481.679070px;}
.x5_c00046{left:493.918350px;}
.x16_c00046{left:498.239220px;}
.xb_c00046{left:525.598530px;}
.xc_c00046{left:557.278800px;}
.xd_c00046{left:623.878920px;}
.x20_c00046{left:624.958335px;}
.x1a_c00046{left:638.639700px;}
.x21_c00046{left:644.039985px;}
.xe_c00046{left:646.559685px;}
.x18_c00046{left:687.959385px;}
.xf_c00046{left:696.238770px;}
.x17_c00046{left:699.478635px;}
.x19_c00046{left:713.159820px;}
.x10_c00046{left:730.438620px;}
.x22_c00046{left:781.198785px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls5_c00046{letter-spacing:-12.694000pt;}
.ls1c_c00046{letter-spacing:-9.172800pt;}
.ls10_c00046{letter-spacing:-8.582000pt;}
.ls11_c00046{letter-spacing:-7.924000pt;}
.ls1e_c00046{letter-spacing:-7.689007pt;}
.ls26_c00046{letter-spacing:-7.266700pt;}
.ls29_c00046{letter-spacing:-6.601000pt;}
.ls19_c00046{letter-spacing:-6.112800pt;}
.ls25_c00046{letter-spacing:-5.943000pt;}
.ls27_c00046{letter-spacing:-5.475980pt;}
.lse_c00046{letter-spacing:-5.285000pt;}
.ls1d_c00046{letter-spacing:-5.145653pt;}
.ls28_c00046{letter-spacing:-5.137300pt;}
.lsc_c00046{letter-spacing:-4.619300pt;}
.lsd_c00046{letter-spacing:-3.961300pt;}
.ls1a_c00046{letter-spacing:-3.737740pt;}
.lsb_c00046{letter-spacing:-3.304000pt;}
.ls1b_c00046{letter-spacing:-2.884000pt;}
.ls9_c00046{letter-spacing:-2.639000pt;}
.ls7_c00046{letter-spacing:-1.981700pt;}
.ls8_c00046{letter-spacing:-1.323700pt;}
.ls20_c00046{letter-spacing:-1.314733pt;}
.ls6_c00046{letter-spacing:-0.679000pt;}
.lsa_c00046{letter-spacing:-0.658000pt;}
.ls13_c00046{letter-spacing:-0.412800pt;}
.lsf_c00046{letter-spacing:0.000000pt;}
.ls4_c00046{letter-spacing:0.658000pt;}
.ls14_c00046{letter-spacing:1.047493pt;}
.ls2_c00046{letter-spacing:1.323700pt;}
.ls24_c00046{letter-spacing:2.121800pt;}
.ls3_c00046{letter-spacing:2.639000pt;}
.ls18_c00046{letter-spacing:2.795600pt;}
.ls12_c00046{letter-spacing:3.999380pt;}
.ls23_c00046{letter-spacing:4.380933pt;}
.ls0_c00046{letter-spacing:5.130400pt;}
.ls21_c00046{letter-spacing:5.245867pt;}
.ls1_c00046{letter-spacing:5.699267pt;}
.ls2a_c00046{letter-spacing:6.324000pt;}
.ls1f_c00046{letter-spacing:7.409400pt;}
.ls15_c00046{letter-spacing:9.644400pt;}
.ls17_c00046{letter-spacing:12.044800pt;}
.ls22_c00046{letter-spacing:13.036480pt;}
.ls16_c00046{letter-spacing:16.486200pt;}
.ws0_c00046{word-spacing:0.000000pt;}
._1f_c00046{margin-left:-36.912743pt;}
._1e_c00046{margin-left:-31.114525pt;}
._9_c00046{margin-left:-4.270211pt;}
._6_c00046{margin-left:-2.865826pt;}
._a_c00046{margin-left:-1.462194pt;}
._7_c00046{width:0.992851pt;}
._8_c00046{width:2.133257pt;}
._0_c00046{width:3.544668pt;}
._4_c00046{width:4.760964pt;}
._2_c00046{width:5.665100pt;}
._5_c00046{width:7.059474pt;}
._21_c00046{width:7.956411pt;}
._1_c00046{width:8.873028pt;}
._11_c00046{width:10.484270pt;}
._3_c00046{width:11.927868pt;}
._13_c00046{width:13.879587pt;}
._12_c00046{width:15.188626pt;}
._1a_c00046{width:16.275449pt;}
._19_c00046{width:17.468896pt;}
._10_c00046{width:18.920234pt;}
._d_c00046{width:19.967592pt;}
._c_c00046{width:21.561017pt;}
._e_c00046{width:22.617106pt;}
._1b_c00046{width:23.750960pt;}
._1d_c00046{width:25.571872pt;}
._b_c00046{width:27.906874pt;}
._20_c00046{width:29.275757pt;}
._1c_c00046{width:31.714662pt;}
._f_c00046{width:36.043185pt;}
._15_c00046{width:41.019128pt;}
._14_c00046{width:42.897175pt;}
._18_c00046{width:44.516540pt;}
._16_c00046{width:48.658057pt;}
._17_c00046{width:59.296485pt;}
.fs10_c00046{font-size:21.333333pt;}
.fs3_c00046{font-size:22.000000pt;}
.fs4_c00046{font-size:24.000000pt;}
.fs11_c00046{font-size:24.666667pt;}
.fs5_c00046{font-size:29.333333pt;}
.fs12_c00046{font-size:32.000000pt;}
.fsf_c00046{font-size:35.333333pt;}
.fs6_c00046{font-size:36.000000pt;}
.fs8_c00046{font-size:42.666667pt;}
.fs7_c00046{font-size:47.333333pt;}
.fs9_c00046{font-size:58.000000pt;}
.fsd_c00046{font-size:58.666667pt;}
.fse_c00046{font-size:59.333333pt;}
.fs15_c00046{font-size:68.000000pt;}
.fs13_c00046{font-size:68.666667pt;}
.fs1_c00046{font-size:70.000000pt;}
.fs14_c00046{font-size:71.333333pt;}
.fsa_c00046{font-size:72.000000pt;}
.fs0_c00046{font-size:73.333333pt;}
.fsb_c00046{font-size:74.000000pt;}
.fs2_c00046{font-size:75.333333pt;}
.fsc_c00046{font-size:78.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y24_c00046{bottom:166.400413pt;}
.y23_c00046{bottom:192.640133pt;}
.y22_c00046{bottom:219.200667pt;}
.y21_c00046{bottom:219.201600pt;}
.y20_c00046{bottom:245.441187pt;}
.y1f_c00046{bottom:298.880853pt;}
.y1e_c00046{bottom:325.760787pt;}
.y1d_c00046{bottom:325.760947pt;}
.y1c_c00046{bottom:352.000533pt;}
.y1b_c00046{bottom:404.479933pt;}
.y1a_c00046{bottom:431.359867pt;}
.y19_c00046{bottom:431.360613pt;}
.y18_c00046{bottom:457.920373pt;}
.y17_c00046{bottom:457.920413pt;}
.y16_c00046{bottom:484.800333pt;}
.y15_c00046{bottom:537.919840pt;}
.y14_c00046{bottom:537.921080pt;}
.y13_c00046{bottom:564.480840pt;}
.y12_c00046{bottom:590.720413pt;}
.y10_c00046{bottom:616.959920pt;}
.y11_c00046{bottom:616.960000pt;}
.yf_c00046{bottom:643.839840pt;}
.ye_c00046{bottom:669.760253pt;}
.yd_c00046{bottom:672.320800pt;}
.yc_c00046{bottom:675.519973pt;}
.yb_c00046{bottom:723.521053pt;}
.ya_c00046{bottom:750.400987pt;}
.y9_c00046{bottom:775.999960pt;}
.y8_c00046{bottom:802.881760pt;}
.y7_c00046{bottom:829.121333pt;}
.y6_c00046{bottom:856.319827pt;}
.y5_c00046{bottom:856.320907pt;}
.y4_c00046{bottom:882.880653pt;}
.y3_c00046{bottom:909.440413pt;}
.y2_c00046{bottom:935.679987pt;}
.y1_c00046{bottom:962.239747pt;}
.h12_c00046{height:21.083333pt;}
.h4_c00046{height:21.581055pt;}
.h14_c00046{height:22.250000pt;}
.h5_c00046{height:25.031250pt;}
.h13_c00046{height:25.726562pt;}
.h6_c00046{height:30.593750pt;}
.h15_c00046{height:33.375000pt;}
.h11_c00046{height:35.609375pt;}
.h7_c00046{height:37.546875pt;}
.h9_c00046{height:44.500000pt;}
.h8_c00046{height:49.367188pt;}
.ha_c00046{height:58.453125pt;}
.hf_c00046{height:61.187500pt;}
.h10_c00046{height:61.882812pt;}
.h19_c00046{height:66.738281pt;}
.h16_c00046{height:67.392578pt;}
.h2_c00046{height:68.701172pt;}
.h17_c00046{height:70.009766pt;}
.hd_c00046{height:70.546875pt;}
.h18_c00046{height:71.972656pt;}
.h1_c00046{height:72.473958pt;}
.hb_c00046{height:72.562500pt;}
.h3_c00046{height:73.935547pt;}
.hc_c00046{height:74.578125pt;}
.he_c00046{height:77.085938pt;}
.h0_c00046{height:1122.666667pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.x11_c00046{left:130.879333pt;}
.x1_c00046{left:132.159733pt;}
.x1f_c00046{left:153.599067pt;}
.x12_c00046{left:154.558533pt;}
.x2_c00046{left:161.598680pt;}
.x13_c00046{left:207.679733pt;}
.x6_c00046{left:233.279333pt;}
.x3_c00046{left:236.480000pt;}
.x7_c00046{left:258.559587pt;}
.x14_c00046{left:276.799867pt;}
.x8_c00046{left:304.639200pt;}
.x9_c00046{left:387.839320pt;}
.x1d_c00046{left:395.198693pt;}
.xa_c00046{left:411.518520pt;}
.x1e_c00046{left:415.038533pt;}
.x1b_c00046{left:416.639613pt;}
.x4_c00046{left:421.439987pt;}
.x15_c00046{left:423.679733pt;}
.x1c_c00046{left:428.159173pt;}
.x5_c00046{left:439.038533pt;}
.x16_c00046{left:442.879307pt;}
.xb_c00046{left:467.198693pt;}
.xc_c00046{left:495.358933pt;}
.xd_c00046{left:554.559040pt;}
.x20_c00046{left:555.518520pt;}
.x1a_c00046{left:567.679733pt;}
.x21_c00046{left:572.479987pt;}
.xe_c00046{left:574.719720pt;}
.x18_c00046{left:611.519453pt;}
.xf_c00046{left:618.878907pt;}
.x17_c00046{left:621.758787pt;}
.x19_c00046{left:633.919840pt;}
.x10_c00046{left:649.278773pt;}
.x22_c00046{left:694.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3db76aabb83b477350813bb.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_208402519650885844ed3e1f.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.364746;font-style:normal;font-weight:normal;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_feb22fad52d88f8aa1a7c03b.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;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_5e28a5117d94f281c60fd335.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00047{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00047{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m13_c00047{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m16_c00047{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m0_c00047{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.mf_c00047{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.285294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285294,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.355856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355856,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls12_c00047{letter-spacing:-31.085550px;}
.ls10_c00047{letter-spacing:-13.802513px;}
.lsf_c00047{letter-spacing:-9.143190px;}
.ls18_c00047{letter-spacing:-8.914500px;}
.lsb_c00047{letter-spacing:-8.175038px;}
.ls19_c00047{letter-spacing:-7.426125px;}
.ls17_c00047{letter-spacing:-6.685875px;}
.ls4_c00047{letter-spacing:-5.945625px;}
.ls1d_c00047{letter-spacing:-5.247533px;}
.ls7_c00047{letter-spacing:-5.196713px;}
.lsa_c00047{letter-spacing:-5.151248px;}
.ls8_c00047{letter-spacing:-4.456463px;}
.ls16_c00047{letter-spacing:-4.183125px;}
.ls14_c00047{letter-spacing:-4.009500px;}
.ls3_c00047{letter-spacing:-3.717000px;}
.ls1a_c00047{letter-spacing:-3.025425px;}
.ls1c_c00047{letter-spacing:-2.971800px;}
.ls0_c00047{letter-spacing:-2.968875px;}
.ls1e_c00047{letter-spacing:-2.890125px;}
.ls13_c00047{letter-spacing:-2.477790px;}
.ls6_c00047{letter-spacing:-2.353583px;}
.ls1_c00047{letter-spacing:-2.229413px;}
.ls15_c00047{letter-spacing:-2.205000px;}
.ls1b_c00047{letter-spacing:-1.589753px;}
.ls9_c00047{letter-spacing:-1.489163px;}
.ls5_c00047{letter-spacing:-0.740250px;}
.ls2_c00047{letter-spacing:0.000000px;}
.lsc_c00047{letter-spacing:0.742950px;}
.lse_c00047{letter-spacing:5.224500px;}
.ls11_c00047{letter-spacing:9.937500px;}
.lsd_c00047{letter-spacing:14.528588px;}
.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;}
._23_c00047{margin-left:-23.770658px;}
._16_c00047{margin-left:-8.360382px;}
._10_c00047{margin-left:-6.530812px;}
._11_c00047{margin-left:-5.081990px;}
._12_c00047{margin-left:-4.009207px;}
._13_c00047{margin-left:-2.934210px;}
._6_c00047{margin-left:-1.607124px;}
._9_c00047{width:1.519786px;}
._7_c00047{width:2.521144px;}
._5_c00047{width:4.181150px;}
._8_c00047{width:5.752034px;}
._1_c00047{width:7.625585px;}
._4_c00047{width:8.759541px;}
._2_c00047{width:10.002454px;}
._a_c00047{width:11.083899px;}
._0_c00047{width:12.174245px;}
._b_c00047{width:13.288320px;}
._3_c00047{width:14.686429px;}
._15_c00047{width:15.913607px;}
._c_c00047{width:16.993121px;}
._d_c00047{width:18.990013px;}
._e_c00047{width:20.117371px;}
._f_c00047{width:22.043611px;}
._1c_c00047{width:23.842959px;}
._14_c00047{width:25.863001px;}
._1d_c00047{width:28.604927px;}
._1e_c00047{width:33.151358px;}
._1a_c00047{width:34.606509px;}
._1b_c00047{width:36.624277px;}
._17_c00047{width:38.603309px;}
._1f_c00047{width:39.696137px;}
._18_c00047{width:40.880581px;}
._19_c00047{width:42.517511px;}
._21_c00047{width:48.576417px;}
._20_c00047{width:54.814576px;}
._22_c00047{width:57.282453px;}
.fc0_c00047{color:transparent;}
.fs4_c00047{font-size:58.500000px;}
.fs7_c00047{font-size:63.750000px;}
.fs6_c00047{font-size:69.000000px;}
.fsa_c00047{font-size:72.750000px;}
.fsc_c00047{font-size:78.000000px;}
.fs0_c00047{font-size:78.750000px;}
.fs8_c00047{font-size:79.500000px;}
.fs1_c00047{font-size:80.250000px;}
.fs5_c00047{font-size:81.000000px;}
.fs2_c00047{font-size:81.750000px;}
.fsb_c00047{font-size:82.500000px;}
.fs9_c00047{font-size:83.250000px;}
.fs3_c00047{font-size:84.750000px;}
.y0_c00047{bottom:0.000000px;}
.y27_c00047{bottom:186.120270px;}
.y25_c00047{bottom:215.999385px;}
.y26_c00047{bottom:216.000000px;}
.y24_c00047{bottom:245.879100px;}
.y22_c00047{bottom:275.398590px;}
.y23_c00047{bottom:275.398635px;}
.y20_c00047{bottom:305.638050px;}
.y21_c00047{bottom:305.638500px;}
.y1f_c00047{bottom:335.159385px;}
.y1e_c00047{bottom:365.039115px;}
.y1d_c00047{bottom:394.558635px;}
.y1c_c00047{bottom:454.319820px;}
.y1b_c00047{bottom:514.440405px;}
.y1a_c00047{bottom:544.320120px;}
.y18_c00047{bottom:574.199040px;}
.y19_c00047{bottom:574.199850px;}
.y16_c00047{bottom:604.078080px;}
.y17_c00047{bottom:604.078770px;}
.y15_c00047{bottom:633.239220px;}
.y14_c00047{bottom:663.119985px;}
.y13_c00047{bottom:663.120165px;}
.y12_c00047{bottom:692.639700px;}
.y11_c00047{bottom:692.640495px;}
.y10_c00047{bottom:722.880405px;}
.yf_c00047{bottom:752.760135px;}
.ye_c00047{bottom:783.000900px;}
.yd_c00047{bottom:813.240810px;}
.yc_c00047{bottom:843.120525px;}
.yb_c00047{bottom:873.000255px;}
.ya_c00047{bottom:902.879970px;}
.y9_c00047{bottom:902.880390px;}
.y8_c00047{bottom:932.399925px;}
.y7_c00047{bottom:992.159370px;}
.y5_c00047{bottom:1051.559640px;}
.y6_c00047{bottom:1051.559685px;}
.y3_c00047{bottom:1081.798215px;}
.y4_c00047{bottom:1081.799565px;}
.y2_c00047{bottom:1111.677930px;}
.y1_c00047{bottom:1141.919955px;}
.h5_c00047{height:57.814453px;}
.h8_c00047{height:63.002930px;}
.h7_c00047{height:71.964844px;}
.hb_c00047{height:75.875977px;}
.he_c00047{height:76.552734px;}
.h1_c00047{height:77.288818px;}
.h2_c00047{height:78.760986px;}
.h9_c00047{height:80.121094px;}
.h3_c00047{height:80.233154px;}
.hd_c00047{height:80.876953px;}
.hc_c00047{height:80.969238px;}
.h6_c00047{height:81.632812px;}
.ha_c00047{height:82.274414px;}
.h4_c00047{height:83.177490px;}
.h0_c00047{height:1263.000000px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:137.519685px;}
.xb_c00047{left:138.597765px;}
.x23_c00047{left:139.678500px;}
.x1a_c00047{left:153.719100px;}
.xc_c00047{left:163.799565px;}
.x1f_c00047{left:189.718500px;}
.x8_c00047{left:204.479250px;}
.xd_c00047{left:224.999400px;}
.x16_c00047{left:252.719535px;}
.x17_c00047{left:267.839535px;}
.x6_c00047{left:276.118785px;}
.x7_c00047{left:290.159385px;}
.x4_c00047{left:294.119385px;}
.xe_c00047{left:295.918950px;}
.x26_c00047{left:313.199385px;}
.x20_c00047{left:316.798515px;}
.x5_c00047{left:332.279250px;}
.xf_c00047{left:345.958950px;}
.x9_c00047{left:356.398635px;}
.xa_c00047{left:378.000000px;}
.x21_c00047{left:383.759535px;}
.x10_c00047{left:398.518665px;}
.x22_c00047{left:410.759535px;}
.x11_c00047{left:427.679070px;}
.x2_c00047{left:442.078815px;}
.x12_c00047{left:447.479235px;}
.x3_c00047{left:457.559685px;}
.x27_c00047{left:487.079400px;}
.x24_c00047{left:491.398635px;}
.x25_c00047{left:517.319235px;}
.x13_c00047{left:536.399235px;}
.x28_c00047{left:554.759085px;}
.x1b_c00047{left:562.679070px;}
.x14_c00047{left:564.839535px;}
.x1c_c00047{left:576.719520px;}
.x15_c00047{left:606.598530px;}
.x18_c00047{left:629.279250px;}
.x19_c00047{left:642.238770px;}
.x1d_c00047{left:744.119985px;}
.x1e_c00047{left:757.799520px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls12_c00047{letter-spacing:-27.631600pt;}
.ls10_c00047{letter-spacing:-12.268900pt;}
.lsf_c00047{letter-spacing:-8.127280pt;}
.ls18_c00047{letter-spacing:-7.924000pt;}
.lsb_c00047{letter-spacing:-7.266700pt;}
.ls19_c00047{letter-spacing:-6.601000pt;}
.ls17_c00047{letter-spacing:-5.943000pt;}
.ls4_c00047{letter-spacing:-5.285000pt;}
.ls1d_c00047{letter-spacing:-4.664473pt;}
.ls7_c00047{letter-spacing:-4.619300pt;}
.lsa_c00047{letter-spacing:-4.578887pt;}
.ls8_c00047{letter-spacing:-3.961300pt;}
.ls16_c00047{letter-spacing:-3.718333pt;}
.ls14_c00047{letter-spacing:-3.564000pt;}
.ls3_c00047{letter-spacing:-3.304000pt;}
.ls1a_c00047{letter-spacing:-2.689267pt;}
.ls1c_c00047{letter-spacing:-2.641600pt;}
.ls0_c00047{letter-spacing:-2.639000pt;}
.ls1e_c00047{letter-spacing:-2.569000pt;}
.ls13_c00047{letter-spacing:-2.202480pt;}
.ls6_c00047{letter-spacing:-2.092073pt;}
.ls1_c00047{letter-spacing:-1.981700pt;}
.ls15_c00047{letter-spacing:-1.960000pt;}
.ls1b_c00047{letter-spacing:-1.413113pt;}
.ls9_c00047{letter-spacing:-1.323700pt;}
.ls5_c00047{letter-spacing:-0.658000pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.lsc_c00047{letter-spacing:0.660400pt;}
.lse_c00047{letter-spacing:4.644000pt;}
.ls11_c00047{letter-spacing:8.833333pt;}
.lsd_c00047{letter-spacing:12.914300pt;}
.ws0_c00047{word-spacing:0.000000pt;}
._23_c00047{margin-left:-21.129474pt;}
._16_c00047{margin-left:-7.431451pt;}
._10_c00047{margin-left:-5.805166pt;}
._11_c00047{margin-left:-4.517325pt;}
._12_c00047{margin-left:-3.563740pt;}
._13_c00047{margin-left:-2.608187pt;}
._6_c00047{margin-left:-1.428555pt;}
._9_c00047{width:1.350921pt;}
._7_c00047{width:2.241017pt;}
._5_c00047{width:3.716577pt;}
._8_c00047{width:5.112919pt;}
._1_c00047{width:6.778298pt;}
._4_c00047{width:7.786258pt;}
._2_c00047{width:8.891070pt;}
._a_c00047{width:9.852355pt;}
._0_c00047{width:10.821551pt;}
._b_c00047{width:11.811840pt;}
._3_c00047{width:13.054604pt;}
._15_c00047{width:14.145428pt;}
._c_c00047{width:15.104996pt;}
._d_c00047{width:16.880011pt;}
._e_c00047{width:17.882108pt;}
._f_c00047{width:19.594321pt;}
._1c_c00047{width:21.193742pt;}
._14_c00047{width:22.989334pt;}
._1d_c00047{width:25.426602pt;}
._1e_c00047{width:29.467874pt;}
._1a_c00047{width:30.761342pt;}
._1b_c00047{width:32.554913pt;}
._17_c00047{width:34.314053pt;}
._1f_c00047{width:35.285455pt;}
._18_c00047{width:36.338294pt;}
._19_c00047{width:37.793343pt;}
._21_c00047{width:43.179038pt;}
._20_c00047{width:48.724068pt;}
._22_c00047{width:50.917736pt;}
.fs4_c00047{font-size:52.000000pt;}
.fs7_c00047{font-size:56.666667pt;}
.fs6_c00047{font-size:61.333333pt;}
.fsa_c00047{font-size:64.666667pt;}
.fsc_c00047{font-size:69.333333pt;}
.fs0_c00047{font-size:70.000000pt;}
.fs8_c00047{font-size:70.666667pt;}
.fs1_c00047{font-size:71.333333pt;}
.fs5_c00047{font-size:72.000000pt;}
.fs2_c00047{font-size:72.666667pt;}
.fsb_c00047{font-size:73.333333pt;}
.fs9_c00047{font-size:74.000000pt;}
.fs3_c00047{font-size:75.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y27_c00047{bottom:165.440240pt;}
.y25_c00047{bottom:191.999453pt;}
.y26_c00047{bottom:192.000000pt;}
.y24_c00047{bottom:218.559200pt;}
.y22_c00047{bottom:244.798747pt;}
.y23_c00047{bottom:244.798787pt;}
.y20_c00047{bottom:271.678267pt;}
.y21_c00047{bottom:271.678667pt;}
.y1f_c00047{bottom:297.919453pt;}
.y1e_c00047{bottom:324.479213pt;}
.y1d_c00047{bottom:350.718787pt;}
.y1c_c00047{bottom:403.839840pt;}
.y1b_c00047{bottom:457.280360pt;}
.y1a_c00047{bottom:483.840107pt;}
.y18_c00047{bottom:510.399147pt;}
.y19_c00047{bottom:510.399867pt;}
.y16_c00047{bottom:536.958293pt;}
.y17_c00047{bottom:536.958907pt;}
.y15_c00047{bottom:562.879307pt;}
.y14_c00047{bottom:589.439987pt;}
.y13_c00047{bottom:589.440147pt;}
.y12_c00047{bottom:615.679733pt;}
.y11_c00047{bottom:615.680440pt;}
.y10_c00047{bottom:642.560360pt;}
.yf_c00047{bottom:669.120120pt;}
.ye_c00047{bottom:696.000800pt;}
.yd_c00047{bottom:722.880720pt;}
.yc_c00047{bottom:749.440467pt;}
.yb_c00047{bottom:776.000227pt;}
.ya_c00047{bottom:802.559973pt;}
.y9_c00047{bottom:802.560347pt;}
.y8_c00047{bottom:828.799933pt;}
.y7_c00047{bottom:881.919440pt;}
.y5_c00047{bottom:934.719680pt;}
.y6_c00047{bottom:934.719720pt;}
.y3_c00047{bottom:961.598413pt;}
.y4_c00047{bottom:961.599613pt;}
.y2_c00047{bottom:988.158160pt;}
.y1_c00047{bottom:1015.039960pt;}
.h5_c00047{height:51.390625pt;}
.h8_c00047{height:56.002604pt;}
.h7_c00047{height:63.968750pt;}
.hb_c00047{height:67.445312pt;}
.he_c00047{height:68.046875pt;}
.h1_c00047{height:68.701172pt;}
.h2_c00047{height:70.009766pt;}
.h9_c00047{height:71.218750pt;}
.h3_c00047{height:71.318359pt;}
.hd_c00047{height:71.890625pt;}
.hc_c00047{height:71.972656pt;}
.h6_c00047{height:72.562500pt;}
.ha_c00047{height:73.132813pt;}
.h4_c00047{height:73.935547pt;}
.h0_c00047{height:1122.666667pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:122.239720pt;}
.xb_c00047{left:123.198013pt;}
.x23_c00047{left:124.158667pt;}
.x1a_c00047{left:136.639200pt;}
.xc_c00047{left:145.599613pt;}
.x1f_c00047{left:168.638667pt;}
.x8_c00047{left:181.759333pt;}
.xd_c00047{left:199.999467pt;}
.x16_c00047{left:224.639587pt;}
.x17_c00047{left:238.079587pt;}
.x6_c00047{left:245.438920pt;}
.x7_c00047{left:257.919453pt;}
.x4_c00047{left:261.439453pt;}
.xe_c00047{left:263.039067pt;}
.x26_c00047{left:278.399453pt;}
.x20_c00047{left:281.598680pt;}
.x5_c00047{left:295.359333pt;}
.xf_c00047{left:307.519067pt;}
.x9_c00047{left:316.798787pt;}
.xa_c00047{left:336.000000pt;}
.x21_c00047{left:341.119587pt;}
.x10_c00047{left:354.238813pt;}
.x22_c00047{left:365.119587pt;}
.x11_c00047{left:380.159173pt;}
.x2_c00047{left:392.958947pt;}
.x12_c00047{left:397.759320pt;}
.x3_c00047{left:406.719720pt;}
.x27_c00047{left:432.959467pt;}
.x24_c00047{left:436.798787pt;}
.x25_c00047{left:459.839320pt;}
.x13_c00047{left:476.799320pt;}
.x28_c00047{left:493.119187pt;}
.x1b_c00047{left:500.159173pt;}
.x14_c00047{left:502.079587pt;}
.x1c_c00047{left:512.639573pt;}
.x15_c00047{left:539.198693pt;}
.x18_c00047{left:559.359333pt;}
.x19_c00047{left:570.878907pt;}
.x1d_c00047{left:661.439987pt;}
.x1e_c00047{left:673.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7bc18447f3bb88f21ef62e8.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_0aeb36ef6a409dc0bee9f076.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.432129;font-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_c00048{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m19_c00048{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1a_c00048{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00048{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.318548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318548,0.000000,0.000000,0.250000,0,0);}
.mf_c00048{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);}
.m12_c00048{transform:matrix(0.359649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359649,0.000000,0.000000,0.250000,0,0);}
.me_c00048{transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.377660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377660,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.390351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390351,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m13_c00048{transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.422727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422727,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.lsd_c00048{letter-spacing:-8.914500px;}
.lsf_c00048{letter-spacing:-8.175038px;}
.ls25_c00048{letter-spacing:-7.426125px;}
.ls12_c00048{letter-spacing:-6.685875px;}
.ls22_c00048{letter-spacing:-6.572700px;}
.ls11_c00048{letter-spacing:-6.000300px;}
.lse_c00048{letter-spacing:-5.945625px;}
.lsa_c00048{letter-spacing:-5.196713px;}
.lsb_c00048{letter-spacing:-4.456463px;}
.ls10_c00048{letter-spacing:-4.295100px;}
.ls4_c00048{letter-spacing:-3.717000px;}
.ls6_c00048{letter-spacing:-2.968875px;}
.ls7_c00048{letter-spacing:-2.229413px;}
.ls9_c00048{letter-spacing:-2.149875px;}
.ls5_c00048{letter-spacing:-1.489163px;}
.ls17_c00048{letter-spacing:-0.818925px;}
.ls23_c00048{letter-spacing:-0.793800px;}
.lsc_c00048{letter-spacing:-0.740250px;}
.ls8_c00048{letter-spacing:0.000000px;}
.ls20_c00048{letter-spacing:0.445200px;}
.ls18_c00048{letter-spacing:1.299375px;}
.ls19_c00048{letter-spacing:1.441103px;}
.ls16_c00048{letter-spacing:2.195550px;}
.ls13_c00048{letter-spacing:2.978625px;}
.ls1b_c00048{letter-spacing:3.052350px;}
.ls2_c00048{letter-spacing:3.266550px;}
.ls1e_c00048{letter-spacing:3.667125px;}
.ls3_c00048{letter-spacing:3.717000px;}
.ls24_c00048{letter-spacing:3.772440px;}
.ls21_c00048{letter-spacing:3.835103px;}
.ls1c_c00048{letter-spacing:3.989003px;}
.ls14_c00048{letter-spacing:4.373100px;}
.ls1f_c00048{letter-spacing:4.693950px;}
.ls1d_c00048{letter-spacing:7.653900px;}
.ls1a_c00048{letter-spacing:7.907865px;}
.ls15_c00048{letter-spacing:8.985300px;}
.ls0_c00048{letter-spacing:10.618575px;}
.ls1_c00048{letter-spacing:11.437500px;}
.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;}
._1a_c00048{margin-left:-41.600671px;}
._1b_c00048{margin-left:-17.848316px;}
._10_c00048{margin-left:-14.333050px;}
._f_c00048{margin-left:-9.135089px;}
._3_c00048{margin-left:-6.470858px;}
._20_c00048{margin-left:-5.259014px;}
._1_c00048{margin-left:-4.011347px;}
._d_c00048{margin-left:-2.058079px;}
._e_c00048{width:1.058459px;}
._5_c00048{width:2.521263px;}
._2_c00048{width:4.159114px;}
._11_c00048{width:5.687949px;}
._18_c00048{width:7.103280px;}
._0_c00048{width:8.229226px;}
._4_c00048{width:9.453774px;}
._1e_c00048{width:11.013455px;}
._12_c00048{width:12.177083px;}
._21_c00048{width:13.414869px;}
._16_c00048{width:14.416852px;}
._17_c00048{width:16.392630px;}
._1f_c00048{width:17.665794px;}
._15_c00048{width:19.606447px;}
._8_c00048{width:20.637195px;}
._9_c00048{width:22.284422px;}
._a_c00048{width:23.865500px;}
._13_c00048{width:25.855943px;}
._6_c00048{width:27.129152px;}
._19_c00048{width:29.022362px;}
._7_c00048{width:30.079647px;}
._b_c00048{width:31.532198px;}
._c_c00048{width:32.657372px;}
._14_c00048{width:34.299830px;}
._1d_c00048{width:35.547824px;}
._1c_c00048{width:38.397118px;}
._22_c00048{width:39.721738px;}
.fc0_c00048{color:transparent;}
.fs8_c00048{font-size:30.750000px;}
.fs7_c00048{font-size:32.250000px;}
.fs9_c00048{font-size:33.750000px;}
.fs6_c00048{font-size:35.250000px;}
.fsd_c00048{font-size:41.250000px;}
.fse_c00048{font-size:42.000000px;}
.fsa_c00048{font-size:42.750000px;}
.fsb_c00048{font-size:43.500000px;}
.fs5_c00048{font-size:45.750000px;}
.fsc_c00048{font-size:46.500000px;}
.fs3_c00048{font-size:77.250000px;}
.fs0_c00048{font-size:78.750000px;}
.fs2_c00048{font-size:80.250000px;}
.fs10_c00048{font-size:81.000000px;}
.fsf_c00048{font-size:81.750000px;}
.fs1_c00048{font-size:82.500000px;}
.fs11_c00048{font-size:84.000000px;}
.fs4_c00048{font-size:84.750000px;}
.y0_c00048{bottom:0.000000px;}
.y28_c00048{bottom:209.518140px;}
.y29_c00048{bottom:209.518635px;}
.y26_c00048{bottom:239.759535px;}
.y27_c00048{bottom:239.760150px;}
.y25_c00048{bottom:269.639265px;}
.y23_c00048{bottom:299.158035px;}
.y24_c00048{bottom:299.158785px;}
.y22_c00048{bottom:328.679370px;}
.y21_c00048{bottom:358.559100px;}
.y20_c00048{bottom:358.559325px;}
.y1f_c00048{bottom:388.078860px;}
.y1e_c00048{bottom:418.318770px;}
.y1d_c00048{bottom:448.199385px;}
.y1c_c00048{bottom:448.199760px;}
.y1a_c00048{bottom:478.799835px;}
.y1b_c00048{bottom:478.800150px;}
.y19_c00048{bottom:508.679565px;}
.y18_c00048{bottom:567.720435px;}
.y17_c00048{bottom:627.479880px;}
.y16_c00048{bottom:656.999400px;}
.y15_c00048{bottom:657.000345px;}
.y14_c00048{bottom:686.880060px;}
.y13_c00048{bottom:717.119985px;}
.y12_c00048{bottom:746.639700px;}
.y11_c00048{bottom:752.039985px;}
.y10_c00048{bottom:776.879475px;}
.yf_c00048{bottom:807.119385px;}
.ye_c00048{bottom:807.120465px;}
.yd_c00048{bottom:837.000180px;}
.yc_c00048{bottom:866.519715px;}
.yb_c00048{bottom:896.759490px;}
.ya_c00048{bottom:896.759910px;}
.y9_c00048{bottom:926.279430px;}
.y8_c00048{bottom:956.519355px;}
.y6_c00048{bottom:986.038860px;}
.y7_c00048{bottom:986.038875px;}
.y5_c00048{bottom:1016.278770px;}
.y4_c00048{bottom:1045.800105px;}
.y3_c00048{bottom:1075.679220px;}
.y2_c00048{bottom:1105.558935px;}
.y1_c00048{bottom:1135.438665px;}
.h9_c00048{height:32.071289px;}
.h8_c00048{height:33.635742px;}
.ha_c00048{height:35.200195px;}
.h7_c00048{height:36.764648px;}
.he_c00048{height:40.484619px;}
.hf_c00048{height:41.220703px;}
.hb_c00048{height:41.956787px;}
.hc_c00048{height:42.692871px;}
.hd_c00048{height:45.637207px;}
.h6_c00048{height:47.715820px;}
.h4_c00048{height:75.816650px;}
.h1_c00048{height:77.288818px;}
.h3_c00048{height:78.760986px;}
.h11_c00048{height:79.497070px;}
.h10_c00048{height:80.233154px;}
.h2_c00048{height:80.969238px;}
.h12_c00048{height:82.441406px;}
.h5_c00048{height:83.177490px;}
.h0_c00048{height:1263.000000px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x19_c00048{left:141.838920px;}
.x1_c00048{left:142.918350px;}
.x6_c00048{left:157.319850px;}
.xb_c00048{left:161.639100px;}
.x22_c00048{left:187.559685px;}
.xe_c00048{left:201.959400px;}
.x20_c00048{left:230.759100px;}
.x7_c00048{left:243.000000px;}
.x21_c00048{left:244.799535px;}
.x8_c00048{left:259.919535px;}
.xf_c00048{left:267.478635px;}
.x1a_c00048{left:282.598500px;}
.x1e_c00048{left:313.558635px;}
.x10_c00048{left:314.998950px;}
.x1f_c00048{left:328.319250px;}
.xc_c00048{left:383.039385px;}
.xd_c00048{left:396.719100px;}
.x9_c00048{left:405.000000px;}
.x2_c00048{left:420.838530px;}
.x11_c00048{left:427.319820px;}
.xa_c00048{left:431.639100px;}
.x3_c00048{left:435.239820px;}
.x12_c00048{left:456.839535px;}
.x1b_c00048{left:502.558635px;}
.x14_c00048{left:514.079400px;}
.x23_c00048{left:515.878920px;}
.x24_c00048{left:536.399235px;}
.x1c_c00048{left:550.798920px;}
.x15_c00048{left:601.199850px;}
.x16_c00048{left:622.438620px;}
.x25_c00048{left:631.439670px;}
.x17_c00048{left:646.559685px;}
.x4_c00048{left:729.359250px;}
.x13_c00048{left:743.759085px;}
.x5_c00048{left:747.719100px;}
.x1d_c00048{left:764.279250px;}
.x18_c00048{left:766.078770px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.lsd_c00048{letter-spacing:-7.924000pt;}
.lsf_c00048{letter-spacing:-7.266700pt;}
.ls25_c00048{letter-spacing:-6.601000pt;}
.ls12_c00048{letter-spacing:-5.943000pt;}
.ls22_c00048{letter-spacing:-5.842400pt;}
.ls11_c00048{letter-spacing:-5.333600pt;}
.lse_c00048{letter-spacing:-5.285000pt;}
.lsa_c00048{letter-spacing:-4.619300pt;}
.lsb_c00048{letter-spacing:-3.961300pt;}
.ls10_c00048{letter-spacing:-3.817867pt;}
.ls4_c00048{letter-spacing:-3.304000pt;}
.ls6_c00048{letter-spacing:-2.639000pt;}
.ls7_c00048{letter-spacing:-1.981700pt;}
.ls9_c00048{letter-spacing:-1.911000pt;}
.ls5_c00048{letter-spacing:-1.323700pt;}
.ls17_c00048{letter-spacing:-0.727933pt;}
.ls23_c00048{letter-spacing:-0.705600pt;}
.lsc_c00048{letter-spacing:-0.658000pt;}
.ls8_c00048{letter-spacing:0.000000pt;}
.ls20_c00048{letter-spacing:0.395733pt;}
.ls18_c00048{letter-spacing:1.155000pt;}
.ls19_c00048{letter-spacing:1.280980pt;}
.ls16_c00048{letter-spacing:1.951600pt;}
.ls13_c00048{letter-spacing:2.647667pt;}
.ls1b_c00048{letter-spacing:2.713200pt;}
.ls2_c00048{letter-spacing:2.903600pt;}
.ls1e_c00048{letter-spacing:3.259667pt;}
.ls3_c00048{letter-spacing:3.304000pt;}
.ls24_c00048{letter-spacing:3.353280pt;}
.ls21_c00048{letter-spacing:3.408980pt;}
.ls1c_c00048{letter-spacing:3.545780pt;}
.ls14_c00048{letter-spacing:3.887200pt;}
.ls1f_c00048{letter-spacing:4.172400pt;}
.ls1d_c00048{letter-spacing:6.803467pt;}
.ls1a_c00048{letter-spacing:7.029213pt;}
.ls15_c00048{letter-spacing:7.986933pt;}
.ls0_c00048{letter-spacing:9.438733pt;}
.ls1_c00048{letter-spacing:10.166667pt;}
.ws0_c00048{word-spacing:0.000000pt;}
._1a_c00048{margin-left:-36.978374pt;}
._1b_c00048{margin-left:-15.865170pt;}
._10_c00048{margin-left:-12.740489pt;}
._f_c00048{margin-left:-8.120079pt;}
._3_c00048{margin-left:-5.751874pt;}
._20_c00048{margin-left:-4.674679pt;}
._1_c00048{margin-left:-3.565642pt;}
._d_c00048{margin-left:-1.829404pt;}
._e_c00048{width:0.940853pt;}
._5_c00048{width:2.241123pt;}
._2_c00048{width:3.696991pt;}
._11_c00048{width:5.055955pt;}
._18_c00048{width:6.314026pt;}
._0_c00048{width:7.314868pt;}
._4_c00048{width:8.403355pt;}
._1e_c00048{width:9.789738pt;}
._12_c00048{width:10.824074pt;}
._21_c00048{width:11.924328pt;}
._16_c00048{width:12.814979pt;}
._17_c00048{width:14.571226pt;}
._1f_c00048{width:15.702928pt;}
._15_c00048{width:17.427953pt;}
._8_c00048{width:18.344174pt;}
._9_c00048{width:19.808375pt;}
._a_c00048{width:21.213777pt;}
._13_c00048{width:22.983060pt;}
._6_c00048{width:24.114802pt;}
._19_c00048{width:25.797655pt;}
._7_c00048{width:26.737464pt;}
._b_c00048{width:28.028621pt;}
._c_c00048{width:29.028775pt;}
._14_c00048{width:30.488738pt;}
._1d_c00048{width:31.598066pt;}
._1c_c00048{width:34.130772pt;}
._22_c00048{width:35.308211pt;}
.fs8_c00048{font-size:27.333333pt;}
.fs7_c00048{font-size:28.666667pt;}
.fs9_c00048{font-size:30.000000pt;}
.fs6_c00048{font-size:31.333333pt;}
.fsd_c00048{font-size:36.666667pt;}
.fse_c00048{font-size:37.333333pt;}
.fsa_c00048{font-size:38.000000pt;}
.fsb_c00048{font-size:38.666667pt;}
.fs5_c00048{font-size:40.666667pt;}
.fsc_c00048{font-size:41.333333pt;}
.fs3_c00048{font-size:68.666667pt;}
.fs0_c00048{font-size:70.000000pt;}
.fs2_c00048{font-size:71.333333pt;}
.fs10_c00048{font-size:72.000000pt;}
.fsf_c00048{font-size:72.666667pt;}
.fs1_c00048{font-size:73.333333pt;}
.fs11_c00048{font-size:74.666667pt;}
.fs4_c00048{font-size:75.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y28_c00048{bottom:186.238347pt;}
.y29_c00048{bottom:186.238787pt;}
.y26_c00048{bottom:213.119587pt;}
.y27_c00048{bottom:213.120133pt;}
.y25_c00048{bottom:239.679347pt;}
.y23_c00048{bottom:265.918253pt;}
.y24_c00048{bottom:265.918920pt;}
.y22_c00048{bottom:292.159440pt;}
.y21_c00048{bottom:318.719200pt;}
.y20_c00048{bottom:318.719400pt;}
.y1f_c00048{bottom:344.958987pt;}
.y1e_c00048{bottom:371.838907pt;}
.y1d_c00048{bottom:398.399453pt;}
.y1c_c00048{bottom:398.399787pt;}
.y1a_c00048{bottom:425.599853pt;}
.y1b_c00048{bottom:425.600133pt;}
.y19_c00048{bottom:452.159613pt;}
.y18_c00048{bottom:504.640387pt;}
.y17_c00048{bottom:557.759893pt;}
.y16_c00048{bottom:583.999467pt;}
.y15_c00048{bottom:584.000307pt;}
.y14_c00048{bottom:610.560053pt;}
.y13_c00048{bottom:637.439987pt;}
.y12_c00048{bottom:663.679733pt;}
.y11_c00048{bottom:668.479987pt;}
.y10_c00048{bottom:690.559533pt;}
.yf_c00048{bottom:717.439453pt;}
.ye_c00048{bottom:717.440413pt;}
.yd_c00048{bottom:744.000160pt;}
.yc_c00048{bottom:770.239747pt;}
.yb_c00048{bottom:797.119547pt;}
.ya_c00048{bottom:797.119920pt;}
.y9_c00048{bottom:823.359493pt;}
.y8_c00048{bottom:850.239427pt;}
.y6_c00048{bottom:876.478987pt;}
.y7_c00048{bottom:876.479000pt;}
.y5_c00048{bottom:903.358907pt;}
.y4_c00048{bottom:929.600093pt;}
.y3_c00048{bottom:956.159307pt;}
.y2_c00048{bottom:982.719053pt;}
.y1_c00048{bottom:1009.278813pt;}
.h9_c00048{height:28.507812pt;}
.h8_c00048{height:29.898438pt;}
.ha_c00048{height:31.289062pt;}
.h7_c00048{height:32.679688pt;}
.he_c00048{height:35.986328pt;}
.hf_c00048{height:36.640625pt;}
.hb_c00048{height:37.294922pt;}
.hc_c00048{height:37.949219pt;}
.hd_c00048{height:40.566406pt;}
.h6_c00048{height:42.414062pt;}
.h4_c00048{height:67.392578pt;}
.h1_c00048{height:68.701172pt;}
.h3_c00048{height:70.009766pt;}
.h11_c00048{height:70.664062pt;}
.h10_c00048{height:71.318359pt;}
.h2_c00048{height:71.972656pt;}
.h12_c00048{height:73.281250pt;}
.h5_c00048{height:73.935547pt;}
.h0_c00048{height:1122.666667pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x19_c00048{left:126.079040pt;}
.x1_c00048{left:127.038533pt;}
.x6_c00048{left:139.839867pt;}
.xb_c00048{left:143.679200pt;}
.x22_c00048{left:166.719720pt;}
.xe_c00048{left:179.519467pt;}
.x20_c00048{left:205.119200pt;}
.x7_c00048{left:216.000000pt;}
.x21_c00048{left:217.599587pt;}
.x8_c00048{left:231.039587pt;}
.xf_c00048{left:237.758787pt;}
.x1a_c00048{left:251.198667pt;}
.x1e_c00048{left:278.718787pt;}
.x10_c00048{left:279.999067pt;}
.x1f_c00048{left:291.839333pt;}
.xc_c00048{left:340.479453pt;}
.xd_c00048{left:352.639200pt;}
.x9_c00048{left:360.000000pt;}
.x2_c00048{left:374.078693pt;}
.x11_c00048{left:379.839840pt;}
.xa_c00048{left:383.679200pt;}
.x3_c00048{left:386.879840pt;}
.x12_c00048{left:406.079587pt;}
.x1b_c00048{left:446.718787pt;}
.x14_c00048{left:456.959467pt;}
.x23_c00048{left:458.559040pt;}
.x24_c00048{left:476.799320pt;}
.x1c_c00048{left:489.599040pt;}
.x15_c00048{left:534.399867pt;}
.x16_c00048{left:553.278773pt;}
.x25_c00048{left:561.279707pt;}
.x17_c00048{left:574.719720pt;}
.x4_c00048{left:648.319333pt;}
.x13_c00048{left:661.119187pt;}
.x5_c00048{left:664.639200pt;}
.x1d_c00048{left:679.359333pt;}
.x18_c00048{left:680.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c54aeb2f1341f58cd6120ad0.woff2')format("woff");}.ff1_c00049{font-family:ff1_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:ff2_c00049;src:url('chunks/assets/font_9862ef59128f6f59e7181ea0.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_7f81a97da0a64735a545b677.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.364746;font-style:normal;font-weight:normal;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_c041d6203c331f6e9aa14b0a.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00049{transform:matrix(0.122340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122340,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.138554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138554,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197222,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.338362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338362,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.362652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362652,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls8_c00049{letter-spacing:-28.805700px;}
.ls3_c00049{letter-spacing:-12.359925px;}
.ls7_c00049{letter-spacing:-0.965250px;}
.ls2_c00049{letter-spacing:0.000000px;}
.ls6_c00049{letter-spacing:4.596600px;}
.ls4_c00049{letter-spacing:5.728725px;}
.ls5_c00049{letter-spacing:5.784075px;}
.ls0_c00049{letter-spacing:8.025075px;}
.ls1_c00049{letter-spacing:20.250000px;}
.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;}
._0_c00049{width:11.798086px;}
.fc0_c00049{color:transparent;}
.fs3_c00049{font-size:51.000000px;}
.fs2_c00049{font-size:60.750000px;}
.fs1_c00049{font-size:62.250000px;}
.fs0_c00049{font-size:67.500000px;}
.fs4_c00049{font-size:70.500000px;}
.fs5_c00049{font-size:432.750000px;}
.fs6_c00049{font-size:609.000000px;}
.y0_c00049{bottom:0.000000px;}
.y5_c00049{bottom:187.559685px;}
.y4_c00049{bottom:224.279250px;}
.y3_c00049{bottom:458.279850px;}
.y9_c00049{bottom:621.000000px;}
.y8_c00049{bottom:656.999340px;}
.y2_c00049{bottom:819.719520px;}
.y7_c00049{bottom:960.840180px;}
.y6_c00049{bottom:984.239220px;}
.y1_c00049{bottom:1111.498905px;}
.h4_c00049{height:53.191406px;}
.h3_c00049{height:63.360352px;}
.h2_c00049{height:64.924805px;}
.h1_c00049{height:68.027344px;}
.h5_c00049{height:69.673828px;}
.h6_c00049{height:451.344727px;}
.h7_c00049{height:635.167969px;}
.h0_c00049{height:1263.000000px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x8_c00049{left:204.838515px;}
.x1_c00049{left:209.159385px;}
.x9_c00049{left:211.319850px;}
.x7_c00049{left:233.278800px;}
.x2_c00049{left:249.838950px;}
.x3_c00049{left:267.478635px;}
.x4_c00049{left:284.759100px;}
.x5_c00049{left:457.198785px;}
.x6_c00049{left:468.719565px;}
.xd_c00049{left:527.038920px;}
.xb_c00049{left:561.599460px;}
.xa_c00049{left:567.359250px;}
.xc_c00049{left:573.839190px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls8_c00049{letter-spacing:-25.605067pt;}
.ls3_c00049{letter-spacing:-10.986600pt;}
.ls7_c00049{letter-spacing:-0.858000pt;}
.ls2_c00049{letter-spacing:0.000000pt;}
.ls6_c00049{letter-spacing:4.085867pt;}
.ls4_c00049{letter-spacing:5.092200pt;}
.ls5_c00049{letter-spacing:5.141400pt;}
.ls0_c00049{letter-spacing:7.133400pt;}
.ls1_c00049{letter-spacing:18.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
._0_c00049{width:10.487187pt;}
.fs3_c00049{font-size:45.333333pt;}
.fs2_c00049{font-size:54.000000pt;}
.fs1_c00049{font-size:55.333333pt;}
.fs0_c00049{font-size:60.000000pt;}
.fs4_c00049{font-size:62.666667pt;}
.fs5_c00049{font-size:384.666667pt;}
.fs6_c00049{font-size:541.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y5_c00049{bottom:166.719720pt;}
.y4_c00049{bottom:199.359333pt;}
.y3_c00049{bottom:407.359867pt;}
.y9_c00049{bottom:552.000000pt;}
.y8_c00049{bottom:583.999413pt;}
.y2_c00049{bottom:728.639573pt;}
.y7_c00049{bottom:854.080160pt;}
.y6_c00049{bottom:874.879307pt;}
.y1_c00049{bottom:987.999027pt;}
.h4_c00049{height:47.281250pt;}
.h3_c00049{height:56.320312pt;}
.h2_c00049{height:57.710938pt;}
.h1_c00049{height:60.468750pt;}
.h5_c00049{height:61.932292pt;}
.h6_c00049{height:401.195312pt;}
.h7_c00049{height:564.593750pt;}
.h0_c00049{height:1122.666667pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x8_c00049{left:182.078680pt;}
.x1_c00049{left:185.919453pt;}
.x9_c00049{left:187.839867pt;}
.x7_c00049{left:207.358933pt;}
.x2_c00049{left:222.079067pt;}
.x3_c00049{left:237.758787pt;}
.x4_c00049{left:253.119200pt;}
.x5_c00049{left:406.398920pt;}
.x6_c00049{left:416.639613pt;}
.xd_c00049{left:468.479040pt;}
.xb_c00049{left:499.199520pt;}
.xa_c00049{left:504.319333pt;}
.xc_c00049{left:510.079280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65eaed1836578db53ab4e280.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_dcddd01b9dfc1cd010b5a390.woff2')format("woff");}.ff2_c00050{font-family:ff2_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:ff3_c00050;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.364746;font-style:normal;font-weight:normal;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_27eb4b35477022599f5ab20d.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_dca14b3720d2130f6b953fe4.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00050;src:url('chunks/assets/font_f9cc9f2cda21e4e87ef825d2.woff2')format("woff");}.ff6_c00050{font-family:ff6_c00050;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00050{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m8_c00050{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m17_c00050{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00050{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls18_c00050{letter-spacing:-15.093630px;}
.ls1a_c00050{letter-spacing:-13.570650px;}
.lsf_c00050{letter-spacing:-12.880928px;}
.ls1d_c00050{letter-spacing:-12.000900px;}
.ls11_c00050{letter-spacing:-10.576500px;}
.ls1b_c00050{letter-spacing:-9.058500px;}
.ls19_c00050{letter-spacing:-8.699100px;}
.ls10_c00050{letter-spacing:-8.466525px;}
.ls8_c00050{letter-spacing:-7.426125px;}
.lsd_c00050{letter-spacing:-6.685875px;}
.ls14_c00050{letter-spacing:-6.060075px;}
.ls6_c00050{letter-spacing:-5.945625px;}
.ls12_c00050{letter-spacing:-5.196713px;}
.ls7_c00050{letter-spacing:-4.456463px;}
.ls20_c00050{letter-spacing:-4.336800px;}
.ls17_c00050{letter-spacing:-3.856410px;}
.ls5_c00050{letter-spacing:-3.717000px;}
.lsb_c00050{letter-spacing:-3.499335px;}
.ls2_c00050{letter-spacing:-3.028950px;}
.ls16_c00050{letter-spacing:-3.001350px;}
.ls4_c00050{letter-spacing:-2.968875px;}
.ls3_c00050{letter-spacing:-2.229413px;}
.ls13_c00050{letter-spacing:-1.569600px;}
.lse_c00050{letter-spacing:-1.489163px;}
.lsc_c00050{letter-spacing:-1.396800px;}
.ls15_c00050{letter-spacing:-0.811125px;}
.ls1f_c00050{letter-spacing:-0.764400px;}
.ls9_c00050{letter-spacing:-0.740250px;}
.lsa_c00050{letter-spacing:0.000000px;}
.ls1_c00050{letter-spacing:0.740250px;}
.ls0_c00050{letter-spacing:2.229413px;}
.ls1e_c00050{letter-spacing:3.705075px;}
.ls1c_c00050{letter-spacing:14.406038px;}
.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;}
._1c_c00050{margin-left:-7.557994px;}
._11_c00050{margin-left:-5.785124px;}
._10_c00050{margin-left:-4.436626px;}
._13_c00050{margin-left:-2.963526px;}
._12_c00050{margin-left:-1.099469px;}
._2_c00050{width:1.467484px;}
._14_c00050{width:2.592108px;}
._0_c00050{width:4.190377px;}
._3_c00050{width:5.489380px;}
._1_c00050{width:7.260869px;}
._15_c00050{width:8.603259px;}
._f_c00050{width:10.398893px;}
._e_c00050{width:11.417903px;}
._17_c00050{width:12.436467px;}
._d_c00050{width:14.532168px;}
._b_c00050{width:15.744101px;}
._16_c00050{width:17.528977px;}
._18_c00050{width:18.701476px;}
._9_c00050{width:19.799251px;}
._6_c00050{width:20.868809px;}
._a_c00050{width:22.313946px;}
._8_c00050{width:24.068585px;}
._4_c00050{width:26.967596px;}
._c_c00050{width:28.420281px;}
._7_c00050{width:30.318542px;}
._1b_c00050{width:31.372663px;}
._1a_c00050{width:32.854797px;}
._19_c00050{width:35.626619px;}
._5_c00050{width:93.090494px;}
.fc0_c00050{color:transparent;}
.fsc_c00050{font-size:67.500000px;}
.fsb_c00050{font-size:71.250000px;}
.fs2_c00050{font-size:72.750000px;}
.fs3_c00050{font-size:73.500000px;}
.fs8_c00050{font-size:77.250000px;}
.fsd_c00050{font-size:78.000000px;}
.fs1_c00050{font-size:78.750000px;}
.fs0_c00050{font-size:79.500000px;}
.fs4_c00050{font-size:80.250000px;}
.fs9_c00050{font-size:81.000000px;}
.fs7_c00050{font-size:81.750000px;}
.fs6_c00050{font-size:82.500000px;}
.fs5_c00050{font-size:83.250000px;}
.fsa_c00050{font-size:87.000000px;}
.y0_c00050{bottom:0.000000px;}
.y28_c00050{bottom:184.680750px;}
.y26_c00050{bottom:214.919820px;}
.y27_c00050{bottom:214.920600px;}
.y25_c00050{bottom:244.799535px;}
.y24_c00050{bottom:244.801485px;}
.y23_c00050{bottom:274.681200px;}
.y22_c00050{bottom:304.560930px;}
.y21_c00050{bottom:334.440645px;}
.y20_c00050{bottom:384.840585px;}
.y1f_c00050{bottom:406.799565px;}
.y1e_c00050{bottom:428.039985px;}
.y1d_c00050{bottom:479.521155px;}
.y1c_c00050{bottom:509.400885px;}
.y1b_c00050{bottom:539.279850px;}
.y1a_c00050{bottom:539.280870px;}
.y19_c00050{bottom:568.800405px;}
.y18_c00050{bottom:598.680135px;}
.y16_c00050{bottom:627.840015px;}
.y17_c00050{bottom:627.840585px;}
.y14_c00050{bottom:657.900165px;}
.y15_c00050{bottom:657.900885px;}
.y13_c00050{bottom:687.961035px;}
.y12_c00050{bottom:687.961170px;}
.y11_c00050{bottom:718.201080px;}
.y10_c00050{bottom:777.600330px;}
.yf_c00050{bottom:807.840255px;}
.ye_c00050{bottom:837.719970px;}
.yd_c00050{bottom:867.959880px;}
.yc_c00050{bottom:898.199805px;}
.yb_c00050{bottom:898.199985px;}
.y9_c00050{bottom:927.719280px;}
.ya_c00050{bottom:927.719520px;}
.y8_c00050{bottom:957.961305px;}
.y7_c00050{bottom:987.480840px;}
.y6_c00050{bottom:987.481800px;}
.y5_c00050{bottom:1017.361515px;}
.y4_c00050{bottom:1047.241245px;}
.y3_c00050{bottom:1077.839535px;}
.y2_c00050{bottom:1107.000900px;}
.y1_c00050{bottom:1136.880615px;}
.h13_c00050{height:70.400391px;}
.h5_c00050{height:71.400146px;}
.h4_c00050{height:72.136230px;}
.h3_c00050{height:73.318359px;}
.h11_c00050{height:74.311523px;}
.hd_c00050{height:75.816650px;}
.ha_c00050{height:75.875977px;}
.h14_c00050{height:76.552734px;}
.h2_c00050{height:77.288818px;}
.h1_c00050{height:78.024902px;}
.h10_c00050{height:78.568359px;}
.hc_c00050{height:78.760986px;}
.h6_c00050{height:79.309570px;}
.h9_c00050{height:80.233154px;}
.h12_c00050{height:80.791992px;}
.hb_c00050{height:80.969238px;}
.h8_c00050{height:81.533203px;}
.he_c00050{height:81.632812px;}
.h7_c00050{height:81.705322px;}
.hf_c00050{height:85.980469px;}
.h0_c00050{height:1263.000000px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.xa_c00050{left:139.678110px;}
.x1_c00050{left:140.759565px;}
.x1f_c00050{left:161.279850px;}
.x2_c00050{left:165.958350px;}
.x28_c00050{left:207.359850px;}
.xd_c00050{left:216.359250px;}
.x11_c00050{left:217.799535px;}
.x3_c00050{left:222.479685px;}
.x12_c00050{left:237.958950px;}
.x29_c00050{left:246.599100px;}
.xb_c00050{left:255.598500px;}
.x4_c00050{left:258.838515px;}
.x15_c00050{left:276.838950px;}
.xc_c00050{left:280.078785px;}
.x5_c00050{left:282.239250px;}
.x24_c00050{left:290.159385px;}
.x22_c00050{left:303.118785px;}
.x25_c00050{left:304.559100px;}
.x23_c00050{left:326.878950px;}
.x20_c00050{left:357.479685px;}
.x19_c00050{left:365.759100px;}
.xe_c00050{left:407.878920px;}
.x21_c00050{left:432.359250px;}
.x1d_c00050{left:462.958335px;}
.x16_c00050{left:464.398635px;}
.x2b_c00050{left:471.959385px;}
.x1e_c00050{left:476.998950px;}
.x2c_c00050{left:488.519670px;}
.xf_c00050{left:497.878320px;}
.x10_c00050{left:544.319235px;}
.x1a_c00050{left:556.919535px;}
.x13_c00050{left:637.919535px;}
.x17_c00050{left:654.838950px;}
.x14_c00050{left:658.439670px;}
.x8_c00050{left:672.478635px;}
.x6_c00050{left:675.359250px;}
.x1b_c00050{left:691.199385px;}
.x9_c00050{left:693.359850px;}
.x7_c00050{left:694.798560px;}
.x1c_c00050{left:708.118785px;}
.x26_c00050{left:729.359250px;}
.x18_c00050{left:743.038920px;}
.x27_c00050{left:752.399235px;}
.x2a_c00050{left:761.759535px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls18_c00050{letter-spacing:-13.416560pt;}
.ls1a_c00050{letter-spacing:-12.062800pt;}
.lsf_c00050{letter-spacing:-11.449713pt;}
.ls1d_c00050{letter-spacing:-10.667467pt;}
.ls11_c00050{letter-spacing:-9.401333pt;}
.ls1b_c00050{letter-spacing:-8.052000pt;}
.ls19_c00050{letter-spacing:-7.732533pt;}
.ls10_c00050{letter-spacing:-7.525800pt;}
.ls8_c00050{letter-spacing:-6.601000pt;}
.lsd_c00050{letter-spacing:-5.943000pt;}
.ls14_c00050{letter-spacing:-5.386733pt;}
.ls6_c00050{letter-spacing:-5.285000pt;}
.ls12_c00050{letter-spacing:-4.619300pt;}
.ls7_c00050{letter-spacing:-3.961300pt;}
.ls20_c00050{letter-spacing:-3.854933pt;}
.ls17_c00050{letter-spacing:-3.427920pt;}
.ls5_c00050{letter-spacing:-3.304000pt;}
.lsb_c00050{letter-spacing:-3.110520pt;}
.ls2_c00050{letter-spacing:-2.692400pt;}
.ls16_c00050{letter-spacing:-2.667867pt;}
.ls4_c00050{letter-spacing:-2.639000pt;}
.ls3_c00050{letter-spacing:-1.981700pt;}
.ls13_c00050{letter-spacing:-1.395200pt;}
.lse_c00050{letter-spacing:-1.323700pt;}
.lsc_c00050{letter-spacing:-1.241600pt;}
.ls15_c00050{letter-spacing:-0.721000pt;}
.ls1f_c00050{letter-spacing:-0.679467pt;}
.ls9_c00050{letter-spacing:-0.658000pt;}
.lsa_c00050{letter-spacing:0.000000pt;}
.ls1_c00050{letter-spacing:0.658000pt;}
.ls0_c00050{letter-spacing:1.981700pt;}
.ls1e_c00050{letter-spacing:3.293400pt;}
.ls1c_c00050{letter-spacing:12.805367pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._1c_c00050{margin-left:-6.718217pt;}
._11_c00050{margin-left:-5.142332pt;}
._10_c00050{margin-left:-3.943668pt;}
._13_c00050{margin-left:-2.634245pt;}
._12_c00050{margin-left:-0.977306pt;}
._2_c00050{width:1.304430pt;}
._14_c00050{width:2.304096pt;}
._0_c00050{width:3.724779pt;}
._3_c00050{width:4.879449pt;}
._1_c00050{width:6.454106pt;}
._15_c00050{width:7.647342pt;}
._f_c00050{width:9.243460pt;}
._e_c00050{width:10.149247pt;}
._17_c00050{width:11.054638pt;}
._d_c00050{width:12.917483pt;}
._b_c00050{width:13.994757pt;}
._16_c00050{width:15.581313pt;}
._18_c00050{width:16.623534pt;}
._9_c00050{width:17.599334pt;}
._6_c00050{width:18.550053pt;}
._a_c00050{width:19.834619pt;}
._8_c00050{width:21.394298pt;}
._4_c00050{width:23.971196pt;}
._c_c00050{width:25.262472pt;}
._7_c00050{width:26.949815pt;}
._1b_c00050{width:27.886811pt;}
._1a_c00050{width:29.204264pt;}
._19_c00050{width:31.668106pt;}
._5_c00050{width:82.747106pt;}
.fsc_c00050{font-size:60.000000pt;}
.fsb_c00050{font-size:63.333333pt;}
.fs2_c00050{font-size:64.666667pt;}
.fs3_c00050{font-size:65.333333pt;}
.fs8_c00050{font-size:68.666667pt;}
.fsd_c00050{font-size:69.333333pt;}
.fs1_c00050{font-size:70.000000pt;}
.fs0_c00050{font-size:70.666667pt;}
.fs4_c00050{font-size:71.333333pt;}
.fs9_c00050{font-size:72.000000pt;}
.fs7_c00050{font-size:72.666667pt;}
.fs6_c00050{font-size:73.333333pt;}
.fs5_c00050{font-size:74.000000pt;}
.fsa_c00050{font-size:77.333333pt;}
.y0_c00050{bottom:0.000000pt;}
.y28_c00050{bottom:164.160667pt;}
.y26_c00050{bottom:191.039840pt;}
.y27_c00050{bottom:191.040533pt;}
.y25_c00050{bottom:217.599587pt;}
.y24_c00050{bottom:217.601320pt;}
.y23_c00050{bottom:244.161067pt;}
.y22_c00050{bottom:270.720827pt;}
.y21_c00050{bottom:297.280573pt;}
.y20_c00050{bottom:342.080520pt;}
.y1f_c00050{bottom:361.599613pt;}
.y1e_c00050{bottom:380.479987pt;}
.y1d_c00050{bottom:426.241027pt;}
.y1c_c00050{bottom:452.800787pt;}
.y1b_c00050{bottom:479.359867pt;}
.y1a_c00050{bottom:479.360773pt;}
.y19_c00050{bottom:505.600360pt;}
.y18_c00050{bottom:532.160120pt;}
.y16_c00050{bottom:558.080013pt;}
.y17_c00050{bottom:558.080520pt;}
.y14_c00050{bottom:584.800147pt;}
.y15_c00050{bottom:584.800787pt;}
.y13_c00050{bottom:611.520920pt;}
.y12_c00050{bottom:611.521040pt;}
.y11_c00050{bottom:638.400960pt;}
.y10_c00050{bottom:691.200293pt;}
.yf_c00050{bottom:718.080227pt;}
.ye_c00050{bottom:744.639973pt;}
.yd_c00050{bottom:771.519893pt;}
.yc_c00050{bottom:798.399827pt;}
.yb_c00050{bottom:798.399987pt;}
.y9_c00050{bottom:824.639360pt;}
.ya_c00050{bottom:824.639573pt;}
.y8_c00050{bottom:851.521160pt;}
.y7_c00050{bottom:877.760747pt;}
.y6_c00050{bottom:877.761600pt;}
.y5_c00050{bottom:904.321347pt;}
.y4_c00050{bottom:930.881107pt;}
.y3_c00050{bottom:958.079587pt;}
.y2_c00050{bottom:984.000800pt;}
.y1_c00050{bottom:1010.560547pt;}
.h13_c00050{height:62.578125pt;}
.h5_c00050{height:63.466797pt;}
.h4_c00050{height:64.121094pt;}
.h3_c00050{height:65.171875pt;}
.h11_c00050{height:66.054688pt;}
.hd_c00050{height:67.392578pt;}
.ha_c00050{height:67.445312pt;}
.h14_c00050{height:68.046875pt;}
.h2_c00050{height:68.701172pt;}
.h1_c00050{height:69.355469pt;}
.h10_c00050{height:69.838542pt;}
.hc_c00050{height:70.009766pt;}
.h6_c00050{height:70.497396pt;}
.h9_c00050{height:71.318359pt;}
.h12_c00050{height:71.815104pt;}
.hb_c00050{height:71.972656pt;}
.h8_c00050{height:72.473958pt;}
.he_c00050{height:72.562500pt;}
.h7_c00050{height:72.626953pt;}
.hf_c00050{height:76.427083pt;}
.h0_c00050{height:1122.666667pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.xa_c00050{left:124.158320pt;}
.x1_c00050{left:125.119613pt;}
.x1f_c00050{left:143.359867pt;}
.x2_c00050{left:147.518533pt;}
.x28_c00050{left:184.319867pt;}
.xd_c00050{left:192.319333pt;}
.x11_c00050{left:193.599587pt;}
.x3_c00050{left:197.759720pt;}
.x12_c00050{left:211.519067pt;}
.x29_c00050{left:219.199200pt;}
.xb_c00050{left:227.198667pt;}
.x4_c00050{left:230.078680pt;}
.x15_c00050{left:246.079067pt;}
.xc_c00050{left:248.958920pt;}
.x5_c00050{left:250.879333pt;}
.x24_c00050{left:257.919453pt;}
.x22_c00050{left:269.438920pt;}
.x25_c00050{left:270.719200pt;}
.x23_c00050{left:290.559067pt;}
.x20_c00050{left:317.759720pt;}
.x19_c00050{left:325.119200pt;}
.xe_c00050{left:362.559040pt;}
.x21_c00050{left:384.319333pt;}
.x1d_c00050{left:411.518520pt;}
.x16_c00050{left:412.798787pt;}
.x2b_c00050{left:419.519453pt;}
.x1e_c00050{left:423.999067pt;}
.x2c_c00050{left:434.239707pt;}
.xf_c00050{left:442.558507pt;}
.x10_c00050{left:483.839320pt;}
.x1a_c00050{left:495.039587pt;}
.x13_c00050{left:567.039587pt;}
.x17_c00050{left:582.079067pt;}
.x14_c00050{left:585.279707pt;}
.x8_c00050{left:597.758787pt;}
.x6_c00050{left:600.319333pt;}
.x1b_c00050{left:614.399453pt;}
.x9_c00050{left:616.319867pt;}
.x7_c00050{left:617.598720pt;}
.x1c_c00050{left:629.438920pt;}
.x26_c00050{left:648.319333pt;}
.x18_c00050{left:660.479040pt;}
.x27_c00050{left:668.799320pt;}
.x2a_c00050{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cee0c368ce7b23aa814715a5.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_4686210dd3ecda14c39d7964.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.364746;font-style:normal;font-weight:normal;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_40bb281bf82013e99b260530.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_9add95eebf1a576435b0cb97.woff2')format("woff");}.ff4_c00051{font-family:ff4_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:ff5_c00051;src:url('chunks/assets/font_aad8097e4e4b5dec807ba981.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00051;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff6_c00051{font-family:ff6_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:ff7_c00051;src:url('chunks/assets/font_e71c3201fd0be7225ec02ca7.woff2')format("woff");}.ff7_c00051{font-family:ff7_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;}
.md_c00051{transform:matrix(0.140351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140351,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00051{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.239209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239209,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m15_c00051{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m0_c00051{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m16_c00051{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);}
.m14_c00051{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls11_c00051{letter-spacing:-15.154425px;}
.ls1b_c00051{letter-spacing:-10.894350px;}
.lsb_c00051{letter-spacing:-10.402875px;}
.lsd_c00051{letter-spacing:-8.914500px;}
.ls17_c00051{letter-spacing:-8.085000px;}
.lsc_c00051{letter-spacing:-5.945625px;}
.ls9_c00051{letter-spacing:-5.196713px;}
.ls7_c00051{letter-spacing:-4.456463px;}
.ls20_c00051{letter-spacing:-4.115100px;}
.ls5_c00051{letter-spacing:-3.717000px;}
.ls1a_c00051{letter-spacing:-3.675367px;}
.ls3_c00051{letter-spacing:-2.968875px;}
.ls23_c00051{letter-spacing:-2.835075px;}
.ls1c_c00051{letter-spacing:-2.453288px;}
.ls24_c00051{letter-spacing:-2.269800px;}
.ls4_c00051{letter-spacing:-2.229413px;}
.ls19_c00051{letter-spacing:-2.180700px;}
.ls21_c00051{letter-spacing:-2.058195px;}
.ls1f_c00051{letter-spacing:-1.930500px;}
.ls12_c00051{letter-spacing:-1.574258px;}
.ls6_c00051{letter-spacing:-1.503345px;}
.lsa_c00051{letter-spacing:-1.489163px;}
.ls13_c00051{letter-spacing:-1.459380px;}
.ls1e_c00051{letter-spacing:-1.373850px;}
.ls22_c00051{letter-spacing:-0.768000px;}
.ls8_c00051{letter-spacing:-0.740250px;}
.ls14_c00051{letter-spacing:-0.735000px;}
.lsf_c00051{letter-spacing:0.000000px;}
.ls2_c00051{letter-spacing:0.683700px;}
.lse_c00051{letter-spacing:0.779535px;}
.ls1d_c00051{letter-spacing:2.873850px;}
.ls16_c00051{letter-spacing:4.009950px;}
.ls10_c00051{letter-spacing:4.336800px;}
.ls1_c00051{letter-spacing:4.804605px;}
.ls15_c00051{letter-spacing:5.269725px;}
.ls18_c00051{letter-spacing:5.880000px;}
.ls0_c00051{letter-spacing:16.504200px;}
.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;}
._1e_c00051{margin-left:-85.267298px;}
._2_c00051{margin-left:-27.666420px;}
._1d_c00051{margin-left:-6.587865px;}
._1f_c00051{margin-left:-5.208515px;}
._10_c00051{margin-left:-2.641602px;}
._12_c00051{width:1.402538px;}
._5_c00051{width:2.457416px;}
._11_c00051{width:3.841158px;}
._4_c00051{width:4.922024px;}
._13_c00051{width:5.993796px;}
._6_c00051{width:7.167394px;}
._f_c00051{width:8.275629px;}
._0_c00051{width:9.520518px;}
._1_c00051{width:11.071760px;}
._d_c00051{width:12.130932px;}
._3_c00051{width:13.361929px;}
._e_c00051{width:14.495498px;}
._7_c00051{width:16.589297px;}
._20_c00051{width:17.986678px;}
._b_c00051{width:19.305607px;}
._9_c00051{width:21.291117px;}
._15_c00051{width:23.591019px;}
._a_c00051{width:25.118130px;}
._8_c00051{width:27.003464px;}
._16_c00051{width:29.635809px;}
._14_c00051{width:31.101094px;}
._18_c00051{width:33.225814px;}
._19_c00051{width:34.659153px;}
._17_c00051{width:38.162399px;}
._c_c00051{width:43.610665px;}
._1a_c00051{width:50.725371px;}
._1c_c00051{width:83.803825px;}
._1b_c00051{width:149.940000px;}
.fc0_c00051{color:transparent;}
.fsa_c00051{font-size:27.750000px;}
.fsc_c00051{font-size:30.000000px;}
.fsf_c00051{font-size:33.750000px;}
.fs10_c00051{font-size:34.500000px;}
.fs9_c00051{font-size:36.750000px;}
.fsb_c00051{font-size:42.750000px;}
.fsd_c00051{font-size:44.250000px;}
.fs12_c00051{font-size:58.500000px;}
.fs13_c00051{font-size:60.000000px;}
.fs11_c00051{font-size:64.500000px;}
.fs2_c00051{font-size:76.500000px;}
.fs5_c00051{font-size:77.250000px;}
.fs4_c00051{font-size:78.000000px;}
.fs0_c00051{font-size:78.750000px;}
.fs1_c00051{font-size:79.500000px;}
.fs14_c00051{font-size:80.250000px;}
.fs3_c00051{font-size:82.500000px;}
.fs8_c00051{font-size:83.250000px;}
.fs7_c00051{font-size:84.750000px;}
.fs6_c00051{font-size:87.750000px;}
.fse_c00051{font-size:104.250000px;}
.y0_c00051{bottom:0.000000px;}
.y1c_c00051{bottom:250.920795px;}
.y1a_c00051{bottom:281.518545px;}
.y1b_c00051{bottom:281.519100px;}
.y19_c00051{bottom:310.679700px;}
.y18_c00051{bottom:340.560285px;}
.y17_c00051{bottom:348.839535px;}
.y16_c00051{bottom:370.079745px;}
.y15_c00051{bottom:429.479010px;}
.y13_c00051{bottom:460.079295px;}
.y14_c00051{bottom:460.079400px;}
.y12_c00051{bottom:600.839085px;}
.y10_c00051{bottom:630.358425px;}
.y11_c00051{bottom:630.358605px;}
.yf_c00051{bottom:771.120030px;}
.ye_c00051{bottom:801.359805px;}
.yd_c00051{bottom:801.362370px;}
.yc_c00051{bottom:831.242085px;}
.yb_c00051{bottom:861.481995px;}
.ya_c00051{bottom:921.243555px;}
.y9_c00051{bottom:942.122175px;}
.y8_c00051{bottom:963.721455px;}
.y7_c00051{bottom:984.601875px;}
.y6_c00051{bottom:1006.201170px;}
.y5_c00051{bottom:1027.079790px;}
.y4_c00051{bottom:1048.679070px;}
.y3_c00051{bottom:1070.278755px;}
.y2_c00051{bottom:1091.519355px;}
.y1_c00051{bottom:1134.359250px;}
.hb_c00051{height:28.942383px;}
.hd_c00051{height:31.289062px;}
.h10_c00051{height:35.200195px;}
.h11_c00051{height:35.982422px;}
.ha_c00051{height:36.319336px;}
.hc_c00051{height:42.249023px;}
.he_c00051{height:43.407349px;}
.h14_c00051{height:59.296875px;}
.h13_c00051{height:61.013672px;}
.h12_c00051{height:65.003906px;}
.h3_c00051{height:75.080566px;}
.h6_c00051{height:75.816650px;}
.h5_c00051{height:76.552734px;}
.h1_c00051{height:77.288818px;}
.h2_c00051{height:78.024902px;}
.h15_c00051{height:78.760986px;}
.h4_c00051{height:80.969238px;}
.h9_c00051{height:81.705322px;}
.h8_c00051{height:83.177490px;}
.h7_c00051{height:86.721680px;}
.hf_c00051{height:108.729492px;}
.h0_c00051{height:1263.000000px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x3_c00051{left:140.758185px;}
.x1f_c00051{left:141.839400px;}
.x13_c00051{left:173.878350px;}
.x20_c00051{left:186.478665px;}
.x8_c00051{left:191.519685px;}
.xe_c00051{left:193.319250px;}
.x1_c00051{left:195.479685px;}
.x9_c00051{left:211.319850px;}
.xf_c00051{left:224.638500px;}
.x14_c00051{left:256.679700px;}
.x1d_c00051{left:279.358635px;}
.x15_c00051{left:281.159850px;}
.x2_c00051{left:304.199910px;}
.x16_c00051{left:337.679700px;}
.xa_c00051{left:425.518665px;}
.x10_c00051{left:467.999400px;}
.xb_c00051{left:478.798515px;}
.x11_c00051{left:484.198785px;}
.x12_c00051{left:516.958335px;}
.x17_c00051{left:535.679070px;}
.x18_c00051{left:554.759085px;}
.x19_c00051{left:612.719100px;}
.x21_c00051{left:644.758530px;}
.x22_c00051{left:659.519070px;}
.x4_c00051{left:672.119385px;}
.x1a_c00051{left:674.279850px;}
.x23_c00051{left:683.638545px;}
.x1b_c00051{left:704.519670px;}
.x5_c00051{left:706.319235px;}
.xc_c00051{left:715.318770px;}
.x6_c00051{left:720.719100px;}
.xd_c00051{left:729.359250px;}
.x7_c00051{left:747.719100px;}
.x1e_c00051{left:766.078770px;}
.x1c_c00051{left:767.159820px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls11_c00051{letter-spacing:-13.470600pt;}
.ls1b_c00051{letter-spacing:-9.683867pt;}
.lsb_c00051{letter-spacing:-9.247000pt;}
.lsd_c00051{letter-spacing:-7.924000pt;}
.ls17_c00051{letter-spacing:-7.186667pt;}
.lsc_c00051{letter-spacing:-5.285000pt;}
.ls9_c00051{letter-spacing:-4.619300pt;}
.ls7_c00051{letter-spacing:-3.961300pt;}
.ls20_c00051{letter-spacing:-3.657867pt;}
.ls5_c00051{letter-spacing:-3.304000pt;}
.ls1a_c00051{letter-spacing:-3.266993pt;}
.ls3_c00051{letter-spacing:-2.639000pt;}
.ls23_c00051{letter-spacing:-2.520067pt;}
.ls1c_c00051{letter-spacing:-2.180700pt;}
.ls24_c00051{letter-spacing:-2.017600pt;}
.ls4_c00051{letter-spacing:-1.981700pt;}
.ls19_c00051{letter-spacing:-1.938400pt;}
.ls21_c00051{letter-spacing:-1.829507pt;}
.ls1f_c00051{letter-spacing:-1.716000pt;}
.ls12_c00051{letter-spacing:-1.399340pt;}
.ls6_c00051{letter-spacing:-1.336307pt;}
.lsa_c00051{letter-spacing:-1.323700pt;}
.ls13_c00051{letter-spacing:-1.297227pt;}
.ls1e_c00051{letter-spacing:-1.221200pt;}
.ls22_c00051{letter-spacing:-0.682667pt;}
.ls8_c00051{letter-spacing:-0.658000pt;}
.ls14_c00051{letter-spacing:-0.653333pt;}
.lsf_c00051{letter-spacing:0.000000pt;}
.ls2_c00051{letter-spacing:0.607733pt;}
.lse_c00051{letter-spacing:0.692920pt;}
.ls1d_c00051{letter-spacing:2.554533pt;}
.ls16_c00051{letter-spacing:3.564400pt;}
.ls10_c00051{letter-spacing:3.854933pt;}
.ls1_c00051{letter-spacing:4.270760pt;}
.ls15_c00051{letter-spacing:4.684200pt;}
.ls18_c00051{letter-spacing:5.226667pt;}
.ls0_c00051{letter-spacing:14.670400pt;}
.ws0_c00051{word-spacing:0.000000pt;}
._1e_c00051{margin-left:-75.793154pt;}
._2_c00051{margin-left:-24.592373pt;}
._1d_c00051{margin-left:-5.855880pt;}
._1f_c00051{margin-left:-4.629791pt;}
._10_c00051{margin-left:-2.348091pt;}
._12_c00051{width:1.246700pt;}
._5_c00051{width:2.184370pt;}
._11_c00051{width:3.414362pt;}
._4_c00051{width:4.375132pt;}
._13_c00051{width:5.327819pt;}
._6_c00051{width:6.371017pt;}
._f_c00051{width:7.356115pt;}
._0_c00051{width:8.462683pt;}
._1_c00051{width:9.841564pt;}
._d_c00051{width:10.783051pt;}
._3_c00051{width:11.877270pt;}
._e_c00051{width:12.884887pt;}
._7_c00051{width:14.746042pt;}
._20_c00051{width:15.988158pt;}
._b_c00051{width:17.160540pt;}
._9_c00051{width:18.925438pt;}
._15_c00051{width:20.969794pt;}
._a_c00051{width:22.327226pt;}
._8_c00051{width:24.003079pt;}
._16_c00051{width:26.342942pt;}
._14_c00051{width:27.645417pt;}
._18_c00051{width:29.534057pt;}
._19_c00051{width:30.808136pt;}
._17_c00051{width:33.922132pt;}
._c_c00051{width:38.765036pt;}
._1a_c00051{width:45.089219pt;}
._1c_c00051{width:74.492289pt;}
._1b_c00051{width:133.280000pt;}
.fsa_c00051{font-size:24.666667pt;}
.fsc_c00051{font-size:26.666667pt;}
.fsf_c00051{font-size:30.000000pt;}
.fs10_c00051{font-size:30.666667pt;}
.fs9_c00051{font-size:32.666667pt;}
.fsb_c00051{font-size:38.000000pt;}
.fsd_c00051{font-size:39.333333pt;}
.fs12_c00051{font-size:52.000000pt;}
.fs13_c00051{font-size:53.333333pt;}
.fs11_c00051{font-size:57.333333pt;}
.fs2_c00051{font-size:68.000000pt;}
.fs5_c00051{font-size:68.666667pt;}
.fs4_c00051{font-size:69.333333pt;}
.fs0_c00051{font-size:70.000000pt;}
.fs1_c00051{font-size:70.666667pt;}
.fs14_c00051{font-size:71.333333pt;}
.fs3_c00051{font-size:73.333333pt;}
.fs8_c00051{font-size:74.000000pt;}
.fs7_c00051{font-size:75.333333pt;}
.fs6_c00051{font-size:78.000000pt;}
.fse_c00051{font-size:92.666667pt;}
.y0_c00051{bottom:0.000000pt;}
.y1c_c00051{bottom:223.040707pt;}
.y1a_c00051{bottom:250.238707pt;}
.y1b_c00051{bottom:250.239200pt;}
.y19_c00051{bottom:276.159733pt;}
.y18_c00051{bottom:302.720253pt;}
.y17_c00051{bottom:310.079587pt;}
.y16_c00051{bottom:328.959773pt;}
.y15_c00051{bottom:381.759120pt;}
.y13_c00051{bottom:408.959373pt;}
.y14_c00051{bottom:408.959467pt;}
.y12_c00051{bottom:534.079187pt;}
.y10_c00051{bottom:560.318600pt;}
.y11_c00051{bottom:560.318760pt;}
.yf_c00051{bottom:685.440027pt;}
.ye_c00051{bottom:712.319827pt;}
.yd_c00051{bottom:712.322107pt;}
.yc_c00051{bottom:738.881853pt;}
.yb_c00051{bottom:765.761773pt;}
.ya_c00051{bottom:818.883160pt;}
.y9_c00051{bottom:837.441933pt;}
.y8_c00051{bottom:856.641293pt;}
.y7_c00051{bottom:875.201667pt;}
.y6_c00051{bottom:894.401040pt;}
.y5_c00051{bottom:912.959813pt;}
.y4_c00051{bottom:932.159173pt;}
.y3_c00051{bottom:951.358893pt;}
.y2_c00051{bottom:970.239427pt;}
.y1_c00051{bottom:1008.319333pt;}
.hb_c00051{height:25.726562pt;}
.hd_c00051{height:27.812500pt;}
.h10_c00051{height:31.289062pt;}
.h11_c00051{height:31.984375pt;}
.ha_c00051{height:32.283854pt;}
.hc_c00051{height:37.554687pt;}
.he_c00051{height:38.584310pt;}
.h14_c00051{height:52.708333pt;}
.h13_c00051{height:54.234375pt;}
.h12_c00051{height:57.781250pt;}
.h3_c00051{height:66.738281pt;}
.h6_c00051{height:67.392578pt;}
.h5_c00051{height:68.046875pt;}
.h1_c00051{height:68.701172pt;}
.h2_c00051{height:69.355469pt;}
.h15_c00051{height:70.009766pt;}
.h4_c00051{height:71.972656pt;}
.h9_c00051{height:72.626953pt;}
.h8_c00051{height:73.935547pt;}
.h7_c00051{height:77.085938pt;}
.hf_c00051{height:96.648438pt;}
.h0_c00051{height:1122.666667pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x3_c00051{left:125.118387pt;}
.x1f_c00051{left:126.079467pt;}
.x13_c00051{left:154.558533pt;}
.x20_c00051{left:165.758813pt;}
.x8_c00051{left:170.239720pt;}
.xe_c00051{left:171.839333pt;}
.x1_c00051{left:173.759720pt;}
.x9_c00051{left:187.839867pt;}
.xf_c00051{left:199.678667pt;}
.x14_c00051{left:228.159733pt;}
.x1d_c00051{left:248.318787pt;}
.x15_c00051{left:249.919867pt;}
.x2_c00051{left:270.399920pt;}
.x16_c00051{left:300.159733pt;}
.xa_c00051{left:378.238813pt;}
.x10_c00051{left:415.999467pt;}
.xb_c00051{left:425.598680pt;}
.x11_c00051{left:430.398920pt;}
.x12_c00051{left:459.518520pt;}
.x17_c00051{left:476.159173pt;}
.x18_c00051{left:493.119187pt;}
.x19_c00051{left:544.639200pt;}
.x21_c00051{left:573.118693pt;}
.x22_c00051{left:586.239173pt;}
.x4_c00051{left:597.439453pt;}
.x1a_c00051{left:599.359867pt;}
.x23_c00051{left:607.678707pt;}
.x1b_c00051{left:626.239707pt;}
.x5_c00051{left:627.839320pt;}
.xc_c00051{left:635.838907pt;}
.x6_c00051{left:640.639200pt;}
.xd_c00051{left:648.319333pt;}
.x7_c00051{left:664.639200pt;}
.x1e_c00051{left:680.958907pt;}
.x1c_c00051{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb48e4aa0a69ea55f0900553.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_1bb01487866db16c4b12cc5f.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_7af6e64eea9fcf72fc92e6af.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_a2ef759ac2a30cb4754e4c23.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00052{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.209596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209596,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00052{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00052{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls11_c00052{letter-spacing:-15.206400px;}
.ls10_c00052{letter-spacing:-8.400758px;}
.lse_c00052{letter-spacing:-8.175038px;}
.ls4_c00052{letter-spacing:-7.426125px;}
.lsb_c00052{letter-spacing:-5.945625px;}
.ls6_c00052{letter-spacing:-5.196713px;}
.ls16_c00052{letter-spacing:-4.629623px;}
.ls8_c00052{letter-spacing:-4.456463px;}
.ls5_c00052{letter-spacing:-3.717000px;}
.ls2_c00052{letter-spacing:-2.968875px;}
.ls0_c00052{letter-spacing:-2.229413px;}
.ls15_c00052{letter-spacing:-2.187135px;}
.ls1_c00052{letter-spacing:-1.489163px;}
.ls3_c00052{letter-spacing:-0.740250px;}
.ls7_c00052{letter-spacing:0.000000px;}
.lsc_c00052{letter-spacing:0.787800px;}
.lsd_c00052{letter-spacing:1.591200px;}
.ls14_c00052{letter-spacing:1.619468px;}
.ls17_c00052{letter-spacing:2.784600px;}
.lsa_c00052{letter-spacing:3.705075px;}
.lsf_c00052{letter-spacing:3.762855px;}
.ls9_c00052{letter-spacing:4.475850px;}
.ls12_c00052{letter-spacing:10.700798px;}
.ls13_c00052{letter-spacing:31.241775px;}
.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;}
._10_c00052{margin-left:-5.214513px;}
._f_c00052{margin-left:-3.746717px;}
._12_c00052{margin-left:-1.454379px;}
._e_c00052{width:1.149765px;}
._2_c00052{width:2.404520px;}
._4_c00052{width:3.806656px;}
._5_c00052{width:5.469737px;}
._0_c00052{width:6.853464px;}
._16_c00052{width:7.885698px;}
._1_c00052{width:9.000768px;}
._7_c00052{width:10.725334px;}
._17_c00052{width:11.728356px;}
._3_c00052{width:13.148397px;}
._15_c00052{width:14.411042px;}
._11_c00052{width:15.880532px;}
._6_c00052{width:18.049307px;}
._14_c00052{width:20.548327px;}
._13_c00052{width:22.836059px;}
._8_c00052{width:23.885142px;}
._9_c00052{width:26.048479px;}
._b_c00052{width:28.666991px;}
._a_c00052{width:30.586500px;}
._d_c00052{width:32.526053px;}
._c_c00052{width:35.741728px;}
.fc0_c00052{color:transparent;}
.fsa_c00052{font-size:53.250000px;}
.fse_c00052{font-size:68.250000px;}
.fsc_c00052{font-size:71.250000px;}
.fs1_c00052{font-size:72.000000px;}
.fs9_c00052{font-size:72.750000px;}
.fs8_c00052{font-size:74.250000px;}
.fsd_c00052{font-size:76.500000px;}
.fs5_c00052{font-size:78.000000px;}
.fs0_c00052{font-size:78.750000px;}
.fs3_c00052{font-size:79.500000px;}
.fs2_c00052{font-size:80.250000px;}
.fsb_c00052{font-size:81.750000px;}
.fs4_c00052{font-size:82.500000px;}
.fs7_c00052{font-size:83.250000px;}
.fs6_c00052{font-size:85.500000px;}
.y0_c00052{bottom:0.000000px;}
.y21_c00052{bottom:259.922175px;}
.y20_c00052{bottom:290.162085px;}
.y1f_c00052{bottom:320.041815px;}
.y1e_c00052{bottom:349.561335px;}
.y1c_c00052{bottom:378.720045px;}
.y1d_c00052{bottom:378.720135px;}
.y1b_c00052{bottom:409.320435px;}
.y1a_c00052{bottom:469.800570px;}
.y19_c00052{bottom:529.202070px;}
.y18_c00052{bottom:558.721590px;}
.y17_c00052{bottom:588.601320px;}
.y16_c00052{bottom:588.601590px;}
.y15_c00052{bottom:618.481320px;}
.y14_c00052{bottom:648.361035px;}
.y13_c00052{bottom:677.880570px;}
.y12_c00052{bottom:677.881455px;}
.y11_c00052{bottom:707.761185px;}
.y10_c00052{bottom:767.520720px;}
.yf_c00052{bottom:767.523420px;}
.ye_c00052{bottom:797.403150px;}
.yd_c00052{bottom:828.001440px;}
.yb_c00052{bottom:857.880525px;}
.yc_c00052{bottom:857.881170px;}
.ya_c00052{bottom:887.760240px;}
.y8_c00052{bottom:917.281110px;}
.y9_c00052{bottom:917.281590px;}
.y7_c00052{bottom:947.521020px;}
.y6_c00052{bottom:1006.920270px;}
.y4_c00052{bottom:1028.520885px;}
.y5_c00052{bottom:1028.521365px;}
.y3_c00052{bottom:1049.759670px;}
.y2_c00052{bottom:1109.521230px;}
.y1_c00052{bottom:1139.761140px;}
.hb_c00052{height:55.538086px;}
.h10_c00052{height:66.983643px;}
.hd_c00052{height:74.311523px;}
.he_c00052{height:75.080566px;}
.h2_c00052{height:75.093750px;}
.ha_c00052{height:75.875977px;}
.h6_c00052{height:76.552734px;}
.h1_c00052{height:77.288818px;}
.h9_c00052{height:77.440430px;}
.h4_c00052{height:78.024902px;}
.h3_c00052{height:78.760986px;}
.hf_c00052{height:80.876953px;}
.h5_c00052{height:80.969238px;}
.h8_c00052{height:81.705322px;}
.hc_c00052{height:82.388672px;}
.h7_c00052{height:83.913574px;}
.h0_c00052{height:1263.000000px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:138.239850px;}
.x10_c00052{left:162.359250px;}
.xc_c00052{left:199.798950px;}
.x15_c00052{left:204.838515px;}
.xd_c00052{left:214.198785px;}
.x18_c00052{left:223.559100px;}
.x3_c00052{left:246.959445px;}
.x4_c00052{left:264.958950px;}
.x19_c00052{left:282.959400px;}
.x2_c00052{left:301.319715px;}
.x1a_c00052{left:314.639700px;}
.x16_c00052{left:349.918950px;}
.x6_c00052{left:356.038170px;}
.x17_c00052{left:373.679100px;}
.x1b_c00052{left:410.039385px;}
.x1c_c00052{left:423.359850px;}
.x1d_c00052{left:442.078815px;}
.x7_c00052{left:494.999400px;}
.x8_c00052{left:513.359250px;}
.x1e_c00052{left:517.319235px;}
.x5_c00052{left:524.878320px;}
.xe_c00052{left:530.639700px;}
.x9_c00052{left:538.198785px;}
.x1f_c00052{left:539.639100px;}
.xf_c00052{left:565.918950px;}
.x11_c00052{left:592.918950px;}
.x12_c00052{left:608.759085px;}
.x13_c00052{left:675.000000px;}
.xa_c00052{left:685.439670px;}
.x14_c00052{left:688.679670px;}
.xb_c00052{left:713.159820px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls11_c00052{letter-spacing:-13.516800pt;}
.ls10_c00052{letter-spacing:-7.467340pt;}
.lse_c00052{letter-spacing:-7.266700pt;}
.ls4_c00052{letter-spacing:-6.601000pt;}
.lsb_c00052{letter-spacing:-5.285000pt;}
.ls6_c00052{letter-spacing:-4.619300pt;}
.ls16_c00052{letter-spacing:-4.115220pt;}
.ls8_c00052{letter-spacing:-3.961300pt;}
.ls5_c00052{letter-spacing:-3.304000pt;}
.ls2_c00052{letter-spacing:-2.639000pt;}
.ls0_c00052{letter-spacing:-1.981700pt;}
.ls15_c00052{letter-spacing:-1.944120pt;}
.ls1_c00052{letter-spacing:-1.323700pt;}
.ls3_c00052{letter-spacing:-0.658000pt;}
.ls7_c00052{letter-spacing:0.000000pt;}
.lsc_c00052{letter-spacing:0.700267pt;}
.lsd_c00052{letter-spacing:1.414400pt;}
.ls14_c00052{letter-spacing:1.439527pt;}
.ls17_c00052{letter-spacing:2.475200pt;}
.lsa_c00052{letter-spacing:3.293400pt;}
.lsf_c00052{letter-spacing:3.344760pt;}
.ls9_c00052{letter-spacing:3.978533pt;}
.ls12_c00052{letter-spacing:9.511820pt;}
.ls13_c00052{letter-spacing:27.770467pt;}
.ws0_c00052{word-spacing:0.000000pt;}
._10_c00052{margin-left:-4.635123pt;}
._f_c00052{margin-left:-3.330415pt;}
._12_c00052{margin-left:-1.292781pt;}
._e_c00052{width:1.022013pt;}
._2_c00052{width:2.137351pt;}
._4_c00052{width:3.383694pt;}
._5_c00052{width:4.861989pt;}
._0_c00052{width:6.091968pt;}
._16_c00052{width:7.009509pt;}
._1_c00052{width:8.000683pt;}
._7_c00052{width:9.533630pt;}
._17_c00052{width:10.425206pt;}
._3_c00052{width:11.687464pt;}
._15_c00052{width:12.809815pt;}
._11_c00052{width:14.116028pt;}
._6_c00052{width:16.043828pt;}
._14_c00052{width:18.265179pt;}
._13_c00052{width:20.298719pt;}
._8_c00052{width:21.231238pt;}
._9_c00052{width:23.154204pt;}
._b_c00052{width:25.481770pt;}
._a_c00052{width:27.188000pt;}
._d_c00052{width:28.912047pt;}
._c_c00052{width:31.770425pt;}
.fsa_c00052{font-size:47.333333pt;}
.fse_c00052{font-size:60.666667pt;}
.fsc_c00052{font-size:63.333333pt;}
.fs1_c00052{font-size:64.000000pt;}
.fs9_c00052{font-size:64.666667pt;}
.fs8_c00052{font-size:66.000000pt;}
.fsd_c00052{font-size:68.000000pt;}
.fs5_c00052{font-size:69.333333pt;}
.fs0_c00052{font-size:70.000000pt;}
.fs3_c00052{font-size:70.666667pt;}
.fs2_c00052{font-size:71.333333pt;}
.fsb_c00052{font-size:72.666667pt;}
.fs4_c00052{font-size:73.333333pt;}
.fs7_c00052{font-size:74.000000pt;}
.fs6_c00052{font-size:76.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y21_c00052{bottom:231.041933pt;}
.y20_c00052{bottom:257.921853pt;}
.y1f_c00052{bottom:284.481613pt;}
.y1e_c00052{bottom:310.721187pt;}
.y1c_c00052{bottom:336.640040pt;}
.y1d_c00052{bottom:336.640120pt;}
.y1b_c00052{bottom:363.840387pt;}
.y1a_c00052{bottom:417.600507pt;}
.y19_c00052{bottom:470.401840pt;}
.y18_c00052{bottom:496.641413pt;}
.y17_c00052{bottom:523.201173pt;}
.y16_c00052{bottom:523.201413pt;}
.y15_c00052{bottom:549.761173pt;}
.y14_c00052{bottom:576.320920pt;}
.y13_c00052{bottom:602.560507pt;}
.y12_c00052{bottom:602.561293pt;}
.y11_c00052{bottom:629.121053pt;}
.y10_c00052{bottom:682.240640pt;}
.yf_c00052{bottom:682.243040pt;}
.ye_c00052{bottom:708.802800pt;}
.yd_c00052{bottom:736.001280pt;}
.yb_c00052{bottom:762.560467pt;}
.yc_c00052{bottom:762.561040pt;}
.ya_c00052{bottom:789.120213pt;}
.y8_c00052{bottom:815.360987pt;}
.y9_c00052{bottom:815.361413pt;}
.y7_c00052{bottom:842.240907pt;}
.y6_c00052{bottom:895.040240pt;}
.y4_c00052{bottom:914.240787pt;}
.y5_c00052{bottom:914.241213pt;}
.y3_c00052{bottom:933.119707pt;}
.y2_c00052{bottom:986.241093pt;}
.y1_c00052{bottom:1013.121013pt;}
.hb_c00052{height:49.367188pt;}
.h10_c00052{height:59.541016pt;}
.hd_c00052{height:66.054688pt;}
.he_c00052{height:66.738281pt;}
.h2_c00052{height:66.750000pt;}
.ha_c00052{height:67.445312pt;}
.h6_c00052{height:68.046875pt;}
.h1_c00052{height:68.701172pt;}
.h9_c00052{height:68.835938pt;}
.h4_c00052{height:69.355469pt;}
.h3_c00052{height:70.009766pt;}
.hf_c00052{height:71.890625pt;}
.h5_c00052{height:71.972656pt;}
.h8_c00052{height:72.626953pt;}
.hc_c00052{height:73.234375pt;}
.h7_c00052{height:74.589844pt;}
.h0_c00052{height:1122.666667pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:122.879867pt;}
.x10_c00052{left:144.319333pt;}
.xc_c00052{left:177.599067pt;}
.x15_c00052{left:182.078680pt;}
.xd_c00052{left:190.398920pt;}
.x18_c00052{left:198.719200pt;}
.x3_c00052{left:219.519507pt;}
.x4_c00052{left:235.519067pt;}
.x19_c00052{left:251.519467pt;}
.x2_c00052{left:267.839747pt;}
.x1a_c00052{left:279.679733pt;}
.x16_c00052{left:311.039067pt;}
.x6_c00052{left:316.478373pt;}
.x17_c00052{left:332.159200pt;}
.x1b_c00052{left:364.479453pt;}
.x1c_c00052{left:376.319867pt;}
.x1d_c00052{left:392.958947pt;}
.x7_c00052{left:439.999467pt;}
.x8_c00052{left:456.319333pt;}
.x1e_c00052{left:459.839320pt;}
.x5_c00052{left:466.558507pt;}
.xe_c00052{left:471.679733pt;}
.x9_c00052{left:478.398920pt;}
.x1f_c00052{left:479.679200pt;}
.xf_c00052{left:503.039067pt;}
.x11_c00052{left:527.039067pt;}
.x12_c00052{left:541.119187pt;}
.x13_c00052{left:600.000000pt;}
.xa_c00052{left:609.279707pt;}
.x14_c00052{left:612.159707pt;}
.xb_c00052{left:633.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fbbaa5ed201f1ef2f41b67e.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_e9ee20c792bd4e8ff96b55ce.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_1862c46d47677152df1c8a9e.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00053{transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls15_c00053{letter-spacing:-15.600375px;}
.lsd_c00053{letter-spacing:-15.510450px;}
.ls10_c00053{letter-spacing:-14.112000px;}
.ls8_c00053{letter-spacing:-12.687675px;}
.ls11_c00053{letter-spacing:-8.458800px;}
.lsf_c00053{letter-spacing:-7.426125px;}
.lsb_c00053{letter-spacing:-6.685875px;}
.lse_c00053{letter-spacing:-5.945625px;}
.ls9_c00053{letter-spacing:-5.247533px;}
.ls6_c00053{letter-spacing:-5.196713px;}
.lsa_c00053{letter-spacing:-4.456463px;}
.ls0_c00053{letter-spacing:-3.717000px;}
.ls4_c00053{letter-spacing:-3.364133px;}
.ls3_c00053{letter-spacing:-2.968875px;}
.ls1_c00053{letter-spacing:-2.229413px;}
.ls14_c00053{letter-spacing:-2.206433px;}
.ls5_c00053{letter-spacing:-1.489163px;}
.ls2_c00053{letter-spacing:-0.740250px;}
.lsc_c00053{letter-spacing:0.000000px;}
.ls12_c00053{letter-spacing:2.229413px;}
.ls7_c00053{letter-spacing:2.646555px;}
.ls16_c00053{letter-spacing:3.772440px;}
.ls13_c00053{letter-spacing:17.100713px;}
.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;}
._10_c00053{margin-left:-6.553441px;}
._f_c00053{margin-left:-4.644764px;}
._14_c00053{margin-left:-3.612262px;}
._e_c00053{margin-left:-2.538202px;}
._9_c00053{width:1.322435px;}
._a_c00053{width:2.473136px;}
._11_c00053{width:4.203467px;}
._6_c00053{width:5.382221px;}
._b_c00053{width:6.418066px;}
._13_c00053{width:7.426883px;}
._5_c00053{width:8.447721px;}
._7_c00053{width:9.460891px;}
._2_c00053{width:10.898941px;}
._8_c00053{width:12.381328px;}
._1_c00053{width:14.551811px;}
._3_c00053{width:15.597136px;}
._12_c00053{width:17.326649px;}
._c_c00053{width:18.443577px;}
._16_c00053{width:19.579048px;}
._4_c00053{width:21.061108px;}
._0_c00053{width:22.726893px;}
._d_c00053{width:24.726638px;}
._17_c00053{width:26.151731px;}
._15_c00053{width:27.438758px;}
._18_c00053{width:33.760036px;}
.fc0_c00053{color:transparent;}
.fs6_c00053{font-size:71.250000px;}
.fs0_c00053{font-size:78.750000px;}
.fs2_c00053{font-size:79.500000px;}
.fs5_c00053{font-size:80.250000px;}
.fs4_c00053{font-size:81.750000px;}
.fs3_c00053{font-size:82.500000px;}
.fs1_c00053{font-size:83.250000px;}
.fs7_c00053{font-size:84.000000px;}
.fs8_c00053{font-size:84.750000px;}
.y0_c00053{bottom:0.000000px;}
.y24_c00053{bottom:182.879565px;}
.y22_c00053{bottom:212.759475px;}
.y23_c00053{bottom:212.760150px;}
.y21_c00053{bottom:242.999385px;}
.y20_c00053{bottom:302.398635px;}
.y1e_c00053{bottom:331.919220px;}
.y1f_c00053{bottom:331.920000px;}
.y1d_c00053{bottom:361.798950px;}
.y1c_c00053{bottom:427.679070px;}
.y1b_c00053{bottom:427.679460px;}
.y1a_c00053{bottom:451.080000px;}
.y19_c00053{bottom:481.319820px;}
.y18_c00053{bottom:481.320810px;}
.y17_c00053{bottom:541.080255px;}
.y16_c00053{bottom:570.959970px;}
.y15_c00053{bottom:570.961575px;}
.y14_c00053{bottom:601.201485px;}
.y13_c00053{bottom:660.240255px;}
.y12_c00053{bottom:690.119985px;}
.y11_c00053{bottom:720.359895px;}
.y10_c00053{bottom:780.119340px;}
.yf_c00053{bottom:810.359250px;}
.ye_c00053{bottom:810.361260px;}
.yd_c00053{bottom:840.240990px;}
.yc_c00053{bottom:870.120705px;}
.yb_c00053{bottom:900.000435px;}
.ya_c00053{bottom:929.880150px;}
.y9_c00053{bottom:989.639610px;}
.y8_c00053{bottom:1019.879520px;}
.y7_c00053{bottom:1019.880405px;}
.y5_c00053{bottom:1049.759370px;}
.y6_c00053{bottom:1049.760135px;}
.y4_c00053{bottom:1079.639100px;}
.y3_c00053{bottom:1079.640090px;}
.y2_c00053{bottom:1109.159610px;}
.y1_c00053{bottom:1139.039340px;}
.ha_c00053{height:70.415039px;}
.h1_c00053{height:77.288818px;}
.h3_c00053{height:78.024902px;}
.h7_c00053{height:78.568359px;}
.h6_c00053{height:78.760986px;}
.h9_c00053{height:80.121094px;}
.h5_c00053{height:80.233154px;}
.hb_c00053{height:80.791992px;}
.h8_c00053{height:80.969238px;}
.h4_c00053{height:81.533203px;}
.h2_c00053{height:81.705322px;}
.hc_c00053{height:82.441406px;}
.hd_c00053{height:83.177490px;}
.h0_c00053{height:1263.000000px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:141.479715px;}
.x18_c00053{left:142.559100px;}
.xc_c00053{left:227.519100px;}
.x11_c00053{left:240.839535px;}
.xd_c00053{left:246.599100px;}
.x12_c00053{left:264.238785px;}
.x13_c00053{left:351.718500px;}
.x4_c00053{left:375.119385px;}
.x15_c00053{left:378.718530px;}
.x16_c00053{left:406.438665px;}
.x5_c00053{left:416.519070px;}
.x14_c00053{left:444.598530px;}
.x2_c00053{left:471.239220px;}
.x3_c00053{left:501.479235px;}
.xe_c00053{left:519.118785px;}
.xf_c00053{left:533.879520px;}
.x8_c00053{left:559.798515px;}
.x9_c00053{left:580.679670px;}
.x6_c00053{left:657.358605px;}
.x7_c00053{left:676.438620px;}
.xa_c00053{left:714.239220px;}
.xb_c00053{left:727.559685px;}
.x10_c00053{left:768.239220px;}
.x17_c00053{left:774.719055px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls15_c00053{letter-spacing:-13.867000pt;}
.lsd_c00053{letter-spacing:-13.787067pt;}
.ls10_c00053{letter-spacing:-12.544000pt;}
.ls8_c00053{letter-spacing:-11.277933pt;}
.ls11_c00053{letter-spacing:-7.518933pt;}
.lsf_c00053{letter-spacing:-6.601000pt;}
.lsb_c00053{letter-spacing:-5.943000pt;}
.lse_c00053{letter-spacing:-5.285000pt;}
.ls9_c00053{letter-spacing:-4.664473pt;}
.ls6_c00053{letter-spacing:-4.619300pt;}
.lsa_c00053{letter-spacing:-3.961300pt;}
.ls0_c00053{letter-spacing:-3.304000pt;}
.ls4_c00053{letter-spacing:-2.990340pt;}
.ls3_c00053{letter-spacing:-2.639000pt;}
.ls1_c00053{letter-spacing:-1.981700pt;}
.ls14_c00053{letter-spacing:-1.961273pt;}
.ls5_c00053{letter-spacing:-1.323700pt;}
.ls2_c00053{letter-spacing:-0.658000pt;}
.lsc_c00053{letter-spacing:0.000000pt;}
.ls12_c00053{letter-spacing:1.981700pt;}
.ls7_c00053{letter-spacing:2.352493pt;}
.ls16_c00053{letter-spacing:3.353280pt;}
.ls13_c00053{letter-spacing:15.200633pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._10_c00053{margin-left:-5.825281pt;}
._f_c00053{margin-left:-4.128679pt;}
._14_c00053{margin-left:-3.210900pt;}
._e_c00053{margin-left:-2.256179pt;}
._9_c00053{width:1.175498pt;}
._a_c00053{width:2.198343pt;}
._11_c00053{width:3.736415pt;}
._6_c00053{width:4.784196pt;}
._b_c00053{width:5.704947pt;}
._13_c00053{width:6.601674pt;}
._5_c00053{width:7.509085pt;}
._7_c00053{width:8.409681pt;}
._2_c00053{width:9.687947pt;}
._8_c00053{width:11.005625pt;}
._1_c00053{width:12.934943pt;}
._3_c00053{width:13.864121pt;}
._12_c00053{width:15.401466pt;}
._c_c00053{width:16.394291pt;}
._16_c00053{width:17.403598pt;}
._4_c00053{width:18.720985pt;}
._0_c00053{width:20.201683pt;}
._d_c00053{width:21.979234pt;}
._17_c00053{width:23.245983pt;}
._15_c00053{width:24.390008pt;}
._18_c00053{width:30.008921pt;}
.fs6_c00053{font-size:63.333333pt;}
.fs0_c00053{font-size:70.000000pt;}
.fs2_c00053{font-size:70.666667pt;}
.fs5_c00053{font-size:71.333333pt;}
.fs4_c00053{font-size:72.666667pt;}
.fs3_c00053{font-size:73.333333pt;}
.fs1_c00053{font-size:74.000000pt;}
.fs7_c00053{font-size:74.666667pt;}
.fs8_c00053{font-size:75.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y24_c00053{bottom:162.559613pt;}
.y22_c00053{bottom:189.119533pt;}
.y23_c00053{bottom:189.120133pt;}
.y21_c00053{bottom:215.999453pt;}
.y20_c00053{bottom:268.798787pt;}
.y1e_c00053{bottom:295.039307pt;}
.y1f_c00053{bottom:295.040000pt;}
.y1d_c00053{bottom:321.599067pt;}
.y1c_c00053{bottom:380.159173pt;}
.y1b_c00053{bottom:380.159520pt;}
.y1a_c00053{bottom:400.960000pt;}
.y19_c00053{bottom:427.839840pt;}
.y18_c00053{bottom:427.840720pt;}
.y17_c00053{bottom:480.960227pt;}
.y16_c00053{bottom:507.519973pt;}
.y15_c00053{bottom:507.521400pt;}
.y14_c00053{bottom:534.401320pt;}
.y13_c00053{bottom:586.880227pt;}
.y12_c00053{bottom:613.439987pt;}
.y11_c00053{bottom:640.319907pt;}
.y10_c00053{bottom:693.439413pt;}
.yf_c00053{bottom:720.319333pt;}
.ye_c00053{bottom:720.321120pt;}
.yd_c00053{bottom:746.880880pt;}
.yc_c00053{bottom:773.440627pt;}
.yb_c00053{bottom:800.000387pt;}
.ya_c00053{bottom:826.560133pt;}
.y9_c00053{bottom:879.679653pt;}
.y8_c00053{bottom:906.559573pt;}
.y7_c00053{bottom:906.560360pt;}
.y5_c00053{bottom:933.119440pt;}
.y6_c00053{bottom:933.120120pt;}
.y4_c00053{bottom:959.679200pt;}
.y3_c00053{bottom:959.680080pt;}
.y2_c00053{bottom:985.919653pt;}
.y1_c00053{bottom:1012.479413pt;}
.ha_c00053{height:62.591146pt;}
.h1_c00053{height:68.701172pt;}
.h3_c00053{height:69.355469pt;}
.h7_c00053{height:69.838542pt;}
.h6_c00053{height:70.009766pt;}
.h9_c00053{height:71.218750pt;}
.h5_c00053{height:71.318359pt;}
.hb_c00053{height:71.815104pt;}
.h8_c00053{height:71.972656pt;}
.h4_c00053{height:72.473958pt;}
.h2_c00053{height:72.626953pt;}
.hc_c00053{height:73.281250pt;}
.hd_c00053{height:73.935547pt;}
.h0_c00053{height:1122.666667pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:125.759747pt;}
.x18_c00053{left:126.719200pt;}
.xc_c00053{left:202.239200pt;}
.x11_c00053{left:214.079587pt;}
.xd_c00053{left:219.199200pt;}
.x12_c00053{left:234.878920pt;}
.x13_c00053{left:312.638667pt;}
.x4_c00053{left:333.439453pt;}
.x15_c00053{left:336.638693pt;}
.x16_c00053{left:361.278813pt;}
.x5_c00053{left:370.239173pt;}
.x14_c00053{left:395.198693pt;}
.x2_c00053{left:418.879307pt;}
.x3_c00053{left:445.759320pt;}
.xe_c00053{left:461.438920pt;}
.xf_c00053{left:474.559573pt;}
.x8_c00053{left:497.598680pt;}
.x9_c00053{left:516.159707pt;}
.x6_c00053{left:584.318760pt;}
.x7_c00053{left:601.278773pt;}
.xa_c00053{left:634.879307pt;}
.xb_c00053{left:646.719720pt;}
.x10_c00053{left:682.879307pt;}
.x17_c00053{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81c6ed3be61adf58233dc5ef.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_b85ad24db33e70c5e153fb7d.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.364746;font-style:normal;font-weight:normal;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_9494d4b96fbd2aa825c06513.woff2')format("woff");}.ff3_c00054{font-family:ff3_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:ff4_c00054;src:url('chunks/assets/font_6efb9225356edab6696fcea8.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00054;src:url('chunks/assets/font_07fd3b078704ba8dd7e04da0.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00054;src:url('chunks/assets/font_bf4e64bd3f6554aa04b0ee7e.woff2')format("woff");}.ff6_c00054{font-family:ff6_c00054;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00054{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{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);}
.mc_c00054{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m0_c00054{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.308333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308333,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.336364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336364,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.372951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372951,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.378261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378261,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478571,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.548246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548246,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{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);}
.v0_c00054{vertical-align:0.000000px;}
.ls9_c00054{letter-spacing:-23.814593px;}
.ls18_c00054{letter-spacing:-10.044000px;}
.ls1e_c00054{letter-spacing:-8.426625px;}
.ls5_c00054{letter-spacing:-8.175038px;}
.ls1d_c00054{letter-spacing:-7.978500px;}
.lsd_c00054{letter-spacing:-7.426125px;}
.lsf_c00054{letter-spacing:-6.685875px;}
.ls1_c00054{letter-spacing:-5.945625px;}
.ls8_c00054{letter-spacing:-5.196713px;}
.lsc_c00054{letter-spacing:-4.544910px;}
.lsb_c00054{letter-spacing:-4.539450px;}
.ls6_c00054{letter-spacing:-4.456463px;}
.ls1c_c00054{letter-spacing:-4.310250px;}
.ls21_c00054{letter-spacing:-4.217850px;}
.ls7_c00054{letter-spacing:-3.717000px;}
.ls3_c00054{letter-spacing:-2.968875px;}
.ls1f_c00054{letter-spacing:-2.736000px;}
.ls1a_c00054{letter-spacing:-2.727375px;}
.ls17_c00054{letter-spacing:-2.546618px;}
.ls0_c00054{letter-spacing:-2.229413px;}
.ls1b_c00054{letter-spacing:-1.822500px;}
.lsa_c00054{letter-spacing:-1.526963px;}
.ls2_c00054{letter-spacing:-1.489163px;}
.lse_c00054{letter-spacing:-0.740250px;}
.ls10_c00054{letter-spacing:-0.669900px;}
.ls14_c00054{letter-spacing:-0.503250px;}
.ls4_c00054{letter-spacing:0.000000px;}
.ls12_c00054{letter-spacing:0.556875px;}
.ls11_c00054{letter-spacing:0.653400px;}
.ls16_c00054{letter-spacing:3.156000px;}
.ls20_c00054{letter-spacing:3.637710px;}
.ls19_c00054{letter-spacing:11.386148px;}
.ls15_c00054{letter-spacing:11.999700px;}
.ls13_c00054{letter-spacing:20.827800px;}
.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;}
._c_c00054{margin-left:-10.156640px;}
._d_c00054{margin-left:-7.207675px;}
._e_c00054{margin-left:-5.036508px;}
._10_c00054{margin-left:-3.555399px;}
._f_c00054{margin-left:-2.358310px;}
._b_c00054{margin-left:-1.313149px;}
._16_c00054{width:1.196807px;}
._9_c00054{width:2.303304px;}
._2_c00054{width:3.523022px;}
._4_c00054{width:4.527858px;}
._3_c00054{width:5.763133px;}
._0_c00054{width:7.575022px;}
._8_c00054{width:8.657938px;}
._7_c00054{width:10.253725px;}
._15_c00054{width:11.395378px;}
._5_c00054{width:12.503450px;}
._11_c00054{width:13.775827px;}
._1_c00054{width:15.104399px;}
._14_c00054{width:16.534796px;}
._1c_c00054{width:17.548279px;}
._13_c00054{width:19.660680px;}
._a_c00054{width:21.681004px;}
._1d_c00054{width:22.770176px;}
._12_c00054{width:24.077976px;}
._19_c00054{width:25.993443px;}
._18_c00054{width:27.769523px;}
._1e_c00054{width:28.955335px;}
._1a_c00054{width:29.984969px;}
._6_c00054{width:31.455588px;}
._1b_c00054{width:32.857323px;}
._17_c00054{width:37.104043px;}
.fc0_c00054{color:transparent;}
.fs12_c00054{font-size:26.250000px;}
.fs9_c00054{font-size:41.250000px;}
.fs16_c00054{font-size:42.750000px;}
.fs7_c00054{font-size:43.500000px;}
.fs13_c00054{font-size:45.000000px;}
.fsa_c00054{font-size:45.750000px;}
.fs8_c00054{font-size:49.500000px;}
.fsd_c00054{font-size:50.250000px;}
.fsc_c00054{font-size:52.500000px;}
.fsb_c00054{font-size:54.000000px;}
.fse_c00054{font-size:60.000000px;}
.fs11_c00054{font-size:62.250000px;}
.fs10_c00054{font-size:72.000000px;}
.fs17_c00054{font-size:77.250000px;}
.fs2_c00054{font-size:78.000000px;}
.fs0_c00054{font-size:78.750000px;}
.fs5_c00054{font-size:79.500000px;}
.fs3_c00054{font-size:80.250000px;}
.fs6_c00054{font-size:81.000000px;}
.fs4_c00054{font-size:81.750000px;}
.fs1_c00054{font-size:82.500000px;}
.fsf_c00054{font-size:83.250000px;}
.fs15_c00054{font-size:86.250000px;}
.fs14_c00054{font-size:101.250000px;}
.y0_c00054{bottom:0.000000px;}
.y24_c00054{bottom:185.400900px;}
.y23_c00054{bottom:185.401065px;}
.y22_c00054{bottom:214.920600px;}
.y21_c00054{bottom:214.923960px;}
.y20_c00054{bottom:274.683405px;}
.y1f_c00054{bottom:304.563120px;}
.y1e_c00054{bottom:333.722175px;}
.y1d_c00054{bottom:363.601890px;}
.y1c_c00054{bottom:393.481620px;}
.y1b_c00054{bottom:453.241065px;}
.y1a_c00054{bottom:484.201650px;}
.y19_c00054{bottom:513.721185px;}
.y18_c00054{bottom:543.600900px;}
.y17_c00054{bottom:573.120435px;}
.y16_c00054{bottom:573.121125px;}
.y15_c00054{bottom:603.000840px;}
.y14_c00054{bottom:632.520375px;}
.y13_c00054{bottom:662.039910px;}
.y12_c00054{bottom:692.279820px;}
.y11_c00054{bottom:723.240420px;}
.y10_c00054{bottom:752.939670px;}
.yf_c00054{bottom:756.360900px;}
.ye_c00054{bottom:783.000000px;}
.yd_c00054{bottom:783.000045px;}
.yc_c00054{bottom:812.879775px;}
.ya_c00054{bottom:842.758755px;}
.yb_c00054{bottom:842.759490px;}
.y9_c00054{bottom:872.280105px;}
.y8_c00054{bottom:902.159820px;}
.y7_c00054{bottom:961.921140px;}
.y6_c00054{bottom:1022.039985px;}
.y5_c00054{bottom:1022.040870px;}
.y4_c00054{bottom:1051.920600px;}
.y2_c00054{bottom:1081.799145px;}
.y3_c00054{bottom:1081.799565px;}
.y1_c00054{bottom:1141.560705px;}
.h17_c00054{height:25.942383px;}
.h15_c00054{height:27.377930px;}
.hb_c00054{height:43.022461px;}
.h1a_c00054{height:44.586914px;}
.hc_c00054{height:45.213867px;}
.h9_c00054{height:45.369141px;}
.h16_c00054{height:46.933594px;}
.hf_c00054{height:47.715820px;}
.ha_c00054{height:49.886719px;}
.h10_c00054{height:52.409180px;}
.hd_c00054{height:54.421875px;}
.he_c00054{height:54.755859px;}
.h14_c00054{height:61.520508px;}
.h11_c00054{height:62.578125px;}
.h13_c00054{height:75.093750px;}
.h1c_c00054{height:75.816650px;}
.h3_c00054{height:76.552734px;}
.h1_c00054{height:77.288818px;}
.h4_c00054{height:78.760986px;}
.h6_c00054{height:79.365234px;}
.h1b_c00054{height:79.497070px;}
.h7_c00054{height:80.121094px;}
.h5_c00054{height:80.791992px;}
.h2_c00054{height:80.969238px;}
.h8_c00054{height:81.632812px;}
.h12_c00054{height:83.900391px;}
.h19_c00054{height:89.956055px;}
.h18_c00054{height:105.600586px;}
.h0_c00054{height:1263.000000px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.xd_c00054{left:141.479985px;}
.x1_c00054{left:142.559100px;}
.x22_c00054{left:143.635260px;}
.x1d_c00054{left:161.279850px;}
.x12_c00054{left:170.638500px;}
.x7_c00054{left:193.678500px;}
.xe_c00054{left:217.079385px;}
.x5_c00054{left:225.358635px;}
.xf_c00054{left:231.120000px;}
.x20_c00054{left:237.958950px;}
.x6_c00054{left:239.758500px;}
.x27_c00054{left:247.678500px;}
.x21_c00054{left:255.239250px;}
.x13_c00054{left:261.719100px;}
.x28_c00054{left:263.879535px;}
.x14_c00054{left:289.439235px;}
.x23_c00054{left:298.079385px;}
.x8_c00054{left:320.399235px;}
.x24_c00054{left:322.918950px;}
.x9_c00054{left:344.159385px;}
.x15_c00054{left:346.319850px;}
.x16_c00054{left:361.798950px;}
.xa_c00054{left:364.679700px;}
.x17_c00054{left:400.319820px;}
.x18_c00054{left:411.479685px;}
.x19_c00054{left:434.878920px;}
.x1e_c00054{left:479.879520px;}
.x1f_c00054{left:506.159415px;}
.x2_c00054{left:514.079400px;}
.x3_c00054{left:528.838530px;}
.x1a_c00054{left:542.519670px;}
.xb_c00054{left:547.918350px;}
.xc_c00054{left:563.758530px;}
.x29_c00054{left:570.958335px;}
.x2a_c00054{left:586.439250px;}
.x25_c00054{left:591.119385px;}
.x10_c00054{left:595.438620px;}
.x11_c00054{left:610.199385px;}
.x2b_c00054{left:617.758530px;}
.x26_c00054{left:619.559685px;}
.x2c_c00054{left:631.439670px;}
.x1b_c00054{left:654.838950px;}
.x1c_c00054{left:673.559685px;}
.x4_c00054{left:774.719055px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls9_c00054{letter-spacing:-21.168527pt;}
.ls18_c00054{letter-spacing:-8.928000pt;}
.ls1e_c00054{letter-spacing:-7.490333pt;}
.ls5_c00054{letter-spacing:-7.266700pt;}
.ls1d_c00054{letter-spacing:-7.092000pt;}
.lsd_c00054{letter-spacing:-6.601000pt;}
.lsf_c00054{letter-spacing:-5.943000pt;}
.ls1_c00054{letter-spacing:-5.285000pt;}
.ls8_c00054{letter-spacing:-4.619300pt;}
.lsc_c00054{letter-spacing:-4.039920pt;}
.lsb_c00054{letter-spacing:-4.035067pt;}
.ls6_c00054{letter-spacing:-3.961300pt;}
.ls1c_c00054{letter-spacing:-3.831333pt;}
.ls21_c00054{letter-spacing:-3.749200pt;}
.ls7_c00054{letter-spacing:-3.304000pt;}
.ls3_c00054{letter-spacing:-2.639000pt;}
.ls1f_c00054{letter-spacing:-2.432000pt;}
.ls1a_c00054{letter-spacing:-2.424333pt;}
.ls17_c00054{letter-spacing:-2.263660pt;}
.ls0_c00054{letter-spacing:-1.981700pt;}
.ls1b_c00054{letter-spacing:-1.620000pt;}
.lsa_c00054{letter-spacing:-1.357300pt;}
.ls2_c00054{letter-spacing:-1.323700pt;}
.lse_c00054{letter-spacing:-0.658000pt;}
.ls10_c00054{letter-spacing:-0.595467pt;}
.ls14_c00054{letter-spacing:-0.447333pt;}
.ls4_c00054{letter-spacing:0.000000pt;}
.ls12_c00054{letter-spacing:0.495000pt;}
.ls11_c00054{letter-spacing:0.580800pt;}
.ls16_c00054{letter-spacing:2.805333pt;}
.ls20_c00054{letter-spacing:3.233520pt;}
.ls19_c00054{letter-spacing:10.121020pt;}
.ls15_c00054{letter-spacing:10.666400pt;}
.ls13_c00054{letter-spacing:18.513600pt;}
.ws0_c00054{word-spacing:0.000000pt;}
._c_c00054{margin-left:-9.028125pt;}
._d_c00054{margin-left:-6.406823pt;}
._e_c00054{margin-left:-4.476896pt;}
._10_c00054{margin-left:-3.160355pt;}
._f_c00054{margin-left:-2.096275pt;}
._b_c00054{margin-left:-1.167243pt;}
._16_c00054{width:1.063828pt;}
._9_c00054{width:2.047381pt;}
._2_c00054{width:3.131575pt;}
._4_c00054{width:4.024762pt;}
._3_c00054{width:5.122785pt;}
._0_c00054{width:6.733353pt;}
._8_c00054{width:7.695945pt;}
._7_c00054{width:9.114423pt;}
._15_c00054{width:10.129225pt;}
._5_c00054{width:11.114177pt;}
._11_c00054{width:12.245179pt;}
._1_c00054{width:13.426132pt;}
._14_c00054{width:14.697596pt;}
._1c_c00054{width:15.598470pt;}
._13_c00054{width:17.476160pt;}
._a_c00054{width:19.272004pt;}
._1d_c00054{width:20.240157pt;}
._12_c00054{width:21.402645pt;}
._19_c00054{width:23.105283pt;}
._18_c00054{width:24.684021pt;}
._1e_c00054{width:25.738075pt;}
._1a_c00054{width:26.653306pt;}
._6_c00054{width:27.960523pt;}
._1b_c00054{width:29.206509pt;}
._17_c00054{width:32.981372pt;}
.fs12_c00054{font-size:23.333333pt;}
.fs9_c00054{font-size:36.666667pt;}
.fs16_c00054{font-size:38.000000pt;}
.fs7_c00054{font-size:38.666667pt;}
.fs13_c00054{font-size:40.000000pt;}
.fsa_c00054{font-size:40.666667pt;}
.fs8_c00054{font-size:44.000000pt;}
.fsd_c00054{font-size:44.666667pt;}
.fsc_c00054{font-size:46.666667pt;}
.fsb_c00054{font-size:48.000000pt;}
.fse_c00054{font-size:53.333333pt;}
.fs11_c00054{font-size:55.333333pt;}
.fs10_c00054{font-size:64.000000pt;}
.fs17_c00054{font-size:68.666667pt;}
.fs2_c00054{font-size:69.333333pt;}
.fs0_c00054{font-size:70.000000pt;}
.fs5_c00054{font-size:70.666667pt;}
.fs3_c00054{font-size:71.333333pt;}
.fs6_c00054{font-size:72.000000pt;}
.fs4_c00054{font-size:72.666667pt;}
.fs1_c00054{font-size:73.333333pt;}
.fsf_c00054{font-size:74.000000pt;}
.fs15_c00054{font-size:76.666667pt;}
.fs14_c00054{font-size:90.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y24_c00054{bottom:164.800800pt;}
.y23_c00054{bottom:164.800947pt;}
.y22_c00054{bottom:191.040533pt;}
.y21_c00054{bottom:191.043520pt;}
.y20_c00054{bottom:244.163027pt;}
.y1f_c00054{bottom:270.722773pt;}
.y1e_c00054{bottom:296.641933pt;}
.y1d_c00054{bottom:323.201680pt;}
.y1c_c00054{bottom:349.761440pt;}
.y1b_c00054{bottom:402.880947pt;}
.y1a_c00054{bottom:430.401467pt;}
.y19_c00054{bottom:456.641053pt;}
.y18_c00054{bottom:483.200800pt;}
.y17_c00054{bottom:509.440387pt;}
.y16_c00054{bottom:509.441000pt;}
.y15_c00054{bottom:536.000747pt;}
.y14_c00054{bottom:562.240333pt;}
.y13_c00054{bottom:588.479920pt;}
.y12_c00054{bottom:615.359840pt;}
.y11_c00054{bottom:642.880373pt;}
.y10_c00054{bottom:669.279707pt;}
.yf_c00054{bottom:672.320800pt;}
.ye_c00054{bottom:696.000000pt;}
.yd_c00054{bottom:696.000040pt;}
.yc_c00054{bottom:722.559800pt;}
.ya_c00054{bottom:749.118893pt;}
.yb_c00054{bottom:749.119547pt;}
.y9_c00054{bottom:775.360093pt;}
.y8_c00054{bottom:801.919840pt;}
.y7_c00054{bottom:855.041013pt;}
.y6_c00054{bottom:908.479987pt;}
.y5_c00054{bottom:908.480773pt;}
.y4_c00054{bottom:935.040533pt;}
.y2_c00054{bottom:961.599240pt;}
.y3_c00054{bottom:961.599613pt;}
.y1_c00054{bottom:1014.720627pt;}
.h17_c00054{height:23.059896pt;}
.h15_c00054{height:24.335938pt;}
.hb_c00054{height:38.242188pt;}
.h1a_c00054{height:39.632812pt;}
.hc_c00054{height:40.190104pt;}
.h9_c00054{height:40.328125pt;}
.h16_c00054{height:41.718750pt;}
.hf_c00054{height:42.414062pt;}
.ha_c00054{height:44.343750pt;}
.h10_c00054{height:46.585938pt;}
.hd_c00054{height:48.375000pt;}
.he_c00054{height:48.671875pt;}
.h14_c00054{height:54.684896pt;}
.h11_c00054{height:55.625000pt;}
.h13_c00054{height:66.750000pt;}
.h1c_c00054{height:67.392578pt;}
.h3_c00054{height:68.046875pt;}
.h1_c00054{height:68.701172pt;}
.h4_c00054{height:70.009766pt;}
.h6_c00054{height:70.546875pt;}
.h1b_c00054{height:70.664062pt;}
.h7_c00054{height:71.218750pt;}
.h5_c00054{height:71.815104pt;}
.h2_c00054{height:71.972656pt;}
.h8_c00054{height:72.562500pt;}
.h12_c00054{height:74.578125pt;}
.h19_c00054{height:79.960938pt;}
.h18_c00054{height:93.867188pt;}
.h0_c00054{height:1122.666667pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.xd_c00054{left:125.759987pt;}
.x1_c00054{left:126.719200pt;}
.x22_c00054{left:127.675787pt;}
.x1d_c00054{left:143.359867pt;}
.x12_c00054{left:151.678667pt;}
.x7_c00054{left:172.158667pt;}
.xe_c00054{left:192.959453pt;}
.x5_c00054{left:200.318787pt;}
.xf_c00054{left:205.440000pt;}
.x20_c00054{left:211.519067pt;}
.x6_c00054{left:213.118667pt;}
.x27_c00054{left:220.158667pt;}
.x21_c00054{left:226.879333pt;}
.x13_c00054{left:232.639200pt;}
.x28_c00054{left:234.559587pt;}
.x14_c00054{left:257.279320pt;}
.x23_c00054{left:264.959453pt;}
.x8_c00054{left:284.799320pt;}
.x24_c00054{left:287.039067pt;}
.x9_c00054{left:305.919453pt;}
.x15_c00054{left:307.839867pt;}
.x16_c00054{left:321.599067pt;}
.xa_c00054{left:324.159733pt;}
.x17_c00054{left:355.839840pt;}
.x18_c00054{left:365.759720pt;}
.x19_c00054{left:386.559040pt;}
.x1e_c00054{left:426.559573pt;}
.x1f_c00054{left:449.919480pt;}
.x2_c00054{left:456.959467pt;}
.x3_c00054{left:470.078693pt;}
.x1a_c00054{left:482.239707pt;}
.xb_c00054{left:487.038533pt;}
.xc_c00054{left:501.118693pt;}
.x29_c00054{left:507.518520pt;}
.x2a_c00054{left:521.279333pt;}
.x25_c00054{left:525.439453pt;}
.x10_c00054{left:529.278773pt;}
.x11_c00054{left:542.399453pt;}
.x2b_c00054{left:549.118693pt;}
.x26_c00054{left:550.719720pt;}
.x2c_c00054{left:561.279707pt;}
.x1b_c00054{left:582.079067pt;}
.x1c_c00054{left:598.719720pt;}
.x4_c00054{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_269795e14d580f4926f9ecdb.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_83db81c19adb30e594b701a0.woff2')format("woff");}.ff2_c00055{font-family:ff2_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;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_955afabdff23acb647b2de84.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_63fe66efb18d4ca9a4f9e449.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_cbf8cf6da2caefcbe840c37a.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00055;src:url('chunks/assets/font_e40e89ba07bdadbc910a4379.woff2')format("woff");}.ff6_c00055{font-family:ff6_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;}
.mb_c00055{transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00055{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.213043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213043,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00055{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m18_c00055{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m5_c00055{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.661290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661290,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.lsf_c00055{letter-spacing:-20.160000px;}
.ls22_c00055{letter-spacing:-7.426125px;}
.ls9_c00055{letter-spacing:-6.685875px;}
.ls1f_c00055{letter-spacing:-5.945625px;}
.ls19_c00055{letter-spacing:-5.553075px;}
.ls13_c00055{letter-spacing:-5.196713px;}
.ls23_c00055{letter-spacing:-4.798950px;}
.ls7_c00055{letter-spacing:-4.456463px;}
.lsa_c00055{letter-spacing:-3.717000px;}
.ls16_c00055{letter-spacing:-3.614625px;}
.ls11_c00055{letter-spacing:-3.375000px;}
.ls20_c00055{letter-spacing:-3.283875px;}
.ls18_c00055{letter-spacing:-3.234000px;}
.ls1c_c00055{letter-spacing:-3.099375px;}
.ls2_c00055{letter-spacing:-2.968875px;}
.ls1d_c00055{letter-spacing:-2.638388px;}
.ls6_c00055{letter-spacing:-2.229413px;}
.ls3_c00055{letter-spacing:-1.489163px;}
.ls15_c00055{letter-spacing:-1.439250px;}
.ls1a_c00055{letter-spacing:-0.834300px;}
.ls17_c00055{letter-spacing:-0.794205px;}
.ls21_c00055{letter-spacing:-0.771150px;}
.ls4_c00055{letter-spacing:-0.740250px;}
.lse_c00055{letter-spacing:-0.326700px;}
.ls12_c00055{letter-spacing:0.000000px;}
.ls1_c00055{letter-spacing:0.750375px;}
.ls8_c00055{letter-spacing:0.801698px;}
.ls1b_c00055{letter-spacing:0.826575px;}
.ls10_c00055{letter-spacing:0.851183px;}
.lsd_c00055{letter-spacing:2.790675px;}
.ls5_c00055{letter-spacing:3.839805px;}
.lsc_c00055{letter-spacing:4.131750px;}
.ls14_c00055{letter-spacing:4.181700px;}
.lsb_c00055{letter-spacing:4.511400px;}
.ls1e_c00055{letter-spacing:7.155000px;}
.ls0_c00055{letter-spacing:8.914500px;}
.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;}
._1b_c00055{margin-left:-11.059917px;}
._8_c00055{margin-left:-9.103797px;}
._c_c00055{margin-left:-6.144981px;}
._3_c00055{margin-left:-4.451663px;}
._14_c00055{margin-left:-3.408924px;}
._2_c00055{margin-left:-1.965258px;}
._0_c00055{width:1.709083px;}
._b_c00055{width:2.758642px;}
._5_c00055{width:3.864530px;}
._a_c00055{width:5.356144px;}
._9_c00055{width:7.072017px;}
._1_c00055{width:9.183929px;}
._7_c00055{width:10.874171px;}
._1c_c00055{width:12.049181px;}
._6_c00055{width:13.592963px;}
._4_c00055{width:14.889426px;}
._1e_c00055{width:17.545827px;}
._1a_c00055{width:18.906077px;}
._15_c00055{width:21.422689px;}
._17_c00055{width:22.523704px;}
._18_c00055{width:24.507357px;}
._1d_c00055{width:27.363218px;}
._16_c00055{width:30.786094px;}
._1f_c00055{width:31.892220px;}
._20_c00055{width:33.123037px;}
._11_c00055{width:34.382369px;}
._12_c00055{width:35.455613px;}
._d_c00055{width:36.643727px;}
._f_c00055{width:38.043531px;}
._e_c00055{width:39.973975px;}
._13_c00055{width:41.076238px;}
._10_c00055{width:42.750076px;}
._19_c00055{width:43.886528px;}
.fc0_c00055{color:transparent;}
.fs9_c00055{font-size:18.000000px;}
.fs8_c00055{font-size:23.250000px;}
.fs6_c00055{font-size:24.750000px;}
.fs7_c00055{font-size:31.500000px;}
.fsb_c00055{font-size:51.750000px;}
.fs4_c00055{font-size:52.500000px;}
.fs3_c00055{font-size:54.750000px;}
.fs5_c00055{font-size:59.250000px;}
.fs14_c00055{font-size:71.250000px;}
.fsf_c00055{font-size:75.750000px;}
.fs15_c00055{font-size:78.000000px;}
.fs0_c00055{font-size:78.750000px;}
.fsd_c00055{font-size:79.500000px;}
.fs2_c00055{font-size:80.250000px;}
.fs13_c00055{font-size:81.000000px;}
.fsc_c00055{font-size:81.750000px;}
.fse_c00055{font-size:82.500000px;}
.fs12_c00055{font-size:84.000000px;}
.fs1_c00055{font-size:85.500000px;}
.fs10_c00055{font-size:86.250000px;}
.fsa_c00055{font-size:93.000000px;}
.fs11_c00055{font-size:101.250000px;}
.y0_c00055{bottom:0.000000px;}
.y26_c00055{bottom:183.959820px;}
.y24_c00055{bottom:213.839475px;}
.y25_c00055{bottom:213.839535px;}
.y23_c00055{bottom:244.079385px;}
.y22_c00055{bottom:244.081560px;}
.y21_c00055{bottom:273.601095px;}
.y20_c00055{bottom:303.480810px;}
.y1f_c00055{bottom:333.000345px;}
.y1e_c00055{bottom:362.880060px;}
.y1d_c00055{bottom:393.119985px;}
.y1b_c00055{bottom:423.359295px;}
.y1c_c00055{bottom:423.359850px;}
.y1a_c00055{bottom:483.118740px;}
.y19_c00055{bottom:512.279895px;}
.y18_c00055{bottom:542.159610px;}
.y17_c00055{bottom:572.039340px;}
.y16_c00055{bottom:602.279250px;}
.y15_c00055{bottom:632.160135px;}
.y14_c00055{bottom:661.679670px;}
.y13_c00055{bottom:661.679850px;}
.y12_c00055{bottom:691.199385px;}
.y11_c00055{bottom:750.958920px;}
.y10_c00055{bottom:762.118785px;}
.yf_c00055{bottom:781.198785px;}
.ye_c00055{bottom:781.199685px;}
.yd_c00055{bottom:811.079400px;}
.yc_c00055{bottom:840.599115px;}
.yb_c00055{bottom:840.599220px;}
.y9_c00055{bottom:870.118695px;}
.ya_c00055{bottom:870.118740px;}
.y8_c00055{bottom:900.358605px;}
.y7_c00055{bottom:930.239220px;}
.y6_c00055{bottom:990.719055px;}
.y5_c00055{bottom:1050.480285px;}
.y4_c00055{bottom:1080.359250px;}
.y3_c00055{bottom:1082.519715px;}
.y2_c00055{bottom:1109.878830px;}
.y1_c00055{bottom:1140.118740px;}
.ha_c00055{height:17.789062px;}
.h9_c00055{height:24.249023px;}
.h7_c00055{height:24.943359px;}
.h8_c00055{height:31.130859px;}
.h5_c00055{height:52.910156px;}
.hc_c00055{height:53.973633px;}
.h4_c00055{height:55.177734px;}
.h6_c00055{height:61.795898px;}
.h17_c00055{height:74.311523px;}
.h10_c00055{height:74.344482px;}
.h19_c00055{height:76.552734px;}
.h1_c00055{height:77.288818px;}
.he_c00055{height:78.024902px;}
.h3_c00055{height:78.760986px;}
.h1a_c00055{height:79.365234px;}
.h12_c00055{height:80.121094px;}
.hd_c00055{height:80.233154px;}
.h16_c00055{height:80.876953px;}
.hf_c00055{height:80.969238px;}
.h15_c00055{height:81.632812px;}
.h13_c00055{height:82.441406px;}
.h14_c00055{height:83.144531px;}
.h2_c00055{height:83.913574px;}
.h18_c00055{height:84.607544px;}
.hb_c00055{height:96.996094px;}
.h11_c00055{height:105.600586px;}
.h0_c00055{height:1263.000000px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.xd_c00055{left:144.358665px;}
.x1_c00055{left:145.439715px;}
.x1b_c00055{left:149.399850px;}
.xc_c00055{left:155.518665px;}
.x28_c00055{left:158.399250px;}
.x11_c00055{left:162.718500px;}
.xe_c00055{left:170.638500px;}
.x25_c00055{left:178.558665px;}
.x2a_c00055{left:192.599100px;}
.x9_c00055{left:201.239250px;}
.x6_c00055{left:247.678500px;}
.x12_c00055{left:272.878950px;}
.xa_c00055{left:282.959400px;}
.x13_c00055{left:287.278800px;}
.x2b_c00055{left:293.399250px;}
.x2c_c00055{left:299.158785px;}
.x2_c00055{left:313.919535px;}
.x7_c00055{left:328.678500px;}
.x3_c00055{left:336.598530px;}
.x1c_c00055{left:344.159385px;}
.x1d_c00055{left:368.998950px;}
.x14_c00055{left:389.159820px;}
.x15_c00055{left:403.559685px;}
.xb_c00055{left:408.599070px;}
.x1e_c00055{left:413.999400px;}
.x17_c00055{left:418.679670px;}
.x8_c00055{left:421.558635px;}
.x2d_c00055{left:432.359250px;}
.x18_c00055{left:435.958335px;}
.x1f_c00055{left:457.559685px;}
.xf_c00055{left:460.799565px;}
.x10_c00055{left:475.919535px;}
.x20_c00055{left:482.399235px;}
.x4_c00055{left:533.518620px;}
.x19_c00055{left:547.199850px;}
.x5_c00055{left:551.159820px;}
.x1a_c00055{left:567.718500px;}
.x21_c00055{left:596.519670px;}
.x26_c00055{left:636.119985px;}
.x27_c00055{left:651.599070px;}
.x29_c00055{left:687.598530px;}
.x22_c00055{left:691.558635px;}
.x23_c00055{left:713.159820px;}
.x24_c00055{left:730.079355px;}
.x16_c00055{left:777.958920px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.lsf_c00055{letter-spacing:-17.920000pt;}
.ls22_c00055{letter-spacing:-6.601000pt;}
.ls9_c00055{letter-spacing:-5.943000pt;}
.ls1f_c00055{letter-spacing:-5.285000pt;}
.ls19_c00055{letter-spacing:-4.936067pt;}
.ls13_c00055{letter-spacing:-4.619300pt;}
.ls23_c00055{letter-spacing:-4.265733pt;}
.ls7_c00055{letter-spacing:-3.961300pt;}
.lsa_c00055{letter-spacing:-3.304000pt;}
.ls16_c00055{letter-spacing:-3.213000pt;}
.ls11_c00055{letter-spacing:-3.000000pt;}
.ls20_c00055{letter-spacing:-2.919000pt;}
.ls18_c00055{letter-spacing:-2.874667pt;}
.ls1c_c00055{letter-spacing:-2.755000pt;}
.ls2_c00055{letter-spacing:-2.639000pt;}
.ls1d_c00055{letter-spacing:-2.345233pt;}
.ls6_c00055{letter-spacing:-1.981700pt;}
.ls3_c00055{letter-spacing:-1.323700pt;}
.ls15_c00055{letter-spacing:-1.279333pt;}
.ls1a_c00055{letter-spacing:-0.741600pt;}
.ls17_c00055{letter-spacing:-0.705960pt;}
.ls21_c00055{letter-spacing:-0.685467pt;}
.ls4_c00055{letter-spacing:-0.658000pt;}
.lse_c00055{letter-spacing:-0.290400pt;}
.ls12_c00055{letter-spacing:0.000000pt;}
.ls1_c00055{letter-spacing:0.667000pt;}
.ls8_c00055{letter-spacing:0.712620pt;}
.ls1b_c00055{letter-spacing:0.734733pt;}
.ls10_c00055{letter-spacing:0.756607pt;}
.lsd_c00055{letter-spacing:2.480600pt;}
.ls5_c00055{letter-spacing:3.413160pt;}
.lsc_c00055{letter-spacing:3.672667pt;}
.ls14_c00055{letter-spacing:3.717067pt;}
.lsb_c00055{letter-spacing:4.010133pt;}
.ls1e_c00055{letter-spacing:6.360000pt;}
.ls0_c00055{letter-spacing:7.924000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
._1b_c00055{margin-left:-9.831038pt;}
._8_c00055{margin-left:-8.092264pt;}
._c_c00055{margin-left:-5.462206pt;}
._3_c00055{margin-left:-3.957034pt;}
._14_c00055{margin-left:-3.030155pt;}
._2_c00055{margin-left:-1.746896pt;}
._0_c00055{width:1.519185pt;}
._b_c00055{width:2.452126pt;}
._5_c00055{width:3.435138pt;}
._a_c00055{width:4.761017pt;}
._9_c00055{width:6.286238pt;}
._1_c00055{width:8.163492pt;}
._7_c00055{width:9.665930pt;}
._1c_c00055{width:10.710383pt;}
._6_c00055{width:12.082634pt;}
._4_c00055{width:13.235045pt;}
._1e_c00055{width:15.596291pt;}
._1a_c00055{width:16.805402pt;}
._15_c00055{width:19.042391pt;}
._17_c00055{width:20.021070pt;}
._18_c00055{width:21.784317pt;}
._1d_c00055{width:24.322860pt;}
._16_c00055{width:27.365417pt;}
._1f_c00055{width:28.348640pt;}
._20_c00055{width:29.442700pt;}
._11_c00055{width:30.562106pt;}
._12_c00055{width:31.516100pt;}
._d_c00055{width:32.572202pt;}
._f_c00055{width:33.816472pt;}
._e_c00055{width:35.532423pt;}
._13_c00055{width:36.512211pt;}
._10_c00055{width:38.000068pt;}
._19_c00055{width:39.010247pt;}
.fs9_c00055{font-size:16.000000pt;}
.fs8_c00055{font-size:20.666667pt;}
.fs6_c00055{font-size:22.000000pt;}
.fs7_c00055{font-size:28.000000pt;}
.fsb_c00055{font-size:46.000000pt;}
.fs4_c00055{font-size:46.666667pt;}
.fs3_c00055{font-size:48.666667pt;}
.fs5_c00055{font-size:52.666667pt;}
.fs14_c00055{font-size:63.333333pt;}
.fsf_c00055{font-size:67.333333pt;}
.fs15_c00055{font-size:69.333333pt;}
.fs0_c00055{font-size:70.000000pt;}
.fsd_c00055{font-size:70.666667pt;}
.fs2_c00055{font-size:71.333333pt;}
.fs13_c00055{font-size:72.000000pt;}
.fsc_c00055{font-size:72.666667pt;}
.fse_c00055{font-size:73.333333pt;}
.fs12_c00055{font-size:74.666667pt;}
.fs1_c00055{font-size:76.000000pt;}
.fs10_c00055{font-size:76.666667pt;}
.fsa_c00055{font-size:82.666667pt;}
.fs11_c00055{font-size:90.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y26_c00055{bottom:163.519840pt;}
.y24_c00055{bottom:190.079533pt;}
.y25_c00055{bottom:190.079587pt;}
.y23_c00055{bottom:216.959453pt;}
.y22_c00055{bottom:216.961387pt;}
.y21_c00055{bottom:243.200973pt;}
.y20_c00055{bottom:269.760720pt;}
.y1f_c00055{bottom:296.000307pt;}
.y1e_c00055{bottom:322.560053pt;}
.y1d_c00055{bottom:349.439987pt;}
.y1b_c00055{bottom:376.319373pt;}
.y1c_c00055{bottom:376.319867pt;}
.y1a_c00055{bottom:429.438880pt;}
.y19_c00055{bottom:455.359907pt;}
.y18_c00055{bottom:481.919653pt;}
.y17_c00055{bottom:508.479413pt;}
.y16_c00055{bottom:535.359333pt;}
.y15_c00055{bottom:561.920120pt;}
.y14_c00055{bottom:588.159707pt;}
.y13_c00055{bottom:588.159867pt;}
.y12_c00055{bottom:614.399453pt;}
.y11_c00055{bottom:667.519040pt;}
.y10_c00055{bottom:677.438920pt;}
.yf_c00055{bottom:694.398920pt;}
.ye_c00055{bottom:694.399720pt;}
.yd_c00055{bottom:720.959467pt;}
.yc_c00055{bottom:747.199213pt;}
.yb_c00055{bottom:747.199307pt;}
.y9_c00055{bottom:773.438840pt;}
.ya_c00055{bottom:773.438880pt;}
.y8_c00055{bottom:800.318760pt;}
.y7_c00055{bottom:826.879307pt;}
.y6_c00055{bottom:880.639160pt;}
.y5_c00055{bottom:933.760253pt;}
.y4_c00055{bottom:960.319333pt;}
.y3_c00055{bottom:962.239747pt;}
.y2_c00055{bottom:986.558960pt;}
.y1_c00055{bottom:1013.438880pt;}
.ha_c00055{height:15.812500pt;}
.h9_c00055{height:21.554687pt;}
.h7_c00055{height:22.171875pt;}
.h8_c00055{height:27.671875pt;}
.h5_c00055{height:47.031250pt;}
.hc_c00055{height:47.976562pt;}
.h4_c00055{height:49.046875pt;}
.h6_c00055{height:54.929688pt;}
.h17_c00055{height:66.054688pt;}
.h10_c00055{height:66.083984pt;}
.h19_c00055{height:68.046875pt;}
.h1_c00055{height:68.701172pt;}
.he_c00055{height:69.355469pt;}
.h3_c00055{height:70.009766pt;}
.h1a_c00055{height:70.546875pt;}
.h12_c00055{height:71.218750pt;}
.hd_c00055{height:71.318359pt;}
.h16_c00055{height:71.890625pt;}
.hf_c00055{height:71.972656pt;}
.h15_c00055{height:72.562500pt;}
.h13_c00055{height:73.281250pt;}
.h14_c00055{height:73.906250pt;}
.h2_c00055{height:74.589844pt;}
.h18_c00055{height:75.206706pt;}
.hb_c00055{height:86.218750pt;}
.h11_c00055{height:93.867188pt;}
.h0_c00055{height:1122.666667pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.xd_c00055{left:128.318813pt;}
.x1_c00055{left:129.279747pt;}
.x1b_c00055{left:132.799867pt;}
.xc_c00055{left:138.238813pt;}
.x28_c00055{left:140.799333pt;}
.x11_c00055{left:144.638667pt;}
.xe_c00055{left:151.678667pt;}
.x25_c00055{left:158.718813pt;}
.x2a_c00055{left:171.199200pt;}
.x9_c00055{left:178.879333pt;}
.x6_c00055{left:220.158667pt;}
.x12_c00055{left:242.559067pt;}
.xa_c00055{left:251.519467pt;}
.x13_c00055{left:255.358933pt;}
.x2b_c00055{left:260.799333pt;}
.x2c_c00055{left:265.918920pt;}
.x2_c00055{left:279.039587pt;}
.x7_c00055{left:292.158667pt;}
.x3_c00055{left:299.198693pt;}
.x1c_c00055{left:305.919453pt;}
.x1d_c00055{left:327.999067pt;}
.x14_c00055{left:345.919840pt;}
.x15_c00055{left:358.719720pt;}
.xb_c00055{left:363.199173pt;}
.x1e_c00055{left:367.999467pt;}
.x17_c00055{left:372.159707pt;}
.x8_c00055{left:374.718787pt;}
.x2d_c00055{left:384.319333pt;}
.x18_c00055{left:387.518520pt;}
.x1f_c00055{left:406.719720pt;}
.xf_c00055{left:409.599613pt;}
.x10_c00055{left:423.039587pt;}
.x20_c00055{left:428.799320pt;}
.x4_c00055{left:474.238773pt;}
.x19_c00055{left:486.399867pt;}
.x5_c00055{left:489.919840pt;}
.x1a_c00055{left:504.638667pt;}
.x21_c00055{left:530.239707pt;}
.x26_c00055{left:565.439987pt;}
.x27_c00055{left:579.199173pt;}
.x29_c00055{left:611.198693pt;}
.x22_c00055{left:614.718787pt;}
.x23_c00055{left:633.919840pt;}
.x24_c00055{left:648.959427pt;}
.x16_c00055{left:691.519040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_766e7755dfccced373d9c57e.woff2')format("woff");}.ff1_c00056{font-family:ff1_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:ff2_c00056;src:url('chunks/assets/font_0d28fd15e33f9a9e81de8e70.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.364746;font-style:normal;font-weight:normal;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_3fd7a88cf0c3466bc3f29e91.woff2')format("woff");}.ff3_c00056{font-family:ff3_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:ff4_c00056;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00056{transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117021,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(1.032452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032452,0.000000,0.000000,0.250000,0,0);}
.v1_c00056{vertical-align:-89.281380px;}
.v0_c00056{vertical-align:0.000000px;}
.ls2_c00056{letter-spacing:-6.876623px;}
.ls5_c00056{letter-spacing:-6.115050px;}
.ls3_c00056{letter-spacing:-5.352675px;}
.ls6_c00056{letter-spacing:-4.582275px;}
.ls1_c00056{letter-spacing:-3.820703px;}
.ls4_c00056{letter-spacing:-3.057525px;}
.ls7_c00056{letter-spacing:-2.294348px;}
.lsb_c00056{letter-spacing:-1.601055px;}
.ls9_c00056{letter-spacing:-1.524750px;}
.lsd_c00056{letter-spacing:-0.933075px;}
.ls8_c00056{letter-spacing:0.000000px;}
.lsc_c00056{letter-spacing:4.808805px;}
.ls0_c00056{letter-spacing:6.408450px;}
.lsa_c00056{letter-spacing:8.008800px;}
.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;}
._5_c00056{margin-left:-27.186338px;}
._0_c00056{width:1.878270px;}
._2_c00056{width:2.889206px;}
._3_c00056{width:5.377354px;}
._4_c00056{width:7.076468px;}
._1_c00056{width:8.856421px;}
._6_c00056{width:646.034313px;}
.fc0_c00056{color:transparent;}
.fs5_c00056{font-size:65.250000px;}
.fs2_c00056{font-size:70.500000px;}
.fs0_c00056{font-size:80.250000px;}
.fs1_c00056{font-size:81.750000px;}
.fs4_c00056{font-size:312.000000px;}
.fs3_c00056{font-size:635.250120px;}
.y0_c00056{bottom:0.000000px;}
.yc_c00056{bottom:331.199850px;}
.yb_c00056{bottom:422.639700px;}
.ya_c00056{bottom:429.119385px;}
.y9_c00056{bottom:459.359850px;}
.y8_c00056{bottom:482.760525px;}
.y7_c00056{bottom:505.800015px;}
.yd_c00056{bottom:554.038920px;}
.y6_c00056{bottom:587.158860px;}
.y5_c00056{bottom:599.039910px;}
.y4_c00056{bottom:622.079400px;}
.y2_c00056{bottom:1090.798800px;}
.y3_c00056{bottom:1090.798920px;}
.y1_c00056{bottom:1121.038875px;}
.h6_c00056{height:65.759766px;}
.h3_c00056{height:69.673828px;}
.h1_c00056{height:80.876953px;}
.h2_c00056{height:82.388672px;}
.h5_c00056{height:325.406250px;}
.h4_c00056{height:623.463253px;}
.h0_c00056{height:1263.000000px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:133.559685px;}
.x2_c00056{left:183.958950px;}
.x3_c00056{left:199.078785px;}
.xa_c00056{left:215.639100px;}
.xb_c00056{left:216.718500px;}
.x4_c00056{left:224.999400px;}
.x5_c00056{left:226.078485px;}
.x8_c00056{left:227.518860px;}
.x7_c00056{left:232.557930px;}
.x6_c00056{left:243.717750px;}
.x9_c00056{left:297.718500px;}
.xc_c00056{left:400.319820px;}
@media print{
.v1_c00056{vertical-align:-79.361227pt;}
.v0_c00056{vertical-align:0.000000pt;}
.ls2_c00056{letter-spacing:-6.112553pt;}
.ls5_c00056{letter-spacing:-5.435600pt;}
.ls3_c00056{letter-spacing:-4.757933pt;}
.ls6_c00056{letter-spacing:-4.073133pt;}
.ls1_c00056{letter-spacing:-3.396180pt;}
.ls4_c00056{letter-spacing:-2.717800pt;}
.ls7_c00056{letter-spacing:-2.039420pt;}
.lsb_c00056{letter-spacing:-1.423160pt;}
.ls9_c00056{letter-spacing:-1.355333pt;}
.lsd_c00056{letter-spacing:-0.829400pt;}
.ls8_c00056{letter-spacing:0.000000pt;}
.lsc_c00056{letter-spacing:4.274493pt;}
.ls0_c00056{letter-spacing:5.696400pt;}
.lsa_c00056{letter-spacing:7.118933pt;}
.ws0_c00056{word-spacing:0.000000pt;}
._5_c00056{margin-left:-24.165634pt;}
._0_c00056{width:1.669574pt;}
._2_c00056{width:2.568183pt;}
._3_c00056{width:4.779870pt;}
._4_c00056{width:6.290194pt;}
._1_c00056{width:7.872374pt;}
._6_c00056{width:574.252722pt;}
.fs5_c00056{font-size:58.000000pt;}
.fs2_c00056{font-size:62.666667pt;}
.fs0_c00056{font-size:71.333333pt;}
.fs1_c00056{font-size:72.666667pt;}
.fs4_c00056{font-size:277.333333pt;}
.fs3_c00056{font-size:564.666773pt;}
.y0_c00056{bottom:0.000000pt;}
.yc_c00056{bottom:294.399867pt;}
.yb_c00056{bottom:375.679733pt;}
.ya_c00056{bottom:381.439453pt;}
.y9_c00056{bottom:408.319867pt;}
.y8_c00056{bottom:429.120467pt;}
.y7_c00056{bottom:449.600013pt;}
.yd_c00056{bottom:492.479040pt;}
.y6_c00056{bottom:521.918987pt;}
.y5_c00056{bottom:532.479920pt;}
.y4_c00056{bottom:552.959467pt;}
.y2_c00056{bottom:969.598933pt;}
.y3_c00056{bottom:969.599040pt;}
.y1_c00056{bottom:996.479000pt;}
.h6_c00056{height:58.453125pt;}
.h3_c00056{height:61.932292pt;}
.h1_c00056{height:71.890625pt;}
.h2_c00056{height:73.234375pt;}
.h5_c00056{height:289.250000pt;}
.h4_c00056{height:554.189558pt;}
.h0_c00056{height:1122.666667pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:118.719720pt;}
.x2_c00056{left:163.519067pt;}
.x3_c00056{left:176.958920pt;}
.xa_c00056{left:191.679200pt;}
.xb_c00056{left:192.638667pt;}
.x4_c00056{left:199.999467pt;}
.x5_c00056{left:200.958653pt;}
.x8_c00056{left:202.238987pt;}
.x7_c00056{left:206.718160pt;}
.x6_c00056{left:216.638000pt;}
.x9_c00056{left:264.638667pt;}
.xc_c00056{left:355.839840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e066dad82c2618e3d3f254bf.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_82a735c11205df3baf7719e9.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_a39f8e00a17b4cb397e5041e.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;}
.m8_c00057{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{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_c00057{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.273196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273196,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls4_c00057{letter-spacing:-9.610275px;}
.lsd_c00057{letter-spacing:-8.175038px;}
.ls16_c00057{letter-spacing:-7.426125px;}
.ls10_c00057{letter-spacing:-6.685875px;}
.lsf_c00057{letter-spacing:-5.945625px;}
.lse_c00057{letter-spacing:-5.196713px;}
.ls19_c00057{letter-spacing:-4.958678px;}
.lsb_c00057{letter-spacing:-4.456463px;}
.ls7_c00057{letter-spacing:-4.046625px;}
.ls17_c00057{letter-spacing:-3.818543px;}
.ls18_c00057{letter-spacing:-3.785025px;}
.ls8_c00057{letter-spacing:-3.717000px;}
.ls2_c00057{letter-spacing:-2.968875px;}
.ls11_c00057{letter-spacing:-2.764125px;}
.ls1a_c00057{letter-spacing:-2.245620px;}
.ls3_c00057{letter-spacing:-2.229413px;}
.ls9_c00057{letter-spacing:-1.489163px;}
.ls15_c00057{letter-spacing:-1.440000px;}
.ls5_c00057{letter-spacing:-0.779625px;}
.ls6_c00057{letter-spacing:-0.778425px;}
.lsa_c00057{letter-spacing:-0.740250px;}
.ls1_c00057{letter-spacing:0.000000px;}
.lsc_c00057{letter-spacing:1.789545px;}
.ls12_c00057{letter-spacing:1.823310px;}
.ls13_c00057{letter-spacing:3.705075px;}
.ls14_c00057{letter-spacing:5.530883px;}
.ls0_c00057{letter-spacing:5.945625px;}
.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;}
._1a_c00057{margin-left:-47.682768px;}
._c_c00057{margin-left:-5.908821px;}
._18_c00057{margin-left:-4.168698px;}
._1f_c00057{margin-left:-3.120298px;}
._e_c00057{margin-left:-1.945214px;}
._f_c00057{width:1.539785px;}
._19_c00057{width:2.900972px;}
._1_c00057{width:3.938704px;}
._d_c00057{width:5.025320px;}
._0_c00057{width:6.583322px;}
._11_c00057{width:7.678898px;}
._10_c00057{width:9.661644px;}
._16_c00057{width:11.143571px;}
._12_c00057{width:12.521250px;}
._4_c00057{width:14.175238px;}
._1d_c00057{width:15.253608px;}
._14_c00057{width:16.415631px;}
._17_c00057{width:19.259783px;}
._2_c00057{width:21.493683px;}
._1b_c00057{width:23.069025px;}
._13_c00057{width:24.591842px;}
._3_c00057{width:25.822779px;}
._15_c00057{width:27.359815px;}
._1c_c00057{width:31.283274px;}
._1e_c00057{width:32.358969px;}
._9_c00057{width:34.378892px;}
._5_c00057{width:37.324380px;}
._7_c00057{width:39.370765px;}
._8_c00057{width:40.441840px;}
._a_c00057{width:43.018272px;}
._6_c00057{width:45.504841px;}
._b_c00057{width:47.528463px;}
.fc0_c00057{color:transparent;}
.fs5_c00057{font-size:72.000000px;}
.fs2_c00057{font-size:72.750000px;}
.fs8_c00057{font-size:74.250000px;}
.fs9_c00057{font-size:75.000000px;}
.fsa_c00057{font-size:77.250000px;}
.fsb_c00057{font-size:78.000000px;}
.fs1_c00057{font-size:78.750000px;}
.fs6_c00057{font-size:79.500000px;}
.fs3_c00057{font-size:80.250000px;}
.fs0_c00057{font-size:81.000000px;}
.fs4_c00057{font-size:81.750000px;}
.fs7_c00057{font-size:82.500000px;}
.y0_c00057{bottom:0.000000px;}
.y24_c00057{bottom:185.759490px;}
.y23_c00057{bottom:215.280825px;}
.y22_c00057{bottom:274.680090px;}
.y21_c00057{bottom:304.920000px;}
.y20_c00057{bottom:304.920870px;}
.y1f_c00057{bottom:334.800585px;}
.y1e_c00057{bottom:334.801305px;}
.y1d_c00057{bottom:365.041215px;}
.y1c_c00057{bottom:424.079985px;}
.y1b_c00057{bottom:453.601320px;}
.y1a_c00057{bottom:453.602145px;}
.y19_c00057{bottom:484.200435px;}
.y18_c00057{bottom:484.202310px;}
.y17_c00057{bottom:514.082040px;}
.y16_c00057{bottom:574.199865px;}
.y15_c00057{bottom:603.721200px;}
.y14_c00057{bottom:632.879970px;}
.y13_c00057{bottom:632.881005px;}
.y11_c00057{bottom:662.760480px;}
.y12_c00057{bottom:662.760720px;}
.y10_c00057{bottom:692.280000px;}
.yf_c00057{bottom:752.760135px;}
.ye_c00057{bottom:782.640750px;}
.yd_c00057{bottom:782.640795px;}
.yc_c00057{bottom:812.160330px;}
.yb_c00057{bottom:842.400240px;}
.ya_c00057{bottom:842.401500px;}
.y9_c00057{bottom:902.521140px;}
.y8_c00057{bottom:932.040660px;}
.y7_c00057{bottom:962.280585px;}
.y6_c00057{bottom:991.800105px;}
.y5_c00057{bottom:991.801140px;}
.y4_c00057{bottom:1021.680855px;}
.y3_c00057{bottom:1051.200390px;}
.y2_c00057{bottom:1081.440315px;}
.y1_c00057{bottom:1141.560705px;}
.h6_c00057{height:70.664062px;}
.ha_c00057{height:72.872314px;}
.hb_c00057{height:73.608398px;}
.hd_c00057{height:75.816650px;}
.h3_c00057{height:75.875977px;}
.he_c00057{height:76.552734px;}
.h2_c00057{height:77.288818px;}
.h7_c00057{height:78.024902px;}
.h9_c00057{height:78.760986px;}
.h1_c00057{height:79.497070px;}
.hc_c00057{height:80.233154px;}
.h4_c00057{height:80.876953px;}
.h8_c00057{height:80.969238px;}
.h5_c00057{height:82.388672px;}
.h0_c00057{height:1263.000000px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x19_c00057{left:143.279565px;}
.x9_c00057{left:144.358515px;}
.x1_c00057{left:145.439715px;}
.x3_c00057{left:170.279250px;}
.x2_c00057{left:212.040000px;}
.x13_c00057{left:213.839535px;}
.x14_c00057{left:232.558635px;}
.x16_c00057{left:250.918350px;}
.x4_c00057{left:266.040000px;}
.x17_c00057{left:274.319250px;}
.x18_c00057{left:293.399250px;}
.x5_c00057{left:374.040000px;}
.x6_c00057{left:395.998950px;}
.x1e_c00057{left:420.838530px;}
.x1f_c00057{left:440.279250px;}
.xa_c00057{left:459.359250px;}
.x1a_c00057{left:470.519070px;}
.x11_c00057{left:480.599670px;}
.xb_c00057{left:484.559685px;}
.x1b_c00057{left:500.759085px;}
.x12_c00057{left:503.998950px;}
.xc_c00057{left:637.199385px;}
.xd_c00057{left:650.878920px;}
.xe_c00057{left:669.958920px;}
.xf_c00057{left:687.598530px;}
.x7_c00057{left:692.639700px;}
.x8_c00057{left:710.279250px;}
.x1c_c00057{left:712.078770px;}
.x20_c00057{left:721.080000px;}
.x1d_c00057{left:759.239820px;}
.x21_c00057{left:766.439670px;}
.x10_c00057{left:768.598575px;}
.x15_c00057{left:776.518620px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls4_c00057{letter-spacing:-8.542467pt;}
.lsd_c00057{letter-spacing:-7.266700pt;}
.ls16_c00057{letter-spacing:-6.601000pt;}
.ls10_c00057{letter-spacing:-5.943000pt;}
.lsf_c00057{letter-spacing:-5.285000pt;}
.lse_c00057{letter-spacing:-4.619300pt;}
.ls19_c00057{letter-spacing:-4.407713pt;}
.lsb_c00057{letter-spacing:-3.961300pt;}
.ls7_c00057{letter-spacing:-3.597000pt;}
.ls17_c00057{letter-spacing:-3.394260pt;}
.ls18_c00057{letter-spacing:-3.364467pt;}
.ls8_c00057{letter-spacing:-3.304000pt;}
.ls2_c00057{letter-spacing:-2.639000pt;}
.ls11_c00057{letter-spacing:-2.457000pt;}
.ls1a_c00057{letter-spacing:-1.996107pt;}
.ls3_c00057{letter-spacing:-1.981700pt;}
.ls9_c00057{letter-spacing:-1.323700pt;}
.ls15_c00057{letter-spacing:-1.280000pt;}
.ls5_c00057{letter-spacing:-0.693000pt;}
.ls6_c00057{letter-spacing:-0.691933pt;}
.lsa_c00057{letter-spacing:-0.658000pt;}
.ls1_c00057{letter-spacing:0.000000pt;}
.lsc_c00057{letter-spacing:1.590707pt;}
.ls12_c00057{letter-spacing:1.620720pt;}
.ls13_c00057{letter-spacing:3.293400pt;}
.ls14_c00057{letter-spacing:4.916340pt;}
.ls0_c00057{letter-spacing:5.285000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._1a_c00057{margin-left:-42.384683pt;}
._c_c00057{margin-left:-5.252285pt;}
._18_c00057{margin-left:-3.705509pt;}
._1f_c00057{margin-left:-2.773598pt;}
._e_c00057{margin-left:-1.729079pt;}
._f_c00057{width:1.368698pt;}
._19_c00057{width:2.578642pt;}
._1_c00057{width:3.501070pt;}
._d_c00057{width:4.466951pt;}
._0_c00057{width:5.851842pt;}
._11_c00057{width:6.825687pt;}
._10_c00057{width:8.588128pt;}
._16_c00057{width:9.905396pt;}
._12_c00057{width:11.130000pt;}
._4_c00057{width:12.600211pt;}
._1d_c00057{width:13.558762pt;}
._14_c00057{width:14.591672pt;}
._17_c00057{width:17.119808pt;}
._2_c00057{width:19.105496pt;}
._1b_c00057{width:20.505800pt;}
._13_c00057{width:21.859415pt;}
._3_c00057{width:22.953581pt;}
._15_c00057{width:24.319836pt;}
._1c_c00057{width:27.807355pt;}
._1e_c00057{width:28.763528pt;}
._9_c00057{width:30.559015pt;}
._5_c00057{width:33.177226pt;}
._7_c00057{width:34.996236pt;}
._8_c00057{width:35.948302pt;}
._a_c00057{width:38.238464pt;}
._6_c00057{width:40.448747pt;}
._b_c00057{width:42.247523pt;}
.fs5_c00057{font-size:64.000000pt;}
.fs2_c00057{font-size:64.666667pt;}
.fs8_c00057{font-size:66.000000pt;}
.fs9_c00057{font-size:66.666667pt;}
.fsa_c00057{font-size:68.666667pt;}
.fsb_c00057{font-size:69.333333pt;}
.fs1_c00057{font-size:70.000000pt;}
.fs6_c00057{font-size:70.666667pt;}
.fs3_c00057{font-size:71.333333pt;}
.fs0_c00057{font-size:72.000000pt;}
.fs4_c00057{font-size:72.666667pt;}
.fs7_c00057{font-size:73.333333pt;}
.y0_c00057{bottom:0.000000pt;}
.y24_c00057{bottom:165.119547pt;}
.y23_c00057{bottom:191.360733pt;}
.y22_c00057{bottom:244.160080pt;}
.y21_c00057{bottom:271.040000pt;}
.y20_c00057{bottom:271.040773pt;}
.y1f_c00057{bottom:297.600520pt;}
.y1e_c00057{bottom:297.601160pt;}
.y1d_c00057{bottom:324.481080pt;}
.y1c_c00057{bottom:376.959987pt;}
.y1b_c00057{bottom:403.201173pt;}
.y1a_c00057{bottom:403.201907pt;}
.y19_c00057{bottom:430.400387pt;}
.y18_c00057{bottom:430.402053pt;}
.y17_c00057{bottom:456.961813pt;}
.y16_c00057{bottom:510.399880pt;}
.y15_c00057{bottom:536.641067pt;}
.y14_c00057{bottom:562.559973pt;}
.y13_c00057{bottom:562.560893pt;}
.y11_c00057{bottom:589.120427pt;}
.y12_c00057{bottom:589.120640pt;}
.y10_c00057{bottom:615.360000pt;}
.yf_c00057{bottom:669.120120pt;}
.ye_c00057{bottom:695.680667pt;}
.yd_c00057{bottom:695.680707pt;}
.yc_c00057{bottom:721.920293pt;}
.yb_c00057{bottom:748.800213pt;}
.ya_c00057{bottom:748.801333pt;}
.y9_c00057{bottom:802.241013pt;}
.y8_c00057{bottom:828.480587pt;}
.y7_c00057{bottom:855.360520pt;}
.y6_c00057{bottom:881.600093pt;}
.y5_c00057{bottom:881.601013pt;}
.y4_c00057{bottom:908.160760pt;}
.y3_c00057{bottom:934.400347pt;}
.y2_c00057{bottom:961.280280pt;}
.y1_c00057{bottom:1014.720627pt;}
.h6_c00057{height:62.812500pt;}
.ha_c00057{height:64.775391pt;}
.hb_c00057{height:65.429688pt;}
.hd_c00057{height:67.392578pt;}
.h3_c00057{height:67.445312pt;}
.he_c00057{height:68.046875pt;}
.h2_c00057{height:68.701172pt;}
.h7_c00057{height:69.355469pt;}
.h9_c00057{height:70.009766pt;}
.h1_c00057{height:70.664062pt;}
.hc_c00057{height:71.318359pt;}
.h4_c00057{height:71.890625pt;}
.h8_c00057{height:71.972656pt;}
.h5_c00057{height:73.234375pt;}
.h0_c00057{height:1122.666667pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x19_c00057{left:127.359613pt;}
.x9_c00057{left:128.318680pt;}
.x1_c00057{left:129.279747pt;}
.x3_c00057{left:151.359333pt;}
.x2_c00057{left:188.480000pt;}
.x13_c00057{left:190.079587pt;}
.x14_c00057{left:206.718787pt;}
.x16_c00057{left:223.038533pt;}
.x4_c00057{left:236.480000pt;}
.x17_c00057{left:243.839333pt;}
.x18_c00057{left:260.799333pt;}
.x5_c00057{left:332.480000pt;}
.x6_c00057{left:351.999067pt;}
.x1e_c00057{left:374.078693pt;}
.x1f_c00057{left:391.359333pt;}
.xa_c00057{left:408.319333pt;}
.x1a_c00057{left:418.239173pt;}
.x11_c00057{left:427.199707pt;}
.xb_c00057{left:430.719720pt;}
.x1b_c00057{left:445.119187pt;}
.x12_c00057{left:447.999067pt;}
.xc_c00057{left:566.399453pt;}
.xd_c00057{left:578.559040pt;}
.xe_c00057{left:595.519040pt;}
.xf_c00057{left:611.198693pt;}
.x7_c00057{left:615.679733pt;}
.x8_c00057{left:631.359333pt;}
.x1c_c00057{left:632.958907pt;}
.x20_c00057{left:640.960000pt;}
.x1d_c00057{left:674.879840pt;}
.x21_c00057{left:681.279707pt;}
.x10_c00057{left:683.198733pt;}
.x15_c00057{left:690.238773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d97656ef8fd7ffd211c5ca2.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_b55b75fdcc874f9e2aa4222c.woff2')format("woff");}.ff2_c00058{font-family:ff2_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:ff3_c00058;src:url('chunks/assets/font_d29c47a25baff659b16f84b2.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00058{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.v1_c00058{vertical-align:2.882700px;}
.ls10_c00058{letter-spacing:-8.914500px;}
.ls12_c00058{letter-spacing:-8.175038px;}
.ls8_c00058{letter-spacing:-7.426125px;}
.lsc_c00058{letter-spacing:-6.685875px;}
.lsf_c00058{letter-spacing:-5.945625px;}
.ls4_c00058{letter-spacing:-5.247533px;}
.lsd_c00058{letter-spacing:-5.196713px;}
.ls2_c00058{letter-spacing:-4.456463px;}
.ls1_c00058{letter-spacing:-3.717000px;}
.lsb_c00058{letter-spacing:-3.113700px;}
.ls5_c00058{letter-spacing:-2.968875px;}
.ls15_c00058{letter-spacing:-2.371913px;}
.ls3_c00058{letter-spacing:-2.229413px;}
.lsa_c00058{letter-spacing:-1.556048px;}
.ls6_c00058{letter-spacing:-1.489163px;}
.ls13_c00058{letter-spacing:-0.819788px;}
.ls14_c00058{letter-spacing:-0.810525px;}
.ls7_c00058{letter-spacing:-0.740250px;}
.lse_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.740250px;}
.ls9_c00058{letter-spacing:0.794475px;}
.ls11_c00058{letter-spacing:4.499820px;}
.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;}
._1f_c00058{margin-left:-9.152890px;}
._25_c00058{margin-left:-8.135633px;}
._17_c00058{margin-left:-6.102590px;}
._5_c00058{margin-left:-4.103633px;}
._24_c00058{margin-left:-2.662760px;}
._4_c00058{margin-left:-1.651982px;}
._1_c00058{width:1.258410px;}
._2_c00058{width:3.069556px;}
._f_c00058{width:4.722474px;}
._d_c00058{width:6.856287px;}
._0_c00058{width:8.237131px;}
._3_c00058{width:9.957848px;}
._1e_c00058{width:11.142798px;}
._e_c00058{width:12.930067px;}
._10_c00058{width:15.277322px;}
._26_c00058{width:16.339555px;}
._6_c00058{width:18.623097px;}
._7_c00058{width:20.868809px;}
._c_c00058{width:22.761826px;}
._b_c00058{width:24.132180px;}
._8_c00058{width:25.444244px;}
._9_c00058{width:28.798177px;}
._1d_c00058{width:30.848901px;}
._a_c00058{width:36.658363px;}
._1b_c00058{width:38.202843px;}
._18_c00058{width:39.612394px;}
._1a_c00058{width:43.662031px;}
._19_c00058{width:48.178923px;}
._1c_c00058{width:52.187803px;}
._15_c00058{width:55.634869px;}
._14_c00058{width:56.660922px;}
._13_c00058{width:58.773220px;}
._12_c00058{width:63.315059px;}
._11_c00058{width:66.024312px;}
._16_c00058{width:71.399564px;}
._23_c00058{width:227.943807px;}
._22_c00058{width:409.027500px;}
._20_c00058{width:473.720506px;}
._21_c00058{width:524.554374px;}
.fc0_c00058{color:transparent;}
.fs5_c00058{font-size:71.250000px;}
.fs4_c00058{font-size:78.000000px;}
.fs0_c00058{font-size:78.750000px;}
.fs2_c00058{font-size:80.250000px;}
.fs1_c00058{font-size:81.750000px;}
.fs6_c00058{font-size:82.500000px;}
.fs3_c00058{font-size:84.750000px;}
.y0_c00058{bottom:0.000000px;}
.y1f_c00058{bottom:243.000870px;}
.y1d_c00058{bottom:272.879820px;}
.y1e_c00058{bottom:272.880585px;}
.y1c_c00058{bottom:302.759535px;}
.y1b_c00058{bottom:302.759790px;}
.y1a_c00058{bottom:332.639505px;}
.y19_c00058{bottom:392.040570px;}
.y18_c00058{bottom:421.560285px;}
.y17_c00058{bottom:421.561185px;}
.y15_c00058{bottom:451.440465px;}
.y16_c00058{bottom:451.440900px;}
.y14_c00058{bottom:511.920600px;}
.y13_c00058{bottom:571.860555px;}
.y12_c00058{bottom:593.280510px;}
.y11_c00058{bottom:613.800750px;}
.y10_c00058{bottom:634.679355px;}
.yf_c00058{bottom:694.440900px;}
.ye_c00058{bottom:754.920600px;}
.yd_c00058{bottom:784.799565px;}
.yc_c00058{bottom:784.801395px;}
.yb_c00058{bottom:814.681110px;}
.ya_c00058{bottom:844.921035px;}
.y9_c00058{bottom:874.440555px;}
.y8_c00058{bottom:904.320285px;}
.y7_c00058{bottom:904.321215px;}
.y6_c00058{bottom:934.561140px;}
.y5_c00058{bottom:964.440855px;}
.y4_c00058{bottom:1023.839535px;}
.y3_c00058{bottom:1084.320255px;}
.y2_c00058{bottom:1114.199985px;}
.y1_c00058{bottom:1143.719520px;}
.ha_c00058{height:74.311523px;}
.h1_c00058{height:77.288818px;}
.h6_c00058{height:78.609375px;}
.h5_c00058{height:78.760986px;}
.h9_c00058{height:79.365234px;}
.h8_c00058{height:80.171458px;}
.h7_c00058{height:80.171518px;}
.h2_c00058{height:80.233154px;}
.h3_c00058{height:80.876953px;}
.hb_c00058{height:80.969238px;}
.h4_c00058{height:83.177490px;}
.h0_c00058{height:1263.000000px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x7_c00058{left:143.280630px;}
.x1_c00058{left:145.439715px;}
.xb_c00058{left:160.918950px;}
.x4_c00058{left:181.080000px;}
.xa_c00058{left:253.797645px;}
.x12_c00058{left:329.039385px;}
.x5_c00058{left:336.598530px;}
.x13_c00058{left:343.080000px;}
.x6_c00058{left:349.918950px;}
.x2_c00058{left:352.438635px;}
.x3_c00058{left:372.238785px;}
.xc_c00058{left:385.199850px;}
.xd_c00058{left:420.838530px;}
.x8_c00058{left:709.918350px;}
.xe_c00058{left:719.278800px;}
.x9_c00058{left:728.279850px;}
.x10_c00058{left:735.118785px;}
.xf_c00058{left:737.638545px;}
.x11_c00058{left:771.120030px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:2.562400pt;}
.ls10_c00058{letter-spacing:-7.924000pt;}
.ls12_c00058{letter-spacing:-7.266700pt;}
.ls8_c00058{letter-spacing:-6.601000pt;}
.lsc_c00058{letter-spacing:-5.943000pt;}
.lsf_c00058{letter-spacing:-5.285000pt;}
.ls4_c00058{letter-spacing:-4.664473pt;}
.lsd_c00058{letter-spacing:-4.619300pt;}
.ls2_c00058{letter-spacing:-3.961300pt;}
.ls1_c00058{letter-spacing:-3.304000pt;}
.lsb_c00058{letter-spacing:-2.767733pt;}
.ls5_c00058{letter-spacing:-2.639000pt;}
.ls15_c00058{letter-spacing:-2.108367pt;}
.ls3_c00058{letter-spacing:-1.981700pt;}
.lsa_c00058{letter-spacing:-1.383153pt;}
.ls6_c00058{letter-spacing:-1.323700pt;}
.ls13_c00058{letter-spacing:-0.728700pt;}
.ls14_c00058{letter-spacing:-0.720467pt;}
.ls7_c00058{letter-spacing:-0.658000pt;}
.lse_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.658000pt;}
.ls9_c00058{letter-spacing:0.706200pt;}
.ls11_c00058{letter-spacing:3.999840pt;}
.ws0_c00058{word-spacing:0.000000pt;}
._1f_c00058{margin-left:-8.135902pt;}
._25_c00058{margin-left:-7.231674pt;}
._17_c00058{margin-left:-5.424525pt;}
._5_c00058{margin-left:-3.647674pt;}
._24_c00058{margin-left:-2.366898pt;}
._4_c00058{margin-left:-1.468428pt;}
._1_c00058{width:1.118587pt;}
._2_c00058{width:2.728494pt;}
._f_c00058{width:4.197755pt;}
._d_c00058{width:6.094477pt;}
._0_c00058{width:7.321894pt;}
._3_c00058{width:8.851421pt;}
._1e_c00058{width:9.904709pt;}
._e_c00058{width:11.493392pt;}
._10_c00058{width:13.579842pt;}
._26_c00058{width:14.524049pt;}
._6_c00058{width:16.553864pt;}
._7_c00058{width:18.550053pt;}
._c_c00058{width:20.232734pt;}
._b_c00058{width:21.450826pt;}
._8_c00058{width:22.617106pt;}
._9_c00058{width:25.598379pt;}
._1d_c00058{width:27.421245pt;}
._a_c00058{width:32.585211pt;}
._1b_c00058{width:33.958083pt;}
._18_c00058{width:35.211017pt;}
._1a_c00058{width:38.810694pt;}
._19_c00058{width:42.825709pt;}
._1c_c00058{width:46.389158pt;}
._15_c00058{width:49.453217pt;}
._14_c00058{width:50.365264pt;}
._13_c00058{width:52.242862pt;}
._12_c00058{width:56.280053pt;}
._11_c00058{width:58.688277pt;}
._16_c00058{width:63.466279pt;}
._23_c00058{width:202.616717pt;}
._22_c00058{width:363.580000pt;}
._20_c00058{width:421.084894pt;}
._21_c00058{width:466.270555pt;}
.fs5_c00058{font-size:63.333333pt;}
.fs4_c00058{font-size:69.333333pt;}
.fs0_c00058{font-size:70.000000pt;}
.fs2_c00058{font-size:71.333333pt;}
.fs1_c00058{font-size:72.666667pt;}
.fs6_c00058{font-size:73.333333pt;}
.fs3_c00058{font-size:75.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y1f_c00058{bottom:216.000773pt;}
.y1d_c00058{bottom:242.559840pt;}
.y1e_c00058{bottom:242.560520pt;}
.y1c_c00058{bottom:269.119587pt;}
.y1b_c00058{bottom:269.119813pt;}
.y1a_c00058{bottom:295.679560pt;}
.y19_c00058{bottom:348.480507pt;}
.y18_c00058{bottom:374.720253pt;}
.y17_c00058{bottom:374.721053pt;}
.y15_c00058{bottom:401.280413pt;}
.y16_c00058{bottom:401.280800pt;}
.y14_c00058{bottom:455.040533pt;}
.y13_c00058{bottom:508.320493pt;}
.y12_c00058{bottom:527.360453pt;}
.y11_c00058{bottom:545.600667pt;}
.y10_c00058{bottom:564.159427pt;}
.yf_c00058{bottom:617.280800pt;}
.ye_c00058{bottom:671.040533pt;}
.yd_c00058{bottom:697.599613pt;}
.yc_c00058{bottom:697.601240pt;}
.yb_c00058{bottom:724.160987pt;}
.ya_c00058{bottom:751.040920pt;}
.y9_c00058{bottom:777.280493pt;}
.y8_c00058{bottom:803.840253pt;}
.y7_c00058{bottom:803.841080pt;}
.y6_c00058{bottom:830.721013pt;}
.y5_c00058{bottom:857.280760pt;}
.y4_c00058{bottom:910.079587pt;}
.y3_c00058{bottom:963.840227pt;}
.y2_c00058{bottom:990.399987pt;}
.y1_c00058{bottom:1016.639573pt;}
.ha_c00058{height:66.054688pt;}
.h1_c00058{height:68.701172pt;}
.h6_c00058{height:69.875000pt;}
.h5_c00058{height:70.009766pt;}
.h9_c00058{height:70.546875pt;}
.h8_c00058{height:71.263519pt;}
.h7_c00058{height:71.263572pt;}
.h2_c00058{height:71.318359pt;}
.h3_c00058{height:71.890625pt;}
.hb_c00058{height:71.972656pt;}
.h4_c00058{height:73.935547pt;}
.h0_c00058{height:1122.666667pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x7_c00058{left:127.360560pt;}
.x1_c00058{left:129.279747pt;}
.xb_c00058{left:143.039067pt;}
.x4_c00058{left:160.960000pt;}
.xa_c00058{left:225.597907pt;}
.x12_c00058{left:292.479453pt;}
.x5_c00058{left:299.198693pt;}
.x13_c00058{left:304.960000pt;}
.x6_c00058{left:311.039067pt;}
.x2_c00058{left:313.278787pt;}
.x3_c00058{left:330.878920pt;}
.xc_c00058{left:342.399867pt;}
.xd_c00058{left:374.078693pt;}
.x8_c00058{left:631.038533pt;}
.xe_c00058{left:639.358933pt;}
.x9_c00058{left:647.359867pt;}
.x10_c00058{left:653.438920pt;}
.xf_c00058{left:655.678707pt;}
.x11_c00058{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bfb6617135ca0cd932c505d.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_89f416be0528f4decb0a1d6f.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.364746;font-style:normal;font-weight:normal;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_38cc1473f207dfd3db74963f.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;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_53437760b3e9946a045dedc1.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_d684429a4a52c9a1f38a3c37.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.432129;font-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_c00059{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m1a_c00059{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.me_c00059{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m14_c00059{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m16_c00059{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m15_c00059{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m13_c00059{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m0_c00059{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m7_c00059{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.lsa_c00059{letter-spacing:-8.914500px;}
.ls9_c00059{letter-spacing:-8.442900px;}
.ls1d_c00059{letter-spacing:-7.426125px;}
.ls24_c00059{letter-spacing:-7.223580px;}
.ls4_c00059{letter-spacing:-6.685875px;}
.ls21_c00059{letter-spacing:-6.160478px;}
.lsf_c00059{letter-spacing:-5.945625px;}
.ls28_c00059{letter-spacing:-5.786025px;}
.ls18_c00059{letter-spacing:-5.594475px;}
.ls25_c00059{letter-spacing:-5.202600px;}
.ls7_c00059{letter-spacing:-5.196713px;}
.ls27_c00059{letter-spacing:-4.887225px;}
.ls8_c00059{letter-spacing:-4.456463px;}
.ls11_c00059{letter-spacing:-4.384800px;}
.ls14_c00059{letter-spacing:-4.317450px;}
.ls19_c00059{letter-spacing:-4.258358px;}
.ls20_c00059{letter-spacing:-4.152750px;}
.ls1f_c00059{letter-spacing:-3.890025px;}
.ls10_c00059{letter-spacing:-3.752325px;}
.ls3_c00059{letter-spacing:-3.717000px;}
.ls12_c00059{letter-spacing:-3.085500px;}
.ls17_c00059{letter-spacing:-3.062775px;}
.ls2_c00059{letter-spacing:-2.968875px;}
.ls15_c00059{letter-spacing:-2.430000px;}
.ls26_c00059{letter-spacing:-2.385000px;}
.ls1e_c00059{letter-spacing:-2.315790px;}
.ls1b_c00059{letter-spacing:-2.294348px;}
.ls1_c00059{letter-spacing:-2.229413px;}
.ls23_c00059{letter-spacing:-2.168400px;}
.ls1c_c00059{letter-spacing:-1.556048px;}
.ls6_c00059{letter-spacing:-1.489163px;}
.ls5_c00059{letter-spacing:-0.740250px;}
.lse_c00059{letter-spacing:-0.734400px;}
.ls13_c00059{letter-spacing:0.000000px;}
.ls22_c00059{letter-spacing:0.858000px;}
.ls0_c00059{letter-spacing:1.489163px;}
.lsd_c00059{letter-spacing:3.637710px;}
.lsc_c00059{letter-spacing:3.795825px;}
.lsb_c00059{letter-spacing:3.839805px;}
.ls1a_c00059{letter-spacing:4.834800px;}
.ls16_c00059{letter-spacing:9.208800px;}
.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;}
._12_c00059{margin-left:-10.844217px;}
._1e_c00059{margin-left:-8.096614px;}
._d_c00059{margin-left:-2.952858px;}
._18_c00059{margin-left:-1.407723px;}
._b_c00059{width:1.094239px;}
._9_c00059{width:2.117617px;}
._7_c00059{width:3.938585px;}
._8_c00059{width:5.752509px;}
._19_c00059{width:7.169415px;}
._c_c00059{width:8.522072px;}
._6_c00059{width:10.568220px;}
._1d_c00059{width:11.663692px;}
._3_c00059{width:12.886917px;}
._1a_c00059{width:14.821166px;}
._1b_c00059{width:16.057348px;}
._a_c00059{width:17.176148px;}
._1c_c00059{width:18.534971px;}
._5_c00059{width:20.437512px;}
._1_c00059{width:22.065126px;}
._0_c00059{width:23.571287px;}
._17_c00059{width:24.701929px;}
._14_c00059{width:26.506775px;}
._4_c00059{width:27.695632px;}
._2_c00059{width:28.744820px;}
._16_c00059{width:30.161339px;}
._15_c00059{width:31.261804px;}
._10_c00059{width:39.549201px;}
._e_c00059{width:40.682503px;}
._f_c00059{width:41.832505px;}
._13_c00059{width:42.952152px;}
._11_c00059{width:44.667594px;}
.fc0_c00059{color:transparent;}
.fs9_c00059{font-size:72.000000px;}
.fsa_c00059{font-size:72.750000px;}
.fs5_c00059{font-size:76.500000px;}
.fsd_c00059{font-size:77.250000px;}
.fsc_c00059{font-size:78.000000px;}
.fs0_c00059{font-size:78.750000px;}
.fs1_c00059{font-size:79.500000px;}
.fs8_c00059{font-size:80.250000px;}
.fs4_c00059{font-size:81.000000px;}
.fs6_c00059{font-size:81.750000px;}
.fs3_c00059{font-size:82.500000px;}
.fs7_c00059{font-size:84.000000px;}
.fsb_c00059{font-size:84.750000px;}
.fs2_c00059{font-size:85.500000px;}
.y0_c00059{bottom:0.000000px;}
.y26_c00059{bottom:213.481185px;}
.y24_c00059{bottom:243.360120px;}
.y25_c00059{bottom:243.360900px;}
.y23_c00059{bottom:273.239850px;}
.y22_c00059{bottom:273.240030px;}
.y21_c00059{bottom:303.119745px;}
.y1f_c00059{bottom:332.280825px;}
.y20_c00059{bottom:332.280900px;}
.y1e_c00059{bottom:362.520750px;}
.y1d_c00059{bottom:392.401515px;}
.y1c_c00059{bottom:421.560285px;}
.y1b_c00059{bottom:421.561185px;}
.y19_c00059{bottom:451.440810px;}
.y1a_c00059{bottom:451.440900px;}
.y18_c00059{bottom:481.680720px;}
.y17_c00059{bottom:481.680765px;}
.y16_c00059{bottom:511.920690px;}
.y15_c00059{bottom:542.521095px;}
.y14_c00059{bottom:571.680135px;}
.y13_c00059{bottom:571.680885px;}
.y12_c00059{bottom:630.721755px;}
.y11_c00059{bottom:660.961665px;}
.y10_c00059{bottom:690.481200px;}
.yf_c00059{bottom:720.721110px;}
.ye_c00059{bottom:751.321515px;}
.yd_c00059{bottom:780.841140px;}
.yb_c00059{bottom:811.079520px;}
.yc_c00059{bottom:811.081050px;}
.ya_c00059{bottom:840.959250px;}
.y8_c00059{bottom:870.120345px;}
.y9_c00059{bottom:870.120390px;}
.y7_c00059{bottom:900.360255px;}
.y6_c00059{bottom:960.840255px;}
.y5_c00059{bottom:990.361590px;}
.y4_c00059{bottom:1020.959880px;}
.y3_c00059{bottom:1080.360945px;}
.y2_c00059{bottom:1110.240675px;}
.y1_c00059{bottom:1140.120390px;}
.h6_c00059{height:75.080566px;}
.hc_c00059{height:75.093750px;}
.h15_c00059{height:75.816650px;}
.hd_c00059{height:75.875977px;}
.h14_c00059{height:76.552734px;}
.h1_c00059{height:77.288818px;}
.h2_c00059{height:78.024902px;}
.h13_c00059{height:78.609375px;}
.h11_c00059{height:78.760986px;}
.h5_c00059{height:79.497070px;}
.hf_c00059{height:80.121094px;}
.h7_c00059{height:80.233154px;}
.ha_c00059{height:80.876953px;}
.h4_c00059{height:80.969238px;}
.h9_c00059{height:81.533203px;}
.hb_c00059{height:81.632812px;}
.h10_c00059{height:82.388672px;}
.h8_c00059{height:82.441406px;}
.he_c00059{height:83.015625px;}
.h12_c00059{height:83.177490px;}
.h3_c00059{height:83.913574px;}
.h0_c00059{height:1263.000000px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:142.918350px;}
.xb_c00059{left:143.999640px;}
.x1d_c00059{left:145.081305px;}
.x23_c00059{left:146.159505px;}
.x5_c00059{left:158.040000px;}
.x1e_c00059{left:160.559685px;}
.xc_c00059{left:165.239850px;}
.x2_c00059{left:168.838950px;}
.x6_c00059{left:181.080000px;}
.x1f_c00059{left:208.080000px;}
.xd_c00059{left:219.599100px;}
.x30_c00059{left:247.678500px;}
.xe_c00059{left:252.358635px;}
.x31_c00059{left:262.439250px;}
.xf_c00059{left:285.120000px;}
.x32_c00059{left:294.478635px;}
.x33_c00059{left:311.399850px;}
.x2c_c00059{left:335.159850px;}
.x2d_c00059{left:349.559685px;}
.x10_c00059{left:387.719565px;}
.x11_c00059{left:411.118785px;}
.x12_c00059{left:456.839535px;}
.x9_c00059{left:490.678530px;}
.x13_c00059{left:503.639700px;}
.x2e_c00059{left:510.119385px;}
.xa_c00059{left:512.639100px;}
.x1b_c00059{left:519.118785px;}
.x2f_c00059{left:530.278800px;}
.x26_c00059{left:548.638500px;}
.x1c_c00059{left:556.919535px;}
.x14_c00059{left:558.719100px;}
.x27_c00059{left:577.078770px;}
.x15_c00059{left:582.479235px;}
.x2b_c00059{left:587.879520px;}
.x28_c00059{left:601.199850px;}
.x16_c00059{left:602.638545px;}
.x20_c00059{left:606.959385px;}
.x7_c00059{left:626.759535px;}
.x3_c00059{left:632.159820px;}
.x29_c00059{left:633.959385px;}
.x8_c00059{left:650.519670px;}
.x4_c00059{left:656.279250px;}
.x17_c00059{left:669.238770px;}
.x18_c00059{left:692.639700px;}
.x24_c00059{left:704.519670px;}
.x19_c00059{left:720.359850px;}
.x2a_c00059{left:725.758530px;}
.x25_c00059{left:728.279850px;}
.x21_c00059{left:740.159820px;}
.x22_c00059{left:764.999355px;}
.x1a_c00059{left:772.199340px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.lsa_c00059{letter-spacing:-7.924000pt;}
.ls9_c00059{letter-spacing:-7.504800pt;}
.ls1d_c00059{letter-spacing:-6.601000pt;}
.ls24_c00059{letter-spacing:-6.420960pt;}
.ls4_c00059{letter-spacing:-5.943000pt;}
.ls21_c00059{letter-spacing:-5.475980pt;}
.lsf_c00059{letter-spacing:-5.285000pt;}
.ls28_c00059{letter-spacing:-5.143133pt;}
.ls18_c00059{letter-spacing:-4.972867pt;}
.ls25_c00059{letter-spacing:-4.624533pt;}
.ls7_c00059{letter-spacing:-4.619300pt;}
.ls27_c00059{letter-spacing:-4.344200pt;}
.ls8_c00059{letter-spacing:-3.961300pt;}
.ls11_c00059{letter-spacing:-3.897600pt;}
.ls14_c00059{letter-spacing:-3.837733pt;}
.ls19_c00059{letter-spacing:-3.785207pt;}
.ls20_c00059{letter-spacing:-3.691333pt;}
.ls1f_c00059{letter-spacing:-3.457800pt;}
.ls10_c00059{letter-spacing:-3.335400pt;}
.ls3_c00059{letter-spacing:-3.304000pt;}
.ls12_c00059{letter-spacing:-2.742667pt;}
.ls17_c00059{letter-spacing:-2.722467pt;}
.ls2_c00059{letter-spacing:-2.639000pt;}
.ls15_c00059{letter-spacing:-2.160000pt;}
.ls26_c00059{letter-spacing:-2.120000pt;}
.ls1e_c00059{letter-spacing:-2.058480pt;}
.ls1b_c00059{letter-spacing:-2.039420pt;}
.ls1_c00059{letter-spacing:-1.981700pt;}
.ls23_c00059{letter-spacing:-1.927467pt;}
.ls1c_c00059{letter-spacing:-1.383153pt;}
.ls6_c00059{letter-spacing:-1.323700pt;}
.ls5_c00059{letter-spacing:-0.658000pt;}
.lse_c00059{letter-spacing:-0.652800pt;}
.ls13_c00059{letter-spacing:0.000000pt;}
.ls22_c00059{letter-spacing:0.762667pt;}
.ls0_c00059{letter-spacing:1.323700pt;}
.lsd_c00059{letter-spacing:3.233520pt;}
.lsc_c00059{letter-spacing:3.374067pt;}
.lsb_c00059{letter-spacing:3.413160pt;}
.ls1a_c00059{letter-spacing:4.297600pt;}
.ls16_c00059{letter-spacing:8.185600pt;}
.ws0_c00059{word-spacing:0.000000pt;}
._12_c00059{margin-left:-9.639304pt;}
._1e_c00059{margin-left:-7.196991pt;}
._d_c00059{margin-left:-2.624762pt;}
._18_c00059{margin-left:-1.251309pt;}
._b_c00059{width:0.972657pt;}
._9_c00059{width:1.882326pt;}
._7_c00059{width:3.500964pt;}
._8_c00059{width:5.113342pt;}
._19_c00059{width:6.372813pt;}
._c_c00059{width:7.575175pt;}
._6_c00059{width:9.393974pt;}
._1d_c00059{width:10.367726pt;}
._3_c00059{width:11.455038pt;}
._1a_c00059{width:13.174370pt;}
._1b_c00059{width:14.273198pt;}
._a_c00059{width:15.267687pt;}
._1c_c00059{width:16.475530pt;}
._5_c00059{width:18.166677pt;}
._1_c00059{width:19.613445pt;}
._0_c00059{width:20.952255pt;}
._17_c00059{width:21.957270pt;}
._14_c00059{width:23.561577pt;}
._4_c00059{width:24.618340pt;}
._2_c00059{width:25.550951pt;}
._16_c00059{width:26.810079pt;}
._15_c00059{width:27.788270pt;}
._10_c00059{width:35.154845pt;}
._e_c00059{width:36.162225pt;}
._f_c00059{width:37.184449pt;}
._13_c00059{width:38.179691pt;}
._11_c00059{width:39.704528pt;}
.fs9_c00059{font-size:64.000000pt;}
.fsa_c00059{font-size:64.666667pt;}
.fs5_c00059{font-size:68.000000pt;}
.fsd_c00059{font-size:68.666667pt;}
.fsc_c00059{font-size:69.333333pt;}
.fs0_c00059{font-size:70.000000pt;}
.fs1_c00059{font-size:70.666667pt;}
.fs8_c00059{font-size:71.333333pt;}
.fs4_c00059{font-size:72.000000pt;}
.fs6_c00059{font-size:72.666667pt;}
.fs3_c00059{font-size:73.333333pt;}
.fs7_c00059{font-size:74.666667pt;}
.fsb_c00059{font-size:75.333333pt;}
.fs2_c00059{font-size:76.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y26_c00059{bottom:189.761053pt;}
.y24_c00059{bottom:216.320107pt;}
.y25_c00059{bottom:216.320800pt;}
.y23_c00059{bottom:242.879867pt;}
.y22_c00059{bottom:242.880027pt;}
.y21_c00059{bottom:269.439773pt;}
.y1f_c00059{bottom:295.360733pt;}
.y20_c00059{bottom:295.360800pt;}
.y1e_c00059{bottom:322.240667pt;}
.y1d_c00059{bottom:348.801347pt;}
.y1c_c00059{bottom:374.720253pt;}
.y1b_c00059{bottom:374.721053pt;}
.y19_c00059{bottom:401.280720pt;}
.y1a_c00059{bottom:401.280800pt;}
.y18_c00059{bottom:428.160640pt;}
.y17_c00059{bottom:428.160680pt;}
.y16_c00059{bottom:455.040613pt;}
.y15_c00059{bottom:482.240973pt;}
.y14_c00059{bottom:508.160120pt;}
.y13_c00059{bottom:508.160787pt;}
.y12_c00059{bottom:560.641560pt;}
.y11_c00059{bottom:587.521480pt;}
.y10_c00059{bottom:613.761067pt;}
.yf_c00059{bottom:640.640987pt;}
.ye_c00059{bottom:667.841347pt;}
.yd_c00059{bottom:694.081013pt;}
.yb_c00059{bottom:720.959573pt;}
.yc_c00059{bottom:720.960933pt;}
.ya_c00059{bottom:747.519333pt;}
.y8_c00059{bottom:773.440307pt;}
.y9_c00059{bottom:773.440347pt;}
.y7_c00059{bottom:800.320227pt;}
.y6_c00059{bottom:854.080227pt;}
.y5_c00059{bottom:880.321413pt;}
.y4_c00059{bottom:907.519893pt;}
.y3_c00059{bottom:960.320840pt;}
.y2_c00059{bottom:986.880600pt;}
.y1_c00059{bottom:1013.440347pt;}
.h6_c00059{height:66.738281pt;}
.hc_c00059{height:66.750000pt;}
.h15_c00059{height:67.392578pt;}
.hd_c00059{height:67.445312pt;}
.h14_c00059{height:68.046875pt;}
.h1_c00059{height:68.701172pt;}
.h2_c00059{height:69.355469pt;}
.h13_c00059{height:69.875000pt;}
.h11_c00059{height:70.009766pt;}
.h5_c00059{height:70.664062pt;}
.hf_c00059{height:71.218750pt;}
.h7_c00059{height:71.318359pt;}
.ha_c00059{height:71.890625pt;}
.h4_c00059{height:71.972656pt;}
.h9_c00059{height:72.473958pt;}
.hb_c00059{height:72.562500pt;}
.h10_c00059{height:73.234375pt;}
.h8_c00059{height:73.281250pt;}
.he_c00059{height:73.791667pt;}
.h12_c00059{height:73.935547pt;}
.h3_c00059{height:74.589844pt;}
.h0_c00059{height:1122.666667pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:127.038533pt;}
.xb_c00059{left:127.999680pt;}
.x1d_c00059{left:128.961160pt;}
.x23_c00059{left:129.919560pt;}
.x5_c00059{left:140.480000pt;}
.x1e_c00059{left:142.719720pt;}
.xc_c00059{left:146.879867pt;}
.x2_c00059{left:150.079067pt;}
.x6_c00059{left:160.960000pt;}
.x1f_c00059{left:184.960000pt;}
.xd_c00059{left:195.199200pt;}
.x30_c00059{left:220.158667pt;}
.xe_c00059{left:224.318787pt;}
.x31_c00059{left:233.279333pt;}
.xf_c00059{left:253.440000pt;}
.x32_c00059{left:261.758787pt;}
.x33_c00059{left:276.799867pt;}
.x2c_c00059{left:297.919867pt;}
.x2d_c00059{left:310.719720pt;}
.x10_c00059{left:344.639613pt;}
.x11_c00059{left:365.438920pt;}
.x12_c00059{left:406.079587pt;}
.x9_c00059{left:436.158693pt;}
.x13_c00059{left:447.679733pt;}
.x2e_c00059{left:453.439453pt;}
.xa_c00059{left:455.679200pt;}
.x1b_c00059{left:461.438920pt;}
.x2f_c00059{left:471.358933pt;}
.x26_c00059{left:487.678667pt;}
.x1c_c00059{left:495.039587pt;}
.x14_c00059{left:496.639200pt;}
.x27_c00059{left:512.958907pt;}
.x15_c00059{left:517.759320pt;}
.x2b_c00059{left:522.559573pt;}
.x28_c00059{left:534.399867pt;}
.x16_c00059{left:535.678707pt;}
.x20_c00059{left:539.519453pt;}
.x7_c00059{left:557.119587pt;}
.x3_c00059{left:561.919840pt;}
.x29_c00059{left:563.519453pt;}
.x8_c00059{left:578.239707pt;}
.x4_c00059{left:583.359333pt;}
.x17_c00059{left:594.878907pt;}
.x18_c00059{left:615.679733pt;}
.x24_c00059{left:626.239707pt;}
.x19_c00059{left:640.319867pt;}
.x2a_c00059{left:645.118693pt;}
.x25_c00059{left:647.359867pt;}
.x21_c00059{left:657.919840pt;}
.x22_c00059{left:679.999427pt;}
.x1a_c00059{left:686.399413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a6391120091ab16470df541.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_261a5b4d0ef40df2daee09e3.woff2')format("woff");}.ff2_c00060{font-family:ff2_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:ff3_c00060;src:url('chunks/assets/font_b880cd37b25a642e3f587060.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_ff783c63be6f8a964b8e3d69.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_f14a43c8411ecd0d35f2774c.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00060;src:url('chunks/assets/font_d29c47a25baff659b16f84b2.woff2')format("woff");}.ff6_c00060{font-family:ff6_c00060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00060{transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.md_c00060{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{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_c00060{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m20_c00060{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m1f_c00060{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m12_c00060{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m18_c00060{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{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_c00060{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00060{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m21_c00060{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls16_c00060{letter-spacing:-18.360765px;}
.ls19_c00060{letter-spacing:-8.914500px;}
.ls7_c00060{letter-spacing:-8.175038px;}
.lsc_c00060{letter-spacing:-7.426125px;}
.lsb_c00060{letter-spacing:-6.685875px;}
.ls3_c00060{letter-spacing:-6.572700px;}
.ls24_c00060{letter-spacing:-6.300000px;}
.ls15_c00060{letter-spacing:-6.174000px;}
.ls1b_c00060{letter-spacing:-6.160478px;}
.ls18_c00060{letter-spacing:-6.120000px;}
.ls4_c00060{letter-spacing:-5.945625px;}
.ls1c_c00060{letter-spacing:-5.371275px;}
.ls8_c00060{letter-spacing:-5.196713px;}
.ls17_c00060{letter-spacing:-4.496625px;}
.lsd_c00060{letter-spacing:-4.460745px;}
.ls9_c00060{letter-spacing:-4.456463px;}
.ls27_c00060{letter-spacing:-4.453800px;}
.ls26_c00060{letter-spacing:-4.410975px;}
.ls0_c00060{letter-spacing:-3.717000px;}
.ls14_c00060{letter-spacing:-3.089228px;}
.ls1f_c00060{letter-spacing:-3.024750px;}
.ls2_c00060{letter-spacing:-2.968875px;}
.ls13_c00060{letter-spacing:-2.408963px;}
.ls11_c00060{letter-spacing:-2.363400px;}
.ls1_c00060{letter-spacing:-2.229413px;}
.ls1e_c00060{letter-spacing:-1.699500px;}
.ls12_c00060{letter-spacing:-1.622400px;}
.ls25_c00060{letter-spacing:-1.575000px;}
.ls5_c00060{letter-spacing:-1.489163px;}
.ls20_c00060{letter-spacing:-0.881655px;}
.ls23_c00060{letter-spacing:-0.786713px;}
.lsa_c00060{letter-spacing:-0.740250px;}
.ls6_c00060{letter-spacing:0.000000px;}
.ls22_c00060{letter-spacing:0.748800px;}
.lse_c00060{letter-spacing:1.827705px;}
.ls1a_c00060{letter-spacing:4.035000px;}
.ls21_c00060{letter-spacing:7.574310px;}
.ls1d_c00060{letter-spacing:8.551050px;}
.ls10_c00060{letter-spacing:9.656250px;}
.lsf_c00060{letter-spacing:43.200720px;}
.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;}
._3_c00060{margin-left:-4.484798px;}
._14_c00060{margin-left:-3.421688px;}
._13_c00060{margin-left:-2.277569px;}
._7_c00060{margin-left:-1.201205px;}
._1_c00060{width:1.318825px;}
._2_c00060{width:3.054148px;}
._a_c00060{width:4.606117px;}
._0_c00060{width:5.614548px;}
._5_c00060{width:7.355131px;}
._8_c00060{width:9.300524px;}
._4_c00060{width:11.316108px;}
._b_c00060{width:12.558337px;}
._19_c00060{width:13.636603px;}
._6_c00060{width:14.832221px;}
._15_c00060{width:15.842717px;}
._c_c00060{width:17.198272px;}
._12_c00060{width:18.540202px;}
._9_c00060{width:19.542749px;}
._e_c00060{width:20.923816px;}
._f_c00060{width:22.928211px;}
._11_c00060{width:24.882667px;}
._18_c00060{width:25.922123px;}
._10_c00060{width:27.365179px;}
._d_c00060{width:29.358089px;}
._17_c00060{width:31.937389px;}
._16_c00060{width:33.641911px;}
.fc0_c00060{color:transparent;}
.fs6_c00060{font-size:67.500000px;}
.fsb_c00060{font-size:68.250000px;}
.fs7_c00060{font-size:72.000000px;}
.fs9_c00060{font-size:75.000000px;}
.fs8_c00060{font-size:76.500000px;}
.fs5_c00060{font-size:77.250000px;}
.fs3_c00060{font-size:78.000000px;}
.fs0_c00060{font-size:78.750000px;}
.fs4_c00060{font-size:79.500000px;}
.fs2_c00060{font-size:80.250000px;}
.fsd_c00060{font-size:81.000000px;}
.fs1_c00060{font-size:81.750000px;}
.fsc_c00060{font-size:82.500000px;}
.fsa_c00060{font-size:84.750000px;}
.y0_c00060{bottom:0.000000px;}
.y28_c00060{bottom:182.160285px;}
.y26_c00060{bottom:212.039925px;}
.y27_c00060{bottom:212.040000px;}
.y25_c00060{bottom:242.279850px;}
.y24_c00060{bottom:242.280030px;}
.y23_c00060{bottom:271.801365px;}
.y22_c00060{bottom:301.320900px;}
.y21_c00060{bottom:360.721185px;}
.y1f_c00060{bottom:421.559595px;}
.y20_c00060{bottom:421.560285px;}
.y1e_c00060{bottom:450.720750px;}
.y1d_c00060{bottom:481.319145px;}
.y1c_c00060{bottom:510.480285px;}
.y1b_c00060{bottom:510.480405px;}
.y1a_c00060{bottom:540.360120px;}
.y19_c00060{bottom:570.239850px;}
.y18_c00060{bottom:599.761185px;}
.y17_c00060{bottom:599.761365px;}
.y16_c00060{bottom:629.280900px;}
.y15_c00060{bottom:629.281080px;}
.y14_c00060{bottom:659.160810px;}
.y13_c00060{bottom:689.040525px;}
.y12_c00060{bottom:719.280435px;}
.y11_c00060{bottom:750.601320px;}
.y10_c00060{bottom:779.400885px;}
.yf_c00060{bottom:779.401995px;}
.ye_c00060{bottom:808.921530px;}
.yd_c00060{bottom:838.801260px;}
.yc_c00060{bottom:868.680975px;}
.yb_c00060{bottom:898.560705px;}
.ya_c00060{bottom:958.681185px;}
.y9_c00060{bottom:958.681590px;}
.y8_c00060{bottom:988.201125px;}
.y7_c00060{bottom:1018.441035px;}
.y6_c00060{bottom:1047.960570px;}
.y5_c00060{bottom:1047.961650px;}
.y4_c00060{bottom:1077.841365px;}
.y2_c00060{bottom:1107.360765px;}
.y3_c00060{bottom:1107.360900px;}
.y1_c00060{bottom:1137.600675px;}
.h7_c00060{height:70.400391px;}
.h10_c00060{height:71.182617px;}
.he_c00060{height:73.608398px;}
.h8_c00060{height:75.093750px;}
.hc_c00060{height:75.603516px;}
.h9_c00060{height:75.816650px;}
.h4_c00060{height:76.552734px;}
.h1_c00060{height:77.288818px;}
.h6_c00060{height:77.853516px;}
.h5_c00060{height:78.024902px;}
.hd_c00060{height:78.222656px;}
.ha_c00060{height:78.609375px;}
.h3_c00060{height:78.760986px;}
.hb_c00060{height:79.365234px;}
.h13_c00060{height:79.497070px;}
.h12_c00060{height:80.121094px;}
.h2_c00060{height:80.233154px;}
.h11_c00060{height:83.144531px;}
.hf_c00060{height:83.177490px;}
.h0_c00060{height:1263.000000px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:139.319250px;}
.x11_c00060{left:140.398665px;}
.x25_c00060{left:141.479715px;}
.xc_c00060{left:164.878950px;}
.x26_c00060{left:165.958350px;}
.x32_c00060{left:167.039400px;}
.x2f_c00060{left:177.479250px;}
.x6_c00060{left:192.599100px;}
.x7_c00060{left:206.998950px;}
.xa_c00060{left:239.399250px;}
.x27_c00060{left:240.839535px;}
.xb_c00060{left:254.519100px;}
.x28_c00060{left:255.959400px;}
.x35_c00060{left:258.120000px;}
.xd_c00060{left:266.040000px;}
.x12_c00060{left:275.398635px;}
.xe_c00060{left:283.318800px;}
.x29_c00060{left:288.719100px;}
.x36_c00060{left:291.238785px;}
.x13_c00060{left:298.079385px;}
.x1d_c00060{left:308.519100px;}
.x1e_c00060{left:334.439685px;}
.x14_c00060{left:344.518635px;}
.x33_c00060{left:355.319250px;}
.x2a_c00060{left:361.439685px;}
.x15_c00060{left:366.479235px;}
.x21_c00060{left:368.278800px;}
.x34_c00060{left:374.040000px;}
.x2b_c00060{left:384.838950px;}
.x22_c00060{left:387.719565px;}
.x2c_c00060{left:403.918950px;}
.x30_c00060{left:444.598530px;}
.x16_c00060{left:449.278800px;}
.x2d_c00060{left:453.599670px;}
.xf_c00060{left:482.758530px;}
.x17_c00060{left:485.279850px;}
.x31_c00060{left:507.238770px;}
.x10_c00060{left:509.039985px;}
.x2e_c00060{left:517.678530px;}
.x1f_c00060{left:526.318770px;}
.x18_c00060{left:533.879520px;}
.x4_c00060{left:554.399820px;}
.x20_c00060{left:563.039985px;}
.x19_c00060{left:564.478635px;}
.x23_c00060{left:566.279850px;}
.x5_c00060{left:569.519670px;}
.x1a_c00060{left:582.479235px;}
.x24_c00060{left:607.318770px;}
.x1b_c00060{left:663.119985px;}
.x8_c00060{left:681.479685px;}
.x9_c00060{left:695.879520px;}
.x2_c00060{left:706.678530px;}
.x1c_c00060{left:708.838950px;}
.x3_c00060{left:726.119385px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls16_c00060{letter-spacing:-16.320680pt;}
.ls19_c00060{letter-spacing:-7.924000pt;}
.ls7_c00060{letter-spacing:-7.266700pt;}
.lsc_c00060{letter-spacing:-6.601000pt;}
.lsb_c00060{letter-spacing:-5.943000pt;}
.ls3_c00060{letter-spacing:-5.842400pt;}
.ls24_c00060{letter-spacing:-5.600000pt;}
.ls15_c00060{letter-spacing:-5.488000pt;}
.ls1b_c00060{letter-spacing:-5.475980pt;}
.ls18_c00060{letter-spacing:-5.440000pt;}
.ls4_c00060{letter-spacing:-5.285000pt;}
.ls1c_c00060{letter-spacing:-4.774467pt;}
.ls8_c00060{letter-spacing:-4.619300pt;}
.ls17_c00060{letter-spacing:-3.997000pt;}
.lsd_c00060{letter-spacing:-3.965107pt;}
.ls9_c00060{letter-spacing:-3.961300pt;}
.ls27_c00060{letter-spacing:-3.958933pt;}
.ls26_c00060{letter-spacing:-3.920867pt;}
.ls0_c00060{letter-spacing:-3.304000pt;}
.ls14_c00060{letter-spacing:-2.745980pt;}
.ls1f_c00060{letter-spacing:-2.688667pt;}
.ls2_c00060{letter-spacing:-2.639000pt;}
.ls13_c00060{letter-spacing:-2.141300pt;}
.ls11_c00060{letter-spacing:-2.100800pt;}
.ls1_c00060{letter-spacing:-1.981700pt;}
.ls1e_c00060{letter-spacing:-1.510667pt;}
.ls12_c00060{letter-spacing:-1.442133pt;}
.ls25_c00060{letter-spacing:-1.400000pt;}
.ls5_c00060{letter-spacing:-1.323700pt;}
.ls20_c00060{letter-spacing:-0.783693pt;}
.ls23_c00060{letter-spacing:-0.699300pt;}
.lsa_c00060{letter-spacing:-0.658000pt;}
.ls6_c00060{letter-spacing:0.000000pt;}
.ls22_c00060{letter-spacing:0.665600pt;}
.lse_c00060{letter-spacing:1.624627pt;}
.ls1a_c00060{letter-spacing:3.586667pt;}
.ls21_c00060{letter-spacing:6.732720pt;}
.ls1d_c00060{letter-spacing:7.600933pt;}
.ls10_c00060{letter-spacing:8.583333pt;}
.lsf_c00060{letter-spacing:38.400640pt;}
.ws0_c00060{word-spacing:0.000000pt;}
._3_c00060{margin-left:-3.986487pt;}
._14_c00060{margin-left:-3.041500pt;}
._13_c00060{margin-left:-2.024506pt;}
._7_c00060{margin-left:-1.067738pt;}
._1_c00060{width:1.172289pt;}
._2_c00060{width:2.714798pt;}
._a_c00060{width:4.094326pt;}
._0_c00060{width:4.990709pt;}
._5_c00060{width:6.537894pt;}
._8_c00060{width:8.267132pt;}
._4_c00060{width:10.058762pt;}
._b_c00060{width:11.162966pt;}
._19_c00060{width:12.121425pt;}
._6_c00060{width:13.184196pt;}
._15_c00060{width:14.082415pt;}
._c_c00060{width:15.287353pt;}
._12_c00060{width:16.480179pt;}
._9_c00060{width:17.371332pt;}
._e_c00060{width:18.598947pt;}
._f_c00060{width:20.380632pt;}
._11_c00060{width:22.117926pt;}
._18_c00060{width:23.041887pt;}
._10_c00060{width:24.324604pt;}
._d_c00060{width:26.096079pt;}
._17_c00060{width:28.388791pt;}
._16_c00060{width:29.903921pt;}
.fs6_c00060{font-size:60.000000pt;}
.fsb_c00060{font-size:60.666667pt;}
.fs7_c00060{font-size:64.000000pt;}
.fs9_c00060{font-size:66.666667pt;}
.fs8_c00060{font-size:68.000000pt;}
.fs5_c00060{font-size:68.666667pt;}
.fs3_c00060{font-size:69.333333pt;}
.fs0_c00060{font-size:70.000000pt;}
.fs4_c00060{font-size:70.666667pt;}
.fs2_c00060{font-size:71.333333pt;}
.fsd_c00060{font-size:72.000000pt;}
.fs1_c00060{font-size:72.666667pt;}
.fsc_c00060{font-size:73.333333pt;}
.fsa_c00060{font-size:75.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y28_c00060{bottom:161.920253pt;}
.y26_c00060{bottom:188.479933pt;}
.y27_c00060{bottom:188.480000pt;}
.y25_c00060{bottom:215.359867pt;}
.y24_c00060{bottom:215.360027pt;}
.y23_c00060{bottom:241.601213pt;}
.y22_c00060{bottom:267.840800pt;}
.y21_c00060{bottom:320.641053pt;}
.y1f_c00060{bottom:374.719640pt;}
.y20_c00060{bottom:374.720253pt;}
.y1e_c00060{bottom:400.640667pt;}
.y1d_c00060{bottom:427.839240pt;}
.y1c_c00060{bottom:453.760253pt;}
.y1b_c00060{bottom:453.760360pt;}
.y1a_c00060{bottom:480.320107pt;}
.y19_c00060{bottom:506.879867pt;}
.y18_c00060{bottom:533.121053pt;}
.y17_c00060{bottom:533.121213pt;}
.y16_c00060{bottom:559.360800pt;}
.y15_c00060{bottom:559.360960pt;}
.y14_c00060{bottom:585.920720pt;}
.y13_c00060{bottom:612.480467pt;}
.y12_c00060{bottom:639.360387pt;}
.y11_c00060{bottom:667.201173pt;}
.y10_c00060{bottom:692.800787pt;}
.yf_c00060{bottom:692.801773pt;}
.ye_c00060{bottom:719.041360pt;}
.yd_c00060{bottom:745.601120pt;}
.yc_c00060{bottom:772.160867pt;}
.yb_c00060{bottom:798.720627pt;}
.ya_c00060{bottom:852.161053pt;}
.y9_c00060{bottom:852.161413pt;}
.y8_c00060{bottom:878.401000pt;}
.y7_c00060{bottom:905.280920pt;}
.y6_c00060{bottom:931.520507pt;}
.y5_c00060{bottom:931.521467pt;}
.y4_c00060{bottom:958.081213pt;}
.y2_c00060{bottom:984.320680pt;}
.y3_c00060{bottom:984.320800pt;}
.y1_c00060{bottom:1011.200600pt;}
.h7_c00060{height:62.578125pt;}
.h10_c00060{height:63.273438pt;}
.he_c00060{height:65.429688pt;}
.h8_c00060{height:66.750000pt;}
.hc_c00060{height:67.203125pt;}
.h9_c00060{height:67.392578pt;}
.h4_c00060{height:68.046875pt;}
.h1_c00060{height:68.701172pt;}
.h6_c00060{height:69.203125pt;}
.h5_c00060{height:69.355469pt;}
.hd_c00060{height:69.531250pt;}
.ha_c00060{height:69.875000pt;}
.h3_c00060{height:70.009766pt;}
.hb_c00060{height:70.546875pt;}
.h13_c00060{height:70.664062pt;}
.h12_c00060{height:71.218750pt;}
.h2_c00060{height:71.318359pt;}
.h11_c00060{height:73.906250pt;}
.hf_c00060{height:73.935547pt;}
.h0_c00060{height:1122.666667pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:123.839333pt;}
.x11_c00060{left:124.798813pt;}
.x25_c00060{left:125.759747pt;}
.xc_c00060{left:146.559067pt;}
.x26_c00060{left:147.518533pt;}
.x32_c00060{left:148.479467pt;}
.x2f_c00060{left:157.759333pt;}
.x6_c00060{left:171.199200pt;}
.x7_c00060{left:183.999067pt;}
.xa_c00060{left:212.799333pt;}
.x27_c00060{left:214.079587pt;}
.xb_c00060{left:226.239200pt;}
.x28_c00060{left:227.519467pt;}
.x35_c00060{left:229.440000pt;}
.xd_c00060{left:236.480000pt;}
.x12_c00060{left:244.798787pt;}
.xe_c00060{left:251.838933pt;}
.x29_c00060{left:256.639200pt;}
.x36_c00060{left:258.878920pt;}
.x13_c00060{left:264.959453pt;}
.x1d_c00060{left:274.239200pt;}
.x1e_c00060{left:297.279720pt;}
.x14_c00060{left:306.238787pt;}
.x33_c00060{left:315.839333pt;}
.x2a_c00060{left:321.279720pt;}
.x15_c00060{left:325.759320pt;}
.x21_c00060{left:327.358933pt;}
.x34_c00060{left:332.480000pt;}
.x2b_c00060{left:342.079067pt;}
.x22_c00060{left:344.639613pt;}
.x2c_c00060{left:359.039067pt;}
.x30_c00060{left:395.198693pt;}
.x16_c00060{left:399.358933pt;}
.x2d_c00060{left:403.199707pt;}
.xf_c00060{left:429.118693pt;}
.x17_c00060{left:431.359867pt;}
.x31_c00060{left:450.878907pt;}
.x10_c00060{left:452.479987pt;}
.x2e_c00060{left:460.158693pt;}
.x1f_c00060{left:467.838907pt;}
.x18_c00060{left:474.559573pt;}
.x4_c00060{left:492.799840pt;}
.x20_c00060{left:500.479987pt;}
.x19_c00060{left:501.758787pt;}
.x23_c00060{left:503.359867pt;}
.x5_c00060{left:506.239707pt;}
.x1a_c00060{left:517.759320pt;}
.x24_c00060{left:539.838907pt;}
.x1b_c00060{left:589.439987pt;}
.x8_c00060{left:605.759720pt;}
.x9_c00060{left:618.559573pt;}
.x2_c00060{left:628.158693pt;}
.x1c_c00060{left:630.079067pt;}
.x3_c00060{left:645.439453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_985c311e5e8d53ed74978429.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_5ee6abbc5d6fc50e44f511de.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_1eed9e0328b78204740c08fc.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_6ba14e6294df061640a28ec4.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_fbc541d36f5175e5b994baa5.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00061;src:url('chunks/assets/font_af3693326a458e320fc38097.woff2')format("woff");}.ff6_c00061{font-family:ff6_c00061;line-height:1.364746;font-style:normal;font-weight: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_c00061;src:url('chunks/assets/font_4ec77e49058dd331100a1fd8.woff2')format("woff");}.ff7_c00061{font-family:ff7_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;}
.mc_c00061{transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(0.200472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200472,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m13_c00061{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.228417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228417,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m2a_c00061{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m21_c00061{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);}
.m2c_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);}
.m28_c00061{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.m0_c00061{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.me_c00061{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m1f_c00061{transform:matrix(0.273529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273529,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(0.291304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291304,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m1b_c00061{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.345833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345833,0.000000,0.000000,0.250000,0,0);}
.m25_c00061{transform:matrix(0.353659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353659,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls6_c00061{letter-spacing:-8.914500px;}
.ls25_c00061{letter-spacing:-8.175038px;}
.lsa_c00061{letter-spacing:-7.567575px;}
.ls24_c00061{letter-spacing:-7.426125px;}
.ls13_c00061{letter-spacing:-7.290945px;}
.lsf_c00061{letter-spacing:-5.945625px;}
.lsb_c00061{letter-spacing:-5.513550px;}
.ls19_c00061{letter-spacing:-5.482500px;}
.ls21_c00061{letter-spacing:-5.401628px;}
.ls10_c00061{letter-spacing:-5.196713px;}
.ls27_c00061{letter-spacing:-4.503600px;}
.ls11_c00061{letter-spacing:-4.456463px;}
.ls2_c00061{letter-spacing:-3.717000px;}
.ls26_c00061{letter-spacing:-3.588825px;}
.ls1a_c00061{letter-spacing:-3.253500px;}
.ls1c_c00061{letter-spacing:-3.116475px;}
.ls1_c00061{letter-spacing:-2.968875px;}
.ls1e_c00061{letter-spacing:-2.399700px;}
.ls0_c00061{letter-spacing:-2.229413px;}
.ls22_c00061{letter-spacing:-1.574895px;}
.ls9_c00061{letter-spacing:-1.574258px;}
.ls23_c00061{letter-spacing:-1.540800px;}
.ls4_c00061{letter-spacing:-1.489163px;}
.ls8_c00061{letter-spacing:-0.819788px;}
.ls1b_c00061{letter-spacing:-0.777600px;}
.lse_c00061{letter-spacing:-0.740250px;}
.lsc_c00061{letter-spacing:-0.691125px;}
.ls3_c00061{letter-spacing:0.000000px;}
.ls1d_c00061{letter-spacing:0.789750px;}
.ls12_c00061{letter-spacing:1.489163px;}
.ls28_c00061{letter-spacing:2.317500px;}
.ls5_c00061{letter-spacing:2.806358px;}
.lsd_c00061{letter-spacing:3.410400px;}
.ls29_c00061{letter-spacing:3.744450px;}
.ls1f_c00061{letter-spacing:4.198950px;}
.ls20_c00061{letter-spacing:4.415025px;}
.ls16_c00061{letter-spacing:5.515365px;}
.ls7_c00061{letter-spacing:11.386148px;}
.ls17_c00061{letter-spacing:13.751100px;}
.ls14_c00061{letter-spacing:15.137625px;}
.ls18_c00061{letter-spacing:21.760875px;}
.ls15_c00061{letter-spacing:128.413050px;}
.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;}
._19_c00061{margin-left:-74.321488px;}
._c_c00061{margin-left:-14.821507px;}
._b_c00061{margin-left:-12.723293px;}
._a_c00061{margin-left:-11.406094px;}
._1b_c00061{margin-left:-5.424879px;}
._9_c00061{margin-left:-3.069526px;}
._16_c00061{margin-left:-1.566858px;}
._8_c00061{width:1.318216px;}
._4_c00061{width:2.870675px;}
._5_c00061{width:4.506446px;}
._2_c00061{width:5.743772px;}
._6_c00061{width:6.855083px;}
._3_c00061{width:8.780179px;}
._1_c00061{width:10.167190px;}
._f_c00061{width:11.974636px;}
._0_c00061{width:13.047879px;}
._10_c00061{width:14.906706px;}
._e_c00061{width:17.319547px;}
._d_c00061{width:18.977710px;}
._17_c00061{width:21.195993px;}
._18_c00061{width:22.437628px;}
._7_c00061{width:23.853538px;}
._1a_c00061{width:25.938036px;}
._12_c00061{width:27.861423px;}
._13_c00061{width:30.628178px;}
._11_c00061{width:33.329645px;}
._14_c00061{width:35.679099px;}
._15_c00061{width:48.549583px;}
.fc0_c00061{color:transparent;}
.fsc_c00061{font-size:27.750000px;}
.fs17_c00061{font-size:30.750000px;}
.fs16_c00061{font-size:31.500000px;}
.fsd_c00061{font-size:32.250000px;}
.fs10_c00061{font-size:33.000000px;}
.fse_c00061{font-size:36.000000px;}
.fs6_c00061{font-size:43.500000px;}
.fs13_c00061{font-size:45.000000px;}
.fsf_c00061{font-size:46.500000px;}
.fs11_c00061{font-size:51.750000px;}
.fs15_c00061{font-size:57.000000px;}
.fs14_c00061{font-size:60.750000px;}
.fs3_c00061{font-size:62.250000px;}
.fs12_c00061{font-size:63.750000px;}
.fs4_c00061{font-size:66.750000px;}
.fs9_c00061{font-size:69.000000px;}
.fs5_c00061{font-size:71.250000px;}
.fs1b_c00061{font-size:75.000000px;}
.fs18_c00061{font-size:77.250000px;}
.fs1c_c00061{font-size:78.000000px;}
.fs0_c00061{font-size:78.750000px;}
.fsb_c00061{font-size:79.500000px;}
.fs1_c00061{font-size:80.250000px;}
.fs1a_c00061{font-size:81.000000px;}
.fs19_c00061{font-size:81.750000px;}
.fsa_c00061{font-size:82.500000px;}
.fs2_c00061{font-size:83.250000px;}
.fs8_c00061{font-size:86.250000px;}
.fs7_c00061{font-size:104.250000px;}
.y0_c00061{bottom:0.000000px;}
.y27_c00061{bottom:181.439250px;}
.y26_c00061{bottom:181.439415px;}
.y25_c00061{bottom:210.958950px;}
.y24_c00061{bottom:270.359580px;}
.y23_c00061{bottom:299.879100px;}
.y21_c00061{bottom:329.398125px;}
.y22_c00061{bottom:329.398635px;}
.y1f_c00061{bottom:359.638320px;}
.y20_c00061{bottom:359.640150px;}
.y1e_c00061{bottom:419.397765px;}
.y1d_c00061{bottom:449.277495px;}
.y1c_c00061{bottom:479.519505px;}
.y1b_c00061{bottom:509.039040px;}
.y1a_c00061{bottom:538.918755px;}
.y19_c00061{bottom:568.438290px;}
.y18_c00061{bottom:598.680315px;}
.y17_c00061{bottom:628.199850px;}
.y16_c00061{bottom:687.600135px;}
.y15_c00061{bottom:747.359850px;}
.y14_c00061{bottom:754.198785px;}
.y12_c00061{bottom:777.598920px;}
.y13_c00061{bottom:777.599670px;}
.y10_c00061{bottom:807.478140px;}
.y11_c00061{bottom:807.478635px;}
.yf_c00061{bottom:837.720150px;}
.ye_c00061{bottom:897.118740px;}
.yd_c00061{bottom:897.119640px;}
.yc_c00061{bottom:926.999355px;}
.yb_c00061{bottom:926.999790px;}
.ya_c00061{bottom:956.519325px;}
.y9_c00061{bottom:986.759235px;}
.y8_c00061{bottom:1016.638965px;}
.y7_c00061{bottom:1045.800105px;}
.y5_c00061{bottom:1072.439205px;}
.y6_c00061{bottom:1076.039985px;}
.y4_c00061{bottom:1077.478635px;}
.y2_c00061{bottom:1105.918905px;}
.y3_c00061{bottom:1105.918950px;}
.y1_c00061{bottom:1136.158815px;}
.h1b_c00061{height:27.966797px;}
.he_c00061{height:28.942383px;}
.h1a_c00061{height:30.164429px;}
.h19_c00061{height:31.746094px;}
.h11_c00061{height:31.872070px;}
.h13_c00061{height:33.257812px;}
.hf_c00061{height:33.635742px;}
.h10_c00061{height:37.546875px;}
.h16_c00061{height:45.351562px;}
.h8_c00061{height:45.369141px;}
.h12_c00061{height:46.863281px;}
.h14_c00061{height:52.154297px;}
.h18_c00061{height:57.445312px;}
.h17_c00061{height:60.038086px;}
.h4_c00061{height:62.736328px;}
.h15_c00061{height:64.248047px;}
.h6_c00061{height:69.618164px;}
.h7_c00061{height:69.927979px;}
.hb_c00061{height:71.964844px;}
.h21_c00061{height:73.608398px;}
.h22_c00061{height:76.552734px;}
.h1_c00061{height:77.288818px;}
.h1e_c00061{height:77.853516px;}
.hd_c00061{height:78.024902px;}
.h2_c00061{height:78.760986px;}
.h5_c00061{height:79.365234px;}
.h20_c00061{height:79.497070px;}
.h1d_c00061{height:80.121094px;}
.h1f_c00061{height:80.233154px;}
.h1c_c00061{height:80.876953px;}
.hc_c00061{height:80.969238px;}
.h3_c00061{height:81.705322px;}
.ha_c00061{height:89.956055px;}
.h9_c00061{height:108.729492px;}
.h0_c00061{height:1263.000000px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:143.279250px;}
.xe_c00061{left:165.958350px;}
.x1b_c00061{left:168.118815px;}
.x30_c00061{left:169.199850px;}
.xf_c00061{left:187.198785px;}
.x10_c00061{left:191.878950px;}
.x27_c00061{left:194.759535px;}
.x11_c00061{left:196.559100px;}
.x20_c00061{left:204.120000px;}
.x12_c00061{left:206.278800px;}
.x13_c00061{left:214.918950px;}
.x8_c00061{left:226.078785px;}
.x21_c00061{left:227.519100px;}
.x14_c00061{left:234.359850px;}
.x4_c00061{left:250.559100px;}
.x28_c00061{left:268.918950px;}
.x5_c00061{left:288.359850px;}
.x29_c00061{left:292.679100px;}
.x1e_c00061{left:311.759100px;}
.x9_c00061{left:313.919535px;}
.x1f_c00061{left:330.479685px;}
.xa_c00061{left:345.238785px;}
.x15_c00061{left:360.358635px;}
.x6_c00061{left:361.439685px;}
.xb_c00061{left:364.679700px;}
.x22_c00061{left:369.719100px;}
.x16_c00061{left:375.119385px;}
.x7_c00061{left:376.918950px;}
.x19_c00061{left:383.398635px;}
.x23_c00061{left:391.318770px;}
.x1a_c00061{left:397.798515px;}
.x2_c00061{left:401.758530px;}
.xc_c00061{left:412.559100px;}
.x3_c00061{left:416.519070px;}
.xd_c00061{left:429.839535px;}
.x1c_c00061{left:470.519070px;}
.x31_c00061{left:471.959385px;}
.x1d_c00061{left:485.279850px;}
.x32_c00061{left:495.719565px;}
.x24_c00061{left:518.039385px;}
.x25_c00061{left:637.919535px;}
.x26_c00061{left:652.678530px;}
.x2a_c00061{left:696.958920px;}
.x17_c00061{left:699.478635px;}
.x2b_c00061{left:710.638545px;}
.x18_c00061{left:713.878320px;}
.x2c_c00061{left:723.238770px;}
.x2e_c00061{left:730.438620px;}
.x2f_c00061{left:768.598575px;}
.x2d_c00061{left:772.919490px;}
.x33_c00061{left:777.599670px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls6_c00061{letter-spacing:-7.924000pt;}
.ls25_c00061{letter-spacing:-7.266700pt;}
.lsa_c00061{letter-spacing:-6.726733pt;}
.ls24_c00061{letter-spacing:-6.601000pt;}
.ls13_c00061{letter-spacing:-6.480840pt;}
.lsf_c00061{letter-spacing:-5.285000pt;}
.lsb_c00061{letter-spacing:-4.900933pt;}
.ls19_c00061{letter-spacing:-4.873333pt;}
.ls21_c00061{letter-spacing:-4.801447pt;}
.ls10_c00061{letter-spacing:-4.619300pt;}
.ls27_c00061{letter-spacing:-4.003200pt;}
.ls11_c00061{letter-spacing:-3.961300pt;}
.ls2_c00061{letter-spacing:-3.304000pt;}
.ls26_c00061{letter-spacing:-3.190067pt;}
.ls1a_c00061{letter-spacing:-2.892000pt;}
.ls1c_c00061{letter-spacing:-2.770200pt;}
.ls1_c00061{letter-spacing:-2.639000pt;}
.ls1e_c00061{letter-spacing:-2.133067pt;}
.ls0_c00061{letter-spacing:-1.981700pt;}
.ls22_c00061{letter-spacing:-1.399907pt;}
.ls9_c00061{letter-spacing:-1.399340pt;}
.ls23_c00061{letter-spacing:-1.369600pt;}
.ls4_c00061{letter-spacing:-1.323700pt;}
.ls8_c00061{letter-spacing:-0.728700pt;}
.ls1b_c00061{letter-spacing:-0.691200pt;}
.lse_c00061{letter-spacing:-0.658000pt;}
.lsc_c00061{letter-spacing:-0.614333pt;}
.ls3_c00061{letter-spacing:0.000000pt;}
.ls1d_c00061{letter-spacing:0.702000pt;}
.ls12_c00061{letter-spacing:1.323700pt;}
.ls28_c00061{letter-spacing:2.060000pt;}
.ls5_c00061{letter-spacing:2.494540pt;}
.lsd_c00061{letter-spacing:3.031467pt;}
.ls29_c00061{letter-spacing:3.328400pt;}
.ls1f_c00061{letter-spacing:3.732400pt;}
.ls20_c00061{letter-spacing:3.924467pt;}
.ls16_c00061{letter-spacing:4.902547pt;}
.ls7_c00061{letter-spacing:10.121020pt;}
.ls17_c00061{letter-spacing:12.223200pt;}
.ls14_c00061{letter-spacing:13.455667pt;}
.ls18_c00061{letter-spacing:19.343000pt;}
.ls15_c00061{letter-spacing:114.144933pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._19_c00061{margin-left:-66.063545pt;}
._c_c00061{margin-left:-13.174673pt;}
._b_c00061{margin-left:-11.309594pt;}
._a_c00061{margin-left:-10.138750pt;}
._1b_c00061{margin-left:-4.822115pt;}
._9_c00061{margin-left:-2.728468pt;}
._16_c00061{margin-left:-1.392762pt;}
._8_c00061{width:1.171747pt;}
._4_c00061{width:2.551711pt;}
._5_c00061{width:4.005730pt;}
._2_c00061{width:5.105575pt;}
._6_c00061{width:6.093408pt;}
._3_c00061{width:7.804604pt;}
._1_c00061{width:9.037502pt;}
._f_c00061{width:10.644121pt;}
._0_c00061{width:11.598115pt;}
._10_c00061{width:13.250406pt;}
._e_c00061{width:15.395153pt;}
._d_c00061{width:16.869075pt;}
._17_c00061{width:18.840883pt;}
._18_c00061{width:19.944558pt;}
._7_c00061{width:21.203145pt;}
._1a_c00061{width:23.056032pt;}
._12_c00061{width:24.765709pt;}
._13_c00061{width:27.225047pt;}
._11_c00061{width:29.626351pt;}
._14_c00061{width:31.714755pt;}
._15_c00061{width:43.155185pt;}
.fsc_c00061{font-size:24.666667pt;}
.fs17_c00061{font-size:27.333333pt;}
.fs16_c00061{font-size:28.000000pt;}
.fsd_c00061{font-size:28.666667pt;}
.fs10_c00061{font-size:29.333333pt;}
.fse_c00061{font-size:32.000000pt;}
.fs6_c00061{font-size:38.666667pt;}
.fs13_c00061{font-size:40.000000pt;}
.fsf_c00061{font-size:41.333333pt;}
.fs11_c00061{font-size:46.000000pt;}
.fs15_c00061{font-size:50.666667pt;}
.fs14_c00061{font-size:54.000000pt;}
.fs3_c00061{font-size:55.333333pt;}
.fs12_c00061{font-size:56.666667pt;}
.fs4_c00061{font-size:59.333333pt;}
.fs9_c00061{font-size:61.333333pt;}
.fs5_c00061{font-size:63.333333pt;}
.fs1b_c00061{font-size:66.666667pt;}
.fs18_c00061{font-size:68.666667pt;}
.fs1c_c00061{font-size:69.333333pt;}
.fs0_c00061{font-size:70.000000pt;}
.fsb_c00061{font-size:70.666667pt;}
.fs1_c00061{font-size:71.333333pt;}
.fs1a_c00061{font-size:72.000000pt;}
.fs19_c00061{font-size:72.666667pt;}
.fsa_c00061{font-size:73.333333pt;}
.fs2_c00061{font-size:74.000000pt;}
.fs8_c00061{font-size:76.666667pt;}
.fs7_c00061{font-size:92.666667pt;}
.y0_c00061{bottom:0.000000pt;}
.y27_c00061{bottom:161.279333pt;}
.y26_c00061{bottom:161.279480pt;}
.y25_c00061{bottom:187.519067pt;}
.y24_c00061{bottom:240.319627pt;}
.y23_c00061{bottom:266.559200pt;}
.y21_c00061{bottom:292.798333pt;}
.y22_c00061{bottom:292.798787pt;}
.y1f_c00061{bottom:319.678507pt;}
.y20_c00061{bottom:319.680133pt;}
.y1e_c00061{bottom:372.798013pt;}
.y1d_c00061{bottom:399.357773pt;}
.y1c_c00061{bottom:426.239560pt;}
.y1b_c00061{bottom:452.479147pt;}
.y1a_c00061{bottom:479.038893pt;}
.y19_c00061{bottom:505.278480pt;}
.y18_c00061{bottom:532.160280pt;}
.y17_c00061{bottom:558.399867pt;}
.y16_c00061{bottom:611.200120pt;}
.y15_c00061{bottom:664.319867pt;}
.y14_c00061{bottom:670.398920pt;}
.y12_c00061{bottom:691.199040pt;}
.y13_c00061{bottom:691.199707pt;}
.y10_c00061{bottom:717.758347pt;}
.y11_c00061{bottom:717.758787pt;}
.yf_c00061{bottom:744.640133pt;}
.ye_c00061{bottom:797.438880pt;}
.yd_c00061{bottom:797.439680pt;}
.yc_c00061{bottom:823.999427pt;}
.yb_c00061{bottom:823.999813pt;}
.ya_c00061{bottom:850.239400pt;}
.y9_c00061{bottom:877.119320pt;}
.y8_c00061{bottom:903.679080pt;}
.y7_c00061{bottom:929.600093pt;}
.y5_c00061{bottom:953.279293pt;}
.y6_c00061{bottom:956.479987pt;}
.y4_c00061{bottom:957.758787pt;}
.y2_c00061{bottom:983.039027pt;}
.y3_c00061{bottom:983.039067pt;}
.y1_c00061{bottom:1009.918947pt;}
.h1b_c00061{height:24.859375pt;}
.he_c00061{height:25.726562pt;}
.h1a_c00061{height:26.812826pt;}
.h19_c00061{height:28.218750pt;}
.h11_c00061{height:28.330729pt;}
.h13_c00061{height:29.562500pt;}
.hf_c00061{height:29.898438pt;}
.h10_c00061{height:33.375000pt;}
.h16_c00061{height:40.312500pt;}
.h8_c00061{height:40.328125pt;}
.h12_c00061{height:41.656250pt;}
.h14_c00061{height:46.359375pt;}
.h18_c00061{height:51.062500pt;}
.h17_c00061{height:53.367188pt;}
.h4_c00061{height:55.765625pt;}
.h15_c00061{height:57.109375pt;}
.h6_c00061{height:61.882812pt;}
.h7_c00061{height:62.158203pt;}
.hb_c00061{height:63.968750pt;}
.h21_c00061{height:65.429688pt;}
.h22_c00061{height:68.046875pt;}
.h1_c00061{height:68.701172pt;}
.h1e_c00061{height:69.203125pt;}
.hd_c00061{height:69.355469pt;}
.h2_c00061{height:70.009766pt;}
.h5_c00061{height:70.546875pt;}
.h20_c00061{height:70.664062pt;}
.h1d_c00061{height:71.218750pt;}
.h1f_c00061{height:71.318359pt;}
.h1c_c00061{height:71.890625pt;}
.hc_c00061{height:71.972656pt;}
.h3_c00061{height:72.626953pt;}
.ha_c00061{height:79.960938pt;}
.h9_c00061{height:96.648438pt;}
.h0_c00061{height:1122.666667pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:127.359333pt;}
.xe_c00061{left:147.518533pt;}
.x1b_c00061{left:149.438947pt;}
.x30_c00061{left:150.399867pt;}
.xf_c00061{left:166.398920pt;}
.x10_c00061{left:170.559067pt;}
.x27_c00061{left:173.119587pt;}
.x11_c00061{left:174.719200pt;}
.x20_c00061{left:181.440000pt;}
.x12_c00061{left:183.358933pt;}
.x13_c00061{left:191.039067pt;}
.x8_c00061{left:200.958920pt;}
.x21_c00061{left:202.239200pt;}
.x14_c00061{left:208.319867pt;}
.x4_c00061{left:222.719200pt;}
.x28_c00061{left:239.039067pt;}
.x5_c00061{left:256.319867pt;}
.x29_c00061{left:260.159200pt;}
.x1e_c00061{left:277.119200pt;}
.x9_c00061{left:279.039587pt;}
.x1f_c00061{left:293.759720pt;}
.xa_c00061{left:306.878920pt;}
.x15_c00061{left:320.318787pt;}
.x6_c00061{left:321.279720pt;}
.xb_c00061{left:324.159733pt;}
.x22_c00061{left:328.639200pt;}
.x16_c00061{left:333.439453pt;}
.x7_c00061{left:335.039067pt;}
.x19_c00061{left:340.798787pt;}
.x23_c00061{left:347.838907pt;}
.x1a_c00061{left:353.598680pt;}
.x2_c00061{left:357.118693pt;}
.xc_c00061{left:366.719200pt;}
.x3_c00061{left:370.239173pt;}
.xd_c00061{left:382.079587pt;}
.x1c_c00061{left:418.239173pt;}
.x31_c00061{left:419.519453pt;}
.x1d_c00061{left:431.359867pt;}
.x32_c00061{left:440.639613pt;}
.x24_c00061{left:460.479453pt;}
.x25_c00061{left:567.039587pt;}
.x26_c00061{left:580.158693pt;}
.x2a_c00061{left:619.519040pt;}
.x17_c00061{left:621.758787pt;}
.x2b_c00061{left:631.678707pt;}
.x18_c00061{left:634.558507pt;}
.x2c_c00061{left:642.878907pt;}
.x2e_c00061{left:649.278773pt;}
.x2f_c00061{left:683.198733pt;}
.x2d_c00061{left:687.039547pt;}
.x33_c00061{left:691.199707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7aeb3273046b2b2b628f517.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_8ecdf425aafdcb8bc3385263.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.364746;font-style:normal;font-weight:normal;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_d10968e2a27ae168e8a8fa3b.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_4ced3181d418ead5fb64746a.woff2')format("woff");}.ff4_c00062{font-family:ff4_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;}
.m1_c00062{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mf_c00062{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:1.439040px;}
.ls9_c00062{letter-spacing:-11.550000px;}
.ls14_c00062{letter-spacing:-8.357250px;}
.ls1b_c00062{letter-spacing:-7.576538px;}
.ls15_c00062{letter-spacing:-6.811875px;}
.lsd_c00062{letter-spacing:-6.286500px;}
.ls1c_c00062{letter-spacing:-6.055875px;}
.ls17_c00062{letter-spacing:-5.408550px;}
.ls8_c00062{letter-spacing:-5.300663px;}
.ls13_c00062{letter-spacing:-5.297400px;}
.lsa_c00062{letter-spacing:-4.543088px;}
.ls12_c00062{letter-spacing:-3.787875px;}
.lsf_c00062{letter-spacing:-3.785025px;}
.ls6_c00062{letter-spacing:-3.031875px;}
.ls1a_c00062{letter-spacing:-2.526090px;}
.lsb_c00062{letter-spacing:-2.470950px;}
.lsc_c00062{letter-spacing:-2.378925px;}
.ls5_c00062{letter-spacing:-2.267213px;}
.lse_c00062{letter-spacing:-1.560038px;}
.ls4_c00062{letter-spacing:-1.512000px;}
.ls10_c00062{letter-spacing:-0.779625px;}
.ls16_c00062{letter-spacing:-0.771893px;}
.ls7_c00062{letter-spacing:-0.756000px;}
.ls11_c00062{letter-spacing:0.000000px;}
.ls1_c00062{letter-spacing:0.756000px;}
.ls2_c00062{letter-spacing:0.771893px;}
.ls0_c00062{letter-spacing:1.512000px;}
.ls3_c00062{letter-spacing:3.090600px;}
.ls19_c00062{letter-spacing:11.598083px;}
.ls18_c00062{letter-spacing:41.824800px;}
.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;}
._14_c00062{margin-left:-20.325314px;}
._5_c00062{margin-left:-6.922367px;}
._d_c00062{margin-left:-5.233967px;}
._12_c00062{margin-left:-3.088575px;}
._c_c00062{margin-left:-1.731773px;}
._0_c00062{width:2.127280px;}
._e_c00062{width:3.594332px;}
._4_c00062{width:4.739538px;}
._21_c00062{width:5.843129px;}
._9_c00062{width:6.934240px;}
._b_c00062{width:8.626881px;}
._3_c00062{width:9.904206px;}
._2_c00062{width:11.355629px;}
._a_c00062{width:12.553174px;}
._1a_c00062{width:13.718250px;}
._1_c00062{width:14.871453px;}
._17_c00062{width:16.658714px;}
._10_c00062{width:18.781209px;}
._6_c00062{width:20.122079px;}
._7_c00062{width:21.268012px;}
._16_c00062{width:22.401770px;}
._15_c00062{width:24.174675px;}
._8_c00062{width:25.225866px;}
._11_c00062{width:26.461090px;}
._18_c00062{width:29.533976px;}
._f_c00062{width:30.551062px;}
._13_c00062{width:31.902291px;}
._19_c00062{width:33.303981px;}
._20_c00062{width:37.874812px;}
._1f_c00062{width:40.422375px;}
._1e_c00062{width:46.855584px;}
._1b_c00062{width:62.628400px;}
._1c_c00062{width:102.974009px;}
._1d_c00062{width:204.100614px;}
.fc0_c00062{color:transparent;}
.fs9_c00062{font-size:55.500000px;}
.fsa_c00062{font-size:69.000000px;}
.fs8_c00062{font-size:75.750000px;}
.fs2_c00062{font-size:76.500000px;}
.fs7_c00062{font-size:78.000000px;}
.fs0_c00062{font-size:78.750000px;}
.fs5_c00062{font-size:80.250000px;}
.fs6_c00062{font-size:81.000000px;}
.fs3_c00062{font-size:81.750000px;}
.fs4_c00062{font-size:82.500000px;}
.fs1_c00062{font-size:84.000000px;}
.y0_c00062{bottom:0.000000px;}
.y22_c00062{bottom:244.800435px;}
.y21_c00062{bottom:274.680150px;}
.y20_c00062{bottom:304.559280px;}
.y1f_c00062{bottom:333.720435px;}
.y1d_c00062{bottom:363.599505px;}
.y1e_c00062{bottom:363.600150px;}
.y1c_c00062{bottom:393.479235px;}
.y1a_c00062{bottom:423.359850px;}
.y1b_c00062{bottom:423.719100px;}
.y19_c00062{bottom:483.119385px;}
.y18_c00062{bottom:542.880150px;}
.y17_c00062{bottom:572.759880px;}
.y16_c00062{bottom:602.639610px;}
.y15_c00062{bottom:632.519325px;}
.y14_c00062{bottom:692.278770px;}
.y12_c00062{bottom:721.799535px;}
.y13_c00062{bottom:721.800105px;}
.y11_c00062{bottom:751.679265px;}
.y10_c00062{bottom:781.198785px;}
.yf_c00062{bottom:781.199685px;}
.ye_c00062{bottom:811.079400px;}
.yd_c00062{bottom:811.079685px;}
.yc_c00062{bottom:841.680090px;}
.yb_c00062{bottom:841.680225px;}
.ya_c00062{bottom:871.559940px;}
.y9_c00062{bottom:901.439670px;}
.y8_c00062{bottom:901.439895px;}
.y7_c00062{bottom:931.319625px;}
.y6_c00062{bottom:961.199340px;}
.y5_c00062{bottom:1020.599670px;}
.y4_c00062{bottom:1080.720150px;}
.y3_c00062{bottom:1080.720195px;}
.y2_c00062{bottom:1110.599925px;}
.y1_c00062{bottom:1140.479640px;}
.he_c00062{height:55.933594px;}
.h10_c00062{height:71.964844px;}
.hd_c00062{height:74.344482px;}
.h11_c00062{height:75.080566px;}
.hf_c00062{height:75.783522px;}
.hb_c00062{height:76.552734px;}
.h1_c00062{height:77.288818px;}
.h8_c00062{height:78.760986px;}
.h6_c00062{height:79.365234px;}
.h9_c00062{height:79.497070px;}
.h3_c00062{height:79.787109px;}
.h7_c00062{height:80.969238px;}
.ha_c00062{height:81.533203px;}
.hc_c00062{height:81.632812px;}
.h4_c00062{height:82.388672px;}
.h2_c00062{height:83.015625px;}
.h5_c00062{height:83.144531px;}
.h0_c00062{height:1263.000000px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.x4_c00062{left:143.279250px;}
.x1_c00062{left:144.358665px;}
.x1f_c00062{left:163.799565px;}
.x18_c00062{left:179.278800px;}
.x5_c00062{left:195.479685px;}
.x6_c00062{left:262.439250px;}
.x14_c00062{left:292.319850px;}
.x2_c00062{left:294.839535px;}
.x15_c00062{left:307.439685px;}
.x7_c00062{left:309.598530px;}
.x3_c00062{left:315.359850px;}
.x8_c00062{left:333.358635px;}
.xa_c00062{left:335.519100px;}
.xb_c00062{left:350.639100px;}
.x9_c00062{left:360.719535px;}
.x19_c00062{left:394.919535px;}
.xc_c00062{left:397.798515px;}
.xd_c00062{left:414.358665px;}
.x1a_c00062{left:420.479235px;}
.x12_c00062{left:448.558635px;}
.x13_c00062{left:471.598530px;}
.xe_c00062{left:489.599070px;}
.xf_c00062{left:505.080000px;}
.x10_c00062{left:507.958920px;}
.x1c_c00062{left:514.799520px;}
.x11_c00062{left:533.518620px;}
.x1d_c00062{left:536.758530px;}
.x16_c00062{left:682.199850px;}
.x17_c00062{left:721.080000px;}
.x1e_c00062{left:748.798560px;}
.x1b_c00062{left:763.918350px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:1.279147pt;}
.ls9_c00062{letter-spacing:-10.266667pt;}
.ls14_c00062{letter-spacing:-7.428667pt;}
.ls1b_c00062{letter-spacing:-6.734700pt;}
.ls15_c00062{letter-spacing:-6.055000pt;}
.lsd_c00062{letter-spacing:-5.588000pt;}
.ls1c_c00062{letter-spacing:-5.383000pt;}
.ls17_c00062{letter-spacing:-4.807600pt;}
.ls8_c00062{letter-spacing:-4.711700pt;}
.ls13_c00062{letter-spacing:-4.708800pt;}
.lsa_c00062{letter-spacing:-4.038300pt;}
.ls12_c00062{letter-spacing:-3.367000pt;}
.lsf_c00062{letter-spacing:-3.364467pt;}
.ls6_c00062{letter-spacing:-2.695000pt;}
.ls1a_c00062{letter-spacing:-2.245413pt;}
.lsb_c00062{letter-spacing:-2.196400pt;}
.lsc_c00062{letter-spacing:-2.114600pt;}
.ls5_c00062{letter-spacing:-2.015300pt;}
.lse_c00062{letter-spacing:-1.386700pt;}
.ls4_c00062{letter-spacing:-1.344000pt;}
.ls10_c00062{letter-spacing:-0.693000pt;}
.ls16_c00062{letter-spacing:-0.686127pt;}
.ls7_c00062{letter-spacing:-0.672000pt;}
.ls11_c00062{letter-spacing:0.000000pt;}
.ls1_c00062{letter-spacing:0.672000pt;}
.ls2_c00062{letter-spacing:0.686127pt;}
.ls0_c00062{letter-spacing:1.344000pt;}
.ls3_c00062{letter-spacing:2.747200pt;}
.ls19_c00062{letter-spacing:10.309407pt;}
.ls18_c00062{letter-spacing:37.177600pt;}
.ws0_c00062{word-spacing:0.000000pt;}
._14_c00062{margin-left:-18.066946pt;}
._5_c00062{margin-left:-6.153215pt;}
._d_c00062{margin-left:-4.652415pt;}
._12_c00062{margin-left:-2.745400pt;}
._c_c00062{margin-left:-1.539354pt;}
._0_c00062{width:1.890915pt;}
._e_c00062{width:3.194962pt;}
._4_c00062{width:4.212923pt;}
._21_c00062{width:5.193892pt;}
._9_c00062{width:6.163769pt;}
._b_c00062{width:7.668338pt;}
._3_c00062{width:8.803738pt;}
._2_c00062{width:10.093892pt;}
._a_c00062{width:11.158377pt;}
._1a_c00062{width:12.194000pt;}
._1_c00062{width:13.219069pt;}
._17_c00062{width:14.807746pt;}
._10_c00062{width:16.694408pt;}
._6_c00062{width:17.886292pt;}
._7_c00062{width:18.904900pt;}
._16_c00062{width:19.912685pt;}
._15_c00062{width:21.488600pt;}
._8_c00062{width:22.422992pt;}
._11_c00062{width:23.520969pt;}
._18_c00062{width:26.252423pt;}
._f_c00062{width:27.156500pt;}
._13_c00062{width:28.357592pt;}
._19_c00062{width:29.603538pt;}
._20_c00062{width:33.666500pt;}
._1f_c00062{width:35.931000pt;}
._1e_c00062{width:41.649408pt;}
._1b_c00062{width:55.669689pt;}
._1c_c00062{width:91.532452pt;}
._1d_c00062{width:181.422768pt;}
.fs9_c00062{font-size:49.333333pt;}
.fsa_c00062{font-size:61.333333pt;}
.fs8_c00062{font-size:67.333333pt;}
.fs2_c00062{font-size:68.000000pt;}
.fs7_c00062{font-size:69.333333pt;}
.fs0_c00062{font-size:70.000000pt;}
.fs5_c00062{font-size:71.333333pt;}
.fs6_c00062{font-size:72.000000pt;}
.fs3_c00062{font-size:72.666667pt;}
.fs4_c00062{font-size:73.333333pt;}
.fs1_c00062{font-size:74.666667pt;}
.y0_c00062{bottom:0.000000pt;}
.y22_c00062{bottom:217.600387pt;}
.y21_c00062{bottom:244.160133pt;}
.y20_c00062{bottom:270.719360pt;}
.y1f_c00062{bottom:296.640387pt;}
.y1d_c00062{bottom:323.199560pt;}
.y1e_c00062{bottom:323.200133pt;}
.y1c_c00062{bottom:349.759320pt;}
.y1a_c00062{bottom:376.319867pt;}
.y1b_c00062{bottom:376.639200pt;}
.y19_c00062{bottom:429.439453pt;}
.y18_c00062{bottom:482.560133pt;}
.y17_c00062{bottom:509.119893pt;}
.y16_c00062{bottom:535.679653pt;}
.y15_c00062{bottom:562.239400pt;}
.y14_c00062{bottom:615.358907pt;}
.y12_c00062{bottom:641.599587pt;}
.y13_c00062{bottom:641.600093pt;}
.y11_c00062{bottom:668.159347pt;}
.y10_c00062{bottom:694.398920pt;}
.yf_c00062{bottom:694.399720pt;}
.ye_c00062{bottom:720.959467pt;}
.yd_c00062{bottom:720.959720pt;}
.yc_c00062{bottom:748.160080pt;}
.yb_c00062{bottom:748.160200pt;}
.ya_c00062{bottom:774.719947pt;}
.y9_c00062{bottom:801.279707pt;}
.y8_c00062{bottom:801.279907pt;}
.y7_c00062{bottom:827.839667pt;}
.y6_c00062{bottom:854.399413pt;}
.y5_c00062{bottom:907.199707pt;}
.y4_c00062{bottom:960.640133pt;}
.y3_c00062{bottom:960.640173pt;}
.y2_c00062{bottom:987.199933pt;}
.y1_c00062{bottom:1013.759680pt;}
.he_c00062{height:49.718750pt;}
.h10_c00062{height:63.968750pt;}
.hd_c00062{height:66.083984pt;}
.h11_c00062{height:66.738281pt;}
.hf_c00062{height:67.363131pt;}
.hb_c00062{height:68.046875pt;}
.h1_c00062{height:68.701172pt;}
.h8_c00062{height:70.009766pt;}
.h6_c00062{height:70.546875pt;}
.h9_c00062{height:70.664062pt;}
.h3_c00062{height:70.921875pt;}
.h7_c00062{height:71.972656pt;}
.ha_c00062{height:72.473958pt;}
.hc_c00062{height:72.562500pt;}
.h4_c00062{height:73.234375pt;}
.h2_c00062{height:73.791667pt;}
.h5_c00062{height:73.906250pt;}
.h0_c00062{height:1122.666667pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.x4_c00062{left:127.359333pt;}
.x1_c00062{left:128.318813pt;}
.x1f_c00062{left:145.599613pt;}
.x18_c00062{left:159.358933pt;}
.x5_c00062{left:173.759720pt;}
.x6_c00062{left:233.279333pt;}
.x14_c00062{left:259.839867pt;}
.x2_c00062{left:262.079587pt;}
.x15_c00062{left:273.279720pt;}
.x7_c00062{left:275.198693pt;}
.x3_c00062{left:280.319867pt;}
.x8_c00062{left:296.318787pt;}
.xa_c00062{left:298.239200pt;}
.xb_c00062{left:311.679200pt;}
.x9_c00062{left:320.639587pt;}
.x19_c00062{left:351.039587pt;}
.xc_c00062{left:353.598680pt;}
.xd_c00062{left:368.318813pt;}
.x1a_c00062{left:373.759320pt;}
.x12_c00062{left:398.718787pt;}
.x13_c00062{left:419.198693pt;}
.xe_c00062{left:435.199173pt;}
.xf_c00062{left:448.960000pt;}
.x10_c00062{left:451.519040pt;}
.x1c_c00062{left:457.599573pt;}
.x11_c00062{left:474.238773pt;}
.x1d_c00062{left:477.118693pt;}
.x16_c00062{left:606.399867pt;}
.x17_c00062{left:640.960000pt;}
.x1e_c00062{left:665.598720pt;}
.x1b_c00062{left:679.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_498efa1044edfbdf74cfd16e.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_7f4d8914601e5b86ff5d8b73.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_72798bcf928dd68df036af08.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.364746;font-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_c00063{transform:matrix(0.181604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181604,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m4_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.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.md_c00063{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.lsf_c00063{letter-spacing:-13.912500px;}
.lsd_c00063{letter-spacing:-8.914500px;}
.ls15_c00063{letter-spacing:-8.175038px;}
.lsc_c00063{letter-spacing:-7.426125px;}
.lsa_c00063{letter-spacing:-6.685875px;}
.ls14_c00063{letter-spacing:-5.945625px;}
.ls8_c00063{letter-spacing:-5.196713px;}
.ls4_c00063{letter-spacing:-4.456463px;}
.ls1_c00063{letter-spacing:-3.717000px;}
.ls3_c00063{letter-spacing:-2.968875px;}
.ls13_c00063{letter-spacing:-2.571750px;}
.ls2_c00063{letter-spacing:-2.229413px;}
.ls10_c00063{letter-spacing:-1.986705px;}
.ls7_c00063{letter-spacing:-1.489163px;}
.ls12_c00063{letter-spacing:-1.483200px;}
.lsb_c00063{letter-spacing:-0.749925px;}
.ls11_c00063{letter-spacing:-0.742500px;}
.ls6_c00063{letter-spacing:-0.740250px;}
.ls9_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:0.993750px;}
.lse_c00063{letter-spacing:3.213600px;}
.ls16_c00063{letter-spacing:3.637710px;}
.ls5_c00063{letter-spacing:3.864840px;}
.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;}
._17_c00063{margin-left:-7.654322px;}
._14_c00063{margin-left:-5.234379px;}
._15_c00063{margin-left:-4.131418px;}
._16_c00063{margin-left:-1.527052px;}
._18_c00063{width:1.106854px;}
._8_c00063{width:2.837407px;}
._6_c00063{width:3.955702px;}
._13_c00063{width:5.579289px;}
._5_c00063{width:7.087916px;}
._9_c00063{width:8.494005px;}
._a_c00063{width:10.002320px;}
._7_c00063{width:11.149039px;}
._d_c00063{width:13.175677px;}
._c_c00063{width:14.572331px;}
._1f_c00063{width:15.937990px;}
._1e_c00063{width:17.298923px;}
._10_c00063{width:18.994485px;}
._11_c00063{width:21.242991px;}
._b_c00063{width:23.197373px;}
._20_c00063{width:25.439578px;}
._12_c00063{width:28.260507px;}
._4_c00063{width:30.964678px;}
._2_c00063{width:32.712601px;}
._1_c00063{width:34.047191px;}
._1d_c00063{width:35.086126px;}
._e_c00063{width:36.972768px;}
._f_c00063{width:38.083708px;}
._1a_c00063{width:40.445554px;}
._1b_c00063{width:42.036958px;}
._3_c00063{width:43.629565px;}
._0_c00063{width:45.320714px;}
._1c_c00063{width:49.458061px;}
._19_c00063{width:52.187863px;}
.fc0_c00063{color:transparent;}
.fs9_c00063{font-size:67.500000px;}
.fs8_c00063{font-size:68.250000px;}
.fs6_c00063{font-size:75.000000px;}
.fs3_c00063{font-size:75.750000px;}
.fsb_c00063{font-size:76.500000px;}
.fs7_c00063{font-size:77.250000px;}
.fs4_c00063{font-size:78.000000px;}
.fs0_c00063{font-size:78.750000px;}
.fs5_c00063{font-size:79.500000px;}
.fs2_c00063{font-size:80.250000px;}
.fsc_c00063{font-size:81.000000px;}
.fsa_c00063{font-size:82.500000px;}
.fs1_c00063{font-size:84.000000px;}
.y0_c00063{bottom:0.000000px;}
.y1d_c00063{bottom:452.160960px;}
.y1e_c00063{bottom:452.161050px;}
.y1c_c00063{bottom:482.400885px;}
.y1b_c00063{bottom:482.401065px;}
.y1a_c00063{bottom:511.920600px;}
.y19_c00063{bottom:511.922475px;}
.y18_c00063{bottom:541.802190px;}
.y17_c00063{bottom:571.681920px;}
.y16_c00063{bottom:601.561635px;}
.y15_c00063{bottom:631.081170px;}
.y14_c00063{bottom:660.960885px;}
.y13_c00063{bottom:690.119940px;}
.y12_c00063{bottom:720.359850px;}
.y11_c00063{bottom:751.319820px;}
.y10_c00063{bottom:780.120645px;}
.yf_c00063{bottom:840.600765px;}
.ye_c00063{bottom:840.601980px;}
.yd_c00063{bottom:870.121515px;}
.yc_c00063{bottom:900.001230px;}
.yb_c00063{bottom:929.880960px;}
.y9_c00063{bottom:959.759925px;}
.ya_c00063{bottom:959.760675px;}
.y8_c00063{bottom:989.639655px;}
.y7_c00063{bottom:989.641620px;}
.y6_c00063{bottom:1019.521335px;}
.y5_c00063{bottom:1049.040870px;}
.y3_c00063{bottom:1078.919250px;}
.y4_c00063{bottom:1078.920600px;}
.y2_c00063{bottom:1108.798965px;}
.y1_c00063{bottom:1139.040990px;}
.ha_c00063{height:66.247559px;}
.h9_c00063{height:66.983643px;}
.h7_c00063{height:73.608398px;}
.h4_c00063{height:74.344482px;}
.hc_c00063{height:75.080566px;}
.h8_c00063{height:75.816650px;}
.h1_c00063{height:77.288818px;}
.h6_c00063{height:78.568359px;}
.h5_c00063{height:78.609375px;}
.h3_c00063{height:78.760986px;}
.hd_c00063{height:79.497070px;}
.hb_c00063{height:80.969238px;}
.h2_c00063{height:82.441406px;}
.h0_c00063{height:1263.000000px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:142.559100px;}
.x18_c00063{left:143.637960px;}
.xc_c00063{left:168.838950px;}
.xd_c00063{left:232.558635px;}
.x19_c00063{left:284.399850px;}
.x1a_c00063{left:299.519685px;}
.x13_c00063{left:391.679670px;}
.x14_c00063{left:405.359250px;}
.xe_c00063{left:512.279850px;}
.xa_c00063{left:540.718500px;}
.xb_c00063{left:555.838530px;}
.xf_c00063{left:588.958920px;}
.x2_c00063{left:629.279250px;}
.x6_c00063{left:644.039985px;}
.x7_c00063{left:659.159820px;}
.x3_c00063{left:660.239220px;}
.x8_c00063{left:668.159370px;}
.x17_c00063{left:682.199850px;}
.x10_c00063{left:686.159820px;}
.x15_c00063{left:691.558635px;}
.x9_c00063{left:696.958920px;}
.x11_c00063{left:704.519670px;}
.x16_c00063{left:710.638545px;}
.x4_c00063{left:753.839535px;}
.x5_c00063{left:770.399865px;}
.x12_c00063{left:771.479190px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.lsf_c00063{letter-spacing:-12.366667pt;}
.lsd_c00063{letter-spacing:-7.924000pt;}
.ls15_c00063{letter-spacing:-7.266700pt;}
.lsc_c00063{letter-spacing:-6.601000pt;}
.lsa_c00063{letter-spacing:-5.943000pt;}
.ls14_c00063{letter-spacing:-5.285000pt;}
.ls8_c00063{letter-spacing:-4.619300pt;}
.ls4_c00063{letter-spacing:-3.961300pt;}
.ls1_c00063{letter-spacing:-3.304000pt;}
.ls3_c00063{letter-spacing:-2.639000pt;}
.ls13_c00063{letter-spacing:-2.286000pt;}
.ls2_c00063{letter-spacing:-1.981700pt;}
.ls10_c00063{letter-spacing:-1.765960pt;}
.ls7_c00063{letter-spacing:-1.323700pt;}
.ls12_c00063{letter-spacing:-1.318400pt;}
.lsb_c00063{letter-spacing:-0.666600pt;}
.ls11_c00063{letter-spacing:-0.660000pt;}
.ls6_c00063{letter-spacing:-0.658000pt;}
.ls9_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:0.883333pt;}
.lse_c00063{letter-spacing:2.856533pt;}
.ls16_c00063{letter-spacing:3.233520pt;}
.ls5_c00063{letter-spacing:3.435413pt;}
.ws0_c00063{word-spacing:0.000000pt;}
._17_c00063{margin-left:-6.803842pt;}
._14_c00063{margin-left:-4.652781pt;}
._15_c00063{margin-left:-3.672372pt;}
._16_c00063{margin-left:-1.357379pt;}
._18_c00063{width:0.983870pt;}
._8_c00063{width:2.522140pt;}
._6_c00063{width:3.516179pt;}
._13_c00063{width:4.959368pt;}
._5_c00063{width:6.300370pt;}
._9_c00063{width:7.550226pt;}
._a_c00063{width:8.890951pt;}
._7_c00063{width:9.910257pt;}
._d_c00063{width:11.711713pt;}
._c_c00063{width:12.953183pt;}
._1f_c00063{width:14.167102pt;}
._1e_c00063{width:15.376821pt;}
._10_c00063{width:16.883987pt;}
._11_c00063{width:18.882658pt;}
._b_c00063{width:20.619887pt;}
._20_c00063{width:22.612958pt;}
._12_c00063{width:25.120451pt;}
._4_c00063{width:27.524158pt;}
._2_c00063{width:29.077868pt;}
._1_c00063{width:30.264170pt;}
._1d_c00063{width:31.187668pt;}
._e_c00063{width:32.864683pt;}
._f_c00063{width:33.852185pt;}
._1a_c00063{width:35.951604pt;}
._1b_c00063{width:37.366185pt;}
._3_c00063{width:38.781836pt;}
._0_c00063{width:40.285079pt;}
._1c_c00063{width:43.962721pt;}
._19_c00063{width:46.389211pt;}
.fs9_c00063{font-size:60.000000pt;}
.fs8_c00063{font-size:60.666667pt;}
.fs6_c00063{font-size:66.666667pt;}
.fs3_c00063{font-size:67.333333pt;}
.fsb_c00063{font-size:68.000000pt;}
.fs7_c00063{font-size:68.666667pt;}
.fs4_c00063{font-size:69.333333pt;}
.fs0_c00063{font-size:70.000000pt;}
.fs5_c00063{font-size:70.666667pt;}
.fs2_c00063{font-size:71.333333pt;}
.fsc_c00063{font-size:72.000000pt;}
.fsa_c00063{font-size:73.333333pt;}
.fs1_c00063{font-size:74.666667pt;}
.y0_c00063{bottom:0.000000pt;}
.y1d_c00063{bottom:401.920853pt;}
.y1e_c00063{bottom:401.920933pt;}
.y1c_c00063{bottom:428.800787pt;}
.y1b_c00063{bottom:428.800947pt;}
.y1a_c00063{bottom:455.040533pt;}
.y19_c00063{bottom:455.042200pt;}
.y18_c00063{bottom:481.601947pt;}
.y17_c00063{bottom:508.161707pt;}
.y16_c00063{bottom:534.721453pt;}
.y15_c00063{bottom:560.961040pt;}
.y14_c00063{bottom:587.520787pt;}
.y13_c00063{bottom:613.439947pt;}
.y12_c00063{bottom:640.319867pt;}
.y11_c00063{bottom:667.839840pt;}
.y10_c00063{bottom:693.440573pt;}
.yf_c00063{bottom:747.200680pt;}
.ye_c00063{bottom:747.201760pt;}
.yd_c00063{bottom:773.441347pt;}
.yc_c00063{bottom:800.001093pt;}
.yb_c00063{bottom:826.560853pt;}
.y9_c00063{bottom:853.119933pt;}
.ya_c00063{bottom:853.120600pt;}
.y8_c00063{bottom:879.679693pt;}
.y7_c00063{bottom:879.681440pt;}
.y6_c00063{bottom:906.241187pt;}
.y5_c00063{bottom:932.480773pt;}
.y3_c00063{bottom:959.039333pt;}
.y4_c00063{bottom:959.040533pt;}
.y2_c00063{bottom:985.599080pt;}
.y1_c00063{bottom:1012.480880pt;}
.ha_c00063{height:58.886719pt;}
.h9_c00063{height:59.541016pt;}
.h7_c00063{height:65.429688pt;}
.h4_c00063{height:66.083984pt;}
.hc_c00063{height:66.738281pt;}
.h8_c00063{height:67.392578pt;}
.h1_c00063{height:68.701172pt;}
.h6_c00063{height:69.838542pt;}
.h5_c00063{height:69.875000pt;}
.h3_c00063{height:70.009766pt;}
.hd_c00063{height:70.664062pt;}
.hb_c00063{height:71.972656pt;}
.h2_c00063{height:73.281250pt;}
.h0_c00063{height:1122.666667pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:126.719200pt;}
.x18_c00063{left:127.678187pt;}
.xc_c00063{left:150.079067pt;}
.xd_c00063{left:206.718787pt;}
.x19_c00063{left:252.799867pt;}
.x1a_c00063{left:266.239720pt;}
.x13_c00063{left:348.159707pt;}
.x14_c00063{left:360.319333pt;}
.xe_c00063{left:455.359867pt;}
.xa_c00063{left:480.638667pt;}
.xb_c00063{left:494.078693pt;}
.xf_c00063{left:523.519040pt;}
.x2_c00063{left:559.359333pt;}
.x6_c00063{left:572.479987pt;}
.x7_c00063{left:585.919840pt;}
.x3_c00063{left:586.879307pt;}
.x8_c00063{left:593.919440pt;}
.x17_c00063{left:606.399867pt;}
.x10_c00063{left:609.919840pt;}
.x15_c00063{left:614.718787pt;}
.x9_c00063{left:619.519040pt;}
.x11_c00063{left:626.239707pt;}
.x16_c00063{left:631.678707pt;}
.x4_c00063{left:670.079587pt;}
.x5_c00063{left:684.799880pt;}
.x12_c00063{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7a0c52e85cfa190199b2ddf.woff2')format("woff");}.ff1_c00064{font-family:ff1_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:ff2_c00064;src:url('chunks/assets/font_212c7b0fde012837ac6de135.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.432129;font-style:normal;font-weight:normal;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_5372d09082a08e5223aa758c.woff2')format("woff");}.ff3_c00064{font-family:ff3_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:ff4_c00064;src:url('chunks/assets/font_c83a551c1802a578f43d2a0c.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.364746;font-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_c00064{transform:matrix(0.189076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189076,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{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_c00064{transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m2_c00064{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269802,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls1c_c00064{letter-spacing:-14.507250px;}
.ls20_c00064{letter-spacing:-10.498800px;}
.ls18_c00064{letter-spacing:-8.483175px;}
.ls11_c00064{letter-spacing:-7.426125px;}
.ls19_c00064{letter-spacing:-6.685875px;}
.ls16_c00064{letter-spacing:-5.945625px;}
.ls15_c00064{letter-spacing:-5.196713px;}
.ls13_c00064{letter-spacing:-5.109375px;}
.lsf_c00064{letter-spacing:-4.456463px;}
.ls7_c00064{letter-spacing:-3.717000px;}
.ls1b_c00064{letter-spacing:-3.678413px;}
.ls21_c00064{letter-spacing:-3.476925px;}
.ls9_c00064{letter-spacing:-2.968875px;}
.ls4_c00064{letter-spacing:-2.382623px;}
.ls6_c00064{letter-spacing:-2.229413px;}
.ls1_c00064{letter-spacing:-1.589753px;}
.ls10_c00064{letter-spacing:-1.553250px;}
.ls1e_c00064{letter-spacing:-1.541505px;}
.ls8_c00064{letter-spacing:-1.489163px;}
.ls1d_c00064{letter-spacing:-0.794205px;}
.lsc_c00064{letter-spacing:-0.787800px;}
.lse_c00064{letter-spacing:-0.780225px;}
.lsb_c00064{letter-spacing:-0.740250px;}
.ls0_c00064{letter-spacing:0.000000px;}
.ls5_c00064{letter-spacing:0.794475px;}
.ls14_c00064{letter-spacing:0.795675px;}
.ls2_c00064{letter-spacing:1.589753px;}
.ls22_c00064{letter-spacing:1.644750px;}
.ls12_c00064{letter-spacing:1.660875px;}
.lsd_c00064{letter-spacing:2.444250px;}
.ls1a_c00064{letter-spacing:3.189075px;}
.ls17_c00064{letter-spacing:3.502980px;}
.lsa_c00064{letter-spacing:6.055875px;}
.ls1f_c00064{letter-spacing:10.423890px;}
.ls3_c00064{letter-spacing:15.150000px;}
.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;}
._16_c00064{margin-left:-10.303442px;}
._15_c00064{margin-left:-8.045070px;}
._1_c00064{margin-left:-6.255472px;}
._14_c00064{margin-left:-3.979059px;}
._b_c00064{margin-left:-2.324063px;}
._8_c00064{margin-left:-1.279881px;}
._7_c00064{width:1.271688px;}
._3_c00064{width:2.720268px;}
._9_c00064{width:3.777147px;}
._2_c00064{width:5.273243px;}
._5_c00064{width:6.983671px;}
._0_c00064{width:8.233682px;}
._4_c00064{width:9.924446px;}
._a_c00064{width:11.861452px;}
._12_c00064{width:12.920711px;}
._6_c00064{width:14.005539px;}
._1c_c00064{width:15.963575px;}
._c_c00064{width:17.340009px;}
._d_c00064{width:19.209071px;}
._f_c00064{width:21.068225px;}
._11_c00064{width:22.330840px;}
._13_c00064{width:23.656411px;}
._19_c00064{width:24.748094px;}
._e_c00064{width:25.893594px;}
._17_c00064{width:27.339103px;}
._10_c00064{width:28.629785px;}
._1b_c00064{width:30.867533px;}
._1a_c00064{width:33.090468px;}
._18_c00064{width:36.658363px;}
.fc0_c00064{color:transparent;}
.fs4_c00064{font-size:75.000000px;}
.fs1_c00064{font-size:75.750000px;}
.fsd_c00064{font-size:76.500000px;}
.fs6_c00064{font-size:77.250000px;}
.fs3_c00064{font-size:78.000000px;}
.fs2_c00064{font-size:78.750000px;}
.fsb_c00064{font-size:79.500000px;}
.fs0_c00064{font-size:80.250000px;}
.fsc_c00064{font-size:81.000000px;}
.fs5_c00064{font-size:81.750000px;}
.fs7_c00064{font-size:82.500000px;}
.fs8_c00064{font-size:83.250000px;}
.fsa_c00064{font-size:86.250000px;}
.fs9_c00064{font-size:89.250000px;}
.y0_c00064{bottom:0.000000px;}
.y26_c00064{bottom:183.241335px;}
.y25_c00064{bottom:213.121050px;}
.y24_c00064{bottom:243.360990px;}
.y23_c00064{bottom:272.880525px;}
.y22_c00064{bottom:303.120435px;}
.y20_c00064{bottom:332.280825px;}
.y21_c00064{bottom:332.280900px;}
.y1e_c00064{bottom:362.520630px;}
.y1f_c00064{bottom:362.520750px;}
.y1d_c00064{bottom:391.679670px;}
.y1c_c00064{bottom:422.280435px;}
.y1b_c00064{bottom:482.760315px;}
.y1a_c00064{bottom:512.279850px;}
.y19_c00064{bottom:512.280690px;}
.y18_c00064{bottom:542.160420px;}
.y17_c00064{bottom:542.160600px;}
.y16_c00064{bottom:571.680135px;}
.y15_c00064{bottom:571.681020px;}
.y14_c00064{bottom:601.560750px;}
.y13_c00064{bottom:601.561380px;}
.y12_c00064{bottom:631.080915px;}
.y11_c00064{bottom:660.600450px;}
.y10_c00064{bottom:690.119985px;}
.yf_c00064{bottom:811.441200px;}
.ye_c00064{bottom:841.320930px;}
.yc_c00064{bottom:870.839790px;}
.yd_c00064{bottom:870.840540px;}
.yb_c00064{bottom:900.719520px;}
.ya_c00064{bottom:900.719535px;}
.y9_c00064{bottom:930.240870px;}
.y8_c00064{bottom:930.240915px;}
.y7_c00064{bottom:960.480840px;}
.y6_c00064{bottom:990.000555px;}
.y4_c00064{bottom:1019.880405px;}
.y5_c00064{bottom:1019.881170px;}
.y3_c00064{bottom:1049.760135px;}
.y2_c00064{bottom:1110.239280px;}
.y1_c00064{bottom:1139.400240px;}
.h5_c00064{height:73.608398px;}
.h7_c00064{height:74.344482px;}
.h10_c00064{height:75.080566px;}
.h9_c00064{height:75.816650px;}
.h4_c00064{height:76.552734px;}
.h3_c00064{height:77.288818px;}
.he_c00064{height:78.024902px;}
.h6_c00064{height:78.760986px;}
.h2_c00064{height:79.004883px;}
.h8_c00064{height:80.233154px;}
.h1_c00064{height:80.876953px;}
.ha_c00064{height:80.969238px;}
.hf_c00064{height:81.632812px;}
.hb_c00064{height:81.705322px;}
.hd_c00064{height:85.239258px;}
.hc_c00064{height:87.593994px;}
.h0_c00064{height:1263.000000px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.xf_c00064{left:143.278545px;}
.x1_c00064{left:144.719565px;}
.x31_c00064{left:158.040000px;}
.x1a_c00064{left:169.918350px;}
.x32_c00064{left:183.238785px;}
.x14_c00064{left:202.318800px;}
.x24_c00064{left:204.120000px;}
.x15_c00064{left:216.718500px;}
.x25_c00064{left:218.878950px;}
.xd_c00064{left:223.918350px;}
.x2f_c00064{left:233.278800px;}
.xe_c00064{left:243.359250px;}
.x2b_c00064{left:306.719535px;}
.x33_c00064{left:309.239250px;}
.x34_c00064{left:325.438635px;}
.x2c_c00064{left:330.118785px;}
.x6_c00064{left:332.279250px;}
.x7_c00064{left:374.040000px;}
.x2_c00064{left:376.918950px;}
.x1e_c00064{left:413.279250px;}
.x3_c00064{left:419.038920px;}
.x1f_c00064{left:426.599670px;}
.x1b_c00064{left:454.679070px;}
.x16_c00064{left:465.838950px;}
.x1c_c00064{left:468.719565px;}
.x2d_c00064{left:474.479235px;}
.x22_c00064{left:481.319820px;}
.x2e_c00064{left:488.878920px;}
.x17_c00064{left:491.398635px;}
.x23_c00064{left:494.638500px;}
.x28_c00064{left:559.439250px;}
.x10_c00064{left:565.918950px;}
.x11_c00064{left:597.958335px;}
.x8_c00064{left:599.759535px;}
.x1d_c00064{left:618.839535px;}
.x29_c00064{left:626.759535px;}
.x9_c00064{left:631.078770px;}
.x18_c00064{left:641.518620px;}
.xa_c00064{left:645.839535px;}
.x19_c00064{left:669.958920px;}
.x12_c00064{left:694.439250px;}
.x20_c00064{left:703.079355px;}
.x26_c00064{left:709.918350px;}
.x4_c00064{left:712.798920px;}
.x13_c00064{left:714.959385px;}
.x21_c00064{left:727.559685px;}
.x5_c00064{left:732.958335px;}
.x27_c00064{left:736.199850px;}
.xb_c00064{left:747.359850px;}
.x2a_c00064{left:763.559100px;}
.x30_c00064{left:772.199340px;}
.xc_c00064{left:776.879520px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls1c_c00064{letter-spacing:-12.895333pt;}
.ls20_c00064{letter-spacing:-9.332267pt;}
.ls18_c00064{letter-spacing:-7.540600pt;}
.ls11_c00064{letter-spacing:-6.601000pt;}
.ls19_c00064{letter-spacing:-5.943000pt;}
.ls16_c00064{letter-spacing:-5.285000pt;}
.ls15_c00064{letter-spacing:-4.619300pt;}
.ls13_c00064{letter-spacing:-4.541667pt;}
.lsf_c00064{letter-spacing:-3.961300pt;}
.ls7_c00064{letter-spacing:-3.304000pt;}
.ls1b_c00064{letter-spacing:-3.269700pt;}
.ls21_c00064{letter-spacing:-3.090600pt;}
.ls9_c00064{letter-spacing:-2.639000pt;}
.ls4_c00064{letter-spacing:-2.117887pt;}
.ls6_c00064{letter-spacing:-1.981700pt;}
.ls1_c00064{letter-spacing:-1.413113pt;}
.ls10_c00064{letter-spacing:-1.380667pt;}
.ls1e_c00064{letter-spacing:-1.370227pt;}
.ls8_c00064{letter-spacing:-1.323700pt;}
.ls1d_c00064{letter-spacing:-0.705960pt;}
.lsc_c00064{letter-spacing:-0.700267pt;}
.lse_c00064{letter-spacing:-0.693533pt;}
.lsb_c00064{letter-spacing:-0.658000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ls5_c00064{letter-spacing:0.706200pt;}
.ls14_c00064{letter-spacing:0.707267pt;}
.ls2_c00064{letter-spacing:1.413113pt;}
.ls22_c00064{letter-spacing:1.462000pt;}
.ls12_c00064{letter-spacing:1.476333pt;}
.lsd_c00064{letter-spacing:2.172667pt;}
.ls1a_c00064{letter-spacing:2.834733pt;}
.ls17_c00064{letter-spacing:3.113760pt;}
.lsa_c00064{letter-spacing:5.383000pt;}
.ls1f_c00064{letter-spacing:9.265680pt;}
.ls3_c00064{letter-spacing:13.466667pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._16_c00064{margin-left:-9.158615pt;}
._15_c00064{margin-left:-7.151174pt;}
._1_c00064{margin-left:-5.560419pt;}
._14_c00064{margin-left:-3.536942pt;}
._b_c00064{margin-left:-2.065834pt;}
._8_c00064{margin-left:-1.137672pt;}
._7_c00064{width:1.130389pt;}
._3_c00064{width:2.418016pt;}
._9_c00064{width:3.357464pt;}
._2_c00064{width:4.687327pt;}
._5_c00064{width:6.207708pt;}
._0_c00064{width:7.318828pt;}
._4_c00064{width:8.821730pt;}
._a_c00064{width:10.543513pt;}
._12_c00064{width:11.485076pt;}
._6_c00064{width:12.449368pt;}
._1c_c00064{width:14.189845pt;}
._c_c00064{width:15.413341pt;}
._d_c00064{width:17.074730pt;}
._f_c00064{width:18.727311pt;}
._11_c00064{width:19.849636pt;}
._13_c00064{width:21.027921pt;}
._19_c00064{width:21.998306pt;}
._e_c00064{width:23.016528pt;}
._17_c00064{width:24.301425pt;}
._10_c00064{width:25.448698pt;}
._1b_c00064{width:27.437808pt;}
._1a_c00064{width:29.413749pt;}
._18_c00064{width:32.585211pt;}
.fs4_c00064{font-size:66.666667pt;}
.fs1_c00064{font-size:67.333333pt;}
.fsd_c00064{font-size:68.000000pt;}
.fs6_c00064{font-size:68.666667pt;}
.fs3_c00064{font-size:69.333333pt;}
.fs2_c00064{font-size:70.000000pt;}
.fsb_c00064{font-size:70.666667pt;}
.fs0_c00064{font-size:71.333333pt;}
.fsc_c00064{font-size:72.000000pt;}
.fs5_c00064{font-size:72.666667pt;}
.fs7_c00064{font-size:73.333333pt;}
.fs8_c00064{font-size:74.000000pt;}
.fsa_c00064{font-size:76.666667pt;}
.fs9_c00064{font-size:79.333333pt;}
.y0_c00064{bottom:0.000000pt;}
.y26_c00064{bottom:162.881187pt;}
.y25_c00064{bottom:189.440933pt;}
.y24_c00064{bottom:216.320880pt;}
.y23_c00064{bottom:242.560467pt;}
.y22_c00064{bottom:269.440387pt;}
.y20_c00064{bottom:295.360733pt;}
.y21_c00064{bottom:295.360800pt;}
.y1e_c00064{bottom:322.240560pt;}
.y1f_c00064{bottom:322.240667pt;}
.y1d_c00064{bottom:348.159707pt;}
.y1c_c00064{bottom:375.360387pt;}
.y1b_c00064{bottom:429.120280pt;}
.y1a_c00064{bottom:455.359867pt;}
.y19_c00064{bottom:455.360613pt;}
.y18_c00064{bottom:481.920373pt;}
.y17_c00064{bottom:481.920533pt;}
.y16_c00064{bottom:508.160120pt;}
.y15_c00064{bottom:508.160907pt;}
.y14_c00064{bottom:534.720667pt;}
.y13_c00064{bottom:534.721227pt;}
.y12_c00064{bottom:560.960813pt;}
.y11_c00064{bottom:587.200400pt;}
.y10_c00064{bottom:613.439987pt;}
.yf_c00064{bottom:721.281067pt;}
.ye_c00064{bottom:747.840827pt;}
.yc_c00064{bottom:774.079813pt;}
.yd_c00064{bottom:774.080480pt;}
.yb_c00064{bottom:800.639573pt;}
.ya_c00064{bottom:800.639587pt;}
.y9_c00064{bottom:826.880773pt;}
.y8_c00064{bottom:826.880813pt;}
.y7_c00064{bottom:853.760747pt;}
.y6_c00064{bottom:880.000493pt;}
.y4_c00064{bottom:906.560360pt;}
.y5_c00064{bottom:906.561040pt;}
.y3_c00064{bottom:933.120120pt;}
.y2_c00064{bottom:986.879360pt;}
.y1_c00064{bottom:1012.800213pt;}
.h5_c00064{height:65.429688pt;}
.h7_c00064{height:66.083984pt;}
.h10_c00064{height:66.738281pt;}
.h9_c00064{height:67.392578pt;}
.h4_c00064{height:68.046875pt;}
.h3_c00064{height:68.701172pt;}
.he_c00064{height:69.355469pt;}
.h6_c00064{height:70.009766pt;}
.h2_c00064{height:70.226562pt;}
.h8_c00064{height:71.318359pt;}
.h1_c00064{height:71.890625pt;}
.ha_c00064{height:71.972656pt;}
.hf_c00064{height:72.562500pt;}
.hb_c00064{height:72.626953pt;}
.hd_c00064{height:75.768229pt;}
.hc_c00064{height:77.861328pt;}
.h0_c00064{height:1122.666667pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.xf_c00064{left:127.358707pt;}
.x1_c00064{left:128.639613pt;}
.x31_c00064{left:140.480000pt;}
.x1a_c00064{left:151.038533pt;}
.x32_c00064{left:162.878920pt;}
.x14_c00064{left:179.838933pt;}
.x24_c00064{left:181.440000pt;}
.x15_c00064{left:192.638667pt;}
.x25_c00064{left:194.559067pt;}
.xd_c00064{left:199.038533pt;}
.x2f_c00064{left:207.358933pt;}
.xe_c00064{left:216.319333pt;}
.x2b_c00064{left:272.639587pt;}
.x33_c00064{left:274.879333pt;}
.x34_c00064{left:289.278787pt;}
.x2c_c00064{left:293.438920pt;}
.x6_c00064{left:295.359333pt;}
.x7_c00064{left:332.480000pt;}
.x2_c00064{left:335.039067pt;}
.x1e_c00064{left:367.359333pt;}
.x3_c00064{left:372.479040pt;}
.x1f_c00064{left:379.199707pt;}
.x1b_c00064{left:404.159173pt;}
.x16_c00064{left:414.079067pt;}
.x1c_c00064{left:416.639613pt;}
.x2d_c00064{left:421.759320pt;}
.x22_c00064{left:427.839840pt;}
.x2e_c00064{left:434.559040pt;}
.x17_c00064{left:436.798787pt;}
.x23_c00064{left:439.678667pt;}
.x28_c00064{left:497.279333pt;}
.x10_c00064{left:503.039067pt;}
.x11_c00064{left:531.518520pt;}
.x8_c00064{left:533.119587pt;}
.x1d_c00064{left:550.079587pt;}
.x29_c00064{left:557.119587pt;}
.x9_c00064{left:560.958907pt;}
.x18_c00064{left:570.238773pt;}
.xa_c00064{left:574.079587pt;}
.x19_c00064{left:595.519040pt;}
.x12_c00064{left:617.279333pt;}
.x20_c00064{left:624.959427pt;}
.x26_c00064{left:631.038533pt;}
.x4_c00064{left:633.599040pt;}
.x13_c00064{left:635.519453pt;}
.x21_c00064{left:646.719720pt;}
.x5_c00064{left:651.518520pt;}
.x27_c00064{left:654.399867pt;}
.xb_c00064{left:664.319867pt;}
.x2a_c00064{left:678.719200pt;}
.x30_c00064{left:686.399413pt;}
.xc_c00064{left:690.559573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92531b88788be74086b59b2b.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_2464eb68c4e7366ec4ca8ff1.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.364746;font-style:normal;font-weight:normal;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_0b09e4bcd4e35fe72cf043c4.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_a550ea83457edffba4dfbc00.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_1479763fc0131ed54742e9d3.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00065;src:url('chunks/assets/font_67c008c96085412e07362604.woff2')format("woff");}.ff6_c00065{font-family:ff6_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;}
@font-face{font-family:ff7_c00065;src:url('chunks/assets/font_055c53db59bf484cb6700c38.woff2')format("woff");}.ff7_c00065{font-family:ff7_c00065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00065{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2f_c00065{transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m17_c00065{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m2e_c00065{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m34_c00065{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m14_c00065{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m2d_c00065{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m32_c00065{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m19_c00065{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m33_c00065{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m31_c00065{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{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);}
.m10_c00065{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_c00065{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m36_c00065{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m30_c00065{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m2c_c00065{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m35_c00065{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m1b_c00065{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m28_c00065{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m1a_c00065{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{transform:matrix(0.346429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346429,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{transform:matrix(0.372093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372093,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{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);}
.m2a_c00065{transform:matrix(0.385417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385417,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.418478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418478,0.000000,0.000000,0.250000,0,0);}
.m2b_c00065{transform:matrix(0.451923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451923,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.486486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486486,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.495192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495192,0.000000,0.000000,0.250000,0,0);}
.m25_c00065{transform:matrix(0.532609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532609,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.843750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.843750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.843750,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.888158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888158,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls23_c00065{letter-spacing:-16.382250px;}
.ls9_c00065{letter-spacing:-12.687675px;}
.ls1e_c00065{letter-spacing:-10.560795px;}
.ls26_c00065{letter-spacing:-10.288050px;}
.ls6_c00065{letter-spacing:-8.175038px;}
.ls27_c00065{letter-spacing:-7.426125px;}
.ls14_c00065{letter-spacing:-7.236900px;}
.ls25_c00065{letter-spacing:-6.685875px;}
.ls8_c00065{letter-spacing:-5.945625px;}
.ls7_c00065{letter-spacing:-5.196713px;}
.lsd_c00065{letter-spacing:-4.456463px;}
.ls28_c00065{letter-spacing:-3.784500px;}
.ls4_c00065{letter-spacing:-3.717000px;}
.ls3_c00065{letter-spacing:-2.968875px;}
.ls2c_c00065{letter-spacing:-2.431905px;}
.ls2a_c00065{letter-spacing:-2.425500px;}
.ls1c_c00065{letter-spacing:-2.283750px;}
.ls2_c00065{letter-spacing:-2.229413px;}
.ls12_c00065{letter-spacing:-2.163000px;}
.lsb_c00065{letter-spacing:-2.072880px;}
.ls16_c00065{letter-spacing:-1.935000px;}
.ls2e_c00065{letter-spacing:-1.526963px;}
.ls29_c00065{letter-spacing:-1.496250px;}
.lsa_c00065{letter-spacing:-1.489163px;}
.ls2d_c00065{letter-spacing:-1.427400px;}
.ls2b_c00065{letter-spacing:-0.866700px;}
.lse_c00065{letter-spacing:-0.740250px;}
.ls5_c00065{letter-spacing:0.000000px;}
.ls1f_c00065{letter-spacing:0.222960px;}
.ls11_c00065{letter-spacing:0.510825px;}
.lsc_c00065{letter-spacing:1.582500px;}
.ls1d_c00065{letter-spacing:1.628550px;}
.ls1a_c00065{letter-spacing:2.017148px;}
.ls22_c00065{letter-spacing:2.903550px;}
.ls18_c00065{letter-spacing:3.293325px;}
.ls24_c00065{letter-spacing:3.502980px;}
.ls0_c00065{letter-spacing:5.317358px;}
.ls21_c00065{letter-spacing:6.811200px;}
.ls19_c00065{letter-spacing:7.195110px;}
.lsf_c00065{letter-spacing:7.976768px;}
.ls20_c00065{letter-spacing:9.000000px;}
.ls1b_c00065{letter-spacing:10.580903px;}
.ls17_c00065{letter-spacing:11.272800px;}
.ls15_c00065{letter-spacing:15.539850px;}
.ls10_c00065{letter-spacing:18.000000px;}
.ls1_c00065{letter-spacing:21.273233px;}
.ls13_c00065{letter-spacing:23.953125px;}
.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;}
._15_c00065{margin-left:-14.265009px;}
._23_c00065{margin-left:-6.763615px;}
._1b_c00065{margin-left:-5.348017px;}
._1c_c00065{margin-left:-3.953933px;}
._a_c00065{margin-left:-2.365501px;}
._e_c00065{margin-left:-1.322985px;}
._8_c00065{width:1.525967px;}
._9_c00065{width:3.252464px;}
._5_c00065{width:5.201170px;}
._6_c00065{width:6.788101px;}
._b_c00065{width:7.819325px;}
._3_c00065{width:9.796619px;}
._1_c00065{width:11.736900px;}
._22_c00065{width:12.775241px;}
._0_c00065{width:14.018644px;}
._14_c00065{width:15.460185px;}
._7_c00065{width:16.729085px;}
._d_c00065{width:18.045354px;}
._c_c00065{width:19.379721px;}
._4_c00065{width:21.471826px;}
._16_c00065{width:23.272735px;}
._20_c00065{width:24.341031px;}
._21_c00065{width:25.763865px;}
._2_c00065{width:27.549053px;}
._11_c00065{width:28.984294px;}
._19_c00065{width:30.582845px;}
._12_c00065{width:31.747765px;}
._1f_c00065{width:33.314742px;}
._17_c00065{width:34.653492px;}
._18_c00065{width:35.832795px;}
._f_c00065{width:38.307744px;}
._1a_c00065{width:40.206942px;}
._13_c00065{width:41.380733px;}
._1d_c00065{width:42.529576px;}
._1e_c00065{width:45.081596px;}
._10_c00065{width:47.144624px;}
.fc0_c00065{color:transparent;}
.fs8_c00065{font-size:17.250000px;}
.fs1c_c00065{font-size:18.000000px;}
.fs1d_c00065{font-size:19.500000px;}
.fs1a_c00065{font-size:24.000000px;}
.fs1b_c00065{font-size:24.750000px;}
.fsa_c00065{font-size:27.750000px;}
.fs7_c00065{font-size:28.500000px;}
.fsb_c00065{font-size:29.250000px;}
.fs15_c00065{font-size:30.750000px;}
.fs13_c00065{font-size:32.250000px;}
.fs6_c00065{font-size:34.500000px;}
.fs19_c00065{font-size:35.250000px;}
.fsd_c00065{font-size:36.750000px;}
.fs18_c00065{font-size:37.500000px;}
.fs16_c00065{font-size:39.000000px;}
.fs17_c00065{font-size:39.750000px;}
.fs14_c00065{font-size:45.750000px;}
.fsc_c00065{font-size:48.000000px;}
.fse_c00065{font-size:50.250000px;}
.fsf_c00065{font-size:52.500000px;}
.fs10_c00065{font-size:54.750000px;}
.fs12_c00065{font-size:60.750000px;}
.fs11_c00065{font-size:64.500000px;}
.fs2_c00065{font-size:72.000000px;}
.fs3_c00065{font-size:73.500000px;}
.fs4_c00065{font-size:75.000000px;}
.fs5_c00065{font-size:76.500000px;}
.fs1f_c00065{font-size:78.000000px;}
.fs0_c00065{font-size:78.750000px;}
.fs21_c00065{font-size:79.500000px;}
.fs9_c00065{font-size:80.250000px;}
.fs22_c00065{font-size:81.750000px;}
.fs1_c00065{font-size:82.500000px;}
.fs20_c00065{font-size:87.000000px;}
.fs1e_c00065{font-size:101.250000px;}
.y0_c00065{bottom:0.000000px;}
.y2c_c00065{bottom:214.200435px;}
.y2b_c00065{bottom:214.201335px;}
.y2a_c00065{bottom:244.081050px;}
.y29_c00065{bottom:244.081215px;}
.y28_c00065{bottom:273.600750px;}
.y27_c00065{bottom:273.601620px;}
.y26_c00065{bottom:303.481335px;}
.y24_c00065{bottom:332.821125px;}
.y25_c00065{bottom:332.821515px;}
.y23_c00065{bottom:392.401515px;}
.y21_c00065{bottom:421.920750px;}
.y22_c00065{bottom:421.921185px;}
.y20_c00065{bottom:451.800480px;}
.y1e_c00065{bottom:482.400120px;}
.y1f_c00065{bottom:482.400885px;}
.y1c_c00065{bottom:512.279670px;}
.y1d_c00065{bottom:512.279850px;}
.y1b_c00065{bottom:572.041215px;}
.y1a_c00065{bottom:601.560750px;}
.y19_c00065{bottom:631.080420px;}
.y18_c00065{bottom:631.081305px;}
.y17_c00065{bottom:660.961035px;}
.y16_c00065{bottom:660.961350px;}
.y15_c00065{bottom:690.480885px;}
.y14_c00065{bottom:747.361545px;}
.y13_c00065{bottom:750.601320px;}
.y12_c00065{bottom:756.720105px;}
.y11_c00065{bottom:780.480285px;}
.yf_c00065{bottom:810.360150px;}
.y10_c00065{bottom:810.360900px;}
.ye_c00065{bottom:840.239865px;}
.yd_c00065{bottom:840.240810px;}
.yc_c00065{bottom:870.120525px;}
.yb_c00065{bottom:900.000255px;}
.ya_c00065{bottom:929.879970px;}
.y9_c00065{bottom:929.880750px;}
.y8_c00065{bottom:959.760480px;}
.y7_c00065{bottom:1020.240600px;}
.y6_c00065{bottom:1049.760135px;}
.y5_c00065{bottom:1078.920600px;}
.y4_c00065{bottom:1079.279850px;}
.y2_c00065{bottom:1108.800360px;}
.y3_c00065{bottom:1108.801215px;}
.y1_c00065{bottom:1138.680090px;}
.ha_c00065{height:17.991211px;}
.h1f_c00065{height:18.773438px;}
.h20_c00065{height:19.271484px;}
.h1d_c00065{height:25.031250px;}
.h1e_c00065{height:25.813477px;}
.hc_c00065{height:27.424805px;}
.h9_c00065{height:29.724609px;}
.hd_c00065{height:30.506836px;}
.h17_c00065{height:30.990234px;}
.h15_c00065{height:33.635742px;}
.h1c_c00065{height:34.095703px;}
.h1b_c00065{height:34.836914px;}
.h8_c00065{height:35.982422px;}
.h1a_c00065{height:37.060547px;}
.hf_c00065{height:38.329102px;}
.h18_c00065{height:38.542969px;}
.h19_c00065{height:40.060547px;}
.h16_c00065{height:46.107422px;}
.he_c00065{height:48.375000px;}
.h10_c00065{height:52.409180px;}
.h11_c00065{height:54.755859px;}
.h12_c00065{height:55.177734px;}
.h14_c00065{height:61.224609px;}
.h13_c00065{height:63.744141px;}
.h4_c00065{height:70.664062px;}
.h5_c00065{height:72.136230px;}
.h6_c00065{height:73.608398px;}
.h7_c00065{height:75.080566px;}
.h22_c00065{height:76.552734px;}
.h1_c00065{height:77.288818px;}
.hb_c00065{height:78.760986px;}
.h23_c00065{height:79.309570px;}
.h26_c00065{height:80.121094px;}
.h25_c00065{height:80.876953px;}
.h2_c00065{height:80.969238px;}
.h3_c00065{height:81.533203px;}
.h27_c00065{height:82.388672px;}
.h24_c00065{height:85.980469px;}
.h21_c00065{height:105.600586px;}
.h0_c00065{height:1263.000000px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x1c_c00065{left:141.834345px;}
.x1_c00065{left:142.918350px;}
.x20_c00065{left:143.999400px;}
.xc_c00065{left:149.759100px;}
.xd_c00065{left:157.679100px;}
.x6_c00065{left:168.118815px;}
.xe_c00065{left:169.559100px;}
.xf_c00065{left:173.519100px;}
.x21_c00065{left:175.318800px;}
.x10_c00065{left:180.359850px;}
.x11_c00065{left:184.679100px;}
.x12_c00065{left:189.359250px;}
.x13_c00065{left:197.638500px;}
.x15_c00065{left:198.719535px;}
.x14_c00065{left:201.959400px;}
.x22_c00065{left:204.120000px;}
.x16_c00065{left:214.918950px;}
.x49_c00065{left:223.559100px;}
.x7_c00065{left:230.038950px;}
.x29_c00065{left:231.120000px;}
.x17_c00065{left:241.559685px;}
.x8_c00065{left:251.279250px;}
.x3b_c00065{left:262.798515px;}
.x9_c00065{left:268.918950px;}
.x2a_c00065{left:271.079385px;}
.x3f_c00065{left:277.918350px;}
.x47_c00065{left:290.879535px;}
.x48_c00065{left:318.958950px;}
.x4_c00065{left:320.399235px;}
.x23_c00065{left:330.118785px;}
.x40_c00065{left:331.199850px;}
.x5_c00065{left:340.199385px;}
.x4e_c00065{left:355.319250px;}
.x4b_c00065{left:363.598530px;}
.x4f_c00065{left:370.439235px;}
.x3c_c00065{left:374.040000px;}
.x2b_c00065{left:376.918950px;}
.x2c_c00065{left:385.918350px;}
.x1a_c00065{left:407.878920px;}
.x24_c00065{left:419.038920px;}
.x1b_c00065{left:422.278800px;}
.x1d_c00065{left:425.518665px;}
.x4a_c00065{left:427.319820px;}
.x25_c00065{left:438.479685px;}
.x1e_c00065{left:447.119985px;}
.x18_c00065{left:461.519670px;}
.x26_c00065{left:465.479685px;}
.x41_c00065{left:473.399820px;}
.x19_c00065{left:483.478635px;}
.x2_c00065{left:487.079400px;}
.x42_c00065{left:495.358665px;}
.x3_c00065{left:503.998950px;}
.x27_c00065{left:511.559685px;}
.x2d_c00065{left:512.639100px;}
.xa_c00065{left:521.279250px;}
.x36_c00065{left:529.919535px;}
.x2e_c00065{left:532.080000px;}
.xb_c00065{left:538.918950px;}
.x37_c00065{left:544.319235px;}
.x2f_c00065{left:553.679670px;}
.x30_c00065{left:562.319820px;}
.x31_c00065{left:569.878920px;}
.x32_c00065{left:583.199385px;}
.x28_c00065{left:603.358605px;}
.x3d_c00065{left:604.439670px;}
.x43_c00065{left:611.639700px;}
.x3e_c00065{left:617.758530px;}
.x33_c00065{left:637.558635px;}
.x44_c00065{left:650.519670px;}
.x45_c00065{left:675.718545px;}
.x34_c00065{left:682.918350px;}
.x35_c00065{left:707.398635px;}
.x4c_c00065{left:710.638545px;}
.x4d_c00065{left:724.319820px;}
.x39_c00065{left:740.519070px;}
.x1f_c00065{left:759.239820px;}
.x3a_c00065{left:762.838950px;}
.x38_c00065{left:770.038965px;}
.x46_c00065{left:775.439205px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls23_c00065{letter-spacing:-14.562000pt;}
.ls9_c00065{letter-spacing:-11.277933pt;}
.ls1e_c00065{letter-spacing:-9.387373pt;}
.ls26_c00065{letter-spacing:-9.144933pt;}
.ls6_c00065{letter-spacing:-7.266700pt;}
.ls27_c00065{letter-spacing:-6.601000pt;}
.ls14_c00065{letter-spacing:-6.432800pt;}
.ls25_c00065{letter-spacing:-5.943000pt;}
.ls8_c00065{letter-spacing:-5.285000pt;}
.ls7_c00065{letter-spacing:-4.619300pt;}
.lsd_c00065{letter-spacing:-3.961300pt;}
.ls28_c00065{letter-spacing:-3.364000pt;}
.ls4_c00065{letter-spacing:-3.304000pt;}
.ls3_c00065{letter-spacing:-2.639000pt;}
.ls2c_c00065{letter-spacing:-2.161693pt;}
.ls2a_c00065{letter-spacing:-2.156000pt;}
.ls1c_c00065{letter-spacing:-2.030000pt;}
.ls2_c00065{letter-spacing:-1.981700pt;}
.ls12_c00065{letter-spacing:-1.922667pt;}
.lsb_c00065{letter-spacing:-1.842560pt;}
.ls16_c00065{letter-spacing:-1.720000pt;}
.ls2e_c00065{letter-spacing:-1.357300pt;}
.ls29_c00065{letter-spacing:-1.330000pt;}
.lsa_c00065{letter-spacing:-1.323700pt;}
.ls2d_c00065{letter-spacing:-1.268800pt;}
.ls2b_c00065{letter-spacing:-0.770400pt;}
.lse_c00065{letter-spacing:-0.658000pt;}
.ls5_c00065{letter-spacing:0.000000pt;}
.ls1f_c00065{letter-spacing:0.198187pt;}
.ls11_c00065{letter-spacing:0.454067pt;}
.lsc_c00065{letter-spacing:1.406667pt;}
.ls1d_c00065{letter-spacing:1.447600pt;}
.ls1a_c00065{letter-spacing:1.793020pt;}
.ls22_c00065{letter-spacing:2.580933pt;}
.ls18_c00065{letter-spacing:2.927400pt;}
.ls24_c00065{letter-spacing:3.113760pt;}
.ls0_c00065{letter-spacing:4.726540pt;}
.ls21_c00065{letter-spacing:6.054400pt;}
.ls19_c00065{letter-spacing:6.395653pt;}
.lsf_c00065{letter-spacing:7.090460pt;}
.ls20_c00065{letter-spacing:8.000000pt;}
.ls1b_c00065{letter-spacing:9.405247pt;}
.ls17_c00065{letter-spacing:10.020267pt;}
.ls15_c00065{letter-spacing:13.813200pt;}
.ls10_c00065{letter-spacing:16.000000pt;}
.ls1_c00065{letter-spacing:18.909540pt;}
.ls13_c00065{letter-spacing:21.291667pt;}
.ws0_c00065{word-spacing:0.000000pt;}
._15_c00065{margin-left:-12.680008pt;}
._23_c00065{margin-left:-6.012102pt;}
._1b_c00065{margin-left:-4.753792pt;}
._1c_c00065{margin-left:-3.514608pt;}
._a_c00065{margin-left:-2.102668pt;}
._e_c00065{margin-left:-1.175987pt;}
._8_c00065{width:1.356415pt;}
._9_c00065{width:2.891079pt;}
._5_c00065{width:4.623262pt;}
._6_c00065{width:6.033868pt;}
._b_c00065{width:6.950511pt;}
._3_c00065{width:8.708106pt;}
._1_c00065{width:10.432800pt;}
._22_c00065{width:11.355770pt;}
._0_c00065{width:12.461017pt;}
._14_c00065{width:13.742387pt;}
._7_c00065{width:14.870298pt;}
._d_c00065{width:16.040315pt;}
._c_c00065{width:17.226419pt;}
._4_c00065{width:19.086068pt;}
._16_c00065{width:20.686875pt;}
._20_c00065{width:21.636472pt;}
._21_c00065{width:22.901213pt;}
._2_c00065{width:24.488047pt;}
._11_c00065{width:25.763817pt;}
._19_c00065{width:27.184751pt;}
._12_c00065{width:28.220236pt;}
._1f_c00065{width:29.613104pt;}
._17_c00065{width:30.803104pt;}
._18_c00065{width:31.851374pt;}
._f_c00065{width:34.051328pt;}
._1a_c00065{width:35.739504pt;}
._13_c00065{width:36.782874pt;}
._1d_c00065{width:37.804068pt;}
._1e_c00065{width:40.072530pt;}
._10_c00065{width:41.906332pt;}
.fs8_c00065{font-size:15.333333pt;}
.fs1c_c00065{font-size:16.000000pt;}
.fs1d_c00065{font-size:17.333333pt;}
.fs1a_c00065{font-size:21.333333pt;}
.fs1b_c00065{font-size:22.000000pt;}
.fsa_c00065{font-size:24.666667pt;}
.fs7_c00065{font-size:25.333333pt;}
.fsb_c00065{font-size:26.000000pt;}
.fs15_c00065{font-size:27.333333pt;}
.fs13_c00065{font-size:28.666667pt;}
.fs6_c00065{font-size:30.666667pt;}
.fs19_c00065{font-size:31.333333pt;}
.fsd_c00065{font-size:32.666667pt;}
.fs18_c00065{font-size:33.333333pt;}
.fs16_c00065{font-size:34.666667pt;}
.fs17_c00065{font-size:35.333333pt;}
.fs14_c00065{font-size:40.666667pt;}
.fsc_c00065{font-size:42.666667pt;}
.fse_c00065{font-size:44.666667pt;}
.fsf_c00065{font-size:46.666667pt;}
.fs10_c00065{font-size:48.666667pt;}
.fs12_c00065{font-size:54.000000pt;}
.fs11_c00065{font-size:57.333333pt;}
.fs2_c00065{font-size:64.000000pt;}
.fs3_c00065{font-size:65.333333pt;}
.fs4_c00065{font-size:66.666667pt;}
.fs5_c00065{font-size:68.000000pt;}
.fs1f_c00065{font-size:69.333333pt;}
.fs0_c00065{font-size:70.000000pt;}
.fs21_c00065{font-size:70.666667pt;}
.fs9_c00065{font-size:71.333333pt;}
.fs22_c00065{font-size:72.666667pt;}
.fs1_c00065{font-size:73.333333pt;}
.fs20_c00065{font-size:77.333333pt;}
.fs1e_c00065{font-size:90.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y2c_c00065{bottom:190.400387pt;}
.y2b_c00065{bottom:190.401187pt;}
.y2a_c00065{bottom:216.960933pt;}
.y29_c00065{bottom:216.961080pt;}
.y28_c00065{bottom:243.200667pt;}
.y27_c00065{bottom:243.201440pt;}
.y26_c00065{bottom:269.761187pt;}
.y24_c00065{bottom:295.841000pt;}
.y25_c00065{bottom:295.841347pt;}
.y23_c00065{bottom:348.801347pt;}
.y21_c00065{bottom:375.040667pt;}
.y22_c00065{bottom:375.041053pt;}
.y20_c00065{bottom:401.600427pt;}
.y1e_c00065{bottom:428.800107pt;}
.y1f_c00065{bottom:428.800787pt;}
.y1c_c00065{bottom:455.359707pt;}
.y1d_c00065{bottom:455.359867pt;}
.y1b_c00065{bottom:508.481080pt;}
.y1a_c00065{bottom:534.720667pt;}
.y19_c00065{bottom:560.960373pt;}
.y18_c00065{bottom:560.961160pt;}
.y17_c00065{bottom:587.520920pt;}
.y16_c00065{bottom:587.521200pt;}
.y15_c00065{bottom:613.760787pt;}
.y14_c00065{bottom:664.321373pt;}
.y13_c00065{bottom:667.201173pt;}
.y12_c00065{bottom:672.640093pt;}
.y11_c00065{bottom:693.760253pt;}
.yf_c00065{bottom:720.320133pt;}
.y10_c00065{bottom:720.320800pt;}
.ye_c00065{bottom:746.879880pt;}
.yd_c00065{bottom:746.880720pt;}
.yc_c00065{bottom:773.440467pt;}
.yb_c00065{bottom:800.000227pt;}
.ya_c00065{bottom:826.559973pt;}
.y9_c00065{bottom:826.560667pt;}
.y8_c00065{bottom:853.120427pt;}
.y7_c00065{bottom:906.880533pt;}
.y6_c00065{bottom:933.120120pt;}
.y5_c00065{bottom:959.040533pt;}
.y4_c00065{bottom:959.359867pt;}
.y2_c00065{bottom:985.600320pt;}
.y3_c00065{bottom:985.601080pt;}
.y1_c00065{bottom:1012.160080pt;}
.ha_c00065{height:15.992187pt;}
.h1f_c00065{height:16.687500pt;}
.h20_c00065{height:17.130208pt;}
.h1d_c00065{height:22.250000pt;}
.h1e_c00065{height:22.945312pt;}
.hc_c00065{height:24.377604pt;}
.h9_c00065{height:26.421875pt;}
.hd_c00065{height:27.117188pt;}
.h17_c00065{height:27.546875pt;}
.h15_c00065{height:29.898438pt;}
.h1c_c00065{height:30.307292pt;}
.h1b_c00065{height:30.966146pt;}
.h8_c00065{height:31.984375pt;}
.h1a_c00065{height:32.942708pt;}
.hf_c00065{height:34.070312pt;}
.h18_c00065{height:34.260417pt;}
.h19_c00065{height:35.609375pt;}
.h16_c00065{height:40.984375pt;}
.he_c00065{height:43.000000pt;}
.h10_c00065{height:46.585938pt;}
.h11_c00065{height:48.671875pt;}
.h12_c00065{height:49.046875pt;}
.h14_c00065{height:54.421875pt;}
.h13_c00065{height:56.661458pt;}
.h4_c00065{height:62.812500pt;}
.h5_c00065{height:64.121094pt;}
.h6_c00065{height:65.429688pt;}
.h7_c00065{height:66.738281pt;}
.h22_c00065{height:68.046875pt;}
.h1_c00065{height:68.701172pt;}
.hb_c00065{height:70.009766pt;}
.h23_c00065{height:70.497396pt;}
.h26_c00065{height:71.218750pt;}
.h25_c00065{height:71.890625pt;}
.h2_c00065{height:71.972656pt;}
.h3_c00065{height:72.473958pt;}
.h27_c00065{height:73.234375pt;}
.h24_c00065{height:76.427083pt;}
.h21_c00065{height:93.867188pt;}
.h0_c00065{height:1122.666667pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x1c_c00065{left:126.074973pt;}
.x1_c00065{left:127.038533pt;}
.x20_c00065{left:127.999467pt;}
.xc_c00065{left:133.119200pt;}
.xd_c00065{left:140.159200pt;}
.x6_c00065{left:149.438947pt;}
.xe_c00065{left:150.719200pt;}
.xf_c00065{left:154.239200pt;}
.x21_c00065{left:155.838933pt;}
.x10_c00065{left:160.319867pt;}
.x11_c00065{left:164.159200pt;}
.x12_c00065{left:168.319333pt;}
.x13_c00065{left:175.678667pt;}
.x15_c00065{left:176.639587pt;}
.x14_c00065{left:179.519467pt;}
.x22_c00065{left:181.440000pt;}
.x16_c00065{left:191.039067pt;}
.x49_c00065{left:198.719200pt;}
.x7_c00065{left:204.479067pt;}
.x29_c00065{left:205.440000pt;}
.x17_c00065{left:214.719720pt;}
.x8_c00065{left:223.359333pt;}
.x3b_c00065{left:233.598680pt;}
.x9_c00065{left:239.039067pt;}
.x2a_c00065{left:240.959453pt;}
.x3f_c00065{left:247.038533pt;}
.x47_c00065{left:258.559587pt;}
.x48_c00065{left:283.519067pt;}
.x4_c00065{left:284.799320pt;}
.x23_c00065{left:293.438920pt;}
.x40_c00065{left:294.399867pt;}
.x5_c00065{left:302.399453pt;}
.x4e_c00065{left:315.839333pt;}
.x4b_c00065{left:323.198693pt;}
.x4f_c00065{left:329.279320pt;}
.x3c_c00065{left:332.480000pt;}
.x2b_c00065{left:335.039067pt;}
.x2c_c00065{left:343.038533pt;}
.x1a_c00065{left:362.559040pt;}
.x24_c00065{left:372.479040pt;}
.x1b_c00065{left:375.358933pt;}
.x1d_c00065{left:378.238813pt;}
.x4a_c00065{left:379.839840pt;}
.x25_c00065{left:389.759720pt;}
.x1e_c00065{left:397.439987pt;}
.x18_c00065{left:410.239707pt;}
.x26_c00065{left:413.759720pt;}
.x41_c00065{left:420.799840pt;}
.x19_c00065{left:429.758787pt;}
.x2_c00065{left:432.959467pt;}
.x42_c00065{left:440.318813pt;}
.x3_c00065{left:447.999067pt;}
.x27_c00065{left:454.719720pt;}
.x2d_c00065{left:455.679200pt;}
.xa_c00065{left:463.359333pt;}
.x36_c00065{left:471.039587pt;}
.x2e_c00065{left:472.960000pt;}
.xb_c00065{left:479.039067pt;}
.x37_c00065{left:483.839320pt;}
.x2f_c00065{left:492.159707pt;}
.x30_c00065{left:499.839840pt;}
.x31_c00065{left:506.559040pt;}
.x32_c00065{left:518.399453pt;}
.x28_c00065{left:536.318760pt;}
.x3d_c00065{left:537.279707pt;}
.x43_c00065{left:543.679733pt;}
.x3e_c00065{left:549.118693pt;}
.x33_c00065{left:566.718787pt;}
.x44_c00065{left:578.239707pt;}
.x45_c00065{left:600.638707pt;}
.x34_c00065{left:607.038533pt;}
.x35_c00065{left:628.798787pt;}
.x4c_c00065{left:631.678707pt;}
.x4d_c00065{left:643.839840pt;}
.x39_c00065{left:658.239173pt;}
.x1f_c00065{left:674.879840pt;}
.x3a_c00065{left:678.079067pt;}
.x38_c00065{left:684.479080pt;}
.x46_c00065{left:689.279293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36db5389204513216d5f15cf.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_636368637d2595ca88f20394.woff2')format("woff");}.ff2_c00066{font-family:ff2_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:ff3_c00066;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.364746;font-style:normal;font-weight:normal;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_f8dff29651da4a58e9be3b2c.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_f0a0f446300e1ccfc7b6546a.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_fa6fb5494936f2088de429b6.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00066;src:url('chunks/assets/font_b8f9337f745310e8e0523cdf.woff2')format("woff");}.ff7_c00066{font-family:ff7_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00066;src:url('chunks/assets/font_d76f1a1411f336acae56fef7.woff2')format("woff");}.ff8_c00066{font-family:ff8_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;}
.m12_c00066{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2f_c00066{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);}
.m1c_c00066{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m2e_c00066{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.238053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238053,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m26_c00066{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{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_c00066{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m2a_c00066{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m29_c00066{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288235,0.000000,0.000000,0.250000,0,0);}
.m19_c00066{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m14_c00066{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.316038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316038,0.000000,0.000000,0.250000,0,0);}
.m1d_c00066{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.436869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436869,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{transform:matrix(0.515957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515957,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.569767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569767,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595588,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls36_c00066{letter-spacing:-13.209150px;}
.lsd_c00066{letter-spacing:-12.687675px;}
.ls2e_c00066{letter-spacing:-9.298800px;}
.ls34_c00066{letter-spacing:-8.914500px;}
.ls2_c00066{letter-spacing:-8.175038px;}
.ls1c_c00066{letter-spacing:-6.781500px;}
.lsc_c00066{letter-spacing:-6.685875px;}
.ls2d_c00066{letter-spacing:-6.022350px;}
.ls17_c00066{letter-spacing:-6.000300px;}
.ls7_c00066{letter-spacing:-5.945625px;}
.lsb_c00066{letter-spacing:-5.196713px;}
.ls1f_c00066{letter-spacing:-4.898775px;}
.ls5_c00066{letter-spacing:-4.456463px;}
.ls11_c00066{letter-spacing:-3.782220px;}
.lsa_c00066{letter-spacing:-3.717000px;}
.ls37_c00066{letter-spacing:-3.614625px;}
.ls35_c00066{letter-spacing:-3.175200px;}
.ls6_c00066{letter-spacing:-2.968875px;}
.ls33_c00066{letter-spacing:-2.945175px;}
.ls32_c00066{letter-spacing:-2.886000px;}
.ls3_c00066{letter-spacing:-2.229413px;}
.ls2c_c00066{letter-spacing:-1.539000px;}
.ls8_c00066{letter-spacing:-1.489163px;}
.ls25_c00066{letter-spacing:-1.300500px;}
.ls14_c00066{letter-spacing:-0.809190px;}
.ls24_c00066{letter-spacing:-0.765135px;}
.ls30_c00066{letter-spacing:-0.756743px;}
.lse_c00066{letter-spacing:-0.740250px;}
.ls26_c00066{letter-spacing:-0.624750px;}
.ls28_c00066{letter-spacing:-0.575100px;}
.ls9_c00066{letter-spacing:0.000000px;}
.ls20_c00066{letter-spacing:0.646800px;}
.ls0_c00066{letter-spacing:0.740250px;}
.ls1a_c00066{letter-spacing:0.741600px;}
.ls2f_c00066{letter-spacing:0.742350px;}
.ls19_c00066{letter-spacing:0.764400px;}
.ls4_c00066{letter-spacing:0.819000px;}
.ls13_c00066{letter-spacing:0.874500px;}
.ls18_c00066{letter-spacing:1.575000px;}
.ls15_c00066{letter-spacing:2.132100px;}
.ls1_c00066{letter-spacing:2.272500px;}
.ls1b_c00066{letter-spacing:2.294250px;}
.ls27_c00066{letter-spacing:3.001200px;}
.ls2b_c00066{letter-spacing:3.123000px;}
.ls2a_c00066{letter-spacing:3.561600px;}
.ls16_c00066{letter-spacing:3.563100px;}
.lsf_c00066{letter-spacing:3.726810px;}
.ls12_c00066{letter-spacing:4.446900px;}
.ls1e_c00066{letter-spacing:4.608525px;}
.ls31_c00066{letter-spacing:7.575757px;}
.ls23_c00066{letter-spacing:7.699500px;}
.ls1d_c00066{letter-spacing:8.790375px;}
.ls10_c00066{letter-spacing:8.997750px;}
.ls29_c00066{letter-spacing:10.500263px;}
.ls22_c00066{letter-spacing:10.757280px;}
.ls21_c00066{letter-spacing:18.615300px;}
.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;}
._1c_c00066{margin-left:-41.086982px;}
._11_c00066{margin-left:-18.954679px;}
._1e_c00066{margin-left:-7.780396px;}
._12_c00066{margin-left:-5.972192px;}
._19_c00066{margin-left:-4.066754px;}
._1a_c00066{margin-left:-2.595600px;}
._1b_c00066{margin-left:-1.440546px;}
._a_c00066{width:1.341855px;}
._3_c00066{width:3.147340px;}
._9_c00066{width:4.445244px;}
._2_c00066{width:6.033944px;}
._1_c00066{width:7.878551px;}
._c_c00066{width:9.399763px;}
._18_c00066{width:10.537954px;}
._5_c00066{width:11.598686px;}
._6_c00066{width:13.215216px;}
._1d_c00066{width:14.451041px;}
._8_c00066{width:15.616274px;}
._4_c00066{width:17.954673px;}
._f_c00066{width:19.856634px;}
._7_c00066{width:20.860147px;}
._b_c00066{width:22.775689px;}
._d_c00066{width:24.279190px;}
._10_c00066{width:25.957694px;}
._0_c00066{width:26.989661px;}
._e_c00066{width:28.544958px;}
._13_c00066{width:36.947078px;}
._15_c00066{width:39.818214px;}
._17_c00066{width:45.512092px;}
._14_c00066{width:47.723525px;}
._16_c00066{width:53.738866px;}
.fc0_c00066{color:transparent;}
.fsf_c00066{font-size:16.500000px;}
.fsc_c00066{font-size:25.500000px;}
.fs1d_c00066{font-size:28.500000px;}
.fse_c00066{font-size:32.250000px;}
.fs12_c00066{font-size:33.000000px;}
.fs1a_c00066{font-size:35.250000px;}
.fs1c_c00066{font-size:39.750000px;}
.fs1e_c00066{font-size:40.500000px;}
.fsd_c00066{font-size:41.250000px;}
.fs11_c00066{font-size:42.000000px;}
.fs14_c00066{font-size:45.000000px;}
.fsb_c00066{font-size:47.250000px;}
.fs13_c00066{font-size:48.000000px;}
.fs1b_c00066{font-size:48.750000px;}
.fs10_c00066{font-size:52.500000px;}
.fs19_c00066{font-size:53.250000px;}
.fs18_c00066{font-size:61.500000px;}
.fs17_c00066{font-size:63.750000px;}
.fs16_c00066{font-size:68.250000px;}
.fs5_c00066{font-size:69.000000px;}
.fs4_c00066{font-size:69.750000px;}
.fs15_c00066{font-size:73.500000px;}
.fs8_c00066{font-size:74.250000px;}
.fsa_c00066{font-size:75.000000px;}
.fs20_c00066{font-size:75.750000px;}
.fs21_c00066{font-size:76.999800px;}
.fs9_c00066{font-size:77.250000px;}
.fs1_c00066{font-size:78.000000px;}
.fs0_c00066{font-size:78.750000px;}
.fs6_c00066{font-size:80.250000px;}
.fs3_c00066{font-size:81.000000px;}
.fs2_c00066{font-size:82.500000px;}
.fs7_c00066{font-size:84.750000px;}
.fs1f_c00066{font-size:94.500000px;}
.y0_c00066{bottom:0.000000px;}
.y20_c00066{bottom:389.519070px;}
.y1f_c00066{bottom:419.399775px;}
.y1e_c00066{bottom:449.639700px;}
.y1d_c00066{bottom:449.640495px;}
.y1c_c00066{bottom:479.880405px;}
.y1a_c00066{bottom:509.759370px;}
.y1b_c00066{bottom:509.760135px;}
.y19_c00066{bottom:539.639100px;}
.y18_c00066{bottom:600.118785px;}
.y17_c00066{bottom:659.160090px;}
.y16_c00066{bottom:688.679625px;}
.y15_c00066{bottom:718.919535px;}
.y14_c00066{bottom:748.800105px;}
.y13_c00066{bottom:757.079355px;}
.y11_c00066{bottom:779.039175px;}
.y12_c00066{bottom:779.039985px;}
.yf_c00066{bottom:839.158395px;}
.y10_c00066{bottom:839.158815px;}
.ye_c00066{bottom:868.677930px;}
.yd_c00066{bottom:898.919955px;}
.yc_c00066{bottom:898.920135px;}
.yb_c00066{bottom:928.439670px;}
.ya_c00066{bottom:957.959385px;}
.y9_c00066{bottom:957.960315px;}
.y7_c00066{bottom:1018.079730px;}
.y8_c00066{bottom:1018.079955px;}
.y5_c00066{bottom:1047.238725px;}
.y6_c00066{bottom:1047.238770px;}
.y4_c00066{bottom:1077.478635px;}
.y3_c00066{bottom:1107.359250px;}
.y2_c00066{bottom:1107.360060px;}
.y1_c00066{bottom:1137.239775px;}
.h13_c00066{height:17.208984px;}
.h10_c00066{height:25.201172px;}
.h22_c00066{height:26.595703px;}
.h24_c00066{height:28.166016px;}
.h12_c00066{height:32.501953px;}
.h16_c00066{height:33.635742px;}
.h17_c00066{height:34.417969px;}
.h1f_c00066{height:35.525391px;}
.h21_c00066{height:40.060547px;}
.h25_c00066{height:42.240234px;}
.h11_c00066{height:43.022461px;}
.h15_c00066{height:43.804688px;}
.h23_c00066{height:44.472656px;}
.h19_c00066{height:46.933594px;}
.h20_c00066{height:49.130859px;}
.hf_c00066{height:49.280273px;}
.h18_c00066{height:50.062500px;}
.h1e_c00066{height:53.666016px;}
.h14_c00066{height:54.755859px;}
.h1d_c00066{height:60.779297px;}
.h1c_c00066{height:64.248047px;}
.h8_c00066{height:67.719727px;}
.h1b_c00066{height:68.783203px;}
.h6_c00066{height:72.747070px;}
.he_c00066{height:73.608398px;}
.h1a_c00066{height:74.074219px;}
.hd_c00066{height:75.816650px;}
.h27_c00066{height:76.341797px;}
.hb_c00066{height:76.552734px;}
.h1_c00066{height:77.288818px;}
.hc_c00066{height:77.440430px;}
.h28_c00066{height:77.601361px;}
.h2_c00066{height:78.609375px;}
.h9_c00066{height:78.760986px;}
.h2a_c00066{height:79.309570px;}
.h29_c00066{height:79.457520px;}
.h5_c00066{height:79.497070px;}
.h3_c00066{height:80.969238px;}
.h4_c00066{height:81.533203px;}
.h7_c00066{height:81.632812px;}
.ha_c00066{height:83.177490px;}
.h26_c00066{height:98.560547px;}
.h0_c00066{height:1263.000000px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:142.199850px;}
.x15_c00066{left:143.278455px;}
.x1f_c00066{left:144.720570px;}
.x25_c00066{left:151.199415px;}
.x2f_c00066{left:160.918950px;}
.x3e_c00066{left:165.239850px;}
.x39_c00066{left:167.759565px;}
.x37_c00066{left:179.278800px;}
.x26_c00066{left:180.719100px;}
.x9_c00066{left:217.438635px;}
.x30_c00066{left:220.319250px;}
.x27_c00066{left:222.479685px;}
.x4_c00066{left:236.518635px;}
.x5_c00066{left:252.719535px;}
.x3f_c00066{left:257.399850px;}
.x16_c00066{left:265.679100px;}
.x20_c00066{left:267.119385px;}
.x40_c00066{left:272.519685px;}
.x12_c00066{left:286.199385px;}
.x17_c00066{left:299.158785px;}
.x31_c00066{left:302.398635px;}
.x28_c00066{left:303.838950px;}
.xa_c00066{left:305.638500px;}
.x13_c00066{left:307.439685px;}
.x18_c00066{left:312.479235px;}
.x2_c00066{left:317.518635px;}
.x32_c00066{left:329.039385px;}
.xb_c00066{left:339.838515px;}
.x3_c00066{left:354.239850px;}
.x3c_c00066{left:363.598530px;}
.x33_c00066{left:384.479685px;}
.xc_c00066{left:386.999400px;}
.x19_c00066{left:392.038920px;}
.x3a_c00066{left:400.319820px;}
.x38_c00066{left:403.918950px;}
.x34_c00066{left:406.799565px;}
.xd_c00066{left:411.118785px;}
.xe_c00066{left:421.558635px;}
.x3b_c00066{left:425.159415px;}
.x21_c00066{left:426.238770px;}
.x3d_c00066{left:432.718500px;}
.xf_c00066{left:436.678530px;}
.x29_c00066{left:437.759535px;}
.x22_c00066{left:440.999400px;}
.x1a_c00066{left:444.239220px;}
.x41_c00066{left:453.958920px;}
.x1b_c00066{left:479.879520px;}
.x2a_c00066{left:487.079400px;}
.x1c_c00066{left:489.239820px;}
.x23_c00066{left:493.559100px;}
.x24_c00066{left:512.279850px;}
.x35_c00066{left:545.039385px;}
.x1d_c00066{left:568.799520px;}
.x2b_c00066{left:571.319235px;}
.x2c_c00066{left:585.359850px;}
.x2d_c00066{left:616.679070px;}
.x1e_c00066{left:620.639100px;}
.x6_c00066{left:676.079355px;}
.x2e_c00066{left:681.118785px;}
.x7_c00066{left:696.599670px;}
.x10_c00066{left:720.359850px;}
.x11_c00066{left:736.199850px;}
.x8_c00066{left:764.999355px;}
.x36_c00066{left:766.439670px;}
.x14_c00066{left:770.038965px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls36_c00066{letter-spacing:-11.741467pt;}
.lsd_c00066{letter-spacing:-11.277933pt;}
.ls2e_c00066{letter-spacing:-8.265600pt;}
.ls34_c00066{letter-spacing:-7.924000pt;}
.ls2_c00066{letter-spacing:-7.266700pt;}
.ls1c_c00066{letter-spacing:-6.028000pt;}
.lsc_c00066{letter-spacing:-5.943000pt;}
.ls2d_c00066{letter-spacing:-5.353200pt;}
.ls17_c00066{letter-spacing:-5.333600pt;}
.ls7_c00066{letter-spacing:-5.285000pt;}
.lsb_c00066{letter-spacing:-4.619300pt;}
.ls1f_c00066{letter-spacing:-4.354467pt;}
.ls5_c00066{letter-spacing:-3.961300pt;}
.ls11_c00066{letter-spacing:-3.361973pt;}
.lsa_c00066{letter-spacing:-3.304000pt;}
.ls37_c00066{letter-spacing:-3.213000pt;}
.ls35_c00066{letter-spacing:-2.822400pt;}
.ls6_c00066{letter-spacing:-2.639000pt;}
.ls33_c00066{letter-spacing:-2.617933pt;}
.ls32_c00066{letter-spacing:-2.565333pt;}
.ls3_c00066{letter-spacing:-1.981700pt;}
.ls2c_c00066{letter-spacing:-1.368000pt;}
.ls8_c00066{letter-spacing:-1.323700pt;}
.ls25_c00066{letter-spacing:-1.156000pt;}
.ls14_c00066{letter-spacing:-0.719280pt;}
.ls24_c00066{letter-spacing:-0.680120pt;}
.ls30_c00066{letter-spacing:-0.672660pt;}
.lse_c00066{letter-spacing:-0.658000pt;}
.ls26_c00066{letter-spacing:-0.555333pt;}
.ls28_c00066{letter-spacing:-0.511200pt;}
.ls9_c00066{letter-spacing:0.000000pt;}
.ls20_c00066{letter-spacing:0.574933pt;}
.ls0_c00066{letter-spacing:0.658000pt;}
.ls1a_c00066{letter-spacing:0.659200pt;}
.ls2f_c00066{letter-spacing:0.659867pt;}
.ls19_c00066{letter-spacing:0.679467pt;}
.ls4_c00066{letter-spacing:0.728000pt;}
.ls13_c00066{letter-spacing:0.777333pt;}
.ls18_c00066{letter-spacing:1.400000pt;}
.ls15_c00066{letter-spacing:1.895200pt;}
.ls1_c00066{letter-spacing:2.020000pt;}
.ls1b_c00066{letter-spacing:2.039333pt;}
.ls27_c00066{letter-spacing:2.667733pt;}
.ls2b_c00066{letter-spacing:2.776000pt;}
.ls2a_c00066{letter-spacing:3.165867pt;}
.ls16_c00066{letter-spacing:3.167200pt;}
.lsf_c00066{letter-spacing:3.312720pt;}
.ls12_c00066{letter-spacing:3.952800pt;}
.ls1e_c00066{letter-spacing:4.096467pt;}
.ls31_c00066{letter-spacing:6.734007pt;}
.ls23_c00066{letter-spacing:6.844000pt;}
.ls1d_c00066{letter-spacing:7.813667pt;}
.ls10_c00066{letter-spacing:7.998000pt;}
.ls29_c00066{letter-spacing:9.333567pt;}
.ls22_c00066{letter-spacing:9.562027pt;}
.ls21_c00066{letter-spacing:16.546933pt;}
.ws0_c00066{word-spacing:0.000000pt;}
._1c_c00066{margin-left:-36.521762pt;}
._11_c00066{margin-left:-16.848604pt;}
._1e_c00066{margin-left:-6.915908pt;}
._12_c00066{margin-left:-5.308615pt;}
._19_c00066{margin-left:-3.614892pt;}
._1a_c00066{margin-left:-2.307200pt;}
._1b_c00066{margin-left:-1.280485pt;}
._a_c00066{width:1.192760pt;}
._3_c00066{width:2.797636pt;}
._9_c00066{width:3.951328pt;}
._2_c00066{width:5.363506pt;}
._1_c00066{width:7.003157pt;}
._c_c00066{width:8.355345pt;}
._18_c00066{width:9.367070pt;}
._5_c00066{width:10.309943pt;}
._6_c00066{width:11.746858pt;}
._1d_c00066{width:12.845370pt;}
._8_c00066{width:13.881132pt;}
._4_c00066{width:15.959709pt;}
._f_c00066{width:17.650342pt;}
._7_c00066{width:18.542353pt;}
._b_c00066{width:20.245057pt;}
._d_c00066{width:21.581502pt;}
._10_c00066{width:23.073506pt;}
._0_c00066{width:23.990809pt;}
._e_c00066{width:25.373296pt;}
._13_c00066{width:32.841847pt;}
._15_c00066{width:35.393968pt;}
._17_c00066{width:40.455192pt;}
._14_c00066{width:42.420911pt;}
._16_c00066{width:47.767881pt;}
.fsf_c00066{font-size:14.666667pt;}
.fsc_c00066{font-size:22.666667pt;}
.fs1d_c00066{font-size:25.333333pt;}
.fse_c00066{font-size:28.666667pt;}
.fs12_c00066{font-size:29.333333pt;}
.fs1a_c00066{font-size:31.333333pt;}
.fs1c_c00066{font-size:35.333333pt;}
.fs1e_c00066{font-size:36.000000pt;}
.fsd_c00066{font-size:36.666667pt;}
.fs11_c00066{font-size:37.333333pt;}
.fs14_c00066{font-size:40.000000pt;}
.fsb_c00066{font-size:42.000000pt;}
.fs13_c00066{font-size:42.666667pt;}
.fs1b_c00066{font-size:43.333333pt;}
.fs10_c00066{font-size:46.666667pt;}
.fs19_c00066{font-size:47.333333pt;}
.fs18_c00066{font-size:54.666667pt;}
.fs17_c00066{font-size:56.666667pt;}
.fs16_c00066{font-size:60.666667pt;}
.fs5_c00066{font-size:61.333333pt;}
.fs4_c00066{font-size:62.000000pt;}
.fs15_c00066{font-size:65.333333pt;}
.fs8_c00066{font-size:66.000000pt;}
.fsa_c00066{font-size:66.666667pt;}
.fs20_c00066{font-size:67.333333pt;}
.fs21_c00066{font-size:68.444267pt;}
.fs9_c00066{font-size:68.666667pt;}
.fs1_c00066{font-size:69.333333pt;}
.fs0_c00066{font-size:70.000000pt;}
.fs6_c00066{font-size:71.333333pt;}
.fs3_c00066{font-size:72.000000pt;}
.fs2_c00066{font-size:73.333333pt;}
.fs7_c00066{font-size:75.333333pt;}
.fs1f_c00066{font-size:84.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y20_c00066{bottom:346.239173pt;}
.y1f_c00066{bottom:372.799800pt;}
.y1e_c00066{bottom:399.679733pt;}
.y1d_c00066{bottom:399.680440pt;}
.y1c_c00066{bottom:426.560360pt;}
.y1a_c00066{bottom:453.119440pt;}
.y1b_c00066{bottom:453.120120pt;}
.y19_c00066{bottom:479.679200pt;}
.y18_c00066{bottom:533.438920pt;}
.y17_c00066{bottom:585.920080pt;}
.y16_c00066{bottom:612.159667pt;}
.y15_c00066{bottom:639.039587pt;}
.y14_c00066{bottom:665.600093pt;}
.y13_c00066{bottom:672.959427pt;}
.y11_c00066{bottom:692.479267pt;}
.y12_c00066{bottom:692.479987pt;}
.yf_c00066{bottom:745.918573pt;}
.y10_c00066{bottom:745.918947pt;}
.ye_c00066{bottom:772.158160pt;}
.yd_c00066{bottom:799.039960pt;}
.yc_c00066{bottom:799.040120pt;}
.yb_c00066{bottom:825.279707pt;}
.ya_c00066{bottom:851.519453pt;}
.y9_c00066{bottom:851.520280pt;}
.y7_c00066{bottom:904.959760pt;}
.y8_c00066{bottom:904.959960pt;}
.y5_c00066{bottom:930.878867pt;}
.y6_c00066{bottom:930.878907pt;}
.y4_c00066{bottom:957.758787pt;}
.y3_c00066{bottom:984.319333pt;}
.y2_c00066{bottom:984.320053pt;}
.y1_c00066{bottom:1010.879800pt;}
.h13_c00066{height:15.296875pt;}
.h10_c00066{height:22.401042pt;}
.h22_c00066{height:23.640625pt;}
.h24_c00066{height:25.036458pt;}
.h12_c00066{height:28.890625pt;}
.h16_c00066{height:29.898438pt;}
.h17_c00066{height:30.593750pt;}
.h1f_c00066{height:31.578125pt;}
.h21_c00066{height:35.609375pt;}
.h25_c00066{height:37.546875pt;}
.h11_c00066{height:38.242188pt;}
.h15_c00066{height:38.937500pt;}
.h23_c00066{height:39.531250pt;}
.h19_c00066{height:41.718750pt;}
.h20_c00066{height:43.671875pt;}
.hf_c00066{height:43.804688pt;}
.h18_c00066{height:44.500000pt;}
.h1e_c00066{height:47.703125pt;}
.h14_c00066{height:48.671875pt;}
.h1d_c00066{height:54.026042pt;}
.h1c_c00066{height:57.109375pt;}
.h8_c00066{height:60.195312pt;}
.h1b_c00066{height:61.140625pt;}
.h6_c00066{height:64.664062pt;}
.he_c00066{height:65.429688pt;}
.h1a_c00066{height:65.843750pt;}
.hd_c00066{height:67.392578pt;}
.h27_c00066{height:67.859375pt;}
.hb_c00066{height:68.046875pt;}
.h1_c00066{height:68.701172pt;}
.hc_c00066{height:68.835938pt;}
.h28_c00066{height:68.978987pt;}
.h2_c00066{height:69.875000pt;}
.h9_c00066{height:70.009766pt;}
.h2a_c00066{height:70.497396pt;}
.h29_c00066{height:70.628906pt;}
.h5_c00066{height:70.664062pt;}
.h3_c00066{height:71.972656pt;}
.h4_c00066{height:72.473958pt;}
.h7_c00066{height:72.562500pt;}
.ha_c00066{height:73.935547pt;}
.h26_c00066{height:87.609375pt;}
.h0_c00066{height:1122.666667pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:126.399867pt;}
.x15_c00066{left:127.358627pt;}
.x1f_c00066{left:128.640507pt;}
.x25_c00066{left:134.399480pt;}
.x2f_c00066{left:143.039067pt;}
.x3e_c00066{left:146.879867pt;}
.x39_c00066{left:149.119613pt;}
.x37_c00066{left:159.358933pt;}
.x26_c00066{left:160.639200pt;}
.x9_c00066{left:193.278787pt;}
.x30_c00066{left:195.839333pt;}
.x27_c00066{left:197.759720pt;}
.x4_c00066{left:210.238787pt;}
.x5_c00066{left:224.639587pt;}
.x3f_c00066{left:228.799867pt;}
.x16_c00066{left:236.159200pt;}
.x20_c00066{left:237.439453pt;}
.x40_c00066{left:242.239720pt;}
.x12_c00066{left:254.399453pt;}
.x17_c00066{left:265.918920pt;}
.x31_c00066{left:268.798787pt;}
.x28_c00066{left:270.079067pt;}
.xa_c00066{left:271.678667pt;}
.x13_c00066{left:273.279720pt;}
.x18_c00066{left:277.759320pt;}
.x2_c00066{left:282.238787pt;}
.x32_c00066{left:292.479453pt;}
.xb_c00066{left:302.078680pt;}
.x3_c00066{left:314.879867pt;}
.x3c_c00066{left:323.198693pt;}
.x33_c00066{left:341.759720pt;}
.xc_c00066{left:343.999467pt;}
.x19_c00066{left:348.479040pt;}
.x3a_c00066{left:355.839840pt;}
.x38_c00066{left:359.039067pt;}
.x34_c00066{left:361.599613pt;}
.xd_c00066{left:365.438920pt;}
.xe_c00066{left:374.718787pt;}
.x3b_c00066{left:377.919480pt;}
.x21_c00066{left:378.878907pt;}
.x3d_c00066{left:384.638667pt;}
.xf_c00066{left:388.158693pt;}
.x29_c00066{left:389.119587pt;}
.x22_c00066{left:391.999467pt;}
.x1a_c00066{left:394.879307pt;}
.x41_c00066{left:403.519040pt;}
.x1b_c00066{left:426.559573pt;}
.x2a_c00066{left:432.959467pt;}
.x1c_c00066{left:434.879840pt;}
.x23_c00066{left:438.719200pt;}
.x24_c00066{left:455.359867pt;}
.x35_c00066{left:484.479453pt;}
.x1d_c00066{left:505.599573pt;}
.x2b_c00066{left:507.839320pt;}
.x2c_c00066{left:520.319867pt;}
.x2d_c00066{left:548.159173pt;}
.x1e_c00066{left:551.679200pt;}
.x6_c00066{left:600.959427pt;}
.x2e_c00066{left:605.438920pt;}
.x7_c00066{left:619.199707pt;}
.x10_c00066{left:640.319867pt;}
.x11_c00066{left:654.399867pt;}
.x8_c00066{left:679.999427pt;}
.x36_c00066{left:681.279707pt;}
.x14_c00066{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8af3b5e42e834367a47f6eca.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_92d4ea81e9aebfaf19c7959f.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_0847a7ea9a54ed4438c361b3.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_5a9cac25699cce133893c15b.woff2')format("woff");}.ff4_c00067{font-family:ff4_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:ff5_c00067;src:url('chunks/assets/font_b6e9849f83bd88d40429f813.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00067;src:url('chunks/assets/font_0015b99f52a0ec9a331c1541.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00067;src:url('chunks/assets/font_145c47c678be74a1f8f015e8.woff2')format("woff");}.ff7_c00067{font-family:ff7_c00067;line-height:1.364746;font-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_c00067{transform:matrix(0.177928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177928,0.000000,0.000000,0.250000,0,0);}
.m16_c00067{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m1f_c00067{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00067{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00067{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m18_c00067{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_c00067{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1d_c00067{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m17_c00067{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1a_c00067{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.mb_c00067{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m1c_c00067{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m20_c00067{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m21_c00067{transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls1c_c00067{letter-spacing:-12.147300px;}
.ls1f_c00067{letter-spacing:-9.367575px;}
.ls20_c00067{letter-spacing:-8.914500px;}
.ls22_c00067{letter-spacing:-8.175038px;}
.ls1d_c00067{letter-spacing:-7.005158px;}
.ls24_c00067{letter-spacing:-6.685875px;}
.ls12_c00067{letter-spacing:-5.945625px;}
.ls21_c00067{letter-spacing:-5.196713px;}
.ls1e_c00067{letter-spacing:-4.545450px;}
.lsf_c00067{letter-spacing:-4.456463px;}
.ls1a_c00067{letter-spacing:-4.026000px;}
.ls13_c00067{letter-spacing:-3.717000px;}
.ls1b_c00067{letter-spacing:-3.300750px;}
.ls11_c00067{letter-spacing:-3.086100px;}
.lsc_c00067{letter-spacing:-2.968875px;}
.ls3_c00067{letter-spacing:-2.338088px;}
.lse_c00067{letter-spacing:-2.229413px;}
.ls2_c00067{letter-spacing:-1.560038px;}
.ls6_c00067{letter-spacing:-1.544400px;}
.lsd_c00067{letter-spacing:-1.489163px;}
.ls15_c00067{letter-spacing:-1.468800px;}
.ls8_c00067{letter-spacing:-1.440000px;}
.ls25_c00067{letter-spacing:-1.334580px;}
.ls1_c00067{letter-spacing:-0.779625px;}
.ls10_c00067{letter-spacing:-0.740250px;}
.ls0_c00067{letter-spacing:0.000000px;}
.lsa_c00067{letter-spacing:0.748125px;}
.ls18_c00067{letter-spacing:0.785700px;}
.ls9_c00067{letter-spacing:0.823200px;}
.ls19_c00067{letter-spacing:1.652400px;}
.ls17_c00067{letter-spacing:2.106225px;}
.lsb_c00067{letter-spacing:2.845800px;}
.ls14_c00067{letter-spacing:3.283800px;}
.ls23_c00067{letter-spacing:3.637710px;}
.ls4_c00067{letter-spacing:3.967500px;}
.ls5_c00067{letter-spacing:4.727700px;}
.ls7_c00067{letter-spacing:6.986250px;}
.ls16_c00067{letter-spacing:17.384625px;}
.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;}
._24_c00067{margin-left:-13.428465px;}
._a_c00067{margin-left:-7.478249px;}
._1_c00067{margin-left:-4.990286px;}
._4_c00067{margin-left:-3.231650px;}
._9_c00067{margin-left:-2.031691px;}
._7_c00067{margin-left:-1.023765px;}
._5_c00067{width:1.494238px;}
._8_c00067{width:2.915355px;}
._0_c00067{width:4.486645px;}
._2_c00067{width:5.768219px;}
._17_c00067{width:7.175861px;}
._6_c00067{width:8.285537px;}
._3_c00067{width:9.888622px;}
._b_c00067{width:11.623262px;}
._19_c00067{width:13.007179px;}
._14_c00067{width:14.643831px;}
._16_c00067{width:15.832851px;}
._c_c00067{width:18.696382px;}
._1d_c00067{width:19.973890px;}
._15_c00067{width:21.353791px;}
._22_c00067{width:22.396470px;}
._18_c00067{width:23.421190px;}
._21_c00067{width:24.934969px;}
._1c_c00067{width:25.984261px;}
._1e_c00067{width:27.171260px;}
._20_c00067{width:28.275202px;}
._e_c00067{width:29.402070px;}
._11_c00067{width:30.712500px;}
._23_c00067{width:31.751302px;}
._13_c00067{width:33.047824px;}
._f_c00067{width:35.831072px;}
._1f_c00067{width:37.198960px;}
._10_c00067{width:38.256497px;}
._1a_c00067{width:41.346425px;}
._12_c00067{width:43.635910px;}
._d_c00067{width:45.832946px;}
._1b_c00067{width:50.189589px;}
.fc0_c00067{color:transparent;}
.fse_c00067{font-size:36.000000px;}
.fs14_c00067{font-size:36.750000px;}
.fsf_c00067{font-size:38.250000px;}
.fs10_c00067{font-size:57.750000px;}
.fs5_c00067{font-size:67.500000px;}
.fs8_c00067{font-size:68.250000px;}
.fs2_c00067{font-size:69.000000px;}
.fsa_c00067{font-size:69.750000px;}
.fs9_c00067{font-size:71.250000px;}
.fs6_c00067{font-size:72.000000px;}
.fs7_c00067{font-size:73.500000px;}
.fs4_c00067{font-size:74.250000px;}
.fs12_c00067{font-size:75.000000px;}
.fs3_c00067{font-size:77.250000px;}
.fsd_c00067{font-size:78.000000px;}
.fs1_c00067{font-size:78.750000px;}
.fs15_c00067{font-size:79.500000px;}
.fs0_c00067{font-size:80.250000px;}
.fsb_c00067{font-size:81.000000px;}
.fs13_c00067{font-size:81.750000px;}
.fsc_c00067{font-size:82.500000px;}
.fs11_c00067{font-size:83.250000px;}
.fs16_c00067{font-size:84.000000px;}
.y0_c00067{bottom:0.000000px;}
.y27_c00067{bottom:176.400720px;}
.y25_c00067{bottom:206.280375px;}
.y26_c00067{bottom:206.280435px;}
.y24_c00067{bottom:236.520285px;}
.y23_c00067{bottom:236.521185px;}
.y22_c00067{bottom:266.400900px;}
.y21_c00067{bottom:266.401110px;}
.y20_c00067{bottom:296.280825px;}
.y1f_c00067{bottom:326.160555px;}
.y1e_c00067{bottom:356.040270px;}
.y1d_c00067{bottom:385.920000px;}
.y1c_c00067{bottom:385.920135px;}
.y1a_c00067{bottom:415.439025px;}
.y1b_c00067{bottom:415.439670px;}
.y19_c00067{bottom:445.678935px;}
.y18_c00067{bottom:476.099985px;}
.y17_c00067{bottom:506.160870px;}
.y16_c00067{bottom:535.680405px;}
.y15_c00067{bottom:565.560120px;}
.y14_c00067{bottom:594.721275px;}
.y13_c00067{bottom:654.480720px;}
.y12_c00067{bottom:684.360450px;}
.y11_c00067{bottom:713.879970px;}
.yf_c00067{bottom:744.480885px;}
.y10_c00067{bottom:744.840135px;}
.ye_c00067{bottom:751.680720px;}
.yd_c00067{bottom:773.999790px;}
.yc_c00067{bottom:803.879520px;}
.yb_c00067{bottom:863.640750px;}
.ya_c00067{bottom:893.519715px;}
.y9_c00067{bottom:893.520465px;}
.y8_c00067{bottom:923.760390px;}
.y7_c00067{bottom:953.640105px;}
.y6_c00067{bottom:953.641005px;}
.y5_c00067{bottom:983.520720px;}
.y4_c00067{bottom:983.520900px;}
.y3_c00067{bottom:1042.921965px;}
.y2_c00067{bottom:1073.520270px;}
.y1_c00067{bottom:1132.559685px;}
.h1b_c00067{height:36.068115px;}
.h11_c00067{height:37.546875px;}
.h12_c00067{height:39.893555px;}
.h13_c00067{height:57.073242px;}
.h9_c00067{height:66.983643px;}
.h6_c00067{height:68.027344px;}
.hb_c00067{height:68.455811px;}
.ha_c00067{height:69.927979px;}
.h7_c00067{height:70.664062px;}
.h3_c00067{height:71.964844px;}
.h8_c00067{height:74.074219px;}
.h5_c00067{height:74.830078px;}
.h4_c00067{height:75.778931px;}
.h10_c00067{height:76.552734px;}
.hc_c00067{height:77.288818px;}
.h18_c00067{height:77.440430px;}
.h17_c00067{height:78.222656px;}
.hd_c00067{height:78.760986px;}
.h2_c00067{height:79.365234px;}
.he_c00067{height:79.497070px;}
.h1c_c00067{height:80.121094px;}
.h1_c00067{height:80.876953px;}
.hf_c00067{height:80.969238px;}
.h16_c00067{height:81.533203px;}
.h15_c00067{height:81.632812px;}
.h14_c00067{height:82.274414px;}
.h19_c00067{height:82.388672px;}
.h1a_c00067{height:83.900391px;}
.h1d_c00067{height:87.609375px;}
.h0_c00067{height:1263.000000px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:135.718500px;}
.x20_c00067{left:137.158815px;}
.x13_c00067{left:162.718500px;}
.x17_c00067{left:163.799565px;}
.x2_c00067{left:186.478665px;}
.x3_c00067{left:208.080000px;}
.x21_c00067{left:213.478635px;}
.x18_c00067{left:264.599700px;}
.x29_c00067{left:280.439685px;}
.x4_c00067{left:291.599700px;}
.x2a_c00067{left:298.079385px;}
.x19_c00067{left:349.559685px;}
.x28_c00067{left:360.358635px;}
.x5_c00067{left:367.199385px;}
.xe_c00067{left:379.079385px;}
.x22_c00067{left:389.878320px;}
.x6_c00067{left:395.998950px;}
.xf_c00067{left:418.679670px;}
.x23_c00067{left:434.158770px;}
.x24_c00067{left:453.238770px;}
.x26_c00067{left:484.918950px;}
.x1a_c00067{left:491.039385px;}
.x7_c00067{left:498.239220px;}
.x27_c00067{left:502.919535px;}
.x10_c00067{left:523.439670px;}
.xc_c00067{left:524.519070px;}
.xd_c00067{left:538.918950px;}
.x11_c00067{left:541.079400px;}
.x1b_c00067{left:573.838950px;}
.x8_c00067{left:591.119385px;}
.x1c_c00067{left:600.838950px;}
.x9_c00067{left:612.359850px;}
.x2b_c00067{left:619.918950px;}
.x1d_c00067{left:625.678530px;}
.x2c_c00067{left:635.399820px;}
.x1e_c00067{left:681.838950px;}
.xa_c00067{left:688.679670px;}
.x25_c00067{left:705.958335px;}
.x14_c00067{left:710.279250px;}
.xb_c00067{left:717.838530px;}
.x1f_c00067{left:725.399235px;}
.x15_c00067{left:731.519670px;}
.x16_c00067{left:762.479685px;}
.x12_c00067{left:768.598575px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls1c_c00067{letter-spacing:-10.797600pt;}
.ls1f_c00067{letter-spacing:-8.326733pt;}
.ls20_c00067{letter-spacing:-7.924000pt;}
.ls22_c00067{letter-spacing:-7.266700pt;}
.ls1d_c00067{letter-spacing:-6.226807pt;}
.ls24_c00067{letter-spacing:-5.943000pt;}
.ls12_c00067{letter-spacing:-5.285000pt;}
.ls21_c00067{letter-spacing:-4.619300pt;}
.ls1e_c00067{letter-spacing:-4.040400pt;}
.lsf_c00067{letter-spacing:-3.961300pt;}
.ls1a_c00067{letter-spacing:-3.578667pt;}
.ls13_c00067{letter-spacing:-3.304000pt;}
.ls1b_c00067{letter-spacing:-2.934000pt;}
.ls11_c00067{letter-spacing:-2.743200pt;}
.lsc_c00067{letter-spacing:-2.639000pt;}
.ls3_c00067{letter-spacing:-2.078300pt;}
.lse_c00067{letter-spacing:-1.981700pt;}
.ls2_c00067{letter-spacing:-1.386700pt;}
.ls6_c00067{letter-spacing:-1.372800pt;}
.lsd_c00067{letter-spacing:-1.323700pt;}
.ls15_c00067{letter-spacing:-1.305600pt;}
.ls8_c00067{letter-spacing:-1.280000pt;}
.ls25_c00067{letter-spacing:-1.186293pt;}
.ls1_c00067{letter-spacing:-0.693000pt;}
.ls10_c00067{letter-spacing:-0.658000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.lsa_c00067{letter-spacing:0.665000pt;}
.ls18_c00067{letter-spacing:0.698400pt;}
.ls9_c00067{letter-spacing:0.731733pt;}
.ls19_c00067{letter-spacing:1.468800pt;}
.ls17_c00067{letter-spacing:1.872200pt;}
.lsb_c00067{letter-spacing:2.529600pt;}
.ls14_c00067{letter-spacing:2.918933pt;}
.ls23_c00067{letter-spacing:3.233520pt;}
.ls4_c00067{letter-spacing:3.526667pt;}
.ls5_c00067{letter-spacing:4.202400pt;}
.ls7_c00067{letter-spacing:6.210000pt;}
.ls16_c00067{letter-spacing:15.453000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
._24_c00067{margin-left:-11.936413pt;}
._a_c00067{margin-left:-6.647332pt;}
._1_c00067{margin-left:-4.435810pt;}
._4_c00067{margin-left:-2.872578pt;}
._9_c00067{margin-left:-1.805947pt;}
._7_c00067{margin-left:-0.910013pt;}
._5_c00067{width:1.328212pt;}
._8_c00067{width:2.591426pt;}
._0_c00067{width:3.988129pt;}
._2_c00067{width:5.127306pt;}
._17_c00067{width:6.378543pt;}
._6_c00067{width:7.364922pt;}
._3_c00067{width:8.789886pt;}
._b_c00067{width:10.331789pt;}
._19_c00067{width:11.561937pt;}
._14_c00067{width:13.016738pt;}
._16_c00067{width:14.073645pt;}
._c_c00067{width:16.619007pt;}
._1d_c00067{width:17.754569pt;}
._15_c00067{width:18.981147pt;}
._22_c00067{width:19.907974pt;}
._18_c00067{width:20.818836pt;}
._21_c00067{width:22.164417pt;}
._1c_c00067{width:23.097121pt;}
._1e_c00067{width:24.152231pt;}
._20_c00067{width:25.133513pt;}
._e_c00067{width:26.135174pt;}
._11_c00067{width:27.300000pt;}
._23_c00067{width:28.223379pt;}
._13_c00067{width:29.375843pt;}
._f_c00067{width:31.849842pt;}
._1f_c00067{width:33.065742pt;}
._10_c00067{width:34.005775pt;}
._1a_c00067{width:36.752377pt;}
._12_c00067{width:38.787475pt;}
._d_c00067{width:40.740396pt;}
._1b_c00067{width:44.612968pt;}
.fse_c00067{font-size:32.000000pt;}
.fs14_c00067{font-size:32.666667pt;}
.fsf_c00067{font-size:34.000000pt;}
.fs10_c00067{font-size:51.333333pt;}
.fs5_c00067{font-size:60.000000pt;}
.fs8_c00067{font-size:60.666667pt;}
.fs2_c00067{font-size:61.333333pt;}
.fsa_c00067{font-size:62.000000pt;}
.fs9_c00067{font-size:63.333333pt;}
.fs6_c00067{font-size:64.000000pt;}
.fs7_c00067{font-size:65.333333pt;}
.fs4_c00067{font-size:66.000000pt;}
.fs12_c00067{font-size:66.666667pt;}
.fs3_c00067{font-size:68.666667pt;}
.fsd_c00067{font-size:69.333333pt;}
.fs1_c00067{font-size:70.000000pt;}
.fs15_c00067{font-size:70.666667pt;}
.fs0_c00067{font-size:71.333333pt;}
.fsb_c00067{font-size:72.000000pt;}
.fs13_c00067{font-size:72.666667pt;}
.fsc_c00067{font-size:73.333333pt;}
.fs11_c00067{font-size:74.000000pt;}
.fs16_c00067{font-size:74.666667pt;}
.y0_c00067{bottom:0.000000pt;}
.y27_c00067{bottom:156.800640pt;}
.y25_c00067{bottom:183.360333pt;}
.y26_c00067{bottom:183.360387pt;}
.y24_c00067{bottom:210.240253pt;}
.y23_c00067{bottom:210.241053pt;}
.y22_c00067{bottom:236.800800pt;}
.y21_c00067{bottom:236.800987pt;}
.y20_c00067{bottom:263.360733pt;}
.y1f_c00067{bottom:289.920493pt;}
.y1e_c00067{bottom:316.480240pt;}
.y1d_c00067{bottom:343.040000pt;}
.y1c_c00067{bottom:343.040120pt;}
.y1a_c00067{bottom:369.279133pt;}
.y1b_c00067{bottom:369.279707pt;}
.y19_c00067{bottom:396.159053pt;}
.y18_c00067{bottom:423.199987pt;}
.y17_c00067{bottom:449.920773pt;}
.y16_c00067{bottom:476.160360pt;}
.y15_c00067{bottom:502.720107pt;}
.y14_c00067{bottom:528.641133pt;}
.y13_c00067{bottom:581.760640pt;}
.y12_c00067{bottom:608.320400pt;}
.y11_c00067{bottom:634.559973pt;}
.yf_c00067{bottom:661.760787pt;}
.y10_c00067{bottom:662.080120pt;}
.ye_c00067{bottom:668.160640pt;}
.yd_c00067{bottom:687.999813pt;}
.yc_c00067{bottom:714.559573pt;}
.yb_c00067{bottom:767.680667pt;}
.ya_c00067{bottom:794.239747pt;}
.y9_c00067{bottom:794.240413pt;}
.y8_c00067{bottom:821.120347pt;}
.y7_c00067{bottom:847.680093pt;}
.y6_c00067{bottom:847.680893pt;}
.y5_c00067{bottom:874.240640pt;}
.y4_c00067{bottom:874.240800pt;}
.y3_c00067{bottom:927.041747pt;}
.y2_c00067{bottom:954.240240pt;}
.y1_c00067{bottom:1006.719720pt;}
.h1b_c00067{height:32.060547pt;}
.h11_c00067{height:33.375000pt;}
.h12_c00067{height:35.460938pt;}
.h13_c00067{height:50.731771pt;}
.h9_c00067{height:59.541016pt;}
.h6_c00067{height:60.468750pt;}
.hb_c00067{height:60.849609pt;}
.ha_c00067{height:62.158203pt;}
.h7_c00067{height:62.812500pt;}
.h3_c00067{height:63.968750pt;}
.h8_c00067{height:65.843750pt;}
.h5_c00067{height:66.515625pt;}
.h4_c00067{height:67.359049pt;}
.h10_c00067{height:68.046875pt;}
.hc_c00067{height:68.701172pt;}
.h18_c00067{height:68.835938pt;}
.h17_c00067{height:69.531250pt;}
.hd_c00067{height:70.009766pt;}
.h2_c00067{height:70.546875pt;}
.he_c00067{height:70.664062pt;}
.h1c_c00067{height:71.218750pt;}
.h1_c00067{height:71.890625pt;}
.hf_c00067{height:71.972656pt;}
.h16_c00067{height:72.473958pt;}
.h15_c00067{height:72.562500pt;}
.h14_c00067{height:73.132813pt;}
.h19_c00067{height:73.234375pt;}
.h1a_c00067{height:74.578125pt;}
.h1d_c00067{height:77.875000pt;}
.h0_c00067{height:1122.666667pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:120.638667pt;}
.x20_c00067{left:121.918947pt;}
.x13_c00067{left:144.638667pt;}
.x17_c00067{left:145.599613pt;}
.x2_c00067{left:165.758813pt;}
.x3_c00067{left:184.960000pt;}
.x21_c00067{left:189.758787pt;}
.x18_c00067{left:235.199733pt;}
.x29_c00067{left:249.279720pt;}
.x4_c00067{left:259.199733pt;}
.x2a_c00067{left:264.959453pt;}
.x19_c00067{left:310.719720pt;}
.x28_c00067{left:320.318787pt;}
.x5_c00067{left:326.399453pt;}
.xe_c00067{left:336.959453pt;}
.x22_c00067{left:346.558507pt;}
.x6_c00067{left:351.999067pt;}
.xf_c00067{left:372.159707pt;}
.x23_c00067{left:385.918907pt;}
.x24_c00067{left:402.878907pt;}
.x26_c00067{left:431.039067pt;}
.x1a_c00067{left:436.479453pt;}
.x7_c00067{left:442.879307pt;}
.x27_c00067{left:447.039587pt;}
.x10_c00067{left:465.279707pt;}
.xc_c00067{left:466.239173pt;}
.xd_c00067{left:479.039067pt;}
.x11_c00067{left:480.959467pt;}
.x1b_c00067{left:510.079067pt;}
.x8_c00067{left:525.439453pt;}
.x1c_c00067{left:534.079067pt;}
.x9_c00067{left:544.319867pt;}
.x2b_c00067{left:551.039067pt;}
.x1d_c00067{left:556.158693pt;}
.x2c_c00067{left:564.799840pt;}
.x1e_c00067{left:606.079067pt;}
.xa_c00067{left:612.159707pt;}
.x25_c00067{left:627.518520pt;}
.x14_c00067{left:631.359333pt;}
.xb_c00067{left:638.078693pt;}
.x1f_c00067{left:644.799320pt;}
.x15_c00067{left:650.239707pt;}
.x16_c00067{left:677.759720pt;}
.x12_c00067{left:683.198733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40273a5c212d0d2b02f37ed7.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_c682226653e4de2d3c813651.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.432129;font-style:normal;font-weight:normal;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_13a867cf9e665f5820d590c1.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.432129;font-style:normal;font-weight:normal;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_77cbea65a2f33155d1f55066.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00068;src:url('chunks/assets/font_5c8436c57118e389c0775444.woff2')format("woff");}.ff6_c00068{font-family:ff6_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:ff7_c00068;src:url('chunks/assets/font_2efc7a5f6a7b098f2d2a133b.woff2')format("woff");}.ff7_c00068{font-family:ff7_c00068;line-height:1.364746;font-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_c00068{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m3_c00068{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656250,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls21_c00068{letter-spacing:-11.203155px;}
.ls20_c00068{letter-spacing:-6.056400px;}
.ls7_c00068{letter-spacing:-5.945625px;}
.ls17_c00068{letter-spacing:-5.453820px;}
.ls1b_c00068{letter-spacing:-5.203125px;}
.ls19_c00068{letter-spacing:-5.196713px;}
.ls1c_c00068{letter-spacing:-4.456463px;}
.ls1f_c00068{letter-spacing:-3.900000px;}
.ls4_c00068{letter-spacing:-3.717000px;}
.lsf_c00068{letter-spacing:-3.065108px;}
.ls5_c00068{letter-spacing:-2.968875px;}
.ls10_c00068{letter-spacing:-2.925000px;}
.ls16_c00068{letter-spacing:-2.250225px;}
.ls1_c00068{letter-spacing:-2.229413px;}
.ls15_c00068{letter-spacing:-1.636200px;}
.lse_c00068{letter-spacing:-1.588650px;}
.ls2_c00068{letter-spacing:-1.489163px;}
.ls14_c00068{letter-spacing:-1.429380px;}
.ls3_c00068{letter-spacing:-0.740250px;}
.ls1d_c00068{letter-spacing:-0.727200px;}
.ls18_c00068{letter-spacing:-0.592800px;}
.ls6_c00068{letter-spacing:0.000000px;}
.ls1e_c00068{letter-spacing:0.795675px;}
.ls0_c00068{letter-spacing:1.489163px;}
.ls8_c00068{letter-spacing:1.776000px;}
.lsb_c00068{letter-spacing:2.977875px;}
.ls13_c00068{letter-spacing:3.272220px;}
.lsc_c00068{letter-spacing:4.306995px;}
.ls1a_c00068{letter-spacing:4.685175px;}
.lsa_c00068{letter-spacing:4.938098px;}
.ls11_c00068{letter-spacing:5.479200px;}
.lsd_c00068{letter-spacing:9.637950px;}
.ls12_c00068{letter-spacing:13.361565px;}
.ls9_c00068{letter-spacing:23.738940px;}
.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;}
._14_c00068{margin-left:-5.381805px;}
._13_c00068{margin-left:-3.142184px;}
._12_c00068{margin-left:-1.420189px;}
._f_c00068{width:1.059187px;}
._15_c00068{width:2.163738px;}
._11_c00068{width:3.200979px;}
._d_c00068{width:4.509819px;}
._a_c00068{width:5.909281px;}
._e_c00068{width:7.795240px;}
._0_c00068{width:9.061346px;}
._b_c00068{width:11.172381px;}
._1_c00068{width:12.522454px;}
._10_c00068{width:14.500148px;}
._2_c00068{width:15.720342px;}
._c_c00068{width:18.651833px;}
._9_c00068{width:19.876678px;}
._3_c00068{width:21.622685px;}
._5_c00068{width:34.673774px;}
._6_c00068{width:36.258803px;}
._7_c00068{width:37.603259px;}
._4_c00068{width:40.138905px;}
._8_c00068{width:45.052637px;}
.fc0_c00068{color:transparent;}
.fsd_c00068{font-size:18.000000px;}
.fse_c00068{font-size:22.500000px;}
.fsf_c00068{font-size:28.500000px;}
.fs5_c00068{font-size:37.500000px;}
.fs4_c00068{font-size:47.250000px;}
.fs2_c00068{font-size:48.000000px;}
.fs6_c00068{font-size:49.500000px;}
.fs7_c00068{font-size:50.250000px;}
.fs3_c00068{font-size:54.000000px;}
.fsa_c00068{font-size:58.500000px;}
.fs8_c00068{font-size:66.750000px;}
.fs9_c00068{font-size:68.250000px;}
.fs16_c00068{font-size:70.500000px;}
.fsb_c00068{font-size:72.000000px;}
.fsc_c00068{font-size:73.500000px;}
.fs12_c00068{font-size:75.750000px;}
.fs13_c00068{font-size:77.250000px;}
.fs14_c00068{font-size:78.000000px;}
.fs0_c00068{font-size:78.750000px;}
.fs15_c00068{font-size:79.500000px;}
.fs1_c00068{font-size:80.250000px;}
.fs10_c00068{font-size:82.500000px;}
.fs11_c00068{font-size:83.250000px;}
.y0_c00068{bottom:0.000000px;}
.y14_c00068{bottom:684.000255px;}
.y13_c00068{bottom:713.879970px;}
.y11_c00068{bottom:744.119250px;}
.y12_c00068{bottom:744.119985px;}
.yf_c00068{bottom:773.279595px;}
.y10_c00068{bottom:773.280390px;}
.ye_c00068{bottom:803.159310px;}
.yd_c00068{bottom:833.399235px;}
.yc_c00068{bottom:833.399430px;}
.yb_c00068{bottom:862.560585px;}
.ya_c00068{bottom:892.440315px;}
.y9_c00068{bottom:922.320165px;}
.y8_c00068{bottom:952.560075px;}
.y7_c00068{bottom:982.439805px;}
.y6_c00068{bottom:1012.679715px;}
.y4_c00068{bottom:1072.079955px;}
.y5_c00068{bottom:1072.439205px;}
.y3_c00068{bottom:1075.679070px;}
.y2_c00068{bottom:1101.959820px;}
.y1_c00068{bottom:1131.839535px;}
.he_c00068{height:18.773438px;}
.hf_c00068{height:23.466797px;}
.h10_c00068{height:29.724609px;}
.h6_c00068{height:39.111328px;}
.h5_c00068{height:49.280273px;}
.h3_c00068{height:50.062500px;}
.h7_c00068{height:51.626953px;}
.h8_c00068{height:52.409180px;}
.h4_c00068{height:56.320312px;}
.hb_c00068{height:61.013672px;}
.h9_c00068{height:69.618164px;}
.ha_c00068{height:71.182617px;}
.h18_c00068{height:73.529297px;}
.h13_c00068{height:74.344482px;}
.hc_c00068{height:75.093750px;}
.h14_c00068{height:75.816650px;}
.h19_c00068{height:76.341797px;}
.hd_c00068{height:76.658203px;}
.h1_c00068{height:77.288818px;}
.h17_c00068{height:77.853516px;}
.h16_c00068{height:78.568359px;}
.h15_c00068{height:78.609375px;}
.h2_c00068{height:78.760986px;}
.h11_c00068{height:80.969238px;}
.h12_c00068{height:81.705322px;}
.h0_c00068{height:1263.000000px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:140.039400px;}
.x16_c00068{left:141.118635px;}
.x1f_c00068{left:142.199850px;}
.xf_c00068{left:164.878950px;}
.x4_c00068{left:248.759535px;}
.x5_c00068{left:272.158785px;}
.x6_c00068{left:348.478635px;}
.x7_c00068{left:371.879535px;}
.x10_c00068{left:385.918350px;}
.x17_c00068{left:390.239220px;}
.x11_c00068{left:401.758530px;}
.x18_c00068{left:404.279850px;}
.x19_c00068{left:426.238770px;}
.x8_c00068{left:432.000000px;}
.xe_c00068{left:433.079400px;}
.x1a_c00068{left:475.919535px;}
.x9_c00068{left:508.319820px;}
.x14_c00068{left:533.879520px;}
.xa_c00068{left:540.718500px;}
.x1b_c00068{left:543.599070px;}
.x15_c00068{left:547.918350px;}
.x2_c00068{left:550.439670px;}
.x3_c00068{left:567.359250px;}
.x1c_c00068{left:576.358665px;}
.xb_c00068{left:606.239220px;}
.xc_c00068{left:625.319235px;}
.x1d_c00068{left:656.638545px;}
.x12_c00068{left:678.239820px;}
.x1e_c00068{left:694.080000px;}
.x13_c00068{left:699.119385px;}
.xd_c00068{left:712.078770px;}
.x20_c00068{left:754.918950px;}
.x21_c00068{left:769.318815px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls21_c00068{letter-spacing:-9.958360pt;}
.ls20_c00068{letter-spacing:-5.383467pt;}
.ls7_c00068{letter-spacing:-5.285000pt;}
.ls17_c00068{letter-spacing:-4.847840pt;}
.ls1b_c00068{letter-spacing:-4.625000pt;}
.ls19_c00068{letter-spacing:-4.619300pt;}
.ls1c_c00068{letter-spacing:-3.961300pt;}
.ls1f_c00068{letter-spacing:-3.466667pt;}
.ls4_c00068{letter-spacing:-3.304000pt;}
.lsf_c00068{letter-spacing:-2.724540pt;}
.ls5_c00068{letter-spacing:-2.639000pt;}
.ls10_c00068{letter-spacing:-2.600000pt;}
.ls16_c00068{letter-spacing:-2.000200pt;}
.ls1_c00068{letter-spacing:-1.981700pt;}
.ls15_c00068{letter-spacing:-1.454400pt;}
.lse_c00068{letter-spacing:-1.412133pt;}
.ls2_c00068{letter-spacing:-1.323700pt;}
.ls14_c00068{letter-spacing:-1.270560pt;}
.ls3_c00068{letter-spacing:-0.658000pt;}
.ls1d_c00068{letter-spacing:-0.646400pt;}
.ls18_c00068{letter-spacing:-0.526933pt;}
.ls6_c00068{letter-spacing:0.000000pt;}
.ls1e_c00068{letter-spacing:0.707267pt;}
.ls0_c00068{letter-spacing:1.323700pt;}
.ls8_c00068{letter-spacing:1.578667pt;}
.lsb_c00068{letter-spacing:2.647000pt;}
.ls13_c00068{letter-spacing:2.908640pt;}
.lsc_c00068{letter-spacing:3.828440pt;}
.ls1a_c00068{letter-spacing:4.164600pt;}
.lsa_c00068{letter-spacing:4.389420pt;}
.ls11_c00068{letter-spacing:4.870400pt;}
.lsd_c00068{letter-spacing:8.567067pt;}
.ls12_c00068{letter-spacing:11.876947pt;}
.ls9_c00068{letter-spacing:21.101280pt;}
.ws0_c00068{word-spacing:0.000000pt;}
._14_c00068{margin-left:-4.783826pt;}
._13_c00068{margin-left:-2.793053pt;}
._12_c00068{margin-left:-1.262391pt;}
._f_c00068{width:0.941500pt;}
._15_c00068{width:1.923323pt;}
._11_c00068{width:2.845315pt;}
._d_c00068{width:4.008728pt;}
._a_c00068{width:5.252694pt;}
._e_c00068{width:6.929102pt;}
._0_c00068{width:8.054530pt;}
._b_c00068{width:9.931006pt;}
._1_c00068{width:11.131070pt;}
._10_c00068{width:12.889021pt;}
._2_c00068{width:13.973638pt;}
._c_c00068{width:16.579408pt;}
._9_c00068{width:17.668158pt;}
._3_c00068{width:19.220164pt;}
._5_c00068{width:30.821132pt;}
._6_c00068{width:32.230047pt;}
._7_c00068{width:33.425119pt;}
._4_c00068{width:35.679026pt;}
._8_c00068{width:40.046789pt;}
.fsd_c00068{font-size:16.000000pt;}
.fse_c00068{font-size:20.000000pt;}
.fsf_c00068{font-size:25.333333pt;}
.fs5_c00068{font-size:33.333333pt;}
.fs4_c00068{font-size:42.000000pt;}
.fs2_c00068{font-size:42.666667pt;}
.fs6_c00068{font-size:44.000000pt;}
.fs7_c00068{font-size:44.666667pt;}
.fs3_c00068{font-size:48.000000pt;}
.fsa_c00068{font-size:52.000000pt;}
.fs8_c00068{font-size:59.333333pt;}
.fs9_c00068{font-size:60.666667pt;}
.fs16_c00068{font-size:62.666667pt;}
.fsb_c00068{font-size:64.000000pt;}
.fsc_c00068{font-size:65.333333pt;}
.fs12_c00068{font-size:67.333333pt;}
.fs13_c00068{font-size:68.666667pt;}
.fs14_c00068{font-size:69.333333pt;}
.fs0_c00068{font-size:70.000000pt;}
.fs15_c00068{font-size:70.666667pt;}
.fs1_c00068{font-size:71.333333pt;}
.fs10_c00068{font-size:73.333333pt;}
.fs11_c00068{font-size:74.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y14_c00068{bottom:608.000227pt;}
.y13_c00068{bottom:634.559973pt;}
.y11_c00068{bottom:661.439333pt;}
.y12_c00068{bottom:661.439987pt;}
.yf_c00068{bottom:687.359640pt;}
.y10_c00068{bottom:687.360347pt;}
.ye_c00068{bottom:713.919387pt;}
.yd_c00068{bottom:740.799320pt;}
.yc_c00068{bottom:740.799493pt;}
.yb_c00068{bottom:766.720520pt;}
.ya_c00068{bottom:793.280280pt;}
.y9_c00068{bottom:819.840147pt;}
.y8_c00068{bottom:846.720067pt;}
.y7_c00068{bottom:873.279827pt;}
.y6_c00068{bottom:900.159747pt;}
.y4_c00068{bottom:952.959960pt;}
.y5_c00068{bottom:953.279293pt;}
.y3_c00068{bottom:956.159173pt;}
.y2_c00068{bottom:979.519840pt;}
.y1_c00068{bottom:1006.079587pt;}
.he_c00068{height:16.687500pt;}
.hf_c00068{height:20.859375pt;}
.h10_c00068{height:26.421875pt;}
.h6_c00068{height:34.765625pt;}
.h5_c00068{height:43.804688pt;}
.h3_c00068{height:44.500000pt;}
.h7_c00068{height:45.890625pt;}
.h8_c00068{height:46.585938pt;}
.h4_c00068{height:50.062500pt;}
.hb_c00068{height:54.234375pt;}
.h9_c00068{height:61.882812pt;}
.ha_c00068{height:63.273438pt;}
.h18_c00068{height:65.359375pt;}
.h13_c00068{height:66.083984pt;}
.hc_c00068{height:66.750000pt;}
.h14_c00068{height:67.392578pt;}
.h19_c00068{height:67.859375pt;}
.hd_c00068{height:68.140625pt;}
.h1_c00068{height:68.701172pt;}
.h17_c00068{height:69.203125pt;}
.h16_c00068{height:69.838542pt;}
.h15_c00068{height:69.875000pt;}
.h2_c00068{height:70.009766pt;}
.h11_c00068{height:71.972656pt;}
.h12_c00068{height:72.626953pt;}
.h0_c00068{height:1122.666667pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:124.479467pt;}
.x16_c00068{left:125.438787pt;}
.x1f_c00068{left:126.399867pt;}
.xf_c00068{left:146.559067pt;}
.x4_c00068{left:221.119587pt;}
.x5_c00068{left:241.918920pt;}
.x6_c00068{left:309.758787pt;}
.x7_c00068{left:330.559587pt;}
.x10_c00068{left:343.038533pt;}
.x17_c00068{left:346.879307pt;}
.x11_c00068{left:357.118693pt;}
.x18_c00068{left:359.359867pt;}
.x19_c00068{left:378.878907pt;}
.x8_c00068{left:384.000000pt;}
.xe_c00068{left:384.959467pt;}
.x1a_c00068{left:423.039587pt;}
.x9_c00068{left:451.839840pt;}
.x14_c00068{left:474.559573pt;}
.xa_c00068{left:480.638667pt;}
.x1b_c00068{left:483.199173pt;}
.x15_c00068{left:487.038533pt;}
.x2_c00068{left:489.279707pt;}
.x3_c00068{left:504.319333pt;}
.x1c_c00068{left:512.318813pt;}
.xb_c00068{left:538.879307pt;}
.xc_c00068{left:555.839320pt;}
.x1d_c00068{left:583.678707pt;}
.x12_c00068{left:602.879840pt;}
.x1e_c00068{left:616.960000pt;}
.x13_c00068{left:621.439453pt;}
.xd_c00068{left:632.958907pt;}
.x20_c00068{left:671.039067pt;}
.x21_c00068{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45ae5a472e7f4a1d8f8a83e8.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.364746;font-style:normal;font-weight:normal;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_53988a8019d1509cc0e59a5f.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_9d9928297eafb1fb14332d12.woff2')format("woff");}.ff3_c00069{font-family:ff3_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:ff4_c00069;src:url('chunks/assets/font_058b8d2a45599f8953ae85ff.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_7fa6f628059f88bf164ef25b.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.281250;font-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_c00069{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_c00069{transform:matrix(0.118902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118902,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{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_c00069{transform:matrix(0.142105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142105,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.144022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144022,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.219948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219948,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.942568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942568,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(1.132857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.132857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.132857,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.lsa_c00069{letter-spacing:-176.461950px;}
.lsb_c00069{letter-spacing:-39.823350px;}
.ls5_c00069{letter-spacing:-19.793250px;}
.ls2_c00069{letter-spacing:-4.458135px;}
.ls3_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:2.098800px;}
.ls4_c00069{letter-spacing:3.142260px;}
.ls7_c00069{letter-spacing:4.729350px;}
.ls8_c00069{letter-spacing:6.817500px;}
.ls9_c00069{letter-spacing:12.000000px;}
.ls6_c00069{letter-spacing:15.000000px;}
.ls1_c00069{letter-spacing:26.040600px;}
.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;}
._0_c00069{width:21.698998px;}
.fc0_c00069{color:transparent;}
.fs2_c00069{font-size:52.500000px;}
.fs5_c00069{font-size:60.000000px;}
.fs1_c00069{font-size:61.500000px;}
.fs3_c00069{font-size:66.000000px;}
.fs0_c00069{font-size:69.000000px;}
.fs4_c00069{font-size:71.250000px;}
.fs6_c00069{font-size:75.000000px;}
.fs9_c00069{font-size:111.000000px;}
.fsa_c00069{font-size:131.250000px;}
.fs8_c00069{font-size:293.250000px;}
.fs7_c00069{font-size:430.500000px;}
.y0_c00069{bottom:0.000000px;}
.y7_c00069{bottom:414.001050px;}
.y6_c00069{bottom:462.959970px;}
.y2_c00069{bottom:556.560285px;}
.y5_c00069{bottom:779.760135px;}
.y4_c00069{bottom:792.001005px;}
.y3_c00069{bottom:885.960570px;}
.y1_c00069{bottom:1167.479640px;}
.h3_c00069{height:51.884766px;}
.h6_c00069{height:62.578125px;}
.h2_c00069{height:64.142578px;}
.h4_c00069{height:66.515625px;}
.h1_c00069{height:68.191406px;}
.h5_c00069{height:70.415039px;}
.h7_c00069{height:74.121094px;}
.ha_c00069{height:115.769531px;}
.hb_c00069{height:128.750610px;}
.h9_c00069{height:305.850586px;}
.h8_c00069{height:422.302002px;}
.h0_c00069{height:1263.000000px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:203.399850px;}
.x6_c00069{left:209.159385px;}
.x2_c00069{left:244.079385px;}
.x3_c00069{left:267.478635px;}
.x4_c00069{left:325.799535px;}
.xb_c00069{left:331.199850px;}
.xe_c00069{left:338.038950px;}
.x5_c00069{left:389.519070px;}
.xc_c00069{left:459.000000px;}
.xf_c00069{left:471.598530px;}
.xd_c00069{left:482.399235px;}
.x9_c00069{left:639.719100px;}
.x7_c00069{left:651.599070px;}
.x8_c00069{left:657.358605px;}
.xa_c00069{left:658.439670px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.lsa_c00069{letter-spacing:-156.855067pt;}
.lsb_c00069{letter-spacing:-35.398533pt;}
.ls5_c00069{letter-spacing:-17.594000pt;}
.ls2_c00069{letter-spacing:-3.962787pt;}
.ls3_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:1.865600pt;}
.ls4_c00069{letter-spacing:2.793120pt;}
.ls7_c00069{letter-spacing:4.203867pt;}
.ls8_c00069{letter-spacing:6.060000pt;}
.ls9_c00069{letter-spacing:10.666667pt;}
.ls6_c00069{letter-spacing:13.333333pt;}
.ls1_c00069{letter-spacing:23.147200pt;}
.ws0_c00069{word-spacing:0.000000pt;}
._0_c00069{width:19.287998pt;}
.fs2_c00069{font-size:46.666667pt;}
.fs5_c00069{font-size:53.333333pt;}
.fs1_c00069{font-size:54.666667pt;}
.fs3_c00069{font-size:58.666667pt;}
.fs0_c00069{font-size:61.333333pt;}
.fs4_c00069{font-size:63.333333pt;}
.fs6_c00069{font-size:66.666667pt;}
.fs9_c00069{font-size:98.666667pt;}
.fsa_c00069{font-size:116.666667pt;}
.fs8_c00069{font-size:260.666667pt;}
.fs7_c00069{font-size:382.666667pt;}
.y0_c00069{bottom:0.000000pt;}
.y7_c00069{bottom:368.000933pt;}
.y6_c00069{bottom:411.519973pt;}
.y2_c00069{bottom:494.720253pt;}
.y5_c00069{bottom:693.120120pt;}
.y4_c00069{bottom:704.000893pt;}
.y3_c00069{bottom:787.520507pt;}
.y1_c00069{bottom:1037.759680pt;}
.h3_c00069{height:46.119792pt;}
.h6_c00069{height:55.625000pt;}
.h2_c00069{height:57.015625pt;}
.h4_c00069{height:59.125000pt;}
.h1_c00069{height:60.614583pt;}
.h5_c00069{height:62.591146pt;}
.h7_c00069{height:65.885417pt;}
.ha_c00069{height:102.906250pt;}
.hb_c00069{height:114.444987pt;}
.h9_c00069{height:271.867188pt;}
.h8_c00069{height:375.379557pt;}
.h0_c00069{height:1122.666667pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:180.799867pt;}
.x6_c00069{left:185.919453pt;}
.x2_c00069{left:216.959453pt;}
.x3_c00069{left:237.758787pt;}
.x4_c00069{left:289.599587pt;}
.xb_c00069{left:294.399867pt;}
.xe_c00069{left:300.479067pt;}
.x5_c00069{left:346.239173pt;}
.xc_c00069{left:408.000000pt;}
.xf_c00069{left:419.198693pt;}
.xd_c00069{left:428.799320pt;}
.x9_c00069{left:568.639200pt;}
.x7_c00069{left:579.199173pt;}
.x8_c00069{left:584.318760pt;}
.xa_c00069{left:585.279707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c6696f4c7e8663183e31fa4.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_b072f16a68c61bdbe9313f90.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_7d047747c25b54c8ffa4f4a3.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_f340cb891ff1d7562e1187f2.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_51410eb800e4f70fae920cea.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00070;src:url('chunks/assets/font_8610a126c781a847ad4e9d0d.woff2')format("woff");}.ff6_c00070{font-family:ff6_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:ff7_c00070;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff7_c00070{font-family:ff7_c00070;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00070{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{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_c00070{transform:matrix(0.484848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484848,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{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);}
.m9_c00070{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.578125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578125,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls1b_c00070{letter-spacing:-8.813625px;}
.ls17_c00070{letter-spacing:-7.576538px;}
.ls19_c00070{letter-spacing:-6.811875px;}
.ls14_c00070{letter-spacing:-6.055875px;}
.ls18_c00070{letter-spacing:-5.300663px;}
.ls29_c00070{letter-spacing:-4.668675px;}
.ls2a_c00070{letter-spacing:-4.543088px;}
.ls11_c00070{letter-spacing:-3.898125px;}
.ls16_c00070{letter-spacing:-3.787875px;}
.ls1c_c00070{letter-spacing:-3.715725px;}
.ls22_c00070{letter-spacing:-3.643950px;}
.ls1e_c00070{letter-spacing:-3.213375px;}
.ls15_c00070{letter-spacing:-3.031875px;}
.ls25_c00070{letter-spacing:-2.918400px;}
.ls10_c00070{letter-spacing:-2.267213px;}
.ls1a_c00070{letter-spacing:-2.224028px;}
.ls23_c00070{letter-spacing:-1.932727px;}
.ls1f_c00070{letter-spacing:-1.608375px;}
.ls13_c00070{letter-spacing:-1.512000px;}
.ls1d_c00070{letter-spacing:-1.483200px;}
.ls12_c00070{letter-spacing:-0.756000px;}
.lsf_c00070{letter-spacing:0.000000px;}
.ls5_c00070{letter-spacing:0.536250px;}
.lse_c00070{letter-spacing:1.512000px;}
.ls1_c00070{letter-spacing:1.608375px;}
.ls21_c00070{letter-spacing:1.703978px;}
.ls2_c00070{letter-spacing:2.141250px;}
.ls3_c00070{letter-spacing:2.677500px;}
.ls27_c00070{letter-spacing:2.999250px;}
.ls4_c00070{letter-spacing:3.213375px;}
.ls0_c00070{letter-spacing:3.750375px;}
.ls6_c00070{letter-spacing:4.286250px;}
.ls7_c00070{letter-spacing:5.358750px;}
.ls28_c00070{letter-spacing:7.165372px;}
.ls20_c00070{letter-spacing:8.035875px;}
.lsb_c00070{letter-spacing:8.469840px;}
.ls9_c00070{letter-spacing:9.883200px;}
.ls24_c00070{letter-spacing:10.588560px;}
.lsc_c00070{letter-spacing:11.294400px;}
.lsd_c00070{letter-spacing:12.705600px;}
.ls26_c00070{letter-spacing:14.116800px;}
.lsa_c00070{letter-spacing:14.822400px;}
.ls8_c00070{letter-spacing:16.941600px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:0.000000px;}
._16_c00070{margin-left:-20.883661px;}
._f_c00070{margin-left:-18.341360px;}
._1e_c00070{margin-left:-14.459651px;}
._1d_c00070{margin-left:-7.532801px;}
._19_c00070{margin-left:-6.066383px;}
._17_c00070{margin-left:-4.362419px;}
._e_c00070{margin-left:-2.583424px;}
._11_c00070{margin-left:-1.282474px;}
._1a_c00070{width:1.257851px;}
._d_c00070{width:2.550652px;}
._10_c00070{width:3.819436px;}
._1_c00070{width:5.434962px;}
._13_c00070{width:6.911039px;}
._2_c00070{width:8.558550px;}
._12_c00070{width:9.686492px;}
._0_c00070{width:11.574372px;}
._3_c00070{width:12.782761px;}
._15_c00070{width:15.107379px;}
._4_c00070{width:16.116490px;}
._14_c00070{width:20.671585px;}
._a_c00070{width:22.022377px;}
._8_c00070{width:23.672250px;}
._5_c00070{width:25.548620px;}
._c_c00070{width:26.720299px;}
._9_c00070{width:28.298570px;}
._6_c00070{width:29.751568px;}
._18_c00070{width:32.437256px;}
._b_c00070{width:34.406481px;}
._1b_c00070{width:36.514921px;}
._1c_c00070{width:37.896741px;}
._7_c00070{width:38.973496px;}
.fc0_c00070{color:transparent;}
.fsa_c00070{font-size:22.500000px;}
.fs7_c00070{font-size:24.000000px;}
.fs9_c00070{font-size:24.750000px;}
.fs8_c00070{font-size:25.500000px;}
.fs5_c00070{font-size:37.500000px;}
.fs6_c00070{font-size:50.250000px;}
.fs4_c00070{font-size:71.250000px;}
.fsc_c00070{font-size:75.750000px;}
.fs2_c00070{font-size:76.500000px;}
.fs3_c00070{font-size:77.250000px;}
.fs0_c00070{font-size:78.750000px;}
.fs1_c00070{font-size:80.250000px;}
.fsb_c00070{font-size:82.500000px;}
.fsd_c00070{font-size:84.750000px;}
.fse_c00070{font-size:101.250000px;}
.y0_c00070{bottom:0.000000px;}
.y22_c00070{bottom:180.360900px;}
.y21_c00070{bottom:209.880435px;}
.y1f_c00070{bottom:239.759085px;}
.y20_c00070{bottom:239.760150px;}
.y1e_c00070{bottom:268.918125px;}
.y1d_c00070{bottom:328.319190px;}
.y1c_c00070{bottom:358.559100px;}
.y1b_c00070{bottom:358.559325px;}
.y1a_c00070{bottom:388.799235px;}
.y19_c00070{bottom:418.318770px;}
.y18_c00070{bottom:418.320000px;}
.y17_c00070{bottom:447.841350px;}
.y16_c00070{bottom:478.439640px;}
.y15_c00070{bottom:537.840705px;}
.y14_c00070{bottom:597.600150px;}
.y13_c00070{bottom:627.119685px;}
.y11_c00070{bottom:656.999310px;}
.y12_c00070{bottom:656.999400px;}
.y10_c00070{bottom:687.239220px;}
.yf_c00070{bottom:687.240255px;}
.ye_c00070{bottom:717.119985px;}
.yd_c00070{bottom:747.359850px;}
.yc_c00070{bottom:752.039985px;}
.yb_c00070{bottom:807.119385px;}
.ya_c00070{bottom:867.239865px;}
.y9_c00070{bottom:927.358860px;}
.y8_c00070{bottom:956.520015px;}
.y7_c00070{bottom:986.759925px;}
.y6_c00070{bottom:1016.639655px;}
.y5_c00070{bottom:1046.518620px;}
.y4_c00070{bottom:1046.519505px;}
.y3_c00070{bottom:1076.399235px;}
.y2_c00070{bottom:1076.400075px;}
.y1_c00070{bottom:1136.519715px;}
.hc_c00070{height:23.466797px;}
.hd_c00070{height:24.459961px;}
.h9_c00070{height:25.031250px;}
.hb_c00070{height:25.813477px;}
.ha_c00070{height:26.595703px;}
.h7_c00070{height:39.111328px;}
.h8_c00070{height:52.409180px;}
.h6_c00070{height:74.311523px;}
.hf_c00070{height:74.344482px;}
.h4_c00070{height:77.097656px;}
.h1_c00070{height:77.288818px;}
.h5_c00070{height:77.853516px;}
.h3_c00070{height:78.760986px;}
.h2_c00070{height:79.365234px;}
.he_c00070{height:80.928955px;}
.h10_c00070{height:83.177490px;}
.h11_c00070{height:105.600586px;}
.h0_c00070{height:1263.000000px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:141.118815px;}
.x17_c00070{left:142.558890px;}
.x2_c00070{left:165.958350px;}
.x5_c00070{left:191.878950px;}
.x1b_c00070{left:201.959400px;}
.x1c_c00070{left:206.998950px;}
.x1a_c00070{left:212.758500px;}
.x3_c00070{left:227.519100px;}
.x1d_c00070{left:258.838515px;}
.x1e_c00070{left:264.238785px;}
.x6_c00070{left:310.679700px;}
.xc_c00070{left:330.118785px;}
.x7_c00070{left:334.439685px;}
.xd_c00070{left:352.799535px;}
.xe_c00070{left:386.999400px;}
.x18_c00070{left:473.399820px;}
.x13_c00070{left:479.518620px;}
.x11_c00070{left:482.758530px;}
.x12_c00070{left:496.078770px;}
.x14_c00070{left:531.719100px;}
.x8_c00070{left:536.039985px;}
.x9_c00070{left:560.159415px;}
.xa_c00070{left:563.758530px;}
.x19_c00070{left:579.598530px;}
.xb_c00070{left:588.958920px;}
.x15_c00070{left:619.198785px;}
.x16_c00070{left:635.038920px;}
.xf_c00070{left:731.519670px;}
.x10_c00070{left:766.078770px;}
.x4_c00070{left:773.639655px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls1b_c00070{letter-spacing:-7.834333pt;}
.ls17_c00070{letter-spacing:-6.734700pt;}
.ls19_c00070{letter-spacing:-6.055000pt;}
.ls14_c00070{letter-spacing:-5.383000pt;}
.ls18_c00070{letter-spacing:-4.711700pt;}
.ls29_c00070{letter-spacing:-4.149933pt;}
.ls2a_c00070{letter-spacing:-4.038300pt;}
.ls11_c00070{letter-spacing:-3.465000pt;}
.ls16_c00070{letter-spacing:-3.367000pt;}
.ls1c_c00070{letter-spacing:-3.302867pt;}
.ls22_c00070{letter-spacing:-3.239067pt;}
.ls1e_c00070{letter-spacing:-2.856333pt;}
.ls15_c00070{letter-spacing:-2.695000pt;}
.ls25_c00070{letter-spacing:-2.594133pt;}
.ls10_c00070{letter-spacing:-2.015300pt;}
.ls1a_c00070{letter-spacing:-1.976913pt;}
.ls23_c00070{letter-spacing:-1.717980pt;}
.ls1f_c00070{letter-spacing:-1.429667pt;}
.ls13_c00070{letter-spacing:-1.344000pt;}
.ls1d_c00070{letter-spacing:-1.318400pt;}
.ls12_c00070{letter-spacing:-0.672000pt;}
.lsf_c00070{letter-spacing:0.000000pt;}
.ls5_c00070{letter-spacing:0.476667pt;}
.lse_c00070{letter-spacing:1.344000pt;}
.ls1_c00070{letter-spacing:1.429667pt;}
.ls21_c00070{letter-spacing:1.514647pt;}
.ls2_c00070{letter-spacing:1.903333pt;}
.ls3_c00070{letter-spacing:2.380000pt;}
.ls27_c00070{letter-spacing:2.666000pt;}
.ls4_c00070{letter-spacing:2.856333pt;}
.ls0_c00070{letter-spacing:3.333667pt;}
.ls6_c00070{letter-spacing:3.810000pt;}
.ls7_c00070{letter-spacing:4.763333pt;}
.ls28_c00070{letter-spacing:6.369220pt;}
.ls20_c00070{letter-spacing:7.143000pt;}
.lsb_c00070{letter-spacing:7.528747pt;}
.ls9_c00070{letter-spacing:8.785067pt;}
.ls24_c00070{letter-spacing:9.412053pt;}
.lsc_c00070{letter-spacing:10.039467pt;}
.lsd_c00070{letter-spacing:11.293867pt;}
.ls26_c00070{letter-spacing:12.548267pt;}
.lsa_c00070{letter-spacing:13.175467pt;}
.ls8_c00070{letter-spacing:15.059200pt;}
.ws0_c00070{word-spacing:0.000000pt;}
._16_c00070{margin-left:-18.563255pt;}
._f_c00070{margin-left:-16.303431pt;}
._1e_c00070{margin-left:-12.853023pt;}
._1d_c00070{margin-left:-6.695823pt;}
._19_c00070{margin-left:-5.392341pt;}
._17_c00070{margin-left:-3.877705pt;}
._e_c00070{margin-left:-2.296377pt;}
._11_c00070{margin-left:-1.139977pt;}
._1a_c00070{width:1.118090pt;}
._d_c00070{width:2.267246pt;}
._10_c00070{width:3.395054pt;}
._1_c00070{width:4.831077pt;}
._13_c00070{width:6.143146pt;}
._2_c00070{width:7.607600pt;}
._12_c00070{width:8.610215pt;}
._0_c00070{width:10.288331pt;}
._3_c00070{width:11.362454pt;}
._15_c00070{width:13.428781pt;}
._4_c00070{width:14.325769pt;}
._14_c00070{width:18.374742pt;}
._a_c00070{width:19.575446pt;}
._8_c00070{width:21.042000pt;}
._5_c00070{width:22.709885pt;}
._c_c00070{width:23.751377pt;}
._9_c00070{width:25.154285pt;}
._6_c00070{width:26.445838pt;}
._18_c00070{width:28.833117pt;}
._b_c00070{width:30.583538pt;}
._1b_c00070{width:32.457708pt;}
._1c_c00070{width:33.685992pt;}
._7_c00070{width:34.643108pt;}
.fsa_c00070{font-size:20.000000pt;}
.fs7_c00070{font-size:21.333333pt;}
.fs9_c00070{font-size:22.000000pt;}
.fs8_c00070{font-size:22.666667pt;}
.fs5_c00070{font-size:33.333333pt;}
.fs6_c00070{font-size:44.666667pt;}
.fs4_c00070{font-size:63.333333pt;}
.fsc_c00070{font-size:67.333333pt;}
.fs2_c00070{font-size:68.000000pt;}
.fs3_c00070{font-size:68.666667pt;}
.fs0_c00070{font-size:70.000000pt;}
.fs1_c00070{font-size:71.333333pt;}
.fsb_c00070{font-size:73.333333pt;}
.fsd_c00070{font-size:75.333333pt;}
.fse_c00070{font-size:90.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y22_c00070{bottom:160.320800pt;}
.y21_c00070{bottom:186.560387pt;}
.y1f_c00070{bottom:213.119187pt;}
.y20_c00070{bottom:213.120133pt;}
.y1e_c00070{bottom:239.038333pt;}
.y1d_c00070{bottom:291.839280pt;}
.y1c_c00070{bottom:318.719200pt;}
.y1b_c00070{bottom:318.719400pt;}
.y1a_c00070{bottom:345.599320pt;}
.y19_c00070{bottom:371.838907pt;}
.y18_c00070{bottom:371.840000pt;}
.y17_c00070{bottom:398.081200pt;}
.y16_c00070{bottom:425.279680pt;}
.y15_c00070{bottom:478.080627pt;}
.y14_c00070{bottom:531.200133pt;}
.y13_c00070{bottom:557.439720pt;}
.y11_c00070{bottom:583.999387pt;}
.y12_c00070{bottom:583.999467pt;}
.y10_c00070{bottom:610.879307pt;}
.yf_c00070{bottom:610.880227pt;}
.ye_c00070{bottom:637.439987pt;}
.yd_c00070{bottom:664.319867pt;}
.yc_c00070{bottom:668.479987pt;}
.yb_c00070{bottom:717.439453pt;}
.ya_c00070{bottom:770.879880pt;}
.y9_c00070{bottom:824.318987pt;}
.y8_c00070{bottom:850.240013pt;}
.y7_c00070{bottom:877.119933pt;}
.y6_c00070{bottom:903.679693pt;}
.y5_c00070{bottom:930.238773pt;}
.y4_c00070{bottom:930.239560pt;}
.y3_c00070{bottom:956.799320pt;}
.y2_c00070{bottom:956.800067pt;}
.y1_c00070{bottom:1010.239747pt;}
.hc_c00070{height:20.859375pt;}
.hd_c00070{height:21.742187pt;}
.h9_c00070{height:22.250000pt;}
.hb_c00070{height:22.945312pt;}
.ha_c00070{height:23.640625pt;}
.h7_c00070{height:34.765625pt;}
.h8_c00070{height:46.585938pt;}
.h6_c00070{height:66.054688pt;}
.hf_c00070{height:66.083984pt;}
.h4_c00070{height:68.531250pt;}
.h1_c00070{height:68.701172pt;}
.h5_c00070{height:69.203125pt;}
.h3_c00070{height:70.009766pt;}
.h2_c00070{height:70.546875pt;}
.he_c00070{height:71.936849pt;}
.h10_c00070{height:73.935547pt;}
.h11_c00070{height:93.867188pt;}
.h0_c00070{height:1122.666667pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:125.438947pt;}
.x17_c00070{left:126.719013pt;}
.x2_c00070{left:147.518533pt;}
.x5_c00070{left:170.559067pt;}
.x1b_c00070{left:179.519467pt;}
.x1c_c00070{left:183.999067pt;}
.x1a_c00070{left:189.118667pt;}
.x3_c00070{left:202.239200pt;}
.x1d_c00070{left:230.078680pt;}
.x1e_c00070{left:234.878920pt;}
.x6_c00070{left:276.159733pt;}
.xc_c00070{left:293.438920pt;}
.x7_c00070{left:297.279720pt;}
.xd_c00070{left:313.599587pt;}
.xe_c00070{left:343.999467pt;}
.x18_c00070{left:420.799840pt;}
.x13_c00070{left:426.238773pt;}
.x11_c00070{left:429.118693pt;}
.x12_c00070{left:440.958907pt;}
.x14_c00070{left:472.639200pt;}
.x8_c00070{left:476.479987pt;}
.x9_c00070{left:497.919480pt;}
.xa_c00070{left:501.118693pt;}
.x19_c00070{left:515.198693pt;}
.xb_c00070{left:523.519040pt;}
.x15_c00070{left:550.398920pt;}
.x16_c00070{left:564.479040pt;}
.xf_c00070{left:650.239707pt;}
.x10_c00070{left:680.958907pt;}
.x4_c00070{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7253ad783c3917ecc118595d.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_244ae3fcc555bc0641037d91.woff2')format("woff");}.ff2_c00071{font-family:ff2_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:ff3_c00071;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.364746;font-style:normal;font-weight:normal;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_9623c0d5b149ffe0aebd6c5d.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.364746;font-style:normal;font-weight:normal;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_aab8cfe4adb36242deae12cb.woff2')format("woff");}.ff5_c00071{font-family:ff5_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:ff6_c00071;src:url('chunks/assets/font_7f12d37b67a455a2625e4a94.woff2')format("woff");}.ff6_c00071{font-family:ff6_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;}
.m11_c00071{transform:matrix(0.168224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168224,0.000000,0.000000,0.250000,0,0);}
.m13_c00071{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.me_c00071{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.md_c00071{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls13_c00071{letter-spacing:-29.535000px;}
.ls1a_c00071{letter-spacing:-20.062500px;}
.ls11_c00071{letter-spacing:-18.224250px;}
.ls1b_c00071{letter-spacing:-13.149045px;}
.ls17_c00071{letter-spacing:-10.644750px;}
.lsc_c00071{letter-spacing:-7.576538px;}
.ls1c_c00071{letter-spacing:-6.811875px;}
.ls16_c00071{letter-spacing:-6.263588px;}
.ls9_c00071{letter-spacing:-5.300663px;}
.lsf_c00071{letter-spacing:-5.247533px;}
.ls15_c00071{letter-spacing:-4.720800px;}
.ls10_c00071{letter-spacing:-4.543088px;}
.ls14_c00071{letter-spacing:-4.153680px;}
.lsb_c00071{letter-spacing:-3.787875px;}
.ls5_c00071{letter-spacing:-3.031875px;}
.ls8_c00071{letter-spacing:-3.028950px;}
.lse_c00071{letter-spacing:-2.997000px;}
.lsd_c00071{letter-spacing:-2.969250px;}
.ls4_c00071{letter-spacing:-2.267213px;}
.ls1_c00071{letter-spacing:-1.512000px;}
.ls2_c00071{letter-spacing:-0.863550px;}
.ls3_c00071{letter-spacing:-0.756000px;}
.ls7_c00071{letter-spacing:-0.740250px;}
.lsa_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.756000px;}
.ls6_c00071{letter-spacing:0.794475px;}
.ls18_c00071{letter-spacing:1.396605px;}
.ls19_c00071{letter-spacing:4.456553px;}
.ls12_c00071{letter-spacing:6.558750px;}
.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;}
._4_c00071{margin-left:-18.001826px;}
._6_c00071{margin-left:-11.726238px;}
._11_c00071{margin-left:-8.051582px;}
._15_c00071{margin-left:-6.992818px;}
._14_c00071{margin-left:-5.596217px;}
._0_c00071{margin-left:-2.578214px;}
._3_c00071{margin-left:-1.244250px;}
._f_c00071{width:1.756428px;}
._1_c00071{width:2.775089px;}
._13_c00071{width:3.917388px;}
._7_c00071{width:5.618691px;}
._2_c00071{width:7.914920px;}
._e_c00071{width:9.994284px;}
._5_c00071{width:11.292811px;}
._10_c00071{width:12.510104px;}
._9_c00071{width:14.372057px;}
._d_c00071{width:15.402773px;}
._c_c00071{width:16.461961px;}
._b_c00071{width:18.871105px;}
._8_c00071{width:20.360934px;}
._a_c00071{width:22.520864px;}
._12_c00071{width:23.950540px;}
._19_c00071{width:36.217973px;}
._16_c00071{width:39.839019px;}
._17_c00071{width:42.209212px;}
._18_c00071{width:44.340490px;}
.fc0_c00071{color:transparent;}
.fs9_c00071{font-size:69.000000px;}
.fsb_c00071{font-size:70.500000px;}
.fsa_c00071{font-size:71.250000px;}
.fs7_c00071{font-size:72.000000px;}
.fsc_c00071{font-size:77.250000px;}
.fs0_c00071{font-size:78.750000px;}
.fs3_c00071{font-size:79.500000px;}
.fs2_c00071{font-size:80.250000px;}
.fs4_c00071{font-size:81.000000px;}
.fs5_c00071{font-size:81.750000px;}
.fs6_c00071{font-size:82.500000px;}
.fs8_c00071{font-size:84.000000px;}
.fs1_c00071{font-size:85.500000px;}
.y0_c00071{bottom:0.000000px;}
.y16_c00071{bottom:513.000300px;}
.y15_c00071{bottom:542.880015px;}
.y14_c00071{bottom:572.759745px;}
.y13_c00071{bottom:602.639460px;}
.y12_c00071{bottom:631.798515px;}
.y11_c00071{bottom:690.839385px;}
.y10_c00071{bottom:720.719100px;}
.yf_c00071{bottom:751.319820px;}
.ye_c00071{bottom:780.839535px;}
.yc_c00071{bottom:810.719490px;}
.yd_c00071{bottom:810.720150px;}
.yb_c00071{bottom:840.599220px;}
.ya_c00071{bottom:870.118740px;}
.y9_c00071{bottom:870.118770px;}
.y8_c00071{bottom:900.358680px;}
.y7_c00071{bottom:929.880015px;}
.y5_c00071{bottom:960.119520px;}
.y6_c00071{bottom:960.119940px;}
.y4_c00071{bottom:1019.878965px;}
.y3_c00071{bottom:1049.040120px;}
.y2_c00071{bottom:1108.799565px;}
.y1_c00071{bottom:1138.680090px;}
.hc_c00071{height:71.964844px;}
.he_c00071{height:73.529297px;}
.hd_c00071{height:74.311523px;}
.ha_c00071{height:75.093750px;}
.hf_c00071{height:75.816650px;}
.h1_c00071{height:77.288818px;}
.h4_c00071{height:78.024902px;}
.h5_c00071{height:78.760986px;}
.h10_c00071{height:79.309570px;}
.h6_c00071{height:79.497070px;}
.h9_c00071{height:80.121094px;}
.h7_c00071{height:80.233154px;}
.h3_c00071{height:80.876953px;}
.h8_c00071{height:81.533203px;}
.hb_c00071{height:83.015625px;}
.h2_c00071{height:83.913574px;}
.h11_c00071{height:84.498047px;}
.h0_c00071{height:1263.000000px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.x7_c00071{left:137.160555px;}
.x1_c00071{left:138.239850px;}
.x5_c00071{left:210.599700px;}
.x10_c00071{left:219.239850px;}
.x8_c00071{left:249.838950px;}
.x6_c00071{left:278.638500px;}
.x19_c00071{left:280.439685px;}
.x1a_c00071{left:299.878950px;}
.x2_c00071{left:302.398635px;}
.x3_c00071{left:339.120000px;}
.x11_c00071{left:347.040000px;}
.x12_c00071{left:370.080000px;}
.x9_c00071{left:443.519070px;}
.x13_c00071{left:447.838530px;}
.xa_c00071{left:492.118785px;}
.x14_c00071{left:513.718500px;}
.x15_c00071{left:531.359850px;}
.xb_c00071{left:568.799520px;}
.xc_c00071{left:608.759085px;}
.x16_c00071{left:626.398635px;}
.x17_c00071{left:671.039985px;}
.x18_c00071{left:691.199385px;}
.xd_c00071{left:711.358605px;}
.x4_c00071{left:715.318770px;}
.xe_c00071{left:732.958335px;}
.xf_c00071{left:764.279250px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls13_c00071{letter-spacing:-26.253333pt;}
.ls1a_c00071{letter-spacing:-17.833333pt;}
.ls11_c00071{letter-spacing:-16.199333pt;}
.ls1b_c00071{letter-spacing:-11.688040pt;}
.ls17_c00071{letter-spacing:-9.462000pt;}
.lsc_c00071{letter-spacing:-6.734700pt;}
.ls1c_c00071{letter-spacing:-6.055000pt;}
.ls16_c00071{letter-spacing:-5.567633pt;}
.ls9_c00071{letter-spacing:-4.711700pt;}
.lsf_c00071{letter-spacing:-4.664473pt;}
.ls15_c00071{letter-spacing:-4.196267pt;}
.ls10_c00071{letter-spacing:-4.038300pt;}
.ls14_c00071{letter-spacing:-3.692160pt;}
.lsb_c00071{letter-spacing:-3.367000pt;}
.ls5_c00071{letter-spacing:-2.695000pt;}
.ls8_c00071{letter-spacing:-2.692400pt;}
.lse_c00071{letter-spacing:-2.664000pt;}
.lsd_c00071{letter-spacing:-2.639333pt;}
.ls4_c00071{letter-spacing:-2.015300pt;}
.ls1_c00071{letter-spacing:-1.344000pt;}
.ls2_c00071{letter-spacing:-0.767600pt;}
.ls3_c00071{letter-spacing:-0.672000pt;}
.ls7_c00071{letter-spacing:-0.658000pt;}
.lsa_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.672000pt;}
.ls6_c00071{letter-spacing:0.706200pt;}
.ls18_c00071{letter-spacing:1.241427pt;}
.ls19_c00071{letter-spacing:3.961380pt;}
.ls12_c00071{letter-spacing:5.830000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
._4_c00071{margin-left:-16.001623pt;}
._6_c00071{margin-left:-10.423323pt;}
._11_c00071{margin-left:-7.156962pt;}
._15_c00071{margin-left:-6.215838pt;}
._14_c00071{margin-left:-4.974415pt;}
._0_c00071{margin-left:-2.291746pt;}
._3_c00071{margin-left:-1.106000pt;}
._f_c00071{width:1.561269pt;}
._1_c00071{width:2.466746pt;}
._13_c00071{width:3.482123pt;}
._7_c00071{width:4.994392pt;}
._2_c00071{width:7.035485pt;}
._e_c00071{width:8.883808pt;}
._5_c00071{width:10.038054pt;}
._10_c00071{width:11.120092pt;}
._9_c00071{width:12.775162pt;}
._d_c00071{width:13.691354pt;}
._c_c00071{width:14.632854pt;}
._b_c00071{width:16.774315pt;}
._8_c00071{width:18.098608pt;}
._a_c00071{width:20.018546pt;}
._12_c00071{width:21.289369pt;}
._19_c00071{width:32.193754pt;}
._16_c00071{width:35.412462pt;}
._17_c00071{width:37.519300pt;}
._18_c00071{width:39.413769pt;}
.fs9_c00071{font-size:61.333333pt;}
.fsb_c00071{font-size:62.666667pt;}
.fsa_c00071{font-size:63.333333pt;}
.fs7_c00071{font-size:64.000000pt;}
.fsc_c00071{font-size:68.666667pt;}
.fs0_c00071{font-size:70.000000pt;}
.fs3_c00071{font-size:70.666667pt;}
.fs2_c00071{font-size:71.333333pt;}
.fs4_c00071{font-size:72.000000pt;}
.fs5_c00071{font-size:72.666667pt;}
.fs6_c00071{font-size:73.333333pt;}
.fs8_c00071{font-size:74.666667pt;}
.fs1_c00071{font-size:76.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y16_c00071{bottom:456.000267pt;}
.y15_c00071{bottom:482.560013pt;}
.y14_c00071{bottom:509.119773pt;}
.y13_c00071{bottom:535.679520pt;}
.y12_c00071{bottom:561.598680pt;}
.y11_c00071{bottom:614.079453pt;}
.y10_c00071{bottom:640.639200pt;}
.yf_c00071{bottom:667.839840pt;}
.ye_c00071{bottom:694.079587pt;}
.yc_c00071{bottom:720.639547pt;}
.yd_c00071{bottom:720.640133pt;}
.yb_c00071{bottom:747.199307pt;}
.ya_c00071{bottom:773.438880pt;}
.y9_c00071{bottom:773.438907pt;}
.y8_c00071{bottom:800.318827pt;}
.y7_c00071{bottom:826.560013pt;}
.y5_c00071{bottom:853.439573pt;}
.y6_c00071{bottom:853.439947pt;}
.y4_c00071{bottom:906.559080pt;}
.y3_c00071{bottom:932.480107pt;}
.y2_c00071{bottom:985.599613pt;}
.y1_c00071{bottom:1012.160080pt;}
.hc_c00071{height:63.968750pt;}
.he_c00071{height:65.359375pt;}
.hd_c00071{height:66.054688pt;}
.ha_c00071{height:66.750000pt;}
.hf_c00071{height:67.392578pt;}
.h1_c00071{height:68.701172pt;}
.h4_c00071{height:69.355469pt;}
.h5_c00071{height:70.009766pt;}
.h10_c00071{height:70.497396pt;}
.h6_c00071{height:70.664062pt;}
.h9_c00071{height:71.218750pt;}
.h7_c00071{height:71.318359pt;}
.h3_c00071{height:71.890625pt;}
.h8_c00071{height:72.473958pt;}
.hb_c00071{height:73.791667pt;}
.h2_c00071{height:74.589844pt;}
.h11_c00071{height:75.109375pt;}
.h0_c00071{height:1122.666667pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.x7_c00071{left:121.920493pt;}
.x1_c00071{left:122.879867pt;}
.x5_c00071{left:187.199733pt;}
.x10_c00071{left:194.879867pt;}
.x8_c00071{left:222.079067pt;}
.x6_c00071{left:247.678667pt;}
.x19_c00071{left:249.279720pt;}
.x1a_c00071{left:266.559067pt;}
.x2_c00071{left:268.798787pt;}
.x3_c00071{left:301.440000pt;}
.x11_c00071{left:308.480000pt;}
.x12_c00071{left:328.960000pt;}
.x9_c00071{left:394.239173pt;}
.x13_c00071{left:398.078693pt;}
.xa_c00071{left:437.438920pt;}
.x14_c00071{left:456.638667pt;}
.x15_c00071{left:472.319867pt;}
.xb_c00071{left:505.599573pt;}
.xc_c00071{left:541.119187pt;}
.x16_c00071{left:556.798787pt;}
.x17_c00071{left:596.479987pt;}
.x18_c00071{left:614.399453pt;}
.xd_c00071{left:632.318760pt;}
.x4_c00071{left:635.838907pt;}
.xe_c00071{left:651.518520pt;}
.xf_c00071{left:679.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6ef84e866b3b88dd17203ed.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_d056d6fa57335a23a91a2e98.woff2')format("woff");}.ff2_c00072{font-family:ff2_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:ff3_c00072;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00072{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.v1_c00072{vertical-align:1.433580px;}
.v2_c00072{vertical-align:2.874300px;}
.ls9_c00072{letter-spacing:-9.654750px;}
.ls7_c00072{letter-spacing:-8.403900px;}
.ls1_c00072{letter-spacing:-3.717000px;}
.ls2_c00072{letter-spacing:-2.968875px;}
.ls6_c00072{letter-spacing:-2.914650px;}
.ls8_c00072{letter-spacing:-2.294348px;}
.ls0_c00072{letter-spacing:-2.229413px;}
.ls4_c00072{letter-spacing:-1.489163px;}
.ls5_c00072{letter-spacing:-0.740250px;}
.ls3_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;}
._1d_c00072{margin-left:-18.343431px;}
._7_c00072{width:3.947321px;}
._6_c00072{width:5.670059px;}
._1c_c00072{width:6.927533px;}
._2_c00072{width:8.646691px;}
._1_c00072{width:10.725334px;}
._1b_c00072{width:12.655199px;}
._18_c00072{width:15.753150px;}
._13_c00072{width:19.293913px;}
._19_c00072{width:20.691652px;}
._1a_c00072{width:23.058594px;}
._12_c00072{width:26.974906px;}
._17_c00072{width:29.398029px;}
._16_c00072{width:34.475502px;}
._15_c00072{width:35.744358px;}
._14_c00072{width:40.155903px;}
._3_c00072{width:127.874844px;}
._8_c00072{width:179.644441px;}
._4_c00072{width:225.853187px;}
._11_c00072{width:231.162497px;}
._e_c00072{width:368.983006px;}
._0_c00072{width:386.237042px;}
._a_c00072{width:406.657006px;}
._10_c00072{width:432.968065px;}
._b_c00072{width:458.615870px;}
._f_c00072{width:492.234572px;}
._d_c00072{width:515.930179px;}
._c_c00072{width:523.277584px;}
._9_c00072{width:524.644654px;}
._5_c00072{width:705.751475px;}
.fc0_c00072{color:transparent;}
.fs4_c00072{font-size:28.500000px;}
.fs5_c00072{font-size:76.500000px;}
.fs1_c00072{font-size:78.000000px;}
.fs0_c00072{font-size:78.750000px;}
.fs6_c00072{font-size:80.250000px;}
.fs3_c00072{font-size:81.000000px;}
.fs2_c00072{font-size:81.750000px;}
.y0_c00072{bottom:0.000000px;}
.y25_c00072{bottom:293.399640px;}
.y3e_c00072{bottom:293.403555px;}
.y2f_c00072{bottom:293.761635px;}
.y24_c00072{bottom:314.640540px;}
.y2e_c00072{bottom:314.642055px;}
.y3d_c00072{bottom:315.002835px;}
.y23_c00072{bottom:335.881455px;}
.y2d_c00072{bottom:336.241335px;}
.y3c_c00072{bottom:336.602145px;}
.y22_c00072{bottom:357.480750px;}
.y2c_c00072{bottom:357.840630px;}
.y3b_c00072{bottom:358.203225px;}
.y21_c00072{bottom:378.719565px;}
.y2b_c00072{bottom:379.081530px;}
.y3a_c00072{bottom:379.442025px;}
.y20_c00072{bottom:399.599970px;}
.y2a_c00072{bottom:399.960165px;}
.y39_c00072{bottom:400.322460px;}
.y1f_c00072{bottom:420.478590px;}
.y29_c00072{bottom:420.840570px;}
.y1e_c00072{bottom:442.077870px;}
.y28_c00072{bottom:442.439880px;}
.y38_c00072{bottom:442.802175px;}
.y1d_c00072{bottom:464.039160px;}
.y37_c00072{bottom:464.401455px;}
.y1c_c00072{bottom:485.638455px;}
.y36_c00072{bottom:486.002535px;}
.y1b_c00072{bottom:506.879355px;}
.y35_c00072{bottom:507.241350px;}
.y27_c00072{bottom:524.879775px;}
.y1a_c00072{bottom:528.478665px;}
.y34_c00072{bottom:528.842445px;}
.y19_c00072{bottom:549.719565px;}
.y33_c00072{bottom:550.081260px;}
.y18_c00072{bottom:570.959970px;}
.y32_c00072{bottom:570.961665px;}
.y17_c00072{bottom:591.839535px;}
.y31_c00072{bottom:592.200465px;}
.y26_c00072{bottom:634.318200px;}
.y16_c00072{bottom:634.318215px;}
.y30_c00072{bottom:634.682280px;}
.y3f_c00072{bottom:634.684380px;}
.y15_c00072{bottom:676.800045px;}
.y14_c00072{bottom:758.158770px;}
.y13_c00072{bottom:787.678530px;}
.y12_c00072{bottom:787.679700px;}
.y11_c00072{bottom:818.280105px;}
.yf_c00072{bottom:848.158695px;}
.y10_c00072{bottom:848.159820px;}
.ye_c00072{bottom:919.799565px;}
.yc_c00072{bottom:941.219520px;}
.yd_c00072{bottom:941.399235px;}
.ya_c00072{bottom:962.639655px;}
.yb_c00072{bottom:963.359805px;}
.y8_c00072{bottom:984.239220px;}
.y9_c00072{bottom:984.598575px;}
.y6_c00072{bottom:1005.479640px;}
.y7_c00072{bottom:1005.838905px;}
.y5_c00072{bottom:1027.079400px;}
.y3_c00072{bottom:1048.679070px;}
.y4_c00072{bottom:1049.039985px;}
.y2_c00072{bottom:1090.798020px;}
.y1_c00072{bottom:1133.279850px;}
.h6_c00072{height:29.724609px;}
.ha_c00072{height:75.080566px;}
.h2_c00072{height:76.552734px;}
.h1_c00072{height:77.288818px;}
.h9_c00072{height:78.004978px;}
.h4_c00072{height:78.722398px;}
.hb_c00072{height:78.760986px;}
.h7_c00072{height:79.365234px;}
.h8_c00072{height:80.163118px;}
.h5_c00072{height:81.632812px;}
.h3_c00072{height:82.388672px;}
.h0_c00072{height:1263.000000px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x6_c00072{left:142.920615px;}
.x1_c00072{left:205.199385px;}
.x9_c00072{left:243.718500px;}
.xa_c00072{left:261.719100px;}
.x4_c00072{left:385.199850px;}
.xc_c00072{left:545.759535px;}
.x2_c00072{left:564.478635px;}
.xd_c00072{left:584.278800px;}
.x7_c00072{left:637.199385px;}
.x5_c00072{left:651.599070px;}
.xe_c00072{left:662.763240px;}
.x8_c00072{left:671.758530px;}
.x3_c00072{left:686.159820px;}
.xb_c00072{left:768.598575px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.v1_c00072{vertical-align:1.274293pt;}
.v2_c00072{vertical-align:2.554933pt;}
.ls9_c00072{letter-spacing:-8.582000pt;}
.ls7_c00072{letter-spacing:-7.470133pt;}
.ls1_c00072{letter-spacing:-3.304000pt;}
.ls2_c00072{letter-spacing:-2.639000pt;}
.ls6_c00072{letter-spacing:-2.590800pt;}
.ls8_c00072{letter-spacing:-2.039420pt;}
.ls0_c00072{letter-spacing:-1.981700pt;}
.ls4_c00072{letter-spacing:-1.323700pt;}
.ls5_c00072{letter-spacing:-0.658000pt;}
.ls3_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
._1d_c00072{margin-left:-16.305272pt;}
._7_c00072{width:3.508730pt;}
._6_c00072{width:5.040053pt;}
._1c_c00072{width:6.157808pt;}
._2_c00072{width:7.685947pt;}
._1_c00072{width:9.533630pt;}
._1b_c00072{width:11.249066pt;}
._18_c00072{width:14.002800pt;}
._13_c00072{width:17.150145pt;}
._19_c00072{width:18.392579pt;}
._1a_c00072{width:20.496528pt;}
._12_c00072{width:23.977694pt;}
._17_c00072{width:26.131581pt;}
._16_c00072{width:30.644891pt;}
._15_c00072{width:31.772762pt;}
._14_c00072{width:35.694136pt;}
._3_c00072{width:113.666528pt;}
._8_c00072{width:159.683947pt;}
._4_c00072{width:200.758389pt;}
._11_c00072{width:205.477775pt;}
._e_c00072{width:327.984894pt;}
._0_c00072{width:343.321815pt;}
._a_c00072{width:361.472894pt;}
._10_c00072{width:384.860502pt;}
._b_c00072{width:407.658551pt;}
._f_c00072{width:437.541842pt;}
._d_c00072{width:458.604604pt;}
._c_c00072{width:465.135630pt;}
._9_c00072{width:466.350804pt;}
._5_c00072{width:627.334644pt;}
.fs4_c00072{font-size:25.333333pt;}
.fs5_c00072{font-size:68.000000pt;}
.fs1_c00072{font-size:69.333333pt;}
.fs0_c00072{font-size:70.000000pt;}
.fs6_c00072{font-size:71.333333pt;}
.fs3_c00072{font-size:72.000000pt;}
.fs2_c00072{font-size:72.666667pt;}
.y0_c00072{bottom:0.000000pt;}
.y25_c00072{bottom:260.799680pt;}
.y3e_c00072{bottom:260.803160pt;}
.y2f_c00072{bottom:261.121453pt;}
.y24_c00072{bottom:279.680480pt;}
.y2e_c00072{bottom:279.681827pt;}
.y3d_c00072{bottom:280.002520pt;}
.y23_c00072{bottom:298.561293pt;}
.y2d_c00072{bottom:298.881187pt;}
.y3c_c00072{bottom:299.201907pt;}
.y22_c00072{bottom:317.760667pt;}
.y2c_c00072{bottom:318.080560pt;}
.y3b_c00072{bottom:318.402867pt;}
.y21_c00072{bottom:336.639613pt;}
.y2b_c00072{bottom:336.961360pt;}
.y3a_c00072{bottom:337.281800pt;}
.y20_c00072{bottom:355.199973pt;}
.y2a_c00072{bottom:355.520147pt;}
.y39_c00072{bottom:355.842187pt;}
.y1f_c00072{bottom:373.758747pt;}
.y29_c00072{bottom:374.080507pt;}
.y1e_c00072{bottom:392.958107pt;}
.y28_c00072{bottom:393.279893pt;}
.y38_c00072{bottom:393.601933pt;}
.y1d_c00072{bottom:412.479253pt;}
.y37_c00072{bottom:412.801293pt;}
.y1c_c00072{bottom:431.678627pt;}
.y36_c00072{bottom:432.002253pt;}
.y1b_c00072{bottom:450.559427pt;}
.y35_c00072{bottom:450.881200pt;}
.y27_c00072{bottom:466.559800pt;}
.y1a_c00072{bottom:469.758813pt;}
.y34_c00072{bottom:470.082173pt;}
.y19_c00072{bottom:488.639613pt;}
.y33_c00072{bottom:488.961120pt;}
.y18_c00072{bottom:507.519973pt;}
.y32_c00072{bottom:507.521480pt;}
.y17_c00072{bottom:526.079587pt;}
.y31_c00072{bottom:526.400413pt;}
.y26_c00072{bottom:563.838400pt;}
.y16_c00072{bottom:563.838413pt;}
.y30_c00072{bottom:564.162027pt;}
.y3f_c00072{bottom:564.163893pt;}
.y15_c00072{bottom:601.600040pt;}
.y14_c00072{bottom:673.918907pt;}
.y13_c00072{bottom:700.158693pt;}
.y12_c00072{bottom:700.159733pt;}
.y11_c00072{bottom:727.360093pt;}
.yf_c00072{bottom:753.918840pt;}
.y10_c00072{bottom:753.919840pt;}
.ye_c00072{bottom:817.599613pt;}
.yc_c00072{bottom:836.639573pt;}
.yd_c00072{bottom:836.799320pt;}
.ya_c00072{bottom:855.679693pt;}
.yb_c00072{bottom:856.319827pt;}
.y8_c00072{bottom:874.879307pt;}
.y9_c00072{bottom:875.198733pt;}
.y6_c00072{bottom:893.759680pt;}
.y7_c00072{bottom:894.079027pt;}
.y5_c00072{bottom:912.959467pt;}
.y3_c00072{bottom:932.159173pt;}
.y4_c00072{bottom:932.479987pt;}
.y2_c00072{bottom:969.598240pt;}
.y1_c00072{bottom:1007.359867pt;}
.h6_c00072{height:26.421875pt;}
.ha_c00072{height:66.738281pt;}
.h2_c00072{height:68.046875pt;}
.h1_c00072{height:68.701172pt;}
.h9_c00072{height:69.337759pt;}
.h4_c00072{height:69.975465pt;}
.hb_c00072{height:70.009766pt;}
.h7_c00072{height:70.546875pt;}
.h8_c00072{height:71.256105pt;}
.h5_c00072{height:72.562500pt;}
.h3_c00072{height:73.234375pt;}
.h0_c00072{height:1122.666667pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x6_c00072{left:127.040547pt;}
.x1_c00072{left:182.399453pt;}
.x9_c00072{left:216.638667pt;}
.xa_c00072{left:232.639200pt;}
.x4_c00072{left:342.399867pt;}
.xc_c00072{left:485.119587pt;}
.x2_c00072{left:501.758787pt;}
.xd_c00072{left:519.358933pt;}
.x7_c00072{left:566.399453pt;}
.x5_c00072{left:579.199173pt;}
.xe_c00072{left:589.122880pt;}
.x8_c00072{left:597.118693pt;}
.x3_c00072{left:609.919840pt;}
.xb_c00072{left:683.198733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_282164253367096eaba8ab81.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_3a3d8568e3a7532809050ad8.woff2')format("woff");}.ff2_c00073{font-family:ff2_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:ff3_c00073;src:url('chunks/assets/font_845d8f84402c326c81fbf8b6.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_5354e0d357e737390e6e7746.woff2')format("woff");}.ff4_c00073{font-family:ff4_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:ff5_c00073;src:url('chunks/assets/font_9857501f679478bac2b5dc60.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.364746;font-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_c00073{transform:matrix(0.154018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154018,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m14_c00073{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m19_c00073{transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m17_c00073{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m1c_c00073{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.ma_c00073{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m1d_c00073{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00073{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m0_c00073{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00073{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.m1e_c00073{transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m1a_c00073{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m1f_c00073{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.mb_c00073{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.m20_c00073{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls12_c00073{letter-spacing:-8.234258px;}
.ls14_c00073{letter-spacing:-8.082525px;}
.ls4_c00073{letter-spacing:-5.945625px;}
.ls9_c00073{letter-spacing:-5.196713px;}
.ls18_c00073{letter-spacing:-4.547400px;}
.lsc_c00073{letter-spacing:-4.545000px;}
.lsb_c00073{letter-spacing:-4.456463px;}
.ls10_c00073{letter-spacing:-4.212000px;}
.ls6_c00073{letter-spacing:-3.717000px;}
.lse_c00073{letter-spacing:-3.148200px;}
.ls19_c00073{letter-spacing:-3.113700px;}
.ls2_c00073{letter-spacing:-2.968875px;}
.lsa_c00073{letter-spacing:-2.893950px;}
.ls3_c00073{letter-spacing:-2.229413px;}
.ls5_c00073{letter-spacing:-1.489163px;}
.ls17_c00073{letter-spacing:-1.438500px;}
.ls1c_c00073{letter-spacing:-1.430400px;}
.ls11_c00073{letter-spacing:-0.803250px;}
.ls1a_c00073{letter-spacing:-0.764400px;}
.ls1_c00073{letter-spacing:-0.740250px;}
.ls1d_c00073{letter-spacing:-0.680850px;}
.ls7_c00073{letter-spacing:0.000000px;}
.lsd_c00073{letter-spacing:0.740250px;}
.ls1b_c00073{letter-spacing:2.904660px;}
.ls15_c00073{letter-spacing:4.365000px;}
.ls8_c00073{letter-spacing:4.725000px;}
.lsf_c00073{letter-spacing:4.834800px;}
.ls0_c00073{letter-spacing:6.685875px;}
.ls16_c00073{letter-spacing:18.605520px;}
.ls13_c00073{letter-spacing:62.085240px;}
.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;}
._17_c00073{margin-left:-18.480693px;}
._f_c00073{margin-left:-15.705588px;}
._10_c00073{margin-left:-14.279232px;}
._d_c00073{margin-left:-7.275876px;}
._18_c00073{margin-left:-3.535281px;}
._0_c00073{margin-left:-2.221404px;}
._5_c00073{margin-left:-1.118859px;}
._6_c00073{width:1.122841px;}
._3_c00073{width:3.306460px;}
._4_c00073{width:4.477576px;}
._1_c00073{width:6.455747px;}
._2_c00073{width:7.873247px;}
._e_c00073{width:9.470906px;}
._19_c00073{width:10.706493px;}
._8_c00073{width:11.754047px;}
._b_c00073{width:12.870365px;}
._c_c00073{width:14.844969px;}
._9_c00073{width:16.203867px;}
._a_c00073{width:21.072252px;}
._14_c00073{width:25.582071px;}
._13_c00073{width:26.769844px;}
._7_c00073{width:28.719798px;}
._11_c00073{width:34.175360px;}
._12_c00073{width:35.975496px;}
._15_c00073{width:62.511928px;}
._16_c00073{width:73.450437px;}
.fc0_c00073{color:transparent;}
.fs13_c00073{font-size:48.000000px;}
.fs11_c00073{font-size:52.500000px;}
.fs12_c00073{font-size:66.000000px;}
.fs2_c00073{font-size:69.000000px;}
.fsf_c00073{font-size:71.250000px;}
.fs10_c00073{font-size:72.000000px;}
.fsa_c00073{font-size:72.750000px;}
.fsb_c00073{font-size:74.250000px;}
.fs6_c00073{font-size:75.750000px;}
.fs7_c00073{font-size:76.500000px;}
.fs3_c00073{font-size:77.250000px;}
.fs4_c00073{font-size:78.000000px;}
.fs0_c00073{font-size:78.750000px;}
.fs8_c00073{font-size:79.500000px;}
.fs1_c00073{font-size:80.250000px;}
.fs9_c00073{font-size:81.000000px;}
.fs5_c00073{font-size:81.750000px;}
.fsd_c00073{font-size:83.250000px;}
.fse_c00073{font-size:84.000000px;}
.fsc_c00073{font-size:101.250000px;}
.y0_c00073{bottom:0.000000px;}
.y58_c00073{bottom:287.641500px;}
.y57_c00073{bottom:317.161035px;}
.y56_c00073{bottom:347.400900px;}
.y54_c00073{bottom:377.279475px;}
.y55_c00073{bottom:377.279850px;}
.y53_c00073{bottom:437.041035px;}
.y52_c00073{bottom:467.280900px;}
.y51_c00073{bottom:467.281035px;}
.y50_c00073{bottom:496.800570px;}
.y2c_c00073{bottom:547.920225px;}
.y1a_c00073{bottom:547.920255px;}
.y3e_c00073{bottom:548.285520px;}
.y4f_c00073{bottom:548.640150px;}
.y2b_c00073{bottom:568.800660px;}
.y19_c00073{bottom:569.161170px;}
.y3d_c00073{bottom:569.164140px;}
.y4e_c00073{bottom:569.521320px;}
.y2a_c00073{bottom:590.760135px;}
.y18_c00073{bottom:590.760450px;}
.y3c_c00073{bottom:590.763435px;}
.y4d_c00073{bottom:591.121035px;}
.y17_c00073{bottom:612.001350px;}
.y29_c00073{bottom:612.361545px;}
.y28_c00073{bottom:612.364305px;}
.y3b_c00073{bottom:612.364545px;}
.y4c_c00073{bottom:612.720000px;}
.y15_c00073{bottom:632.878140px;}
.y16_c00073{bottom:632.879970px;}
.y27_c00073{bottom:633.242940px;}
.y3a_c00073{bottom:633.243135px;}
.y4b_c00073{bottom:633.961035px;}
.y14_c00073{bottom:654.119040px;}
.y26_c00073{bottom:654.121530px;}
.y39_c00073{bottom:654.121770px;}
.y4a_c00073{bottom:654.481335px;}
.y13_c00073{bottom:675.718350px;}
.y25_c00073{bottom:675.720840px;}
.y38_c00073{bottom:675.721050px;}
.y49_c00073{bottom:675.721110px;}
.y12_c00073{bottom:696.959250px;}
.y24_c00073{bottom:696.961740px;}
.y37_c00073{bottom:696.961965px;}
.y48_c00073{bottom:697.321515px;}
.y11_c00073{bottom:718.558545px;}
.y47_c00073{bottom:718.560315px;}
.y23_c00073{bottom:718.561050px;}
.y36_c00073{bottom:718.561245px;}
.y10_c00073{bottom:739.799445px;}
.y46_c00073{bottom:740.159610px;}
.y22_c00073{bottom:740.160330px;}
.y35_c00073{bottom:740.160555px;}
.yf_c00073{bottom:761.040345px;}
.y45_c00073{bottom:761.400510px;}
.y21_c00073{bottom:761.401215px;}
.y34_c00073{bottom:761.761635px;}
.y44_c00073{bottom:782.279130px;}
.ye_c00073{bottom:782.279160px;}
.y20_c00073{bottom:782.279850px;}
.y33_c00073{bottom:782.280075px;}
.yd_c00073{bottom:803.520060px;}
.y32_c00073{bottom:804.239550px;}
.y1f_c00073{bottom:804.240420px;}
.y1e_c00073{bottom:821.160285px;}
.y31_c00073{bottom:825.118170px;}
.yc_c00073{bottom:825.119355px;}
.y43_c00073{bottom:825.480840px;}
.yb_c00073{bottom:846.360255px;}
.y30_c00073{bottom:846.719265px;}
.y42_c00073{bottom:846.721155px;}
.y2f_c00073{bottom:867.958080px;}
.y41_c00073{bottom:867.959610px;}
.ya_c00073{bottom:867.960015px;}
.y2e_c00073{bottom:889.198980px;}
.y40_c00073{bottom:889.200435px;}
.y1d_c00073{bottom:889.201110px;}
.y9_c00073{bottom:889.201785px;}
.y1c_c00073{bottom:928.442115px;}
.y1b_c00073{bottom:953.640285px;}
.y8_c00073{bottom:953.640975px;}
.y2d_c00073{bottom:954.000465px;}
.y3f_c00073{bottom:954.005565px;}
.y7_c00073{bottom:995.760495px;}
.y6_c00073{bottom:1047.241305px;}
.y4_c00073{bottom:1077.120810px;}
.y5_c00073{bottom:1077.121035px;}
.y2_c00073{bottom:1106.279340px;}
.y3_c00073{bottom:1106.279850px;}
.y1_c00073{bottom:1136.521365px;}
.h18_c00073{height:47.437500px;}
.h15_c00073{height:54.755859px;}
.h17_c00073{height:66.515625px;}
.h4_c00073{height:71.964844px;}
.h13_c00073{height:74.311523px;}
.h8_c00073{height:74.344482px;}
.h10_c00073{height:75.080566px;}
.h14_c00073{height:75.093750px;}
.hc_c00073{height:75.875977px;}
.h6_c00073{height:76.552734px;}
.h9_c00073{height:77.097656px;}
.h1_c00073{height:77.288818px;}
.he_c00073{height:77.440430px;}
.h5_c00073{height:77.853516px;}
.ha_c00073{height:78.024902px;}
.h16_c00073{height:78.609375px;}
.h2_c00073{height:78.760986px;}
.h3_c00073{height:79.365234px;}
.hb_c00073{height:79.497070px;}
.h7_c00073{height:80.233154px;}
.hd_c00073{height:81.632812px;}
.h11_c00073{height:82.274414px;}
.h12_c00073{height:83.015625px;}
.hf_c00073{height:105.600586px;}
.h0_c00073{height:1263.000000px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:141.118815px;}
.x1a_c00073{left:163.799565px;}
.x1b_c00073{left:187.559685px;}
.xa_c00073{left:208.800735px;}
.x18_c00073{left:223.199850px;}
.x16_c00073{left:233.998950px;}
.x17_c00073{left:238.679100px;}
.x19_c00073{left:246.958350px;}
.x1c_c00073{left:249.838950px;}
.x4_c00073{left:260.998950px;}
.x1d_c00073{left:303.838950px;}
.xb_c00073{left:308.878350px;}
.xc_c00073{left:327.599100px;}
.x5_c00073{left:331.199850px;}
.x1e_c00073{left:335.519100px;}
.x6_c00073{left:346.319850px;}
.x1f_c00073{left:387.719565px;}
.x2_c00073{left:391.318770px;}
.x20_c00073{left:402.478635px;}
.x3_c00073{left:410.039385px;}
.xd_c00073{left:421.196235px;}
.x7_c00073{left:459.718500px;}
.x21_c00073{left:465.838950px;}
.xe_c00073{left:470.159820px;}
.xf_c00073{left:478.439250px;}
.x13_c00073{left:492.479685px;}
.x22_c00073{left:498.239220px;}
.x14_c00073{left:513.359250px;}
.x23_c00073{left:530.639700px;}
.x10_c00073{left:557.639550px;}
.x24_c00073{left:569.519670px;}
.x25_c00073{left:638.278800px;}
.x8_c00073{left:639.359850px;}
.x9_c00073{left:655.559100px;}
.x26_c00073{left:662.759085px;}
.x29_c00073{left:665.639700px;}
.x12_c00073{left:697.679025px;}
.x11_c00073{left:706.678530px;}
.x27_c00073{left:756.718545px;}
.x28_c00073{left:757.799520px;}
.x15_c00073{left:774.719055px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls12_c00073{letter-spacing:-7.319340pt;}
.ls14_c00073{letter-spacing:-7.184467pt;}
.ls4_c00073{letter-spacing:-5.285000pt;}
.ls9_c00073{letter-spacing:-4.619300pt;}
.ls18_c00073{letter-spacing:-4.042133pt;}
.lsc_c00073{letter-spacing:-4.040000pt;}
.lsb_c00073{letter-spacing:-3.961300pt;}
.ls10_c00073{letter-spacing:-3.744000pt;}
.ls6_c00073{letter-spacing:-3.304000pt;}
.lse_c00073{letter-spacing:-2.798400pt;}
.ls19_c00073{letter-spacing:-2.767733pt;}
.ls2_c00073{letter-spacing:-2.639000pt;}
.lsa_c00073{letter-spacing:-2.572400pt;}
.ls3_c00073{letter-spacing:-1.981700pt;}
.ls5_c00073{letter-spacing:-1.323700pt;}
.ls17_c00073{letter-spacing:-1.278667pt;}
.ls1c_c00073{letter-spacing:-1.271467pt;}
.ls11_c00073{letter-spacing:-0.714000pt;}
.ls1a_c00073{letter-spacing:-0.679467pt;}
.ls1_c00073{letter-spacing:-0.658000pt;}
.ls1d_c00073{letter-spacing:-0.605200pt;}
.ls7_c00073{letter-spacing:0.000000pt;}
.lsd_c00073{letter-spacing:0.658000pt;}
.ls1b_c00073{letter-spacing:2.581920pt;}
.ls15_c00073{letter-spacing:3.880000pt;}
.ls8_c00073{letter-spacing:4.200000pt;}
.lsf_c00073{letter-spacing:4.297600pt;}
.ls0_c00073{letter-spacing:5.943000pt;}
.ls16_c00073{letter-spacing:16.538240pt;}
.ls13_c00073{letter-spacing:55.186880pt;}
.ws0_c00073{word-spacing:0.000000pt;}
._17_c00073{margin-left:-16.427283pt;}
._f_c00073{margin-left:-13.960523pt;}
._10_c00073{margin-left:-12.692651pt;}
._d_c00073{margin-left:-6.467445pt;}
._18_c00073{margin-left:-3.142472pt;}
._0_c00073{margin-left:-1.974581pt;}
._5_c00073{margin-left:-0.994542pt;}
._6_c00073{width:0.998081pt;}
._3_c00073{width:2.939075pt;}
._4_c00073{width:3.980068pt;}
._1_c00073{width:5.738442pt;}
._2_c00073{width:6.998442pt;}
._e_c00073{width:8.418583pt;}
._19_c00073{width:9.516883pt;}
._8_c00073{width:10.448042pt;}
._b_c00073{width:11.440325pt;}
._c_c00073{width:13.195528pt;}
._9_c00073{width:14.403438pt;}
._a_c00073{width:18.730891pt;}
._14_c00073{width:22.739619pt;}
._13_c00073{width:23.795417pt;}
._7_c00073{width:25.528709pt;}
._11_c00073{width:30.378098pt;}
._12_c00073{width:31.978219pt;}
._15_c00073{width:55.566158pt;}
._16_c00073{width:65.289277pt;}
.fs13_c00073{font-size:42.666667pt;}
.fs11_c00073{font-size:46.666667pt;}
.fs12_c00073{font-size:58.666667pt;}
.fs2_c00073{font-size:61.333333pt;}
.fsf_c00073{font-size:63.333333pt;}
.fs10_c00073{font-size:64.000000pt;}
.fsa_c00073{font-size:64.666667pt;}
.fsb_c00073{font-size:66.000000pt;}
.fs6_c00073{font-size:67.333333pt;}
.fs7_c00073{font-size:68.000000pt;}
.fs3_c00073{font-size:68.666667pt;}
.fs4_c00073{font-size:69.333333pt;}
.fs0_c00073{font-size:70.000000pt;}
.fs8_c00073{font-size:70.666667pt;}
.fs1_c00073{font-size:71.333333pt;}
.fs9_c00073{font-size:72.000000pt;}
.fs5_c00073{font-size:72.666667pt;}
.fsd_c00073{font-size:74.000000pt;}
.fse_c00073{font-size:74.666667pt;}
.fsc_c00073{font-size:90.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y58_c00073{bottom:255.681333pt;}
.y57_c00073{bottom:281.920920pt;}
.y56_c00073{bottom:308.800800pt;}
.y54_c00073{bottom:335.359533pt;}
.y55_c00073{bottom:335.359867pt;}
.y53_c00073{bottom:388.480920pt;}
.y52_c00073{bottom:415.360800pt;}
.y51_c00073{bottom:415.360920pt;}
.y50_c00073{bottom:441.600507pt;}
.y2c_c00073{bottom:487.040200pt;}
.y1a_c00073{bottom:487.040227pt;}
.y3e_c00073{bottom:487.364907pt;}
.y4f_c00073{bottom:487.680133pt;}
.y2b_c00073{bottom:505.600587pt;}
.y19_c00073{bottom:505.921040pt;}
.y3d_c00073{bottom:505.923680pt;}
.y4e_c00073{bottom:506.241173pt;}
.y2a_c00073{bottom:525.120120pt;}
.y18_c00073{bottom:525.120400pt;}
.y3c_c00073{bottom:525.123053pt;}
.y4d_c00073{bottom:525.440920pt;}
.y17_c00073{bottom:544.001200pt;}
.y29_c00073{bottom:544.321373pt;}
.y28_c00073{bottom:544.323827pt;}
.y3b_c00073{bottom:544.324040pt;}
.y4c_c00073{bottom:544.640000pt;}
.y15_c00073{bottom:562.558347pt;}
.y16_c00073{bottom:562.559973pt;}
.y27_c00073{bottom:562.882613pt;}
.y3a_c00073{bottom:562.882787pt;}
.y4b_c00073{bottom:563.520920pt;}
.y14_c00073{bottom:581.439147pt;}
.y26_c00073{bottom:581.441360pt;}
.y39_c00073{bottom:581.441573pt;}
.y4a_c00073{bottom:581.761187pt;}
.y13_c00073{bottom:600.638533pt;}
.y25_c00073{bottom:600.640747pt;}
.y38_c00073{bottom:600.640933pt;}
.y49_c00073{bottom:600.640987pt;}
.y12_c00073{bottom:619.519333pt;}
.y24_c00073{bottom:619.521547pt;}
.y37_c00073{bottom:619.521747pt;}
.y48_c00073{bottom:619.841347pt;}
.y11_c00073{bottom:638.718707pt;}
.y47_c00073{bottom:638.720280pt;}
.y23_c00073{bottom:638.720933pt;}
.y36_c00073{bottom:638.721107pt;}
.y10_c00073{bottom:657.599507pt;}
.y46_c00073{bottom:657.919653pt;}
.y22_c00073{bottom:657.920293pt;}
.y35_c00073{bottom:657.920493pt;}
.yf_c00073{bottom:676.480307pt;}
.y45_c00073{bottom:676.800453pt;}
.y21_c00073{bottom:676.801080pt;}
.y34_c00073{bottom:677.121453pt;}
.y44_c00073{bottom:695.359227pt;}
.ye_c00073{bottom:695.359253pt;}
.y20_c00073{bottom:695.359867pt;}
.y33_c00073{bottom:695.360067pt;}
.yd_c00073{bottom:714.240053pt;}
.y32_c00073{bottom:714.879600pt;}
.y1f_c00073{bottom:714.880373pt;}
.y1e_c00073{bottom:729.920253pt;}
.y31_c00073{bottom:733.438373pt;}
.yc_c00073{bottom:733.439427pt;}
.y43_c00073{bottom:733.760747pt;}
.yb_c00073{bottom:752.320227pt;}
.y30_c00073{bottom:752.639347pt;}
.y42_c00073{bottom:752.641027pt;}
.y2f_c00073{bottom:771.518293pt;}
.y41_c00073{bottom:771.519653pt;}
.ya_c00073{bottom:771.520013pt;}
.y2e_c00073{bottom:790.399093pt;}
.y40_c00073{bottom:790.400387pt;}
.y1d_c00073{bottom:790.400987pt;}
.y9_c00073{bottom:790.401587pt;}
.y1c_c00073{bottom:825.281880pt;}
.y1b_c00073{bottom:847.680253pt;}
.y8_c00073{bottom:847.680867pt;}
.y2d_c00073{bottom:848.000413pt;}
.y3f_c00073{bottom:848.004947pt;}
.y7_c00073{bottom:885.120440pt;}
.y6_c00073{bottom:930.881160pt;}
.y4_c00073{bottom:957.440720pt;}
.y5_c00073{bottom:957.440920pt;}
.y2_c00073{bottom:983.359413pt;}
.y3_c00073{bottom:983.359867pt;}
.y1_c00073{bottom:1010.241213pt;}
.h18_c00073{height:42.166667pt;}
.h15_c00073{height:48.671875pt;}
.h17_c00073{height:59.125000pt;}
.h4_c00073{height:63.968750pt;}
.h13_c00073{height:66.054688pt;}
.h8_c00073{height:66.083984pt;}
.h10_c00073{height:66.738281pt;}
.h14_c00073{height:66.750000pt;}
.hc_c00073{height:67.445312pt;}
.h6_c00073{height:68.046875pt;}
.h9_c00073{height:68.531250pt;}
.h1_c00073{height:68.701172pt;}
.he_c00073{height:68.835938pt;}
.h5_c00073{height:69.203125pt;}
.ha_c00073{height:69.355469pt;}
.h16_c00073{height:69.875000pt;}
.h2_c00073{height:70.009766pt;}
.h3_c00073{height:70.546875pt;}
.hb_c00073{height:70.664062pt;}
.h7_c00073{height:71.318359pt;}
.hd_c00073{height:72.562500pt;}
.h11_c00073{height:73.132813pt;}
.h12_c00073{height:73.791667pt;}
.hf_c00073{height:93.867188pt;}
.h0_c00073{height:1122.666667pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:125.438947pt;}
.x1a_c00073{left:145.599613pt;}
.x1b_c00073{left:166.719720pt;}
.xa_c00073{left:185.600653pt;}
.x18_c00073{left:198.399867pt;}
.x16_c00073{left:207.999067pt;}
.x17_c00073{left:212.159200pt;}
.x19_c00073{left:219.518533pt;}
.x1c_c00073{left:222.079067pt;}
.x4_c00073{left:231.999067pt;}
.x1d_c00073{left:270.079067pt;}
.xb_c00073{left:274.558533pt;}
.xc_c00073{left:291.199200pt;}
.x5_c00073{left:294.399867pt;}
.x1e_c00073{left:298.239200pt;}
.x6_c00073{left:307.839867pt;}
.x1f_c00073{left:344.639613pt;}
.x2_c00073{left:347.838907pt;}
.x20_c00073{left:357.758787pt;}
.x3_c00073{left:364.479453pt;}
.xd_c00073{left:374.396653pt;}
.x7_c00073{left:408.638667pt;}
.x21_c00073{left:414.079067pt;}
.xe_c00073{left:417.919840pt;}
.xf_c00073{left:425.279333pt;}
.x13_c00073{left:437.759720pt;}
.x22_c00073{left:442.879307pt;}
.x14_c00073{left:456.319333pt;}
.x23_c00073{left:471.679733pt;}
.x10_c00073{left:495.679600pt;}
.x24_c00073{left:506.239707pt;}
.x25_c00073{left:567.358933pt;}
.x8_c00073{left:568.319867pt;}
.x9_c00073{left:582.719200pt;}
.x26_c00073{left:589.119187pt;}
.x29_c00073{left:591.679733pt;}
.x12_c00073{left:620.159133pt;}
.x11_c00073{left:628.158693pt;}
.x27_c00073{left:672.638707pt;}
.x28_c00073{left:673.599573pt;}
.x15_c00073{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_929be3dfc5202f7b85684d58.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_2a8423a8e433ae2eec068994.woff2')format("woff");}.ff2_c00074{font-family:ff2_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:ff3_c00074;src:url('chunks/assets/font_9f057de69cdef0ccada8853d.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_e0b2376a57337a8a4f0f3219.woff2')format("woff");}.ff4_c00074{font-family:ff4_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:ff5_c00074;src:url('chunks/assets/font_0b96962795132cfb44503599.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_d01b9493e9ac46832c7a35b0.woff2')format("woff");}.ff6_c00074{font-family:ff6_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;}
.ma_c00074{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{transform:matrix(0.172662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172662,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.me_c00074{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_c00074{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m0_c00074{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m15_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);}
.v0_c00074{vertical-align:0.000000px;}
.ls10_c00074{letter-spacing:-15.600375px;}
.ls4_c00074{letter-spacing:-11.142338px;}
.ls13_c00074{letter-spacing:-9.654750px;}
.ls11_c00074{letter-spacing:-8.175038px;}
.ls9_c00074{letter-spacing:-6.750000px;}
.lse_c00074{letter-spacing:-6.685875px;}
.lsf_c00074{letter-spacing:-6.560580px;}
.ls12_c00074{letter-spacing:-6.058800px;}
.ls7_c00074{letter-spacing:-5.945625px;}
.ls15_c00074{letter-spacing:-5.250750px;}
.ls1_c00074{letter-spacing:-5.196713px;}
.lsa_c00074{letter-spacing:-4.500000px;}
.ls5_c00074{letter-spacing:-4.456463px;}
.ls3_c00074{letter-spacing:-3.717000px;}
.ls14_c00074{letter-spacing:-3.300750px;}
.ls2_c00074{letter-spacing:-2.968875px;}
.lsc_c00074{letter-spacing:-2.827500px;}
.ls0_c00074{letter-spacing:-2.229413px;}
.ls6_c00074{letter-spacing:-1.489163px;}
.lsb_c00074{letter-spacing:-0.740250px;}
.ls8_c00074{letter-spacing:0.000000px;}
.lsd_c00074{letter-spacing:3.772440px;}
.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;}
._0_c00074{margin-left:-7.508590px;}
._19_c00074{margin-left:-6.120361px;}
._1b_c00074{margin-left:-3.221707px;}
._13_c00074{margin-left:-1.753168px;}
._d_c00074{width:1.362776px;}
._11_c00074{width:3.233386px;}
._f_c00074{width:4.806841px;}
._12_c00074{width:6.071105px;}
._e_c00074{width:7.089446px;}
._3_c00074{width:8.638310px;}
._2_c00074{width:10.733714px;}
._a_c00074{width:12.837543px;}
._10_c00074{width:14.846678px;}
._21_c00074{width:16.344607px;}
._1c_c00074{width:17.791170px;}
._1a_c00074{width:20.440499px;}
._1d_c00074{width:23.189765px;}
._1f_c00074{width:25.230876px;}
._1e_c00074{width:27.303130px;}
._20_c00074{width:28.466654px;}
._18_c00074{width:29.772879px;}
._16_c00074{width:30.952985px;}
._14_c00074{width:32.421286px;}
._17_c00074{width:33.435333px;}
._15_c00074{width:35.855142px;}
._4_c00074{width:212.034583px;}
._9_c00074{width:290.261950px;}
._c_c00074{width:315.534118px;}
._b_c00074{width:342.176952px;}
._8_c00074{width:368.518411px;}
._5_c00074{width:398.998836px;}
._1_c00074{width:480.342995px;}
._6_c00074{width:543.248911px;}
._7_c00074{width:548.494225px;}
.fc0_c00074{color:transparent;}
.fs9_c00074{font-size:34.500000px;}
.fsa_c00074{font-size:72.000000px;}
.fsc_c00074{font-size:73.500000px;}
.fs2_c00074{font-size:74.250000px;}
.fs1_c00074{font-size:75.000000px;}
.fsb_c00074{font-size:76.500000px;}
.fs8_c00074{font-size:78.000000px;}
.fs0_c00074{font-size:78.750000px;}
.fs3_c00074{font-size:79.500000px;}
.fs5_c00074{font-size:80.250000px;}
.fs4_c00074{font-size:81.750000px;}
.fs6_c00074{font-size:84.000000px;}
.fs7_c00074{font-size:87.750000px;}
.fsf_c00074{font-size:99.000000px;}
.fsd_c00074{font-size:101.250000px;}
.fse_c00074{font-size:104.250000px;}
.y0_c00074{bottom:0.000000px;}
.y4c_c00074{bottom:203.043840px;}
.y5b_c00074{bottom:203.399850px;}
.y2d_c00074{bottom:203.402505px;}
.y3d_c00074{bottom:203.402520px;}
.y5a_c00074{bottom:224.279250px;}
.y2c_c00074{bottom:224.281110px;}
.y3c_c00074{bottom:224.281155px;}
.y4b_c00074{bottom:224.284740px;}
.y4a_c00074{bottom:245.525670px;}
.y59_c00074{bottom:245.878950px;}
.y2b_c00074{bottom:245.880405px;}
.y3b_c00074{bottom:245.880435px;}
.y58_c00074{bottom:266.758500px;}
.y49_c00074{bottom:266.764455px;}
.y2a_c00074{bottom:267.121305px;}
.y3a_c00074{bottom:267.121350px;}
.y39_c00074{bottom:287.999955px;}
.y48_c00074{bottom:288.005355px;}
.y57_c00074{bottom:288.359850px;}
.y29_c00074{bottom:288.362235px;}
.y38_c00074{bottom:309.959445px;}
.y28_c00074{bottom:309.961515px;}
.y47_c00074{bottom:309.964845px;}
.y56_c00074{bottom:310.318800px;}
.y37_c00074{bottom:331.558725px;}
.y27_c00074{bottom:331.560810px;}
.y46_c00074{bottom:331.564140px;}
.y55_c00074{bottom:332.279250px;}
.y36_c00074{bottom:352.437360px;}
.y26_c00074{bottom:352.439415px;}
.y45_c00074{bottom:352.442760px;}
.y54_c00074{bottom:352.800240px;}
.y35_c00074{bottom:370.079385px;}
.y25_c00074{bottom:373.319850px;}
.y44_c00074{bottom:373.323165px;}
.y53_c00074{bottom:373.679100px;}
.y24_c00074{bottom:394.558635px;}
.y34_c00074{bottom:394.558665px;}
.y43_c00074{bottom:394.561980px;}
.y52_c00074{bottom:394.919880px;}
.y23_c00074{bottom:415.798920px;}
.y33_c00074{bottom:415.799580px;}
.y22_c00074{bottom:415.799715px;}
.y42_c00074{bottom:415.802880px;}
.y51_c00074{bottom:416.159820px;}
.y21_c00074{bottom:437.040615px;}
.y32_c00074{bottom:437.398860px;}
.y41_c00074{bottom:437.402190px;}
.y50_c00074{bottom:437.759535px;}
.y31_c00074{bottom:458.999970px;}
.y20_c00074{bottom:459.001920px;}
.y40_c00074{bottom:459.003270px;}
.y4f_c00074{bottom:460.079400px;}
.y30_c00074{bottom:480.238770px;}
.y1f_c00074{bottom:480.240720px;}
.y3f_c00074{bottom:480.602550px;}
.y4e_c00074{bottom:480.958920px;}
.y1e_c00074{bottom:523.080615px;}
.y2f_c00074{bottom:523.439670px;}
.y2e_c00074{bottom:523.442430px;}
.y3e_c00074{bottom:523.800840px;}
.y4d_c00074{bottom:524.164650px;}
.y1d_c00074{bottom:565.200135px;}
.y1c_c00074{bottom:615.600075px;}
.y1b_c00074{bottom:646.560675px;}
.y1a_c00074{bottom:675.719715px;}
.y19_c00074{bottom:706.320120px;}
.y18_c00074{bottom:736.199850px;}
.y17_c00074{bottom:736.200165px;}
.y16_c00074{bottom:765.719700px;}
.y15_c00074{bottom:795.239220px;}
.y14_c00074{bottom:825.479190px;}
.y13_c00074{bottom:825.479370px;}
.y11_c00074{bottom:854.998860px;}
.y12_c00074{bottom:854.998905px;}
.y10_c00074{bottom:885.238770px;}
.y8_c00074{bottom:948.960990px;}
.yf_c00074{bottom:949.678530px;}
.y7_c00074{bottom:970.560285px;}
.ye_c00074{bottom:971.279850px;}
.y6_c00074{bottom:991.801185px;}
.yd_c00074{bottom:992.518620px;}
.y5_c00074{bottom:1013.040000px;}
.yc_c00074{bottom:1013.399775px;}
.y4_c00074{bottom:1034.280900px;}
.yb_c00074{bottom:1034.638545px;}
.y3_c00074{bottom:1055.159520px;}
.ya_c00074{bottom:1055.878965px;}
.y9_c00074{bottom:1055.879880px;}
.y2_c00074{bottom:1097.999400px;}
.y1_c00074{bottom:1141.199805px;}
.hc_c00074{height:35.982422px;}
.h8_c00074{height:73.608398px;}
.he_c00074{height:75.093750px;}
.h10_c00074{height:76.658203px;}
.h1_c00074{height:77.288818px;}
.h3_c00074{height:77.440430px;}
.h4_c00074{height:78.024902px;}
.h2_c00074{height:78.222656px;}
.hb_c00074{height:78.609375px;}
.h7_c00074{height:78.760986px;}
.hf_c00074{height:79.787109px;}
.h5_c00074{height:80.193237px;}
.h6_c00074{height:80.233154px;}
.hd_c00074{height:81.351562px;}
.h9_c00074{height:82.441406px;}
.ha_c00074{height:86.121826px;}
.h13_c00074{height:103.253906px;}
.h11_c00074{height:105.600586px;}
.h12_c00074{height:108.729492px;}
.h0_c00074{height:1263.000000px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x5_c00074{left:141.118815px;}
.x1_c00074{left:159.839565px;}
.xf_c00074{left:208.440840px;}
.x11_c00074{left:209.518290px;}
.x9_c00074{left:264.958950px;}
.xa_c00074{left:288.359850px;}
.x10_c00074{left:313.919535px;}
.x6_c00074{left:349.559685px;}
.x7_c00074{left:363.598530px;}
.x12_c00074{left:388.799055px;}
.x14_c00074{left:389.880060px;}
.x13_c00074{left:483.839535px;}
.xd_c00074{left:489.599070px;}
.xe_c00074{left:534.599670px;}
.x15_c00074{left:557.640885px;}
.x16_c00074{left:558.722055px;}
.x2_c00074{left:562.321950px;}
.x17_c00074{left:655.561110px;}
.xb_c00074{left:665.998950px;}
.xc_c00074{left:678.958335px;}
.x19_c00074{left:697.679070px;}
.x1b_c00074{left:698.758530px;}
.x1a_c00074{left:699.839535px;}
.x18_c00074{left:706.678530px;}
.x3_c00074{left:745.558635px;}
.x4_c00074{left:754.198785px;}
.x8_c00074{left:755.279850px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls10_c00074{letter-spacing:-13.867000pt;}
.ls4_c00074{letter-spacing:-9.904300pt;}
.ls13_c00074{letter-spacing:-8.582000pt;}
.ls11_c00074{letter-spacing:-7.266700pt;}
.ls9_c00074{letter-spacing:-6.000000pt;}
.lse_c00074{letter-spacing:-5.943000pt;}
.lsf_c00074{letter-spacing:-5.831627pt;}
.ls12_c00074{letter-spacing:-5.385600pt;}
.ls7_c00074{letter-spacing:-5.285000pt;}
.ls15_c00074{letter-spacing:-4.667333pt;}
.ls1_c00074{letter-spacing:-4.619300pt;}
.lsa_c00074{letter-spacing:-4.000000pt;}
.ls5_c00074{letter-spacing:-3.961300pt;}
.ls3_c00074{letter-spacing:-3.304000pt;}
.ls14_c00074{letter-spacing:-2.934000pt;}
.ls2_c00074{letter-spacing:-2.639000pt;}
.lsc_c00074{letter-spacing:-2.513333pt;}
.ls0_c00074{letter-spacing:-1.981700pt;}
.ls6_c00074{letter-spacing:-1.323700pt;}
.lsb_c00074{letter-spacing:-0.658000pt;}
.ls8_c00074{letter-spacing:0.000000pt;}
.lsd_c00074{letter-spacing:3.353280pt;}
.ws0_c00074{word-spacing:0.000000pt;}
._0_c00074{margin-left:-6.674302pt;}
._19_c00074{margin-left:-5.440321pt;}
._1b_c00074{margin-left:-2.863740pt;}
._13_c00074{margin-left:-1.558372pt;}
._d_c00074{width:1.211357pt;}
._11_c00074{width:2.874121pt;}
._f_c00074{width:4.272747pt;}
._12_c00074{width:5.396538pt;}
._e_c00074{width:6.301730pt;}
._3_c00074{width:7.678498pt;}
._2_c00074{width:9.541079pt;}
._a_c00074{width:11.411149pt;}
._10_c00074{width:13.197047pt;}
._21_c00074{width:14.528540pt;}
._1c_c00074{width:15.814374pt;}
._1a_c00074{width:18.169332pt;}
._1d_c00074{width:20.613125pt;}
._1f_c00074{width:22.427445pt;}
._1e_c00074{width:24.269449pt;}
._20_c00074{width:25.303692pt;}
._18_c00074{width:26.464781pt;}
._16_c00074{width:27.513764pt;}
._14_c00074{width:28.818921pt;}
._17_c00074{width:29.720296pt;}
._15_c00074{width:31.871238pt;}
._4_c00074{width:188.475185pt;}
._9_c00074{width:258.010623pt;}
._c_c00074{width:280.474772pt;}
._b_c00074{width:304.157291pt;}
._8_c00074{width:327.571921pt;}
._5_c00074{width:354.665632pt;}
._1_c00074{width:426.971551pt;}
._6_c00074{width:482.887921pt;}
._7_c00074{width:487.550423pt;}
.fs9_c00074{font-size:30.666667pt;}
.fsa_c00074{font-size:64.000000pt;}
.fsc_c00074{font-size:65.333333pt;}
.fs2_c00074{font-size:66.000000pt;}
.fs1_c00074{font-size:66.666667pt;}
.fsb_c00074{font-size:68.000000pt;}
.fs8_c00074{font-size:69.333333pt;}
.fs0_c00074{font-size:70.000000pt;}
.fs3_c00074{font-size:70.666667pt;}
.fs5_c00074{font-size:71.333333pt;}
.fs4_c00074{font-size:72.666667pt;}
.fs6_c00074{font-size:74.666667pt;}
.fs7_c00074{font-size:78.000000pt;}
.fsf_c00074{font-size:88.000000pt;}
.fsd_c00074{font-size:90.000000pt;}
.fse_c00074{font-size:92.666667pt;}
.y0_c00074{bottom:0.000000pt;}
.y4c_c00074{bottom:180.483413pt;}
.y5b_c00074{bottom:180.799867pt;}
.y2d_c00074{bottom:180.802227pt;}
.y3d_c00074{bottom:180.802240pt;}
.y5a_c00074{bottom:199.359333pt;}
.y2c_c00074{bottom:199.360987pt;}
.y3c_c00074{bottom:199.361027pt;}
.y4b_c00074{bottom:199.364213pt;}
.y4a_c00074{bottom:218.245040pt;}
.y59_c00074{bottom:218.559067pt;}
.y2b_c00074{bottom:218.560360pt;}
.y3b_c00074{bottom:218.560387pt;}
.y58_c00074{bottom:237.118667pt;}
.y49_c00074{bottom:237.123960pt;}
.y2a_c00074{bottom:237.441160pt;}
.y3a_c00074{bottom:237.441200pt;}
.y39_c00074{bottom:255.999960pt;}
.y48_c00074{bottom:256.004760pt;}
.y57_c00074{bottom:256.319867pt;}
.y29_c00074{bottom:256.321987pt;}
.y38_c00074{bottom:275.519507pt;}
.y28_c00074{bottom:275.521347pt;}
.y47_c00074{bottom:275.524307pt;}
.y56_c00074{bottom:275.838933pt;}
.y37_c00074{bottom:294.718867pt;}
.y27_c00074{bottom:294.720720pt;}
.y46_c00074{bottom:294.723680pt;}
.y55_c00074{bottom:295.359333pt;}
.y36_c00074{bottom:313.277653pt;}
.y26_c00074{bottom:313.279480pt;}
.y45_c00074{bottom:313.282453pt;}
.y54_c00074{bottom:313.600213pt;}
.y35_c00074{bottom:328.959453pt;}
.y25_c00074{bottom:331.839867pt;}
.y44_c00074{bottom:331.842813pt;}
.y53_c00074{bottom:332.159200pt;}
.y24_c00074{bottom:350.718787pt;}
.y34_c00074{bottom:350.718813pt;}
.y43_c00074{bottom:350.721760pt;}
.y52_c00074{bottom:351.039893pt;}
.y23_c00074{bottom:369.599040pt;}
.y33_c00074{bottom:369.599627pt;}
.y22_c00074{bottom:369.599747pt;}
.y42_c00074{bottom:369.602560pt;}
.y51_c00074{bottom:369.919840pt;}
.y21_c00074{bottom:388.480547pt;}
.y32_c00074{bottom:388.798987pt;}
.y41_c00074{bottom:388.801947pt;}
.y50_c00074{bottom:389.119587pt;}
.y31_c00074{bottom:407.999973pt;}
.y20_c00074{bottom:408.001707pt;}
.y40_c00074{bottom:408.002907pt;}
.y4f_c00074{bottom:408.959467pt;}
.y30_c00074{bottom:426.878907pt;}
.y1f_c00074{bottom:426.880640pt;}
.y3f_c00074{bottom:427.202267pt;}
.y4e_c00074{bottom:427.519040pt;}
.y1e_c00074{bottom:464.960547pt;}
.y2f_c00074{bottom:465.279707pt;}
.y2e_c00074{bottom:465.282160pt;}
.y3e_c00074{bottom:465.600747pt;}
.y4d_c00074{bottom:465.924133pt;}
.y1d_c00074{bottom:502.400120pt;}
.y1c_c00074{bottom:547.200067pt;}
.y1b_c00074{bottom:574.720600pt;}
.y1a_c00074{bottom:600.639747pt;}
.y19_c00074{bottom:627.840107pt;}
.y18_c00074{bottom:654.399867pt;}
.y17_c00074{bottom:654.400147pt;}
.y16_c00074{bottom:680.639733pt;}
.y15_c00074{bottom:706.879307pt;}
.y14_c00074{bottom:733.759280pt;}
.y13_c00074{bottom:733.759440pt;}
.y11_c00074{bottom:759.998987pt;}
.y12_c00074{bottom:759.999027pt;}
.y10_c00074{bottom:786.878907pt;}
.y8_c00074{bottom:843.520880pt;}
.yf_c00074{bottom:844.158693pt;}
.y7_c00074{bottom:862.720253pt;}
.ye_c00074{bottom:863.359867pt;}
.y6_c00074{bottom:881.601053pt;}
.yd_c00074{bottom:882.238773pt;}
.y5_c00074{bottom:900.480000pt;}
.yc_c00074{bottom:900.799800pt;}
.y4_c00074{bottom:919.360800pt;}
.yb_c00074{bottom:919.678707pt;}
.y3_c00074{bottom:937.919573pt;}
.ya_c00074{bottom:938.559080pt;}
.y9_c00074{bottom:938.559893pt;}
.y2_c00074{bottom:975.999467pt;}
.y1_c00074{bottom:1014.399827pt;}
.hc_c00074{height:31.984375pt;}
.h8_c00074{height:65.429688pt;}
.he_c00074{height:66.750000pt;}
.h10_c00074{height:68.140625pt;}
.h1_c00074{height:68.701172pt;}
.h3_c00074{height:68.835938pt;}
.h4_c00074{height:69.355469pt;}
.h2_c00074{height:69.531250pt;}
.hb_c00074{height:69.875000pt;}
.h7_c00074{height:70.009766pt;}
.hf_c00074{height:70.921875pt;}
.h5_c00074{height:71.282878pt;}
.h6_c00074{height:71.318359pt;}
.hd_c00074{height:72.312500pt;}
.h9_c00074{height:73.281250pt;}
.ha_c00074{height:76.552734pt;}
.h13_c00074{height:91.781250pt;}
.h11_c00074{height:93.867188pt;}
.h12_c00074{height:96.648438pt;}
.h0_c00074{height:1122.666667pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x5_c00074{left:125.438947pt;}
.x1_c00074{left:142.079613pt;}
.xf_c00074{left:185.280747pt;}
.x11_c00074{left:186.238480pt;}
.x9_c00074{left:235.519067pt;}
.xa_c00074{left:256.319867pt;}
.x10_c00074{left:279.039587pt;}
.x6_c00074{left:310.719720pt;}
.x7_c00074{left:323.198693pt;}
.x12_c00074{left:345.599160pt;}
.x14_c00074{left:346.560053pt;}
.x13_c00074{left:430.079587pt;}
.xd_c00074{left:435.199173pt;}
.xe_c00074{left:475.199707pt;}
.x15_c00074{left:495.680787pt;}
.x16_c00074{left:496.641827pt;}
.x2_c00074{left:499.841733pt;}
.x17_c00074{left:582.720987pt;}
.xb_c00074{left:591.999067pt;}
.xc_c00074{left:603.518520pt;}
.x19_c00074{left:620.159173pt;}
.x1b_c00074{left:621.118693pt;}
.x1a_c00074{left:622.079587pt;}
.x18_c00074{left:628.158693pt;}
.x3_c00074{left:662.718787pt;}
.x4_c00074{left:670.398920pt;}
.x8_c00074{left:671.359867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f76a25fe2873a48f4ed43be.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_71f5995ba2db0602b0cc791c.woff2')format("woff");}.ff2_c00075{font-family:ff2_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;}
.m5_c00075{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00075{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.mc_c00075{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.me_c00075{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00075{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls14_c00075{letter-spacing:-8.914500px;}
.lse_c00075{letter-spacing:-6.115500px;}
.ls15_c00075{letter-spacing:-5.945625px;}
.lsa_c00075{letter-spacing:-5.196713px;}
.ls10_c00075{letter-spacing:-4.678575px;}
.ls3_c00075{letter-spacing:-4.456463px;}
.ls8_c00075{letter-spacing:-3.717000px;}
.lsc_c00075{letter-spacing:-3.715725px;}
.lsf_c00075{letter-spacing:-3.138525px;}
.ls6_c00075{letter-spacing:-2.968875px;}
.ls4_c00075{letter-spacing:-2.229413px;}
.ls13_c00075{letter-spacing:-2.117025px;}
.ls7_c00075{letter-spacing:-2.116065px;}
.ls5_c00075{letter-spacing:-1.489163px;}
.lsb_c00075{letter-spacing:-0.740250px;}
.ls9_c00075{letter-spacing:0.000000px;}
.ls1_c00075{letter-spacing:1.489163px;}
.ls2_c00075{letter-spacing:1.545300px;}
.ls11_c00075{letter-spacing:2.450250px;}
.ls0_c00075{letter-spacing:3.717000px;}
.ls12_c00075{letter-spacing:3.791213px;}
.lsd_c00075{letter-spacing:4.039200px;}
.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;}
._15_c00075{margin-left:-4.892173px;}
._9_c00075{margin-left:-3.874708px;}
._12_c00075{margin-left:-2.513834px;}
._f_c00075{margin-left:-1.382315px;}
._a_c00075{width:1.788071px;}
._13_c00075{width:2.873558px;}
._1_c00075{width:3.938585px;}
._7_c00075{width:5.666493px;}
._2_c00075{width:7.187795px;}
._6_c00075{width:9.056844px;}
._0_c00075{width:10.690253px;}
._8_c00075{width:12.304569px;}
._11_c00075{width:13.772379px;}
._e_c00075{width:15.586512px;}
._d_c00075{width:18.885320px;}
._c_c00075{width:19.888907px;}
._5_c00075{width:21.037736px;}
._4_c00075{width:22.642913px;}
._10_c00075{width:23.658387px;}
._3_c00075{width:26.458247px;}
._14_c00075{width:28.578212px;}
._b_c00075{width:30.066275px;}
.fc0_c00075{color:transparent;}
.fsc_c00075{font-size:71.250000px;}
.fsd_c00075{font-size:72.750000px;}
.fs2_c00075{font-size:73.500000px;}
.fs9_c00075{font-size:74.250000px;}
.fs0_c00075{font-size:76.500000px;}
.fs7_c00075{font-size:77.250000px;}
.fs8_c00075{font-size:78.000000px;}
.fs1_c00075{font-size:78.750000px;}
.fs3_c00075{font-size:79.500000px;}
.fs4_c00075{font-size:80.250000px;}
.fsa_c00075{font-size:81.000000px;}
.fs6_c00075{font-size:82.500000px;}
.fsb_c00075{font-size:83.250000px;}
.fs5_c00075{font-size:84.750000px;}
.y0_c00075{bottom:0.000000px;}
.y26_c00075{bottom:199.798950px;}
.y25_c00075{bottom:199.799970px;}
.y24_c00075{bottom:229.679700px;}
.y23_c00075{bottom:229.680615px;}
.y22_c00075{bottom:259.200135px;}
.y21_c00075{bottom:289.079865px;}
.y20_c00075{bottom:319.319775px;}
.y1f_c00075{bottom:349.559685px;}
.y1e_c00075{bottom:349.560720px;}
.y1d_c00075{bottom:379.440450px;}
.y1c_c00075{bottom:408.959970px;}
.y1b_c00075{bottom:439.199850px;}
.y1a_c00075{bottom:439.200195px;}
.y19_c00075{bottom:468.719715px;}
.y18_c00075{bottom:528.839355px;}
.y17_c00075{bottom:588.240420px;}
.y16_c00075{bottom:618.120270px;}
.y14_c00075{bottom:647.999205px;}
.y15_c00075{bottom:648.000000px;}
.y13_c00075{bottom:677.878920px;}
.y12_c00075{bottom:677.879040px;}
.y11_c00075{bottom:708.118950px;}
.y10_c00075{bottom:737.640285px;}
.yf_c00075{bottom:767.159820px;}
.ye_c00075{bottom:826.919490px;}
.yd_c00075{bottom:826.919535px;}
.yc_c00075{bottom:887.039175px;}
.yb_c00075{bottom:917.279085px;}
.ya_c00075{bottom:947.158815px;}
.y9_c00075{bottom:947.159610px;}
.y7_c00075{bottom:977.039295px;}
.y8_c00075{bottom:977.039340px;}
.y6_c00075{bottom:1007.279205px;}
.y5_c00075{bottom:1037.519070px;}
.y4_c00075{bottom:1037.520060px;}
.y3_c00075{bottom:1067.399775px;}
.y2_c00075{bottom:1067.400555px;}
.y1_c00075{bottom:1118.519070px;}
.he_c00075{height:69.927979px;}
.hf_c00075{height:71.400146px;}
.h3_c00075{height:72.136230px;}
.ha_c00075{height:72.872314px;}
.h1_c00075{height:75.080566px;}
.h8_c00075{height:75.816650px;}
.h9_c00075{height:76.552734px;}
.h2_c00075{height:77.288818px;}
.h4_c00075{height:78.024902px;}
.h5_c00075{height:78.760986px;}
.hb_c00075{height:79.497070px;}
.hd_c00075{height:80.876953px;}
.h7_c00075{height:80.969238px;}
.hc_c00075{height:81.705322px;}
.h6_c00075{height:83.177490px;}
.h0_c00075{height:1263.000000px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x7_c00075{left:141.118815px;}
.x1_c00075{left:142.918350px;}
.x16_c00075{left:156.599700px;}
.x8_c00075{left:160.559685px;}
.xf_c00075{left:165.958350px;}
.x2_c00075{left:209.879535px;}
.x23_c00075{left:215.279850px;}
.x24_c00075{left:230.399850px;}
.xd_c00075{left:258.479235px;}
.xe_c00075{left:273.239850px;}
.x9_c00075{left:299.878950px;}
.xa_c00075{left:317.518635px;}
.x10_c00075{left:343.080000px;}
.x1a_c00075{left:347.758500px;}
.x14_c00075{left:355.319250px;}
.x11_c00075{left:357.118785px;}
.x1b_c00075{left:368.998950px;}
.x15_c00075{left:373.679100px;}
.x1c_c00075{left:386.279250px;}
.x5_c00075{left:402.119385px;}
.xb_c00075{left:410.759535px;}
.xc_c00075{left:425.159415px;}
.x6_c00075{left:432.718500px;}
.x1d_c00075{left:444.959385px;}
.x1e_c00075{left:482.399235px;}
.x1f_c00075{left:503.639700px;}
.x20_c00075{left:521.638500px;}
.x21_c00075{left:543.239820px;}
.x22_c00075{left:560.159415px;}
.x12_c00075{left:563.399235px;}
.x13_c00075{left:578.519070px;}
.x17_c00075{left:623.878920px;}
.x18_c00075{left:639.359850px;}
.x3_c00075{left:687.598530px;}
.x4_c00075{left:723.599670px;}
.x19_c00075{left:750.599670px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls14_c00075{letter-spacing:-7.924000pt;}
.lse_c00075{letter-spacing:-5.436000pt;}
.ls15_c00075{letter-spacing:-5.285000pt;}
.lsa_c00075{letter-spacing:-4.619300pt;}
.ls10_c00075{letter-spacing:-4.158733pt;}
.ls3_c00075{letter-spacing:-3.961300pt;}
.ls8_c00075{letter-spacing:-3.304000pt;}
.lsc_c00075{letter-spacing:-3.302867pt;}
.lsf_c00075{letter-spacing:-2.789800pt;}
.ls6_c00075{letter-spacing:-2.639000pt;}
.ls4_c00075{letter-spacing:-1.981700pt;}
.ls13_c00075{letter-spacing:-1.881800pt;}
.ls7_c00075{letter-spacing:-1.880947pt;}
.ls5_c00075{letter-spacing:-1.323700pt;}
.lsb_c00075{letter-spacing:-0.658000pt;}
.ls9_c00075{letter-spacing:0.000000pt;}
.ls1_c00075{letter-spacing:1.323700pt;}
.ls2_c00075{letter-spacing:1.373600pt;}
.ls11_c00075{letter-spacing:2.178000pt;}
.ls0_c00075{letter-spacing:3.304000pt;}
.ls12_c00075{letter-spacing:3.369967pt;}
.lsd_c00075{letter-spacing:3.590400pt;}
.ws0_c00075{word-spacing:0.000000pt;}
._15_c00075{margin-left:-4.348598pt;}
._9_c00075{margin-left:-3.444185pt;}
._12_c00075{margin-left:-2.234519pt;}
._f_c00075{margin-left:-1.228725pt;}
._a_c00075{width:1.589396pt;}
._13_c00075{width:2.554274pt;}
._1_c00075{width:3.500964pt;}
._7_c00075{width:5.036883pt;}
._2_c00075{width:6.389151pt;}
._6_c00075{width:8.050528pt;}
._0_c00075{width:9.502447pt;}
._8_c00075{width:10.937394pt;}
._11_c00075{width:12.242115pt;}
._e_c00075{width:13.854677pt;}
._d_c00075{width:16.786951pt;}
._c_c00075{width:17.679028pt;}
._5_c00075{width:18.700209pt;}
._4_c00075{width:20.127034pt;}
._10_c00075{width:21.029677pt;}
._3_c00075{width:23.518442pt;}
._14_c00075{width:25.402855pt;}
._b_c00075{width:26.725577pt;}
.fsc_c00075{font-size:63.333333pt;}
.fsd_c00075{font-size:64.666667pt;}
.fs2_c00075{font-size:65.333333pt;}
.fs9_c00075{font-size:66.000000pt;}
.fs0_c00075{font-size:68.000000pt;}
.fs7_c00075{font-size:68.666667pt;}
.fs8_c00075{font-size:69.333333pt;}
.fs1_c00075{font-size:70.000000pt;}
.fs3_c00075{font-size:70.666667pt;}
.fs4_c00075{font-size:71.333333pt;}
.fsa_c00075{font-size:72.000000pt;}
.fs6_c00075{font-size:73.333333pt;}
.fsb_c00075{font-size:74.000000pt;}
.fs5_c00075{font-size:75.333333pt;}
.y0_c00075{bottom:0.000000pt;}
.y26_c00075{bottom:177.599067pt;}
.y25_c00075{bottom:177.599973pt;}
.y24_c00075{bottom:204.159733pt;}
.y23_c00075{bottom:204.160547pt;}
.y22_c00075{bottom:230.400120pt;}
.y21_c00075{bottom:256.959880pt;}
.y20_c00075{bottom:283.839800pt;}
.y1f_c00075{bottom:310.719720pt;}
.y1e_c00075{bottom:310.720640pt;}
.y1d_c00075{bottom:337.280400pt;}
.y1c_c00075{bottom:363.519973pt;}
.y1b_c00075{bottom:390.399867pt;}
.y1a_c00075{bottom:390.400173pt;}
.y19_c00075{bottom:416.639747pt;}
.y18_c00075{bottom:470.079427pt;}
.y17_c00075{bottom:522.880373pt;}
.y16_c00075{bottom:549.440240pt;}
.y14_c00075{bottom:575.999293pt;}
.y15_c00075{bottom:576.000000pt;}
.y13_c00075{bottom:602.559040pt;}
.y12_c00075{bottom:602.559147pt;}
.y11_c00075{bottom:629.439067pt;}
.y10_c00075{bottom:655.680253pt;}
.yf_c00075{bottom:681.919840pt;}
.ye_c00075{bottom:735.039547pt;}
.yd_c00075{bottom:735.039587pt;}
.yc_c00075{bottom:788.479267pt;}
.yb_c00075{bottom:815.359187pt;}
.ya_c00075{bottom:841.918947pt;}
.y9_c00075{bottom:841.919653pt;}
.y7_c00075{bottom:868.479373pt;}
.y8_c00075{bottom:868.479413pt;}
.y6_c00075{bottom:895.359293pt;}
.y5_c00075{bottom:922.239173pt;}
.y4_c00075{bottom:922.240053pt;}
.y3_c00075{bottom:948.799800pt;}
.y2_c00075{bottom:948.800493pt;}
.y1_c00075{bottom:994.239173pt;}
.he_c00075{height:62.158203pt;}
.hf_c00075{height:63.466797pt;}
.h3_c00075{height:64.121094pt;}
.ha_c00075{height:64.775391pt;}
.h1_c00075{height:66.738281pt;}
.h8_c00075{height:67.392578pt;}
.h9_c00075{height:68.046875pt;}
.h2_c00075{height:68.701172pt;}
.h4_c00075{height:69.355469pt;}
.h5_c00075{height:70.009766pt;}
.hb_c00075{height:70.664062pt;}
.hd_c00075{height:71.890625pt;}
.h7_c00075{height:71.972656pt;}
.hc_c00075{height:72.626953pt;}
.h6_c00075{height:73.935547pt;}
.h0_c00075{height:1122.666667pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x7_c00075{left:125.438947pt;}
.x1_c00075{left:127.038533pt;}
.x16_c00075{left:139.199733pt;}
.x8_c00075{left:142.719720pt;}
.xf_c00075{left:147.518533pt;}
.x2_c00075{left:186.559587pt;}
.x23_c00075{left:191.359867pt;}
.x24_c00075{left:204.799867pt;}
.xd_c00075{left:229.759320pt;}
.xe_c00075{left:242.879867pt;}
.x9_c00075{left:266.559067pt;}
.xa_c00075{left:282.238787pt;}
.x10_c00075{left:304.960000pt;}
.x1a_c00075{left:309.118667pt;}
.x14_c00075{left:315.839333pt;}
.x11_c00075{left:317.438920pt;}
.x1b_c00075{left:327.999067pt;}
.x15_c00075{left:332.159200pt;}
.x1c_c00075{left:343.359333pt;}
.x5_c00075{left:357.439453pt;}
.xb_c00075{left:365.119587pt;}
.xc_c00075{left:377.919480pt;}
.x6_c00075{left:384.638667pt;}
.x1d_c00075{left:395.519453pt;}
.x1e_c00075{left:428.799320pt;}
.x1f_c00075{left:447.679733pt;}
.x20_c00075{left:463.678667pt;}
.x21_c00075{left:482.879840pt;}
.x22_c00075{left:497.919480pt;}
.x12_c00075{left:500.799320pt;}
.x13_c00075{left:514.239173pt;}
.x17_c00075{left:554.559040pt;}
.x18_c00075{left:568.319867pt;}
.x3_c00075{left:611.198693pt;}
.x4_c00075{left:643.199707pt;}
.x19_c00075{left:667.199707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b44c568b29589f7c2160a66f.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_2d3153c5d53f8ea0e4dad615.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.432129;font-style:normal;font-weight:normal;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_b91ba404aa4ad98fcfd9b3fd.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.432129;font-style:normal;font-weight:normal;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_016f746963fa491408dcb9ae.woff2')format("woff");}.ff4_c00076{font-family:ff4_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:ff5_c00076;src:url('chunks/assets/font_523998abfb25b5bbfddb2d41.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.364746;font-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_c00076{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206395,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.340164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340164,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.367021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367021,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{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);}
.mf_c00076{transform:matrix(0.396341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396341,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.470238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470238,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.482558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482558,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{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);}
.m10_c00076{transform:matrix(0.518293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518293,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.689024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.689024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.689024,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls1b_c00076{letter-spacing:-7.619850px;}
.ls6_c00076{letter-spacing:-7.576538px;}
.lse_c00076{letter-spacing:-5.300663px;}
.ls25_c00076{letter-spacing:-5.199698px;}
.lsb_c00076{letter-spacing:-4.543088px;}
.lsc_c00076{letter-spacing:-3.787875px;}
.lsd_c00076{letter-spacing:-3.060750px;}
.lsa_c00076{letter-spacing:-3.031875px;}
.ls19_c00076{letter-spacing:-2.390850px;}
.ls8_c00076{letter-spacing:-2.267213px;}
.ls23_c00076{letter-spacing:-2.224028px;}
.ls14_c00076{letter-spacing:-1.554450px;}
.ls5_c00076{letter-spacing:-1.512000px;}
.ls21_c00076{letter-spacing:-1.498875px;}
.ls24_c00076{letter-spacing:-1.483200px;}
.ls15_c00076{letter-spacing:-1.164225px;}
.ls9_c00076{letter-spacing:-0.756000px;}
.ls16_c00076{letter-spacing:-0.390225px;}
.ls1e_c00076{letter-spacing:-0.375000px;}
.ls4_c00076{letter-spacing:0.000000px;}
.ls17_c00076{letter-spacing:0.390225px;}
.ls18_c00076{letter-spacing:0.909450px;}
.ls1d_c00076{letter-spacing:1.448325px;}
.ls1_c00076{letter-spacing:1.512000px;}
.ls2_c00076{letter-spacing:2.267213px;}
.ls10_c00076{letter-spacing:2.998800px;}
.ls3_c00076{letter-spacing:3.031875px;}
.lsf_c00076{letter-spacing:4.181700px;}
.ls1c_c00076{letter-spacing:4.729043px;}
.ls22_c00076{letter-spacing:5.494125px;}
.ls7_c00076{letter-spacing:5.718600px;}
.ls1f_c00076{letter-spacing:5.946547px;}
.ls0_c00076{letter-spacing:7.267725px;}
.ls13_c00076{letter-spacing:8.266567px;}
.ls11_c00076{letter-spacing:8.402625px;}
.ls12_c00076{letter-spacing:10.623150px;}
.ls1a_c00076{letter-spacing:11.233200px;}
.ls20_c00076{letter-spacing:28.500000px;}
.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;}
._19_c00076{margin-left:-46.655074px;}
._18_c00076{margin-left:-40.863496px;}
._1d_c00076{margin-left:-31.728920px;}
._16_c00076{margin-left:-11.850785px;}
._17_c00076{margin-left:-8.599439px;}
._2_c00076{margin-left:-5.984758px;}
._5_c00076{margin-left:-4.585794px;}
._13_c00076{margin-left:-3.374074px;}
._1_c00076{margin-left:-2.281569px;}
._c_c00076{margin-left:-1.126064px;}
._e_c00076{width:1.211538px;}
._4_c00076{width:2.299742px;}
._9_c00076{width:4.307201px;}
._7_c00076{width:6.355246px;}
._10_c00076{width:7.782014px;}
._3_c00076{width:8.819152px;}
._f_c00076{width:9.995556px;}
._8_c00076{width:11.107142px;}
._0_c00076{width:13.025674px;}
._6_c00076{width:14.048455px;}
._a_c00076{width:15.199174px;}
._d_c00076{width:16.420344px;}
._14_c00076{width:18.282797px;}
._1b_c00076{width:20.672481px;}
._12_c00076{width:22.514019px;}
._11_c00076{width:24.604165px;}
._b_c00076{width:26.573582px;}
._15_c00076{width:27.658214px;}
._1a_c00076{width:29.947292px;}
._1c_c00076{width:33.996496px;}
.fc0_c00076{color:transparent;}
.fsf_c00076{font-size:26.250000px;}
.fsc_c00076{font-size:27.750000px;}
.fse_c00076{font-size:30.000000px;}
.fsd_c00076{font-size:30.750000px;}
.fsb_c00076{font-size:31.500000px;}
.fs7_c00076{font-size:32.250000px;}
.fs9_c00076{font-size:35.250000px;}
.fs5_c00076{font-size:40.500000px;}
.fs4_c00076{font-size:41.250000px;}
.fs3_c00076{font-size:42.000000px;}
.fs6_c00076{font-size:45.750000px;}
.fs8_c00076{font-size:48.000000px;}
.fsa_c00076{font-size:64.500000px;}
.fs11_c00076{font-size:75.750000px;}
.fs10_c00076{font-size:77.250000px;}
.fs0_c00076{font-size:78.750000px;}
.fs2_c00076{font-size:79.500000px;}
.fs1_c00076{font-size:81.000000px;}
.fs12_c00076{font-size:84.000000px;}
.y0_c00076{bottom:0.000000px;}
.y24_c00076{bottom:180.718575px;}
.y23_c00076{bottom:210.238110px;}
.y22_c00076{bottom:239.399250px;}
.y21_c00076{bottom:239.399760px;}
.y20_c00076{bottom:268.919295px;}
.y1f_c00076{bottom:299.519685px;}
.y1e_c00076{bottom:299.520225px;}
.y1d_c00076{bottom:329.039745px;}
.y1b_c00076{bottom:359.639355px;}
.y1c_c00076{bottom:359.640150px;}
.y1a_c00076{bottom:388.798395px;}
.y19_c00076{bottom:419.038305px;}
.y18_c00076{bottom:448.559640px;}
.y17_c00076{bottom:507.958905px;}
.y16_c00076{bottom:538.198815px;}
.y15_c00076{bottom:567.720150px;}
.y14_c00076{bottom:627.479685px;}
.y13_c00076{bottom:627.480405px;}
.y12_c00076{bottom:686.519160px;}
.y11_c00076{bottom:716.759085px;}
.y10_c00076{bottom:746.278800px;}
.yf_c00076{bottom:752.039985px;}
.ye_c00076{bottom:776.159370px;}
.yd_c00076{bottom:776.161470px;}
.yc_c00076{bottom:836.281110px;}
.yb_c00076{bottom:866.521020px;}
.ya_c00076{bottom:896.040555px;}
.y9_c00076{bottom:925.920270px;}
.y8_c00076{bottom:956.160180px;}
.y7_c00076{bottom:985.679715px;}
.y6_c00076{bottom:985.679940px;}
.y5_c00076{bottom:1015.559670px;}
.y4_c00076{bottom:1045.079205px;}
.y2_c00076{bottom:1074.958530px;}
.y3_c00076{bottom:1074.958920px;}
.y1_c00076{bottom:1135.438665px;}
.h12_c00076{height:27.377930px;}
.hd_c00076{height:28.942383px;}
.h11_c00076{height:29.648438px;}
.hf_c00076{height:30.990234px;}
.h10_c00076{height:31.289062px;}
.he_c00076{height:32.071289px;}
.hc_c00076{height:32.853516px;}
.h8_c00076{height:33.635742px;}
.ha_c00076{height:36.764648px;}
.h6_c00076{height:42.240234px;}
.h5_c00076{height:43.022461px;}
.h4_c00076{height:43.804688px;}
.h7_c00076{height:46.107422px;}
.h9_c00076{height:50.062500px;}
.hb_c00076{height:63.744141px;}
.h15_c00076{height:76.341797px;}
.h1_c00076{height:77.288818px;}
.h14_c00076{height:77.853516px;}
.h3_c00076{height:78.024902px;}
.h13_c00076{height:79.365234px;}
.h2_c00076{height:79.497070px;}
.h17_c00076{height:80.121094px;}
.h16_c00076{height:82.441406px;}
.h0_c00076{height:1263.000000px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x4_c00076{left:137.880150px;}
.x1_c00076{left:138.958350px;}
.x2_c00076{left:164.158785px;}
.x9_c00076{left:167.759565px;}
.x3_c00076{left:187.559685px;}
.x14_c00076{left:190.079400px;}
.x18_c00076{left:193.324305px;}
.x17_c00076{left:195.123870px;}
.xa_c00076{left:218.158785px;}
.x10_c00076{left:255.598500px;}
.x11_c00076{left:313.199385px;}
.xb_c00076{left:317.518635px;}
.x15_c00076{left:356.398635px;}
.xc_c00076{left:366.120000px;}
.x16_c00076{left:371.518635px;}
.x5_c00076{left:376.559685px;}
.x6_c00076{left:408.599070px;}
.x12_c00076{left:439.199850px;}
.x1b_c00076{left:635.399820px;}
.x13_c00076{left:645.119385px;}
.x1c_c00076{left:653.759535px;}
.x1d_c00076{left:658.798920px;}
.x1e_c00076{left:674.279850px;}
.xd_c00076{left:683.279250px;}
.xe_c00076{left:709.199850px;}
.x7_c00076{left:723.958920px;}
.x19_c00076{left:747.359850px;}
.x8_c00076{left:748.798560px;}
.xf_c00076{left:758.519670px;}
.x1a_c00076{left:767.159820px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls1b_c00076{letter-spacing:-6.773200pt;}
.ls6_c00076{letter-spacing:-6.734700pt;}
.lse_c00076{letter-spacing:-4.711700pt;}
.ls25_c00076{letter-spacing:-4.621953pt;}
.lsb_c00076{letter-spacing:-4.038300pt;}
.lsc_c00076{letter-spacing:-3.367000pt;}
.lsd_c00076{letter-spacing:-2.720667pt;}
.lsa_c00076{letter-spacing:-2.695000pt;}
.ls19_c00076{letter-spacing:-2.125200pt;}
.ls8_c00076{letter-spacing:-2.015300pt;}
.ls23_c00076{letter-spacing:-1.976913pt;}
.ls14_c00076{letter-spacing:-1.381733pt;}
.ls5_c00076{letter-spacing:-1.344000pt;}
.ls21_c00076{letter-spacing:-1.332333pt;}
.ls24_c00076{letter-spacing:-1.318400pt;}
.ls15_c00076{letter-spacing:-1.034867pt;}
.ls9_c00076{letter-spacing:-0.672000pt;}
.ls16_c00076{letter-spacing:-0.346867pt;}
.ls1e_c00076{letter-spacing:-0.333333pt;}
.ls4_c00076{letter-spacing:0.000000pt;}
.ls17_c00076{letter-spacing:0.346867pt;}
.ls18_c00076{letter-spacing:0.808400pt;}
.ls1d_c00076{letter-spacing:1.287400pt;}
.ls1_c00076{letter-spacing:1.344000pt;}
.ls2_c00076{letter-spacing:2.015300pt;}
.ls10_c00076{letter-spacing:2.665600pt;}
.ls3_c00076{letter-spacing:2.695000pt;}
.lsf_c00076{letter-spacing:3.717067pt;}
.ls1c_c00076{letter-spacing:4.203593pt;}
.ls22_c00076{letter-spacing:4.883667pt;}
.ls7_c00076{letter-spacing:5.083200pt;}
.ls1f_c00076{letter-spacing:5.285820pt;}
.ls0_c00076{letter-spacing:6.460200pt;}
.ls13_c00076{letter-spacing:7.348060pt;}
.ls11_c00076{letter-spacing:7.469000pt;}
.ls12_c00076{letter-spacing:9.442800pt;}
.ls1a_c00076{letter-spacing:9.985067pt;}
.ls20_c00076{letter-spacing:25.333333pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._19_c00076{margin-left:-41.471177pt;}
._18_c00076{margin-left:-36.323108pt;}
._1d_c00076{margin-left:-28.203485pt;}
._16_c00076{margin-left:-10.534031pt;}
._17_c00076{margin-left:-7.643946pt;}
._2_c00076{margin-left:-5.319785pt;}
._5_c00076{margin-left:-4.076262pt;}
._13_c00076{margin-left:-2.999177pt;}
._1_c00076{margin-left:-2.028062pt;}
._c_c00076{margin-left:-1.000946pt;}
._e_c00076{width:1.076923pt;}
._4_c00076{width:2.044215pt;}
._9_c00076{width:3.828623pt;}
._7_c00076{width:5.649108pt;}
._10_c00076{width:6.917346pt;}
._3_c00076{width:7.839246pt;}
._f_c00076{width:8.884938pt;}
._8_c00076{width:9.873015pt;}
._0_c00076{width:11.578377pt;}
._6_c00076{width:12.487515pt;}
._a_c00076{width:13.510377pt;}
._d_c00076{width:14.595862pt;}
._14_c00076{width:16.251375pt;}
._1b_c00076{width:18.375538pt;}
._12_c00076{width:20.012462pt;}
._11_c00076{width:21.870369pt;}
._b_c00076{width:23.620962pt;}
._15_c00076{width:24.585079pt;}
._1a_c00076{width:26.619815pt;}
._1c_c00076{width:30.219108pt;}
.fsf_c00076{font-size:23.333333pt;}
.fsc_c00076{font-size:24.666667pt;}
.fse_c00076{font-size:26.666667pt;}
.fsd_c00076{font-size:27.333333pt;}
.fsb_c00076{font-size:28.000000pt;}
.fs7_c00076{font-size:28.666667pt;}
.fs9_c00076{font-size:31.333333pt;}
.fs5_c00076{font-size:36.000000pt;}
.fs4_c00076{font-size:36.666667pt;}
.fs3_c00076{font-size:37.333333pt;}
.fs6_c00076{font-size:40.666667pt;}
.fs8_c00076{font-size:42.666667pt;}
.fsa_c00076{font-size:57.333333pt;}
.fs11_c00076{font-size:67.333333pt;}
.fs10_c00076{font-size:68.666667pt;}
.fs0_c00076{font-size:70.000000pt;}
.fs2_c00076{font-size:70.666667pt;}
.fs1_c00076{font-size:72.000000pt;}
.fs12_c00076{font-size:74.666667pt;}
.y0_c00076{bottom:0.000000pt;}
.y24_c00076{bottom:160.638733pt;}
.y23_c00076{bottom:186.878320pt;}
.y22_c00076{bottom:212.799333pt;}
.y21_c00076{bottom:212.799787pt;}
.y20_c00076{bottom:239.039373pt;}
.y1f_c00076{bottom:266.239720pt;}
.y1e_c00076{bottom:266.240200pt;}
.y1d_c00076{bottom:292.479773pt;}
.y1b_c00076{bottom:319.679427pt;}
.y1c_c00076{bottom:319.680133pt;}
.y1a_c00076{bottom:345.598573pt;}
.y19_c00076{bottom:372.478493pt;}
.y18_c00076{bottom:398.719680pt;}
.y17_c00076{bottom:451.519027pt;}
.y16_c00076{bottom:478.398947pt;}
.y15_c00076{bottom:504.640133pt;}
.y14_c00076{bottom:557.759720pt;}
.y13_c00076{bottom:557.760360pt;}
.y12_c00076{bottom:610.239253pt;}
.y11_c00076{bottom:637.119187pt;}
.y10_c00076{bottom:663.358933pt;}
.yf_c00076{bottom:668.479987pt;}
.ye_c00076{bottom:689.919440pt;}
.yd_c00076{bottom:689.921307pt;}
.yc_c00076{bottom:743.360987pt;}
.yb_c00076{bottom:770.240907pt;}
.ya_c00076{bottom:796.480493pt;}
.y9_c00076{bottom:823.040240pt;}
.y8_c00076{bottom:849.920160pt;}
.y7_c00076{bottom:876.159747pt;}
.y6_c00076{bottom:876.159947pt;}
.y5_c00076{bottom:902.719707pt;}
.y4_c00076{bottom:928.959293pt;}
.y2_c00076{bottom:955.518693pt;}
.y3_c00076{bottom:955.519040pt;}
.y1_c00076{bottom:1009.278813pt;}
.h12_c00076{height:24.335938pt;}
.hd_c00076{height:25.726562pt;}
.h11_c00076{height:26.354167pt;}
.hf_c00076{height:27.546875pt;}
.h10_c00076{height:27.812500pt;}
.he_c00076{height:28.507812pt;}
.hc_c00076{height:29.203125pt;}
.h8_c00076{height:29.898438pt;}
.ha_c00076{height:32.679688pt;}
.h6_c00076{height:37.546875pt;}
.h5_c00076{height:38.242188pt;}
.h4_c00076{height:38.937500pt;}
.h7_c00076{height:40.984375pt;}
.h9_c00076{height:44.500000pt;}
.hb_c00076{height:56.661458pt;}
.h15_c00076{height:67.859375pt;}
.h1_c00076{height:68.701172pt;}
.h14_c00076{height:69.203125pt;}
.h3_c00076{height:69.355469pt;}
.h13_c00076{height:70.546875pt;}
.h2_c00076{height:70.664062pt;}
.h17_c00076{height:71.218750pt;}
.h16_c00076{height:73.281250pt;}
.h0_c00076{height:1122.666667pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x4_c00076{left:122.560133pt;}
.x1_c00076{left:123.518533pt;}
.x2_c00076{left:145.918920pt;}
.x9_c00076{left:149.119613pt;}
.x3_c00076{left:166.719720pt;}
.x14_c00076{left:168.959467pt;}
.x18_c00076{left:171.843827pt;}
.x17_c00076{left:173.443440pt;}
.xa_c00076{left:193.918920pt;}
.x10_c00076{left:227.198667pt;}
.x11_c00076{left:278.399453pt;}
.xb_c00076{left:282.238787pt;}
.x15_c00076{left:316.798787pt;}
.xc_c00076{left:325.440000pt;}
.x16_c00076{left:330.238787pt;}
.x5_c00076{left:334.719720pt;}
.x6_c00076{left:363.199173pt;}
.x12_c00076{left:390.399867pt;}
.x1b_c00076{left:564.799840pt;}
.x13_c00076{left:573.439453pt;}
.x1c_c00076{left:581.119587pt;}
.x1d_c00076{left:585.599040pt;}
.x1e_c00076{left:599.359867pt;}
.xd_c00076{left:607.359333pt;}
.xe_c00076{left:630.399867pt;}
.x7_c00076{left:643.519040pt;}
.x19_c00076{left:664.319867pt;}
.x8_c00076{left:665.598720pt;}
.xf_c00076{left:674.239707pt;}
.x1a_c00076{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c1826e7425fb56144730df1.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_9ee01bdb1fabadfb041f5034.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_991c1bc5fd82cf83ee5e7b57.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_10853699540f4dbd28ea21e8.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00077{transform:matrix(0.133178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133178,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.137019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137019,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m19_c00077{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m25_c00077{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m18_c00077{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00077{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1f_c00077{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m22_c00077{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.226619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226619,0.000000,0.000000,0.250000,0,0);}
.m24_c00077{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m20_c00077{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m21_c00077{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m1a_c00077{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m14_c00077{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.256536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256536,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m1b_c00077{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m23_c00077{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m1d_c00077{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.lsc_c00077{letter-spacing:-21.808643px;}
.ls12_c00077{letter-spacing:-14.075850px;}
.ls24_c00077{letter-spacing:-12.799500px;}
.ls10_c00077{letter-spacing:-12.316200px;}
.lsf_c00077{letter-spacing:-12.051000px;}
.ls13_c00077{letter-spacing:-11.704500px;}
.ls1e_c00077{letter-spacing:-8.914500px;}
.lsa_c00077{letter-spacing:-8.558460px;}
.ls1b_c00077{letter-spacing:-8.175038px;}
.ls2c_c00077{letter-spacing:-7.426125px;}
.ls15_c00077{letter-spacing:-6.703200px;}
.ls2b_c00077{letter-spacing:-6.685875px;}
.lsd_c00077{letter-spacing:-6.330150px;}
.ls22_c00077{letter-spacing:-5.945625px;}
.ls1c_c00077{letter-spacing:-5.196713px;}
.ls28_c00077{letter-spacing:-4.781775px;}
.ls21_c00077{letter-spacing:-4.456463px;}
.ls1f_c00077{letter-spacing:-3.717000px;}
.ls16_c00077{letter-spacing:-3.649050px;}
.ls1a_c00077{letter-spacing:-2.972700px;}
.ls8_c00077{letter-spacing:-2.968875px;}
.ls14_c00077{letter-spacing:-2.869350px;}
.ls6_c00077{letter-spacing:-2.229413px;}
.lse_c00077{letter-spacing:-2.111378px;}
.ls19_c00077{letter-spacing:-1.699500px;}
.ls20_c00077{letter-spacing:-1.489163px;}
.lsb_c00077{letter-spacing:-1.361700px;}
.ls11_c00077{letter-spacing:-1.059300px;}
.ls27_c00077{letter-spacing:-0.873923px;}
.ls29_c00077{letter-spacing:-0.849420px;}
.ls26_c00077{letter-spacing:-0.747300px;}
.ls1d_c00077{letter-spacing:-0.740250px;}
.ls7_c00077{letter-spacing:0.000000px;}
.ls4_c00077{letter-spacing:0.740250px;}
.ls2a_c00077{letter-spacing:0.788558px;}
.ls5_c00077{letter-spacing:0.801150px;}
.ls1_c00077{letter-spacing:1.361700px;}
.ls17_c00077{letter-spacing:1.481393px;}
.ls18_c00077{letter-spacing:2.289375px;}
.ls0_c00077{letter-spacing:2.718300px;}
.ls23_c00077{letter-spacing:3.705075px;}
.ls25_c00077{letter-spacing:4.697100px;}
.ls2_c00077{letter-spacing:4.758810px;}
.ls3_c00077{letter-spacing:6.120000px;}
.ls9_c00077{letter-spacing:6.145500px;}
.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;}
._2_c00077{margin-left:-39.399011px;}
._1a_c00077{margin-left:-15.975983px;}
._7_c00077{margin-left:-12.413400px;}
._16_c00077{margin-left:-9.402750px;}
._5_c00077{margin-left:-8.111312px;}
._3_c00077{margin-left:-1.611328px;}
._6_c00077{width:1.826018px;}
._0_c00077{width:4.019341px;}
._f_c00077{width:5.036167px;}
._1_c00077{width:6.809304px;}
._d_c00077{width:8.135217px;}
._22_c00077{width:9.231952px;}
._e_c00077{width:10.308004px;}
._b_c00077{width:11.551407px;}
._8_c00077{width:12.593299px;}
._17_c00077{width:14.196664px;}
._c_c00077{width:15.225570px;}
._10_c00077{width:16.569431px;}
._21_c00077{width:17.951805px;}
._9_c00077{width:19.388339px;}
._19_c00077{width:21.610456px;}
._4_c00077{width:23.271409px;}
._1d_c00077{width:25.016022px;}
._20_c00077{width:26.581576px;}
._1c_c00077{width:27.803668px;}
._a_c00077{width:28.974161px;}
._1e_c00077{width:33.159946px;}
._18_c00077{width:36.359748px;}
._1b_c00077{width:39.751618px;}
._1f_c00077{width:41.341566px;}
._12_c00077{width:67.383671px;}
._15_c00077{width:71.032827px;}
._11_c00077{width:72.453893px;}
._14_c00077{width:75.431980px;}
._13_c00077{width:81.273269px;}
.fc0_c00077{color:transparent;}
.fsa_c00077{font-size:16.500000px;}
.fs14_c00077{font-size:25.500000px;}
.fs5_c00077{font-size:40.500000px;}
.fs2_c00077{font-size:51.000000px;}
.fs3_c00077{font-size:54.000000px;}
.fsb_c00077{font-size:57.000000px;}
.fs4_c00077{font-size:60.750000px;}
.fs15_c00077{font-size:75.750000px;}
.fsf_c00077{font-size:77.250000px;}
.fs7_c00077{font-size:78.000000px;}
.fs1_c00077{font-size:78.750000px;}
.fs13_c00077{font-size:79.500000px;}
.fs6_c00077{font-size:80.250000px;}
.fs10_c00077{font-size:81.000000px;}
.fs0_c00077{font-size:81.750000px;}
.fs12_c00077{font-size:82.500000px;}
.fse_c00077{font-size:83.250000px;}
.fs8_c00077{font-size:84.000000px;}
.fs11_c00077{font-size:84.750000px;}
.fs9_c00077{font-size:101.250000px;}
.fsd_c00077{font-size:104.250000px;}
.fsc_c00077{font-size:114.750000px;}
.y0_c00077{bottom:0.000000px;}
.y22_c00077{bottom:325.799010px;}
.y23_c00077{bottom:325.799535px;}
.y21_c00077{bottom:356.041035px;}
.y20_c00077{bottom:385.560750px;}
.y1f_c00077{bottom:385.561965px;}
.y1e_c00077{bottom:415.081485px;}
.y1d_c00077{bottom:475.201125px;}
.y1c_c00077{bottom:505.080855px;}
.y1a_c00077{bottom:534.960555px;}
.y1b_c00077{bottom:534.960570px;}
.y19_c00077{bottom:564.659130px;}
.y18_c00077{bottom:623.518845px;}
.y17_c00077{bottom:653.758755px;}
.y16_c00077{bottom:682.919910px;}
.y15_c00077{bottom:713.159820px;}
.y14_c00077{bottom:749.520270px;}
.y13_c00077{bottom:752.039985px;}
.y11_c00077{bottom:772.921095px;}
.y12_c00077{bottom:772.921140px;}
.yf_c00077{bottom:803.160960px;}
.y10_c00077{bottom:803.161005px;}
.ye_c00077{bottom:833.400885px;}
.yd_c00077{bottom:833.401020px;}
.yc_c00077{bottom:893.160465px;}
.yb_c00077{bottom:923.040990px;}
.ya_c00077{bottom:952.919955px;}
.y9_c00077{bottom:952.920135px;}
.y8_c00077{bottom:982.439670px;}
.y7_c00077{bottom:982.440555px;}
.y6_c00077{bottom:1012.320285px;}
.y5_c00077{bottom:1012.320330px;}
.y4_c00077{bottom:1042.560240px;}
.y3_c00077{bottom:1072.440855px;}
.y2_c00077{bottom:1074.960570px;}
.y1_c00077{bottom:1132.559685px;}
.hc_c00077{height:17.208984px;}
.h18_c00077{height:25.699219px;}
.h6_c00077{height:42.240234px;}
.h3_c00077{height:53.191406px;}
.h4_c00077{height:56.320312px;}
.hd_c00077{height:56.332031px;}
.h5_c00077{height:60.038086px;}
.h1b_c00077{height:74.344482px;}
.h16_c00077{height:76.552734px;}
.h9_c00077{height:77.085938px;}
.h2_c00077{height:77.288818px;}
.h1a_c00077{height:77.853516px;}
.h17_c00077{height:78.024902px;}
.h8_c00077{height:78.609375px;}
.h15_c00077{height:78.760986px;}
.h7_c00077{height:79.309570px;}
.h12_c00077{height:79.497070px;}
.h1_c00077{height:80.233154px;}
.h11_c00077{height:80.569336px;}
.h19_c00077{height:80.876953px;}
.h14_c00077{height:80.969238px;}
.ha_c00077{height:83.015625px;}
.h13_c00077{height:83.177490px;}
.h10_c00077{height:86.827148px;}
.hb_c00077{height:105.600586px;}
.hf_c00077{height:108.729492px;}
.he_c00077{height:119.680664px;}
.h0_c00077{height:1263.000000px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x18_c00077{left:138.958470px;}
.x1_c00077{left:140.039400px;}
.x2f_c00077{left:141.118590px;}
.x3_c00077{left:165.239850px;}
.x4_c00077{left:183.958950px;}
.x2_c00077{left:206.998950px;}
.xd_c00077{left:242.279850px;}
.x24_c00077{left:291.238785px;}
.x12_c00077{left:297.000000px;}
.x25_c00077{left:313.919535px;}
.x16_c00077{left:316.080000px;}
.xe_c00077{left:319.679100px;}
.x17_c00077{left:331.559100px;}
.x30_c00077{left:333.719535px;}
.xf_c00077{left:345.599700px;}
.x1a_c00077{left:349.559685px;}
.x13_c00077{left:357.838950px;}
.x1b_c00077{left:373.319850px;}
.x1c_c00077{left:375.839535px;}
.x2a_c00077{left:378.718530px;}
.x10_c00077{left:389.519070px;}
.x1d_c00077{left:390.598530px;}
.x22_c00077{left:406.799565px;}
.x26_c00077{left:409.319235px;}
.x23_c00077{left:421.199385px;}
.x2d_c00077{left:428.399235px;}
.x2b_c00077{left:432.718500px;}
.x2e_c00077{left:446.038920px;}
.x2c_c00077{left:450.359850px;}
.x11_c00077{left:454.319820px;}
.x5_c00077{left:483.119385px;}
.x6_c00077{left:501.119985px;}
.x27_c00077{left:508.319820px;}
.x7_c00077{left:567.359250px;}
.x1e_c00077{left:589.319820px;}
.x28_c00077{left:604.078770px;}
.x8_c00077{left:612.359850px;}
.x29_c00077{left:629.999400px;}
.x9_c00077{left:634.318770px;}
.x1f_c00077{left:642.958920px;}
.xa_c00077{left:652.319235px;}
.x20_c00077{left:688.679670px;}
.x14_c00077{left:702.359250px;}
.x21_c00077{left:714.959385px;}
.x15_c00077{left:716.399820px;}
.xb_c00077{left:746.278800px;}
.xc_c00077{left:760.319235px;}
.x19_c00077{left:773.278755px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.lsc_c00077{letter-spacing:-19.385460pt;}
.ls12_c00077{letter-spacing:-12.511867pt;}
.ls24_c00077{letter-spacing:-11.377333pt;}
.ls10_c00077{letter-spacing:-10.947733pt;}
.lsf_c00077{letter-spacing:-10.712000pt;}
.ls13_c00077{letter-spacing:-10.404000pt;}
.ls1e_c00077{letter-spacing:-7.924000pt;}
.lsa_c00077{letter-spacing:-7.607520pt;}
.ls1b_c00077{letter-spacing:-7.266700pt;}
.ls2c_c00077{letter-spacing:-6.601000pt;}
.ls15_c00077{letter-spacing:-5.958400pt;}
.ls2b_c00077{letter-spacing:-5.943000pt;}
.lsd_c00077{letter-spacing:-5.626800pt;}
.ls22_c00077{letter-spacing:-5.285000pt;}
.ls1c_c00077{letter-spacing:-4.619300pt;}
.ls28_c00077{letter-spacing:-4.250467pt;}
.ls21_c00077{letter-spacing:-3.961300pt;}
.ls1f_c00077{letter-spacing:-3.304000pt;}
.ls16_c00077{letter-spacing:-3.243600pt;}
.ls1a_c00077{letter-spacing:-2.642400pt;}
.ls8_c00077{letter-spacing:-2.639000pt;}
.ls14_c00077{letter-spacing:-2.550533pt;}
.ls6_c00077{letter-spacing:-1.981700pt;}
.lse_c00077{letter-spacing:-1.876780pt;}
.ls19_c00077{letter-spacing:-1.510667pt;}
.ls20_c00077{letter-spacing:-1.323700pt;}
.lsb_c00077{letter-spacing:-1.210400pt;}
.ls11_c00077{letter-spacing:-0.941600pt;}
.ls27_c00077{letter-spacing:-0.776820pt;}
.ls29_c00077{letter-spacing:-0.755040pt;}
.ls26_c00077{letter-spacing:-0.664267pt;}
.ls1d_c00077{letter-spacing:-0.658000pt;}
.ls7_c00077{letter-spacing:0.000000pt;}
.ls4_c00077{letter-spacing:0.658000pt;}
.ls2a_c00077{letter-spacing:0.700940pt;}
.ls5_c00077{letter-spacing:0.712133pt;}
.ls1_c00077{letter-spacing:1.210400pt;}
.ls17_c00077{letter-spacing:1.316793pt;}
.ls18_c00077{letter-spacing:2.035000pt;}
.ls0_c00077{letter-spacing:2.416267pt;}
.ls23_c00077{letter-spacing:3.293400pt;}
.ls25_c00077{letter-spacing:4.175200pt;}
.ls2_c00077{letter-spacing:4.230053pt;}
.ls3_c00077{letter-spacing:5.440000pt;}
.ls9_c00077{letter-spacing:5.462667pt;}
.ws0_c00077{word-spacing:0.000000pt;}
._2_c00077{margin-left:-35.021343pt;}
._1a_c00077{margin-left:-14.200874pt;}
._7_c00077{margin-left:-11.034133pt;}
._16_c00077{margin-left:-8.358000pt;}
._5_c00077{margin-left:-7.210055pt;}
._3_c00077{margin-left:-1.432292pt;}
._6_c00077{width:1.623127pt;}
._0_c00077{width:3.572747pt;}
._f_c00077{width:4.476592pt;}
._1_c00077{width:6.052715pt;}
._d_c00077{width:7.231304pt;}
._22_c00077{width:8.206179pt;}
._e_c00077{width:9.162670pt;}
._b_c00077{width:10.267917pt;}
._8_c00077{width:11.194043pt;}
._17_c00077{width:12.619257pt;}
._c_c00077{width:13.533840pt;}
._10_c00077{width:14.728383pt;}
._21_c00077{width:15.957160pt;}
._9_c00077{width:17.234079pt;}
._19_c00077{width:19.209294pt;}
._4_c00077{width:20.685697pt;}
._1d_c00077{width:22.236464pt;}
._20_c00077{width:23.628067pt;}
._1c_c00077{width:24.714372pt;}
._a_c00077{width:25.754809pt;}
._1e_c00077{width:29.475508pt;}
._18_c00077{width:32.319776pt;}
._1b_c00077{width:35.334772pt;}
._1f_c00077{width:36.748058pt;}
._12_c00077{width:59.896596pt;}
._15_c00077{width:63.140291pt;}
._11_c00077{width:64.403460pt;}
._14_c00077{width:67.050649pt;}
._13_c00077{width:72.242906pt;}
.fsa_c00077{font-size:14.666667pt;}
.fs14_c00077{font-size:22.666667pt;}
.fs5_c00077{font-size:36.000000pt;}
.fs2_c00077{font-size:45.333333pt;}
.fs3_c00077{font-size:48.000000pt;}
.fsb_c00077{font-size:50.666667pt;}
.fs4_c00077{font-size:54.000000pt;}
.fs15_c00077{font-size:67.333333pt;}
.fsf_c00077{font-size:68.666667pt;}
.fs7_c00077{font-size:69.333333pt;}
.fs1_c00077{font-size:70.000000pt;}
.fs13_c00077{font-size:70.666667pt;}
.fs6_c00077{font-size:71.333333pt;}
.fs10_c00077{font-size:72.000000pt;}
.fs0_c00077{font-size:72.666667pt;}
.fs12_c00077{font-size:73.333333pt;}
.fse_c00077{font-size:74.000000pt;}
.fs8_c00077{font-size:74.666667pt;}
.fs11_c00077{font-size:75.333333pt;}
.fs9_c00077{font-size:90.000000pt;}
.fsd_c00077{font-size:92.666667pt;}
.fsc_c00077{font-size:102.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y22_c00077{bottom:289.599120pt;}
.y23_c00077{bottom:289.599587pt;}
.y21_c00077{bottom:316.480920pt;}
.y20_c00077{bottom:342.720667pt;}
.y1f_c00077{bottom:342.721747pt;}
.y1e_c00077{bottom:368.961320pt;}
.y1d_c00077{bottom:422.401000pt;}
.y1c_c00077{bottom:448.960760pt;}
.y1a_c00077{bottom:475.520493pt;}
.y1b_c00077{bottom:475.520507pt;}
.y19_c00077{bottom:501.919227pt;}
.y18_c00077{bottom:554.238973pt;}
.y17_c00077{bottom:581.118893pt;}
.y16_c00077{bottom:607.039920pt;}
.y15_c00077{bottom:633.919840pt;}
.y14_c00077{bottom:666.240240pt;}
.y13_c00077{bottom:668.479987pt;}
.y11_c00077{bottom:687.040973pt;}
.y12_c00077{bottom:687.041013pt;}
.yf_c00077{bottom:713.920853pt;}
.y10_c00077{bottom:713.920893pt;}
.ye_c00077{bottom:740.800787pt;}
.yd_c00077{bottom:740.800907pt;}
.yc_c00077{bottom:793.920413pt;}
.yb_c00077{bottom:820.480880pt;}
.ya_c00077{bottom:847.039960pt;}
.y9_c00077{bottom:847.040120pt;}
.y8_c00077{bottom:873.279707pt;}
.y7_c00077{bottom:873.280493pt;}
.y6_c00077{bottom:899.840253pt;}
.y5_c00077{bottom:899.840293pt;}
.y4_c00077{bottom:926.720213pt;}
.y3_c00077{bottom:953.280760pt;}
.y2_c00077{bottom:955.520507pt;}
.y1_c00077{bottom:1006.719720pt;}
.hc_c00077{height:15.296875pt;}
.h18_c00077{height:22.843750pt;}
.h6_c00077{height:37.546875pt;}
.h3_c00077{height:47.281250pt;}
.h4_c00077{height:50.062500pt;}
.hd_c00077{height:50.072917pt;}
.h5_c00077{height:53.367188pt;}
.h1b_c00077{height:66.083984pt;}
.h16_c00077{height:68.046875pt;}
.h9_c00077{height:68.520833pt;}
.h2_c00077{height:68.701172pt;}
.h1a_c00077{height:69.203125pt;}
.h17_c00077{height:69.355469pt;}
.h8_c00077{height:69.875000pt;}
.h15_c00077{height:70.009766pt;}
.h7_c00077{height:70.497396pt;}
.h12_c00077{height:70.664062pt;}
.h1_c00077{height:71.318359pt;}
.h11_c00077{height:71.617188pt;}
.h19_c00077{height:71.890625pt;}
.h14_c00077{height:71.972656pt;}
.ha_c00077{height:73.791667pt;}
.h13_c00077{height:73.935547pt;}
.h10_c00077{height:77.179688pt;}
.hb_c00077{height:93.867188pt;}
.hf_c00077{height:96.648438pt;}
.he_c00077{height:106.382812pt;}
.h0_c00077{height:1122.666667pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x18_c00077{left:123.518640pt;}
.x1_c00077{left:124.479467pt;}
.x2f_c00077{left:125.438747pt;}
.x3_c00077{left:146.879867pt;}
.x4_c00077{left:163.519067pt;}
.x2_c00077{left:183.999067pt;}
.xd_c00077{left:215.359867pt;}
.x24_c00077{left:258.878920pt;}
.x12_c00077{left:264.000000pt;}
.x25_c00077{left:279.039587pt;}
.x16_c00077{left:280.960000pt;}
.xe_c00077{left:284.159200pt;}
.x17_c00077{left:294.719200pt;}
.x30_c00077{left:296.639587pt;}
.xf_c00077{left:307.199733pt;}
.x1a_c00077{left:310.719720pt;}
.x13_c00077{left:318.079067pt;}
.x1b_c00077{left:331.839867pt;}
.x1c_c00077{left:334.079587pt;}
.x2a_c00077{left:336.638693pt;}
.x10_c00077{left:346.239173pt;}
.x1d_c00077{left:347.198693pt;}
.x22_c00077{left:361.599613pt;}
.x26_c00077{left:363.839320pt;}
.x23_c00077{left:374.399453pt;}
.x2d_c00077{left:380.799320pt;}
.x2b_c00077{left:384.638667pt;}
.x2e_c00077{left:396.479040pt;}
.x2c_c00077{left:400.319867pt;}
.x11_c00077{left:403.839840pt;}
.x5_c00077{left:429.439453pt;}
.x6_c00077{left:445.439987pt;}
.x27_c00077{left:451.839840pt;}
.x7_c00077{left:504.319333pt;}
.x1e_c00077{left:523.839840pt;}
.x28_c00077{left:536.958907pt;}
.x8_c00077{left:544.319867pt;}
.x29_c00077{left:559.999467pt;}
.x9_c00077{left:563.838907pt;}
.x1f_c00077{left:571.519040pt;}
.xa_c00077{left:579.839320pt;}
.x20_c00077{left:612.159707pt;}
.x14_c00077{left:624.319333pt;}
.x21_c00077{left:635.519453pt;}
.x15_c00077{left:636.799840pt;}
.xb_c00077{left:663.358933pt;}
.xc_c00077{left:675.839320pt;}
.x19_c00077{left:687.358893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da8db5422e7ed2356feff2de.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.364746;font-style:normal;font-weight:normal;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_3dc16f732f4b4ff55173bb6e.woff2')format("woff");}.ff2_c00078{font-family:ff2_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:ff3_c00078;src:url('chunks/assets/font_8e73969de123837f6822d754.woff2')format("woff");}.ff3_c00078{font-family:ff3_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;}
.m0_c00078{transform:matrix(0.123656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123656,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls3_c00078{letter-spacing:0.000000px;}
.ls1_c00078{letter-spacing:1.363050px;}
.ls0_c00078{letter-spacing:3.034125px;}
.ls2_c00078{letter-spacing:4.547700px;}
.ls4_c00078{letter-spacing:12.244050px;}
.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;}
._1_c00078{width:491.201073px;}
._0_c00078{width:580.061197px;}
.fc0_c00078{color:transparent;}
.fs2_c00078{font-size:58.500000px;}
.fs3_c00078{font-size:66.750000px;}
.fs1_c00078{font-size:67.500000px;}
.fs0_c00078{font-size:69.750000px;}
.y0_c00078{bottom:0.000000px;}
.y2_c00078{bottom:321.119385px;}
.y4_c00078{bottom:732.599070px;}
.y3_c00078{bottom:909.359805px;}
.y1_c00078{bottom:1014.119940px;}
.h3_c00078{height:61.013672px;}
.h4_c00078{height:67.271484px;}
.h2_c00078{height:68.027344px;}
.h1_c00078{height:68.932617px;}
.h0_c00078{height:1263.000000px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x2_c00078{left:189.718500px;}
.x1_c00078{left:334.798950px;}
.x4_c00078{left:602.279250px;}
.x3_c00078{left:718.199385px;}
.x5_c00078{left:741.598530px;}
.x6_c00078{left:759.239820px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls3_c00078{letter-spacing:0.000000pt;}
.ls1_c00078{letter-spacing:1.211600pt;}
.ls0_c00078{letter-spacing:2.697000pt;}
.ls2_c00078{letter-spacing:4.042400pt;}
.ls4_c00078{letter-spacing:10.883600pt;}
.ws0_c00078{word-spacing:0.000000pt;}
._1_c00078{width:436.623176pt;}
._0_c00078{width:515.609953pt;}
.fs2_c00078{font-size:52.000000pt;}
.fs3_c00078{font-size:59.333333pt;}
.fs1_c00078{font-size:60.000000pt;}
.fs0_c00078{font-size:62.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y2_c00078{bottom:285.439453pt;}
.y4_c00078{bottom:651.199173pt;}
.y3_c00078{bottom:808.319827pt;}
.y1_c00078{bottom:901.439947pt;}
.h3_c00078{height:54.234375pt;}
.h4_c00078{height:59.796875pt;}
.h2_c00078{height:60.468750pt;}
.h1_c00078{height:61.273438pt;}
.h0_c00078{height:1122.666667pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x2_c00078{left:168.638667pt;}
.x1_c00078{left:297.599067pt;}
.x4_c00078{left:535.359333pt;}
.x3_c00078{left:638.399453pt;}
.x5_c00078{left:659.198693pt;}
.x6_c00078{left:674.879840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_019c2289ab78bace69db58cd.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.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);}
.m1_c00079{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.190341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190341,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls7_c00079{letter-spacing:-6.897660px;}
.ls5_c00079{letter-spacing:-5.360175px;}
.ls0_c00079{letter-spacing:1.073250px;}
.ls1_c00079{letter-spacing:2.146500px;}
.ls4_c00079{letter-spacing:3.096060px;}
.ls2_c00079{letter-spacing:5.360175px;}
.ls6_c00079{letter-spacing:6.426000px;}
.ls3_c00079{letter-spacing:18.212175px;}
.ls8_c00079{letter-spacing:29.997000px;}
.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;}
._3_c00079{width:7.424089px;}
._2_c00079{width:17.881200px;}
._0_c00079{width:23.036443px;}
._1_c00079{width:24.151543px;}
.fc0_c00079{color:transparent;}
.fs1_c00079{font-size:66.000000px;}
.fs0_c00079{font-size:67.500000px;}
.y0_c00079{bottom:0.000000px;}
.y1_c00079{bottom:1162.440315px;}
.h2_c00079{height:66.515625px;}
.h1_c00079{height:68.027344px;}
.h0_c00079{height:1263.000000px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:304.918350px;}
.x2_c00079{left:345.238785px;}
.x3_c00079{left:368.278800px;}
.x4_c00079{left:517.678530px;}
.x5_c00079{left:535.679070px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls7_c00079{letter-spacing:-6.131253pt;}
.ls5_c00079{letter-spacing:-4.764600pt;}
.ls0_c00079{letter-spacing:0.954000pt;}
.ls1_c00079{letter-spacing:1.908000pt;}
.ls4_c00079{letter-spacing:2.752053pt;}
.ls2_c00079{letter-spacing:4.764600pt;}
.ls6_c00079{letter-spacing:5.712000pt;}
.ls3_c00079{letter-spacing:16.188600pt;}
.ls8_c00079{letter-spacing:26.664000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
._3_c00079{width:6.599190pt;}
._2_c00079{width:15.894400pt;}
._0_c00079{width:20.476838pt;}
._1_c00079{width:21.468038pt;}
.fs1_c00079{font-size:58.666667pt;}
.fs0_c00079{font-size:60.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y1_c00079{bottom:1033.280280pt;}
.h2_c00079{height:59.125000pt;}
.h1_c00079{height:60.468750pt;}
.h0_c00079{height:1122.666667pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:271.038533pt;}
.x2_c00079{left:306.878920pt;}
.x3_c00079{left:327.358933pt;}
.x4_c00079{left:460.158693pt;}
.x5_c00079{left:476.159173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34ca09cf43bf8d7a17df9b23.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_71cd666a1111210b0b73a941.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_0016011fd6c21f57ea7650d6.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_e353782b528ecf52a56d1655.woff2')format("woff");}.ff4_c00080{font-family:ff4_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;}
.ma_c00080{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{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);}
.m9_c00080{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00080{vertical-align:0.000000px;}
.lsc_c00080{letter-spacing:-11.212500px;}
.lsa_c00080{letter-spacing:-8.914500px;}
.ls9_c00080{letter-spacing:-5.945625px;}
.lsd_c00080{letter-spacing:-4.875000px;}
.lsb_c00080{letter-spacing:-4.839488px;}
.ls6_c00080{letter-spacing:-4.456463px;}
.lse_c00080{letter-spacing:-3.795000px;}
.ls4_c00080{letter-spacing:-3.717000px;}
.ls3_c00080{letter-spacing:-2.968875px;}
.ls10_c00080{letter-spacing:-2.433375px;}
.ls2_c00080{letter-spacing:-2.229413px;}
.ls11_c00080{letter-spacing:-1.823310px;}
.ls8_c00080{letter-spacing:-1.489163px;}
.lsf_c00080{letter-spacing:-0.824175px;}
.ls5_c00080{letter-spacing:-0.740250px;}
.ls7_c00080{letter-spacing:0.000000px;}
.ls1_c00080{letter-spacing:0.825675px;}
.ls0_c00080{letter-spacing:2.968875px;}
.ls12_c00080{letter-spacing:3.950843px;}
.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;}
._a_c00080{margin-left:-50.809530px;}
._20_c00080{margin-left:-49.014223px;}
._21_c00080{margin-left:-13.888632px;}
._6_c00080{margin-left:-10.163222px;}
._2_c00080{margin-left:-8.028667px;}
._5_c00080{margin-left:-6.363327px;}
._18_c00080{margin-left:-5.330201px;}
._1_c00080{margin-left:-3.268571px;}
._3_c00080{margin-left:-1.908127px;}
._9_c00080{width:1.051847px;}
._4_c00080{width:2.204406px;}
._7_c00080{width:3.882524px;}
._0_c00080{width:5.436841px;}
._8_c00080{width:6.717301px;}
._10_c00080{width:8.565221px;}
._12_c00080{width:9.662358px;}
._f_c00080{width:11.106350px;}
._11_c00080{width:12.731304px;}
._1f_c00080{width:13.817564px;}
._1d_c00080{width:14.829650px;}
._1c_c00080{width:16.358797px;}
._e_c00080{width:17.945104px;}
._1a_c00080{width:20.010048px;}
._b_c00080{width:21.312841px;}
._c_c00080{width:23.639844px;}
._19_c00080{width:24.687427px;}
._d_c00080{width:26.838178px;}
._1b_c00080{width:28.606012px;}
._1e_c00080{width:39.185673px;}
._17_c00080{width:49.893890px;}
._14_c00080{width:50.954147px;}
._15_c00080{width:52.559266px;}
._16_c00080{width:53.660517px;}
._13_c00080{width:55.677454px;}
.fc0_c00080{color:transparent;}
.fs8_c00080{font-size:74.250000px;}
.fs4_c00080{font-size:75.000000px;}
.fs2_c00080{font-size:78.000000px;}
.fs1_c00080{font-size:78.750000px;}
.fs9_c00080{font-size:80.250000px;}
.fs6_c00080{font-size:81.000000px;}
.fs0_c00080{font-size:81.750000px;}
.fs5_c00080{font-size:82.500000px;}
.fs7_c00080{font-size:84.000000px;}
.fs3_c00080{font-size:86.250000px;}
.y0_c00080{bottom:0.000000px;}
.y20_c00080{bottom:215.999220px;}
.y1f_c00080{bottom:245.878950px;}
.y1e_c00080{bottom:245.879820px;}
.y1d_c00080{bottom:275.759535px;}
.y1c_c00080{bottom:275.759880px;}
.y1b_c00080{bottom:305.279415px;}
.y1a_c00080{bottom:334.798950px;}
.y19_c00080{bottom:334.799970px;}
.y18_c00080{bottom:364.679700px;}
.y17_c00080{bottom:430.918950px;}
.y16_c00080{bottom:454.319820px;}
.y15_c00080{bottom:454.325370px;}
.y14_c00080{bottom:484.923660px;}
.y13_c00080{bottom:514.803390px;}
.y12_c00080{bottom:544.683105px;}
.y11_c00080{bottom:603.721875px;}
.y10_c00080{bottom:633.601590px;}
.yf_c00080{bottom:663.841500px;}
.ye_c00080{bottom:693.361035px;}
.yd_c00080{bottom:723.600945px;}
.yc_c00080{bottom:783.002010px;}
.yb_c00080{bottom:813.241935px;}
.ya_c00080{bottom:843.481845px;}
.y9_c00080{bottom:873.001380px;}
.y8_c00080{bottom:902.881095px;}
.y7_c00080{bottom:932.400630px;}
.y6_c00080{bottom:962.998920px;}
.y4_c00080{bottom:992.519760px;}
.y5_c00080{bottom:992.520270px;}
.y3_c00080{bottom:1052.279205px;}
.y2_c00080{bottom:1081.440360px;}
.y1_c00080{bottom:1141.199805px;}
.hc_c00080{height:72.872314px;}
.h6_c00080{height:73.608398px;}
.h3_c00080{height:76.552734px;}
.h2_c00080{height:77.288818px;}
.h7_c00080{height:78.222656px;}
.hd_c00080{height:78.760986px;}
.h9_c00080{height:79.365234px;}
.h1_c00080{height:80.233154px;}
.ha_c00080{height:81.632812px;}
.hb_c00080{height:82.441406px;}
.h8_c00080{height:83.144531px;}
.h4_c00080{height:84.649658px;}
.h5_c00080{height:85.239258px;}
.h0_c00080{height:1263.000000px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x6_c00080{left:140.760570px;}
.x1_c00080{left:141.838950px;}
.x3_c00080{left:142.919340px;}
.x7_c00080{left:173.159850px;}
.xb_c00080{left:199.439685px;}
.x8_c00080{left:205.919535px;}
.x2_c00080{left:208.439250px;}
.xc_c00080{left:294.478635px;}
.xd_c00080{left:317.159385px;}
.xe_c00080{left:337.318800px;}
.xf_c00080{left:414.358665px;}
.x9_c00080{left:454.679070px;}
.xa_c00080{left:489.599070px;}
.x15_c00080{left:540.000000px;}
.x16_c00080{left:554.038920px;}
.x4_c00080{left:655.918350px;}
.x10_c00080{left:658.798920px;}
.x11_c00080{left:675.000000px;}
.x5_c00080{left:681.479685px;}
.x14_c00080{left:739.078770px;}
.x12_c00080{left:744.119985px;}
.x13_c00080{left:760.319235px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.lsc_c00080{letter-spacing:-9.966667pt;}
.lsa_c00080{letter-spacing:-7.924000pt;}
.ls9_c00080{letter-spacing:-5.285000pt;}
.lsd_c00080{letter-spacing:-4.333333pt;}
.lsb_c00080{letter-spacing:-4.301767pt;}
.ls6_c00080{letter-spacing:-3.961300pt;}
.lse_c00080{letter-spacing:-3.373333pt;}
.ls4_c00080{letter-spacing:-3.304000pt;}
.ls3_c00080{letter-spacing:-2.639000pt;}
.ls10_c00080{letter-spacing:-2.163000pt;}
.ls2_c00080{letter-spacing:-1.981700pt;}
.ls11_c00080{letter-spacing:-1.620720pt;}
.ls8_c00080{letter-spacing:-1.323700pt;}
.lsf_c00080{letter-spacing:-0.732600pt;}
.ls5_c00080{letter-spacing:-0.658000pt;}
.ls7_c00080{letter-spacing:0.000000pt;}
.ls1_c00080{letter-spacing:0.733933pt;}
.ls0_c00080{letter-spacing:2.639000pt;}
.ls12_c00080{letter-spacing:3.511860pt;}
.ws0_c00080{word-spacing:0.000000pt;}
._a_c00080{margin-left:-45.164026pt;}
._20_c00080{margin-left:-43.568198pt;}
._21_c00080{margin-left:-12.345451pt;}
._6_c00080{margin-left:-9.033975pt;}
._2_c00080{margin-left:-7.136592pt;}
._5_c00080{margin-left:-5.656291pt;}
._18_c00080{margin-left:-4.737957pt;}
._1_c00080{margin-left:-2.905396pt;}
._3_c00080{margin-left:-1.696113pt;}
._9_c00080{width:0.934975pt;}
._4_c00080{width:1.959472pt;}
._7_c00080{width:3.451132pt;}
._0_c00080{width:4.832747pt;}
._8_c00080{width:5.970934pt;}
._10_c00080{width:7.613530pt;}
._12_c00080{width:8.588762pt;}
._f_c00080{width:9.872311pt;}
._11_c00080{width:11.316715pt;}
._1f_c00080{width:12.282279pt;}
._1d_c00080{width:13.181911pt;}
._1c_c00080{width:14.541153pt;}
._e_c00080{width:15.951204pt;}
._1a_c00080{width:17.786709pt;}
._b_c00080{width:18.944747pt;}
._c_c00080{width:21.013194pt;}
._19_c00080{width:21.944379pt;}
._d_c00080{width:23.856158pt;}
._1b_c00080{width:25.427566pt;}
._1e_c00080{width:34.831709pt;}
._17_c00080{width:44.350125pt;}
._14_c00080{width:45.292575pt;}
._15_c00080{width:46.719347pt;}
._16_c00080{width:47.698238pt;}
._13_c00080{width:49.491070pt;}
.fs8_c00080{font-size:66.000000pt;}
.fs4_c00080{font-size:66.666667pt;}
.fs2_c00080{font-size:69.333333pt;}
.fs1_c00080{font-size:70.000000pt;}
.fs9_c00080{font-size:71.333333pt;}
.fs6_c00080{font-size:72.000000pt;}
.fs0_c00080{font-size:72.666667pt;}
.fs5_c00080{font-size:73.333333pt;}
.fs7_c00080{font-size:74.666667pt;}
.fs3_c00080{font-size:76.666667pt;}
.y0_c00080{bottom:0.000000pt;}
.y20_c00080{bottom:191.999307pt;}
.y1f_c00080{bottom:218.559067pt;}
.y1e_c00080{bottom:218.559840pt;}
.y1d_c00080{bottom:245.119587pt;}
.y1c_c00080{bottom:245.119893pt;}
.y1b_c00080{bottom:271.359480pt;}
.y1a_c00080{bottom:297.599067pt;}
.y19_c00080{bottom:297.599973pt;}
.y18_c00080{bottom:324.159733pt;}
.y17_c00080{bottom:383.039067pt;}
.y16_c00080{bottom:403.839840pt;}
.y15_c00080{bottom:403.844773pt;}
.y14_c00080{bottom:431.043253pt;}
.y13_c00080{bottom:457.603013pt;}
.y12_c00080{bottom:484.162760pt;}
.y11_c00080{bottom:536.641667pt;}
.y10_c00080{bottom:563.201413pt;}
.yf_c00080{bottom:590.081333pt;}
.ye_c00080{bottom:616.320920pt;}
.yd_c00080{bottom:643.200840pt;}
.yc_c00080{bottom:696.001787pt;}
.yb_c00080{bottom:722.881720pt;}
.ya_c00080{bottom:749.761640pt;}
.y9_c00080{bottom:776.001227pt;}
.y8_c00080{bottom:802.560973pt;}
.y7_c00080{bottom:828.800560pt;}
.y6_c00080{bottom:855.999040pt;}
.y4_c00080{bottom:882.239787pt;}
.y5_c00080{bottom:882.240240pt;}
.y3_c00080{bottom:935.359293pt;}
.y2_c00080{bottom:961.280320pt;}
.y1_c00080{bottom:1014.399827pt;}
.hc_c00080{height:64.775391pt;}
.h6_c00080{height:65.429688pt;}
.h3_c00080{height:68.046875pt;}
.h2_c00080{height:68.701172pt;}
.h7_c00080{height:69.531250pt;}
.hd_c00080{height:70.009766pt;}
.h9_c00080{height:70.546875pt;}
.h1_c00080{height:71.318359pt;}
.ha_c00080{height:72.562500pt;}
.hb_c00080{height:73.281250pt;}
.h8_c00080{height:73.906250pt;}
.h4_c00080{height:75.244141pt;}
.h5_c00080{height:75.768229pt;}
.h0_c00080{height:1122.666667pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x6_c00080{left:125.120507pt;}
.x1_c00080{left:126.079067pt;}
.x3_c00080{left:127.039413pt;}
.x7_c00080{left:153.919867pt;}
.xb_c00080{left:177.279720pt;}
.x8_c00080{left:183.039587pt;}
.x2_c00080{left:185.279333pt;}
.xc_c00080{left:261.758787pt;}
.xd_c00080{left:281.919453pt;}
.xe_c00080{left:299.838933pt;}
.xf_c00080{left:368.318813pt;}
.x9_c00080{left:404.159173pt;}
.xa_c00080{left:435.199173pt;}
.x15_c00080{left:480.000000pt;}
.x16_c00080{left:492.479040pt;}
.x4_c00080{left:583.038533pt;}
.x10_c00080{left:585.599040pt;}
.x11_c00080{left:600.000000pt;}
.x5_c00080{left:605.759720pt;}
.x14_c00080{left:656.958907pt;}
.x12_c00080{left:661.439987pt;}
.x13_c00080{left:675.839320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1dfc74d7e5136f40269ab38.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_9ae4a01ca0f5e9b4129ce214.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_fa0ca57cea8730e3c41ad768.woff2')format("woff");}.ff3_c00081{font-family:ff3_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;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_5233d9daa503d9e6a6585d95.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_417ee69a7ec78ebcbcb1c066.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:1.432129;font-style:normal;font-weight: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_c00081;src:url('chunks/assets/font_6ce596001fbdab94ffc01902.woff2')format("woff");}.ff7_c00081{font-family:ff7_c00081;line-height:1.432129;font-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_c00081{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m15_c00081{transform:matrix(0.202128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202128,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);}
.m12_c00081{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m16_c00081{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.mf_c00081{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m10_c00081{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m17_c00081{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m1b_c00081{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m8_c00081{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m4_c00081{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m19_c00081{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m1c_c00081{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1a_c00081{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m13_c00081{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m1d_c00081{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m18_c00081{transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);}
.m14_c00081{transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.lsf_c00081{letter-spacing:-12.687675px;}
.ls8_c00081{letter-spacing:-11.954250px;}
.ls13_c00081{letter-spacing:-11.102100px;}
.ls21_c00081{letter-spacing:-8.914500px;}
.ls1d_c00081{letter-spacing:-8.175038px;}
.ls10_c00081{letter-spacing:-7.426125px;}
.ls7_c00081{letter-spacing:-7.217925px;}
.ls17_c00081{letter-spacing:-6.969375px;}
.ls1f_c00081{letter-spacing:-6.685875px;}
.ls14_c00081{letter-spacing:-6.200775px;}
.ls19_c00081{letter-spacing:-6.197655px;}
.ls15_c00081{letter-spacing:-6.000750px;}
.ls20_c00081{letter-spacing:-5.945625px;}
.ls23_c00081{letter-spacing:-5.577000px;}
.ls22_c00081{letter-spacing:-5.515650px;}
.lsd_c00081{letter-spacing:-5.203125px;}
.lse_c00081{letter-spacing:-5.196713px;}
.ls1e_c00081{letter-spacing:-5.109375px;}
.ls9_c00081{letter-spacing:-4.456463px;}
.ls3_c00081{letter-spacing:-3.717000px;}
.ls18_c00081{letter-spacing:-3.179205px;}
.ls4_c00081{letter-spacing:-2.968875px;}
.lsa_c00081{letter-spacing:-2.943225px;}
.ls2_c00081{letter-spacing:-2.229413px;}
.ls1a_c00081{letter-spacing:-1.995000px;}
.ls1_c00081{letter-spacing:-1.489163px;}
.ls11_c00081{letter-spacing:-1.483200px;}
.ls1b_c00081{letter-spacing:-1.468800px;}
.ls1c_c00081{letter-spacing:-1.454400px;}
.ls6_c00081{letter-spacing:-0.740250px;}
.ls5_c00081{letter-spacing:0.000000px;}
.ls12_c00081{letter-spacing:0.734775px;}
.ls0_c00081{letter-spacing:1.489163px;}
.lsb_c00081{letter-spacing:2.574000px;}
.lsc_c00081{letter-spacing:4.282200px;}
.ls16_c00081{letter-spacing:7.374375px;}
.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;}
._16_c00081{margin-left:-36.256619px;}
._0_c00081{margin-left:-7.528010px;}
._5_c00081{margin-left:-2.302279px;}
._15_c00081{margin-left:-1.286181px;}
._6_c00081{width:1.459758px;}
._1_c00081{width:2.522214px;}
._4_c00081{width:3.876744px;}
._3_c00081{width:4.929275px;}
._d_c00081{width:6.165709px;}
._2_c00081{width:7.355012px;}
._12_c00081{width:8.615607px;}
._c_c00081{width:10.015143px;}
._11_c00081{width:11.341293px;}
._f_c00081{width:12.978089px;}
._17_c00081{width:14.015509px;}
._13_c00081{width:15.854173px;}
._10_c00081{width:17.348417px;}
._e_c00081{width:19.388458px;}
._a_c00081{width:21.658999px;}
._8_c00081{width:23.198205px;}
._14_c00081{width:24.467298px;}
._9_c00081{width:25.759095px;}
._b_c00081{width:27.159359px;}
._18_c00081{width:28.639666px;}
._7_c00081{width:29.862178px;}
._19_c00081{width:33.277358px;}
.fc0_c00081{color:transparent;}
.fsd_c00081{font-size:54.000000px;}
.fsa_c00081{font-size:69.000000px;}
.fsb_c00081{font-size:69.750000px;}
.fse_c00081{font-size:70.500000px;}
.fsc_c00081{font-size:71.250000px;}
.fs9_c00081{font-size:75.750000px;}
.fsf_c00081{font-size:76.500000px;}
.fs4_c00081{font-size:77.250000px;}
.fs5_c00081{font-size:78.000000px;}
.fs0_c00081{font-size:78.750000px;}
.fs7_c00081{font-size:79.500000px;}
.fs6_c00081{font-size:80.250000px;}
.fs10_c00081{font-size:81.750000px;}
.fs2_c00081{font-size:82.500000px;}
.fs8_c00081{font-size:83.250000px;}
.fs3_c00081{font-size:86.250000px;}
.fs1_c00081{font-size:87.000000px;}
.y0_c00081{bottom:0.000000px;}
.y21_c00081{bottom:483.840960px;}
.y22_c00081{bottom:483.841185px;}
.y1f_c00081{bottom:512.999220px;}
.y20_c00081{bottom:513.000000px;}
.y1e_c00081{bottom:543.241245px;}
.y1d_c00081{bottom:572.400285px;}
.y1c_c00081{bottom:572.401170px;}
.y1b_c00081{bottom:602.280900px;}
.y1a_c00081{bottom:602.282025px;}
.y19_c00081{bottom:632.521935px;}
.y18_c00081{bottom:662.401650px;}
.y16_c00081{bottom:691.920390px;}
.y17_c00081{bottom:691.921185px;}
.y15_c00081{bottom:721.800105px;}
.y14_c00081{bottom:751.321515px;}
.y13_c00081{bottom:781.199955px;}
.y12_c00081{bottom:841.680090px;}
.y11_c00081{bottom:841.680975px;}
.y10_c00081{bottom:871.560705px;}
.yf_c00081{bottom:871.561590px;}
.yd_c00081{bottom:901.440555px;}
.ye_c00081{bottom:901.441320px;}
.yb_c00081{bottom:931.319595px;}
.yc_c00081{bottom:931.320285px;}
.ya_c00081{bottom:990.720660px;}
.y9_c00081{bottom:1020.960570px;}
.y8_c00081{bottom:1020.960750px;}
.y7_c00081{bottom:1050.480285px;}
.y6_c00081{bottom:1050.481185px;}
.y5_c00081{bottom:1080.360900px;}
.y4_c00081{bottom:1080.361650px;}
.y2_c00081{bottom:1110.059535px;}
.y3_c00081{bottom:1110.060240px;}
.y1_c00081{bottom:1140.120390px;}
.h11_c00081{height:56.320312px;}
.hd_c00081{height:71.964844px;}
.he_c00081{height:72.747070px;}
.h12_c00081{height:73.529297px;}
.h10_c00081{height:74.311523px;}
.hc_c00081{height:74.344482px;}
.h13_c00081{height:75.080566px;}
.h5_c00081{height:75.816650px;}
.hb_c00081{height:76.552734px;}
.h1_c00081{height:77.288818px;}
.h6_c00081{height:78.609375px;}
.h7_c00081{height:78.760986px;}
.hf_c00081{height:79.365234px;}
.h8_c00081{height:80.121094px;}
.h14_c00081{height:80.233154px;}
.ha_c00081{height:80.969238px;}
.h3_c00081{height:81.533203px;}
.h9_c00081{height:81.705322px;}
.h4_c00081{height:85.239258px;}
.h2_c00081{height:85.385742px;}
.h0_c00081{height:1263.000000px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x29_c00081{left:141.477945px;}
.x1_c00081{left:142.559100px;}
.x2a_c00081{left:197.999400px;}
.x2b_c00081{left:220.678500px;}
.x2f_c00081{left:225.719535px;}
.x19_c00081{left:228.959400px;}
.x1b_c00081{left:236.879535px;}
.x30_c00081{left:241.198785px;}
.x1a_c00081{left:244.079385px;}
.x1c_c00081{left:259.558635px;}
.x1d_c00081{left:279.358635px;}
.x1e_c00081{left:317.159385px;}
.x9_c00081{left:326.878950px;}
.x1f_c00081{left:340.558635px;}
.x4_c00081{left:349.559685px;}
.x20_c00081{left:384.479685px;}
.xa_c00081{left:395.278800px;}
.xb_c00081{left:410.759535px;}
.x31_c00081{left:427.319820px;}
.x32_c00081{left:442.439670px;}
.xc_c00081{left:476.998950px;}
.x21_c00081{left:485.279850px;}
.xd_c00081{left:492.479685px;}
.x13_c00081{left:496.439670px;}
.x22_c00081{left:498.959385px;}
.x14_c00081{left:514.799520px;}
.x23_c00081{left:518.039385px;}
.x10_c00081{left:523.439670px;}
.x2e_c00081{left:536.399235px;}
.x2_c00081{left:540.359250px;}
.x5_c00081{left:543.599070px;}
.x3_c00081{left:554.759085px;}
.x24_c00081{left:556.558635px;}
.x25_c00081{left:579.239220px;}
.x6_c00081{left:586.798515px;}
.x11_c00081{left:608.759085px;}
.x12_c00081{left:624.599070px;}
.x17_c00081{left:639.359850px;}
.x18_c00081{left:653.398635px;}
.x7_c00081{left:663.838530px;}
.x26_c00081{left:687.598530px;}
.x8_c00081{left:689.399820px;}
.x2c_c00081{left:697.679070px;}
.x15_c00081{left:716.399820px;}
.x2d_c00081{left:718.558635px;}
.xe_c00081{left:729.718545px;}
.x27_c00081{left:734.759535px;}
.x16_c00081{left:740.519070px;}
.xf_c00081{left:750.958920px;}
.x28_c00081{left:753.839535px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.lsf_c00081{letter-spacing:-11.277933pt;}
.ls8_c00081{letter-spacing:-10.626000pt;}
.ls13_c00081{letter-spacing:-9.868533pt;}
.ls21_c00081{letter-spacing:-7.924000pt;}
.ls1d_c00081{letter-spacing:-7.266700pt;}
.ls10_c00081{letter-spacing:-6.601000pt;}
.ls7_c00081{letter-spacing:-6.415933pt;}
.ls17_c00081{letter-spacing:-6.195000pt;}
.ls1f_c00081{letter-spacing:-5.943000pt;}
.ls14_c00081{letter-spacing:-5.511800pt;}
.ls19_c00081{letter-spacing:-5.509027pt;}
.ls15_c00081{letter-spacing:-5.334000pt;}
.ls20_c00081{letter-spacing:-5.285000pt;}
.ls23_c00081{letter-spacing:-4.957333pt;}
.ls22_c00081{letter-spacing:-4.902800pt;}
.lsd_c00081{letter-spacing:-4.625000pt;}
.lse_c00081{letter-spacing:-4.619300pt;}
.ls1e_c00081{letter-spacing:-4.541667pt;}
.ls9_c00081{letter-spacing:-3.961300pt;}
.ls3_c00081{letter-spacing:-3.304000pt;}
.ls18_c00081{letter-spacing:-2.825960pt;}
.ls4_c00081{letter-spacing:-2.639000pt;}
.lsa_c00081{letter-spacing:-2.616200pt;}
.ls2_c00081{letter-spacing:-1.981700pt;}
.ls1a_c00081{letter-spacing:-1.773333pt;}
.ls1_c00081{letter-spacing:-1.323700pt;}
.ls11_c00081{letter-spacing:-1.318400pt;}
.ls1b_c00081{letter-spacing:-1.305600pt;}
.ls1c_c00081{letter-spacing:-1.292800pt;}
.ls6_c00081{letter-spacing:-0.658000pt;}
.ls5_c00081{letter-spacing:0.000000pt;}
.ls12_c00081{letter-spacing:0.653133pt;}
.ls0_c00081{letter-spacing:1.323700pt;}
.lsb_c00081{letter-spacing:2.288000pt;}
.lsc_c00081{letter-spacing:3.806400pt;}
.ls16_c00081{letter-spacing:6.555000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
._16_c00081{margin-left:-32.228106pt;}
._0_c00081{margin-left:-6.691564pt;}
._5_c00081{margin-left:-2.046470pt;}
._15_c00081{margin-left:-1.143272pt;}
._6_c00081{width:1.297562pt;}
._1_c00081{width:2.241968pt;}
._4_c00081{width:3.445994pt;}
._3_c00081{width:4.381577pt;}
._d_c00081{width:5.480630pt;}
._2_c00081{width:6.537789pt;}
._12_c00081{width:7.658317pt;}
._c_c00081{width:8.902349pt;}
._11_c00081{width:10.081149pt;}
._f_c00081{width:11.536079pt;}
._17_c00081{width:12.458230pt;}
._13_c00081{width:14.092598pt;}
._10_c00081{width:15.420815pt;}
._e_c00081{width:17.234185pt;}
._a_c00081{width:19.252443pt;}
._8_c00081{width:20.620626pt;}
._14_c00081{width:21.748709pt;}
._9_c00081{width:22.896974pt;}
._b_c00081{width:24.141653pt;}
._18_c00081{width:25.457481pt;}
._7_c00081{width:26.544158pt;}
._19_c00081{width:29.579874pt;}
.fsd_c00081{font-size:48.000000pt;}
.fsa_c00081{font-size:61.333333pt;}
.fsb_c00081{font-size:62.000000pt;}
.fse_c00081{font-size:62.666667pt;}
.fsc_c00081{font-size:63.333333pt;}
.fs9_c00081{font-size:67.333333pt;}
.fsf_c00081{font-size:68.000000pt;}
.fs4_c00081{font-size:68.666667pt;}
.fs5_c00081{font-size:69.333333pt;}
.fs0_c00081{font-size:70.000000pt;}
.fs7_c00081{font-size:70.666667pt;}
.fs6_c00081{font-size:71.333333pt;}
.fs10_c00081{font-size:72.666667pt;}
.fs2_c00081{font-size:73.333333pt;}
.fs8_c00081{font-size:74.000000pt;}
.fs3_c00081{font-size:76.666667pt;}
.fs1_c00081{font-size:77.333333pt;}
.y0_c00081{bottom:0.000000pt;}
.y21_c00081{bottom:430.080853pt;}
.y22_c00081{bottom:430.081053pt;}
.y1f_c00081{bottom:455.999307pt;}
.y20_c00081{bottom:456.000000pt;}
.y1e_c00081{bottom:482.881107pt;}
.y1d_c00081{bottom:508.800253pt;}
.y1c_c00081{bottom:508.801040pt;}
.y1b_c00081{bottom:535.360800pt;}
.y1a_c00081{bottom:535.361800pt;}
.y19_c00081{bottom:562.241720pt;}
.y18_c00081{bottom:588.801467pt;}
.y16_c00081{bottom:615.040347pt;}
.y17_c00081{bottom:615.041053pt;}
.y15_c00081{bottom:641.600093pt;}
.y14_c00081{bottom:667.841347pt;}
.y13_c00081{bottom:694.399960pt;}
.y12_c00081{bottom:748.160080pt;}
.y11_c00081{bottom:748.160867pt;}
.y10_c00081{bottom:774.720627pt;}
.yf_c00081{bottom:774.721413pt;}
.yd_c00081{bottom:801.280493pt;}
.ye_c00081{bottom:801.281173pt;}
.yb_c00081{bottom:827.839640pt;}
.yc_c00081{bottom:827.840253pt;}
.ya_c00081{bottom:880.640587pt;}
.y9_c00081{bottom:907.520507pt;}
.y8_c00081{bottom:907.520667pt;}
.y7_c00081{bottom:933.760253pt;}
.y6_c00081{bottom:933.761053pt;}
.y5_c00081{bottom:960.320800pt;}
.y4_c00081{bottom:960.321467pt;}
.y2_c00081{bottom:986.719587pt;}
.y3_c00081{bottom:986.720213pt;}
.y1_c00081{bottom:1013.440347pt;}
.h11_c00081{height:50.062500pt;}
.hd_c00081{height:63.968750pt;}
.he_c00081{height:64.664062pt;}
.h12_c00081{height:65.359375pt;}
.h10_c00081{height:66.054688pt;}
.hc_c00081{height:66.083984pt;}
.h13_c00081{height:66.738281pt;}
.h5_c00081{height:67.392578pt;}
.hb_c00081{height:68.046875pt;}
.h1_c00081{height:68.701172pt;}
.h6_c00081{height:69.875000pt;}
.h7_c00081{height:70.009766pt;}
.hf_c00081{height:70.546875pt;}
.h8_c00081{height:71.218750pt;}
.h14_c00081{height:71.318359pt;}
.ha_c00081{height:71.972656pt;}
.h3_c00081{height:72.473958pt;}
.h9_c00081{height:72.626953pt;}
.h4_c00081{height:75.768229pt;}
.h2_c00081{height:75.898438pt;}
.h0_c00081{height:1122.666667pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x29_c00081{left:125.758173pt;}
.x1_c00081{left:126.719200pt;}
.x2a_c00081{left:175.999467pt;}
.x2b_c00081{left:196.158667pt;}
.x2f_c00081{left:200.639587pt;}
.x19_c00081{left:203.519467pt;}
.x1b_c00081{left:210.559587pt;}
.x30_c00081{left:214.398920pt;}
.x1a_c00081{left:216.959453pt;}
.x1c_c00081{left:230.718787pt;}
.x1d_c00081{left:248.318787pt;}
.x1e_c00081{left:281.919453pt;}
.x9_c00081{left:290.559067pt;}
.x1f_c00081{left:302.718787pt;}
.x4_c00081{left:310.719720pt;}
.x20_c00081{left:341.759720pt;}
.xa_c00081{left:351.358933pt;}
.xb_c00081{left:365.119587pt;}
.x31_c00081{left:379.839840pt;}
.x32_c00081{left:393.279707pt;}
.xc_c00081{left:423.999067pt;}
.x21_c00081{left:431.359867pt;}
.xd_c00081{left:437.759720pt;}
.x13_c00081{left:441.279707pt;}
.x22_c00081{left:443.519453pt;}
.x14_c00081{left:457.599573pt;}
.x23_c00081{left:460.479453pt;}
.x10_c00081{left:465.279707pt;}
.x2e_c00081{left:476.799320pt;}
.x2_c00081{left:480.319333pt;}
.x5_c00081{left:483.199173pt;}
.x3_c00081{left:493.119187pt;}
.x24_c00081{left:494.718787pt;}
.x25_c00081{left:514.879307pt;}
.x6_c00081{left:521.598680pt;}
.x11_c00081{left:541.119187pt;}
.x12_c00081{left:555.199173pt;}
.x17_c00081{left:568.319867pt;}
.x18_c00081{left:580.798787pt;}
.x7_c00081{left:590.078693pt;}
.x26_c00081{left:611.198693pt;}
.x8_c00081{left:612.799840pt;}
.x2c_c00081{left:620.159173pt;}
.x15_c00081{left:636.799840pt;}
.x2d_c00081{left:638.718787pt;}
.xe_c00081{left:648.638707pt;}
.x27_c00081{left:653.119587pt;}
.x16_c00081{left:658.239173pt;}
.xf_c00081{left:667.519040pt;}
.x28_c00081{left:670.079587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d20773fac3580ab3abf4d7d3.woff2')format("woff");}.ff1_c00082{font-family:ff1_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:ff2_c00082;src:url('chunks/assets/font_05924b82b15557a9975d0843.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_e73ebe1634579429baf9b03a.woff2')format("woff");}.ff3_c00082{font-family:ff3_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:ff4_c00082;src:url('chunks/assets/font_6b94f9a69dc783431d17bc93.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_f86476570052eaefe03e94cb.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00082;src:url('chunks/assets/font_dd4c20c4b80870cb50d1fd20.woff2')format("woff");}.ff6_c00082{font-family:ff6_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00082{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{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);}
.mf_c00082{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m1e_c00082{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m22_c00082{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m1c_c00082{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m20_c00082{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00082{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{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_c00082{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.m1f_c00082{transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);}
.m23_c00082{transform:matrix(0.324468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324468,0.000000,0.000000,0.250000,0,0);}
.m21_c00082{transform:matrix(0.326316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326316,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{transform:matrix(0.408257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408257,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls6_c00082{letter-spacing:-11.355300px;}
.ls7_c00082{letter-spacing:-10.402875px;}
.ls3_c00082{letter-spacing:-8.733300px;}
.ls10_c00082{letter-spacing:-6.685875px;}
.lse_c00082{letter-spacing:-6.051443px;}
.ls1a_c00082{letter-spacing:-5.945625px;}
.lsf_c00082{letter-spacing:-5.196713px;}
.ls24_c00082{letter-spacing:-4.624800px;}
.ls18_c00082{letter-spacing:-4.456463px;}
.ls13_c00082{letter-spacing:-3.963533px;}
.ls11_c00082{letter-spacing:-3.717000px;}
.ls2_c00082{letter-spacing:-3.000375px;}
.ls9_c00082{letter-spacing:-2.968875px;}
.ls23_c00082{letter-spacing:-2.871375px;}
.ls14_c00082{letter-spacing:-2.336385px;}
.ls5_c00082{letter-spacing:-2.293110px;}
.ls19_c00082{letter-spacing:-2.251463px;}
.lsa_c00082{letter-spacing:-2.229413px;}
.ls1d_c00082{letter-spacing:-2.159250px;}
.ls1e_c00082{letter-spacing:-1.530000px;}
.lsb_c00082{letter-spacing:-1.489163px;}
.ls8_c00082{letter-spacing:-1.396800px;}
.ls21_c00082{letter-spacing:-0.816750px;}
.lsd_c00082{letter-spacing:-0.816683px;}
.ls1c_c00082{letter-spacing:-0.809190px;}
.lsc_c00082{letter-spacing:-0.740250px;}
.ls22_c00082{letter-spacing:-0.660825px;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls1f_c00082{letter-spacing:0.745200px;}
.ls4_c00082{letter-spacing:0.851018px;}
.ls1b_c00082{letter-spacing:1.427400px;}
.ls15_c00082{letter-spacing:2.317950px;}
.ls16_c00082{letter-spacing:3.378525px;}
.ls20_c00082{letter-spacing:4.063020px;}
.ls0_c00082{letter-spacing:4.456463px;}
.ls12_c00082{letter-spacing:4.619745px;}
.ls17_c00082{letter-spacing:5.943150px;}
.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;}
._1_c00082{margin-left:-43.746650px;}
._1c_c00082{margin-left:-10.367111px;}
._9_c00082{margin-left:-7.997518px;}
._1e_c00082{margin-left:-6.312481px;}
._c_c00082{margin-left:-5.115258px;}
._1d_c00082{margin-left:-3.995701px;}
._d_c00082{margin-left:-2.910080px;}
._b_c00082{margin-left:-1.375064px;}
._5_c00082{width:1.814400px;}
._e_c00082{width:2.908817px;}
._8_c00082{width:3.953636px;}
._7_c00082{width:4.979689px;}
._6_c00082{width:6.126661px;}
._0_c00082{width:7.630380px;}
._a_c00082{width:9.337298px;}
._19_c00082{width:10.845940px;}
._3_c00082{width:11.976671px;}
._4_c00082{width:13.289969px;}
._1f_c00082{width:14.564609px;}
._2_c00082{width:15.587567px;}
._14_c00082{width:18.001076px;}
._15_c00082{width:19.128642px;}
._11_c00082{width:20.645546px;}
._f_c00082{width:22.204380px;}
._13_c00082{width:24.181971px;}
._10_c00082{width:25.985360px;}
._12_c00082{width:28.351545px;}
._16_c00082{width:31.225044px;}
._18_c00082{width:33.939824px;}
._1b_c00082{width:35.173806px;}
._17_c00082{width:37.563497px;}
._1a_c00082{width:40.206154px;}
.fc0_c00082{color:transparent;}
.fs3_c00082{font-size:32.250000px;}
.fs4_c00082{font-size:39.000000px;}
.fsc_c00082{font-size:61.500000px;}
.fse_c00082{font-size:70.500000px;}
.fs12_c00082{font-size:71.250000px;}
.fs8_c00082{font-size:72.750000px;}
.fs11_c00082{font-size:74.250000px;}
.fs10_c00082{font-size:75.000000px;}
.fsd_c00082{font-size:76.500000px;}
.fsf_c00082{font-size:78.000000px;}
.fs0_c00082{font-size:78.750000px;}
.fsb_c00082{font-size:79.500000px;}
.fs2_c00082{font-size:80.250000px;}
.fs6_c00082{font-size:81.000000px;}
.fs5_c00082{font-size:81.750000px;}
.fs9_c00082{font-size:82.500000px;}
.fs7_c00082{font-size:83.250000px;}
.fsa_c00082{font-size:84.750000px;}
.fs1_c00082{font-size:86.250000px;}
.y0_c00082{bottom:0.000000px;}
.y29_c00082{bottom:219.961035px;}
.y28_c00082{bottom:249.840750px;}
.y27_c00082{bottom:279.360285px;}
.y26_c00082{bottom:309.600150px;}
.y25_c00082{bottom:309.600405px;}
.y24_c00082{bottom:339.119940px;}
.y23_c00082{bottom:369.359850px;}
.y22_c00082{bottom:369.360690px;}
.y21_c00082{bottom:399.240420px;}
.y20_c00082{bottom:428.760135px;}
.y1f_c00082{bottom:458.279850px;}
.y1e_c00082{bottom:458.281590px;}
.y1d_c00082{bottom:488.161305px;}
.y1c_c00082{bottom:518.041035px;}
.y1b_c00082{bottom:578.520720px;}
.y1a_c00082{bottom:637.560405px;}
.y19_c00082{bottom:667.079940px;}
.y18_c00082{bottom:696.601275px;}
.y16_c00082{bottom:726.840390px;}
.y17_c00082{bottom:726.841185px;}
.y15_c00082{bottom:756.720105px;}
.y14_c00082{bottom:756.721140px;}
.y13_c00082{bottom:786.240675px;}
.y11_c00082{bottom:816.120345px;}
.y12_c00082{bottom:816.120390px;}
.y10_c00082{bottom:846.360255px;}
.yf_c00082{bottom:846.361155px;}
.yd_c00082{bottom:876.240210px;}
.ye_c00082{bottom:876.240870px;}
.yb_c00082{bottom:906.119910px;}
.yc_c00082{bottom:906.119940px;}
.ya_c00082{bottom:936.359820px;}
.y9_c00082{bottom:965.881170px;}
.y8_c00082{bottom:965.881305px;}
.y7_c00082{bottom:1025.640750px;}
.y6_c00082{bottom:1025.640930px;}
.y5_c00082{bottom:1055.160465px;}
.y4_c00082{bottom:1055.161260px;}
.y3_c00082{bottom:1085.040990px;}
.y2_c00082{bottom:1092.240870px;}
.y1_c00082{bottom:1144.800570px;}
.h4_c00082{height:33.635742px;}
.h5_c00082{height:40.675781px;}
.h11_c00082{height:60.779297px;}
.h9_c00082{height:71.400146px;}
.h1c_c00082{height:72.872314px;}
.h13_c00082{height:73.529297px;}
.h17_c00082{height:73.608398px;}
.h1d_c00082{height:74.311523px;}
.h18_c00082{height:75.043213px;}
.h12_c00082{height:75.080566px;}
.h15_c00082{height:76.552734px;}
.ha_c00082{height:77.288818px;}
.h1b_c00082{height:77.440430px;}
.h10_c00082{height:78.024902px;}
.h1a_c00082{height:78.609375px;}
.hf_c00082{height:78.760986px;}
.h1_c00082{height:79.365234px;}
.h16_c00082{height:79.497070px;}
.h19_c00082{height:80.050781px;}
.hc_c00082{height:80.233154px;}
.h14_c00082{height:80.791992px;}
.h3_c00082{height:80.876953px;}
.hb_c00082{height:80.969238px;}
.h7_c00082{height:81.632812px;}
.hd_c00082{height:81.705322px;}
.h6_c00082{height:82.388672px;}
.he_c00082{height:83.177490px;}
.h8_c00082{height:83.900391px;}
.h2_c00082{height:86.923828px;}
.h1e_c00082{height:89.956055px;}
.h0_c00082{height:1263.000000px;}
.w0_c00082{width:892.500000px;}
.x0_c00082{left:0.000000px;}
.x23_c00082{left:150.839265px;}
.x1_c00082{left:151.919565px;}
.x5_c00082{left:154.080000px;}
.x4_c00082{left:160.198785px;}
.x33_c00082{left:169.559100px;}
.x6_c00082{left:182.518665px;}
.x7_c00082{left:241.559685px;}
.x2_c00082{left:254.878350px;}
.x2d_c00082{left:256.679700px;}
.x2f_c00082{left:267.478635px;}
.x3_c00082{left:269.639100px;}
.x2e_c00082{left:281.519100px;}
.x8_c00082{left:289.439235px;}
.x30_c00082{left:305.279250px;}
.x9_c00082{left:309.598530px;}
.x28_c00082{left:311.038950px;}
.xe_c00082{left:320.399235px;}
.xc_c00082{left:327.239850px;}
.x10_c00082{left:331.918350px;}
.x1a_c00082{left:335.159850px;}
.xd_c00082{left:341.639700px;}
.x11_c00082{left:352.079385px;}
.xf_c00082{left:363.598530px;}
.x1b_c00082{left:366.838515px;}
.x31_c00082{left:387.719565px;}
.x1c_c00082{left:409.678530px;}
.xa_c00082{left:412.918350px;}
.x1d_c00082{left:432.359250px;}
.xb_c00082{left:448.558635px;}
.x24_c00082{left:461.158770px;}
.x25_c00082{left:493.559100px;}
.x1e_c00082{left:498.598530px;}
.x29_c00082{left:504.719100px;}
.x1f_c00082{left:560.879520px;}
.x14_c00082{left:562.679070px;}
.x16_c00082{left:577.439670px;}
.x15_c00082{left:579.239220px;}
.x20_c00082{left:586.439250px;}
.x17_c00082{left:596.878920px;}
.x2a_c00082{left:607.679670px;}
.x12_c00082{left:627.479685px;}
.x13_c00082{left:641.518620px;}
.x2b_c00082{left:657.719520px;}
.x26_c00082{left:690.838530px;}
.x21_c00082{left:713.878320px;}
.x18_c00082{left:719.639700px;}
.x22_c00082{left:727.559685px;}
.x27_c00082{left:736.199850px;}
.x19_c00082{left:742.679670px;}
.x2c_c00082{left:758.158770px;}
.x32_c00082{left:786.958380px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls6_c00082{letter-spacing:-10.093600pt;}
.ls7_c00082{letter-spacing:-9.247000pt;}
.ls3_c00082{letter-spacing:-7.762933pt;}
.ls10_c00082{letter-spacing:-5.943000pt;}
.lse_c00082{letter-spacing:-5.379060pt;}
.ls1a_c00082{letter-spacing:-5.285000pt;}
.lsf_c00082{letter-spacing:-4.619300pt;}
.ls24_c00082{letter-spacing:-4.110933pt;}
.ls18_c00082{letter-spacing:-3.961300pt;}
.ls13_c00082{letter-spacing:-3.523140pt;}
.ls11_c00082{letter-spacing:-3.304000pt;}
.ls2_c00082{letter-spacing:-2.667000pt;}
.ls9_c00082{letter-spacing:-2.639000pt;}
.ls23_c00082{letter-spacing:-2.552333pt;}
.ls14_c00082{letter-spacing:-2.076787pt;}
.ls5_c00082{letter-spacing:-2.038320pt;}
.ls19_c00082{letter-spacing:-2.001300pt;}
.lsa_c00082{letter-spacing:-1.981700pt;}
.ls1d_c00082{letter-spacing:-1.919333pt;}
.ls1e_c00082{letter-spacing:-1.360000pt;}
.lsb_c00082{letter-spacing:-1.323700pt;}
.ls8_c00082{letter-spacing:-1.241600pt;}
.ls21_c00082{letter-spacing:-0.726000pt;}
.lsd_c00082{letter-spacing:-0.725940pt;}
.ls1c_c00082{letter-spacing:-0.719280pt;}
.lsc_c00082{letter-spacing:-0.658000pt;}
.ls22_c00082{letter-spacing:-0.587400pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls1f_c00082{letter-spacing:0.662400pt;}
.ls4_c00082{letter-spacing:0.756460pt;}
.ls1b_c00082{letter-spacing:1.268800pt;}
.ls15_c00082{letter-spacing:2.060400pt;}
.ls16_c00082{letter-spacing:3.003133pt;}
.ls20_c00082{letter-spacing:3.611573pt;}
.ls0_c00082{letter-spacing:3.961300pt;}
.ls12_c00082{letter-spacing:4.106440pt;}
.ls17_c00082{letter-spacing:5.282800pt;}
.ws0_c00082{word-spacing:0.000000pt;}
._1_c00082{margin-left:-38.885911pt;}
._1c_c00082{margin-left:-9.215209pt;}
._9_c00082{margin-left:-7.108905pt;}
._1e_c00082{margin-left:-5.611094pt;}
._c_c00082{margin-left:-4.546896pt;}
._1d_c00082{margin-left:-3.551734pt;}
._d_c00082{margin-left:-2.586738pt;}
._b_c00082{margin-left:-1.222279pt;}
._5_c00082{width:1.612800pt;}
._e_c00082{width:2.585615pt;}
._8_c00082{width:3.514343pt;}
._7_c00082{width:4.426391pt;}
._6_c00082{width:5.445921pt;}
._0_c00082{width:6.782560pt;}
._a_c00082{width:8.299821pt;}
._19_c00082{width:9.640836pt;}
._3_c00082{width:10.645930pt;}
._4_c00082{width:11.813306pt;}
._1f_c00082{width:12.946319pt;}
._2_c00082{width:13.855615pt;}
._14_c00082{width:16.000957pt;}
._15_c00082{width:17.003238pt;}
._11_c00082{width:18.351596pt;}
._f_c00082{width:19.737226pt;}
._13_c00082{width:21.495085pt;}
._10_c00082{width:23.098098pt;}
._12_c00082{width:25.201374pt;}
._16_c00082{width:27.755594pt;}
._18_c00082{width:30.168732pt;}
._1b_c00082{width:31.265606pt;}
._17_c00082{width:33.389775pt;}
._1a_c00082{width:35.738804pt;}
.fs3_c00082{font-size:28.666667pt;}
.fs4_c00082{font-size:34.666667pt;}
.fsc_c00082{font-size:54.666667pt;}
.fse_c00082{font-size:62.666667pt;}
.fs12_c00082{font-size:63.333333pt;}
.fs8_c00082{font-size:64.666667pt;}
.fs11_c00082{font-size:66.000000pt;}
.fs10_c00082{font-size:66.666667pt;}
.fsd_c00082{font-size:68.000000pt;}
.fsf_c00082{font-size:69.333333pt;}
.fs0_c00082{font-size:70.000000pt;}
.fsb_c00082{font-size:70.666667pt;}
.fs2_c00082{font-size:71.333333pt;}
.fs6_c00082{font-size:72.000000pt;}
.fs5_c00082{font-size:72.666667pt;}
.fs9_c00082{font-size:73.333333pt;}
.fs7_c00082{font-size:74.000000pt;}
.fsa_c00082{font-size:75.333333pt;}
.fs1_c00082{font-size:76.666667pt;}
.y0_c00082{bottom:0.000000pt;}
.y29_c00082{bottom:195.520920pt;}
.y28_c00082{bottom:222.080667pt;}
.y27_c00082{bottom:248.320253pt;}
.y26_c00082{bottom:275.200133pt;}
.y25_c00082{bottom:275.200360pt;}
.y24_c00082{bottom:301.439947pt;}
.y23_c00082{bottom:328.319867pt;}
.y22_c00082{bottom:328.320613pt;}
.y21_c00082{bottom:354.880373pt;}
.y20_c00082{bottom:381.120120pt;}
.y1f_c00082{bottom:407.359867pt;}
.y1e_c00082{bottom:407.361413pt;}
.y1d_c00082{bottom:433.921160pt;}
.y1c_c00082{bottom:460.480920pt;}
.y1b_c00082{bottom:514.240640pt;}
.y1a_c00082{bottom:566.720360pt;}
.y19_c00082{bottom:592.959947pt;}
.y18_c00082{bottom:619.201133pt;}
.y16_c00082{bottom:646.080347pt;}
.y17_c00082{bottom:646.081053pt;}
.y15_c00082{bottom:672.640093pt;}
.y14_c00082{bottom:672.641013pt;}
.y13_c00082{bottom:698.880600pt;}
.y11_c00082{bottom:725.440307pt;}
.y12_c00082{bottom:725.440347pt;}
.y10_c00082{bottom:752.320227pt;}
.yf_c00082{bottom:752.321027pt;}
.yd_c00082{bottom:778.880187pt;}
.ye_c00082{bottom:778.880773pt;}
.yb_c00082{bottom:805.439920pt;}
.yc_c00082{bottom:805.439947pt;}
.ya_c00082{bottom:832.319840pt;}
.y9_c00082{bottom:858.561040pt;}
.y8_c00082{bottom:858.561160pt;}
.y7_c00082{bottom:911.680667pt;}
.y6_c00082{bottom:911.680827pt;}
.y5_c00082{bottom:937.920413pt;}
.y4_c00082{bottom:937.921120pt;}
.y3_c00082{bottom:964.480880pt;}
.y2_c00082{bottom:970.880773pt;}
.y1_c00082{bottom:1017.600507pt;}
.h4_c00082{height:29.898438pt;}
.h5_c00082{height:36.156250pt;}
.h11_c00082{height:54.026042pt;}
.h9_c00082{height:63.466797pt;}
.h1c_c00082{height:64.775391pt;}
.h13_c00082{height:65.359375pt;}
.h17_c00082{height:65.429688pt;}
.h1d_c00082{height:66.054688pt;}
.h18_c00082{height:66.705078pt;}
.h12_c00082{height:66.738281pt;}
.h15_c00082{height:68.046875pt;}
.ha_c00082{height:68.701172pt;}
.h1b_c00082{height:68.835938pt;}
.h10_c00082{height:69.355469pt;}
.h1a_c00082{height:69.875000pt;}
.hf_c00082{height:70.009766pt;}
.h1_c00082{height:70.546875pt;}
.h16_c00082{height:70.664062pt;}
.h19_c00082{height:71.156250pt;}
.hc_c00082{height:71.318359pt;}
.h14_c00082{height:71.815104pt;}
.h3_c00082{height:71.890625pt;}
.hb_c00082{height:71.972656pt;}
.h7_c00082{height:72.562500pt;}
.hd_c00082{height:72.626953pt;}
.h6_c00082{height:73.234375pt;}
.he_c00082{height:73.935547pt;}
.h8_c00082{height:74.578125pt;}
.h2_c00082{height:77.265625pt;}
.h1e_c00082{height:79.960938pt;}
.h0_c00082{height:1122.666667pt;}
.w0_c00082{width:793.333333pt;}
.x0_c00082{left:0.000000pt;}
.x23_c00082{left:134.079347pt;}
.x1_c00082{left:135.039613pt;}
.x5_c00082{left:136.960000pt;}
.x4_c00082{left:142.398920pt;}
.x33_c00082{left:150.719200pt;}
.x6_c00082{left:162.238813pt;}
.x7_c00082{left:214.719720pt;}
.x2_c00082{left:226.558533pt;}
.x2d_c00082{left:228.159733pt;}
.x2f_c00082{left:237.758787pt;}
.x3_c00082{left:239.679200pt;}
.x2e_c00082{left:250.239200pt;}
.x8_c00082{left:257.279320pt;}
.x30_c00082{left:271.359333pt;}
.x9_c00082{left:275.198693pt;}
.x28_c00082{left:276.479067pt;}
.xe_c00082{left:284.799320pt;}
.xc_c00082{left:290.879867pt;}
.x10_c00082{left:295.038533pt;}
.x1a_c00082{left:297.919867pt;}
.xd_c00082{left:303.679733pt;}
.x11_c00082{left:312.959453pt;}
.xf_c00082{left:323.198693pt;}
.x1b_c00082{left:326.078680pt;}
.x31_c00082{left:344.639613pt;}
.x1c_c00082{left:364.158693pt;}
.xa_c00082{left:367.038533pt;}
.x1d_c00082{left:384.319333pt;}
.xb_c00082{left:398.718787pt;}
.x24_c00082{left:409.918907pt;}
.x25_c00082{left:438.719200pt;}
.x1e_c00082{left:443.198693pt;}
.x29_c00082{left:448.639200pt;}
.x1f_c00082{left:498.559573pt;}
.x14_c00082{left:500.159173pt;}
.x16_c00082{left:513.279707pt;}
.x15_c00082{left:514.879307pt;}
.x20_c00082{left:521.279333pt;}
.x17_c00082{left:530.559040pt;}
.x2a_c00082{left:540.159707pt;}
.x12_c00082{left:557.759720pt;}
.x13_c00082{left:570.238773pt;}
.x2b_c00082{left:584.639573pt;}
.x26_c00082{left:614.078693pt;}
.x21_c00082{left:634.558507pt;}
.x18_c00082{left:639.679733pt;}
.x22_c00082{left:646.719720pt;}
.x27_c00082{left:654.399867pt;}
.x19_c00082{left:660.159707pt;}
.x2c_c00082{left:673.918907pt;}
.x32_c00082{left:699.518560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e9e306ed45492ca0ff3c962.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_1cb43e592c8de6d200b71600.woff2')format("woff");}.ff2_c00083{font-family:ff2_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:ff3_c00083;src:url('chunks/assets/font_158097a6804f3229a94637af.woff2')format("woff");}.ff3_c00083{font-family:ff3_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:ff4_c00083;src:url('chunks/assets/font_fce659c7906bd4ea3ca5576b.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_c541b3f876901f7229e1ac5f.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00083{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.md_c00083{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00083{transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);}
.m17_c00083{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m8_c00083{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m14_c00083{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_c00083{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m16_c00083{transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);}
.m12_c00083{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m18_c00083{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m9_c00083{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_c00083{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00083{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.me_c00083{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls15_c00083{letter-spacing:-13.752750px;}
.ls10_c00083{letter-spacing:-12.344400px;}
.lse_c00083{letter-spacing:-8.914500px;}
.lsd_c00083{letter-spacing:-8.175038px;}
.lsf_c00083{letter-spacing:-7.426125px;}
.lsc_c00083{letter-spacing:-6.685875px;}
.lsb_c00083{letter-spacing:-5.945625px;}
.ls17_c00083{letter-spacing:-5.582775px;}
.ls9_c00083{letter-spacing:-5.196713px;}
.ls7_c00083{letter-spacing:-4.456463px;}
.ls3_c00083{letter-spacing:-3.717000px;}
.ls1a_c00083{letter-spacing:-3.138525px;}
.ls5_c00083{letter-spacing:-2.968875px;}
.ls0_c00083{letter-spacing:-2.374050px;}
.ls2_c00083{letter-spacing:-2.288805px;}
.ls4_c00083{letter-spacing:-2.229413px;}
.ls14_c00083{letter-spacing:-1.590750px;}
.ls1_c00083{letter-spacing:-1.526963px;}
.ls16_c00083{letter-spacing:-1.497600px;}
.ls8_c00083{letter-spacing:-1.489163px;}
.ls18_c00083{letter-spacing:-0.855000px;}
.ls11_c00083{letter-spacing:-0.787050px;}
.lsa_c00083{letter-spacing:-0.740250px;}
.ls6_c00083{letter-spacing:0.000000px;}
.ls19_c00083{letter-spacing:0.818100px;}
.ls12_c00083{letter-spacing:1.419600px;}
.ls13_c00083{letter-spacing:3.864015px;}
.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;}
._1e_c00083{margin-left:-18.590067px;}
._17_c00083{margin-left:-6.813242px;}
._1c_c00083{margin-left:-3.148856px;}
._1b_c00083{margin-left:-1.630749px;}
._1_c00083{width:1.186450px;}
._c_c00083{width:2.342902px;}
._4_c00083{width:3.395596px;}
._5_c00083{width:4.491157px;}
._2_c00083{width:5.914095px;}
._3_c00083{width:7.444847px;}
._10_c00083{width:8.581506px;}
._0_c00083{width:9.891059px;}
._8_c00083{width:11.189929px;}
._a_c00083{width:12.281493px;}
._18_c00083{width:13.325733px;}
._6_c00083{width:14.592940px;}
._19_c00083{width:16.461068px;}
._7_c00083{width:18.433161px;}
._9_c00083{width:20.282701px;}
._b_c00083{width:21.500102px;}
._1a_c00083{width:23.930832px;}
._14_c00083{width:25.049900px;}
._d_c00083{width:26.279053px;}
._e_c00083{width:28.239483px;}
._15_c00083{width:30.349834px;}
._11_c00083{width:31.920867px;}
._16_c00083{width:33.493995px;}
._f_c00083{width:35.453087px;}
._1d_c00083{width:36.472275px;}
._12_c00083{width:37.552294px;}
._13_c00083{width:39.248970px;}
.fc0_c00083{color:transparent;}
.fs0_c00083{font-size:73.500000px;}
.fs6_c00083{font-size:75.000000px;}
.fsc_c00083{font-size:75.750000px;}
.fsb_c00083{font-size:76.500000px;}
.fs9_c00083{font-size:78.000000px;}
.fs1_c00083{font-size:78.750000px;}
.fs2_c00083{font-size:79.500000px;}
.fs4_c00083{font-size:80.250000px;}
.fs5_c00083{font-size:81.000000px;}
.fsa_c00083{font-size:82.500000px;}
.fse_c00083{font-size:83.250000px;}
.fs8_c00083{font-size:84.000000px;}
.fs3_c00083{font-size:84.750000px;}
.fs7_c00083{font-size:101.250000px;}
.fsd_c00083{font-size:115.500000px;}
.y0_c00083{bottom:0.000000px;}
.y24_c00083{bottom:218.519625px;}
.y22_c00083{bottom:248.758215px;}
.y23_c00083{bottom:248.759535px;}
.y21_c00083{bottom:278.637930px;}
.y20_c00083{bottom:308.698785px;}
.y1e_c00083{bottom:338.399775px;}
.y1f_c00083{bottom:338.399850px;}
.y1d_c00083{bottom:368.639700px;}
.y1c_c00083{bottom:428.039985px;}
.y1b_c00083{bottom:457.559640px;}
.y19_c00083{bottom:487.798800px;}
.y1a_c00083{bottom:487.799565px;}
.y18_c00083{bottom:517.678530px;}
.y17_c00083{bottom:517.679370px;}
.y16_c00083{bottom:547.559100px;}
.y15_c00083{bottom:547.559580px;}
.y14_c00083{bottom:577.079115px;}
.y13_c00083{bottom:636.480165px;}
.y12_c00083{bottom:666.359895px;}
.y11_c00083{bottom:696.239610px;}
.y10_c00083{bottom:726.479535px;}
.yf_c00083{bottom:756.359250px;}
.ye_c00083{bottom:815.760315px;}
.yd_c00083{bottom:846.358605px;}
.yc_c00083{bottom:846.359235px;}
.yb_c00083{bottom:875.699415px;}
.ya_c00083{bottom:905.760285px;}
.y9_c00083{bottom:935.279820px;}
.y8_c00083{bottom:965.159550px;}
.y7_c00083{bottom:994.679070px;}
.y6_c00083{bottom:994.679220px;}
.y5_c00083{bottom:1024.558935px;}
.y3_c00083{bottom:1054.438620px;}
.y4_c00083{bottom:1054.438665px;}
.y2_c00083{bottom:1084.678530px;}
.y1_c00083{bottom:1144.798920px;}
.h9_c00083{height:73.608398px;}
.he_c00083{height:75.080566px;}
.h10_c00083{height:76.341797px;}
.hc_c00083{height:76.552734px;}
.h1_c00083{height:76.658203px;}
.h11_c00083{height:77.097656px;}
.h4_c00083{height:77.288818px;}
.h8_c00083{height:78.024902px;}
.h12_c00083{height:78.222656px;}
.h6_c00083{height:78.760986px;}
.h2_c00083{height:79.365234px;}
.h7_c00083{height:80.050781px;}
.h3_c00083{height:80.121094px;}
.hd_c00083{height:80.969238px;}
.hf_c00083{height:81.533203px;}
.h14_c00083{height:81.705322px;}
.h5_c00083{height:83.177490px;}
.hb_c00083{height:87.609375px;}
.ha_c00083{height:105.600586px;}
.h13_c00083{height:120.462891px;}
.h0_c00083{height:1263.000000px;}
.w0_c00083{width:892.500000px;}
.x0_c00083{left:0.000000px;}
.xe_c00083{left:143.282160px;}
.x1_c00083{left:144.358665px;}
.xf_c00083{left:145.448385px;}
.x19_c00083{left:167.759565px;}
.xa_c00083{left:177.120000px;}
.x2_c00083{left:195.838950px;}
.x1a_c00083{left:208.798515px;}
.x4_c00083{left:232.199385px;}
.x10_c00083{left:236.159385px;}
.x1b_c00083{left:237.599700px;}
.x11_c00083{left:242.279850px;}
.x5_c00083{left:246.958350px;}
.xb_c00083{left:253.798950px;}
.x12_c00083{left:255.959400px;}
.x3_c00083{left:262.798515px;}
.xc_c00083{left:268.918950px;}
.x1c_c00083{left:278.279250px;}
.x1d_c00083{left:317.159385px;}
.xd_c00083{left:323.279850px;}
.x1e_c00083{left:403.559685px;}
.x13_c00083{left:438.479685px;}
.x14_c00083{left:470.878320px;}
.x22_c00083{left:519.118785px;}
.x15_c00083{left:524.519070px;}
.x23_c00083{left:539.279850px;}
.x16_c00083{left:541.079400px;}
.x8_c00083{left:551.519070px;}
.x9_c00083{left:566.279850px;}
.x1f_c00083{left:580.318770px;}
.x6_c00083{left:584.278800px;}
.x7_c00083{left:599.039385px;}
.x17_c00083{left:633.598530px;}
.x18_c00083{left:663.838530px;}
.x20_c00083{left:686.878320px;}
.x24_c00083{left:734.398635px;}
.x25_c00083{left:770.759130px;}
.x21_c00083{left:772.919490px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls15_c00083{letter-spacing:-12.224667pt;}
.ls10_c00083{letter-spacing:-10.972800pt;}
.lse_c00083{letter-spacing:-7.924000pt;}
.lsd_c00083{letter-spacing:-7.266700pt;}
.lsf_c00083{letter-spacing:-6.601000pt;}
.lsc_c00083{letter-spacing:-5.943000pt;}
.lsb_c00083{letter-spacing:-5.285000pt;}
.ls17_c00083{letter-spacing:-4.962467pt;}
.ls9_c00083{letter-spacing:-4.619300pt;}
.ls7_c00083{letter-spacing:-3.961300pt;}
.ls3_c00083{letter-spacing:-3.304000pt;}
.ls1a_c00083{letter-spacing:-2.789800pt;}
.ls5_c00083{letter-spacing:-2.639000pt;}
.ls0_c00083{letter-spacing:-2.110267pt;}
.ls2_c00083{letter-spacing:-2.034493pt;}
.ls4_c00083{letter-spacing:-1.981700pt;}
.ls14_c00083{letter-spacing:-1.414000pt;}
.ls1_c00083{letter-spacing:-1.357300pt;}
.ls16_c00083{letter-spacing:-1.331200pt;}
.ls8_c00083{letter-spacing:-1.323700pt;}
.ls18_c00083{letter-spacing:-0.760000pt;}
.ls11_c00083{letter-spacing:-0.699600pt;}
.lsa_c00083{letter-spacing:-0.658000pt;}
.ls6_c00083{letter-spacing:0.000000pt;}
.ls19_c00083{letter-spacing:0.727200pt;}
.ls12_c00083{letter-spacing:1.261867pt;}
.ls13_c00083{letter-spacing:3.434680pt;}
.ws0_c00083{word-spacing:0.000000pt;}
._1e_c00083{margin-left:-16.524504pt;}
._17_c00083{margin-left:-6.056215pt;}
._1c_c00083{margin-left:-2.798983pt;}
._1b_c00083{margin-left:-1.449555pt;}
._1_c00083{width:1.054623pt;}
._c_c00083{width:2.082579pt;}
._4_c00083{width:3.018308pt;}
._5_c00083{width:3.992140pt;}
._2_c00083{width:5.256974pt;}
._3_c00083{width:6.617642pt;}
._10_c00083{width:7.628006pt;}
._0_c00083{width:8.792053pt;}
._8_c00083{width:9.946604pt;}
._a_c00083{width:10.916883pt;}
._18_c00083{width:11.845096pt;}
._6_c00083{width:12.971502pt;}
._19_c00083{width:14.632060pt;}
._7_c00083{width:16.385032pt;}
._9_c00083{width:18.029068pt;}
._b_c00083{width:19.111202pt;}
._1a_c00083{width:21.271851pt;}
._14_c00083{width:22.266577pt;}
._d_c00083{width:23.359158pt;}
._e_c00083{width:25.101762pt;}
._15_c00083{width:26.977630pt;}
._11_c00083{width:28.374104pt;}
._16_c00083{width:29.772440pt;}
._f_c00083{width:31.513855pt;}
._1d_c00083{width:32.419800pt;}
._12_c00083{width:33.379817pt;}
._13_c00083{width:34.887974pt;}
.fs0_c00083{font-size:65.333333pt;}
.fs6_c00083{font-size:66.666667pt;}
.fsc_c00083{font-size:67.333333pt;}
.fsb_c00083{font-size:68.000000pt;}
.fs9_c00083{font-size:69.333333pt;}
.fs1_c00083{font-size:70.000000pt;}
.fs2_c00083{font-size:70.666667pt;}
.fs4_c00083{font-size:71.333333pt;}
.fs5_c00083{font-size:72.000000pt;}
.fsa_c00083{font-size:73.333333pt;}
.fse_c00083{font-size:74.000000pt;}
.fs8_c00083{font-size:74.666667pt;}
.fs3_c00083{font-size:75.333333pt;}
.fs7_c00083{font-size:90.000000pt;}
.fsd_c00083{font-size:102.666667pt;}
.y0_c00083{bottom:0.000000pt;}
.y24_c00083{bottom:194.239667pt;}
.y22_c00083{bottom:221.118413pt;}
.y23_c00083{bottom:221.119587pt;}
.y21_c00083{bottom:247.678160pt;}
.y20_c00083{bottom:274.398920pt;}
.y1e_c00083{bottom:300.799800pt;}
.y1f_c00083{bottom:300.799867pt;}
.y1d_c00083{bottom:327.679733pt;}
.y1c_c00083{bottom:380.479987pt;}
.y1b_c00083{bottom:406.719680pt;}
.y19_c00083{bottom:433.598933pt;}
.y1a_c00083{bottom:433.599613pt;}
.y18_c00083{bottom:460.158693pt;}
.y17_c00083{bottom:460.159440pt;}
.y16_c00083{bottom:486.719200pt;}
.y15_c00083{bottom:486.719627pt;}
.y14_c00083{bottom:512.959213pt;}
.y13_c00083{bottom:565.760147pt;}
.y12_c00083{bottom:592.319907pt;}
.y11_c00083{bottom:618.879653pt;}
.y10_c00083{bottom:645.759587pt;}
.yf_c00083{bottom:672.319333pt;}
.ye_c00083{bottom:725.120280pt;}
.yd_c00083{bottom:752.318760pt;}
.yc_c00083{bottom:752.319320pt;}
.yb_c00083{bottom:778.399480pt;}
.ya_c00083{bottom:805.120253pt;}
.y9_c00083{bottom:831.359840pt;}
.y8_c00083{bottom:857.919600pt;}
.y7_c00083{bottom:884.159173pt;}
.y6_c00083{bottom:884.159307pt;}
.y5_c00083{bottom:910.719053pt;}
.y3_c00083{bottom:937.278773pt;}
.y4_c00083{bottom:937.278813pt;}
.y2_c00083{bottom:964.158693pt;}
.y1_c00083{bottom:1017.599040pt;}
.h9_c00083{height:65.429688pt;}
.he_c00083{height:66.738281pt;}
.h10_c00083{height:67.859375pt;}
.hc_c00083{height:68.046875pt;}
.h1_c00083{height:68.140625pt;}
.h11_c00083{height:68.531250pt;}
.h4_c00083{height:68.701172pt;}
.h8_c00083{height:69.355469pt;}
.h12_c00083{height:69.531250pt;}
.h6_c00083{height:70.009766pt;}
.h2_c00083{height:70.546875pt;}
.h7_c00083{height:71.156250pt;}
.h3_c00083{height:71.218750pt;}
.hd_c00083{height:71.972656pt;}
.hf_c00083{height:72.473958pt;}
.h14_c00083{height:72.626953pt;}
.h5_c00083{height:73.935547pt;}
.hb_c00083{height:77.875000pt;}
.ha_c00083{height:93.867188pt;}
.h13_c00083{height:107.078125pt;}
.h0_c00083{height:1122.666667pt;}
.w0_c00083{width:793.333333pt;}
.x0_c00083{left:0.000000pt;}
.xe_c00083{left:127.361920pt;}
.x1_c00083{left:128.318813pt;}
.xf_c00083{left:129.287453pt;}
.x19_c00083{left:149.119613pt;}
.xa_c00083{left:157.440000pt;}
.x2_c00083{left:174.079067pt;}
.x1a_c00083{left:185.598680pt;}
.x4_c00083{left:206.399453pt;}
.x10_c00083{left:209.919453pt;}
.x1b_c00083{left:211.199733pt;}
.x11_c00083{left:215.359867pt;}
.x5_c00083{left:219.518533pt;}
.xb_c00083{left:225.599067pt;}
.x12_c00083{left:227.519467pt;}
.x3_c00083{left:233.598680pt;}
.xc_c00083{left:239.039067pt;}
.x1c_c00083{left:247.359333pt;}
.x1d_c00083{left:281.919453pt;}
.xd_c00083{left:287.359867pt;}
.x1e_c00083{left:358.719720pt;}
.x13_c00083{left:389.759720pt;}
.x14_c00083{left:418.558507pt;}
.x22_c00083{left:461.438920pt;}
.x15_c00083{left:466.239173pt;}
.x23_c00083{left:479.359867pt;}
.x16_c00083{left:480.959467pt;}
.x8_c00083{left:490.239173pt;}
.x9_c00083{left:503.359867pt;}
.x1f_c00083{left:515.838907pt;}
.x6_c00083{left:519.358933pt;}
.x7_c00083{left:532.479453pt;}
.x17_c00083{left:563.198693pt;}
.x18_c00083{left:590.078693pt;}
.x20_c00083{left:610.558507pt;}
.x24_c00083{left:652.798787pt;}
.x25_c00083{left:685.119227pt;}
.x21_c00083{left:687.039547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aced62041fa5f6485e56c901.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_6268b7db346113160fcc615c.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.432129;font-style:normal;font-weight:normal;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_6f3f7a146b3ece24dd046aa0.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.432129;font-style:normal;font-weight:normal;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_c688de1cd634eb46d6160b76.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;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_98e9bb607491991f3807e9e1.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00084;src:url('chunks/assets/font_07459d300cd71881250857d3.woff2')format("woff");}.ff6_c00084{font-family:ff6_c00084;line-height:1.364746;font-style:normal;font-weight: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_c00084;src:url('chunks/assets/font_228f3fc87f9975f05a57ab1c.woff2')format("woff");}.ff7_c00084{font-family:ff7_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;}
.me_c00084{transform:matrix(0.163934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163934,0.000000,0.000000,0.250000,0,0);}
.m27_c00084{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m7_c00084{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m21_c00084{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.ma_c00084{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m33_c00084{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m23_c00084{transform:matrix(0.212662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212662,0.000000,0.000000,0.250000,0,0);}
.m25_c00084{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m24_c00084{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2b_c00084{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);}
.m1f_c00084{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m31_c00084{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m32_c00084{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);}
.m28_c00084{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m30_c00084{transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);}
.m1e_c00084{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.md_c00084{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m22_c00084{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2f_c00084{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m2c_c00084{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m26_c00084{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m14_c00084{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m29_c00084{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.mb_c00084{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m9_c00084{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m2e_c00084{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m2d_c00084{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m8_c00084{transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258803,0.000000,0.000000,0.250000,0,0);}
.m15_c00084{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m17_c00084{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m10_c00084{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m12_c00084{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m13_c00084{transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);}
.m1a_c00084{transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);}
.m19_c00084{transform:matrix(0.325758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325758,0.000000,0.000000,0.250000,0,0);}
.m1b_c00084{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m16_c00084{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m18_c00084{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);}
.mf_c00084{transform:matrix(0.378472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378472,0.000000,0.000000,0.250000,0,0);}
.m20_c00084{transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);}
.m11_c00084{transform:matrix(0.399038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399038,0.000000,0.000000,0.250000,0,0);}
.m2a_c00084{transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413043,0.000000,0.000000,0.250000,0,0);}
.mc_c00084{transform:matrix(0.425439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425439,0.000000,0.000000,0.250000,0,0);}
.m1c_c00084{transform:matrix(0.532895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532895,0.000000,0.000000,0.250000,0,0);}
.m1d_c00084{transform:matrix(0.590278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590278,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls15_c00084{letter-spacing:-9.937500px;}
.ls26_c00084{letter-spacing:-6.811875px;}
.ls31_c00084{letter-spacing:-6.749550px;}
.ls2d_c00084{letter-spacing:-6.058035px;}
.ls27_c00084{letter-spacing:-6.055875px;}
.lsc_c00084{letter-spacing:-5.300663px;}
.ls6_c00084{letter-spacing:-5.203125px;}
.ls30_c00084{letter-spacing:-4.852800px;}
.lsb_c00084{letter-spacing:-4.626233px;}
.ls8_c00084{letter-spacing:-4.543088px;}
.ls2e_c00084{letter-spacing:-4.412948px;}
.ls9_c00084{letter-spacing:-3.787875px;}
.ls22_c00084{letter-spacing:-3.230100px;}
.ls2b_c00084{letter-spacing:-3.160500px;}
.ls5_c00084{letter-spacing:-3.031875px;}
.lsf_c00084{letter-spacing:-3.000375px;}
.ls2c_c00084{letter-spacing:-2.940600px;}
.ls2a_c00084{letter-spacing:-2.528250px;}
.lse_c00084{letter-spacing:-2.271878px;}
.ls7_c00084{letter-spacing:-2.267213px;}
.ls2_c00084{letter-spacing:-2.184000px;}
.lsd_c00084{letter-spacing:-2.172600px;}
.ls1a_c00084{letter-spacing:-2.165693px;}
.ls23_c00084{letter-spacing:-1.672800px;}
.ls32_c00084{letter-spacing:-1.665000px;}
.ls28_c00084{letter-spacing:-1.560038px;}
.ls4_c00084{letter-spacing:-1.512000px;}
.ls29_c00084{letter-spacing:-1.501478px;}
.ls33_c00084{letter-spacing:-1.459380px;}
.ls16_c00084{letter-spacing:-1.407900px;}
.ls12_c00084{letter-spacing:-0.805350px;}
.ls3_c00084{letter-spacing:-0.756000px;}
.ls21_c00084{letter-spacing:-0.634500px;}
.ls17_c00084{letter-spacing:-0.471900px;}
.lsa_c00084{letter-spacing:0.000000px;}
.ls20_c00084{letter-spacing:0.703950px;}
.ls0_c00084{letter-spacing:0.756000px;}
.ls10_c00084{letter-spacing:0.757350px;}
.ls14_c00084{letter-spacing:0.988200px;}
.ls1_c00084{letter-spacing:1.512000px;}
.ls25_c00084{letter-spacing:1.591200px;}
.ls24_c00084{letter-spacing:1.920000px;}
.ls18_c00084{letter-spacing:2.722050px;}
.ls11_c00084{letter-spacing:3.086550px;}
.ls1d_c00084{letter-spacing:3.999600px;}
.ls1b_c00084{letter-spacing:4.125000px;}
.ls1e_c00084{letter-spacing:5.756850px;}
.ls19_c00084{letter-spacing:7.679700px;}
.ls1c_c00084{letter-spacing:7.897162px;}
.ls2f_c00084{letter-spacing:8.749125px;}
.ls1f_c00084{letter-spacing:9.273600px;}
.ls13_c00084{letter-spacing:24.018292px;}
.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;}
._12_c00084{margin-left:-11.108657px;}
._13_c00084{margin-left:-8.166617px;}
._11_c00084{margin-left:-5.884503px;}
._b_c00084{margin-left:-2.867348px;}
._a_c00084{margin-left:-1.252004px;}
._1a_c00084{width:1.112253px;}
._10_c00084{width:2.183374px;}
._5_c00084{width:3.220996px;}
._0_c00084{width:4.236265px;}
._19_c00084{width:5.284549px;}
._1_c00084{width:6.455440px;}
._3_c00084{width:8.213262px;}
._18_c00084{width:9.313702px;}
._9_c00084{width:10.616833px;}
._8_c00084{width:11.697767px;}
._2_c00084{width:13.498840px;}
._4_c00084{width:14.844193px;}
._7_c00084{width:16.459174px;}
._e_c00084{width:18.745468px;}
._f_c00084{width:20.821076px;}
._6_c00084{width:21.953319px;}
._d_c00084{width:24.191758px;}
._c_c00084{width:26.266760px;}
._17_c00084{width:35.398307px;}
._16_c00084{width:50.722512px;}
._15_c00084{width:56.448182px;}
._14_c00084{width:62.716439px;}
.fc0_c00084{color:transparent;}
.fs1c_c00084{font-size:12.000000px;}
.fs16_c00084{font-size:24.750000px;}
.fs19_c00084{font-size:27.000000px;}
.fs18_c00084{font-size:28.500000px;}
.fs14_c00084{font-size:33.000000px;}
.fs15_c00084{font-size:33.750000px;}
.fs17_c00084{font-size:36.000000px;}
.fsf_c00084{font-size:39.000000px;}
.fse_c00084{font-size:39.750000px;}
.fsa_c00084{font-size:42.750000px;}
.fsb_c00084{font-size:44.250000px;}
.fsc_c00084{font-size:45.750000px;}
.fs11_c00084{font-size:49.500000px;}
.fs10_c00084{font-size:51.750000px;}
.fsd_c00084{font-size:54.000000px;}
.fs12_c00084{font-size:63.000000px;}
.fs22_c00084{font-size:72.000000px;}
.fs1a_c00084{font-size:72.750000px;}
.fs21_c00084{font-size:73.500000px;}
.fs20_c00084{font-size:75.000000px;}
.fs13_c00084{font-size:75.750000px;}
.fs9_c00084{font-size:76.500000px;}
.fs0_c00084{font-size:78.000000px;}
.fs1_c00084{font-size:78.750000px;}
.fs23_c00084{font-size:79.500000px;}
.fs3_c00084{font-size:80.250000px;}
.fs5_c00084{font-size:81.750000px;}
.fs6_c00084{font-size:82.500000px;}
.fs2_c00084{font-size:83.250000px;}
.fs1e_c00084{font-size:84.000000px;}
.fs1d_c00084{font-size:84.750000px;}
.fs1f_c00084{font-size:86.250000px;}
.fs4_c00084{font-size:101.250000px;}
.fs1b_c00084{font-size:102.000000px;}
.fs7_c00084{font-size:106.500000px;}
.fs8_c00084{font-size:115.500000px;}
.y0_c00084{bottom:0.000000px;}
.y26_c00084{bottom:304.919010px;}
.y27_c00084{bottom:304.920000px;}
.y25_c00084{bottom:334.798740px;}
.y24_c00084{bottom:394.560285px;}
.y23_c00084{bottom:424.800150px;}
.y22_c00084{bottom:435.959970px;}
.y20_c00084{bottom:454.319775px;}
.y21_c00084{bottom:454.319820px;}
.y1f_c00084{bottom:484.559685px;}
.y1e_c00084{bottom:514.438665px;}
.y1d_c00084{bottom:514.439505px;}
.y1c_c00084{bottom:544.319235px;}
.y1a_c00084{bottom:574.199040px;}
.y1b_c00084{bottom:574.199850px;}
.y18_c00084{bottom:604.078080px;}
.y19_c00084{bottom:604.078770px;}
.y17_c00084{bottom:633.239220px;}
.y16_c00084{bottom:633.240345px;}
.y15_c00084{bottom:663.120075px;}
.y14_c00084{bottom:692.639610px;}
.y13_c00084{bottom:722.879520px;}
.y12_c00084{bottom:753.119385px;}
.y11_c00084{bottom:758.878920px;}
.y10_c00084{bottom:813.238290px;}
.yf_c00084{bottom:843.118005px;}
.ye_c00084{bottom:872.639355px;}
.yd_c00084{bottom:902.519070px;}
.yc_c00084{bottom:932.038965px;}
.yb_c00084{bottom:932.039775px;}
.ya_c00084{bottom:961.919490px;}
.y9_c00084{bottom:991.800105px;}
.y8_c00084{bottom:991.801110px;}
.y7_c00084{bottom:1022.399415px;}
.y6_c00084{bottom:1051.918950px;}
.y5_c00084{bottom:1051.919835px;}
.y4_c00084{bottom:1081.799565px;}
.y3_c00084{bottom:1081.799610px;}
.y2_c00084{bottom:1111.319145px;}
.y1_c00084{bottom:1141.559055px;}
.h20_c00084{height:12.093750px;}
.h19_c00084{height:25.813477px;}
.h1d_c00084{height:28.160156px;}
.h1c_c00084{height:29.724609px;}
.h18_c00084{height:33.257812px;}
.h17_c00084{height:33.354492px;}
.h16_c00084{height:34.417969px;}
.h1b_c00084{height:36.281250px;}
.h1a_c00084{height:38.542969px;}
.h10_c00084{height:39.284180px;}
.h11_c00084{height:40.675781px;}
.hc_c00084{height:44.586914px;}
.he_c00084{height:44.878784px;}
.hd_c00084{height:46.151367px;}
.h13_c00084{height:51.626953px;}
.h12_c00084{height:52.154297px;}
.hf_c00084{height:53.367188px;}
.h14_c00084{height:63.492188px;}
.h15_c00084{height:74.344482px;}
.hb_c00084{height:75.080566px;}
.h29_c00084{height:75.093750px;}
.h1e_c00084{height:75.875977px;}
.h1_c00084{height:76.552734px;}
.h25_c00084{height:76.658203px;}
.h2_c00084{height:77.288818px;}
.h24_c00084{height:78.222656px;}
.h4_c00084{height:78.760986px;}
.h28_c00084{height:79.365234px;}
.h26_c00084{height:79.787109px;}
.h2a_c00084{height:80.121094px;}
.h7_c00084{height:80.233154px;}
.h27_c00084{height:80.876953px;}
.h8_c00084{height:80.969238px;}
.h3_c00084{height:81.705322px;}
.h6_c00084{height:82.133789px;}
.h21_c00084{height:83.177490px;}
.h22_c00084{height:87.609375px;}
.h23_c00084{height:89.956055px;}
.h5_c00084{height:105.600586px;}
.h1f_c00084{height:106.382812px;}
.h9_c00084{height:111.076172px;}
.ha_c00084{height:120.462891px;}
.h0_c00084{height:1263.000000px;}
.w0_c00084{width:892.500000px;}
.x0_c00084{left:0.000000px;}
.x29_c00084{left:145.437540px;}
.x1_c00084{left:146.878350px;}
.xc_c00084{left:148.316370px;}
.x3a_c00084{left:161.279850px;}
.x2c_c00084{left:175.318800px;}
.x2_c00084{left:186.478665px;}
.x17_c00084{left:193.678500px;}
.x18_c00084{left:211.319850px;}
.x3c_c00084{left:214.198785px;}
.x31_c00084{left:227.878350px;}
.x3d_c00084{left:229.318800px;}
.x19_c00084{left:249.838950px;}
.x25_c00084{left:253.439685px;}
.x11_c00084{left:264.958950px;}
.x26_c00084{left:269.279850px;}
.x32_c00084{left:273.239850px;}
.x1a_c00084{left:286.919535px;}
.x3_c00084{left:297.359250px;}
.x1b_c00084{left:305.638500px;}
.x12_c00084{left:308.519100px;}
.x4_c00084{left:317.879535px;}
.x3b_c00084{left:319.319850px;}
.x22_c00084{left:339.838515px;}
.xd_c00084{left:348.478635px;}
.xe_c00084{left:366.838515px;}
.x14_c00084{left:369.359850px;}
.x1f_c00084{left:388.439715px;}
.x7_c00084{left:398.159415px;}
.x8_c00084{left:404.279850px;}
.x33_c00084{left:413.999400px;}
.x9_c00084{left:417.239220px;}
.x20_c00084{left:420.119985px;}
.x15_c00084{left:424.080000px;}
.x2d_c00084{left:444.239220px;}
.x2f_c00084{left:472.679670px;}
.xa_c00084{left:481.679070px;}
.x34_c00084{left:482.758530px;}
.x2e_c00084{left:487.079400px;}
.x30_c00084{left:493.918350px;}
.x23_c00084{left:497.878320px;}
.xb_c00084{left:501.479235px;}
.x35_c00084{left:506.159415px;}
.x1c_c00084{left:537.839535px;}
.x27_c00084{left:550.439670px;}
.x36_c00084{left:551.519070px;}
.x28_c00084{left:569.158770px;}
.x21_c00084{left:576.358665px;}
.xf_c00084{left:589.319820px;}
.x10_c00084{left:624.599070px;}
.x1d_c00084{left:632.159820px;}
.x24_c00084{left:669.238770px;}
.x37_c00084{left:675.359250px;}
.x2a_c00084{left:701.639100px;}
.x2b_c00084{left:716.038920px;}
.x5_c00084{left:719.278800px;}
.x1e_c00084{left:725.399235px;}
.x38_c00084{left:730.799520px;}
.x6_c00084{left:734.039385px;}
.x39_c00084{left:754.198785px;}
.x16_c00084{left:774.719055px;}
.x13_c00084{left:779.758575px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls15_c00084{letter-spacing:-8.833333pt;}
.ls26_c00084{letter-spacing:-6.055000pt;}
.ls31_c00084{letter-spacing:-5.999600pt;}
.ls2d_c00084{letter-spacing:-5.384920pt;}
.ls27_c00084{letter-spacing:-5.383000pt;}
.lsc_c00084{letter-spacing:-4.711700pt;}
.ls6_c00084{letter-spacing:-4.625000pt;}
.ls30_c00084{letter-spacing:-4.313600pt;}
.lsb_c00084{letter-spacing:-4.112207pt;}
.ls8_c00084{letter-spacing:-4.038300pt;}
.ls2e_c00084{letter-spacing:-3.922620pt;}
.ls9_c00084{letter-spacing:-3.367000pt;}
.ls22_c00084{letter-spacing:-2.871200pt;}
.ls2b_c00084{letter-spacing:-2.809333pt;}
.ls5_c00084{letter-spacing:-2.695000pt;}
.lsf_c00084{letter-spacing:-2.667000pt;}
.ls2c_c00084{letter-spacing:-2.613867pt;}
.ls2a_c00084{letter-spacing:-2.247333pt;}
.lse_c00084{letter-spacing:-2.019447pt;}
.ls7_c00084{letter-spacing:-2.015300pt;}
.ls2_c00084{letter-spacing:-1.941333pt;}
.lsd_c00084{letter-spacing:-1.931200pt;}
.ls1a_c00084{letter-spacing:-1.925060pt;}
.ls23_c00084{letter-spacing:-1.486933pt;}
.ls32_c00084{letter-spacing:-1.480000pt;}
.ls28_c00084{letter-spacing:-1.386700pt;}
.ls4_c00084{letter-spacing:-1.344000pt;}
.ls29_c00084{letter-spacing:-1.334647pt;}
.ls33_c00084{letter-spacing:-1.297227pt;}
.ls16_c00084{letter-spacing:-1.251467pt;}
.ls12_c00084{letter-spacing:-0.715867pt;}
.ls3_c00084{letter-spacing:-0.672000pt;}
.ls21_c00084{letter-spacing:-0.564000pt;}
.ls17_c00084{letter-spacing:-0.419467pt;}
.lsa_c00084{letter-spacing:0.000000pt;}
.ls20_c00084{letter-spacing:0.625733pt;}
.ls0_c00084{letter-spacing:0.672000pt;}
.ls10_c00084{letter-spacing:0.673200pt;}
.ls14_c00084{letter-spacing:0.878400pt;}
.ls1_c00084{letter-spacing:1.344000pt;}
.ls25_c00084{letter-spacing:1.414400pt;}
.ls24_c00084{letter-spacing:1.706667pt;}
.ls18_c00084{letter-spacing:2.419600pt;}
.ls11_c00084{letter-spacing:2.743600pt;}
.ls1d_c00084{letter-spacing:3.555200pt;}
.ls1b_c00084{letter-spacing:3.666667pt;}
.ls1e_c00084{letter-spacing:5.117200pt;}
.ls19_c00084{letter-spacing:6.826400pt;}
.ls1c_c00084{letter-spacing:7.019700pt;}
.ls2f_c00084{letter-spacing:7.777000pt;}
.ls1f_c00084{letter-spacing:8.243200pt;}
.ls13_c00084{letter-spacing:21.349593pt;}
.ws0_c00084{word-spacing:0.000000pt;}
._12_c00084{margin-left:-9.874362pt;}
._13_c00084{margin-left:-7.259215pt;}
._11_c00084{margin-left:-5.230669pt;}
._b_c00084{margin-left:-2.548754pt;}
._a_c00084{margin-left:-1.112892pt;}
._1a_c00084{width:0.988669pt;}
._10_c00084{width:1.940777pt;}
._5_c00084{width:2.863108pt;}
._0_c00084{width:3.765569pt;}
._19_c00084{width:4.697377pt;}
._1_c00084{width:5.738169pt;}
._3_c00084{width:7.300677pt;}
._18_c00084{width:8.278846pt;}
._9_c00084{width:9.437185pt;}
._8_c00084{width:10.398015pt;}
._2_c00084{width:11.998969pt;}
._4_c00084{width:13.194838pt;}
._7_c00084{width:14.630377pt;}
._e_c00084{width:16.662638pt;}
._f_c00084{width:18.507623pt;}
._6_c00084{width:19.514062pt;}
._d_c00084{width:21.503785pt;}
._c_c00084{width:23.348231pt;}
._17_c00084{width:31.465162pt;}
._16_c00084{width:45.086677pt;}
._15_c00084{width:50.176162pt;}
._14_c00084{width:55.747946pt;}
.fs1c_c00084{font-size:10.666667pt;}
.fs16_c00084{font-size:22.000000pt;}
.fs19_c00084{font-size:24.000000pt;}
.fs18_c00084{font-size:25.333333pt;}
.fs14_c00084{font-size:29.333333pt;}
.fs15_c00084{font-size:30.000000pt;}
.fs17_c00084{font-size:32.000000pt;}
.fsf_c00084{font-size:34.666667pt;}
.fse_c00084{font-size:35.333333pt;}
.fsa_c00084{font-size:38.000000pt;}
.fsb_c00084{font-size:39.333333pt;}
.fsc_c00084{font-size:40.666667pt;}
.fs11_c00084{font-size:44.000000pt;}
.fs10_c00084{font-size:46.000000pt;}
.fsd_c00084{font-size:48.000000pt;}
.fs12_c00084{font-size:56.000000pt;}
.fs22_c00084{font-size:64.000000pt;}
.fs1a_c00084{font-size:64.666667pt;}
.fs21_c00084{font-size:65.333333pt;}
.fs20_c00084{font-size:66.666667pt;}
.fs13_c00084{font-size:67.333333pt;}
.fs9_c00084{font-size:68.000000pt;}
.fs0_c00084{font-size:69.333333pt;}
.fs1_c00084{font-size:70.000000pt;}
.fs23_c00084{font-size:70.666667pt;}
.fs3_c00084{font-size:71.333333pt;}
.fs5_c00084{font-size:72.666667pt;}
.fs6_c00084{font-size:73.333333pt;}
.fs2_c00084{font-size:74.000000pt;}
.fs1e_c00084{font-size:74.666667pt;}
.fs1d_c00084{font-size:75.333333pt;}
.fs1f_c00084{font-size:76.666667pt;}
.fs4_c00084{font-size:90.000000pt;}
.fs1b_c00084{font-size:90.666667pt;}
.fs7_c00084{font-size:94.666667pt;}
.fs8_c00084{font-size:102.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y26_c00084{bottom:271.039120pt;}
.y27_c00084{bottom:271.040000pt;}
.y25_c00084{bottom:297.598880pt;}
.y24_c00084{bottom:350.720253pt;}
.y23_c00084{bottom:377.600133pt;}
.y22_c00084{bottom:387.519973pt;}
.y20_c00084{bottom:403.839800pt;}
.y21_c00084{bottom:403.839840pt;}
.y1f_c00084{bottom:430.719720pt;}
.y1e_c00084{bottom:457.278813pt;}
.y1d_c00084{bottom:457.279560pt;}
.y1c_c00084{bottom:483.839320pt;}
.y1a_c00084{bottom:510.399147pt;}
.y1b_c00084{bottom:510.399867pt;}
.y18_c00084{bottom:536.958293pt;}
.y19_c00084{bottom:536.958907pt;}
.y17_c00084{bottom:562.879307pt;}
.y16_c00084{bottom:562.880307pt;}
.y15_c00084{bottom:589.440067pt;}
.y14_c00084{bottom:615.679653pt;}
.y13_c00084{bottom:642.559573pt;}
.y12_c00084{bottom:669.439453pt;}
.y11_c00084{bottom:674.559040pt;}
.y10_c00084{bottom:722.878480pt;}
.yf_c00084{bottom:749.438227pt;}
.ye_c00084{bottom:775.679427pt;}
.yd_c00084{bottom:802.239173pt;}
.yc_c00084{bottom:828.479080pt;}
.yb_c00084{bottom:828.479800pt;}
.ya_c00084{bottom:855.039547pt;}
.y9_c00084{bottom:881.600093pt;}
.y8_c00084{bottom:881.600987pt;}
.y7_c00084{bottom:908.799480pt;}
.y6_c00084{bottom:935.039067pt;}
.y5_c00084{bottom:935.039853pt;}
.y4_c00084{bottom:961.599613pt;}
.y3_c00084{bottom:961.599653pt;}
.y2_c00084{bottom:987.839240pt;}
.y1_c00084{bottom:1014.719160pt;}
.h20_c00084{height:10.750000pt;}
.h19_c00084{height:22.945312pt;}
.h1d_c00084{height:25.031250pt;}
.h1c_c00084{height:26.421875pt;}
.h18_c00084{height:29.562500pt;}
.h17_c00084{height:29.648437pt;}
.h16_c00084{height:30.593750pt;}
.h1b_c00084{height:32.250000pt;}
.h1a_c00084{height:34.260417pt;}
.h10_c00084{height:34.919271pt;}
.h11_c00084{height:36.156250pt;}
.hc_c00084{height:39.632812pt;}
.he_c00084{height:39.892253pt;}
.hd_c00084{height:41.023438pt;}
.h13_c00084{height:45.890625pt;}
.h12_c00084{height:46.359375pt;}
.hf_c00084{height:47.437500pt;}
.h14_c00084{height:56.437500pt;}
.h15_c00084{height:66.083984pt;}
.hb_c00084{height:66.738281pt;}
.h29_c00084{height:66.750000pt;}
.h1e_c00084{height:67.445312pt;}
.h1_c00084{height:68.046875pt;}
.h25_c00084{height:68.140625pt;}
.h2_c00084{height:68.701172pt;}
.h24_c00084{height:69.531250pt;}
.h4_c00084{height:70.009766pt;}
.h28_c00084{height:70.546875pt;}
.h26_c00084{height:70.921875pt;}
.h2a_c00084{height:71.218750pt;}
.h7_c00084{height:71.318359pt;}
.h27_c00084{height:71.890625pt;}
.h8_c00084{height:71.972656pt;}
.h3_c00084{height:72.626953pt;}
.h6_c00084{height:73.007812pt;}
.h21_c00084{height:73.935547pt;}
.h22_c00084{height:77.875000pt;}
.h23_c00084{height:79.960938pt;}
.h5_c00084{height:93.867188pt;}
.h1f_c00084{height:94.562500pt;}
.h9_c00084{height:98.734375pt;}
.ha_c00084{height:107.078125pt;}
.h0_c00084{height:1122.666667pt;}
.w0_c00084{width:793.333333pt;}
.x0_c00084{left:0.000000pt;}
.x29_c00084{left:129.277813pt;}
.x1_c00084{left:130.558533pt;}
.xc_c00084{left:131.836773pt;}
.x3a_c00084{left:143.359867pt;}
.x2c_c00084{left:155.838933pt;}
.x2_c00084{left:165.758813pt;}
.x17_c00084{left:172.158667pt;}
.x18_c00084{left:187.839867pt;}
.x3c_c00084{left:190.398920pt;}
.x31_c00084{left:202.558533pt;}
.x3d_c00084{left:203.838933pt;}
.x19_c00084{left:222.079067pt;}
.x25_c00084{left:225.279720pt;}
.x11_c00084{left:235.519067pt;}
.x26_c00084{left:239.359867pt;}
.x32_c00084{left:242.879867pt;}
.x1a_c00084{left:255.039587pt;}
.x3_c00084{left:264.319333pt;}
.x1b_c00084{left:271.678667pt;}
.x12_c00084{left:274.239200pt;}
.x4_c00084{left:282.559587pt;}
.x3b_c00084{left:283.839867pt;}
.x22_c00084{left:302.078680pt;}
.xd_c00084{left:309.758787pt;}
.xe_c00084{left:326.078680pt;}
.x14_c00084{left:328.319867pt;}
.x1f_c00084{left:345.279747pt;}
.x7_c00084{left:353.919480pt;}
.x8_c00084{left:359.359867pt;}
.x33_c00084{left:367.999467pt;}
.x9_c00084{left:370.879307pt;}
.x20_c00084{left:373.439987pt;}
.x15_c00084{left:376.960000pt;}
.x2d_c00084{left:394.879307pt;}
.x2f_c00084{left:420.159707pt;}
.xa_c00084{left:428.159173pt;}
.x34_c00084{left:429.118693pt;}
.x2e_c00084{left:432.959467pt;}
.x30_c00084{left:439.038533pt;}
.x23_c00084{left:442.558507pt;}
.xb_c00084{left:445.759320pt;}
.x35_c00084{left:449.919480pt;}
.x1c_c00084{left:478.079587pt;}
.x27_c00084{left:489.279707pt;}
.x36_c00084{left:490.239173pt;}
.x28_c00084{left:505.918907pt;}
.x21_c00084{left:512.318813pt;}
.xf_c00084{left:523.839840pt;}
.x10_c00084{left:555.199173pt;}
.x1d_c00084{left:561.919840pt;}
.x24_c00084{left:594.878907pt;}
.x37_c00084{left:600.319333pt;}
.x2a_c00084{left:623.679200pt;}
.x2b_c00084{left:636.479040pt;}
.x5_c00084{left:639.358933pt;}
.x1e_c00084{left:644.799320pt;}
.x38_c00084{left:649.599573pt;}
.x6_c00084{left:652.479453pt;}
.x39_c00084{left:670.398920pt;}
.x16_c00084{left:688.639160pt;}
.x13_c00084{left:693.118733pt;}
}





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

.ir_c00085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_6e87b785cbccb1f71fc4cab1.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_39e5b858bc054b55d21172b4.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_1c9fdc943f74bbed847f685b.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_bafea945e8314d3e039bd605.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_f94cb97c79c2137f7ce71598.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00085;src:url('chunks/assets/font_f08d45b5e30105b58d5b9869.woff2')format("woff");}.ff6_c00085{font-family:ff6_c00085;line-height:1.364746;font-style:normal;font-weight: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_c00085;src:url('chunks/assets/font_333721e8e04fdba6cd4430d5.woff2')format("woff");}.ff7_c00085{font-family:ff7_c00085;line-height:1.364746;font-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_c00085{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.m34_c00085{transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);}
.m23_c00085{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m2f_c00085{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m16_c00085{transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);}
.m2c_c00085{transform:matrix(0.197141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197141,0.000000,0.000000,0.250000,0,0);}
.m17_c00085{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m2a_c00085{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00085{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m29_c00085{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m22_c00085{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m32_c00085{transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);}
.mc_c00085{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.me_c00085{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m33_c00085{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4_c00085{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.mb_c00085{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.ma_c00085{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m11_c00085{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m31_c00085{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9_c00085{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m13_c00085{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m18_c00085{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m30_c00085{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m10_c00085{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m26_c00085{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m2e_c00085{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.mf_c00085{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m5_c00085{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m3_c00085{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.md_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00085{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m27_c00085{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00085{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m15_c00085{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m8_c00085{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m20_c00085{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m14_c00085{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m21_c00085{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m7_c00085{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m12_c00085{transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);}
.m1c_c00085{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m24_c00085{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.m1f_c00085{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m28_c00085{transform:matrix(0.328431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328431,0.000000,0.000000,0.250000,0,0);}
.m1e_c00085{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_c00085{transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);}
.m2b_c00085{transform:matrix(0.353591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353591,0.000000,0.000000,0.250000,0,0);}
.m1d_c00085{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);}
.m1a_c00085{transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00085{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls2b_c00085{letter-spacing:-16.285500px;}
.ls30_c00085{letter-spacing:-14.118300px;}
.ls14_c00085{letter-spacing:-10.402875px;}
.ls16_c00085{letter-spacing:-9.654750px;}
.ls1c_c00085{letter-spacing:-9.441338px;}
.ls2a_c00085{letter-spacing:-9.362925px;}
.ls25_c00085{letter-spacing:-8.887500px;}
.ls15_c00085{letter-spacing:-8.614125px;}
.ls18_c00085{letter-spacing:-8.250750px;}
.lsb_c00085{letter-spacing:-8.175038px;}
.ls2c_c00085{letter-spacing:-7.900200px;}
.ls13_c00085{letter-spacing:-7.362900px;}
.ls26_c00085{letter-spacing:-6.956100px;}
.ls8_c00085{letter-spacing:-6.685875px;}
.ls34_c00085{letter-spacing:-6.000000px;}
.lsc_c00085{letter-spacing:-5.945625px;}
.lsd_c00085{letter-spacing:-5.196713px;}
.lsf_c00085{letter-spacing:-5.118300px;}
.ls10_c00085{letter-spacing:-4.456463px;}
.ls36_c00085{letter-spacing:-4.407428px;}
.ls4_c00085{letter-spacing:-3.717000px;}
.ls37_c00085{letter-spacing:-3.528053px;}
.ls1e_c00085{letter-spacing:-3.296700px;}
.ls3_c00085{letter-spacing:-2.968875px;}
.ls1f_c00085{letter-spacing:-2.912325px;}
.ls12_c00085{letter-spacing:-2.781000px;}
.ls29_c00085{letter-spacing:-2.742750px;}
.ls31_c00085{letter-spacing:-2.362200px;}
.ls2d_c00085{letter-spacing:-2.230950px;}
.ls20_c00085{letter-spacing:-2.230020px;}
.ls5_c00085{letter-spacing:-2.229413px;}
.ls27_c00085{letter-spacing:-2.190083px;}
.ls23_c00085{letter-spacing:-1.725000px;}
.ls24_c00085{letter-spacing:-1.686000px;}
.ls1b_c00085{letter-spacing:-1.589753px;}
.lse_c00085{letter-spacing:-1.545180px;}
.ls7_c00085{letter-spacing:-1.489163px;}
.ls28_c00085{letter-spacing:-1.441125px;}
.ls1d_c00085{letter-spacing:-1.389218px;}
.ls22_c00085{letter-spacing:-0.824175px;}
.ls9_c00085{letter-spacing:-0.740250px;}
.ls6_c00085{letter-spacing:0.000000px;}
.ls2f_c00085{letter-spacing:0.530783px;}
.ls0_c00085{letter-spacing:1.489163px;}
.ls35_c00085{letter-spacing:1.819125px;}
.ls1a_c00085{letter-spacing:2.362500px;}
.ls33_c00085{letter-spacing:2.460300px;}
.ls32_c00085{letter-spacing:2.898923px;}
.lsa_c00085{letter-spacing:3.220650px;}
.ls11_c00085{letter-spacing:3.726810px;}
.ls17_c00085{letter-spacing:6.315675px;}
.ls1_c00085{letter-spacing:7.426125px;}
.ls21_c00085{letter-spacing:7.648170px;}
.ls2e_c00085{letter-spacing:7.995015px;}
.ls2_c00085{letter-spacing:12.631500px;}
.ls19_c00085{letter-spacing:41.514900px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
._1c_c00085{margin-left:-74.245500px;}
._17_c00085{margin-left:-53.471547px;}
._20_c00085{margin-left:-35.712031px;}
._1f_c00085{margin-left:-34.092959px;}
._1d_c00085{margin-left:-29.546180px;}
._1e_c00085{margin-left:-27.837539px;}
._18_c00085{margin-left:-25.857444px;}
._1b_c00085{margin-left:-23.349940px;}
._f_c00085{margin-left:-10.583970px;}
._1a_c00085{margin-left:-7.977553px;}
._16_c00085{margin-left:-6.038505px;}
._13_c00085{margin-left:-4.339690px;}
._14_c00085{margin-left:-2.091823px;}
._7_c00085{margin-left:-1.030971px;}
._1_c00085{width:1.915943px;}
._0_c00085{width:3.777860px;}
._9_c00085{width:5.791379px;}
._4_c00085{width:6.803747px;}
._3_c00085{width:8.623303px;}
._2_c00085{width:10.592380px;}
._5_c00085{width:12.072687px;}
._10_c00085{width:14.472110px;}
._6_c00085{width:16.096158px;}
._19_c00085{width:18.329241px;}
._12_c00085{width:19.919857px;}
._8_c00085{width:21.254818px;}
._11_c00085{width:23.002370px;}
._a_c00085{width:25.352047px;}
._d_c00085{width:27.551059px;}
._e_c00085{width:29.064872px;}
._c_c00085{width:30.252749px;}
._b_c00085{width:34.308790px;}
._15_c00085{width:41.225833px;}
.fc0_c00085{color:transparent;}
.fs10_c00085{font-size:20.250000px;}
.fs11_c00085{font-size:30.000000px;}
.fs18_c00085{font-size:44.250000px;}
.fs16_c00085{font-size:46.500000px;}
.fs1a_c00085{font-size:47.250000px;}
.fs19_c00085{font-size:48.000000px;}
.fs17_c00085{font-size:50.250000px;}
.fs9_c00085{font-size:69.750000px;}
.fsa_c00085{font-size:71.250000px;}
.fsb_c00085{font-size:74.250000px;}
.fs12_c00085{font-size:75.000000px;}
.fs2_c00085{font-size:76.500000px;}
.fs7_c00085{font-size:77.250000px;}
.fs3_c00085{font-size:78.000000px;}
.fs0_c00085{font-size:78.750000px;}
.fs4_c00085{font-size:79.500000px;}
.fs8_c00085{font-size:80.250000px;}
.fs6_c00085{font-size:81.000000px;}
.fs15_c00085{font-size:81.357600px;}
.fsc_c00085{font-size:81.750000px;}
.fsf_c00085{font-size:82.500000px;}
.fs1_c00085{font-size:84.000000px;}
.fse_c00085{font-size:84.750000px;}
.fsd_c00085{font-size:87.000000px;}
.fs13_c00085{font-size:88.500000px;}
.fs5_c00085{font-size:105.750000px;}
.fs14_c00085{font-size:135.750000px;}
.y0_c00085{bottom:0.000000px;}
.y25_c00085{bottom:169.920000px;}
.y24_c00085{bottom:209.879535px;}
.y22_c00085{bottom:271.080435px;}
.y23_c00085{bottom:271.081035px;}
.y21_c00085{bottom:300.599970px;}
.y20_c00085{bottom:330.479685px;}
.y1f_c00085{bottom:389.520720px;}
.y1d_c00085{bottom:419.040570px;}
.y1c_c00085{bottom:419.399820px;}
.y1e_c00085{bottom:419.760720px;}
.y1b_c00085{bottom:429.121035px;}
.y1a_c00085{bottom:429.480285px;}
.y19_c00085{bottom:449.280435px;}
.y18_c00085{bottom:510.121035px;}
.y17_c00085{bottom:569.519685px;}
.y16_c00085{bottom:599.041035px;}
.y15_c00085{bottom:599.041650px;}
.y14_c00085{bottom:628.200690px;}
.y13_c00085{bottom:658.080420px;}
.y12_c00085{bottom:658.080690px;}
.y11_c00085{bottom:717.840135px;}
.y10_c00085{bottom:749.879520px;}
.ye_c00085{bottom:777.960525px;}
.yf_c00085{bottom:777.960570px;}
.yd_c00085{bottom:808.200435px;}
.yc_c00085{bottom:808.200630px;}
.yb_c00085{bottom:837.720150px;}
.ya_c00085{bottom:897.479595px;}
.y8_c00085{bottom:927.719235px;}
.y9_c00085{bottom:927.719520px;}
.y7_c00085{bottom:957.961260px;}
.y6_c00085{bottom:988.201170px;}
.y5_c00085{bottom:1017.720705px;}
.y4_c00085{bottom:1017.722985px;}
.y3_c00085{bottom:1076.761755px;}
.y2_c00085{bottom:1106.641485px;}
.y1_c00085{bottom:1137.239775px;}
.h17_c00085{height:21.120117px;}
.h18_c00085{height:31.289062px;}
.h26_c00085{height:45.955078px;}
.h23_c00085{height:46.151367px;}
.h25_c00085{height:46.696289px;}
.h21_c00085{height:46.863281px;}
.h24_c00085{height:47.437500px;}
.h22_c00085{height:49.661133px;}
.hb_c00085{height:72.747070px;}
.hf_c00085{height:72.872314px;}
.hd_c00085{height:74.311523px;}
.h3_c00085{height:75.080566px;}
.h8_c00085{height:75.816650px;}
.h4_c00085{height:76.552734px;}
.h1_c00085{height:77.288818px;}
.h11_c00085{height:77.440430px;}
.h12_c00085{height:77.853516px;}
.h19_c00085{height:78.222656px;}
.h13_c00085{height:78.609375px;}
.ha_c00085{height:78.760986px;}
.he_c00085{height:79.365234px;}
.h7_c00085{height:79.497070px;}
.h1d_c00085{height:79.787109px;}
.h1f_c00085{height:79.848035px;}
.h20_c00085{height:80.050781px;}
.h5_c00085{height:80.121094px;}
.h10_c00085{height:80.233154px;}
.hc_c00085{height:80.876953px;}
.h16_c00085{height:80.969238px;}
.h1c_c00085{height:81.533203px;}
.h9_c00085{height:81.632812px;}
.h2_c00085{height:82.441406px;}
.h1b_c00085{height:82.916016px;}
.h15_c00085{height:83.177490px;}
.h14_c00085{height:85.385742px;}
.h1a_c00085{height:86.814697px;}
.h6_c00085{height:110.293945px;}
.h1e_c00085{height:134.159180px;}
.h0_c00085{height:1263.000000px;}
.w0_c00085{width:892.500000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:139.319250px;}
.x28_c00085{left:141.479715px;}
.x29_c00085{left:150.120000px;}
.x26_c00085{left:156.958950px;}
.x10_c00085{left:164.519685px;}
.x3a_c00085{left:183.238785px;}
.x27_c00085{left:188.639100px;}
.x1f_c00085{left:191.158785px;}
.x37_c00085{left:211.319850px;}
.x2a_c00085{left:220.319250px;}
.x3b_c00085{left:226.078785px;}
.x6_c00085{left:243.000000px;}
.x11_c00085{left:254.878350px;}
.x8_c00085{left:256.679700px;}
.x20_c00085{left:258.120000px;}
.x7_c00085{left:269.639100px;}
.x12_c00085{left:271.799535px;}
.x33_c00085{left:272.878950px;}
.x9_c00085{left:274.319250px;}
.x13_c00085{left:300.958350px;}
.x38_c00085{left:307.798950px;}
.x2b_c00085{left:344.159385px;}
.x39_c00085{left:352.799535px;}
.x14_c00085{left:397.080000px;}
.x2_c00085{left:419.399820px;}
.x3_c00085{left:433.799565px;}
.x2c_c00085{left:438.118785px;}
.x4_c00085{left:454.319820px;}
.x5_c00085{left:473.399820px;}
.x2d_c00085{left:475.558635px;}
.x15_c00085{left:485.639100px;}
.x2e_c00085{left:502.199385px;}
.xc_c00085{left:515.519670px;}
.xe_c00085{left:525.239220px;}
.xd_c00085{left:538.198785px;}
.xf_c00085{left:545.398635px;}
.x1d_c00085{left:553.679670px;}
.x2f_c00085{left:558.359850px;}
.x1e_c00085{left:566.639100px;}
.x16_c00085{left:574.199850px;}
.x21_c00085{left:599.759535px;}
.x1b_c00085{left:608.399820px;}
.x3c_c00085{left:609.838530px;}
.x3d_c00085{left:619.559685px;}
.x1c_c00085{left:630.719520px;}
.x17_c00085{left:635.399820px;}
.x22_c00085{left:649.799520px;}
.x30_c00085{left:660.239220px;}
.x23_c00085{left:666.359850px;}
.x18_c00085{left:668.518620px;}
.x24_c00085{left:677.158770px;}
.x34_c00085{left:680.398635px;}
.x35_c00085{left:696.958920px;}
.x31_c00085{left:698.399235px;}
.x25_c00085{left:721.798560px;}
.x32_c00085{left:724.319820px;}
.x36_c00085{left:730.079355px;}
.xa_c00085{left:733.319235px;}
.x19_c00085{left:734.759535px;}
.xb_c00085{left:759.599070px;}
.x1a_c00085{left:768.239220px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls2b_c00085{letter-spacing:-14.476000pt;}
.ls30_c00085{letter-spacing:-12.549600pt;}
.ls14_c00085{letter-spacing:-9.247000pt;}
.ls16_c00085{letter-spacing:-8.582000pt;}
.ls1c_c00085{letter-spacing:-8.392300pt;}
.ls2a_c00085{letter-spacing:-8.322600pt;}
.ls25_c00085{letter-spacing:-7.900000pt;}
.ls15_c00085{letter-spacing:-7.657000pt;}
.ls18_c00085{letter-spacing:-7.334000pt;}
.lsb_c00085{letter-spacing:-7.266700pt;}
.ls2c_c00085{letter-spacing:-7.022400pt;}
.ls13_c00085{letter-spacing:-6.544800pt;}
.ls26_c00085{letter-spacing:-6.183200pt;}
.ls8_c00085{letter-spacing:-5.943000pt;}
.ls34_c00085{letter-spacing:-5.333333pt;}
.lsc_c00085{letter-spacing:-5.285000pt;}
.lsd_c00085{letter-spacing:-4.619300pt;}
.lsf_c00085{letter-spacing:-4.549600pt;}
.ls10_c00085{letter-spacing:-3.961300pt;}
.ls36_c00085{letter-spacing:-3.917713pt;}
.ls4_c00085{letter-spacing:-3.304000pt;}
.ls37_c00085{letter-spacing:-3.136047pt;}
.ls1e_c00085{letter-spacing:-2.930400pt;}
.ls3_c00085{letter-spacing:-2.639000pt;}
.ls1f_c00085{letter-spacing:-2.588733pt;}
.ls12_c00085{letter-spacing:-2.472000pt;}
.ls29_c00085{letter-spacing:-2.438000pt;}
.ls31_c00085{letter-spacing:-2.099733pt;}
.ls2d_c00085{letter-spacing:-1.983067pt;}
.ls20_c00085{letter-spacing:-1.982240pt;}
.ls5_c00085{letter-spacing:-1.981700pt;}
.ls27_c00085{letter-spacing:-1.946740pt;}
.ls23_c00085{letter-spacing:-1.533333pt;}
.ls24_c00085{letter-spacing:-1.498667pt;}
.ls1b_c00085{letter-spacing:-1.413113pt;}
.lse_c00085{letter-spacing:-1.373493pt;}
.ls7_c00085{letter-spacing:-1.323700pt;}
.ls28_c00085{letter-spacing:-1.281000pt;}
.ls1d_c00085{letter-spacing:-1.234860pt;}
.ls22_c00085{letter-spacing:-0.732600pt;}
.ls9_c00085{letter-spacing:-0.658000pt;}
.ls6_c00085{letter-spacing:0.000000pt;}
.ls2f_c00085{letter-spacing:0.471807pt;}
.ls0_c00085{letter-spacing:1.323700pt;}
.ls35_c00085{letter-spacing:1.617000pt;}
.ls1a_c00085{letter-spacing:2.100000pt;}
.ls33_c00085{letter-spacing:2.186933pt;}
.ls32_c00085{letter-spacing:2.576820pt;}
.lsa_c00085{letter-spacing:2.862800pt;}
.ls11_c00085{letter-spacing:3.312720pt;}
.ls17_c00085{letter-spacing:5.613933pt;}
.ls1_c00085{letter-spacing:6.601000pt;}
.ls21_c00085{letter-spacing:6.798373pt;}
.ls2e_c00085{letter-spacing:7.106680pt;}
.ls2_c00085{letter-spacing:11.228000pt;}
.ls19_c00085{letter-spacing:36.902133pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._1c_c00085{margin-left:-65.996000pt;}
._17_c00085{margin-left:-47.530264pt;}
._20_c00085{margin-left:-31.744028pt;}
._1f_c00085{margin-left:-30.304852pt;}
._1d_c00085{margin-left:-26.263271pt;}
._1e_c00085{margin-left:-24.744479pt;}
._18_c00085{margin-left:-22.984394pt;}
._1b_c00085{margin-left:-20.755502pt;}
._f_c00085{margin-left:-9.407974pt;}
._1a_c00085{margin-left:-7.091158pt;}
._16_c00085{margin-left:-5.367560pt;}
._13_c00085{margin-left:-3.857502pt;}
._14_c00085{margin-left:-1.859398pt;}
._7_c00085{margin-left:-0.916419pt;}
._1_c00085{width:1.703060pt;}
._0_c00085{width:3.358098pt;}
._9_c00085{width:5.147892pt;}
._4_c00085{width:6.047775pt;}
._3_c00085{width:7.665158pt;}
._2_c00085{width:9.415449pt;}
._5_c00085{width:10.731277pt;}
._10_c00085{width:12.864098pt;}
._6_c00085{width:14.307696pt;}
._19_c00085{width:16.292658pt;}
._12_c00085{width:17.706540pt;}
._8_c00085{width:18.893172pt;}
._11_c00085{width:20.446551pt;}
._a_c00085{width:22.535153pt;}
._d_c00085{width:24.489830pt;}
._e_c00085{width:25.835442pt;}
._c_c00085{width:26.891332pt;}
._b_c00085{width:30.496702pt;}
._15_c00085{width:36.645185pt;}
.fs10_c00085{font-size:18.000000pt;}
.fs11_c00085{font-size:26.666667pt;}
.fs18_c00085{font-size:39.333333pt;}
.fs16_c00085{font-size:41.333333pt;}
.fs1a_c00085{font-size:42.000000pt;}
.fs19_c00085{font-size:42.666667pt;}
.fs17_c00085{font-size:44.666667pt;}
.fs9_c00085{font-size:62.000000pt;}
.fsa_c00085{font-size:63.333333pt;}
.fsb_c00085{font-size:66.000000pt;}
.fs12_c00085{font-size:66.666667pt;}
.fs2_c00085{font-size:68.000000pt;}
.fs7_c00085{font-size:68.666667pt;}
.fs3_c00085{font-size:69.333333pt;}
.fs0_c00085{font-size:70.000000pt;}
.fs4_c00085{font-size:70.666667pt;}
.fs8_c00085{font-size:71.333333pt;}
.fs6_c00085{font-size:72.000000pt;}
.fs15_c00085{font-size:72.317867pt;}
.fsc_c00085{font-size:72.666667pt;}
.fsf_c00085{font-size:73.333333pt;}
.fs1_c00085{font-size:74.666667pt;}
.fse_c00085{font-size:75.333333pt;}
.fsd_c00085{font-size:77.333333pt;}
.fs13_c00085{font-size:78.666667pt;}
.fs5_c00085{font-size:94.000000pt;}
.fs14_c00085{font-size:120.666667pt;}
.y0_c00085{bottom:0.000000pt;}
.y25_c00085{bottom:151.040000pt;}
.y24_c00085{bottom:186.559587pt;}
.y22_c00085{bottom:240.960387pt;}
.y23_c00085{bottom:240.960920pt;}
.y21_c00085{bottom:267.199973pt;}
.y20_c00085{bottom:293.759720pt;}
.y1f_c00085{bottom:346.240640pt;}
.y1d_c00085{bottom:372.480507pt;}
.y1c_c00085{bottom:372.799840pt;}
.y1e_c00085{bottom:373.120640pt;}
.y1b_c00085{bottom:381.440920pt;}
.y1a_c00085{bottom:381.760253pt;}
.y19_c00085{bottom:399.360387pt;}
.y18_c00085{bottom:453.440920pt;}
.y17_c00085{bottom:506.239720pt;}
.y16_c00085{bottom:532.480920pt;}
.y15_c00085{bottom:532.481467pt;}
.y14_c00085{bottom:558.400613pt;}
.y13_c00085{bottom:584.960373pt;}
.y12_c00085{bottom:584.960613pt;}
.y11_c00085{bottom:638.080120pt;}
.y10_c00085{bottom:666.559573pt;}
.ye_c00085{bottom:691.520467pt;}
.yf_c00085{bottom:691.520507pt;}
.yd_c00085{bottom:718.400387pt;}
.yc_c00085{bottom:718.400560pt;}
.yb_c00085{bottom:744.640133pt;}
.ya_c00085{bottom:797.759640pt;}
.y8_c00085{bottom:824.639320pt;}
.y9_c00085{bottom:824.639573pt;}
.y7_c00085{bottom:851.521120pt;}
.y6_c00085{bottom:878.401040pt;}
.y5_c00085{bottom:904.640627pt;}
.y4_c00085{bottom:904.642653pt;}
.y3_c00085{bottom:957.121560pt;}
.y2_c00085{bottom:983.681320pt;}
.y1_c00085{bottom:1010.879800pt;}
.h17_c00085{height:18.773437pt;}
.h18_c00085{height:27.812500pt;}
.h26_c00085{height:40.848958pt;}
.h23_c00085{height:41.023438pt;}
.h25_c00085{height:41.507812pt;}
.h21_c00085{height:41.656250pt;}
.h24_c00085{height:42.166667pt;}
.h22_c00085{height:44.143229pt;}
.hb_c00085{height:64.664062pt;}
.hf_c00085{height:64.775391pt;}
.hd_c00085{height:66.054688pt;}
.h3_c00085{height:66.738281pt;}
.h8_c00085{height:67.392578pt;}
.h4_c00085{height:68.046875pt;}
.h1_c00085{height:68.701172pt;}
.h11_c00085{height:68.835938pt;}
.h12_c00085{height:69.203125pt;}
.h19_c00085{height:69.531250pt;}
.h13_c00085{height:69.875000pt;}
.ha_c00085{height:70.009766pt;}
.he_c00085{height:70.546875pt;}
.h7_c00085{height:70.664062pt;}
.h1d_c00085{height:70.921875pt;}
.h1f_c00085{height:70.976031pt;}
.h20_c00085{height:71.156250pt;}
.h5_c00085{height:71.218750pt;}
.h10_c00085{height:71.318359pt;}
.hc_c00085{height:71.890625pt;}
.h16_c00085{height:71.972656pt;}
.h1c_c00085{height:72.473958pt;}
.h9_c00085{height:72.562500pt;}
.h2_c00085{height:73.281250pt;}
.h1b_c00085{height:73.703125pt;}
.h15_c00085{height:73.935547pt;}
.h14_c00085{height:75.898438pt;}
.h1a_c00085{height:77.168620pt;}
.h6_c00085{height:98.039062pt;}
.h1e_c00085{height:119.252604pt;}
.h0_c00085{height:1122.666667pt;}
.w0_c00085{width:793.333333pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:123.839333pt;}
.x28_c00085{left:125.759747pt;}
.x29_c00085{left:133.440000pt;}
.x26_c00085{left:139.519067pt;}
.x10_c00085{left:146.239720pt;}
.x3a_c00085{left:162.878920pt;}
.x27_c00085{left:167.679200pt;}
.x1f_c00085{left:169.918920pt;}
.x37_c00085{left:187.839867pt;}
.x2a_c00085{left:195.839333pt;}
.x3b_c00085{left:200.958920pt;}
.x6_c00085{left:216.000000pt;}
.x11_c00085{left:226.558533pt;}
.x8_c00085{left:228.159733pt;}
.x20_c00085{left:229.440000pt;}
.x7_c00085{left:239.679200pt;}
.x12_c00085{left:241.599587pt;}
.x33_c00085{left:242.559067pt;}
.x9_c00085{left:243.839333pt;}
.x13_c00085{left:267.518533pt;}
.x38_c00085{left:273.599067pt;}
.x2b_c00085{left:305.919453pt;}
.x39_c00085{left:313.599587pt;}
.x14_c00085{left:352.960000pt;}
.x2_c00085{left:372.799840pt;}
.x3_c00085{left:385.599613pt;}
.x2c_c00085{left:389.438920pt;}
.x4_c00085{left:403.839840pt;}
.x5_c00085{left:420.799840pt;}
.x2d_c00085{left:422.718787pt;}
.x15_c00085{left:431.679200pt;}
.x2e_c00085{left:446.399453pt;}
.xc_c00085{left:458.239707pt;}
.xe_c00085{left:466.879307pt;}
.xd_c00085{left:478.398920pt;}
.xf_c00085{left:484.798787pt;}
.x1d_c00085{left:492.159707pt;}
.x2f_c00085{left:496.319867pt;}
.x1e_c00085{left:503.679200pt;}
.x16_c00085{left:510.399867pt;}
.x21_c00085{left:533.119587pt;}
.x1b_c00085{left:540.799840pt;}
.x3c_c00085{left:542.078693pt;}
.x3d_c00085{left:550.719720pt;}
.x1c_c00085{left:560.639573pt;}
.x17_c00085{left:564.799840pt;}
.x22_c00085{left:577.599573pt;}
.x30_c00085{left:586.879307pt;}
.x23_c00085{left:592.319867pt;}
.x18_c00085{left:594.238773pt;}
.x24_c00085{left:601.918907pt;}
.x34_c00085{left:604.798787pt;}
.x35_c00085{left:619.519040pt;}
.x31_c00085{left:620.799320pt;}
.x25_c00085{left:641.598720pt;}
.x32_c00085{left:643.839840pt;}
.x36_c00085{left:648.959427pt;}
.xa_c00085{left:651.839320pt;}
.x19_c00085{left:653.119587pt;}
.xb_c00085{left:675.199173pt;}
.x1a_c00085{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0182e52fabb6419e5efd67e3.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_ab78cee5298591411e95b302.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_65bc1fbe0205d1c7134c6744.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_8eb6caee3249d1a9064abb26.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00086;src:url('chunks/assets/font_94b24027d0ffdf246a4e4973.woff2')format("woff");}.ff6_c00086{font-family:ff6_c00086;line-height:1.364746;font-style:normal;font-weight: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_c00086;src:url('chunks/assets/font_86e088899ed22eb9f728d708.woff2')format("woff");}.ff7_c00086{font-family:ff7_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00086;src:url('chunks/assets/font_5eeaf129095d0d869d669f0d.woff2')format("woff");}.ff8_c00086{font-family:ff8_c00086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.me_c00086{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{transform:matrix(0.186224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186224,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m13_c00086{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{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);}
.md_c00086{transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);}
.mb_c00086{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mc_c00086{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{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);}
.v0_c00086{vertical-align:0.000000px;}
.ls15_c00086{letter-spacing:-24.964500px;}
.ls10_c00086{letter-spacing:-13.570650px;}
.lsf_c00086{letter-spacing:-12.572333px;}
.lsd_c00086{letter-spacing:-12.226305px;}
.lse_c00086{letter-spacing:-8.331750px;}
.ls11_c00086{letter-spacing:-7.726500px;}
.ls8_c00086{letter-spacing:-7.576538px;}
.ls18_c00086{letter-spacing:-7.333200px;}
.lsc_c00086{letter-spacing:-6.055875px;}
.ls9_c00086{letter-spacing:-5.300663px;}
.ls7_c00086{letter-spacing:-5.103000px;}
.lsa_c00086{letter-spacing:-5.054400px;}
.ls5_c00086{letter-spacing:-4.543088px;}
.ls1b_c00086{letter-spacing:-4.410975px;}
.ls3_c00086{letter-spacing:-3.787875px;}
.ls12_c00086{letter-spacing:-3.220650px;}
.ls6_c00086{letter-spacing:-3.031875px;}
.ls17_c00086{letter-spacing:-3.021585px;}
.ls16_c00086{letter-spacing:-2.360355px;}
.ls13_c00086{letter-spacing:-2.315250px;}
.ls4_c00086{letter-spacing:-2.267213px;}
.ls1_c00086{letter-spacing:-1.512000px;}
.ls2_c00086{letter-spacing:-0.756000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.ls19_c00086{letter-spacing:2.557500px;}
.lsb_c00086{letter-spacing:3.502980px;}
.ls14_c00086{letter-spacing:3.858750px;}
.ls1a_c00086{letter-spacing:16.050000px;}
.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;}
._1b_c00086{margin-left:-22.102884px;}
._16_c00086{margin-left:-21.001050px;}
._1d_c00086{margin-left:-14.035734px;}
._14_c00086{margin-left:-10.653300px;}
._c_c00086{margin-left:-8.733557px;}
._1c_c00086{margin-left:-6.769713px;}
._7_c00086{margin-left:-4.528428px;}
._6_c00086{margin-left:-2.575428px;}
._f_c00086{margin-left:-1.079178px;}
._8_c00086{width:2.111045px;}
._1_c00086{width:3.544174px;}
._3_c00086{width:4.881107px;}
._0_c00086{width:6.874875px;}
._4_c00086{width:7.960353px;}
._5_c00086{width:9.295771px;}
._15_c00086{width:11.089636px;}
._2_c00086{width:12.496656px;}
._b_c00086{width:13.636350px;}
._9_c00086{width:15.175367px;}
._17_c00086{width:16.710265px;}
._a_c00086{width:19.065193px;}
._18_c00086{width:20.651945px;}
._1a_c00086{width:22.052120px;}
._19_c00086{width:23.758754px;}
._11_c00086{width:25.323335px;}
._e_c00086{width:26.803168px;}
._13_c00086{width:28.207826px;}
._d_c00086{width:32.826271px;}
._12_c00086{width:34.248314px;}
._10_c00086{width:37.232939px;}
.fc0_c00086{color:transparent;}
.fs7_c00086{font-size:70.500000px;}
.fsa_c00086{font-size:72.750000px;}
.fs9_c00086{font-size:73.500000px;}
.fsb_c00086{font-size:75.000000px;}
.fs6_c00086{font-size:76.500000px;}
.fsc_c00086{font-size:77.250000px;}
.fs2_c00086{font-size:78.000000px;}
.fs1_c00086{font-size:78.750000px;}
.fs4_c00086{font-size:79.500000px;}
.fs0_c00086{font-size:80.250000px;}
.fs5_c00086{font-size:81.750000px;}
.fs8_c00086{font-size:82.500000px;}
.fs3_c00086{font-size:84.750000px;}
.y0_c00086{bottom:0.000000px;}
.y28_c00086{bottom:181.081215px;}
.y27_c00086{bottom:210.600750px;}
.y26_c00086{bottom:240.480465px;}
.y24_c00086{bottom:269.998470px;}
.y25_c00086{bottom:270.000000px;}
.y23_c00086{bottom:329.399535px;}
.y21_c00086{bottom:359.278755px;}
.y22_c00086{bottom:359.279250px;}
.y20_c00086{bottom:389.158470px;}
.y1f_c00086{bottom:419.038200px;}
.y1e_c00086{bottom:448.559535px;}
.y1c_c00086{bottom:478.438515px;}
.y1d_c00086{bottom:478.439250px;}
.y1b_c00086{bottom:507.958050px;}
.y1a_c00086{bottom:538.197975px;}
.y19_c00086{bottom:567.719310px;}
.y18_c00086{bottom:597.959220px;}
.y16_c00086{bottom:627.838905px;}
.y17_c00086{bottom:627.838950px;}
.y15_c00086{bottom:686.519580px;}
.y14_c00086{bottom:717.119985px;}
.y13_c00086{bottom:747.359850px;}
.y12_c00086{bottom:776.520270px;}
.y11_c00086{bottom:806.760135px;}
.y10_c00086{bottom:806.760315px;}
.yf_c00086{bottom:836.279850px;}
.ye_c00086{bottom:836.280030px;}
.yd_c00086{bottom:865.799565px;}
.yc_c00086{bottom:865.799835px;}
.ya_c00086{bottom:896.399490px;}
.yb_c00086{bottom:896.400240px;}
.y9_c00086{bottom:926.279205px;}
.y8_c00086{bottom:926.280645px;}
.y7_c00086{bottom:986.400285px;}
.y6_c00086{bottom:1016.280000px;}
.y5_c00086{bottom:1045.799535px;}
.y4_c00086{bottom:1075.319070px;}
.y3_c00086{bottom:1105.198785px;}
.y2_c00086{bottom:1105.199685px;}
.y1_c00086{bottom:1135.079400px;}
.hb_c00086{height:73.529297px;}
.h8_c00086{height:75.080566px;}
.h12_c00086{height:75.816650px;}
.hf_c00086{height:75.875977px;}
.h3_c00086{height:76.552734px;}
.he_c00086{height:76.658203px;}
.h2_c00086{height:77.288818px;}
.hd_c00086{height:78.024902px;}
.h10_c00086{height:78.222656px;}
.h6_c00086{height:78.568359px;}
.h5_c00086{height:78.609375px;}
.h1_c00086{height:78.760986px;}
.ha_c00086{height:79.365234px;}
.h9_c00086{height:79.787109px;}
.h7_c00086{height:80.791992px;}
.h11_c00086{height:80.876953px;}
.h13_c00086{height:80.969238px;}
.hc_c00086{height:81.533203px;}
.h4_c00086{height:83.177490px;}
.h0_c00086{height:1263.000000px;}
.w0_c00086{width:892.500000px;}
.x0_c00086{left:0.000000px;}
.x5_c00086{left:137.878905px;}
.x1_c00086{left:138.958350px;}
.x20_c00086{left:140.038260px;}
.x21_c00086{left:141.117615px;}
.x2_c00086{left:154.080000px;}
.x10_c00086{left:159.478665px;}
.x13_c00086{left:167.398665px;}
.x14_c00086{left:263.879535px;}
.x15_c00086{left:318.238785px;}
.xe_c00086{left:325.079385px;}
.x22_c00086{left:332.638530px;}
.xf_c00086{left:345.958950px;}
.x23_c00086{left:359.279250px;}
.x1c_c00086{left:371.518635px;}
.x1d_c00086{left:402.839535px;}
.x16_c00086{left:429.478635px;}
.xc_c00086{left:450.359850px;}
.xd_c00086{left:472.318770px;}
.x17_c00086{left:482.039985px;}
.x18_c00086{left:514.438665px;}
.x1e_c00086{left:532.080000px;}
.x1f_c00086{left:538.559685px;}
.xa_c00086{left:564.119385px;}
.xb_c00086{left:581.399820px;}
.x6_c00086{left:585.719100px;}
.x19_c00086{left:601.199850px;}
.x7_c00086{left:610.558635px;}
.x1a_c00086{left:615.958920px;}
.x3_c00086{left:641.879520px;}
.x8_c00086{left:677.158770px;}
.x4_c00086{left:682.199850px;}
.x9_c00086{left:698.039985px;}
.x1b_c00086{left:714.239220px;}
.x11_c00086{left:731.158770px;}
.x12_c00086{left:745.558635px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls15_c00086{letter-spacing:-22.190667pt;}
.ls10_c00086{letter-spacing:-12.062800pt;}
.lsf_c00086{letter-spacing:-11.175407pt;}
.lsd_c00086{letter-spacing:-10.867827pt;}
.lse_c00086{letter-spacing:-7.406000pt;}
.ls11_c00086{letter-spacing:-6.868000pt;}
.ls8_c00086{letter-spacing:-6.734700pt;}
.ls18_c00086{letter-spacing:-6.518400pt;}
.lsc_c00086{letter-spacing:-5.383000pt;}
.ls9_c00086{letter-spacing:-4.711700pt;}
.ls7_c00086{letter-spacing:-4.536000pt;}
.lsa_c00086{letter-spacing:-4.492800pt;}
.ls5_c00086{letter-spacing:-4.038300pt;}
.ls1b_c00086{letter-spacing:-3.920867pt;}
.ls3_c00086{letter-spacing:-3.367000pt;}
.ls12_c00086{letter-spacing:-2.862800pt;}
.ls6_c00086{letter-spacing:-2.695000pt;}
.ls17_c00086{letter-spacing:-2.685853pt;}
.ls16_c00086{letter-spacing:-2.098093pt;}
.ls13_c00086{letter-spacing:-2.058000pt;}
.ls4_c00086{letter-spacing:-2.015300pt;}
.ls1_c00086{letter-spacing:-1.344000pt;}
.ls2_c00086{letter-spacing:-0.672000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ls19_c00086{letter-spacing:2.273333pt;}
.lsb_c00086{letter-spacing:3.113760pt;}
.ls14_c00086{letter-spacing:3.430000pt;}
.ls1a_c00086{letter-spacing:14.266667pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._1b_c00086{margin-left:-19.647008pt;}
._16_c00086{margin-left:-18.667600pt;}
._1d_c00086{margin-left:-12.476208pt;}
._14_c00086{margin-left:-9.469600pt;}
._c_c00086{margin-left:-7.763162pt;}
._1c_c00086{margin-left:-6.017523pt;}
._7_c00086{margin-left:-4.025269pt;}
._6_c00086{margin-left:-2.289269pt;}
._f_c00086{margin-left:-0.959269pt;}
._8_c00086{width:1.876485pt;}
._1_c00086{width:3.150377pt;}
._3_c00086{width:4.338762pt;}
._0_c00086{width:6.111000pt;}
._4_c00086{width:7.075869pt;}
._5_c00086{width:8.262908pt;}
._15_c00086{width:9.857454pt;}
._2_c00086{width:11.108138pt;}
._b_c00086{width:12.121200pt;}
._9_c00086{width:13.489215pt;}
._17_c00086{width:14.853569pt;}
._a_c00086{width:16.946838pt;}
._18_c00086{width:18.357285pt;}
._1a_c00086{width:19.601885pt;}
._19_c00086{width:21.118892pt;}
._11_c00086{width:22.509631pt;}
._e_c00086{width:23.825038pt;}
._13_c00086{width:25.073623pt;}
._d_c00086{width:29.178908pt;}
._12_c00086{width:30.442946pt;}
._10_c00086{width:33.095946pt;}
.fs7_c00086{font-size:62.666667pt;}
.fsa_c00086{font-size:64.666667pt;}
.fs9_c00086{font-size:65.333333pt;}
.fsb_c00086{font-size:66.666667pt;}
.fs6_c00086{font-size:68.000000pt;}
.fsc_c00086{font-size:68.666667pt;}
.fs2_c00086{font-size:69.333333pt;}
.fs1_c00086{font-size:70.000000pt;}
.fs4_c00086{font-size:70.666667pt;}
.fs0_c00086{font-size:71.333333pt;}
.fs5_c00086{font-size:72.666667pt;}
.fs8_c00086{font-size:73.333333pt;}
.fs3_c00086{font-size:75.333333pt;}
.y0_c00086{bottom:0.000000pt;}
.y28_c00086{bottom:160.961080pt;}
.y27_c00086{bottom:187.200667pt;}
.y26_c00086{bottom:213.760413pt;}
.y24_c00086{bottom:239.998640pt;}
.y25_c00086{bottom:240.000000pt;}
.y23_c00086{bottom:292.799587pt;}
.y21_c00086{bottom:319.358893pt;}
.y22_c00086{bottom:319.359333pt;}
.y20_c00086{bottom:345.918640pt;}
.y1f_c00086{bottom:372.478400pt;}
.y1e_c00086{bottom:398.719587pt;}
.y1c_c00086{bottom:425.278680pt;}
.y1d_c00086{bottom:425.279333pt;}
.y1b_c00086{bottom:451.518267pt;}
.y1a_c00086{bottom:478.398200pt;}
.y19_c00086{bottom:504.639387pt;}
.y18_c00086{bottom:531.519307pt;}
.y16_c00086{bottom:558.079027pt;}
.y17_c00086{bottom:558.079067pt;}
.y15_c00086{bottom:610.239627pt;}
.y14_c00086{bottom:637.439987pt;}
.y13_c00086{bottom:664.319867pt;}
.y12_c00086{bottom:690.240240pt;}
.y11_c00086{bottom:717.120120pt;}
.y10_c00086{bottom:717.120280pt;}
.yf_c00086{bottom:743.359867pt;}
.ye_c00086{bottom:743.360027pt;}
.yd_c00086{bottom:769.599613pt;}
.yc_c00086{bottom:769.599853pt;}
.ya_c00086{bottom:796.799547pt;}
.yb_c00086{bottom:796.800213pt;}
.y9_c00086{bottom:823.359293pt;}
.y8_c00086{bottom:823.360573pt;}
.y7_c00086{bottom:876.800253pt;}
.y6_c00086{bottom:903.360000pt;}
.y5_c00086{bottom:929.599587pt;}
.y4_c00086{bottom:955.839173pt;}
.y3_c00086{bottom:982.398920pt;}
.y2_c00086{bottom:982.399720pt;}
.y1_c00086{bottom:1008.959467pt;}
.hb_c00086{height:65.359375pt;}
.h8_c00086{height:66.738281pt;}
.h12_c00086{height:67.392578pt;}
.hf_c00086{height:67.445312pt;}
.h3_c00086{height:68.046875pt;}
.he_c00086{height:68.140625pt;}
.h2_c00086{height:68.701172pt;}
.hd_c00086{height:69.355469pt;}
.h10_c00086{height:69.531250pt;}
.h6_c00086{height:69.838542pt;}
.h5_c00086{height:69.875000pt;}
.h1_c00086{height:70.009766pt;}
.ha_c00086{height:70.546875pt;}
.h9_c00086{height:70.921875pt;}
.h7_c00086{height:71.815104pt;}
.h11_c00086{height:71.890625pt;}
.h13_c00086{height:71.972656pt;}
.hc_c00086{height:72.473958pt;}
.h4_c00086{height:73.935547pt;}
.h0_c00086{height:1122.666667pt;}
.w0_c00086{width:793.333333pt;}
.x0_c00086{left:0.000000pt;}
.x5_c00086{left:122.559027pt;}
.x1_c00086{left:123.518533pt;}
.x20_c00086{left:124.478453pt;}
.x21_c00086{left:125.437880pt;}
.x2_c00086{left:136.960000pt;}
.x10_c00086{left:141.758813pt;}
.x13_c00086{left:148.798813pt;}
.x14_c00086{left:234.559587pt;}
.x15_c00086{left:282.878920pt;}
.xe_c00086{left:288.959453pt;}
.x22_c00086{left:295.678693pt;}
.xf_c00086{left:307.519067pt;}
.x23_c00086{left:319.359333pt;}
.x1c_c00086{left:330.238787pt;}
.x1d_c00086{left:358.079587pt;}
.x16_c00086{left:381.758787pt;}
.xc_c00086{left:400.319867pt;}
.xd_c00086{left:419.838907pt;}
.x17_c00086{left:428.479987pt;}
.x18_c00086{left:457.278813pt;}
.x1e_c00086{left:472.960000pt;}
.x1f_c00086{left:478.719720pt;}
.xa_c00086{left:501.439453pt;}
.xb_c00086{left:516.799840pt;}
.x6_c00086{left:520.639200pt;}
.x19_c00086{left:534.399867pt;}
.x7_c00086{left:542.718787pt;}
.x1a_c00086{left:547.519040pt;}
.x3_c00086{left:570.559573pt;}
.x8_c00086{left:601.918907pt;}
.x4_c00086{left:606.399867pt;}
.x9_c00086{left:620.479987pt;}
.x1b_c00086{left:634.879307pt;}
.x11_c00086{left:649.918907pt;}
.x12_c00086{left:662.718787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d5a1beef5b18694ecba0006.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_69735ced9e2ae9c822a889f3.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_57efa562840dafcb40f41a23.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_4c75682a98c649e5ac5b8505.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_26b5b8e175d0805b2674abe8.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00087{transform:matrix(0.149194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149194,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m2f_c00087{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m35_c00087{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2a_c00087{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m28_c00087{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2b_c00087{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m26_c00087{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m7_c00087{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m29_c00087{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m34_c00087{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2d_c00087{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m2e_c00087{transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m30_c00087{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m2c_c00087{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m27_c00087{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m32_c00087{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m33_c00087{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_c00087{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m24_c00087{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.mb_c00087{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_c00087{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m31_c00087{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m16_c00087{transform:matrix(0.310811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310811,0.000000,0.000000,0.250000,0,0);}
.m10_c00087{transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{transform:matrix(0.331633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331633,0.000000,0.000000,0.250000,0,0);}
.m13_c00087{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{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_c00087{transform:matrix(0.453488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453488,0.000000,0.000000,0.250000,0,0);}
.m1c_c00087{transform:matrix(0.457447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457447,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);}
.m15_c00087{transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);}
.m12_c00087{transform:matrix(0.482558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482558,0.000000,0.000000,0.250000,0,0);}
.m1f_c00087{transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);}
.m20_c00087{transform:matrix(0.492647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492647,0.000000,0.000000,0.250000,0,0);}
.m11_c00087{transform:matrix(0.494186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494186,0.000000,0.000000,0.250000,0,0);}
.m21_c00087{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);}
.m1e_c00087{transform:matrix(0.514286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514286,0.000000,0.000000,0.250000,0,0);}
.me_c00087{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);}
.m17_c00087{transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558824,0.000000,0.000000,0.250000,0,0);}
.m25_c00087{transform:matrix(0.677419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677419,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls38_c00087{letter-spacing:-9.654750px;}
.ls31_c00087{letter-spacing:-8.914500px;}
.ls30_c00087{letter-spacing:-8.175038px;}
.ls11_c00087{letter-spacing:-6.685875px;}
.ls12_c00087{letter-spacing:-6.165338px;}
.lsc_c00087{letter-spacing:-6.051443px;}
.ls8_c00087{letter-spacing:-5.945625px;}
.ls7_c00087{letter-spacing:-5.196713px;}
.lsb_c00087{letter-spacing:-4.456463px;}
.ls5_c00087{letter-spacing:-3.717000px;}
.ls28_c00087{letter-spacing:-3.281250px;}
.ls4_c00087{letter-spacing:-2.968875px;}
.ls2e_c00087{letter-spacing:-2.766750px;}
.ls2b_c00087{letter-spacing:-2.249363px;}
.ls6_c00087{letter-spacing:-2.229413px;}
.ls37_c00087{letter-spacing:-2.123250px;}
.ls25_c00087{letter-spacing:-2.034900px;}
.ls21_c00087{letter-spacing:-1.756298px;}
.ls9_c00087{letter-spacing:-1.489163px;}
.lsd_c00087{letter-spacing:-1.485458px;}
.ls27_c00087{letter-spacing:-1.341300px;}
.ls26_c00087{letter-spacing:-1.230225px;}
.ls33_c00087{letter-spacing:-0.811125px;}
.ls2f_c00087{letter-spacing:-0.795675px;}
.lse_c00087{letter-spacing:-0.764235px;}
.lsf_c00087{letter-spacing:-0.740250px;}
.ls20_c00087{letter-spacing:-0.602175px;}
.ls1e_c00087{letter-spacing:-0.412800px;}
.lsa_c00087{letter-spacing:0.000000px;}
.ls17_c00087{letter-spacing:0.357000px;}
.ls1_c00087{letter-spacing:0.652500px;}
.ls2_c00087{letter-spacing:0.740250px;}
.ls1b_c00087{letter-spacing:0.776903px;}
.ls1f_c00087{letter-spacing:0.778050px;}
.ls1a_c00087{letter-spacing:1.305450px;}
.ls3_c00087{letter-spacing:1.489163px;}
.ls34_c00087{letter-spacing:2.512913px;}
.ls1d_c00087{letter-spacing:2.610000px;}
.ls29_c00087{letter-spacing:2.701388px;}
.ls14_c00087{letter-spacing:2.708100px;}
.ls2c_c00087{letter-spacing:3.213000px;}
.ls10_c00087{letter-spacing:3.570345px;}
.ls13_c00087{letter-spacing:3.637710px;}
.ls32_c00087{letter-spacing:3.772440px;}
.ls36_c00087{letter-spacing:3.864840px;}
.ls16_c00087{letter-spacing:3.915450px;}
.ls35_c00087{letter-spacing:4.172850px;}
.ls23_c00087{letter-spacing:5.089875px;}
.ls19_c00087{letter-spacing:7.165950px;}
.ls1c_c00087{letter-spacing:7.311150px;}
.ls2d_c00087{letter-spacing:8.249175px;}
.ls24_c00087{letter-spacing:8.749125px;}
.ls2a_c00087{letter-spacing:8.754405px;}
.ls0_c00087{letter-spacing:12.631500px;}
.ls18_c00087{letter-spacing:13.434300px;}
.ls15_c00087{letter-spacing:20.106600px;}
.ls22_c00087{letter-spacing:21.244808px;}
.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;}
._a_c00087{margin-left:-78.529262px;}
._23_c00087{margin-left:-23.254177px;}
._d_c00087{margin-left:-18.890892px;}
._14_c00087{margin-left:-12.191793px;}
._22_c00087{margin-left:-6.958751px;}
._c_c00087{margin-left:-5.496483px;}
._e_c00087{margin-left:-4.357297px;}
._9_c00087{margin-left:-2.770960px;}
._13_c00087{margin-left:-1.164579px;}
._8_c00087{width:1.931856px;}
._b_c00087{width:3.039705px;}
._11_c00087{width:4.247998px;}
._5_c00087{width:5.363009px;}
._20_c00087{width:6.368245px;}
._3_c00087{width:7.404387px;}
._0_c00087{width:9.315590px;}
._10_c00087{width:10.427183px;}
._1_c00087{width:11.450844px;}
._4_c00087{width:12.524801px;}
._2_c00087{width:14.324922px;}
._f_c00087{width:15.529114px;}
._1f_c00087{width:17.486423px;}
._6_c00087{width:18.559399px;}
._18_c00087{width:19.771465px;}
._7_c00087{width:20.806136px;}
._15_c00087{width:22.050966px;}
._12_c00087{width:23.989539px;}
._16_c00087{width:25.376919px;}
._21_c00087{width:26.684675px;}
._1e_c00087{width:28.004035px;}
._17_c00087{width:29.793978px;}
._1a_c00087{width:31.915043px;}
._19_c00087{width:34.531964px;}
._1c_c00087{width:35.688162px;}
._1d_c00087{width:38.509136px;}
._1b_c00087{width:40.227700px;}
.fc0_c00087{color:transparent;}
.fs16_c00087{font-size:23.250000px;}
.fs15_c00087{font-size:24.750000px;}
.fs13_c00087{font-size:25.500000px;}
.fs10_c00087{font-size:26.250000px;}
.fse_c00087{font-size:27.750000px;}
.fs11_c00087{font-size:28.500000px;}
.fsb_c00087{font-size:30.000000px;}
.fsd_c00087{font-size:31.500000px;}
.fsc_c00087{font-size:32.250000px;}
.fs14_c00087{font-size:33.750000px;}
.fs12_c00087{font-size:35.250000px;}
.fsf_c00087{font-size:36.750000px;}
.fs9_c00087{font-size:44.250000px;}
.fs8_c00087{font-size:45.000000px;}
.fsa_c00087{font-size:46.500000px;}
.fs1e_c00087{font-size:72.000000px;}
.fs1c_c00087{font-size:74.250000px;}
.fs1f_c00087{font-size:75.000000px;}
.fs4_c00087{font-size:75.750000px;}
.fs3_c00087{font-size:76.500000px;}
.fs18_c00087{font-size:77.250000px;}
.fs5_c00087{font-size:78.000000px;}
.fs0_c00087{font-size:78.750000px;}
.fs6_c00087{font-size:79.500000px;}
.fs19_c00087{font-size:80.250000px;}
.fs7_c00087{font-size:81.000000px;}
.fs1d_c00087{font-size:81.750000px;}
.fs1b_c00087{font-size:82.500000px;}
.fs2_c00087{font-size:83.250000px;}
.fs1a_c00087{font-size:84.000000px;}
.fs17_c00087{font-size:84.750000px;}
.fs1_c00087{font-size:87.000000px;}
.y0_c00087{bottom:0.000000px;}
.y2d_c00087{bottom:179.639700px;}
.y2c_c00087{bottom:179.639805px;}
.y2b_c00087{bottom:209.879730px;}
.y2a_c00087{bottom:239.399250px;}
.y28_c00087{bottom:269.279595px;}
.y29_c00087{bottom:269.279850px;}
.y27_c00087{bottom:298.438635px;}
.y26_c00087{bottom:298.439640px;}
.y25_c00087{bottom:328.319370px;}
.y24_c00087{bottom:357.838905px;}
.y23_c00087{bottom:388.078815px;}
.y22_c00087{bottom:388.079655px;}
.y21_c00087{bottom:417.959385px;}
.y20_c00087{bottom:417.959475px;}
.y1e_c00087{bottom:448.198560px;}
.y1f_c00087{bottom:448.199385px;}
.y1d_c00087{bottom:478.438470px;}
.y1c_c00087{bottom:537.839535px;}
.y1b_c00087{bottom:537.840435px;}
.y19_c00087{bottom:567.719880px;}
.y1a_c00087{bottom:567.720150px;}
.y18_c00087{bottom:596.878920px;}
.y17_c00087{bottom:596.879130px;}
.y16_c00087{bottom:627.119040px;}
.y15_c00087{bottom:656.640375px;}
.y14_c00087{bottom:686.520105px;}
.y13_c00087{bottom:716.399820px;}
.y12_c00087{bottom:746.639700px;}
.y11_c00087{bottom:752.039985px;}
.yf_c00087{bottom:776.518110px;}
.y10_c00087{bottom:776.518620px;}
.ye_c00087{bottom:806.760135px;}
.yd_c00087{bottom:806.760315px;}
.yb_c00087{bottom:836.278260px;}
.yc_c00087{bottom:836.279850px;}
.ya_c00087{bottom:895.679325px;}
.y8_c00087{bottom:925.558965px;}
.y9_c00087{bottom:925.559055px;}
.y7_c00087{bottom:955.438680px;}
.y6_c00087{bottom:985.318410px;}
.y5_c00087{bottom:1045.079955px;}
.y4_c00087{bottom:1074.958920px;}
.y3_c00087{bottom:1104.478635px;}
.y2_c00087{bottom:1104.479010px;}
.y1_c00087{bottom:1135.079400px;}
.h19_c00087{height:24.249023px;}
.h18_c00087{height:25.813477px;}
.h16_c00087{height:26.455078px;}
.h15_c00087{height:26.595703px;}
.h12_c00087{height:27.377930px;}
.h10_c00087{height:28.942383px;}
.h13_c00087{height:29.724609px;}
.hd_c00087{height:31.289062px;}
.hf_c00087{height:32.853516px;}
.he_c00087{height:33.635742px;}
.h17_c00087{height:35.200195px;}
.h14_c00087{height:36.764648px;}
.h11_c00087{height:38.329102px;}
.hb_c00087{height:46.151367px;}
.hc_c00087{height:46.863281px;}
.ha_c00087{height:46.933594px;}
.h25_c00087{height:73.608398px;}
.h5_c00087{height:74.307495px;}
.h24_c00087{height:74.344482px;}
.h6_c00087{height:75.043213px;}
.h4_c00087{height:75.080566px;}
.h23_c00087{height:75.093750px;}
.h1b_c00087{height:75.816650px;}
.h7_c00087{height:76.552734px;}
.h1_c00087{height:77.288818px;}
.h21_c00087{height:77.440430px;}
.h1f_c00087{height:77.853516px;}
.h8_c00087{height:78.024902px;}
.h1c_c00087{height:78.760986px;}
.h20_c00087{height:79.365234px;}
.h9_c00087{height:79.497070px;}
.h22_c00087{height:80.233154px;}
.h1e_c00087{height:80.969238px;}
.h3_c00087{height:81.705322px;}
.h1d_c00087{height:82.441406px;}
.h1a_c00087{height:83.177490px;}
.h2_c00087{height:85.385742px;}
.h0_c00087{height:1263.000000px;}
.w0_c00087{width:892.500000px;}
.x0_c00087{left:0.000000px;}
.x11_c00087{left:136.799310px;}
.x4_c00087{left:137.878185px;}
.x1_c00087{left:138.958350px;}
.xc_c00087{left:176.038950px;}
.x22_c00087{left:223.199850px;}
.x2a_c00087{left:225.719535px;}
.x9_c00087{left:241.559685px;}
.x14_c00087{left:248.039385px;}
.x24_c00087{left:250.199850px;}
.x29_c00087{left:251.638500px;}
.x15_c00087{left:275.398635px;}
.x25_c00087{left:280.439685px;}
.xa_c00087{left:306.358635px;}
.x16_c00087{left:314.639700px;}
.x3b_c00087{left:322.559685px;}
.x12_c00087{left:324.000000px;}
.x3c_c00087{left:337.679700px;}
.x13_c00087{left:340.919535px;}
.x3d_c00087{left:343.798515px;}
.x2b_c00087{left:356.759535px;}
.x3e_c00087{left:359.999385px;}
.x37_c00087{left:362.159850px;}
.x5_c00087{left:363.959385px;}
.x23_c00087{left:371.159385px;}
.x38_c00087{left:378.000000px;}
.x6_c00087{left:387.358665px;}
.x17_c00087{left:392.399820px;}
.x18_c00087{left:417.598530px;}
.x27_c00087{left:421.199385px;}
.x28_c00087{left:436.319235px;}
.x19_c00087{left:454.679070px;}
.x26_c00087{left:458.639100px;}
.x2c_c00087{left:473.399820px;}
.x39_c00087{left:476.639700px;}
.x7_c00087{left:477.719100px;}
.x1a_c00087{left:479.518620px;}
.xd_c00087{left:491.039385px;}
.x2d_c00087{left:492.838950px;}
.x8_c00087{left:494.999400px;}
.x1b_c00087{left:507.238770px;}
.xe_c00087{left:513.718500px;}
.x2e_c00087{left:519.479685px;}
.x32_c00087{left:520.918350px;}
.x35_c00087{left:525.239220px;}
.x36_c00087{left:531.719100px;}
.x33_c00087{left:534.599670px;}
.x34_c00087{left:557.639700px;}
.x2f_c00087{left:573.838950px;}
.x1c_c00087{left:592.198785px;}
.x1d_c00087{left:625.678530px;}
.x30_c00087{left:638.998950px;}
.x1e_c00087{left:651.599070px;}
.x31_c00087{left:664.199385px;}
.x1f_c00087{left:673.198785px;}
.x3f_c00087{left:682.559100px;}
.x40_c00087{left:700.198785px;}
.xf_c00087{left:715.318770px;}
.x2_c00087{left:725.399235px;}
.x20_c00087{left:728.279850px;}
.x10_c00087{left:738.719520px;}
.x3_c00087{left:741.239220px;}
.x21_c00087{left:761.398635px;}
.xb_c00087{left:769.318815px;}
.x3a_c00087{left:770.759130px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls38_c00087{letter-spacing:-8.582000pt;}
.ls31_c00087{letter-spacing:-7.924000pt;}
.ls30_c00087{letter-spacing:-7.266700pt;}
.ls11_c00087{letter-spacing:-5.943000pt;}
.ls12_c00087{letter-spacing:-5.480300pt;}
.lsc_c00087{letter-spacing:-5.379060pt;}
.ls8_c00087{letter-spacing:-5.285000pt;}
.ls7_c00087{letter-spacing:-4.619300pt;}
.lsb_c00087{letter-spacing:-3.961300pt;}
.ls5_c00087{letter-spacing:-3.304000pt;}
.ls28_c00087{letter-spacing:-2.916667pt;}
.ls4_c00087{letter-spacing:-2.639000pt;}
.ls2e_c00087{letter-spacing:-2.459333pt;}
.ls2b_c00087{letter-spacing:-1.999433pt;}
.ls6_c00087{letter-spacing:-1.981700pt;}
.ls37_c00087{letter-spacing:-1.887333pt;}
.ls25_c00087{letter-spacing:-1.808800pt;}
.ls21_c00087{letter-spacing:-1.561153pt;}
.ls9_c00087{letter-spacing:-1.323700pt;}
.lsd_c00087{letter-spacing:-1.320407pt;}
.ls27_c00087{letter-spacing:-1.192267pt;}
.ls26_c00087{letter-spacing:-1.093533pt;}
.ls33_c00087{letter-spacing:-0.721000pt;}
.ls2f_c00087{letter-spacing:-0.707267pt;}
.lse_c00087{letter-spacing:-0.679320pt;}
.lsf_c00087{letter-spacing:-0.658000pt;}
.ls20_c00087{letter-spacing:-0.535267pt;}
.ls1e_c00087{letter-spacing:-0.366933pt;}
.lsa_c00087{letter-spacing:0.000000pt;}
.ls17_c00087{letter-spacing:0.317333pt;}
.ls1_c00087{letter-spacing:0.580000pt;}
.ls2_c00087{letter-spacing:0.658000pt;}
.ls1b_c00087{letter-spacing:0.690580pt;}
.ls1f_c00087{letter-spacing:0.691600pt;}
.ls1a_c00087{letter-spacing:1.160400pt;}
.ls3_c00087{letter-spacing:1.323700pt;}
.ls34_c00087{letter-spacing:2.233700pt;}
.ls1d_c00087{letter-spacing:2.320000pt;}
.ls29_c00087{letter-spacing:2.401233pt;}
.ls14_c00087{letter-spacing:2.407200pt;}
.ls2c_c00087{letter-spacing:2.856000pt;}
.ls10_c00087{letter-spacing:3.173640pt;}
.ls13_c00087{letter-spacing:3.233520pt;}
.ls32_c00087{letter-spacing:3.353280pt;}
.ls36_c00087{letter-spacing:3.435413pt;}
.ls16_c00087{letter-spacing:3.480400pt;}
.ls35_c00087{letter-spacing:3.709200pt;}
.ls23_c00087{letter-spacing:4.524333pt;}
.ls19_c00087{letter-spacing:6.369733pt;}
.ls1c_c00087{letter-spacing:6.498800pt;}
.ls2d_c00087{letter-spacing:7.332600pt;}
.ls24_c00087{letter-spacing:7.777000pt;}
.ls2a_c00087{letter-spacing:7.781693pt;}
.ls0_c00087{letter-spacing:11.228000pt;}
.ls18_c00087{letter-spacing:11.941600pt;}
.ls15_c00087{letter-spacing:17.872533pt;}
.ls22_c00087{letter-spacing:18.884273pt;}
.ws0_c00087{word-spacing:0.000000pt;}
._a_c00087{margin-left:-69.803789pt;}
._23_c00087{margin-left:-20.670379pt;}
._d_c00087{margin-left:-16.791904pt;}
._14_c00087{margin-left:-10.837149pt;}
._22_c00087{margin-left:-6.185557pt;}
._c_c00087{margin-left:-4.885762pt;}
._e_c00087{margin-left:-3.873153pt;}
._9_c00087{margin-left:-2.463075pt;}
._13_c00087{margin-left:-1.035181pt;}
._8_c00087{width:1.717206pt;}
._b_c00087{width:2.701960pt;}
._11_c00087{width:3.775998pt;}
._5_c00087{width:4.767119pt;}
._20_c00087{width:5.660662pt;}
._3_c00087{width:6.581677pt;}
._0_c00087{width:8.280525pt;}
._10_c00087{width:9.268608pt;}
._1_c00087{width:10.178528pt;}
._4_c00087{width:11.133157pt;}
._2_c00087{width:12.733264pt;}
._f_c00087{width:13.803657pt;}
._1f_c00087{width:15.543487pt;}
._6_c00087{width:16.497243pt;}
._18_c00087{width:17.574636pt;}
._7_c00087{width:18.494343pt;}
._15_c00087{width:19.600858pt;}
._12_c00087{width:21.324035pt;}
._16_c00087{width:22.557261pt;}
._21_c00087{width:23.719711pt;}
._1e_c00087{width:24.892475pt;}
._17_c00087{width:26.483536pt;}
._1a_c00087{width:28.368927pt;}
._19_c00087{width:30.695079pt;}
._1c_c00087{width:31.722811pt;}
._1d_c00087{width:34.230343pt;}
._1b_c00087{width:35.757956pt;}
.fs16_c00087{font-size:20.666667pt;}
.fs15_c00087{font-size:22.000000pt;}
.fs13_c00087{font-size:22.666667pt;}
.fs10_c00087{font-size:23.333333pt;}
.fse_c00087{font-size:24.666667pt;}
.fs11_c00087{font-size:25.333333pt;}
.fsb_c00087{font-size:26.666667pt;}
.fsd_c00087{font-size:28.000000pt;}
.fsc_c00087{font-size:28.666667pt;}
.fs14_c00087{font-size:30.000000pt;}
.fs12_c00087{font-size:31.333333pt;}
.fsf_c00087{font-size:32.666667pt;}
.fs9_c00087{font-size:39.333333pt;}
.fs8_c00087{font-size:40.000000pt;}
.fsa_c00087{font-size:41.333333pt;}
.fs1e_c00087{font-size:64.000000pt;}
.fs1c_c00087{font-size:66.000000pt;}
.fs1f_c00087{font-size:66.666667pt;}
.fs4_c00087{font-size:67.333333pt;}
.fs3_c00087{font-size:68.000000pt;}
.fs18_c00087{font-size:68.666667pt;}
.fs5_c00087{font-size:69.333333pt;}
.fs0_c00087{font-size:70.000000pt;}
.fs6_c00087{font-size:70.666667pt;}
.fs19_c00087{font-size:71.333333pt;}
.fs7_c00087{font-size:72.000000pt;}
.fs1d_c00087{font-size:72.666667pt;}
.fs1b_c00087{font-size:73.333333pt;}
.fs2_c00087{font-size:74.000000pt;}
.fs1a_c00087{font-size:74.666667pt;}
.fs17_c00087{font-size:75.333333pt;}
.fs1_c00087{font-size:77.333333pt;}
.y0_c00087{bottom:0.000000pt;}
.y2d_c00087{bottom:159.679733pt;}
.y2c_c00087{bottom:159.679827pt;}
.y2b_c00087{bottom:186.559760pt;}
.y2a_c00087{bottom:212.799333pt;}
.y28_c00087{bottom:239.359640pt;}
.y29_c00087{bottom:239.359867pt;}
.y27_c00087{bottom:265.278787pt;}
.y26_c00087{bottom:265.279680pt;}
.y25_c00087{bottom:291.839440pt;}
.y24_c00087{bottom:318.079027pt;}
.y23_c00087{bottom:344.958947pt;}
.y22_c00087{bottom:344.959693pt;}
.y21_c00087{bottom:371.519453pt;}
.y20_c00087{bottom:371.519533pt;}
.y1e_c00087{bottom:398.398720pt;}
.y1f_c00087{bottom:398.399453pt;}
.y1d_c00087{bottom:425.278640pt;}
.y1c_c00087{bottom:478.079587pt;}
.y1b_c00087{bottom:478.080387pt;}
.y19_c00087{bottom:504.639893pt;}
.y1a_c00087{bottom:504.640133pt;}
.y18_c00087{bottom:530.559040pt;}
.y17_c00087{bottom:530.559227pt;}
.y16_c00087{bottom:557.439147pt;}
.y15_c00087{bottom:583.680333pt;}
.y14_c00087{bottom:610.240093pt;}
.y13_c00087{bottom:636.799840pt;}
.y12_c00087{bottom:663.679733pt;}
.y11_c00087{bottom:668.479987pt;}
.yf_c00087{bottom:690.238320pt;}
.y10_c00087{bottom:690.238773pt;}
.ye_c00087{bottom:717.120120pt;}
.yd_c00087{bottom:717.120280pt;}
.yb_c00087{bottom:743.358453pt;}
.yc_c00087{bottom:743.359867pt;}
.ya_c00087{bottom:796.159400pt;}
.y8_c00087{bottom:822.719080pt;}
.y9_c00087{bottom:822.719160pt;}
.y7_c00087{bottom:849.278827pt;}
.y6_c00087{bottom:875.838587pt;}
.y5_c00087{bottom:928.959960pt;}
.y4_c00087{bottom:955.519040pt;}
.y3_c00087{bottom:981.758787pt;}
.y2_c00087{bottom:981.759120pt;}
.y1_c00087{bottom:1008.959467pt;}
.h19_c00087{height:21.554687pt;}
.h18_c00087{height:22.945312pt;}
.h16_c00087{height:23.515625pt;}
.h15_c00087{height:23.640625pt;}
.h12_c00087{height:24.335938pt;}
.h10_c00087{height:25.726562pt;}
.h13_c00087{height:26.421875pt;}
.hd_c00087{height:27.812500pt;}
.hf_c00087{height:29.203125pt;}
.he_c00087{height:29.898438pt;}
.h17_c00087{height:31.289062pt;}
.h14_c00087{height:32.679688pt;}
.h11_c00087{height:34.070312pt;}
.hb_c00087{height:41.023438pt;}
.hc_c00087{height:41.656250pt;}
.ha_c00087{height:41.718750pt;}
.h25_c00087{height:65.429688pt;}
.h5_c00087{height:66.051107pt;}
.h24_c00087{height:66.083984pt;}
.h6_c00087{height:66.705078pt;}
.h4_c00087{height:66.738281pt;}
.h23_c00087{height:66.750000pt;}
.h1b_c00087{height:67.392578pt;}
.h7_c00087{height:68.046875pt;}
.h1_c00087{height:68.701172pt;}
.h21_c00087{height:68.835938pt;}
.h1f_c00087{height:69.203125pt;}
.h8_c00087{height:69.355469pt;}
.h1c_c00087{height:70.009766pt;}
.h20_c00087{height:70.546875pt;}
.h9_c00087{height:70.664062pt;}
.h22_c00087{height:71.318359pt;}
.h1e_c00087{height:71.972656pt;}
.h3_c00087{height:72.626953pt;}
.h1d_c00087{height:73.281250pt;}
.h1a_c00087{height:73.935547pt;}
.h2_c00087{height:75.898438pt;}
.h0_c00087{height:1122.666667pt;}
.w0_c00087{width:793.333333pt;}
.x0_c00087{left:0.000000pt;}
.x11_c00087{left:121.599387pt;}
.x4_c00087{left:122.558387pt;}
.x1_c00087{left:123.518533pt;}
.xc_c00087{left:156.479067pt;}
.x22_c00087{left:198.399867pt;}
.x2a_c00087{left:200.639587pt;}
.x9_c00087{left:214.719720pt;}
.x14_c00087{left:220.479453pt;}
.x24_c00087{left:222.399867pt;}
.x29_c00087{left:223.678667pt;}
.x15_c00087{left:244.798787pt;}
.x25_c00087{left:249.279720pt;}
.xa_c00087{left:272.318787pt;}
.x16_c00087{left:279.679733pt;}
.x3b_c00087{left:286.719720pt;}
.x12_c00087{left:288.000000pt;}
.x3c_c00087{left:300.159733pt;}
.x13_c00087{left:303.039587pt;}
.x3d_c00087{left:305.598680pt;}
.x2b_c00087{left:317.119587pt;}
.x3e_c00087{left:319.999453pt;}
.x37_c00087{left:321.919867pt;}
.x5_c00087{left:323.519453pt;}
.x23_c00087{left:329.919453pt;}
.x38_c00087{left:336.000000pt;}
.x6_c00087{left:344.318813pt;}
.x17_c00087{left:348.799840pt;}
.x18_c00087{left:371.198693pt;}
.x27_c00087{left:374.399453pt;}
.x28_c00087{left:387.839320pt;}
.x19_c00087{left:404.159173pt;}
.x26_c00087{left:407.679200pt;}
.x2c_c00087{left:420.799840pt;}
.x39_c00087{left:423.679733pt;}
.x7_c00087{left:424.639200pt;}
.x1a_c00087{left:426.238773pt;}
.xd_c00087{left:436.479453pt;}
.x2d_c00087{left:438.079067pt;}
.x8_c00087{left:439.999467pt;}
.x1b_c00087{left:450.878907pt;}
.xe_c00087{left:456.638667pt;}
.x2e_c00087{left:461.759720pt;}
.x32_c00087{left:463.038533pt;}
.x35_c00087{left:466.879307pt;}
.x36_c00087{left:472.639200pt;}
.x33_c00087{left:475.199707pt;}
.x34_c00087{left:495.679733pt;}
.x2f_c00087{left:510.079067pt;}
.x1c_c00087{left:526.398920pt;}
.x1d_c00087{left:556.158693pt;}
.x30_c00087{left:567.999067pt;}
.x1e_c00087{left:579.199173pt;}
.x31_c00087{left:590.399453pt;}
.x1f_c00087{left:598.398920pt;}
.x3f_c00087{left:606.719200pt;}
.x40_c00087{left:622.398920pt;}
.xf_c00087{left:635.838907pt;}
.x2_c00087{left:644.799320pt;}
.x20_c00087{left:647.359867pt;}
.x10_c00087{left:656.639573pt;}
.x3_c00087{left:658.879307pt;}
.x21_c00087{left:676.798787pt;}
.xb_c00087{left:683.838947pt;}
.x3a_c00087{left:685.119227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d7977c5c59f597b40fe7513.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_c0cc5f2c1dc83edc0b5f340a.woff2')format("woff");}.ff2_c00088{font-family:ff2_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:ff3_c00088;src:url('chunks/assets/font_8df3af2809d7641051fe13b0.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_59183d4d137fd3301fb335ec.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;}
.m14_c00088{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.ma_c00088{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m10_c00088{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.mc_c00088{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);}
.mf_c00088{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.md_c00088{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319712,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls15_c00088{letter-spacing:-18.950400px;}
.lsf_c00088{letter-spacing:-10.128825px;}
.ls18_c00088{letter-spacing:-9.640103px;}
.ls10_c00088{letter-spacing:-8.914500px;}
.lsd_c00088{letter-spacing:-8.175038px;}
.lsa_c00088{letter-spacing:-6.685875px;}
.ls7_c00088{letter-spacing:-5.945625px;}
.ls3_c00088{letter-spacing:-5.196713px;}
.ls8_c00088{letter-spacing:-4.456463px;}
.ls13_c00088{letter-spacing:-4.102800px;}
.ls16_c00088{letter-spacing:-4.017000px;}
.ls5_c00088{letter-spacing:-3.717000px;}
.ls4_c00088{letter-spacing:-2.968875px;}
.ls1_c00088{letter-spacing:-2.229413px;}
.ls17_c00088{letter-spacing:-2.041875px;}
.ls12_c00088{letter-spacing:-1.731600px;}
.ls14_c00088{letter-spacing:-1.703250px;}
.lsc_c00088{letter-spacing:-1.560000px;}
.ls6_c00088{letter-spacing:-1.489163px;}
.ls11_c00088{letter-spacing:-0.873923px;}
.ls2_c00088{letter-spacing:-0.740250px;}
.lsb_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:0.740250px;}
.ls9_c00088{letter-spacing:1.598325px;}
.lse_c00088{letter-spacing:6.622350px;}
.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;}
._1c_c00088{margin-left:-10.859268px;}
._23_c00088{margin-left:-8.658607px;}
._24_c00088{margin-left:-7.023519px;}
._1b_c00088{margin-left:-5.132717px;}
._f_c00088{margin-left:-3.813387px;}
._22_c00088{margin-left:-2.363912px;}
._c_c00088{margin-left:-1.139795px;}
._6_c00088{width:2.063517px;}
._9_c00088{width:3.544716px;}
._8_c00088{width:4.632892px;}
._a_c00088{width:5.851779px;}
._1_c00088{width:6.985274px;}
._0_c00088{width:8.872346px;}
._2_c00088{width:10.344689px;}
._7_c00088{width:11.496074px;}
._b_c00088{width:13.146495px;}
._4_c00088{width:14.319142px;}
._11_c00088{width:15.910650px;}
._3_c00088{width:16.999733px;}
._12_c00088{width:19.041616px;}
._5_c00088{width:20.325405px;}
._d_c00088{width:21.464353px;}
._e_c00088{width:22.807753px;}
._10_c00088{width:23.989523px;}
._13_c00088{width:25.199941px;}
._17_c00088{width:27.025990px;}
._14_c00088{width:29.041351px;}
._21_c00088{width:30.169155px;}
._1a_c00088{width:31.830958px;}
._18_c00088{width:32.957380px;}
._1d_c00088{width:35.193137px;}
._15_c00088{width:36.731065px;}
._19_c00088{width:38.170779px;}
._20_c00088{width:39.801632px;}
._1e_c00088{width:43.444949px;}
._1f_c00088{width:44.666138px;}
._16_c00088{width:46.966351px;}
.fc0_c00088{color:transparent;}
.fsa_c00088{font-size:55.500000px;}
.fs9_c00088{font-size:72.000000px;}
.fsc_c00088{font-size:72.750000px;}
.fsb_c00088{font-size:74.250000px;}
.fs8_c00088{font-size:75.000000px;}
.fs1_c00088{font-size:75.750000px;}
.fs5_c00088{font-size:77.250000px;}
.fs4_c00088{font-size:78.000000px;}
.fs0_c00088{font-size:78.750000px;}
.fs6_c00088{font-size:79.500000px;}
.fs3_c00088{font-size:80.250000px;}
.fs7_c00088{font-size:81.750000px;}
.fs2_c00088{font-size:82.500000px;}
.fsd_c00088{font-size:84.750000px;}
.y0_c00088{bottom:0.000000px;}
.y2a_c00088{bottom:186.121050px;}
.y29_c00088{bottom:216.000000px;}
.y28_c00088{bottom:216.000345px;}
.y27_c00088{bottom:246.600750px;}
.y26_c00088{bottom:246.600900px;}
.y25_c00088{bottom:276.120435px;}
.y24_c00088{bottom:276.121335px;}
.y22_c00088{bottom:306.000795px;}
.y23_c00088{bottom:306.001050px;}
.y21_c00088{bottom:335.159850px;}
.y20_c00088{bottom:335.160870px;}
.y1e_c00088{bottom:365.039880px;}
.y1f_c00088{bottom:365.040600px;}
.y1d_c00088{bottom:394.201035px;}
.y1c_c00088{bottom:429.841185px;}
.y1b_c00088{bottom:429.842280px;}
.y1a_c00088{bottom:453.961395px;}
.y19_c00088{bottom:484.559685px;}
.y18_c00088{bottom:484.559805px;}
.y17_c00088{bottom:544.679445px;}
.y16_c00088{bottom:573.840585px;}
.y15_c00088{bottom:573.841005px;}
.y14_c00088{bottom:603.360540px;}
.y13_c00088{bottom:632.880060px;}
.y12_c00088{bottom:663.119985px;}
.y11_c00088{bottom:663.120870px;}
.y10_c00088{bottom:693.000600px;}
.yf_c00088{bottom:723.239865px;}
.ye_c00088{bottom:782.640930px;}
.yd_c00088{bottom:812.160465px;}
.yc_c00088{bottom:842.400240px;}
.yb_c00088{bottom:842.402205px;}
.ya_c00088{bottom:872.281935px;}
.y9_c00088{bottom:902.521845px;}
.y8_c00088{bottom:932.041380px;}
.y7_c00088{bottom:962.281290px;}
.y5_c00088{bottom:992.159565px;}
.y6_c00088{bottom:992.161005px;}
.y4_c00088{bottom:1052.279205px;}
.y3_c00088{bottom:1081.800540px;}
.y2_c00088{bottom:1111.320075px;}
.y1_c00088{bottom:1141.199805px;}
.he_c00088{height:55.933594px;}
.h10_c00088{height:72.872314px;}
.h2_c00088{height:74.344482px;}
.hd_c00088{height:75.093750px;}
.h6_c00088{height:75.816650px;}
.h11_c00088{height:75.875977px;}
.ha_c00088{height:76.514648px;}
.h5_c00088{height:76.552734px;}
.h1_c00088{height:77.288818px;}
.h7_c00088{height:78.024902px;}
.hc_c00088{height:78.222656px;}
.hb_c00088{height:78.609375px;}
.h4_c00088{height:78.760986px;}
.hf_c00088{height:80.121094px;}
.h8_c00088{height:80.233154px;}
.h9_c00088{height:80.876953px;}
.h3_c00088{height:80.969238px;}
.h12_c00088{height:83.177490px;}
.h0_c00088{height:1263.000000px;}
.w0_c00088{width:892.500000px;}
.x0_c00088{left:0.000000px;}
.xf_c00088{left:141.838515px;}
.x1_c00088{left:142.918350px;}
.x28_c00088{left:159.478665px;}
.xa_c00088{left:169.199850px;}
.x14_c00088{left:224.279250px;}
.xb_c00088{left:226.078785px;}
.xc_c00088{left:241.918950px;}
.x15_c00088{left:244.799535px;}
.x1b_c00088{left:247.678500px;}
.x20_c00088{left:262.798515px;}
.x1c_c00088{left:266.399250px;}
.x21_c00088{left:278.999385px;}
.x24_c00088{left:335.159850px;}
.x12_c00088{left:345.238785px;}
.x16_c00088{left:346.319850px;}
.x25_c00088{left:351.718500px;}
.x1f_c00088{left:361.078785px;}
.x13_c00088{left:374.758500px;}
.x17_c00088{left:428.039985px;}
.x4_c00088{left:456.119385px;}
.x5_c00088{left:475.199385px;}
.x18_c00088{left:485.639100px;}
.xd_c00088{left:509.399235px;}
.x9_c00088{left:512.279850px;}
.xe_c00088{left:533.159415px;}
.x26_c00088{left:548.999400px;}
.x6_c00088{left:550.798920px;}
.x19_c00088{left:554.399820px;}
.x22_c00088{left:560.159415px;}
.x27_c00088{left:565.198785px;}
.x7_c00088{left:569.878920px;}
.x23_c00088{left:583.558635px;}
.x2_c00088{left:584.998950px;}
.x3_c00088{left:625.319235px;}
.x1d_c00088{left:639.719100px;}
.x1a_c00088{left:654.838950px;}
.x10_c00088{left:660.239220px;}
.x1e_c00088{left:667.080000px;}
.x11_c00088{left:676.079355px;}
.x8_c00088{left:775.079955px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls15_c00088{letter-spacing:-16.844800pt;}
.lsf_c00088{letter-spacing:-9.003400pt;}
.ls18_c00088{letter-spacing:-8.568980pt;}
.ls10_c00088{letter-spacing:-7.924000pt;}
.lsd_c00088{letter-spacing:-7.266700pt;}
.lsa_c00088{letter-spacing:-5.943000pt;}
.ls7_c00088{letter-spacing:-5.285000pt;}
.ls3_c00088{letter-spacing:-4.619300pt;}
.ls8_c00088{letter-spacing:-3.961300pt;}
.ls13_c00088{letter-spacing:-3.646933pt;}
.ls16_c00088{letter-spacing:-3.570667pt;}
.ls5_c00088{letter-spacing:-3.304000pt;}
.ls4_c00088{letter-spacing:-2.639000pt;}
.ls1_c00088{letter-spacing:-1.981700pt;}
.ls17_c00088{letter-spacing:-1.815000pt;}
.ls12_c00088{letter-spacing:-1.539200pt;}
.ls14_c00088{letter-spacing:-1.514000pt;}
.lsc_c00088{letter-spacing:-1.386667pt;}
.ls6_c00088{letter-spacing:-1.323700pt;}
.ls11_c00088{letter-spacing:-0.776820pt;}
.ls2_c00088{letter-spacing:-0.658000pt;}
.lsb_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:0.658000pt;}
.ls9_c00088{letter-spacing:1.420733pt;}
.lse_c00088{letter-spacing:5.886533pt;}
.ws0_c00088{word-spacing:0.000000pt;}
._1c_c00088{margin-left:-9.652683pt;}
._23_c00088{margin-left:-7.696540pt;}
._24_c00088{margin-left:-6.243128pt;}
._1b_c00088{margin-left:-4.562415pt;}
._f_c00088{margin-left:-3.389677pt;}
._22_c00088{margin-left:-2.101255pt;}
._c_c00088{margin-left:-1.013151pt;}
._6_c00088{width:1.834238pt;}
._9_c00088{width:3.150858pt;}
._8_c00088{width:4.118126pt;}
._a_c00088{width:5.201581pt;}
._1_c00088{width:6.209132pt;}
._0_c00088{width:7.886530pt;}
._2_c00088{width:9.195279pt;}
._7_c00088{width:10.218732pt;}
._b_c00088{width:11.685774pt;}
._4_c00088{width:12.728126pt;}
._11_c00088{width:14.142800pt;}
._3_c00088{width:15.110874pt;}
._12_c00088{width:16.925881pt;}
._5_c00088{width:18.067026pt;}
._d_c00088{width:19.079425pt;}
._e_c00088{width:20.273558pt;}
._10_c00088{width:21.324021pt;}
._13_c00088{width:22.399947pt;}
._17_c00088{width:24.023102pt;}
._14_c00088{width:25.814534pt;}
._21_c00088{width:26.817026pt;}
._1a_c00088{width:28.294185pt;}
._18_c00088{width:29.295449pt;}
._1d_c00088{width:31.282789pt;}
._15_c00088{width:32.649836pt;}
._19_c00088{width:33.929581pt;}
._20_c00088{width:35.379228pt;}
._1e_c00088{width:38.617732pt;}
._1f_c00088{width:39.703234pt;}
._16_c00088{width:41.747868pt;}
.fsa_c00088{font-size:49.333333pt;}
.fs9_c00088{font-size:64.000000pt;}
.fsc_c00088{font-size:64.666667pt;}
.fsb_c00088{font-size:66.000000pt;}
.fs8_c00088{font-size:66.666667pt;}
.fs1_c00088{font-size:67.333333pt;}
.fs5_c00088{font-size:68.666667pt;}
.fs4_c00088{font-size:69.333333pt;}
.fs0_c00088{font-size:70.000000pt;}
.fs6_c00088{font-size:70.666667pt;}
.fs3_c00088{font-size:71.333333pt;}
.fs7_c00088{font-size:72.666667pt;}
.fs2_c00088{font-size:73.333333pt;}
.fsd_c00088{font-size:75.333333pt;}
.y0_c00088{bottom:0.000000pt;}
.y2a_c00088{bottom:165.440933pt;}
.y29_c00088{bottom:192.000000pt;}
.y28_c00088{bottom:192.000307pt;}
.y27_c00088{bottom:219.200667pt;}
.y26_c00088{bottom:219.200800pt;}
.y25_c00088{bottom:245.440387pt;}
.y24_c00088{bottom:245.441187pt;}
.y22_c00088{bottom:272.000707pt;}
.y23_c00088{bottom:272.000933pt;}
.y21_c00088{bottom:297.919867pt;}
.y20_c00088{bottom:297.920773pt;}
.y1e_c00088{bottom:324.479893pt;}
.y1f_c00088{bottom:324.480533pt;}
.y1d_c00088{bottom:350.400920pt;}
.y1c_c00088{bottom:382.081053pt;}
.y1b_c00088{bottom:382.082027pt;}
.y1a_c00088{bottom:403.521240pt;}
.y19_c00088{bottom:430.719720pt;}
.y18_c00088{bottom:430.719827pt;}
.y17_c00088{bottom:484.159507pt;}
.y16_c00088{bottom:510.080520pt;}
.y15_c00088{bottom:510.080893pt;}
.y14_c00088{bottom:536.320480pt;}
.y13_c00088{bottom:562.560053pt;}
.y12_c00088{bottom:589.439987pt;}
.y11_c00088{bottom:589.440773pt;}
.y10_c00088{bottom:616.000533pt;}
.yf_c00088{bottom:642.879880pt;}
.ye_c00088{bottom:695.680827pt;}
.yd_c00088{bottom:721.920413pt;}
.yc_c00088{bottom:748.800213pt;}
.yb_c00088{bottom:748.801960pt;}
.ya_c00088{bottom:775.361720pt;}
.y9_c00088{bottom:802.241640pt;}
.y8_c00088{bottom:828.481227pt;}
.y7_c00088{bottom:855.361147pt;}
.y5_c00088{bottom:881.919613pt;}
.y6_c00088{bottom:881.920893pt;}
.y4_c00088{bottom:935.359293pt;}
.y3_c00088{bottom:961.600480pt;}
.y2_c00088{bottom:987.840067pt;}
.y1_c00088{bottom:1014.399827pt;}
.he_c00088{height:49.718750pt;}
.h10_c00088{height:64.775391pt;}
.h2_c00088{height:66.083984pt;}
.hd_c00088{height:66.750000pt;}
.h6_c00088{height:67.392578pt;}
.h11_c00088{height:67.445312pt;}
.ha_c00088{height:68.013021pt;}
.h5_c00088{height:68.046875pt;}
.h1_c00088{height:68.701172pt;}
.h7_c00088{height:69.355469pt;}
.hc_c00088{height:69.531250pt;}
.hb_c00088{height:69.875000pt;}
.h4_c00088{height:70.009766pt;}
.hf_c00088{height:71.218750pt;}
.h8_c00088{height:71.318359pt;}
.h9_c00088{height:71.890625pt;}
.h3_c00088{height:71.972656pt;}
.h12_c00088{height:73.935547pt;}
.h0_c00088{height:1122.666667pt;}
.w0_c00088{width:793.333333pt;}
.x0_c00088{left:0.000000pt;}
.xf_c00088{left:126.078680pt;}
.x1_c00088{left:127.038533pt;}
.x28_c00088{left:141.758813pt;}
.xa_c00088{left:150.399867pt;}
.x14_c00088{left:199.359333pt;}
.xb_c00088{left:200.958920pt;}
.xc_c00088{left:215.039067pt;}
.x15_c00088{left:217.599587pt;}
.x1b_c00088{left:220.158667pt;}
.x20_c00088{left:233.598680pt;}
.x1c_c00088{left:236.799333pt;}
.x21_c00088{left:247.999453pt;}
.x24_c00088{left:297.919867pt;}
.x12_c00088{left:306.878920pt;}
.x16_c00088{left:307.839867pt;}
.x25_c00088{left:312.638667pt;}
.x1f_c00088{left:320.958920pt;}
.x13_c00088{left:333.118667pt;}
.x17_c00088{left:380.479987pt;}
.x4_c00088{left:405.439453pt;}
.x5_c00088{left:422.399453pt;}
.x18_c00088{left:431.679200pt;}
.xd_c00088{left:452.799320pt;}
.x9_c00088{left:455.359867pt;}
.xe_c00088{left:473.919480pt;}
.x26_c00088{left:487.999467pt;}
.x6_c00088{left:489.599040pt;}
.x19_c00088{left:492.799840pt;}
.x22_c00088{left:497.919480pt;}
.x27_c00088{left:502.398920pt;}
.x7_c00088{left:506.559040pt;}
.x23_c00088{left:518.718787pt;}
.x2_c00088{left:519.999067pt;}
.x3_c00088{left:555.839320pt;}
.x1d_c00088{left:568.639200pt;}
.x1a_c00088{left:582.079067pt;}
.x10_c00088{left:586.879307pt;}
.x1e_c00088{left:592.960000pt;}
.x11_c00088{left:600.959427pt;}
.x8_c00088{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1ff650beb00e1a559d62128.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_f169e1610f842e5487676dd3.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_6d31253d3368462fd38fb897.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_b841982d61fffc1d9dd3c3df.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_b0f5d7b99377a1cc095011c4.woff2')format("woff");}.ff5_c00089{font-family:ff5_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;}
@font-face{font-family:ff6_c00089;src:url('chunks/assets/font_97462118ee8a86d42a9ed303.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:1.432129;font-style:normal;font-weight: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_c00089;src:url('chunks/assets/font_8a89dd45d499fa756f66466f.woff2')format("woff");}.ff7_c00089{font-family:ff7_c00089;line-height:1.364746;font-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_c00089{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00089{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00089{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m16_c00089{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00089{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.m1e_c00089{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m6_c00089{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1c_c00089{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1b_c00089{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m14_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m19_c00089{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m18_c00089{transform:matrix(0.297222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297222,0.000000,0.000000,0.250000,0,0);}
.m8_c00089{transform:matrix(0.334746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334746,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);}
.m17_c00089{transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);}
.me_c00089{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.590909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590909,0.000000,0.000000,0.250000,0,0);}
.ma_c00089{transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682692,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(1.632812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.632812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.632812,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls21_c00089{letter-spacing:-17.550472px;}
.ls24_c00089{letter-spacing:-11.882588px;}
.ls29_c00089{letter-spacing:-10.031498px;}
.ls25_c00089{letter-spacing:-8.175038px;}
.ls20_c00089{letter-spacing:-7.924800px;}
.lsc_c00089{letter-spacing:-6.685875px;}
.ls23_c00089{letter-spacing:-5.945625px;}
.lsf_c00089{letter-spacing:-5.196713px;}
.ls14_c00089{letter-spacing:-4.456463px;}
.lse_c00089{letter-spacing:-3.717000px;}
.ls1d_c00089{letter-spacing:-3.489997px;}
.lsd_c00089{letter-spacing:-3.171825px;}
.lsb_c00089{letter-spacing:-2.968875px;}
.ls26_c00089{letter-spacing:-2.455200px;}
.ls2e_c00089{letter-spacing:-2.376555px;}
.ls11_c00089{letter-spacing:-2.229413px;}
.ls27_c00089{letter-spacing:-2.208578px;}
.ls2b_c00089{letter-spacing:-2.089620px;}
.ls15_c00089{letter-spacing:-1.556048px;}
.ls28_c00089{letter-spacing:-1.497878px;}
.ls10_c00089{letter-spacing:-1.489163px;}
.ls18_c00089{letter-spacing:-1.092975px;}
.ls2c_c00089{letter-spacing:-0.882000px;}
.ls2f_c00089{letter-spacing:-0.873923px;}
.ls30_c00089{letter-spacing:-0.866550px;}
.ls1b_c00089{letter-spacing:-0.824850px;}
.ls2d_c00089{letter-spacing:-0.756743px;}
.ls13_c00089{letter-spacing:-0.740250px;}
.ls16_c00089{letter-spacing:-0.703800px;}
.ls1c_c00089{letter-spacing:-0.633600px;}
.ls2a_c00089{letter-spacing:-0.627075px;}
.ls1e_c00089{letter-spacing:-0.316800px;}
.ls12_c00089{letter-spacing:0.000000px;}
.ls6_c00089{letter-spacing:0.316800px;}
.ls9_c00089{letter-spacing:0.611063px;}
.ls17_c00089{letter-spacing:0.836400px;}
.ls3_c00089{letter-spacing:1.092975px;}
.ls1f_c00089{letter-spacing:1.586475px;}
.ls22_c00089{letter-spacing:1.833563px;}
.ls7_c00089{letter-spacing:1.903275px;}
.ls1_c00089{letter-spacing:2.730668px;}
.ls5_c00089{letter-spacing:2.919300px;}
.ls8_c00089{letter-spacing:3.172950px;}
.ls2_c00089{letter-spacing:3.278925px;}
.ls19_c00089{letter-spacing:5.844150px;}
.ls4_c00089{letter-spacing:7.304355px;}
.lsa_c00089{letter-spacing:7.426125px;}
.ls1a_c00089{letter-spacing:10.402875px;}
.ls0_c00089{letter-spacing:13.371750px;}
.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;}
._0_c00089{margin-left:-73.670476px;}
._1d_c00089{margin-left:-42.060880px;}
._1b_c00089{margin-left:-14.138416px;}
._17_c00089{margin-left:-8.242421px;}
._14_c00089{margin-left:-5.000714px;}
._18_c00089{margin-left:-3.329609px;}
._19_c00089{margin-left:-2.277168px;}
._10_c00089{margin-left:-1.218381px;}
._e_c00089{width:1.328379px;}
._1a_c00089{width:2.366854px;}
._12_c00089{width:3.516054px;}
._d_c00089{width:4.652089px;}
._6_c00089{width:6.373237px;}
._1_c00089{width:7.592065px;}
._4_c00089{width:9.051971px;}
._15_c00089{width:10.129999px;}
._11_c00089{width:11.444217px;}
._2_c00089{width:12.537030px;}
._13_c00089{width:14.072298px;}
._f_c00089{width:15.584566px;}
._5_c00089{width:16.893079px;}
._3_c00089{width:18.613112px;}
._c_c00089{width:20.050062px;}
._16_c00089{width:21.165727px;}
._8_c00089{width:22.897647px;}
._b_c00089{width:24.322992px;}
._9_c00089{width:25.891975px;}
._1e_c00089{width:27.404941px;}
._a_c00089{width:28.570025px;}
._7_c00089{width:30.549681px;}
._1c_c00089{width:32.048917px;}
._1f_c00089{width:34.790576px;}
._20_c00089{width:39.982252px;}
.fc0_c00089{color:transparent;}
.fsb_c00089{font-size:18.750000px;}
.fs8_c00089{font-size:19.500000px;}
.fs9_c00089{font-size:24.750000px;}
.fs17_c00089{font-size:43.500000px;}
.fs6_c00089{font-size:44.250000px;}
.fsa_c00089{font-size:48.000000px;}
.fs5_c00089{font-size:51.000000px;}
.fs7_c00089{font-size:55.500000px;}
.fs11_c00089{font-size:66.750000px;}
.fs12_c00089{font-size:67.500000px;}
.fs15_c00089{font-size:70.500000px;}
.fsd_c00089{font-size:72.000000px;}
.fsc_c00089{font-size:72.750000px;}
.fs14_c00089{font-size:75.750000px;}
.fs3_c00089{font-size:76.500000px;}
.fse_c00089{font-size:77.250000px;}
.fs13_c00089{font-size:78.000000px;}
.fs0_c00089{font-size:78.750000px;}
.fs2_c00089{font-size:80.250000px;}
.fs16_c00089{font-size:81.750000px;}
.fs4_c00089{font-size:82.500000px;}
.fs1_c00089{font-size:83.250000px;}
.fsf_c00089{font-size:86.250000px;}
.fs10_c00089{font-size:101.250000px;}
.y0_c00089{bottom:0.000000px;}
.y24_c00089{bottom:182.159415px;}
.y23_c00089{bottom:182.160285px;}
.y21_c00089{bottom:212.039160px;}
.y22_c00089{bottom:212.040000px;}
.y20_c00089{bottom:242.279070px;}
.y1f_c00089{bottom:272.158785px;}
.y1e_c00089{bottom:330.838950px;}
.y1d_c00089{bottom:330.839745px;}
.y1c_c00089{bottom:361.079655px;}
.y1b_c00089{bottom:390.959385px;}
.y1a_c00089{bottom:427.319820px;}
.y19_c00089{bottom:432.000000px;}
.y18_c00089{bottom:450.359850px;}
.y17_c00089{bottom:510.119385px;}
.y16_c00089{bottom:569.520495px;}
.y14_c00089{bottom:600.117420px;}
.y15_c00089{bottom:600.118785px;}
.y13_c00089{bottom:629.638755px;}
.y12_c00089{bottom:659.518485px;}
.y11_c00089{bottom:718.919535px;}
.y10_c00089{bottom:748.080000px;}
.yf_c00089{bottom:752.039985px;}
.ye_c00089{bottom:778.679070px;}
.yd_c00089{bottom:778.679220px;}
.yc_c00089{bottom:808.919130px;}
.ya_c00089{bottom:838.438635px;}
.yb_c00089{bottom:838.438665px;}
.y9_c00089{bottom:868.680660px;}
.y8_c00089{bottom:898.560375px;}
.y7_c00089{bottom:928.079910px;}
.y6_c00089{bottom:957.959640px;}
.y5_c00089{bottom:1017.360690px;}
.y4_c00089{bottom:1047.600615px;}
.y3_c00089{bottom:1077.840525px;}
.y2_c00089{bottom:1107.360060px;}
.y1_c00089{bottom:1137.239775px;}
.hb_c00089{height:19.128662px;}
.he_c00089{height:19.555664px;}
.h9_c00089{height:20.337891px;}
.hd_c00089{height:24.459961px;}
.ha_c00089{height:25.813477px;}
.h1c_c00089{height:45.369141px;}
.h7_c00089{height:46.151367px;}
.hc_c00089{height:50.062500px;}
.h6_c00089{height:53.191406px;}
.h8_c00089{height:55.933594px;}
.h14_c00089{height:65.478882px;}
.h15_c00089{height:66.214600px;}
.h19_c00089{height:73.529297px;}
.h18_c00089{height:74.344482px;}
.h4_c00089{height:75.080566px;}
.h10_c00089{height:75.093750px;}
.hf_c00089{height:75.875977px;}
.h16_c00089{height:76.552734px;}
.h1_c00089{height:77.288818px;}
.h11_c00089{height:77.853516px;}
.h3_c00089{height:78.760986px;}
.h17_c00089{height:79.365234px;}
.h1a_c00089{height:80.876953px;}
.h5_c00089{height:80.969238px;}
.h2_c00089{height:81.705322px;}
.h1b_c00089{height:82.388672px;}
.h12_c00089{height:89.956055px;}
.h13_c00089{height:105.600586px;}
.h0_c00089{height:1263.000000px;}
.w0_c00089{width:892.500000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:136.079400px;}
.xd_c00089{left:154.439250px;}
.x4_c00089{left:159.478665px;}
.x18_c00089{left:187.559685px;}
.x1e_c00089{left:196.199850px;}
.x5_c00089{left:214.198785px;}
.x27_c00089{left:224.279250px;}
.x1f_c00089{left:227.878350px;}
.x6_c00089{left:229.679700px;}
.x2c_c00089{left:248.039385px;}
.x19_c00089{left:254.159850px;}
.x2d_c00089{left:268.559685px;}
.x1c_c00089{left:272.158785px;}
.xe_c00089{left:287.639700px;}
.x1d_c00089{left:291.238785px;}
.xf_c00089{left:301.678500px;}
.x2_c00089{left:304.199850px;}
.x14_c00089{left:320.399235px;}
.x3_c00089{left:331.199850px;}
.x15_c00089{left:335.159850px;}
.x20_c00089{left:336.239250px;}
.x2a_c00089{left:344.879535px;}
.x7_c00089{left:345.958950px;}
.x2b_c00089{left:359.279250px;}
.x8_c00089{left:361.078785px;}
.x9_c00089{left:387.358665px;}
.xa_c00089{left:410.759535px;}
.x21_c00089{left:420.119985px;}
.x22_c00089{left:470.519070px;}
.x1a_c00089{left:471.598530px;}
.x1b_c00089{left:493.199850px;}
.x23_c00089{left:533.879520px;}
.x12_c00089{left:577.439670px;}
.x24_c00089{left:581.759085px;}
.xb_c00089{left:587.159370px;}
.x10_c00089{left:599.759535px;}
.xc_c00089{left:602.999400px;}
.x25_c00089{left:607.318770px;}
.x28_c00089{left:608.759085px;}
.x16_c00089{left:610.558635px;}
.x17_c00089{left:624.599070px;}
.x29_c00089{left:625.678530px;}
.x26_c00089{left:692.998950px;}
.x13_c00089{left:709.199850px;}
.x11_c00089{left:735.838950px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls21_c00089{letter-spacing:-15.600420pt;}
.ls24_c00089{letter-spacing:-10.562300pt;}
.ls29_c00089{letter-spacing:-8.916887pt;}
.ls25_c00089{letter-spacing:-7.266700pt;}
.ls20_c00089{letter-spacing:-7.044267pt;}
.lsc_c00089{letter-spacing:-5.943000pt;}
.ls23_c00089{letter-spacing:-5.285000pt;}
.lsf_c00089{letter-spacing:-4.619300pt;}
.ls14_c00089{letter-spacing:-3.961300pt;}
.lse_c00089{letter-spacing:-3.304000pt;}
.ls1d_c00089{letter-spacing:-3.102220pt;}
.lsd_c00089{letter-spacing:-2.819400pt;}
.lsb_c00089{letter-spacing:-2.639000pt;}
.ls26_c00089{letter-spacing:-2.182400pt;}
.ls2e_c00089{letter-spacing:-2.112493pt;}
.ls11_c00089{letter-spacing:-1.981700pt;}
.ls27_c00089{letter-spacing:-1.963180pt;}
.ls2b_c00089{letter-spacing:-1.857440pt;}
.ls15_c00089{letter-spacing:-1.383153pt;}
.ls28_c00089{letter-spacing:-1.331447pt;}
.ls10_c00089{letter-spacing:-1.323700pt;}
.ls18_c00089{letter-spacing:-0.971533pt;}
.ls2c_c00089{letter-spacing:-0.784000pt;}
.ls2f_c00089{letter-spacing:-0.776820pt;}
.ls30_c00089{letter-spacing:-0.770267pt;}
.ls1b_c00089{letter-spacing:-0.733200pt;}
.ls2d_c00089{letter-spacing:-0.672660pt;}
.ls13_c00089{letter-spacing:-0.658000pt;}
.ls16_c00089{letter-spacing:-0.625600pt;}
.ls1c_c00089{letter-spacing:-0.563200pt;}
.ls2a_c00089{letter-spacing:-0.557400pt;}
.ls1e_c00089{letter-spacing:-0.281600pt;}
.ls12_c00089{letter-spacing:0.000000pt;}
.ls6_c00089{letter-spacing:0.281600pt;}
.ls9_c00089{letter-spacing:0.543167pt;}
.ls17_c00089{letter-spacing:0.743467pt;}
.ls3_c00089{letter-spacing:0.971533pt;}
.ls1f_c00089{letter-spacing:1.410200pt;}
.ls22_c00089{letter-spacing:1.629833pt;}
.ls7_c00089{letter-spacing:1.691800pt;}
.ls1_c00089{letter-spacing:2.427260pt;}
.ls5_c00089{letter-spacing:2.594933pt;}
.ls8_c00089{letter-spacing:2.820400pt;}
.ls2_c00089{letter-spacing:2.914600pt;}
.ls19_c00089{letter-spacing:5.194800pt;}
.ls4_c00089{letter-spacing:6.492760pt;}
.lsa_c00089{letter-spacing:6.601000pt;}
.ls1a_c00089{letter-spacing:9.247000pt;}
.ls0_c00089{letter-spacing:11.886000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
._0_c00089{margin-left:-65.484868pt;}
._1d_c00089{margin-left:-37.387449pt;}
._1b_c00089{margin-left:-12.567481pt;}
._17_c00089{margin-left:-7.326596pt;}
._14_c00089{margin-left:-4.445079pt;}
._18_c00089{margin-left:-2.959653pt;}
._19_c00089{margin-left:-2.024149pt;}
._10_c00089{margin-left:-1.083006pt;}
._e_c00089{width:1.180781pt;}
._1a_c00089{width:2.103870pt;}
._12_c00089{width:3.125381pt;}
._d_c00089{width:4.135191pt;}
._6_c00089{width:5.665100pt;}
._1_c00089{width:6.748502pt;}
._4_c00089{width:8.046196pt;}
._15_c00089{width:9.004443pt;}
._11_c00089{width:10.172638pt;}
._2_c00089{width:11.144026pt;}
._13_c00089{width:12.508709pt;}
._f_c00089{width:13.852947pt;}
._5_c00089{width:15.016070pt;}
._3_c00089{width:16.544989pt;}
._c_c00089{width:17.822277pt;}
._16_c00089{width:18.813979pt;}
._8_c00089{width:20.353464pt;}
._b_c00089{width:21.620438pt;}
._9_c00089{width:23.015089pt;}
._1e_c00089{width:24.359947pt;}
._a_c00089{width:25.395577pt;}
._7_c00089{width:27.155272pt;}
._1c_c00089{width:28.487926pt;}
._1f_c00089{width:30.924957pt;}
._20_c00089{width:35.539779pt;}
.fsb_c00089{font-size:16.666667pt;}
.fs8_c00089{font-size:17.333333pt;}
.fs9_c00089{font-size:22.000000pt;}
.fs17_c00089{font-size:38.666667pt;}
.fs6_c00089{font-size:39.333333pt;}
.fsa_c00089{font-size:42.666667pt;}
.fs5_c00089{font-size:45.333333pt;}
.fs7_c00089{font-size:49.333333pt;}
.fs11_c00089{font-size:59.333333pt;}
.fs12_c00089{font-size:60.000000pt;}
.fs15_c00089{font-size:62.666667pt;}
.fsd_c00089{font-size:64.000000pt;}
.fsc_c00089{font-size:64.666667pt;}
.fs14_c00089{font-size:67.333333pt;}
.fs3_c00089{font-size:68.000000pt;}
.fse_c00089{font-size:68.666667pt;}
.fs13_c00089{font-size:69.333333pt;}
.fs0_c00089{font-size:70.000000pt;}
.fs2_c00089{font-size:71.333333pt;}
.fs16_c00089{font-size:72.666667pt;}
.fs4_c00089{font-size:73.333333pt;}
.fs1_c00089{font-size:74.000000pt;}
.fsf_c00089{font-size:76.666667pt;}
.fs10_c00089{font-size:90.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y24_c00089{bottom:161.919480pt;}
.y23_c00089{bottom:161.920253pt;}
.y21_c00089{bottom:188.479253pt;}
.y22_c00089{bottom:188.480000pt;}
.y20_c00089{bottom:215.359173pt;}
.y1f_c00089{bottom:241.918920pt;}
.y1e_c00089{bottom:294.079067pt;}
.y1d_c00089{bottom:294.079773pt;}
.y1c_c00089{bottom:320.959693pt;}
.y1b_c00089{bottom:347.519453pt;}
.y1a_c00089{bottom:379.839840pt;}
.y19_c00089{bottom:384.000000pt;}
.y18_c00089{bottom:400.319867pt;}
.y17_c00089{bottom:453.439453pt;}
.y16_c00089{bottom:506.240440pt;}
.y14_c00089{bottom:533.437707pt;}
.y15_c00089{bottom:533.438920pt;}
.y13_c00089{bottom:559.678893pt;}
.y12_c00089{bottom:586.238653pt;}
.y11_c00089{bottom:639.039587pt;}
.y10_c00089{bottom:664.960000pt;}
.yf_c00089{bottom:668.479987pt;}
.ye_c00089{bottom:692.159173pt;}
.yd_c00089{bottom:692.159307pt;}
.yc_c00089{bottom:719.039227pt;}
.ya_c00089{bottom:745.278787pt;}
.yb_c00089{bottom:745.278813pt;}
.y9_c00089{bottom:772.160587pt;}
.y8_c00089{bottom:798.720333pt;}
.y7_c00089{bottom:824.959920pt;}
.y6_c00089{bottom:851.519680pt;}
.y5_c00089{bottom:904.320613pt;}
.y4_c00089{bottom:931.200547pt;}
.y3_c00089{bottom:958.080467pt;}
.y2_c00089{bottom:984.320053pt;}
.y1_c00089{bottom:1010.879800pt;}
.hb_c00089{height:17.003255pt;}
.he_c00089{height:17.382812pt;}
.h9_c00089{height:18.078125pt;}
.hd_c00089{height:21.742187pt;}
.ha_c00089{height:22.945312pt;}
.h1c_c00089{height:40.328125pt;}
.h7_c00089{height:41.023438pt;}
.hc_c00089{height:44.500000pt;}
.h6_c00089{height:47.281250pt;}
.h8_c00089{height:49.718750pt;}
.h14_c00089{height:58.203451pt;}
.h15_c00089{height:58.857422pt;}
.h19_c00089{height:65.359375pt;}
.h18_c00089{height:66.083984pt;}
.h4_c00089{height:66.738281pt;}
.h10_c00089{height:66.750000pt;}
.hf_c00089{height:67.445312pt;}
.h16_c00089{height:68.046875pt;}
.h1_c00089{height:68.701172pt;}
.h11_c00089{height:69.203125pt;}
.h3_c00089{height:70.009766pt;}
.h17_c00089{height:70.546875pt;}
.h1a_c00089{height:71.890625pt;}
.h5_c00089{height:71.972656pt;}
.h2_c00089{height:72.626953pt;}
.h1b_c00089{height:73.234375pt;}
.h12_c00089{height:79.960938pt;}
.h13_c00089{height:93.867188pt;}
.h0_c00089{height:1122.666667pt;}
.w0_c00089{width:793.333333pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:120.959467pt;}
.xd_c00089{left:137.279333pt;}
.x4_c00089{left:141.758813pt;}
.x18_c00089{left:166.719720pt;}
.x1e_c00089{left:174.399867pt;}
.x5_c00089{left:190.398920pt;}
.x27_c00089{left:199.359333pt;}
.x1f_c00089{left:202.558533pt;}
.x6_c00089{left:204.159733pt;}
.x2c_c00089{left:220.479453pt;}
.x19_c00089{left:225.919867pt;}
.x2d_c00089{left:238.719720pt;}
.x1c_c00089{left:241.918920pt;}
.xe_c00089{left:255.679733pt;}
.x1d_c00089{left:258.878920pt;}
.xf_c00089{left:268.158667pt;}
.x2_c00089{left:270.399867pt;}
.x14_c00089{left:284.799320pt;}
.x3_c00089{left:294.399867pt;}
.x15_c00089{left:297.919867pt;}
.x20_c00089{left:298.879333pt;}
.x2a_c00089{left:306.559587pt;}
.x7_c00089{left:307.519067pt;}
.x2b_c00089{left:319.359333pt;}
.x8_c00089{left:320.958920pt;}
.x9_c00089{left:344.318813pt;}
.xa_c00089{left:365.119587pt;}
.x21_c00089{left:373.439987pt;}
.x22_c00089{left:418.239173pt;}
.x1a_c00089{left:419.198693pt;}
.x1b_c00089{left:438.399867pt;}
.x23_c00089{left:474.559573pt;}
.x12_c00089{left:513.279707pt;}
.x24_c00089{left:517.119187pt;}
.xb_c00089{left:521.919440pt;}
.x10_c00089{left:533.119587pt;}
.xc_c00089{left:535.999467pt;}
.x25_c00089{left:539.838907pt;}
.x28_c00089{left:541.119187pt;}
.x16_c00089{left:542.718787pt;}
.x17_c00089{left:555.199173pt;}
.x29_c00089{left:556.158693pt;}
.x26_c00089{left:615.999067pt;}
.x13_c00089{left:630.399867pt;}
.x11_c00089{left:654.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dfad761345175f75f960627b.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_6e1e6192822c5d8a525301f2.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.364746;font-style:normal;font-weight:normal;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_5408f2493db36e5cacd537da.woff2')format("woff");}.ff3_c00090{font-family:ff3_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:ff4_c00090;src:url('chunks/assets/font_e6129a06a62916b604af8a85.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;}
.ma_c00090{transform:matrix(0.168142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168142,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00090{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m10_c00090{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m12_c00090{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls9_c00090{letter-spacing:-9.415725px;}
.ls17_c00090{letter-spacing:-7.576538px;}
.ls10_c00090{letter-spacing:-7.452000px;}
.ls16_c00090{letter-spacing:-6.811875px;}
.ls15_c00090{letter-spacing:-6.055875px;}
.lsb_c00090{letter-spacing:-5.300663px;}
.ls8_c00090{letter-spacing:-4.543088px;}
.lsf_c00090{letter-spacing:-4.541348px;}
.ls3_c00090{letter-spacing:-3.787875px;}
.ls5_c00090{letter-spacing:-3.031875px;}
.ls12_c00090{letter-spacing:-2.295000px;}
.ls13_c00090{letter-spacing:-2.272905px;}
.ls1_c00090{letter-spacing:-2.267213px;}
.lse_c00090{letter-spacing:-1.669200px;}
.ls11_c00090{letter-spacing:-1.668600px;}
.ls2_c00090{letter-spacing:-1.512000px;}
.lsc_c00090{letter-spacing:-1.500165px;}
.ls4_c00090{letter-spacing:-0.756000px;}
.ls14_c00090{letter-spacing:-0.719100px;}
.ls6_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:0.756000px;}
.ls7_c00090{letter-spacing:1.044900px;}
.lsa_c00090{letter-spacing:2.410200px;}
.lsd_c00090{letter-spacing:7.805475px;}
.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;}
._1a_c00090{margin-left:-21.136197px;}
._1f_c00090{margin-left:-9.852049px;}
._14_c00090{margin-left:-8.229738px;}
._15_c00090{margin-left:-5.973551px;}
._16_c00090{margin-left:-4.645281px;}
._19_c00090{margin-left:-2.638064px;}
._17_c00090{margin-left:-1.433432px;}
._8_c00090{width:1.074392px;}
._11_c00090{width:2.297501px;}
._4_c00090{width:3.386008px;}
._5_c00090{width:4.748686px;}
._7_c00090{width:6.670307px;}
._1b_c00090{width:7.903047px;}
._a_c00090{width:9.056856px;}
._d_c00090{width:10.835576px;}
._c_c00090{width:12.155608px;}
._26_c00090{width:13.370962px;}
._9_c00090{width:14.418459px;}
._e_c00090{width:16.043616px;}
._f_c00090{width:17.207299px;}
._6_c00090{width:18.477355px;}
._25_c00090{width:19.585186px;}
._12_c00090{width:20.870204px;}
._b_c00090{width:22.186540px;}
._13_c00090{width:23.772747px;}
._10_c00090{width:25.412867px;}
._24_c00090{width:27.373985px;}
._21_c00090{width:29.759383px;}
._1e_c00090{width:30.798762px;}
._27_c00090{width:31.982677px;}
._18_c00090{width:33.411989px;}
._20_c00090{width:34.846754px;}
._1c_c00090{width:36.795029px;}
._22_c00090{width:38.776924px;}
._1_c00090{width:40.446424px;}
._0_c00090{width:42.256887px;}
._1d_c00090{width:43.923600px;}
._23_c00090{width:45.538096px;}
._3_c00090{width:50.024968px;}
._2_c00090{width:54.699750px;}
.fc0_c00090{color:transparent;}
.fs4_c00090{font-size:72.000000px;}
.fs9_c00090{font-size:72.750000px;}
.fs7_c00090{font-size:76.500000px;}
.fs5_c00090{font-size:78.000000px;}
.fs0_c00090{font-size:78.750000px;}
.fsa_c00090{font-size:79.500000px;}
.fs6_c00090{font-size:80.250000px;}
.fs8_c00090{font-size:81.000000px;}
.fs1_c00090{font-size:82.500000px;}
.fs3_c00090{font-size:84.750000px;}
.fs2_c00090{font-size:96.750000px;}
.y0_c00090{bottom:0.000000px;}
.y25_c00090{bottom:189.359415px;}
.y24_c00090{bottom:218.878950px;}
.y23_c00090{bottom:218.880870px;}
.y22_c00090{bottom:248.760585px;}
.y21_c00090{bottom:278.280120px;}
.y20_c00090{bottom:308.159850px;}
.y1f_c00090{bottom:308.160090px;}
.y1e_c00090{bottom:338.039820px;}
.y1d_c00090{bottom:367.919535px;}
.y1c_c00090{bottom:367.920435px;}
.y1a_c00090{bottom:397.799535px;}
.y1b_c00090{bottom:397.800150px;}
.y19_c00090{bottom:457.198785px;}
.y18_c00090{bottom:457.200480px;}
.y17_c00090{bottom:487.440405px;}
.y16_c00090{bottom:517.320120px;}
.y15_c00090{bottom:547.199850px;}
.y14_c00090{bottom:576.358665px;}
.y13_c00090{bottom:576.362040px;}
.y12_c00090{bottom:606.241770px;}
.y11_c00090{bottom:636.121485px;}
.y10_c00090{bottom:695.160255px;}
.ye_c00090{bottom:725.039220px;}
.yf_c00090{bottom:725.039985px;}
.yd_c00090{bottom:754.918950px;}
.yc_c00090{bottom:815.399145px;}
.yb_c00090{bottom:845.999535px;}
.y9_c00090{bottom:875.518575px;}
.ya_c00090{bottom:875.519070px;}
.y8_c00090{bottom:905.758485px;}
.y7_c00090{bottom:965.520030px;}
.y6_c00090{bottom:994.679070px;}
.y5_c00090{bottom:1024.559685px;}
.y4_c00090{bottom:1084.319190px;}
.y2_c00090{bottom:1114.559010px;}
.y3_c00090{bottom:1114.559055px;}
.y1_c00090{bottom:1144.798920px;}
.h5_c00090{height:70.664062px;}
.hd_c00090{height:71.400146px;}
.h9_c00090{height:75.080566px;}
.hb_c00090{height:75.093750px;}
.h7_c00090{height:76.552734px;}
.he_c00090{height:77.097656px;}
.h1_c00090{height:77.288818px;}
.hf_c00090{height:78.024902px;}
.h8_c00090{height:78.760986px;}
.ha_c00090{height:80.876953px;}
.h2_c00090{height:80.969238px;}
.hc_c00090{height:81.632812px;}
.h4_c00090{height:83.177490px;}
.h6_c00090{height:83.756836px;}
.h3_c00090{height:94.954834px;}
.h0_c00090{height:1263.000000px;}
.w0_c00090{width:892.500000px;}
.x0_c00090{left:0.000000px;}
.xa_c00090{left:145.439715px;}
.x1_c00090{left:146.519100px;}
.x7_c00090{left:162.000000px;}
.xb_c00090{left:173.159850px;}
.x12_c00090{left:177.838515px;}
.x13_c00090{left:242.639100px;}
.x2_c00090{left:264.599700px;}
.x3_c00090{left:278.638500px;}
.xd_c00090{left:279.719535px;}
.x23_c00090{left:285.479235px;}
.xe_c00090{left:297.000000px;}
.x24_c00090{left:300.599100px;}
.x14_c00090{left:308.519100px;}
.xf_c00090{left:324.718500px;}
.x15_c00090{left:337.679700px;}
.x1e_c00090{left:348.839535px;}
.x1f_c00090{left:372.958950px;}
.x21_c00090{left:384.118785px;}
.x22_c00090{left:397.080000px;}
.x1a_c00090{left:417.959385px;}
.x8_c00090{left:424.798515px;}
.x16_c00090{left:437.039385px;}
.x1b_c00090{left:442.078815px;}
.x4_c00090{left:444.239220px;}
.x9_c00090{left:457.918950px;}
.x25_c00090{left:470.519070px;}
.x2a_c00090{left:473.399820px;}
.x17_c00090{left:486.000000px;}
.x2b_c00090{left:491.039385px;}
.x5_c00090{left:513.000000px;}
.x6_c00090{left:527.038920px;}
.x10_c00090{left:588.599670px;}
.x1c_c00090{left:595.799520px;}
.x28_c00090{left:599.039385px;}
.x11_c00090{left:603.358605px;}
.x1d_c00090{left:615.238770px;}
.x29_c00090{left:616.319820px;}
.x26_c00090{left:629.638545px;}
.x27_c00090{left:646.198785px;}
.x18_c00090{left:713.159820px;}
.x2c_c00090{left:723.599670px;}
.x2d_c00090{left:741.598530px;}
.x19_c00090{left:750.958920px;}
.x2e_c00090{left:760.319235px;}
.xc_c00090{left:770.759130px;}
.x2f_c00090{left:774.359805px;}
.x20_c00090{left:779.758575px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls9_c00090{letter-spacing:-8.369533pt;}
.ls17_c00090{letter-spacing:-6.734700pt;}
.ls10_c00090{letter-spacing:-6.624000pt;}
.ls16_c00090{letter-spacing:-6.055000pt;}
.ls15_c00090{letter-spacing:-5.383000pt;}
.lsb_c00090{letter-spacing:-4.711700pt;}
.ls8_c00090{letter-spacing:-4.038300pt;}
.lsf_c00090{letter-spacing:-4.036753pt;}
.ls3_c00090{letter-spacing:-3.367000pt;}
.ls5_c00090{letter-spacing:-2.695000pt;}
.ls12_c00090{letter-spacing:-2.040000pt;}
.ls13_c00090{letter-spacing:-2.020360pt;}
.ls1_c00090{letter-spacing:-2.015300pt;}
.lse_c00090{letter-spacing:-1.483733pt;}
.ls11_c00090{letter-spacing:-1.483200pt;}
.ls2_c00090{letter-spacing:-1.344000pt;}
.lsc_c00090{letter-spacing:-1.333480pt;}
.ls4_c00090{letter-spacing:-0.672000pt;}
.ls14_c00090{letter-spacing:-0.639200pt;}
.ls6_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:0.672000pt;}
.ls7_c00090{letter-spacing:0.928800pt;}
.lsa_c00090{letter-spacing:2.142400pt;}
.lsd_c00090{letter-spacing:6.938200pt;}
.ws0_c00090{word-spacing:0.000000pt;}
._1a_c00090{margin-left:-18.787731pt;}
._1f_c00090{margin-left:-8.757377pt;}
._14_c00090{margin-left:-7.315323pt;}
._15_c00090{margin-left:-5.309823pt;}
._16_c00090{margin-left:-4.129138pt;}
._19_c00090{margin-left:-2.344946pt;}
._17_c00090{margin-left:-1.274162pt;}
._8_c00090{width:0.955015pt;}
._11_c00090{width:2.042223pt;}
._4_c00090{width:3.009785pt;}
._5_c00090{width:4.221054pt;}
._7_c00090{width:5.929162pt;}
._1b_c00090{width:7.024931pt;}
._a_c00090{width:8.050538pt;}
._d_c00090{width:9.631623pt;}
._c_c00090{width:10.804985pt;}
._26_c00090{width:11.885300pt;}
._9_c00090{width:12.816408pt;}
._e_c00090{width:14.260992pt;}
._f_c00090{width:15.295377pt;}
._6_c00090{width:16.424315pt;}
._25_c00090{width:17.409054pt;}
._12_c00090{width:18.551292pt;}
._b_c00090{width:19.721369pt;}
._13_c00090{width:21.131331pt;}
._10_c00090{width:22.589215pt;}
._24_c00090{width:24.332431pt;}
._21_c00090{width:26.452785pt;}
._1e_c00090{width:27.376677pt;}
._27_c00090{width:28.429046pt;}
._18_c00090{width:29.699546pt;}
._20_c00090{width:30.974892pt;}
._1c_c00090{width:32.706692pt;}
._22_c00090{width:34.468377pt;}
._1_c00090{width:35.952377pt;}
._0_c00090{width:37.561677pt;}
._1d_c00090{width:39.043200pt;}
._23_c00090{width:40.478308pt;}
._3_c00090{width:44.466638pt;}
._2_c00090{width:48.622000pt;}
.fs4_c00090{font-size:64.000000pt;}
.fs9_c00090{font-size:64.666667pt;}
.fs7_c00090{font-size:68.000000pt;}
.fs5_c00090{font-size:69.333333pt;}
.fs0_c00090{font-size:70.000000pt;}
.fsa_c00090{font-size:70.666667pt;}
.fs6_c00090{font-size:71.333333pt;}
.fs8_c00090{font-size:72.000000pt;}
.fs1_c00090{font-size:73.333333pt;}
.fs3_c00090{font-size:75.333333pt;}
.fs2_c00090{font-size:86.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y25_c00090{bottom:168.319480pt;}
.y24_c00090{bottom:194.559067pt;}
.y23_c00090{bottom:194.560773pt;}
.y22_c00090{bottom:221.120520pt;}
.y21_c00090{bottom:247.360107pt;}
.y20_c00090{bottom:273.919867pt;}
.y1f_c00090{bottom:273.920080pt;}
.y1e_c00090{bottom:300.479840pt;}
.y1d_c00090{bottom:327.039587pt;}
.y1c_c00090{bottom:327.040387pt;}
.y1a_c00090{bottom:353.599587pt;}
.y1b_c00090{bottom:353.600133pt;}
.y19_c00090{bottom:406.398920pt;}
.y18_c00090{bottom:406.400427pt;}
.y17_c00090{bottom:433.280360pt;}
.y16_c00090{bottom:459.840107pt;}
.y15_c00090{bottom:486.399867pt;}
.y14_c00090{bottom:512.318813pt;}
.y13_c00090{bottom:512.321813pt;}
.y12_c00090{bottom:538.881573pt;}
.y11_c00090{bottom:565.441320pt;}
.y10_c00090{bottom:617.920227pt;}
.ye_c00090{bottom:644.479307pt;}
.yf_c00090{bottom:644.479987pt;}
.yd_c00090{bottom:671.039067pt;}
.yc_c00090{bottom:724.799240pt;}
.yb_c00090{bottom:751.999587pt;}
.y9_c00090{bottom:778.238733pt;}
.ya_c00090{bottom:778.239173pt;}
.y8_c00090{bottom:805.118653pt;}
.y7_c00090{bottom:858.240027pt;}
.y6_c00090{bottom:884.159173pt;}
.y5_c00090{bottom:910.719720pt;}
.y4_c00090{bottom:963.839280pt;}
.y2_c00090{bottom:990.719120pt;}
.y3_c00090{bottom:990.719160pt;}
.y1_c00090{bottom:1017.599040pt;}
.h5_c00090{height:62.812500pt;}
.hd_c00090{height:63.466797pt;}
.h9_c00090{height:66.738281pt;}
.hb_c00090{height:66.750000pt;}
.h7_c00090{height:68.046875pt;}
.he_c00090{height:68.531250pt;}
.h1_c00090{height:68.701172pt;}
.hf_c00090{height:69.355469pt;}
.h8_c00090{height:70.009766pt;}
.ha_c00090{height:71.890625pt;}
.h2_c00090{height:71.972656pt;}
.hc_c00090{height:72.562500pt;}
.h4_c00090{height:73.935547pt;}
.h6_c00090{height:74.450521pt;}
.h3_c00090{height:84.404297pt;}
.h0_c00090{height:1122.666667pt;}
.w0_c00090{width:793.333333pt;}
.x0_c00090{left:0.000000pt;}
.xa_c00090{left:129.279747pt;}
.x1_c00090{left:130.239200pt;}
.x7_c00090{left:144.000000pt;}
.xb_c00090{left:153.919867pt;}
.x12_c00090{left:158.078680pt;}
.x13_c00090{left:215.679200pt;}
.x2_c00090{left:235.199733pt;}
.x3_c00090{left:247.678667pt;}
.xd_c00090{left:248.639587pt;}
.x23_c00090{left:253.759320pt;}
.xe_c00090{left:264.000000pt;}
.x24_c00090{left:267.199200pt;}
.x14_c00090{left:274.239200pt;}
.xf_c00090{left:288.638667pt;}
.x15_c00090{left:300.159733pt;}
.x1e_c00090{left:310.079587pt;}
.x1f_c00090{left:331.519067pt;}
.x21_c00090{left:341.438920pt;}
.x22_c00090{left:352.960000pt;}
.x1a_c00090{left:371.519453pt;}
.x8_c00090{left:377.598680pt;}
.x16_c00090{left:388.479453pt;}
.x1b_c00090{left:392.958947pt;}
.x4_c00090{left:394.879307pt;}
.x9_c00090{left:407.039067pt;}
.x25_c00090{left:418.239173pt;}
.x2a_c00090{left:420.799840pt;}
.x17_c00090{left:432.000000pt;}
.x2b_c00090{left:436.479453pt;}
.x5_c00090{left:456.000000pt;}
.x6_c00090{left:468.479040pt;}
.x10_c00090{left:523.199707pt;}
.x1c_c00090{left:529.599573pt;}
.x28_c00090{left:532.479453pt;}
.x11_c00090{left:536.318760pt;}
.x1d_c00090{left:546.878907pt;}
.x29_c00090{left:547.839840pt;}
.x26_c00090{left:559.678707pt;}
.x27_c00090{left:574.398920pt;}
.x18_c00090{left:633.919840pt;}
.x2c_c00090{left:643.199707pt;}
.x2d_c00090{left:659.198693pt;}
.x19_c00090{left:667.519040pt;}
.x2e_c00090{left:675.839320pt;}
.xc_c00090{left:685.119227pt;}
.x2f_c00090{left:688.319827pt;}
.x20_c00090{left:693.118733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5465f5334f1f0a7d05a7be1.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_b23a20148612f7f13f04e8d2.woff2')format("woff");}.ff2_c00091{font-family:ff2_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:ff3_c00091;src:url('chunks/assets/font_be3679b3038570cb6c07e849.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_7b994a4dc52d51482d559b7b.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_3cb492a92efa8529b6e2b5d7.woff2')format("woff");}.ff5_c00091{font-family:ff5_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:ff6_c00091;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff6_c00091{font-family:ff6_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;}
.m16_c00091{transform:matrix(0.173423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173423,0.000000,0.000000,0.250000,0,0);}
.mc_c00091{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m1d_c00091{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m1e_c00091{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00091{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.mf_c00091{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m1b_c00091{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{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);}
.m1f_c00091{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1c_c00091{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{transform:matrix(0.601852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601852,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls21_c00091{letter-spacing:-14.734500px;}
.ls16_c00091{letter-spacing:-13.053150px;}
.ls11_c00091{letter-spacing:-12.771000px;}
.ls12_c00091{letter-spacing:-11.343750px;}
.ls24_c00091{letter-spacing:-10.791000px;}
.ls1f_c00091{letter-spacing:-9.497625px;}
.ls20_c00091{letter-spacing:-8.914500px;}
.ls18_c00091{letter-spacing:-7.496850px;}
.ls15_c00091{letter-spacing:-6.813225px;}
.ls1c_c00091{letter-spacing:-6.485175px;}
.ls19_c00091{letter-spacing:-6.115050px;}
.ls4_c00091{letter-spacing:-5.945625px;}
.ls1b_c00091{letter-spacing:-5.794050px;}
.ls22_c00091{letter-spacing:-5.196713px;}
.ls17_c00091{letter-spacing:-4.687500px;}
.lsd_c00091{letter-spacing:-4.539450px;}
.ls5_c00091{letter-spacing:-4.456463px;}
.ls13_c00091{letter-spacing:-3.787800px;}
.ls3_c00091{letter-spacing:-3.717000px;}
.lsb_c00091{letter-spacing:-3.160500px;}
.ls14_c00091{letter-spacing:-2.998800px;}
.ls1d_c00091{letter-spacing:-2.973300px;}
.ls0_c00091{letter-spacing:-2.968875px;}
.lse_c00091{letter-spacing:-2.272905px;}
.lsf_c00091{letter-spacing:-2.247000px;}
.lsc_c00091{letter-spacing:-2.245620px;}
.ls1_c00091{letter-spacing:-2.229413px;}
.ls25_c00091{letter-spacing:-1.539000px;}
.ls10_c00091{letter-spacing:-1.489163px;}
.ls6_c00091{letter-spacing:-0.740250px;}
.lsa_c00091{letter-spacing:-0.688500px;}
.ls8_c00091{letter-spacing:0.000000px;}
.ls9_c00091{letter-spacing:1.560000px;}
.ls7_c00091{letter-spacing:1.633500px;}
.ls2_c00091{letter-spacing:2.543625px;}
.ls23_c00091{letter-spacing:3.189075px;}
.ls1a_c00091{letter-spacing:12.425288px;}
.ls1e_c00091{letter-spacing:19.951200px;}
.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;}
._1a_c00091{margin-left:-11.567855px;}
._e_c00091{margin-left:-7.851137px;}
._15_c00091{margin-left:-6.745309px;}
._c_c00091{margin-left:-4.555465px;}
._d_c00091{margin-left:-2.637887px;}
._12_c00091{margin-left:-1.009828px;}
._f_c00091{width:1.183657px;}
._13_c00091{width:2.914954px;}
._14_c00091{width:4.380224px;}
._11_c00091{width:5.929370px;}
._1_c00091{width:7.961744px;}
._3_c00091{width:9.189278px;}
._10_c00091{width:10.191461px;}
._17_c00091{width:11.384442px;}
._2_c00091{width:12.458012px;}
._4_c00091{width:14.016995px;}
._0_c00091{width:15.561594px;}
._18_c00091{width:16.790436px;}
._16_c00091{width:19.568536px;}
._5_c00091{width:20.797697px;}
._8_c00091{width:22.256830px;}
._6_c00091{width:24.253336px;}
._19_c00091{width:25.908668px;}
._a_c00091{width:27.145526px;}
._b_c00091{width:28.570441px;}
._9_c00091{width:29.665066px;}
._7_c00091{width:34.099017px;}
.fc0_c00091{color:transparent;}
.fsb_c00091{font-size:20.250000px;}
.fs9_c00091{font-size:69.750000px;}
.fsc_c00091{font-size:71.250000px;}
.fsf_c00091{font-size:72.000000px;}
.fs5_c00091{font-size:73.500000px;}
.fs1_c00091{font-size:74.250000px;}
.fs3_c00091{font-size:75.000000px;}
.fs10_c00091{font-size:75.750000px;}
.fs4_c00091{font-size:76.500000px;}
.fs6_c00091{font-size:78.000000px;}
.fs0_c00091{font-size:78.750000px;}
.fs7_c00091{font-size:79.500000px;}
.fs2_c00091{font-size:80.250000px;}
.fs12_c00091{font-size:81.000000px;}
.fsd_c00091{font-size:81.750000px;}
.fs8_c00091{font-size:82.500000px;}
.fse_c00091{font-size:83.250000px;}
.fs11_c00091{font-size:84.750000px;}
.fsa_c00091{font-size:86.250000px;}
.y0_c00091{bottom:0.000000px;}
.y20_c00091{bottom:419.759085px;}
.y1e_c00091{bottom:448.558140px;}
.y1f_c00091{bottom:448.558635px;}
.y1d_c00091{bottom:478.800150px;}
.y1c_c00091{bottom:509.399235px;}
.y1b_c00091{bottom:509.400030px;}
.y19_c00091{bottom:569.518230px;}
.y1a_c00091{bottom:569.519670px;}
.y18_c00091{bottom:599.397945px;}
.y17_c00091{bottom:628.559100px;}
.y15_c00091{bottom:657.718800px;}
.y16_c00091{bottom:657.719520px;}
.y13_c00091{bottom:687.598110px;}
.y14_c00091{bottom:687.598530px;}
.y12_c00091{bottom:717.840135px;}
.y11_c00091{bottom:747.719100px;}
.y10_c00091{bottom:757.799520px;}
.yf_c00091{bottom:777.599670px;}
.ye_c00091{bottom:777.600495px;}
.yd_c00091{bottom:808.198785px;}
.yc_c00091{bottom:808.198995px;}
.yb_c00091{bottom:837.718530px;}
.ya_c00091{bottom:867.239865px;}
.y9_c00091{bottom:867.240600px;}
.y8_c00091{bottom:897.838905px;}
.y7_c00091{bottom:957.239220px;}
.y6_c00091{bottom:1016.999790px;}
.y4_c00091{bottom:1046.879475px;}
.y5_c00091{bottom:1046.879520px;}
.y3_c00091{bottom:1077.119385px;}
.y2_c00091{bottom:1106.459640px;}
.y1_c00091{bottom:1136.878875px;}
.he_c00091{height:21.120117px;}
.hb_c00091{height:72.747070px;}
.h4_c00091{height:73.608398px;}
.h13_c00091{height:74.311523px;}
.h18_c00091{height:74.344482px;}
.h2_c00091{height:74.830078px;}
.h5_c00091{height:75.080566px;}
.h17_c00091{height:75.093750px;}
.hc_c00091{height:76.552734px;}
.h6_c00091{height:76.658203px;}
.hf_c00091{height:77.097656px;}
.h1_c00091{height:77.288818px;}
.h11_c00091{height:77.440430px;}
.h16_c00091{height:78.024902px;}
.h12_c00091{height:78.222656px;}
.h7_c00091{height:78.609375px;}
.h3_c00091{height:78.760986px;}
.h1a_c00091{height:79.497070px;}
.h8_c00091{height:80.121094px;}
.h10_c00091{height:80.876953px;}
.h9_c00091{height:80.969238px;}
.ha_c00091{height:81.533203px;}
.h15_c00091{height:82.274414px;}
.h14_c00091{height:82.388672px;}
.h19_c00091{height:83.177490px;}
.hd_c00091{height:89.956055px;}
.h0_c00091{height:1263.000000px;}
.w0_c00091{width:892.500000px;}
.x0_c00091{left:0.000000px;}
.xf_c00091{left:135.718500px;}
.x1_c00091{left:136.799565px;}
.x35_c00091{left:152.278800px;}
.x10_c00091{left:176.759100px;}
.xd_c00091{left:187.918950px;}
.x2d_c00091{left:205.199385px;}
.x1f_c00091{left:207.719100px;}
.x20_c00091{left:215.639100px;}
.x2e_c00091{left:227.878350px;}
.x21_c00091{left:241.559685px;}
.x4_c00091{left:249.479685px;}
.x15_c00091{left:256.318800px;}
.xe_c00091{left:257.759100px;}
.x22_c00091{left:269.279850px;}
.x16_c00091{left:276.838950px;}
.x5_c00091{left:288.719100px;}
.x23_c00091{left:293.758500px;}
.x6_c00091{left:304.199850px;}
.x2_c00091{left:347.399235px;}
.x19_c00091{left:360.719535px;}
.x3_c00091{left:374.040000px;}
.x11_c00091{left:387.358665px;}
.x24_c00091{left:392.038920px;}
.x12_c00091{left:404.279850px;}
.x7_c00091{left:409.678530px;}
.x25_c00091{left:420.119985px;}
.x8_c00091{left:442.078815px;}
.x26_c00091{left:451.798515px;}
.x32_c00091{left:493.559100px;}
.x33_c00091{left:508.679070px;}
.x27_c00091{left:524.519070px;}
.x1a_c00091{left:532.798515px;}
.x1b_c00091{left:554.038920px;}
.x2f_c00091{left:557.639700px;}
.x30_c00091{left:574.918350px;}
.x1c_c00091{left:588.599670px;}
.x9_c00091{left:599.759535px;}
.x28_c00091{left:601.918350px;}
.x13_c00091{left:617.399235px;}
.x29_c00091{left:622.799520px;}
.x36_c00091{left:626.039385px;}
.x39_c00091{left:628.199850px;}
.xa_c00091{left:630.358605px;}
.x14_c00091{left:633.598530px;}
.x37_c00091{left:641.879520px;}
.x3a_c00091{left:642.958920px;}
.x2a_c00091{left:649.079355px;}
.x34_c00091{left:671.039985px;}
.x17_c00091{left:682.918350px;}
.x18_c00091{left:703.799520px;}
.xb_c00091{left:710.999400px;}
.x2b_c00091{left:719.639700px;}
.xc_c00091{left:726.119385px;}
.x1d_c00091{left:731.519670px;}
.x1e_c00091{left:748.080000px;}
.x2c_c00091{left:756.359250px;}
.x31_c00091{left:758.519670px;}
.x38_c00091{left:764.999355px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls21_c00091{letter-spacing:-13.097333pt;}
.ls16_c00091{letter-spacing:-11.602800pt;}
.ls11_c00091{letter-spacing:-11.352000pt;}
.ls12_c00091{letter-spacing:-10.083333pt;}
.ls24_c00091{letter-spacing:-9.592000pt;}
.ls1f_c00091{letter-spacing:-8.442333pt;}
.ls20_c00091{letter-spacing:-7.924000pt;}
.ls18_c00091{letter-spacing:-6.663867pt;}
.ls15_c00091{letter-spacing:-6.056200pt;}
.ls1c_c00091{letter-spacing:-5.764600pt;}
.ls19_c00091{letter-spacing:-5.435600pt;}
.ls4_c00091{letter-spacing:-5.285000pt;}
.ls1b_c00091{letter-spacing:-5.150267pt;}
.ls22_c00091{letter-spacing:-4.619300pt;}
.ls17_c00091{letter-spacing:-4.166667pt;}
.lsd_c00091{letter-spacing:-4.035067pt;}
.ls5_c00091{letter-spacing:-3.961300pt;}
.ls13_c00091{letter-spacing:-3.366933pt;}
.ls3_c00091{letter-spacing:-3.304000pt;}
.lsb_c00091{letter-spacing:-2.809333pt;}
.ls14_c00091{letter-spacing:-2.665600pt;}
.ls1d_c00091{letter-spacing:-2.642933pt;}
.ls0_c00091{letter-spacing:-2.639000pt;}
.lse_c00091{letter-spacing:-2.020360pt;}
.lsf_c00091{letter-spacing:-1.997333pt;}
.lsc_c00091{letter-spacing:-1.996107pt;}
.ls1_c00091{letter-spacing:-1.981700pt;}
.ls25_c00091{letter-spacing:-1.368000pt;}
.ls10_c00091{letter-spacing:-1.323700pt;}
.ls6_c00091{letter-spacing:-0.658000pt;}
.lsa_c00091{letter-spacing:-0.612000pt;}
.ls8_c00091{letter-spacing:0.000000pt;}
.ls9_c00091{letter-spacing:1.386667pt;}
.ls7_c00091{letter-spacing:1.452000pt;}
.ls2_c00091{letter-spacing:2.261000pt;}
.ls23_c00091{letter-spacing:2.834733pt;}
.ls1a_c00091{letter-spacing:11.044700pt;}
.ls1e_c00091{letter-spacing:17.734400pt;}
.ws0_c00091{word-spacing:0.000000pt;}
._1a_c00091{margin-left:-10.282538pt;}
._e_c00091{margin-left:-6.978789pt;}
._15_c00091{margin-left:-5.995830pt;}
._c_c00091{margin-left:-4.049302pt;}
._d_c00091{margin-left:-2.344789pt;}
._12_c00091{margin-left:-0.897625pt;}
._f_c00091{width:1.052140pt;}
._13_c00091{width:2.591070pt;}
._14_c00091{width:3.893532pt;}
._11_c00091{width:5.270551pt;}
._1_c00091{width:7.077106pt;}
._3_c00091{width:8.168247pt;}
._10_c00091{width:9.059076pt;}
._17_c00091{width:10.119504pt;}
._2_c00091{width:11.073789pt;}
._4_c00091{width:12.459551pt;}
._0_c00091{width:13.832528pt;}
._18_c00091{width:14.924832pt;}
._16_c00091{width:17.394254pt;}
._5_c00091{width:18.486842pt;}
._8_c00091{width:19.783849pt;}
._6_c00091{width:21.558521pt;}
._19_c00091{width:23.029927pt;}
._a_c00091{width:24.129357pt;}
._b_c00091{width:25.395947pt;}
._9_c00091{width:26.368947pt;}
._7_c00091{width:30.310238pt;}
.fsb_c00091{font-size:18.000000pt;}
.fs9_c00091{font-size:62.000000pt;}
.fsc_c00091{font-size:63.333333pt;}
.fsf_c00091{font-size:64.000000pt;}
.fs5_c00091{font-size:65.333333pt;}
.fs1_c00091{font-size:66.000000pt;}
.fs3_c00091{font-size:66.666667pt;}
.fs10_c00091{font-size:67.333333pt;}
.fs4_c00091{font-size:68.000000pt;}
.fs6_c00091{font-size:69.333333pt;}
.fs0_c00091{font-size:70.000000pt;}
.fs7_c00091{font-size:70.666667pt;}
.fs2_c00091{font-size:71.333333pt;}
.fs12_c00091{font-size:72.000000pt;}
.fsd_c00091{font-size:72.666667pt;}
.fs8_c00091{font-size:73.333333pt;}
.fse_c00091{font-size:74.000000pt;}
.fs11_c00091{font-size:75.333333pt;}
.fsa_c00091{font-size:76.666667pt;}
.y0_c00091{bottom:0.000000pt;}
.y20_c00091{bottom:373.119187pt;}
.y1e_c00091{bottom:398.718347pt;}
.y1f_c00091{bottom:398.718787pt;}
.y1d_c00091{bottom:425.600133pt;}
.y1c_c00091{bottom:452.799320pt;}
.y1b_c00091{bottom:452.800027pt;}
.y19_c00091{bottom:506.238427pt;}
.y1a_c00091{bottom:506.239707pt;}
.y18_c00091{bottom:532.798173pt;}
.y17_c00091{bottom:558.719200pt;}
.y15_c00091{bottom:584.638933pt;}
.y16_c00091{bottom:584.639573pt;}
.y13_c00091{bottom:611.198320pt;}
.y14_c00091{bottom:611.198693pt;}
.y12_c00091{bottom:638.080120pt;}
.y11_c00091{bottom:664.639200pt;}
.y10_c00091{bottom:673.599573pt;}
.yf_c00091{bottom:691.199707pt;}
.ye_c00091{bottom:691.200440pt;}
.yd_c00091{bottom:718.398920pt;}
.yc_c00091{bottom:718.399107pt;}
.yb_c00091{bottom:744.638693pt;}
.ya_c00091{bottom:770.879880pt;}
.y9_c00091{bottom:770.880533pt;}
.y8_c00091{bottom:798.079027pt;}
.y7_c00091{bottom:850.879307pt;}
.y6_c00091{bottom:903.999813pt;}
.y4_c00091{bottom:930.559533pt;}
.y5_c00091{bottom:930.559573pt;}
.y3_c00091{bottom:957.439453pt;}
.y2_c00091{bottom:983.519680pt;}
.y1_c00091{bottom:1010.559000pt;}
.he_c00091{height:18.773437pt;}
.hb_c00091{height:64.664062pt;}
.h4_c00091{height:65.429688pt;}
.h13_c00091{height:66.054688pt;}
.h18_c00091{height:66.083984pt;}
.h2_c00091{height:66.515625pt;}
.h5_c00091{height:66.738281pt;}
.h17_c00091{height:66.750000pt;}
.hc_c00091{height:68.046875pt;}
.h6_c00091{height:68.140625pt;}
.hf_c00091{height:68.531250pt;}
.h1_c00091{height:68.701172pt;}
.h11_c00091{height:68.835938pt;}
.h16_c00091{height:69.355469pt;}
.h12_c00091{height:69.531250pt;}
.h7_c00091{height:69.875000pt;}
.h3_c00091{height:70.009766pt;}
.h1a_c00091{height:70.664062pt;}
.h8_c00091{height:71.218750pt;}
.h10_c00091{height:71.890625pt;}
.h9_c00091{height:71.972656pt;}
.ha_c00091{height:72.473958pt;}
.h15_c00091{height:73.132813pt;}
.h14_c00091{height:73.234375pt;}
.h19_c00091{height:73.935547pt;}
.hd_c00091{height:79.960938pt;}
.h0_c00091{height:1122.666667pt;}
.w0_c00091{width:793.333333pt;}
.x0_c00091{left:0.000000pt;}
.xf_c00091{left:120.638667pt;}
.x1_c00091{left:121.599613pt;}
.x35_c00091{left:135.358933pt;}
.x10_c00091{left:157.119200pt;}
.xd_c00091{left:167.039067pt;}
.x2d_c00091{left:182.399453pt;}
.x1f_c00091{left:184.639200pt;}
.x20_c00091{left:191.679200pt;}
.x2e_c00091{left:202.558533pt;}
.x21_c00091{left:214.719720pt;}
.x4_c00091{left:221.759720pt;}
.x15_c00091{left:227.838933pt;}
.xe_c00091{left:229.119200pt;}
.x22_c00091{left:239.359867pt;}
.x16_c00091{left:246.079067pt;}
.x5_c00091{left:256.639200pt;}
.x23_c00091{left:261.118667pt;}
.x6_c00091{left:270.399867pt;}
.x2_c00091{left:308.799320pt;}
.x19_c00091{left:320.639587pt;}
.x3_c00091{left:332.480000pt;}
.x11_c00091{left:344.318813pt;}
.x24_c00091{left:348.479040pt;}
.x12_c00091{left:359.359867pt;}
.x7_c00091{left:364.158693pt;}
.x25_c00091{left:373.439987pt;}
.x8_c00091{left:392.958947pt;}
.x26_c00091{left:401.598680pt;}
.x32_c00091{left:438.719200pt;}
.x33_c00091{left:452.159173pt;}
.x27_c00091{left:466.239173pt;}
.x1a_c00091{left:473.598680pt;}
.x1b_c00091{left:492.479040pt;}
.x2f_c00091{left:495.679733pt;}
.x30_c00091{left:511.038533pt;}
.x1c_c00091{left:523.199707pt;}
.x9_c00091{left:533.119587pt;}
.x28_c00091{left:535.038533pt;}
.x13_c00091{left:548.799320pt;}
.x29_c00091{left:553.599573pt;}
.x36_c00091{left:556.479453pt;}
.x39_c00091{left:558.399867pt;}
.xa_c00091{left:560.318760pt;}
.x14_c00091{left:563.198693pt;}
.x37_c00091{left:570.559573pt;}
.x3a_c00091{left:571.519040pt;}
.x2a_c00091{left:576.959427pt;}
.x34_c00091{left:596.479987pt;}
.x17_c00091{left:607.038533pt;}
.x18_c00091{left:625.599573pt;}
.xb_c00091{left:631.999467pt;}
.x2b_c00091{left:639.679733pt;}
.xc_c00091{left:645.439453pt;}
.x1d_c00091{left:650.239707pt;}
.x1e_c00091{left:664.960000pt;}
.x2c_c00091{left:672.319333pt;}
.x31_c00091{left:674.239707pt;}
.x38_c00091{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9333971a175ca5b866b2e75b.woff2')format("woff");}.ff1_c00092{font-family:ff1_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:ff2_c00092;src:url('chunks/assets/font_c9db96b5522d01a5c279de5f.woff2')format("woff");}.ff2_c00092{font-family:ff2_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:ff3_c00092;src:url('chunks/assets/font_ab5caa0d697c20dd24e592ce.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_6fc82e02e5fd8dac3b736cc0.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_614b938ce6c947d388b22246.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00092;src:url('chunks/assets/font_f5655c1c3dd0fb4f98139662.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:1.364746;font-style:normal;font-weight: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_c00092;src:url('chunks/assets/font_f6126c56bace6b170c7e5614.woff2')format("woff");}.ff7_c00092{font-family:ff7_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;}
.mb_c00092{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m13_c00092{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m22_c00092{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m29_c00092{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m18_c00092{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{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_c00092{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m1c_c00092{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m11_c00092{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m25_c00092{transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.m1b_c00092{transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);}
.m26_c00092{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00092{transform:matrix(0.368852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368852,0.000000,0.000000,0.250000,0,0);}
.m19_c00092{transform:matrix(0.370690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370690,0.000000,0.000000,0.250000,0,0);}
.md_c00092{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);}
.m1a_c00092{transform:matrix(0.383721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383721,0.000000,0.000000,0.250000,0,0);}
.m1f_c00092{transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);}
.m20_c00092{transform:matrix(0.401786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401786,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);}
.m17_c00092{transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);}
.m28_c00092{transform:matrix(0.467593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467593,0.000000,0.000000,0.250000,0,0);}
.m23_c00092{transform:matrix(0.478070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478070,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.518750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00092{transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543750,0.000000,0.000000,0.250000,0,0);}
.m27_c00092{transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.603448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603448,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls11_c00092{letter-spacing:-7.576538px;}
.ls23_c00092{letter-spacing:-7.312013px;}
.ls13_c00092{letter-spacing:-6.055875px;}
.ls10_c00092{letter-spacing:-5.300663px;}
.lsf_c00092{letter-spacing:-5.247533px;}
.ls5_c00092{letter-spacing:-5.147220px;}
.lsc_c00092{letter-spacing:-4.543088px;}
.lse_c00092{letter-spacing:-3.787875px;}
.ls32_c00092{letter-spacing:-3.608550px;}
.lsb_c00092{letter-spacing:-3.031875px;}
.ls4_c00092{letter-spacing:-2.914650px;}
.ls27_c00092{letter-spacing:-2.270025px;}
.ls9_c00092{letter-spacing:-2.267213px;}
.ls7_c00092{letter-spacing:-2.187135px;}
.ls8_c00092{letter-spacing:-1.530323px;}
.lsa_c00092{letter-spacing:-1.512000px;}
.ls6_c00092{letter-spacing:-1.453500px;}
.ls2_c00092{letter-spacing:-0.816683px;}
.ls1e_c00092{letter-spacing:-0.805350px;}
.ls1_c00092{letter-spacing:-0.791708px;}
.lsd_c00092{letter-spacing:-0.756000px;}
.ls1a_c00092{letter-spacing:-0.621833px;}
.ls30_c00092{letter-spacing:-0.561600px;}
.ls1f_c00092{letter-spacing:-0.363000px;}
.ls3_c00092{letter-spacing:0.000000px;}
.ls2e_c00092{letter-spacing:0.446700px;}
.ls2c_c00092{letter-spacing:0.465780px;}
.ls12_c00092{letter-spacing:0.749700px;}
.ls22_c00092{letter-spacing:0.756000px;}
.ls26_c00092{letter-spacing:1.500600px;}
.ls2a_c00092{letter-spacing:1.523018px;}
.ls14_c00092{letter-spacing:1.653600px;}
.ls29_c00092{letter-spacing:1.725000px;}
.ls17_c00092{letter-spacing:3.262050px;}
.ls1c_c00092{letter-spacing:3.730650px;}
.ls2f_c00092{letter-spacing:4.236075px;}
.ls21_c00092{letter-spacing:5.850000px;}
.ls16_c00092{letter-spacing:7.999200px;}
.ls20_c00092{letter-spacing:8.029418px;}
.ls24_c00092{letter-spacing:8.095350px;}
.ls0_c00092{letter-spacing:9.176018px;}
.ls18_c00092{letter-spacing:9.420300px;}
.ls19_c00092{letter-spacing:11.587200px;}
.ls31_c00092{letter-spacing:14.580600px;}
.ls1b_c00092{letter-spacing:16.013700px;}
.ls1d_c00092{letter-spacing:16.578000px;}
.ls15_c00092{letter-spacing:17.896545px;}
.ls2b_c00092{letter-spacing:19.747665px;}
.ls25_c00092{letter-spacing:20.523900px;}
.ls2d_c00092{letter-spacing:22.563157px;}
.ls28_c00092{letter-spacing:25.623975px;}
.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;}
._1a_c00092{margin-left:-13.040470px;}
._13_c00092{margin-left:-8.183991px;}
._a_c00092{margin-left:-6.748269px;}
._2_c00092{margin-left:-4.842698px;}
._8_c00092{margin-left:-3.449735px;}
._6_c00092{margin-left:-1.787542px;}
._5_c00092{width:1.434638px;}
._4_c00092{width:2.904426px;}
._0_c00092{width:3.918474px;}
._3_c00092{width:5.829052px;}
._b_c00092{width:7.167219px;}
._9_c00092{width:8.454412px;}
._1_c00092{width:10.182339px;}
._7_c00092{width:11.196009px;}
._c_c00092{width:12.221561px;}
._d_c00092{width:13.272237px;}
._e_c00092{width:15.121454px;}
._10_c00092{width:16.696030px;}
._14_c00092{width:17.755048px;}
._11_c00092{width:18.996802px;}
._f_c00092{width:20.158521px;}
._21_c00092{width:21.175582px;}
._12_c00092{width:22.317765px;}
._15_c00092{width:23.976423px;}
._20_c00092{width:25.292269px;}
._22_c00092{width:26.481497px;}
._16_c00092{width:28.290574px;}
._1f_c00092{width:30.324565px;}
._17_c00092{width:31.470150px;}
._19_c00092{width:33.298055px;}
._1b_c00092{width:35.380679px;}
._1c_c00092{width:37.508564px;}
._18_c00092{width:39.690061px;}
._1d_c00092{width:41.430183px;}
._1e_c00092{width:44.468974px;}
.fc0_c00092{color:transparent;}
.fsd_c00092{font-size:21.750000px;}
.fsb_c00092{font-size:24.000000px;}
.fs11_c00092{font-size:24.750000px;}
.fse_c00092{font-size:25.500000px;}
.fs1d_c00092{font-size:27.000000px;}
.fs1e_c00092{font-size:28.500000px;}
.fs13_c00092{font-size:29.250000px;}
.fs10_c00092{font-size:30.000000px;}
.fs17_c00092{font-size:30.750000px;}
.fs19_c00092{font-size:31.500000px;}
.fs16_c00092{font-size:32.250000px;}
.fs1a_c00092{font-size:39.000000px;}
.fsa_c00092{font-size:40.500000px;}
.fsf_c00092{font-size:42.000000px;}
.fs1b_c00092{font-size:42.750000px;}
.fs15_c00092{font-size:43.500000px;}
.fs12_c00092{font-size:44.250000px;}
.fsc_c00092{font-size:45.000000px;}
.fs18_c00092{font-size:45.750000px;}
.fs14_c00092{font-size:48.750000px;}
.fs1c_c00092{font-size:50.250000px;}
.fs2_c00092{font-size:76.500000px;}
.fs5_c00092{font-size:77.250000px;}
.fs4_c00092{font-size:78.000000px;}
.fs3_c00092{font-size:78.750000px;}
.fs6_c00092{font-size:79.212000px;}
.fs8_c00092{font-size:79.500000px;}
.fs7_c00092{font-size:80.250000px;}
.fs1_c00092{font-size:81.750000px;}
.fs9_c00092{font-size:82.500000px;}
.fs0_c00092{font-size:83.250000px;}
.y0_c00092{bottom:0.000000px;}
.y22_c00092{bottom:185.039745px;}
.y23_c00092{bottom:185.040000px;}
.y21_c00092{bottom:214.559280px;}
.y20_c00092{bottom:273.960345px;}
.y1f_c00092{bottom:304.200255px;}
.y1e_c00092{bottom:334.079985px;}
.y1d_c00092{bottom:363.959700px;}
.y1c_c00092{bottom:393.479235px;}
.y1b_c00092{bottom:423.719100px;}
.y1a_c00092{bottom:429.119385px;}
.y19_c00092{bottom:452.879520px;}
.y18_c00092{bottom:452.882040px;}
.y17_c00092{bottom:483.480330px;}
.y16_c00092{bottom:513.360060px;}
.y15_c00092{bottom:543.599970px;}
.y13_c00092{bottom:573.479010px;}
.y14_c00092{bottom:573.479685px;}
.y11_c00092{bottom:602.639670px;}
.y12_c00092{bottom:602.640150px;}
.y10_c00092{bottom:662.038920px;}
.yf_c00092{bottom:721.439580px;}
.ye_c00092{bottom:752.039985px;}
.yd_c00092{bottom:752.040390px;}
.yc_c00092{bottom:781.559925px;}
.yb_c00092{bottom:811.439640px;}
.ya_c00092{bottom:841.319370px;}
.y8_c00092{bottom:870.838755px;}
.y9_c00092{bottom:870.838905px;}
.y7_c00092{bottom:901.439160px;}
.y6_c00092{bottom:930.600315px;}
.y5_c00092{bottom:960.480030px;}
.y4_c00092{bottom:990.359760px;}
.y3_c00092{bottom:1020.599670px;}
.y2_c00092{bottom:1080.000000px;}
.y1_c00092{bottom:1139.039340px;}
.h11_c00092{height:22.684570px;}
.h15_c00092{height:24.459961px;}
.hf_c00092{height:25.031250px;}
.h25_c00092{height:26.499023px;}
.h12_c00092{height:26.595703px;}
.h26_c00092{height:27.971191px;}
.h22_c00092{height:28.707275px;}
.h1d_c00092{height:29.443359px;}
.h1b_c00092{height:30.179443px;}
.h17_c00092{height:30.506836px;}
.h1f_c00092{height:30.915527px;}
.h14_c00092{height:31.289062px;}
.h1a_c00092{height:31.651611px;}
.h27_c00092{height:39.748535px;}
.h21_c00092{height:40.675781px;}
.h20_c00092{height:41.220703px;}
.h23_c00092{height:41.956787px;}
.he_c00092{height:42.240234px;}
.h19_c00092{height:42.692871px;}
.h1c_c00092{height:43.428955px;}
.h13_c00092{height:43.804688px;}
.h10_c00092{height:44.472656px;}
.h1e_c00092{height:44.901123px;}
.h16_c00092{height:46.151367px;}
.h18_c00092{height:48.178711px;}
.h24_c00092{height:49.317627px;}
.ha_c00092{height:75.080566px;}
.h28_c00092{height:75.778931px;}
.h3_c00092{height:77.097656px;}
.h7_c00092{height:77.288818px;}
.h9_c00092{height:77.742246px;}
.h6_c00092{height:77.853516px;}
.hc_c00092{height:78.024902px;}
.h5_c00092{height:78.609375px;}
.hb_c00092{height:78.760986px;}
.h4_c00092{height:79.365234px;}
.h8_c00092{height:80.233154px;}
.hd_c00092{height:80.969238px;}
.h2_c00092{height:82.388672px;}
.h1_c00092{height:83.900391px;}
.h0_c00092{height:1263.000000px;}
.w0_c00092{width:892.500000px;}
.x0_c00092{left:0.000000px;}
.x8_c00092{left:138.960120px;}
.x1_c00092{left:140.039400px;}
.x2_c00092{left:175.679700px;}
.xd_c00092{left:205.919535px;}
.x12_c00092{left:253.078785px;}
.x16_c00092{left:258.838515px;}
.x13_c00092{left:274.678500px;}
.x17_c00092{left:277.918350px;}
.x18_c00092{left:308.878350px;}
.x3_c00092{left:322.918950px;}
.x24_c00092{left:332.279250px;}
.x4_c00092{left:338.399850px;}
.x5_c00092{left:358.199850px;}
.x19_c00092{left:373.679100px;}
.x25_c00092{left:374.758500px;}
.x1a_c00092{left:404.639100px;}
.x26_c00092{left:425.518665px;}
.x1b_c00092{left:443.519070px;}
.x1c_c00092{left:465.118785px;}
.x9_c00092{left:500.399820px;}
.x1d_c00092{left:506.879520px;}
.xa_c00092{left:520.918350px;}
.x2a_c00092{left:523.798920px;}
.x1e_c00092{left:527.759085px;}
.x27_c00092{left:529.919535px;}
.x28_c00092{left:537.119385px;}
.x6_c00092{left:542.878920px;}
.x7_c00092{left:567.359250px;}
.x14_c00092{left:577.078770px;}
.x15_c00092{left:592.198785px;}
.xb_c00092{left:610.558635px;}
.x1f_c00092{left:611.998950px;}
.x20_c00092{left:624.599070px;}
.x21_c00092{left:650.158770px;}
.x22_c00092{left:681.118785px;}
.xe_c00092{left:687.239220px;}
.x29_c00092{left:700.198785px;}
.xf_c00092{left:705.599070px;}
.xc_c00092{left:708.118785px;}
.x23_c00092{left:725.399235px;}
.x10_c00092{left:748.798560px;}
.x11_c00092{left:768.239220px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls11_c00092{letter-spacing:-6.734700pt;}
.ls23_c00092{letter-spacing:-6.499567pt;}
.ls13_c00092{letter-spacing:-5.383000pt;}
.ls10_c00092{letter-spacing:-4.711700pt;}
.lsf_c00092{letter-spacing:-4.664473pt;}
.ls5_c00092{letter-spacing:-4.575307pt;}
.lsc_c00092{letter-spacing:-4.038300pt;}
.lse_c00092{letter-spacing:-3.367000pt;}
.ls32_c00092{letter-spacing:-3.207600pt;}
.lsb_c00092{letter-spacing:-2.695000pt;}
.ls4_c00092{letter-spacing:-2.590800pt;}
.ls27_c00092{letter-spacing:-2.017800pt;}
.ls9_c00092{letter-spacing:-2.015300pt;}
.ls7_c00092{letter-spacing:-1.944120pt;}
.ls8_c00092{letter-spacing:-1.360287pt;}
.lsa_c00092{letter-spacing:-1.344000pt;}
.ls6_c00092{letter-spacing:-1.292000pt;}
.ls2_c00092{letter-spacing:-0.725940pt;}
.ls1e_c00092{letter-spacing:-0.715867pt;}
.ls1_c00092{letter-spacing:-0.703740pt;}
.lsd_c00092{letter-spacing:-0.672000pt;}
.ls1a_c00092{letter-spacing:-0.552740pt;}
.ls30_c00092{letter-spacing:-0.499200pt;}
.ls1f_c00092{letter-spacing:-0.322667pt;}
.ls3_c00092{letter-spacing:0.000000pt;}
.ls2e_c00092{letter-spacing:0.397067pt;}
.ls2c_c00092{letter-spacing:0.414027pt;}
.ls12_c00092{letter-spacing:0.666400pt;}
.ls22_c00092{letter-spacing:0.672000pt;}
.ls26_c00092{letter-spacing:1.333867pt;}
.ls2a_c00092{letter-spacing:1.353793pt;}
.ls14_c00092{letter-spacing:1.469867pt;}
.ls29_c00092{letter-spacing:1.533333pt;}
.ls17_c00092{letter-spacing:2.899600pt;}
.ls1c_c00092{letter-spacing:3.316133pt;}
.ls2f_c00092{letter-spacing:3.765400pt;}
.ls21_c00092{letter-spacing:5.200000pt;}
.ls16_c00092{letter-spacing:7.110400pt;}
.ls20_c00092{letter-spacing:7.137260pt;}
.ls24_c00092{letter-spacing:7.195867pt;}
.ls0_c00092{letter-spacing:8.156460pt;}
.ls18_c00092{letter-spacing:8.373600pt;}
.ls19_c00092{letter-spacing:10.299733pt;}
.ls31_c00092{letter-spacing:12.960533pt;}
.ls1b_c00092{letter-spacing:14.234400pt;}
.ls1d_c00092{letter-spacing:14.736000pt;}
.ls15_c00092{letter-spacing:15.908040pt;}
.ls2b_c00092{letter-spacing:17.553480pt;}
.ls25_c00092{letter-spacing:18.243467pt;}
.ls2d_c00092{letter-spacing:20.056140pt;}
.ls28_c00092{letter-spacing:22.776867pt;}
.ws0_c00092{word-spacing:0.000000pt;}
._1a_c00092{margin-left:-11.591529pt;}
._13_c00092{margin-left:-7.274659pt;}
._a_c00092{margin-left:-5.998462pt;}
._2_c00092{margin-left:-4.304620pt;}
._8_c00092{margin-left:-3.066431pt;}
._6_c00092{margin-left:-1.588926pt;}
._5_c00092{width:1.275234pt;}
._4_c00092{width:2.581712pt;}
._0_c00092{width:3.483088pt;}
._3_c00092{width:5.181380pt;}
._b_c00092{width:6.370862pt;}
._9_c00092{width:7.515033pt;}
._1_c00092{width:9.050968pt;}
._7_c00092{width:9.952008pt;}
._c_c00092{width:10.863610pt;}
._d_c00092{width:11.797544pt;}
._e_c00092{width:13.441292pt;}
._10_c00092{width:14.840915pt;}
._14_c00092{width:15.782265pt;}
._11_c00092{width:16.886046pt;}
._f_c00092{width:17.918685pt;}
._21_c00092{width:18.822740pt;}
._12_c00092{width:19.838013pt;}
._15_c00092{width:21.312376pt;}
._20_c00092{width:22.482017pt;}
._22_c00092{width:23.539109pt;}
._16_c00092{width:25.147177pt;}
._1f_c00092{width:26.955169pt;}
._17_c00092{width:27.973467pt;}
._19_c00092{width:29.598271pt;}
._1b_c00092{width:31.449492pt;}
._1c_c00092{width:33.340946pt;}
._18_c00092{width:35.280054pt;}
._1d_c00092{width:36.826829pt;}
._1e_c00092{width:39.527977pt;}
.fsd_c00092{font-size:19.333333pt;}
.fsb_c00092{font-size:21.333333pt;}
.fs11_c00092{font-size:22.000000pt;}
.fse_c00092{font-size:22.666667pt;}
.fs1d_c00092{font-size:24.000000pt;}
.fs1e_c00092{font-size:25.333333pt;}
.fs13_c00092{font-size:26.000000pt;}
.fs10_c00092{font-size:26.666667pt;}
.fs17_c00092{font-size:27.333333pt;}
.fs19_c00092{font-size:28.000000pt;}
.fs16_c00092{font-size:28.666667pt;}
.fs1a_c00092{font-size:34.666667pt;}
.fsa_c00092{font-size:36.000000pt;}
.fsf_c00092{font-size:37.333333pt;}
.fs1b_c00092{font-size:38.000000pt;}
.fs15_c00092{font-size:38.666667pt;}
.fs12_c00092{font-size:39.333333pt;}
.fsc_c00092{font-size:40.000000pt;}
.fs18_c00092{font-size:40.666667pt;}
.fs14_c00092{font-size:43.333333pt;}
.fs1c_c00092{font-size:44.666667pt;}
.fs2_c00092{font-size:68.000000pt;}
.fs5_c00092{font-size:68.666667pt;}
.fs4_c00092{font-size:69.333333pt;}
.fs3_c00092{font-size:70.000000pt;}
.fs6_c00092{font-size:70.410667pt;}
.fs8_c00092{font-size:70.666667pt;}
.fs7_c00092{font-size:71.333333pt;}
.fs1_c00092{font-size:72.666667pt;}
.fs9_c00092{font-size:73.333333pt;}
.fs0_c00092{font-size:74.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y22_c00092{bottom:164.479773pt;}
.y23_c00092{bottom:164.480000pt;}
.y21_c00092{bottom:190.719360pt;}
.y20_c00092{bottom:243.520307pt;}
.y1f_c00092{bottom:270.400227pt;}
.y1e_c00092{bottom:296.959987pt;}
.y1d_c00092{bottom:323.519733pt;}
.y1c_c00092{bottom:349.759320pt;}
.y1b_c00092{bottom:376.639200pt;}
.y1a_c00092{bottom:381.439453pt;}
.y19_c00092{bottom:402.559573pt;}
.y18_c00092{bottom:402.561813pt;}
.y17_c00092{bottom:429.760293pt;}
.y16_c00092{bottom:456.320053pt;}
.y15_c00092{bottom:483.199973pt;}
.y13_c00092{bottom:509.759120pt;}
.y14_c00092{bottom:509.759720pt;}
.y11_c00092{bottom:535.679707pt;}
.y12_c00092{bottom:535.680133pt;}
.y10_c00092{bottom:588.479040pt;}
.yf_c00092{bottom:641.279627pt;}
.ye_c00092{bottom:668.479987pt;}
.yd_c00092{bottom:668.480347pt;}
.yc_c00092{bottom:694.719933pt;}
.yb_c00092{bottom:721.279680pt;}
.ya_c00092{bottom:747.839440pt;}
.y8_c00092{bottom:774.078893pt;}
.y9_c00092{bottom:774.079027pt;}
.y7_c00092{bottom:801.279253pt;}
.y6_c00092{bottom:827.200280pt;}
.y5_c00092{bottom:853.760027pt;}
.y4_c00092{bottom:880.319787pt;}
.y3_c00092{bottom:907.199707pt;}
.y2_c00092{bottom:960.000000pt;}
.y1_c00092{bottom:1012.479413pt;}
.h11_c00092{height:20.164062pt;}
.h15_c00092{height:21.742187pt;}
.hf_c00092{height:22.250000pt;}
.h25_c00092{height:23.554688pt;}
.h12_c00092{height:23.640625pt;}
.h26_c00092{height:24.863281pt;}
.h22_c00092{height:25.517578pt;}
.h1d_c00092{height:26.171875pt;}
.h1b_c00092{height:26.826172pt;}
.h17_c00092{height:27.117188pt;}
.h1f_c00092{height:27.480469pt;}
.h14_c00092{height:27.812500pt;}
.h1a_c00092{height:28.134766pt;}
.h27_c00092{height:35.332031pt;}
.h21_c00092{height:36.156250pt;}
.h20_c00092{height:36.640625pt;}
.h23_c00092{height:37.294922pt;}
.he_c00092{height:37.546875pt;}
.h19_c00092{height:37.949219pt;}
.h1c_c00092{height:38.603516pt;}
.h13_c00092{height:38.937500pt;}
.h10_c00092{height:39.531250pt;}
.h1e_c00092{height:39.912109pt;}
.h16_c00092{height:41.023438pt;}
.h18_c00092{height:42.825521pt;}
.h24_c00092{height:43.837891pt;}
.ha_c00092{height:66.738281pt;}
.h28_c00092{height:67.359049pt;}
.h3_c00092{height:68.531250pt;}
.h7_c00092{height:68.701172pt;}
.h9_c00092{height:69.104219pt;}
.h6_c00092{height:69.203125pt;}
.hc_c00092{height:69.355469pt;}
.h5_c00092{height:69.875000pt;}
.hb_c00092{height:70.009766pt;}
.h4_c00092{height:70.546875pt;}
.h8_c00092{height:71.318359pt;}
.hd_c00092{height:71.972656pt;}
.h2_c00092{height:73.234375pt;}
.h1_c00092{height:74.578125pt;}
.h0_c00092{height:1122.666667pt;}
.w0_c00092{width:793.333333pt;}
.x0_c00092{left:0.000000pt;}
.x8_c00092{left:123.520107pt;}
.x1_c00092{left:124.479467pt;}
.x2_c00092{left:156.159733pt;}
.xd_c00092{left:183.039587pt;}
.x12_c00092{left:224.958920pt;}
.x16_c00092{left:230.078680pt;}
.x13_c00092{left:244.158667pt;}
.x17_c00092{left:247.038533pt;}
.x18_c00092{left:274.558533pt;}
.x3_c00092{left:287.039067pt;}
.x24_c00092{left:295.359333pt;}
.x4_c00092{left:300.799867pt;}
.x5_c00092{left:318.399867pt;}
.x19_c00092{left:332.159200pt;}
.x25_c00092{left:333.118667pt;}
.x1a_c00092{left:359.679200pt;}
.x26_c00092{left:378.238813pt;}
.x1b_c00092{left:394.239173pt;}
.x1c_c00092{left:413.438920pt;}
.x9_c00092{left:444.799840pt;}
.x1d_c00092{left:450.559573pt;}
.xa_c00092{left:463.038533pt;}
.x2a_c00092{left:465.599040pt;}
.x1e_c00092{left:469.119187pt;}
.x27_c00092{left:471.039587pt;}
.x28_c00092{left:477.439453pt;}
.x6_c00092{left:482.559040pt;}
.x7_c00092{left:504.319333pt;}
.x14_c00092{left:512.958907pt;}
.x15_c00092{left:526.398920pt;}
.xb_c00092{left:542.718787pt;}
.x1f_c00092{left:543.999067pt;}
.x20_c00092{left:555.199173pt;}
.x21_c00092{left:577.918907pt;}
.x22_c00092{left:605.438920pt;}
.xe_c00092{left:610.879307pt;}
.x29_c00092{left:622.398920pt;}
.xf_c00092{left:627.199173pt;}
.xc_c00092{left:629.438920pt;}
.x23_c00092{left:644.799320pt;}
.x10_c00092{left:665.598720pt;}
.x11_c00092{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e61f299a7ec0d7662d8eec98.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.364746;font-style:normal;font-weight:normal;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_7eb87fbe0fa24c308a2ed19c.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_c95c2a9822000c0ae2b77a14.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_d0836bb0d562beba89c970f5.woff2')format("woff");}.ff5_c00093{font-family:ff5_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;}
.m10_c00093{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m7_c00093{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m6_c00093{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m11_c00093{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls6_c00093{letter-spacing:-12.226305px;}
.lsa_c00093{letter-spacing:-8.914500px;}
.ls13_c00093{letter-spacing:-6.781500px;}
.ls7_c00093{letter-spacing:-5.945625px;}
.ls9_c00093{letter-spacing:-5.196713px;}
.ls11_c00093{letter-spacing:-4.753575px;}
.ls8_c00093{letter-spacing:-4.456463px;}
.ls0_c00093{letter-spacing:-3.717000px;}
.ls5_c00093{letter-spacing:-2.968875px;}
.ls15_c00093{letter-spacing:-2.719500px;}
.ls10_c00093{letter-spacing:-2.479725px;}
.ls1_c00093{letter-spacing:-2.229413px;}
.ls14_c00093{letter-spacing:-2.125463px;}
.ls3_c00093{letter-spacing:-1.489163px;}
.ls4_c00093{letter-spacing:-0.740250px;}
.ls12_c00093{letter-spacing:-0.719100px;}
.ls2_c00093{letter-spacing:0.000000px;}
.lse_c00093{letter-spacing:2.945250px;}
.lsd_c00093{letter-spacing:7.499250px;}
.lsb_c00093{letter-spacing:11.805750px;}
.lsc_c00093{letter-spacing:21.685680px;}
.lsf_c00093{letter-spacing:24.937673px;}
.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;}
._13_c00093{margin-left:-12.514905px;}
._14_c00093{margin-left:-9.446107px;}
._b_c00093{margin-left:-7.899071px;}
._a_c00093{margin-left:-5.843131px;}
._9_c00093{margin-left:-3.913608px;}
._12_c00093{margin-left:-2.567295px;}
._5_c00093{margin-left:-1.127849px;}
._10_c00093{width:1.164831px;}
._2_c00093{width:2.449036px;}
._11_c00093{width:3.706287px;}
._4_c00093{width:5.502887px;}
._3_c00093{width:7.294865px;}
._1_c00093{width:9.018554px;}
._8_c00093{width:11.652860px;}
._0_c00093{width:13.118858px;}
._6_c00093{width:15.585160px;}
._7_c00093{width:16.752577px;}
._19_c00093{width:17.899489px;}
._c_c00093{width:19.075553px;}
._d_c00093{width:20.817993px;}
._f_c00093{width:24.476510px;}
._1a_c00093{width:25.885392px;}
._16_c00093{width:31.552733px;}
._18_c00093{width:33.828028px;}
._15_c00093{width:36.673489px;}
._e_c00093{width:38.138595px;}
._17_c00093{width:42.104624px;}
.fc0_c00093{color:transparent;}
.fs4_c00093{font-size:72.000000px;}
.fsa_c00093{font-size:73.500000px;}
.fs7_c00093{font-size:75.750000px;}
.fs8_c00093{font-size:76.500000px;}
.fsb_c00093{font-size:77.250000px;}
.fs0_c00093{font-size:78.750000px;}
.fs2_c00093{font-size:79.500000px;}
.fs3_c00093{font-size:80.250000px;}
.fs1_c00093{font-size:82.500000px;}
.fs6_c00093{font-size:83.250000px;}
.fs9_c00093{font-size:84.750000px;}
.fs5_c00093{font-size:87.750000px;}
.y0_c00093{bottom:0.000000px;}
.y1f_c00093{bottom:424.080000px;}
.y1e_c00093{bottom:424.080855px;}
.y1d_c00093{bottom:453.960570px;}
.y1c_c00093{bottom:453.961425px;}
.y1b_c00093{bottom:484.201335px;}
.y19_c00093{bottom:514.080225px;}
.y1a_c00093{bottom:514.081050px;}
.y18_c00093{bottom:544.320150px;}
.y17_c00093{bottom:574.199865px;}
.y16_c00093{bottom:603.721200px;}
.y15_c00093{bottom:603.721350px;}
.y13_c00093{bottom:633.239475px;}
.y14_c00093{bottom:633.240870px;}
.y12_c00093{bottom:692.640540px;}
.y10_c00093{bottom:722.520225px;}
.y11_c00093{bottom:722.520270px;}
.yf_c00093{bottom:752.760135px;}
.ye_c00093{bottom:782.280300px;}
.yd_c00093{bottom:812.880705px;}
.yc_c00093{bottom:842.400240px;}
.yb_c00093{bottom:842.400405px;}
.ya_c00093{bottom:872.280120px;}
.y8_c00093{bottom:931.680885px;}
.y9_c00093{bottom:931.681185px;}
.y7_c00093{bottom:961.560615px;}
.y6_c00093{bottom:992.161005px;}
.y5_c00093{bottom:992.162655px;}
.y4_c00093{bottom:1021.682190px;}
.y3_c00093{bottom:1080.720960px;}
.y2_c00093{bottom:1110.600675px;}
.y1_c00093{bottom:1140.481290px;}
.hf_c00093{height:72.136230px;}
.hb_c00093{height:74.344482px;}
.hc_c00093{height:75.080566px;}
.h6_c00093{height:75.093750px;}
.h1_c00093{height:77.288818px;}
.h10_c00093{height:77.853516px;}
.h3_c00093{height:78.568359px;}
.h4_c00093{height:78.760986px;}
.h5_c00093{height:80.121094px;}
.h9_c00093{height:80.876953px;}
.h7_c00093{height:80.928955px;}
.h2_c00093{height:80.969238px;}
.hd_c00093{height:81.533203px;}
.ha_c00093{height:81.705322px;}
.he_c00093{height:83.177490px;}
.h8_c00093{height:86.121826px;}
.h0_c00093{height:1263.000000px;}
.w0_c00093{width:892.500000px;}
.x0_c00093{left:0.000000px;}
.xc_c00093{left:140.400195px;}
.x5_c00093{left:142.199940px;}
.x1_c00093{left:143.638500px;}
.x4_c00093{left:164.878950px;}
.xd_c00093{left:223.559100px;}
.x8_c00093{left:241.198785px;}
.x9_c00093{left:257.038950px;}
.x24_c00093{left:286.558635px;}
.x25_c00093{left:313.558635px;}
.xe_c00093{left:314.639700px;}
.x1e_c00093{left:334.078785px;}
.x1a_c00093{left:350.279850px;}
.x1f_c00093{left:351.359235px;}
.xf_c00093{left:366.120000px;}
.x10_c00093{left:383.039385px;}
.x1b_c00093{left:384.479685px;}
.x18_c00093{left:412.559100px;}
.x11_c00093{left:428.039985px;}
.x19_c00093{left:431.279850px;}
.x12_c00093{left:444.239220px;}
.x6_c00093{left:472.318770px;}
.x7_c00093{left:486.359250px;}
.x2_c00093{left:492.118785px;}
.x20_c00093{left:500.759085px;}
.x3_c00093{left:508.319820px;}
.x21_c00093{left:515.519670px;}
.x13_c00093{left:525.239220px;}
.x14_c00093{left:557.998950px;}
.x22_c00093{left:587.159370px;}
.x23_c00093{left:600.838950px;}
.x15_c00093{left:616.319820px;}
.x1c_c00093{left:629.638545px;}
.x1d_c00093{left:642.958920px;}
.x16_c00093{left:650.878920px;}
.x17_c00093{left:667.439250px;}
.xa_c00093{left:696.599670px;}
.xb_c00093{left:712.078770px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls6_c00093{letter-spacing:-10.867827pt;}
.lsa_c00093{letter-spacing:-7.924000pt;}
.ls13_c00093{letter-spacing:-6.028000pt;}
.ls7_c00093{letter-spacing:-5.285000pt;}
.ls9_c00093{letter-spacing:-4.619300pt;}
.ls11_c00093{letter-spacing:-4.225400pt;}
.ls8_c00093{letter-spacing:-3.961300pt;}
.ls0_c00093{letter-spacing:-3.304000pt;}
.ls5_c00093{letter-spacing:-2.639000pt;}
.ls15_c00093{letter-spacing:-2.417333pt;}
.ls10_c00093{letter-spacing:-2.204200pt;}
.ls1_c00093{letter-spacing:-1.981700pt;}
.ls14_c00093{letter-spacing:-1.889300pt;}
.ls3_c00093{letter-spacing:-1.323700pt;}
.ls4_c00093{letter-spacing:-0.658000pt;}
.ls12_c00093{letter-spacing:-0.639200pt;}
.ls2_c00093{letter-spacing:0.000000pt;}
.lse_c00093{letter-spacing:2.618000pt;}
.lsd_c00093{letter-spacing:6.666000pt;}
.lsb_c00093{letter-spacing:10.494000pt;}
.lsc_c00093{letter-spacing:19.276160pt;}
.lsf_c00093{letter-spacing:22.166820pt;}
.ws0_c00093{word-spacing:0.000000pt;}
._13_c00093{margin-left:-11.124360pt;}
._14_c00093{margin-left:-8.396540pt;}
._b_c00093{margin-left:-7.021396pt;}
._a_c00093{margin-left:-5.193894pt;}
._9_c00093{margin-left:-3.478762pt;}
._12_c00093{margin-left:-2.282040pt;}
._5_c00093{margin-left:-1.002532pt;}
._10_c00093{width:1.035406pt;}
._2_c00093{width:2.176921pt;}
._11_c00093{width:3.294477pt;}
._4_c00093{width:4.891455pt;}
._3_c00093{width:6.484325pt;}
._1_c00093{width:8.016492pt;}
._8_c00093{width:10.358098pt;}
._0_c00093{width:11.661208pt;}
._6_c00093{width:13.853475pt;}
._7_c00093{width:14.891179pt;}
._19_c00093{width:15.910657pt;}
._c_c00093{width:16.956047pt;}
._d_c00093{width:18.504883pt;}
._f_c00093{width:21.756898pt;}
._1a_c00093{width:23.009238pt;}
._16_c00093{width:28.046874pt;}
._18_c00093{width:30.069358pt;}
._15_c00093{width:32.598657pt;}
._e_c00093{width:33.900974pt;}
._17_c00093{width:37.426332pt;}
.fs4_c00093{font-size:64.000000pt;}
.fsa_c00093{font-size:65.333333pt;}
.fs7_c00093{font-size:67.333333pt;}
.fs8_c00093{font-size:68.000000pt;}
.fsb_c00093{font-size:68.666667pt;}
.fs0_c00093{font-size:70.000000pt;}
.fs2_c00093{font-size:70.666667pt;}
.fs3_c00093{font-size:71.333333pt;}
.fs1_c00093{font-size:73.333333pt;}
.fs6_c00093{font-size:74.000000pt;}
.fs9_c00093{font-size:75.333333pt;}
.fs5_c00093{font-size:78.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y1f_c00093{bottom:376.960000pt;}
.y1e_c00093{bottom:376.960760pt;}
.y1d_c00093{bottom:403.520507pt;}
.y1c_c00093{bottom:403.521267pt;}
.y1b_c00093{bottom:430.401187pt;}
.y19_c00093{bottom:456.960200pt;}
.y1a_c00093{bottom:456.960933pt;}
.y18_c00093{bottom:483.840133pt;}
.y17_c00093{bottom:510.399880pt;}
.y16_c00093{bottom:536.641067pt;}
.y15_c00093{bottom:536.641200pt;}
.y13_c00093{bottom:562.879533pt;}
.y14_c00093{bottom:562.880773pt;}
.y12_c00093{bottom:615.680480pt;}
.y10_c00093{bottom:642.240200pt;}
.y11_c00093{bottom:642.240240pt;}
.yf_c00093{bottom:669.120120pt;}
.ye_c00093{bottom:695.360267pt;}
.yd_c00093{bottom:722.560627pt;}
.yc_c00093{bottom:748.800213pt;}
.yb_c00093{bottom:748.800360pt;}
.ya_c00093{bottom:775.360107pt;}
.y8_c00093{bottom:828.160787pt;}
.y9_c00093{bottom:828.161053pt;}
.y7_c00093{bottom:854.720547pt;}
.y6_c00093{bottom:881.920893pt;}
.y5_c00093{bottom:881.922360pt;}
.y4_c00093{bottom:908.161947pt;}
.y3_c00093{bottom:960.640853pt;}
.y2_c00093{bottom:987.200600pt;}
.y1_c00093{bottom:1013.761147pt;}
.hf_c00093{height:64.121094pt;}
.hb_c00093{height:66.083984pt;}
.hc_c00093{height:66.738281pt;}
.h6_c00093{height:66.750000pt;}
.h1_c00093{height:68.701172pt;}
.h10_c00093{height:69.203125pt;}
.h3_c00093{height:69.838542pt;}
.h4_c00093{height:70.009766pt;}
.h5_c00093{height:71.218750pt;}
.h9_c00093{height:71.890625pt;}
.h7_c00093{height:71.936849pt;}
.h2_c00093{height:71.972656pt;}
.hd_c00093{height:72.473958pt;}
.ha_c00093{height:72.626953pt;}
.he_c00093{height:73.935547pt;}
.h8_c00093{height:76.552734pt;}
.h0_c00093{height:1122.666667pt;}
.w0_c00093{width:793.333333pt;}
.x0_c00093{left:0.000000pt;}
.xc_c00093{left:124.800173pt;}
.x5_c00093{left:126.399947pt;}
.x1_c00093{left:127.678667pt;}
.x4_c00093{left:146.559067pt;}
.xd_c00093{left:198.719200pt;}
.x8_c00093{left:214.398920pt;}
.x9_c00093{left:228.479067pt;}
.x24_c00093{left:254.718787pt;}
.x25_c00093{left:278.718787pt;}
.xe_c00093{left:279.679733pt;}
.x1e_c00093{left:296.958920pt;}
.x1a_c00093{left:311.359867pt;}
.x1f_c00093{left:312.319320pt;}
.xf_c00093{left:325.440000pt;}
.x10_c00093{left:340.479453pt;}
.x1b_c00093{left:341.759720pt;}
.x18_c00093{left:366.719200pt;}
.x11_c00093{left:380.479987pt;}
.x19_c00093{left:383.359867pt;}
.x12_c00093{left:394.879307pt;}
.x6_c00093{left:419.838907pt;}
.x7_c00093{left:432.319333pt;}
.x2_c00093{left:437.438920pt;}
.x20_c00093{left:445.119187pt;}
.x3_c00093{left:451.839840pt;}
.x21_c00093{left:458.239707pt;}
.x13_c00093{left:466.879307pt;}
.x14_c00093{left:495.999067pt;}
.x22_c00093{left:521.919440pt;}
.x23_c00093{left:534.079067pt;}
.x15_c00093{left:547.839840pt;}
.x1c_c00093{left:559.678707pt;}
.x1d_c00093{left:571.519040pt;}
.x16_c00093{left:578.559040pt;}
.x17_c00093{left:593.279333pt;}
.xa_c00093{left:619.199707pt;}
.xb_c00093{left:632.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68f007df5a35e256b0db468b.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.311035;font-style:normal;font-weight:normal;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_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_c2abd09f7aaaa882fdcf6ab8.woff2')format("woff");}.ff3_c00094{font-family:ff3_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:ff4_c00094;src:url('chunks/assets/font_31a316a6d74121a9bbfafa6a.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.364746;font-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_c00094{transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m9_c00094{transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls9_c00094{letter-spacing:-12.558000px;}
.ls2_c00094{letter-spacing:-4.629075px;}
.ls0_c00094{letter-spacing:-3.785025px;}
.ls4_c00094{letter-spacing:-3.113700px;}
.ls5_c00094{letter-spacing:-2.335275px;}
.ls7_c00094{letter-spacing:-1.683000px;}
.ls8_c00094{letter-spacing:-1.665000px;}
.ls3_c00094{letter-spacing:-1.649183px;}
.ls1_c00094{letter-spacing:0.000000px;}
.ls6_c00094{letter-spacing:1.567500px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:0.000000px;}
._0_c00094{width:10.938278px;}
.fc0_c00094{color:transparent;}
.fs5_c00094{font-size:76.500000px;}
.fs4_c00094{font-size:80.250000px;}
.fs1_c00094{font-size:81.000000px;}
.fs0_c00094{font-size:81.750000px;}
.fs2_c00094{font-size:82.500000px;}
.fs3_c00094{font-size:83.250000px;}
.fs6_c00094{font-size:86.250000px;}
.y0_c00094{bottom:0.000000px;}
.y2_c00094{bottom:531.359850px;}
.y1_c00094{bottom:1190.519715px;}
.h6_c00094{height:79.787109px;}
.h5_c00094{height:80.876953px;}
.h7_c00094{height:80.969238px;}
.h2_c00094{height:81.632812px;}
.h1_c00094{height:82.388672px;}
.h3_c00094{height:83.144531px;}
.h4_c00094{height:83.900391px;}
.h8_c00094{height:85.239258px;}
.h0_c00094{height:1263.000000px;}
.w0_c00094{width:892.500000px;}
.x0_c00094{left:0.000000px;}
.x7_c00094{left:177.479250px;}
.x1_c00094{left:183.958950px;}
.x8_c00094{left:240.839535px;}
.x2_c00094{left:243.718500px;}
.x3_c00094{left:273.239850px;}
.x9_c00094{left:311.038950px;}
.xa_c00094{left:326.878950px;}
.x4_c00094{left:351.718500px;}
.x5_c00094{left:376.198785px;}
.xb_c00094{left:392.399820px;}
.x6_c00094{left:446.759085px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls9_c00094{letter-spacing:-11.162667pt;}
.ls2_c00094{letter-spacing:-4.114733pt;}
.ls0_c00094{letter-spacing:-3.364467pt;}
.ls4_c00094{letter-spacing:-2.767733pt;}
.ls5_c00094{letter-spacing:-2.075800pt;}
.ls7_c00094{letter-spacing:-1.496000pt;}
.ls8_c00094{letter-spacing:-1.480000pt;}
.ls3_c00094{letter-spacing:-1.465940pt;}
.ls1_c00094{letter-spacing:0.000000pt;}
.ls6_c00094{letter-spacing:1.393333pt;}
.ws0_c00094{word-spacing:0.000000pt;}
._0_c00094{width:9.722913pt;}
.fs5_c00094{font-size:68.000000pt;}
.fs4_c00094{font-size:71.333333pt;}
.fs1_c00094{font-size:72.000000pt;}
.fs0_c00094{font-size:72.666667pt;}
.fs2_c00094{font-size:73.333333pt;}
.fs3_c00094{font-size:74.000000pt;}
.fs6_c00094{font-size:76.666667pt;}
.y0_c00094{bottom:0.000000pt;}
.y2_c00094{bottom:472.319867pt;}
.y1_c00094{bottom:1058.239747pt;}
.h6_c00094{height:70.921875pt;}
.h5_c00094{height:71.890625pt;}
.h7_c00094{height:71.972656pt;}
.h2_c00094{height:72.562500pt;}
.h1_c00094{height:73.234375pt;}
.h3_c00094{height:73.906250pt;}
.h4_c00094{height:74.578125pt;}
.h8_c00094{height:75.768229pt;}
.h0_c00094{height:1122.666667pt;}
.w0_c00094{width:793.333333pt;}
.x0_c00094{left:0.000000pt;}
.x7_c00094{left:157.759333pt;}
.x1_c00094{left:163.519067pt;}
.x8_c00094{left:214.079587pt;}
.x2_c00094{left:216.638667pt;}
.x3_c00094{left:242.879867pt;}
.x9_c00094{left:276.479067pt;}
.xa_c00094{left:290.559067pt;}
.x4_c00094{left:312.638667pt;}
.x5_c00094{left:334.398920pt;}
.xb_c00094{left:348.799840pt;}
.x6_c00094{left:397.119187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66db1cbf2ff6a7a666a00250.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_7a8e47c072767ef5aa5a2f14.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_baab7c82e51a3deadbf79169.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_f9224de91be0837b8de98428.woff2')format("woff");}.ff4_c00095{font-family:ff4_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:ff5_c00095;src:url('chunks/assets/font_0dcbf39823fd17d57954715c.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.364746;font-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_c00095{transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188119,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.lsc_c00095{letter-spacing:-19.233375px;}
.lsf_c00095{letter-spacing:-15.458400px;}
.ls13_c00095{letter-spacing:-8.968043px;}
.ls9_c00095{letter-spacing:-7.740600px;}
.ls4_c00095{letter-spacing:-6.511875px;}
.lsb_c00095{letter-spacing:-5.792325px;}
.lsd_c00095{letter-spacing:-5.552775px;}
.ls7_c00095{letter-spacing:-4.083750px;}
.ls1_c00095{letter-spacing:-4.035600px;}
.lse_c00095{letter-spacing:-3.786375px;}
.ls12_c00095{letter-spacing:-3.747750px;}
.ls5_c00095{letter-spacing:-3.696600px;}
.ls3_c00095{letter-spacing:-3.209198px;}
.ls6_c00095{letter-spacing:-2.407500px;}
.ls0_c00095{letter-spacing:-1.716000px;}
.ls2_c00095{letter-spacing:-1.605000px;}
.ls8_c00095{letter-spacing:0.000000px;}
.ls10_c00095{letter-spacing:1.683000px;}
.ls11_c00095{letter-spacing:6.559875px;}
.lsa_c00095{letter-spacing:14.444198px;}
.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;}
._6_c00095{width:2.022557px;}
._0_c00095{width:3.306236px;}
._4_c00095{width:7.943723px;}
._5_c00095{width:9.665856px;}
._3_c00095{width:10.751092px;}
._2_c00095{width:11.852540px;}
._1_c00095{width:57.744529px;}
.fc0_c00095{color:transparent;}
.fsa_c00095{font-size:71.250000px;}
.fs5_c00095{font-size:72.750000px;}
.fs4_c00095{font-size:75.750000px;}
.fs9_c00095{font-size:78.750000px;}
.fs2_c00095{font-size:80.250000px;}
.fs6_c00095{font-size:81.750000px;}
.fs0_c00095{font-size:82.500000px;}
.fs8_c00095{font-size:83.250000px;}
.fs1_c00095{font-size:85.500000px;}
.fs3_c00095{font-size:86.250000px;}
.fs7_c00095{font-size:89.250000px;}
.y0_c00095{bottom:0.000000px;}
.y7_c00095{bottom:102.958950px;}
.y5_c00095{bottom:199.078785px;}
.y6_c00095{bottom:199.439685px;}
.y3_c00095{bottom:241.198785px;}
.y4_c00095{bottom:241.559685px;}
.y2_c00095{bottom:284.038950px;}
.y1_c00095{bottom:320.399235px;}
.hd_c00095{height:74.311523px;}
.h6_c00095{height:75.875977px;}
.h5_c00095{height:79.004883px;}
.hc_c00095{height:79.365234px;}
.h3_c00095{height:80.876953px;}
.h7_c00095{height:82.388672px;}
.h1_c00095{height:83.144531px;}
.h9_c00095{height:83.900391px;}
.hb_c00095{height:84.498047px;}
.ha_c00095{height:84.649658px;}
.h2_c00095{height:86.167969px;}
.h4_c00095{height:86.923828px;}
.h8_c00095{height:88.204102px;}
.h0_c00095{height:1263.000000px;}
.w0_c00095{width:892.500000px;}
.x0_c00095{left:0.000000px;}
.x9_c00095{left:111.958350px;}
.x6_c00095{left:113.039400px;}
.x1_c00095{left:116.279250px;}
.xd_c00095{left:124.919565px;}
.xa_c00095{left:166.678500px;}
.x2_c00095{left:167.759565px;}
.x3_c00095{left:245.878950px;}
.xe_c00095{left:254.878350px;}
.xf_c00095{left:277.918350px;}
.xb_c00095{left:280.439685px;}
.x10_c00095{left:311.038950px;}
.x4_c00095{left:329.039385px;}
.xc_c00095{left:337.318800px;}
.x11_c00095{left:352.438635px;}
.x5_c00095{left:385.918350px;}
.x7_c00095{left:388.439715px;}
.x8_c00095{left:403.918950px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.lsc_c00095{letter-spacing:-17.096333pt;}
.lsf_c00095{letter-spacing:-13.740800pt;}
.ls13_c00095{letter-spacing:-7.971593pt;}
.ls9_c00095{letter-spacing:-6.880533pt;}
.ls4_c00095{letter-spacing:-5.788333pt;}
.lsb_c00095{letter-spacing:-5.148733pt;}
.lsd_c00095{letter-spacing:-4.935800pt;}
.ls7_c00095{letter-spacing:-3.630000pt;}
.ls1_c00095{letter-spacing:-3.587200pt;}
.lse_c00095{letter-spacing:-3.365667pt;}
.ls12_c00095{letter-spacing:-3.331333pt;}
.ls5_c00095{letter-spacing:-3.285867pt;}
.ls3_c00095{letter-spacing:-2.852620pt;}
.ls6_c00095{letter-spacing:-2.140000pt;}
.ls0_c00095{letter-spacing:-1.525333pt;}
.ls2_c00095{letter-spacing:-1.426667pt;}
.ls8_c00095{letter-spacing:0.000000pt;}
.ls10_c00095{letter-spacing:1.496000pt;}
.ls11_c00095{letter-spacing:5.831000pt;}
.lsa_c00095{letter-spacing:12.839287pt;}
.ws0_c00095{word-spacing:0.000000pt;}
._6_c00095{width:1.797828pt;}
._0_c00095{width:2.938876pt;}
._4_c00095{width:7.061087pt;}
._5_c00095{width:8.591872pt;}
._3_c00095{width:9.556527pt;}
._2_c00095{width:10.535591pt;}
._1_c00095{width:51.328471pt;}
.fsa_c00095{font-size:63.333333pt;}
.fs5_c00095{font-size:64.666667pt;}
.fs4_c00095{font-size:67.333333pt;}
.fs9_c00095{font-size:70.000000pt;}
.fs2_c00095{font-size:71.333333pt;}
.fs6_c00095{font-size:72.666667pt;}
.fs0_c00095{font-size:73.333333pt;}
.fs8_c00095{font-size:74.000000pt;}
.fs1_c00095{font-size:76.000000pt;}
.fs3_c00095{font-size:76.666667pt;}
.fs7_c00095{font-size:79.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y7_c00095{bottom:91.519067pt;}
.y5_c00095{bottom:176.958920pt;}
.y6_c00095{bottom:177.279720pt;}
.y3_c00095{bottom:214.398920pt;}
.y4_c00095{bottom:214.719720pt;}
.y2_c00095{bottom:252.479067pt;}
.y1_c00095{bottom:284.799320pt;}
.hd_c00095{height:66.054688pt;}
.h6_c00095{height:67.445312pt;}
.h5_c00095{height:70.226562pt;}
.hc_c00095{height:70.546875pt;}
.h3_c00095{height:71.890625pt;}
.h7_c00095{height:73.234375pt;}
.h1_c00095{height:73.906250pt;}
.h9_c00095{height:74.578125pt;}
.hb_c00095{height:75.109375pt;}
.ha_c00095{height:75.244141pt;}
.h2_c00095{height:76.593750pt;}
.h4_c00095{height:77.265625pt;}
.h8_c00095{height:78.403646pt;}
.h0_c00095{height:1122.666667pt;}
.w0_c00095{width:793.333333pt;}
.x0_c00095{left:0.000000pt;}
.x9_c00095{left:99.518533pt;}
.x6_c00095{left:100.479467pt;}
.x1_c00095{left:103.359333pt;}
.xd_c00095{left:111.039613pt;}
.xa_c00095{left:148.158667pt;}
.x2_c00095{left:149.119613pt;}
.x3_c00095{left:218.559067pt;}
.xe_c00095{left:226.558533pt;}
.xf_c00095{left:247.038533pt;}
.xb_c00095{left:249.279720pt;}
.x10_c00095{left:276.479067pt;}
.x4_c00095{left:292.479453pt;}
.xc_c00095{left:299.838933pt;}
.x11_c00095{left:313.278787pt;}
.x5_c00095{left:343.038533pt;}
.x7_c00095{left:345.279747pt;}
.x8_c00095{left:359.039067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e423ed3d43186e9f2ee58d69.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_622fa36a982c3c3316f4a52d.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_5abc7be5b9d94e3b75cdf06e.woff2')format("woff");}.ff3_c00096{font-family:ff3_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:ff4_c00096;src:url('chunks/assets/font_6173c1dcca9d9f8ef1afc7c3.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_4e8756d41c682eeb2dbfe668.woff2')format("woff");}.ff5_c00096{font-family:ff5_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:ff6_c00096;src:url('chunks/assets/font_dff5a5467767ea5b2cb1c766.woff2')format("woff");}.ff6_c00096{font-family:ff6_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;}
@font-face{font-family:ff7_c00096;src:url('chunks/assets/font_6abab93fdef27ec37d98db4f.woff2')format("woff");}.ff7_c00096{font-family:ff7_c00096;line-height:1.281250;font-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_c00096{transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137255,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);}
.m1b_c00096{transform:matrix(0.176339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176339,0.000000,0.000000,0.250000,0,0);}
.m13_c00096{transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);}
.me_c00096{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.md_c00096{transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);}
.mf_c00096{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_c00096{transform:matrix(0.187861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187861,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m1c_c00096{transform:matrix(0.196078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196078,0.000000,0.000000,0.250000,0,0);}
.m14_c00096{transform:matrix(0.207813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207813,0.000000,0.000000,0.250000,0,0);}
.m18_c00096{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);}
.m17_c00096{transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);}
.m11_c00096{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m19_c00096{transform:matrix(0.230903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230903,0.000000,0.000000,0.250000,0,0);}
.m15_c00096{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m1d_c00096{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00096{transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);}
.m12_c00096{transform:matrix(0.370408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370408,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.653409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653409,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:28.795440px;}
.ls5_c00096{letter-spacing:-67.872225px;}
.lsf_c00096{letter-spacing:-25.955685px;}
.ls9_c00096{letter-spacing:-19.472400px;}
.ls13_c00096{letter-spacing:-12.810038px;}
.ls16_c00096{letter-spacing:-7.926863px;}
.ls10_c00096{letter-spacing:-7.590713px;}
.lsd_c00096{letter-spacing:-7.501410px;}
.ls18_c00096{letter-spacing:-6.747300px;}
.ls6_c00096{letter-spacing:-6.479550px;}
.lse_c00096{letter-spacing:-6.002100px;}
.lsc_c00096{letter-spacing:-5.444175px;}
.ls11_c00096{letter-spacing:-5.248800px;}
.lsa_c00096{letter-spacing:-4.550370px;}
.ls0_c00096{letter-spacing:-4.545300px;}
.lsb_c00096{letter-spacing:-4.503600px;}
.ls14_c00096{letter-spacing:-3.407910px;}
.ls19_c00096{letter-spacing:-3.191160px;}
.ls2_c00096{letter-spacing:-3.118500px;}
.ls17_c00096{letter-spacing:-2.997000px;}
.ls1_c00096{letter-spacing:-2.468693px;}
.ls8_c00096{letter-spacing:-2.312438px;}
.ls1a_c00096{letter-spacing:-2.251800px;}
.ls1b_c00096{letter-spacing:-2.125200px;}
.ls12_c00096{letter-spacing:-2.084978px;}
.ls15_c00096{letter-spacing:-1.692000px;}
.ls3_c00096{letter-spacing:-1.574895px;}
.ls4_c00096{letter-spacing:-1.539000px;}
.ls7_c00096{letter-spacing:0.000000px;}
.ls1c_c00096{letter-spacing:8.606250px;}
.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;}
._7_c00096{width:2.389260px;}
._1_c00096{width:3.831540px;}
._0_c00096{width:5.272680px;}
._3_c00096{width:6.715020px;}
._5_c00096{width:8.067540px;}
._4_c00096{width:10.157880px;}
._8_c00096{width:16.918470px;}
._2_c00096{width:18.360870px;}
._6_c00096{width:688.086720px;}
.fc0_c00096{color:transparent;}
.fsd_c00096{font-size:30.000000px;}
.fs6_c00096{font-size:33.000000px;}
.fs8_c00096{font-size:40.500000px;}
.fsf_c00096{font-size:41.250000px;}
.fsc_c00096{font-size:48.000000px;}
.fsb_c00096{font-size:50.250000px;}
.fs7_c00096{font-size:56.250000px;}
.fs5_c00096{font-size:57.750000px;}
.fs14_c00096{font-size:69.000000px;}
.fs13_c00096{font-size:71.250000px;}
.fs15_c00096{font-size:72.000000px;}
.fs1_c00096{font-size:75.750000px;}
.fse_c00096{font-size:76.500000px;}
.fs11_c00096{font-size:77.250000px;}
.fs1a_c00096{font-size:78.000000px;}
.fs3_c00096{font-size:79.500000px;}
.fs2_c00096{font-size:81.000000px;}
.fs0_c00096{font-size:81.750000px;}
.fs9_c00096{font-size:82.500000px;}
.fs19_c00096{font-size:84.000000px;}
.fs16_c00096{font-size:101.250000px;}
.fs17_c00096{font-size:108.000000px;}
.fs12_c00096{font-size:120.000000px;}
.fs4_c00096{font-size:129.750000px;}
.fs18_c00096{font-size:157.500000px;}
.fsa_c00096{font-size:159.000000px;}
.fs10_c00096{font-size:183.750000px;}
.y0_c00096{bottom:0.000000px;}
.y13_c00096{bottom:136.439205px;}
.y14_c00096{bottom:136.440315px;}
.y12_c00096{bottom:177.119355px;}
.y10_c00096{bottom:195.120435px;}
.y11_c00096{bottom:200.159850px;}
.ye_c00096{bottom:285.840135px;}
.yf_c00096{bottom:293.040000px;}
.yd_c00096{bottom:297.720150px;}
.yc_c00096{bottom:307.080435px;}
.yb_c00096{bottom:419.040570px;}
.ya_c00096{bottom:419.041350px;}
.y4_c00096{bottom:456.480285px;}
.y9_c00096{bottom:457.200435px;}
.y3_c00096{bottom:458.279850px;}
.y2_c00096{bottom:467.640150px;}
.y6_c00096{bottom:504.000600px;}
.y5_c00096{bottom:564.119385px;}
.y8_c00096{bottom:579.600135px;}
.y7_c00096{bottom:586.800150px;}
.y1_c00096{bottom:1237.679070px;}
.he_c00096{height:31.289062px;}
.h7_c00096{height:34.417969px;}
.h9_c00096{height:40.025391px;}
.h10_c00096{height:40.766602px;}
.hd_c00096{height:50.062500px;}
.hc_c00096{height:52.409180px;}
.h8_c00096{height:58.666992px;}
.h6_c00096{height:60.231445px;}
.h15_c00096{height:68.191406px;}
.h14_c00096{height:74.311523px;}
.h16_c00096{height:75.093750px;}
.h1c_c00096{height:77.097656px;}
.h1d_c00096{height:78.609375px;}
.h2_c00096{height:79.004883px;}
.hf_c00096{height:79.787109px;}
.h4_c00096{height:80.121094px;}
.h12_c00096{height:80.569336px;}
.h3_c00096{height:81.632812px;}
.h1_c00096{height:82.388672px;}
.h1b_c00096{height:83.015625px;}
.ha_c00096{height:83.144531px;}
.h17_c00096{height:105.600586px;}
.h18_c00096{height:110.428253px;}
.h19_c00096{height:112.640625px;}
.h13_c00096{height:125.156250px;}
.h5_c00096{height:135.325195px;}
.h1a_c00096{height:154.500732px;}
.hb_c00096{height:165.832031px;}
.h11_c00096{height:180.340576px;}
.h0_c00096{height:1263.000000px;}
.w0_c00096{width:892.500000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:106.559685px;}
.x6_c00096{left:110.519715px;}
.x7_c00096{left:114.118815px;}
.x8_c00096{left:124.919565px;}
.x9_c00096{left:127.798515px;}
.xa_c00096{left:139.678500px;}
.xb_c00096{left:148.318800px;}
.x2_c00096{left:165.958350px;}
.x1e_c00096{left:170.279250px;}
.xc_c00096{left:178.199415px;}
.x3_c00096{left:195.118785px;}
.x18_c00096{left:198.358635px;}
.x1f_c00096{left:242.279850px;}
.x4_c00096{left:248.039385px;}
.xd_c00096{left:259.558635px;}
.x20_c00096{left:270.359250px;}
.x5_c00096{left:271.799535px;}
.x19_c00096{left:273.599100px;}
.xe_c00096{left:305.279250px;}
.x1c_c00096{left:310.679700px;}
.x1d_c00096{left:357.479685px;}
.x15_c00096{left:430.559685px;}
.xf_c00096{left:489.958335px;}
.x10_c00096{left:576.719520px;}
.x12_c00096{left:578.159820px;}
.x16_c00096{left:599.759535px;}
.x1a_c00096{left:602.279250px;}
.x1b_c00096{left:617.039985px;}
.x17_c00096{left:631.078770px;}
.x11_c00096{left:639.359850px;}
.x13_c00096{left:700.198785px;}
.x14_c00096{left:716.038920px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:25.595947pt;}
.ls5_c00096{letter-spacing:-60.330867pt;}
.lsf_c00096{letter-spacing:-23.071720pt;}
.ls9_c00096{letter-spacing:-17.308800pt;}
.ls13_c00096{letter-spacing:-11.386700pt;}
.ls16_c00096{letter-spacing:-7.046100pt;}
.ls10_c00096{letter-spacing:-6.747300pt;}
.lsd_c00096{letter-spacing:-6.667920pt;}
.ls18_c00096{letter-spacing:-5.997600pt;}
.ls6_c00096{letter-spacing:-5.759600pt;}
.lse_c00096{letter-spacing:-5.335200pt;}
.lsc_c00096{letter-spacing:-4.839267pt;}
.ls11_c00096{letter-spacing:-4.665600pt;}
.lsa_c00096{letter-spacing:-4.044773pt;}
.ls0_c00096{letter-spacing:-4.040267pt;}
.lsb_c00096{letter-spacing:-4.003200pt;}
.ls14_c00096{letter-spacing:-3.029253pt;}
.ls19_c00096{letter-spacing:-2.836587pt;}
.ls2_c00096{letter-spacing:-2.772000pt;}
.ls17_c00096{letter-spacing:-2.664000pt;}
.ls1_c00096{letter-spacing:-2.194393pt;}
.ls8_c00096{letter-spacing:-2.055500pt;}
.ls1a_c00096{letter-spacing:-2.001600pt;}
.ls1b_c00096{letter-spacing:-1.889067pt;}
.ls12_c00096{letter-spacing:-1.853313pt;}
.ls15_c00096{letter-spacing:-1.504000pt;}
.ls3_c00096{letter-spacing:-1.399907pt;}
.ls4_c00096{letter-spacing:-1.368000pt;}
.ls7_c00096{letter-spacing:0.000000pt;}
.ls1c_c00096{letter-spacing:7.650000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
._7_c00096{width:2.123787pt;}
._1_c00096{width:3.405813pt;}
._0_c00096{width:4.686827pt;}
._3_c00096{width:5.968907pt;}
._5_c00096{width:7.171147pt;}
._4_c00096{width:9.029227pt;}
._8_c00096{width:15.038640pt;}
._2_c00096{width:16.320773pt;}
._6_c00096{width:611.632640pt;}
.fsd_c00096{font-size:26.666667pt;}
.fs6_c00096{font-size:29.333333pt;}
.fs8_c00096{font-size:36.000000pt;}
.fsf_c00096{font-size:36.666667pt;}
.fsc_c00096{font-size:42.666667pt;}
.fsb_c00096{font-size:44.666667pt;}
.fs7_c00096{font-size:50.000000pt;}
.fs5_c00096{font-size:51.333333pt;}
.fs14_c00096{font-size:61.333333pt;}
.fs13_c00096{font-size:63.333333pt;}
.fs15_c00096{font-size:64.000000pt;}
.fs1_c00096{font-size:67.333333pt;}
.fse_c00096{font-size:68.000000pt;}
.fs11_c00096{font-size:68.666667pt;}
.fs1a_c00096{font-size:69.333333pt;}
.fs3_c00096{font-size:70.666667pt;}
.fs2_c00096{font-size:72.000000pt;}
.fs0_c00096{font-size:72.666667pt;}
.fs9_c00096{font-size:73.333333pt;}
.fs19_c00096{font-size:74.666667pt;}
.fs16_c00096{font-size:90.000000pt;}
.fs17_c00096{font-size:96.000000pt;}
.fs12_c00096{font-size:106.666667pt;}
.fs4_c00096{font-size:115.333333pt;}
.fs18_c00096{font-size:140.000000pt;}
.fsa_c00096{font-size:141.333333pt;}
.fs10_c00096{font-size:163.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y13_c00096{bottom:121.279293pt;}
.y14_c00096{bottom:121.280280pt;}
.y12_c00096{bottom:157.439427pt;}
.y10_c00096{bottom:173.440387pt;}
.y11_c00096{bottom:177.919867pt;}
.ye_c00096{bottom:254.080120pt;}
.yf_c00096{bottom:260.480000pt;}
.yd_c00096{bottom:264.640133pt;}
.yc_c00096{bottom:272.960387pt;}
.yb_c00096{bottom:372.480507pt;}
.ya_c00096{bottom:372.481200pt;}
.y4_c00096{bottom:405.760253pt;}
.y9_c00096{bottom:406.400387pt;}
.y3_c00096{bottom:407.359867pt;}
.y2_c00096{bottom:415.680133pt;}
.y6_c00096{bottom:448.000533pt;}
.y5_c00096{bottom:501.439453pt;}
.y8_c00096{bottom:515.200120pt;}
.y7_c00096{bottom:521.600133pt;}
.y1_c00096{bottom:1100.159173pt;}
.he_c00096{height:27.812500pt;}
.h7_c00096{height:30.593750pt;}
.h9_c00096{height:35.578125pt;}
.h10_c00096{height:36.236979pt;}
.hd_c00096{height:44.500000pt;}
.hc_c00096{height:46.585938pt;}
.h8_c00096{height:52.148438pt;}
.h6_c00096{height:53.539062pt;}
.h15_c00096{height:60.614583pt;}
.h14_c00096{height:66.054688pt;}
.h16_c00096{height:66.750000pt;}
.h1c_c00096{height:68.531250pt;}
.h1d_c00096{height:69.875000pt;}
.h2_c00096{height:70.226562pt;}
.hf_c00096{height:70.921875pt;}
.h4_c00096{height:71.218750pt;}
.h12_c00096{height:71.617188pt;}
.h3_c00096{height:72.562500pt;}
.h1_c00096{height:73.234375pt;}
.h1b_c00096{height:73.791667pt;}
.ha_c00096{height:73.906250pt;}
.h17_c00096{height:93.867188pt;}
.h18_c00096{height:98.158447pt;}
.h19_c00096{height:100.125000pt;}
.h13_c00096{height:111.250000pt;}
.h5_c00096{height:120.289062pt;}
.h1a_c00096{height:137.333984pt;}
.hb_c00096{height:147.406250pt;}
.h11_c00096{height:160.302734pt;}
.h0_c00096{height:1122.666667pt;}
.w0_c00096{width:793.333333pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:94.719720pt;}
.x6_c00096{left:98.239747pt;}
.x7_c00096{left:101.438947pt;}
.x8_c00096{left:111.039613pt;}
.x9_c00096{left:113.598680pt;}
.xa_c00096{left:124.158667pt;}
.xb_c00096{left:131.838933pt;}
.x2_c00096{left:147.518533pt;}
.x1e_c00096{left:151.359333pt;}
.xc_c00096{left:158.399480pt;}
.x3_c00096{left:173.438920pt;}
.x18_c00096{left:176.318787pt;}
.x1f_c00096{left:215.359867pt;}
.x4_c00096{left:220.479453pt;}
.xd_c00096{left:230.718787pt;}
.x20_c00096{left:240.319333pt;}
.x5_c00096{left:241.599587pt;}
.x19_c00096{left:243.199200pt;}
.xe_c00096{left:271.359333pt;}
.x1c_c00096{left:276.159733pt;}
.x1d_c00096{left:317.759720pt;}
.x15_c00096{left:382.719720pt;}
.xf_c00096{left:435.518520pt;}
.x10_c00096{left:512.639573pt;}
.x12_c00096{left:513.919840pt;}
.x16_c00096{left:533.119587pt;}
.x1a_c00096{left:535.359333pt;}
.x1b_c00096{left:548.479987pt;}
.x17_c00096{left:560.958907pt;}
.x11_c00096{left:568.319867pt;}
.x13_c00096{left:622.398920pt;}
.x14_c00096{left:636.479040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa8407574a971cfafdefaa9b.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_c3fcd1f7cf17199495ad3c26.woff2')format("woff");}.ff2_c00097{font-family:ff2_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;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_ea96979ddf67205e99a6eec7.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_4131c9f61626c98bc4446c2a.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_f1c2287e18632a628f0dcf67.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00097;src:url('chunks/assets/font_29bf1087bc02c9d72bee3d31.woff2')format("woff");}.ff6_c00097{font-family:ff6_c00097;line-height:1.364746;font-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_c00097{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m10_c00097{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m14_c00097{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m11_c00097{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m0_c00097{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00097{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.478448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478448,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.lse_c00097{letter-spacing:-16.460400px;}
.ls1b_c00097{letter-spacing:-9.942975px;}
.ls15_c00097{letter-spacing:-9.384383px;}
.ls9_c00097{letter-spacing:-8.914500px;}
.ls14_c00097{letter-spacing:-8.614125px;}
.lsd_c00097{letter-spacing:-5.945625px;}
.ls3_c00097{letter-spacing:-5.196713px;}
.lsc_c00097{letter-spacing:-4.680578px;}
.ls18_c00097{letter-spacing:-4.498905px;}
.lsb_c00097{letter-spacing:-4.456463px;}
.ls1c_c00097{letter-spacing:-3.753750px;}
.lsa_c00097{letter-spacing:-3.717000px;}
.ls2_c00097{letter-spacing:-2.968875px;}
.ls16_c00097{letter-spacing:-2.407500px;}
.ls1_c00097{letter-spacing:-2.229413px;}
.ls8_c00097{letter-spacing:-1.489163px;}
.lsf_c00097{letter-spacing:-1.264050px;}
.ls7_c00097{letter-spacing:-0.740250px;}
.ls0_c00097{letter-spacing:0.000000px;}
.ls5_c00097{letter-spacing:0.780225px;}
.ls11_c00097{letter-spacing:1.651350px;}
.ls19_c00097{letter-spacing:2.315250px;}
.ls10_c00097{letter-spacing:2.639790px;}
.ls1a_c00097{letter-spacing:3.089228px;}
.ls17_c00097{letter-spacing:3.854955px;}
.ls4_c00097{letter-spacing:4.496625px;}
.ls6_c00097{letter-spacing:5.309100px;}
.ls13_c00097{letter-spacing:16.348500px;}
.ls12_c00097{letter-spacing:19.226250px;}
.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;}
._1c_c00097{margin-left:-6.688282px;}
._5_c00097{margin-left:-4.624958px;}
._18_c00097{margin-left:-3.591802px;}
._b_c00097{margin-left:-2.536790px;}
._7_c00097{margin-left:-1.127076px;}
._6_c00097{width:1.850625px;}
._c_c00097{width:3.506455px;}
._11_c00097{width:4.559194px;}
._a_c00097{width:5.677429px;}
._4_c00097{width:7.564294px;}
._0_c00097{width:9.378679px;}
._2_c00097{width:10.937810px;}
._9_c00097{width:12.443525px;}
._1_c00097{width:13.497988px;}
._3_c00097{width:14.610235px;}
._8_c00097{width:16.697838px;}
._e_c00097{width:18.966284px;}
._1f_c00097{width:20.115261px;}
._f_c00097{width:21.576014px;}
._d_c00097{width:23.446728px;}
._1b_c00097{width:24.782239px;}
._19_c00097{width:25.823061px;}
._10_c00097{width:27.846892px;}
._1a_c00097{width:28.875054px;}
._1d_c00097{width:30.909316px;}
._14_c00097{width:32.973160px;}
._1e_c00097{width:35.808977px;}
._13_c00097{width:36.862875px;}
._15_c00097{width:38.749146px;}
._12_c00097{width:41.185893px;}
._17_c00097{width:42.478196px;}
._16_c00097{width:46.336931px;}
.fc0_c00097{color:transparent;}
.fs9_c00097{font-size:39.000000px;}
.fs8_c00097{font-size:39.750000px;}
.fs7_c00097{font-size:43.500000px;}
.fsc_c00097{font-size:56.250000px;}
.fse_c00097{font-size:66.750000px;}
.fsd_c00097{font-size:71.250000px;}
.fs3_c00097{font-size:76.500000px;}
.fs2_c00097{font-size:77.250000px;}
.fs0_c00097{font-size:78.750000px;}
.fsf_c00097{font-size:79.500000px;}
.fs5_c00097{font-size:80.250000px;}
.fsa_c00097{font-size:81.000000px;}
.fsb_c00097{font-size:81.750000px;}
.fs4_c00097{font-size:82.500000px;}
.fs6_c00097{font-size:84.750000px;}
.fs1_c00097{font-size:87.000000px;}
.y0_c00097{bottom:0.000000px;}
.y1d_c00097{bottom:422.281335px;}
.y1c_c00097{bottom:452.161050px;}
.y1b_c00097{bottom:482.760135px;}
.y1a_c00097{bottom:482.761020px;}
.y19_c00097{bottom:512.640750px;}
.y18_c00097{bottom:512.641770px;}
.y17_c00097{bottom:542.521500px;}
.y16_c00097{bottom:572.041035px;}
.y15_c00097{bottom:572.041305px;}
.y14_c00097{bottom:601.921035px;}
.y13_c00097{bottom:631.800750px;}
.y12_c00097{bottom:661.320285px;}
.y11_c00097{bottom:720.720750px;}
.y10_c00097{bottom:749.881170px;}
.yf_c00097{bottom:757.440255px;}
.yd_c00097{bottom:780.479550px;}
.ye_c00097{bottom:780.480285px;}
.yc_c00097{bottom:810.719460px;}
.yb_c00097{bottom:840.959385px;}
.ya_c00097{bottom:900.360450px;}
.y9_c00097{bottom:929.879970px;}
.y8_c00097{bottom:960.120825px;}
.y7_c00097{bottom:990.000555px;}
.y6_c00097{bottom:990.000735px;}
.y4_c00097{bottom:1019.519535px;}
.y5_c00097{bottom:1019.520270px;}
.y3_c00097{bottom:1049.040870px;}
.y2_c00097{bottom:1078.920600px;}
.y1_c00097{bottom:1139.040990px;}
.hc_c00097{height:40.675781px;}
.hb_c00097{height:41.458008px;}
.ha_c00097{height:42.990234px;}
.hf_c00097{height:55.590820px;}
.h11_c00097{height:65.967773px;}
.h10_c00097{height:74.311523px;}
.h4_c00097{height:75.816650px;}
.h5_c00097{height:77.097656px;}
.h1_c00097{height:77.288818px;}
.h8_c00097{height:77.853516px;}
.h7_c00097{height:78.760986px;}
.h3_c00097{height:79.365234px;}
.hd_c00097{height:79.497070px;}
.h13_c00097{height:80.121094px;}
.he_c00097{height:80.233154px;}
.h12_c00097{height:80.876953px;}
.h6_c00097{height:80.969238px;}
.h9_c00097{height:83.177490px;}
.h2_c00097{height:85.385742px;}
.h0_c00097{height:1263.000000px;}
.w0_c00097{width:892.500000px;}
.x0_c00097{left:0.000000px;}
.x1d_c00097{left:141.838950px;}
.x1_c00097{left:142.918350px;}
.xc_c00097{left:160.559685px;}
.x12_c00097{left:162.718500px;}
.x1e_c00097{left:167.039400px;}
.x13_c00097{left:177.120000px;}
.xf_c00097{left:183.599700px;}
.x4_c00097{left:196.918350px;}
.x21_c00097{left:200.159850px;}
.x22_c00097{left:213.839535px;}
.x28_c00097{left:223.559100px;}
.x10_c00097{left:229.318800px;}
.x5_c00097{left:230.759100px;}
.x6_c00097{left:251.999400px;}
.x1b_c00097{left:279.358635px;}
.x1c_c00097{left:294.478635px;}
.x29_c00097{left:297.359250px;}
.x2_c00097{left:309.959385px;}
.x11_c00097{left:316.439235px;}
.xb_c00097{left:320.758500px;}
.x3_c00097{left:325.079385px;}
.x14_c00097{left:332.638530px;}
.x7_c00097{left:358.918350px;}
.x8_c00097{left:375.478635px;}
.x15_c00097{left:406.799565px;}
.x16_c00097{left:435.239820px;}
.x23_c00097{left:453.238770px;}
.x17_c00097{left:463.319235px;}
.x24_c00097{left:467.279250px;}
.x1f_c00097{left:510.119385px;}
.x20_c00097{left:524.519070px;}
.x18_c00097{left:538.198785px;}
.xd_c00097{left:649.438620px;}
.xe_c00097{left:664.919535px;}
.x9_c00097{left:678.958335px;}
.xa_c00097{left:694.798560px;}
.x19_c00097{left:704.158770px;}
.x1a_c00097{left:730.079355px;}
.x25_c00097{left:754.918950px;}
.x26_c00097{left:771.479190px;}
.x27_c00097{left:775.079955px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.lse_c00097{letter-spacing:-14.631467pt;}
.ls1b_c00097{letter-spacing:-8.838200pt;}
.ls15_c00097{letter-spacing:-8.341673pt;}
.ls9_c00097{letter-spacing:-7.924000pt;}
.ls14_c00097{letter-spacing:-7.657000pt;}
.lsd_c00097{letter-spacing:-5.285000pt;}
.ls3_c00097{letter-spacing:-4.619300pt;}
.lsc_c00097{letter-spacing:-4.160513pt;}
.ls18_c00097{letter-spacing:-3.999027pt;}
.lsb_c00097{letter-spacing:-3.961300pt;}
.ls1c_c00097{letter-spacing:-3.336667pt;}
.lsa_c00097{letter-spacing:-3.304000pt;}
.ls2_c00097{letter-spacing:-2.639000pt;}
.ls16_c00097{letter-spacing:-2.140000pt;}
.ls1_c00097{letter-spacing:-1.981700pt;}
.ls8_c00097{letter-spacing:-1.323700pt;}
.lsf_c00097{letter-spacing:-1.123600pt;}
.ls7_c00097{letter-spacing:-0.658000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ls5_c00097{letter-spacing:0.693533pt;}
.ls11_c00097{letter-spacing:1.467867pt;}
.ls19_c00097{letter-spacing:2.058000pt;}
.ls10_c00097{letter-spacing:2.346480pt;}
.ls1a_c00097{letter-spacing:2.745980pt;}
.ls17_c00097{letter-spacing:3.426627pt;}
.ls4_c00097{letter-spacing:3.997000pt;}
.ls6_c00097{letter-spacing:4.719200pt;}
.ls13_c00097{letter-spacing:14.532000pt;}
.ls12_c00097{letter-spacing:17.090000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._1c_c00097{margin-left:-5.945140pt;}
._5_c00097{margin-left:-4.111074pt;}
._18_c00097{margin-left:-3.192713pt;}
._b_c00097{margin-left:-2.254925pt;}
._7_c00097{margin-left:-1.001845pt;}
._6_c00097{width:1.645000pt;}
._c_c00097{width:3.116849pt;}
._11_c00097{width:4.052617pt;}
._a_c00097{width:5.046604pt;}
._4_c00097{width:6.723817pt;}
._0_c00097{width:8.336604pt;}
._2_c00097{width:9.722498pt;}
._9_c00097{width:11.060911pt;}
._1_c00097{width:11.998211pt;}
._3_c00097{width:12.986875pt;}
._8_c00097{width:14.842523pt;}
._e_c00097{width:16.858919pt;}
._1f_c00097{width:17.880232pt;}
._f_c00097{width:19.178679pt;}
._d_c00097{width:20.841536pt;}
._1b_c00097{width:22.028657pt;}
._19_c00097{width:22.953832pt;}
._10_c00097{width:24.752792pt;}
._1a_c00097{width:25.666715pt;}
._1d_c00097{width:27.474947pt;}
._14_c00097{width:29.309475pt;}
._1e_c00097{width:31.830202pt;}
._13_c00097{width:32.767000pt;}
._15_c00097{width:34.443685pt;}
._12_c00097{width:36.609683pt;}
._17_c00097{width:37.758396pt;}
._16_c00097{width:41.188383pt;}
.fs9_c00097{font-size:34.666667pt;}
.fs8_c00097{font-size:35.333333pt;}
.fs7_c00097{font-size:38.666667pt;}
.fsc_c00097{font-size:50.000000pt;}
.fse_c00097{font-size:59.333333pt;}
.fsd_c00097{font-size:63.333333pt;}
.fs3_c00097{font-size:68.000000pt;}
.fs2_c00097{font-size:68.666667pt;}
.fs0_c00097{font-size:70.000000pt;}
.fsf_c00097{font-size:70.666667pt;}
.fs5_c00097{font-size:71.333333pt;}
.fsa_c00097{font-size:72.000000pt;}
.fsb_c00097{font-size:72.666667pt;}
.fs4_c00097{font-size:73.333333pt;}
.fs6_c00097{font-size:75.333333pt;}
.fs1_c00097{font-size:77.333333pt;}
.y0_c00097{bottom:0.000000pt;}
.y1d_c00097{bottom:375.361187pt;}
.y1c_c00097{bottom:401.920933pt;}
.y1b_c00097{bottom:429.120120pt;}
.y1a_c00097{bottom:429.120907pt;}
.y19_c00097{bottom:455.680667pt;}
.y18_c00097{bottom:455.681573pt;}
.y17_c00097{bottom:482.241333pt;}
.y16_c00097{bottom:508.480920pt;}
.y15_c00097{bottom:508.481160pt;}
.y14_c00097{bottom:535.040920pt;}
.y13_c00097{bottom:561.600667pt;}
.y12_c00097{bottom:587.840253pt;}
.y11_c00097{bottom:640.640667pt;}
.y10_c00097{bottom:666.561040pt;}
.yf_c00097{bottom:673.280227pt;}
.yd_c00097{bottom:693.759600pt;}
.ye_c00097{bottom:693.760253pt;}
.yc_c00097{bottom:720.639520pt;}
.yb_c00097{bottom:747.519453pt;}
.ya_c00097{bottom:800.320400pt;}
.y9_c00097{bottom:826.559973pt;}
.y8_c00097{bottom:853.440733pt;}
.y7_c00097{bottom:880.000493pt;}
.y6_c00097{bottom:880.000653pt;}
.y4_c00097{bottom:906.239587pt;}
.y5_c00097{bottom:906.240240pt;}
.y3_c00097{bottom:932.480773pt;}
.y2_c00097{bottom:959.040533pt;}
.y1_c00097{bottom:1012.480880pt;}
.hc_c00097{height:36.156250pt;}
.hb_c00097{height:36.851562pt;}
.ha_c00097{height:38.213542pt;}
.hf_c00097{height:49.414063pt;}
.h11_c00097{height:58.638021pt;}
.h10_c00097{height:66.054688pt;}
.h4_c00097{height:67.392578pt;}
.h5_c00097{height:68.531250pt;}
.h1_c00097{height:68.701172pt;}
.h8_c00097{height:69.203125pt;}
.h7_c00097{height:70.009766pt;}
.h3_c00097{height:70.546875pt;}
.hd_c00097{height:70.664062pt;}
.h13_c00097{height:71.218750pt;}
.he_c00097{height:71.318359pt;}
.h12_c00097{height:71.890625pt;}
.h6_c00097{height:71.972656pt;}
.h9_c00097{height:73.935547pt;}
.h2_c00097{height:75.898438pt;}
.h0_c00097{height:1122.666667pt;}
.w0_c00097{width:793.333333pt;}
.x0_c00097{left:0.000000pt;}
.x1d_c00097{left:126.079067pt;}
.x1_c00097{left:127.038533pt;}
.xc_c00097{left:142.719720pt;}
.x12_c00097{left:144.638667pt;}
.x1e_c00097{left:148.479467pt;}
.x13_c00097{left:157.440000pt;}
.xf_c00097{left:163.199733pt;}
.x4_c00097{left:175.038533pt;}
.x21_c00097{left:177.919867pt;}
.x22_c00097{left:190.079587pt;}
.x28_c00097{left:198.719200pt;}
.x10_c00097{left:203.838933pt;}
.x5_c00097{left:205.119200pt;}
.x6_c00097{left:223.999467pt;}
.x1b_c00097{left:248.318787pt;}
.x1c_c00097{left:261.758787pt;}
.x29_c00097{left:264.319333pt;}
.x2_c00097{left:275.519453pt;}
.x11_c00097{left:281.279320pt;}
.xb_c00097{left:285.118667pt;}
.x3_c00097{left:288.959453pt;}
.x14_c00097{left:295.678693pt;}
.x7_c00097{left:319.038533pt;}
.x8_c00097{left:333.758787pt;}
.x15_c00097{left:361.599613pt;}
.x16_c00097{left:386.879840pt;}
.x23_c00097{left:402.878907pt;}
.x17_c00097{left:411.839320pt;}
.x24_c00097{left:415.359333pt;}
.x1f_c00097{left:453.439453pt;}
.x20_c00097{left:466.239173pt;}
.x18_c00097{left:478.398920pt;}
.xd_c00097{left:577.278773pt;}
.xe_c00097{left:591.039587pt;}
.x9_c00097{left:603.518520pt;}
.xa_c00097{left:617.598720pt;}
.x19_c00097{left:625.918907pt;}
.x1a_c00097{left:648.959427pt;}
.x25_c00097{left:671.039067pt;}
.x26_c00097{left:685.759280pt;}
.x27_c00097{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea8bf19d597aa53c8e4b97c1.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_727503d0a71d943ffd3f8a41.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_bee35c501bb1678b77ce7742.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00098{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls8_c00098{letter-spacing:-4.688925px;}
.ls3_c00098{letter-spacing:-4.502828px;}
.ls0_c00098{letter-spacing:-4.258800px;}
.ls1_c00098{letter-spacing:-3.954300px;}
.ls6_c00098{letter-spacing:-3.239190px;}
.ls2_c00098{letter-spacing:-3.028950px;}
.ls7_c00098{letter-spacing:-2.526075px;}
.ls5_c00098{letter-spacing:-2.313450px;}
.ls4_c00098{letter-spacing:-2.288805px;}
.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;}
.fs1_c00098{font-size:73.500000px;}
.fs6_c00098{font-size:75.750000px;}
.fs0_c00098{font-size:78.000000px;}
.fs2_c00098{font-size:79.500000px;}
.fs3_c00098{font-size:80.250000px;}
.fs4_c00098{font-size:81.000000px;}
.fs5_c00098{font-size:81.750000px;}
.y0_c00098{bottom:0.000000px;}
.y2_c00098{bottom:367.560285px;}
.y1_c00098{bottom:1174.681185px;}
.h2_c00098{height:76.658203px;}
.h1_c00098{height:78.609375px;}
.h7_c00098{height:79.004883px;}
.h3_c00098{height:80.121094px;}
.h4_c00098{height:80.876953px;}
.h5_c00098{height:81.632812px;}
.h6_c00098{height:82.388672px;}
.h0_c00098{height:1263.000000px;}
.w0_c00098{width:892.500000px;}
.x0_c00098{left:0.000000px;}
.x7_c00098{left:101.518665px;}
.x1_c00098{left:102.599700px;}
.x2_c00098{left:162.718500px;}
.x8_c00098{left:164.158785px;}
.x3_c00098{left:191.878950px;}
.x4_c00098{left:224.638500px;}
.x9_c00098{left:243.718500px;}
.x5_c00098{left:341.998950px;}
.x6_c00098{left:392.038920px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls8_c00098{letter-spacing:-4.167933pt;}
.ls3_c00098{letter-spacing:-4.002513pt;}
.ls0_c00098{letter-spacing:-3.785600pt;}
.ls1_c00098{letter-spacing:-3.514933pt;}
.ls6_c00098{letter-spacing:-2.879280pt;}
.ls2_c00098{letter-spacing:-2.692400pt;}
.ls7_c00098{letter-spacing:-2.245400pt;}
.ls5_c00098{letter-spacing:-2.056400pt;}
.ls4_c00098{letter-spacing:-2.034493pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fs1_c00098{font-size:65.333333pt;}
.fs6_c00098{font-size:67.333333pt;}
.fs0_c00098{font-size:69.333333pt;}
.fs2_c00098{font-size:70.666667pt;}
.fs3_c00098{font-size:71.333333pt;}
.fs4_c00098{font-size:72.000000pt;}
.fs5_c00098{font-size:72.666667pt;}
.y0_c00098{bottom:0.000000pt;}
.y2_c00098{bottom:326.720253pt;}
.y1_c00098{bottom:1044.161053pt;}
.h2_c00098{height:68.140625pt;}
.h1_c00098{height:69.875000pt;}
.h7_c00098{height:70.226562pt;}
.h3_c00098{height:71.218750pt;}
.h4_c00098{height:71.890625pt;}
.h5_c00098{height:72.562500pt;}
.h6_c00098{height:73.234375pt;}
.h0_c00098{height:1122.666667pt;}
.w0_c00098{width:793.333333pt;}
.x0_c00098{left:0.000000pt;}
.x7_c00098{left:90.238813pt;}
.x1_c00098{left:91.199733pt;}
.x2_c00098{left:144.638667pt;}
.x8_c00098{left:145.918920pt;}
.x3_c00098{left:170.559067pt;}
.x4_c00098{left:199.678667pt;}
.x9_c00098{left:216.638667pt;}
.x5_c00098{left:303.999067pt;}
.x6_c00098{left:348.479040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bfc52b73d9b82eceb567a4d4.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_f331bfe6d895f087c1b11fc4.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_209a516f192070d0425af9b3.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_e34e4f7596de9c80ba508c8d.woff2')format("woff");}.ff4_c00099{font-family:ff4_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:ff5_c00099;src:url('chunks/assets/font_d5b9750c5970085db2445434.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00099;src:url('chunks/assets/font_54a0e1fcdc5b79385e035a6c.woff2')format("woff");}.ff6_c00099{font-family:ff6_c00099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00099{transform:matrix(0.164583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164583,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.203008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203008,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m27_c00099{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.298780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298780,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m30_c00099{transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.353261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353261,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{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);}
.m1d_c00099{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);}
.m18_c00099{transform:matrix(0.652542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652542,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(1.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.289062,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(1.677083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.677083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.677083,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(1.901042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.901042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.901042,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls36_c00099{letter-spacing:-28.500863px;}
.ls2a_c00099{letter-spacing:-12.751200px;}
.ls2e_c00099{letter-spacing:-12.219900px;}
.ls30_c00099{letter-spacing:-11.058278px;}
.ls35_c00099{letter-spacing:-10.415625px;}
.ls18_c00099{letter-spacing:-8.914500px;}
.ls34_c00099{letter-spacing:-8.289600px;}
.ls16_c00099{letter-spacing:-8.175038px;}
.ls25_c00099{letter-spacing:-7.426125px;}
.ls14_c00099{letter-spacing:-6.685875px;}
.ls2f_c00099{letter-spacing:-6.411600px;}
.ls17_c00099{letter-spacing:-5.945625px;}
.ls1a_c00099{letter-spacing:-5.247533px;}
.lse_c00099{letter-spacing:-5.196713px;}
.ls26_c00099{letter-spacing:-5.054963px;}
.ls12_c00099{letter-spacing:-5.015625px;}
.ls2c_c00099{letter-spacing:-4.742205px;}
.ls2d_c00099{letter-spacing:-4.694400px;}
.ls15_c00099{letter-spacing:-4.456463px;}
.ls1b_c00099{letter-spacing:-4.453800px;}
.ls27_c00099{letter-spacing:-4.334498px;}
.lsc_c00099{letter-spacing:-3.717000px;}
.ls13_c00099{letter-spacing:-3.577500px;}
.ls31_c00099{letter-spacing:-3.528360px;}
.lsb_c00099{letter-spacing:-3.519765px;}
.ls3c_c00099{letter-spacing:-3.135885px;}
.ls4_c00099{letter-spacing:-3.089625px;}
.ls6_c00099{letter-spacing:-3.062775px;}
.ls23_c00099{letter-spacing:-2.973300px;}
.lsf_c00099{letter-spacing:-2.968875px;}
.ls20_c00099{letter-spacing:-2.886000px;}
.ls28_c00099{letter-spacing:-2.584200px;}
.ls1_c00099{letter-spacing:-2.471783px;}
.ls5_c00099{letter-spacing:-2.310398px;}
.ls1f_c00099{letter-spacing:-2.294348px;}
.lsd_c00099{letter-spacing:-2.229413px;}
.ls1d_c00099{letter-spacing:-2.205000px;}
.ls33_c00099{letter-spacing:-2.073053px;}
.ls3_c00099{letter-spacing:-1.540800px;}
.ls22_c00099{letter-spacing:-1.526963px;}
.ls32_c00099{letter-spacing:-1.500750px;}
.ls10_c00099{letter-spacing:-1.489163px;}
.lsa_c00099{letter-spacing:-0.823433px;}
.ls19_c00099{letter-spacing:-0.771728px;}
.ls21_c00099{letter-spacing:-0.763875px;}
.ls11_c00099{letter-spacing:-0.740250px;}
.ls1e_c00099{letter-spacing:-0.731588px;}
.ls9_c00099{letter-spacing:0.000000px;}
.ls38_c00099{letter-spacing:0.699600px;}
.ls0_c00099{letter-spacing:0.740250px;}
.ls8_c00099{letter-spacing:0.823433px;}
.ls3f_c00099{letter-spacing:1.232100px;}
.ls7_c00099{letter-spacing:1.526963px;}
.ls3b_c00099{letter-spacing:1.962465px;}
.ls29_c00099{letter-spacing:2.335275px;}
.ls3a_c00099{letter-spacing:3.160500px;}
.ls2b_c00099{letter-spacing:3.528000px;}
.ls3e_c00099{letter-spacing:3.697200px;}
.ls24_c00099{letter-spacing:4.591125px;}
.ls40_c00099{letter-spacing:6.231600px;}
.ls39_c00099{letter-spacing:6.307455px;}
.ls41_c00099{letter-spacing:6.709050px;}
.ls2_c00099{letter-spacing:6.831000px;}
.ls3d_c00099{letter-spacing:9.510218px;}
.ls37_c00099{letter-spacing:11.484375px;}
.ls1c_c00099{letter-spacing:41.514900px;}
.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;}
._f_c00099{margin-left:-5.535189px;}
._10_c00099{margin-left:-2.425238px;}
._11_c00099{margin-left:-1.388596px;}
._0_c00099{width:2.005941px;}
._6_c00099{width:3.604595px;}
._2_c00099{width:5.054145px;}
._1_c00099{width:6.780816px;}
._17_c00099{width:8.142677px;}
._3_c00099{width:9.378679px;}
._5_c00099{width:10.619977px;}
._4_c00099{width:12.647191px;}
._8_c00099{width:13.705249px;}
._7_c00099{width:14.902209px;}
._20_c00099{width:16.066193px;}
._18_c00099{width:17.553171px;}
._c_c00099{width:18.902536px;}
._d_c00099{width:20.602714px;}
._a_c00099{width:22.431952px;}
._b_c00099{width:24.314791px;}
._1f_c00099{width:25.996683px;}
._16_c00099{width:28.290650px;}
._12_c00099{width:30.540216px;}
._1e_c00099{width:31.912427px;}
._9_c00099{width:33.524291px;}
._e_c00099{width:35.647187px;}
._19_c00099{width:36.680502px;}
._1c_c00099{width:37.955500px;}
._1d_c00099{width:39.581122px;}
._1a_c00099{width:40.825159px;}
._15_c00099{width:42.287691px;}
._13_c00099{width:44.431404px;}
._1b_c00099{width:45.711076px;}
._14_c00099{width:50.473010px;}
.fc0_c00099{color:transparent;}
.fs10_c00099{font-size:19.500000px;}
.fsf_c00099{font-size:24.000000px;}
.fsc_c00099{font-size:30.000000px;}
.fsd_c00099{font-size:34.500000px;}
.fs12_c00099{font-size:35.250000px;}
.fs11_c00099{font-size:36.000000px;}
.fs16_c00099{font-size:36.750000px;}
.fs20_c00099{font-size:38.250000px;}
.fsb_c00099{font-size:44.250000px;}
.fs13_c00099{font-size:48.000000px;}
.fs17_c00099{font-size:53.250000px;}
.fs1f_c00099{font-size:54.000000px;}
.fs1e_c00099{font-size:55.500000px;}
.fs1d_c00099{font-size:58.500000px;}
.fs1c_c00099{font-size:59.250000px;}
.fs1b_c00099{font-size:61.500000px;}
.fs1a_c00099{font-size:64.500000px;}
.fs19_c00099{font-size:65.250000px;}
.fs18_c00099{font-size:66.000000px;}
.fs6_c00099{font-size:70.500000px;}
.fs3_c00099{font-size:72.750000px;}
.fs0_c00099{font-size:74.250000px;}
.fs5_c00099{font-size:76.500000px;}
.fs8_c00099{font-size:77.250000px;}
.fsa_c00099{font-size:78.000000px;}
.fs4_c00099{font-size:78.750000px;}
.fs7_c00099{font-size:79.500000px;}
.fs2_c00099{font-size:80.250000px;}
.fs9_c00099{font-size:81.750000px;}
.fs22_c00099{font-size:82.500000px;}
.fse_c00099{font-size:86.250000px;}
.fs1_c00099{font-size:90.000000px;}
.fs14_c00099{font-size:93.750000px;}
.fs21_c00099{font-size:99.750000px;}
.fs15_c00099{font-size:101.250000px;}
.y0_c00099{bottom:0.000000px;}
.y26_c00099{bottom:182.520315px;}
.y25_c00099{bottom:182.520465px;}
.y23_c00099{bottom:212.039925px;}
.y24_c00099{bottom:212.040000px;}
.y21_c00099{bottom:242.278890px;}
.y22_c00099{bottom:242.279850px;}
.y20_c00099{bottom:302.040435px;}
.y1f_c00099{bottom:361.439685px;}
.y1e_c00099{bottom:391.320285px;}
.y1d_c00099{bottom:421.560285px;}
.y1c_c00099{bottom:429.480285px;}
.y1b_c00099{bottom:451.440765px;}
.y1a_c00099{bottom:481.680675px;}
.y19_c00099{bottom:511.920600px;}
.y18_c00099{bottom:511.920690px;}
.y17_c00099{bottom:542.160600px;}
.y16_c00099{bottom:571.680135px;}
.y15_c00099{bottom:630.719520px;}
.y14_c00099{bottom:660.600135px;}
.y13_c00099{bottom:660.601110px;}
.y12_c00099{bottom:690.480840px;}
.y11_c00099{bottom:720.720750px;}
.y10_c00099{bottom:750.599670px;}
.yf_c00099{bottom:780.839535px;}
.ye_c00099{bottom:780.840435px;}
.yd_c00099{bottom:810.720150px;}
.yc_c00099{bottom:840.600765px;}
.yb_c00099{bottom:840.601050px;}
.ya_c00099{bottom:870.120570px;}
.y9_c00099{bottom:900.360495px;}
.y8_c00099{bottom:930.240210px;}
.y7_c00099{bottom:960.119940px;}
.y6_c00099{bottom:989.639655px;}
.y5_c00099{bottom:989.640540px;}
.y4_c00099{bottom:1019.520270px;}
.y3_c00099{bottom:1019.521110px;}
.y2_c00099{bottom:1079.640750px;}
.y1_c00099{bottom:1138.320825px;}
.h16_c00099{height:20.337891px;}
.h15_c00099{height:23.718750px;}
.h11_c00099{height:31.289062px;}
.h13_c00099{height:34.095703px;}
.h18_c00099{height:35.982422px;}
.h19_c00099{height:36.764648px;}
.h28_c00099{height:37.540283px;}
.h17_c00099{height:37.546875px;}
.h1d_c00099{height:38.329102px;}
.h10_c00099{height:46.151367px;}
.h1a_c00099{height:50.062500px;}
.h27_c00099{height:52.998047px;}
.h26_c00099{height:54.470215px;}
.h1e_c00099{height:55.538086px;}
.h25_c00099{height:57.414551px;}
.h24_c00099{height:58.150635px;}
.h22_c00099{height:60.358887px;}
.h23_c00099{height:61.980469px;}
.h21_c00099{height:63.303223px;}
.h20_c00099{height:64.039307px;}
.h1f_c00099{height:64.775391px;}
.h7_c00099{height:73.529297px;}
.hb_c00099{height:75.816650px;}
.h4_c00099{height:75.875977px;}
.hd_c00099{height:76.552734px;}
.h8_c00099{height:77.288818px;}
.h1_c00099{height:77.440430px;}
.ha_c00099{height:78.024902px;}
.h9_c00099{height:78.760986px;}
.h5_c00099{height:79.365234px;}
.h6_c00099{height:79.787109px;}
.he_c00099{height:80.121094px;}
.hc_c00099{height:80.233154px;}
.h3_c00099{height:80.876953px;}
.h2a_c00099{height:80.969238px;}
.hf_c00099{height:82.388672px;}
.h12_c00099{height:83.698242px;}
.h2_c00099{height:88.945312px;}
.h14_c00099{height:89.956055px;}
.h1b_c00099{height:97.778320px;}
.h29_c00099{height:97.899170px;}
.h1c_c00099{height:105.600586px;}
.h0_c00099{height:1263.000000px;}
.w0_c00099{width:892.500000px;}
.x0_c00099{left:0.000000px;}
.x17_c00099{left:140.039400px;}
.x1_c00099{left:141.118815px;}
.xd_c00099{left:142.200465px;}
.x38_c00099{left:154.798515px;}
.x24_c00099{left:156.238785px;}
.x21_c00099{left:165.958350px;}
.x25_c00099{left:169.199850px;}
.x18_c00099{left:174.239250px;}
.x26_c00099{left:182.159415px;}
.x2_c00099{left:192.599100px;}
.x39_c00099{left:201.959400px;}
.x27_c00099{left:203.399850px;}
.x43_c00099{left:210.238785px;}
.x28_c00099{left:212.399250px;}
.x22_c00099{left:219.958350px;}
.x3a_c00099{left:223.918350px;}
.x44_c00099{left:225.358635px;}
.x3_c00099{left:227.159850px;}
.x29_c00099{left:232.919535px;}
.x2a_c00099{left:265.319850px;}
.x41_c00099{left:266.399250px;}
.x42_c00099{left:280.078785px;}
.x2b_c00099{left:282.598500px;}
.x19_c00099{left:284.399850px;}
.x2c_c00099{left:295.198785px;}
.x2d_c00099{left:300.958350px;}
.x2e_c00099{left:339.838515px;}
.xe_c00099{left:383.039385px;}
.xf_c00099{left:400.679070px;}
.x23_c00099{left:402.119385px;}
.x13_c00099{left:408.958335px;}
.x2f_c00099{left:415.439670px;}
.x1a_c00099{left:418.318770px;}
.x14_c00099{left:433.438665px;}
.x4_c00099{left:441.358665px;}
.x3c_c00099{left:443.159820px;}
.x30_c00099{left:444.959385px;}
.x3d_c00099{left:463.319235px;}
.x1b_c00099{left:471.598530px;}
.x3e_c00099{left:496.798920px;}
.x3b_c00099{left:512.279850px;}
.x31_c00099{left:513.359250px;}
.x3f_c00099{left:518.398635px;}
.x5_c00099{left:519.838950px;}
.x1c_c00099{left:522.358665px;}
.x32_c00099{left:534.238770px;}
.x6_c00099{left:540.359250px;}
.x7_c00099{left:561.958920px;}
.x33_c00099{left:566.279850px;}
.x8_c00099{left:583.199385px;}
.x9_c00099{left:598.319235px;}
.x34_c00099{left:606.239220px;}
.xa_c00099{left:613.798515px;}
.x35_c00099{left:636.479235px;}
.x10_c00099{left:646.198785px;}
.x36_c00099{left:647.279850px;}
.x15_c00099{left:659.878320px;}
.x37_c00099{left:664.199385px;}
.x11_c00099{left:668.159370px;}
.x16_c00099{left:685.078770px;}
.x1d_c00099{left:704.519670px;}
.x40_c00099{left:714.239220px;}
.x1e_c00099{left:738.719520px;}
.xb_c00099{left:741.239220px;}
.x1f_c00099{left:751.319820px;}
.xc_c00099{left:756.000000px;}
.x12_c00099{left:762.118785px;}
.x20_c00099{left:768.239220px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls36_c00099{letter-spacing:-25.334100pt;}
.ls2a_c00099{letter-spacing:-11.334400pt;}
.ls2e_c00099{letter-spacing:-10.862133pt;}
.ls30_c00099{letter-spacing:-9.829580pt;}
.ls35_c00099{letter-spacing:-9.258333pt;}
.ls18_c00099{letter-spacing:-7.924000pt;}
.ls34_c00099{letter-spacing:-7.368533pt;}
.ls16_c00099{letter-spacing:-7.266700pt;}
.ls25_c00099{letter-spacing:-6.601000pt;}
.ls14_c00099{letter-spacing:-5.943000pt;}
.ls2f_c00099{letter-spacing:-5.699200pt;}
.ls17_c00099{letter-spacing:-5.285000pt;}
.ls1a_c00099{letter-spacing:-4.664473pt;}
.lse_c00099{letter-spacing:-4.619300pt;}
.ls26_c00099{letter-spacing:-4.493300pt;}
.ls12_c00099{letter-spacing:-4.458333pt;}
.ls2c_c00099{letter-spacing:-4.215293pt;}
.ls2d_c00099{letter-spacing:-4.172800pt;}
.ls15_c00099{letter-spacing:-3.961300pt;}
.ls1b_c00099{letter-spacing:-3.958933pt;}
.ls27_c00099{letter-spacing:-3.852887pt;}
.lsc_c00099{letter-spacing:-3.304000pt;}
.ls13_c00099{letter-spacing:-3.180000pt;}
.ls31_c00099{letter-spacing:-3.136320pt;}
.lsb_c00099{letter-spacing:-3.128680pt;}
.ls3c_c00099{letter-spacing:-2.787453pt;}
.ls4_c00099{letter-spacing:-2.746333pt;}
.ls6_c00099{letter-spacing:-2.722467pt;}
.ls23_c00099{letter-spacing:-2.642933pt;}
.lsf_c00099{letter-spacing:-2.639000pt;}
.ls20_c00099{letter-spacing:-2.565333pt;}
.ls28_c00099{letter-spacing:-2.297067pt;}
.ls1_c00099{letter-spacing:-2.197140pt;}
.ls5_c00099{letter-spacing:-2.053687pt;}
.ls1f_c00099{letter-spacing:-2.039420pt;}
.lsd_c00099{letter-spacing:-1.981700pt;}
.ls1d_c00099{letter-spacing:-1.960000pt;}
.ls33_c00099{letter-spacing:-1.842713pt;}
.ls3_c00099{letter-spacing:-1.369600pt;}
.ls22_c00099{letter-spacing:-1.357300pt;}
.ls32_c00099{letter-spacing:-1.334000pt;}
.ls10_c00099{letter-spacing:-1.323700pt;}
.lsa_c00099{letter-spacing:-0.731940pt;}
.ls19_c00099{letter-spacing:-0.685980pt;}
.ls21_c00099{letter-spacing:-0.679000pt;}
.ls11_c00099{letter-spacing:-0.658000pt;}
.ls1e_c00099{letter-spacing:-0.650300pt;}
.ls9_c00099{letter-spacing:0.000000pt;}
.ls38_c00099{letter-spacing:0.621867pt;}
.ls0_c00099{letter-spacing:0.658000pt;}
.ls8_c00099{letter-spacing:0.731940pt;}
.ls3f_c00099{letter-spacing:1.095200pt;}
.ls7_c00099{letter-spacing:1.357300pt;}
.ls3b_c00099{letter-spacing:1.744413pt;}
.ls29_c00099{letter-spacing:2.075800pt;}
.ls3a_c00099{letter-spacing:2.809333pt;}
.ls2b_c00099{letter-spacing:3.136000pt;}
.ls3e_c00099{letter-spacing:3.286400pt;}
.ls24_c00099{letter-spacing:4.081000pt;}
.ls40_c00099{letter-spacing:5.539200pt;}
.ls39_c00099{letter-spacing:5.606627pt;}
.ls41_c00099{letter-spacing:5.963600pt;}
.ls2_c00099{letter-spacing:6.072000pt;}
.ls3d_c00099{letter-spacing:8.453527pt;}
.ls37_c00099{letter-spacing:10.208333pt;}
.ls1c_c00099{letter-spacing:36.902133pt;}
.ws0_c00099{word-spacing:0.000000pt;}
._f_c00099{margin-left:-4.920168pt;}
._10_c00099{margin-left:-2.155767pt;}
._11_c00099{margin-left:-1.234308pt;}
._0_c00099{width:1.783059pt;}
._6_c00099{width:3.204085pt;}
._2_c00099{width:4.492573pt;}
._1_c00099{width:6.027392pt;}
._17_c00099{width:7.237935pt;}
._3_c00099{width:8.336604pt;}
._5_c00099{width:9.439979pt;}
._4_c00099{width:11.241947pt;}
._8_c00099{width:12.182443pt;}
._7_c00099{width:13.246408pt;}
._20_c00099{width:14.281061pt;}
._18_c00099{width:15.602819pt;}
._c_c00099{width:16.802254pt;}
._d_c00099{width:18.313524pt;}
._a_c00099{width:19.939513pt;}
._b_c00099{width:21.613147pt;}
._1f_c00099{width:23.108162pt;}
._16_c00099{width:25.147244pt;}
._12_c00099{width:27.146858pt;}
._1e_c00099{width:28.366602pt;}
._9_c00099{width:29.799370pt;}
._e_c00099{width:31.686389pt;}
._19_c00099{width:32.604891pt;}
._1c_c00099{width:33.738222pt;}
._1d_c00099{width:35.183219pt;}
._1a_c00099{width:36.289030pt;}
._15_c00099{width:37.589058pt;}
._13_c00099{width:39.494581pt;}
._1b_c00099{width:40.632068pt;}
._14_c00099{width:44.864898pt;}
.fs10_c00099{font-size:17.333333pt;}
.fsf_c00099{font-size:21.333333pt;}
.fsc_c00099{font-size:26.666667pt;}
.fsd_c00099{font-size:30.666667pt;}
.fs12_c00099{font-size:31.333333pt;}
.fs11_c00099{font-size:32.000000pt;}
.fs16_c00099{font-size:32.666667pt;}
.fs20_c00099{font-size:34.000000pt;}
.fsb_c00099{font-size:39.333333pt;}
.fs13_c00099{font-size:42.666667pt;}
.fs17_c00099{font-size:47.333333pt;}
.fs1f_c00099{font-size:48.000000pt;}
.fs1e_c00099{font-size:49.333333pt;}
.fs1d_c00099{font-size:52.000000pt;}
.fs1c_c00099{font-size:52.666667pt;}
.fs1b_c00099{font-size:54.666667pt;}
.fs1a_c00099{font-size:57.333333pt;}
.fs19_c00099{font-size:58.000000pt;}
.fs18_c00099{font-size:58.666667pt;}
.fs6_c00099{font-size:62.666667pt;}
.fs3_c00099{font-size:64.666667pt;}
.fs0_c00099{font-size:66.000000pt;}
.fs5_c00099{font-size:68.000000pt;}
.fs8_c00099{font-size:68.666667pt;}
.fsa_c00099{font-size:69.333333pt;}
.fs4_c00099{font-size:70.000000pt;}
.fs7_c00099{font-size:70.666667pt;}
.fs2_c00099{font-size:71.333333pt;}
.fs9_c00099{font-size:72.666667pt;}
.fs22_c00099{font-size:73.333333pt;}
.fse_c00099{font-size:76.666667pt;}
.fs1_c00099{font-size:80.000000pt;}
.fs14_c00099{font-size:83.333333pt;}
.fs21_c00099{font-size:88.666667pt;}
.fs15_c00099{font-size:90.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y26_c00099{bottom:162.240280pt;}
.y25_c00099{bottom:162.240413pt;}
.y23_c00099{bottom:188.479933pt;}
.y24_c00099{bottom:188.480000pt;}
.y21_c00099{bottom:215.359013pt;}
.y22_c00099{bottom:215.359867pt;}
.y20_c00099{bottom:268.480387pt;}
.y1f_c00099{bottom:321.279720pt;}
.y1e_c00099{bottom:347.840253pt;}
.y1d_c00099{bottom:374.720253pt;}
.y1c_c00099{bottom:381.760253pt;}
.y1b_c00099{bottom:401.280680pt;}
.y1a_c00099{bottom:428.160600pt;}
.y19_c00099{bottom:455.040533pt;}
.y18_c00099{bottom:455.040613pt;}
.y17_c00099{bottom:481.920533pt;}
.y16_c00099{bottom:508.160120pt;}
.y15_c00099{bottom:560.639573pt;}
.y14_c00099{bottom:587.200120pt;}
.y13_c00099{bottom:587.200987pt;}
.y12_c00099{bottom:613.760747pt;}
.y11_c00099{bottom:640.640667pt;}
.y10_c00099{bottom:667.199707pt;}
.yf_c00099{bottom:694.079587pt;}
.ye_c00099{bottom:694.080387pt;}
.yd_c00099{bottom:720.640133pt;}
.yc_c00099{bottom:747.200680pt;}
.yb_c00099{bottom:747.200933pt;}
.ya_c00099{bottom:773.440507pt;}
.y9_c00099{bottom:800.320440pt;}
.y8_c00099{bottom:826.880187pt;}
.y7_c00099{bottom:853.439947pt;}
.y6_c00099{bottom:879.679693pt;}
.y5_c00099{bottom:879.680480pt;}
.y4_c00099{bottom:906.240240pt;}
.y3_c00099{bottom:906.240987pt;}
.y2_c00099{bottom:959.680667pt;}
.y1_c00099{bottom:1011.840733pt;}
.h16_c00099{height:18.078125pt;}
.h15_c00099{height:21.083333pt;}
.h11_c00099{height:27.812500pt;}
.h13_c00099{height:30.307292pt;}
.h18_c00099{height:31.984375pt;}
.h19_c00099{height:32.679688pt;}
.h28_c00099{height:33.369141pt;}
.h17_c00099{height:33.375000pt;}
.h1d_c00099{height:34.070312pt;}
.h10_c00099{height:41.023438pt;}
.h1a_c00099{height:44.500000pt;}
.h27_c00099{height:47.109375pt;}
.h26_c00099{height:48.417969pt;}
.h1e_c00099{height:49.367188pt;}
.h25_c00099{height:51.035156pt;}
.h24_c00099{height:51.689453pt;}
.h22_c00099{height:53.652344pt;}
.h23_c00099{height:55.093750pt;}
.h21_c00099{height:56.269531pt;}
.h20_c00099{height:56.923828pt;}
.h1f_c00099{height:57.578125pt;}
.h7_c00099{height:65.359375pt;}
.hb_c00099{height:67.392578pt;}
.h4_c00099{height:67.445312pt;}
.hd_c00099{height:68.046875pt;}
.h8_c00099{height:68.701172pt;}
.h1_c00099{height:68.835938pt;}
.ha_c00099{height:69.355469pt;}
.h9_c00099{height:70.009766pt;}
.h5_c00099{height:70.546875pt;}
.h6_c00099{height:70.921875pt;}
.he_c00099{height:71.218750pt;}
.hc_c00099{height:71.318359pt;}
.h3_c00099{height:71.890625pt;}
.h2a_c00099{height:71.972656pt;}
.hf_c00099{height:73.234375pt;}
.h12_c00099{height:74.398438pt;}
.h2_c00099{height:79.062500pt;}
.h14_c00099{height:79.960938pt;}
.h1b_c00099{height:86.914062pt;}
.h29_c00099{height:87.021484pt;}
.h1c_c00099{height:93.867188pt;}
.h0_c00099{height:1122.666667pt;}
.w0_c00099{width:793.333333pt;}
.x0_c00099{left:0.000000pt;}
.x17_c00099{left:124.479467pt;}
.x1_c00099{left:125.438947pt;}
.xd_c00099{left:126.400413pt;}
.x38_c00099{left:137.598680pt;}
.x24_c00099{left:138.878920pt;}
.x21_c00099{left:147.518533pt;}
.x25_c00099{left:150.399867pt;}
.x18_c00099{left:154.879333pt;}
.x26_c00099{left:161.919480pt;}
.x2_c00099{left:171.199200pt;}
.x39_c00099{left:179.519467pt;}
.x27_c00099{left:180.799867pt;}
.x43_c00099{left:186.878920pt;}
.x28_c00099{left:188.799333pt;}
.x22_c00099{left:195.518533pt;}
.x3a_c00099{left:199.038533pt;}
.x44_c00099{left:200.318787pt;}
.x3_c00099{left:201.919867pt;}
.x29_c00099{left:207.039587pt;}
.x2a_c00099{left:235.839867pt;}
.x41_c00099{left:236.799333pt;}
.x42_c00099{left:248.958920pt;}
.x2b_c00099{left:251.198667pt;}
.x19_c00099{left:252.799867pt;}
.x2c_c00099{left:262.398920pt;}
.x2d_c00099{left:267.518533pt;}
.x2e_c00099{left:302.078680pt;}
.xe_c00099{left:340.479453pt;}
.xf_c00099{left:356.159173pt;}
.x23_c00099{left:357.439453pt;}
.x13_c00099{left:363.518520pt;}
.x2f_c00099{left:369.279707pt;}
.x1a_c00099{left:371.838907pt;}
.x14_c00099{left:385.278813pt;}
.x4_c00099{left:392.318813pt;}
.x3c_c00099{left:393.919840pt;}
.x30_c00099{left:395.519453pt;}
.x3d_c00099{left:411.839320pt;}
.x1b_c00099{left:419.198693pt;}
.x3e_c00099{left:441.599040pt;}
.x3b_c00099{left:455.359867pt;}
.x31_c00099{left:456.319333pt;}
.x3f_c00099{left:460.798787pt;}
.x5_c00099{left:462.079067pt;}
.x1c_c00099{left:464.318813pt;}
.x32_c00099{left:474.878907pt;}
.x6_c00099{left:480.319333pt;}
.x7_c00099{left:499.519040pt;}
.x33_c00099{left:503.359867pt;}
.x8_c00099{left:518.399453pt;}
.x9_c00099{left:531.839320pt;}
.x34_c00099{left:538.879307pt;}
.xa_c00099{left:545.598680pt;}
.x35_c00099{left:565.759320pt;}
.x10_c00099{left:574.398920pt;}
.x36_c00099{left:575.359867pt;}
.x15_c00099{left:586.558507pt;}
.x37_c00099{left:590.399453pt;}
.x11_c00099{left:593.919440pt;}
.x16_c00099{left:608.958907pt;}
.x1d_c00099{left:626.239707pt;}
.x40_c00099{left:634.879307pt;}
.x1e_c00099{left:656.639573pt;}
.xb_c00099{left:658.879307pt;}
.x1f_c00099{left:667.839840pt;}
.xc_c00099{left:672.000000pt;}
.x12_c00099{left:677.438920pt;}
.x20_c00099{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10efa15576769d43465debf2.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_44908d8e247ff57926e061b2.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_0e57bf86e25297453cf811d7.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_f0e2b026aed697d606898ebd.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.364746;font-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.174383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.lsd_c00100{letter-spacing:-14.732168px;}
.lsb_c00100{letter-spacing:-12.110963px;}
.lsc_c00100{letter-spacing:-9.843750px;}
.lsf_c00100{letter-spacing:-9.087750px;}
.ls12_c00100{letter-spacing:-7.576538px;}
.ls11_c00100{letter-spacing:-6.811875px;}
.ls13_c00100{letter-spacing:-6.291600px;}
.ls14_c00100{letter-spacing:-6.055875px;}
.lse_c00100{letter-spacing:-5.300663px;}
.ls3_c00100{letter-spacing:-3.860025px;}
.lsa_c00100{letter-spacing:-3.787875px;}
.ls0_c00100{letter-spacing:-3.089625px;}
.ls6_c00100{letter-spacing:-3.031875px;}
.ls15_c00100{letter-spacing:-3.000375px;}
.ls2_c00100{letter-spacing:-2.310398px;}
.ls9_c00100{letter-spacing:-2.267213px;}
.ls10_c00100{letter-spacing:-2.129805px;}
.ls5_c00100{letter-spacing:-1.540800px;}
.ls7_c00100{letter-spacing:-1.512000px;}
.ls1_c00100{letter-spacing:-1.467750px;}
.ls8_c00100{letter-spacing:-0.756000px;}
.ls4_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;}
._4_c00100{margin-left:-5.633673px;}
._f_c00100{margin-left:-4.528367px;}
._7_c00100{margin-left:-2.527754px;}
._5_c00100{margin-left:-1.063004px;}
._15_c00100{width:1.225701px;}
._0_c00100{width:2.690844px;}
._17_c00100{width:3.815406px;}
._6_c00100{width:5.047875px;}
._3_c00100{width:6.659701px;}
._d_c00100{width:7.688552px;}
._1_c00100{width:9.052632px;}
._18_c00100{width:10.136639px;}
._2_c00100{width:11.456367px;}
._16_c00100{width:12.764048px;}
._1c_c00100{width:13.766221px;}
._19_c00100{width:15.578441px;}
._e_c00100{width:17.027870px;}
._1b_c00100{width:18.695733px;}
._13_c00100{width:19.803747px;}
._10_c00100{width:21.026613px;}
._11_c00100{width:22.917522px;}
._1a_c00100{width:23.930247px;}
._12_c00100{width:26.010762px;}
._14_c00100{width:27.341394px;}
._9_c00100{width:28.632107px;}
._b_c00100{width:33.377400px;}
._c_c00100{width:35.596817px;}
._a_c00100{width:36.988936px;}
._8_c00100{width:39.140083px;}
.fc0_c00100{color:transparent;}
.fs4_c00100{font-size:72.750000px;}
.fs9_c00100{font-size:76.500000px;}
.fs1_c00100{font-size:77.250000px;}
.fs3_c00100{font-size:78.750000px;}
.fs7_c00100{font-size:79.500000px;}
.fs0_c00100{font-size:80.250000px;}
.fs6_c00100{font-size:81.750000px;}
.fs8_c00100{font-size:82.500000px;}
.fs5_c00100{font-size:83.250000px;}
.fs2_c00100{font-size:121.500000px;}
.y0_c00100{bottom:0.000000px;}
.y29_c00100{bottom:181.079940px;}
.y28_c00100{bottom:211.319850px;}
.y27_c00100{bottom:211.320900px;}
.y26_c00100{bottom:240.840435px;}
.y25_c00100{bottom:270.720150px;}
.y24_c00100{bottom:270.721185px;}
.y23_c00100{bottom:300.240720px;}
.y22_c00100{bottom:330.120435px;}
.y21_c00100{bottom:330.120525px;}
.y20_c00100{bottom:360.000255px;}
.y1f_c00100{bottom:389.879970px;}
.y1e_c00100{bottom:450.000600px;}
.y1d_c00100{bottom:450.001380px;}
.y1c_c00100{bottom:480.599670px;}
.y1b_c00100{bottom:480.600750px;}
.y1a_c00100{bottom:510.480465px;}
.y19_c00100{bottom:540.000000px;}
.y18_c00100{bottom:540.000870px;}
.y17_c00100{bottom:569.520405px;}
.y16_c00100{bottom:599.041740px;}
.y15_c00100{bottom:658.440990px;}
.yd_c00100{bottom:729.360900px;}
.yc_c00100{bottom:729.363000px;}
.y14_c00100{bottom:758.520510px;}
.yb_c00100{bottom:758.522055px;}
.y13_c00100{bottom:788.400240px;}
.ya_c00100{bottom:788.761965px;}
.y9_c00100{bottom:829.082055px;}
.y12_c00100{bottom:858.959820px;}
.y8_c00100{bottom:858.961785px;}
.y11_c00100{bottom:888.839535px;}
.y7_c00100{bottom:888.841500px;}
.y6_c00100{bottom:929.161590px;}
.y10_c00100{bottom:958.678305px;}
.y5_c00100{bottom:959.041305px;}
.yf_c00100{bottom:988.920315px;}
.y4_c00100{bottom:988.921035px;}
.ye_c00100{bottom:1028.519715px;}
.y3_c00100{bottom:1028.880615px;}
.y2_c00100{bottom:1099.440855px;}
.y1_c00100{bottom:1129.680720px;}
.h5_c00100{height:71.400146px;}
.hb_c00100{height:75.080566px;}
.h4_c00100{height:77.288818px;}
.h2_c00100{height:77.853516px;}
.h8_c00100{height:78.024902px;}
.hc_c00100{height:78.760986px;}
.h7_c00100{height:80.791992px;}
.h1_c00100{height:80.876953px;}
.h9_c00100{height:80.969238px;}
.h6_c00100{height:81.705322px;}
.ha_c00100{height:83.698242px;}
.h3_c00100{height:126.720703px;}
.h0_c00100{height:1263.000000px;}
.w0_c00100{width:892.500000px;}
.x0_c00100{left:0.000000px;}
.x1c_c00100{left:138.957960px;}
.xb_c00100{left:140.039385px;}
.xc_c00100{left:141.117990px;}
.xd_c00100{left:177.120000px;}
.xe_c00100{left:214.918950px;}
.xa_c00100{left:233.278815px;}
.x1_c00100{left:235.439250px;}
.x4_c00100{left:247.678500px;}
.x5_c00100{left:259.919535px;}
.x13_c00100{left:267.839535px;}
.x2_c00100{left:294.478635px;}
.x3_c00100{left:324.000000px;}
.x6_c00100{left:350.639100px;}
.x8_c00100{left:467.999385px;}
.x9_c00100{left:482.758530px;}
.x7_c00100{left:498.959385px;}
.xf_c00100{left:501.838530px;}
.x10_c00100{left:564.119385px;}
.x18_c00100{left:622.438620px;}
.x19_c00100{left:641.879520px;}
.x14_c00100{left:645.839535px;}
.x15_c00100{left:664.558635px;}
.x11_c00100{left:668.159370px;}
.x12_c00100{left:682.199850px;}
.x16_c00100{left:686.159820px;}
.x1d_c00100{left:700.198785px;}
.x17_c00100{left:702.359250px;}
.x1a_c00100{left:747.359850px;}
.x1b_c00100{left:762.838950px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.lsd_c00100{letter-spacing:-13.095260pt;}
.lsb_c00100{letter-spacing:-10.765300pt;}
.lsc_c00100{letter-spacing:-8.750000pt;}
.lsf_c00100{letter-spacing:-8.078000pt;}
.ls12_c00100{letter-spacing:-6.734700pt;}
.ls11_c00100{letter-spacing:-6.055000pt;}
.ls13_c00100{letter-spacing:-5.592533pt;}
.ls14_c00100{letter-spacing:-5.383000pt;}
.lse_c00100{letter-spacing:-4.711700pt;}
.ls3_c00100{letter-spacing:-3.431133pt;}
.lsa_c00100{letter-spacing:-3.367000pt;}
.ls0_c00100{letter-spacing:-2.746333pt;}
.ls6_c00100{letter-spacing:-2.695000pt;}
.ls15_c00100{letter-spacing:-2.667000pt;}
.ls2_c00100{letter-spacing:-2.053687pt;}
.ls9_c00100{letter-spacing:-2.015300pt;}
.ls10_c00100{letter-spacing:-1.893160pt;}
.ls5_c00100{letter-spacing:-1.369600pt;}
.ls7_c00100{letter-spacing:-1.344000pt;}
.ls1_c00100{letter-spacing:-1.304667pt;}
.ls8_c00100{letter-spacing:-0.672000pt;}
.ls4_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
._4_c00100{margin-left:-5.007710pt;}
._f_c00100{margin-left:-4.025215pt;}
._7_c00100{margin-left:-2.246892pt;}
._5_c00100{margin-left:-0.944892pt;}
._15_c00100{width:1.089512pt;}
._0_c00100{width:2.391862pt;}
._17_c00100{width:3.391472pt;}
._6_c00100{width:4.487000pt;}
._3_c00100{width:5.919734pt;}
._d_c00100{width:6.834269pt;}
._1_c00100{width:8.046784pt;}
._18_c00100{width:9.010346pt;}
._2_c00100{width:10.183437pt;}
._16_c00100{width:11.345820pt;}
._1c_c00100{width:12.236641pt;}
._19_c00100{width:13.847503pt;}
._e_c00100{width:15.135885pt;}
._1b_c00100{width:16.618430pt;}
._13_c00100{width:17.603331pt;}
._10_c00100{width:18.690323pt;}
._11_c00100{width:20.371131pt;}
._1a_c00100{width:21.271331pt;}
._12_c00100{width:23.120677pt;}
._14_c00100{width:24.303462pt;}
._9_c00100{width:25.450762pt;}
._b_c00100{width:29.668800pt;}
._c_c00100{width:31.641615pt;}
._a_c00100{width:32.879054pt;}
._8_c00100{width:34.791185pt;}
.fs4_c00100{font-size:64.666667pt;}
.fs9_c00100{font-size:68.000000pt;}
.fs1_c00100{font-size:68.666667pt;}
.fs3_c00100{font-size:70.000000pt;}
.fs7_c00100{font-size:70.666667pt;}
.fs0_c00100{font-size:71.333333pt;}
.fs6_c00100{font-size:72.666667pt;}
.fs8_c00100{font-size:73.333333pt;}
.fs5_c00100{font-size:74.000000pt;}
.fs2_c00100{font-size:108.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y29_c00100{bottom:160.959947pt;}
.y28_c00100{bottom:187.839867pt;}
.y27_c00100{bottom:187.840800pt;}
.y26_c00100{bottom:214.080387pt;}
.y25_c00100{bottom:240.640133pt;}
.y24_c00100{bottom:240.641053pt;}
.y23_c00100{bottom:266.880640pt;}
.y22_c00100{bottom:293.440387pt;}
.y21_c00100{bottom:293.440467pt;}
.y20_c00100{bottom:320.000227pt;}
.y1f_c00100{bottom:346.559973pt;}
.y1e_c00100{bottom:400.000533pt;}
.y1d_c00100{bottom:400.001227pt;}
.y1c_c00100{bottom:427.199707pt;}
.y1b_c00100{bottom:427.200667pt;}
.y1a_c00100{bottom:453.760413pt;}
.y19_c00100{bottom:480.000000pt;}
.y18_c00100{bottom:480.000773pt;}
.y17_c00100{bottom:506.240360pt;}
.y16_c00100{bottom:532.481547pt;}
.y15_c00100{bottom:585.280880pt;}
.yd_c00100{bottom:648.320800pt;}
.yc_c00100{bottom:648.322667pt;}
.y14_c00100{bottom:674.240453pt;}
.yb_c00100{bottom:674.241827pt;}
.y13_c00100{bottom:700.800213pt;}
.ya_c00100{bottom:701.121747pt;}
.y9_c00100{bottom:736.961827pt;}
.y12_c00100{bottom:763.519840pt;}
.y8_c00100{bottom:763.521587pt;}
.y11_c00100{bottom:790.079587pt;}
.y7_c00100{bottom:790.081333pt;}
.y6_c00100{bottom:825.921413pt;}
.y10_c00100{bottom:852.158493pt;}
.y5_c00100{bottom:852.481160pt;}
.yf_c00100{bottom:879.040280pt;}
.y4_c00100{bottom:879.040920pt;}
.ye_c00100{bottom:914.239747pt;}
.y3_c00100{bottom:914.560547pt;}
.y2_c00100{bottom:977.280760pt;}
.y1_c00100{bottom:1004.160640pt;}
.h5_c00100{height:63.466797pt;}
.hb_c00100{height:66.738281pt;}
.h4_c00100{height:68.701172pt;}
.h2_c00100{height:69.203125pt;}
.h8_c00100{height:69.355469pt;}
.hc_c00100{height:70.009766pt;}
.h7_c00100{height:71.815104pt;}
.h1_c00100{height:71.890625pt;}
.h9_c00100{height:71.972656pt;}
.h6_c00100{height:72.626953pt;}
.ha_c00100{height:74.398438pt;}
.h3_c00100{height:112.640625pt;}
.h0_c00100{height:1122.666667pt;}
.w0_c00100{width:793.333333pt;}
.x0_c00100{left:0.000000pt;}
.x1c_c00100{left:123.518187pt;}
.xb_c00100{left:124.479453pt;}
.xc_c00100{left:125.438213pt;}
.xd_c00100{left:157.440000pt;}
.xe_c00100{left:191.039067pt;}
.xa_c00100{left:207.358947pt;}
.x1_c00100{left:209.279333pt;}
.x4_c00100{left:220.158667pt;}
.x5_c00100{left:231.039587pt;}
.x13_c00100{left:238.079587pt;}
.x2_c00100{left:261.758787pt;}
.x3_c00100{left:288.000000pt;}
.x6_c00100{left:311.679200pt;}
.x8_c00100{left:415.999453pt;}
.x9_c00100{left:429.118693pt;}
.x7_c00100{left:443.519453pt;}
.xf_c00100{left:446.078693pt;}
.x10_c00100{left:501.439453pt;}
.x18_c00100{left:553.278773pt;}
.x19_c00100{left:570.559573pt;}
.x14_c00100{left:574.079587pt;}
.x15_c00100{left:590.718787pt;}
.x11_c00100{left:593.919440pt;}
.x12_c00100{left:606.399867pt;}
.x16_c00100{left:609.919840pt;}
.x1d_c00100{left:622.398920pt;}
.x17_c00100{left:624.319333pt;}
.x1a_c00100{left:664.319867pt;}
.x1b_c00100{left:678.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_089768e2c6c63f4e40dd20c8.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_9d940225d157739130db9df9.woff2')format("woff");}.ff2_c00101{font-family:ff2_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:ff3_c00101;src:url('chunks/assets/font_8e4e99567c5b50dfc3abd59d.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_5bf9048e8e27efd7075db2a9.woff2')format("woff");}.ff4_c00101{font-family:ff4_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:ff5_c00101;src:url('chunks/assets/font_0e1c04caffbb039e13b0e82c.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff6_c00101{font-family:ff6_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;}
.m1d_c00101{transform:matrix(0.128440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128440,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m1f_c00101{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{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_c00101{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00101{transform:matrix(0.401596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401596,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.409524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409524,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls14_c00101{letter-spacing:-14.861333px;}
.ls1d_c00101{letter-spacing:-11.793600px;}
.ls11_c00101{letter-spacing:-11.018325px;}
.ls1b_c00101{letter-spacing:-10.824675px;}
.ls16_c00101{letter-spacing:-10.402875px;}
.ls12_c00101{letter-spacing:-8.999100px;}
.ls21_c00101{letter-spacing:-8.914500px;}
.ls6_c00101{letter-spacing:-7.426125px;}
.ls4_c00101{letter-spacing:-5.945625px;}
.ls9_c00101{letter-spacing:-5.196713px;}
.lsc_c00101{letter-spacing:-5.109375px;}
.ls5_c00101{letter-spacing:-4.456463px;}
.ls20_c00101{letter-spacing:-4.381800px;}
.ls1f_c00101{letter-spacing:-3.942675px;}
.ls3_c00101{letter-spacing:-3.717000px;}
.ls1_c00101{letter-spacing:-2.968875px;}
.ls1e_c00101{letter-spacing:-2.408963px;}
.lsf_c00101{letter-spacing:-2.271150px;}
.ls2_c00101{letter-spacing:-2.229413px;}
.ls1a_c00101{letter-spacing:-1.755750px;}
.ls19_c00101{letter-spacing:-1.722015px;}
.ls10_c00101{letter-spacing:-1.575600px;}
.ls7_c00101{letter-spacing:-1.489163px;}
.ls17_c00101{letter-spacing:-1.469955px;}
.ls15_c00101{letter-spacing:-1.410750px;}
.ls1c_c00101{letter-spacing:-1.390800px;}
.ls18_c00101{letter-spacing:-0.913500px;}
.lse_c00101{letter-spacing:-0.787178px;}
.ls13_c00101{letter-spacing:-0.780750px;}
.ls8_c00101{letter-spacing:-0.740250px;}
.lsb_c00101{letter-spacing:0.000000px;}
.lsd_c00101{letter-spacing:1.471725px;}
.ls22_c00101{letter-spacing:1.569600px;}
.lsa_c00101{letter-spacing:3.637710px;}
.ls0_c00101{letter-spacing:6.685875px;}
.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;}
._1f_c00101{margin-left:-7.910720px;}
._18_c00101{margin-left:-5.210145px;}
._15_c00101{margin-left:-3.648963px;}
._c_c00101{margin-left:-1.272496px;}
._16_c00101{width:1.042234px;}
._17_c00101{width:2.070040px;}
._13_c00101{width:3.858928px;}
._12_c00101{width:4.987089px;}
._14_c00101{width:6.199735px;}
._b_c00101{width:7.597414px;}
._a_c00101{width:9.321296px;}
._1e_c00101{width:10.481031px;}
._19_c00101{width:11.499268px;}
._9_c00101{width:12.523167px;}
._1_c00101{width:14.224152px;}
._5_c00101{width:15.373055px;}
._3_c00101{width:17.874437px;}
._4_c00101{width:19.371519px;}
._2_c00101{width:20.942626px;}
._6_c00101{width:22.081857px;}
._0_c00101{width:23.304681px;}
._20_c00101{width:24.406482px;}
._8_c00101{width:25.544702px;}
._1c_c00101{width:27.544224px;}
._1d_c00101{width:29.381536px;}
._7_c00101{width:30.720197px;}
._f_c00101{width:33.064376px;}
._d_c00101{width:34.736164px;}
._11_c00101{width:35.871204px;}
._e_c00101{width:37.303251px;}
._10_c00101{width:38.784583px;}
._1b_c00101{width:40.093363px;}
._1a_c00101{width:45.052518px;}
.fc0_c00101{color:transparent;}
.fsd_c00101{font-size:28.500000px;}
.fs4_c00101{font-size:69.750000px;}
.fse_c00101{font-size:70.500000px;}
.fs9_c00101{font-size:74.250000px;}
.fs8_c00101{font-size:75.000000px;}
.fs7_c00101{font-size:75.750000px;}
.fsc_c00101{font-size:76.500000px;}
.fs5_c00101{font-size:77.250000px;}
.fsa_c00101{font-size:78.000000px;}
.fs0_c00101{font-size:78.750000px;}
.fsb_c00101{font-size:79.500000px;}
.fs6_c00101{font-size:80.250000px;}
.fs1_c00101{font-size:81.000000px;}
.fs3_c00101{font-size:81.750000px;}
.fs2_c00101{font-size:82.500000px;}
.fsf_c00101{font-size:84.750000px;}
.y0_c00101{bottom:0.000000px;}
.y26_c00101{bottom:215.641020px;}
.y25_c00101{bottom:245.520750px;}
.y24_c00101{bottom:275.040270px;}
.y23_c00101{bottom:304.920000px;}
.y22_c00101{bottom:304.921125px;}
.y21_c00101{bottom:334.440645px;}
.y20_c00101{bottom:364.320375px;}
.y1f_c00101{bottom:394.560285px;}
.y1e_c00101{bottom:424.800150px;}
.y1d_c00101{bottom:425.159415px;}
.y1c_c00101{bottom:454.320810px;}
.y1b_c00101{bottom:514.440450px;}
.y1a_c00101{bottom:543.959970px;}
.y19_c00101{bottom:543.960480px;}
.y18_c00101{bottom:573.480015px;}
.y17_c00101{bottom:604.080420px;}
.y16_c00101{bottom:604.080870px;}
.y15_c00101{bottom:633.960600px;}
.y14_c00101{bottom:663.480120px;}
.y13_c00101{bottom:693.359850px;}
.y12_c00101{bottom:693.359985px;}
.y11_c00101{bottom:722.879520px;}
.y10_c00101{bottom:752.760135px;}
.yf_c00101{bottom:782.280675px;}
.ye_c00101{bottom:812.878965px;}
.yd_c00101{bottom:812.879445px;}
.yc_c00101{bottom:871.920315px;}
.yb_c00101{bottom:902.160240px;}
.ya_c00101{bottom:932.039955px;}
.y9_c00101{bottom:961.919685px;}
.y7_c00101{bottom:991.439160px;}
.y8_c00101{bottom:991.439205px;}
.y5_c00101{bottom:1021.677525px;}
.y6_c00101{bottom:1021.679070px;}
.y4_c00101{bottom:1051.198860px;}
.y3_c00101{bottom:1081.078590px;}
.y2_c00101{bottom:1110.239730px;}
.y1_c00101{bottom:1140.479640px;}
.h13_c00101{height:29.724609px;}
.h5_c00101{height:72.747070px;}
.hd_c00101{height:72.872314px;}
.h15_c00101{height:73.529297px;}
.h16_c00101{height:74.830078px;}
.hb_c00101{height:75.585938px;}
.h6_c00101{height:75.778931px;}
.h9_c00101{height:76.341797px;}
.he_c00101{height:76.552734px;}
.h11_c00101{height:77.097656px;}
.h1_c00101{height:77.288818px;}
.h8_c00101{height:77.853516px;}
.hf_c00101{height:78.024902px;}
.h14_c00101{height:78.609375px;}
.h7_c00101{height:78.760986px;}
.ha_c00101{height:79.309570px;}
.h10_c00101{height:79.365234px;}
.h2_c00101{height:79.497070px;}
.h17_c00101{height:80.121094px;}
.h4_c00101{height:80.233154px;}
.hc_c00101{height:80.791992px;}
.h3_c00101{height:80.969238px;}
.h12_c00101{height:82.388672px;}
.h18_c00101{height:83.177490px;}
.h0_c00101{height:1263.000000px;}
.w0_c00101{width:892.500000px;}
.x0_c00101{left:0.000000px;}
.x17_c00101{left:141.117255px;}
.xa_c00101{left:142.200765px;}
.x1_c00101{left:143.279250px;}
.x1a_c00101{left:211.319850px;}
.x1b_c00101{left:235.798515px;}
.xb_c00101{left:269.279850px;}
.x25_c00101{left:290.518635px;}
.x1c_c00101{left:308.159850px;}
.xc_c00101{left:317.159385px;}
.x1d_c00101{left:324.359250px;}
.xd_c00101{left:332.999385px;}
.x1e_c00101{left:362.878350px;}
.xe_c00101{left:386.279250px;}
.x2_c00101{left:409.678530px;}
.x3_c00101{left:434.158770px;}
.x1f_c00101{left:453.238770px;}
.x4_c00101{left:471.959385px;}
.xf_c00101{left:476.278800px;}
.x5_c00101{left:487.079400px;}
.x15_c00101{left:488.519670px;}
.x16_c00101{left:503.278800px;}
.x10_c00101{left:521.279250px;}
.x20_c00101{left:532.080000px;}
.x26_c00101{left:554.038920px;}
.x21_c00101{left:556.199385px;}
.x27_c00101{left:595.799520px;}
.x11_c00101{left:603.719520px;}
.x28_c00101{left:613.439250px;}
.x22_c00101{left:616.319820px;}
.x12_c00101{left:618.119385px;}
.x23_c00101{left:632.878320px;}
.x6_c00101{left:650.519670px;}
.x7_c00101{left:674.279850px;}
.x13_c00101{left:690.119985px;}
.x8_c00101{left:693.359850px;}
.x9_c00101{left:706.678530px;}
.x18_c00101{left:713.159820px;}
.x14_c00101{left:741.959385px;}
.x19_c00101{left:750.238770px;}
.x24_c00101{left:762.118785px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls14_c00101{letter-spacing:-13.210073pt;}
.ls1d_c00101{letter-spacing:-10.483200pt;}
.ls11_c00101{letter-spacing:-9.794067pt;}
.ls1b_c00101{letter-spacing:-9.621933pt;}
.ls16_c00101{letter-spacing:-9.247000pt;}
.ls12_c00101{letter-spacing:-7.999200pt;}
.ls21_c00101{letter-spacing:-7.924000pt;}
.ls6_c00101{letter-spacing:-6.601000pt;}
.ls4_c00101{letter-spacing:-5.285000pt;}
.ls9_c00101{letter-spacing:-4.619300pt;}
.lsc_c00101{letter-spacing:-4.541667pt;}
.ls5_c00101{letter-spacing:-3.961300pt;}
.ls20_c00101{letter-spacing:-3.894933pt;}
.ls1f_c00101{letter-spacing:-3.504600pt;}
.ls3_c00101{letter-spacing:-3.304000pt;}
.ls1_c00101{letter-spacing:-2.639000pt;}
.ls1e_c00101{letter-spacing:-2.141300pt;}
.lsf_c00101{letter-spacing:-2.018800pt;}
.ls2_c00101{letter-spacing:-1.981700pt;}
.ls1a_c00101{letter-spacing:-1.560667pt;}
.ls19_c00101{letter-spacing:-1.530680pt;}
.ls10_c00101{letter-spacing:-1.400533pt;}
.ls7_c00101{letter-spacing:-1.323700pt;}
.ls17_c00101{letter-spacing:-1.306627pt;}
.ls15_c00101{letter-spacing:-1.254000pt;}
.ls1c_c00101{letter-spacing:-1.236267pt;}
.ls18_c00101{letter-spacing:-0.812000pt;}
.lse_c00101{letter-spacing:-0.699713pt;}
.ls13_c00101{letter-spacing:-0.694000pt;}
.ls8_c00101{letter-spacing:-0.658000pt;}
.lsb_c00101{letter-spacing:0.000000pt;}
.lsd_c00101{letter-spacing:1.308200pt;}
.ls22_c00101{letter-spacing:1.395200pt;}
.lsa_c00101{letter-spacing:3.233520pt;}
.ls0_c00101{letter-spacing:5.943000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
._1f_c00101{margin-left:-7.031751pt;}
._18_c00101{margin-left:-4.631240pt;}
._15_c00101{margin-left:-3.243523pt;}
._c_c00101{margin-left:-1.131108pt;}
._16_c00101{width:0.926430pt;}
._17_c00101{width:1.840036pt;}
._13_c00101{width:3.430158pt;}
._12_c00101{width:4.432968pt;}
._14_c00101{width:5.510875pt;}
._b_c00101{width:6.753257pt;}
._a_c00101{width:8.285596pt;}
._1e_c00101{width:9.316472pt;}
._19_c00101{width:10.221572pt;}
._9_c00101{width:11.131704pt;}
._1_c00101{width:12.643691pt;}
._5_c00101{width:13.664938pt;}
._3_c00101{width:15.888389pt;}
._4_c00101{width:17.219128pt;}
._2_c00101{width:18.615668pt;}
._6_c00101{width:19.628317pt;}
._0_c00101{width:20.715272pt;}
._20_c00101{width:21.694651pt;}
._8_c00101{width:22.706402pt;}
._1c_c00101{width:24.483755pt;}
._1d_c00101{width:26.116921pt;}
._7_c00101{width:27.306842pt;}
._f_c00101{width:29.390557pt;}
._d_c00101{width:30.876591pt;}
._11_c00101{width:31.885515pt;}
._e_c00101{width:33.158445pt;}
._10_c00101{width:34.475185pt;}
._1b_c00101{width:35.638545pt;}
._1a_c00101{width:40.046683pt;}
.fsd_c00101{font-size:25.333333pt;}
.fs4_c00101{font-size:62.000000pt;}
.fse_c00101{font-size:62.666667pt;}
.fs9_c00101{font-size:66.000000pt;}
.fs8_c00101{font-size:66.666667pt;}
.fs7_c00101{font-size:67.333333pt;}
.fsc_c00101{font-size:68.000000pt;}
.fs5_c00101{font-size:68.666667pt;}
.fsa_c00101{font-size:69.333333pt;}
.fs0_c00101{font-size:70.000000pt;}
.fsb_c00101{font-size:70.666667pt;}
.fs6_c00101{font-size:71.333333pt;}
.fs1_c00101{font-size:72.000000pt;}
.fs3_c00101{font-size:72.666667pt;}
.fs2_c00101{font-size:73.333333pt;}
.fsf_c00101{font-size:75.333333pt;}
.y0_c00101{bottom:0.000000pt;}
.y26_c00101{bottom:191.680907pt;}
.y25_c00101{bottom:218.240667pt;}
.y24_c00101{bottom:244.480240pt;}
.y23_c00101{bottom:271.040000pt;}
.y22_c00101{bottom:271.041000pt;}
.y21_c00101{bottom:297.280573pt;}
.y20_c00101{bottom:323.840333pt;}
.y1f_c00101{bottom:350.720253pt;}
.y1e_c00101{bottom:377.600133pt;}
.y1d_c00101{bottom:377.919480pt;}
.y1c_c00101{bottom:403.840720pt;}
.y1b_c00101{bottom:457.280400pt;}
.y1a_c00101{bottom:483.519973pt;}
.y19_c00101{bottom:483.520427pt;}
.y18_c00101{bottom:509.760013pt;}
.y17_c00101{bottom:536.960373pt;}
.y16_c00101{bottom:536.960773pt;}
.y15_c00101{bottom:563.520533pt;}
.y14_c00101{bottom:589.760107pt;}
.y13_c00101{bottom:616.319867pt;}
.y12_c00101{bottom:616.319987pt;}
.y11_c00101{bottom:642.559573pt;}
.y10_c00101{bottom:669.120120pt;}
.yf_c00101{bottom:695.360600pt;}
.ye_c00101{bottom:722.559080pt;}
.yd_c00101{bottom:722.559507pt;}
.yc_c00101{bottom:775.040280pt;}
.yb_c00101{bottom:801.920213pt;}
.ya_c00101{bottom:828.479960pt;}
.y9_c00101{bottom:855.039720pt;}
.y7_c00101{bottom:881.279253pt;}
.y8_c00101{bottom:881.279293pt;}
.y5_c00101{bottom:908.157800pt;}
.y6_c00101{bottom:908.159173pt;}
.y4_c00101{bottom:934.398987pt;}
.y3_c00101{bottom:960.958747pt;}
.y2_c00101{bottom:986.879760pt;}
.y1_c00101{bottom:1013.759680pt;}
.h13_c00101{height:26.421875pt;}
.h5_c00101{height:64.664062pt;}
.hd_c00101{height:64.775391pt;}
.h15_c00101{height:65.359375pt;}
.h16_c00101{height:66.515625pt;}
.hb_c00101{height:67.187500pt;}
.h6_c00101{height:67.359049pt;}
.h9_c00101{height:67.859375pt;}
.he_c00101{height:68.046875pt;}
.h11_c00101{height:68.531250pt;}
.h1_c00101{height:68.701172pt;}
.h8_c00101{height:69.203125pt;}
.hf_c00101{height:69.355469pt;}
.h14_c00101{height:69.875000pt;}
.h7_c00101{height:70.009766pt;}
.ha_c00101{height:70.497396pt;}
.h10_c00101{height:70.546875pt;}
.h2_c00101{height:70.664062pt;}
.h17_c00101{height:71.218750pt;}
.h4_c00101{height:71.318359pt;}
.hc_c00101{height:71.815104pt;}
.h3_c00101{height:71.972656pt;}
.h12_c00101{height:73.234375pt;}
.h18_c00101{height:73.935547pt;}
.h0_c00101{height:1122.666667pt;}
.w0_c00101{width:793.333333pt;}
.x0_c00101{left:0.000000pt;}
.x17_c00101{left:125.437560pt;}
.xa_c00101{left:126.400680pt;}
.x1_c00101{left:127.359333pt;}
.x1a_c00101{left:187.839867pt;}
.x1b_c00101{left:209.598680pt;}
.xb_c00101{left:239.359867pt;}
.x25_c00101{left:258.238787pt;}
.x1c_c00101{left:273.919867pt;}
.xc_c00101{left:281.919453pt;}
.x1d_c00101{left:288.319333pt;}
.xd_c00101{left:295.999453pt;}
.x1e_c00101{left:322.558533pt;}
.xe_c00101{left:343.359333pt;}
.x2_c00101{left:364.158693pt;}
.x3_c00101{left:385.918907pt;}
.x1f_c00101{left:402.878907pt;}
.x4_c00101{left:419.519453pt;}
.xf_c00101{left:423.358933pt;}
.x5_c00101{left:432.959467pt;}
.x15_c00101{left:434.239707pt;}
.x16_c00101{left:447.358933pt;}
.x10_c00101{left:463.359333pt;}
.x20_c00101{left:472.960000pt;}
.x26_c00101{left:492.479040pt;}
.x21_c00101{left:494.399453pt;}
.x27_c00101{left:529.599573pt;}
.x11_c00101{left:536.639573pt;}
.x28_c00101{left:545.279333pt;}
.x22_c00101{left:547.839840pt;}
.x12_c00101{left:549.439453pt;}
.x23_c00101{left:562.558507pt;}
.x6_c00101{left:578.239707pt;}
.x7_c00101{left:599.359867pt;}
.x13_c00101{left:613.439987pt;}
.x8_c00101{left:616.319867pt;}
.x9_c00101{left:628.158693pt;}
.x18_c00101{left:633.919840pt;}
.x14_c00101{left:659.519453pt;}
.x19_c00101{left:666.878907pt;}
.x24_c00101{left:677.438920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e86ebe54f3f8714f7a28fa7.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.364746;font-style:normal;font-weight:normal;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_260fc40a90729604646997fd.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;}
.m0_c00102{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls6_c00102{letter-spacing:-14.328150px;}
.ls0_c00102{letter-spacing:-4.657500px;}
.ls4_c00102{letter-spacing:-2.545200px;}
.ls2_c00102{letter-spacing:-2.310398px;}
.ls3_c00102{letter-spacing:-1.540800px;}
.ls5_c00102{letter-spacing:-0.863603px;}
.ls1_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;}
._0_c00102{width:7.170708px;}
.fc0_c00102{color:transparent;}
.fs1_c00102{font-size:78.000000px;}
.fs2_c00102{font-size:80.250000px;}
.fs0_c00102{font-size:81.000000px;}
.fs3_c00102{font-size:84.000000px;}
.fs4_c00102{font-size:84.750000px;}
.fs5_c00102{font-size:88.500000px;}
.y0_c00102{bottom:0.000000px;}
.y2_c00102{bottom:299.160435px;}
.y1_c00102{bottom:1209.240420px;}
.h2_c00102{height:78.609375px;}
.h1_c00102{height:80.050781px;}
.h3_c00102{height:80.876953px;}
.h4_c00102{height:84.656250px;}
.h5_c00102{height:85.412109px;}
.h6_c00102{height:87.462891px;}
.h0_c00102{height:1263.000000px;}
.w0_c00102{width:892.500000px;}
.x0_c00102{left:0.000000px;}
.x4_c00102{left:169.199850px;}
.x1_c00102{left:178.919535px;}
.x5_c00102{left:232.919535px;}
.x2_c00102{left:239.399250px;}
.x3_c00102{left:268.559685px;}
.x6_c00102{left:327.958350px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls6_c00102{letter-spacing:-12.736133pt;}
.ls0_c00102{letter-spacing:-4.140000pt;}
.ls4_c00102{letter-spacing:-2.262400pt;}
.ls2_c00102{letter-spacing:-2.053687pt;}
.ls3_c00102{letter-spacing:-1.369600pt;}
.ls5_c00102{letter-spacing:-0.767647pt;}
.ls1_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
._0_c00102{width:6.373963pt;}
.fs1_c00102{font-size:69.333333pt;}
.fs2_c00102{font-size:71.333333pt;}
.fs0_c00102{font-size:72.000000pt;}
.fs3_c00102{font-size:74.666667pt;}
.fs4_c00102{font-size:75.333333pt;}
.fs5_c00102{font-size:78.666667pt;}
.y0_c00102{bottom:0.000000pt;}
.y2_c00102{bottom:265.920387pt;}
.y1_c00102{bottom:1074.880373pt;}
.h2_c00102{height:69.875000pt;}
.h1_c00102{height:71.156250pt;}
.h3_c00102{height:71.890625pt;}
.h4_c00102{height:75.250000pt;}
.h5_c00102{height:75.921875pt;}
.h6_c00102{height:77.744792pt;}
.h0_c00102{height:1122.666667pt;}
.w0_c00102{width:793.333333pt;}
.x0_c00102{left:0.000000pt;}
.x4_c00102{left:150.399867pt;}
.x1_c00102{left:159.039587pt;}
.x5_c00102{left:207.039587pt;}
.x2_c00102{left:212.799333pt;}
.x3_c00102{left:238.719720pt;}
.x6_c00102{left:291.518533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_caaa65c9fc7ed0b2977e06a6.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_274a02298003d816aa522f3c.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.432129;font-style:normal;font-weight:normal;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_50596abe6efc781cefd6546d.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.432129;font-style:normal;font-weight:normal;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_c91c2b897e97afde3804aef7.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00103;src:url('chunks/assets/font_560ad45e8cf4a2946b23bac4.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00103;src:url('chunks/assets/font_391ff756c9e810e55cd10da0.woff2')format("woff");}.ff6_c00103{font-family:ff6_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;}
.m11_c00103{transform:matrix(0.175481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175481,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00103{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m1a_c00103{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.mf_c00103{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.362903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362903,0.000000,0.000000,0.250000,0,0);}
.me_c00103{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_c00103{transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408163,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m12_c00103{transform:matrix(0.527778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527778,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.529070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529070,0.000000,0.000000,0.250000,0,0);}
.mc_c00103{transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533784,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.677835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677835,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.711111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711111,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls1c_c00103{letter-spacing:-18.748125px;}
.lse_c00103{letter-spacing:-8.914500px;}
.ls1b_c00103{letter-spacing:-8.881650px;}
.ls11_c00103{letter-spacing:-8.175038px;}
.ls6_c00103{letter-spacing:-7.800780px;}
.ls10_c00103{letter-spacing:-7.426125px;}
.ls18_c00103{letter-spacing:-7.180725px;}
.lsa_c00103{letter-spacing:-6.685875px;}
.lsc_c00103{letter-spacing:-5.945625px;}
.ls8_c00103{letter-spacing:-5.196713px;}
.lsf_c00103{letter-spacing:-4.969125px;}
.ls3_c00103{letter-spacing:-4.456463px;}
.ls15_c00103{letter-spacing:-3.863077px;}
.ls5_c00103{letter-spacing:-3.717000px;}
.ls4_c00103{letter-spacing:-2.968875px;}
.ls12_c00103{letter-spacing:-2.427158px;}
.ls2_c00103{letter-spacing:-2.229413px;}
.ls1f_c00103{letter-spacing:-1.526400px;}
.ls1_c00103{letter-spacing:-1.489163px;}
.lsb_c00103{letter-spacing:-1.474200px;}
.ls7_c00103{letter-spacing:-0.740250px;}
.ls16_c00103{letter-spacing:-0.709500px;}
.ls9_c00103{letter-spacing:0.000000px;}
.ls17_c00103{letter-spacing:0.986625px;}
.ls19_c00103{letter-spacing:2.064600px;}
.ls0_c00103{letter-spacing:2.229413px;}
.ls20_c00103{letter-spacing:2.441400px;}
.ls14_c00103{letter-spacing:2.535900px;}
.ls21_c00103{letter-spacing:3.637710px;}
.ls1e_c00103{letter-spacing:3.862500px;}
.lsd_c00103{letter-spacing:5.718600px;}
.ls1d_c00103{letter-spacing:5.760450px;}
.ls1a_c00103{letter-spacing:6.411600px;}
.ls13_c00103{letter-spacing:6.496133px;}
.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;}
._22_c00103{margin-left:-13.781488px;}
._1b_c00103{margin-left:-7.862133px;}
._19_c00103{margin-left:-6.226034px;}
._1a_c00103{margin-left:-4.847360px;}
._8_c00103{margin-left:-3.391762px;}
._1c_c00103{margin-left:-1.187357px;}
._0_c00103{width:1.266241px;}
._d_c00103{width:2.838462px;}
._6_c00103{width:3.940828px;}
._1_c00103{width:5.043893px;}
._2_c00103{width:6.146289px;}
._b_c00103{width:7.413629px;}
._4_c00103{width:8.827608px;}
._5_c00103{width:10.553570px;}
._9_c00103{width:11.656010px;}
._7_c00103{width:12.710012px;}
._3_c00103{width:13.850030px;}
._10_c00103{width:15.395744px;}
._a_c00103{width:16.645194px;}
._c_c00103{width:17.732524px;}
._e_c00103{width:18.934383px;}
._16_c00103{width:20.213312px;}
._f_c00103{width:21.450014px;}
._14_c00103{width:23.072933px;}
._12_c00103{width:24.608736px;}
._18_c00103{width:25.925273px;}
._11_c00103{width:27.699718px;}
._21_c00103{width:28.848562px;}
._13_c00103{width:29.958268px;}
._23_c00103{width:32.289967px;}
._17_c00103{width:33.350417px;}
._24_c00103{width:34.410496px;}
._15_c00103{width:36.339633px;}
._1f_c00103{width:38.357981px;}
._1d_c00103{width:39.650684px;}
._1e_c00103{width:41.189742px;}
._20_c00103{width:46.838212px;}
.fc0_c00103{color:transparent;}
.fs9_c00103{font-size:27.750000px;}
.fsa_c00103{font-size:32.250000px;}
.fs10_c00103{font-size:36.750000px;}
.fsb_c00103{font-size:37.500000px;}
.fse_c00103{font-size:40.500000px;}
.fsd_c00103{font-size:46.500000px;}
.fsc_c00103{font-size:50.250000px;}
.fsf_c00103{font-size:54.750000px;}
.fs12_c00103{font-size:56.250000px;}
.fs7_c00103{font-size:67.500000px;}
.fs8_c00103{font-size:72.750000px;}
.fs6_c00103{font-size:74.250000px;}
.fs14_c00103{font-size:75.000000px;}
.fs13_c00103{font-size:76.500000px;}
.fs1_c00103{font-size:78.000000px;}
.fs0_c00103{font-size:78.750000px;}
.fs15_c00103{font-size:79.500000px;}
.fs4_c00103{font-size:80.250000px;}
.fs3_c00103{font-size:81.000000px;}
.fs5_c00103{font-size:81.750000px;}
.fs2_c00103{font-size:82.500000px;}
.fs11_c00103{font-size:102.000000px;}
.y0_c00103{bottom:0.000000px;}
.y28_c00103{bottom:185.760150px;}
.y27_c00103{bottom:185.761185px;}
.y26_c00103{bottom:215.459775px;}
.y25_c00103{bottom:245.160435px;}
.y24_c00103{bottom:245.160615px;}
.y23_c00103{bottom:274.680150px;}
.y22_c00103{bottom:274.680495px;}
.y21_c00103{bottom:334.800135px;}
.y20_c00103{bottom:394.199385px;}
.y1e_c00103{bottom:424.439250px;}
.y1f_c00103{bottom:425.159415px;}
.y1c_c00103{bottom:431.637915px;}
.y1d_c00103{bottom:431.639100px;}
.y1b_c00103{bottom:453.959685px;}
.y1a_c00103{bottom:484.199595px;}
.y19_c00103{bottom:514.079310px;}
.y18_c00103{bottom:544.319235px;}
.y17_c00103{bottom:573.840360px;}
.y16_c00103{bottom:603.359895px;}
.y15_c00103{bottom:633.239610px;}
.y14_c00103{bottom:662.760960px;}
.y13_c00103{bottom:722.160210px;}
.y11_c00103{bottom:782.279805px;}
.y12_c00103{bottom:782.279850px;}
.y10_c00103{bottom:812.519715px;}
.yf_c00103{bottom:812.520510px;}
.ye_c00103{bottom:842.400240px;}
.yd_c00103{bottom:842.400420px;}
.yc_c00103{bottom:871.919955px;}
.yb_c00103{bottom:871.920315px;}
.ya_c00103{bottom:901.800045px;}
.y9_c00103{bottom:931.319565px;}
.y8_c00103{bottom:961.559490px;}
.y7_c00103{bottom:991.439205px;}
.y6_c00103{bottom:991.440285px;}
.y5_c00103{bottom:1021.320000px;}
.y4_c00103{bottom:1050.839535px;}
.y3_c00103{bottom:1050.840255px;}
.y2_c00103{bottom:1081.080165px;}
.y1_c00103{bottom:1141.199805px;}
.ha_c00103{height:28.942383px;}
.hb_c00103{height:33.635742px;}
.h12_c00103{height:37.037109px;}
.h13_c00103{height:38.329102px;}
.hc_c00103{height:39.111328px;}
.h10_c00103{height:42.240234px;}
.he_c00103{height:48.498047px;}
.hd_c00103{height:49.661133px;}
.h15_c00103{height:55.590820px;}
.h11_c00103{height:57.102539px;}
.h8_c00103{height:70.400391px;}
.h17_c00103{height:75.585938px;}
.h9_c00103{height:75.875977px;}
.h2_c00103{height:76.552734px;}
.h16_c00103{height:77.097656px;}
.h1_c00103{height:77.288818px;}
.h7_c00103{height:77.440430px;}
.h18_c00103{height:78.024902px;}
.hf_c00103{height:78.609375px;}
.h5_c00103{height:78.760986px;}
.h4_c00103{height:79.497070px;}
.h6_c00103{height:80.233154px;}
.h3_c00103{height:80.969238px;}
.h14_c00103{height:106.382812px;}
.h0_c00103{height:1263.000000px;}
.w0_c00103{width:892.500000px;}
.x0_c00103{left:0.000000px;}
.x8_c00103{left:141.114585px;}
.x1_c00103{left:142.199850px;}
.x27_c00103{left:143.278545px;}
.x1e_c00103{left:160.918950px;}
.xf_c00103{left:176.038950px;}
.x1f_c00103{left:187.198785px;}
.x9_c00103{left:228.959400px;}
.xa_c00103{left:244.799535px;}
.x24_c00103{left:263.518635px;}
.x25_c00103{left:282.239250px;}
.x10_c00103{left:300.599100px;}
.x11_c00103{left:322.918950px;}
.x12_c00103{left:353.519685px;}
.xb_c00103{left:388.439715px;}
.x13_c00103{left:398.518665px;}
.xe_c00103{left:400.319820px;}
.xc_c00103{left:415.439670px;}
.x14_c00103{left:417.959385px;}
.x18_c00103{left:419.759085px;}
.x22_c00103{left:422.639700px;}
.x28_c00103{left:437.039385px;}
.x23_c00103{left:438.118785px;}
.x15_c00103{left:443.159820px;}
.x20_c00103{left:448.558635px;}
.x29_c00103{left:452.879520px;}
.x16_c00103{left:478.080000px;}
.x26_c00103{left:486.718500px;}
.x19_c00103{left:514.079400px;}
.x4_c00103{left:518.398635px;}
.x21_c00103{left:526.679670px;}
.x5_c00103{left:533.159415px;}
.x17_c00103{left:556.558635px;}
.x1a_c00103{left:563.758530px;}
.x2_c00103{left:568.799520px;}
.x1b_c00103{left:571.319235px;}
.xd_c00103{left:582.838530px;}
.x1c_c00103{left:589.319820px;}
.x3_c00103{left:596.519670px;}
.x1d_c00103{left:624.239820px;}
.x6_c00103{left:650.158770px;}
.x7_c00103{left:712.798920px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls1c_c00103{letter-spacing:-16.665000pt;}
.lse_c00103{letter-spacing:-7.924000pt;}
.ls1b_c00103{letter-spacing:-7.894800pt;}
.ls11_c00103{letter-spacing:-7.266700pt;}
.ls6_c00103{letter-spacing:-6.934027pt;}
.ls10_c00103{letter-spacing:-6.601000pt;}
.ls18_c00103{letter-spacing:-6.382867pt;}
.lsa_c00103{letter-spacing:-5.943000pt;}
.lsc_c00103{letter-spacing:-5.285000pt;}
.ls8_c00103{letter-spacing:-4.619300pt;}
.lsf_c00103{letter-spacing:-4.417000pt;}
.ls3_c00103{letter-spacing:-3.961300pt;}
.ls15_c00103{letter-spacing:-3.433847pt;}
.ls5_c00103{letter-spacing:-3.304000pt;}
.ls4_c00103{letter-spacing:-2.639000pt;}
.ls12_c00103{letter-spacing:-2.157473pt;}
.ls2_c00103{letter-spacing:-1.981700pt;}
.ls1f_c00103{letter-spacing:-1.356800pt;}
.ls1_c00103{letter-spacing:-1.323700pt;}
.lsb_c00103{letter-spacing:-1.310400pt;}
.ls7_c00103{letter-spacing:-0.658000pt;}
.ls16_c00103{letter-spacing:-0.630667pt;}
.ls9_c00103{letter-spacing:0.000000pt;}
.ls17_c00103{letter-spacing:0.877000pt;}
.ls19_c00103{letter-spacing:1.835200pt;}
.ls0_c00103{letter-spacing:1.981700pt;}
.ls20_c00103{letter-spacing:2.170133pt;}
.ls14_c00103{letter-spacing:2.254133pt;}
.ls21_c00103{letter-spacing:3.233520pt;}
.ls1e_c00103{letter-spacing:3.433333pt;}
.lsd_c00103{letter-spacing:5.083200pt;}
.ls1d_c00103{letter-spacing:5.120400pt;}
.ls1a_c00103{letter-spacing:5.699200pt;}
.ls13_c00103{letter-spacing:5.774340pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._22_c00103{margin-left:-12.250211pt;}
._1b_c00103{margin-left:-6.988562pt;}
._19_c00103{margin-left:-5.534253pt;}
._1a_c00103{margin-left:-4.308764pt;}
._8_c00103{margin-left:-3.014900pt;}
._1c_c00103{margin-left:-1.055428pt;}
._0_c00103{width:1.125547pt;}
._d_c00103{width:2.523077pt;}
._6_c00103{width:3.502958pt;}
._1_c00103{width:4.483460pt;}
._2_c00103{width:5.463368pt;}
._b_c00103{width:6.589892pt;}
._4_c00103{width:7.846762pt;}
._5_c00103{width:9.380951pt;}
._9_c00103{width:10.360898pt;}
._7_c00103{width:11.297789pt;}
._3_c00103{width:12.311138pt;}
._10_c00103{width:13.685106pt;}
._a_c00103{width:14.795728pt;}
._c_c00103{width:15.762243pt;}
._e_c00103{width:16.830562pt;}
._16_c00103{width:17.967389pt;}
._f_c00103{width:19.066679pt;}
._14_c00103{width:20.509274pt;}
._12_c00103{width:21.874432pt;}
._18_c00103{width:23.044687pt;}
._11_c00103{width:24.621972pt;}
._21_c00103{width:25.643166pt;}
._13_c00103{width:26.629572pt;}
._23_c00103{width:28.702192pt;}
._17_c00103{width:29.644815pt;}
._24_c00103{width:30.587108pt;}
._15_c00103{width:32.301896pt;}
._1f_c00103{width:34.095983pt;}
._1d_c00103{width:35.245053pt;}
._1e_c00103{width:36.613104pt;}
._20_c00103{width:41.633966pt;}
.fs9_c00103{font-size:24.666667pt;}
.fsa_c00103{font-size:28.666667pt;}
.fs10_c00103{font-size:32.666667pt;}
.fsb_c00103{font-size:33.333333pt;}
.fse_c00103{font-size:36.000000pt;}
.fsd_c00103{font-size:41.333333pt;}
.fsc_c00103{font-size:44.666667pt;}
.fsf_c00103{font-size:48.666667pt;}
.fs12_c00103{font-size:50.000000pt;}
.fs7_c00103{font-size:60.000000pt;}
.fs8_c00103{font-size:64.666667pt;}
.fs6_c00103{font-size:66.000000pt;}
.fs14_c00103{font-size:66.666667pt;}
.fs13_c00103{font-size:68.000000pt;}
.fs1_c00103{font-size:69.333333pt;}
.fs0_c00103{font-size:70.000000pt;}
.fs15_c00103{font-size:70.666667pt;}
.fs4_c00103{font-size:71.333333pt;}
.fs3_c00103{font-size:72.000000pt;}
.fs5_c00103{font-size:72.666667pt;}
.fs2_c00103{font-size:73.333333pt;}
.fs11_c00103{font-size:90.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y28_c00103{bottom:165.120133pt;}
.y27_c00103{bottom:165.121053pt;}
.y26_c00103{bottom:191.519800pt;}
.y25_c00103{bottom:217.920387pt;}
.y24_c00103{bottom:217.920547pt;}
.y23_c00103{bottom:244.160133pt;}
.y22_c00103{bottom:244.160440pt;}
.y21_c00103{bottom:297.600120pt;}
.y20_c00103{bottom:350.399453pt;}
.y1e_c00103{bottom:377.279333pt;}
.y1f_c00103{bottom:377.919480pt;}
.y1c_c00103{bottom:383.678147pt;}
.y1d_c00103{bottom:383.679200pt;}
.y1b_c00103{bottom:403.519720pt;}
.y1a_c00103{bottom:430.399640pt;}
.y19_c00103{bottom:456.959387pt;}
.y18_c00103{bottom:483.839320pt;}
.y17_c00103{bottom:510.080320pt;}
.y16_c00103{bottom:536.319907pt;}
.y15_c00103{bottom:562.879653pt;}
.y14_c00103{bottom:589.120853pt;}
.y13_c00103{bottom:641.920187pt;}
.y11_c00103{bottom:695.359827pt;}
.y12_c00103{bottom:695.359867pt;}
.y10_c00103{bottom:722.239747pt;}
.yf_c00103{bottom:722.240453pt;}
.ye_c00103{bottom:748.800213pt;}
.yd_c00103{bottom:748.800373pt;}
.yc_c00103{bottom:775.039960pt;}
.yb_c00103{bottom:775.040280pt;}
.ya_c00103{bottom:801.600040pt;}
.y9_c00103{bottom:827.839613pt;}
.y8_c00103{bottom:854.719547pt;}
.y7_c00103{bottom:881.279293pt;}
.y6_c00103{bottom:881.280253pt;}
.y5_c00103{bottom:907.840000pt;}
.y4_c00103{bottom:934.079587pt;}
.y3_c00103{bottom:934.080227pt;}
.y2_c00103{bottom:960.960147pt;}
.y1_c00103{bottom:1014.399827pt;}
.ha_c00103{height:25.726562pt;}
.hb_c00103{height:29.898438pt;}
.h12_c00103{height:32.921875pt;}
.h13_c00103{height:34.070312pt;}
.hc_c00103{height:34.765625pt;}
.h10_c00103{height:37.546875pt;}
.he_c00103{height:43.109375pt;}
.hd_c00103{height:44.143229pt;}
.h15_c00103{height:49.414063pt;}
.h11_c00103{height:50.757812pt;}
.h8_c00103{height:62.578125pt;}
.h17_c00103{height:67.187500pt;}
.h9_c00103{height:67.445312pt;}
.h2_c00103{height:68.046875pt;}
.h16_c00103{height:68.531250pt;}
.h1_c00103{height:68.701172pt;}
.h7_c00103{height:68.835938pt;}
.h18_c00103{height:69.355469pt;}
.hf_c00103{height:69.875000pt;}
.h5_c00103{height:70.009766pt;}
.h4_c00103{height:70.664062pt;}
.h6_c00103{height:71.318359pt;}
.h3_c00103{height:71.972656pt;}
.h14_c00103{height:94.562500pt;}
.h0_c00103{height:1122.666667pt;}
.w0_c00103{width:793.333333pt;}
.x0_c00103{left:0.000000pt;}
.x8_c00103{left:125.435187pt;}
.x1_c00103{left:126.399867pt;}
.x27_c00103{left:127.358707pt;}
.x1e_c00103{left:143.039067pt;}
.xf_c00103{left:156.479067pt;}
.x1f_c00103{left:166.398920pt;}
.x9_c00103{left:203.519467pt;}
.xa_c00103{left:217.599587pt;}
.x24_c00103{left:234.238787pt;}
.x25_c00103{left:250.879333pt;}
.x10_c00103{left:267.199200pt;}
.x11_c00103{left:287.039067pt;}
.x12_c00103{left:314.239720pt;}
.xb_c00103{left:345.279747pt;}
.x13_c00103{left:354.238813pt;}
.xe_c00103{left:355.839840pt;}
.xc_c00103{left:369.279707pt;}
.x14_c00103{left:371.519453pt;}
.x18_c00103{left:373.119187pt;}
.x22_c00103{left:375.679733pt;}
.x28_c00103{left:388.479453pt;}
.x23_c00103{left:389.438920pt;}
.x15_c00103{left:393.919840pt;}
.x20_c00103{left:398.718787pt;}
.x29_c00103{left:402.559573pt;}
.x16_c00103{left:424.960000pt;}
.x26_c00103{left:432.638667pt;}
.x19_c00103{left:456.959467pt;}
.x4_c00103{left:460.798787pt;}
.x21_c00103{left:468.159707pt;}
.x5_c00103{left:473.919480pt;}
.x17_c00103{left:494.718787pt;}
.x1a_c00103{left:501.118693pt;}
.x2_c00103{left:505.599573pt;}
.x1b_c00103{left:507.839320pt;}
.xd_c00103{left:518.078693pt;}
.x1c_c00103{left:523.839840pt;}
.x3_c00103{left:530.239707pt;}
.x1d_c00103{left:554.879840pt;}
.x6_c00103{left:577.918907pt;}
.x7_c00103{left:633.599040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63ea2b906a6cb40625ef7cdd.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_8dc2733553bdae4470931aa3.woff2')format("woff");}.ff2_c00104{font-family:ff2_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:ff3_c00104;src:url('chunks/assets/font_ead4e482265fcdc0af78940d.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_62cbf2b9253f4ed46b838795.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_ae5c14d8f70023fafc2a448a.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00104;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00104;src:url('chunks/assets/font_edfe929c58c72b182ef6f1c9.woff2')format("woff");}.ff7_c00104{font-family:ff7_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;}
.m21_c00104{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m1f_c00104{transform:matrix(0.173203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173203,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1b_c00104{transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m1e_c00104{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1c_c00104{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m13_c00104{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m1d_c00104{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m20_c00104{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.lsd_c00104{letter-spacing:-21.319200px;}
.ls23_c00104{letter-spacing:-15.600375px;}
.ls19_c00104{letter-spacing:-13.371750px;}
.ls20_c00104{letter-spacing:-10.705883px;}
.ls18_c00104{letter-spacing:-9.654750px;}
.lsb_c00104{letter-spacing:-8.175038px;}
.ls4_c00104{letter-spacing:-8.025803px;}
.lsa_c00104{letter-spacing:-7.102125px;}
.ls24_c00104{letter-spacing:-6.732338px;}
.ls7_c00104{letter-spacing:-5.945625px;}
.ls12_c00104{letter-spacing:-5.943600px;}
.ls17_c00104{letter-spacing:-5.254500px;}
.ls15_c00104{letter-spacing:-5.247533px;}
.ls8_c00104{letter-spacing:-5.196713px;}
.ls14_c00104{letter-spacing:-5.160578px;}
.ls6_c00104{letter-spacing:-4.456463px;}
.ls22_c00104{letter-spacing:-4.326075px;}
.ls1c_c00104{letter-spacing:-4.015463px;}
.ls1d_c00104{letter-spacing:-3.748500px;}
.ls2_c00104{letter-spacing:-3.717000px;}
.ls1e_c00104{letter-spacing:-3.119220px;}
.ls5_c00104{letter-spacing:-2.968875px;}
.lse_c00104{letter-spacing:-2.846250px;}
.ls1b_c00104{letter-spacing:-2.549250px;}
.ls0_c00104{letter-spacing:-2.229413px;}
.ls21_c00104{letter-spacing:-1.560000px;}
.ls13_c00104{letter-spacing:-1.500000px;}
.ls1_c00104{letter-spacing:-1.489163px;}
.ls1a_c00104{letter-spacing:-0.779220px;}
.ls11_c00104{letter-spacing:-0.756743px;}
.ls9_c00104{letter-spacing:-0.740250px;}
.ls3_c00104{letter-spacing:0.000000px;}
.ls16_c00104{letter-spacing:0.772650px;}
.ls1f_c00104{letter-spacing:3.118500px;}
.lsc_c00104{letter-spacing:7.944833px;}
.ls10_c00104{letter-spacing:10.142925px;}
.lsf_c00104{letter-spacing:26.295128px;}
.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;}
._0_c00104{margin-left:-5.115258px;}
._1_c00104{margin-left:-2.812846px;}
._c_c00104{margin-left:-1.300846px;}
._f_c00104{width:1.028445px;}
._4_c00104{width:3.153492px;}
._5_c00104{width:4.784568px;}
._b_c00104{width:6.165531px;}
._3_c00104{width:7.447700px;}
._2_c00104{width:9.017232px;}
._8_c00104{width:10.637030px;}
._7_c00104{width:11.753616px;}
._a_c00104{width:12.812907px;}
._6_c00104{width:14.227376px;}
._9_c00104{width:16.045015px;}
._e_c00104{width:17.211778px;}
._d_c00104{width:19.122758px;}
._11_c00104{width:20.354067px;}
._10_c00104{width:22.099657px;}
._14_c00104{width:23.135249px;}
._12_c00104{width:24.624739px;}
._13_c00104{width:26.149799px;}
._16_c00104{width:29.224496px;}
._15_c00104{width:30.626142px;}
.fc0_c00104{color:transparent;}
.fs7_c00104{font-size:51.750000px;}
.fs4_c00104{font-size:59.250000px;}
.fs8_c00104{font-size:72.750000px;}
.fsa_c00104{font-size:75.000000px;}
.fs9_c00104{font-size:75.750000px;}
.fsd_c00104{font-size:76.500000px;}
.fs6_c00104{font-size:77.250000px;}
.fs3_c00104{font-size:78.000000px;}
.fs0_c00104{font-size:78.750000px;}
.fs2_c00104{font-size:80.250000px;}
.fsc_c00104{font-size:81.750000px;}
.fs1_c00104{font-size:82.500000px;}
.fs5_c00104{font-size:84.000000px;}
.fse_c00104{font-size:84.750000px;}
.fsb_c00104{font-size:87.750000px;}
.fsf_c00104{font-size:114.750000px;}
.y0_c00104{bottom:0.000000px;}
.y20_c00104{bottom:361.078785px;}
.y1f_c00104{bottom:390.600135px;}
.y1e_c00104{bottom:420.840135px;}
.y1c_c00104{bottom:451.439160px;}
.y1d_c00104{bottom:451.439250px;}
.y1b_c00104{bottom:481.679070px;}
.y19_c00104{bottom:511.198290px;}
.y1a_c00104{bottom:511.198785px;}
.y18_c00104{bottom:541.440315px;}
.y17_c00104{bottom:600.479685px;}
.y16_c00104{bottom:600.479880px;}
.y15_c00104{bottom:629.999400px;}
.y14_c00104{bottom:630.000255px;}
.y13_c00104{bottom:659.879970px;}
.y12_c00104{bottom:659.880300px;}
.y11_c00104{bottom:689.399820px;}
.y10_c00104{bottom:719.280435px;}
.yf_c00104{bottom:748.800105px;}
.ye_c00104{bottom:749.158515px;}
.yd_c00104{bottom:809.638635px;}
.yc_c00104{bottom:869.039700px;}
.yb_c00104{bottom:898.559235px;}
.y9_c00104{bottom:928.078260px;}
.ya_c00104{bottom:928.078770px;}
.y7_c00104{bottom:958.319565px;}
.y8_c00104{bottom:958.320285px;}
.y6_c00104{bottom:988.559490px;}
.y4_c00104{bottom:1018.438755px;}
.y5_c00104{bottom:1018.439205px;}
.y3_c00104{bottom:1077.479625px;}
.y2_c00104{bottom:1106.999160px;}
.y1_c00104{bottom:1136.878875px;}
.h9_c00104{height:53.973633px;}
.h16_c00104{height:58.555664px;}
.h5_c00104{height:59.712891px;}
.hc_c00104{height:74.344482px;}
.h11_c00104{height:75.080566px;}
.he_c00104{height:75.585938px;}
.h8_c00104{height:75.816650px;}
.hb_c00104{height:75.875977px;}
.h4_c00104{height:76.552734px;}
.h1_c00104{height:77.288818px;}
.ha_c00104{height:77.853516px;}
.hd_c00104{height:78.609375px;}
.h3_c00104{height:78.760986px;}
.h15_c00104{height:79.365234px;}
.h10_c00104{height:80.233154px;}
.h18_c00104{height:80.791992px;}
.h13_c00104{height:80.928955px;}
.h2_c00104{height:80.969238px;}
.h7_c00104{height:81.533203px;}
.h14_c00104{height:82.388672px;}
.h6_c00104{height:83.015625px;}
.h12_c00104{height:83.756836px;}
.hf_c00104{height:86.721680px;}
.h17_c00104{height:112.620850px;}
.h0_c00104{height:1263.000000px;}
.w0_c00104{width:892.500000px;}
.x0_c00104{left:0.000000px;}
.x25_c00104{left:138.958350px;}
.xf_c00104{left:140.037210px;}
.x6_c00104{left:141.120945px;}
.x1_c00104{left:142.199850px;}
.x1c_c00104{left:155.879565px;}
.x3e_c00104{left:162.718500px;}
.x3f_c00104{left:176.759100px;}
.x32_c00104{left:180.719100px;}
.x26_c00104{left:183.238785px;}
.x33_c00104{left:196.559100px;}
.x1a_c00104{left:199.078785px;}
.x10_c00104{left:203.399850px;}
.x1b_c00104{left:212.040000px;}
.x34_c00104{left:218.519685px;}
.x7_c00104{left:239.399250px;}
.x8_c00104{left:254.159850px;}
.x27_c00104{left:260.998950px;}
.x11_c00104{left:271.438635px;}
.x23_c00104{left:304.199850px;}
.x24_c00104{left:324.718500px;}
.x2c_c00104{left:335.878350px;}
.x12_c00104{left:344.879535px;}
.x40_c00104{left:348.839535px;}
.x2d_c00104{left:360.719535px;}
.x41_c00104{left:364.318800px;}
.x1d_c00104{left:380.519685px;}
.x30_c00104{left:390.598530px;}
.x35_c00104{left:403.918950px;}
.x22_c00104{left:405.718500px;}
.x9_c00104{left:420.838530px;}
.x1e_c00104{left:422.998950px;}
.x2e_c00104{left:425.159415px;}
.xa_c00104{left:437.759535px;}
.x2f_c00104{left:445.318770px;}
.x36_c00104{left:451.080000px;}
.x31_c00104{left:454.319820px;}
.x1f_c00104{left:457.918950px;}
.x37_c00104{left:465.118785px;}
.x20_c00104{left:472.679670px;}
.xb_c00104{left:480.238770px;}
.x38_c00104{left:492.118785px;}
.x21_c00104{left:503.639700px;}
.x13_c00104{left:506.879520px;}
.xc_c00104{left:512.279850px;}
.x2_c00104{left:523.078770px;}
.x14_c00104{left:529.558635px;}
.x3_c00104{left:536.039985px;}
.x39_c00104{left:564.119385px;}
.x15_c00104{left:578.159820px;}
.x3a_c00104{left:579.239220px;}
.x28_c00104{left:595.799520px;}
.x16_c00104{left:604.798920px;}
.x29_c00104{left:613.439250px;}
.x3b_c00104{left:621.000000px;}
.x3c_c00104{left:635.399820px;}
.xd_c00104{left:636.479235px;}
.x4_c00104{left:645.839535px;}
.xe_c00104{left:651.239820px;}
.x5_c00104{left:669.958920px;}
.x17_c00104{left:674.279850px;}
.x3d_c00104{left:691.199385px;}
.x18_c00104{left:699.478635px;}
.x2a_c00104{left:743.038920px;}
.x2b_c00104{left:761.039385px;}
.x19_c00104{left:764.999355px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.lsd_c00104{letter-spacing:-18.950400pt;}
.ls23_c00104{letter-spacing:-13.867000pt;}
.ls19_c00104{letter-spacing:-11.886000pt;}
.ls20_c00104{letter-spacing:-9.516340pt;}
.ls18_c00104{letter-spacing:-8.582000pt;}
.lsb_c00104{letter-spacing:-7.266700pt;}
.ls4_c00104{letter-spacing:-7.134047pt;}
.lsa_c00104{letter-spacing:-6.313000pt;}
.ls24_c00104{letter-spacing:-5.984300pt;}
.ls7_c00104{letter-spacing:-5.285000pt;}
.ls12_c00104{letter-spacing:-5.283200pt;}
.ls17_c00104{letter-spacing:-4.670667pt;}
.ls15_c00104{letter-spacing:-4.664473pt;}
.ls8_c00104{letter-spacing:-4.619300pt;}
.ls14_c00104{letter-spacing:-4.587180pt;}
.ls6_c00104{letter-spacing:-3.961300pt;}
.ls22_c00104{letter-spacing:-3.845400pt;}
.ls1c_c00104{letter-spacing:-3.569300pt;}
.ls1d_c00104{letter-spacing:-3.332000pt;}
.ls2_c00104{letter-spacing:-3.304000pt;}
.ls1e_c00104{letter-spacing:-2.772640pt;}
.ls5_c00104{letter-spacing:-2.639000pt;}
.lse_c00104{letter-spacing:-2.530000pt;}
.ls1b_c00104{letter-spacing:-2.266000pt;}
.ls0_c00104{letter-spacing:-1.981700pt;}
.ls21_c00104{letter-spacing:-1.386667pt;}
.ls13_c00104{letter-spacing:-1.333333pt;}
.ls1_c00104{letter-spacing:-1.323700pt;}
.ls1a_c00104{letter-spacing:-0.692640pt;}
.ls11_c00104{letter-spacing:-0.672660pt;}
.ls9_c00104{letter-spacing:-0.658000pt;}
.ls3_c00104{letter-spacing:0.000000pt;}
.ls16_c00104{letter-spacing:0.686800pt;}
.ls1f_c00104{letter-spacing:2.772000pt;}
.lsc_c00104{letter-spacing:7.062073pt;}
.ls10_c00104{letter-spacing:9.015933pt;}
.lsf_c00104{letter-spacing:23.373447pt;}
.ws0_c00104{word-spacing:0.000000pt;}
._0_c00104{margin-left:-4.546896pt;}
._1_c00104{margin-left:-2.500308pt;}
._c_c00104{margin-left:-1.156308pt;}
._f_c00104{width:0.914174pt;}
._4_c00104{width:2.803104pt;}
._5_c00104{width:4.252949pt;}
._b_c00104{width:5.480472pt;}
._3_c00104{width:6.620177pt;}
._2_c00104{width:8.015317pt;}
._8_c00104{width:9.455138pt;}
._7_c00104{width:10.447658pt;}
._a_c00104{width:11.389251pt;}
._6_c00104{width:12.646557pt;}
._9_c00104{width:14.262236pt;}
._e_c00104{width:15.299358pt;}
._d_c00104{width:16.998008pt;}
._11_c00104{width:18.092504pt;}
._10_c00104{width:19.644140pt;}
._14_c00104{width:20.564666pt;}
._12_c00104{width:21.888657pt;}
._13_c00104{width:23.244266pt;}
._16_c00104{width:25.977330pt;}
._15_c00104{width:27.223238pt;}
.fs7_c00104{font-size:46.000000pt;}
.fs4_c00104{font-size:52.666667pt;}
.fs8_c00104{font-size:64.666667pt;}
.fsa_c00104{font-size:66.666667pt;}
.fs9_c00104{font-size:67.333333pt;}
.fsd_c00104{font-size:68.000000pt;}
.fs6_c00104{font-size:68.666667pt;}
.fs3_c00104{font-size:69.333333pt;}
.fs0_c00104{font-size:70.000000pt;}
.fs2_c00104{font-size:71.333333pt;}
.fsc_c00104{font-size:72.666667pt;}
.fs1_c00104{font-size:73.333333pt;}
.fs5_c00104{font-size:74.666667pt;}
.fse_c00104{font-size:75.333333pt;}
.fsb_c00104{font-size:78.000000pt;}
.fsf_c00104{font-size:102.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y20_c00104{bottom:320.958920pt;}
.y1f_c00104{bottom:347.200120pt;}
.y1e_c00104{bottom:374.080120pt;}
.y1c_c00104{bottom:401.279253pt;}
.y1d_c00104{bottom:401.279333pt;}
.y1b_c00104{bottom:428.159173pt;}
.y19_c00104{bottom:454.398480pt;}
.y1a_c00104{bottom:454.398920pt;}
.y18_c00104{bottom:481.280280pt;}
.y17_c00104{bottom:533.759720pt;}
.y16_c00104{bottom:533.759893pt;}
.y15_c00104{bottom:559.999467pt;}
.y14_c00104{bottom:560.000227pt;}
.y13_c00104{bottom:586.559973pt;}
.y12_c00104{bottom:586.560267pt;}
.y11_c00104{bottom:612.799840pt;}
.y10_c00104{bottom:639.360387pt;}
.yf_c00104{bottom:665.600093pt;}
.ye_c00104{bottom:665.918680pt;}
.yd_c00104{bottom:719.678787pt;}
.yc_c00104{bottom:772.479733pt;}
.yb_c00104{bottom:798.719320pt;}
.y9_c00104{bottom:824.958453pt;}
.ya_c00104{bottom:824.958907pt;}
.y7_c00104{bottom:851.839613pt;}
.y8_c00104{bottom:851.840253pt;}
.y6_c00104{bottom:878.719547pt;}
.y4_c00104{bottom:905.278893pt;}
.y5_c00104{bottom:905.279293pt;}
.y3_c00104{bottom:957.759667pt;}
.y2_c00104{bottom:983.999253pt;}
.y1_c00104{bottom:1010.559000pt;}
.h9_c00104{height:47.976562pt;}
.h16_c00104{height:52.049479pt;}
.h5_c00104{height:53.078125pt;}
.hc_c00104{height:66.083984pt;}
.h11_c00104{height:66.738281pt;}
.he_c00104{height:67.187500pt;}
.h8_c00104{height:67.392578pt;}
.hb_c00104{height:67.445312pt;}
.h4_c00104{height:68.046875pt;}
.h1_c00104{height:68.701172pt;}
.ha_c00104{height:69.203125pt;}
.hd_c00104{height:69.875000pt;}
.h3_c00104{height:70.009766pt;}
.h15_c00104{height:70.546875pt;}
.h10_c00104{height:71.318359pt;}
.h18_c00104{height:71.815104pt;}
.h13_c00104{height:71.936849pt;}
.h2_c00104{height:71.972656pt;}
.h7_c00104{height:72.473958pt;}
.h14_c00104{height:73.234375pt;}
.h6_c00104{height:73.791667pt;}
.h12_c00104{height:74.450521pt;}
.hf_c00104{height:77.085938pt;}
.h17_c00104{height:100.107422pt;}
.h0_c00104{height:1122.666667pt;}
.w0_c00104{width:793.333333pt;}
.x0_c00104{left:0.000000pt;}
.x25_c00104{left:123.518533pt;}
.xf_c00104{left:124.477520pt;}
.x6_c00104{left:125.440840pt;}
.x1_c00104{left:126.399867pt;}
.x1c_c00104{left:138.559613pt;}
.x3e_c00104{left:144.638667pt;}
.x3f_c00104{left:157.119200pt;}
.x32_c00104{left:160.639200pt;}
.x26_c00104{left:162.878920pt;}
.x33_c00104{left:174.719200pt;}
.x1a_c00104{left:176.958920pt;}
.x10_c00104{left:180.799867pt;}
.x1b_c00104{left:188.480000pt;}
.x34_c00104{left:194.239720pt;}
.x7_c00104{left:212.799333pt;}
.x8_c00104{left:225.919867pt;}
.x27_c00104{left:231.999067pt;}
.x11_c00104{left:241.278787pt;}
.x23_c00104{left:270.399867pt;}
.x24_c00104{left:288.638667pt;}
.x2c_c00104{left:298.558533pt;}
.x12_c00104{left:306.559587pt;}
.x40_c00104{left:310.079587pt;}
.x2d_c00104{left:320.639587pt;}
.x41_c00104{left:323.838933pt;}
.x1d_c00104{left:338.239720pt;}
.x30_c00104{left:347.198693pt;}
.x35_c00104{left:359.039067pt;}
.x22_c00104{left:360.638667pt;}
.x9_c00104{left:374.078693pt;}
.x1e_c00104{left:375.999067pt;}
.x2e_c00104{left:377.919480pt;}
.xa_c00104{left:389.119587pt;}
.x2f_c00104{left:395.838907pt;}
.x36_c00104{left:400.960000pt;}
.x31_c00104{left:403.839840pt;}
.x1f_c00104{left:407.039067pt;}
.x37_c00104{left:413.438920pt;}
.x20_c00104{left:420.159707pt;}
.xb_c00104{left:426.878907pt;}
.x38_c00104{left:437.438920pt;}
.x21_c00104{left:447.679733pt;}
.x13_c00104{left:450.559573pt;}
.xc_c00104{left:455.359867pt;}
.x2_c00104{left:464.958907pt;}
.x14_c00104{left:470.718787pt;}
.x3_c00104{left:476.479987pt;}
.x39_c00104{left:501.439453pt;}
.x15_c00104{left:513.919840pt;}
.x3a_c00104{left:514.879307pt;}
.x28_c00104{left:529.599573pt;}
.x16_c00104{left:537.599040pt;}
.x29_c00104{left:545.279333pt;}
.x3b_c00104{left:552.000000pt;}
.x3c_c00104{left:564.799840pt;}
.xd_c00104{left:565.759320pt;}
.x4_c00104{left:574.079587pt;}
.xe_c00104{left:578.879840pt;}
.x5_c00104{left:595.519040pt;}
.x17_c00104{left:599.359867pt;}
.x3d_c00104{left:614.399453pt;}
.x18_c00104{left:621.758787pt;}
.x2a_c00104{left:660.479040pt;}
.x2b_c00104{left:676.479453pt;}
.x19_c00104{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52a6eff5e0286171fd38c95d.woff2')format("woff");}.ff1_c00105{font-family:ff1_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:ff2_c00105;src:url('chunks/assets/font_b890e16377dec56fd096f076.woff2')format("woff");}.ff2_c00105{font-family:ff2_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:ff3_c00105;src:url('chunks/assets/font_bd063b0472fe2cdfc87dba1a.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.364746;font-style:normal;font-weight:normal;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_6a19c2147f8e5889b46050f1.woff2')format("woff");}.ff4_c00105{font-family:ff4_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:ff5_c00105;src:url('chunks/assets/font_30af6b2fc55503c9992e2bdc.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.364746;font-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_c00105{transform:matrix(0.131443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131443,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{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);}
.mf_c00105{transform:matrix(0.183486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183486,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.233221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233221,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m18_c00105{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.296392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296392,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.296729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296729,0.000000,0.000000,0.250000,0,0);}
.v1_c00105{vertical-align:-1.440780px;}
.v0_c00105{vertical-align:0.000000px;}
.lsf_c00105{letter-spacing:-18.643230px;}
.ls4_c00105{letter-spacing:-12.771000px;}
.lsc_c00105{letter-spacing:-8.914500px;}
.ls14_c00105{letter-spacing:-8.555400px;}
.ls1e_c00105{letter-spacing:-8.175038px;}
.ls10_c00105{letter-spacing:-7.426125px;}
.lsd_c00105{letter-spacing:-6.685875px;}
.lsb_c00105{letter-spacing:-5.945625px;}
.ls5_c00105{letter-spacing:-5.196713px;}
.ls11_c00105{letter-spacing:-4.628700px;}
.ls7_c00105{letter-spacing:-4.456463px;}
.ls13_c00105{letter-spacing:-4.261275px;}
.ls15_c00105{letter-spacing:-4.176900px;}
.ls16_c00105{letter-spacing:-3.797550px;}
.ls3_c00105{letter-spacing:-3.717000px;}
.ls1c_c00105{letter-spacing:-3.217283px;}
.ls6_c00105{letter-spacing:-2.968875px;}
.ls1_c00105{letter-spacing:-2.229413px;}
.ls19_c00105{letter-spacing:-2.187135px;}
.ls17_c00105{letter-spacing:-1.894703px;}
.ls9_c00105{letter-spacing:-1.489163px;}
.ls1b_c00105{letter-spacing:-1.474200px;}
.ls1d_c00105{letter-spacing:-0.808500px;}
.lsa_c00105{letter-spacing:-0.794820px;}
.ls1a_c00105{letter-spacing:-0.759458px;}
.ls8_c00105{letter-spacing:-0.740250px;}
.ls2_c00105{letter-spacing:0.000000px;}
.ls18_c00105{letter-spacing:1.732500px;}
.lse_c00105{letter-spacing:3.502980px;}
.ls0_c00105{letter-spacing:3.854955px;}
.ls12_c00105{letter-spacing:31.248000px;}
.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;}
._1e_c00105{margin-left:-7.396141px;}
._1a_c00105{margin-left:-2.193886px;}
._11_c00105{width:2.183247px;}
._e_c00105{width:3.756464px;}
._12_c00105{width:5.070148px;}
._16_c00105{width:6.381841px;}
._10_c00105{width:7.485485px;}
._17_c00105{width:8.581462px;}
._14_c00105{width:9.871818px;}
._13_c00105{width:10.922447px;}
._d_c00105{width:12.065510px;}
._1b_c00105{width:13.960859px;}
._8_c00105{width:15.019304px;}
._1d_c00105{width:16.120496px;}
._f_c00105{width:17.367228px;}
._18_c00105{width:18.858575px;}
._15_c00105{width:20.136509px;}
._5_c00105{width:21.534455px;}
._19_c00105{width:23.151148px;}
._6_c00105{width:24.256144px;}
._b_c00105{width:25.401214px;}
._2_c00105{width:26.403865px;}
._7_c00105{width:27.599096px;}
._1c_c00105{width:28.913731px;}
._1_c00105{width:31.268445px;}
._0_c00105{width:32.590569px;}
._3_c00105{width:34.247216px;}
._9_c00105{width:38.107690px;}
._c_c00105{width:39.756061px;}
._4_c00105{width:42.805900px;}
._a_c00105{width:44.470155px;}
.fc0_c00105{color:transparent;}
.fs7_c00105{font-size:52.500000px;}
.fs8_c00105{font-size:72.750000px;}
.fsa_c00105{font-size:76.500000px;}
.fs2_c00105{font-size:78.000000px;}
.fs1_c00105{font-size:78.750000px;}
.fs0_c00105{font-size:79.500000px;}
.fs4_c00105{font-size:80.250000px;}
.fs9_c00105{font-size:81.750000px;}
.fs3_c00105{font-size:82.500000px;}
.fs6_c00105{font-size:83.250000px;}
.fs5_c00105{font-size:87.000000px;}
.fsb_c00105{font-size:87.750000px;}
.fsc_c00105{font-size:111.750000px;}
.y0_c00105{bottom:0.000000px;}
.y25_c00105{bottom:183.959400px;}
.y24_c00105{bottom:213.839130px;}
.y23_c00105{bottom:244.079040px;}
.y22_c00105{bottom:274.318950px;}
.y21_c00105{bottom:303.838485px;}
.y20_c00105{bottom:363.239550px;}
.y1f_c00105{bottom:392.759085px;}
.y1e_c00105{bottom:422.639700px;}
.y1d_c00105{bottom:422.998950px;}
.y1b_c00105{bottom:453.237645px;}
.y1c_c00105{bottom:453.238770px;}
.y1a_c00105{bottom:484.198245px;}
.y19_c00105{bottom:512.999205px;}
.y18_c00105{bottom:542.878920px;}
.y17_c00105{bottom:542.879130px;}
.y16_c00105{bottom:602.280195px;}
.y15_c00105{bottom:662.399820px;}
.y14_c00105{bottom:662.400855px;}
.y13_c00105{bottom:691.920390px;}
.y12_c00105{bottom:721.800105px;}
.y11_c00105{bottom:781.200510px;}
.y10_c00105{bottom:811.080225px;}
.yf_c00105{bottom:841.678530px;}
.ye_c00105{bottom:841.679325px;}
.yd_c00105{bottom:871.559055px;}
.yc_c00105{bottom:871.559940px;}
.yb_c00105{bottom:901.439670px;}
.ya_c00105{bottom:901.440075px;}
.y9_c00105{bottom:930.959610px;}
.y8_c00105{bottom:960.839340px;}
.y7_c00105{bottom:990.719055px;}
.y6_c00105{bottom:990.719955px;}
.y5_c00105{bottom:1020.599670px;}
.y4_c00105{bottom:1020.599805px;}
.y3_c00105{bottom:1050.119340px;}
.y2_c00105{bottom:1080.359250px;}
.y1_c00105{bottom:1140.479640px;}
.h9_c00105{height:54.755859px;}
.hc_c00105{height:71.897461px;}
.hf_c00105{height:73.318359px;}
.he_c00105{height:75.080566px;}
.h3_c00105{height:76.552734px;}
.h2_c00105{height:77.288818px;}
.h5_c00105{height:78.760986px;}
.ha_c00105{height:79.365234px;}
.h1_c00105{height:80.121094px;}
.h10_c00105{height:80.233154px;}
.hd_c00105{height:80.791992px;}
.hb_c00105{height:80.876953px;}
.h6_c00105{height:80.969238px;}
.h4_c00105{height:81.533203px;}
.h8_c00105{height:81.705322px;}
.h7_c00105{height:85.980469px;}
.h11_c00105{height:86.721680px;}
.h12_c00105{height:112.623047px;}
.h0_c00105{height:1263.000000px;}
.w0_c00105{width:892.500000px;}
.x0_c00105{left:0.000000px;}
.x12_c00105{left:140.399505px;}
.x6_c00105{left:141.479625px;}
.x1_c00105{left:142.559100px;}
.x11_c00105{left:166.319250px;}
.x3_c00105{left:176.038950px;}
.x1b_c00105{left:189.000000px;}
.xb_c00105{left:203.399850px;}
.x2_c00105{left:209.518635px;}
.x1c_c00105{left:212.399250px;}
.xc_c00105{left:222.479685px;}
.x1d_c00105{left:258.120000px;}
.x1e_c00105{left:334.439685px;}
.x1f_c00105{left:357.118785px;}
.x19_c00105{left:371.159385px;}
.x20_c00105{left:375.478635px;}
.x1a_c00105{left:416.519070px;}
.x21_c00105{left:453.238770px;}
.x9_c00105{left:459.359250px;}
.xf_c00105{left:461.519670px;}
.x22_c00105{left:467.279250px;}
.x10_c00105{left:475.919535px;}
.xa_c00105{left:485.279850px;}
.x7_c00105{left:502.919535px;}
.x23_c00105{left:515.158770px;}
.x8_c00105{left:525.239220px;}
.x24_c00105{left:537.119385px;}
.x13_c00105{left:551.159820px;}
.x14_c00105{left:565.559685px;}
.x25_c00105{left:583.199385px;}
.x26_c00105{left:607.318770px;}
.xd_c00105{left:629.279250px;}
.x17_c00105{left:631.439670px;}
.x4_c00105{left:640.080000px;}
.xe_c00105{left:653.759535px;}
.x5_c00105{left:668.518620px;}
.x18_c00105{left:677.158770px;}
.x27_c00105{left:681.838950px;}
.x15_c00105{left:694.798560px;}
.x16_c00105{left:709.918350px;}
.x28_c00105{left:755.639100px;}
@media print{
.v1_c00105{vertical-align:-1.280693pt;}
.v0_c00105{vertical-align:0.000000pt;}
.lsf_c00105{letter-spacing:-16.571760pt;}
.ls4_c00105{letter-spacing:-11.352000pt;}
.lsc_c00105{letter-spacing:-7.924000pt;}
.ls14_c00105{letter-spacing:-7.604800pt;}
.ls1e_c00105{letter-spacing:-7.266700pt;}
.ls10_c00105{letter-spacing:-6.601000pt;}
.lsd_c00105{letter-spacing:-5.943000pt;}
.lsb_c00105{letter-spacing:-5.285000pt;}
.ls5_c00105{letter-spacing:-4.619300pt;}
.ls11_c00105{letter-spacing:-4.114400pt;}
.ls7_c00105{letter-spacing:-3.961300pt;}
.ls13_c00105{letter-spacing:-3.787800pt;}
.ls15_c00105{letter-spacing:-3.712800pt;}
.ls16_c00105{letter-spacing:-3.375600pt;}
.ls3_c00105{letter-spacing:-3.304000pt;}
.ls1c_c00105{letter-spacing:-2.859807pt;}
.ls6_c00105{letter-spacing:-2.639000pt;}
.ls1_c00105{letter-spacing:-1.981700pt;}
.ls19_c00105{letter-spacing:-1.944120pt;}
.ls17_c00105{letter-spacing:-1.684180pt;}
.ls9_c00105{letter-spacing:-1.323700pt;}
.ls1b_c00105{letter-spacing:-1.310400pt;}
.ls1d_c00105{letter-spacing:-0.718667pt;}
.lsa_c00105{letter-spacing:-0.706507pt;}
.ls1a_c00105{letter-spacing:-0.675073pt;}
.ls8_c00105{letter-spacing:-0.658000pt;}
.ls2_c00105{letter-spacing:0.000000pt;}
.ls18_c00105{letter-spacing:1.540000pt;}
.lse_c00105{letter-spacing:3.113760pt;}
.ls0_c00105{letter-spacing:3.426627pt;}
.ls12_c00105{letter-spacing:27.776000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
._1e_c00105{margin-left:-6.574347pt;}
._1a_c00105{margin-left:-1.950121pt;}
._11_c00105{width:1.940664pt;}
._e_c00105{width:3.339079pt;}
._12_c00105{width:4.506798pt;}
._16_c00105{width:5.672747pt;}
._10_c00105{width:6.653764pt;}
._17_c00105{width:7.627966pt;}
._14_c00105{width:8.774949pt;}
._13_c00105{width:9.708842pt;}
._d_c00105{width:10.724898pt;}
._1b_c00105{width:12.409653pt;}
._8_c00105{width:13.350492pt;}
._1d_c00105{width:14.329330pt;}
._f_c00105{width:15.437536pt;}
._18_c00105{width:16.763177pt;}
._15_c00105{width:17.899119pt;}
._5_c00105{width:19.141738pt;}
._19_c00105{width:20.578798pt;}
._6_c00105{width:21.561017pt;}
._b_c00105{width:22.578857pt;}
._2_c00105{width:23.470102pt;}
._7_c00105{width:24.532530pt;}
._1c_c00105{width:25.701094pt;}
._1_c00105{width:27.794174pt;}
._0_c00105{width:28.969394pt;}
._3_c00105{width:30.441970pt;}
._9_c00105{width:33.873502pt;}
._c_c00105{width:35.338721pt;}
._4_c00105{width:38.049689pt;}
._a_c00105{width:39.529026pt;}
.fs7_c00105{font-size:46.666667pt;}
.fs8_c00105{font-size:64.666667pt;}
.fsa_c00105{font-size:68.000000pt;}
.fs2_c00105{font-size:69.333333pt;}
.fs1_c00105{font-size:70.000000pt;}
.fs0_c00105{font-size:70.666667pt;}
.fs4_c00105{font-size:71.333333pt;}
.fs9_c00105{font-size:72.666667pt;}
.fs3_c00105{font-size:73.333333pt;}
.fs6_c00105{font-size:74.000000pt;}
.fs5_c00105{font-size:77.333333pt;}
.fsb_c00105{font-size:78.000000pt;}
.fsc_c00105{font-size:99.333333pt;}
.y0_c00105{bottom:0.000000pt;}
.y25_c00105{bottom:163.519467pt;}
.y24_c00105{bottom:190.079227pt;}
.y23_c00105{bottom:216.959147pt;}
.y22_c00105{bottom:243.839067pt;}
.y21_c00105{bottom:270.078653pt;}
.y20_c00105{bottom:322.879600pt;}
.y1f_c00105{bottom:349.119187pt;}
.y1e_c00105{bottom:375.679733pt;}
.y1d_c00105{bottom:375.999067pt;}
.y1b_c00105{bottom:402.877907pt;}
.y1c_c00105{bottom:402.878907pt;}
.y1a_c00105{bottom:430.398440pt;}
.y19_c00105{bottom:455.999293pt;}
.y18_c00105{bottom:482.559040pt;}
.y17_c00105{bottom:482.559227pt;}
.y16_c00105{bottom:535.360173pt;}
.y15_c00105{bottom:588.799840pt;}
.y14_c00105{bottom:588.800760pt;}
.y13_c00105{bottom:615.040347pt;}
.y12_c00105{bottom:641.600093pt;}
.y11_c00105{bottom:694.400453pt;}
.y10_c00105{bottom:720.960200pt;}
.yf_c00105{bottom:748.158693pt;}
.ye_c00105{bottom:748.159400pt;}
.yd_c00105{bottom:774.719160pt;}
.yc_c00105{bottom:774.719947pt;}
.yb_c00105{bottom:801.279707pt;}
.ya_c00105{bottom:801.280067pt;}
.y9_c00105{bottom:827.519653pt;}
.y8_c00105{bottom:854.079413pt;}
.y7_c00105{bottom:880.639160pt;}
.y6_c00105{bottom:880.639960pt;}
.y5_c00105{bottom:907.199707pt;}
.y4_c00105{bottom:907.199827pt;}
.y3_c00105{bottom:933.439413pt;}
.y2_c00105{bottom:960.319333pt;}
.y1_c00105{bottom:1013.759680pt;}
.h9_c00105{height:48.671875pt;}
.hc_c00105{height:63.908854pt;}
.hf_c00105{height:65.171875pt;}
.he_c00105{height:66.738281pt;}
.h3_c00105{height:68.046875pt;}
.h2_c00105{height:68.701172pt;}
.h5_c00105{height:70.009766pt;}
.ha_c00105{height:70.546875pt;}
.h1_c00105{height:71.218750pt;}
.h10_c00105{height:71.318359pt;}
.hd_c00105{height:71.815104pt;}
.hb_c00105{height:71.890625pt;}
.h6_c00105{height:71.972656pt;}
.h4_c00105{height:72.473958pt;}
.h8_c00105{height:72.626953pt;}
.h7_c00105{height:76.427083pt;}
.h11_c00105{height:77.085938pt;}
.h12_c00105{height:100.109375pt;}
.h0_c00105{height:1122.666667pt;}
.w0_c00105{width:793.333333pt;}
.x0_c00105{left:0.000000pt;}
.x12_c00105{left:124.799560pt;}
.x6_c00105{left:125.759667pt;}
.x1_c00105{left:126.719200pt;}
.x11_c00105{left:147.839333pt;}
.x3_c00105{left:156.479067pt;}
.x1b_c00105{left:168.000000pt;}
.xb_c00105{left:180.799867pt;}
.x2_c00105{left:186.238787pt;}
.x1c_c00105{left:188.799333pt;}
.xc_c00105{left:197.759720pt;}
.x1d_c00105{left:229.440000pt;}
.x1e_c00105{left:297.279720pt;}
.x1f_c00105{left:317.438920pt;}
.x19_c00105{left:329.919453pt;}
.x20_c00105{left:333.758787pt;}
.x1a_c00105{left:370.239173pt;}
.x21_c00105{left:402.878907pt;}
.x9_c00105{left:408.319333pt;}
.xf_c00105{left:410.239707pt;}
.x22_c00105{left:415.359333pt;}
.x10_c00105{left:423.039587pt;}
.xa_c00105{left:431.359867pt;}
.x7_c00105{left:447.039587pt;}
.x23_c00105{left:457.918907pt;}
.x8_c00105{left:466.879307pt;}
.x24_c00105{left:477.439453pt;}
.x13_c00105{left:489.919840pt;}
.x14_c00105{left:502.719720pt;}
.x25_c00105{left:518.399453pt;}
.x26_c00105{left:539.838907pt;}
.xd_c00105{left:559.359333pt;}
.x17_c00105{left:561.279707pt;}
.x4_c00105{left:568.960000pt;}
.xe_c00105{left:581.119587pt;}
.x5_c00105{left:594.238773pt;}
.x18_c00105{left:601.918907pt;}
.x27_c00105{left:606.079067pt;}
.x15_c00105{left:617.598720pt;}
.x16_c00105{left:631.038533pt;}
.x28_c00105{left:671.679200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22173bebd7f30793dcfddf67.woff2')format("woff");}.ff1_c00106{font-family:ff1_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:ff2_c00106;src:url('chunks/assets/font_873928a2ad6e6993974caf66.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.364746;font-style:normal;font-weight:normal;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_f4bdbecc2e61aab1b2539169.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_dd057ead84ce0f507da72a4a.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_401b9fe6e81798a1018a5232.woff2')format("woff");}.ff5_c00106{font-family:ff5_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:ff6_c00106;src:url('chunks/assets/font_54a040920ed88da76aedaa5d.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00106{transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m1e_c00106{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2c_c00106{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00106{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);}
.m16_c00106{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m19_c00106{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m20_c00106{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m17_c00106{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m2a_c00106{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m26_c00106{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m1a_c00106{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1f_c00106{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{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_c00106{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m1b_c00106{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m2b_c00106{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m27_c00106{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m29_c00106{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1d_c00106{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m21_c00106{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m1c_c00106{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);}
.m28_c00106{transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);}
.m25_c00106{transform:matrix(0.311148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311148,0.000000,0.000000,0.250000,0,0);}
.m24_c00106{transform:matrix(0.384921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384921,0.000000,0.000000,0.250000,0,0);}
.m22_c00106{transform:matrix(0.427632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427632,0.000000,0.000000,0.250000,0,0);}
.m23_c00106{transform:matrix(0.486486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486486,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls17_c00106{letter-spacing:-13.102875px;}
.ls29_c00106{letter-spacing:-11.949150px;}
.ls1f_c00106{letter-spacing:-10.054193px;}
.ls27_c00106{letter-spacing:-10.035900px;}
.ls12_c00106{letter-spacing:-8.914500px;}
.lse_c00106{letter-spacing:-8.175038px;}
.lsc_c00106{letter-spacing:-7.953825px;}
.ls2d_c00106{letter-spacing:-7.700483px;}
.ls13_c00106{letter-spacing:-7.426125px;}
.ls21_c00106{letter-spacing:-7.083450px;}
.ls19_c00106{letter-spacing:-6.876900px;}
.lsd_c00106{letter-spacing:-6.685875px;}
.ls22_c00106{letter-spacing:-6.180000px;}
.ls9_c00106{letter-spacing:-6.051443px;}
.ls6_c00106{letter-spacing:-5.945625px;}
.lsf_c00106{letter-spacing:-5.247533px;}
.lsb_c00106{letter-spacing:-5.196713px;}
.ls1e_c00106{letter-spacing:-4.855950px;}
.ls11_c00106{letter-spacing:-4.456463px;}
.ls5_c00106{letter-spacing:-3.717000px;}
.ls23_c00106{letter-spacing:-3.576675px;}
.ls30_c00106{letter-spacing:-3.171900px;}
.ls4_c00106{letter-spacing:-2.968875px;}
.ls15_c00106{letter-spacing:-2.855775px;}
.ls1a_c00106{letter-spacing:-2.454848px;}
.ls1b_c00106{letter-spacing:-2.407500px;}
.ls2b_c00106{letter-spacing:-2.317500px;}
.ls1c_c00106{letter-spacing:-2.230020px;}
.ls3_c00106{letter-spacing:-2.229413px;}
.ls2f_c00106{letter-spacing:-2.189250px;}
.ls2a_c00106{letter-spacing:-1.586955px;}
.ls8_c00106{letter-spacing:-1.539000px;}
.ls2_c00106{letter-spacing:-1.489163px;}
.ls2e_c00106{letter-spacing:-1.482000px;}
.ls7_c00106{letter-spacing:-0.740250px;}
.lsa_c00106{letter-spacing:0.000000px;}
.ls24_c00106{letter-spacing:0.724500px;}
.ls0_c00106{letter-spacing:0.740250px;}
.ls28_c00106{letter-spacing:1.316700px;}
.ls16_c00106{letter-spacing:1.422900px;}
.ls1_c00106{letter-spacing:1.489163px;}
.ls25_c00106{letter-spacing:1.564125px;}
.ls26_c00106{letter-spacing:1.634325px;}
.ls10_c00106{letter-spacing:2.347500px;}
.ls14_c00106{letter-spacing:3.657795px;}
.ls18_c00106{letter-spacing:5.072925px;}
.ls1d_c00106{letter-spacing:6.757050px;}
.ls20_c00106{letter-spacing:9.172350px;}
.ls2c_c00106{letter-spacing:10.297425px;}
.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;}
._0_c00106{margin-left:-5.418609px;}
._a_c00106{margin-left:-4.136856px;}
._e_c00106{margin-left:-2.527756px;}
._11_c00106{margin-left:-1.419045px;}
._5_c00106{width:1.265037px;}
._1_c00106{width:2.530654px;}
._6_c00106{width:4.170793px;}
._9_c00106{width:6.115606px;}
._2_c00106{width:7.562838px;}
._10_c00106{width:8.575845px;}
._3_c00106{width:9.687676px;}
._d_c00106{width:10.791439px;}
._8_c00106{width:12.252935px;}
._b_c00106{width:14.305725px;}
._13_c00106{width:15.668947px;}
._12_c00106{width:16.939066px;}
._4_c00106{width:18.085502px;}
._7_c00106{width:19.379840px;}
._16_c00106{width:21.422288px;}
._17_c00106{width:22.819016px;}
._c_c00106{width:24.136578px;}
._f_c00106{width:25.879553px;}
._15_c00106{width:27.747444px;}
._1a_c00106{width:28.764136px;}
._1e_c00106{width:29.939368px;}
._18_c00106{width:32.254975px;}
._1b_c00106{width:33.314861px;}
._19_c00106{width:35.886880px;}
._1c_c00106{width:37.095901px;}
._14_c00106{width:38.405900px;}
._1d_c00106{width:41.650370px;}
.fc0_c00106{color:transparent;}
.fs12_c00106{font-size:27.750000px;}
.fs11_c00106{font-size:28.500000px;}
.fs13_c00106{font-size:47.250000px;}
.fs16_c00106{font-size:53.250000px;}
.fs14_c00106{font-size:53.332200px;}
.fsa_c00106{font-size:69.750000px;}
.fs15_c00106{font-size:70.500000px;}
.fsb_c00106{font-size:71.250000px;}
.fsc_c00106{font-size:72.000000px;}
.fs10_c00106{font-size:72.750000px;}
.fse_c00106{font-size:74.250000px;}
.fs6_c00106{font-size:75.000000px;}
.fs9_c00106{font-size:75.750000px;}
.fsf_c00106{font-size:77.250000px;}
.fsd_c00106{font-size:78.000000px;}
.fs0_c00106{font-size:78.750000px;}
.fs8_c00106{font-size:79.500000px;}
.fs4_c00106{font-size:80.250000px;}
.fs1_c00106{font-size:81.000000px;}
.fs5_c00106{font-size:81.750000px;}
.fs3_c00106{font-size:82.500000px;}
.fs2_c00106{font-size:83.250000px;}
.fs7_c00106{font-size:84.750000px;}
.y0_c00106{bottom:0.000000px;}
.y28_c00106{bottom:186.119565px;}
.y27_c00106{bottom:215.639100px;}
.y26_c00106{bottom:215.639880px;}
.y25_c00106{bottom:244.801020px;}
.y24_c00106{bottom:275.040945px;}
.y23_c00106{bottom:334.079700px;}
.y22_c00106{bottom:363.959430px;}
.y21_c00106{bottom:394.199340px;}
.y20_c00106{bottom:424.439250px;}
.y1f_c00106{bottom:430.198785px;}
.y1e_c00106{bottom:453.599670px;}
.y1d_c00106{bottom:483.839535px;}
.y1c_c00106{bottom:483.839625px;}
.y1b_c00106{bottom:514.079550px;}
.y1a_c00106{bottom:543.599070px;}
.y19_c00106{bottom:602.640150px;}
.y18_c00106{bottom:602.640930px;}
.y17_c00106{bottom:633.239220px;}
.y16_c00106{bottom:633.239550px;}
.y15_c00106{bottom:662.759085px;}
.y14_c00106{bottom:692.998215px;}
.y13_c00106{bottom:722.159370px;}
.y11_c00106{bottom:752.398545px;}
.y12_c00106{bottom:752.399235px;}
.y10_c00106{bottom:781.559685px;}
.yf_c00106{bottom:781.560510px;}
.yd_c00106{bottom:812.157780px;}
.ye_c00106{bottom:812.158815px;}
.yc_c00106{bottom:842.397690px;}
.yb_c00106{bottom:902.159250px;}
.ya_c00106{bottom:932.038965px;}
.y9_c00106{bottom:961.919490px;}
.y8_c00106{bottom:991.799535px;}
.y7_c00106{bottom:1021.319070px;}
.y5_c00106{bottom:1051.198110px;}
.y6_c00106{bottom:1051.198785px;}
.y4_c00106{bottom:1080.359250px;}
.y3_c00106{bottom:1110.599025px;}
.y2_c00106{bottom:1110.599925px;}
.y1_c00106{bottom:1140.479640px;}
.h19_c00106{height:27.424805px;}
.h18_c00106{height:29.724609px;}
.h1a_c00106{height:49.280273px;}
.h1d_c00106{height:55.538086px;}
.h1b_c00106{height:55.623818px;}
.hc_c00106{height:68.455811px;}
.h17_c00106{height:71.400146px;}
.h1c_c00106{height:73.529297px;}
.h8_c00106{height:73.608398px;}
.hd_c00106{height:74.311523px;}
.hb_c00106{height:74.344482px;}
.h10_c00106{height:75.093750px;}
.h16_c00106{height:75.816650px;}
.h11_c00106{height:76.552734px;}
.h1_c00106{height:77.288818px;}
.h13_c00106{height:77.440430px;}
.h15_c00106{height:77.853516px;}
.ha_c00106{height:78.024902px;}
.h5_c00106{height:78.760986px;}
.h1e_c00106{height:79.365234px;}
.h2_c00106{height:79.497070px;}
.h14_c00106{height:80.121094px;}
.h7_c00106{height:80.233154px;}
.hf_c00106{height:80.876953px;}
.h4_c00106{height:80.969238px;}
.h6_c00106{height:81.533203px;}
.he_c00106{height:81.632812px;}
.h3_c00106{height:81.705322px;}
.h12_c00106{height:82.388672px;}
.h9_c00106{height:83.177490px;}
.h0_c00106{height:1263.000000px;}
.w0_c00106{width:892.500000px;}
.x0_c00106{left:0.000000px;}
.x12_c00106{left:138.599100px;}
.x1_c00106{left:139.678500px;}
.x7_c00106{left:140.759565px;}
.x28_c00106{left:152.278800px;}
.x8_c00106{left:156.238785px;}
.x19_c00106{left:158.040000px;}
.x31_c00106{left:164.519685px;}
.x34_c00106{left:187.198785px;}
.x1a_c00106{left:219.599100px;}
.x35_c00106{left:224.279250px;}
.x2d_c00106{left:240.119385px;}
.x1b_c00106{left:242.279850px;}
.x5_c00106{left:244.079385px;}
.x29_c00106{left:252.719535px;}
.x15_c00106{left:255.239250px;}
.x6_c00106{left:258.838515px;}
.x1c_c00106{left:260.639700px;}
.x16_c00106{left:276.118785px;}
.x2e_c00106{left:277.559100px;}
.xb_c00106{left:280.078785px;}
.x2a_c00106{left:282.598500px;}
.x36_c00106{left:289.439235px;}
.x1d_c00106{left:290.518635px;}
.xc_c00106{left:300.599100px;}
.x1e_c00106{left:313.199385px;}
.x37_c00106{left:321.478635px;}
.x38_c00106{left:388.078815px;}
.x13_c00106{left:403.559685px;}
.x39_c00106{left:408.239820px;}
.x1f_c00106{left:411.118785px;}
.x14_c00106{left:416.519070px;}
.x3a_c00106{left:453.599670px;}
.x2_c00106{left:478.439250px;}
.x2f_c00106{left:479.879520px;}
.xf_c00106{left:481.319820px;}
.x20_c00106{left:483.119385px;}
.x17_c00106{left:484.918950px;}
.x30_c00106{left:494.279250px;}
.x21_c00106{left:496.439670px;}
.x10_c00106{left:497.519070px;}
.x18_c00106{left:498.959385px;}
.x22_c00106{left:514.799520px;}
.x9_c00106{left:526.318770px;}
.x3b_c00106{left:537.839535px;}
.x3e_c00106{left:545.039385px;}
.x3_c00106{left:550.798920px;}
.x3f_c00106{left:565.198785px;}
.x3c_c00106{left:568.799520px;}
.x4_c00106{left:570.958335px;}
.x23_c00106{left:578.159820px;}
.x24_c00106{left:600.838950px;}
.x25_c00106{left:627.479685px;}
.xd_c00106{left:636.479235px;}
.x3d_c00106{left:644.039985px;}
.xa_c00106{left:651.239820px;}
.x2b_c00106{left:654.479685px;}
.x2c_c00106{left:668.879520px;}
.xe_c00106{left:671.039985px;}
.x26_c00106{left:692.278800px;}
.x27_c00106{left:720.719100px;}
.x32_c00106{left:728.639100px;}
.x33_c00106{left:760.319235px;}
.x11_c00106{left:763.199850px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls17_c00106{letter-spacing:-11.647000pt;}
.ls29_c00106{letter-spacing:-10.621467pt;}
.ls1f_c00106{letter-spacing:-8.937060pt;}
.ls27_c00106{letter-spacing:-8.920800pt;}
.ls12_c00106{letter-spacing:-7.924000pt;}
.lse_c00106{letter-spacing:-7.266700pt;}
.lsc_c00106{letter-spacing:-7.070067pt;}
.ls2d_c00106{letter-spacing:-6.844873pt;}
.ls13_c00106{letter-spacing:-6.601000pt;}
.ls21_c00106{letter-spacing:-6.296400pt;}
.ls19_c00106{letter-spacing:-6.112800pt;}
.lsd_c00106{letter-spacing:-5.943000pt;}
.ls22_c00106{letter-spacing:-5.493333pt;}
.ls9_c00106{letter-spacing:-5.379060pt;}
.ls6_c00106{letter-spacing:-5.285000pt;}
.lsf_c00106{letter-spacing:-4.664473pt;}
.lsb_c00106{letter-spacing:-4.619300pt;}
.ls1e_c00106{letter-spacing:-4.316400pt;}
.ls11_c00106{letter-spacing:-3.961300pt;}
.ls5_c00106{letter-spacing:-3.304000pt;}
.ls23_c00106{letter-spacing:-3.179267pt;}
.ls30_c00106{letter-spacing:-2.819467pt;}
.ls4_c00106{letter-spacing:-2.639000pt;}
.ls15_c00106{letter-spacing:-2.538467pt;}
.ls1a_c00106{letter-spacing:-2.182087pt;}
.ls1b_c00106{letter-spacing:-2.140000pt;}
.ls2b_c00106{letter-spacing:-2.060000pt;}
.ls1c_c00106{letter-spacing:-1.982240pt;}
.ls3_c00106{letter-spacing:-1.981700pt;}
.ls2f_c00106{letter-spacing:-1.946000pt;}
.ls2a_c00106{letter-spacing:-1.410627pt;}
.ls8_c00106{letter-spacing:-1.368000pt;}
.ls2_c00106{letter-spacing:-1.323700pt;}
.ls2e_c00106{letter-spacing:-1.317333pt;}
.ls7_c00106{letter-spacing:-0.658000pt;}
.lsa_c00106{letter-spacing:0.000000pt;}
.ls24_c00106{letter-spacing:0.644000pt;}
.ls0_c00106{letter-spacing:0.658000pt;}
.ls28_c00106{letter-spacing:1.170400pt;}
.ls16_c00106{letter-spacing:1.264800pt;}
.ls1_c00106{letter-spacing:1.323700pt;}
.ls25_c00106{letter-spacing:1.390333pt;}
.ls26_c00106{letter-spacing:1.452733pt;}
.ls10_c00106{letter-spacing:2.086667pt;}
.ls14_c00106{letter-spacing:3.251373pt;}
.ls18_c00106{letter-spacing:4.509267pt;}
.ls1d_c00106{letter-spacing:6.006267pt;}
.ls20_c00106{letter-spacing:8.153200pt;}
.ls2c_c00106{letter-spacing:9.153267pt;}
.ws0_c00106{word-spacing:0.000000pt;}
._0_c00106{margin-left:-4.816542pt;}
._a_c00106{margin-left:-3.677206pt;}
._e_c00106{margin-left:-2.246894pt;}
._11_c00106{margin-left:-1.261374pt;}
._5_c00106{width:1.124477pt;}
._1_c00106{width:2.249470pt;}
._6_c00106{width:3.707372pt;}
._9_c00106{width:5.436094pt;}
._2_c00106{width:6.722523pt;}
._10_c00106{width:7.622974pt;}
._3_c00106{width:8.611268pt;}
._d_c00106{width:9.592391pt;}
._8_c00106{width:10.891498pt;}
._b_c00106{width:12.716200pt;}
._13_c00106{width:13.927953pt;}
._12_c00106{width:15.056947pt;}
._4_c00106{width:16.076002pt;}
._7_c00106{width:17.226525pt;}
._16_c00106{width:19.042034pt;}
._17_c00106{width:20.283570pt;}
._c_c00106{width:21.454736pt;}
._f_c00106{width:23.004047pt;}
._15_c00106{width:24.664394pt;}
._1a_c00106{width:25.568121pt;}
._1e_c00106{width:26.612772pt;}
._18_c00106{width:28.671089pt;}
._1b_c00106{width:29.613209pt;}
._19_c00106{width:31.899449pt;}
._1c_c00106{width:32.974134pt;}
._14_c00106{width:34.138577pt;}
._1d_c00106{width:37.022551pt;}
.fs12_c00106{font-size:24.666667pt;}
.fs11_c00106{font-size:25.333333pt;}
.fs13_c00106{font-size:42.000000pt;}
.fs16_c00106{font-size:47.333333pt;}
.fs14_c00106{font-size:47.406400pt;}
.fsa_c00106{font-size:62.000000pt;}
.fs15_c00106{font-size:62.666667pt;}
.fsb_c00106{font-size:63.333333pt;}
.fsc_c00106{font-size:64.000000pt;}
.fs10_c00106{font-size:64.666667pt;}
.fse_c00106{font-size:66.000000pt;}
.fs6_c00106{font-size:66.666667pt;}
.fs9_c00106{font-size:67.333333pt;}
.fsf_c00106{font-size:68.666667pt;}
.fsd_c00106{font-size:69.333333pt;}
.fs0_c00106{font-size:70.000000pt;}
.fs8_c00106{font-size:70.666667pt;}
.fs4_c00106{font-size:71.333333pt;}
.fs1_c00106{font-size:72.000000pt;}
.fs5_c00106{font-size:72.666667pt;}
.fs3_c00106{font-size:73.333333pt;}
.fs2_c00106{font-size:74.000000pt;}
.fs7_c00106{font-size:75.333333pt;}
.y0_c00106{bottom:0.000000pt;}
.y28_c00106{bottom:165.439613pt;}
.y27_c00106{bottom:191.679200pt;}
.y26_c00106{bottom:191.679893pt;}
.y25_c00106{bottom:217.600907pt;}
.y24_c00106{bottom:244.480840pt;}
.y23_c00106{bottom:296.959733pt;}
.y22_c00106{bottom:323.519493pt;}
.y21_c00106{bottom:350.399413pt;}
.y20_c00106{bottom:377.279333pt;}
.y1f_c00106{bottom:382.398920pt;}
.y1e_c00106{bottom:403.199707pt;}
.y1d_c00106{bottom:430.079587pt;}
.y1c_c00106{bottom:430.079667pt;}
.y1b_c00106{bottom:456.959600pt;}
.y1a_c00106{bottom:483.199173pt;}
.y19_c00106{bottom:535.680133pt;}
.y18_c00106{bottom:535.680827pt;}
.y17_c00106{bottom:562.879307pt;}
.y16_c00106{bottom:562.879600pt;}
.y15_c00106{bottom:589.119187pt;}
.y14_c00106{bottom:615.998413pt;}
.y13_c00106{bottom:641.919440pt;}
.y11_c00106{bottom:668.798707pt;}
.y12_c00106{bottom:668.799320pt;}
.y10_c00106{bottom:694.719720pt;}
.yf_c00106{bottom:694.720453pt;}
.yd_c00106{bottom:721.918027pt;}
.ye_c00106{bottom:721.918947pt;}
.yc_c00106{bottom:748.797947pt;}
.yb_c00106{bottom:801.919333pt;}
.ya_c00106{bottom:828.479080pt;}
.y9_c00106{bottom:855.039547pt;}
.y8_c00106{bottom:881.599587pt;}
.y7_c00106{bottom:907.839173pt;}
.y5_c00106{bottom:934.398320pt;}
.y6_c00106{bottom:934.398920pt;}
.y4_c00106{bottom:960.319333pt;}
.y3_c00106{bottom:987.199133pt;}
.y2_c00106{bottom:987.199933pt;}
.y1_c00106{bottom:1013.759680pt;}
.h19_c00106{height:24.377604pt;}
.h18_c00106{height:26.421875pt;}
.h1a_c00106{height:43.804688pt;}
.h1d_c00106{height:49.367188pt;}
.h1b_c00106{height:49.443394pt;}
.hc_c00106{height:60.849609pt;}
.h17_c00106{height:63.466797pt;}
.h1c_c00106{height:65.359375pt;}
.h8_c00106{height:65.429688pt;}
.hd_c00106{height:66.054688pt;}
.hb_c00106{height:66.083984pt;}
.h10_c00106{height:66.750000pt;}
.h16_c00106{height:67.392578pt;}
.h11_c00106{height:68.046875pt;}
.h1_c00106{height:68.701172pt;}
.h13_c00106{height:68.835938pt;}
.h15_c00106{height:69.203125pt;}
.ha_c00106{height:69.355469pt;}
.h5_c00106{height:70.009766pt;}
.h1e_c00106{height:70.546875pt;}
.h2_c00106{height:70.664062pt;}
.h14_c00106{height:71.218750pt;}
.h7_c00106{height:71.318359pt;}
.hf_c00106{height:71.890625pt;}
.h4_c00106{height:71.972656pt;}
.h6_c00106{height:72.473958pt;}
.he_c00106{height:72.562500pt;}
.h3_c00106{height:72.626953pt;}
.h12_c00106{height:73.234375pt;}
.h9_c00106{height:73.935547pt;}
.h0_c00106{height:1122.666667pt;}
.w0_c00106{width:793.333333pt;}
.x0_c00106{left:0.000000pt;}
.x12_c00106{left:123.199200pt;}
.x1_c00106{left:124.158667pt;}
.x7_c00106{left:125.119613pt;}
.x28_c00106{left:135.358933pt;}
.x8_c00106{left:138.878920pt;}
.x19_c00106{left:140.480000pt;}
.x31_c00106{left:146.239720pt;}
.x34_c00106{left:166.398920pt;}
.x1a_c00106{left:195.199200pt;}
.x35_c00106{left:199.359333pt;}
.x2d_c00106{left:213.439453pt;}
.x1b_c00106{left:215.359867pt;}
.x5_c00106{left:216.959453pt;}
.x29_c00106{left:224.639587pt;}
.x15_c00106{left:226.879333pt;}
.x6_c00106{left:230.078680pt;}
.x1c_c00106{left:231.679733pt;}
.x16_c00106{left:245.438920pt;}
.x2e_c00106{left:246.719200pt;}
.xb_c00106{left:248.958920pt;}
.x2a_c00106{left:251.198667pt;}
.x36_c00106{left:257.279320pt;}
.x1d_c00106{left:258.238787pt;}
.xc_c00106{left:267.199200pt;}
.x1e_c00106{left:278.399453pt;}
.x37_c00106{left:285.758787pt;}
.x38_c00106{left:344.958947pt;}
.x13_c00106{left:358.719720pt;}
.x39_c00106{left:362.879840pt;}
.x1f_c00106{left:365.438920pt;}
.x14_c00106{left:370.239173pt;}
.x3a_c00106{left:403.199707pt;}
.x2_c00106{left:425.279333pt;}
.x2f_c00106{left:426.559573pt;}
.xf_c00106{left:427.839840pt;}
.x20_c00106{left:429.439453pt;}
.x17_c00106{left:431.039067pt;}
.x30_c00106{left:439.359333pt;}
.x21_c00106{left:441.279707pt;}
.x10_c00106{left:442.239173pt;}
.x18_c00106{left:443.519453pt;}
.x22_c00106{left:457.599573pt;}
.x9_c00106{left:467.838907pt;}
.x3b_c00106{left:478.079587pt;}
.x3e_c00106{left:484.479453pt;}
.x3_c00106{left:489.599040pt;}
.x3f_c00106{left:502.398920pt;}
.x3c_c00106{left:505.599573pt;}
.x4_c00106{left:507.518520pt;}
.x23_c00106{left:513.919840pt;}
.x24_c00106{left:534.079067pt;}
.x25_c00106{left:557.759720pt;}
.xd_c00106{left:565.759320pt;}
.x3d_c00106{left:572.479987pt;}
.xa_c00106{left:578.879840pt;}
.x2b_c00106{left:581.759720pt;}
.x2c_c00106{left:594.559573pt;}
.xe_c00106{left:596.479987pt;}
.x26_c00106{left:615.358933pt;}
.x27_c00106{left:640.639200pt;}
.x32_c00106{left:647.679200pt;}
.x33_c00106{left:675.839320pt;}
.x11_c00106{left:678.399867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1888d56dfb5fabded590decc.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_c600a735f1826eae60cc346b.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_75351b4c65f8b22170dcc4a8.woff2')format("woff");}.ff3_c00107{font-family:ff3_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;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_cdf1aaf6f7b6a4d5167c7079.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_c033bf80378f54a494be76d7.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00107;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff6_c00107{font-family:ff6_c00107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00107;src:url('chunks/assets/font_6571348cbde5a685a6889ab1.woff2')format("woff");}.ff7_c00107{font-family:ff7_c00107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00107{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m26_c00107{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m20_c00107{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m24_c00107{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m23_c00107{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m25_c00107{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m22_c00107{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1a_c00107{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m21_c00107{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1f_c00107{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1e_c00107{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);}
.m1c_c00107{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);}
.m8_c00107{transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.314655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314655,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.632812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632812,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.791667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791667,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls2a_c00107{letter-spacing:-9.839475px;}
.ls12_c00107{letter-spacing:-8.175038px;}
.ls13_c00107{letter-spacing:-7.426125px;}
.ls5_c00107{letter-spacing:-6.685875px;}
.lsf_c00107{letter-spacing:-6.572700px;}
.lsc_c00107{letter-spacing:-5.945625px;}
.ls11_c00107{letter-spacing:-5.196713px;}
.lse_c00107{letter-spacing:-4.882500px;}
.ls8_c00107{letter-spacing:-4.456463px;}
.ls27_c00107{letter-spacing:-4.341600px;}
.ls1f_c00107{letter-spacing:-3.852240px;}
.ls9_c00107{letter-spacing:-3.717000px;}
.ls28_c00107{letter-spacing:-3.511350px;}
.ls7_c00107{letter-spacing:-2.968875px;}
.ls1c_c00107{letter-spacing:-2.966850px;}
.ls29_c00107{letter-spacing:-2.912325px;}
.ls21_c00107{letter-spacing:-2.383365px;}
.ls25_c00107{letter-spacing:-2.308500px;}
.ls3_c00107{letter-spacing:-2.229413px;}
.ls26_c00107{letter-spacing:-1.531800px;}
.lsb_c00107{letter-spacing:-1.489163px;}
.ls1b_c00107{letter-spacing:-1.405688px;}
.ls6_c00107{letter-spacing:-0.740250px;}
.ls14_c00107{letter-spacing:-0.616500px;}
.ls4_c00107{letter-spacing:0.000000px;}
.ls16_c00107{letter-spacing:0.495300px;}
.ls1_c00107{letter-spacing:1.188450px;}
.ls20_c00107{letter-spacing:1.468800px;}
.lsd_c00107{letter-spacing:1.644750px;}
.ls17_c00107{letter-spacing:1.889528px;}
.lsa_c00107{letter-spacing:1.890840px;}
.ls1a_c00107{letter-spacing:2.376900px;}
.ls1e_c00107{letter-spacing:2.448240px;}
.ls19_c00107{letter-spacing:2.966850px;}
.ls2_c00107{letter-spacing:2.968875px;}
.ls10_c00107{letter-spacing:3.772440px;}
.ls24_c00107{letter-spacing:4.321350px;}
.ls0_c00107{letter-spacing:4.456463px;}
.ls2c_c00107{letter-spacing:5.589000px;}
.ls2b_c00107{letter-spacing:5.652825px;}
.ls23_c00107{letter-spacing:6.850350px;}
.ls15_c00107{letter-spacing:6.915600px;}
.ls1d_c00107{letter-spacing:6.964425px;}
.ls22_c00107{letter-spacing:8.325360px;}
.ls18_c00107{letter-spacing:10.649025px;}
.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;}
._1a_c00107{margin-left:-23.146765px;}
._18_c00107{margin-left:-21.923703px;}
._21_c00107{margin-left:-12.381328px;}
._22_c00107{margin-left:-8.044892px;}
._1b_c00107{margin-left:-6.538583px;}
._20_c00107{margin-left:-5.178793px;}
._1f_c00107{margin-left:-4.178386px;}
._24_c00107{margin-left:-2.788062px;}
._3_c00107{margin-left:-1.661239px;}
._7_c00107{width:1.511896px;}
._8_c00107{width:2.653028px;}
._1_c00107{width:3.938704px;}
._2_c00107{width:5.135778px;}
._0_c00107{width:6.671522px;}
._5_c00107{width:7.898922px;}
._6_c00107{width:8.957590px;}
._9_c00107{width:9.994697px;}
._19_c00107{width:11.122650px;}
._1d_c00107{width:12.502573px;}
._1c_c00107{width:13.946075px;}
._a_c00107{width:15.753893px;}
._4_c00107{width:17.009673px;}
._1e_c00107{width:18.725130px;}
._b_c00107{width:19.769400px;}
._12_c00107{width:21.656146px;}
._14_c00107{width:23.183762px;}
._c_c00107{width:24.531962px;}
._16_c00107{width:26.210972px;}
._d_c00107{width:27.793787px;}
._13_c00107{width:29.909042px;}
._17_c00107{width:31.572123px;}
._10_c00107{width:32.731947px;}
._f_c00107{width:34.428074px;}
._23_c00107{width:37.081131px;}
._e_c00107{width:38.280078px;}
._15_c00107{width:40.716350px;}
._11_c00107{width:43.496686px;}
.fc0_c00107{color:transparent;}
.fs15_c00107{font-size:16.500000px;}
.fs14_c00107{font-size:18.000000px;}
.fs13_c00107{font-size:19.500000px;}
.fs11_c00107{font-size:24.000000px;}
.fs10_c00107{font-size:29.250000px;}
.fse_c00107{font-size:33.750000px;}
.fsa_c00107{font-size:39.000000px;}
.fsb_c00107{font-size:39.750000px;}
.fsc_c00107{font-size:42.750000px;}
.fs12_c00107{font-size:43.500000px;}
.fs7_c00107{font-size:45.000000px;}
.fs9_c00107{font-size:47.250000px;}
.fs17_c00107{font-size:50.250000px;}
.fs8_c00107{font-size:51.000000px;}
.fsd_c00107{font-size:52.500000px;}
.fsf_c00107{font-size:56.250000px;}
.fs3_c00107{font-size:76.500000px;}
.fs18_c00107{font-size:77.250000px;}
.fs19_c00107{font-size:78.000000px;}
.fs0_c00107{font-size:78.750000px;}
.fs5_c00107{font-size:80.250000px;}
.fs1a_c00107{font-size:81.000000px;}
.fs4_c00107{font-size:81.750000px;}
.fs6_c00107{font-size:82.500000px;}
.fs2_c00107{font-size:84.000000px;}
.fs1_c00107{font-size:84.750000px;}
.fs16_c00107{font-size:121.500000px;}
.y0_c00107{bottom:0.000000px;}
.y26_c00107{bottom:180.719280px;}
.y25_c00107{bottom:210.240630px;}
.y23_c00107{bottom:239.759370px;}
.y24_c00107{bottom:239.760150px;}
.y21_c00107{bottom:269.638920px;}
.y22_c00107{bottom:269.639100px;}
.y20_c00107{bottom:300.239325px;}
.y1f_c00107{bottom:419.399820px;}
.y1e_c00107{bottom:419.400720px;}
.y1d_c00107{bottom:449.280435px;}
.y1c_c00107{bottom:449.281410px;}
.y1b_c00107{bottom:479.879700px;}
.y19_c00107{bottom:509.399190px;}
.y1a_c00107{bottom:509.399235px;}
.y18_c00107{bottom:539.639100px;}
.y17_c00107{bottom:539.639265px;}
.y16_c00107{bottom:569.160600px;}
.y15_c00107{bottom:598.680135px;}
.y14_c00107{bottom:598.681200px;}
.y13_c00107{bottom:628.560930px;}
.y12_c00107{bottom:688.680570px;}
.y11_c00107{bottom:718.560285px;}
.yf_c00107{bottom:748.439205px;}
.y10_c00107{bottom:749.159370px;}
.ye_c00107{bottom:752.039985px;}
.yd_c00107{bottom:753.119385px;}
.yc_c00107{bottom:777.959295px;}
.yb_c00107{bottom:808.559685px;}
.ya_c00107{bottom:808.562835px;}
.y9_c00107{bottom:838.442550px;}
.y8_c00107{bottom:957.961440px;}
.y7_c00107{bottom:987.480975px;}
.y6_c00107{bottom:1018.260405px;}
.y5_c00107{bottom:1047.240420px;}
.y4_c00107{bottom:1077.480285px;}
.y3_c00107{bottom:1077.480330px;}
.y2_c00107{bottom:1107.360060px;}
.y1_c00107{bottom:1137.239775px;}
.h16_c00107{height:17.208984px;}
.h18_c00107{height:17.789062px;}
.h15_c00107{height:18.773438px;}
.h14_c00107{height:20.337891px;}
.h12_c00107{height:25.031250px;}
.h11_c00107{height:28.907227px;}
.hf_c00107{height:35.200195px;}
.hb_c00107{height:40.675781px;}
.hc_c00107{height:41.458008px;}
.hd_c00107{height:44.586914px;}
.h13_c00107{height:45.369141px;}
.h8_c00107{height:46.933594px;}
.ha_c00107{height:49.280273px;}
.h19_c00107{height:49.661133px;}
.h9_c00107{height:51.398438px;}
.he_c00107{height:54.755859px;}
.h10_c00107{height:58.666992px;}
.h4_c00107{height:75.080566px;}
.h1a_c00107{height:75.816650px;}
.h1c_c00107{height:76.552734px;}
.h1_c00107{height:77.288818px;}
.h6_c00107{height:78.760986px;}
.h1d_c00107{height:79.457520px;}
.h1e_c00107{height:79.497070px;}
.h5_c00107{height:80.233154px;}
.h7_c00107{height:80.969238px;}
.h3_c00107{height:82.441406px;}
.h2_c00107{height:83.177490px;}
.h1b_c00107{height:83.756836px;}
.h17_c00107{height:126.720703px;}
.h0_c00107{height:1263.000000px;}
.w0_c00107{width:892.500000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:134.639100px;}
.xe_c00107{left:135.718530px;}
.x27_c00107{left:137.519250px;}
.x1e_c00107{left:149.759100px;}
.x11_c00107{left:163.799565px;}
.x12_c00107{left:210.238785px;}
.x2c_c00107{left:224.638500px;}
.x13_c00107{left:232.199385px;}
.x2f_c00107{left:247.319250px;}
.x2d_c00107{left:252.358635px;}
.x30_c00107{left:254.159850px;}
.x2e_c00107{left:272.519685px;}
.x14_c00107{left:290.159385px;}
.x15_c00107{left:321.119385px;}
.x28_c00107{left:324.359250px;}
.x16_c00107{left:346.679100px;}
.xc_c00107{left:370.080000px;}
.x29_c00107{left:381.958350px;}
.xd_c00107{left:388.078815px;}
.x1d_c00107{left:400.319820px;}
.xf_c00107{left:473.759085px;}
.x2_c00107{left:484.559685px;}
.x10_c00107{left:493.199850px;}
.x3_c00107{left:498.598530px;}
.x17_c00107{left:537.119385px;}
.x18_c00107{left:547.559100px;}
.x23_c00107{left:556.558635px;}
.x19_c00107{left:560.879520px;}
.x24_c00107{left:590.039985px;}
.x4_c00107{left:609.119985px;}
.x5_c00107{left:632.159820px;}
.x1a_c00107{left:638.639700px;}
.x25_c00107{left:651.599070px;}
.x1b_c00107{left:660.598530px;}
.x21_c00107{left:667.798560px;}
.x26_c00107{left:668.879520px;}
.x9_c00107{left:673.198785px;}
.x2a_c00107{left:686.159820px;}
.x22_c00107{left:687.239220px;}
.xa_c00107{left:693.359850px;}
.x6_c00107{left:696.958920px;}
.x2b_c00107{left:704.878920px;}
.x1c_c00107{left:714.598530px;}
.x1f_c00107{left:717.119985px;}
.x7_c00107{left:730.438620px;}
.x31_c00107{left:733.678530px;}
.x20_c00107{left:736.199850px;}
.x8_c00107{left:749.159370px;}
.xb_c00107{left:757.799520px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls2a_c00107{letter-spacing:-8.746200pt;}
.ls12_c00107{letter-spacing:-7.266700pt;}
.ls13_c00107{letter-spacing:-6.601000pt;}
.ls5_c00107{letter-spacing:-5.943000pt;}
.lsf_c00107{letter-spacing:-5.842400pt;}
.lsc_c00107{letter-spacing:-5.285000pt;}
.ls11_c00107{letter-spacing:-4.619300pt;}
.lse_c00107{letter-spacing:-4.340000pt;}
.ls8_c00107{letter-spacing:-3.961300pt;}
.ls27_c00107{letter-spacing:-3.859200pt;}
.ls1f_c00107{letter-spacing:-3.424213pt;}
.ls9_c00107{letter-spacing:-3.304000pt;}
.ls28_c00107{letter-spacing:-3.121200pt;}
.ls7_c00107{letter-spacing:-2.639000pt;}
.ls1c_c00107{letter-spacing:-2.637200pt;}
.ls29_c00107{letter-spacing:-2.588733pt;}
.ls21_c00107{letter-spacing:-2.118547pt;}
.ls25_c00107{letter-spacing:-2.052000pt;}
.ls3_c00107{letter-spacing:-1.981700pt;}
.ls26_c00107{letter-spacing:-1.361600pt;}
.lsb_c00107{letter-spacing:-1.323700pt;}
.ls1b_c00107{letter-spacing:-1.249500pt;}
.ls6_c00107{letter-spacing:-0.658000pt;}
.ls14_c00107{letter-spacing:-0.548000pt;}
.ls4_c00107{letter-spacing:0.000000pt;}
.ls16_c00107{letter-spacing:0.440267pt;}
.ls1_c00107{letter-spacing:1.056400pt;}
.ls20_c00107{letter-spacing:1.305600pt;}
.lsd_c00107{letter-spacing:1.462000pt;}
.ls17_c00107{letter-spacing:1.679580pt;}
.lsa_c00107{letter-spacing:1.680747pt;}
.ls1a_c00107{letter-spacing:2.112800pt;}
.ls1e_c00107{letter-spacing:2.176213pt;}
.ls19_c00107{letter-spacing:2.637200pt;}
.ls2_c00107{letter-spacing:2.639000pt;}
.ls10_c00107{letter-spacing:3.353280pt;}
.ls24_c00107{letter-spacing:3.841200pt;}
.ls0_c00107{letter-spacing:3.961300pt;}
.ls2c_c00107{letter-spacing:4.968000pt;}
.ls2b_c00107{letter-spacing:5.024733pt;}
.ls23_c00107{letter-spacing:6.089200pt;}
.ls15_c00107{letter-spacing:6.147200pt;}
.ls1d_c00107{letter-spacing:6.190600pt;}
.ls22_c00107{letter-spacing:7.400320pt;}
.ls18_c00107{letter-spacing:9.465800pt;}
.ws0_c00107{word-spacing:0.000000pt;}
._1a_c00107{margin-left:-20.574902pt;}
._18_c00107{margin-left:-19.487736pt;}
._21_c00107{margin-left:-11.005625pt;}
._22_c00107{margin-left:-7.151015pt;}
._1b_c00107{margin-left:-5.812074pt;}
._20_c00107{margin-left:-4.603372pt;}
._1f_c00107{margin-left:-3.714121pt;}
._24_c00107{margin-left:-2.478277pt;}
._3_c00107{margin-left:-1.476657pt;}
._7_c00107{width:1.343908pt;}
._8_c00107{width:2.358247pt;}
._1_c00107{width:3.501070pt;}
._2_c00107{width:4.565136pt;}
._0_c00107{width:5.930242pt;}
._5_c00107{width:7.021264pt;}
._6_c00107{width:7.962302pt;}
._9_c00107{width:8.884175pt;}
._19_c00107{width:9.886800pt;}
._1d_c00107{width:11.113398pt;}
._1c_c00107{width:12.396511pt;}
._a_c00107{width:14.003460pt;}
._4_c00107{width:15.119709pt;}
._1e_c00107{width:16.644560pt;}
._b_c00107{width:17.572800pt;}
._12_c00107{width:19.249908pt;}
._14_c00107{width:20.607789pt;}
._c_c00107{width:21.806189pt;}
._16_c00107{width:23.298642pt;}
._d_c00107{width:24.705589pt;}
._13_c00107{width:26.585815pt;}
._17_c00107{width:28.064109pt;}
._10_c00107{width:29.095064pt;}
._f_c00107{width:30.602732pt;}
._23_c00107{width:32.961006pt;}
._e_c00107{width:34.026736pt;}
._15_c00107{width:36.192311pt;}
._11_c00107{width:38.663721pt;}
.fs15_c00107{font-size:14.666667pt;}
.fs14_c00107{font-size:16.000000pt;}
.fs13_c00107{font-size:17.333333pt;}
.fs11_c00107{font-size:21.333333pt;}
.fs10_c00107{font-size:26.000000pt;}
.fse_c00107{font-size:30.000000pt;}
.fsa_c00107{font-size:34.666667pt;}
.fsb_c00107{font-size:35.333333pt;}
.fsc_c00107{font-size:38.000000pt;}
.fs12_c00107{font-size:38.666667pt;}
.fs7_c00107{font-size:40.000000pt;}
.fs9_c00107{font-size:42.000000pt;}
.fs17_c00107{font-size:44.666667pt;}
.fs8_c00107{font-size:45.333333pt;}
.fsd_c00107{font-size:46.666667pt;}
.fsf_c00107{font-size:50.000000pt;}
.fs3_c00107{font-size:68.000000pt;}
.fs18_c00107{font-size:68.666667pt;}
.fs19_c00107{font-size:69.333333pt;}
.fs0_c00107{font-size:70.000000pt;}
.fs5_c00107{font-size:71.333333pt;}
.fs1a_c00107{font-size:72.000000pt;}
.fs4_c00107{font-size:72.666667pt;}
.fs6_c00107{font-size:73.333333pt;}
.fs2_c00107{font-size:74.666667pt;}
.fs1_c00107{font-size:75.333333pt;}
.fs16_c00107{font-size:108.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y26_c00107{bottom:160.639360pt;}
.y25_c00107{bottom:186.880560pt;}
.y23_c00107{bottom:213.119440pt;}
.y24_c00107{bottom:213.120133pt;}
.y21_c00107{bottom:239.679040pt;}
.y22_c00107{bottom:239.679200pt;}
.y20_c00107{bottom:266.879400pt;}
.y1f_c00107{bottom:372.799840pt;}
.y1e_c00107{bottom:372.800640pt;}
.y1d_c00107{bottom:399.360387pt;}
.y1c_c00107{bottom:399.361253pt;}
.y1b_c00107{bottom:426.559733pt;}
.y19_c00107{bottom:452.799280pt;}
.y1a_c00107{bottom:452.799320pt;}
.y18_c00107{bottom:479.679200pt;}
.y17_c00107{bottom:479.679347pt;}
.y16_c00107{bottom:505.920533pt;}
.y15_c00107{bottom:532.160120pt;}
.y14_c00107{bottom:532.161067pt;}
.y13_c00107{bottom:558.720827pt;}
.y12_c00107{bottom:612.160507pt;}
.y11_c00107{bottom:638.720253pt;}
.yf_c00107{bottom:665.279293pt;}
.y10_c00107{bottom:665.919440pt;}
.ye_c00107{bottom:668.479987pt;}
.yd_c00107{bottom:669.439453pt;}
.yc_c00107{bottom:691.519373pt;}
.yb_c00107{bottom:718.719720pt;}
.ya_c00107{bottom:718.722520pt;}
.y9_c00107{bottom:745.282267pt;}
.y8_c00107{bottom:851.521280pt;}
.y7_c00107{bottom:877.760867pt;}
.y6_c00107{bottom:905.120360pt;}
.y5_c00107{bottom:930.880373pt;}
.y4_c00107{bottom:957.760253pt;}
.y3_c00107{bottom:957.760293pt;}
.y2_c00107{bottom:984.320053pt;}
.y1_c00107{bottom:1010.879800pt;}
.h16_c00107{height:15.296875pt;}
.h18_c00107{height:15.812500pt;}
.h15_c00107{height:16.687500pt;}
.h14_c00107{height:18.078125pt;}
.h12_c00107{height:22.250000pt;}
.h11_c00107{height:25.695312pt;}
.hf_c00107{height:31.289062pt;}
.hb_c00107{height:36.156250pt;}
.hc_c00107{height:36.851562pt;}
.hd_c00107{height:39.632812pt;}
.h13_c00107{height:40.328125pt;}
.h8_c00107{height:41.718750pt;}
.ha_c00107{height:43.804688pt;}
.h19_c00107{height:44.143229pt;}
.h9_c00107{height:45.687500pt;}
.he_c00107{height:48.671875pt;}
.h10_c00107{height:52.148438pt;}
.h4_c00107{height:66.738281pt;}
.h1a_c00107{height:67.392578pt;}
.h1c_c00107{height:68.046875pt;}
.h1_c00107{height:68.701172pt;}
.h6_c00107{height:70.009766pt;}
.h1d_c00107{height:70.628906pt;}
.h1e_c00107{height:70.664062pt;}
.h5_c00107{height:71.318359pt;}
.h7_c00107{height:71.972656pt;}
.h3_c00107{height:73.281250pt;}
.h2_c00107{height:73.935547pt;}
.h1b_c00107{height:74.450521pt;}
.h17_c00107{height:112.640625pt;}
.h0_c00107{height:1122.666667pt;}
.w0_c00107{width:793.333333pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:119.679200pt;}
.xe_c00107{left:120.638693pt;}
.x27_c00107{left:122.239333pt;}
.x1e_c00107{left:133.119200pt;}
.x11_c00107{left:145.599613pt;}
.x12_c00107{left:186.878920pt;}
.x2c_c00107{left:199.678667pt;}
.x13_c00107{left:206.399453pt;}
.x2f_c00107{left:219.839333pt;}
.x2d_c00107{left:224.318787pt;}
.x30_c00107{left:225.919867pt;}
.x2e_c00107{left:242.239720pt;}
.x14_c00107{left:257.919453pt;}
.x15_c00107{left:285.439453pt;}
.x28_c00107{left:288.319333pt;}
.x16_c00107{left:308.159200pt;}
.xc_c00107{left:328.960000pt;}
.x29_c00107{left:339.518533pt;}
.xd_c00107{left:344.958947pt;}
.x1d_c00107{left:355.839840pt;}
.xf_c00107{left:421.119187pt;}
.x2_c00107{left:430.719720pt;}
.x10_c00107{left:438.399867pt;}
.x3_c00107{left:443.198693pt;}
.x17_c00107{left:477.439453pt;}
.x18_c00107{left:486.719200pt;}
.x23_c00107{left:494.718787pt;}
.x19_c00107{left:498.559573pt;}
.x24_c00107{left:524.479987pt;}
.x4_c00107{left:541.439987pt;}
.x5_c00107{left:561.919840pt;}
.x1a_c00107{left:567.679733pt;}
.x25_c00107{left:579.199173pt;}
.x1b_c00107{left:587.198693pt;}
.x21_c00107{left:593.598720pt;}
.x26_c00107{left:594.559573pt;}
.x9_c00107{left:598.398920pt;}
.x2a_c00107{left:609.919840pt;}
.x22_c00107{left:610.879307pt;}
.xa_c00107{left:616.319867pt;}
.x6_c00107{left:619.519040pt;}
.x2b_c00107{left:626.559040pt;}
.x1c_c00107{left:635.198693pt;}
.x1f_c00107{left:637.439987pt;}
.x7_c00107{left:649.278773pt;}
.x31_c00107{left:652.158693pt;}
.x20_c00107{left:654.399867pt;}
.x8_c00107{left:665.919440pt;}
.xb_c00107{left:673.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24c05d8ade3585dbead510b8.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_0d2d7465614f2afb028fb5c8.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_29a88de0d6927e3fdc0f8f2d.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_728bab41071fd32208c0f2e8.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_4081b78209c4bd2fd45f1e6b.woff2')format("woff");}.ff5_c00108{font-family:ff5_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;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_7d2acc23983006f0d330082c.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00108;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff7_c00108{font-family:ff7_c00108;line-height:1.364746;font-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_c00108{transform:matrix(0.169708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169708,0.000000,0.000000,0.250000,0,0);}
.m1b_c00108{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m19_c00108{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00108{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m1c_c00108{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m10_c00108{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00108{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.359504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359504,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.487805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487805,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.789062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789062,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls11_c00108{letter-spacing:-30.773325px;}
.ls22_c00108{letter-spacing:-13.149045px;}
.ls20_c00108{letter-spacing:-12.880928px;}
.ls17_c00108{letter-spacing:-12.228975px;}
.ls6_c00108{letter-spacing:-8.914500px;}
.lsf_c00108{letter-spacing:-7.426125px;}
.ls1e_c00108{letter-spacing:-6.685875px;}
.ls1c_c00108{letter-spacing:-6.517275px;}
.ls13_c00108{letter-spacing:-6.115500px;}
.ls7_c00108{letter-spacing:-5.945625px;}
.ls14_c00108{letter-spacing:-5.345190px;}
.lsc_c00108{letter-spacing:-5.247533px;}
.ls9_c00108{letter-spacing:-5.196713px;}
.ls1a_c00108{letter-spacing:-4.545300px;}
.ls1d_c00108{letter-spacing:-4.456463px;}
.ls1f_c00108{letter-spacing:-4.371705px;}
.ls4_c00108{letter-spacing:-3.717000px;}
.ls5_c00108{letter-spacing:-2.968875px;}
.ls3_c00108{letter-spacing:-2.229413px;}
.lse_c00108{letter-spacing:-1.599675px;}
.ls8_c00108{letter-spacing:-1.489163px;}
.ls2_c00108{letter-spacing:-0.778425px;}
.ls16_c00108{letter-spacing:-0.761400px;}
.lsb_c00108{letter-spacing:-0.740250px;}
.lsa_c00108{letter-spacing:0.000000px;}
.lsd_c00108{letter-spacing:0.813600px;}
.ls15_c00108{letter-spacing:0.848348px;}
.ls21_c00108{letter-spacing:1.669200px;}
.ls19_c00108{letter-spacing:1.744875px;}
.ls1b_c00108{letter-spacing:3.354750px;}
.ls1_c00108{letter-spacing:5.024250px;}
.ls10_c00108{letter-spacing:7.515300px;}
.ls0_c00108{letter-spacing:7.536375px;}
.ls12_c00108{letter-spacing:8.836500px;}
.ls18_c00108{letter-spacing:10.597350px;}
.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;}
._10_c00108{margin-left:-20.128869px;}
._11_c00108{margin-left:-10.489634px;}
._0_c00108{margin-left:-8.572532px;}
._e_c00108{margin-left:-7.498991px;}
._c_c00108{margin-left:-5.064754px;}
._2_c00108{margin-left:-4.048166px;}
._3_c00108{margin-left:-2.444370px;}
._d_c00108{margin-left:-1.340176px;}
._12_c00108{width:1.657643px;}
._1_c00108{width:3.127356px;}
._6_c00108{width:4.492182px;}
._7_c00108{width:6.025980px;}
._8_c00108{width:7.977553px;}
._13_c00108{width:10.094279px;}
._a_c00108{width:11.577795px;}
._5_c00108{width:13.010154px;}
._9_c00108{width:14.849353px;}
._f_c00108{width:16.344176px;}
._b_c00108{width:19.081853px;}
._4_c00108{width:21.018880px;}
._14_c00108{width:22.418699px;}
._17_c00108{width:24.384209px;}
._15_c00108{width:26.130870px;}
._18_c00108{width:27.829893px;}
._19_c00108{width:31.358844px;}
._16_c00108{width:32.774279px;}
._1a_c00108{width:34.137560px;}
.fc0_c00108{color:transparent;}
.fs8_c00108{font-size:30.750000px;}
.fsd_c00108{font-size:57.750000px;}
.fs3_c00108{font-size:70.500000px;}
.fse_c00108{font-size:74.250000px;}
.fs6_c00108{font-size:78.000000px;}
.fs1_c00108{font-size:78.750000px;}
.fsf_c00108{font-size:79.500000px;}
.fs0_c00108{font-size:80.250000px;}
.fsc_c00108{font-size:81.000000px;}
.fs5_c00108{font-size:81.750000px;}
.fs4_c00108{font-size:82.500000px;}
.fs7_c00108{font-size:84.750000px;}
.fs10_c00108{font-size:85.500000px;}
.fs9_c00108{font-size:90.750000px;}
.fsa_c00108{font-size:96.000000px;}
.fsb_c00108{font-size:102.750000px;}
.fs2_c00108{font-size:115.500000px;}
.y0_c00108{bottom:0.000000px;}
.y20_c00108{bottom:270.360120px;}
.y21_c00108{bottom:270.360900px;}
.y1f_c00108{bottom:300.239850px;}
.y1e_c00108{bottom:300.240720px;}
.y1c_c00108{bottom:330.120375px;}
.y1d_c00108{bottom:330.120435px;}
.y1a_c00108{bottom:360.359805px;}
.y1b_c00108{bottom:360.360285px;}
.y19_c00108{bottom:420.119250px;}
.y18_c00108{bottom:479.520315px;}
.y16_c00108{bottom:509.039955px;}
.y17_c00108{bottom:509.039985px;}
.y15_c00108{bottom:539.279865px;}
.y14_c00108{bottom:569.519790px;}
.y13_c00108{bottom:599.759700px;}
.y12_c00108{bottom:658.800570px;}
.y11_c00108{bottom:717.840135px;}
.y10_c00108{bottom:748.080000px;}
.yf_c00108{bottom:754.200435px;}
.ye_c00108{bottom:778.320720px;}
.yc_c00108{bottom:808.200390px;}
.yd_c00108{bottom:808.200435px;}
.yb_c00108{bottom:838.440315px;}
.ya_c00108{bottom:838.440600px;}
.y9_c00108{bottom:897.479370px;}
.y8_c00108{bottom:957.961305px;}
.y6_c00108{bottom:987.480795px;}
.y7_c00108{bottom:987.480840px;}
.y5_c00108{bottom:1017.720705px;}
.y3_c00108{bottom:1077.120135px;}
.y4_c00108{bottom:1077.121035px;}
.y2_c00108{bottom:1106.999865px;}
.y1_c00108{bottom:1137.239775px;}
.h9_c00108{height:32.071289px;}
.hf_c00108{height:57.073242px;}
.h4_c00108{height:73.529297px;}
.h7_c00108{height:76.552734px;}
.h2_c00108{height:77.288818px;}
.h10_c00108{height:77.440430px;}
.h11_c00108{height:78.024902px;}
.h1_c00108{height:78.760986px;}
.h12_c00108{height:79.309570px;}
.h14_c00108{height:79.365234px;}
.he_c00108{height:79.497070px;}
.h6_c00108{height:80.233154px;}
.h5_c00108{height:80.969238px;}
.hc_c00108{height:82.388672px;}
.h8_c00108{height:83.756836px;}
.h13_c00108{height:84.498047px;}
.ha_c00108{height:94.649414px;}
.hb_c00108{height:100.125000px;}
.hd_c00108{height:107.165039px;}
.h3_c00108{height:120.462891px;}
.h0_c00108{height:1263.000000px;}
.w0_c00108{width:892.500000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:139.319250px;}
.x1f_c00108{left:140.758755px;}
.x2e_c00108{left:142.559370px;}
.x1e_c00108{left:154.080000px;}
.x2_c00108{left:155.518665px;}
.x13_c00108{left:181.439250px;}
.x12_c00108{left:182.518665px;}
.x14_c00108{left:205.199385px;}
.x15_c00108{left:218.878950px;}
.x2f_c00108{left:236.518635px;}
.x27_c00108{left:253.078785px;}
.x16_c00108{left:257.038950px;}
.xe_c00108{left:329.759535px;}
.x17_c00108{left:336.959385px;}
.x21_c00108{left:339.479235px;}
.x18_c00108{left:357.479685px;}
.x22_c00108{left:358.918350px;}
.xa_c00108{left:360.358635px;}
.xf_c00108{left:362.159850px;}
.xb_c00108{left:376.918950px;}
.x3_c00108{left:399.599670px;}
.x4_c00108{left:403.918950px;}
.x5_c00108{left:411.479685px;}
.x19_c00108{left:417.239220px;}
.x1a_c00108{left:436.678530px;}
.x2a_c00108{left:454.679070px;}
.x2b_c00108{left:473.759085px;}
.x1b_c00108{left:506.159415px;}
.x6_c00108{left:509.039985px;}
.x23_c00108{left:522.358665px;}
.x7_c00108{left:524.159820px;}
.x24_c00108{left:541.799520px;}
.x28_c00108{left:561.599670px;}
.x1c_c00108{left:580.318770px;}
.x29_c00108{left:581.759085px;}
.x1d_c00108{left:629.279250px;}
.x10_c00108{left:631.078770px;}
.x25_c00108{left:642.238770px;}
.x8_c00108{left:653.398635px;}
.x11_c00108{left:661.318770px;}
.x26_c00108{left:667.439250px;}
.x9_c00108{left:673.918950px;}
.x2c_c00108{left:700.918950px;}
.x2d_c00108{left:720.719100px;}
.xc_c00108{left:744.119985px;}
.x20_c00108{left:746.998950px;}
.xd_c00108{left:760.678530px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls11_c00108{letter-spacing:-27.354067pt;}
.ls22_c00108{letter-spacing:-11.688040pt;}
.ls20_c00108{letter-spacing:-11.449713pt;}
.ls17_c00108{letter-spacing:-10.870200pt;}
.ls6_c00108{letter-spacing:-7.924000pt;}
.lsf_c00108{letter-spacing:-6.601000pt;}
.ls1e_c00108{letter-spacing:-5.943000pt;}
.ls1c_c00108{letter-spacing:-5.793133pt;}
.ls13_c00108{letter-spacing:-5.436000pt;}
.ls7_c00108{letter-spacing:-5.285000pt;}
.ls14_c00108{letter-spacing:-4.751280pt;}
.lsc_c00108{letter-spacing:-4.664473pt;}
.ls9_c00108{letter-spacing:-4.619300pt;}
.ls1a_c00108{letter-spacing:-4.040267pt;}
.ls1d_c00108{letter-spacing:-3.961300pt;}
.ls1f_c00108{letter-spacing:-3.885960pt;}
.ls4_c00108{letter-spacing:-3.304000pt;}
.ls5_c00108{letter-spacing:-2.639000pt;}
.ls3_c00108{letter-spacing:-1.981700pt;}
.lse_c00108{letter-spacing:-1.421933pt;}
.ls8_c00108{letter-spacing:-1.323700pt;}
.ls2_c00108{letter-spacing:-0.691933pt;}
.ls16_c00108{letter-spacing:-0.676800pt;}
.lsb_c00108{letter-spacing:-0.658000pt;}
.lsa_c00108{letter-spacing:0.000000pt;}
.lsd_c00108{letter-spacing:0.723200pt;}
.ls15_c00108{letter-spacing:0.754087pt;}
.ls21_c00108{letter-spacing:1.483733pt;}
.ls19_c00108{letter-spacing:1.551000pt;}
.ls1b_c00108{letter-spacing:2.982000pt;}
.ls1_c00108{letter-spacing:4.466000pt;}
.ls10_c00108{letter-spacing:6.680267pt;}
.ls0_c00108{letter-spacing:6.699000pt;}
.ls12_c00108{letter-spacing:7.854667pt;}
.ls18_c00108{letter-spacing:9.419867pt;}
.ws0_c00108{word-spacing:0.000000pt;}
._10_c00108{margin-left:-17.892328pt;}
._11_c00108{margin-left:-9.324119pt;}
._0_c00108{margin-left:-7.620028pt;}
._e_c00108{margin-left:-6.665770pt;}
._c_c00108{margin-left:-4.502004pt;}
._2_c00108{margin-left:-3.598370pt;}
._3_c00108{margin-left:-2.172774pt;}
._d_c00108{margin-left:-1.191268pt;}
._12_c00108{width:1.473460pt;}
._1_c00108{width:2.779872pt;}
._6_c00108{width:3.993051pt;}
._7_c00108{width:5.356426pt;}
._8_c00108{width:7.091158pt;}
._13_c00108{width:8.972692pt;}
._a_c00108{width:10.291374pt;}
._5_c00108{width:11.564581pt;}
._9_c00108{width:13.199425pt;}
._f_c00108{width:14.528157pt;}
._b_c00108{width:16.961647pt;}
._4_c00108{width:18.683449pt;}
._14_c00108{width:19.927732pt;}
._17_c00108{width:21.674853pt;}
._15_c00108{width:23.227440pt;}
._18_c00108{width:24.737683pt;}
._19_c00108{width:27.874528pt;}
._16_c00108{width:29.132692pt;}
._1a_c00108{width:30.344498pt;}
.fs8_c00108{font-size:27.333333pt;}
.fsd_c00108{font-size:51.333333pt;}
.fs3_c00108{font-size:62.666667pt;}
.fse_c00108{font-size:66.000000pt;}
.fs6_c00108{font-size:69.333333pt;}
.fs1_c00108{font-size:70.000000pt;}
.fsf_c00108{font-size:70.666667pt;}
.fs0_c00108{font-size:71.333333pt;}
.fsc_c00108{font-size:72.000000pt;}
.fs5_c00108{font-size:72.666667pt;}
.fs4_c00108{font-size:73.333333pt;}
.fs7_c00108{font-size:75.333333pt;}
.fs10_c00108{font-size:76.000000pt;}
.fs9_c00108{font-size:80.666667pt;}
.fsa_c00108{font-size:85.333333pt;}
.fsb_c00108{font-size:91.333333pt;}
.fs2_c00108{font-size:102.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y20_c00108{bottom:240.320107pt;}
.y21_c00108{bottom:240.320800pt;}
.y1f_c00108{bottom:266.879867pt;}
.y1e_c00108{bottom:266.880640pt;}
.y1c_c00108{bottom:293.440333pt;}
.y1d_c00108{bottom:293.440387pt;}
.y1a_c00108{bottom:320.319827pt;}
.y1b_c00108{bottom:320.320253pt;}
.y19_c00108{bottom:373.439333pt;}
.y18_c00108{bottom:426.240280pt;}
.y16_c00108{bottom:452.479960pt;}
.y17_c00108{bottom:452.479987pt;}
.y15_c00108{bottom:479.359880pt;}
.y14_c00108{bottom:506.239813pt;}
.y13_c00108{bottom:533.119733pt;}
.y12_c00108{bottom:585.600507pt;}
.y11_c00108{bottom:638.080120pt;}
.y10_c00108{bottom:664.960000pt;}
.yf_c00108{bottom:670.400387pt;}
.ye_c00108{bottom:691.840640pt;}
.yc_c00108{bottom:718.400347pt;}
.yd_c00108{bottom:718.400387pt;}
.yb_c00108{bottom:745.280280pt;}
.ya_c00108{bottom:745.280533pt;}
.y9_c00108{bottom:797.759440pt;}
.y8_c00108{bottom:851.521160pt;}
.y6_c00108{bottom:877.760707pt;}
.y7_c00108{bottom:877.760747pt;}
.y5_c00108{bottom:904.640627pt;}
.y3_c00108{bottom:957.440120pt;}
.y4_c00108{bottom:957.440920pt;}
.y2_c00108{bottom:983.999880pt;}
.y1_c00108{bottom:1010.879800pt;}
.h9_c00108{height:28.507812pt;}
.hf_c00108{height:50.731771pt;}
.h4_c00108{height:65.359375pt;}
.h7_c00108{height:68.046875pt;}
.h2_c00108{height:68.701172pt;}
.h10_c00108{height:68.835938pt;}
.h11_c00108{height:69.355469pt;}
.h1_c00108{height:70.009766pt;}
.h12_c00108{height:70.497396pt;}
.h14_c00108{height:70.546875pt;}
.he_c00108{height:70.664062pt;}
.h6_c00108{height:71.318359pt;}
.h5_c00108{height:71.972656pt;}
.hc_c00108{height:73.234375pt;}
.h8_c00108{height:74.450521pt;}
.h13_c00108{height:75.109375pt;}
.ha_c00108{height:84.132812pt;}
.hb_c00108{height:89.000000pt;}
.hd_c00108{height:95.257812pt;}
.h3_c00108{height:107.078125pt;}
.h0_c00108{height:1122.666667pt;}
.w0_c00108{width:793.333333pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:123.839333pt;}
.x1f_c00108{left:125.118893pt;}
.x2e_c00108{left:126.719440pt;}
.x1e_c00108{left:136.960000pt;}
.x2_c00108{left:138.238813pt;}
.x13_c00108{left:161.279333pt;}
.x12_c00108{left:162.238813pt;}
.x14_c00108{left:182.399453pt;}
.x15_c00108{left:194.559067pt;}
.x2f_c00108{left:210.238787pt;}
.x27_c00108{left:224.958920pt;}
.x16_c00108{left:228.479067pt;}
.xe_c00108{left:293.119587pt;}
.x17_c00108{left:299.519453pt;}
.x21_c00108{left:301.759320pt;}
.x18_c00108{left:317.759720pt;}
.x22_c00108{left:319.038533pt;}
.xa_c00108{left:320.318787pt;}
.xf_c00108{left:321.919867pt;}
.xb_c00108{left:335.039067pt;}
.x3_c00108{left:355.199707pt;}
.x4_c00108{left:359.039067pt;}
.x5_c00108{left:365.759720pt;}
.x19_c00108{left:370.879307pt;}
.x1a_c00108{left:388.158693pt;}
.x2a_c00108{left:404.159173pt;}
.x2b_c00108{left:421.119187pt;}
.x1b_c00108{left:449.919480pt;}
.x6_c00108{left:452.479987pt;}
.x23_c00108{left:464.318813pt;}
.x7_c00108{left:465.919840pt;}
.x24_c00108{left:481.599573pt;}
.x28_c00108{left:499.199707pt;}
.x1c_c00108{left:515.838907pt;}
.x29_c00108{left:517.119187pt;}
.x1d_c00108{left:559.359333pt;}
.x10_c00108{left:560.958907pt;}
.x25_c00108{left:570.878907pt;}
.x8_c00108{left:580.798787pt;}
.x11_c00108{left:587.838907pt;}
.x26_c00108{left:593.279333pt;}
.x9_c00108{left:599.039067pt;}
.x2c_c00108{left:623.039067pt;}
.x2d_c00108{left:640.639200pt;}
.xc_c00108{left:661.439987pt;}
.x20_c00108{left:663.999067pt;}
.xd_c00108{left:676.158693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecf16ff1b7b8a99bb94269cc.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_b3cdebe1a4787dc60e07351c.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_832b130b42c3095a139cf093.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;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_b23a1f9ed1e8f9bef7b9826c.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24_c00109{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00109{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00109{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m21_c00109{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);}
.m22_c00109{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m19_c00109{transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);}
.m1e_c00109{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m18_c00109{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m1a_c00109{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m13_c00109{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m23_c00109{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m1f_c00109{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m17_c00109{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m14_c00109{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m15_c00109{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m0_c00109{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m20_c00109{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_c00109{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m1b_c00109{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls11_c00109{letter-spacing:-12.525750px;}
.ls19_c00109{letter-spacing:-10.644750px;}
.ls15_c00109{letter-spacing:-10.308600px;}
.lsb_c00109{letter-spacing:-8.914500px;}
.ls1d_c00109{letter-spacing:-8.523450px;}
.lse_c00109{letter-spacing:-8.175038px;}
.ls1f_c00109{letter-spacing:-7.665900px;}
.ls8_c00109{letter-spacing:-7.426125px;}
.ls13_c00109{letter-spacing:-7.200720px;}
.ls23_c00109{letter-spacing:-6.685875px;}
.lsf_c00109{letter-spacing:-6.160478px;}
.ls1b_c00109{letter-spacing:-6.057900px;}
.ls24_c00109{letter-spacing:-5.945625px;}
.ls7_c00109{letter-spacing:-5.196713px;}
.ls1e_c00109{letter-spacing:-4.968000px;}
.ls20_c00109{letter-spacing:-4.938900px;}
.lsd_c00109{letter-spacing:-4.795875px;}
.ls22_c00109{letter-spacing:-4.539450px;}
.lsa_c00109{letter-spacing:-4.456463px;}
.ls25_c00109{letter-spacing:-4.343625px;}
.ls21_c00109{letter-spacing:-4.314600px;}
.ls26_c00109{letter-spacing:-3.858750px;}
.ls5_c00109{letter-spacing:-3.717000px;}
.ls10_c00109{letter-spacing:-3.651375px;}
.lsc_c00109{letter-spacing:-3.583125px;}
.ls17_c00109{letter-spacing:-3.118500px;}
.ls14_c00109{letter-spacing:-3.087000px;}
.ls3_c00109{letter-spacing:-2.968875px;}
.ls2_c00109{letter-spacing:-2.229413px;}
.ls4_c00109{letter-spacing:-1.489163px;}
.ls29_c00109{letter-spacing:-1.485750px;}
.ls27_c00109{letter-spacing:-0.843210px;}
.ls18_c00109{letter-spacing:-0.804173px;}
.ls28_c00109{letter-spacing:-0.780225px;}
.ls9_c00109{letter-spacing:-0.740250px;}
.ls6_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.740250px;}
.ls12_c00109{letter-spacing:1.732500px;}
.ls2b_c00109{letter-spacing:2.387025px;}
.ls1_c00109{letter-spacing:2.968875px;}
.ls2a_c00109{letter-spacing:3.536663px;}
.ls1c_c00109{letter-spacing:6.002325px;}
.ls16_c00109{letter-spacing:7.870500px;}
.ls1a_c00109{letter-spacing:28.277910px;}
.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;}
._1a_c00109{margin-left:-10.967958px;}
._1c_c00109{margin-left:-9.589269px;}
._19_c00109{margin-left:-6.519950px;}
._15_c00109{margin-left:-5.237113px;}
._16_c00109{margin-left:-3.372922px;}
._1b_c00109{margin-left:-1.997457px;}
._1d_c00109{width:1.021863px;}
._2_c00109{width:2.406080px;}
._3_c00109{width:4.346153px;}
._1_c00109{width:5.833339px;}
._13_c00109{width:7.249740px;}
._0_c00109{width:8.666452px;}
._14_c00109{width:9.792132px;}
._e_c00109{width:11.484291px;}
._11_c00109{width:13.150463px;}
._7_c00109{width:14.787363px;}
._12_c00109{width:16.242351px;}
._f_c00109{width:18.191339px;}
._1f_c00109{width:19.267168px;}
._6_c00109{width:20.473900px;}
._5_c00109{width:21.573280px;}
._8_c00109{width:22.628307px;}
._17_c00109{width:24.099922px;}
._4_c00109{width:25.232035px;}
._1e_c00109{width:26.459034px;}
._10_c00109{width:27.821157px;}
._18_c00109{width:30.295288px;}
._d_c00109{width:38.543162px;}
._9_c00109{width:39.920960px;}
._b_c00109{width:42.953222px;}
._a_c00109{width:44.887203px;}
._c_c00109{width:48.590533px;}
.fc0_c00109{color:transparent;}
.fs7_c00109{font-size:69.000000px;}
.fsc_c00109{font-size:70.500000px;}
.fs5_c00109{font-size:71.250000px;}
.fs6_c00109{font-size:72.000000px;}
.fs3_c00109{font-size:72.750000px;}
.fsf_c00109{font-size:75.000000px;}
.fsd_c00109{font-size:75.750000px;}
.fs9_c00109{font-size:77.250000px;}
.fs10_c00109{font-size:78.000000px;}
.fs0_c00109{font-size:78.750000px;}
.fs8_c00109{font-size:79.500000px;}
.fs2_c00109{font-size:80.250000px;}
.fsb_c00109{font-size:81.000000px;}
.fsa_c00109{font-size:81.750000px;}
.fs1_c00109{font-size:82.500000px;}
.fs4_c00109{font-size:84.750000px;}
.fse_c00109{font-size:87.750000px;}
.y0_c00109{bottom:0.000000px;}
.y26_c00109{bottom:182.520315px;}
.y25_c00109{bottom:182.521110px;}
.y24_c00109{bottom:212.761020px;}
.y23_c00109{bottom:242.640750px;}
.y22_c00109{bottom:272.160435px;}
.y21_c00109{bottom:272.161335px;}
.y1f_c00109{bottom:302.040795px;}
.y20_c00109{bottom:302.041050px;}
.y1e_c00109{bottom:331.199850px;}
.y1d_c00109{bottom:331.200720px;}
.y1c_c00109{bottom:361.080435px;}
.y1b_c00109{bottom:420.840135px;}
.y19_c00109{bottom:450.719535px;}
.y1a_c00109{bottom:450.720750px;}
.y18_c00109{bottom:510.839175px;}
.y16_c00109{bottom:570.600675px;}
.y17_c00109{bottom:570.600720px;}
.y15_c00109{bottom:600.840585px;}
.y14_c00109{bottom:600.841485px;}
.y13_c00109{bottom:630.361020px;}
.y12_c00109{bottom:689.399775px;}
.y11_c00109{bottom:719.639700px;}
.y10_c00109{bottom:749.881170px;}
.yf_c00109{bottom:779.760090px;}
.ye_c00109{bottom:810.000000px;}
.yd_c00109{bottom:840.600765px;}
.yc_c00109{bottom:869.759490px;}
.yb_c00109{bottom:869.759655px;}
.ya_c00109{bottom:899.639370px;}
.y9_c00109{bottom:959.040435px;}
.y8_c00109{bottom:989.280345px;}
.y7_c00109{bottom:1019.520270px;}
.y6_c00109{bottom:1019.520660px;}
.y5_c00109{bottom:1049.040180px;}
.y4_c00109{bottom:1078.559715px;}
.y2_c00109{bottom:1108.080915px;}
.y3_c00109{bottom:1108.081050px;}
.y1_c00109{bottom:1138.320825px;}
.h4_c00109{height:71.400146px;}
.h9_c00109{height:71.964844px;}
.hf_c00109{height:73.529297px;}
.h6_c00109{height:74.311523px;}
.h8_c00109{height:75.093750px;}
.h14_c00109{height:75.585938px;}
.h13_c00109{height:75.816650px;}
.h15_c00109{height:76.552734px;}
.h1_c00109{height:77.288818px;}
.hb_c00109{height:77.853516px;}
.ha_c00109{height:78.024902px;}
.h3_c00109{height:78.760986px;}
.h10_c00109{height:79.004883px;}
.h7_c00109{height:79.365234px;}
.hd_c00109{height:79.497070px;}
.he_c00109{height:80.121094px;}
.h2_c00109{height:80.969238px;}
.h12_c00109{height:81.632812px;}
.hc_c00109{height:82.388672px;}
.h5_c00109{height:83.177490px;}
.h11_c00109{height:86.121826px;}
.h0_c00109{height:1263.000000px;}
.w0_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x11_c00109{left:140.397600px;}
.x1_c00109{left:141.479715px;}
.x12_c00109{left:160.559685px;}
.xe_c00109{left:167.039400px;}
.x25_c00109{left:192.239850px;}
.x26_c00109{left:207.359850px;}
.x6_c00109{left:211.679100px;}
.x7_c00109{left:229.679700px;}
.x13_c00109{left:235.798515px;}
.x8_c00109{left:267.119385px;}
.x14_c00109{left:273.599100px;}
.x15_c00109{left:293.040000px;}
.x34_c00109{left:322.559685px;}
.x35_c00109{left:337.318800px;}
.x9_c00109{left:339.120000px;}
.x16_c00109{left:345.599700px;}
.x22_c00109{left:357.479685px;}
.xa_c00109{left:363.959385px;}
.x17_c00109{left:369.359850px;}
.x23_c00109{left:372.599700px;}
.x2c_c00109{left:389.519070px;}
.x24_c00109{left:398.518665px;}
.x2d_c00109{left:404.639100px;}
.x2e_c00109{left:408.958335px;}
.x18_c00109{left:441.358665px;}
.x2f_c00109{left:447.479235px;}
.x19_c00109{left:456.839535px;}
.x1a_c00109{left:476.278800px;}
.xf_c00109{left:488.158770px;}
.x30_c00109{left:508.679070px;}
.x31_c00109{left:525.239220px;}
.x1b_c00109{left:528.479235px;}
.x10_c00109{left:545.398635px;}
.x1c_c00109{left:552.239220px;}
.x2_c00109{left:574.918350px;}
.x3_c00109{left:592.918950px;}
.x1d_c00109{left:614.159370px;}
.x28_c00109{left:646.918950px;}
.x1e_c00109{left:653.398635px;}
.x29_c00109{left:668.518620px;}
.xb_c00109{left:673.918950px;}
.x2a_c00109{left:686.159820px;}
.xc_c00109{left:692.278800px;}
.x33_c00109{left:698.039985px;}
.x1f_c00109{left:701.279850px;}
.x4_c00109{left:702.718545px;}
.x5_c00109{left:717.838530px;}
.x2b_c00109{left:725.039985px;}
.x20_c00109{left:728.639100px;}
.x21_c00109{left:762.838950px;}
.x27_c00109{left:766.078770px;}
.xd_c00109{left:770.038965px;}
.x32_c00109{left:773.639655px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls11_c00109{letter-spacing:-11.134000pt;}
.ls19_c00109{letter-spacing:-9.462000pt;}
.ls15_c00109{letter-spacing:-9.163200pt;}
.lsb_c00109{letter-spacing:-7.924000pt;}
.ls1d_c00109{letter-spacing:-7.576400pt;}
.lse_c00109{letter-spacing:-7.266700pt;}
.ls1f_c00109{letter-spacing:-6.814133pt;}
.ls8_c00109{letter-spacing:-6.601000pt;}
.ls13_c00109{letter-spacing:-6.400640pt;}
.ls23_c00109{letter-spacing:-5.943000pt;}
.lsf_c00109{letter-spacing:-5.475980pt;}
.ls1b_c00109{letter-spacing:-5.384800pt;}
.ls24_c00109{letter-spacing:-5.285000pt;}
.ls7_c00109{letter-spacing:-4.619300pt;}
.ls1e_c00109{letter-spacing:-4.416000pt;}
.ls20_c00109{letter-spacing:-4.390133pt;}
.lsd_c00109{letter-spacing:-4.263000pt;}
.ls22_c00109{letter-spacing:-4.035067pt;}
.lsa_c00109{letter-spacing:-3.961300pt;}
.ls25_c00109{letter-spacing:-3.861000pt;}
.ls21_c00109{letter-spacing:-3.835200pt;}
.ls26_c00109{letter-spacing:-3.430000pt;}
.ls5_c00109{letter-spacing:-3.304000pt;}
.ls10_c00109{letter-spacing:-3.245667pt;}
.lsc_c00109{letter-spacing:-3.185000pt;}
.ls17_c00109{letter-spacing:-2.772000pt;}
.ls14_c00109{letter-spacing:-2.744000pt;}
.ls3_c00109{letter-spacing:-2.639000pt;}
.ls2_c00109{letter-spacing:-1.981700pt;}
.ls4_c00109{letter-spacing:-1.323700pt;}
.ls29_c00109{letter-spacing:-1.320667pt;}
.ls27_c00109{letter-spacing:-0.749520pt;}
.ls18_c00109{letter-spacing:-0.714820pt;}
.ls28_c00109{letter-spacing:-0.693533pt;}
.ls9_c00109{letter-spacing:-0.658000pt;}
.ls6_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.658000pt;}
.ls12_c00109{letter-spacing:1.540000pt;}
.ls2b_c00109{letter-spacing:2.121800pt;}
.ls1_c00109{letter-spacing:2.639000pt;}
.ls2a_c00109{letter-spacing:3.143700pt;}
.ls1c_c00109{letter-spacing:5.335400pt;}
.ls16_c00109{letter-spacing:6.996000pt;}
.ls1a_c00109{letter-spacing:25.135920pt;}
.ws0_c00109{word-spacing:0.000000pt;}
._1a_c00109{margin-left:-9.749296pt;}
._1c_c00109{margin-left:-8.523794pt;}
._19_c00109{margin-left:-5.795511pt;}
._15_c00109{margin-left:-4.655211pt;}
._16_c00109{margin-left:-2.998153pt;}
._1b_c00109{margin-left:-1.775517pt;}
._1d_c00109{width:0.908323pt;}
._2_c00109{width:2.138738pt;}
._3_c00109{width:3.863247pt;}
._1_c00109{width:5.185191pt;}
._13_c00109{width:6.444213pt;}
._0_c00109{width:7.703513pt;}
._14_c00109{width:8.704117pt;}
._e_c00109{width:10.208258pt;}
._11_c00109{width:11.689300pt;}
._7_c00109{width:13.144323pt;}
._12_c00109{width:14.437645pt;}
._f_c00109{width:16.170079pt;}
._1f_c00109{width:17.126372pt;}
._6_c00109{width:18.199023pt;}
._5_c00109{width:19.176249pt;}
._8_c00109{width:20.114051pt;}
._17_c00109{width:21.422153pt;}
._4_c00109{width:22.428475pt;}
._1e_c00109{width:23.519142pt;}
._10_c00109{width:24.729917pt;}
._18_c00109{width:26.929145pt;}
._d_c00109{width:34.260589pt;}
._9_c00109{width:35.485298pt;}
._b_c00109{width:38.180642pt;}
._a_c00109{width:39.899736pt;}
._c_c00109{width:43.191585pt;}
.fs7_c00109{font-size:61.333333pt;}
.fsc_c00109{font-size:62.666667pt;}
.fs5_c00109{font-size:63.333333pt;}
.fs6_c00109{font-size:64.000000pt;}
.fs3_c00109{font-size:64.666667pt;}
.fsf_c00109{font-size:66.666667pt;}
.fsd_c00109{font-size:67.333333pt;}
.fs9_c00109{font-size:68.666667pt;}
.fs10_c00109{font-size:69.333333pt;}
.fs0_c00109{font-size:70.000000pt;}
.fs8_c00109{font-size:70.666667pt;}
.fs2_c00109{font-size:71.333333pt;}
.fsb_c00109{font-size:72.000000pt;}
.fsa_c00109{font-size:72.666667pt;}
.fs1_c00109{font-size:73.333333pt;}
.fs4_c00109{font-size:75.333333pt;}
.fse_c00109{font-size:78.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y26_c00109{bottom:162.240280pt;}
.y25_c00109{bottom:162.240987pt;}
.y24_c00109{bottom:189.120907pt;}
.y23_c00109{bottom:215.680667pt;}
.y22_c00109{bottom:241.920387pt;}
.y21_c00109{bottom:241.921187pt;}
.y1f_c00109{bottom:268.480707pt;}
.y20_c00109{bottom:268.480933pt;}
.y1e_c00109{bottom:294.399867pt;}
.y1d_c00109{bottom:294.400640pt;}
.y1c_c00109{bottom:320.960387pt;}
.y1b_c00109{bottom:374.080120pt;}
.y19_c00109{bottom:400.639587pt;}
.y1a_c00109{bottom:400.640667pt;}
.y18_c00109{bottom:454.079267pt;}
.y16_c00109{bottom:507.200600pt;}
.y17_c00109{bottom:507.200640pt;}
.y15_c00109{bottom:534.080520pt;}
.y14_c00109{bottom:534.081320pt;}
.y13_c00109{bottom:560.320907pt;}
.y12_c00109{bottom:612.799800pt;}
.y11_c00109{bottom:639.679733pt;}
.y10_c00109{bottom:666.561040pt;}
.yf_c00109{bottom:693.120080pt;}
.ye_c00109{bottom:720.000000pt;}
.yd_c00109{bottom:747.200680pt;}
.yc_c00109{bottom:773.119547pt;}
.yb_c00109{bottom:773.119693pt;}
.ya_c00109{bottom:799.679440pt;}
.y9_c00109{bottom:852.480387pt;}
.y8_c00109{bottom:879.360307pt;}
.y7_c00109{bottom:906.240240pt;}
.y6_c00109{bottom:906.240587pt;}
.y5_c00109{bottom:932.480160pt;}
.y4_c00109{bottom:958.719747pt;}
.y2_c00109{bottom:984.960813pt;}
.y3_c00109{bottom:984.960933pt;}
.y1_c00109{bottom:1011.840733pt;}
.h4_c00109{height:63.466797pt;}
.h9_c00109{height:63.968750pt;}
.hf_c00109{height:65.359375pt;}
.h6_c00109{height:66.054688pt;}
.h8_c00109{height:66.750000pt;}
.h14_c00109{height:67.187500pt;}
.h13_c00109{height:67.392578pt;}
.h15_c00109{height:68.046875pt;}
.h1_c00109{height:68.701172pt;}
.hb_c00109{height:69.203125pt;}
.ha_c00109{height:69.355469pt;}
.h3_c00109{height:70.009766pt;}
.h10_c00109{height:70.226562pt;}
.h7_c00109{height:70.546875pt;}
.hd_c00109{height:70.664062pt;}
.he_c00109{height:71.218750pt;}
.h2_c00109{height:71.972656pt;}
.h12_c00109{height:72.562500pt;}
.hc_c00109{height:73.234375pt;}
.h5_c00109{height:73.935547pt;}
.h11_c00109{height:76.552734pt;}
.h0_c00109{height:1122.666667pt;}
.w0_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x11_c00109{left:124.797867pt;}
.x1_c00109{left:125.759747pt;}
.x12_c00109{left:142.719720pt;}
.xe_c00109{left:148.479467pt;}
.x25_c00109{left:170.879867pt;}
.x26_c00109{left:184.319867pt;}
.x6_c00109{left:188.159200pt;}
.x7_c00109{left:204.159733pt;}
.x13_c00109{left:209.598680pt;}
.x8_c00109{left:237.439453pt;}
.x14_c00109{left:243.199200pt;}
.x15_c00109{left:260.480000pt;}
.x34_c00109{left:286.719720pt;}
.x35_c00109{left:299.838933pt;}
.x9_c00109{left:301.440000pt;}
.x16_c00109{left:307.199733pt;}
.x22_c00109{left:317.759720pt;}
.xa_c00109{left:323.519453pt;}
.x17_c00109{left:328.319867pt;}
.x23_c00109{left:331.199733pt;}
.x2c_c00109{left:346.239173pt;}
.x24_c00109{left:354.238813pt;}
.x2d_c00109{left:359.679200pt;}
.x2e_c00109{left:363.518520pt;}
.x18_c00109{left:392.318813pt;}
.x2f_c00109{left:397.759320pt;}
.x19_c00109{left:406.079587pt;}
.x1a_c00109{left:423.358933pt;}
.xf_c00109{left:433.918907pt;}
.x30_c00109{left:452.159173pt;}
.x31_c00109{left:466.879307pt;}
.x1b_c00109{left:469.759320pt;}
.x10_c00109{left:484.798787pt;}
.x1c_c00109{left:490.879307pt;}
.x2_c00109{left:511.038533pt;}
.x3_c00109{left:527.039067pt;}
.x1d_c00109{left:545.919440pt;}
.x28_c00109{left:575.039067pt;}
.x1e_c00109{left:580.798787pt;}
.x29_c00109{left:594.238773pt;}
.xb_c00109{left:599.039067pt;}
.x2a_c00109{left:609.919840pt;}
.xc_c00109{left:615.358933pt;}
.x33_c00109{left:620.479987pt;}
.x1f_c00109{left:623.359867pt;}
.x4_c00109{left:624.638707pt;}
.x5_c00109{left:638.078693pt;}
.x2b_c00109{left:644.479987pt;}
.x20_c00109{left:647.679200pt;}
.x21_c00109{left:678.079067pt;}
.x27_c00109{left:680.958907pt;}
.xd_c00109{left:684.479080pt;}
.x32_c00109{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1620dd1221b5f4bd959da457.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_a3973d231df20bab2b8cb0db.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.364746;font-style:normal;font-weight:normal;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_e4851e1aa85a31f99c77e14e.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_b51f2bf8e9cf5533495e5386.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_3570bc8eea18089877a687bd.woff2')format("woff");}.ff5_c00110{font-family:ff5_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;}
.mb_c00110{transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);}
.m11_c00110{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m10_c00110{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.me_c00110{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_c00110{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m7_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.554124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554124,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls16_c00110{letter-spacing:-16.299900px;}
.ls10_c00110{letter-spacing:-11.803253px;}
.lsd_c00110{letter-spacing:-8.914500px;}
.ls13_c00110{letter-spacing:-7.545375px;}
.ls3_c00110{letter-spacing:-7.426125px;}
.ls11_c00110{letter-spacing:-6.923475px;}
.ls5_c00110{letter-spacing:-6.685875px;}
.ls9_c00110{letter-spacing:-5.945625px;}
.lsb_c00110{letter-spacing:-5.196713px;}
.ls4_c00110{letter-spacing:-4.456463px;}
.ls2_c00110{letter-spacing:-3.717000px;}
.ls14_c00110{letter-spacing:-3.048225px;}
.ls1_c00110{letter-spacing:-2.968875px;}
.lsf_c00110{letter-spacing:-2.251463px;}
.ls7_c00110{letter-spacing:-2.229413px;}
.ls12_c00110{letter-spacing:-1.606800px;}
.lsc_c00110{letter-spacing:-1.489163px;}
.lsa_c00110{letter-spacing:-0.740250px;}
.ls8_c00110{letter-spacing:0.000000px;}
.ls15_c00110{letter-spacing:1.582500px;}
.ls6_c00110{letter-spacing:1.606500px;}
.lse_c00110{letter-spacing:1.621800px;}
.ls17_c00110{letter-spacing:1.708875px;}
.ls0_c00110{letter-spacing:4.023953px;}
.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;}
._1c_c00110{margin-left:-1.914071px;}
._18_c00110{width:1.274428px;}
._10_c00110{width:2.680323px;}
._11_c00110{width:4.282217px;}
._e_c00110{width:5.373677px;}
._16_c00110{width:6.459253px;}
._d_c00110{width:7.843857px;}
._b_c00110{width:9.266929px;}
._c_c00110{width:10.532991px;}
._f_c00110{width:11.966820px;}
._13_c00110{width:13.198916px;}
._14_c00110{width:14.587784px;}
._12_c00110{width:15.646213px;}
._17_c00110{width:16.791580px;}
._0_c00110{width:18.817743px;}
._1_c00110{width:20.706971px;}
._15_c00110{width:21.888280px;}
._19_c00110{width:23.012399px;}
._7_c00110{width:24.618795px;}
._3_c00110{width:25.880192px;}
._5_c00110{width:28.355067px;}
._2_c00110{width:30.235275px;}
._4_c00110{width:31.345189px;}
._1b_c00110{width:32.674475px;}
._6_c00110{width:33.823690px;}
._1a_c00110{width:36.292443px;}
._a_c00110{width:37.322062px;}
._9_c00110{width:42.194577px;}
._8_c00110{width:44.425119px;}
._1d_c00110{width:56.154119px;}
.fc0_c00110{color:transparent;}
.fs8_c00110{font-size:71.250000px;}
.fs9_c00110{font-size:72.750000px;}
.fsa_c00110{font-size:75.000000px;}
.fs6_c00110{font-size:77.250000px;}
.fs2_c00110{font-size:78.000000px;}
.fs0_c00110{font-size:78.750000px;}
.fs4_c00110{font-size:79.500000px;}
.fs3_c00110{font-size:80.250000px;}
.fs7_c00110{font-size:81.750000px;}
.fs1_c00110{font-size:82.500000px;}
.fs5_c00110{font-size:87.750000px;}
.fsb_c00110{font-size:90.000000px;}
.y0_c00110{bottom:0.000000px;}
.y1e_c00110{bottom:390.600135px;}
.y1c_c00110{bottom:420.479235px;}
.y1d_c00110{bottom:421.560285px;}
.y1b_c00110{bottom:450.719100px;}
.y1a_c00110{bottom:450.719460px;}
.y19_c00110{bottom:481.680060px;}
.y18_c00110{bottom:541.799700px;}
.y16_c00110{bottom:571.318545px;}
.y17_c00110{bottom:571.319235px;}
.y15_c00110{bottom:600.838080px;}
.y14_c00110{bottom:660.239130px;}
.y13_c00110{bottom:690.118860px;}
.y12_c00110{bottom:719.998575px;}
.y10_c00110{bottom:779.759370px;}
.y11_c00110{bottom:779.760135px;}
.ye_c00110{bottom:809.639055px;}
.yf_c00110{bottom:809.639100px;}
.yd_c00110{bottom:839.878965px;}
.yc_c00110{bottom:839.879775px;}
.ya_c00110{bottom:869.758785px;}
.yb_c00110{bottom:869.759490px;}
.y9_c00110{bottom:899.638500px;}
.y8_c00110{bottom:929.518230px;}
.y7_c00110{bottom:959.758140px;}
.y6_c00110{bottom:989.277675px;}
.y5_c00110{bottom:1049.039220px;}
.y4_c00110{bottom:1078.918950px;}
.y3_c00110{bottom:1078.919835px;}
.y2_c00110{bottom:1108.799565px;}
.y1_c00110{bottom:1139.039340px;}
.hc_c00110{height:73.608398px;}
.ha_c00110{height:74.311523px;}
.hb_c00110{height:75.875977px;}
.h3_c00110{height:76.552734px;}
.h1_c00110{height:77.288818px;}
.h8_c00110{height:77.853516px;}
.h5_c00110{height:78.024902px;}
.hf_c00110{height:78.568359px;}
.h4_c00110{height:78.760986px;}
.he_c00110{height:79.365234px;}
.h9_c00110{height:80.791992px;}
.h2_c00110{height:80.969238px;}
.h7_c00110{height:86.121826px;}
.h6_c00110{height:86.721680px;}
.hd_c00110{height:88.945312px;}
.h0_c00110{height:1263.000000px;}
.w0_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x14_c00110{left:138.957465px;}
.x1_c00110{left:140.398665px;}
.xf_c00110{left:162.718500px;}
.x10_c00110{left:188.639100px;}
.x20_c00110{left:236.518635px;}
.x1a_c00110{left:238.319850px;}
.x21_c00110{left:252.358635px;}
.x1b_c00110{left:253.439685px;}
.x7_c00110{left:266.399250px;}
.x15_c00110{left:273.239850px;}
.x8_c00110{left:283.679700px;}
.x16_c00110{left:289.798515px;}
.xd_c00110{left:347.758500px;}
.xe_c00110{left:362.519100px;}
.x17_c00110{left:372.958950px;}
.x1c_c00110{left:397.080000px;}
.x11_c00110{left:399.238770px;}
.x18_c00110{left:425.518665px;}
.xb_c00110{left:426.958920px;}
.xc_c00110{left:442.439670px;}
.x12_c00110{left:446.038920px;}
.x13_c00110{left:460.799565px;}
.x19_c00110{left:485.279850px;}
.x9_c00110{left:506.159415px;}
.xa_c00110{left:524.159820px;}
.x1d_c00110{left:538.918950px;}
.x2_c00110{left:552.239220px;}
.x5_c00110{left:557.639700px;}
.x6_c00110{left:573.118785px;}
.x3_c00110{left:580.679670px;}
.x1e_c00110{left:587.879520px;}
.x1f_c00110{left:631.439670px;}
.x4_c00110{left:772.919490px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls16_c00110{letter-spacing:-14.488800pt;}
.ls10_c00110{letter-spacing:-10.491780pt;}
.lsd_c00110{letter-spacing:-7.924000pt;}
.ls13_c00110{letter-spacing:-6.707000pt;}
.ls3_c00110{letter-spacing:-6.601000pt;}
.ls11_c00110{letter-spacing:-6.154200pt;}
.ls5_c00110{letter-spacing:-5.943000pt;}
.ls9_c00110{letter-spacing:-5.285000pt;}
.lsb_c00110{letter-spacing:-4.619300pt;}
.ls4_c00110{letter-spacing:-3.961300pt;}
.ls2_c00110{letter-spacing:-3.304000pt;}
.ls14_c00110{letter-spacing:-2.709533pt;}
.ls1_c00110{letter-spacing:-2.639000pt;}
.lsf_c00110{letter-spacing:-2.001300pt;}
.ls7_c00110{letter-spacing:-1.981700pt;}
.ls12_c00110{letter-spacing:-1.428267pt;}
.lsc_c00110{letter-spacing:-1.323700pt;}
.lsa_c00110{letter-spacing:-0.658000pt;}
.ls8_c00110{letter-spacing:0.000000pt;}
.ls15_c00110{letter-spacing:1.406667pt;}
.ls6_c00110{letter-spacing:1.428000pt;}
.lse_c00110{letter-spacing:1.441600pt;}
.ls17_c00110{letter-spacing:1.519000pt;}
.ls0_c00110{letter-spacing:3.576847pt;}
.ws0_c00110{word-spacing:0.000000pt;}
._1c_c00110{margin-left:-1.701396pt;}
._18_c00110{width:1.132825pt;}
._10_c00110{width:2.382509pt;}
._11_c00110{width:3.806415pt;}
._e_c00110{width:4.776602pt;}
._16_c00110{width:5.741558pt;}
._d_c00110{width:6.972317pt;}
._b_c00110{width:8.237270pt;}
._c_c00110{width:9.362658pt;}
._f_c00110{width:10.637174pt;}
._13_c00110{width:11.732370pt;}
._14_c00110{width:12.966919pt;}
._12_c00110{width:13.907745pt;}
._17_c00110{width:14.925849pt;}
._0_c00110{width:16.726883pt;}
._1_c00110{width:18.406196pt;}
._15_c00110{width:19.456249pt;}
._19_c00110{width:20.455466pt;}
._7_c00110{width:21.883374pt;}
._3_c00110{width:23.004615pt;}
._5_c00110{width:25.204504pt;}
._2_c00110{width:26.875800pt;}
._4_c00110{width:27.862391pt;}
._1b_c00110{width:29.043977pt;}
._6_c00110{width:30.065502pt;}
._1a_c00110{width:32.259949pt;}
._a_c00110{width:33.175166pt;}
._9_c00110{width:37.506291pt;}
._8_c00110{width:39.488994pt;}
._1d_c00110{width:49.914773pt;}
.fs8_c00110{font-size:63.333333pt;}
.fs9_c00110{font-size:64.666667pt;}
.fsa_c00110{font-size:66.666667pt;}
.fs6_c00110{font-size:68.666667pt;}
.fs2_c00110{font-size:69.333333pt;}
.fs0_c00110{font-size:70.000000pt;}
.fs4_c00110{font-size:70.666667pt;}
.fs3_c00110{font-size:71.333333pt;}
.fs7_c00110{font-size:72.666667pt;}
.fs1_c00110{font-size:73.333333pt;}
.fs5_c00110{font-size:78.000000pt;}
.fsb_c00110{font-size:80.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y1e_c00110{bottom:347.200120pt;}
.y1c_c00110{bottom:373.759320pt;}
.y1d_c00110{bottom:374.720253pt;}
.y1b_c00110{bottom:400.639200pt;}
.y1a_c00110{bottom:400.639520pt;}
.y19_c00110{bottom:428.160053pt;}
.y18_c00110{bottom:481.599733pt;}
.y16_c00110{bottom:507.838707pt;}
.y17_c00110{bottom:507.839320pt;}
.y15_c00110{bottom:534.078293pt;}
.y14_c00110{bottom:586.879227pt;}
.y13_c00110{bottom:613.438987pt;}
.y12_c00110{bottom:639.998733pt;}
.y10_c00110{bottom:693.119440pt;}
.y11_c00110{bottom:693.120120pt;}
.ye_c00110{bottom:719.679160pt;}
.yf_c00110{bottom:719.679200pt;}
.yd_c00110{bottom:746.559080pt;}
.yc_c00110{bottom:746.559800pt;}
.ya_c00110{bottom:773.118920pt;}
.yb_c00110{bottom:773.119547pt;}
.y9_c00110{bottom:799.678667pt;}
.y8_c00110{bottom:826.238427pt;}
.y7_c00110{bottom:853.118347pt;}
.y6_c00110{bottom:879.357933pt;}
.y5_c00110{bottom:932.479307pt;}
.y4_c00110{bottom:959.039067pt;}
.y3_c00110{bottom:959.039853pt;}
.y2_c00110{bottom:985.599613pt;}
.y1_c00110{bottom:1012.479413pt;}
.hc_c00110{height:65.429688pt;}
.ha_c00110{height:66.054688pt;}
.hb_c00110{height:67.445312pt;}
.h3_c00110{height:68.046875pt;}
.h1_c00110{height:68.701172pt;}
.h8_c00110{height:69.203125pt;}
.h5_c00110{height:69.355469pt;}
.hf_c00110{height:69.838542pt;}
.h4_c00110{height:70.009766pt;}
.he_c00110{height:70.546875pt;}
.h9_c00110{height:71.815104pt;}
.h2_c00110{height:71.972656pt;}
.h7_c00110{height:76.552734pt;}
.h6_c00110{height:77.085938pt;}
.hd_c00110{height:79.062500pt;}
.h0_c00110{height:1122.666667pt;}
.w0_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x14_c00110{left:123.517747pt;}
.x1_c00110{left:124.798813pt;}
.xf_c00110{left:144.638667pt;}
.x10_c00110{left:167.679200pt;}
.x20_c00110{left:210.238787pt;}
.x1a_c00110{left:211.839867pt;}
.x21_c00110{left:224.318787pt;}
.x1b_c00110{left:225.279720pt;}
.x7_c00110{left:236.799333pt;}
.x15_c00110{left:242.879867pt;}
.x8_c00110{left:252.159733pt;}
.x16_c00110{left:257.598680pt;}
.xd_c00110{left:309.118667pt;}
.xe_c00110{left:322.239200pt;}
.x17_c00110{left:331.519067pt;}
.x1c_c00110{left:352.960000pt;}
.x11_c00110{left:354.878907pt;}
.x18_c00110{left:378.238813pt;}
.xb_c00110{left:379.519040pt;}
.xc_c00110{left:393.279707pt;}
.x12_c00110{left:396.479040pt;}
.x13_c00110{left:409.599613pt;}
.x19_c00110{left:431.359867pt;}
.x9_c00110{left:449.919480pt;}
.xa_c00110{left:465.919840pt;}
.x1d_c00110{left:479.039067pt;}
.x2_c00110{left:490.879307pt;}
.x5_c00110{left:495.679733pt;}
.x6_c00110{left:509.438920pt;}
.x3_c00110{left:516.159707pt;}
.x1e_c00110{left:522.559573pt;}
.x1f_c00110{left:561.279707pt;}
.x4_c00110{left:687.039547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_363923cc93222895b4cca9b4.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;}
.m5_c00111{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{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);}
.m3_c00111{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls2_c00111{letter-spacing:-3.853575px;}
.ls0_c00111{letter-spacing:-3.748478px;}
.ls7_c00111{letter-spacing:-3.213000px;}
.ls9_c00111{letter-spacing:-2.310398px;}
.ls1_c00111{letter-spacing:-2.250645px;}
.ls4_c00111{letter-spacing:-1.606500px;}
.ls3_c00111{letter-spacing:-0.794475px;}
.ls6_c00111{letter-spacing:0.000000px;}
.ls8_c00111{letter-spacing:3.984885px;}
.ls5_c00111{letter-spacing:4.942500px;}
.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;}
._1_c00111{margin-left:-3.210493px;}
._2_c00111{width:6.614421px;}
._0_c00111{width:14.816393px;}
.fc0_c00111{color:transparent;}
.fs4_c00111{font-size:75.000000px;}
.fs6_c00111{font-size:76.500000px;}
.fs3_c00111{font-size:78.750000px;}
.fs1_c00111{font-size:79.500000px;}
.fs0_c00111{font-size:80.250000px;}
.fs5_c00111{font-size:81.750000px;}
.fs2_c00111{font-size:82.500000px;}
.y0_c00111{bottom:0.000000px;}
.y2_c00111{bottom:71.639700px;}
.y1_c00111{bottom:1166.039340px;}
.h4_c00111{height:75.585938px;}
.h6_c00111{height:77.097656px;}
.h3_c00111{height:79.365234px;}
.h1_c00111{height:80.876953px;}
.h5_c00111{height:82.388672px;}
.h2_c00111{height:83.144531px;}
.h0_c00111{height:1263.000000px;}
.w0_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x4_c00111{left:105.478665px;}
.x1_c00111{left:139.678500px;}
.x2_c00111{left:228.959400px;}
.x5_c00111{left:237.238785px;}
.x6_c00111{left:262.798515px;}
.x7_c00111{left:278.279250px;}
.x3_c00111{left:281.878350px;}
.x8_c00111{left:347.758500px;}
.x9_c00111{left:374.758500px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls2_c00111{letter-spacing:-3.425400pt;}
.ls0_c00111{letter-spacing:-3.331980pt;}
.ls7_c00111{letter-spacing:-2.856000pt;}
.ls9_c00111{letter-spacing:-2.053687pt;}
.ls1_c00111{letter-spacing:-2.000573pt;}
.ls4_c00111{letter-spacing:-1.428000pt;}
.ls3_c00111{letter-spacing:-0.706200pt;}
.ls6_c00111{letter-spacing:0.000000pt;}
.ls8_c00111{letter-spacing:3.542120pt;}
.ls5_c00111{letter-spacing:4.393333pt;}
.ws0_c00111{word-spacing:0.000000pt;}
._1_c00111{margin-left:-2.853771pt;}
._2_c00111{width:5.879486pt;}
._0_c00111{width:13.170127pt;}
.fs4_c00111{font-size:66.666667pt;}
.fs6_c00111{font-size:68.000000pt;}
.fs3_c00111{font-size:70.000000pt;}
.fs1_c00111{font-size:70.666667pt;}
.fs0_c00111{font-size:71.333333pt;}
.fs5_c00111{font-size:72.666667pt;}
.fs2_c00111{font-size:73.333333pt;}
.y0_c00111{bottom:0.000000pt;}
.y2_c00111{bottom:63.679733pt;}
.y1_c00111{bottom:1036.479413pt;}
.h4_c00111{height:67.187500pt;}
.h6_c00111{height:68.531250pt;}
.h3_c00111{height:70.546875pt;}
.h1_c00111{height:71.890625pt;}
.h5_c00111{height:73.234375pt;}
.h2_c00111{height:73.906250pt;}
.h0_c00111{height:1122.666667pt;}
.w0_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x4_c00111{left:93.758813pt;}
.x1_c00111{left:124.158667pt;}
.x2_c00111{left:203.519467pt;}
.x5_c00111{left:210.878920pt;}
.x6_c00111{left:233.598680pt;}
.x7_c00111{left:247.359333pt;}
.x3_c00111{left:250.558533pt;}
.x8_c00111{left:309.118667pt;}
.x9_c00111{left:333.118667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_232844fd56927980595f651d.woff2')format("woff");}.ff1_c00112{font-family:ff1_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;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_793ed1643836bc00aa8c9002.woff2')format("woff");}.ff2_c00112{font-family:ff2_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:ff3_c00112;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_b7ff69609377c431be34aad1.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_7f6ff82323ba7536da3d95e8.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00112{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00112{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls10_c00112{letter-spacing:-16.095750px;}
.ls16_c00112{letter-spacing:-12.226305px;}
.lse_c00112{letter-spacing:-11.044800px;}
.ls18_c00112{letter-spacing:-10.703925px;}
.ls4_c00112{letter-spacing:-10.237500px;}
.ls15_c00112{letter-spacing:-10.191900px;}
.ls12_c00112{letter-spacing:-8.175038px;}
.ls14_c00112{letter-spacing:-7.426125px;}
.ls1d_c00112{letter-spacing:-6.685875px;}
.lsd_c00112{letter-spacing:-5.945625px;}
.lsb_c00112{letter-spacing:-5.196713px;}
.lsf_c00112{letter-spacing:-4.456463px;}
.lsa_c00112{letter-spacing:-3.717000px;}
.ls8_c00112{letter-spacing:-3.059100px;}
.ls17_c00112{letter-spacing:-2.973300px;}
.lsc_c00112{letter-spacing:-2.968875px;}
.ls19_c00112{letter-spacing:-2.449425px;}
.ls3_c00112{letter-spacing:-2.229413px;}
.ls6_c00112{letter-spacing:-1.635000px;}
.ls7_c00112{letter-spacing:-1.529550px;}
.ls13_c00112{letter-spacing:-1.489163px;}
.ls11_c00112{letter-spacing:-0.740250px;}
.ls5_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:0.740250px;}
.ls9_c00112{letter-spacing:0.911550px;}
.ls1a_c00112{letter-spacing:1.591200px;}
.ls1c_c00112{letter-spacing:3.502980px;}
.ls1b_c00112{letter-spacing:3.637710px;}
.ls2_c00112{letter-spacing:4.771463px;}
.ls1_c00112{letter-spacing:5.196713px;}
.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;}
._b_c00112{margin-left:-13.942925px;}
._16_c00112{margin-left:-5.446617px;}
._0_c00112{margin-left:-3.432846px;}
._14_c00112{margin-left:-1.342673px;}
._15_c00112{width:1.041996px;}
._10_c00112{width:2.524695px;}
._2_c00112{width:3.929833px;}
._1_c00112{width:5.281346px;}
._3_c00112{width:7.174155px;}
._13_c00112{width:8.176553px;}
._a_c00112{width:9.742311px;}
._1a_c00112{width:10.910664px;}
._d_c00112{width:11.910923px;}
._18_c00112{width:13.155277px;}
._9_c00112{width:14.442185px;}
._e_c00112{width:15.639483px;}
._1b_c00112{width:17.159239px;}
._c_c00112{width:18.552594px;}
._6_c00112{width:19.742328px;}
._4_c00112{width:21.438202px;}
._11_c00112{width:22.816698px;}
._17_c00112{width:24.278016px;}
._5_c00112{width:25.672649px;}
._8_c00112{width:27.361227px;}
._12_c00112{width:30.108502px;}
._7_c00112{width:32.216863px;}
._19_c00112{width:36.570356px;}
._f_c00112{width:46.823428px;}
.fc0_c00112{color:transparent;}
.fs2_c00112{font-size:74.250000px;}
.fs3_c00112{font-size:77.250000px;}
.fs4_c00112{font-size:78.000000px;}
.fs0_c00112{font-size:78.750000px;}
.fs7_c00112{font-size:79.500000px;}
.fs6_c00112{font-size:80.250000px;}
.fs9_c00112{font-size:81.000000px;}
.fs1_c00112{font-size:81.750000px;}
.fs5_c00112{font-size:82.500000px;}
.fs8_c00112{font-size:84.750000px;}
.y0_c00112{bottom:0.000000px;}
.y27_c00112{bottom:267.119385px;}
.y26_c00112{bottom:267.120270px;}
.y24_c00112{bottom:296.999220px;}
.y25_c00112{bottom:297.000000px;}
.y23_c00112{bottom:326.878950px;}
.y22_c00112{bottom:326.879820px;}
.y21_c00112{bottom:356.759535px;}
.y20_c00112{bottom:356.760315px;}
.y1f_c00112{bottom:386.279850px;}
.y1e_c00112{bottom:416.159565px;}
.y1d_c00112{bottom:476.639700px;}
.y1b_c00112{bottom:506.159310px;}
.y1c_c00112{bottom:506.159415px;}
.y1a_c00112{bottom:536.399235px;}
.y19_c00112{bottom:536.400120px;}
.y18_c00112{bottom:566.279850px;}
.y17_c00112{bottom:566.280975px;}
.y16_c00112{bottom:596.520885px;}
.y15_c00112{bottom:626.400600px;}
.y14_c00112{bottom:655.920135px;}
.y13_c00112{bottom:685.439670px;}
.y12_c00112{bottom:685.440555px;}
.y11_c00112{bottom:715.320285px;}
.y10_c00112{bottom:775.799715px;}
.yf_c00112{bottom:805.679445px;}
.yd_c00112{bottom:836.279025px;}
.ye_c00112{bottom:836.279850px;}
.yc_c00112{bottom:895.680090px;}
.yb_c00112{bottom:895.680225px;}
.ya_c00112{bottom:925.199760px;}
.y9_c00112{bottom:955.439670px;}
.y8_c00112{bottom:984.959385px;}
.y7_c00112{bottom:984.960360px;}
.y6_c00112{bottom:1014.840090px;}
.y5_c00112{bottom:1014.840270px;}
.y4_c00112{bottom:1044.359805px;}
.y3_c00112{bottom:1044.360690px;}
.y2_c00112{bottom:1074.240420px;}
.y1_c00112{bottom:1135.079400px;}
.h4_c00112{height:74.830078px;}
.h6_c00112{height:76.552734px;}
.h2_c00112{height:77.288818px;}
.h5_c00112{height:77.853516px;}
.hb_c00112{height:78.024902px;}
.ha_c00112{height:78.568359px;}
.h8_c00112{height:78.760986px;}
.h1_c00112{height:79.365234px;}
.he_c00112{height:79.497070px;}
.hd_c00112{height:80.928955px;}
.h9_c00112{height:80.969238px;}
.h7_c00112{height:81.533203px;}
.h3_c00112{height:82.388672px;}
.hc_c00112{height:83.756836px;}
.h0_c00112{height:1263.000000px;}
.w0_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:135.000000px;}
.x1a_c00112{left:136.079835px;}
.x1f_c00112{left:151.199415px;}
.x3_c00112{left:161.639100px;}
.x14_c00112{left:169.918350px;}
.x2_c00112{left:201.959400px;}
.x4_c00112{left:210.238785px;}
.x26_c00112{left:223.559100px;}
.x11_c00112{left:231.838515px;}
.x27_c00112{left:238.679100px;}
.xc_c00112{left:275.398635px;}
.x24_c00112{left:289.080000px;}
.xd_c00112{left:292.319850px;}
.x25_c00112{left:304.199850px;}
.x5_c00112{left:317.159385px;}
.x22_c00112{left:377.639100px;}
.x17_c00112{left:379.799535px;}
.x23_c00112{left:402.119385px;}
.x18_c00112{left:443.519070px;}
.x19_c00112{left:459.718500px;}
.x6_c00112{left:476.998950px;}
.x8_c00112{left:480.958920px;}
.x7_c00112{left:507.958920px;}
.x9_c00112{left:510.478635px;}
.xf_c00112{left:518.759535px;}
.x1b_c00112{left:527.759085px;}
.x10_c00112{left:533.879520px;}
.x1c_c00112{left:541.799520px;}
.x12_c00112{left:546.118785px;}
.x13_c00112{left:566.639100px;}
.x20_c00112{left:582.838530px;}
.x21_c00112{left:609.479235px;}
.xa_c00112{left:637.919535px;}
.x1d_c00112{left:649.079355px;}
.xb_c00112{left:662.399820px;}
.x1e_c00112{left:673.918950px;}
.x15_c00112{left:727.198785px;}
.x16_c00112{left:759.958335px;}
.xe_c00112{left:767.519070px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls10_c00112{letter-spacing:-14.307333pt;}
.ls16_c00112{letter-spacing:-10.867827pt;}
.lse_c00112{letter-spacing:-9.817600pt;}
.ls18_c00112{letter-spacing:-9.514600pt;}
.ls4_c00112{letter-spacing:-9.100000pt;}
.ls15_c00112{letter-spacing:-9.059467pt;}
.ls12_c00112{letter-spacing:-7.266700pt;}
.ls14_c00112{letter-spacing:-6.601000pt;}
.ls1d_c00112{letter-spacing:-5.943000pt;}
.lsd_c00112{letter-spacing:-5.285000pt;}
.lsb_c00112{letter-spacing:-4.619300pt;}
.lsf_c00112{letter-spacing:-3.961300pt;}
.lsa_c00112{letter-spacing:-3.304000pt;}
.ls8_c00112{letter-spacing:-2.719200pt;}
.ls17_c00112{letter-spacing:-2.642933pt;}
.lsc_c00112{letter-spacing:-2.639000pt;}
.ls19_c00112{letter-spacing:-2.177267pt;}
.ls3_c00112{letter-spacing:-1.981700pt;}
.ls6_c00112{letter-spacing:-1.453333pt;}
.ls7_c00112{letter-spacing:-1.359600pt;}
.ls13_c00112{letter-spacing:-1.323700pt;}
.ls11_c00112{letter-spacing:-0.658000pt;}
.ls5_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:0.658000pt;}
.ls9_c00112{letter-spacing:0.810267pt;}
.ls1a_c00112{letter-spacing:1.414400pt;}
.ls1c_c00112{letter-spacing:3.113760pt;}
.ls1b_c00112{letter-spacing:3.233520pt;}
.ls2_c00112{letter-spacing:4.241300pt;}
.ls1_c00112{letter-spacing:4.619300pt;}
.ws0_c00112{word-spacing:0.000000pt;}
._b_c00112{margin-left:-12.393711pt;}
._16_c00112{margin-left:-4.841438pt;}
._0_c00112{margin-left:-3.051419pt;}
._14_c00112{margin-left:-1.193487pt;}
._15_c00112{width:0.926219pt;}
._10_c00112{width:2.244174pt;}
._2_c00112{width:3.493185pt;}
._1_c00112{width:4.694530pt;}
._3_c00112{width:6.377026pt;}
._13_c00112{width:7.268047pt;}
._a_c00112{width:8.659832pt;}
._1a_c00112{width:9.698368pt;}
._d_c00112{width:10.587487pt;}
._18_c00112{width:11.693579pt;}
._9_c00112{width:12.837498pt;}
._e_c00112{width:13.901762pt;}
._1b_c00112{width:15.252657pt;}
._c_c00112{width:16.491194pt;}
._6_c00112{width:17.548736pt;}
._4_c00112{width:19.056179pt;}
._11_c00112{width:20.281509pt;}
._17_c00112{width:21.580458pt;}
._5_c00112{width:22.820132pt;}
._8_c00112{width:24.321091pt;}
._12_c00112{width:26.763113pt;}
._7_c00112{width:28.637211pt;}
._19_c00112{width:32.506983pt;}
._f_c00112{width:41.620825pt;}
.fs2_c00112{font-size:66.000000pt;}
.fs3_c00112{font-size:68.666667pt;}
.fs4_c00112{font-size:69.333333pt;}
.fs0_c00112{font-size:70.000000pt;}
.fs7_c00112{font-size:70.666667pt;}
.fs6_c00112{font-size:71.333333pt;}
.fs9_c00112{font-size:72.000000pt;}
.fs1_c00112{font-size:72.666667pt;}
.fs5_c00112{font-size:73.333333pt;}
.fs8_c00112{font-size:75.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y27_c00112{bottom:237.439453pt;}
.y26_c00112{bottom:237.440240pt;}
.y24_c00112{bottom:263.999307pt;}
.y25_c00112{bottom:264.000000pt;}
.y23_c00112{bottom:290.559067pt;}
.y22_c00112{bottom:290.559840pt;}
.y21_c00112{bottom:317.119587pt;}
.y20_c00112{bottom:317.120280pt;}
.y1f_c00112{bottom:343.359867pt;}
.y1e_c00112{bottom:369.919613pt;}
.y1d_c00112{bottom:423.679733pt;}
.y1b_c00112{bottom:449.919387pt;}
.y1c_c00112{bottom:449.919480pt;}
.y1a_c00112{bottom:476.799320pt;}
.y19_c00112{bottom:476.800107pt;}
.y18_c00112{bottom:503.359867pt;}
.y17_c00112{bottom:503.360867pt;}
.y16_c00112{bottom:530.240787pt;}
.y15_c00112{bottom:556.800533pt;}
.y14_c00112{bottom:583.040120pt;}
.y13_c00112{bottom:609.279707pt;}
.y12_c00112{bottom:609.280493pt;}
.y11_c00112{bottom:635.840253pt;}
.y10_c00112{bottom:689.599747pt;}
.yf_c00112{bottom:716.159507pt;}
.yd_c00112{bottom:743.359133pt;}
.ye_c00112{bottom:743.359867pt;}
.yc_c00112{bottom:796.160080pt;}
.yb_c00112{bottom:796.160200pt;}
.ya_c00112{bottom:822.399787pt;}
.y9_c00112{bottom:849.279707pt;}
.y8_c00112{bottom:875.519453pt;}
.y7_c00112{bottom:875.520320pt;}
.y6_c00112{bottom:902.080080pt;}
.y5_c00112{bottom:902.080240pt;}
.y4_c00112{bottom:928.319827pt;}
.y3_c00112{bottom:928.320613pt;}
.y2_c00112{bottom:954.880373pt;}
.y1_c00112{bottom:1008.959467pt;}
.h4_c00112{height:66.515625pt;}
.h6_c00112{height:68.046875pt;}
.h2_c00112{height:68.701172pt;}
.h5_c00112{height:69.203125pt;}
.hb_c00112{height:69.355469pt;}
.ha_c00112{height:69.838542pt;}
.h8_c00112{height:70.009766pt;}
.h1_c00112{height:70.546875pt;}
.he_c00112{height:70.664062pt;}
.hd_c00112{height:71.936849pt;}
.h9_c00112{height:71.972656pt;}
.h7_c00112{height:72.473958pt;}
.h3_c00112{height:73.234375pt;}
.hc_c00112{height:74.450521pt;}
.h0_c00112{height:1122.666667pt;}
.w0_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:120.000000pt;}
.x1a_c00112{left:120.959853pt;}
.x1f_c00112{left:134.399480pt;}
.x3_c00112{left:143.679200pt;}
.x14_c00112{left:151.038533pt;}
.x2_c00112{left:179.519467pt;}
.x4_c00112{left:186.878920pt;}
.x26_c00112{left:198.719200pt;}
.x11_c00112{left:206.078680pt;}
.x27_c00112{left:212.159200pt;}
.xc_c00112{left:244.798787pt;}
.x24_c00112{left:256.960000pt;}
.xd_c00112{left:259.839867pt;}
.x25_c00112{left:270.399867pt;}
.x5_c00112{left:281.919453pt;}
.x22_c00112{left:335.679200pt;}
.x17_c00112{left:337.599587pt;}
.x23_c00112{left:357.439453pt;}
.x18_c00112{left:394.239173pt;}
.x19_c00112{left:408.638667pt;}
.x6_c00112{left:423.999067pt;}
.x8_c00112{left:427.519040pt;}
.x7_c00112{left:451.519040pt;}
.x9_c00112{left:453.758787pt;}
.xf_c00112{left:461.119587pt;}
.x1b_c00112{left:469.119187pt;}
.x10_c00112{left:474.559573pt;}
.x1c_c00112{left:481.599573pt;}
.x12_c00112{left:485.438920pt;}
.x13_c00112{left:503.679200pt;}
.x20_c00112{left:518.078693pt;}
.x21_c00112{left:541.759320pt;}
.xa_c00112{left:567.039587pt;}
.x1d_c00112{left:576.959427pt;}
.xb_c00112{left:588.799840pt;}
.x1e_c00112{left:599.039067pt;}
.x15_c00112{left:646.398920pt;}
.x16_c00112{left:675.518520pt;}
.xe_c00112{left:682.239173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89bb3cff660950e483fe1e12.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_a2d4692cd147017379672fc8.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;}
.m6_c00113{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls8_c00113{letter-spacing:-13.490828px;}
.ls10_c00113{letter-spacing:-8.914500px;}
.lsb_c00113{letter-spacing:-7.426125px;}
.lsf_c00113{letter-spacing:-6.685875px;}
.ls3_c00113{letter-spacing:-5.945625px;}
.ls6_c00113{letter-spacing:-5.203125px;}
.lsd_c00113{letter-spacing:-5.196713px;}
.lsc_c00113{letter-spacing:-4.456463px;}
.ls5_c00113{letter-spacing:-3.717000px;}
.ls1_c00113{letter-spacing:-2.968875px;}
.ls0_c00113{letter-spacing:-2.229413px;}
.ls4_c00113{letter-spacing:-1.489163px;}
.ls7_c00113{letter-spacing:-0.740250px;}
.ls9_c00113{letter-spacing:0.000000px;}
.lsa_c00113{letter-spacing:0.772650px;}
.ls2_c00113{letter-spacing:2.511825px;}
.lse_c00113{letter-spacing:3.386250px;}
.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;}
._0_c00113{margin-left:-4.601645px;}
._14_c00113{margin-left:-1.121727px;}
._5_c00113{width:1.031060px;}
._2_c00113{width:2.228803px;}
._6_c00113{width:4.091820px;}
._4_c00113{width:6.002652px;}
._7_c00113{width:7.635303px;}
._9_c00113{width:9.432913px;}
._3_c00113{width:10.812137px;}
._1_c00113{width:11.888397px;}
._a_c00113{width:12.955787px;}
._17_c00113{width:14.035776px;}
._8_c00113{width:15.111768px;}
._c_c00113{width:16.567336px;}
._b_c00113{width:17.686745px;}
._12_c00113{width:19.061452px;}
._d_c00113{width:20.322136px;}
._10_c00113{width:22.067786px;}
._11_c00113{width:23.155650px;}
._f_c00113{width:24.648423px;}
._13_c00113{width:25.672188px;}
._e_c00113{width:27.481150px;}
._16_c00113{width:29.023803px;}
._15_c00113{width:32.436917px;}
.fc0_c00113{color:transparent;}
.fs3_c00113{font-size:76.500000px;}
.fs5_c00113{font-size:78.000000px;}
.fs0_c00113{font-size:78.750000px;}
.fs1_c00113{font-size:80.250000px;}
.fs4_c00113{font-size:82.500000px;}
.fs2_c00113{font-size:83.250000px;}
.y0_c00113{bottom:0.000000px;}
.y1c_c00113{bottom:538.918950px;}
.y1a_c00113{bottom:568.439445px;}
.y1b_c00113{bottom:568.440315px;}
.y19_c00113{bottom:598.679355px;}
.y17_c00113{bottom:658.080180px;}
.y18_c00113{bottom:658.080420px;}
.y15_c00113{bottom:687.238950px;}
.y16_c00113{bottom:687.239220px;}
.y14_c00113{bottom:717.478860px;}
.y12_c00113{bottom:777.240375px;}
.y13_c00113{bottom:777.240420px;}
.y11_c00113{bottom:807.480285px;}
.y10_c00113{bottom:807.481155px;}
.yf_c00113{bottom:838.079460px;}
.ye_c00113{bottom:867.959175px;}
.yd_c00113{bottom:897.838905px;}
.yc_c00113{bottom:897.839670px;}
.yb_c00113{bottom:927.361020px;}
.ya_c00113{bottom:986.399775px;}
.y9_c00113{bottom:986.400675px;}
.y7_c00113{bottom:1016.279640px;}
.y8_c00113{bottom:1016.280390px;}
.y5_c00113{bottom:1046.159265px;}
.y6_c00113{bottom:1046.159370px;}
.y4_c00113{bottom:1076.399190px;}
.y3_c00113{bottom:1106.639100px;}
.y2_c00113{bottom:1106.639985px;}
.y1_c00113{bottom:1136.519715px;}
.h6_c00113{height:76.552734px;}
.h4_c00113{height:77.097656px;}
.h1_c00113{height:77.288818px;}
.h2_c00113{height:78.760986px;}
.h5_c00113{height:80.969238px;}
.h3_c00113{height:81.705322px;}
.h0_c00113{height:1263.000000px;}
.w0_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x18_c00113{left:133.557180px;}
.xf_c00113{left:135.001875px;}
.x6_c00113{left:136.080855px;}
.x1_c00113{left:138.239850px;}
.x16_c00113{left:159.119415px;}
.x17_c00113{left:193.319250px;}
.x7_c00113{left:260.998950px;}
.x8_c00113{left:286.199385px;}
.x2_c00113{left:344.159385px;}
.x3_c00113{left:363.239250px;}
.x1b_c00113{left:366.120000px;}
.xb_c00113{left:372.238785px;}
.x1c_c00113{left:380.878950px;}
.xc_c00113{left:411.838950px;}
.x10_c00113{left:456.478635px;}
.xd_c00113{left:458.639100px;}
.x14_c00113{left:470.878320px;}
.x11_c00113{left:471.959385px;}
.xe_c00113{left:473.759085px;}
.x15_c00113{left:484.198785px;}
.x4_c00113{left:505.798515px;}
.x5_c00113{left:526.318770px;}
.x19_c00113{left:617.399235px;}
.x1a_c00113{left:634.318770px;}
.x9_c00113{left:669.599670px;}
.xa_c00113{left:683.999400px;}
.x12_c00113{left:743.399820px;}
.x13_c00113{left:762.838950px;}
.x1d_c00113{left:766.078770px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls8_c00113{letter-spacing:-11.991847pt;}
.ls10_c00113{letter-spacing:-7.924000pt;}
.lsb_c00113{letter-spacing:-6.601000pt;}
.lsf_c00113{letter-spacing:-5.943000pt;}
.ls3_c00113{letter-spacing:-5.285000pt;}
.ls6_c00113{letter-spacing:-4.625000pt;}
.lsd_c00113{letter-spacing:-4.619300pt;}
.lsc_c00113{letter-spacing:-3.961300pt;}
.ls5_c00113{letter-spacing:-3.304000pt;}
.ls1_c00113{letter-spacing:-2.639000pt;}
.ls0_c00113{letter-spacing:-1.981700pt;}
.ls4_c00113{letter-spacing:-1.323700pt;}
.ls7_c00113{letter-spacing:-0.658000pt;}
.ls9_c00113{letter-spacing:0.000000pt;}
.lsa_c00113{letter-spacing:0.686800pt;}
.ls2_c00113{letter-spacing:2.232733pt;}
.lse_c00113{letter-spacing:3.010000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
._0_c00113{margin-left:-4.090351pt;}
._14_c00113{margin-left:-0.997091pt;}
._5_c00113{width:0.916498pt;}
._2_c00113{width:1.981158pt;}
._6_c00113{width:3.637174pt;}
._4_c00113{width:5.335691pt;}
._7_c00113{width:6.786936pt;}
._9_c00113{width:8.384811pt;}
._3_c00113{width:9.610789pt;}
._1_c00113{width:10.567464pt;}
._a_c00113{width:11.516255pt;}
._17_c00113{width:12.476245pt;}
._8_c00113{width:13.432683pt;}
._c_c00113{width:14.726521pt;}
._b_c00113{width:15.721551pt;}
._12_c00113{width:16.943513pt;}
._d_c00113{width:18.064121pt;}
._10_c00113{width:19.615809pt;}
._11_c00113{width:20.582800pt;}
._f_c00113{width:21.909709pt;}
._13_c00113{width:22.819723pt;}
._e_c00113{width:24.427689pt;}
._16_c00113{width:25.798936pt;}
._15_c00113{width:28.832815pt;}
.fs3_c00113{font-size:68.000000pt;}
.fs5_c00113{font-size:69.333333pt;}
.fs0_c00113{font-size:70.000000pt;}
.fs1_c00113{font-size:71.333333pt;}
.fs4_c00113{font-size:73.333333pt;}
.fs2_c00113{font-size:74.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y1c_c00113{bottom:479.039067pt;}
.y1a_c00113{bottom:505.279507pt;}
.y1b_c00113{bottom:505.280280pt;}
.y19_c00113{bottom:532.159427pt;}
.y17_c00113{bottom:584.960160pt;}
.y18_c00113{bottom:584.960373pt;}
.y15_c00113{bottom:610.879067pt;}
.y16_c00113{bottom:610.879307pt;}
.y14_c00113{bottom:637.758987pt;}
.y12_c00113{bottom:690.880333pt;}
.y13_c00113{bottom:690.880373pt;}
.y11_c00113{bottom:717.760253pt;}
.y10_c00113{bottom:717.761027pt;}
.yf_c00113{bottom:744.959520pt;}
.ye_c00113{bottom:771.519267pt;}
.yd_c00113{bottom:798.079027pt;}
.yc_c00113{bottom:798.079707pt;}
.yb_c00113{bottom:824.320907pt;}
.ya_c00113{bottom:876.799800pt;}
.y9_c00113{bottom:876.800600pt;}
.y7_c00113{bottom:903.359680pt;}
.y8_c00113{bottom:903.360347pt;}
.y5_c00113{bottom:929.919347pt;}
.y6_c00113{bottom:929.919440pt;}
.y4_c00113{bottom:956.799280pt;}
.y3_c00113{bottom:983.679200pt;}
.y2_c00113{bottom:983.679987pt;}
.y1_c00113{bottom:1010.239747pt;}
.h6_c00113{height:68.046875pt;}
.h4_c00113{height:68.531250pt;}
.h1_c00113{height:68.701172pt;}
.h2_c00113{height:70.009766pt;}
.h5_c00113{height:71.972656pt;}
.h3_c00113{height:72.626953pt;}
.h0_c00113{height:1122.666667pt;}
.w0_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x18_c00113{left:118.717493pt;}
.xf_c00113{left:120.001667pt;}
.x6_c00113{left:120.960760pt;}
.x1_c00113{left:122.879867pt;}
.x16_c00113{left:141.439480pt;}
.x17_c00113{left:171.839333pt;}
.x7_c00113{left:231.999067pt;}
.x8_c00113{left:254.399453pt;}
.x2_c00113{left:305.919453pt;}
.x3_c00113{left:322.879333pt;}
.x1b_c00113{left:325.440000pt;}
.xb_c00113{left:330.878920pt;}
.x1c_c00113{left:338.559067pt;}
.xc_c00113{left:366.079067pt;}
.x10_c00113{left:405.758787pt;}
.xd_c00113{left:407.679200pt;}
.x14_c00113{left:418.558507pt;}
.x11_c00113{left:419.519453pt;}
.xe_c00113{left:421.119187pt;}
.x15_c00113{left:430.398920pt;}
.x4_c00113{left:449.598680pt;}
.x5_c00113{left:467.838907pt;}
.x19_c00113{left:548.799320pt;}
.x1a_c00113{left:563.838907pt;}
.x9_c00113{left:595.199707pt;}
.xa_c00113{left:607.999467pt;}
.x12_c00113{left:660.799840pt;}
.x13_c00113{left:678.079067pt;}
.x1d_c00113{left:680.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c7cadfb865920577f9c8238.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_83d4ce40ee0fa79555f3fdf5.woff2')format("woff");}.ff2_c00114{font-family:ff2_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:ff3_c00114;src:url('chunks/assets/font_e6c1030fa385369c65a36387.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.281250;font-style:normal;font-weight:normal;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_dbcb83ee37f84d32c56093f9.woff2')format("woff");}.ff4_c00114{font-family:ff4_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:ff5_c00114;src:url('chunks/assets/font_f24636e6afd9318fa75bfba0.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_f5972872b41744c0102109bd.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00114{transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.095890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095890,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{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);}
.m9_c00114{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(0.225248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225248,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(0.226293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226293,0.000000,0.000000,0.250000,0,0);}
.m1a_c00114{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m19_c00114{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m17_c00114{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m15_c00114{transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.mf_c00114{transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308929,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.391355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391355,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.544974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544974,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.922819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922819,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls14_c00114{letter-spacing:-12.355560px;}
.lsf_c00114{letter-spacing:-11.597100px;}
.ls7_c00114{letter-spacing:-4.860000px;}
.ls9_c00114{letter-spacing:-4.680578px;}
.lse_c00114{letter-spacing:-4.672890px;}
.ls1_c00114{letter-spacing:-3.978375px;}
.lsa_c00114{letter-spacing:-3.927690px;}
.ls11_c00114{letter-spacing:-3.823200px;}
.ls10_c00114{letter-spacing:-3.142800px;}
.ls4_c00114{letter-spacing:-3.113550px;}
.ls3_c00114{letter-spacing:-3.029400px;}
.ls0_c00114{letter-spacing:-3.024750px;}
.ls2_c00114{letter-spacing:-2.375175px;}
.ls5_c00114{letter-spacing:-2.335575px;}
.lsd_c00114{letter-spacing:-1.666500px;}
.ls12_c00114{letter-spacing:-1.572750px;}
.lsc_c00114{letter-spacing:-1.497690px;}
.ls6_c00114{letter-spacing:0.000000px;}
.lsb_c00114{letter-spacing:0.787050px;}
.ls8_c00114{letter-spacing:2.999310px;}
.ls13_c00114{letter-spacing:6.372450px;}
.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;}
.fsa_c00114{font-size:51.000000px;}
.fs8_c00114{font-size:51.750000px;}
.fs9_c00114{font-size:60.750000px;}
.fs12_c00114{font-size:67.500000px;}
.fsf_c00114{font-size:75.750000px;}
.fs13_c00114{font-size:76.500000px;}
.fs1_c00114{font-size:77.250000px;}
.fsd_c00114{font-size:79.500000px;}
.fs3_c00114{font-size:81.000000px;}
.fs0_c00114{font-size:81.750000px;}
.fs2_c00114{font-size:82.500000px;}
.fs4_c00114{font-size:83.250000px;}
.fs14_c00114{font-size:84.000000px;}
.fs11_c00114{font-size:87.000000px;}
.fs7_c00114{font-size:109.500000px;}
.fs5_c00114{font-size:111.750000px;}
.fse_c00114{font-size:141.750000px;}
.fsb_c00114{font-size:160.500000px;}
.fs6_c00114{font-size:177.000000px;}
.fsc_c00114{font-size:210.000000px;}
.fs10_c00114{font-size:467.250000px;}
.y0_c00114{bottom:0.000000px;}
.ya_c00114{bottom:97.560315px;}
.y9_c00114{bottom:148.318800px;}
.y8_c00114{bottom:191.878950px;}
.y7_c00114{bottom:238.319850px;}
.y6_c00114{bottom:282.239250px;}
.y5_c00114{bottom:321.478635px;}
.y3_c00114{bottom:484.918950px;}
.y4_c00114{bottom:493.559100px;}
.y2_c00114{bottom:504.359850px;}
.y1_c00114{bottom:1178.278755px;}
.hb_c00114{height:53.191406px;}
.h9_c00114{height:53.973633px;}
.ha_c00114{height:63.360352px;}
.h13_c00114{height:70.400391px;}
.h14_c00114{height:77.097656px;}
.h10_c00114{height:79.004883px;}
.he_c00114{height:80.121094px;}
.h2_c00114{height:80.569336px;}
.h4_c00114{height:81.632812px;}
.h1_c00114{height:82.388672px;}
.h15_c00114{height:83.015625px;}
.h3_c00114{height:83.144531px;}
.h5_c00114{height:83.900391px;}
.h12_c00114{height:85.980469px;}
.h8_c00114{height:108.216797px;}
.h6_c00114{height:109.621948px;}
.hf_c00114{height:139.050659px;}
.hc_c00114{height:157.443604px;}
.h7_c00114{height:184.605469px;}
.hd_c00114{height:206.000977px;}
.h11_c00114{height:487.327148px;}
.h0_c00114{height:1263.000000px;}
.w0_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:108.718500px;}
.xd_c00114{left:121.679700px;}
.x17_c00114{left:124.919565px;}
.x2_c00114{left:168.118815px;}
.xe_c00114{left:177.479250px;}
.x12_c00114{left:180.359850px;}
.x18_c00114{left:195.118785px;}
.x3_c00114{left:198.358635px;}
.xf_c00114{left:208.439250px;}
.x14_c00114{left:212.399250px;}
.x10_c00114{left:217.799535px;}
.x11_c00114{left:227.159850px;}
.x19_c00114{left:228.598500px;}
.x13_c00114{left:231.120000px;}
.x15_c00114{left:235.798515px;}
.x4_c00114{left:251.279250px;}
.x16_c00114{left:260.639700px;}
.x5_c00114{left:276.118785px;}
.x6_c00114{left:364.679700px;}
.x7_c00114{left:394.919535px;}
.x8_c00114{left:523.439670px;}
.x9_c00114{left:548.999400px;}
.xa_c00114{left:612.719100px;}
.xb_c00114{left:672.478635px;}
.xc_c00114{left:686.878320px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls14_c00114{letter-spacing:-10.982720pt;}
.lsf_c00114{letter-spacing:-10.308533pt;}
.ls7_c00114{letter-spacing:-4.320000pt;}
.ls9_c00114{letter-spacing:-4.160513pt;}
.lse_c00114{letter-spacing:-4.153680pt;}
.ls1_c00114{letter-spacing:-3.536333pt;}
.lsa_c00114{letter-spacing:-3.491280pt;}
.ls11_c00114{letter-spacing:-3.398400pt;}
.ls10_c00114{letter-spacing:-2.793600pt;}
.ls4_c00114{letter-spacing:-2.767600pt;}
.ls3_c00114{letter-spacing:-2.692800pt;}
.ls0_c00114{letter-spacing:-2.688667pt;}
.ls2_c00114{letter-spacing:-2.111267pt;}
.ls5_c00114{letter-spacing:-2.076067pt;}
.lsd_c00114{letter-spacing:-1.481333pt;}
.ls12_c00114{letter-spacing:-1.398000pt;}
.lsc_c00114{letter-spacing:-1.331280pt;}
.ls6_c00114{letter-spacing:0.000000pt;}
.lsb_c00114{letter-spacing:0.699600pt;}
.ls8_c00114{letter-spacing:2.666053pt;}
.ls13_c00114{letter-spacing:5.664400pt;}
.ws0_c00114{word-spacing:0.000000pt;}
.fsa_c00114{font-size:45.333333pt;}
.fs8_c00114{font-size:46.000000pt;}
.fs9_c00114{font-size:54.000000pt;}
.fs12_c00114{font-size:60.000000pt;}
.fsf_c00114{font-size:67.333333pt;}
.fs13_c00114{font-size:68.000000pt;}
.fs1_c00114{font-size:68.666667pt;}
.fsd_c00114{font-size:70.666667pt;}
.fs3_c00114{font-size:72.000000pt;}
.fs0_c00114{font-size:72.666667pt;}
.fs2_c00114{font-size:73.333333pt;}
.fs4_c00114{font-size:74.000000pt;}
.fs14_c00114{font-size:74.666667pt;}
.fs11_c00114{font-size:77.333333pt;}
.fs7_c00114{font-size:97.333333pt;}
.fs5_c00114{font-size:99.333333pt;}
.fse_c00114{font-size:126.000000pt;}
.fsb_c00114{font-size:142.666667pt;}
.fs6_c00114{font-size:157.333333pt;}
.fsc_c00114{font-size:186.666667pt;}
.fs10_c00114{font-size:415.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.ya_c00114{bottom:86.720280pt;}
.y9_c00114{bottom:131.838933pt;}
.y8_c00114{bottom:170.559067pt;}
.y7_c00114{bottom:211.839867pt;}
.y6_c00114{bottom:250.879333pt;}
.y5_c00114{bottom:285.758787pt;}
.y3_c00114{bottom:431.039067pt;}
.y4_c00114{bottom:438.719200pt;}
.y2_c00114{bottom:448.319867pt;}
.y1_c00114{bottom:1047.358893pt;}
.hb_c00114{height:47.281250pt;}
.h9_c00114{height:47.976562pt;}
.ha_c00114{height:56.320312pt;}
.h13_c00114{height:62.578125pt;}
.h14_c00114{height:68.531250pt;}
.h10_c00114{height:70.226562pt;}
.he_c00114{height:71.218750pt;}
.h2_c00114{height:71.617188pt;}
.h4_c00114{height:72.562500pt;}
.h1_c00114{height:73.234375pt;}
.h15_c00114{height:73.791667pt;}
.h3_c00114{height:73.906250pt;}
.h5_c00114{height:74.578125pt;}
.h12_c00114{height:76.427083pt;}
.h8_c00114{height:96.192708pt;}
.h6_c00114{height:97.441732pt;}
.hf_c00114{height:123.600586pt;}
.hc_c00114{height:139.949870pt;}
.h7_c00114{height:164.093750pt;}
.hd_c00114{height:183.111979pt;}
.h11_c00114{height:433.179687pt;}
.h0_c00114{height:1122.666667pt;}
.w0_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:96.638667pt;}
.xd_c00114{left:108.159733pt;}
.x17_c00114{left:111.039613pt;}
.x2_c00114{left:149.438947pt;}
.xe_c00114{left:157.759333pt;}
.x12_c00114{left:160.319867pt;}
.x18_c00114{left:173.438920pt;}
.x3_c00114{left:176.318787pt;}
.xf_c00114{left:185.279333pt;}
.x14_c00114{left:188.799333pt;}
.x10_c00114{left:193.599587pt;}
.x11_c00114{left:201.919867pt;}
.x19_c00114{left:203.198667pt;}
.x13_c00114{left:205.440000pt;}
.x15_c00114{left:209.598680pt;}
.x4_c00114{left:223.359333pt;}
.x16_c00114{left:231.679733pt;}
.x5_c00114{left:245.438920pt;}
.x6_c00114{left:324.159733pt;}
.x7_c00114{left:351.039587pt;}
.x8_c00114{left:465.279707pt;}
.x9_c00114{left:487.999467pt;}
.xa_c00114{left:544.639200pt;}
.xb_c00114{left:597.758787pt;}
.xc_c00114{left:610.558507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bda0e46732bc47c72f7bd177.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_f80f2b432669ab24ec69918e.woff2')format("woff");}.ff2_c00115{font-family:ff2_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;}
.m6_c00115{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.lsc_c00115{letter-spacing:-8.175038px;}
.ls9_c00115{letter-spacing:-7.426125px;}
.lse_c00115{letter-spacing:-5.945625px;}
.lsd_c00115{letter-spacing:-5.444550px;}
.lsb_c00115{letter-spacing:-5.203125px;}
.ls6_c00115{letter-spacing:-5.196713px;}
.ls2_c00115{letter-spacing:-4.456463px;}
.ls8_c00115{letter-spacing:-3.717000px;}
.ls5_c00115{letter-spacing:-2.968875px;}
.ls1_c00115{letter-spacing:-2.229413px;}
.ls4_c00115{letter-spacing:-1.489163px;}
.ls3_c00115{letter-spacing:-0.740250px;}
.ls7_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:0.804173px;}
.lsa_c00115{letter-spacing:3.726810px;}
.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;}
._7_c00115{margin-left:-4.440891px;}
._5_c00115{margin-left:-3.197280px;}
._14_c00115{margin-left:-1.686468px;}
._6_c00115{width:2.086400px;}
._1_c00115{width:3.653525px;}
._8_c00115{width:5.242046px;}
._18_c00115{width:6.384783px;}
._3_c00115{width:7.567637px;}
._4_c00115{width:8.811947px;}
._9_c00115{width:10.052720px;}
._12_c00115{width:11.065489px;}
._0_c00115{width:12.533791px;}
._13_c00115{width:13.573409px;}
._15_c00115{width:15.542486px;}
._2_c00115{width:17.077220px;}
._11_c00115{width:18.242779px;}
._f_c00115{width:20.305227px;}
._c_c00115{width:22.645974px;}
._10_c00115{width:24.056357px;}
._e_c00115{width:25.542236px;}
._a_c00115{width:26.598392px;}
._b_c00115{width:28.119188px;}
._17_c00115{width:29.623283px;}
._16_c00115{width:31.751465px;}
._d_c00115{width:36.555393px;}
.fc0_c00115{color:transparent;}
.fs0_c00115{font-size:77.250000px;}
.fs8_c00115{font-size:78.000000px;}
.fs1_c00115{font-size:78.750000px;}
.fs7_c00115{font-size:79.500000px;}
.fs2_c00115{font-size:80.250000px;}
.fs3_c00115{font-size:81.000000px;}
.fs6_c00115{font-size:82.500000px;}
.fs5_c00115{font-size:83.250000px;}
.fs4_c00115{font-size:84.750000px;}
.y0_c00115{bottom:0.000000px;}
.y1c_c00115{bottom:180.000600px;}
.y1b_c00115{bottom:180.000750px;}
.y1a_c00115{bottom:209.520285px;}
.y19_c00115{bottom:209.521095px;}
.y18_c00115{bottom:240.119385px;}
.y17_c00115{bottom:240.120270px;}
.y16_c00115{bottom:270.000000px;}
.y15_c00115{bottom:270.000825px;}
.y14_c00115{bottom:388.080465px;}
.y13_c00115{bottom:417.959385px;}
.y12_c00115{bottom:417.959475px;}
.y11_c00115{bottom:448.199385px;}
.y10_c00115{bottom:479.160555px;}
.yf_c00115{bottom:597.960870px;}
.yd_c00115{bottom:627.839700px;}
.ye_c00115{bottom:627.840585px;}
.yc_c00115{bottom:657.719415px;}
.ya_c00115{bottom:777.240375px;}
.yb_c00115{bottom:777.240420px;}
.y8_c00115{bottom:807.480240px;}
.y9_c00115{bottom:807.480285px;}
.y7_c00115{bottom:837.720150px;}
.y6_c00115{bottom:837.720195px;}
.y5_c00115{bottom:867.239730px;}
.y4_c00115{bottom:897.479640px;}
.y3_c00115{bottom:897.479835px;}
.y2_c00115{bottom:926.999355px;}
.y1_c00115{bottom:1136.519715px;}
.h1_c00115{height:75.816650px;}
.h9_c00115{height:76.552734px;}
.h2_c00115{height:77.288818px;}
.h3_c00115{height:78.760986px;}
.h4_c00115{height:79.497070px;}
.h8_c00115{height:80.121094px;}
.h7_c00115{height:80.969238px;}
.h6_c00115{height:81.705322px;}
.h5_c00115{height:83.177490px;}
.h0_c00115{height:1263.000000px;}
.w0_c00115{width:892.500000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:149.759100px;}
.x19_c00115{left:164.519685px;}
.x12_c00115{left:169.918350px;}
.x2_c00115{left:217.079385px;}
.x1b_c00115{left:230.038950px;}
.xe_c00115{left:244.079385px;}
.x1c_c00115{left:245.158785px;}
.x8_c00115{left:248.759535px;}
.xf_c00115{left:259.919535px;}
.x9_c00115{left:263.159385px;}
.x21_c00115{left:364.679700px;}
.x22_c00115{left:380.158785px;}
.x10_c00115{left:415.798920px;}
.x11_c00115{left:433.079400px;}
.x5_c00115{left:500.759085px;}
.x6_c00115{left:520.559100px;}
.xa_c00115{left:528.838530px;}
.xb_c00115{left:542.878920px;}
.x7_c00115{left:549.358665px;}
.x15_c00115{left:572.039385px;}
.x16_c00115{left:586.439250px;}
.x1f_c00115{left:610.199385px;}
.x1d_c00115{left:618.119385px;}
.x3_c00115{left:620.639100px;}
.x1a_c00115{left:621.718545px;}
.x20_c00115{left:624.958335px;}
.x1e_c00115{left:633.239220px;}
.x4_c00115{left:634.679670px;}
.x17_c00115{left:639.719100px;}
.xc_c00115{left:651.958335px;}
.x18_c00115{left:662.399820px;}
.x13_c00115{left:667.080000px;}
.xd_c00115{left:672.478635px;}
.x14_c00115{left:687.239220px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.lsc_c00115{letter-spacing:-7.266700pt;}
.ls9_c00115{letter-spacing:-6.601000pt;}
.lse_c00115{letter-spacing:-5.285000pt;}
.lsd_c00115{letter-spacing:-4.839600pt;}
.lsb_c00115{letter-spacing:-4.625000pt;}
.ls6_c00115{letter-spacing:-4.619300pt;}
.ls2_c00115{letter-spacing:-3.961300pt;}
.ls8_c00115{letter-spacing:-3.304000pt;}
.ls5_c00115{letter-spacing:-2.639000pt;}
.ls1_c00115{letter-spacing:-1.981700pt;}
.ls4_c00115{letter-spacing:-1.323700pt;}
.ls3_c00115{letter-spacing:-0.658000pt;}
.ls7_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:0.714820pt;}
.lsa_c00115{letter-spacing:3.312720pt;}
.ws0_c00115{word-spacing:0.000000pt;}
._7_c00115{margin-left:-3.947458pt;}
._5_c00115{margin-left:-2.842026pt;}
._14_c00115{margin-left:-1.499083pt;}
._6_c00115{width:1.854577pt;}
._1_c00115{width:3.247577pt;}
._8_c00115{width:4.659596pt;}
._18_c00115{width:5.675362pt;}
._3_c00115{width:6.726789pt;}
._4_c00115{width:7.832842pt;}
._9_c00115{width:8.935751pt;}
._12_c00115{width:9.835991pt;}
._0_c00115{width:11.141147pt;}
._13_c00115{width:12.065253pt;}
._15_c00115{width:13.815543pt;}
._2_c00115{width:15.179751pt;}
._11_c00115{width:16.215804pt;}
._f_c00115{width:18.049091pt;}
._c_c00115{width:20.129755pt;}
._10_c00115{width:21.383428pt;}
._e_c00115{width:22.704209pt;}
._a_c00115{width:23.643015pt;}
._b_c00115{width:24.994834pt;}
._17_c00115{width:26.331808pt;}
._16_c00115{width:28.223525pt;}
._d_c00115{width:32.493683pt;}
.fs0_c00115{font-size:68.666667pt;}
.fs8_c00115{font-size:69.333333pt;}
.fs1_c00115{font-size:70.000000pt;}
.fs7_c00115{font-size:70.666667pt;}
.fs2_c00115{font-size:71.333333pt;}
.fs3_c00115{font-size:72.000000pt;}
.fs6_c00115{font-size:73.333333pt;}
.fs5_c00115{font-size:74.000000pt;}
.fs4_c00115{font-size:75.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y1c_c00115{bottom:160.000533pt;}
.y1b_c00115{bottom:160.000667pt;}
.y1a_c00115{bottom:186.240253pt;}
.y19_c00115{bottom:186.240973pt;}
.y18_c00115{bottom:213.439453pt;}
.y17_c00115{bottom:213.440240pt;}
.y16_c00115{bottom:240.000000pt;}
.y15_c00115{bottom:240.000733pt;}
.y14_c00115{bottom:344.960413pt;}
.y13_c00115{bottom:371.519453pt;}
.y12_c00115{bottom:371.519533pt;}
.y11_c00115{bottom:398.399453pt;}
.y10_c00115{bottom:425.920493pt;}
.yf_c00115{bottom:531.520773pt;}
.yd_c00115{bottom:558.079733pt;}
.ye_c00115{bottom:558.080520pt;}
.yc_c00115{bottom:584.639480pt;}
.ya_c00115{bottom:690.880333pt;}
.yb_c00115{bottom:690.880373pt;}
.y8_c00115{bottom:717.760213pt;}
.y9_c00115{bottom:717.760253pt;}
.y7_c00115{bottom:744.640133pt;}
.y6_c00115{bottom:744.640173pt;}
.y5_c00115{bottom:770.879760pt;}
.y4_c00115{bottom:797.759680pt;}
.y3_c00115{bottom:797.759853pt;}
.y2_c00115{bottom:823.999427pt;}
.y1_c00115{bottom:1010.239747pt;}
.h1_c00115{height:67.392578pt;}
.h9_c00115{height:68.046875pt;}
.h2_c00115{height:68.701172pt;}
.h3_c00115{height:70.009766pt;}
.h4_c00115{height:70.664062pt;}
.h8_c00115{height:71.218750pt;}
.h7_c00115{height:71.972656pt;}
.h6_c00115{height:72.626953pt;}
.h5_c00115{height:73.935547pt;}
.h0_c00115{height:1122.666667pt;}
.w0_c00115{width:793.333333pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:133.119200pt;}
.x19_c00115{left:146.239720pt;}
.x12_c00115{left:151.038533pt;}
.x2_c00115{left:192.959453pt;}
.x1b_c00115{left:204.479067pt;}
.xe_c00115{left:216.959453pt;}
.x1c_c00115{left:217.918920pt;}
.x8_c00115{left:221.119587pt;}
.xf_c00115{left:231.039587pt;}
.x9_c00115{left:233.919453pt;}
.x21_c00115{left:324.159733pt;}
.x22_c00115{left:337.918920pt;}
.x10_c00115{left:369.599040pt;}
.x11_c00115{left:384.959467pt;}
.x5_c00115{left:445.119187pt;}
.x6_c00115{left:462.719200pt;}
.xa_c00115{left:470.078693pt;}
.xb_c00115{left:482.559040pt;}
.x7_c00115{left:488.318813pt;}
.x15_c00115{left:508.479453pt;}
.x16_c00115{left:521.279333pt;}
.x1f_c00115{left:542.399453pt;}
.x1d_c00115{left:549.439453pt;}
.x3_c00115{left:551.679200pt;}
.x1a_c00115{left:552.638707pt;}
.x20_c00115{left:555.518520pt;}
.x1e_c00115{left:562.879307pt;}
.x4_c00115{left:564.159707pt;}
.x17_c00115{left:568.639200pt;}
.xc_c00115{left:579.518520pt;}
.x18_c00115{left:588.799840pt;}
.x13_c00115{left:592.960000pt;}
.xd_c00115{left:597.758787pt;}
.x14_c00115{left:610.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f381f387c8495da79da9a12d.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;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_e7194d3f33018b47608a6885.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_c7664e2dd6dbc9d50b45f2e6.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_42392635a8b9c227aa72d44f.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00116{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m12_c00116{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.me_c00116{transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{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_c00116{transform:matrix(0.400862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400862,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls10_c00116{letter-spacing:-28.997100px;}
.ls15_c00116{letter-spacing:-26.314875px;}
.ls9_c00116{letter-spacing:-7.426125px;}
.lsa_c00116{letter-spacing:-7.004250px;}
.ls5_c00116{letter-spacing:-5.945625px;}
.lsf_c00116{letter-spacing:-5.662500px;}
.ls13_c00116{letter-spacing:-5.196713px;}
.lsd_c00116{letter-spacing:-4.766025px;}
.ls14_c00116{letter-spacing:-4.456463px;}
.ls17_c00116{letter-spacing:-4.381800px;}
.ls16_c00116{letter-spacing:-3.752325px;}
.ls18_c00116{letter-spacing:-3.751800px;}
.ls6_c00116{letter-spacing:-3.717000px;}
.ls12_c00116{letter-spacing:-3.028950px;}
.ls7_c00116{letter-spacing:-2.969250px;}
.ls2_c00116{letter-spacing:-2.968875px;}
.ls3_c00116{letter-spacing:-2.229413px;}
.lse_c00116{letter-spacing:-1.700400px;}
.ls11_c00116{letter-spacing:-1.545893px;}
.ls1c_c00116{letter-spacing:-1.515510px;}
.ls4_c00116{letter-spacing:-1.489163px;}
.ls1_c00116{letter-spacing:-1.446615px;}
.ls1a_c00116{letter-spacing:-0.826575px;}
.ls1b_c00116{letter-spacing:-0.787800px;}
.ls8_c00116{letter-spacing:-0.740250px;}
.lsb_c00116{letter-spacing:0.000000px;}
.ls19_c00116{letter-spacing:0.734775px;}
.ls0_c00116{letter-spacing:2.229413px;}
.lsc_c00116{letter-spacing:11.029200px;}
.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;}
._10_c00116{margin-left:-10.469114px;}
._b_c00116{margin-left:-8.314529px;}
._c_c00116{margin-left:-5.865359px;}
._7_c00116{margin-left:-4.147614px;}
._8_c00116{margin-left:-2.205238px;}
._a_c00116{width:1.103704px;}
._2_c00116{width:2.130143px;}
._1_c00116{width:3.648918px;}
._e_c00116{width:4.905605px;}
._0_c00116{width:6.139707px;}
._f_c00116{width:7.579212px;}
._5_c00116{width:8.609247px;}
._3_c00116{width:10.603524px;}
._4_c00116{width:12.016017px;}
._9_c00116{width:13.422625px;}
._d_c00116{width:15.213594px;}
._15_c00116{width:16.607855px;}
._6_c00116{width:17.954673px;}
._14_c00116{width:20.241439px;}
._12_c00116{width:22.427762px;}
._11_c00116{width:23.451497px;}
._13_c00116{width:24.815611px;}
._17_c00116{width:29.081914px;}
._18_c00116{width:35.669917px;}
._16_c00116{width:44.396397px;}
.fc0_c00116{color:transparent;}
.fs4_c00116{font-size:63.000000px;}
.fs9_c00116{font-size:74.250000px;}
.fs7_c00116{font-size:75.000000px;}
.fsd_c00116{font-size:75.750000px;}
.fs0_c00116{font-size:76.500000px;}
.fsc_c00116{font-size:78.000000px;}
.fs1_c00116{font-size:78.750000px;}
.fsa_c00116{font-size:79.500000px;}
.fs2_c00116{font-size:80.250000px;}
.fsf_c00116{font-size:81.000000px;}
.fs6_c00116{font-size:81.750000px;}
.fs3_c00116{font-size:82.500000px;}
.fs5_c00116{font-size:84.000000px;}
.fse_c00116{font-size:84.750000px;}
.fs10_c00116{font-size:85.500000px;}
.fsb_c00116{font-size:86.250000px;}
.fs8_c00116{font-size:87.000000px;}
.y0_c00116{bottom:0.000000px;}
.y1f_c00116{bottom:273.240000px;}
.y1d_c00116{bottom:302.758845px;}
.y1e_c00116{bottom:302.759535px;}
.y1c_c00116{bottom:331.920000px;}
.y1b_c00116{bottom:331.920225px;}
.y1a_c00116{bottom:391.679670px;}
.y19_c00116{bottom:421.560285px;}
.y18_c00116{bottom:421.561110px;}
.y17_c00116{bottom:452.159415px;}
.y16_c00116{bottom:512.639100px;}
.y15_c00116{bottom:512.639235px;}
.y14_c00116{bottom:542.158770px;}
.y13_c00116{bottom:542.158980px;}
.y12_c00116{bottom:571.320120px;}
.y10_c00116{bottom:601.199760px;}
.y11_c00116{bottom:601.199850px;}
.yf_c00116{bottom:631.439670px;}
.ye_c00116{bottom:631.439940px;}
.yd_c00116{bottom:661.319670px;}
.yc_c00116{bottom:691.199385px;}
.yb_c00116{bottom:811.079400px;}
.ya_c00116{bottom:840.960015px;}
.y9_c00116{bottom:840.960960px;}
.y8_c00116{bottom:871.200870px;}
.y7_c00116{bottom:900.720405px;}
.y6_c00116{bottom:930.600135px;}
.y4_c00116{bottom:1049.760090px;}
.y5_c00116{bottom:1049.760135px;}
.y3_c00116{bottom:1080.000000px;}
.y2_c00116{bottom:1110.239775px;}
.y1_c00116{bottom:1140.118740px;}
.h5_c00116{height:62.261719px;}
.ha_c00116{height:72.872314px;}
.h8_c00116{height:73.608398px;}
.h10_c00116{height:74.344482px;}
.h1_c00116{height:75.080566px;}
.hf_c00116{height:76.552734px;}
.h2_c00116{height:77.288818px;}
.hc_c00116{height:78.024902px;}
.h13_c00116{height:78.609375px;}
.h11_c00116{height:78.721802px;}
.h3_c00116{height:78.760986px;}
.hb_c00116{height:80.233154px;}
.hd_c00116{height:80.969238px;}
.h14_c00116{height:81.632812px;}
.h7_c00116{height:82.388672px;}
.h6_c00116{height:82.400391px;}
.h4_c00116{height:83.144531px;}
.h12_c00116{height:83.177490px;}
.h15_c00116{height:84.498047px;}
.he_c00116{height:85.239258px;}
.h9_c00116{height:85.980469px;}
.h0_c00116{height:1263.000000px;}
.w0_c00116{width:892.500000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:136.079400px;}
.x4_c00116{left:137.878950px;}
.x2_c00116{left:156.599700px;}
.x5_c00116{left:159.478665px;}
.x10_c00116{left:161.279850px;}
.x12_c00116{left:171.719565px;}
.x6_c00116{left:189.718500px;}
.x1b_c00116{left:190.799565px;}
.x17_c00116{left:195.479685px;}
.x18_c00116{left:209.518635px;}
.x1c_c00116{left:223.199850px;}
.x19_c00116{left:255.598500px;}
.x2a_c00116{left:258.838515px;}
.x7_c00116{left:260.639700px;}
.x1a_c00116{left:270.359250px;}
.x2b_c00116{left:272.878950px;}
.x28_c00116{left:312.838515px;}
.xf_c00116{left:318.599700px;}
.x8_c00116{left:365.038950px;}
.x1d_c00116{left:368.278800px;}
.x29_c00116{left:370.798515px;}
.x26_c00116{left:375.119385px;}
.x27_c00116{left:390.598530px;}
.x1e_c00116{left:392.399820px;}
.x9_c00116{left:437.759535px;}
.xa_c00116{left:460.799565px;}
.x21_c00116{left:499.318770px;}
.x22_c00116{left:518.039385px;}
.x15_c00116{left:525.239220px;}
.x13_c00116{left:534.599670px;}
.xb_c00116{left:548.999400px;}
.x16_c00116{left:553.318770px;}
.x14_c00116{left:565.918950px;}
.xc_c00116{left:582.838530px;}
.x23_c00116{left:627.838950px;}
.x1f_c00116{left:673.559685px;}
.x24_c00116{left:693.719100px;}
.xd_c00116{left:700.198785px;}
.xe_c00116{left:714.598530px;}
.x20_c00116{left:725.758530px;}
.x3_c00116{left:750.238770px;}
.x25_c00116{left:759.599070px;}
.x2c_c00116{left:764.638545px;}
.x11_c00116{left:770.038965px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls10_c00116{letter-spacing:-25.775200pt;}
.ls15_c00116{letter-spacing:-23.391000pt;}
.ls9_c00116{letter-spacing:-6.601000pt;}
.lsa_c00116{letter-spacing:-6.226000pt;}
.ls5_c00116{letter-spacing:-5.285000pt;}
.lsf_c00116{letter-spacing:-5.033333pt;}
.ls13_c00116{letter-spacing:-4.619300pt;}
.lsd_c00116{letter-spacing:-4.236467pt;}
.ls14_c00116{letter-spacing:-3.961300pt;}
.ls17_c00116{letter-spacing:-3.894933pt;}
.ls16_c00116{letter-spacing:-3.335400pt;}
.ls18_c00116{letter-spacing:-3.334933pt;}
.ls6_c00116{letter-spacing:-3.304000pt;}
.ls12_c00116{letter-spacing:-2.692400pt;}
.ls7_c00116{letter-spacing:-2.639333pt;}
.ls2_c00116{letter-spacing:-2.639000pt;}
.ls3_c00116{letter-spacing:-1.981700pt;}
.lse_c00116{letter-spacing:-1.511467pt;}
.ls11_c00116{letter-spacing:-1.374127pt;}
.ls1c_c00116{letter-spacing:-1.347120pt;}
.ls4_c00116{letter-spacing:-1.323700pt;}
.ls1_c00116{letter-spacing:-1.285880pt;}
.ls1a_c00116{letter-spacing:-0.734733pt;}
.ls1b_c00116{letter-spacing:-0.700267pt;}
.ls8_c00116{letter-spacing:-0.658000pt;}
.lsb_c00116{letter-spacing:0.000000pt;}
.ls19_c00116{letter-spacing:0.653133pt;}
.ls0_c00116{letter-spacing:1.981700pt;}
.lsc_c00116{letter-spacing:9.803733pt;}
.ws0_c00116{word-spacing:0.000000pt;}
._10_c00116{margin-left:-9.305879pt;}
._b_c00116{margin-left:-7.390692pt;}
._c_c00116{margin-left:-5.213653pt;}
._7_c00116{margin-left:-3.686768pt;}
._8_c00116{margin-left:-1.960211pt;}
._a_c00116{width:0.981070pt;}
._2_c00116{width:1.893460pt;}
._1_c00116{width:3.243483pt;}
._e_c00116{width:4.360538pt;}
._0_c00116{width:5.457517pt;}
._f_c00116{width:6.737077pt;}
._5_c00116{width:7.652664pt;}
._3_c00116{width:9.425355pt;}
._4_c00116{width:10.680904pt;}
._9_c00116{width:11.931223pt;}
._d_c00116{width:13.523194pt;}
._15_c00116{width:14.762538pt;}
._6_c00116{width:15.959709pt;}
._14_c00116{width:17.992391pt;}
._12_c00116{width:19.935789pt;}
._11_c00116{width:20.845775pt;}
._13_c00116{width:22.058321pt;}
._17_c00116{width:25.850591pt;}
._18_c00116{width:31.706592pt;}
._16_c00116{width:39.463464pt;}
.fs4_c00116{font-size:56.000000pt;}
.fs9_c00116{font-size:66.000000pt;}
.fs7_c00116{font-size:66.666667pt;}
.fsd_c00116{font-size:67.333333pt;}
.fs0_c00116{font-size:68.000000pt;}
.fsc_c00116{font-size:69.333333pt;}
.fs1_c00116{font-size:70.000000pt;}
.fsa_c00116{font-size:70.666667pt;}
.fs2_c00116{font-size:71.333333pt;}
.fsf_c00116{font-size:72.000000pt;}
.fs6_c00116{font-size:72.666667pt;}
.fs3_c00116{font-size:73.333333pt;}
.fs5_c00116{font-size:74.666667pt;}
.fse_c00116{font-size:75.333333pt;}
.fs10_c00116{font-size:76.000000pt;}
.fsb_c00116{font-size:76.666667pt;}
.fs8_c00116{font-size:77.333333pt;}
.y0_c00116{bottom:0.000000pt;}
.y1f_c00116{bottom:242.880000pt;}
.y1d_c00116{bottom:269.118973pt;}
.y1e_c00116{bottom:269.119587pt;}
.y1c_c00116{bottom:295.040000pt;}
.y1b_c00116{bottom:295.040200pt;}
.y1a_c00116{bottom:348.159707pt;}
.y19_c00116{bottom:374.720253pt;}
.y18_c00116{bottom:374.720987pt;}
.y17_c00116{bottom:401.919480pt;}
.y16_c00116{bottom:455.679200pt;}
.y15_c00116{bottom:455.679320pt;}
.y14_c00116{bottom:481.918907pt;}
.y13_c00116{bottom:481.919093pt;}
.y12_c00116{bottom:507.840107pt;}
.y10_c00116{bottom:534.399787pt;}
.y11_c00116{bottom:534.399867pt;}
.yf_c00116{bottom:561.279707pt;}
.ye_c00116{bottom:561.279947pt;}
.yd_c00116{bottom:587.839707pt;}
.yc_c00116{bottom:614.399453pt;}
.yb_c00116{bottom:720.959467pt;}
.ya_c00116{bottom:747.520013pt;}
.y9_c00116{bottom:747.520853pt;}
.y8_c00116{bottom:774.400773pt;}
.y7_c00116{bottom:800.640360pt;}
.y6_c00116{bottom:827.200120pt;}
.y4_c00116{bottom:933.120080pt;}
.y5_c00116{bottom:933.120120pt;}
.y3_c00116{bottom:960.000000pt;}
.y2_c00116{bottom:986.879800pt;}
.y1_c00116{bottom:1013.438880pt;}
.h5_c00116{height:55.343750pt;}
.ha_c00116{height:64.775391pt;}
.h8_c00116{height:65.429688pt;}
.h10_c00116{height:66.083984pt;}
.h1_c00116{height:66.738281pt;}
.hf_c00116{height:68.046875pt;}
.h2_c00116{height:68.701172pt;}
.hc_c00116{height:69.355469pt;}
.h13_c00116{height:69.875000pt;}
.h11_c00116{height:69.974935pt;}
.h3_c00116{height:70.009766pt;}
.hb_c00116{height:71.318359pt;}
.hd_c00116{height:71.972656pt;}
.h14_c00116{height:72.562500pt;}
.h7_c00116{height:73.234375pt;}
.h6_c00116{height:73.244792pt;}
.h4_c00116{height:73.906250pt;}
.h12_c00116{height:73.935547pt;}
.h15_c00116{height:75.109375pt;}
.he_c00116{height:75.768229pt;}
.h9_c00116{height:76.427083pt;}
.h0_c00116{height:1122.666667pt;}
.w0_c00116{width:793.333333pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:120.959467pt;}
.x4_c00116{left:122.559067pt;}
.x2_c00116{left:139.199733pt;}
.x5_c00116{left:141.758813pt;}
.x10_c00116{left:143.359867pt;}
.x12_c00116{left:152.639613pt;}
.x6_c00116{left:168.638667pt;}
.x1b_c00116{left:169.599613pt;}
.x17_c00116{left:173.759720pt;}
.x18_c00116{left:186.238787pt;}
.x1c_c00116{left:198.399867pt;}
.x19_c00116{left:227.198667pt;}
.x2a_c00116{left:230.078680pt;}
.x7_c00116{left:231.679733pt;}
.x1a_c00116{left:240.319333pt;}
.x2b_c00116{left:242.559067pt;}
.x28_c00116{left:278.078680pt;}
.xf_c00116{left:283.199733pt;}
.x8_c00116{left:324.479067pt;}
.x1d_c00116{left:327.358933pt;}
.x29_c00116{left:329.598680pt;}
.x26_c00116{left:333.439453pt;}
.x27_c00116{left:347.198693pt;}
.x1e_c00116{left:348.799840pt;}
.x9_c00116{left:389.119587pt;}
.xa_c00116{left:409.599613pt;}
.x21_c00116{left:443.838907pt;}
.x22_c00116{left:460.479453pt;}
.x15_c00116{left:466.879307pt;}
.x13_c00116{left:475.199707pt;}
.xb_c00116{left:487.999467pt;}
.x16_c00116{left:491.838907pt;}
.x14_c00116{left:503.039067pt;}
.xc_c00116{left:518.078693pt;}
.x23_c00116{left:558.079067pt;}
.x1f_c00116{left:598.719720pt;}
.x24_c00116{left:616.639200pt;}
.xd_c00116{left:622.398920pt;}
.xe_c00116{left:635.198693pt;}
.x20_c00116{left:645.118693pt;}
.x3_c00116{left:666.878907pt;}
.x25_c00116{left:675.199173pt;}
.x2c_c00116{left:679.678707pt;}
.x11_c00116{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5556b938f0532b7fb6976b5.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_28e1aa941015665261927259.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_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_db44b456338efbd7622d556e.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00117{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls14_c00117{letter-spacing:-8.330400px;}
.lsc_c00117{letter-spacing:-8.175038px;}
.ls9_c00117{letter-spacing:-7.426125px;}
.lsd_c00117{letter-spacing:-6.685875px;}
.lsf_c00117{letter-spacing:-5.945625px;}
.ls6_c00117{letter-spacing:-5.196713px;}
.lsb_c00117{letter-spacing:-5.008500px;}
.ls15_c00117{letter-spacing:-4.547400px;}
.lse_c00117{letter-spacing:-4.545300px;}
.ls8_c00117{letter-spacing:-4.456463px;}
.ls1_c00117{letter-spacing:-4.410975px;}
.ls10_c00117{letter-spacing:-4.381650px;}
.ls11_c00117{letter-spacing:-3.782220px;}
.ls7_c00117{letter-spacing:-3.717000px;}
.ls18_c00117{letter-spacing:-3.086100px;}
.ls2_c00117{letter-spacing:-2.968875px;}
.ls12_c00117{letter-spacing:-2.269800px;}
.ls5_c00117{letter-spacing:-2.229413px;}
.ls17_c00117{letter-spacing:-1.606800px;}
.ls16_c00117{letter-spacing:-1.512420px;}
.ls4_c00117{letter-spacing:-1.489163px;}
.ls3_c00117{letter-spacing:-0.740250px;}
.lsa_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:3.782220px;}
.ls13_c00117{letter-spacing:26.489595px;}
.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;}
._19_c00117{margin-left:-69.749955px;}
._6_c00117{margin-left:-14.655895px;}
._7_c00117{margin-left:-9.087809px;}
._17_c00117{margin-left:-6.899674px;}
._5_c00117{margin-left:-4.921281px;}
._15_c00117{margin-left:-3.255213px;}
._f_c00117{margin-left:-1.886003px;}
._16_c00117{width:1.126467px;}
._2_c00117{width:2.388592px;}
._1_c00117{width:3.870013px;}
._4_c00117{width:5.529959px;}
._3_c00117{width:7.024708px;}
._1b_c00117{width:8.430618px;}
._12_c00117{width:9.504798px;}
._10_c00117{width:11.523666px;}
._0_c00117{width:12.911761px;}
._11_c00117{width:14.578557px;}
._e_c00117{width:16.339213px;}
._1d_c00117{width:17.376470px;}
._1c_c00117{width:18.528485px;}
._9_c00117{width:19.613787px;}
._c_c00117{width:21.317358px;}
._a_c00117{width:22.655469px;}
._13_c00117{width:24.719595px;}
._b_c00117{width:25.906061px;}
._d_c00117{width:26.933867px;}
._1a_c00117{width:28.511728px;}
._18_c00117{width:30.001413px;}
._1e_c00117{width:31.082595px;}
._8_c00117{width:32.113745px;}
._14_c00117{width:34.521935px;}
._1f_c00117{width:37.047209px;}
.fc0_c00117{color:transparent;}
.fs8_c00117{font-size:55.500000px;}
.fsa_c00117{font-size:70.500000px;}
.fs7_c00117{font-size:72.750000px;}
.fs0_c00117{font-size:77.250000px;}
.fs2_c00117{font-size:78.000000px;}
.fs1_c00117{font-size:78.750000px;}
.fs6_c00117{font-size:80.250000px;}
.fs9_c00117{font-size:81.000000px;}
.fs5_c00117{font-size:81.750000px;}
.fs3_c00117{font-size:82.500000px;}
.fs4_c00117{font-size:84.750000px;}
.y0_c00117{bottom:0.000000px;}
.y26_c00117{bottom:237.959100px;}
.y25_c00117{bottom:267.478635px;}
.y24_c00117{bottom:267.479535px;}
.y23_c00117{bottom:297.359250px;}
.y22_c00117{bottom:297.359295px;}
.y21_c00117{bottom:327.239025px;}
.y20_c00117{bottom:357.478935px;}
.y1f_c00117{bottom:387.358665px;}
.y1e_c00117{bottom:387.358980px;}
.y1c_c00117{bottom:417.959055px;}
.y1d_c00117{bottom:417.959385px;}
.y1b_c00117{bottom:447.478590px;}
.y1a_c00117{bottom:566.639100px;}
.y19_c00117{bottom:596.878920px;}
.y18_c00117{bottom:596.879100px;}
.y17_c00117{bottom:626.398635px;}
.y16_c00117{bottom:626.399535px;}
.y15_c00117{bottom:656.279250px;}
.y14_c00117{bottom:656.280195px;}
.y13_c00117{bottom:716.399820px;}
.y12_c00117{bottom:745.919535px;}
.y10_c00117{bottom:775.439010px;}
.y11_c00117{bottom:775.439205px;}
.yf_c00117{bottom:835.919130px;}
.ye_c00117{bottom:865.438665px;}
.yd_c00117{bottom:865.438935px;}
.yc_c00117{bottom:896.039340px;}
.yb_c00117{bottom:896.040225px;}
.y9_c00117{bottom:925.919190px;}
.ya_c00117{bottom:925.919955px;}
.y8_c00117{bottom:955.798920px;}
.y7_c00117{bottom:955.799280px;}
.y5_c00117{bottom:985.318215px;}
.y6_c00117{bottom:985.318815px;}
.y4_c00117{bottom:1015.560240px;}
.y3_c00117{bottom:1015.560375px;}
.y2_c00117{bottom:1045.079910px;}
.y1_c00117{bottom:1075.319820px;}
.hb_c00117{height:55.933594px;}
.he_c00117{height:73.529297px;}
.h1_c00117{height:75.816650px;}
.ha_c00117{height:75.875977px;}
.h3_c00117{height:76.552734px;}
.h2_c00117{height:77.288818px;}
.hc_c00117{height:77.853516px;}
.h9_c00117{height:78.609375px;}
.h7_c00117{height:78.760986px;}
.hd_c00117{height:79.497070px;}
.h6_c00117{height:80.233154px;}
.h8_c00117{height:80.876953px;}
.h4_c00117{height:80.969238px;}
.h5_c00117{height:83.177490px;}
.h0_c00117{height:1263.000000px;}
.w0_c00117{width:892.500000px;}
.x0_c00117{left:0.000000px;}
.x24_c00117{left:135.000180px;}
.x9_c00117{left:136.437885px;}
.x1_c00117{left:137.519685px;}
.x2_c00117{left:163.438665px;}
.x11_c00117{left:191.158590px;}
.x21_c00117{left:192.599100px;}
.x23_c00117{left:203.038950px;}
.x22_c00117{left:206.998950px;}
.x14_c00117{left:218.878950px;}
.x19_c00117{left:220.678500px;}
.x1a_c00117{left:244.079385px;}
.x1b_c00117{left:316.798515px;}
.x1c_c00117{left:336.598530px;}
.x25_c00117{left:375.119385px;}
.x3_c00117{left:382.678530px;}
.x4_c00117{left:402.119385px;}
.x26_c00117{left:426.238770px;}
.x12_c00117{left:433.799565px;}
.x13_c00117{left:447.838530px;}
.xa_c00117{left:454.319820px;}
.xb_c00117{left:468.719565px;}
.x15_c00117{left:473.759085px;}
.xe_c00117{left:481.679070px;}
.x16_c00117{left:493.199850px;}
.xf_c00117{left:498.598530px;}
.x17_c00117{left:521.279250px;}
.x5_c00117{left:556.919535px;}
.x10_c00117{left:576.719520px;}
.x6_c00117{left:601.559100px;}
.x7_c00117{left:676.438620px;}
.xc_c00117{left:682.559100px;}
.x8_c00117{left:693.719100px;}
.x29_c00117{left:699.839535px;}
.x27_c00117{left:703.438620px;}
.x28_c00117{left:717.479235px;}
.xd_c00117{left:723.238770px;}
.x1d_c00117{left:737.999355px;}
.x1f_c00117{left:742.679670px;}
.x18_c00117{left:755.639100px;}
.x1e_c00117{left:756.718545px;}
.x20_c00117{left:758.519670px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls14_c00117{letter-spacing:-7.404800pt;}
.lsc_c00117{letter-spacing:-7.266700pt;}
.ls9_c00117{letter-spacing:-6.601000pt;}
.lsd_c00117{letter-spacing:-5.943000pt;}
.lsf_c00117{letter-spacing:-5.285000pt;}
.ls6_c00117{letter-spacing:-4.619300pt;}
.lsb_c00117{letter-spacing:-4.452000pt;}
.ls15_c00117{letter-spacing:-4.042133pt;}
.lse_c00117{letter-spacing:-4.040267pt;}
.ls8_c00117{letter-spacing:-3.961300pt;}
.ls1_c00117{letter-spacing:-3.920867pt;}
.ls10_c00117{letter-spacing:-3.894800pt;}
.ls11_c00117{letter-spacing:-3.361973pt;}
.ls7_c00117{letter-spacing:-3.304000pt;}
.ls18_c00117{letter-spacing:-2.743200pt;}
.ls2_c00117{letter-spacing:-2.639000pt;}
.ls12_c00117{letter-spacing:-2.017600pt;}
.ls5_c00117{letter-spacing:-1.981700pt;}
.ls17_c00117{letter-spacing:-1.428267pt;}
.ls16_c00117{letter-spacing:-1.344373pt;}
.ls4_c00117{letter-spacing:-1.323700pt;}
.ls3_c00117{letter-spacing:-0.658000pt;}
.lsa_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:3.361973pt;}
.ls13_c00117{letter-spacing:23.546307pt;}
.ws0_c00117{word-spacing:0.000000pt;}
._19_c00117{margin-left:-61.999960pt;}
._6_c00117{margin-left:-13.027462pt;}
._7_c00117{margin-left:-8.078053pt;}
._17_c00117{margin-left:-6.133043pt;}
._5_c00117{margin-left:-4.374472pt;}
._15_c00117{margin-left:-2.893523pt;}
._f_c00117{margin-left:-1.676447pt;}
._16_c00117{width:1.001304pt;}
._2_c00117{width:2.123192pt;}
._1_c00117{width:3.440011pt;}
._4_c00117{width:4.915519pt;}
._3_c00117{width:6.244185pt;}
._1b_c00117{width:7.493883pt;}
._12_c00117{width:8.448709pt;}
._10_c00117{width:10.243258pt;}
._0_c00117{width:11.477121pt;}
._11_c00117{width:12.958717pt;}
._e_c00117{width:14.523745pt;}
._1d_c00117{width:15.445751pt;}
._1c_c00117{width:16.469764pt;}
._9_c00117{width:17.434477pt;}
._c_c00117{width:18.948762pt;}
._a_c00117{width:20.138194pt;}
._13_c00117{width:21.972974pt;}
._b_c00117{width:23.027609pt;}
._d_c00117{width:23.941215pt;}
._1a_c00117{width:25.343758pt;}
._18_c00117{width:26.667922pt;}
._1e_c00117{width:27.628974pt;}
._8_c00117{width:28.545551pt;}
._14_c00117{width:30.686164pt;}
._1f_c00117{width:32.930853pt;}
.fs8_c00117{font-size:49.333333pt;}
.fsa_c00117{font-size:62.666667pt;}
.fs7_c00117{font-size:64.666667pt;}
.fs0_c00117{font-size:68.666667pt;}
.fs2_c00117{font-size:69.333333pt;}
.fs1_c00117{font-size:70.000000pt;}
.fs6_c00117{font-size:71.333333pt;}
.fs9_c00117{font-size:72.000000pt;}
.fs5_c00117{font-size:72.666667pt;}
.fs3_c00117{font-size:73.333333pt;}
.fs4_c00117{font-size:75.333333pt;}
.y0_c00117{bottom:0.000000pt;}
.y26_c00117{bottom:211.519200pt;}
.y25_c00117{bottom:237.758787pt;}
.y24_c00117{bottom:237.759587pt;}
.y23_c00117{bottom:264.319333pt;}
.y22_c00117{bottom:264.319373pt;}
.y21_c00117{bottom:290.879133pt;}
.y20_c00117{bottom:317.759053pt;}
.y1f_c00117{bottom:344.318813pt;}
.y1e_c00117{bottom:344.319093pt;}
.y1c_c00117{bottom:371.519160pt;}
.y1d_c00117{bottom:371.519453pt;}
.y1b_c00117{bottom:397.758747pt;}
.y1a_c00117{bottom:503.679200pt;}
.y19_c00117{bottom:530.559040pt;}
.y18_c00117{bottom:530.559200pt;}
.y17_c00117{bottom:556.798787pt;}
.y16_c00117{bottom:556.799587pt;}
.y15_c00117{bottom:583.359333pt;}
.y14_c00117{bottom:583.360173pt;}
.y13_c00117{bottom:636.799840pt;}
.y12_c00117{bottom:663.039587pt;}
.y10_c00117{bottom:689.279120pt;}
.y11_c00117{bottom:689.279293pt;}
.yf_c00117{bottom:743.039227pt;}
.ye_c00117{bottom:769.278813pt;}
.yd_c00117{bottom:769.279053pt;}
.yc_c00117{bottom:796.479413pt;}
.yb_c00117{bottom:796.480200pt;}
.y9_c00117{bottom:823.039280pt;}
.ya_c00117{bottom:823.039960pt;}
.y8_c00117{bottom:849.599040pt;}
.y7_c00117{bottom:849.599360pt;}
.y5_c00117{bottom:875.838413pt;}
.y6_c00117{bottom:875.838947pt;}
.y4_c00117{bottom:902.720213pt;}
.y3_c00117{bottom:902.720333pt;}
.y2_c00117{bottom:928.959920pt;}
.y1_c00117{bottom:955.839840pt;}
.hb_c00117{height:49.718750pt;}
.he_c00117{height:65.359375pt;}
.h1_c00117{height:67.392578pt;}
.ha_c00117{height:67.445312pt;}
.h3_c00117{height:68.046875pt;}
.h2_c00117{height:68.701172pt;}
.hc_c00117{height:69.203125pt;}
.h9_c00117{height:69.875000pt;}
.h7_c00117{height:70.009766pt;}
.hd_c00117{height:70.664062pt;}
.h6_c00117{height:71.318359pt;}
.h8_c00117{height:71.890625pt;}
.h4_c00117{height:71.972656pt;}
.h5_c00117{height:73.935547pt;}
.h0_c00117{height:1122.666667pt;}
.w0_c00117{width:793.333333pt;}
.x0_c00117{left:0.000000pt;}
.x24_c00117{left:120.000160pt;}
.x9_c00117{left:121.278120pt;}
.x1_c00117{left:122.239720pt;}
.x2_c00117{left:145.278813pt;}
.x11_c00117{left:169.918747pt;}
.x21_c00117{left:171.199200pt;}
.x23_c00117{left:180.479067pt;}
.x22_c00117{left:183.999067pt;}
.x14_c00117{left:194.559067pt;}
.x19_c00117{left:196.158667pt;}
.x1a_c00117{left:216.959453pt;}
.x1b_c00117{left:281.598680pt;}
.x1c_c00117{left:299.198693pt;}
.x25_c00117{left:333.439453pt;}
.x3_c00117{left:340.158693pt;}
.x4_c00117{left:357.439453pt;}
.x26_c00117{left:378.878907pt;}
.x12_c00117{left:385.599613pt;}
.x13_c00117{left:398.078693pt;}
.xa_c00117{left:403.839840pt;}
.xb_c00117{left:416.639613pt;}
.x15_c00117{left:421.119187pt;}
.xe_c00117{left:428.159173pt;}
.x16_c00117{left:438.399867pt;}
.xf_c00117{left:443.198693pt;}
.x17_c00117{left:463.359333pt;}
.x5_c00117{left:495.039587pt;}
.x10_c00117{left:512.639573pt;}
.x6_c00117{left:534.719200pt;}
.x7_c00117{left:601.278773pt;}
.xc_c00117{left:606.719200pt;}
.x8_c00117{left:616.639200pt;}
.x29_c00117{left:622.079587pt;}
.x27_c00117{left:625.278773pt;}
.x28_c00117{left:637.759320pt;}
.xd_c00117{left:642.878907pt;}
.x1d_c00117{left:655.999427pt;}
.x1f_c00117{left:660.159707pt;}
.x18_c00117{left:671.679200pt;}
.x1e_c00117{left:672.638707pt;}
.x20_c00117{left:674.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3df041f31b52bebb4c50bfb3.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_229f1b2ed343bd43e3d0ef2b.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_534615535787fbe9093321f7.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_91265df0de865cae0afb5d46.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_5048b380138782eff9da099a.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.364746;font-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_c00118{transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{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);}
.m11_c00118{transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.347458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347458,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.351449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351449,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.412281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412281,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls12_c00118{letter-spacing:-32.583900px;}
.ls1d_c00118{letter-spacing:-8.914500px;}
.lsf_c00118{letter-spacing:-7.426125px;}
.lsd_c00118{letter-spacing:-6.685875px;}
.ls8_c00118{letter-spacing:-5.945625px;}
.ls4_c00118{letter-spacing:-5.196713px;}
.ls7_c00118{letter-spacing:-4.456463px;}
.ls2_c00118{letter-spacing:-3.717000px;}
.lsb_c00118{letter-spacing:-3.391275px;}
.ls3_c00118{letter-spacing:-2.968875px;}
.ls1b_c00118{letter-spacing:-2.293553px;}
.ls6_c00118{letter-spacing:-2.229413px;}
.ls5_c00118{letter-spacing:-1.489163px;}
.lsc_c00118{letter-spacing:-0.740250px;}
.ls9_c00118{letter-spacing:-0.733200px;}
.ls15_c00118{letter-spacing:-0.710325px;}
.ls11_c00118{letter-spacing:-0.679507px;}
.ls17_c00118{letter-spacing:-0.453150px;}
.lsa_c00118{letter-spacing:0.000000px;}
.ls0_c00118{letter-spacing:0.740250px;}
.ls14_c00118{letter-spacing:0.764400px;}
.ls1e_c00118{letter-spacing:0.764775px;}
.ls10_c00118{letter-spacing:0.830550px;}
.ls19_c00118{letter-spacing:1.250625px;}
.ls1c_c00118{letter-spacing:1.474980px;}
.ls1a_c00118{letter-spacing:1.637100px;}
.lse_c00118{letter-spacing:2.746425px;}
.ls1_c00118{letter-spacing:2.852273px;}
.ls13_c00118{letter-spacing:8.086350px;}
.ls16_c00118{letter-spacing:9.180450px;}
.ls18_c00118{letter-spacing:37.381500px;}
.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;}
._16_c00118{margin-left:-65.366298px;}
._e_c00118{margin-left:-9.130022px;}
._14_c00118{margin-left:-6.950579px;}
._15_c00118{margin-left:-4.259320px;}
._1d_c00118{margin-left:-3.147281px;}
._d_c00118{margin-left:-2.133620px;}
._17_c00118{width:1.141310px;}
._6_c00118{width:2.170885px;}
._13_c00118{width:3.451999px;}
._3_c00118{width:5.318745px;}
._5_c00118{width:6.529445px;}
._4_c00118{width:7.967494px;}
._2_c00118{width:10.093388px;}
._0_c00118{width:11.575864px;}
._10_c00118{width:13.167357px;}
._1_c00118{width:15.762778px;}
._f_c00118{width:17.975757px;}
._12_c00118{width:20.309655px;}
._18_c00118{width:21.639475px;}
._1a_c00118{width:23.861042px;}
._1b_c00118{width:25.562116px;}
._11_c00118{width:27.212196px;}
._19_c00118{width:29.161600px;}
._a_c00118{width:30.949954px;}
._1c_c00118{width:32.968881px;}
._8_c00118{width:34.653150px;}
._c_c00118{width:36.329975px;}
._9_c00118{width:37.411688px;}
._b_c00118{width:45.397800px;}
._7_c00118{width:48.399631px;}
.fc0_c00118{color:transparent;}
.fs6_c00118{font-size:36.750000px;}
.fsc_c00118{font-size:42.750000px;}
.fs8_c00118{font-size:44.250000px;}
.fs9_c00118{font-size:46.500000px;}
.fs7_c00118{font-size:51.000000px;}
.fsb_c00118{font-size:51.750000px;}
.fsa_c00118{font-size:57.750000px;}
.fs2_c00118{font-size:77.250000px;}
.fs1_c00118{font-size:78.000000px;}
.fs0_c00118{font-size:78.750000px;}
.fs4_c00118{font-size:80.250000px;}
.fsd_c00118{font-size:81.000000px;}
.fs3_c00118{font-size:82.500000px;}
.fs5_c00118{font-size:84.750000px;}
.fse_c00118{font-size:86.250000px;}
.y0_c00118{bottom:0.000000px;}
.y1e_c00118{bottom:299.159655px;}
.y1c_c00118{bottom:329.038425px;}
.y1d_c00118{bottom:329.039385px;}
.y1b_c00118{bottom:358.199565px;}
.y1a_c00118{bottom:388.439490px;}
.y19_c00118{bottom:448.201035px;}
.y17_c00118{bottom:538.200390px;}
.y18_c00118{bottom:538.200435px;}
.y16_c00118{bottom:568.440315px;}
.y15_c00118{bottom:627.840585px;}
.y14_c00118{bottom:627.840780px;}
.y13_c00118{bottom:657.360300px;}
.y12_c00118{bottom:717.480885px;}
.y11_c00118{bottom:747.359850px;}
.y10_c00118{bottom:754.559685px;}
.ye_c00118{bottom:777.239655px;}
.yf_c00118{bottom:777.240420px;}
.yd_c00118{bottom:807.119385px;}
.yc_c00118{bottom:807.119745px;}
.ya_c00118{bottom:837.719805px;}
.yb_c00118{bottom:837.720150px;}
.y8_c00118{bottom:957.958740px;}
.y9_c00118{bottom:957.959385px;}
.y7_c00118{bottom:987.480075px;}
.y6_c00118{bottom:1017.359805px;}
.y5_c00118{bottom:1077.480285px;}
.y4_c00118{bottom:1077.481110px;}
.y3_c00118{bottom:1108.079400px;}
.y2_c00118{bottom:1108.080210px;}
.y1_c00118{bottom:1137.959925px;}
.h9_c00118{height:37.037109px;}
.hf_c00118{height:41.956787px;}
.hb_c00118{height:44.595703px;}
.hc_c00118{height:46.863281px;}
.he_c00118{height:52.154297px;}
.ha_c00118{height:53.191406px;}
.hd_c00118{height:57.073242px;}
.h4_c00118{height:75.778931px;}
.h5_c00118{height:75.816650px;}
.h3_c00118{height:76.552734px;}
.h1_c00118{height:77.288818px;}
.h13_c00118{height:77.853516px;}
.h2_c00118{height:78.609375px;}
.h7_c00118{height:78.760986px;}
.h10_c00118{height:79.457520px;}
.h12_c00118{height:80.876953px;}
.h6_c00118{height:80.969238px;}
.h14_c00118{height:83.177490px;}
.h11_c00118{height:85.239258px;}
.h8_c00118{height:85.412109px;}
.h0_c00118{height:1263.000000px;}
.w0_c00118{width:892.500000px;}
.x0_c00118{left:0.000000px;}
.x9_c00118{left:138.237555px;}
.x10_c00118{left:139.318155px;}
.x13_c00118{left:171.358665px;}
.x1_c00118{left:192.958350px;}
.x11_c00118{left:197.999400px;}
.x23_c00118{left:206.278800px;}
.x12_c00118{left:212.399250px;}
.x1b_c00118{left:222.838950px;}
.x2_c00118{left:267.119385px;}
.x14_c00118{left:273.239850px;}
.x6_c00118{left:276.838950px;}
.x15_c00118{left:304.199850px;}
.x3_c00118{left:308.159850px;}
.x4_c00118{left:330.838950px;}
.xc_c00118{left:383.398635px;}
.x7_c00118{left:385.918350px;}
.x5_c00118{left:389.878320px;}
.x8_c00118{left:400.679070px;}
.x16_c00118{left:403.198785px;}
.xd_c00118{left:421.199385px;}
.x21_c00118{left:427.319820px;}
.x22_c00118{left:442.439670px;}
.x24_c00118{left:463.678530px;}
.x25_c00118{left:478.798515px;}
.x1c_c00118{left:507.599670px;}
.x1d_c00118{left:520.559100px;}
.x17_c00118{left:540.000000px;}
.x1e_c00118{left:570.599070px;}
.xa_c00118{left:602.999400px;}
.x18_c00118{left:608.399820px;}
.xb_c00118{left:616.679070px;}
.x19_c00118{left:658.078770px;}
.xe_c00118{left:662.759085px;}
.xf_c00118{left:677.878920px;}
.x1a_c00118{left:694.439250px;}
.x1f_c00118{left:734.398635px;}
.x20_c00118{left:753.478635px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls12_c00118{letter-spacing:-28.963467pt;}
.ls1d_c00118{letter-spacing:-7.924000pt;}
.lsf_c00118{letter-spacing:-6.601000pt;}
.lsd_c00118{letter-spacing:-5.943000pt;}
.ls8_c00118{letter-spacing:-5.285000pt;}
.ls4_c00118{letter-spacing:-4.619300pt;}
.ls7_c00118{letter-spacing:-3.961300pt;}
.ls2_c00118{letter-spacing:-3.304000pt;}
.lsb_c00118{letter-spacing:-3.014467pt;}
.ls3_c00118{letter-spacing:-2.639000pt;}
.ls1b_c00118{letter-spacing:-2.038713pt;}
.ls6_c00118{letter-spacing:-1.981700pt;}
.ls5_c00118{letter-spacing:-1.323700pt;}
.lsc_c00118{letter-spacing:-0.658000pt;}
.ls9_c00118{letter-spacing:-0.651733pt;}
.ls15_c00118{letter-spacing:-0.631400pt;}
.ls11_c00118{letter-spacing:-0.604007pt;}
.ls17_c00118{letter-spacing:-0.402800pt;}
.lsa_c00118{letter-spacing:0.000000pt;}
.ls0_c00118{letter-spacing:0.658000pt;}
.ls14_c00118{letter-spacing:0.679467pt;}
.ls1e_c00118{letter-spacing:0.679800pt;}
.ls10_c00118{letter-spacing:0.738267pt;}
.ls19_c00118{letter-spacing:1.111667pt;}
.ls1c_c00118{letter-spacing:1.311093pt;}
.ls1a_c00118{letter-spacing:1.455200pt;}
.lse_c00118{letter-spacing:2.441267pt;}
.ls1_c00118{letter-spacing:2.535353pt;}
.ls13_c00118{letter-spacing:7.187867pt;}
.ls16_c00118{letter-spacing:8.160400pt;}
.ls18_c00118{letter-spacing:33.228000pt;}
.ws0_c00118{word-spacing:0.000000pt;}
._16_c00118{margin-left:-58.103376pt;}
._e_c00118{margin-left:-8.115575pt;}
._14_c00118{margin-left:-6.178292pt;}
._15_c00118{margin-left:-3.786062pt;}
._1d_c00118{margin-left:-2.797583pt;}
._d_c00118{margin-left:-1.896551pt;}
._17_c00118{width:1.014498pt;}
._6_c00118{width:1.929675pt;}
._13_c00118{width:3.068443pt;}
._3_c00118{width:4.727774pt;}
._5_c00118{width:5.803951pt;}
._4_c00118{width:7.082217pt;}
._2_c00118{width:8.971900pt;}
._0_c00118{width:10.289657pt;}
._10_c00118{width:11.704317pt;}
._1_c00118{width:14.011358pt;}
._f_c00118{width:15.978451pt;}
._12_c00118{width:18.053026pt;}
._18_c00118{width:19.235089pt;}
._1a_c00118{width:21.209815pt;}
._1b_c00118{width:22.721881pt;}
._11_c00118{width:24.188619pt;}
._19_c00118{width:25.921423pt;}
._a_c00118{width:27.511070pt;}
._1c_c00118{width:29.305672pt;}
._8_c00118{width:30.802800pt;}
._c_c00118{width:32.293311pt;}
._9_c00118{width:33.254834pt;}
._b_c00118{width:40.353600pt;}
._7_c00118{width:43.021894pt;}
.fs6_c00118{font-size:32.666667pt;}
.fsc_c00118{font-size:38.000000pt;}
.fs8_c00118{font-size:39.333333pt;}
.fs9_c00118{font-size:41.333333pt;}
.fs7_c00118{font-size:45.333333pt;}
.fsb_c00118{font-size:46.000000pt;}
.fsa_c00118{font-size:51.333333pt;}
.fs2_c00118{font-size:68.666667pt;}
.fs1_c00118{font-size:69.333333pt;}
.fs0_c00118{font-size:70.000000pt;}
.fs4_c00118{font-size:71.333333pt;}
.fsd_c00118{font-size:72.000000pt;}
.fs3_c00118{font-size:73.333333pt;}
.fs5_c00118{font-size:75.333333pt;}
.fse_c00118{font-size:76.666667pt;}
.y0_c00118{bottom:0.000000pt;}
.y1e_c00118{bottom:265.919693pt;}
.y1c_c00118{bottom:292.478600pt;}
.y1d_c00118{bottom:292.479453pt;}
.y1b_c00118{bottom:318.399613pt;}
.y1a_c00118{bottom:345.279547pt;}
.y19_c00118{bottom:398.400920pt;}
.y17_c00118{bottom:478.400347pt;}
.y18_c00118{bottom:478.400387pt;}
.y16_c00118{bottom:505.280280pt;}
.y15_c00118{bottom:558.080520pt;}
.y14_c00118{bottom:558.080693pt;}
.y13_c00118{bottom:584.320267pt;}
.y12_c00118{bottom:637.760787pt;}
.y11_c00118{bottom:664.319867pt;}
.y10_c00118{bottom:670.719720pt;}
.ye_c00118{bottom:690.879693pt;}
.yf_c00118{bottom:690.880373pt;}
.yd_c00118{bottom:717.439453pt;}
.yc_c00118{bottom:717.439773pt;}
.ya_c00118{bottom:744.639827pt;}
.yb_c00118{bottom:744.640133pt;}
.y8_c00118{bottom:851.518880pt;}
.y9_c00118{bottom:851.519453pt;}
.y7_c00118{bottom:877.760067pt;}
.y6_c00118{bottom:904.319827pt;}
.y5_c00118{bottom:957.760253pt;}
.y4_c00118{bottom:957.760987pt;}
.y3_c00118{bottom:984.959467pt;}
.y2_c00118{bottom:984.960187pt;}
.y1_c00118{bottom:1011.519933pt;}
.h9_c00118{height:32.921875pt;}
.hf_c00118{height:37.294922pt;}
.hb_c00118{height:39.640625pt;}
.hc_c00118{height:41.656250pt;}
.he_c00118{height:46.359375pt;}
.ha_c00118{height:47.281250pt;}
.hd_c00118{height:50.731771pt;}
.h4_c00118{height:67.359049pt;}
.h5_c00118{height:67.392578pt;}
.h3_c00118{height:68.046875pt;}
.h1_c00118{height:68.701172pt;}
.h13_c00118{height:69.203125pt;}
.h2_c00118{height:69.875000pt;}
.h7_c00118{height:70.009766pt;}
.h10_c00118{height:70.628906pt;}
.h12_c00118{height:71.890625pt;}
.h6_c00118{height:71.972656pt;}
.h14_c00118{height:73.935547pt;}
.h11_c00118{height:75.768229pt;}
.h8_c00118{height:75.921875pt;}
.h0_c00118{height:1122.666667pt;}
.w0_c00118{width:793.333333pt;}
.x0_c00118{left:0.000000pt;}
.x9_c00118{left:122.877827pt;}
.x10_c00118{left:123.838360pt;}
.x13_c00118{left:152.318813pt;}
.x1_c00118{left:171.518533pt;}
.x11_c00118{left:175.999467pt;}
.x23_c00118{left:183.358933pt;}
.x12_c00118{left:188.799333pt;}
.x1b_c00118{left:198.079067pt;}
.x2_c00118{left:237.439453pt;}
.x14_c00118{left:242.879867pt;}
.x6_c00118{left:246.079067pt;}
.x15_c00118{left:270.399867pt;}
.x3_c00118{left:273.919867pt;}
.x4_c00118{left:294.079067pt;}
.xc_c00118{left:340.798787pt;}
.x7_c00118{left:343.038533pt;}
.x5_c00118{left:346.558507pt;}
.x8_c00118{left:356.159173pt;}
.x16_c00118{left:358.398920pt;}
.xd_c00118{left:374.399453pt;}
.x21_c00118{left:379.839840pt;}
.x22_c00118{left:393.279707pt;}
.x24_c00118{left:412.158693pt;}
.x25_c00118{left:425.598680pt;}
.x1c_c00118{left:451.199707pt;}
.x1d_c00118{left:462.719200pt;}
.x17_c00118{left:480.000000pt;}
.x1e_c00118{left:507.199173pt;}
.xa_c00118{left:535.999467pt;}
.x18_c00118{left:540.799840pt;}
.xb_c00118{left:548.159173pt;}
.x19_c00118{left:584.958907pt;}
.xe_c00118{left:589.119187pt;}
.xf_c00118{left:602.559040pt;}
.x1a_c00118{left:617.279333pt;}
.x1f_c00118{left:652.798787pt;}
.x20_c00118{left:669.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c55a5e43b3107df8eca3fdae.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_119319ce78d52cc19aca1425.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.364746;font-style:normal;font-weight:normal;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_fc32605b24276de35dbc6761.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_5dd0637e6dcdd8f13cf4c53b.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_03e0cb4312ec9b8675362dba.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00119;src:url('chunks/assets/font_86bd5626b3131125d24ed220.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00119;src:url('chunks/assets/font_15a12b54095becac5cc7ea95.woff2')format("woff");}.ff7_c00119{font-family:ff7_c00119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00119;src:url('chunks/assets/font_e40c1b75617a69fe9aed25f2.woff2')format("woff");}.ff8_c00119{font-family:ff8_c00119;line-height:1.281250;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_297cea91b6854c90460f9cf2.woff2')format("woff");}.ff9_c00119{font-family:ff9_c00119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5d_c00119{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m67_c00119{transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);}
.m63_c00119{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m3c_c00119{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m47_c00119{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m66_c00119{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m65_c00119{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m64_c00119{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m40_c00119{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m5f_c00119{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_c00119{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m62_c00119{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m55_c00119{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m52_c00119{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m4e_c00119{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m23_c00119{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m58_c00119{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m59_c00119{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m4f_c00119{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);}
.m4c_c00119{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m5b_c00119{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m0_c00119{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m53_c00119{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m54_c00119{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m51_c00119{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m60_c00119{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m27_c00119{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m5e_c00119{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m19_c00119{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m4d_c00119{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m44_c00119{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m34_c00119{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.m56_c00119{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m5c_c00119{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);}
.m61_c00119{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m3b_c00119{transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m50_c00119{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m5a_c00119{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m30_c00119{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{transform:matrix(0.310714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310714,0.000000,0.000000,0.250000,0,0);}
.m1d_c00119{transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m36_c00119{transform:matrix(0.325581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325581,0.000000,0.000000,0.250000,0,0);}
.m46_c00119{transform:matrix(0.325980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325980,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.327586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327586,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{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_c00119{transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{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);}
.m4b_c00119{transform:matrix(0.351064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351064,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355769,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.369048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369048,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m57_c00119{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);}
.m3f_c00119{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.m49_c00119{transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{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);}
.m45_c00119{transform:matrix(0.524038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524038,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{transform:matrix(0.581325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581325,0.000000,0.000000,0.250000,0,0);}
.m4a_c00119{transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.638158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638158,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.928571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928571,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{transform:matrix(0.986842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.986842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.986842,0.000000,0.000000,0.250000,0,0);}
.m42_c00119{transform:matrix(1.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.214286,0.000000,0.000000,0.250000,0,0);}
.m41_c00119{transform:matrix(2.026316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.026316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.026316,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls3a_c00119{letter-spacing:-14.015400px;}
.ls5d_c00119{letter-spacing:-11.978400px;}
.ls52_c00119{letter-spacing:-11.512650px;}
.ls42_c00119{letter-spacing:-11.506365px;}
.ls40_c00119{letter-spacing:-10.990800px;}
.ls55_c00119{letter-spacing:-10.740113px;}
.ls3c_c00119{letter-spacing:-10.267950px;}
.ls21_c00119{letter-spacing:-8.395065px;}
.ls2c_c00119{letter-spacing:-7.893000px;}
.ls6_c00119{letter-spacing:-6.675900px;}
.ls1b_c00119{letter-spacing:-5.880000px;}
.ls41_c00119{letter-spacing:-5.721300px;}
.ls1a_c00119{letter-spacing:-5.249700px;}
.ls29_c00119{letter-spacing:-5.140800px;}
.ls38_c00119{letter-spacing:-4.836825px;}
.lsc_c00119{letter-spacing:-4.659525px;}
.ls24_c00119{letter-spacing:-4.658850px;}
.ls56_c00119{letter-spacing:-4.540800px;}
.ls27_c00119{letter-spacing:-4.463100px;}
.ls2b_c00119{letter-spacing:-4.376213px;}
.lsf_c00119{letter-spacing:-4.339125px;}
.ls5f_c00119{letter-spacing:-4.331550px;}
.ls63_c00119{letter-spacing:-4.288140px;}
.lse_c00119{letter-spacing:-4.241738px;}
.ls4f_c00119{letter-spacing:-4.185825px;}
.ls48_c00119{letter-spacing:-3.989700px;}
.ls19_c00119{letter-spacing:-3.620400px;}
.ls23_c00119{letter-spacing:-3.609675px;}
.ls37_c00119{letter-spacing:-3.453975px;}
.ls2a_c00119{letter-spacing:-3.345600px;}
.ls61_c00119{letter-spacing:-3.201600px;}
.ls10_c00119{letter-spacing:-2.952000px;}
.ls18_c00119{letter-spacing:-2.949750px;}
.ls1f_c00119{letter-spacing:-2.902800px;}
.ls11_c00119{letter-spacing:-2.866988px;}
.ls43_c00119{letter-spacing:-2.700000px;}
.ls32_c00119{letter-spacing:-2.480025px;}
.ls8_c00119{letter-spacing:-2.471798px;}
.ls17_c00119{letter-spacing:-2.400000px;}
.ls44_c00119{letter-spacing:-2.394000px;}
.ls58_c00119{letter-spacing:-2.320500px;}
.ls1c_c00119{letter-spacing:-2.291400px;}
.ls59_c00119{letter-spacing:-2.286863px;}
.ls3b_c00119{letter-spacing:-2.220908px;}
.ls20_c00119{letter-spacing:-2.219558px;}
.ls45_c00119{letter-spacing:-2.136750px;}
.ls3d_c00119{letter-spacing:-1.758450px;}
.ls54_c00119{letter-spacing:-1.658475px;}
.ls26_c00119{letter-spacing:-1.627680px;}
.ls9_c00119{letter-spacing:-1.597920px;}
.ls12_c00119{letter-spacing:-1.574880px;}
.ls1d_c00119{letter-spacing:-1.550400px;}
.ls5c_c00119{letter-spacing:-1.549350px;}
.ls57_c00119{letter-spacing:-1.438650px;}
.ls3e_c00119{letter-spacing:-1.389150px;}
.ls3f_c00119{letter-spacing:-1.140000px;}
.ls64_c00119{letter-spacing:-0.878625px;}
.ls62_c00119{letter-spacing:-0.801120px;}
.ls4_c00119{letter-spacing:-0.787800px;}
.lsa_c00119{letter-spacing:-0.751800px;}
.ls60_c00119{letter-spacing:-0.736575px;}
.ls25_c00119{letter-spacing:-0.726015px;}
.ls15_c00119{letter-spacing:-0.724500px;}
.ls5_c00119{letter-spacing:0.000000px;}
.ls30_c00119{letter-spacing:0.670905px;}
.lsb_c00119{letter-spacing:0.801120px;}
.ls13_c00119{letter-spacing:0.803250px;}
.ls65_c00119{letter-spacing:0.879375px;}
.ls53_c00119{letter-spacing:0.900900px;}
.ls5b_c00119{letter-spacing:1.597920px;}
.ls50_c00119{letter-spacing:2.324100px;}
.ls0_c00119{letter-spacing:2.363400px;}
.ls2f_c00119{letter-spacing:2.364675px;}
.ls2_c00119{letter-spacing:2.400000px;}
.ls1e_c00119{letter-spacing:2.470020px;}
.ls22_c00119{letter-spacing:2.520000px;}
.ls5e_c00119{letter-spacing:2.520375px;}
.ls47_c00119{letter-spacing:2.672303px;}
.ls34_c00119{letter-spacing:2.775277px;}
.ls33_c00119{letter-spacing:2.778300px;}
.ls28_c00119{letter-spacing:2.855655px;}
.ls3_c00119{letter-spacing:3.201600px;}
.ls16_c00119{letter-spacing:3.686025px;}
.ls49_c00119{letter-spacing:3.687450px;}
.ls5a_c00119{letter-spacing:3.989700px;}
.ls35_c00119{letter-spacing:4.321800px;}
.ls31_c00119{letter-spacing:4.457250px;}
.ls1_c00119{letter-spacing:4.800480px;}
.ls4c_c00119{letter-spacing:5.302882px;}
.ls51_c00119{letter-spacing:5.424773px;}
.ls7_c00119{letter-spacing:5.642288px;}
.ls36_c00119{letter-spacing:6.490800px;}
.ls4e_c00119{letter-spacing:6.966375px;}
.ls4d_c00119{letter-spacing:7.199520px;}
.ls46_c00119{letter-spacing:8.001600px;}
.ls4a_c00119{letter-spacing:9.200250px;}
.ls4b_c00119{letter-spacing:9.832350px;}
.ls14_c00119{letter-spacing:18.398400px;}
.ls39_c00119{letter-spacing:33.179250px;}
.ls2e_c00119{letter-spacing:35.805825px;}
.lsd_c00119{letter-spacing:45.600000px;}
.ls2d_c00119{letter-spacing:46.473600px;}
.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;}
._6_c00119{margin-left:-6.192320px;}
._2_c00119{margin-left:-4.994688px;}
._3_c00119{margin-left:-3.744256px;}
._1_c00119{width:1.997415px;}
._4_c00119{width:4.032000px;}
._0_c00119{width:5.740674px;}
._5_c00119{width:564.339008px;}
.fc0_c00119{color:transparent;}
.fs2b_c00119{font-size:13.500000px;}
.fs27_c00119{font-size:14.250000px;}
.fs24_c00119{font-size:15.750000px;}
.fs18_c00119{font-size:24.750000px;}
.fs19_c00119{font-size:25.500000px;}
.fs1a_c00119{font-size:26.250000px;}
.fs15_c00119{font-size:27.750000px;}
.fs16_c00119{font-size:28.500000px;}
.fs1d_c00119{font-size:30.000000px;}
.fs17_c00119{font-size:30.750000px;}
.fs14_c00119{font-size:31.500000px;}
.fs1b_c00119{font-size:32.250000px;}
.fs2e_c00119{font-size:35.250000px;}
.fs1f_c00119{font-size:36.000000px;}
.fs1e_c00119{font-size:36.750000px;}
.fs20_c00119{font-size:37.500000px;}
.fs12_c00119{font-size:41.250000px;}
.fs5_c00119{font-size:42.000000px;}
.fs8_c00119{font-size:42.750000px;}
.fse_c00119{font-size:43.500000px;}
.fs6_c00119{font-size:44.250000px;}
.fsa_c00119{font-size:45.000000px;}
.fsf_c00119{font-size:45.750000px;}
.fsc_c00119{font-size:46.500000px;}
.fsb_c00119{font-size:47.250000px;}
.fs4_c00119{font-size:48.000000px;}
.fs7_c00119{font-size:48.750000px;}
.fs9_c00119{font-size:49.500000px;}
.fs3_c00119{font-size:50.250000px;}
.fs11_c00119{font-size:51.000000px;}
.fsd_c00119{font-size:51.750000px;}
.fs22_c00119{font-size:52.500000px;}
.fs23_c00119{font-size:53.250000px;}
.fs10_c00119{font-size:54.000000px;}
.fs2f_c00119{font-size:56.250000px;}
.fs2d_c00119{font-size:57.750000px;}
.fs21_c00119{font-size:62.250000px;}
.fs2_c00119{font-size:71.250000px;}
.fs2a_c00119{font-size:76.500000px;}
.fs0_c00119{font-size:78.000000px;}
.fs2c_c00119{font-size:85.500000px;}
.fs1_c00119{font-size:89.250000px;}
.fs28_c00119{font-size:96.750000px;}
.fs25_c00119{font-size:101.250000px;}
.fs26_c00119{font-size:115.500000px;}
.fs29_c00119{font-size:117.000000px;}
.fs13_c00119{font-size:121.500000px;}
.fs30_c00119{font-size:129.000000px;}
.fs1c_c00119{font-size:156.000000px;}
.y0_c00119{bottom:0.000000px;}
.y11_c00119{bottom:184.319850px;}
.yf_c00119{bottom:193.319250px;}
.y10_c00119{bottom:194.400285px;}
.ye_c00119{bottom:208.080000px;}
.yd_c00119{bottom:219.960000px;}
.yc_c00119{bottom:316.800135px;}
.yb_c00119{bottom:330.838950px;}
.ya_c00119{bottom:345.599700px;}
.y9_c00119{bottom:346.319850px;}
.y8_c00119{bottom:348.298950px;}
.y7_c00119{bottom:348.839535px;}
.y6_c00119{bottom:359.279250px;}
.y5_c00119{bottom:373.319850px;}
.y4_c00119{bottom:387.360300px;}
.y3_c00119{bottom:986.759040px;}
.y2_c00119{bottom:1087.199805px;}
.y1_c00119{bottom:1132.918950px;}
.h34_c00119{height:14.080078px;}
.h30_c00119{height:14.862305px;}
.h2c_c00119{height:16.426758px;}
.h1f_c00119{height:24.459961px;}
.h20_c00119{height:26.595703px;}
.h21_c00119{height:27.377930px;}
.h1c_c00119{height:28.942383px;}
.h1d_c00119{height:29.724609px;}
.h1e_c00119{height:30.990234px;}
.h1b_c00119{height:31.130859px;}
.h24_c00119{height:31.289062px;}
.h22_c00119{height:32.501953px;}
.h27_c00119{height:33.635742px;}
.h38_c00119{height:36.764648px;}
.h25_c00119{height:37.037109px;}
.h26_c00119{height:37.546875px;}
.h28_c00119{height:39.111328px;}
.h18_c00119{height:40.464478px;}
.h3e_c00119{height:43.022461px;}
.h6_c00119{height:43.804688px;}
.hb_c00119{height:44.472656px;}
.h9_c00119{height:44.586914px;}
.h19_c00119{height:45.351562px;}
.h14_c00119{height:45.369141px;}
.h7_c00119{height:46.151367px;}
.he_c00119{height:46.373291px;}
.h10_c00119{height:46.863281px;}
.hf_c00119{height:46.933594px;}
.hd_c00119{height:47.109375px;}
.h12_c00119{height:47.437500px;}
.h11_c00119{height:47.619141px;}
.h15_c00119{height:47.715820px;}
.h8_c00119{height:47.845459px;}
.hc_c00119{height:48.178711px;}
.h5_c00119{height:48.375000px;}
.h3c_c00119{height:48.498047px;}
.h3b_c00119{height:49.130859px;}
.h3d_c00119{height:49.317627px;}
.ha_c00119{height:49.886719px;}
.h17_c00119{height:50.402344px;}
.h4_c00119{height:50.642578px;}
.h3a_c00119{height:50.789795px;}
.h13_c00119{height:51.143555px;}
.h2a_c00119{height:51.884766px;}
.h2b_c00119{height:52.625977px;}
.h16_c00119{height:53.367188px;}
.h37_c00119{height:53.973633px;}
.h39_c00119{height:55.590820px;}
.h2e_c00119{height:56.320312px;}
.h36_c00119{height:60.231445px;}
.h29_c00119{height:64.924805px;}
.h3_c00119{height:69.927979px;}
.h1_c00119{height:76.552734px;}
.h33_c00119{height:79.787109px;}
.h2_c00119{height:88.204102px;}
.h35_c00119{height:89.173828px;}
.h31_c00119{height:100.907227px;}
.h2d_c00119{height:105.600586px;}
.h2f_c00119{height:120.462891px;}
.h32_c00119{height:122.027344px;}
.h1a_c00119{height:126.720703px;}
.h3f_c00119{height:134.542969px;}
.h23_c00119{height:162.703125px;}
.h0_c00119{height:1263.000000px;}
.w0_c00119{width:892.500000px;}
.x0_c00119{left:0.000000px;}
.x5_c00119{left:135.718500px;}
.x62_c00119{left:146.878350px;}
.x6_c00119{left:150.120000px;}
.x4a_c00119{left:152.278800px;}
.x4b_c00119{left:158.399250px;}
.x3b_c00119{left:164.878950px;}
.x55_c00119{left:169.918350px;}
.x6a_c00119{left:171.358665px;}
.x2b_c00119{left:175.679700px;}
.x2c_c00119{left:184.319850px;}
.x56_c00119{left:186.478665px;}
.x4d_c00119{left:198.358635px;}
.x3c_c00119{left:199.439685px;}
.x63_c00119{left:205.919535px;}
.x17_c00119{left:208.080000px;}
.x7_c00119{left:209.159385px;}
.x3d_c00119{left:213.478635px;}
.x57_c00119{left:215.639100px;}
.x64_c00119{left:217.079385px;}
.x58_c00119{left:225.358635px;}
.x2d_c00119{left:228.959400px;}
.x59_c00119{left:236.518635px;}
.x18_c00119{left:240.478635px;}
.x8_c00119{left:244.438635px;}
.x3e_c00119{left:258.120000px;}
.x4e_c00119{left:262.080000px;}
.x3f_c00119{left:267.478635px;}
.x5a_c00119{left:274.319250px;}
.x4f_c00119{left:281.159850px;}
.x2e_c00119{left:282.239250px;}
.x9_c00119{left:288.359850px;}
.x1_c00119{left:293.399250px;}
.x19_c00119{left:294.478635px;}
.x1a_c00119{left:304.559100px;}
.xa_c00119{left:308.519100px;}
.x6b_c00119{left:321.478635px;}
.x2f_c00119{left:325.438635px;}
.xb_c00119{left:334.798950px;}
.x6c_c00119{left:338.759100px;}
.x50_c00119{left:344.879535px;}
.x40_c00119{left:349.918950px;}
.x3_c00119{left:351.718500px;}
.x30_c00119{left:359.279250px;}
.xc_c00119{left:360.358635px;}
.x5b_c00119{left:366.838515px;}
.x1b_c00119{left:368.278800px;}
.x5c_c00119{left:386.279250px;}
.x41_c00119{left:389.159820px;}
.x65_c00119{left:400.319820px;}
.xd_c00119{left:402.478635px;}
.x31_c00119{left:404.639100px;}
.x42_c00119{left:407.878920px;}
.x1c_c00119{left:412.918350px;}
.xe_c00119{left:429.119385px;}
.x1d_c00119{left:433.799565px;}
.x5d_c00119{left:444.598530px;}
.x66_c00119{left:450.719100px;}
.x1e_c00119{left:453.599670px;}
.x43_c00119{left:457.918950px;}
.x5e_c00119{left:466.918350px;}
.x1f_c00119{left:468.358665px;}
.x4_c00119{left:470.159820px;}
.x20_c00119{left:481.679070px;}
.xf_c00119{left:482.758530px;}
.x2_c00119{left:485.279850px;}
.x32_c00119{left:488.519670px;}
.x10_c00119{left:492.838950px;}
.x5f_c00119{left:503.278800px;}
.x21_c00119{left:510.478635px;}
.x44_c00119{left:521.279250px;}
.x4c_c00119{left:522.719565px;}
.x33_c00119{left:529.199385px;}
.x22_c00119{left:533.159415px;}
.x34_c00119{left:541.438620px;}
.x23_c00119{left:542.878920px;}
.x11_c00119{left:556.919535px;}
.x45_c00119{left:572.759535px;}
.x24_c00119{left:574.918350px;}
.x60_c00119{left:585.719100px;}
.x69_c00119{left:587.518620px;}
.x35_c00119{left:593.639100px;}
.x6d_c00119{left:598.678530px;}
.x51_c00119{left:602.999400px;}
.x12_c00119{left:606.598530px;}
.x36_c00119{left:608.759085px;}
.x25_c00119{left:610.199385px;}
.x13_c00119{left:621.359250px;}
.x26_c00119{left:622.438620px;}
.x37_c00119{left:623.878920px;}
.x6e_c00119{left:627.118785px;}
.x52_c00119{left:634.679670px;}
.x61_c00119{left:640.080000px;}
.x14_c00119{left:641.518620px;}
.x38_c00119{left:656.999400px;}
.x27_c00119{left:659.878320px;}
.x53_c00119{left:666.359850px;}
.x46_c00119{left:668.879520px;}
.x6f_c00119{left:670.679070px;}
.x15_c00119{left:672.119385px;}
.x28_c00119{left:674.279850px;}
.x70_c00119{left:685.078770px;}
.x67_c00119{left:696.958920px;}
.x39_c00119{left:701.639100px;}
.x47_c00119{left:703.438620px;}
.x68_c00119{left:710.999400px;}
.x48_c00119{left:717.119985px;}
.x29_c00119{left:726.839535px;}
.x3a_c00119{left:729.359250px;}
.x16_c00119{left:739.439670px;}
.x2a_c00119{left:742.318770px;}
.x54_c00119{left:768.239220px;}
.x49_c00119{left:772.558590px;}
.x71_c00119{left:817.559055px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls3a_c00119{letter-spacing:-12.458133pt;}
.ls5d_c00119{letter-spacing:-10.647467pt;}
.ls52_c00119{letter-spacing:-10.233467pt;}
.ls42_c00119{letter-spacing:-10.227880pt;}
.ls40_c00119{letter-spacing:-9.769600pt;}
.ls55_c00119{letter-spacing:-9.546767pt;}
.ls3c_c00119{letter-spacing:-9.127067pt;}
.ls21_c00119{letter-spacing:-7.462280pt;}
.ls2c_c00119{letter-spacing:-7.016000pt;}
.ls6_c00119{letter-spacing:-5.934133pt;}
.ls1b_c00119{letter-spacing:-5.226667pt;}
.ls41_c00119{letter-spacing:-5.085600pt;}
.ls1a_c00119{letter-spacing:-4.666400pt;}
.ls29_c00119{letter-spacing:-4.569600pt;}
.ls38_c00119{letter-spacing:-4.299400pt;}
.lsc_c00119{letter-spacing:-4.141800pt;}
.ls24_c00119{letter-spacing:-4.141200pt;}
.ls56_c00119{letter-spacing:-4.036267pt;}
.ls27_c00119{letter-spacing:-3.967200pt;}
.ls2b_c00119{letter-spacing:-3.889967pt;}
.lsf_c00119{letter-spacing:-3.857000pt;}
.ls5f_c00119{letter-spacing:-3.850267pt;}
.ls63_c00119{letter-spacing:-3.811680pt;}
.lse_c00119{letter-spacing:-3.770433pt;}
.ls4f_c00119{letter-spacing:-3.720733pt;}
.ls48_c00119{letter-spacing:-3.546400pt;}
.ls19_c00119{letter-spacing:-3.218133pt;}
.ls23_c00119{letter-spacing:-3.208600pt;}
.ls37_c00119{letter-spacing:-3.070200pt;}
.ls2a_c00119{letter-spacing:-2.973867pt;}
.ls61_c00119{letter-spacing:-2.845867pt;}
.ls10_c00119{letter-spacing:-2.624000pt;}
.ls18_c00119{letter-spacing:-2.622000pt;}
.ls1f_c00119{letter-spacing:-2.580267pt;}
.ls11_c00119{letter-spacing:-2.548433pt;}
.ls43_c00119{letter-spacing:-2.400000pt;}
.ls32_c00119{letter-spacing:-2.204467pt;}
.ls8_c00119{letter-spacing:-2.197153pt;}
.ls17_c00119{letter-spacing:-2.133333pt;}
.ls44_c00119{letter-spacing:-2.128000pt;}
.ls58_c00119{letter-spacing:-2.062667pt;}
.ls1c_c00119{letter-spacing:-2.036800pt;}
.ls59_c00119{letter-spacing:-2.032767pt;}
.ls3b_c00119{letter-spacing:-1.974140pt;}
.ls20_c00119{letter-spacing:-1.972940pt;}
.ls45_c00119{letter-spacing:-1.899333pt;}
.ls3d_c00119{letter-spacing:-1.563067pt;}
.ls54_c00119{letter-spacing:-1.474200pt;}
.ls26_c00119{letter-spacing:-1.446827pt;}
.ls9_c00119{letter-spacing:-1.420373pt;}
.ls12_c00119{letter-spacing:-1.399893pt;}
.ls1d_c00119{letter-spacing:-1.378133pt;}
.ls5c_c00119{letter-spacing:-1.377200pt;}
.ls57_c00119{letter-spacing:-1.278800pt;}
.ls3e_c00119{letter-spacing:-1.234800pt;}
.ls3f_c00119{letter-spacing:-1.013333pt;}
.ls64_c00119{letter-spacing:-0.781000pt;}
.ls62_c00119{letter-spacing:-0.712107pt;}
.ls4_c00119{letter-spacing:-0.700267pt;}
.lsa_c00119{letter-spacing:-0.668267pt;}
.ls60_c00119{letter-spacing:-0.654733pt;}
.ls25_c00119{letter-spacing:-0.645347pt;}
.ls15_c00119{letter-spacing:-0.644000pt;}
.ls5_c00119{letter-spacing:0.000000pt;}
.ls30_c00119{letter-spacing:0.596360pt;}
.lsb_c00119{letter-spacing:0.712107pt;}
.ls13_c00119{letter-spacing:0.714000pt;}
.ls65_c00119{letter-spacing:0.781667pt;}
.ls53_c00119{letter-spacing:0.800800pt;}
.ls5b_c00119{letter-spacing:1.420373pt;}
.ls50_c00119{letter-spacing:2.065867pt;}
.ls0_c00119{letter-spacing:2.100800pt;}
.ls2f_c00119{letter-spacing:2.101933pt;}
.ls2_c00119{letter-spacing:2.133333pt;}
.ls1e_c00119{letter-spacing:2.195573pt;}
.ls22_c00119{letter-spacing:2.240000pt;}
.ls5e_c00119{letter-spacing:2.240333pt;}
.ls47_c00119{letter-spacing:2.375380pt;}
.ls34_c00119{letter-spacing:2.466913pt;}
.ls33_c00119{letter-spacing:2.469600pt;}
.ls28_c00119{letter-spacing:2.538360pt;}
.ls3_c00119{letter-spacing:2.845867pt;}
.ls16_c00119{letter-spacing:3.276467pt;}
.ls49_c00119{letter-spacing:3.277733pt;}
.ls5a_c00119{letter-spacing:3.546400pt;}
.ls35_c00119{letter-spacing:3.841600pt;}
.ls31_c00119{letter-spacing:3.962000pt;}
.ls1_c00119{letter-spacing:4.267093pt;}
.ls4c_c00119{letter-spacing:4.713673pt;}
.ls51_c00119{letter-spacing:4.822020pt;}
.ls7_c00119{letter-spacing:5.015367pt;}
.ls36_c00119{letter-spacing:5.769600pt;}
.ls4e_c00119{letter-spacing:6.192333pt;}
.ls4d_c00119{letter-spacing:6.399573pt;}
.ls46_c00119{letter-spacing:7.112533pt;}
.ls4a_c00119{letter-spacing:8.178000pt;}
.ls4b_c00119{letter-spacing:8.739867pt;}
.ls14_c00119{letter-spacing:16.354133pt;}
.ls39_c00119{letter-spacing:29.492667pt;}
.ls2e_c00119{letter-spacing:31.827400pt;}
.lsd_c00119{letter-spacing:40.533333pt;}
.ls2d_c00119{letter-spacing:41.309867pt;}
.ws0_c00119{word-spacing:0.000000pt;}
._6_c00119{margin-left:-5.504284pt;}
._2_c00119{margin-left:-4.439723pt;}
._3_c00119{margin-left:-3.328228pt;}
._1_c00119{width:1.775480pt;}
._4_c00119{width:3.584000pt;}
._0_c00119{width:5.102821pt;}
._5_c00119{width:501.634674pt;}
.fs2b_c00119{font-size:12.000000pt;}
.fs27_c00119{font-size:12.666667pt;}
.fs24_c00119{font-size:14.000000pt;}
.fs18_c00119{font-size:22.000000pt;}
.fs19_c00119{font-size:22.666667pt;}
.fs1a_c00119{font-size:23.333333pt;}
.fs15_c00119{font-size:24.666667pt;}
.fs16_c00119{font-size:25.333333pt;}
.fs1d_c00119{font-size:26.666667pt;}
.fs17_c00119{font-size:27.333333pt;}
.fs14_c00119{font-size:28.000000pt;}
.fs1b_c00119{font-size:28.666667pt;}
.fs2e_c00119{font-size:31.333333pt;}
.fs1f_c00119{font-size:32.000000pt;}
.fs1e_c00119{font-size:32.666667pt;}
.fs20_c00119{font-size:33.333333pt;}
.fs12_c00119{font-size:36.666667pt;}
.fs5_c00119{font-size:37.333333pt;}
.fs8_c00119{font-size:38.000000pt;}
.fse_c00119{font-size:38.666667pt;}
.fs6_c00119{font-size:39.333333pt;}
.fsa_c00119{font-size:40.000000pt;}
.fsf_c00119{font-size:40.666667pt;}
.fsc_c00119{font-size:41.333333pt;}
.fsb_c00119{font-size:42.000000pt;}
.fs4_c00119{font-size:42.666667pt;}
.fs7_c00119{font-size:43.333333pt;}
.fs9_c00119{font-size:44.000000pt;}
.fs3_c00119{font-size:44.666667pt;}
.fs11_c00119{font-size:45.333333pt;}
.fsd_c00119{font-size:46.000000pt;}
.fs22_c00119{font-size:46.666667pt;}
.fs23_c00119{font-size:47.333333pt;}
.fs10_c00119{font-size:48.000000pt;}
.fs2f_c00119{font-size:50.000000pt;}
.fs2d_c00119{font-size:51.333333pt;}
.fs21_c00119{font-size:55.333333pt;}
.fs2_c00119{font-size:63.333333pt;}
.fs2a_c00119{font-size:68.000000pt;}
.fs0_c00119{font-size:69.333333pt;}
.fs2c_c00119{font-size:76.000000pt;}
.fs1_c00119{font-size:79.333333pt;}
.fs28_c00119{font-size:86.000000pt;}
.fs25_c00119{font-size:90.000000pt;}
.fs26_c00119{font-size:102.666667pt;}
.fs29_c00119{font-size:104.000000pt;}
.fs13_c00119{font-size:108.000000pt;}
.fs30_c00119{font-size:114.666667pt;}
.fs1c_c00119{font-size:138.666667pt;}
.y0_c00119{bottom:0.000000pt;}
.y11_c00119{bottom:163.839867pt;}
.yf_c00119{bottom:171.839333pt;}
.y10_c00119{bottom:172.800253pt;}
.ye_c00119{bottom:184.960000pt;}
.yd_c00119{bottom:195.520000pt;}
.yc_c00119{bottom:281.600120pt;}
.yb_c00119{bottom:294.079067pt;}
.ya_c00119{bottom:307.199733pt;}
.y9_c00119{bottom:307.839867pt;}
.y8_c00119{bottom:309.599067pt;}
.y7_c00119{bottom:310.079587pt;}
.y6_c00119{bottom:319.359333pt;}
.y5_c00119{bottom:331.839867pt;}
.y4_c00119{bottom:344.320267pt;}
.y3_c00119{bottom:877.119147pt;}
.y2_c00119{bottom:966.399827pt;}
.y1_c00119{bottom:1007.039067pt;}
.h34_c00119{height:12.515625pt;}
.h30_c00119{height:13.210937pt;}
.h2c_c00119{height:14.601562pt;}
.h1f_c00119{height:21.742187pt;}
.h20_c00119{height:23.640625pt;}
.h21_c00119{height:24.335938pt;}
.h1c_c00119{height:25.726562pt;}
.h1d_c00119{height:26.421875pt;}
.h1e_c00119{height:27.546875pt;}
.h1b_c00119{height:27.671875pt;}
.h24_c00119{height:27.812500pt;}
.h22_c00119{height:28.890625pt;}
.h27_c00119{height:29.898438pt;}
.h38_c00119{height:32.679688pt;}
.h25_c00119{height:32.921875pt;}
.h26_c00119{height:33.375000pt;}
.h28_c00119{height:34.765625pt;}
.h18_c00119{height:35.968424pt;}
.h3e_c00119{height:38.242188pt;}
.h6_c00119{height:38.937500pt;}
.hb_c00119{height:39.531250pt;}
.h9_c00119{height:39.632812pt;}
.h19_c00119{height:40.312500pt;}
.h14_c00119{height:40.328125pt;}
.h7_c00119{height:41.023438pt;}
.he_c00119{height:41.220703pt;}
.h10_c00119{height:41.656250pt;}
.hf_c00119{height:41.718750pt;}
.hd_c00119{height:41.875000pt;}
.h12_c00119{height:42.166667pt;}
.h11_c00119{height:42.328125pt;}
.h15_c00119{height:42.414062pt;}
.h8_c00119{height:42.529297pt;}
.hc_c00119{height:42.825521pt;}
.h5_c00119{height:43.000000pt;}
.h3c_c00119{height:43.109375pt;}
.h3b_c00119{height:43.671875pt;}
.h3d_c00119{height:43.837891pt;}
.ha_c00119{height:44.343750pt;}
.h17_c00119{height:44.802083pt;}
.h4_c00119{height:45.015625pt;}
.h3a_c00119{height:45.146484pt;}
.h13_c00119{height:45.460938pt;}
.h2a_c00119{height:46.119792pt;}
.h2b_c00119{height:46.778646pt;}
.h16_c00119{height:47.437500pt;}
.h37_c00119{height:47.976562pt;}
.h39_c00119{height:49.414063pt;}
.h2e_c00119{height:50.062500pt;}
.h36_c00119{height:53.539062pt;}
.h29_c00119{height:57.710938pt;}
.h3_c00119{height:62.158203pt;}
.h1_c00119{height:68.046875pt;}
.h33_c00119{height:70.921875pt;}
.h2_c00119{height:78.403646pt;}
.h35_c00119{height:79.265625pt;}
.h31_c00119{height:89.695312pt;}
.h2d_c00119{height:93.867188pt;}
.h2f_c00119{height:107.078125pt;}
.h32_c00119{height:108.468750pt;}
.h1a_c00119{height:112.640625pt;}
.h3f_c00119{height:119.593750pt;}
.h23_c00119{height:144.625000pt;}
.h0_c00119{height:1122.666667pt;}
.w0_c00119{width:793.333333pt;}
.x0_c00119{left:0.000000pt;}
.x5_c00119{left:120.638667pt;}
.x62_c00119{left:130.558533pt;}
.x6_c00119{left:133.440000pt;}
.x4a_c00119{left:135.358933pt;}
.x4b_c00119{left:140.799333pt;}
.x3b_c00119{left:146.559067pt;}
.x55_c00119{left:151.038533pt;}
.x6a_c00119{left:152.318813pt;}
.x2b_c00119{left:156.159733pt;}
.x2c_c00119{left:163.839867pt;}
.x56_c00119{left:165.758813pt;}
.x4d_c00119{left:176.318787pt;}
.x3c_c00119{left:177.279720pt;}
.x63_c00119{left:183.039587pt;}
.x17_c00119{left:184.960000pt;}
.x7_c00119{left:185.919453pt;}
.x3d_c00119{left:189.758787pt;}
.x57_c00119{left:191.679200pt;}
.x64_c00119{left:192.959453pt;}
.x58_c00119{left:200.318787pt;}
.x2d_c00119{left:203.519467pt;}
.x59_c00119{left:210.238787pt;}
.x18_c00119{left:213.758787pt;}
.x8_c00119{left:217.278787pt;}
.x3e_c00119{left:229.440000pt;}
.x4e_c00119{left:232.960000pt;}
.x3f_c00119{left:237.758787pt;}
.x5a_c00119{left:243.839333pt;}
.x4f_c00119{left:249.919867pt;}
.x2e_c00119{left:250.879333pt;}
.x9_c00119{left:256.319867pt;}
.x1_c00119{left:260.799333pt;}
.x19_c00119{left:261.758787pt;}
.x1a_c00119{left:270.719200pt;}
.xa_c00119{left:274.239200pt;}
.x6b_c00119{left:285.758787pt;}
.x2f_c00119{left:289.278787pt;}
.xb_c00119{left:297.599067pt;}
.x6c_c00119{left:301.119200pt;}
.x50_c00119{left:306.559587pt;}
.x40_c00119{left:311.039067pt;}
.x3_c00119{left:312.638667pt;}
.x30_c00119{left:319.359333pt;}
.xc_c00119{left:320.318787pt;}
.x5b_c00119{left:326.078680pt;}
.x1b_c00119{left:327.358933pt;}
.x5c_c00119{left:343.359333pt;}
.x41_c00119{left:345.919840pt;}
.x65_c00119{left:355.839840pt;}
.xd_c00119{left:357.758787pt;}
.x31_c00119{left:359.679200pt;}
.x42_c00119{left:362.559040pt;}
.x1c_c00119{left:367.038533pt;}
.xe_c00119{left:381.439453pt;}
.x1d_c00119{left:385.599613pt;}
.x5d_c00119{left:395.198693pt;}
.x66_c00119{left:400.639200pt;}
.x1e_c00119{left:403.199707pt;}
.x43_c00119{left:407.039067pt;}
.x5e_c00119{left:415.038533pt;}
.x1f_c00119{left:416.318813pt;}
.x4_c00119{left:417.919840pt;}
.x20_c00119{left:428.159173pt;}
.xf_c00119{left:429.118693pt;}
.x2_c00119{left:431.359867pt;}
.x32_c00119{left:434.239707pt;}
.x10_c00119{left:438.079067pt;}
.x5f_c00119{left:447.358933pt;}
.x21_c00119{left:453.758787pt;}
.x44_c00119{left:463.359333pt;}
.x4c_c00119{left:464.639613pt;}
.x33_c00119{left:470.399453pt;}
.x22_c00119{left:473.919480pt;}
.x34_c00119{left:481.278773pt;}
.x23_c00119{left:482.559040pt;}
.x11_c00119{left:495.039587pt;}
.x45_c00119{left:509.119587pt;}
.x24_c00119{left:511.038533pt;}
.x60_c00119{left:520.639200pt;}
.x69_c00119{left:522.238773pt;}
.x35_c00119{left:527.679200pt;}
.x6d_c00119{left:532.158693pt;}
.x51_c00119{left:535.999467pt;}
.x12_c00119{left:539.198693pt;}
.x36_c00119{left:541.119187pt;}
.x25_c00119{left:542.399453pt;}
.x13_c00119{left:552.319333pt;}
.x26_c00119{left:553.278773pt;}
.x37_c00119{left:554.559040pt;}
.x6e_c00119{left:557.438920pt;}
.x52_c00119{left:564.159707pt;}
.x61_c00119{left:568.960000pt;}
.x14_c00119{left:570.238773pt;}
.x38_c00119{left:583.999467pt;}
.x27_c00119{left:586.558507pt;}
.x53_c00119{left:592.319867pt;}
.x46_c00119{left:594.559573pt;}
.x6f_c00119{left:596.159173pt;}
.x15_c00119{left:597.439453pt;}
.x28_c00119{left:599.359867pt;}
.x70_c00119{left:608.958907pt;}
.x67_c00119{left:619.519040pt;}
.x39_c00119{left:623.679200pt;}
.x47_c00119{left:625.278773pt;}
.x68_c00119{left:631.999467pt;}
.x48_c00119{left:637.439987pt;}
.x29_c00119{left:646.079587pt;}
.x3a_c00119{left:648.319333pt;}
.x16_c00119{left:657.279707pt;}
.x2a_c00119{left:659.838907pt;}
.x54_c00119{left:682.879307pt;}
.x49_c00119{left:686.718747pt;}
.x71_c00119{left:726.719160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ffe885cbea9d55b2b5d2560.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_77c7ccb7de0a09ddeab88807.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_77a4c996e08564f2cda64c08.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_7edd45d0de11ed03e26ab650.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.364746;font-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_c00120{transform:matrix(0.059267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059267,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.169231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169231,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m1_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);}
.m3_c00120{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls14_c00120{letter-spacing:-9.829950px;}
.lsf_c00120{letter-spacing:-7.375125px;}
.ls11_c00120{letter-spacing:-4.855200px;}
.lse_c00120{letter-spacing:-4.431375px;}
.ls3_c00120{letter-spacing:-3.938978px;}
.ls2_c00120{letter-spacing:-3.151800px;}
.ls15_c00120{letter-spacing:-2.902800px;}
.lsa_c00120{letter-spacing:-2.737800px;}
.ls0_c00120{letter-spacing:-2.363078px;}
.lsb_c00120{letter-spacing:-2.218125px;}
.ls10_c00120{letter-spacing:-2.176658px;}
.lsd_c00120{letter-spacing:-1.602248px;}
.ls4_c00120{letter-spacing:-1.485750px;}
.ls1_c00120{letter-spacing:-0.787178px;}
.lsc_c00120{letter-spacing:0.000000px;}
.ls8_c00120{letter-spacing:0.698985px;}
.ls9_c00120{letter-spacing:0.752400px;}
.ls12_c00120{letter-spacing:0.963900px;}
.ls13_c00120{letter-spacing:1.107113px;}
.ls7_c00120{letter-spacing:5.248733px;}
.ls5_c00120{letter-spacing:6.060075px;}
.ls6_c00120{letter-spacing:24.043950px;}
.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;}
._3_c00120{margin-left:-5.031089px;}
._1_c00120{width:2.086743px;}
._0_c00120{width:10.886259px;}
._2_c00120{width:12.683946px;}
.fc0_c00120{color:transparent;}
.fsd_c00120{font-size:39.000000px;}
.fs7_c00120{font-size:40.500000px;}
.fsb_c00120{font-size:44.250000px;}
.fs9_c00120{font-size:47.250000px;}
.fs8_c00120{font-size:48.750000px;}
.fs6_c00120{font-size:49.500000px;}
.fsc_c00120{font-size:51.000000px;}
.fsa_c00120{font-size:53.250000px;}
.fs2_c00120{font-size:72.750000px;}
.fs5_c00120{font-size:73.500000px;}
.fs4_c00120{font-size:74.250000px;}
.fs1_c00120{font-size:75.000000px;}
.fs3_c00120{font-size:76.500000px;}
.fs0_c00120{font-size:77.250000px;}
.fse_c00120{font-size:174.000000px;}
.y0_c00120{bottom:0.000000px;}
.y7_c00120{bottom:176.401515px;}
.y5_c00120{bottom:189.720150px;}
.y6_c00120{bottom:190.440315px;}
.y4_c00120{bottom:956.159820px;}
.y3_c00120{bottom:978.120390px;}
.y2_c00120{bottom:1085.041740px;}
.y1_c00120{bottom:1130.400885px;}
.hf_c00120{height:39.304688px;}
.h8_c00120{height:42.240234px;}
.hc_c00120{height:46.151367px;}
.he_c00120{height:46.696289px;}
.ha_c00120{height:47.619141px;}
.h9_c00120{height:48.178711px;}
.h7_c00120{height:49.886719px;}
.hd_c00120{height:50.402344px;}
.hb_c00120{height:52.625977px;}
.h6_c00120{height:72.136230px;}
.h5_c00120{height:72.872314px;}
.h3_c00120{height:73.318359px;}
.h2_c00120{height:75.585938px;}
.h4_c00120{height:77.097656px;}
.h1_c00120{height:77.853516px;}
.h10_c00120{height:170.771484px;}
.h0_c00120{height:1263.000000px;}
.w0_c00120{width:892.500000px;}
.x0_c00120{left:0.000000px;}
.x8_c00120{left:140.398665px;}
.x9_c00120{left:164.519685px;}
.xa_c00120{left:221.759535px;}
.x2_c00120{left:275.759835px;}
.x1_c00120{left:291.238785px;}
.xb_c00120{left:314.998950px;}
.xc_c00120{left:331.918350px;}
.x3_c00120{left:337.679700px;}
.xd_c00120{left:374.040000px;}
.x14_c00120{left:381.599100px;}
.x4_c00120{left:385.559100px;}
.xe_c00120{left:388.798920px;}
.x6_c00120{left:400.679070px;}
.x5_c00120{left:417.598530px;}
.x7_c00120{left:451.798515px;}
.xf_c00120{left:592.198785px;}
.x10_c00120{left:620.279850px;}
.x11_c00120{left:634.318770px;}
.x12_c00120{left:663.838530px;}
.x13_c00120{left:678.599070px;}
.x15_c00120{left:810.718500px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls14_c00120{letter-spacing:-8.737733pt;}
.lsf_c00120{letter-spacing:-6.555667pt;}
.ls11_c00120{letter-spacing:-4.315733pt;}
.lse_c00120{letter-spacing:-3.939000pt;}
.ls3_c00120{letter-spacing:-3.501313pt;}
.ls2_c00120{letter-spacing:-2.801600pt;}
.ls15_c00120{letter-spacing:-2.580267pt;}
.lsa_c00120{letter-spacing:-2.433600pt;}
.ls0_c00120{letter-spacing:-2.100513pt;}
.lsb_c00120{letter-spacing:-1.971667pt;}
.ls10_c00120{letter-spacing:-1.934807pt;}
.lsd_c00120{letter-spacing:-1.424220pt;}
.ls4_c00120{letter-spacing:-1.320667pt;}
.ls1_c00120{letter-spacing:-0.699713pt;}
.lsc_c00120{letter-spacing:0.000000pt;}
.ls8_c00120{letter-spacing:0.621320pt;}
.ls9_c00120{letter-spacing:0.668800pt;}
.ls12_c00120{letter-spacing:0.856800pt;}
.ls13_c00120{letter-spacing:0.984100pt;}
.ls7_c00120{letter-spacing:4.665540pt;}
.ls5_c00120{letter-spacing:5.386733pt;}
.ls6_c00120{letter-spacing:21.372400pt;}
.ws0_c00120{word-spacing:0.000000pt;}
._3_c00120{margin-left:-4.472079pt;}
._1_c00120{width:1.854883pt;}
._0_c00120{width:9.676675pt;}
._2_c00120{width:11.274618pt;}
.fsd_c00120{font-size:34.666667pt;}
.fs7_c00120{font-size:36.000000pt;}
.fsb_c00120{font-size:39.333333pt;}
.fs9_c00120{font-size:42.000000pt;}
.fs8_c00120{font-size:43.333333pt;}
.fs6_c00120{font-size:44.000000pt;}
.fsc_c00120{font-size:45.333333pt;}
.fsa_c00120{font-size:47.333333pt;}
.fs2_c00120{font-size:64.666667pt;}
.fs5_c00120{font-size:65.333333pt;}
.fs4_c00120{font-size:66.000000pt;}
.fs1_c00120{font-size:66.666667pt;}
.fs3_c00120{font-size:68.000000pt;}
.fs0_c00120{font-size:68.666667pt;}
.fse_c00120{font-size:154.666667pt;}
.y0_c00120{bottom:0.000000pt;}
.y7_c00120{bottom:156.801347pt;}
.y5_c00120{bottom:168.640133pt;}
.y6_c00120{bottom:169.280280pt;}
.y4_c00120{bottom:849.919840pt;}
.y3_c00120{bottom:869.440347pt;}
.y2_c00120{bottom:964.481547pt;}
.y1_c00120{bottom:1004.800787pt;}
.hf_c00120{height:34.937500pt;}
.h8_c00120{height:37.546875pt;}
.hc_c00120{height:41.023438pt;}
.he_c00120{height:41.507812pt;}
.ha_c00120{height:42.328125pt;}
.h9_c00120{height:42.825521pt;}
.h7_c00120{height:44.343750pt;}
.hd_c00120{height:44.802083pt;}
.hb_c00120{height:46.778646pt;}
.h6_c00120{height:64.121094pt;}
.h5_c00120{height:64.775391pt;}
.h3_c00120{height:65.171875pt;}
.h2_c00120{height:67.187500pt;}
.h4_c00120{height:68.531250pt;}
.h1_c00120{height:69.203125pt;}
.h10_c00120{height:151.796875pt;}
.h0_c00120{height:1122.666667pt;}
.w0_c00120{width:793.333333pt;}
.x0_c00120{left:0.000000pt;}
.x8_c00120{left:124.798813pt;}
.x9_c00120{left:146.239720pt;}
.xa_c00120{left:197.119587pt;}
.x2_c00120{left:245.119853pt;}
.x1_c00120{left:258.878920pt;}
.xb_c00120{left:279.999067pt;}
.xc_c00120{left:295.038533pt;}
.x3_c00120{left:300.159733pt;}
.xd_c00120{left:332.480000pt;}
.x14_c00120{left:339.199200pt;}
.x4_c00120{left:342.719200pt;}
.xe_c00120{left:345.599040pt;}
.x6_c00120{left:356.159173pt;}
.x5_c00120{left:371.198693pt;}
.x7_c00120{left:401.598680pt;}
.xf_c00120{left:526.398920pt;}
.x10_c00120{left:551.359867pt;}
.x11_c00120{left:563.838907pt;}
.x12_c00120{left:590.078693pt;}
.x13_c00120{left:603.199173pt;}
.x15_c00120{left:720.638667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0ee88ce45d6d7f7844d59eb.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.364746;font-style:normal;font-weight:normal;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_b495bba53f8ac1d54a4408b3.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_bab4d5ea9c3dafe25bb9263f.woff2')format("woff");}.ff3_c00121{font-family:ff3_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:ff4_c00121;src:url('chunks/assets/font_17826ff94a22beac6a1795a2.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_11e688db6afacd491f274c8d.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00121;src:url('chunks/assets/font_bbaef035bbd39ae5674ac07b.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;line-height:1.364746;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_6d93cd8f51de6f8f8b5f93a4.woff2')format("woff");}.ff7_c00121{font-family:ff7_c00121;line-height:1.432129;font-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_c00121{transform:matrix(0.152397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152397,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.169231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169231,0.000000,0.000000,0.250000,0,0);}
.m39_c00121{transform:matrix(0.173387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173387,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.174716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174716,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m5d_c00121{transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m47_c00121{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m5c_c00121{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m37_c00121{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m33_c00121{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{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);}
.m4f_c00121{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.227083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227083,0.000000,0.000000,0.250000,0,0);}
.m48_c00121{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m5a_c00121{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{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);}
.m3e_c00121{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m59_c00121{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m51_c00121{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m45_c00121{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m49_c00121{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m46_c00121{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m54_c00121{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m3c_c00121{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m4e_c00121{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m55_c00121{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.m38_c00121{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m4c_c00121{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m5_c00121{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m3a_c00121{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m4d_c00121{transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266949,0.000000,0.000000,0.250000,0,0);}
.m32_c00121{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m5b_c00121{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);}
.m1b_c00121{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m3f_c00121{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);}
.m58_c00121{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.327869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327869,0.000000,0.000000,0.250000,0,0);}
.m56_c00121{transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);}
.m52_c00121{transform:matrix(0.372642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372642,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{transform:matrix(0.379310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379310,0.000000,0.000000,0.250000,0,0);}
.m4b_c00121{transform:matrix(0.381356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381356,0.000000,0.000000,0.250000,0,0);}
.m41_c00121{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);}
.m2e_c00121{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m36_c00121{transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);}
.m3d_c00121{transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);}
.m57_c00121{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_c00121{transform:matrix(0.415323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415323,0.000000,0.000000,0.250000,0,0);}
.m35_c00121{transform:matrix(0.435345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435345,0.000000,0.000000,0.250000,0,0);}
.m50_c00121{transform:matrix(0.438525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438525,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m53_c00121{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);}
.v0_c00121{vertical-align:0.000000px;}
.ls21_c00121{letter-spacing:-33.078900px;}
.ls15_c00121{letter-spacing:-11.188613px;}
.ls51_c00121{letter-spacing:-9.922350px;}
.ls5d_c00121{letter-spacing:-7.866720px;}
.ls13_c00121{letter-spacing:-7.677150px;}
.ls4e_c00121{letter-spacing:-5.619750px;}
.ls4a_c00121{letter-spacing:-5.333738px;}
.ls50_c00121{letter-spacing:-4.703100px;}
.ls58_c00121{letter-spacing:-4.658850px;}
.ls2d_c00121{letter-spacing:-4.449615px;}
.ls2a_c00121{letter-spacing:-4.431375px;}
.ls18_c00121{letter-spacing:-3.946950px;}
.ls46_c00121{letter-spacing:-3.817800px;}
.ls36_c00121{letter-spacing:-3.794400px;}
.ls38_c00121{letter-spacing:-3.749700px;}
.ls3e_c00121{letter-spacing:-3.623550px;}
.ls37_c00121{letter-spacing:-3.551775px;}
.ls52_c00121{letter-spacing:-3.521453px;}
.ls55_c00121{letter-spacing:-3.462000px;}
.ls4c_c00121{letter-spacing:-3.442650px;}
.ls42_c00121{letter-spacing:-3.417750px;}
.ls20_c00121{letter-spacing:-3.390750px;}
.ls31_c00121{letter-spacing:-3.338348px;}
.lsb_c00121{letter-spacing:-3.220800px;}
.ls34_c00121{letter-spacing:-3.197250px;}
.ls10_c00121{letter-spacing:-3.159450px;}
.lse_c00121{letter-spacing:-3.101393px;}
.ls40_c00121{letter-spacing:-3.075300px;}
.ls32_c00121{letter-spacing:-3.001200px;}
.ls47_c00121{letter-spacing:-2.951475px;}
.ls16_c00121{letter-spacing:-2.901450px;}
.ls39_c00121{letter-spacing:-2.866988px;}
.ls59_c00121{letter-spacing:-2.726550px;}
.ls1a_c00121{letter-spacing:-2.700000px;}
.ls1d_c00121{letter-spacing:-2.518425px;}
.ls43_c00121{letter-spacing:-2.514600px;}
.ls26_c00121{letter-spacing:-2.416050px;}
.ls56_c00121{letter-spacing:-2.367000px;}
.ls24_c00121{letter-spacing:-2.189453px;}
.ls4d_c00121{letter-spacing:-2.150400px;}
.ls25_c00121{letter-spacing:-2.142450px;}
.ls3c_c00121{letter-spacing:-2.116800px;}
.ls27_c00121{letter-spacing:-1.781325px;}
.ls1e_c00121{letter-spacing:-1.698300px;}
.ls1b_c00121{letter-spacing:-1.623075px;}
.lsf_c00121{letter-spacing:-1.579500px;}
.ls14_c00121{letter-spacing:-1.574880px;}
.ls29_c00121{letter-spacing:-1.526850px;}
.lsc_c00121{letter-spacing:-1.521450px;}
.ls57_c00121{letter-spacing:-1.470300px;}
.ls54_c00121{letter-spacing:-1.411200px;}
.ls11_c00121{letter-spacing:-1.348245px;}
.ls3f_c00121{letter-spacing:-1.301625px;}
.ls7_c00121{letter-spacing:-0.850500px;}
.ls2e_c00121{letter-spacing:-0.825600px;}
.ls3a_c00121{letter-spacing:-0.787500px;}
.ls17_c00121{letter-spacing:-0.761250px;}
.ls53_c00121{letter-spacing:-0.705120px;}
.ls33_c00121{letter-spacing:-0.700980px;}
.ls44_c00121{letter-spacing:-0.693000px;}
.ls1c_c00121{letter-spacing:-0.661050px;}
.ls6_c00121{letter-spacing:0.000000px;}
.ls5_c00121{letter-spacing:0.750300px;}
.ls2f_c00121{letter-spacing:0.761250px;}
.ls3_c00121{letter-spacing:0.787500px;}
.ls4f_c00121{letter-spacing:0.832650px;}
.lsd_c00121{letter-spacing:1.526850px;}
.ls2c_c00121{letter-spacing:1.552500px;}
.ls4_c00121{letter-spacing:1.579500px;}
.ls19_c00121{letter-spacing:1.598850px;}
.ls5a_c00121{letter-spacing:1.604250px;}
.ls49_c00121{letter-spacing:1.622888px;}
.ls3d_c00121{letter-spacing:1.652400px;}
.ls0_c00121{letter-spacing:1.693125px;}
.ls5e_c00121{letter-spacing:1.811250px;}
.ls5b_c00121{letter-spacing:2.771993px;}
.ls8_c00121{letter-spacing:2.851200px;}
.ls2b_c00121{letter-spacing:2.999100px;}
.ls4b_c00121{letter-spacing:3.543638px;}
.ls48_c00121{letter-spacing:4.532700px;}
.ls23_c00121{letter-spacing:4.738500px;}
.ls1f_c00121{letter-spacing:5.045625px;}
.ls45_c00121{letter-spacing:5.431500px;}
.ls1_c00121{letter-spacing:5.929875px;}
.ls3b_c00121{letter-spacing:6.486750px;}
.ls2_c00121{letter-spacing:6.818400px;}
.ls28_c00121{letter-spacing:7.273500px;}
.lsa_c00121{letter-spacing:8.337600px;}
.ls30_c00121{letter-spacing:8.654400px;}
.ls5c_c00121{letter-spacing:11.052450px;}
.ls22_c00121{letter-spacing:13.992075px;}
.ls12_c00121{letter-spacing:15.075000px;}
.ls9_c00121{letter-spacing:17.431200px;}
.ls35_c00121{letter-spacing:30.580500px;}
.ls41_c00121{letter-spacing:35.527950px;}
.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;}
._2_c00121{margin-left:-5.227781px;}
._5_c00121{margin-left:-2.862237px;}
._4_c00121{width:2.407405px;}
._0_c00121{width:4.197036px;}
._1_c00121{width:6.724979px;}
._6_c00121{width:8.195511px;}
._7_c00121{width:12.920637px;}
._3_c00121{width:19.058218px;}
.fc0_c00121{color:transparent;}
.fs1d_c00121{font-size:30.000000px;}
.fs1f_c00121{font-size:30.750000px;}
.fs15_c00121{font-size:38.250000px;}
.fs1a_c00121{font-size:39.000000px;}
.fs1c_c00121{font-size:39.750000px;}
.fsc_c00121{font-size:40.500000px;}
.fs1b_c00121{font-size:42.000000px;}
.fs17_c00121{font-size:42.750000px;}
.fs8_c00121{font-size:43.500000px;}
.fsb_c00121{font-size:44.250000px;}
.fs9_c00121{font-size:45.000000px;}
.fsa_c00121{font-size:45.750000px;}
.fse_c00121{font-size:46.500000px;}
.fs14_c00121{font-size:47.250000px;}
.fsf_c00121{font-size:48.000000px;}
.fs10_c00121{font-size:48.750000px;}
.fs12_c00121{font-size:49.500000px;}
.fsd_c00121{font-size:50.250000px;}
.fs11_c00121{font-size:51.000000px;}
.fs7_c00121{font-size:51.750000px;}
.fs1e_c00121{font-size:52.500000px;}
.fs16_c00121{font-size:53.250000px;}
.fs13_c00121{font-size:54.000000px;}
.fs18_c00121{font-size:54.750000px;}
.fs3_c00121{font-size:72.000000px;}
.fs4_c00121{font-size:72.750000px;}
.fs2_c00121{font-size:78.000000px;}
.fs1_c00121{font-size:78.750000px;}
.fs19_c00121{font-size:86.250000px;}
.fs0_c00121{font-size:90.000000px;}
.fs5_c00121{font-size:109.500000px;}
.fs6_c00121{font-size:132.000000px;}
.fs20_c00121{font-size:144.750000px;}
.y0_c00121{bottom:0.000000px;}
.y11_c00121{bottom:205.199385px;}
.y10_c00121{bottom:217.440285px;}
.yf_c00121{bottom:285.840135px;}
.ye_c00121{bottom:299.519685px;}
.yd_c00121{bottom:313.199385px;}
.yc_c00121{bottom:327.599100px;}
.yb_c00121{bottom:341.998950px;}
.ya_c00121{bottom:348.119385px;}
.y9_c00121{bottom:355.319250px;}
.y8_c00121{bottom:369.359850px;}
.y7_c00121{bottom:383.759535px;}
.y6_c00121{bottom:691.560285px;}
.y5_c00121{bottom:755.279850px;}
.y4_c00121{bottom:942.480285px;}
.y2_c00121{bottom:1085.759370px;}
.y3_c00121{bottom:1085.759490px;}
.y1_c00121{bottom:1131.119385px;}
.h2c_c00121{height:30.990234px;}
.h29_c00121{height:31.289062px;}
.h19_c00121{height:39.893555px;}
.h23_c00121{height:40.025391px;}
.h1f_c00121{height:40.675781px;}
.h28_c00121{height:41.458008px;}
.hd_c00121{height:42.240234px;}
.h12_c00121{height:42.990234px;}
.h20_c00121{height:43.804688px;}
.h1b_c00121{height:44.586914px;}
.h9_c00121{height:45.369141px;}
.h22_c00121{height:46.107422px;}
.hc_c00121{height:46.151367px;}
.h18_c00121{height:46.373291px;}
.h1d_c00121{height:46.696289px;}
.h27_c00121{height:46.863281px;}
.ha_c00121{height:46.933594px;}
.h26_c00121{height:47.109375px;}
.h21_c00121{height:47.437500px;}
.hb_c00121{height:47.715820px;}
.h25_c00121{height:47.845459px;}
.h17_c00121{height:48.178711px;}
.h10_c00121{height:48.375000px;}
.hf_c00121{height:48.498047px;}
.h11_c00121{height:49.130859px;}
.h24_c00121{height:49.661133px;}
.h14_c00121{height:49.886719px;}
.h16_c00121{height:50.053711px;}
.h2a_c00121{height:50.062500px;}
.h13_c00121{height:50.402344px;}
.he_c00121{height:50.642578px;}
.h8_c00121{height:51.143555px;}
.h1a_c00121{height:52.625977px;}
.h2b_c00121{height:52.910156px;}
.h15_c00121{height:53.367188px;}
.h1c_c00121{height:54.108398px;}
.h5_c00121{height:71.400146px;}
.h4_c00121{height:72.562500px;}
.h3_c00121{height:78.609375px;}
.h2_c00121{height:79.365234px;}
.h1_c00121{height:88.945312px;}
.h1e_c00121{height:89.956055px;}
.h6_c00121{height:114.205078px;}
.h7_c00121{height:137.671875px;}
.h2d_c00121{height:150.969727px;}
.h0_c00121{height:1263.000000px;}
.w0_c00121{width:892.500000px;}
.x0_c00121{left:0.000000px;}
.xc_c00121{left:132.839565px;}
.x68_c00121{left:147.598500px;}
.x51_c00121{left:155.879565px;}
.x1f_c00121{left:165.958350px;}
.x2e_c00121{left:168.479685px;}
.x62_c00121{left:173.519100px;}
.x3f_c00121{left:178.919535px;}
.x2f_c00121{left:180.359850px;}
.xd_c00121{left:182.879565px;}
.x52_c00121{left:186.478665px;}
.xa_c00121{left:187.559685px;}
.x3_c00121{left:191.878965px;}
.x40_c00121{left:194.039400px;}
.xb_c00121{left:206.639700px;}
.x8_c00121{left:208.798515px;}
.xe_c00121{left:217.438635px;}
.x69_c00121{left:218.519685px;}
.x63_c00121{left:223.918350px;}
.x30_c00121{left:225.719535px;}
.x31_c00121{left:238.319850px;}
.x41_c00121{left:239.399250px;}
.x53_c00121{left:240.478635px;}
.xf_c00121{left:248.039385px;}
.x54_c00121{left:250.918350px;}
.x9_c00121{left:256.679700px;}
.x10_c00121{left:259.919535px;}
.x4_c00121{left:262.798515px;}
.x42_c00121{left:267.839535px;}
.x32_c00121{left:275.398635px;}
.x55_c00121{left:279.358635px;}
.x5_c00121{left:281.878350px;}
.x1_c00121{left:290.159385px;}
.x64_c00121{left:291.238785px;}
.x43_c00121{left:293.399250px;}
.x20_c00121{left:296.639100px;}
.x21_c00121{left:307.439685px;}
.x11_c00121{left:315.719100px;}
.x56_c00121{left:318.958950px;}
.x33_c00121{left:321.839535px;}
.x12_c00121{left:334.439685px;}
.x44_c00121{left:335.519100px;}
.x65_c00121{left:341.278800px;}
.x66_c00121{left:353.878950px;}
.x22_c00121{left:365.038950px;}
.x57_c00121{left:369.359850px;}
.x34_c00121{left:372.599700px;}
.x13_c00121{left:376.918950px;}
.x2_c00121{left:382.678530px;}
.x35_c00121{left:385.199850px;}
.x58_c00121{left:387.358665px;}
.x59_c00121{left:397.798515px;}
.x23_c00121{left:405.359250px;}
.x45_c00121{left:407.519670px;}
.x36_c00121{left:417.239220px;}
.x67_c00121{left:420.119985px;}
.x24_c00121{left:424.080000px;}
.x46_c00121{left:426.238770px;}
.x47_c00121{left:443.519070px;}
.x5a_c00121{left:448.199385px;}
.x25_c00121{left:449.278800px;}
.x37_c00121{left:453.958920px;}
.x48_c00121{left:456.839535px;}
.x14_c00121{left:457.918950px;}
.x5b_c00121{left:476.998950px;}
.x15_c00121{left:478.080000px;}
.x38_c00121{left:485.279850px;}
.x49_c00121{left:491.759535px;}
.x2d_c00121{left:505.798515px;}
.x26_c00121{left:508.679070px;}
.x16_c00121{left:511.198785px;}
.x39_c00121{left:526.318770px;}
.x17_c00121{left:528.119985px;}
.x5c_c00121{left:534.599670px;}
.x6_c00121{left:542.519670px;}
.x3a_c00121{left:552.239220px;}
.x27_c00121{left:563.039985px;}
.x4a_c00121{left:571.319235px;}
.x18_c00121{left:575.279250px;}
.x6e_c00121{left:584.639700px;}
.x5d_c00121{left:588.958920px;}
.x6a_c00121{left:595.799520px;}
.x5e_c00121{left:597.599070px;}
.x7_c00121{left:601.918350px;}
.x3b_c00121{left:605.519070px;}
.x5f_c00121{left:608.399820px;}
.x28_c00121{left:615.958920px;}
.x4b_c00121{left:617.399235px;}
.x19_c00121{left:635.759085px;}
.x60_c00121{left:638.278800px;}
.x1a_c00121{left:645.119385px;}
.x4c_c00121{left:651.599070px;}
.x29_c00121{left:654.118785px;}
.x6b_c00121{left:658.798920px;}
.x3c_c00121{left:660.959385px;}
.x4d_c00121{left:665.278800px;}
.x3d_c00121{left:678.599070px;}
.x1b_c00121{left:682.918350px;}
.x4e_c00121{left:691.199385px;}
.x1c_c00121{left:692.639700px;}
.x6c_c00121{left:694.798560px;}
.x2a_c00121{left:700.198785px;}
.x1d_c00121{left:704.158770px;}
.x6d_c00121{left:709.199850px;}
.x2b_c00121{left:727.559685px;}
.x61_c00121{left:728.639100px;}
.x3e_c00121{left:736.199850px;}
.x4f_c00121{left:737.999355px;}
.x50_c00121{left:754.198785px;}
.x2c_c00121{left:756.718545px;}
.x1e_c00121{left:761.759535px;}
.x6f_c00121{left:814.678530px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls21_c00121{letter-spacing:-29.403467pt;}
.ls15_c00121{letter-spacing:-9.945433pt;}
.ls51_c00121{letter-spacing:-8.819867pt;}
.ls5d_c00121{letter-spacing:-6.992640pt;}
.ls13_c00121{letter-spacing:-6.824133pt;}
.ls4e_c00121{letter-spacing:-4.995333pt;}
.ls4a_c00121{letter-spacing:-4.741100pt;}
.ls50_c00121{letter-spacing:-4.180533pt;}
.ls58_c00121{letter-spacing:-4.141200pt;}
.ls2d_c00121{letter-spacing:-3.955213pt;}
.ls2a_c00121{letter-spacing:-3.939000pt;}
.ls18_c00121{letter-spacing:-3.508400pt;}
.ls46_c00121{letter-spacing:-3.393600pt;}
.ls36_c00121{letter-spacing:-3.372800pt;}
.ls38_c00121{letter-spacing:-3.333067pt;}
.ls3e_c00121{letter-spacing:-3.220933pt;}
.ls37_c00121{letter-spacing:-3.157133pt;}
.ls52_c00121{letter-spacing:-3.130180pt;}
.ls55_c00121{letter-spacing:-3.077333pt;}
.ls4c_c00121{letter-spacing:-3.060133pt;}
.ls42_c00121{letter-spacing:-3.038000pt;}
.ls20_c00121{letter-spacing:-3.014000pt;}
.ls31_c00121{letter-spacing:-2.967420pt;}
.lsb_c00121{letter-spacing:-2.862933pt;}
.ls34_c00121{letter-spacing:-2.842000pt;}
.ls10_c00121{letter-spacing:-2.808400pt;}
.lse_c00121{letter-spacing:-2.756793pt;}
.ls40_c00121{letter-spacing:-2.733600pt;}
.ls32_c00121{letter-spacing:-2.667733pt;}
.ls47_c00121{letter-spacing:-2.623533pt;}
.ls16_c00121{letter-spacing:-2.579067pt;}
.ls39_c00121{letter-spacing:-2.548433pt;}
.ls59_c00121{letter-spacing:-2.423600pt;}
.ls1a_c00121{letter-spacing:-2.400000pt;}
.ls1d_c00121{letter-spacing:-2.238600pt;}
.ls43_c00121{letter-spacing:-2.235200pt;}
.ls26_c00121{letter-spacing:-2.147600pt;}
.ls56_c00121{letter-spacing:-2.104000pt;}
.ls24_c00121{letter-spacing:-1.946180pt;}
.ls4d_c00121{letter-spacing:-1.911467pt;}
.ls25_c00121{letter-spacing:-1.904400pt;}
.ls3c_c00121{letter-spacing:-1.881600pt;}
.ls27_c00121{letter-spacing:-1.583400pt;}
.ls1e_c00121{letter-spacing:-1.509600pt;}
.ls1b_c00121{letter-spacing:-1.442733pt;}
.lsf_c00121{letter-spacing:-1.404000pt;}
.ls14_c00121{letter-spacing:-1.399893pt;}
.ls29_c00121{letter-spacing:-1.357200pt;}
.lsc_c00121{letter-spacing:-1.352400pt;}
.ls57_c00121{letter-spacing:-1.306933pt;}
.ls54_c00121{letter-spacing:-1.254400pt;}
.ls11_c00121{letter-spacing:-1.198440pt;}
.ls3f_c00121{letter-spacing:-1.157000pt;}
.ls7_c00121{letter-spacing:-0.756000pt;}
.ls2e_c00121{letter-spacing:-0.733867pt;}
.ls3a_c00121{letter-spacing:-0.700000pt;}
.ls17_c00121{letter-spacing:-0.676667pt;}
.ls53_c00121{letter-spacing:-0.626773pt;}
.ls33_c00121{letter-spacing:-0.623093pt;}
.ls44_c00121{letter-spacing:-0.616000pt;}
.ls1c_c00121{letter-spacing:-0.587600pt;}
.ls6_c00121{letter-spacing:0.000000pt;}
.ls5_c00121{letter-spacing:0.666933pt;}
.ls2f_c00121{letter-spacing:0.676667pt;}
.ls3_c00121{letter-spacing:0.700000pt;}
.ls4f_c00121{letter-spacing:0.740133pt;}
.lsd_c00121{letter-spacing:1.357200pt;}
.ls2c_c00121{letter-spacing:1.380000pt;}
.ls4_c00121{letter-spacing:1.404000pt;}
.ls19_c00121{letter-spacing:1.421200pt;}
.ls5a_c00121{letter-spacing:1.426000pt;}
.ls49_c00121{letter-spacing:1.442567pt;}
.ls3d_c00121{letter-spacing:1.468800pt;}
.ls0_c00121{letter-spacing:1.505000pt;}
.ls5e_c00121{letter-spacing:1.610000pt;}
.ls5b_c00121{letter-spacing:2.463993pt;}
.ls8_c00121{letter-spacing:2.534400pt;}
.ls2b_c00121{letter-spacing:2.665867pt;}
.ls4b_c00121{letter-spacing:3.149900pt;}
.ls48_c00121{letter-spacing:4.029067pt;}
.ls23_c00121{letter-spacing:4.212000pt;}
.ls1f_c00121{letter-spacing:4.485000pt;}
.ls45_c00121{letter-spacing:4.828000pt;}
.ls1_c00121{letter-spacing:5.271000pt;}
.ls3b_c00121{letter-spacing:5.766000pt;}
.ls2_c00121{letter-spacing:6.060800pt;}
.ls28_c00121{letter-spacing:6.465333pt;}
.lsa_c00121{letter-spacing:7.411200pt;}
.ls30_c00121{letter-spacing:7.692800pt;}
.ls5c_c00121{letter-spacing:9.824400pt;}
.ls22_c00121{letter-spacing:12.437400pt;}
.ls12_c00121{letter-spacing:13.400000pt;}
.ls9_c00121{letter-spacing:15.494400pt;}
.ls35_c00121{letter-spacing:27.182667pt;}
.ls41_c00121{letter-spacing:31.580400pt;}
.ws0_c00121{word-spacing:0.000000pt;}
._2_c00121{margin-left:-4.646916pt;}
._5_c00121{margin-left:-2.544211pt;}
._4_c00121{width:2.139916pt;}
._0_c00121{width:3.730699pt;}
._1_c00121{width:5.977759pt;}
._6_c00121{width:7.284898pt;}
._7_c00121{width:11.485011pt;}
._3_c00121{width:16.940638pt;}
.fs1d_c00121{font-size:26.666667pt;}
.fs1f_c00121{font-size:27.333333pt;}
.fs15_c00121{font-size:34.000000pt;}
.fs1a_c00121{font-size:34.666667pt;}
.fs1c_c00121{font-size:35.333333pt;}
.fsc_c00121{font-size:36.000000pt;}
.fs1b_c00121{font-size:37.333333pt;}
.fs17_c00121{font-size:38.000000pt;}
.fs8_c00121{font-size:38.666667pt;}
.fsb_c00121{font-size:39.333333pt;}
.fs9_c00121{font-size:40.000000pt;}
.fsa_c00121{font-size:40.666667pt;}
.fse_c00121{font-size:41.333333pt;}
.fs14_c00121{font-size:42.000000pt;}
.fsf_c00121{font-size:42.666667pt;}
.fs10_c00121{font-size:43.333333pt;}
.fs12_c00121{font-size:44.000000pt;}
.fsd_c00121{font-size:44.666667pt;}
.fs11_c00121{font-size:45.333333pt;}
.fs7_c00121{font-size:46.000000pt;}
.fs1e_c00121{font-size:46.666667pt;}
.fs16_c00121{font-size:47.333333pt;}
.fs13_c00121{font-size:48.000000pt;}
.fs18_c00121{font-size:48.666667pt;}
.fs3_c00121{font-size:64.000000pt;}
.fs4_c00121{font-size:64.666667pt;}
.fs2_c00121{font-size:69.333333pt;}
.fs1_c00121{font-size:70.000000pt;}
.fs19_c00121{font-size:76.666667pt;}
.fs0_c00121{font-size:80.000000pt;}
.fs5_c00121{font-size:97.333333pt;}
.fs6_c00121{font-size:117.333333pt;}
.fs20_c00121{font-size:128.666667pt;}
.y0_c00121{bottom:0.000000pt;}
.y11_c00121{bottom:182.399453pt;}
.y10_c00121{bottom:193.280253pt;}
.yf_c00121{bottom:254.080120pt;}
.ye_c00121{bottom:266.239720pt;}
.yd_c00121{bottom:278.399453pt;}
.yc_c00121{bottom:291.199200pt;}
.yb_c00121{bottom:303.999067pt;}
.ya_c00121{bottom:309.439453pt;}
.y9_c00121{bottom:315.839333pt;}
.y8_c00121{bottom:328.319867pt;}
.y7_c00121{bottom:341.119587pt;}
.y6_c00121{bottom:614.720253pt;}
.y5_c00121{bottom:671.359867pt;}
.y4_c00121{bottom:837.760253pt;}
.y2_c00121{bottom:965.119440pt;}
.y3_c00121{bottom:965.119547pt;}
.y1_c00121{bottom:1005.439453pt;}
.h2c_c00121{height:27.546875pt;}
.h29_c00121{height:27.812500pt;}
.h19_c00121{height:35.460938pt;}
.h23_c00121{height:35.578125pt;}
.h1f_c00121{height:36.156250pt;}
.h28_c00121{height:36.851562pt;}
.hd_c00121{height:37.546875pt;}
.h12_c00121{height:38.213542pt;}
.h20_c00121{height:38.937500pt;}
.h1b_c00121{height:39.632812pt;}
.h9_c00121{height:40.328125pt;}
.h22_c00121{height:40.984375pt;}
.hc_c00121{height:41.023438pt;}
.h18_c00121{height:41.220703pt;}
.h1d_c00121{height:41.507812pt;}
.h27_c00121{height:41.656250pt;}
.ha_c00121{height:41.718750pt;}
.h26_c00121{height:41.875000pt;}
.h21_c00121{height:42.166667pt;}
.hb_c00121{height:42.414062pt;}
.h25_c00121{height:42.529297pt;}
.h17_c00121{height:42.825521pt;}
.h10_c00121{height:43.000000pt;}
.hf_c00121{height:43.109375pt;}
.h11_c00121{height:43.671875pt;}
.h24_c00121{height:44.143229pt;}
.h14_c00121{height:44.343750pt;}
.h16_c00121{height:44.492188pt;}
.h2a_c00121{height:44.500000pt;}
.h13_c00121{height:44.802083pt;}
.he_c00121{height:45.015625pt;}
.h8_c00121{height:45.460938pt;}
.h1a_c00121{height:46.778646pt;}
.h2b_c00121{height:47.031250pt;}
.h15_c00121{height:47.437500pt;}
.h1c_c00121{height:48.096354pt;}
.h5_c00121{height:63.466797pt;}
.h4_c00121{height:64.500000pt;}
.h3_c00121{height:69.875000pt;}
.h2_c00121{height:70.546875pt;}
.h1_c00121{height:79.062500pt;}
.h1e_c00121{height:79.960938pt;}
.h6_c00121{height:101.515625pt;}
.h7_c00121{height:122.375000pt;}
.h2d_c00121{height:134.195312pt;}
.h0_c00121{height:1122.666667pt;}
.w0_c00121{width:793.333333pt;}
.x0_c00121{left:0.000000pt;}
.xc_c00121{left:118.079613pt;}
.x68_c00121{left:131.198667pt;}
.x51_c00121{left:138.559613pt;}
.x1f_c00121{left:147.518533pt;}
.x2e_c00121{left:149.759720pt;}
.x62_c00121{left:154.239200pt;}
.x3f_c00121{left:159.039587pt;}
.x2f_c00121{left:160.319867pt;}
.xd_c00121{left:162.559613pt;}
.x52_c00121{left:165.758813pt;}
.xa_c00121{left:166.719720pt;}
.x3_c00121{left:170.559080pt;}
.x40_c00121{left:172.479467pt;}
.xb_c00121{left:183.679733pt;}
.x8_c00121{left:185.598680pt;}
.xe_c00121{left:193.278787pt;}
.x69_c00121{left:194.239720pt;}
.x63_c00121{left:199.038533pt;}
.x30_c00121{left:200.639587pt;}
.x31_c00121{left:211.839867pt;}
.x41_c00121{left:212.799333pt;}
.x53_c00121{left:213.758787pt;}
.xf_c00121{left:220.479453pt;}
.x54_c00121{left:223.038533pt;}
.x9_c00121{left:228.159733pt;}
.x10_c00121{left:231.039587pt;}
.x4_c00121{left:233.598680pt;}
.x42_c00121{left:238.079587pt;}
.x32_c00121{left:244.798787pt;}
.x55_c00121{left:248.318787pt;}
.x5_c00121{left:250.558533pt;}
.x1_c00121{left:257.919453pt;}
.x64_c00121{left:258.878920pt;}
.x43_c00121{left:260.799333pt;}
.x20_c00121{left:263.679200pt;}
.x21_c00121{left:273.279720pt;}
.x11_c00121{left:280.639200pt;}
.x56_c00121{left:283.519067pt;}
.x33_c00121{left:286.079587pt;}
.x12_c00121{left:297.279720pt;}
.x44_c00121{left:298.239200pt;}
.x65_c00121{left:303.358933pt;}
.x66_c00121{left:314.559067pt;}
.x22_c00121{left:324.479067pt;}
.x57_c00121{left:328.319867pt;}
.x34_c00121{left:331.199733pt;}
.x13_c00121{left:335.039067pt;}
.x2_c00121{left:340.158693pt;}
.x35_c00121{left:342.399867pt;}
.x58_c00121{left:344.318813pt;}
.x59_c00121{left:353.598680pt;}
.x23_c00121{left:360.319333pt;}
.x45_c00121{left:362.239707pt;}
.x36_c00121{left:370.879307pt;}
.x67_c00121{left:373.439987pt;}
.x24_c00121{left:376.960000pt;}
.x46_c00121{left:378.878907pt;}
.x47_c00121{left:394.239173pt;}
.x5a_c00121{left:398.399453pt;}
.x25_c00121{left:399.358933pt;}
.x37_c00121{left:403.519040pt;}
.x48_c00121{left:406.079587pt;}
.x14_c00121{left:407.039067pt;}
.x5b_c00121{left:423.999067pt;}
.x15_c00121{left:424.960000pt;}
.x38_c00121{left:431.359867pt;}
.x49_c00121{left:437.119587pt;}
.x2d_c00121{left:449.598680pt;}
.x26_c00121{left:452.159173pt;}
.x16_c00121{left:454.398920pt;}
.x39_c00121{left:467.838907pt;}
.x17_c00121{left:469.439987pt;}
.x5c_c00121{left:475.199707pt;}
.x6_c00121{left:482.239707pt;}
.x3a_c00121{left:490.879307pt;}
.x27_c00121{left:500.479987pt;}
.x4a_c00121{left:507.839320pt;}
.x18_c00121{left:511.359333pt;}
.x6e_c00121{left:519.679733pt;}
.x5d_c00121{left:523.519040pt;}
.x6a_c00121{left:529.599573pt;}
.x5e_c00121{left:531.199173pt;}
.x7_c00121{left:535.038533pt;}
.x3b_c00121{left:538.239173pt;}
.x5f_c00121{left:540.799840pt;}
.x28_c00121{left:547.519040pt;}
.x4b_c00121{left:548.799320pt;}
.x19_c00121{left:565.119187pt;}
.x60_c00121{left:567.358933pt;}
.x1a_c00121{left:573.439453pt;}
.x4c_c00121{left:579.199173pt;}
.x29_c00121{left:581.438920pt;}
.x6b_c00121{left:585.599040pt;}
.x3c_c00121{left:587.519453pt;}
.x4d_c00121{left:591.358933pt;}
.x3d_c00121{left:603.199173pt;}
.x1b_c00121{left:607.038533pt;}
.x4e_c00121{left:614.399453pt;}
.x1c_c00121{left:615.679733pt;}
.x6c_c00121{left:617.598720pt;}
.x2a_c00121{left:622.398920pt;}
.x1d_c00121{left:625.918907pt;}
.x6d_c00121{left:630.399867pt;}
.x2b_c00121{left:646.719720pt;}
.x61_c00121{left:647.679200pt;}
.x3e_c00121{left:654.399867pt;}
.x4f_c00121{left:655.999427pt;}
.x50_c00121{left:670.398920pt;}
.x2c_c00121{left:672.638707pt;}
.x1e_c00121{left:677.119587pt;}
.x6f_c00121{left:724.158693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a671db5b15a2c60772f1e7a2.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_a8283e95d45c7a9c65382b3f.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_8b682002d998d0e7ff24bd35.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_52a56d4fea9b59eeb462a40a.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_1b03fd51113b641f2fe71f16.woff2')format("woff");}.ff5_c00122{font-family:ff5_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;}
.m17_c00122{transform:matrix(0.064516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064516,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154412,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{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_c00122{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.me_c00122{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);}
.m4_c00122{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m18_c00122{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m11_c00122{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m12_c00122{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m13_c00122{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.274457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274457,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.311538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311538,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls17_c00122{letter-spacing:-10.383750px;}
.ls1c_c00122{letter-spacing:-9.829950px;}
.ls19_c00122{letter-spacing:-8.253000px;}
.ls10_c00122{letter-spacing:-7.049700px;}
.ls16_c00122{letter-spacing:-3.871238px;}
.lsc_c00122{letter-spacing:-3.101393px;}
.ls1_c00122{letter-spacing:-2.499750px;}
.ls15_c00122{letter-spacing:-2.428110px;}
.lsa_c00122{letter-spacing:-2.407763px;}
.lsd_c00122{letter-spacing:-2.324228px;}
.ls2_c00122{letter-spacing:-1.665000px;}
.ls1d_c00122{letter-spacing:-1.500518px;}
.ls13_c00122{letter-spacing:-1.385700px;}
.ls1a_c00122{letter-spacing:-0.994500px;}
.ls4_c00122{letter-spacing:-0.833085px;}
.ls18_c00122{letter-spacing:-0.776085px;}
.ls3_c00122{letter-spacing:0.000000px;}
.ls7_c00122{letter-spacing:0.689325px;}
.ls6_c00122{letter-spacing:0.726150px;}
.ls0_c00122{letter-spacing:0.833085px;}
.ls12_c00122{letter-spacing:1.421550px;}
.lse_c00122{letter-spacing:2.182950px;}
.lsb_c00122{letter-spacing:2.682585px;}
.ls14_c00122{letter-spacing:3.284250px;}
.ls11_c00122{letter-spacing:3.930795px;}
.ls5_c00122{letter-spacing:4.039200px;}
.ls8_c00122{letter-spacing:4.354350px;}
.ls9_c00122{letter-spacing:9.514410px;}
.lsf_c00122{letter-spacing:15.248475px;}
.ls1b_c00122{letter-spacing:23.400900px;}
.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;}
._0_c00122{width:5.968463px;}
.fc0_c00122{color:transparent;}
.fs19_c00122{font-size:26.250000px;}
.fs13_c00122{font-size:40.500000px;}
.fs14_c00122{font-size:43.500000px;}
.fs18_c00122{font-size:44.250000px;}
.fse_c00122{font-size:45.750000px;}
.fsc_c00122{font-size:46.500000px;}
.fsf_c00122{font-size:47.250000px;}
.fsa_c00122{font-size:48.750000px;}
.fs10_c00122{font-size:49.500000px;}
.fs11_c00122{font-size:50.250000px;}
.fs15_c00122{font-size:51.000000px;}
.fs16_c00122{font-size:52.500000px;}
.fs17_c00122{font-size:53.250000px;}
.fsb_c00122{font-size:56.250000px;}
.fsd_c00122{font-size:58.500000px;}
.fs6_c00122{font-size:66.000000px;}
.fs8_c00122{font-size:68.250000px;}
.fs9_c00122{font-size:69.000000px;}
.fs5_c00122{font-size:69.750000px;}
.fs7_c00122{font-size:70.500000px;}
.fs3_c00122{font-size:76.500000px;}
.fs4_c00122{font-size:78.750000px;}
.fs2_c00122{font-size:81.750000px;}
.fs0_c00122{font-size:82.500000px;}
.fs1_c00122{font-size:83.250000px;}
.fs12_c00122{font-size:139.500000px;}
.y0_c00122{bottom:0.000000px;}
.ya_c00122{bottom:185.040000px;}
.y8_c00122{bottom:196.920000px;}
.y9_c00122{bottom:197.640150px;}
.y7_c00122{bottom:213.480285px;}
.y6_c00122{bottom:223.920000px;}
.y5_c00122{bottom:884.520270px;}
.y4_c00122{bottom:925.919955px;}
.y3_c00122{bottom:962.641290px;}
.y2_c00122{bottom:1091.879970px;}
.y1_c00122{bottom:1137.239775px;}
.h1e_c00122{height:25.750122px;}
.h15_c00122{height:42.240234px;}
.h17_c00122{height:45.369141px;}
.h1d_c00122{height:46.151367px;}
.h16_c00122{height:46.863281px;}
.hf_c00122{height:47.715820px;}
.h1b_c00122{height:48.178711px;}
.hd_c00122{height:48.498047px;}
.h14_c00122{height:48.581543px;}
.h19_c00122{height:49.130859px;}
.h10_c00122{height:49.280273px;}
.h12_c00122{height:49.661133px;}
.h11_c00122{height:49.886719px;}
.h18_c00122{height:50.402344px;}
.hb_c00122{height:50.844727px;}
.h1a_c00122{height:51.884766px;}
.h1c_c00122{height:52.625977px;}
.hc_c00122{height:55.590820px;}
.he_c00122{height:57.814453px;}
.h7_c00122{height:64.775391px;}
.h6_c00122{height:68.455811px;}
.h9_c00122{height:68.783203px;}
.h8_c00122{height:69.191895px;}
.ha_c00122{height:69.539062px;}
.h4_c00122{height:77.097656px;}
.h5_c00122{height:79.365234px;}
.h3_c00122{height:82.388672px;}
.h1_c00122{height:83.144531px;}
.h2_c00122{height:83.900391px;}
.h13_c00122{height:136.911621px;}
.h0_c00122{height:1263.000000px;}
.w0_c00122{width:892.500000px;}
.x0_c00122{left:0.000000px;}
.x17_c00122{left:139.678500px;}
.xe_c00122{left:143.279250px;}
.x18_c00122{left:163.438665px;}
.xf_c00122{left:201.959400px;}
.x10_c00122{left:213.478635px;}
.x19_c00122{left:221.039400px;}
.x11_c00122{left:233.998950px;}
.x1a_c00122{left:261.359850px;}
.x1_c00122{left:286.919535px;}
.x1b_c00122{left:314.278800px;}
.x9_c00122{left:324.718500px;}
.x1c_c00122{left:331.199850px;}
.x4_c00122{left:342.719100px;}
.xa_c00122{left:370.798515px;}
.x1d_c00122{left:373.319850px;}
.x2_c00122{left:379.079385px;}
.x22_c00122{left:380.878950px;}
.x1e_c00122{left:388.078815px;}
.x12_c00122{left:393.119985px;}
.x5_c00122{left:412.918350px;}
.x7_c00122{left:435.599070px;}
.x6_c00122{left:443.878320px;}
.x3_c00122{left:479.159415px;}
.x8_c00122{left:491.398635px;}
.xb_c00122{left:521.279250px;}
.xc_c00122{left:590.758530px;}
.xd_c00122{left:620.279850px;}
.x1f_c00122{left:633.959385px;}
.x13_c00122{left:654.118785px;}
.x20_c00122{left:663.479235px;}
.x21_c00122{left:678.239820px;}
.x14_c00122{left:690.119985px;}
.x15_c00122{left:704.158770px;}
.x16_c00122{left:810.359250px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls17_c00122{letter-spacing:-9.230000pt;}
.ls1c_c00122{letter-spacing:-8.737733pt;}
.ls19_c00122{letter-spacing:-7.336000pt;}
.ls10_c00122{letter-spacing:-6.266400pt;}
.ls16_c00122{letter-spacing:-3.441100pt;}
.lsc_c00122{letter-spacing:-2.756793pt;}
.ls1_c00122{letter-spacing:-2.222000pt;}
.ls15_c00122{letter-spacing:-2.158320pt;}
.lsa_c00122{letter-spacing:-2.140233pt;}
.lsd_c00122{letter-spacing:-2.065980pt;}
.ls2_c00122{letter-spacing:-1.480000pt;}
.ls1d_c00122{letter-spacing:-1.333793pt;}
.ls13_c00122{letter-spacing:-1.231733pt;}
.ls1a_c00122{letter-spacing:-0.884000pt;}
.ls4_c00122{letter-spacing:-0.740520pt;}
.ls18_c00122{letter-spacing:-0.689853pt;}
.ls3_c00122{letter-spacing:0.000000pt;}
.ls7_c00122{letter-spacing:0.612733pt;}
.ls6_c00122{letter-spacing:0.645467pt;}
.ls0_c00122{letter-spacing:0.740520pt;}
.ls12_c00122{letter-spacing:1.263600pt;}
.lse_c00122{letter-spacing:1.940400pt;}
.lsb_c00122{letter-spacing:2.384520pt;}
.ls14_c00122{letter-spacing:2.919333pt;}
.ls11_c00122{letter-spacing:3.494040pt;}
.ls5_c00122{letter-spacing:3.590400pt;}
.ls8_c00122{letter-spacing:3.870533pt;}
.ls9_c00122{letter-spacing:8.457253pt;}
.lsf_c00122{letter-spacing:13.554200pt;}
.ls1b_c00122{letter-spacing:20.800800pt;}
.ws0_c00122{word-spacing:0.000000pt;}
._0_c00122{width:5.305301pt;}
.fs19_c00122{font-size:23.333333pt;}
.fs13_c00122{font-size:36.000000pt;}
.fs14_c00122{font-size:38.666667pt;}
.fs18_c00122{font-size:39.333333pt;}
.fse_c00122{font-size:40.666667pt;}
.fsc_c00122{font-size:41.333333pt;}
.fsf_c00122{font-size:42.000000pt;}
.fsa_c00122{font-size:43.333333pt;}
.fs10_c00122{font-size:44.000000pt;}
.fs11_c00122{font-size:44.666667pt;}
.fs15_c00122{font-size:45.333333pt;}
.fs16_c00122{font-size:46.666667pt;}
.fs17_c00122{font-size:47.333333pt;}
.fsb_c00122{font-size:50.000000pt;}
.fsd_c00122{font-size:52.000000pt;}
.fs6_c00122{font-size:58.666667pt;}
.fs8_c00122{font-size:60.666667pt;}
.fs9_c00122{font-size:61.333333pt;}
.fs5_c00122{font-size:62.000000pt;}
.fs7_c00122{font-size:62.666667pt;}
.fs3_c00122{font-size:68.000000pt;}
.fs4_c00122{font-size:70.000000pt;}
.fs2_c00122{font-size:72.666667pt;}
.fs0_c00122{font-size:73.333333pt;}
.fs1_c00122{font-size:74.000000pt;}
.fs12_c00122{font-size:124.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.ya_c00122{bottom:164.480000pt;}
.y8_c00122{bottom:175.040000pt;}
.y9_c00122{bottom:175.680133pt;}
.y7_c00122{bottom:189.760253pt;}
.y6_c00122{bottom:199.040000pt;}
.y5_c00122{bottom:786.240240pt;}
.y4_c00122{bottom:823.039960pt;}
.y3_c00122{bottom:855.681147pt;}
.y2_c00122{bottom:970.559973pt;}
.y1_c00122{bottom:1010.879800pt;}
.h1e_c00122{height:22.888997pt;}
.h15_c00122{height:37.546875pt;}
.h17_c00122{height:40.328125pt;}
.h1d_c00122{height:41.023438pt;}
.h16_c00122{height:41.656250pt;}
.hf_c00122{height:42.414062pt;}
.h1b_c00122{height:42.825521pt;}
.hd_c00122{height:43.109375pt;}
.h14_c00122{height:43.183594pt;}
.h19_c00122{height:43.671875pt;}
.h10_c00122{height:43.804688pt;}
.h12_c00122{height:44.143229pt;}
.h11_c00122{height:44.343750pt;}
.h18_c00122{height:44.802083pt;}
.hb_c00122{height:45.195312pt;}
.h1a_c00122{height:46.119792pt;}
.h1c_c00122{height:46.778646pt;}
.hc_c00122{height:49.414063pt;}
.he_c00122{height:51.390625pt;}
.h7_c00122{height:57.578125pt;}
.h6_c00122{height:60.849609pt;}
.h9_c00122{height:61.140625pt;}
.h8_c00122{height:61.503906pt;}
.ha_c00122{height:61.812500pt;}
.h4_c00122{height:68.531250pt;}
.h5_c00122{height:70.546875pt;}
.h3_c00122{height:73.234375pt;}
.h1_c00122{height:73.906250pt;}
.h2_c00122{height:74.578125pt;}
.h13_c00122{height:121.699219pt;}
.h0_c00122{height:1122.666667pt;}
.w0_c00122{width:793.333333pt;}
.x0_c00122{left:0.000000pt;}
.x17_c00122{left:124.158667pt;}
.xe_c00122{left:127.359333pt;}
.x18_c00122{left:145.278813pt;}
.xf_c00122{left:179.519467pt;}
.x10_c00122{left:189.758787pt;}
.x19_c00122{left:196.479467pt;}
.x11_c00122{left:207.999067pt;}
.x1a_c00122{left:232.319867pt;}
.x1_c00122{left:255.039587pt;}
.x1b_c00122{left:279.358933pt;}
.x9_c00122{left:288.638667pt;}
.x1c_c00122{left:294.399867pt;}
.x4_c00122{left:304.639200pt;}
.xa_c00122{left:329.598680pt;}
.x1d_c00122{left:331.839867pt;}
.x2_c00122{left:336.959453pt;}
.x22_c00122{left:338.559067pt;}
.x1e_c00122{left:344.958947pt;}
.x12_c00122{left:349.439987pt;}
.x5_c00122{left:367.038533pt;}
.x7_c00122{left:387.199173pt;}
.x6_c00122{left:394.558507pt;}
.x3_c00122{left:425.919480pt;}
.x8_c00122{left:436.798787pt;}
.xb_c00122{left:463.359333pt;}
.xc_c00122{left:525.118693pt;}
.xd_c00122{left:551.359867pt;}
.x1f_c00122{left:563.519453pt;}
.x13_c00122{left:581.438920pt;}
.x20_c00122{left:589.759320pt;}
.x21_c00122{left:602.879840pt;}
.x14_c00122{left:613.439987pt;}
.x15_c00122{left:625.918907pt;}
.x16_c00122{left:720.319333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_474067808796a60d2aa09258.woff2')format("woff");}.ff1_c00123{font-family:ff1_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:ff2_c00123;src:url('chunks/assets/font_6fef1592934ef59fbd2d69d1.woff2')format("woff");}.ff2_c00123{font-family:ff2_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;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_cbf03dd2665e019e49817268.woff2')format("woff");}.ff3_c00123{font-family:ff3_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:ff4_c00123;src:url('chunks/assets/font_dc00d0dd881d99936853be09.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;}
@font-face{font-family:ff5_c00123;src:url('chunks/assets/font_4ac6b7a39b2da41bf460e17a.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00123;src:url('chunks/assets/font_c6d90ca11488325d672109e5.woff2')format("woff");}.ff6_c00123{font-family:ff6_c00123;line-height:1.281250;font-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_c00123{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m28_c00123{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m42_c00123{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m3e_c00123{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m43_c00123{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m22_c00123{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m36_c00123{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3f_c00123{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m38_c00123{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m14_c00123{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m34_c00123{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.mb_c00123{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m30_c00123{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m3d_c00123{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m40_c00123{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);}
.m41_c00123{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.m35_c00123{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.ma_c00123{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.m25_c00123{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);}
.m3c_c00123{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m8_c00123{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m20_c00123{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{transform:matrix(0.339623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339623,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{transform:matrix(0.355932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355932,0.000000,0.000000,0.250000,0,0);}
.m39_c00123{transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);}
.m37_c00123{transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.427966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427966,0.000000,0.000000,0.250000,0,0);}
.m3a_c00123{transform:matrix(0.702703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702703,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls2f_c00123{letter-spacing:-27.354908px;}
.lsf_c00123{letter-spacing:-12.636855px;}
.ls2c_c00123{letter-spacing:-7.497263px;}
.ls6_c00123{letter-spacing:-7.247100px;}
.ls28_c00123{letter-spacing:-6.729368px;}
.ls14_c00123{letter-spacing:-5.999400px;}
.ls10_c00123{letter-spacing:-5.589000px;}
.ls32_c00123{letter-spacing:-5.159925px;}
.ls2a_c00123{letter-spacing:-5.062500px;}
.ls24_c00123{letter-spacing:-4.430400px;}
.ls13_c00123{letter-spacing:-4.428000px;}
.ls33_c00123{letter-spacing:-4.084800px;}
.ls1e_c00123{letter-spacing:-3.942675px;}
.ls19_c00123{letter-spacing:-3.929250px;}
.ls31_c00123{letter-spacing:-3.784935px;}
.ls1a_c00123{letter-spacing:-3.648375px;}
.ls2d_c00123{letter-spacing:-3.612375px;}
.ls2e_c00123{letter-spacing:-3.301650px;}
.ls1_c00123{letter-spacing:-3.269183px;}
.ls1c_c00123{letter-spacing:-3.197250px;}
.ls45_c00123{letter-spacing:-3.101550px;}
.ls36_c00123{letter-spacing:-3.054135px;}
.ls39_c00123{letter-spacing:-3.000000px;}
.ls37_c00123{letter-spacing:-2.951520px;}
.ls46_c00123{letter-spacing:-2.902800px;}
.lsd_c00123{letter-spacing:-2.692395px;}
.ls22_c00123{letter-spacing:-2.632433px;}
.ls5_c00123{letter-spacing:-2.536845px;}
.ls27_c00123{letter-spacing:-2.491920px;}
.ls26_c00123{letter-spacing:-2.325000px;}
.ls3f_c00123{letter-spacing:-2.182950px;}
.ls3d_c00123{letter-spacing:-2.047500px;}
.ls11_c00123{letter-spacing:-1.942448px;}
.ls30_c00123{letter-spacing:-1.911000px;}
.ls2_c00123{letter-spacing:-1.635000px;}
.ls3c_c00123{letter-spacing:-1.598400px;}
.ls16_c00123{letter-spacing:-1.547985px;}
.ls35_c00123{letter-spacing:-1.525875px;}
.ls1b_c00123{letter-spacing:-1.478880px;}
.ls42_c00123{letter-spacing:-1.451843px;}
.ls12_c00123{letter-spacing:-1.040400px;}
.ls2b_c00123{letter-spacing:-0.994500px;}
.ls3_c00123{letter-spacing:-0.866550px;}
.ls40_c00123{letter-spacing:-0.859200px;}
.ls41_c00123{letter-spacing:-0.824100px;}
.lsb_c00123{letter-spacing:0.000000px;}
.ls44_c00123{letter-spacing:0.840000px;}
.ls1d_c00123{letter-spacing:1.740863px;}
.ls3e_c00123{letter-spacing:1.979250px;}
.ls1f_c00123{letter-spacing:2.613000px;}
.ls29_c00123{letter-spacing:2.951520px;}
.ls7_c00123{letter-spacing:3.339150px;}
.ls21_c00123{letter-spacing:3.480750px;}
.ls18_c00123{letter-spacing:3.975750px;}
.ls38_c00123{letter-spacing:4.430400px;}
.lse_c00123{letter-spacing:4.669725px;}
.ls34_c00123{letter-spacing:5.169600px;}
.lsa_c00123{letter-spacing:5.339250px;}
.ls25_c00123{letter-spacing:6.093750px;}
.ls17_c00123{letter-spacing:6.959700px;}
.lsc_c00123{letter-spacing:8.926200px;}
.ls4_c00123{letter-spacing:8.976825px;}
.ls15_c00123{letter-spacing:9.165750px;}
.ls9_c00123{letter-spacing:9.576000px;}
.ls43_c00123{letter-spacing:9.976200px;}
.ls3a_c00123{letter-spacing:10.998900px;}
.ls8_c00123{letter-spacing:13.765500px;}
.ls23_c00123{letter-spacing:16.933050px;}
.ls0_c00123{letter-spacing:22.891200px;}
.ls20_c00123{letter-spacing:29.306992px;}
.ls3b_c00123{letter-spacing:80.491200px;}
.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;}
._1_c00123{margin-left:-94.391882px;}
._2_c00123{margin-left:-1.824155px;}
._0_c00123{width:7.858399px;}
.fc0_c00123{color:transparent;}
.fs16_c00123{font-size:35.250000px;}
.fs1f_c00123{font-size:39.000000px;}
.fs1b_c00123{font-size:39.750000px;}
.fs10_c00123{font-size:41.250000px;}
.fs1c_c00123{font-size:42.000000px;}
.fs13_c00123{font-size:42.750000px;}
.fs14_c00123{font-size:43.500000px;}
.fs17_c00123{font-size:44.250000px;}
.fs12_c00123{font-size:45.000000px;}
.fs18_c00123{font-size:45.750000px;}
.fs11_c00123{font-size:46.500000px;}
.fsd_c00123{font-size:47.250000px;}
.fsf_c00123{font-size:48.000000px;}
.fs15_c00123{font-size:48.750000px;}
.fsa_c00123{font-size:49.500000px;}
.fs1e_c00123{font-size:50.250000px;}
.fse_c00123{font-size:51.000000px;}
.fsc_c00123{font-size:54.000000px;}
.fs19_c00123{font-size:55.500000px;}
.fs7_c00123{font-size:58.500000px;}
.fs1a_c00123{font-size:72.000000px;}
.fs1_c00123{font-size:74.250000px;}
.fs5_c00123{font-size:78.750000px;}
.fs2_c00123{font-size:79.500000px;}
.fs8_c00123{font-size:81.000000px;}
.fs0_c00123{font-size:81.750000px;}
.fs1d_c00123{font-size:83.250000px;}
.fs6_c00123{font-size:84.000000px;}
.fs4_c00123{font-size:84.750000px;}
.fs9_c00123{font-size:85.500000px;}
.fs3_c00123{font-size:87.000000px;}
.fsb_c00123{font-size:115.500000px;}
.y0_c00123{bottom:0.000000px;}
.yb_c00123{bottom:192.600750px;}
.yc_c00123{bottom:194.759535px;}
.ya_c00123{bottom:357.120435px;}
.y9_c00123{bottom:373.499385px;}
.y8_c00123{bottom:385.199850px;}
.y7_c00123{bottom:543.239820px;}
.y6_c00123{bottom:710.640150px;}
.y5_c00123{bottom:786.960015px;}
.y4_c00123{bottom:825.480840px;}
.y3_c00123{bottom:934.919490px;}
.y2_c00123{bottom:1087.919955px;}
.y1_c00123{bottom:1133.640750px;}
.h18_c00123{height:34.836914px;}
.h2b_c00123{height:40.675781px;}
.h1f_c00123{height:41.458008px;}
.h12_c00123{height:43.022461px;}
.h20_c00123{height:43.804688px;}
.h28_c00123{height:43.839844px;}
.h27_c00123{height:44.165039px;}
.h15_c00123{height:44.586914px;}
.h16_c00123{height:45.369141px;}
.h19_c00123{height:45.955078px;}
.h1a_c00123{height:46.151367px;}
.he_c00123{height:46.373291px;}
.h13_c00123{height:46.863281px;}
.h14_c00123{height:46.933594px;}
.h23_c00123{height:47.437500px;}
.h25_c00123{height:47.619141px;}
.h1b_c00123{height:47.715820px;}
.h24_c00123{height:47.845459px;}
.h21_c00123{height:48.178711px;}
.h11_c00123{height:48.375000px;}
.h2a_c00123{height:48.581543px;}
.h22_c00123{height:48.919922px;}
.h17_c00123{height:49.130859px;}
.h1d_c00123{height:49.886719px;}
.hf_c00123{height:50.402344px;}
.h29_c00123{height:50.642578px;}
.hb_c00123{height:51.626953px;}
.h10_c00123{height:52.971680px;}
.hd_c00123{height:53.367188px;}
.h1c_c00123{height:54.849609px;}
.h8_c00123{height:57.414551px;}
.h1e_c00123{height:75.093750px;}
.h2_c00123{height:77.440430px;}
.h9_c00123{height:79.497070px;}
.h3_c00123{height:80.121094px;}
.h6_c00123{height:82.133789px;}
.h1_c00123{height:82.388672px;}
.h7_c00123{height:82.441406px;}
.h5_c00123{height:83.177490px;}
.ha_c00123{height:83.913574px;}
.h4_c00123{height:85.385742px;}
.h26_c00123{height:86.827148px;}
.hc_c00123{height:120.462891px;}
.h0_c00123{height:1263.000000px;}
.w0_c00123{width:892.500000px;}
.x0_c00123{left:0.000000px;}
.xd_c00123{left:132.478665px;}
.xf_c00123{left:136.438665px;}
.x49_c00123{left:148.318800px;}
.x10_c00123{left:150.838515px;}
.x22_c00123{left:161.279850px;}
.x11_c00123{left:170.999400px;}
.x4a_c00123{left:172.439715px;}
.x12_c00123{left:185.399250px;}
.x13_c00123{left:200.519100px;}
.x23_c00123{left:204.120000px;}
.x3b_c00123{left:210.599700px;}
.x24_c00123{left:228.959400px;}
.x3c_c00123{left:241.198785px;}
.x14_c00123{left:244.079385px;}
.x25_c00123{left:245.878950px;}
.x4b_c00123{left:270.000000px;}
.x26_c00123{left:273.958350px;}
.x3d_c00123{left:275.039385px;}
.x1_c00123{left:292.679100px;}
.x27_c00123{left:298.079385px;}
.x15_c00123{left:301.678500px;}
.x6_c00123{left:304.199850px;}
.x3e_c00123{left:311.038950px;}
.x28_c00123{left:312.120000px;}
.x3f_c00123{left:321.839535px;}
.x16_c00123{left:323.279850px;}
.x5_c00123{left:328.678500px;}
.x4c_c00123{left:339.838515px;}
.x29_c00123{left:363.239250px;}
.x2a_c00123{left:372.238785px;}
.x40_c00123{left:375.478635px;}
.x7_c00123{left:378.718530px;}
.x4d_c00123{left:381.958350px;}
.x17_c00123{left:389.159820px;}
.x2b_c00123{left:397.080000px;}
.x18_c00123{left:403.559685px;}
.x3_c00123{left:409.678530px;}
.x2c_c00123{left:413.638500px;}
.x19_c00123{left:415.439670px;}
.x8_c00123{left:416.519070px;}
.x1a_c00123{left:438.118785px;}
.x4_c00123{left:440.638500px;}
.x2d_c00123{left:445.679670px;}
.x2e_c00123{left:455.399235px;}
.x1b_c00123{left:460.079400px;}
.x2f_c00123{left:462.599070px;}
.x30_c00123{left:481.679070px;}
.x2_c00123{left:484.559685px;}
.x41_c00123{left:487.438665px;}
.x42_c00123{left:498.598530px;}
.xe_c00123{left:511.918950px;}
.x1c_c00123{left:529.919535px;}
.x9_c00123{left:534.238770px;}
.x31_c00123{left:537.119385px;}
.x1d_c00123{left:545.039385px;}
.x32_c00123{left:548.999400px;}
.x43_c00123{left:551.519070px;}
.xa_c00123{left:557.639700px;}
.x33_c00123{left:567.000000px;}
.x1e_c00123{left:573.838950px;}
.x34_c00123{left:575.279250px;}
.xb_c00123{left:595.438620px;}
.x4e_c00123{left:600.118785px;}
.x44_c00123{left:602.638545px;}
.x35_c00123{left:605.159820px;}
.x45_c00123{left:616.319820px;}
.x36_c00123{left:618.839535px;}
.x46_c00123{left:627.838950px;}
.xc_c00123{left:642.238770px;}
.x1f_c00123{left:653.039385px;}
.x47_c00123{left:657.719520px;}
.x4f_c00123{left:671.758530px;}
.x50_c00123{left:686.159820px;}
.x51_c00123{left:695.518620px;}
.x37_c00123{left:700.559685px;}
.x20_c00123{left:708.838950px;}
.x38_c00123{left:714.239220px;}
.x48_c00123{left:722.879520px;}
.x21_c00123{left:736.918350px;}
.x39_c00123{left:745.558635px;}
.x3a_c00123{left:756.718545px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls2f_c00123{letter-spacing:-24.315473pt;}
.lsf_c00123{letter-spacing:-11.232760pt;}
.ls2c_c00123{letter-spacing:-6.664233pt;}
.ls6_c00123{letter-spacing:-6.441867pt;}
.ls28_c00123{letter-spacing:-5.981660pt;}
.ls14_c00123{letter-spacing:-5.332800pt;}
.ls10_c00123{letter-spacing:-4.968000pt;}
.ls32_c00123{letter-spacing:-4.586600pt;}
.ls2a_c00123{letter-spacing:-4.500000pt;}
.ls24_c00123{letter-spacing:-3.938133pt;}
.ls13_c00123{letter-spacing:-3.936000pt;}
.ls33_c00123{letter-spacing:-3.630933pt;}
.ls1e_c00123{letter-spacing:-3.504600pt;}
.ls19_c00123{letter-spacing:-3.492667pt;}
.ls31_c00123{letter-spacing:-3.364387pt;}
.ls1a_c00123{letter-spacing:-3.243000pt;}
.ls2d_c00123{letter-spacing:-3.211000pt;}
.ls2e_c00123{letter-spacing:-2.934800pt;}
.ls1_c00123{letter-spacing:-2.905940pt;}
.ls1c_c00123{letter-spacing:-2.842000pt;}
.ls45_c00123{letter-spacing:-2.756933pt;}
.ls36_c00123{letter-spacing:-2.714787pt;}
.ls39_c00123{letter-spacing:-2.666667pt;}
.ls37_c00123{letter-spacing:-2.623573pt;}
.ls46_c00123{letter-spacing:-2.580267pt;}
.lsd_c00123{letter-spacing:-2.393240pt;}
.ls22_c00123{letter-spacing:-2.339940pt;}
.ls5_c00123{letter-spacing:-2.254973pt;}
.ls27_c00123{letter-spacing:-2.215040pt;}
.ls26_c00123{letter-spacing:-2.066667pt;}
.ls3f_c00123{letter-spacing:-1.940400pt;}
.ls3d_c00123{letter-spacing:-1.820000pt;}
.ls11_c00123{letter-spacing:-1.726620pt;}
.ls30_c00123{letter-spacing:-1.698667pt;}
.ls2_c00123{letter-spacing:-1.453333pt;}
.ls3c_c00123{letter-spacing:-1.420800pt;}
.ls16_c00123{letter-spacing:-1.375987pt;}
.ls35_c00123{letter-spacing:-1.356333pt;}
.ls1b_c00123{letter-spacing:-1.314560pt;}
.ls42_c00123{letter-spacing:-1.290527pt;}
.ls12_c00123{letter-spacing:-0.924800pt;}
.ls2b_c00123{letter-spacing:-0.884000pt;}
.ls3_c00123{letter-spacing:-0.770267pt;}
.ls40_c00123{letter-spacing:-0.763733pt;}
.ls41_c00123{letter-spacing:-0.732533pt;}
.lsb_c00123{letter-spacing:0.000000pt;}
.ls44_c00123{letter-spacing:0.746667pt;}
.ls1d_c00123{letter-spacing:1.547433pt;}
.ls3e_c00123{letter-spacing:1.759333pt;}
.ls1f_c00123{letter-spacing:2.322667pt;}
.ls29_c00123{letter-spacing:2.623573pt;}
.ls7_c00123{letter-spacing:2.968133pt;}
.ls21_c00123{letter-spacing:3.094000pt;}
.ls18_c00123{letter-spacing:3.534000pt;}
.ls38_c00123{letter-spacing:3.938133pt;}
.lse_c00123{letter-spacing:4.150867pt;}
.ls34_c00123{letter-spacing:4.595200pt;}
.lsa_c00123{letter-spacing:4.746000pt;}
.ls25_c00123{letter-spacing:5.416667pt;}
.ls17_c00123{letter-spacing:6.186400pt;}
.lsc_c00123{letter-spacing:7.934400pt;}
.ls4_c00123{letter-spacing:7.979400pt;}
.ls15_c00123{letter-spacing:8.147333pt;}
.ls9_c00123{letter-spacing:8.512000pt;}
.ls43_c00123{letter-spacing:8.867733pt;}
.ls3a_c00123{letter-spacing:9.776800pt;}
.ls8_c00123{letter-spacing:12.236000pt;}
.ls23_c00123{letter-spacing:15.051600pt;}
.ls0_c00123{letter-spacing:20.347733pt;}
.ls20_c00123{letter-spacing:26.050660pt;}
.ls3b_c00123{letter-spacing:71.547733pt;}
.ws0_c00123{word-spacing:0.000000pt;}
._1_c00123{margin-left:-83.903895pt;}
._2_c00123{margin-left:-1.621471pt;}
._0_c00123{width:6.985243pt;}
.fs16_c00123{font-size:31.333333pt;}
.fs1f_c00123{font-size:34.666667pt;}
.fs1b_c00123{font-size:35.333333pt;}
.fs10_c00123{font-size:36.666667pt;}
.fs1c_c00123{font-size:37.333333pt;}
.fs13_c00123{font-size:38.000000pt;}
.fs14_c00123{font-size:38.666667pt;}
.fs17_c00123{font-size:39.333333pt;}
.fs12_c00123{font-size:40.000000pt;}
.fs18_c00123{font-size:40.666667pt;}
.fs11_c00123{font-size:41.333333pt;}
.fsd_c00123{font-size:42.000000pt;}
.fsf_c00123{font-size:42.666667pt;}
.fs15_c00123{font-size:43.333333pt;}
.fsa_c00123{font-size:44.000000pt;}
.fs1e_c00123{font-size:44.666667pt;}
.fse_c00123{font-size:45.333333pt;}
.fsc_c00123{font-size:48.000000pt;}
.fs19_c00123{font-size:49.333333pt;}
.fs7_c00123{font-size:52.000000pt;}
.fs1a_c00123{font-size:64.000000pt;}
.fs1_c00123{font-size:66.000000pt;}
.fs5_c00123{font-size:70.000000pt;}
.fs2_c00123{font-size:70.666667pt;}
.fs8_c00123{font-size:72.000000pt;}
.fs0_c00123{font-size:72.666667pt;}
.fs1d_c00123{font-size:74.000000pt;}
.fs6_c00123{font-size:74.666667pt;}
.fs4_c00123{font-size:75.333333pt;}
.fs9_c00123{font-size:76.000000pt;}
.fs3_c00123{font-size:77.333333pt;}
.fsb_c00123{font-size:102.666667pt;}
.y0_c00123{bottom:0.000000pt;}
.yb_c00123{bottom:171.200667pt;}
.yc_c00123{bottom:173.119587pt;}
.ya_c00123{bottom:317.440387pt;}
.y9_c00123{bottom:331.999453pt;}
.y8_c00123{bottom:342.399867pt;}
.y7_c00123{bottom:482.879840pt;}
.y6_c00123{bottom:631.680133pt;}
.y5_c00123{bottom:699.520013pt;}
.y4_c00123{bottom:733.760747pt;}
.y3_c00123{bottom:831.039547pt;}
.y2_c00123{bottom:967.039960pt;}
.y1_c00123{bottom:1007.680667pt;}
.h18_c00123{height:30.966146pt;}
.h2b_c00123{height:36.156250pt;}
.h1f_c00123{height:36.851562pt;}
.h12_c00123{height:38.242188pt;}
.h20_c00123{height:38.937500pt;}
.h28_c00123{height:38.968750pt;}
.h27_c00123{height:39.257812pt;}
.h15_c00123{height:39.632812pt;}
.h16_c00123{height:40.328125pt;}
.h19_c00123{height:40.848958pt;}
.h1a_c00123{height:41.023438pt;}
.he_c00123{height:41.220703pt;}
.h13_c00123{height:41.656250pt;}
.h14_c00123{height:41.718750pt;}
.h23_c00123{height:42.166667pt;}
.h25_c00123{height:42.328125pt;}
.h1b_c00123{height:42.414062pt;}
.h24_c00123{height:42.529297pt;}
.h21_c00123{height:42.825521pt;}
.h11_c00123{height:43.000000pt;}
.h2a_c00123{height:43.183594pt;}
.h22_c00123{height:43.484375pt;}
.h17_c00123{height:43.671875pt;}
.h1d_c00123{height:44.343750pt;}
.hf_c00123{height:44.802083pt;}
.h29_c00123{height:45.015625pt;}
.hb_c00123{height:45.890625pt;}
.h10_c00123{height:47.085938pt;}
.hd_c00123{height:47.437500pt;}
.h1c_c00123{height:48.755208pt;}
.h8_c00123{height:51.035156pt;}
.h1e_c00123{height:66.750000pt;}
.h2_c00123{height:68.835938pt;}
.h9_c00123{height:70.664062pt;}
.h3_c00123{height:71.218750pt;}
.h6_c00123{height:73.007812pt;}
.h1_c00123{height:73.234375pt;}
.h7_c00123{height:73.281250pt;}
.h5_c00123{height:73.935547pt;}
.ha_c00123{height:74.589844pt;}
.h4_c00123{height:75.898438pt;}
.h26_c00123{height:77.179688pt;}
.hc_c00123{height:107.078125pt;}
.h0_c00123{height:1122.666667pt;}
.w0_c00123{width:793.333333pt;}
.x0_c00123{left:0.000000pt;}
.xd_c00123{left:117.758813pt;}
.xf_c00123{left:121.278813pt;}
.x49_c00123{left:131.838933pt;}
.x10_c00123{left:134.078680pt;}
.x22_c00123{left:143.359867pt;}
.x11_c00123{left:151.999467pt;}
.x4a_c00123{left:153.279747pt;}
.x12_c00123{left:164.799333pt;}
.x13_c00123{left:178.239200pt;}
.x23_c00123{left:181.440000pt;}
.x3b_c00123{left:187.199733pt;}
.x24_c00123{left:203.519467pt;}
.x3c_c00123{left:214.398920pt;}
.x14_c00123{left:216.959453pt;}
.x25_c00123{left:218.559067pt;}
.x4b_c00123{left:240.000000pt;}
.x26_c00123{left:243.518533pt;}
.x3d_c00123{left:244.479453pt;}
.x1_c00123{left:260.159200pt;}
.x27_c00123{left:264.959453pt;}
.x15_c00123{left:268.158667pt;}
.x6_c00123{left:270.399867pt;}
.x3e_c00123{left:276.479067pt;}
.x28_c00123{left:277.440000pt;}
.x3f_c00123{left:286.079587pt;}
.x16_c00123{left:287.359867pt;}
.x5_c00123{left:292.158667pt;}
.x4c_c00123{left:302.078680pt;}
.x29_c00123{left:322.879333pt;}
.x2a_c00123{left:330.878920pt;}
.x40_c00123{left:333.758787pt;}
.x7_c00123{left:336.638693pt;}
.x4d_c00123{left:339.518533pt;}
.x17_c00123{left:345.919840pt;}
.x2b_c00123{left:352.960000pt;}
.x18_c00123{left:358.719720pt;}
.x3_c00123{left:364.158693pt;}
.x2c_c00123{left:367.678667pt;}
.x19_c00123{left:369.279707pt;}
.x8_c00123{left:370.239173pt;}
.x1a_c00123{left:389.438920pt;}
.x4_c00123{left:391.678667pt;}
.x2d_c00123{left:396.159707pt;}
.x2e_c00123{left:404.799320pt;}
.x1b_c00123{left:408.959467pt;}
.x2f_c00123{left:411.199173pt;}
.x30_c00123{left:428.159173pt;}
.x2_c00123{left:430.719720pt;}
.x41_c00123{left:433.278813pt;}
.x42_c00123{left:443.198693pt;}
.xe_c00123{left:455.039067pt;}
.x1c_c00123{left:471.039587pt;}
.x9_c00123{left:474.878907pt;}
.x31_c00123{left:477.439453pt;}
.x1d_c00123{left:484.479453pt;}
.x32_c00123{left:487.999467pt;}
.x43_c00123{left:490.239173pt;}
.xa_c00123{left:495.679733pt;}
.x33_c00123{left:504.000000pt;}
.x1e_c00123{left:510.079067pt;}
.x34_c00123{left:511.359333pt;}
.xb_c00123{left:529.278773pt;}
.x4e_c00123{left:533.438920pt;}
.x44_c00123{left:535.678707pt;}
.x35_c00123{left:537.919840pt;}
.x45_c00123{left:547.839840pt;}
.x36_c00123{left:550.079587pt;}
.x46_c00123{left:558.079067pt;}
.xc_c00123{left:570.878907pt;}
.x1f_c00123{left:580.479453pt;}
.x47_c00123{left:584.639573pt;}
.x4f_c00123{left:597.118693pt;}
.x50_c00123{left:609.919840pt;}
.x51_c00123{left:618.238773pt;}
.x37_c00123{left:622.719720pt;}
.x20_c00123{left:630.079067pt;}
.x38_c00123{left:634.879307pt;}
.x48_c00123{left:642.559573pt;}
.x21_c00123{left:655.038533pt;}
.x39_c00123{left:662.718787pt;}
.x3a_c00123{left:672.638707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6ef491eb700640764f41d4a.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.364746;font-style:normal;font-weight:normal;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_7df981b2fa9dfb4bef7c764c.woff2')format("woff");}.ff2_c00124{font-family:ff2_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:ff3_c00124;src:url('chunks/assets/font_6aef3adb96baf89d1c0077a3.woff2')format("woff");}.ff3_c00124{font-family:ff3_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:ff4_c00124;src:url('chunks/assets/font_285e72c682fc891d9cfdc3bb.woff2')format("woff");}.ff4_c00124{font-family:ff4_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:ff5_c00124;src:url('chunks/assets/font_724faa9ee69d909945d0e6cf.woff2')format("woff");}.ff5_c00124{font-family:ff5_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:ff6_c00124;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff6_c00124{font-family:ff6_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;}
.m10_c00124{transform:matrix(0.065789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065789,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls12_c00124{letter-spacing:-3.001200px;}
.ls9_c00124{letter-spacing:-2.909888px;}
.ls7_c00124{letter-spacing:-2.419200px;}
.lse_c00124{letter-spacing:-2.250443px;}
.ls4_c00124{letter-spacing:-2.070600px;}
.lsb_c00124{letter-spacing:-1.859250px;}
.lsf_c00124{letter-spacing:-1.711125px;}
.lsc_c00124{letter-spacing:-1.684800px;}
.lsd_c00124{letter-spacing:-0.879375px;}
.ls11_c00124{letter-spacing:-0.824100px;}
.ls2_c00124{letter-spacing:-0.774300px;}
.ls3_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:0.850500px;}
.ls0_c00124{letter-spacing:1.693125px;}
.ls8_c00124{letter-spacing:2.069100px;}
.ls6_c00124{letter-spacing:2.070600px;}
.lsa_c00124{letter-spacing:3.959078px;}
.ls5_c00124{letter-spacing:4.142070px;}
.ls10_c00124{letter-spacing:15.495525px;}
.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:0.000000px;}
._0_c00124{width:4.197036px;}
._1_c00124{width:8.229934px;}
._2_c00124{width:31.920162px;}
.fc0_c00124{color:transparent;}
.fs8_c00124{font-size:24.000000px;}
.fs3_c00124{font-size:42.750000px;}
.fs7_c00124{font-size:45.750000px;}
.fs6_c00124{font-size:48.000000px;}
.fs4_c00124{font-size:48.750000px;}
.fs5_c00124{font-size:50.250000px;}
.fs2_c00124{font-size:54.000000px;}
.fs1_c00124{font-size:78.750000px;}
.fs0_c00124{font-size:87.000000px;}
.fs9_c00124{font-size:156.750000px;}
.y0_c00124{bottom:0.000000px;}
.y7_c00124{bottom:179.639700px;}
.y5_c00124{bottom:190.079400px;}
.y6_c00124{bottom:191.878950px;}
.y4_c00124{bottom:723.239475px;}
.y3_c00124{bottom:989.998905px;}
.y2_c00124{bottom:1085.038695px;}
.y1_c00124{bottom:1131.119385px;}
.hc_c00124{height:24.187500px;}
.h5_c00124{height:43.083984px;}
.h7_c00124{height:44.586914px;}
.hb_c00124{height:46.107422px;}
.ha_c00124{height:47.715820px;}
.h9_c00124{height:48.375000px;}
.h6_c00124{height:49.130859px;}
.h8_c00124{height:50.642578px;}
.h4_c00124{height:53.367188px;}
.h2_c00124{height:79.365234px;}
.h3_c00124{height:85.385742px;}
.h1_c00124{height:85.980469px;}
.hd_c00124{height:153.841553px;}
.h0_c00124{height:1263.000000px;}
.w0_c00124{width:892.500000px;}
.x0_c00124{left:0.000000px;}
.x6_c00124{left:143.999400px;}
.x7_c00124{left:168.118815px;}
.x5_c00124{left:212.756385px;}
.x8_c00124{left:225.358635px;}
.x9_c00124{left:265.319850px;}
.x1_c00124{left:288.359850px;}
.xa_c00124{left:318.238785px;}
.x3_c00124{left:330.840315px;}
.xb_c00124{left:335.159850px;}
.x4_c00124{left:376.198785px;}
.xc_c00124{left:377.639100px;}
.x2_c00124{left:380.878950px;}
.x13_c00124{left:384.838950px;}
.xd_c00124{left:392.399820px;}
.xe_c00124{left:595.799520px;}
.xf_c00124{left:624.239820px;}
.x10_c00124{left:637.919535px;}
.x11_c00124{left:667.798560px;}
.x12_c00124{left:682.559100px;}
.x14_c00124{left:813.958380px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls12_c00124{letter-spacing:-2.667733pt;}
.ls9_c00124{letter-spacing:-2.586567pt;}
.ls7_c00124{letter-spacing:-2.150400pt;}
.lse_c00124{letter-spacing:-2.000393pt;}
.ls4_c00124{letter-spacing:-1.840533pt;}
.lsb_c00124{letter-spacing:-1.652667pt;}
.lsf_c00124{letter-spacing:-1.521000pt;}
.lsc_c00124{letter-spacing:-1.497600pt;}
.lsd_c00124{letter-spacing:-0.781667pt;}
.ls11_c00124{letter-spacing:-0.732533pt;}
.ls2_c00124{letter-spacing:-0.688267pt;}
.ls3_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:0.756000pt;}
.ls0_c00124{letter-spacing:1.505000pt;}
.ls8_c00124{letter-spacing:1.839200pt;}
.ls6_c00124{letter-spacing:1.840533pt;}
.lsa_c00124{letter-spacing:3.519180pt;}
.ls5_c00124{letter-spacing:3.681840pt;}
.ls10_c00124{letter-spacing:13.773800pt;}
.ws0_c00124{word-spacing:0.000000pt;}
._0_c00124{width:3.730699pt;}
._1_c00124{width:7.315497pt;}
._2_c00124{width:28.373477pt;}
.fs8_c00124{font-size:21.333333pt;}
.fs3_c00124{font-size:38.000000pt;}
.fs7_c00124{font-size:40.666667pt;}
.fs6_c00124{font-size:42.666667pt;}
.fs4_c00124{font-size:43.333333pt;}
.fs5_c00124{font-size:44.666667pt;}
.fs2_c00124{font-size:48.000000pt;}
.fs1_c00124{font-size:70.000000pt;}
.fs0_c00124{font-size:77.333333pt;}
.fs9_c00124{font-size:139.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y7_c00124{bottom:159.679733pt;}
.y5_c00124{bottom:168.959467pt;}
.y6_c00124{bottom:170.559067pt;}
.y4_c00124{bottom:642.879533pt;}
.y3_c00124{bottom:879.999027pt;}
.y2_c00124{bottom:964.478840pt;}
.y1_c00124{bottom:1005.439453pt;}
.hc_c00124{height:21.500000pt;}
.h5_c00124{height:38.296875pt;}
.h7_c00124{height:39.632812pt;}
.hb_c00124{height:40.984375pt;}
.ha_c00124{height:42.414062pt;}
.h9_c00124{height:43.000000pt;}
.h6_c00124{height:43.671875pt;}
.h8_c00124{height:45.015625pt;}
.h4_c00124{height:47.437500pt;}
.h2_c00124{height:70.546875pt;}
.h3_c00124{height:75.898438pt;}
.h1_c00124{height:76.427083pt;}
.hd_c00124{height:136.748047pt;}
.h0_c00124{height:1122.666667pt;}
.w0_c00124{width:793.333333pt;}
.x0_c00124{left:0.000000pt;}
.x6_c00124{left:127.999467pt;}
.x7_c00124{left:149.438947pt;}
.x5_c00124{left:189.116787pt;}
.x8_c00124{left:200.318787pt;}
.x9_c00124{left:235.839867pt;}
.x1_c00124{left:256.319867pt;}
.xa_c00124{left:282.878920pt;}
.x3_c00124{left:294.080280pt;}
.xb_c00124{left:297.919867pt;}
.x4_c00124{left:334.398920pt;}
.xc_c00124{left:335.679200pt;}
.x2_c00124{left:338.559067pt;}
.x13_c00124{left:342.079067pt;}
.xd_c00124{left:348.799840pt;}
.xe_c00124{left:529.599573pt;}
.xf_c00124{left:554.879840pt;}
.x10_c00124{left:567.039587pt;}
.x11_c00124{left:593.598720pt;}
.x12_c00124{left:606.719200pt;}
.x14_c00124{left:723.518560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c528e878d7efa829acd7930.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.364746;font-style:normal;font-weight:normal;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_2ff7cad08bc2fd0cdd4c981a.woff2')format("woff");}.ff2_c00125{font-family:ff2_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;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_a73eb22dd0cf81560fcece91.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_7ed2439b3a1fa979787d84fc.woff2')format("woff");}.ff4_c00125{font-family:ff4_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:ff5_c00125;src:url('chunks/assets/font_509bd41fc9c61e3c74f94d67.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00125;src:url('chunks/assets/font_75cafe20ddd92f61ac6b4151.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00125{transform:matrix(0.078571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078571,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.161628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161628,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{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_c00125{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m13_c00125{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419643,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls10_c00125{letter-spacing:-12.115688px;}
.lsb_c00125{letter-spacing:-11.685150px;}
.ls2_c00125{letter-spacing:-10.260000px;}
.ls15_c00125{letter-spacing:-8.860800px;}
.ls12_c00125{letter-spacing:-8.376675px;}
.lsc_c00125{letter-spacing:-7.790625px;}
.ls8_c00125{letter-spacing:-4.723110px;}
.ls17_c00125{letter-spacing:-4.333875px;}
.ls1a_c00125{letter-spacing:-4.210800px;}
.lsa_c00125{letter-spacing:-3.723525px;}
.ls3_c00125{letter-spacing:-3.213000px;}
.ls0_c00125{letter-spacing:-2.367900px;}
.lse_c00125{letter-spacing:-2.286900px;}
.ls16_c00125{letter-spacing:-2.209800px;}
.ls9_c00125{letter-spacing:-2.164500px;}
.ls18_c00125{letter-spacing:-2.065980px;}
.ls11_c00125{letter-spacing:-1.665758px;}
.ls4_c00125{letter-spacing:-1.606500px;}
.lsd_c00125{letter-spacing:-1.523018px;}
.ls1_c00125{letter-spacing:-0.802463px;}
.ls5_c00125{letter-spacing:0.000000px;}
.ls13_c00125{letter-spacing:0.751275px;}
.ls7_c00125{letter-spacing:2.822400px;}
.ls6_c00125{letter-spacing:5.140575px;}
.ls14_c00125{letter-spacing:7.226025px;}
.ls19_c00125{letter-spacing:8.904825px;}
.lsf_c00125{letter-spacing:31.414013px;}
.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;}
._3_c00125{margin-left:-26.707593px;}
._2_c00125{margin-left:-12.894267px;}
._1_c00125{width:6.022559px;}
._0_c00125{width:13.190207px;}
.fc0_c00125{color:transparent;}
.fsd_c00125{font-size:42.000000px;}
.fsc_c00125{font-size:42.750000px;}
.fs11_c00125{font-size:43.500000px;}
.fs10_c00125{font-size:44.250000px;}
.fsa_c00125{font-size:45.750000px;}
.fsf_c00125{font-size:47.250000px;}
.fs5_c00125{font-size:48.000000px;}
.fs6_c00125{font-size:48.750000px;}
.fsb_c00125{font-size:49.500000px;}
.fs7_c00125{font-size:50.250000px;}
.fs4_c00125{font-size:51.000000px;}
.fs8_c00125{font-size:51.750000px;}
.fs9_c00125{font-size:56.250000px;}
.fs3_c00125{font-size:69.750000px;}
.fs2_c00125{font-size:72.000000px;}
.fs1_c00125{font-size:78.750000px;}
.fs0_c00125{font-size:90.000000px;}
.fs12_c00125{font-size:105.000000px;}
.fse_c00125{font-size:161.250000px;}
.y0_c00125{bottom:0.000000px;}
.y8_c00125{bottom:163.799565px;}
.y7_c00125{bottom:170.640150px;}
.y6_c00125{bottom:182.518665px;}
.y4_c00125{bottom:196.920000px;}
.y5_c00125{bottom:197.279250px;}
.y3_c00125{bottom:983.879970px;}
.y2_c00125{bottom:1091.519070px;}
.y1_c00125{bottom:1137.239775px;}
.hf_c00125{height:43.804688px;}
.hd_c00125{height:44.586914px;}
.h14_c00125{height:45.369141px;}
.h12_c00125{height:46.151367px;}
.h13_c00125{height:47.437500px;}
.h11_c00125{height:47.619141px;}
.hb_c00125{height:47.715820px;}
.h7_c00125{height:48.178711px;}
.h15_c00125{height:48.375000px;}
.hc_c00125{height:48.581543px;}
.he_c00125{height:49.661133px;}
.h6_c00125{height:50.062500px;}
.h5_c00125{height:50.402344px;}
.h8_c00125{height:50.642578px;}
.h9_c00125{height:51.143555px;}
.ha_c00125{height:55.590820px;}
.h4_c00125{height:70.294922px;}
.h3_c00125{height:72.562500px;}
.h2_c00125{height:79.365234px;}
.h1_c00125{height:88.945312px;}
.h16_c00125{height:109.511719px;}
.h10_c00125{height:168.178711px;}
.h0_c00125{height:1263.000000px;}
.w0_c00125{width:892.500000px;}
.x0_c00125{left:0.000000px;}
.x8_c00125{left:141.118815px;}
.x9_c00125{left:165.239850px;}
.x17_c00125{left:215.279850px;}
.xa_c00125{left:222.479685px;}
.x18_c00125{left:244.799535px;}
.x1_c00125{left:290.518635px;}
.xb_c00125{left:315.359850px;}
.x4_c00125{left:320.399235px;}
.xc_c00125{left:332.279250px;}
.xd_c00125{left:374.399235px;}
.x5_c00125{left:379.438635px;}
.x15_c00125{left:381.958350px;}
.x2_c00125{left:383.039385px;}
.xe_c00125{left:389.519070px;}
.x19_c00125{left:393.838530px;}
.x1a_c00125{left:446.399820px;}
.x6_c00125{left:457.198785px;}
.x3_c00125{left:482.758530px;}
.x7_c00125{left:487.799565px;}
.x1b_c00125{left:496.078770px;}
.x1c_c00125{left:558.719100px;}
.xf_c00125{left:592.198785px;}
.x10_c00125{left:620.639100px;}
.x11_c00125{left:634.679670px;}
.x1d_c00125{left:637.919535px;}
.x12_c00125{left:664.199385px;}
.x1e_c00125{left:673.918950px;}
.x13_c00125{left:678.599070px;}
.x14_c00125{left:687.959385px;}
.x16_c00125{left:811.438665px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls10_c00125{letter-spacing:-10.769500pt;}
.lsb_c00125{letter-spacing:-10.386800pt;}
.ls2_c00125{letter-spacing:-9.120000pt;}
.ls15_c00125{letter-spacing:-7.876267pt;}
.ls12_c00125{letter-spacing:-7.445933pt;}
.lsc_c00125{letter-spacing:-6.925000pt;}
.ls8_c00125{letter-spacing:-4.198320pt;}
.ls17_c00125{letter-spacing:-3.852333pt;}
.ls1a_c00125{letter-spacing:-3.742933pt;}
.lsa_c00125{letter-spacing:-3.309800pt;}
.ls3_c00125{letter-spacing:-2.856000pt;}
.ls0_c00125{letter-spacing:-2.104800pt;}
.lse_c00125{letter-spacing:-2.032800pt;}
.ls16_c00125{letter-spacing:-1.964267pt;}
.ls9_c00125{letter-spacing:-1.924000pt;}
.ls18_c00125{letter-spacing:-1.836427pt;}
.ls11_c00125{letter-spacing:-1.480673pt;}
.ls4_c00125{letter-spacing:-1.428000pt;}
.lsd_c00125{letter-spacing:-1.353793pt;}
.ls1_c00125{letter-spacing:-0.713300pt;}
.ls5_c00125{letter-spacing:0.000000pt;}
.ls13_c00125{letter-spacing:0.667800pt;}
.ls7_c00125{letter-spacing:2.508800pt;}
.ls6_c00125{letter-spacing:4.569400pt;}
.ls14_c00125{letter-spacing:6.423133pt;}
.ls19_c00125{letter-spacing:7.915400pt;}
.lsf_c00125{letter-spacing:27.923567pt;}
.ws0_c00125{word-spacing:0.000000pt;}
._3_c00125{margin-left:-23.740083pt;}
._2_c00125{margin-left:-11.461570pt;}
._1_c00125{width:5.353386pt;}
._0_c00125{width:11.724629pt;}
.fsd_c00125{font-size:37.333333pt;}
.fsc_c00125{font-size:38.000000pt;}
.fs11_c00125{font-size:38.666667pt;}
.fs10_c00125{font-size:39.333333pt;}
.fsa_c00125{font-size:40.666667pt;}
.fsf_c00125{font-size:42.000000pt;}
.fs5_c00125{font-size:42.666667pt;}
.fs6_c00125{font-size:43.333333pt;}
.fsb_c00125{font-size:44.000000pt;}
.fs7_c00125{font-size:44.666667pt;}
.fs4_c00125{font-size:45.333333pt;}
.fs8_c00125{font-size:46.000000pt;}
.fs9_c00125{font-size:50.000000pt;}
.fs3_c00125{font-size:62.000000pt;}
.fs2_c00125{font-size:64.000000pt;}
.fs1_c00125{font-size:70.000000pt;}
.fs0_c00125{font-size:80.000000pt;}
.fs12_c00125{font-size:93.333333pt;}
.fse_c00125{font-size:143.333333pt;}
.y0_c00125{bottom:0.000000pt;}
.y8_c00125{bottom:145.599613pt;}
.y7_c00125{bottom:151.680133pt;}
.y6_c00125{bottom:162.238813pt;}
.y4_c00125{bottom:175.040000pt;}
.y5_c00125{bottom:175.359333pt;}
.y3_c00125{bottom:874.559973pt;}
.y2_c00125{bottom:970.239173pt;}
.y1_c00125{bottom:1010.879800pt;}
.hf_c00125{height:38.937500pt;}
.hd_c00125{height:39.632812pt;}
.h14_c00125{height:40.328125pt;}
.h12_c00125{height:41.023438pt;}
.h13_c00125{height:42.166667pt;}
.h11_c00125{height:42.328125pt;}
.hb_c00125{height:42.414062pt;}
.h7_c00125{height:42.825521pt;}
.h15_c00125{height:43.000000pt;}
.hc_c00125{height:43.183594pt;}
.he_c00125{height:44.143229pt;}
.h6_c00125{height:44.500000pt;}
.h5_c00125{height:44.802083pt;}
.h8_c00125{height:45.015625pt;}
.h9_c00125{height:45.460938pt;}
.ha_c00125{height:49.414063pt;}
.h4_c00125{height:62.484375pt;}
.h3_c00125{height:64.500000pt;}
.h2_c00125{height:70.546875pt;}
.h1_c00125{height:79.062500pt;}
.h16_c00125{height:97.343750pt;}
.h10_c00125{height:149.492188pt;}
.h0_c00125{height:1122.666667pt;}
.w0_c00125{width:793.333333pt;}
.x0_c00125{left:0.000000pt;}
.x8_c00125{left:125.438947pt;}
.x9_c00125{left:146.879867pt;}
.x17_c00125{left:191.359867pt;}
.xa_c00125{left:197.759720pt;}
.x18_c00125{left:217.599587pt;}
.x1_c00125{left:258.238787pt;}
.xb_c00125{left:280.319867pt;}
.x4_c00125{left:284.799320pt;}
.xc_c00125{left:295.359333pt;}
.xd_c00125{left:332.799320pt;}
.x5_c00125{left:337.278787pt;}
.x15_c00125{left:339.518533pt;}
.x2_c00125{left:340.479453pt;}
.xe_c00125{left:346.239173pt;}
.x19_c00125{left:350.078693pt;}
.x1a_c00125{left:396.799840pt;}
.x6_c00125{left:406.398920pt;}
.x3_c00125{left:429.118693pt;}
.x7_c00125{left:433.599613pt;}
.x1b_c00125{left:440.958907pt;}
.x1c_c00125{left:496.639200pt;}
.xf_c00125{left:526.398920pt;}
.x10_c00125{left:551.679200pt;}
.x11_c00125{left:564.159707pt;}
.x1d_c00125{left:567.039587pt;}
.x12_c00125{left:590.399453pt;}
.x1e_c00125{left:599.039067pt;}
.x13_c00125{left:603.199173pt;}
.x14_c00125{left:611.519453pt;}
.x16_c00125{left:721.278813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ffd96135cb1f8d9e24f64dc.woff2')format("woff");}.ff1_c00126{font-family:ff1_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:ff2_c00126;src:url('chunks/assets/font_51c55d92722aa6e33663c291.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.364746;font-style:normal;font-weight:normal;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_8d251ea3c8f4128725a71155.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_1f71233730b467a4edd31aea.woff2')format("woff");}.ff4_c00126{font-family:ff4_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;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_e406aa728e93c47a0f324a6b.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00126;src:url('chunks/assets/font_f75b3ada4b9a64b75ca02ce8.woff2')format("woff");}.ff7_c00126{font-family:ff7_c00126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00126;src:url('chunks/assets/font_f1bf952ac3ba57f1500e438a.woff2')format("woff");}.ff8_c00126{font-family:ff8_c00126;line-height:1.364746;font-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_c00126{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{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_c00126{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m10_c00126{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{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);}
.v0_c00126{vertical-align:0.000000px;}
.ls5_c00126{letter-spacing:-9.396000px;}
.ls24_c00126{letter-spacing:-9.358875px;}
.ls14_c00126{letter-spacing:-8.130450px;}
.ls19_c00126{letter-spacing:-7.721100px;}
.ls1b_c00126{letter-spacing:-6.433005px;}
.ls4_c00126{letter-spacing:-5.670810px;}
.ls17_c00126{letter-spacing:-5.332800px;}
.ls10_c00126{letter-spacing:-4.372253px;}
.ls3_c00126{letter-spacing:-4.050000px;}
.lsc_c00126{letter-spacing:-3.771150px;}
.ls9_c00126{letter-spacing:-3.463628px;}
.ls1_c00126{letter-spacing:-3.269183px;}
.ls11_c00126{letter-spacing:-2.529450px;}
.ls2_c00126{letter-spacing:-2.430000px;}
.ls15_c00126{letter-spacing:-2.392403px;}
.ls1e_c00126{letter-spacing:-2.287335px;}
.ls1a_c00126{letter-spacing:-1.676250px;}
.ls18_c00126{letter-spacing:-1.646400px;}
.lse_c00126{letter-spacing:-1.597950px;}
.ls13_c00126{letter-spacing:-1.579500px;}
.lsd_c00126{letter-spacing:-0.818925px;}
.ls25_c00126{letter-spacing:-0.799500px;}
.ls12_c00126{letter-spacing:-0.791700px;}
.lsf_c00126{letter-spacing:-0.762600px;}
.ls1d_c00126{letter-spacing:-0.714720px;}
.ls6_c00126{letter-spacing:-0.691853px;}
.ls8_c00126{letter-spacing:0.000000px;}
.ls1c_c00126{letter-spacing:0.667800px;}
.ls16_c00126{letter-spacing:0.824100px;}
.lsb_c00126{letter-spacing:2.116800px;}
.ls20_c00126{letter-spacing:2.476500px;}
.ls0_c00126{letter-spacing:3.198000px;}
.ls21_c00126{letter-spacing:3.301650px;}
.ls1f_c00126{letter-spacing:3.997500px;}
.ls23_c00126{letter-spacing:5.018400px;}
.ls7_c00126{letter-spacing:5.140575px;}
.lsa_c00126{letter-spacing:6.060075px;}
.ls22_c00126{letter-spacing:6.221108px;}
.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;}
._2_c00126{margin-left:-1.530910px;}
._0_c00126{width:7.872746px;}
._1_c00126{width:20.303849px;}
.fc0_c00126{color:transparent;}
.fse_c00126{font-size:42.000000px;}
.fsb_c00126{font-size:43.500000px;}
.fs14_c00126{font-size:44.250000px;}
.fsc_c00126{font-size:45.000000px;}
.fs8_c00126{font-size:45.750000px;}
.fs6_c00126{font-size:46.500000px;}
.fsd_c00126{font-size:48.000000px;}
.fs12_c00126{font-size:48.750000px;}
.fs13_c00126{font-size:49.500000px;}
.fs9_c00126{font-size:50.250000px;}
.fs7_c00126{font-size:51.000000px;}
.fsf_c00126{font-size:51.750000px;}
.fsa_c00126{font-size:54.750000px;}
.fs11_c00126{font-size:55.500000px;}
.fs10_c00126{font-size:56.250000px;}
.fs4_c00126{font-size:69.750000px;}
.fs5_c00126{font-size:72.000000px;}
.fs3_c00126{font-size:72.750000px;}
.fs1_c00126{font-size:81.000000px;}
.fs0_c00126{font-size:81.750000px;}
.fs2_c00126{font-size:90.000000px;}
.y0_c00126{bottom:0.000000px;}
.yb_c00126{bottom:171.360300px;}
.ya_c00126{bottom:172.080465px;}
.y9_c00126{bottom:197.999400px;}
.y8_c00126{bottom:198.719535px;}
.y7_c00126{bottom:224.999400px;}
.y5_c00126{bottom:945.719895px;}
.y6_c00126{bottom:945.720150px;}
.y4_c00126{bottom:973.079400px;}
.y3_c00126{bottom:1092.239220px;}
.y2_c00126{bottom:1092.239550px;}
.y1_c00126{bottom:1137.959925px;}
.h15_c00126{height:41.200195px;}
.h11_c00126{height:43.804688px;}
.hd_c00126{height:45.369141px;}
.h18_c00126{height:46.151367px;}
.he_c00126{height:46.933594px;}
.h9_c00126{height:47.715820px;}
.h7_c00126{height:48.498047px;}
.h16_c00126{height:49.130859px;}
.hb_c00126{height:49.293091px;}
.hf_c00126{height:49.661133px;}
.h17_c00126{height:49.886719px;}
.h10_c00126{height:50.062500px;}
.h19_c00126{height:50.402344px;}
.ha_c00126{height:50.642578px;}
.h12_c00126{height:51.143555px;}
.h8_c00126{height:51.398438px;}
.hc_c00126{height:54.108398px;}
.h14_c00126{height:54.443115px;}
.h13_c00126{height:55.590820px;}
.h5_c00126{height:70.294922px;}
.h6_c00126{height:72.562500px;}
.h4_c00126{height:73.318359px;}
.h2_c00126{height:81.632812px;}
.h1_c00126{height:82.388672px;}
.h3_c00126{height:88.945312px;}
.h0_c00126{height:1263.000000px;}
.w0_c00126{width:892.500000px;}
.x0_c00126{left:0.000000px;}
.x11_c00126{left:144.719565px;}
.xb_c00126{left:147.959400px;}
.xc_c00126{left:206.639700px;}
.xd_c00126{left:219.599100px;}
.x12_c00126{left:226.078785px;}
.xe_c00126{left:244.079385px;}
.x13_c00126{left:266.399250px;}
.x1_c00126{left:296.639100px;}
.x5_c00126{left:302.759535px;}
.x14_c00126{left:318.958950px;}
.x15_c00126{left:335.878350px;}
.x6_c00126{left:374.758500px;}
.x8_c00126{left:378.358980px;}
.x3_c00126{left:381.598920px;}
.x2_c00126{left:389.519070px;}
.x16_c00126{left:392.759085px;}
.xf_c00126{left:397.439250px;}
.x7_c00126{left:405.000000px;}
.x10_c00126{left:447.838530px;}
.x9_c00126{left:449.639700px;}
.xa_c00126{left:480.599670px;}
.x4_c00126{left:494.999400px;}
.x1f_c00126{left:499.318770px;}
.x20_c00126{left:561.958920px;}
.x17_c00126{left:596.158770px;}
.x21_c00126{left:597.958335px;}
.x1b_c00126{left:624.599070px;}
.x1c_c00126{left:638.278800px;}
.x22_c00126{left:641.518620px;}
.x18_c00126{left:658.798920px;}
.x1d_c00126{left:667.798560px;}
.x23_c00126{left:677.519670px;}
.x1e_c00126{left:682.918350px;}
.x19_c00126{left:694.080000px;}
.x1a_c00126{left:708.838950px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls5_c00126{letter-spacing:-8.352000pt;}
.ls24_c00126{letter-spacing:-8.319000pt;}
.ls14_c00126{letter-spacing:-7.227067pt;}
.ls19_c00126{letter-spacing:-6.863200pt;}
.ls1b_c00126{letter-spacing:-5.718227pt;}
.ls4_c00126{letter-spacing:-5.040720pt;}
.ls17_c00126{letter-spacing:-4.740267pt;}
.ls10_c00126{letter-spacing:-3.886447pt;}
.ls3_c00126{letter-spacing:-3.600000pt;}
.lsc_c00126{letter-spacing:-3.352133pt;}
.ls9_c00126{letter-spacing:-3.078780pt;}
.ls1_c00126{letter-spacing:-2.905940pt;}
.ls11_c00126{letter-spacing:-2.248400pt;}
.ls2_c00126{letter-spacing:-2.160000pt;}
.ls15_c00126{letter-spacing:-2.126580pt;}
.ls1e_c00126{letter-spacing:-2.033187pt;}
.ls1a_c00126{letter-spacing:-1.490000pt;}
.ls18_c00126{letter-spacing:-1.463467pt;}
.lse_c00126{letter-spacing:-1.420400pt;}
.ls13_c00126{letter-spacing:-1.404000pt;}
.lsd_c00126{letter-spacing:-0.727933pt;}
.ls25_c00126{letter-spacing:-0.710667pt;}
.ls12_c00126{letter-spacing:-0.703733pt;}
.lsf_c00126{letter-spacing:-0.677867pt;}
.ls1d_c00126{letter-spacing:-0.635307pt;}
.ls6_c00126{letter-spacing:-0.614980pt;}
.ls8_c00126{letter-spacing:0.000000pt;}
.ls1c_c00126{letter-spacing:0.593600pt;}
.ls16_c00126{letter-spacing:0.732533pt;}
.lsb_c00126{letter-spacing:1.881600pt;}
.ls20_c00126{letter-spacing:2.201333pt;}
.ls0_c00126{letter-spacing:2.842667pt;}
.ls21_c00126{letter-spacing:2.934800pt;}
.ls1f_c00126{letter-spacing:3.553333pt;}
.ls23_c00126{letter-spacing:4.460800pt;}
.ls7_c00126{letter-spacing:4.569400pt;}
.lsa_c00126{letter-spacing:5.386733pt;}
.ls22_c00126{letter-spacing:5.529873pt;}
.ws0_c00126{word-spacing:0.000000pt;}
._2_c00126{margin-left:-1.360809pt;}
._0_c00126{width:6.997997pt;}
._1_c00126{width:18.047866pt;}
.fse_c00126{font-size:37.333333pt;}
.fsb_c00126{font-size:38.666667pt;}
.fs14_c00126{font-size:39.333333pt;}
.fsc_c00126{font-size:40.000000pt;}
.fs8_c00126{font-size:40.666667pt;}
.fs6_c00126{font-size:41.333333pt;}
.fsd_c00126{font-size:42.666667pt;}
.fs12_c00126{font-size:43.333333pt;}
.fs13_c00126{font-size:44.000000pt;}
.fs9_c00126{font-size:44.666667pt;}
.fs7_c00126{font-size:45.333333pt;}
.fsf_c00126{font-size:46.000000pt;}
.fsa_c00126{font-size:48.666667pt;}
.fs11_c00126{font-size:49.333333pt;}
.fs10_c00126{font-size:50.000000pt;}
.fs4_c00126{font-size:62.000000pt;}
.fs5_c00126{font-size:64.000000pt;}
.fs3_c00126{font-size:64.666667pt;}
.fs1_c00126{font-size:72.000000pt;}
.fs0_c00126{font-size:72.666667pt;}
.fs2_c00126{font-size:80.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.yb_c00126{bottom:152.320267pt;}
.ya_c00126{bottom:152.960413pt;}
.y9_c00126{bottom:175.999467pt;}
.y8_c00126{bottom:176.639587pt;}
.y7_c00126{bottom:199.999467pt;}
.y5_c00126{bottom:840.639907pt;}
.y6_c00126{bottom:840.640133pt;}
.y4_c00126{bottom:864.959467pt;}
.y3_c00126{bottom:970.879307pt;}
.y2_c00126{bottom:970.879600pt;}
.y1_c00126{bottom:1011.519933pt;}
.h15_c00126{height:36.622396pt;}
.h11_c00126{height:38.937500pt;}
.hd_c00126{height:40.328125pt;}
.h18_c00126{height:41.023438pt;}
.he_c00126{height:41.718750pt;}
.h9_c00126{height:42.414062pt;}
.h7_c00126{height:43.109375pt;}
.h16_c00126{height:43.671875pt;}
.hb_c00126{height:43.816081pt;}
.hf_c00126{height:44.143229pt;}
.h17_c00126{height:44.343750pt;}
.h10_c00126{height:44.500000pt;}
.h19_c00126{height:44.802083pt;}
.ha_c00126{height:45.015625pt;}
.h12_c00126{height:45.460938pt;}
.h8_c00126{height:45.687500pt;}
.hc_c00126{height:48.096354pt;}
.h14_c00126{height:48.393880pt;}
.h13_c00126{height:49.414063pt;}
.h5_c00126{height:62.484375pt;}
.h6_c00126{height:64.500000pt;}
.h4_c00126{height:65.171875pt;}
.h2_c00126{height:72.562500pt;}
.h1_c00126{height:73.234375pt;}
.h3_c00126{height:79.062500pt;}
.h0_c00126{height:1122.666667pt;}
.w0_c00126{width:793.333333pt;}
.x0_c00126{left:0.000000pt;}
.x11_c00126{left:128.639613pt;}
.xb_c00126{left:131.519467pt;}
.xc_c00126{left:183.679733pt;}
.xd_c00126{left:195.199200pt;}
.x12_c00126{left:200.958920pt;}
.xe_c00126{left:216.959453pt;}
.x13_c00126{left:236.799333pt;}
.x1_c00126{left:263.679200pt;}
.x5_c00126{left:269.119587pt;}
.x14_c00126{left:283.519067pt;}
.x15_c00126{left:298.558533pt;}
.x6_c00126{left:333.118667pt;}
.x8_c00126{left:336.319093pt;}
.x3_c00126{left:339.199040pt;}
.x2_c00126{left:346.239173pt;}
.x16_c00126{left:349.119187pt;}
.xf_c00126{left:353.279333pt;}
.x7_c00126{left:360.000000pt;}
.x10_c00126{left:398.078693pt;}
.x9_c00126{left:399.679733pt;}
.xa_c00126{left:427.199707pt;}
.x4_c00126{left:439.999467pt;}
.x1f_c00126{left:443.838907pt;}
.x20_c00126{left:499.519040pt;}
.x17_c00126{left:529.918907pt;}
.x21_c00126{left:531.518520pt;}
.x1b_c00126{left:555.199173pt;}
.x1c_c00126{left:567.358933pt;}
.x22_c00126{left:570.238773pt;}
.x18_c00126{left:585.599040pt;}
.x1d_c00126{left:593.598720pt;}
.x23_c00126{left:602.239707pt;}
.x1e_c00126{left:607.038533pt;}
.x19_c00126{left:616.960000pt;}
.x1a_c00126{left:630.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_829d5e33824183de3d447fb2.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_4b44b65c6d08f99d900aed66.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.364746;font-style:normal;font-weight:normal;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_cee17b864f1593cb393abee0.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00127{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.ma_c00127{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls9_c00127{letter-spacing:-11.520000px;}
.ls4_c00127{letter-spacing:-3.213000px;}
.ls16_c00127{letter-spacing:-2.853600px;}
.lsc_c00127{letter-spacing:-2.419200px;}
.ls2_c00127{letter-spacing:-2.408963px;}
.ls13_c00127{letter-spacing:-2.213865px;}
.ls11_c00127{letter-spacing:-2.139765px;}
.ls10_c00127{letter-spacing:-1.572953px;}
.ls7_c00127{letter-spacing:-1.469550px;}
.ls15_c00127{letter-spacing:-0.832650px;}
.ls3_c00127{letter-spacing:-0.802463px;}
.lse_c00127{letter-spacing:-0.801120px;}
.lsa_c00127{letter-spacing:-0.734775px;}
.ls5_c00127{letter-spacing:0.000000px;}
.lsb_c00127{letter-spacing:1.469550px;}
.ls14_c00127{letter-spacing:1.799550px;}
.ls1_c00127{letter-spacing:2.204325px;}
.lsf_c00127{letter-spacing:2.700000px;}
.ls8_c00127{letter-spacing:3.674603px;}
.ls0_c00127{letter-spacing:8.082525px;}
.lsd_c00127{letter-spacing:8.839463px;}
.ls6_c00127{letter-spacing:9.646875px;}
.ls12_c00127{letter-spacing:44.506350px;}
.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;}
._3_c00127{margin-left:-42.253097px;}
._5_c00127{width:1.099392px;}
._1_c00127{width:5.214327px;}
._0_c00127{width:9.546300px;}
._4_c00127{width:22.335176px;}
._2_c00127{width:30.096455px;}
.fc0_c00127{color:transparent;}
.fs5_c00127{font-size:41.250000px;}
.fs9_c00127{font-size:43.500000px;}
.fs7_c00127{font-size:45.000000px;}
.fsc_c00127{font-size:45.750000px;}
.fsb_c00127{font-size:46.500000px;}
.fs8_c00127{font-size:47.250000px;}
.fs6_c00127{font-size:48.000000px;}
.fsa_c00127{font-size:53.250000px;}
.fs4_c00127{font-size:54.000000px;}
.fs3_c00127{font-size:72.000000px;}
.fs2_c00127{font-size:72.750000px;}
.fs1_c00127{font-size:78.000000px;}
.fs0_c00127{font-size:78.750000px;}
.y0_c00127{bottom:0.000000px;}
.y5_c00127{bottom:191.880585px;}
.y4_c00127{bottom:910.440255px;}
.y3_c00127{bottom:943.559685px;}
.y2_c00127{bottom:1086.479640px;}
.y1_c00127{bottom:1132.200435px;}
.h6_c00127{height:43.022461px;}
.ha_c00127{height:45.369141px;}
.hc_c00127{height:46.863281px;}
.h8_c00127{height:46.933594px;}
.h9_c00127{height:47.619141px;}
.hd_c00127{height:47.715820px;}
.h7_c00127{height:48.375000px;}
.hb_c00127{height:52.625977px;}
.h5_c00127{height:53.367188px;}
.h4_c00127{height:72.562500px;}
.h3_c00127{height:73.318359px;}
.h2_c00127{height:78.609375px;}
.h1_c00127{height:79.365234px;}
.h0_c00127{height:1263.000000px;}
.w0_c00127{width:892.500000px;}
.x0_c00127{left:0.000000px;}
.x8_c00127{left:141.838950px;}
.x9_c00127{left:165.958350px;}
.xa_c00127{left:223.199850px;}
.xb_c00127{left:263.159385px;}
.x1_c00127{left:290.159385px;}
.x4_c00127{left:312.120000px;}
.xc_c00127{left:316.080000px;}
.xd_c00127{left:333.358635px;}
.x2_c00127{left:352.799535px;}
.xe_c00127{left:390.598530px;}
.x7_c00127{left:391.678140px;}
.x5_c00127{left:405.718500px;}
.x3_c00127{left:434.519670px;}
.x6_c00127{left:436.319235px;}
.xf_c00127{left:593.279850px;}
.x10_c00127{left:621.718545px;}
.x11_c00127{left:635.759085px;}
.x12_c00127{left:665.639700px;}
.x13_c00127{left:680.759535px;}
.x14_c00127{left:689.759085px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls9_c00127{letter-spacing:-10.240000pt;}
.ls4_c00127{letter-spacing:-2.856000pt;}
.ls16_c00127{letter-spacing:-2.536533pt;}
.lsc_c00127{letter-spacing:-2.150400pt;}
.ls2_c00127{letter-spacing:-2.141300pt;}
.ls13_c00127{letter-spacing:-1.967880pt;}
.ls11_c00127{letter-spacing:-1.902013pt;}
.ls10_c00127{letter-spacing:-1.398180pt;}
.ls7_c00127{letter-spacing:-1.306267pt;}
.ls15_c00127{letter-spacing:-0.740133pt;}
.ls3_c00127{letter-spacing:-0.713300pt;}
.lse_c00127{letter-spacing:-0.712107pt;}
.lsa_c00127{letter-spacing:-0.653133pt;}
.ls5_c00127{letter-spacing:0.000000pt;}
.lsb_c00127{letter-spacing:1.306267pt;}
.ls14_c00127{letter-spacing:1.599600pt;}
.ls1_c00127{letter-spacing:1.959400pt;}
.lsf_c00127{letter-spacing:2.400000pt;}
.ls8_c00127{letter-spacing:3.266313pt;}
.ls0_c00127{letter-spacing:7.184467pt;}
.lsd_c00127{letter-spacing:7.857300pt;}
.ls6_c00127{letter-spacing:8.575000pt;}
.ls12_c00127{letter-spacing:39.561200pt;}
.ws0_c00127{word-spacing:0.000000pt;}
._3_c00127{margin-left:-37.558309pt;}
._5_c00127{width:0.977237pt;}
._1_c00127{width:4.634957pt;}
._0_c00127{width:8.485600pt;}
._4_c00127{width:19.853490pt;}
._2_c00127{width:26.752404pt;}
.fs5_c00127{font-size:36.666667pt;}
.fs9_c00127{font-size:38.666667pt;}
.fs7_c00127{font-size:40.000000pt;}
.fsc_c00127{font-size:40.666667pt;}
.fsb_c00127{font-size:41.333333pt;}
.fs8_c00127{font-size:42.000000pt;}
.fs6_c00127{font-size:42.666667pt;}
.fsa_c00127{font-size:47.333333pt;}
.fs4_c00127{font-size:48.000000pt;}
.fs3_c00127{font-size:64.000000pt;}
.fs2_c00127{font-size:64.666667pt;}
.fs1_c00127{font-size:69.333333pt;}
.fs0_c00127{font-size:70.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y5_c00127{bottom:170.560520pt;}
.y4_c00127{bottom:809.280227pt;}
.y3_c00127{bottom:838.719720pt;}
.y2_c00127{bottom:965.759680pt;}
.y1_c00127{bottom:1006.400387pt;}
.h6_c00127{height:38.242188pt;}
.ha_c00127{height:40.328125pt;}
.hc_c00127{height:41.656250pt;}
.h8_c00127{height:41.718750pt;}
.h9_c00127{height:42.328125pt;}
.hd_c00127{height:42.414062pt;}
.h7_c00127{height:43.000000pt;}
.hb_c00127{height:46.778646pt;}
.h5_c00127{height:47.437500pt;}
.h4_c00127{height:64.500000pt;}
.h3_c00127{height:65.171875pt;}
.h2_c00127{height:69.875000pt;}
.h1_c00127{height:70.546875pt;}
.h0_c00127{height:1122.666667pt;}
.w0_c00127{width:793.333333pt;}
.x0_c00127{left:0.000000pt;}
.x8_c00127{left:126.079067pt;}
.x9_c00127{left:147.518533pt;}
.xa_c00127{left:198.399867pt;}
.xb_c00127{left:233.919453pt;}
.x1_c00127{left:257.919453pt;}
.x4_c00127{left:277.440000pt;}
.xc_c00127{left:280.960000pt;}
.xd_c00127{left:296.318787pt;}
.x2_c00127{left:313.599587pt;}
.xe_c00127{left:347.198693pt;}
.x7_c00127{left:348.158347pt;}
.x5_c00127{left:360.638667pt;}
.x3_c00127{left:386.239707pt;}
.x6_c00127{left:387.839320pt;}
.xf_c00127{left:527.359867pt;}
.x10_c00127{left:552.638707pt;}
.x11_c00127{left:565.119187pt;}
.x12_c00127{left:591.679733pt;}
.x13_c00127{left:605.119587pt;}
.x14_c00127{left:613.119187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c232557e03aea4a0dd4b9f1e.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.364746;font-style:normal;font-weight:normal;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_e3a86beafefc07cdaf617f4a.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;}
.m1_c00128{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls3_c00128{letter-spacing:-1.440000px;}
.ls4_c00128{letter-spacing:-0.684000px;}
.ls1_c00128{letter-spacing:0.000000px;}
.ls2_c00128{letter-spacing:0.882750px;}
.ls0_c00128{letter-spacing:2.648250px;}
.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;}
._0_c00128{width:6.051344px;}
.fc0_c00128{color:transparent;}
.fs4_c00128{font-size:71.250000px;}
.fs3_c00128{font-size:72.000000px;}
.fs2_c00128{font-size:78.000000px;}
.fs1_c00128{font-size:80.250000px;}
.fs0_c00128{font-size:91.500000px;}
.y0_c00128{bottom:0.000000px;}
.y4_c00128{bottom:947.878965px;}
.y3_c00128{bottom:1085.398590px;}
.y2_c00128{bottom:1085.399115px;}
.y1_c00128{bottom:1131.478635px;}
.h5_c00128{height:71.806641px;}
.h4_c00128{height:72.562500px;}
.h3_c00128{height:78.609375px;}
.h2_c00128{height:80.876953px;}
.h1_c00128{height:90.427734px;}
.h0_c00128{height:1263.000000px;}
.w0_c00128{width:892.500000px;}
.x0_c00128{left:0.000000px;}
.x6_c00128{left:273.239850px;}
.x1_c00128{left:293.399250px;}
.x7_c00128{left:320.399235px;}
.x3_c00128{left:365.038080px;}
.x2_c00128{left:385.559100px;}
.x4_c00128{left:436.678530px;}
.x5_c00128{left:468.358665px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls3_c00128{letter-spacing:-1.280000pt;}
.ls4_c00128{letter-spacing:-0.608000pt;}
.ls1_c00128{letter-spacing:0.000000pt;}
.ls2_c00128{letter-spacing:0.784667pt;}
.ls0_c00128{letter-spacing:2.354000pt;}
.ws0_c00128{word-spacing:0.000000pt;}
._0_c00128{width:5.378972pt;}
.fs4_c00128{font-size:63.333333pt;}
.fs3_c00128{font-size:64.000000pt;}
.fs2_c00128{font-size:69.333333pt;}
.fs1_c00128{font-size:71.333333pt;}
.fs0_c00128{font-size:81.333333pt;}
.y0_c00128{bottom:0.000000pt;}
.y4_c00128{bottom:842.559080pt;}
.y3_c00128{bottom:964.798747pt;}
.y2_c00128{bottom:964.799213pt;}
.y1_c00128{bottom:1005.758787pt;}
.h5_c00128{height:63.828125pt;}
.h4_c00128{height:64.500000pt;}
.h3_c00128{height:69.875000pt;}
.h2_c00128{height:71.890625pt;}
.h1_c00128{height:80.380208pt;}
.h0_c00128{height:1122.666667pt;}
.w0_c00128{width:793.333333pt;}
.x0_c00128{left:0.000000pt;}
.x6_c00128{left:242.879867pt;}
.x1_c00128{left:260.799333pt;}
.x7_c00128{left:284.799320pt;}
.x3_c00128{left:324.478293pt;}
.x2_c00128{left:342.719200pt;}
.x4_c00128{left:388.158693pt;}
.x5_c00128{left:416.318813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8697b8becde4f6267b5988ab.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.311035;font-style:normal;font-weight:normal;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_6ed753cc84f98eed2bbd53ee.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.364746;font-style:normal;font-weight:normal;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_581eb3f7c390a8c89f0cfe6d.woff2')format("woff");}.ff3_c00129{font-family:ff3_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:ff4_c00129;src:url('chunks/assets/font_e21a23b4d3f61fc4ed9f7471.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00129;src:url('chunks/assets/font_a6d8e34790e2be5c614747f7.woff2')format("woff");}.ff6_c00129{font-family:ff6_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;}
.m13_c00129{transform:matrix(0.103448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103448,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m12_c00129{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.256048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256048,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280093,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.lse_c00129{letter-spacing:-10.727145px;}
.ls7_c00129{letter-spacing:-10.065375px;}
.ls1_c00129{letter-spacing:-5.562675px;}
.lsb_c00129{letter-spacing:-3.425153px;}
.lsd_c00129{letter-spacing:-3.143745px;}
.lsa_c00129{letter-spacing:-2.715053px;}
.ls9_c00129{letter-spacing:-2.432100px;}
.ls12_c00129{letter-spacing:-1.501058px;}
.ls11_c00129{letter-spacing:-1.473083px;}
.ls2_c00129{letter-spacing:-0.874500px;}
.ls3_c00129{letter-spacing:-0.734700px;}
.ls0_c00129{letter-spacing:0.000000px;}
.lsc_c00129{letter-spacing:1.609500px;}
.ls5_c00129{letter-spacing:2.155455px;}
.ls4_c00129{letter-spacing:3.283800px;}
.ls6_c00129{letter-spacing:5.354100px;}
.ls10_c00129{letter-spacing:6.618720px;}
.ls8_c00129{letter-spacing:7.840125px;}
.lsf_c00129{letter-spacing:18.973350px;}
.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;}
.fs8_c00129{font-size:42.750000px;}
.fsa_c00129{font-size:43.500000px;}
.fsf_c00129{font-size:44.250000px;}
.fsd_c00129{font-size:45.750000px;}
.fsc_c00129{font-size:46.500000px;}
.fs9_c00129{font-size:47.250000px;}
.fse_c00129{font-size:48.000000px;}
.fsb_c00129{font-size:49.500000px;}
.fs7_c00129{font-size:50.250000px;}
.fs3_c00129{font-size:78.000000px;}
.fs5_c00129{font-size:81.000000px;}
.fs0_c00129{font-size:82.500000px;}
.fs4_c00129{font-size:85.500000px;}
.fs6_c00129{font-size:86.250000px;}
.fs1_c00129{font-size:92.250000px;}
.fs2_c00129{font-size:93.000000px;}
.fs10_c00129{font-size:174.000000px;}
.y0_c00129{bottom:0.000000px;}
.y7_c00129{bottom:185.760150px;}
.y5_c00129{bottom:199.439685px;}
.y6_c00129{bottom:200.520750px;}
.y2_c00129{bottom:797.760780px;}
.y4_c00129{bottom:977.040990px;}
.y3_c00129{bottom:1093.320285px;}
.y1_c00129{bottom:1139.040990px;}
.h9_c00129{height:44.586914px;}
.hb_c00129{height:45.369141px;}
.h11_c00129{height:46.151367px;}
.h10_c00129{height:47.085938px;}
.ha_c00129{height:47.619141px;}
.hf_c00129{height:47.715820px;}
.he_c00129{height:48.498047px;}
.hd_c00129{height:48.919922px;}
.h8_c00129{height:49.317627px;}
.hc_c00129{height:49.886719px;}
.h4_c00129{height:78.609375px;}
.h6_c00129{height:79.497070px;}
.h1_c00129{height:83.144531px;}
.h5_c00129{height:83.913574px;}
.h7_c00129{height:84.649658px;}
.h2_c00129{height:91.168945px;}
.h3_c00129{height:91.274414px;}
.h12_c00129{height:170.771484px;}
.h0_c00129{height:1263.000000px;}
.w0_c00129{width:892.500000px;}
.x0_c00129{left:0.000000px;}
.xa_c00129{left:136.799565px;}
.xb_c00129{left:160.918950px;}
.x4_c00129{left:166.319250px;}
.xc_c00129{left:218.519685px;}
.xd_c00129{left:258.838515px;}
.x1_c00129{left:285.479235px;}
.xe_c00129{left:311.759100px;}
.xf_c00129{left:328.319250px;}
.x5_c00129{left:336.598530px;}
.x10_c00129{left:370.798515px;}
.x2_c00129{left:377.639100px;}
.x6_c00129{left:379.799535px;}
.x11_c00129{left:385.559100px;}
.x7_c00129{left:438.118785px;}
.x8_c00129{left:475.558635px;}
.x3_c00129{left:477.359850px;}
.x9_c00129{left:511.559685px;}
.x12_c00129{left:588.958920px;}
.x13_c00129{left:617.399235px;}
.x14_c00129{left:631.078770px;}
.x15_c00129{left:660.959385px;}
.x16_c00129{left:675.359250px;}
.x17_c00129{left:805.319820px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.lse_c00129{letter-spacing:-9.535240pt;}
.ls7_c00129{letter-spacing:-8.947000pt;}
.ls1_c00129{letter-spacing:-4.944600pt;}
.lsb_c00129{letter-spacing:-3.044580pt;}
.lsd_c00129{letter-spacing:-2.794440pt;}
.lsa_c00129{letter-spacing:-2.413380pt;}
.ls9_c00129{letter-spacing:-2.161867pt;}
.ls12_c00129{letter-spacing:-1.334273pt;}
.ls11_c00129{letter-spacing:-1.309407pt;}
.ls2_c00129{letter-spacing:-0.777333pt;}
.ls3_c00129{letter-spacing:-0.653067pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.lsc_c00129{letter-spacing:1.430667pt;}
.ls5_c00129{letter-spacing:1.915960pt;}
.ls4_c00129{letter-spacing:2.918933pt;}
.ls6_c00129{letter-spacing:4.759200pt;}
.ls10_c00129{letter-spacing:5.883307pt;}
.ls8_c00129{letter-spacing:6.969000pt;}
.lsf_c00129{letter-spacing:16.865200pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.fs8_c00129{font-size:38.000000pt;}
.fsa_c00129{font-size:38.666667pt;}
.fsf_c00129{font-size:39.333333pt;}
.fsd_c00129{font-size:40.666667pt;}
.fsc_c00129{font-size:41.333333pt;}
.fs9_c00129{font-size:42.000000pt;}
.fse_c00129{font-size:42.666667pt;}
.fsb_c00129{font-size:44.000000pt;}
.fs7_c00129{font-size:44.666667pt;}
.fs3_c00129{font-size:69.333333pt;}
.fs5_c00129{font-size:72.000000pt;}
.fs0_c00129{font-size:73.333333pt;}
.fs4_c00129{font-size:76.000000pt;}
.fs6_c00129{font-size:76.666667pt;}
.fs1_c00129{font-size:82.000000pt;}
.fs2_c00129{font-size:82.666667pt;}
.fs10_c00129{font-size:154.666667pt;}
.y0_c00129{bottom:0.000000pt;}
.y7_c00129{bottom:165.120133pt;}
.y5_c00129{bottom:177.279720pt;}
.y6_c00129{bottom:178.240667pt;}
.y2_c00129{bottom:709.120693pt;}
.y4_c00129{bottom:868.480880pt;}
.y3_c00129{bottom:971.840253pt;}
.y1_c00129{bottom:1012.480880pt;}
.h9_c00129{height:39.632812pt;}
.hb_c00129{height:40.328125pt;}
.h11_c00129{height:41.023438pt;}
.h10_c00129{height:41.854167pt;}
.ha_c00129{height:42.328125pt;}
.hf_c00129{height:42.414062pt;}
.he_c00129{height:43.109375pt;}
.hd_c00129{height:43.484375pt;}
.h8_c00129{height:43.837891pt;}
.hc_c00129{height:44.343750pt;}
.h4_c00129{height:69.875000pt;}
.h6_c00129{height:70.664062pt;}
.h1_c00129{height:73.906250pt;}
.h5_c00129{height:74.589844pt;}
.h7_c00129{height:75.244141pt;}
.h2_c00129{height:81.039063pt;}
.h3_c00129{height:81.132812pt;}
.h12_c00129{height:151.796875pt;}
.h0_c00129{height:1122.666667pt;}
.w0_c00129{width:793.333333pt;}
.x0_c00129{left:0.000000pt;}
.xa_c00129{left:121.599613pt;}
.xb_c00129{left:143.039067pt;}
.x4_c00129{left:147.839333pt;}
.xc_c00129{left:194.239720pt;}
.xd_c00129{left:230.078680pt;}
.x1_c00129{left:253.759320pt;}
.xe_c00129{left:277.119200pt;}
.xf_c00129{left:291.839333pt;}
.x5_c00129{left:299.198693pt;}
.x10_c00129{left:329.598680pt;}
.x2_c00129{left:335.679200pt;}
.x6_c00129{left:337.599587pt;}
.x11_c00129{left:342.719200pt;}
.x7_c00129{left:389.438920pt;}
.x8_c00129{left:422.718787pt;}
.x3_c00129{left:424.319867pt;}
.x9_c00129{left:454.719720pt;}
.x12_c00129{left:523.519040pt;}
.x13_c00129{left:548.799320pt;}
.x14_c00129{left:560.958907pt;}
.x15_c00129{left:587.519453pt;}
.x16_c00129{left:600.319333pt;}
.x17_c00129{left:715.839840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c232557e03aea4a0dd4b9f1e.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.364746;font-style:normal;font-weight:normal;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_2e98f036fafe87e80864d116.woff2')format("woff");}.ff2_c00130{font-family:ff2_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:ff3_c00130;src:url('chunks/assets/font_6e01cc8ad622e2e0c61dded3.woff2')format("woff");}.ff3_c00130{font-family:ff3_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;}
.m2_c00130{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.269397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269397,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls1_c00130{letter-spacing:-2.362500px;}
.ls2_c00130{letter-spacing:-0.826800px;}
.ls0_c00130{letter-spacing:0.000000px;}
.ls3_c00130{letter-spacing:0.698625px;}
.ls6_c00130{letter-spacing:2.087250px;}
.ls4_c00130{letter-spacing:2.136645px;}
.ls8_c00130{letter-spacing:4.872000px;}
.ls5_c00130{letter-spacing:7.566075px;}
.ls7_c00130{letter-spacing:8.766225px;}
.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;}
.fc0_c00130{color:transparent;}
.fs2_c00130{font-size:78.000000px;}
.fs1_c00130{font-size:78.750000px;}
.fs3_c00130{font-size:80.250000px;}
.fs6_c00130{font-size:82.500000px;}
.fs7_c00130{font-size:83.250000px;}
.fs5_c00130{font-size:85.500000px;}
.fs4_c00130{font-size:86.250000px;}
.fs8_c00130{font-size:87.000000px;}
.fs0_c00130{font-size:88.500000px;}
.y0_c00130{bottom:0.000000px;}
.y4_c00130{bottom:896.040990px;}
.y6_c00130{bottom:896.400240px;}
.y5_c00130{bottom:936.000555px;}
.y3_c00130{bottom:1087.199805px;}
.y2_c00130{bottom:1087.200120px;}
.y1_c00130{bottom:1134.000000px;}
.h3_c00130{height:78.609375px;}
.h2_c00130{height:79.365234px;}
.h4_c00130{height:80.876953px;}
.h7_c00130{height:80.969238px;}
.h8_c00130{height:83.900391px;}
.h6_c00130{height:83.913574px;}
.h5_c00130{height:84.649658px;}
.h9_c00130{height:85.385742px;}
.h1_c00130{height:87.462891px;}
.h0_c00130{height:1263.000000px;}
.w0_c00130{width:892.500000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:301.678500px;}
.x7_c00130{left:323.279850px;}
.x4_c00130{left:344.518410px;}
.xb_c00130{left:380.878950px;}
.x2_c00130{left:393.838530px;}
.x8_c00130{left:395.998950px;}
.xc_c00130{left:417.959385px;}
.x5_c00130{left:426.599670px;}
.x9_c00130{left:454.319820px;}
.x6_c00130{left:457.918950px;}
.xa_c00130{left:491.039385px;}
.x3_c00130{left:493.918350px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls1_c00130{letter-spacing:-2.100000pt;}
.ls2_c00130{letter-spacing:-0.734933pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ls3_c00130{letter-spacing:0.621000pt;}
.ls6_c00130{letter-spacing:1.855333pt;}
.ls4_c00130{letter-spacing:1.899240pt;}
.ls8_c00130{letter-spacing:4.330667pt;}
.ls5_c00130{letter-spacing:6.725400pt;}
.ls7_c00130{letter-spacing:7.792200pt;}
.ws0_c00130{word-spacing:0.000000pt;}
.fs2_c00130{font-size:69.333333pt;}
.fs1_c00130{font-size:70.000000pt;}
.fs3_c00130{font-size:71.333333pt;}
.fs6_c00130{font-size:73.333333pt;}
.fs7_c00130{font-size:74.000000pt;}
.fs5_c00130{font-size:76.000000pt;}
.fs4_c00130{font-size:76.666667pt;}
.fs8_c00130{font-size:77.333333pt;}
.fs0_c00130{font-size:78.666667pt;}
.y0_c00130{bottom:0.000000pt;}
.y4_c00130{bottom:796.480880pt;}
.y6_c00130{bottom:796.800213pt;}
.y5_c00130{bottom:832.000493pt;}
.y3_c00130{bottom:966.399827pt;}
.y2_c00130{bottom:966.400107pt;}
.y1_c00130{bottom:1008.000000pt;}
.h3_c00130{height:69.875000pt;}
.h2_c00130{height:70.546875pt;}
.h4_c00130{height:71.890625pt;}
.h7_c00130{height:71.972656pt;}
.h8_c00130{height:74.578125pt;}
.h6_c00130{height:74.589844pt;}
.h5_c00130{height:75.244141pt;}
.h9_c00130{height:75.898438pt;}
.h1_c00130{height:77.744792pt;}
.h0_c00130{height:1122.666667pt;}
.w0_c00130{width:793.333333pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:268.158667pt;}
.x7_c00130{left:287.359867pt;}
.x4_c00130{left:306.238587pt;}
.xb_c00130{left:338.559067pt;}
.x2_c00130{left:350.078693pt;}
.x8_c00130{left:351.999067pt;}
.xc_c00130{left:371.519453pt;}
.x5_c00130{left:379.199707pt;}
.x9_c00130{left:403.839840pt;}
.x6_c00130{left:407.039067pt;}
.xa_c00130{left:436.479453pt;}
.x3_c00130{left:439.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c8248f3de565e0a374e812d.woff2')format("woff");}.ff1_c00131{font-family:ff1_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;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_b219eb4284192d26c74bd33a.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.364746;font-style:normal;font-weight:normal;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_b28f839ee8aae4e780c7d69f.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_7c3f8e459c0fbc9632277b95.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_97e1d8514e842d087987abf1.woff2')format("woff");}.ff5_c00131{font-family:ff5_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:ff6_c00131;src:url('chunks/assets/font_414c601cf499bb15e94e1c87.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00131;src:url('chunks/assets/font_bbd30c7f0385a9c22be62216.woff2')format("woff");}.ff7_c00131{font-family:ff7_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:ff8_c00131;src:url('chunks/assets/font_f01582d2781b05741e9e0700.woff2')format("woff");}.ff8_c00131{font-family:ff8_c00131;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c00131{transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m1c_c00131{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m34_c00131{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m39_c00131{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m18_c00131{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1a_c00131{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m20_c00131{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m36_c00131{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.302419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302419,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.318548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318548,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00131{transform:matrix(0.348404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348404,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{transform:matrix(0.355072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355072,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{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);}
.md_c00131{transform:matrix(0.424107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424107,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls8_c00131{letter-spacing:-17.842500px;}
.ls3a_c00131{letter-spacing:-14.293260px;}
.ls36_c00131{letter-spacing:-13.201425px;}
.ls34_c00131{letter-spacing:-12.424110px;}
.ls1b_c00131{letter-spacing:-10.502250px;}
.ls3e_c00131{letter-spacing:-8.536500px;}
.ls17_c00131{letter-spacing:-7.371675px;}
.ls11_c00131{letter-spacing:-6.984000px;}
.ls12_c00131{letter-spacing:-6.609090px;}
.ls2d_c00131{letter-spacing:-6.411885px;}
.ls26_c00131{letter-spacing:-6.300000px;}
.ls30_c00131{letter-spacing:-5.885400px;}
.ls9_c00131{letter-spacing:-5.702850px;}
.ls2a_c00131{letter-spacing:-5.518500px;}
.lsd_c00131{letter-spacing:-5.249700px;}
.ls15_c00131{letter-spacing:-5.159535px;}
.ls14_c00131{letter-spacing:-4.961550px;}
.ls1e_c00131{letter-spacing:-4.110600px;}
.ls10_c00131{letter-spacing:-3.879000px;}
.lsb_c00131{letter-spacing:-3.822000px;}
.ls21_c00131{letter-spacing:-3.768660px;}
.ls20_c00131{letter-spacing:-3.747975px;}
.ls1d_c00131{letter-spacing:-3.684450px;}
.ls13_c00131{letter-spacing:-3.529350px;}
.ls37_c00131{letter-spacing:-3.373650px;}
.ls16_c00131{letter-spacing:-3.216533px;}
.ls3c_c00131{letter-spacing:-3.099600px;}
.lse_c00131{letter-spacing:-2.990213px;}
.ls5_c00131{letter-spacing:-2.691000px;}
.ls35_c00131{letter-spacing:-2.491125px;}
.ls40_c00131{letter-spacing:-2.362200px;}
.ls24_c00131{letter-spacing:-2.288100px;}
.ls27_c00131{letter-spacing:-2.015010px;}
.ls18_c00131{letter-spacing:-1.905750px;}
.ls38_c00131{letter-spacing:-1.665758px;}
.lsa_c00131{letter-spacing:-1.478880px;}
.ls3f_c00131{letter-spacing:-0.889200px;}
.ls4_c00131{letter-spacing:-0.850650px;}
.ls39_c00131{letter-spacing:-0.845917px;}
.ls1a_c00131{letter-spacing:-0.845775px;}
.ls3b_c00131{letter-spacing:-0.724935px;}
.ls1f_c00131{letter-spacing:-0.679725px;}
.ls25_c00131{letter-spacing:-0.535800px;}
.ls3_c00131{letter-spacing:0.000000px;}
.ls7_c00131{letter-spacing:0.719280px;}
.ls0_c00131{letter-spacing:0.850650px;}
.ls28_c00131{letter-spacing:1.070325px;}
.ls1c_c00131{letter-spacing:1.152000px;}
.ls2_c00131{letter-spacing:1.552500px;}
.lsc_c00131{letter-spacing:2.326500px;}
.ls29_c00131{letter-spacing:2.463818px;}
.ls19_c00131{letter-spacing:2.476500px;}
.ls2b_c00131{letter-spacing:3.638880px;}
.ls22_c00131{letter-spacing:4.069800px;}
.ls1_c00131{letter-spacing:4.270103px;}
.ls33_c00131{letter-spacing:4.507928px;}
.ls32_c00131{letter-spacing:6.205050px;}
.ls6_c00131{letter-spacing:7.744875px;}
.ls2f_c00131{letter-spacing:8.008403px;}
.lsf_c00131{letter-spacing:8.044208px;}
.ls23_c00131{letter-spacing:9.058080px;}
.ls2c_c00131{letter-spacing:16.294950px;}
.ls31_c00131{letter-spacing:18.621000px;}
.ls2e_c00131{letter-spacing:40.403850px;}
.ls3d_c00131{letter-spacing:45.337500px;}
.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;}
._4_c00131{margin-left:-32.989221px;}
._5_c00131{margin-left:-27.054372px;}
._2_c00131{margin-left:-3.372293px;}
._3_c00131{width:4.801407px;}
._0_c00131{width:8.851473px;}
._1_c00131{width:10.978610px;}
.fc0_c00131{color:transparent;}
.fs1b_c00131{font-size:22.500000px;}
.fs8_c00131{font-size:39.000000px;}
.fsb_c00131{font-size:41.250000px;}
.fsd_c00131{font-size:42.000000px;}
.fsa_c00131{font-size:42.750000px;}
.fs6_c00131{font-size:43.500000px;}
.fsc_c00131{font-size:44.250000px;}
.fs5_c00131{font-size:45.000000px;}
.fs18_c00131{font-size:45.750000px;}
.fsf_c00131{font-size:46.500000px;}
.fs12_c00131{font-size:47.250000px;}
.fs7_c00131{font-size:48.000000px;}
.fs9_c00131{font-size:48.750000px;}
.fs11_c00131{font-size:49.500000px;}
.fs10_c00131{font-size:50.250000px;}
.fse_c00131{font-size:51.000000px;}
.fs16_c00131{font-size:51.750000px;}
.fs15_c00131{font-size:52.500000px;}
.fs13_c00131{font-size:54.000000px;}
.fs17_c00131{font-size:54.750000px;}
.fs1a_c00131{font-size:56.250000px;}
.fs14_c00131{font-size:70.500000px;}
.fs2_c00131{font-size:71.250000px;}
.fs3_c00131{font-size:72.000000px;}
.fs4_c00131{font-size:72.750000px;}
.fs1_c00131{font-size:78.000000px;}
.fs0_c00131{font-size:80.250000px;}
.fs19_c00131{font-size:92.250000px;}
.y0_c00131{bottom:0.000000px;}
.yb_c00131{bottom:176.759100px;}
.ya_c00131{bottom:187.559685px;}
.y9_c00131{bottom:325.438635px;}
.y8_c00131{bottom:339.840135px;}
.y7_c00131{bottom:353.878950px;}
.y6_c00131{bottom:367.919535px;}
.y5_c00131{bottom:381.960000px;}
.y4_c00131{bottom:922.680090px;}
.y3_c00131{bottom:944.639100px;}
.y2_c00131{bottom:1082.879235px;}
.y1_c00131{bottom:1128.599670px;}
.h22_c00131{height:23.466797px;}
.h9_c00131{height:40.675781px;}
.hc_c00131{height:43.022461px;}
.h11_c00131{height:43.731445px;}
.he_c00131{height:43.804688px;}
.hb_c00131{height:44.586914px;}
.h7_c00131{height:45.369141px;}
.hd_c00131{height:46.151367px;}
.h1d_c00131{height:46.863281px;}
.h6_c00131{height:46.933594px;}
.h1b_c00131{height:47.619141px;}
.h1f_c00131{height:47.715820px;}
.h14_c00131{height:47.821655px;}
.ha_c00131{height:48.178711px;}
.h8_c00131{height:48.375000px;}
.h10_c00131{height:48.498047px;}
.h13_c00131{height:48.919922px;}
.h15_c00131{height:49.280273px;}
.h16_c00131{height:49.661133px;}
.h1a_c00131{height:50.053711px;}
.hf_c00131{height:50.402344px;}
.h12_c00131{height:50.642578px;}
.h1c_c00131{height:51.143555px;}
.h19_c00131{height:51.884766px;}
.h17_c00131{height:53.367188px;}
.h1e_c00131{height:54.108398px;}
.h21_c00131{height:55.590820px;}
.h18_c00131{height:71.050781px;}
.h3_c00131{height:71.806641px;}
.h4_c00131{height:72.562500px;}
.h5_c00131{height:75.875977px;}
.h2_c00131{height:77.085938px;}
.h1_c00131{height:80.876953px;}
.h20_c00131{height:96.213867px;}
.h0_c00131{height:1263.000000px;}
.w0_c00131{width:892.500000px;}
.x0_c00131{left:0.000000px;}
.x7_c00131{left:127.798515px;}
.x37_c00131{left:138.239850px;}
.x1c_c00131{left:159.478665px;}
.x38_c00131{left:162.000000px;}
.x32_c00131{left:170.279250px;}
.x8_c00131{left:177.838515px;}
.x1d_c00131{left:182.159415px;}
.x9_c00131{left:191.878950px;}
.x39_c00131{left:219.599100px;}
.x33_c00131{left:226.078785px;}
.xa_c00131{left:229.679700px;}
.x1e_c00131{left:232.919535px;}
.x1f_c00131{left:251.279250px;}
.x3a_c00131{left:259.919535px;}
.x20_c00131{left:266.758500px;}
.x1_c00131{left:288.359850px;}
.xb_c00131{left:291.958950px;}
.xc_c00131{left:305.279250px;}
.x21_c00131{left:306.719535px;}
.x3b_c00131{left:312.838515px;}
.x3c_c00131{left:329.759535px;}
.x30_c00131{left:333.358635px;}
.xd_c00131{left:338.759100px;}
.xe_c00131{left:352.799535px;}
.x22_c00131{left:354.239850px;}
.x3_c00131{left:365.399850px;}
.x2_c00131{left:369.359115px;}
.x23_c00131{left:372.599700px;}
.x43_c00131{left:379.799535px;}
.x24_c00131{left:387.719565px;}
.xf_c00131{left:399.599670px;}
.x4_c00131{left:413.638500px;}
.x34_c00131{left:419.759085px;}
.x6_c00131{left:434.519670px;}
.x5_c00131{left:444.239220px;}
.x10_c00131{left:447.838530px;}
.x11_c00131{left:471.598530px;}
.x25_c00131{left:484.198785px;}
.x12_c00131{left:489.958335px;}
.x26_c00131{left:494.999400px;}
.x35_c00131{left:523.078770px;}
.x27_c00131{left:526.318770px;}
.x13_c00131{left:535.679070px;}
.x3d_c00131{left:579.239220px;}
.x14_c00131{left:582.119985px;}
.x31_c00131{left:587.879520px;}
.x3e_c00131{left:590.399235px;}
.x28_c00131{left:596.878920px;}
.x29_c00131{left:608.399820px;}
.x3f_c00131{left:619.198785px;}
.x15_c00131{left:624.958335px;}
.x40_c00131{left:632.878320px;}
.x2a_c00131{left:633.959385px;}
.x16_c00131{left:643.319820px;}
.x2b_c00131{left:647.279850px;}
.x41_c00131{left:662.399820px;}
.x17_c00131{left:668.518620px;}
.x42_c00131{left:677.158770px;}
.x18_c00131{left:681.838950px;}
.x2c_c00131{left:689.399820px;}
.x19_c00131{left:692.278800px;}
.x2d_c00131{left:702.359250px;}
.x1a_c00131{left:733.678530px;}
.x2e_c00131{left:735.838950px;}
.x1b_c00131{left:746.998950px;}
.x36_c00131{left:753.119385px;}
.x2f_c00131{left:754.198785px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls8_c00131{letter-spacing:-15.860000pt;}
.ls3a_c00131{letter-spacing:-12.705120pt;}
.ls36_c00131{letter-spacing:-11.734600pt;}
.ls34_c00131{letter-spacing:-11.043653pt;}
.ls1b_c00131{letter-spacing:-9.335333pt;}
.ls3e_c00131{letter-spacing:-7.588000pt;}
.ls17_c00131{letter-spacing:-6.552600pt;}
.ls11_c00131{letter-spacing:-6.208000pt;}
.ls12_c00131{letter-spacing:-5.874747pt;}
.ls2d_c00131{letter-spacing:-5.699453pt;}
.ls26_c00131{letter-spacing:-5.600000pt;}
.ls30_c00131{letter-spacing:-5.231467pt;}
.ls9_c00131{letter-spacing:-5.069200pt;}
.ls2a_c00131{letter-spacing:-4.905333pt;}
.lsd_c00131{letter-spacing:-4.666400pt;}
.ls15_c00131{letter-spacing:-4.586253pt;}
.ls14_c00131{letter-spacing:-4.410267pt;}
.ls1e_c00131{letter-spacing:-3.653867pt;}
.ls10_c00131{letter-spacing:-3.448000pt;}
.lsb_c00131{letter-spacing:-3.397333pt;}
.ls21_c00131{letter-spacing:-3.349920pt;}
.ls20_c00131{letter-spacing:-3.331533pt;}
.ls1d_c00131{letter-spacing:-3.275067pt;}
.ls13_c00131{letter-spacing:-3.137200pt;}
.ls37_c00131{letter-spacing:-2.998800pt;}
.ls16_c00131{letter-spacing:-2.859140pt;}
.ls3c_c00131{letter-spacing:-2.755200pt;}
.lse_c00131{letter-spacing:-2.657967pt;}
.ls5_c00131{letter-spacing:-2.392000pt;}
.ls35_c00131{letter-spacing:-2.214333pt;}
.ls40_c00131{letter-spacing:-2.099733pt;}
.ls24_c00131{letter-spacing:-2.033867pt;}
.ls27_c00131{letter-spacing:-1.791120pt;}
.ls18_c00131{letter-spacing:-1.694000pt;}
.ls38_c00131{letter-spacing:-1.480673pt;}
.lsa_c00131{letter-spacing:-1.314560pt;}
.ls3f_c00131{letter-spacing:-0.790400pt;}
.ls4_c00131{letter-spacing:-0.756133pt;}
.ls39_c00131{letter-spacing:-0.751927pt;}
.ls1a_c00131{letter-spacing:-0.751800pt;}
.ls3b_c00131{letter-spacing:-0.644387pt;}
.ls1f_c00131{letter-spacing:-0.604200pt;}
.ls25_c00131{letter-spacing:-0.476267pt;}
.ls3_c00131{letter-spacing:0.000000pt;}
.ls7_c00131{letter-spacing:0.639360pt;}
.ls0_c00131{letter-spacing:0.756133pt;}
.ls28_c00131{letter-spacing:0.951400pt;}
.ls1c_c00131{letter-spacing:1.024000pt;}
.ls2_c00131{letter-spacing:1.380000pt;}
.lsc_c00131{letter-spacing:2.068000pt;}
.ls29_c00131{letter-spacing:2.190060pt;}
.ls19_c00131{letter-spacing:2.201333pt;}
.ls2b_c00131{letter-spacing:3.234560pt;}
.ls22_c00131{letter-spacing:3.617600pt;}
.ls1_c00131{letter-spacing:3.795647pt;}
.ls33_c00131{letter-spacing:4.007047pt;}
.ls32_c00131{letter-spacing:5.515600pt;}
.ls6_c00131{letter-spacing:6.884333pt;}
.ls2f_c00131{letter-spacing:7.118580pt;}
.lsf_c00131{letter-spacing:7.150407pt;}
.ls23_c00131{letter-spacing:8.051627pt;}
.ls2c_c00131{letter-spacing:14.484400pt;}
.ls31_c00131{letter-spacing:16.552000pt;}
.ls2e_c00131{letter-spacing:35.914533pt;}
.ls3d_c00131{letter-spacing:40.300000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
._4_c00131{margin-left:-29.323752pt;}
._5_c00131{margin-left:-24.048331pt;}
._2_c00131{margin-left:-2.997594pt;}
._3_c00131{width:4.267917pt;}
._0_c00131{width:7.867976pt;}
._1_c00131{width:9.758764pt;}
.fs1b_c00131{font-size:20.000000pt;}
.fs8_c00131{font-size:34.666667pt;}
.fsb_c00131{font-size:36.666667pt;}
.fsd_c00131{font-size:37.333333pt;}
.fsa_c00131{font-size:38.000000pt;}
.fs6_c00131{font-size:38.666667pt;}
.fsc_c00131{font-size:39.333333pt;}
.fs5_c00131{font-size:40.000000pt;}
.fs18_c00131{font-size:40.666667pt;}
.fsf_c00131{font-size:41.333333pt;}
.fs12_c00131{font-size:42.000000pt;}
.fs7_c00131{font-size:42.666667pt;}
.fs9_c00131{font-size:43.333333pt;}
.fs11_c00131{font-size:44.000000pt;}
.fs10_c00131{font-size:44.666667pt;}
.fse_c00131{font-size:45.333333pt;}
.fs16_c00131{font-size:46.000000pt;}
.fs15_c00131{font-size:46.666667pt;}
.fs13_c00131{font-size:48.000000pt;}
.fs17_c00131{font-size:48.666667pt;}
.fs1a_c00131{font-size:50.000000pt;}
.fs14_c00131{font-size:62.666667pt;}
.fs2_c00131{font-size:63.333333pt;}
.fs3_c00131{font-size:64.000000pt;}
.fs4_c00131{font-size:64.666667pt;}
.fs1_c00131{font-size:69.333333pt;}
.fs0_c00131{font-size:71.333333pt;}
.fs19_c00131{font-size:82.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.yb_c00131{bottom:157.119200pt;}
.ya_c00131{bottom:166.719720pt;}
.y9_c00131{bottom:289.278787pt;}
.y8_c00131{bottom:302.080120pt;}
.y7_c00131{bottom:314.559067pt;}
.y6_c00131{bottom:327.039587pt;}
.y5_c00131{bottom:339.520000pt;}
.y4_c00131{bottom:820.160080pt;}
.y3_c00131{bottom:839.679200pt;}
.y2_c00131{bottom:962.559320pt;}
.y1_c00131{bottom:1003.199707pt;}
.h22_c00131{height:20.859375pt;}
.h9_c00131{height:36.156250pt;}
.hc_c00131{height:38.242188pt;}
.h11_c00131{height:38.872396pt;}
.he_c00131{height:38.937500pt;}
.hb_c00131{height:39.632812pt;}
.h7_c00131{height:40.328125pt;}
.hd_c00131{height:41.023438pt;}
.h1d_c00131{height:41.656250pt;}
.h6_c00131{height:41.718750pt;}
.h1b_c00131{height:42.328125pt;}
.h1f_c00131{height:42.414062pt;}
.h14_c00131{height:42.508138pt;}
.ha_c00131{height:42.825521pt;}
.h8_c00131{height:43.000000pt;}
.h10_c00131{height:43.109375pt;}
.h13_c00131{height:43.484375pt;}
.h15_c00131{height:43.804688pt;}
.h16_c00131{height:44.143229pt;}
.h1a_c00131{height:44.492188pt;}
.hf_c00131{height:44.802083pt;}
.h12_c00131{height:45.015625pt;}
.h1c_c00131{height:45.460938pt;}
.h19_c00131{height:46.119792pt;}
.h17_c00131{height:47.437500pt;}
.h1e_c00131{height:48.096354pt;}
.h21_c00131{height:49.414063pt;}
.h18_c00131{height:63.156250pt;}
.h3_c00131{height:63.828125pt;}
.h4_c00131{height:64.500000pt;}
.h5_c00131{height:67.445312pt;}
.h2_c00131{height:68.520833pt;}
.h1_c00131{height:71.890625pt;}
.h20_c00131{height:85.523438pt;}
.h0_c00131{height:1122.666667pt;}
.w0_c00131{width:793.333333pt;}
.x0_c00131{left:0.000000pt;}
.x7_c00131{left:113.598680pt;}
.x37_c00131{left:122.879867pt;}
.x1c_c00131{left:141.758813pt;}
.x38_c00131{left:144.000000pt;}
.x32_c00131{left:151.359333pt;}
.x8_c00131{left:158.078680pt;}
.x1d_c00131{left:161.919480pt;}
.x9_c00131{left:170.559067pt;}
.x39_c00131{left:195.199200pt;}
.x33_c00131{left:200.958920pt;}
.xa_c00131{left:204.159733pt;}
.x1e_c00131{left:207.039587pt;}
.x1f_c00131{left:223.359333pt;}
.x3a_c00131{left:231.039587pt;}
.x20_c00131{left:237.118667pt;}
.x1_c00131{left:256.319867pt;}
.xb_c00131{left:259.519067pt;}
.xc_c00131{left:271.359333pt;}
.x21_c00131{left:272.639587pt;}
.x3b_c00131{left:278.078680pt;}
.x3c_c00131{left:293.119587pt;}
.x30_c00131{left:296.318787pt;}
.xd_c00131{left:301.119200pt;}
.xe_c00131{left:313.599587pt;}
.x22_c00131{left:314.879867pt;}
.x3_c00131{left:324.799867pt;}
.x2_c00131{left:328.319213pt;}
.x23_c00131{left:331.199733pt;}
.x43_c00131{left:337.599587pt;}
.x24_c00131{left:344.639613pt;}
.xf_c00131{left:355.199707pt;}
.x4_c00131{left:367.678667pt;}
.x34_c00131{left:373.119187pt;}
.x6_c00131{left:386.239707pt;}
.x5_c00131{left:394.879307pt;}
.x10_c00131{left:398.078693pt;}
.x11_c00131{left:419.198693pt;}
.x25_c00131{left:430.398920pt;}
.x12_c00131{left:435.518520pt;}
.x26_c00131{left:439.999467pt;}
.x35_c00131{left:464.958907pt;}
.x27_c00131{left:467.838907pt;}
.x13_c00131{left:476.159173pt;}
.x3d_c00131{left:514.879307pt;}
.x14_c00131{left:517.439987pt;}
.x31_c00131{left:522.559573pt;}
.x3e_c00131{left:524.799320pt;}
.x28_c00131{left:530.559040pt;}
.x29_c00131{left:540.799840pt;}
.x3f_c00131{left:550.398920pt;}
.x15_c00131{left:555.518520pt;}
.x40_c00131{left:562.558507pt;}
.x2a_c00131{left:563.519453pt;}
.x16_c00131{left:571.839840pt;}
.x2b_c00131{left:575.359867pt;}
.x41_c00131{left:588.799840pt;}
.x17_c00131{left:594.238773pt;}
.x42_c00131{left:601.918907pt;}
.x18_c00131{left:606.079067pt;}
.x2c_c00131{left:612.799840pt;}
.x19_c00131{left:615.358933pt;}
.x2d_c00131{left:624.319333pt;}
.x1a_c00131{left:652.158693pt;}
.x2e_c00131{left:654.079067pt;}
.x1b_c00131{left:663.999067pt;}
.x36_c00131{left:669.439453pt;}
.x2f_c00131{left:670.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20c72a87e3ded46efe98f8d3.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.364746;font-style:normal;font-weight:normal;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_c88f401b551b4d5eb6207fd3.woff2')format("woff");}.ff2_c00132{font-family:ff2_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:ff3_c00132;src:url('chunks/assets/font_6803ad5bffb96827bfc94392.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_5ba920a2ccad9bf65e8ea5ff.woff2')format("woff");}.ff4_c00132{font-family:ff4_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:ff5_c00132;src:url('chunks/assets/font_af16a16f80380d4d4323177f.woff2')format("woff");}.ff5_c00132{font-family:ff5_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;}
.m1b_c00132{transform:matrix(0.067647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067647,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.180052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180052,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m1f_c00132{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{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_c00132{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m8_c00132{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.256466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256466,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.md_c00132{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.297794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297794,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{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_c00132{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_c00132{transform:matrix(0.364407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364407,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.612069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612069,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls2_c00132{letter-spacing:-9.240075px;}
.ls16_c00132{letter-spacing:-7.934475px;}
.ls1_c00132{letter-spacing:-7.308000px;}
.ls1e_c00132{letter-spacing:-4.635900px;}
.ls1a_c00132{letter-spacing:-4.628550px;}
.ls5_c00132{letter-spacing:-4.615650px;}
.ls1b_c00132{letter-spacing:-3.151575px;}
.ls1c_c00132{letter-spacing:-2.951520px;}
.lse_c00132{letter-spacing:-2.776950px;}
.ls3_c00132{letter-spacing:-2.308703px;}
.ls10_c00132{letter-spacing:-2.251680px;}
.ls6_c00132{letter-spacing:-2.062500px;}
.ls12_c00132{letter-spacing:-1.678545px;}
.ls13_c00132{letter-spacing:-1.609500px;}
.ls11_c00132{letter-spacing:-1.502400px;}
.ls14_c00132{letter-spacing:-0.824100px;}
.ls18_c00132{letter-spacing:-0.787200px;}
.ls19_c00132{letter-spacing:-0.748320px;}
.ls0_c00132{letter-spacing:0.000000px;}
.ls9_c00132{letter-spacing:0.613350px;}
.ls4_c00132{letter-spacing:0.802950px;}
.ls1f_c00132{letter-spacing:0.838500px;}
.lsf_c00132{letter-spacing:1.368900px;}
.lsd_c00132{letter-spacing:1.426320px;}
.ls15_c00132{letter-spacing:1.502400px;}
.lsa_c00132{letter-spacing:2.224800px;}
.ls8_c00132{letter-spacing:2.752500px;}
.lsc_c00132{letter-spacing:3.125925px;}
.ls7_c00132{letter-spacing:3.674603px;}
.lsb_c00132{letter-spacing:6.818400px;}
.ls1d_c00132{letter-spacing:8.859375px;}
.ls17_c00132{letter-spacing:15.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;}
._0_c00132{width:4.233180px;}
.fc0_c00132{color:transparent;}
.fs7_c00132{font-size:21.750000px;}
.fs15_c00132{font-size:30.000000px;}
.fsb_c00132{font-size:39.000000px;}
.fse_c00132{font-size:43.500000px;}
.fs11_c00132{font-size:44.250000px;}
.fsa_c00132{font-size:45.000000px;}
.fs17_c00132{font-size:45.750000px;}
.fs13_c00132{font-size:47.250000px;}
.fsc_c00132{font-size:48.000000px;}
.fs18_c00132{font-size:48.750000px;}
.fsd_c00132{font-size:49.500000px;}
.fsf_c00132{font-size:50.250000px;}
.fs14_c00132{font-size:51.000000px;}
.fs12_c00132{font-size:56.250000px;}
.fs8_c00132{font-size:72.000000px;}
.fs6_c00132{font-size:72.750000px;}
.fs9_c00132{font-size:74.250000px;}
.fs5_c00132{font-size:75.000000px;}
.fs4_c00132{font-size:79.500000px;}
.fs0_c00132{font-size:85.500000px;}
.fs1_c00132{font-size:87.000000px;}
.fs2_c00132{font-size:87.750000px;}
.fs3_c00132{font-size:90.000000px;}
.fs10_c00132{font-size:144.750000px;}
.fs16_c00132{font-size:191.250000px;}
.y0_c00132{bottom:0.000000px;}
.ya_c00132{bottom:179.639700px;}
.y8_c00132{bottom:190.799565px;}
.y9_c00132{bottom:191.878950px;}
.yc_c00132{bottom:205.560285px;}
.yb_c00132{bottom:217.799535px;}
.yd_c00132{bottom:218.158785px;}
.ye_c00132{bottom:218.878950px;}
.y7_c00132{bottom:786.599115px;}
.y6_c00132{bottom:840.960015px;}
.y5_c00132{bottom:869.759490px;}
.y4_c00132{bottom:982.078770px;}
.y3_c00132{bottom:1085.039340px;}
.y2_c00132{bottom:1085.039790px;}
.y1_c00132{bottom:1131.119385px;}
.h8_c00132{height:22.684570px;}
.h19_c00132{height:31.289062px;}
.hd_c00132{height:40.675781px;}
.hc_c00132{height:44.165039px;}
.h10_c00132{height:45.369141px;}
.h15_c00132{height:46.151367px;}
.h13_c00132{height:46.933594px;}
.h1c_c00132{height:47.619141px;}
.h1b_c00132{height:47.715820px;}
.he_c00132{height:48.375000px;}
.h1e_c00132{height:49.130859px;}
.h17_c00132{height:49.280273px;}
.h12_c00132{height:49.661133px;}
.hf_c00132{height:49.886719px;}
.h18_c00132{height:50.402344px;}
.h11_c00132{height:50.642578px;}
.h1d_c00132{height:51.398438px;}
.h16_c00132{height:55.590820px;}
.h9_c00132{height:70.664062px;}
.ha_c00132{height:72.562500px;}
.h7_c00132{height:73.318359px;}
.h6_c00132{height:73.608398px;}
.hb_c00132{height:74.830078px;}
.h5_c00132{height:78.024902px;}
.h1_c00132{height:84.498047px;}
.h2_c00132{height:85.980469px;}
.h3_c00132{height:86.721680px;}
.h4_c00132{height:88.945312px;}
.h14_c00132{height:150.969727px;}
.h1a_c00132{height:187.701416px;}
.h0_c00132{height:1263.000000px;}
.w0_c00132{width:892.500000px;}
.x0_c00132{left:0.000000px;}
.x10_c00132{left:140.039400px;}
.x1c_c00132{left:143.279250px;}
.xe_c00132{left:163.079400px;}
.x11_c00132{left:164.158785px;}
.x1d_c00132{left:202.318800px;}
.xf_c00132{left:210.958950px;}
.x1e_c00132{left:214.918950px;}
.x12_c00132{left:221.759535px;}
.x1f_c00132{left:239.040000px;}
.xc_c00132{left:240.839535px;}
.x4_c00132{left:262.080945px;}
.x1_c00132{left:288.359850px;}
.x8_c00132{left:303.479685px;}
.xb_c00132{left:313.199385px;}
.x13_c00132{left:314.639700px;}
.xd_c00132{left:320.040000px;}
.x14_c00132{left:331.559100px;}
.x9_c00132{left:373.679100px;}
.x5_c00132{left:379.079385px;}
.x2_c00132{left:380.878950px;}
.x15_c00132{left:388.439715px;}
.x22_c00132{left:393.479235px;}
.x6_c00132{left:398.159415px;}
.xa_c00132{left:405.000000px;}
.x23_c00132{left:443.519070px;}
.x3_c00132{left:480.599670px;}
.x7_c00132{left:549.358665px;}
.x20_c00132{left:579.959385px;}
.x16_c00132{left:591.839535px;}
.x17_c00132{left:620.279850px;}
.x18_c00132{left:633.959385px;}
.x24_c00132{left:654.118785px;}
.x19_c00132{left:663.479235px;}
.x1a_c00132{left:678.239820px;}
.x25_c00132{left:689.759085px;}
.x26_c00132{left:704.158770px;}
.x21_c00132{left:809.279850px;}
.x1b_c00132{left:810.718500px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls2_c00132{letter-spacing:-8.213400pt;}
.ls16_c00132{letter-spacing:-7.052867pt;}
.ls1_c00132{letter-spacing:-6.496000pt;}
.ls1e_c00132{letter-spacing:-4.120800pt;}
.ls1a_c00132{letter-spacing:-4.114267pt;}
.ls5_c00132{letter-spacing:-4.102800pt;}
.ls1b_c00132{letter-spacing:-2.801400pt;}
.ls1c_c00132{letter-spacing:-2.623573pt;}
.lse_c00132{letter-spacing:-2.468400pt;}
.ls3_c00132{letter-spacing:-2.052180pt;}
.ls10_c00132{letter-spacing:-2.001493pt;}
.ls6_c00132{letter-spacing:-1.833333pt;}
.ls12_c00132{letter-spacing:-1.492040pt;}
.ls13_c00132{letter-spacing:-1.430667pt;}
.ls11_c00132{letter-spacing:-1.335467pt;}
.ls14_c00132{letter-spacing:-0.732533pt;}
.ls18_c00132{letter-spacing:-0.699733pt;}
.ls19_c00132{letter-spacing:-0.665173pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ls9_c00132{letter-spacing:0.545200pt;}
.ls4_c00132{letter-spacing:0.713733pt;}
.ls1f_c00132{letter-spacing:0.745333pt;}
.lsf_c00132{letter-spacing:1.216800pt;}
.lsd_c00132{letter-spacing:1.267840pt;}
.ls15_c00132{letter-spacing:1.335467pt;}
.lsa_c00132{letter-spacing:1.977600pt;}
.ls8_c00132{letter-spacing:2.446667pt;}
.lsc_c00132{letter-spacing:2.778600pt;}
.ls7_c00132{letter-spacing:3.266313pt;}
.lsb_c00132{letter-spacing:6.060800pt;}
.ls1d_c00132{letter-spacing:7.875000pt;}
.ls17_c00132{letter-spacing:13.333333pt;}
.ws0_c00132{word-spacing:0.000000pt;}
._0_c00132{width:3.762827pt;}
.fs7_c00132{font-size:19.333333pt;}
.fs15_c00132{font-size:26.666667pt;}
.fsb_c00132{font-size:34.666667pt;}
.fse_c00132{font-size:38.666667pt;}
.fs11_c00132{font-size:39.333333pt;}
.fsa_c00132{font-size:40.000000pt;}
.fs17_c00132{font-size:40.666667pt;}
.fs13_c00132{font-size:42.000000pt;}
.fsc_c00132{font-size:42.666667pt;}
.fs18_c00132{font-size:43.333333pt;}
.fsd_c00132{font-size:44.000000pt;}
.fsf_c00132{font-size:44.666667pt;}
.fs14_c00132{font-size:45.333333pt;}
.fs12_c00132{font-size:50.000000pt;}
.fs8_c00132{font-size:64.000000pt;}
.fs6_c00132{font-size:64.666667pt;}
.fs9_c00132{font-size:66.000000pt;}
.fs5_c00132{font-size:66.666667pt;}
.fs4_c00132{font-size:70.666667pt;}
.fs0_c00132{font-size:76.000000pt;}
.fs1_c00132{font-size:77.333333pt;}
.fs2_c00132{font-size:78.000000pt;}
.fs3_c00132{font-size:80.000000pt;}
.fs10_c00132{font-size:128.666667pt;}
.fs16_c00132{font-size:170.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.ya_c00132{bottom:159.679733pt;}
.y8_c00132{bottom:169.599613pt;}
.y9_c00132{bottom:170.559067pt;}
.yc_c00132{bottom:182.720253pt;}
.yb_c00132{bottom:193.599587pt;}
.yd_c00132{bottom:193.918920pt;}
.ye_c00132{bottom:194.559067pt;}
.y7_c00132{bottom:699.199213pt;}
.y6_c00132{bottom:747.520013pt;}
.y5_c00132{bottom:773.119547pt;}
.y4_c00132{bottom:872.958907pt;}
.y3_c00132{bottom:964.479413pt;}
.y2_c00132{bottom:964.479813pt;}
.y1_c00132{bottom:1005.439453pt;}
.h8_c00132{height:20.164062pt;}
.h19_c00132{height:27.812500pt;}
.hd_c00132{height:36.156250pt;}
.hc_c00132{height:39.257812pt;}
.h10_c00132{height:40.328125pt;}
.h15_c00132{height:41.023438pt;}
.h13_c00132{height:41.718750pt;}
.h1c_c00132{height:42.328125pt;}
.h1b_c00132{height:42.414062pt;}
.he_c00132{height:43.000000pt;}
.h1e_c00132{height:43.671875pt;}
.h17_c00132{height:43.804688pt;}
.h12_c00132{height:44.143229pt;}
.hf_c00132{height:44.343750pt;}
.h18_c00132{height:44.802083pt;}
.h11_c00132{height:45.015625pt;}
.h1d_c00132{height:45.687500pt;}
.h16_c00132{height:49.414063pt;}
.h9_c00132{height:62.812500pt;}
.ha_c00132{height:64.500000pt;}
.h7_c00132{height:65.171875pt;}
.h6_c00132{height:65.429688pt;}
.hb_c00132{height:66.515625pt;}
.h5_c00132{height:69.355469pt;}
.h1_c00132{height:75.109375pt;}
.h2_c00132{height:76.427083pt;}
.h3_c00132{height:77.085938pt;}
.h4_c00132{height:79.062500pt;}
.h14_c00132{height:134.195312pt;}
.h1a_c00132{height:166.845703pt;}
.h0_c00132{height:1122.666667pt;}
.w0_c00132{width:793.333333pt;}
.x0_c00132{left:0.000000pt;}
.x10_c00132{left:124.479467pt;}
.x1c_c00132{left:127.359333pt;}
.xe_c00132{left:144.959467pt;}
.x11_c00132{left:145.918920pt;}
.x1d_c00132{left:179.838933pt;}
.xf_c00132{left:187.519067pt;}
.x1e_c00132{left:191.039067pt;}
.x12_c00132{left:197.119587pt;}
.x1f_c00132{left:212.480000pt;}
.xc_c00132{left:214.079587pt;}
.x4_c00132{left:232.960840pt;}
.x1_c00132{left:256.319867pt;}
.x8_c00132{left:269.759720pt;}
.xb_c00132{left:278.399453pt;}
.x13_c00132{left:279.679733pt;}
.xd_c00132{left:284.480000pt;}
.x14_c00132{left:294.719200pt;}
.x9_c00132{left:332.159200pt;}
.x5_c00132{left:336.959453pt;}
.x2_c00132{left:338.559067pt;}
.x15_c00132{left:345.279747pt;}
.x22_c00132{left:349.759320pt;}
.x6_c00132{left:353.919480pt;}
.xa_c00132{left:360.000000pt;}
.x23_c00132{left:394.239173pt;}
.x3_c00132{left:427.199707pt;}
.x7_c00132{left:488.318813pt;}
.x20_c00132{left:515.519453pt;}
.x16_c00132{left:526.079587pt;}
.x17_c00132{left:551.359867pt;}
.x18_c00132{left:563.519453pt;}
.x24_c00132{left:581.438920pt;}
.x19_c00132{left:589.759320pt;}
.x1a_c00132{left:602.879840pt;}
.x25_c00132{left:613.119187pt;}
.x26_c00132{left:625.918907pt;}
.x21_c00132{left:719.359867pt;}
.x1b_c00132{left:720.638667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d178301ccf5b60f3ab067558.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.311035;font-style:normal;font-weight:normal;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_cc3f6fd2e25431c3d1a64935.woff2')format("woff");}.ff2_c00133{font-family:ff2_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:ff3_c00133;src:url('chunks/assets/font_f68a692adab66c26512834fc.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00133{transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090909,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m9_c00133{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m3_c00133{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{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);}
.v0_c00133{vertical-align:0.000000px;}
.ls4_c00133{letter-spacing:-5.851028px;}
.lsb_c00133{letter-spacing:-3.806888px;}
.ls9_c00133{letter-spacing:-2.865120px;}
.ls5_c00133{letter-spacing:-2.511825px;}
.lsc_c00133{letter-spacing:-2.412000px;}
.ls3_c00133{letter-spacing:-1.669200px;}
.lsf_c00133{letter-spacing:-1.648703px;}
.ls8_c00133{letter-spacing:-1.438200px;}
.ls1_c00133{letter-spacing:-0.835403px;}
.ls10_c00133{letter-spacing:-0.760013px;}
.ls2_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:0.835403px;}
.ls7_c00133{letter-spacing:1.533600px;}
.ls6_c00133{letter-spacing:8.676000px;}
.lse_c00133{letter-spacing:13.713375px;}
.lsa_c00133{letter-spacing:20.893050px;}
.lsd_c00133{letter-spacing:52.721798px;}
.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;}
._0_c00133{width:5.158069px;}
._1_c00133{width:7.061799px;}
._2_c00133{width:10.416183px;}
._3_c00133{width:22.889507px;}
.fc0_c00133{color:transparent;}
.fs8_c00133{font-size:26.250000px;}
.fs5_c00133{font-size:45.000000px;}
.fs3_c00133{font-size:45.750000px;}
.fs4_c00133{font-size:48.000000px;}
.fs6_c00133{font-size:48.750000px;}
.fs7_c00133{font-size:50.250000px;}
.fs2_c00133{font-size:51.000000px;}
.fs1_c00133{font-size:72.000000px;}
.fs0_c00133{font-size:80.250000px;}
.fs9_c00133{font-size:156.750000px;}
.y0_c00133{bottom:0.000000px;}
.y5_c00133{bottom:182.159415px;}
.y4_c00133{bottom:194.039400px;}
.y3_c00133{bottom:949.319190px;}
.y2_c00133{bottom:1087.559580px;}
.y1_c00133{bottom:1133.639100px;}
.ha_c00133{height:27.377930px;}
.h4_c00133{height:46.107422px;}
.h6_c00133{height:46.933594px;}
.h5_c00133{height:48.375000px;}
.h7_c00133{height:49.130859px;}
.h9_c00133{height:49.317627px;}
.h8_c00133{height:50.642578px;}
.h3_c00133{height:51.398438px;}
.h2_c00133{height:70.664062px;}
.h1_c00133{height:80.876953px;}
.hb_c00133{height:153.841553px;}
.h0_c00133{height:1263.000000px;}
.w0_c00133{width:892.500000px;}
.x0_c00133{left:0.000000px;}
.x5_c00133{left:138.958350px;}
.x6_c00133{left:162.718500px;}
.x7_c00133{left:220.319250px;}
.x8_c00133{left:260.998950px;}
.x1_c00133{left:290.518635px;}
.x9_c00133{left:313.558635px;}
.xa_c00133{left:330.479685px;}
.x2_c00133{left:358.558620px;}
.xb_c00133{left:372.958950px;}
.x12_c00133{left:380.158785px;}
.xc_c00133{left:387.358665px;}
.x3_c00133{left:448.558635px;}
.x4_c00133{left:475.919535px;}
.xd_c00133{left:591.119385px;}
.xe_c00133{left:619.198785px;}
.xf_c00133{left:633.239220px;}
.x10_c00133{left:662.759085px;}
.x11_c00133{left:677.519670px;}
.x13_c00133{left:808.559685px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls4_c00133{letter-spacing:-5.200913pt;}
.lsb_c00133{letter-spacing:-3.383900pt;}
.ls9_c00133{letter-spacing:-2.546773pt;}
.ls5_c00133{letter-spacing:-2.232733pt;}
.lsc_c00133{letter-spacing:-2.144000pt;}
.ls3_c00133{letter-spacing:-1.483733pt;}
.lsf_c00133{letter-spacing:-1.465513pt;}
.ls8_c00133{letter-spacing:-1.278400pt;}
.ls1_c00133{letter-spacing:-0.742580pt;}
.ls10_c00133{letter-spacing:-0.675567pt;}
.ls2_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:0.742580pt;}
.ls7_c00133{letter-spacing:1.363200pt;}
.ls6_c00133{letter-spacing:7.712000pt;}
.lse_c00133{letter-spacing:12.189667pt;}
.lsa_c00133{letter-spacing:18.571600pt;}
.lsd_c00133{letter-spacing:46.863820pt;}
.ws0_c00133{word-spacing:0.000000pt;}
._0_c00133{width:4.584950pt;}
._1_c00133{width:6.277155pt;}
._2_c00133{width:9.258829pt;}
._3_c00133{width:20.346228pt;}
.fs8_c00133{font-size:23.333333pt;}
.fs5_c00133{font-size:40.000000pt;}
.fs3_c00133{font-size:40.666667pt;}
.fs4_c00133{font-size:42.666667pt;}
.fs6_c00133{font-size:43.333333pt;}
.fs7_c00133{font-size:44.666667pt;}
.fs2_c00133{font-size:45.333333pt;}
.fs1_c00133{font-size:64.000000pt;}
.fs0_c00133{font-size:71.333333pt;}
.fs9_c00133{font-size:139.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y5_c00133{bottom:161.919480pt;}
.y4_c00133{bottom:172.479467pt;}
.y3_c00133{bottom:843.839280pt;}
.y2_c00133{bottom:966.719627pt;}
.y1_c00133{bottom:1007.679200pt;}
.ha_c00133{height:24.335938pt;}
.h4_c00133{height:40.984375pt;}
.h6_c00133{height:41.718750pt;}
.h5_c00133{height:43.000000pt;}
.h7_c00133{height:43.671875pt;}
.h9_c00133{height:43.837891pt;}
.h8_c00133{height:45.015625pt;}
.h3_c00133{height:45.687500pt;}
.h2_c00133{height:62.812500pt;}
.h1_c00133{height:71.890625pt;}
.hb_c00133{height:136.748047pt;}
.h0_c00133{height:1122.666667pt;}
.w0_c00133{width:793.333333pt;}
.x0_c00133{left:0.000000pt;}
.x5_c00133{left:123.518533pt;}
.x6_c00133{left:144.638667pt;}
.x7_c00133{left:195.839333pt;}
.x8_c00133{left:231.999067pt;}
.x1_c00133{left:258.238787pt;}
.x9_c00133{left:278.718787pt;}
.xa_c00133{left:293.759720pt;}
.x2_c00133{left:318.718773pt;}
.xb_c00133{left:331.519067pt;}
.x12_c00133{left:337.918920pt;}
.xc_c00133{left:344.318813pt;}
.x3_c00133{left:398.718787pt;}
.x4_c00133{left:423.039587pt;}
.xd_c00133{left:525.439453pt;}
.xe_c00133{left:550.398920pt;}
.xf_c00133{left:562.879307pt;}
.x10_c00133{left:589.119187pt;}
.x11_c00133{left:602.239707pt;}
.x13_c00133{left:718.719720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fae78baba8ed764e7b957f47.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_c0d8d9acccc827db29052db8.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_64db604ab14379b58cc5b062.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_966832f32c1187743d11eca9.woff2')format("woff");}.ff4_c00134{font-family:ff4_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:ff5_c00134;src:url('chunks/assets/font_426cec331629622c68d4e255.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00134{transform:matrix(0.086449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086449,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.178606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178606,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.mf_c00134{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263587,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);}
.ma_c00134{transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{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_c00134{vertical-align:0.000000px;}
.ls8_c00134{letter-spacing:-4.738500px;}
.ls6_c00134{letter-spacing:-4.050150px;}
.ls7_c00134{letter-spacing:-2.697000px;}
.ls9_c00134{letter-spacing:-2.361120px;}
.lsf_c00134{letter-spacing:-2.287335px;}
.lsc_c00134{letter-spacing:-1.785375px;}
.lsa_c00134{letter-spacing:-1.630125px;}
.ls0_c00134{letter-spacing:-0.818100px;}
.lse_c00134{letter-spacing:-0.748320px;}
.lsb_c00134{letter-spacing:-0.724935px;}
.ls1_c00134{letter-spacing:0.000000px;}
.ls2_c00134{letter-spacing:1.432433px;}
.ls4_c00134{letter-spacing:3.417750px;}
.ls3_c00134{letter-spacing:5.527200px;}
.ls5_c00134{letter-spacing:8.535300px;}
.lsd_c00134{letter-spacing:24.750000px;}
.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;}
._0_c00134{width:5.961469px;}
.fc0_c00134{color:transparent;}
.fsc_c00134{font-size:44.250000px;}
.fs10_c00134{font-size:45.000000px;}
.fsa_c00134{font-size:46.500000px;}
.fse_c00134{font-size:47.250000px;}
.fsd_c00134{font-size:48.000000px;}
.fsb_c00134{font-size:48.750000px;}
.fs11_c00134{font-size:49.500000px;}
.fs9_c00134{font-size:50.250000px;}
.fsf_c00134{font-size:51.750000px;}
.fs5_c00134{font-size:54.000000px;}
.fs6_c00134{font-size:69.000000px;}
.fs4_c00134{font-size:69.750000px;}
.fs3_c00134{font-size:70.500000px;}
.fs2_c00134{font-size:75.750000px;}
.fs8_c00134{font-size:80.250000px;}
.fs0_c00134{font-size:81.000000px;}
.fs1_c00134{font-size:82.500000px;}
.fs7_c00134{font-size:101.165400px;}
.y0_c00134{bottom:0.000000px;}
.y7_c00134{bottom:194.759535px;}
.y9_c00134{bottom:195.840585px;}
.y8_c00134{bottom:196.559100px;}
.y6_c00134{bottom:921.599115px;}
.y5_c00134{bottom:966.240420px;}
.y4_c00134{bottom:987.119940px;}
.y3_c00134{bottom:1088.279205px;}
.y2_c00134{bottom:1088.280435px;}
.y1_c00134{bottom:1134.359250px;}
.hd_c00134{height:46.151367px;}
.hb_c00134{height:46.863281px;}
.h12_c00134{height:46.933594px;}
.hf_c00134{height:47.619141px;}
.he_c00134{height:48.375000px;}
.h10_c00134{height:48.498047px;}
.hc_c00134{height:49.130859px;}
.ha_c00134{height:49.317627px;}
.h14_c00134{height:50.062500px;}
.h13_c00134{height:51.626953px;}
.h11_c00134{height:52.154297px;}
.h6_c00134{height:56.320312px;}
.h7_c00134{height:67.719727px;}
.h5_c00134{height:68.455811px;}
.h4_c00134{height:69.191895px;}
.h3_c00134{height:74.344482px;}
.h1_c00134{height:79.497070px;}
.h2_c00134{height:80.969238px;}
.h9_c00134{height:83.698242px;}
.h8_c00134{height:99.288308px;}
.h0_c00134{height:1263.000000px;}
.w0_c00134{width:892.500000px;}
.x0_c00134{left:0.000000px;}
.xc_c00134{left:132.119415px;}
.xd_c00134{left:143.999400px;}
.xe_c00134{left:168.118815px;}
.xf_c00134{left:225.719535px;}
.x10_c00134{left:265.679100px;}
.x1_c00134{left:294.119385px;}
.x11_c00134{left:318.599700px;}
.x12_c00134{left:335.519100px;}
.x2_c00134{left:362.518485px;}
.x13_c00134{left:378.000000px;}
.x9_c00134{left:379.438635px;}
.x14_c00134{left:392.759085px;}
.x5_c00134{left:438.838950px;}
.x3_c00134{left:455.399235px;}
.xa_c00134{left:457.198785px;}
.x4_c00134{left:485.639100px;}
.xb_c00134{left:487.438665px;}
.x6_c00134{left:489.958335px;}
.x8_c00134{left:512.279850px;}
.x7_c00134{left:521.279250px;}
.x15_c00134{left:584.639700px;}
.x16_c00134{left:596.158770px;}
.x17_c00134{left:624.599070px;}
.x18_c00134{left:638.278800px;}
.x19_c00134{left:667.798560px;}
.x1a_c00134{left:682.559100px;}
.x1b_c00134{left:815.398590px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls8_c00134{letter-spacing:-4.212000pt;}
.ls6_c00134{letter-spacing:-3.600133pt;}
.ls7_c00134{letter-spacing:-2.397333pt;}
.ls9_c00134{letter-spacing:-2.098773pt;}
.lsf_c00134{letter-spacing:-2.033187pt;}
.lsc_c00134{letter-spacing:-1.587000pt;}
.lsa_c00134{letter-spacing:-1.449000pt;}
.ls0_c00134{letter-spacing:-0.727200pt;}
.lse_c00134{letter-spacing:-0.665173pt;}
.lsb_c00134{letter-spacing:-0.644387pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls2_c00134{letter-spacing:1.273273pt;}
.ls4_c00134{letter-spacing:3.038000pt;}
.ls3_c00134{letter-spacing:4.913067pt;}
.ls5_c00134{letter-spacing:7.586933pt;}
.lsd_c00134{letter-spacing:22.000000pt;}
.ws0_c00134{word-spacing:0.000000pt;}
._0_c00134{width:5.299084pt;}
.fsc_c00134{font-size:39.333333pt;}
.fs10_c00134{font-size:40.000000pt;}
.fsa_c00134{font-size:41.333333pt;}
.fse_c00134{font-size:42.000000pt;}
.fsd_c00134{font-size:42.666667pt;}
.fsb_c00134{font-size:43.333333pt;}
.fs11_c00134{font-size:44.000000pt;}
.fs9_c00134{font-size:44.666667pt;}
.fsf_c00134{font-size:46.000000pt;}
.fs5_c00134{font-size:48.000000pt;}
.fs6_c00134{font-size:61.333333pt;}
.fs4_c00134{font-size:62.000000pt;}
.fs3_c00134{font-size:62.666667pt;}
.fs2_c00134{font-size:67.333333pt;}
.fs8_c00134{font-size:71.333333pt;}
.fs0_c00134{font-size:72.000000pt;}
.fs1_c00134{font-size:73.333333pt;}
.fs7_c00134{font-size:89.924800pt;}
.y0_c00134{bottom:0.000000pt;}
.y7_c00134{bottom:173.119587pt;}
.y9_c00134{bottom:174.080520pt;}
.y8_c00134{bottom:174.719200pt;}
.y6_c00134{bottom:819.199213pt;}
.y5_c00134{bottom:858.880373pt;}
.y4_c00134{bottom:877.439947pt;}
.y3_c00134{bottom:967.359293pt;}
.y2_c00134{bottom:967.360387pt;}
.y1_c00134{bottom:1008.319333pt;}
.hd_c00134{height:41.023438pt;}
.hb_c00134{height:41.656250pt;}
.h12_c00134{height:41.718750pt;}
.hf_c00134{height:42.328125pt;}
.he_c00134{height:43.000000pt;}
.h10_c00134{height:43.109375pt;}
.hc_c00134{height:43.671875pt;}
.ha_c00134{height:43.837891pt;}
.h14_c00134{height:44.500000pt;}
.h13_c00134{height:45.890625pt;}
.h11_c00134{height:46.359375pt;}
.h6_c00134{height:50.062500pt;}
.h7_c00134{height:60.195312pt;}
.h5_c00134{height:60.849609pt;}
.h4_c00134{height:61.503906pt;}
.h3_c00134{height:66.083984pt;}
.h1_c00134{height:70.664062pt;}
.h2_c00134{height:71.972656pt;}
.h9_c00134{height:74.398438pt;}
.h8_c00134{height:88.256273pt;}
.h0_c00134{height:1122.666667pt;}
.w0_c00134{width:793.333333pt;}
.x0_c00134{left:0.000000pt;}
.xc_c00134{left:117.439480pt;}
.xd_c00134{left:127.999467pt;}
.xe_c00134{left:149.438947pt;}
.xf_c00134{left:200.639587pt;}
.x10_c00134{left:236.159200pt;}
.x1_c00134{left:261.439453pt;}
.x11_c00134{left:283.199733pt;}
.x12_c00134{left:298.239200pt;}
.x2_c00134{left:322.238653pt;}
.x13_c00134{left:336.000000pt;}
.x9_c00134{left:337.278787pt;}
.x14_c00134{left:349.119187pt;}
.x5_c00134{left:390.079067pt;}
.x3_c00134{left:404.799320pt;}
.xa_c00134{left:406.398920pt;}
.x4_c00134{left:431.679200pt;}
.xb_c00134{left:433.278813pt;}
.x6_c00134{left:435.518520pt;}
.x8_c00134{left:455.359867pt;}
.x7_c00134{left:463.359333pt;}
.x15_c00134{left:519.679733pt;}
.x16_c00134{left:529.918907pt;}
.x17_c00134{left:555.199173pt;}
.x18_c00134{left:567.358933pt;}
.x19_c00134{left:593.598720pt;}
.x1a_c00134{left:606.719200pt;}
.x1b_c00134{left:724.798747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba0c648fde5c4d4c098eb143.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.364746;font-style:normal;font-weight:normal;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_7964ab8f784065f6f0d6d6d5.woff2')format("woff");}.ff2_c00135{font-family:ff2_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:ff3_c00135;src:url('chunks/assets/font_bf0ed77b92792230b691a6e7.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_d50239690c9f1dec7ca73ca0.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_30390a574d5f2d4b70d68df7.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00135;src:url('chunks/assets/font_da3f46e792ddbad733f34bd3.woff2')format("woff");}.ff6_c00135{font-family:ff6_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:ff7_c00135;src:url('chunks/assets/font_66819c8b97698a2361b2e8d0.woff2')format("woff");}.ff7_c00135{font-family:ff7_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00135;src:url('chunks/assets/font_601321f65a54832775d3132d.woff2')format("woff");}.ff8_c00135{font-family:ff8_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00135;src:url('chunks/assets/font_0f03aa474b91165a5d605288.woff2')format("woff");}.ff9_c00135{font-family:ff9_c00135;line-height:1.364746;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_4f2acad384151a911bd432b4.woff2')format("woff");}.ffa_c00135{font-family:ffa_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00135;src:url('chunks/assets/font_4abfcac926b3e0a425db55d4.woff2')format("woff");}.ffb_c00135{font-family:ffb_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00135{transform:matrix(0.031073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031073,0.000000,0.000000,0.250000,0,0);}
.m7b_c00135{transform:matrix(0.070833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070833,0.000000,0.000000,0.250000,0,0);}
.m9_c00135{transform:matrix(0.075133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075133,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{transform:matrix(0.101562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101562,0.000000,0.000000,0.250000,0,0);}
.m1b_c00135{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m6b_c00135{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);}
.m7d_c00135{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m32_c00135{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m6e_c00135{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m7c_c00135{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m85_c00135{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m33_c00135{transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m6a_c00135{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m78_c00135{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m42_c00135{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_c00135{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m82_c00135{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m75_c00135{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m6c_c00135{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m34_c00135{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.m80_c00135{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.m2b_c00135{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m25_c00135{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m73_c00135{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m81_c00135{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m31_c00135{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m3a_c00135{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m3c_c00135{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m7f_c00135{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m38_c00135{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m72_c00135{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);}
.m7a_c00135{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m2f_c00135{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m68_c00135{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m6f_c00135{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m74_c00135{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m28_c00135{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m77_c00135{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m44_c00135{transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);}
.m57_c00135{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m84_c00135{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m79_c00135{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00135{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m29_c00135{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m60_c00135{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m26_c00135{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m3e_c00135{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m70_c00135{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.258696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258696,0.000000,0.000000,0.250000,0,0);}
.m3f_c00135{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m53_c00135{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m30_c00135{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m4a_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);}
.m40_c00135{transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);}
.m58_c00135{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m6d_c00135{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m39_c00135{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m35_c00135{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m7e_c00135{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m5c_c00135{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);}
.m3b_c00135{transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);}
.m24_c00135{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m37_c00135{transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);}
.m52_c00135{transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);}
.m61_c00135{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m49_c00135{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m64_c00135{transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);}
.m12_c00135{transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);}
.m4c_c00135{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m69_c00135{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m86_c00135{transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);}
.m76_c00135{transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299383,0.000000,0.000000,0.250000,0,0);}
.m4e_c00135{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m4f_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);}
.m65_c00135{transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308140,0.000000,0.000000,0.250000,0,0);}
.m48_c00135{transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);}
.m62_c00135{transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311111,0.000000,0.000000,0.250000,0,0);}
.m71_c00135{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00135{transform:matrix(0.323770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323770,0.000000,0.000000,0.250000,0,0);}
.m51_c00135{transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);}
.m5f_c00135{transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);}
.m67_c00135{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_c00135{transform:matrix(0.341667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341667,0.000000,0.000000,0.250000,0,0);}
.m3d_c00135{transform:matrix(0.342742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342742,0.000000,0.000000,0.250000,0,0);}
.m20_c00135{transform:matrix(0.344262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344262,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m46_c00135{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);}
.m55_c00135{transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00135{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);}
.m54_c00135{transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m5e_c00135{transform:matrix(0.407407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407407,0.000000,0.000000,0.250000,0,0);}
.m5a_c00135{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m4d_c00135{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);}
.m5d_c00135{transform:matrix(0.507143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507143,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.603175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603175,0.000000,0.000000,0.250000,0,0);}
.m66_c00135{transform:matrix(0.640625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640625,0.000000,0.000000,0.250000,0,0);}
.m59_c00135{transform:matrix(0.645161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645161,0.000000,0.000000,0.250000,0,0);}
.m63_c00135{transform:matrix(0.651515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651515,0.000000,0.000000,0.250000,0,0);}
.m4b_c00135{transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697917,0.000000,0.000000,0.250000,0,0);}
.m50_c00135{transform:matrix(0.729167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729167,0.000000,0.000000,0.250000,0,0);}
.m45_c00135{transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);}
.m56_c00135{transform:matrix(0.778571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778571,0.000000,0.000000,0.250000,0,0);}
.m1d_c00135{transform:matrix(1.039062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.039062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.039062,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls2a_c00135{letter-spacing:-15.492750px;}
.ls57_c00135{letter-spacing:-13.234125px;}
.ls40_c00135{letter-spacing:-12.773625px;}
.ls41_c00135{letter-spacing:-12.298320px;}
.ls15_c00135{letter-spacing:-10.125000px;}
.ls22_c00135{letter-spacing:-9.327150px;}
.ls47_c00135{letter-spacing:-7.920000px;}
.ls37_c00135{letter-spacing:-7.242720px;}
.ls53_c00135{letter-spacing:-6.628500px;}
.ls68_c00135{letter-spacing:-6.095250px;}
.ls65_c00135{letter-spacing:-6.093750px;}
.ls3d_c00135{letter-spacing:-5.955525px;}
.ls32_c00135{letter-spacing:-5.468400px;}
.ls29_c00135{letter-spacing:-5.421450px;}
.lsa_c00135{letter-spacing:-5.415525px;}
.ls1e_c00135{letter-spacing:-5.094045px;}
.ls33_c00135{letter-spacing:-5.082825px;}
.ls34_c00135{letter-spacing:-5.065500px;}
.ls10_c00135{letter-spacing:-4.941000px;}
.ls2f_c00135{letter-spacing:-4.927275px;}
.ls46_c00135{letter-spacing:-4.758900px;}
.ls4a_c00135{letter-spacing:-4.593750px;}
.ls30_c00135{letter-spacing:-4.060875px;}
.ls56_c00135{letter-spacing:-3.803760px;}
.ls28_c00135{letter-spacing:-3.749700px;}
.ls3b_c00135{letter-spacing:-3.645000px;}
.lsb_c00135{letter-spacing:-3.638250px;}
.ls36_c00135{letter-spacing:-3.633007px;}
.ls49_c00135{letter-spacing:-3.612000px;}
.ls2d_c00135{letter-spacing:-3.402825px;}
.ls1b_c00135{letter-spacing:-3.363750px;}
.ls52_c00135{letter-spacing:-3.361800px;}
.ls55_c00135{letter-spacing:-3.225322px;}
.lsf_c00135{letter-spacing:-3.207750px;}
.ls38_c00135{letter-spacing:-3.067103px;}
.ls5d_c00135{letter-spacing:-2.999205px;}
.ls1c_c00135{letter-spacing:-2.911095px;}
.ls2b_c00135{letter-spacing:-2.804400px;}
.ls3c_c00135{letter-spacing:-2.410800px;}
.ls63_c00135{letter-spacing:-2.398500px;}
.ls11_c00135{letter-spacing:-2.356695px;}
.lsc_c00135{letter-spacing:-2.352000px;}
.ls64_c00135{letter-spacing:-2.324228px;}
.ls54_c00135{letter-spacing:-2.301750px;}
.lse_c00135{letter-spacing:-2.287335px;}
.ls2c_c00135{letter-spacing:-2.213865px;}
.ls12_c00135{letter-spacing:-1.949513px;}
.ls60_c00135{letter-spacing:-1.911000px;}
.ls4c_c00135{letter-spacing:-1.743750px;}
.ls6a_c00135{letter-spacing:-1.733625px;}
.ls14_c00135{letter-spacing:-1.722758px;}
.ls19_c00135{letter-spacing:-1.633733px;}
.ls3f_c00135{letter-spacing:-1.612800px;}
.ls1_c00135{letter-spacing:-1.593000px;}
.ls69_c00135{letter-spacing:-1.586850px;}
.ls3_c00135{letter-spacing:-1.560000px;}
.ls31_c00135{letter-spacing:-1.525875px;}
.ls4e_c00135{letter-spacing:-1.499655px;}
.ls1f_c00135{letter-spacing:-1.474875px;}
.ls6_c00135{letter-spacing:-1.474200px;}
.ls72_c00135{letter-spacing:-1.455300px;}
.ls9_c00135{letter-spacing:-1.449000px;}
.ls4d_c00135{letter-spacing:-1.326675px;}
.ls66_c00135{letter-spacing:-1.251450px;}
.ls16_c00135{letter-spacing:-1.040400px;}
.ls27_c00135{letter-spacing:-0.994500px;}
.ls6d_c00135{letter-spacing:-0.825600px;}
.ls6b_c00135{letter-spacing:-0.808403px;}
.ls5a_c00135{letter-spacing:-0.776580px;}
.ls39_c00135{letter-spacing:-0.772800px;}
.ls59_c00135{letter-spacing:-0.720000px;}
.ls4b_c00135{letter-spacing:-0.705960px;}
.ls44_c00135{letter-spacing:-0.514620px;}
.ls50_c00135{letter-spacing:-0.370125px;}
.ls3a_c00135{letter-spacing:-0.253920px;}
.ls2_c00135{letter-spacing:0.000000px;}
.ls17_c00135{letter-spacing:0.182400px;}
.ls62_c00135{letter-spacing:0.724500px;}
.ls26_c00135{letter-spacing:0.748125px;}
.ls1a_c00135{letter-spacing:0.765000px;}
.ls61_c00135{letter-spacing:0.777750px;}
.ls25_c00135{letter-spacing:0.786900px;}
.ls35_c00135{letter-spacing:0.787200px;}
.ls2e_c00135{letter-spacing:0.800625px;}
.ls5e_c00135{letter-spacing:0.864300px;}
.ls4_c00135{letter-spacing:0.913500px;}
.ls71_c00135{letter-spacing:0.918750px;}
.ls18_c00135{letter-spacing:0.963900px;}
.ls51_c00135{letter-spacing:1.112625px;}
.lsd_c00135{letter-spacing:1.367100px;}
.ls4f_c00135{letter-spacing:1.387500px;}
.ls6c_c00135{letter-spacing:1.709572px;}
.ls45_c00135{letter-spacing:1.719900px;}
.ls6e_c00135{letter-spacing:1.763775px;}
.ls0_c00135{letter-spacing:2.648250px;}
.ls8_c00135{letter-spacing:2.922075px;}
.ls48_c00135{letter-spacing:3.051000px;}
.ls1d_c00135{letter-spacing:3.096000px;}
.ls43_c00135{letter-spacing:3.125625px;}
.ls5f_c00135{letter-spacing:3.524850px;}
.ls5b_c00135{letter-spacing:3.598155px;}
.ls6f_c00135{letter-spacing:3.806550px;}
.ls20_c00135{letter-spacing:4.275863px;}
.ls5_c00135{letter-spacing:4.378950px;}
.ls5c_c00135{letter-spacing:4.499625px;}
.ls13_c00135{letter-spacing:5.236800px;}
.ls70_c00135{letter-spacing:6.110580px;}
.ls42_c00135{letter-spacing:6.249000px;}
.ls3e_c00135{letter-spacing:6.428700px;}
.ls7_c00135{letter-spacing:6.923475px;}
.ls24_c00135{letter-spacing:8.736750px;}
.ls23_c00135{letter-spacing:9.809100px;}
.ls67_c00135{letter-spacing:16.145633px;}
.ls58_c00135{letter-spacing:25.001250px;}
.ls21_c00135{letter-spacing:90.494850px;}
.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;}
._0_c00135{width:6.051273px;}
.fc0_c00135{color:transparent;}
.fs28_c00135{font-size:17.250000px;}
.fs24_c00135{font-size:18.000000px;}
.fs1f_c00135{font-size:18.750000px;}
.fs27_c00135{font-size:21.750000px;}
.fs22_c00135{font-size:22.500000px;}
.fs2c_c00135{font-size:23.250000px;}
.fs20_c00135{font-size:24.000000px;}
.fs33_c00135{font-size:24.750000px;}
.fs2d_c00135{font-size:25.500000px;}
.fs29_c00135{font-size:26.250000px;}
.fs23_c00135{font-size:30.000000px;}
.fs21_c00135{font-size:30.750000px;}
.fs26_c00135{font-size:31.500000px;}
.fs30_c00135{font-size:32.250000px;}
.fs32_c00135{font-size:33.750000px;}
.fs1e_c00135{font-size:35.250000px;}
.fs2b_c00135{font-size:36.000000px;}
.fs2a_c00135{font-size:36.750000px;}
.fs2e_c00135{font-size:37.500000px;}
.fs31_c00135{font-size:39.000000px;}
.fs18_c00135{font-size:39.750000px;}
.fs2f_c00135{font-size:40.500000px;}
.fs1c_c00135{font-size:41.250000px;}
.fs1d_c00135{font-size:42.000000px;}
.fs17_c00135{font-size:42.750000px;}
.fs19_c00135{font-size:43.500000px;}
.fs1b_c00135{font-size:44.250000px;}
.fsf_c00135{font-size:45.000000px;}
.fs15_c00135{font-size:45.750000px;}
.fsd_c00135{font-size:46.500000px;}
.fs14_c00135{font-size:47.250000px;}
.fs10_c00135{font-size:48.000000px;}
.fse_c00135{font-size:48.750000px;}
.fsb_c00135{font-size:49.500000px;}
.fs34_c00135{font-size:50.250000px;}
.fsa_c00135{font-size:51.000000px;}
.fs11_c00135{font-size:51.750000px;}
.fsc_c00135{font-size:52.500000px;}
.fs9_c00135{font-size:53.250000px;}
.fs12_c00135{font-size:54.000000px;}
.fs13_c00135{font-size:56.250000px;}
.fs37_c00135{font-size:57.750000px;}
.fs16_c00135{font-size:58.500000px;}
.fs35_c00135{font-size:60.750000px;}
.fs1a_c00135{font-size:70.500000px;}
.fs25_c00135{font-size:72.000000px;}
.fs2_c00135{font-size:78.000000px;}
.fs3_c00135{font-size:78.750000px;}
.fs1_c00135{font-size:80.250000px;}
.fs4_c00135{font-size:83.250000px;}
.fs7_c00135{font-size:86.250000px;}
.fs5_c00135{font-size:87.750000px;}
.fs0_c00135{font-size:90.000000px;}
.fs6_c00135{font-size:132.750000px;}
.fs36_c00135{font-size:135.000000px;}
.fs8_c00135{font-size:282.000000px;}
.y0_c00135{bottom:0.000000px;}
.y11_c00135{bottom:176.399850px;}
.yf_c00135{bottom:191.158785px;}
.y10_c00135{bottom:191.878950px;}
.yd_c00135{bottom:218.158785px;}
.ye_c00135{bottom:225.719535px;}
.yc_c00135{bottom:328.680150px;}
.yb_c00135{bottom:343.439235px;}
.ya_c00135{bottom:348.119385px;}
.y9_c00135{bottom:357.118785px;}
.y8_c00135{bottom:371.159385px;}
.y7_c00135{bottom:385.199850px;}
.y6_c00135{bottom:894.599115px;}
.y5_c00135{bottom:946.440315px;}
.y4_c00135{bottom:978.838905px;}
.y3_c00135{bottom:1086.479640px;}
.y2_c00135{bottom:1086.480495px;}
.y1_c00135{bottom:1132.198785px;}
.h37_c00135{height:17.789062px;}
.h38_c00135{height:17.991211px;}
.h31_c00135{height:18.773438px;}
.h2c_c00135{height:19.555664px;}
.h36_c00135{height:21.495117px;}
.h2f_c00135{height:22.236328px;}
.h3d_c00135{height:24.249023px;}
.h2d_c00135{height:25.031250px;}
.h3f_c00135{height:25.201172px;}
.h45_c00135{height:25.813477px;}
.h3a_c00135{height:27.377930px;}
.h39_c00135{height:29.428711px;}
.h34_c00135{height:29.648438px;}
.h30_c00135{height:30.234375px;}
.h2e_c00135{height:30.389648px;}
.h35_c00135{height:30.900146px;}
.h46_c00135{height:31.872070px;}
.h42_c00135{height:33.635742px;}
.h2b_c00135{height:34.836914px;}
.h44_c00135{height:35.200195px;}
.h3b_c00135{height:36.319336px;}
.h3e_c00135{height:37.037109px;}
.h40_c00135{height:37.060547px;}
.h3c_c00135{height:37.546875px;}
.h43_c00135{height:38.542969px;}
.h47_c00135{height:39.111328px;}
.h41_c00135{height:40.025391px;}
.h21_c00135{height:41.458008px;}
.h4f_c00135{height:42.240234px;}
.h28_c00135{height:43.022461px;}
.h29_c00135{height:43.804688px;}
.h1f_c00135{height:44.586914px;}
.h25_c00135{height:45.369141px;}
.h24_c00135{height:46.107422px;}
.h27_c00135{height:46.151367px;}
.h49_c00135{height:46.373291px;}
.h22_c00135{height:46.696289px;}
.he_c00135{height:46.863281px;}
.h10_c00135{height:46.933594px;}
.h2a_c00135{height:47.437500px;}
.h23_c00135{height:47.619141px;}
.h1b_c00135{height:47.715820px;}
.h1e_c00135{height:47.821655px;}
.h13_c00135{height:47.845459px;}
.h12_c00135{height:48.178711px;}
.h14_c00135{height:48.375000px;}
.h50_c00135{height:48.581543px;}
.h20_c00135{height:49.130859px;}
.h1a_c00135{height:49.280273px;}
.h4e_c00135{height:49.317627px;}
.h4b_c00135{height:49.661133px;}
.hc_c00135{height:49.886719px;}
.h19_c00135{height:50.062500px;}
.h17_c00135{height:50.402344px;}
.h48_c00135{height:50.642578px;}
.hf_c00135{height:50.844727px;}
.h1d_c00135{height:51.143555px;}
.hb_c00135{height:51.398438px;}
.h11_c00135{height:51.884766px;}
.h15_c00135{height:52.154297px;}
.ha_c00135{height:52.625977px;}
.hd_c00135{height:52.910156px;}
.h16_c00135{height:53.367188px;}
.h18_c00135{height:55.590820px;}
.h1c_c00135{height:57.814453px;}
.h4d_c00135{height:60.231445px;}
.h4a_c00135{height:63.360352px;}
.h26_c00135{height:73.529297px;}
.h33_c00135{height:75.093750px;}
.h3_c00135{height:78.609375px;}
.h4_c00135{height:79.365234px;}
.h2_c00135{height:80.876953px;}
.h5_c00135{height:83.900391px;}
.h8_c00135{height:86.923828px;}
.h6_c00135{height:88.435547px;}
.h1_c00135{height:88.945312px;}
.h32_c00135{height:89.956055px;}
.h7_c00135{height:138.454102px;}
.h4c_c00135{height:140.800781px;}
.h9_c00135{height:276.629883px;}
.h0_c00135{height:1263.000000px;}
.w0_c00135{width:892.500000px;}
.x0_c00135{left:0.000000px;}
.xe_c00135{left:132.478665px;}
.x77_c00135{left:143.638500px;}
.xf_c00135{left:147.598500px;}
.x10_c00135{left:160.198785px;}
.x78_c00135{left:168.118815px;}
.x3f_c00135{left:169.199850px;}
.x65_c00135{left:173.519100px;}
.x2b_c00135{left:174.959400px;}
.x40_c00135{left:180.359850px;}
.x66_c00135{left:189.718500px;}
.x5b_c00135{left:191.878950px;}
.x2c_c00135{left:192.958350px;}
.x11_c00135{left:194.039400px;}
.x41_c00135{left:201.239250px;}
.x6c_c00135{left:205.919535px;}
.x12_c00135{left:216.000000px;}
.x6d_c00135{left:218.878950px;}
.x67_c00135{left:223.199850px;}
.x2d_c00135{left:224.279250px;}
.x79_c00135{left:225.358635px;}
.x5c_c00135{left:227.878350px;}
.x68_c00135{left:237.238785px;}
.x5d_c00135{left:239.758500px;}
.x6e_c00135{left:242.639100px;}
.xb_c00135{left:244.079385px;}
.x13_c00135{left:252.719535px;}
.x2e_c00135{left:254.878350px;}
.x4e_c00135{left:262.798515px;}
.x42_c00135{left:265.319850px;}
.x2f_c00135{left:266.399250px;}
.x14_c00135{left:267.478635px;}
.x43_c00135{left:276.118785px;}
.x15_c00135{left:279.358635px;}
.x7_c00135{left:284.759100px;}
.x5e_c00135{left:291.599700px;}
.x1_c00135{left:292.679100px;}
.x44_c00135{left:297.000000px;}
.xc_c00135{left:300.958350px;}
.x16_c00135{left:302.039385px;}
.x69_c00135{left:303.838950px;}
.x30_c00135{left:308.159850px;}
.x4f_c00135{left:316.080000px;}
.x7a_c00135{left:318.238785px;}
.x17_c00135{left:326.158785px;}
.x5f_c00135{left:328.319250px;}
.x7b_c00135{left:335.159850px;}
.x31_c00135{left:339.838515px;}
.x18_c00135{left:340.919535px;}
.x8_c00135{left:342.359850px;}
.x60_c00135{left:344.879535px;}
.x50_c00135{left:354.958350px;}
.x45_c00135{left:358.199850px;}
.x6a_c00135{left:362.878350px;}
.x61_c00135{left:367.919535px;}
.x3_c00135{left:368.998290px;}
.xd_c00135{left:371.879535px;}
.x32_c00135{left:374.040000px;}
.x19_c00135{left:375.478635px;}
.x6b_c00135{left:376.559685px;}
.x7c_c00135{left:377.639100px;}
.x51_c00135{left:379.079385px;}
.x2_c00135{left:384.838950px;}
.x9_c00135{left:387.358665px;}
.x7d_c00135{left:392.399820px;}
.x1a_c00135{left:395.639700px;}
.x6f_c00135{left:397.080000px;}
.x6_c00135{left:401.399235px;}
.x52_c00135{left:403.198785px;}
.x46_c00135{left:407.519670px;}
.x33_c00135{left:417.598530px;}
.x47_c00135{left:418.679670px;}
.x34_c00135{left:431.279850px;}
.x1b_c00135{left:432.359250px;}
.x53_c00135{left:441.358665px;}
.x4_c00135{left:447.838530px;}
.x54_c00135{left:453.599670px;}
.x62_c00135{left:460.799565px;}
.xa_c00135{left:464.398635px;}
.x48_c00135{left:473.759085px;}
.x5_c00135{left:479.159415px;}
.x35_c00135{left:487.799565px;}
.x1c_c00135{left:501.119985px;}
.x36_c00135{left:511.559685px;}
.x55_c00135{left:515.519670px;}
.x1d_c00135{left:530.278800px;}
.x1e_c00135{left:542.519670px;}
.x37_c00135{left:556.558635px;}
.x1f_c00135{left:558.719100px;}
.x20_c00135{left:573.118785px;}
.x38_c00135{left:575.638545px;}
.x49_c00135{left:584.639700px;}
.x21_c00135{left:585.719100px;}
.x56_c00135{left:594.718500px;}
.x4a_c00135{left:596.158770px;}
.x57_c00135{left:605.878320px;}
.x39_c00135{left:612.359850px;}
.x75_c00135{left:613.798515px;}
.x76_c00135{left:622.438620px;}
.x22_c00135{left:623.878920px;}
.x4b_c00135{left:625.678530px;}
.x3a_c00135{left:629.999400px;}
.x7e_c00135{left:637.558635px;}
.x23_c00135{left:638.639700px;}
.x4c_c00135{left:642.238770px;}
.x3b_c00135{left:643.319820px;}
.x70_c00135{left:647.279850px;}
.x24_c00135{left:655.918350px;}
.x71_c00135{left:658.078770px;}
.x7f_c00135{left:667.798560px;}
.x63_c00135{left:672.119385px;}
.x58_c00135{left:673.198785px;}
.x3c_c00135{left:679.319235px;}
.x80_c00135{left:682.559100px;}
.x59_c00135{left:687.959385px;}
.x72_c00135{left:694.798560px;}
.x25_c00135{left:695.879520px;}
.x73_c00135{left:708.838950px;}
.x26_c00135{left:710.279250px;}
.x27_c00135{left:722.159370px;}
.x3d_c00135{left:723.958920px;}
.x5a_c00135{left:726.478635px;}
.x4d_c00135{left:737.279250px;}
.x64_c00135{left:744.479235px;}
.x28_c00135{left:749.159370px;}
.x29_c00135{left:756.359250px;}
.x3e_c00135{left:767.159820px;}
.x2a_c00135{left:771.479190px;}
.x74_c00135{left:814.319280px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls2a_c00135{letter-spacing:-13.771333pt;}
.ls57_c00135{letter-spacing:-11.763667pt;}
.ls40_c00135{letter-spacing:-11.354333pt;}
.ls41_c00135{letter-spacing:-10.931840pt;}
.ls15_c00135{letter-spacing:-9.000000pt;}
.ls22_c00135{letter-spacing:-8.290800pt;}
.ls47_c00135{letter-spacing:-7.040000pt;}
.ls37_c00135{letter-spacing:-6.437973pt;}
.ls53_c00135{letter-spacing:-5.892000pt;}
.ls68_c00135{letter-spacing:-5.418000pt;}
.ls65_c00135{letter-spacing:-5.416667pt;}
.ls3d_c00135{letter-spacing:-5.293800pt;}
.ls32_c00135{letter-spacing:-4.860800pt;}
.ls29_c00135{letter-spacing:-4.819067pt;}
.lsa_c00135{letter-spacing:-4.813800pt;}
.ls1e_c00135{letter-spacing:-4.528040pt;}
.ls33_c00135{letter-spacing:-4.518067pt;}
.ls34_c00135{letter-spacing:-4.502667pt;}
.ls10_c00135{letter-spacing:-4.392000pt;}
.ls2f_c00135{letter-spacing:-4.379800pt;}
.ls46_c00135{letter-spacing:-4.230133pt;}
.ls4a_c00135{letter-spacing:-4.083333pt;}
.ls30_c00135{letter-spacing:-3.609667pt;}
.ls56_c00135{letter-spacing:-3.381120pt;}
.ls28_c00135{letter-spacing:-3.333067pt;}
.ls3b_c00135{letter-spacing:-3.240000pt;}
.lsb_c00135{letter-spacing:-3.234000pt;}
.ls36_c00135{letter-spacing:-3.229340pt;}
.ls49_c00135{letter-spacing:-3.210667pt;}
.ls2d_c00135{letter-spacing:-3.024733pt;}
.ls1b_c00135{letter-spacing:-2.990000pt;}
.ls52_c00135{letter-spacing:-2.988267pt;}
.ls55_c00135{letter-spacing:-2.866953pt;}
.lsf_c00135{letter-spacing:-2.851333pt;}
.ls38_c00135{letter-spacing:-2.726313pt;}
.ls5d_c00135{letter-spacing:-2.665960pt;}
.ls1c_c00135{letter-spacing:-2.587640pt;}
.ls2b_c00135{letter-spacing:-2.492800pt;}
.ls3c_c00135{letter-spacing:-2.142933pt;}
.ls63_c00135{letter-spacing:-2.132000pt;}
.ls11_c00135{letter-spacing:-2.094840pt;}
.lsc_c00135{letter-spacing:-2.090667pt;}
.ls64_c00135{letter-spacing:-2.065980pt;}
.ls54_c00135{letter-spacing:-2.046000pt;}
.lse_c00135{letter-spacing:-2.033187pt;}
.ls2c_c00135{letter-spacing:-1.967880pt;}
.ls12_c00135{letter-spacing:-1.732900pt;}
.ls60_c00135{letter-spacing:-1.698667pt;}
.ls4c_c00135{letter-spacing:-1.550000pt;}
.ls6a_c00135{letter-spacing:-1.541000pt;}
.ls14_c00135{letter-spacing:-1.531340pt;}
.ls19_c00135{letter-spacing:-1.452207pt;}
.ls3f_c00135{letter-spacing:-1.433600pt;}
.ls1_c00135{letter-spacing:-1.416000pt;}
.ls69_c00135{letter-spacing:-1.410533pt;}
.ls3_c00135{letter-spacing:-1.386667pt;}
.ls31_c00135{letter-spacing:-1.356333pt;}
.ls4e_c00135{letter-spacing:-1.333027pt;}
.ls1f_c00135{letter-spacing:-1.311000pt;}
.ls6_c00135{letter-spacing:-1.310400pt;}
.ls72_c00135{letter-spacing:-1.293600pt;}
.ls9_c00135{letter-spacing:-1.288000pt;}
.ls4d_c00135{letter-spacing:-1.179267pt;}
.ls66_c00135{letter-spacing:-1.112400pt;}
.ls16_c00135{letter-spacing:-0.924800pt;}
.ls27_c00135{letter-spacing:-0.884000pt;}
.ls6d_c00135{letter-spacing:-0.733867pt;}
.ls6b_c00135{letter-spacing:-0.718580pt;}
.ls5a_c00135{letter-spacing:-0.690293pt;}
.ls39_c00135{letter-spacing:-0.686933pt;}
.ls59_c00135{letter-spacing:-0.640000pt;}
.ls4b_c00135{letter-spacing:-0.627520pt;}
.ls44_c00135{letter-spacing:-0.457440pt;}
.ls50_c00135{letter-spacing:-0.329000pt;}
.ls3a_c00135{letter-spacing:-0.225707pt;}
.ls2_c00135{letter-spacing:0.000000pt;}
.ls17_c00135{letter-spacing:0.162133pt;}
.ls62_c00135{letter-spacing:0.644000pt;}
.ls26_c00135{letter-spacing:0.665000pt;}
.ls1a_c00135{letter-spacing:0.680000pt;}
.ls61_c00135{letter-spacing:0.691333pt;}
.ls25_c00135{letter-spacing:0.699467pt;}
.ls35_c00135{letter-spacing:0.699733pt;}
.ls2e_c00135{letter-spacing:0.711667pt;}
.ls5e_c00135{letter-spacing:0.768267pt;}
.ls4_c00135{letter-spacing:0.812000pt;}
.ls71_c00135{letter-spacing:0.816667pt;}
.ls18_c00135{letter-spacing:0.856800pt;}
.ls51_c00135{letter-spacing:0.989000pt;}
.lsd_c00135{letter-spacing:1.215200pt;}
.ls4f_c00135{letter-spacing:1.233333pt;}
.ls6c_c00135{letter-spacing:1.519620pt;}
.ls45_c00135{letter-spacing:1.528800pt;}
.ls6e_c00135{letter-spacing:1.567800pt;}
.ls0_c00135{letter-spacing:2.354000pt;}
.ls8_c00135{letter-spacing:2.597400pt;}
.ls48_c00135{letter-spacing:2.712000pt;}
.ls1d_c00135{letter-spacing:2.752000pt;}
.ls43_c00135{letter-spacing:2.778333pt;}
.ls5f_c00135{letter-spacing:3.133200pt;}
.ls5b_c00135{letter-spacing:3.198360pt;}
.ls6f_c00135{letter-spacing:3.383600pt;}
.ls20_c00135{letter-spacing:3.800767pt;}
.ls5_c00135{letter-spacing:3.892400pt;}
.ls5c_c00135{letter-spacing:3.999667pt;}
.ls13_c00135{letter-spacing:4.654933pt;}
.ls70_c00135{letter-spacing:5.431627pt;}
.ls42_c00135{letter-spacing:5.554667pt;}
.ls3e_c00135{letter-spacing:5.714400pt;}
.ls7_c00135{letter-spacing:6.154200pt;}
.ls24_c00135{letter-spacing:7.766000pt;}
.ls23_c00135{letter-spacing:8.719200pt;}
.ls67_c00135{letter-spacing:14.351673pt;}
.ls58_c00135{letter-spacing:22.223333pt;}
.ls21_c00135{letter-spacing:80.439867pt;}
.ws0_c00135{word-spacing:0.000000pt;}
._0_c00135{width:5.378910pt;}
.fs28_c00135{font-size:15.333333pt;}
.fs24_c00135{font-size:16.000000pt;}
.fs1f_c00135{font-size:16.666667pt;}
.fs27_c00135{font-size:19.333333pt;}
.fs22_c00135{font-size:20.000000pt;}
.fs2c_c00135{font-size:20.666667pt;}
.fs20_c00135{font-size:21.333333pt;}
.fs33_c00135{font-size:22.000000pt;}
.fs2d_c00135{font-size:22.666667pt;}
.fs29_c00135{font-size:23.333333pt;}
.fs23_c00135{font-size:26.666667pt;}
.fs21_c00135{font-size:27.333333pt;}
.fs26_c00135{font-size:28.000000pt;}
.fs30_c00135{font-size:28.666667pt;}
.fs32_c00135{font-size:30.000000pt;}
.fs1e_c00135{font-size:31.333333pt;}
.fs2b_c00135{font-size:32.000000pt;}
.fs2a_c00135{font-size:32.666667pt;}
.fs2e_c00135{font-size:33.333333pt;}
.fs31_c00135{font-size:34.666667pt;}
.fs18_c00135{font-size:35.333333pt;}
.fs2f_c00135{font-size:36.000000pt;}
.fs1c_c00135{font-size:36.666667pt;}
.fs1d_c00135{font-size:37.333333pt;}
.fs17_c00135{font-size:38.000000pt;}
.fs19_c00135{font-size:38.666667pt;}
.fs1b_c00135{font-size:39.333333pt;}
.fsf_c00135{font-size:40.000000pt;}
.fs15_c00135{font-size:40.666667pt;}
.fsd_c00135{font-size:41.333333pt;}
.fs14_c00135{font-size:42.000000pt;}
.fs10_c00135{font-size:42.666667pt;}
.fse_c00135{font-size:43.333333pt;}
.fsb_c00135{font-size:44.000000pt;}
.fs34_c00135{font-size:44.666667pt;}
.fsa_c00135{font-size:45.333333pt;}
.fs11_c00135{font-size:46.000000pt;}
.fsc_c00135{font-size:46.666667pt;}
.fs9_c00135{font-size:47.333333pt;}
.fs12_c00135{font-size:48.000000pt;}
.fs13_c00135{font-size:50.000000pt;}
.fs37_c00135{font-size:51.333333pt;}
.fs16_c00135{font-size:52.000000pt;}
.fs35_c00135{font-size:54.000000pt;}
.fs1a_c00135{font-size:62.666667pt;}
.fs25_c00135{font-size:64.000000pt;}
.fs2_c00135{font-size:69.333333pt;}
.fs3_c00135{font-size:70.000000pt;}
.fs1_c00135{font-size:71.333333pt;}
.fs4_c00135{font-size:74.000000pt;}
.fs7_c00135{font-size:76.666667pt;}
.fs5_c00135{font-size:78.000000pt;}
.fs0_c00135{font-size:80.000000pt;}
.fs6_c00135{font-size:118.000000pt;}
.fs36_c00135{font-size:120.000000pt;}
.fs8_c00135{font-size:250.666667pt;}
.y0_c00135{bottom:0.000000pt;}
.y11_c00135{bottom:156.799867pt;}
.yf_c00135{bottom:169.918920pt;}
.y10_c00135{bottom:170.559067pt;}
.yd_c00135{bottom:193.918920pt;}
.ye_c00135{bottom:200.639587pt;}
.yc_c00135{bottom:292.160133pt;}
.yb_c00135{bottom:305.279320pt;}
.ya_c00135{bottom:309.439453pt;}
.y9_c00135{bottom:317.438920pt;}
.y8_c00135{bottom:329.919453pt;}
.y7_c00135{bottom:342.399867pt;}
.y6_c00135{bottom:795.199213pt;}
.y5_c00135{bottom:841.280280pt;}
.y4_c00135{bottom:870.079027pt;}
.y3_c00135{bottom:965.759680pt;}
.y2_c00135{bottom:965.760440pt;}
.y1_c00135{bottom:1006.398920pt;}
.h37_c00135{height:15.812500pt;}
.h38_c00135{height:15.992187pt;}
.h31_c00135{height:16.687500pt;}
.h2c_c00135{height:17.382812pt;}
.h36_c00135{height:19.106771pt;}
.h2f_c00135{height:19.765625pt;}
.h3d_c00135{height:21.554687pt;}
.h2d_c00135{height:22.250000pt;}
.h3f_c00135{height:22.401042pt;}
.h45_c00135{height:22.945312pt;}
.h3a_c00135{height:24.335938pt;}
.h39_c00135{height:26.158854pt;}
.h34_c00135{height:26.354167pt;}
.h30_c00135{height:26.875000pt;}
.h2e_c00135{height:27.013021pt;}
.h35_c00135{height:27.466797pt;}
.h46_c00135{height:28.330729pt;}
.h42_c00135{height:29.898438pt;}
.h2b_c00135{height:30.966146pt;}
.h44_c00135{height:31.289062pt;}
.h3b_c00135{height:32.283854pt;}
.h3e_c00135{height:32.921875pt;}
.h40_c00135{height:32.942708pt;}
.h3c_c00135{height:33.375000pt;}
.h43_c00135{height:34.260417pt;}
.h47_c00135{height:34.765625pt;}
.h41_c00135{height:35.578125pt;}
.h21_c00135{height:36.851562pt;}
.h4f_c00135{height:37.546875pt;}
.h28_c00135{height:38.242188pt;}
.h29_c00135{height:38.937500pt;}
.h1f_c00135{height:39.632812pt;}
.h25_c00135{height:40.328125pt;}
.h24_c00135{height:40.984375pt;}
.h27_c00135{height:41.023438pt;}
.h49_c00135{height:41.220703pt;}
.h22_c00135{height:41.507812pt;}
.he_c00135{height:41.656250pt;}
.h10_c00135{height:41.718750pt;}
.h2a_c00135{height:42.166667pt;}
.h23_c00135{height:42.328125pt;}
.h1b_c00135{height:42.414062pt;}
.h1e_c00135{height:42.508138pt;}
.h13_c00135{height:42.529297pt;}
.h12_c00135{height:42.825521pt;}
.h14_c00135{height:43.000000pt;}
.h50_c00135{height:43.183594pt;}
.h20_c00135{height:43.671875pt;}
.h1a_c00135{height:43.804688pt;}
.h4e_c00135{height:43.837891pt;}
.h4b_c00135{height:44.143229pt;}
.hc_c00135{height:44.343750pt;}
.h19_c00135{height:44.500000pt;}
.h17_c00135{height:44.802083pt;}
.h48_c00135{height:45.015625pt;}
.hf_c00135{height:45.195312pt;}
.h1d_c00135{height:45.460938pt;}
.hb_c00135{height:45.687500pt;}
.h11_c00135{height:46.119792pt;}
.h15_c00135{height:46.359375pt;}
.ha_c00135{height:46.778646pt;}
.hd_c00135{height:47.031250pt;}
.h16_c00135{height:47.437500pt;}
.h18_c00135{height:49.414063pt;}
.h1c_c00135{height:51.390625pt;}
.h4d_c00135{height:53.539062pt;}
.h4a_c00135{height:56.320312pt;}
.h26_c00135{height:65.359375pt;}
.h33_c00135{height:66.750000pt;}
.h3_c00135{height:69.875000pt;}
.h4_c00135{height:70.546875pt;}
.h2_c00135{height:71.890625pt;}
.h5_c00135{height:74.578125pt;}
.h8_c00135{height:77.265625pt;}
.h6_c00135{height:78.609375pt;}
.h1_c00135{height:79.062500pt;}
.h32_c00135{height:79.960938pt;}
.h7_c00135{height:123.070312pt;}
.h4c_c00135{height:125.156250pt;}
.h9_c00135{height:245.893229pt;}
.h0_c00135{height:1122.666667pt;}
.w0_c00135{width:793.333333pt;}
.x0_c00135{left:0.000000pt;}
.xe_c00135{left:117.758813pt;}
.x77_c00135{left:127.678667pt;}
.xf_c00135{left:131.198667pt;}
.x10_c00135{left:142.398920pt;}
.x78_c00135{left:149.438947pt;}
.x3f_c00135{left:150.399867pt;}
.x65_c00135{left:154.239200pt;}
.x2b_c00135{left:155.519467pt;}
.x40_c00135{left:160.319867pt;}
.x66_c00135{left:168.638667pt;}
.x5b_c00135{left:170.559067pt;}
.x2c_c00135{left:171.518533pt;}
.x11_c00135{left:172.479467pt;}
.x41_c00135{left:178.879333pt;}
.x6c_c00135{left:183.039587pt;}
.x12_c00135{left:192.000000pt;}
.x6d_c00135{left:194.559067pt;}
.x67_c00135{left:198.399867pt;}
.x2d_c00135{left:199.359333pt;}
.x79_c00135{left:200.318787pt;}
.x5c_c00135{left:202.558533pt;}
.x68_c00135{left:210.878920pt;}
.x5d_c00135{left:213.118667pt;}
.x6e_c00135{left:215.679200pt;}
.xb_c00135{left:216.959453pt;}
.x13_c00135{left:224.639587pt;}
.x2e_c00135{left:226.558533pt;}
.x4e_c00135{left:233.598680pt;}
.x42_c00135{left:235.839867pt;}
.x2f_c00135{left:236.799333pt;}
.x14_c00135{left:237.758787pt;}
.x43_c00135{left:245.438920pt;}
.x15_c00135{left:248.318787pt;}
.x7_c00135{left:253.119200pt;}
.x5e_c00135{left:259.199733pt;}
.x1_c00135{left:260.159200pt;}
.x44_c00135{left:264.000000pt;}
.xc_c00135{left:267.518533pt;}
.x16_c00135{left:268.479453pt;}
.x69_c00135{left:270.079067pt;}
.x30_c00135{left:273.919867pt;}
.x4f_c00135{left:280.960000pt;}
.x7a_c00135{left:282.878920pt;}
.x17_c00135{left:289.918920pt;}
.x5f_c00135{left:291.839333pt;}
.x7b_c00135{left:297.919867pt;}
.x31_c00135{left:302.078680pt;}
.x18_c00135{left:303.039587pt;}
.x8_c00135{left:304.319867pt;}
.x60_c00135{left:306.559587pt;}
.x50_c00135{left:315.518533pt;}
.x45_c00135{left:318.399867pt;}
.x6a_c00135{left:322.558533pt;}
.x61_c00135{left:327.039587pt;}
.x3_c00135{left:327.998480pt;}
.xd_c00135{left:330.559587pt;}
.x32_c00135{left:332.480000pt;}
.x19_c00135{left:333.758787pt;}
.x6b_c00135{left:334.719720pt;}
.x7c_c00135{left:335.679200pt;}
.x51_c00135{left:336.959453pt;}
.x2_c00135{left:342.079067pt;}
.x9_c00135{left:344.318813pt;}
.x7d_c00135{left:348.799840pt;}
.x1a_c00135{left:351.679733pt;}
.x6f_c00135{left:352.960000pt;}
.x6_c00135{left:356.799320pt;}
.x52_c00135{left:358.398920pt;}
.x46_c00135{left:362.239707pt;}
.x33_c00135{left:371.198693pt;}
.x47_c00135{left:372.159707pt;}
.x34_c00135{left:383.359867pt;}
.x1b_c00135{left:384.319333pt;}
.x53_c00135{left:392.318813pt;}
.x4_c00135{left:398.078693pt;}
.x54_c00135{left:403.199707pt;}
.x62_c00135{left:409.599613pt;}
.xa_c00135{left:412.798787pt;}
.x48_c00135{left:421.119187pt;}
.x5_c00135{left:425.919480pt;}
.x35_c00135{left:433.599613pt;}
.x1c_c00135{left:445.439987pt;}
.x36_c00135{left:454.719720pt;}
.x55_c00135{left:458.239707pt;}
.x1d_c00135{left:471.358933pt;}
.x1e_c00135{left:482.239707pt;}
.x37_c00135{left:494.718787pt;}
.x1f_c00135{left:496.639200pt;}
.x20_c00135{left:509.438920pt;}
.x38_c00135{left:511.678707pt;}
.x49_c00135{left:519.679733pt;}
.x21_c00135{left:520.639200pt;}
.x56_c00135{left:528.638667pt;}
.x4a_c00135{left:529.918907pt;}
.x57_c00135{left:538.558507pt;}
.x39_c00135{left:544.319867pt;}
.x75_c00135{left:545.598680pt;}
.x76_c00135{left:553.278773pt;}
.x22_c00135{left:554.559040pt;}
.x4b_c00135{left:556.158693pt;}
.x3a_c00135{left:559.999467pt;}
.x7e_c00135{left:566.718787pt;}
.x23_c00135{left:567.679733pt;}
.x4c_c00135{left:570.878907pt;}
.x3b_c00135{left:571.839840pt;}
.x70_c00135{left:575.359867pt;}
.x24_c00135{left:583.038533pt;}
.x71_c00135{left:584.958907pt;}
.x7f_c00135{left:593.598720pt;}
.x63_c00135{left:597.439453pt;}
.x58_c00135{left:598.398920pt;}
.x3c_c00135{left:603.839320pt;}
.x80_c00135{left:606.719200pt;}
.x59_c00135{left:611.519453pt;}
.x72_c00135{left:617.598720pt;}
.x25_c00135{left:618.559573pt;}
.x73_c00135{left:630.079067pt;}
.x26_c00135{left:631.359333pt;}
.x27_c00135{left:641.919440pt;}
.x3d_c00135{left:643.519040pt;}
.x5a_c00135{left:645.758787pt;}
.x4d_c00135{left:655.359333pt;}
.x64_c00135{left:661.759320pt;}
.x28_c00135{left:665.919440pt;}
.x29_c00135{left:672.319333pt;}
.x3e_c00135{left:681.919840pt;}
.x2a_c00135{left:685.759280pt;}
.x74_c00135{left:723.839360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7880baebd360cb6a6190a6c.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_4d0ed68458e7adb87f14f7f7.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_4bfaffaaf96e22f2c264ddfb.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_e83d72d652f019f4c644f043.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_645d4ae17c93b9a2234de000.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.364746;font-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_c00136{transform:matrix(0.100694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100694,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.me_c00136{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m9_c00136{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);}
.m8_c00136{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.300847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300847,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls12_c00136{letter-spacing:-3.115200px;}
.ls9_c00136{letter-spacing:-2.115750px;}
.lsb_c00136{letter-spacing:-2.088000px;}
.ls7_c00136{letter-spacing:-1.913625px;}
.ls3_c00136{letter-spacing:-1.560000px;}
.lse_c00136{letter-spacing:-1.552500px;}
.ls10_c00136{letter-spacing:-0.994500px;}
.lsa_c00136{letter-spacing:-0.794220px;}
.lsc_c00136{letter-spacing:-0.788603px;}
.lsd_c00136{letter-spacing:-0.692385px;}
.ls8_c00136{letter-spacing:-0.639975px;}
.ls2_c00136{letter-spacing:0.000000px;}
.ls4_c00136{letter-spacing:0.858000px;}
.ls0_c00136{letter-spacing:1.716000px;}
.lsf_c00136{letter-spacing:2.362500px;}
.ls1_c00136{letter-spacing:2.574000px;}
.ls5_c00136{letter-spacing:4.745355px;}
.ls6_c00136{letter-spacing:10.909800px;}
.ls11_c00136{letter-spacing:19.320420px;}
.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;}
._0_c00136{width:6.731966px;}
.fc0_c00136{color:transparent;}
.fsd_c00136{font-size:28.500000px;}
.fs6_c00136{font-size:39.750000px;}
.fs8_c00136{font-size:42.000000px;}
.fsc_c00136{font-size:44.250000px;}
.fsa_c00136{font-size:45.000000px;}
.fs7_c00136{font-size:46.500000px;}
.fs5_c00136{font-size:47.250000px;}
.fs9_c00136{font-size:48.000000px;}
.fsb_c00136{font-size:48.750000px;}
.fs1_c00136{font-size:64.500000px;}
.fs2_c00136{font-size:70.500000px;}
.fs0_c00136{font-size:78.000000px;}
.fs3_c00136{font-size:99.000000px;}
.fs4_c00136{font-size:108.000000px;}
.y0_c00136{bottom:0.000000px;}
.y8_c00136{bottom:178.919535px;}
.y6_c00136{bottom:190.079400px;}
.y7_c00136{bottom:191.160465px;}
.y5_c00136{bottom:966.599670px;}
.y4_c00136{bottom:977.400240px;}
.y3_c00136{bottom:1086.479640px;}
.y2_c00136{bottom:1086.480675px;}
.y1_c00136{bottom:1131.839535px;}
.h10_c00136{height:28.722656px;}
.h7_c00136{height:41.458008px;}
.h9_c00136{height:43.804688px;}
.hf_c00136{height:46.151367px;}
.h6_c00136{height:46.373291px;}
.h8_c00136{height:46.863281px;}
.hd_c00136{height:46.933594px;}
.hb_c00136{height:47.619141px;}
.he_c00136{height:48.178711px;}
.ha_c00136{height:48.375000px;}
.hc_c00136{height:48.498047px;}
.h2_c00136{height:67.271484px;}
.h3_c00136{height:69.191895px;}
.h1_c00136{height:78.609375px;}
.h4_c00136{height:97.163086px;}
.h5_c00136{height:112.640625px;}
.h0_c00136{height:1263.000000px;}
.w0_c00136{width:892.500000px;}
.x0_c00136{left:0.000000px;}
.x9_c00136{left:145.078815px;}
.xa_c00136{left:168.838950px;}
.xb_c00136{left:226.078785px;}
.xc_c00136{left:266.399250px;}
.x1_c00136{left:295.198785px;}
.x2_c00136{left:313.198305px;}
.xd_c00136{left:319.319850px;}
.xe_c00136{left:336.239250px;}
.xf_c00136{left:378.359235px;}
.x17_c00136{left:385.918350px;}
.x3_c00136{left:392.038920px;}
.x10_c00136{left:393.479235px;}
.x4_c00136{left:422.998950px;}
.x7_c00136{left:473.399820px;}
.x5_c00136{left:524.519070px;}
.x6_c00136{left:541.438620px;}
.x8_c00136{left:559.798515px;}
.x11_c00136{left:596.519670px;}
.x12_c00136{left:624.958335px;}
.x13_c00136{left:638.998950px;}
.x14_c00136{left:668.518620px;}
.x15_c00136{left:683.638545px;}
.x16_c00136{left:692.998950px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls12_c00136{letter-spacing:-2.769067pt;}
.ls9_c00136{letter-spacing:-1.880667pt;}
.lsb_c00136{letter-spacing:-1.856000pt;}
.ls7_c00136{letter-spacing:-1.701000pt;}
.ls3_c00136{letter-spacing:-1.386667pt;}
.lse_c00136{letter-spacing:-1.380000pt;}
.ls10_c00136{letter-spacing:-0.884000pt;}
.lsa_c00136{letter-spacing:-0.705973pt;}
.lsc_c00136{letter-spacing:-0.700980pt;}
.lsd_c00136{letter-spacing:-0.615453pt;}
.ls8_c00136{letter-spacing:-0.568867pt;}
.ls2_c00136{letter-spacing:0.000000pt;}
.ls4_c00136{letter-spacing:0.762667pt;}
.ls0_c00136{letter-spacing:1.525333pt;}
.lsf_c00136{letter-spacing:2.100000pt;}
.ls1_c00136{letter-spacing:2.288000pt;}
.ls5_c00136{letter-spacing:4.218093pt;}
.ls6_c00136{letter-spacing:9.697600pt;}
.ls11_c00136{letter-spacing:17.173707pt;}
.ws0_c00136{word-spacing:0.000000pt;}
._0_c00136{width:5.983970pt;}
.fsd_c00136{font-size:25.333333pt;}
.fs6_c00136{font-size:35.333333pt;}
.fs8_c00136{font-size:37.333333pt;}
.fsc_c00136{font-size:39.333333pt;}
.fsa_c00136{font-size:40.000000pt;}
.fs7_c00136{font-size:41.333333pt;}
.fs5_c00136{font-size:42.000000pt;}
.fs9_c00136{font-size:42.666667pt;}
.fsb_c00136{font-size:43.333333pt;}
.fs1_c00136{font-size:57.333333pt;}
.fs2_c00136{font-size:62.666667pt;}
.fs0_c00136{font-size:69.333333pt;}
.fs3_c00136{font-size:88.000000pt;}
.fs4_c00136{font-size:96.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y8_c00136{bottom:159.039587pt;}
.y6_c00136{bottom:168.959467pt;}
.y7_c00136{bottom:169.920413pt;}
.y5_c00136{bottom:859.199707pt;}
.y4_c00136{bottom:868.800213pt;}
.y3_c00136{bottom:965.759680pt;}
.y2_c00136{bottom:965.760600pt;}
.y1_c00136{bottom:1006.079587pt;}
.h10_c00136{height:25.531250pt;}
.h7_c00136{height:36.851562pt;}
.h9_c00136{height:38.937500pt;}
.hf_c00136{height:41.023438pt;}
.h6_c00136{height:41.220703pt;}
.h8_c00136{height:41.656250pt;}
.hd_c00136{height:41.718750pt;}
.hb_c00136{height:42.328125pt;}
.he_c00136{height:42.825521pt;}
.ha_c00136{height:43.000000pt;}
.hc_c00136{height:43.109375pt;}
.h2_c00136{height:59.796875pt;}
.h3_c00136{height:61.503906pt;}
.h1_c00136{height:69.875000pt;}
.h4_c00136{height:86.367188pt;}
.h5_c00136{height:100.125000pt;}
.h0_c00136{height:1122.666667pt;}
.w0_c00136{width:793.333333pt;}
.x0_c00136{left:0.000000pt;}
.x9_c00136{left:128.958947pt;}
.xa_c00136{left:150.079067pt;}
.xb_c00136{left:200.958920pt;}
.xc_c00136{left:236.799333pt;}
.x1_c00136{left:262.398920pt;}
.x2_c00136{left:278.398493pt;}
.xd_c00136{left:283.839867pt;}
.xe_c00136{left:298.879333pt;}
.xf_c00136{left:336.319320pt;}
.x17_c00136{left:343.038533pt;}
.x3_c00136{left:348.479040pt;}
.x10_c00136{left:349.759320pt;}
.x4_c00136{left:375.999067pt;}
.x7_c00136{left:420.799840pt;}
.x5_c00136{left:466.239173pt;}
.x6_c00136{left:481.278773pt;}
.x8_c00136{left:497.598680pt;}
.x11_c00136{left:530.239707pt;}
.x12_c00136{left:555.518520pt;}
.x13_c00136{left:567.999067pt;}
.x14_c00136{left:594.238773pt;}
.x15_c00136{left:607.678707pt;}
.x16_c00136{left:615.999067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ddd4ae519930153d21268c5.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_ec803f14d11e1cf7ad7257dc.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_cb93f7f497ff66dcfab6c5cb.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_693dfe8d179a03d6e175ebf4.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_a9f5d8642346578ae35f5960.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00137;src:url('chunks/assets/font_b9e881e020869ddd7d5c3cb8.woff2')format("woff");}.ff6_c00137{font-family:ff6_c00137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00137;src:url('chunks/assets/font_4d89503d476a31dc49a33ba3.woff2')format("woff");}.ff7_c00137{font-family:ff7_c00137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00137;src:url('chunks/assets/font_68bfbe00e56143baa56896e7.woff2')format("woff");}.ff8_c00137{font-family:ff8_c00137;line-height:1.364746;font-style:normal;font-weight: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_c00137;src:url('chunks/assets/font_03e4fa0da2c403ffa73c8a2b.woff2')format("woff");}.ff9_c00137{font-family:ff9_c00137;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c00137{transform:matrix(0.065789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065789,0.000000,0.000000,0.250000,0,0);}
.m2a_c00137{transform:matrix(0.153571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153571,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.162879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162879,0.000000,0.000000,0.250000,0,0);}
.m2e_c00137{transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172535,0.000000,0.000000,0.250000,0,0);}
.m3a_c00137{transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);}
.m26_c00137{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m25_c00137{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{transform:matrix(0.199713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199713,0.000000,0.000000,0.250000,0,0);}
.m19_c00137{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);}
.m27_c00137{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m41_c00137{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m44_c00137{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m3c_c00137{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m24_c00137{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m31_c00137{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m2b_c00137{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m37_c00137{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m39_c00137{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m20_c00137{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m3b_c00137{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m16_c00137{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m13_c00137{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m36_c00137{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.274457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274457,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m10_c00137{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);}
.m34_c00137{transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);}
.m1d_c00137{transform:matrix(0.340164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340164,0.000000,0.000000,0.250000,0,0);}
.m1f_c00137{transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.394928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394928,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.456897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456897,0.000000,0.000000,0.250000,0,0);}
.m38_c00137{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.470930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470930,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.483607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483607,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls35_c00137{letter-spacing:-22.224038px;}
.lse_c00137{letter-spacing:-17.093543px;}
.ls3a_c00137{letter-spacing:-13.925408px;}
.ls10_c00137{letter-spacing:-10.360350px;}
.ls20_c00137{letter-spacing:-8.208885px;}
.ls30_c00137{letter-spacing:-6.105750px;}
.ls38_c00137{letter-spacing:-6.093750px;}
.ls43_c00137{letter-spacing:-5.181300px;}
.ls27_c00137{letter-spacing:-4.774050px;}
.ls2b_c00137{letter-spacing:-4.499625px;}
.ls46_c00137{letter-spacing:-4.425442px;}
.ls1b_c00137{letter-spacing:-4.424625px;}
.ls32_c00137{letter-spacing:-4.345200px;}
.ls3c_c00137{letter-spacing:-4.174800px;}
.ls2d_c00137{letter-spacing:-3.982875px;}
.lsc_c00137{letter-spacing:-3.858750px;}
.ls2a_c00137{letter-spacing:-3.806550px;}
.ls26_c00137{letter-spacing:-3.793875px;}
.ls1e_c00137{letter-spacing:-3.748875px;}
.ls2f_c00137{letter-spacing:-3.747975px;}
.lsd_c00137{letter-spacing:-3.201600px;}
.ls25_c00137{letter-spacing:-3.187500px;}
.ls24_c00137{letter-spacing:-3.107498px;}
.ls8_c00137{letter-spacing:-2.783625px;}
.ls21_c00137{letter-spacing:-2.754150px;}
.ls14_c00137{letter-spacing:-2.668800px;}
.ls31_c00137{letter-spacing:-2.657700px;}
.ls22_c00137{letter-spacing:-2.546550px;}
.lsb_c00137{letter-spacing:-2.400000px;}
.ls29_c00137{letter-spacing:-1.897530px;}
.lsa_c00137{letter-spacing:-1.597920px;}
.ls1c_c00137{letter-spacing:-1.502400px;}
.ls1a_c00137{letter-spacing:-1.475085px;}
.ls41_c00137{letter-spacing:-1.430400px;}
.ls9_c00137{letter-spacing:-0.801120px;}
.ls17_c00137{letter-spacing:-0.774900px;}
.ls44_c00137{letter-spacing:-0.760725px;}
.ls11_c00137{letter-spacing:-0.646350px;}
.ls4_c00137{letter-spacing:0.000000px;}
.ls3d_c00137{letter-spacing:0.748845px;}
.ls2_c00137{letter-spacing:0.801120px;}
.ls5_c00137{letter-spacing:0.834300px;}
.ls40_c00137{letter-spacing:0.873653px;}
.ls7_c00137{letter-spacing:1.366890px;}
.ls3f_c00137{letter-spacing:1.597920px;}
.lsf_c00137{letter-spacing:1.639950px;}
.ls18_c00137{letter-spacing:1.681875px;}
.ls45_c00137{letter-spacing:1.709572px;}
.ls34_c00137{letter-spacing:1.734375px;}
.ls0_c00137{letter-spacing:1.741500px;}
.ls39_c00137{letter-spacing:2.251200px;}
.ls3e_c00137{letter-spacing:2.286900px;}
.ls19_c00137{letter-spacing:2.520375px;}
.ls28_c00137{letter-spacing:3.748320px;}
.ls1d_c00137{letter-spacing:3.998400px;}
.ls42_c00137{letter-spacing:4.352888px;}
.ls6_c00137{letter-spacing:4.450500px;}
.ls33_c00137{letter-spacing:4.501425px;}
.ls13_c00137{letter-spacing:4.800480px;}
.ls16_c00137{letter-spacing:5.601600px;}
.ls23_c00137{letter-spacing:5.628465px;}
.ls1_c00137{letter-spacing:5.816925px;}
.ls1f_c00137{letter-spacing:6.119490px;}
.ls37_c00137{letter-spacing:8.127900px;}
.ls2e_c00137{letter-spacing:11.198880px;}
.ls15_c00137{letter-spacing:16.017750px;}
.ls12_c00137{letter-spacing:18.627000px;}
.ls3_c00137{letter-spacing:19.199520px;}
.ls36_c00137{letter-spacing:19.670445px;}
.ls3b_c00137{letter-spacing:26.864175px;}
.ls2c_c00137{letter-spacing:49.395375px;}
.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;}
._9_c00137{margin-left:-76.314752px;}
._3_c00137{margin-left:-6.906399px;}
._6_c00137{margin-left:-2.823840px;}
._4_c00137{margin-left:-1.631872px;}
._1_c00137{width:2.632361px;}
._2_c00137{width:3.808608px;}
._5_c00137{width:5.269024px;}
._8_c00137{width:6.436864px;}
._7_c00137{width:8.404823px;}
._0_c00137{width:13.510905px;}
.fc0_c00137{color:transparent;}
.fs1e_c00137{font-size:24.000000px;}
.fs1b_c00137{font-size:25.500000px;}
.fs18_c00137{font-size:27.750000px;}
.fs15_c00137{font-size:30.000000px;}
.fs6_c00137{font-size:31.500000px;}
.fs13_c00137{font-size:32.250000px;}
.fs1a_c00137{font-size:33.750000px;}
.fs17_c00137{font-size:35.250000px;}
.fsf_c00137{font-size:39.000000px;}
.fs1d_c00137{font-size:40.500000px;}
.fs1c_c00137{font-size:42.000000px;}
.fse_c00137{font-size:42.750000px;}
.fs9_c00137{font-size:43.500000px;}
.fs14_c00137{font-size:44.250000px;}
.fs10_c00137{font-size:45.000000px;}
.fs7_c00137{font-size:45.750000px;}
.fsb_c00137{font-size:46.500000px;}
.fsd_c00137{font-size:47.250000px;}
.fs5_c00137{font-size:48.000000px;}
.fs4_c00137{font-size:48.750000px;}
.fsa_c00137{font-size:49.500000px;}
.fs3_c00137{font-size:50.250000px;}
.fs11_c00137{font-size:51.000000px;}
.fs8_c00137{font-size:51.750000px;}
.fsc_c00137{font-size:52.500000px;}
.fs16_c00137{font-size:53.250000px;}
.fs12_c00137{font-size:57.000000px;}
.fs2_c00137{font-size:69.000000px;}
.fs19_c00137{font-size:73.500000px;}
.fs1_c00137{font-size:77.250000px;}
.fs0_c00137{font-size:81.000000px;}
.fs20_c00137{font-size:130.500000px;}
.fs1f_c00137{font-size:156.750000px;}
.y0_c00137{bottom:0.000000px;}
.yd_c00137{bottom:159.480315px;}
.yc_c00137{bottom:167.220750px;}
.ya_c00137{bottom:168.120465px;}
.yb_c00137{bottom:182.520315px;}
.y8_c00137{bottom:192.960000px;}
.y9_c00137{bottom:193.320900px;}
.y7_c00137{bottom:348.121035px;}
.y6_c00137{bottom:359.280900px;}
.y5_c00137{bottom:373.319850px;}
.y4_c00137{bottom:387.360300px;}
.y3_c00137{bottom:893.519715px;}
.y2_c00137{bottom:1088.640105px;}
.y1_c00137{bottom:1133.640750px;}
.h28_c00137{height:25.031250px;}
.h24_c00137{height:25.201172px;}
.h21_c00137{height:28.942383px;}
.h1e_c00137{height:31.289062px;}
.h9_c00137{height:32.853516px;}
.h23_c00137{height:33.354492px;}
.h1b_c00137{height:33.635742px;}
.h20_c00137{height:35.525391px;}
.h15_c00137{height:40.675781px;}
.h26_c00137{height:42.240234px;}
.h25_c00137{height:43.804688px;}
.h13_c00137{height:44.586914px;}
.hc_c00137{height:45.369141px;}
.h1c_c00137{height:46.151367px;}
.h12_c00137{height:46.863281px;}
.h16_c00137{height:46.933594px;}
.h18_c00137{height:47.109375px;}
.h10_c00137{height:47.437500px;}
.h11_c00137{height:47.619141px;}
.ha_c00137{height:47.715820px;}
.h6_c00137{height:47.845459px;}
.h14_c00137{height:48.178711px;}
.h7_c00137{height:48.375000px;}
.he_c00137{height:48.498047px;}
.h27_c00137{height:48.581543px;}
.hd_c00137{height:48.919922px;}
.h8_c00137{height:49.130859px;}
.h1d_c00137{height:49.661133px;}
.h19_c00137{height:49.886719px;}
.h5_c00137{height:50.642578px;}
.hb_c00137{height:51.143555px;}
.h17_c00137{height:51.398438px;}
.hf_c00137{height:51.884766px;}
.h1f_c00137{height:52.625977px;}
.h1a_c00137{height:56.332031px;}
.h4_c00137{height:67.719727px;}
.h3_c00137{height:69.539062px;}
.h22_c00137{height:72.100342px;}
.h2_c00137{height:77.853516px;}
.h1_c00137{height:81.632812px;}
.h2a_c00137{height:136.107422px;}
.h29_c00137{height:153.841553px;}
.h0_c00137{height:1263.000000px;}
.w0_c00137{width:892.500000px;}
.x0_c00137{left:0.000000px;}
.x5_c00137{left:130.319850px;}
.x47_c00137{left:140.398665px;}
.x6_c00137{left:143.638500px;}
.x26_c00137{left:148.679700px;}
.x48_c00137{left:164.519685px;}
.x16_c00137{left:166.319250px;}
.x7_c00137{left:179.998950px;}
.x27_c00137{left:185.399250px;}
.x28_c00137{left:207.719100px;}
.x29_c00137{left:218.519685px;}
.x49_c00137{left:221.759535px;}
.x3d_c00137{left:223.199850px;}
.x17_c00137{left:225.358635px;}
.x3e_c00137{left:251.638500px;}
.x2a_c00137{left:263.159385px;}
.x18_c00137{left:274.319250px;}
.x2b_c00137{left:281.878350px;}
.x3_c00137{left:282.959400px;}
.x1_c00137{left:291.599700px;}
.x2_c00137{left:293.399250px;}
.x3f_c00137{left:297.718500px;}
.x19_c00137{left:305.279250px;}
.x1a_c00137{left:323.639100px;}
.x4_c00137{left:329.039385px;}
.x1b_c00137{left:332.279250px;}
.x2c_c00137{left:333.358635px;}
.x40_c00137{left:339.120000px;}
.x2d_c00137{left:349.559685px;}
.x1c_c00137{left:374.399235px;}
.x2e_c00137{left:380.878950px;}
.x4e_c00137{left:393.479235px;}
.x1d_c00137{left:405.718500px;}
.x41_c00137{left:408.958335px;}
.x2f_c00137{left:410.039385px;}
.x8_c00137{left:416.519070px;}
.x30_c00137{left:418.679670px;}
.x42_c00137{left:422.278800px;}
.x1e_c00137{left:428.399235px;}
.x9_c00137{left:429.478635px;}
.x31_c00137{left:446.759085px;}
.xa_c00137{left:448.919535px;}
.xb_c00137{left:462.958335px;}
.x1f_c00137{left:473.759085px;}
.xc_c00137{left:477.719100px;}
.x32_c00137{left:489.239820px;}
.x20_c00137{left:490.678530px;}
.x4f_c00137{left:495.719565px;}
.xd_c00137{left:498.239220px;}
.x21_c00137{left:501.838530px;}
.x43_c00137{left:526.318770px;}
.x33_c00137{left:533.879520px;}
.x44_c00137{left:538.198785px;}
.x34_c00137{left:551.878320px;}
.x50_c00137{left:558.359850px;}
.xe_c00137{left:564.119385px;}
.x45_c00137{left:565.198785px;}
.x35_c00137{left:572.759535px;}
.x36_c00137{left:584.639700px;}
.x22_c00137{left:592.198785px;}
.x46_c00137{left:594.359250px;}
.x23_c00137{left:610.199385px;}
.xf_c00137{left:621.000000px;}
.x37_c00137{left:622.799520px;}
.x10_c00137{left:634.679670px;}
.x51_c00137{left:637.919535px;}
.x11_c00137{left:646.198785px;}
.x24_c00137{left:655.918350px;}
.x38_c00137{left:662.759085px;}
.x4a_c00137{left:664.558635px;}
.x12_c00137{left:668.518620px;}
.x52_c00137{left:674.279850px;}
.x39_c00137{left:677.158770px;}
.x4b_c00137{left:678.599070px;}
.x4c_c00137{left:687.598530px;}
.x13_c00137{left:690.479235px;}
.x25_c00137{left:705.599070px;}
.x3a_c00137{left:716.038920px;}
.x3b_c00137{left:727.198785px;}
.x14_c00137{left:741.239220px;}
.x3c_c00137{left:745.919535px;}
.x15_c00137{left:759.958335px;}
.x4d_c00137{left:811.079400px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls35_c00137{letter-spacing:-19.754700pt;}
.lse_c00137{letter-spacing:-15.194260pt;}
.ls3a_c00137{letter-spacing:-12.378140pt;}
.ls10_c00137{letter-spacing:-9.209200pt;}
.ls20_c00137{letter-spacing:-7.296787pt;}
.ls30_c00137{letter-spacing:-5.427333pt;}
.ls38_c00137{letter-spacing:-5.416667pt;}
.ls43_c00137{letter-spacing:-4.605600pt;}
.ls27_c00137{letter-spacing:-4.243600pt;}
.ls2b_c00137{letter-spacing:-3.999667pt;}
.ls46_c00137{letter-spacing:-3.933727pt;}
.ls1b_c00137{letter-spacing:-3.933000pt;}
.ls32_c00137{letter-spacing:-3.862400pt;}
.ls3c_c00137{letter-spacing:-3.710933pt;}
.ls2d_c00137{letter-spacing:-3.540333pt;}
.lsc_c00137{letter-spacing:-3.430000pt;}
.ls2a_c00137{letter-spacing:-3.383600pt;}
.ls26_c00137{letter-spacing:-3.372333pt;}
.ls1e_c00137{letter-spacing:-3.332333pt;}
.ls2f_c00137{letter-spacing:-3.331533pt;}
.lsd_c00137{letter-spacing:-2.845867pt;}
.ls25_c00137{letter-spacing:-2.833333pt;}
.ls24_c00137{letter-spacing:-2.762220pt;}
.ls8_c00137{letter-spacing:-2.474333pt;}
.ls21_c00137{letter-spacing:-2.448133pt;}
.ls14_c00137{letter-spacing:-2.372267pt;}
.ls31_c00137{letter-spacing:-2.362400pt;}
.ls22_c00137{letter-spacing:-2.263600pt;}
.lsb_c00137{letter-spacing:-2.133333pt;}
.ls29_c00137{letter-spacing:-1.686693pt;}
.lsa_c00137{letter-spacing:-1.420373pt;}
.ls1c_c00137{letter-spacing:-1.335467pt;}
.ls1a_c00137{letter-spacing:-1.311187pt;}
.ls41_c00137{letter-spacing:-1.271467pt;}
.ls9_c00137{letter-spacing:-0.712107pt;}
.ls17_c00137{letter-spacing:-0.688800pt;}
.ls44_c00137{letter-spacing:-0.676200pt;}
.ls11_c00137{letter-spacing:-0.574533pt;}
.ls4_c00137{letter-spacing:0.000000pt;}
.ls3d_c00137{letter-spacing:0.665640pt;}
.ls2_c00137{letter-spacing:0.712107pt;}
.ls5_c00137{letter-spacing:0.741600pt;}
.ls40_c00137{letter-spacing:0.776580pt;}
.ls7_c00137{letter-spacing:1.215013pt;}
.ls3f_c00137{letter-spacing:1.420373pt;}
.lsf_c00137{letter-spacing:1.457733pt;}
.ls18_c00137{letter-spacing:1.495000pt;}
.ls45_c00137{letter-spacing:1.519620pt;}
.ls34_c00137{letter-spacing:1.541667pt;}
.ls0_c00137{letter-spacing:1.548000pt;}
.ls39_c00137{letter-spacing:2.001067pt;}
.ls3e_c00137{letter-spacing:2.032800pt;}
.ls19_c00137{letter-spacing:2.240333pt;}
.ls28_c00137{letter-spacing:3.331840pt;}
.ls1d_c00137{letter-spacing:3.554133pt;}
.ls42_c00137{letter-spacing:3.869233pt;}
.ls6_c00137{letter-spacing:3.956000pt;}
.ls33_c00137{letter-spacing:4.001267pt;}
.ls13_c00137{letter-spacing:4.267093pt;}
.ls16_c00137{letter-spacing:4.979200pt;}
.ls23_c00137{letter-spacing:5.003080pt;}
.ls1_c00137{letter-spacing:5.170600pt;}
.ls1f_c00137{letter-spacing:5.439547pt;}
.ls37_c00137{letter-spacing:7.224800pt;}
.ls2e_c00137{letter-spacing:9.954560pt;}
.ls15_c00137{letter-spacing:14.238000pt;}
.ls12_c00137{letter-spacing:16.557333pt;}
.ls3_c00137{letter-spacing:17.066240pt;}
.ls36_c00137{letter-spacing:17.484840pt;}
.ls3b_c00137{letter-spacing:23.879267pt;}
.ls2c_c00137{letter-spacing:43.907000pt;}
.ws0_c00137{word-spacing:0.000000pt;}
._9_c00137{margin-left:-67.835335pt;}
._3_c00137{margin-left:-6.139022pt;}
._6_c00137{margin-left:-2.510080pt;}
._4_c00137{margin-left:-1.450553pt;}
._1_c00137{width:2.339876pt;}
._2_c00137{width:3.385429pt;}
._5_c00137{width:4.683577pt;}
._8_c00137{width:5.721657pt;}
._7_c00137{width:7.470954pt;}
._0_c00137{width:12.009693pt;}
.fs1e_c00137{font-size:21.333333pt;}
.fs1b_c00137{font-size:22.666667pt;}
.fs18_c00137{font-size:24.666667pt;}
.fs15_c00137{font-size:26.666667pt;}
.fs6_c00137{font-size:28.000000pt;}
.fs13_c00137{font-size:28.666667pt;}
.fs1a_c00137{font-size:30.000000pt;}
.fs17_c00137{font-size:31.333333pt;}
.fsf_c00137{font-size:34.666667pt;}
.fs1d_c00137{font-size:36.000000pt;}
.fs1c_c00137{font-size:37.333333pt;}
.fse_c00137{font-size:38.000000pt;}
.fs9_c00137{font-size:38.666667pt;}
.fs14_c00137{font-size:39.333333pt;}
.fs10_c00137{font-size:40.000000pt;}
.fs7_c00137{font-size:40.666667pt;}
.fsb_c00137{font-size:41.333333pt;}
.fsd_c00137{font-size:42.000000pt;}
.fs5_c00137{font-size:42.666667pt;}
.fs4_c00137{font-size:43.333333pt;}
.fsa_c00137{font-size:44.000000pt;}
.fs3_c00137{font-size:44.666667pt;}
.fs11_c00137{font-size:45.333333pt;}
.fs8_c00137{font-size:46.000000pt;}
.fsc_c00137{font-size:46.666667pt;}
.fs16_c00137{font-size:47.333333pt;}
.fs12_c00137{font-size:50.666667pt;}
.fs2_c00137{font-size:61.333333pt;}
.fs19_c00137{font-size:65.333333pt;}
.fs1_c00137{font-size:68.666667pt;}
.fs0_c00137{font-size:72.000000pt;}
.fs20_c00137{font-size:116.000000pt;}
.fs1f_c00137{font-size:139.333333pt;}
.y0_c00137{bottom:0.000000pt;}
.yd_c00137{bottom:141.760280pt;}
.yc_c00137{bottom:148.640667pt;}
.ya_c00137{bottom:149.440413pt;}
.yb_c00137{bottom:162.240280pt;}
.y8_c00137{bottom:171.520000pt;}
.y9_c00137{bottom:171.840800pt;}
.y7_c00137{bottom:309.440920pt;}
.y6_c00137{bottom:319.360800pt;}
.y5_c00137{bottom:331.839867pt;}
.y4_c00137{bottom:344.320267pt;}
.y3_c00137{bottom:794.239747pt;}
.y2_c00137{bottom:967.680093pt;}
.y1_c00137{bottom:1007.680667pt;}
.h28_c00137{height:22.250000pt;}
.h24_c00137{height:22.401042pt;}
.h21_c00137{height:25.726562pt;}
.h1e_c00137{height:27.812500pt;}
.h9_c00137{height:29.203125pt;}
.h23_c00137{height:29.648437pt;}
.h1b_c00137{height:29.898438pt;}
.h20_c00137{height:31.578125pt;}
.h15_c00137{height:36.156250pt;}
.h26_c00137{height:37.546875pt;}
.h25_c00137{height:38.937500pt;}
.h13_c00137{height:39.632812pt;}
.hc_c00137{height:40.328125pt;}
.h1c_c00137{height:41.023438pt;}
.h12_c00137{height:41.656250pt;}
.h16_c00137{height:41.718750pt;}
.h18_c00137{height:41.875000pt;}
.h10_c00137{height:42.166667pt;}
.h11_c00137{height:42.328125pt;}
.ha_c00137{height:42.414062pt;}
.h6_c00137{height:42.529297pt;}
.h14_c00137{height:42.825521pt;}
.h7_c00137{height:43.000000pt;}
.he_c00137{height:43.109375pt;}
.h27_c00137{height:43.183594pt;}
.hd_c00137{height:43.484375pt;}
.h8_c00137{height:43.671875pt;}
.h1d_c00137{height:44.143229pt;}
.h19_c00137{height:44.343750pt;}
.h5_c00137{height:45.015625pt;}
.hb_c00137{height:45.460938pt;}
.h17_c00137{height:45.687500pt;}
.hf_c00137{height:46.119792pt;}
.h1f_c00137{height:46.778646pt;}
.h1a_c00137{height:50.072917pt;}
.h4_c00137{height:60.195312pt;}
.h3_c00137{height:61.812500pt;}
.h22_c00137{height:64.089193pt;}
.h2_c00137{height:69.203125pt;}
.h1_c00137{height:72.562500pt;}
.h2a_c00137{height:120.984375pt;}
.h29_c00137{height:136.748047pt;}
.h0_c00137{height:1122.666667pt;}
.w0_c00137{width:793.333333pt;}
.x0_c00137{left:0.000000pt;}
.x5_c00137{left:115.839867pt;}
.x47_c00137{left:124.798813pt;}
.x6_c00137{left:127.678667pt;}
.x26_c00137{left:132.159733pt;}
.x48_c00137{left:146.239720pt;}
.x16_c00137{left:147.839333pt;}
.x7_c00137{left:159.999067pt;}
.x27_c00137{left:164.799333pt;}
.x28_c00137{left:184.639200pt;}
.x29_c00137{left:194.239720pt;}
.x49_c00137{left:197.119587pt;}
.x3d_c00137{left:198.399867pt;}
.x17_c00137{left:200.318787pt;}
.x3e_c00137{left:223.678667pt;}
.x2a_c00137{left:233.919453pt;}
.x18_c00137{left:243.839333pt;}
.x2b_c00137{left:250.558533pt;}
.x3_c00137{left:251.519467pt;}
.x1_c00137{left:259.199733pt;}
.x2_c00137{left:260.799333pt;}
.x3f_c00137{left:264.638667pt;}
.x19_c00137{left:271.359333pt;}
.x1a_c00137{left:287.679200pt;}
.x4_c00137{left:292.479453pt;}
.x1b_c00137{left:295.359333pt;}
.x2c_c00137{left:296.318787pt;}
.x40_c00137{left:301.440000pt;}
.x2d_c00137{left:310.719720pt;}
.x1c_c00137{left:332.799320pt;}
.x2e_c00137{left:338.559067pt;}
.x4e_c00137{left:349.759320pt;}
.x1d_c00137{left:360.638667pt;}
.x41_c00137{left:363.518520pt;}
.x2f_c00137{left:364.479453pt;}
.x8_c00137{left:370.239173pt;}
.x30_c00137{left:372.159707pt;}
.x42_c00137{left:375.358933pt;}
.x1e_c00137{left:380.799320pt;}
.x9_c00137{left:381.758787pt;}
.x31_c00137{left:397.119187pt;}
.xa_c00137{left:399.039587pt;}
.xb_c00137{left:411.518520pt;}
.x1f_c00137{left:421.119187pt;}
.xc_c00137{left:424.639200pt;}
.x32_c00137{left:434.879840pt;}
.x20_c00137{left:436.158693pt;}
.x4f_c00137{left:440.639613pt;}
.xd_c00137{left:442.879307pt;}
.x21_c00137{left:446.078693pt;}
.x43_c00137{left:467.838907pt;}
.x33_c00137{left:474.559573pt;}
.x44_c00137{left:478.398920pt;}
.x34_c00137{left:490.558507pt;}
.x50_c00137{left:496.319867pt;}
.xe_c00137{left:501.439453pt;}
.x45_c00137{left:502.398920pt;}
.x35_c00137{left:509.119587pt;}
.x36_c00137{left:519.679733pt;}
.x22_c00137{left:526.398920pt;}
.x46_c00137{left:528.319333pt;}
.x23_c00137{left:542.399453pt;}
.xf_c00137{left:552.000000pt;}
.x37_c00137{left:553.599573pt;}
.x10_c00137{left:564.159707pt;}
.x51_c00137{left:567.039587pt;}
.x11_c00137{left:574.398920pt;}
.x24_c00137{left:583.038533pt;}
.x38_c00137{left:589.119187pt;}
.x4a_c00137{left:590.718787pt;}
.x12_c00137{left:594.238773pt;}
.x52_c00137{left:599.359867pt;}
.x39_c00137{left:601.918907pt;}
.x4b_c00137{left:603.199173pt;}
.x4c_c00137{left:611.198693pt;}
.x13_c00137{left:613.759320pt;}
.x25_c00137{left:627.199173pt;}
.x3a_c00137{left:636.479040pt;}
.x3b_c00137{left:646.398920pt;}
.x14_c00137{left:658.879307pt;}
.x3c_c00137{left:663.039587pt;}
.x15_c00137{left:675.518520pt;}
.x4d_c00137{left:720.959467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a25efa118bda313a1c4e5b30.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_87f997a51bbc3a882c653747.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_9f4b6af09a6ca0d12282418d.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_12ecda20be2dd6e7db1df0d1.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_15fa766043b4e8ac41a3e107.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00138;src:url('chunks/assets/font_fb3ba7cab3a991ff9e9d0613.woff2')format("woff");}.ff7_c00138{font-family:ff7_c00138;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00138{transform:matrix(0.043651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043651,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426471,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.lse_c00138{letter-spacing:-3.958875px;}
.ls17_c00138{letter-spacing:-3.752123px;}
.ls2_c00138{letter-spacing:-3.279900px;}
.ls18_c00138{letter-spacing:-2.906250px;}
.ls12_c00138{letter-spacing:-2.419200px;}
.lsf_c00138{letter-spacing:-1.982400px;}
.ls15_c00138{letter-spacing:-1.807732px;}
.ls10_c00138{letter-spacing:-1.605825px;}
.lsc_c00138{letter-spacing:-1.500750px;}
.ls5_c00138{letter-spacing:-1.411200px;}
.lsd_c00138{letter-spacing:-0.994500px;}
.lsb_c00138{letter-spacing:-0.878400px;}
.ls19_c00138{letter-spacing:-0.800625px;}
.ls9_c00138{letter-spacing:-0.799800px;}
.ls16_c00138{letter-spacing:-0.790500px;}
.ls14_c00138{letter-spacing:-0.780038px;}
.ls8_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.826875px;}
.ls0_c00138{letter-spacing:0.843210px;}
.ls13_c00138{letter-spacing:1.205768px;}
.ls6_c00138{letter-spacing:2.181600px;}
.ls7_c00138{letter-spacing:4.500000px;}
.ls11_c00138{letter-spacing:5.106450px;}
.ls3_c00138{letter-spacing:5.249520px;}
.ls4_c00138{letter-spacing:9.647123px;}
.lsa_c00138{letter-spacing:12.251400px;}
.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;}
._0_c00138{width:5.262772px;}
._1_c00138{width:6.963435px;}
.fc0_c00138{color:transparent;}
.fs10_c00138{font-size:36.750000px;}
.fsd_c00138{font-size:38.250000px;}
.fs11_c00138{font-size:41.250000px;}
.fs8_c00138{font-size:42.000000px;}
.fsa_c00138{font-size:43.500000px;}
.fse_c00138{font-size:44.250000px;}
.fs9_c00138{font-size:45.750000px;}
.fs7_c00138{font-size:46.500000px;}
.fsf_c00138{font-size:47.250000px;}
.fsc_c00138{font-size:48.750000px;}
.fsb_c00138{font-size:54.000000px;}
.fs4_c00138{font-size:69.750000px;}
.fs3_c00138{font-size:72.000000px;}
.fs5_c00138{font-size:73.500000px;}
.fs1_c00138{font-size:78.750000px;}
.fs0_c00138{font-size:81.000000px;}
.fs2_c00138{font-size:87.000000px;}
.fs6_c00138{font-size:94.500000px;}
.y0_c00138{bottom:0.000000px;}
.y6_c00138{bottom:192.239850px;}
.y5_c00138{bottom:219.239850px;}
.y7_c00138{bottom:219.600750px;}
.y4_c00138{bottom:976.320825px;}
.y3_c00138{bottom:998.640750px;}
.y2_c00138{bottom:1087.199805px;}
.y1_c00138{bottom:1133.279850px;}
.h12_c00138{height:38.329102px;}
.he_c00138{height:39.893555px;}
.h13_c00138{height:43.022461px;}
.h9_c00138{height:43.804688px;}
.hb_c00138{height:45.369141px;}
.hf_c00138{height:46.151367px;}
.h8_c00138{height:46.863281px;}
.h10_c00138{height:47.619141px;}
.ha_c00138{height:47.715820px;}
.hd_c00138{height:48.178711px;}
.h11_c00138{height:48.498047px;}
.hc_c00138{height:53.367188px;}
.h5_c00138{height:68.455811px;}
.h4_c00138{height:70.664062px;}
.h6_c00138{height:72.136230px;}
.h2_c00138{height:77.288818px;}
.h1_c00138{height:79.497070px;}
.h3_c00138{height:85.980469px;}
.h7_c00138{height:98.560547px;}
.h0_c00138{height:1263.000000px;}
.w0_c00138{width:892.500000px;}
.x0_c00138{left:0.000000px;}
.x18_c00138{left:144.358665px;}
.x12_c00138{left:147.959400px;}
.x19_c00138{left:168.479685px;}
.x13_c00138{left:206.639700px;}
.x14_c00138{left:219.599100px;}
.x1a_c00138{left:226.078785px;}
.x8_c00138{left:234.359850px;}
.x15_c00138{left:243.718500px;}
.x1b_c00138{left:266.040000px;}
.x1_c00138{left:294.478635px;}
.x1c_c00138{left:318.958950px;}
.x1d_c00138{left:335.878350px;}
.x1e_c00138{left:378.359235px;}
.x1f_c00138{left:393.119985px;}
.x16_c00138{left:397.798515px;}
.x2_c00138{left:399.238770px;}
.x4_c00138{left:429.119385px;}
.x17_c00138{left:448.199385px;}
.x5_c00138{left:478.080000px;}
.x3_c00138{left:482.399235px;}
.x6_c00138{left:509.039985px;}
.x9_c00138{left:524.519070px;}
.x7_c00138{left:547.918350px;}
.xa_c00138{left:596.519670px;}
.xe_c00138{left:624.599070px;}
.xf_c00138{left:638.639700px;}
.xb_c00138{left:658.798920px;}
.x10_c00138{left:667.798560px;}
.x11_c00138{left:682.918350px;}
.xc_c00138{left:694.439250px;}
.xd_c00138{left:708.838950px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.lse_c00138{letter-spacing:-3.519000pt;}
.ls17_c00138{letter-spacing:-3.335220pt;}
.ls2_c00138{letter-spacing:-2.915467pt;}
.ls18_c00138{letter-spacing:-2.583333pt;}
.ls12_c00138{letter-spacing:-2.150400pt;}
.lsf_c00138{letter-spacing:-1.762133pt;}
.ls15_c00138{letter-spacing:-1.606873pt;}
.ls10_c00138{letter-spacing:-1.427400pt;}
.lsc_c00138{letter-spacing:-1.334000pt;}
.ls5_c00138{letter-spacing:-1.254400pt;}
.lsd_c00138{letter-spacing:-0.884000pt;}
.lsb_c00138{letter-spacing:-0.780800pt;}
.ls19_c00138{letter-spacing:-0.711667pt;}
.ls9_c00138{letter-spacing:-0.710933pt;}
.ls16_c00138{letter-spacing:-0.702667pt;}
.ls14_c00138{letter-spacing:-0.693367pt;}
.ls8_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.735000pt;}
.ls0_c00138{letter-spacing:0.749520pt;}
.ls13_c00138{letter-spacing:1.071793pt;}
.ls6_c00138{letter-spacing:1.939200pt;}
.ls7_c00138{letter-spacing:4.000000pt;}
.ls11_c00138{letter-spacing:4.539067pt;}
.ls3_c00138{letter-spacing:4.666240pt;}
.ls4_c00138{letter-spacing:8.575220pt;}
.lsa_c00138{letter-spacing:10.890133pt;}
.ws0_c00138{word-spacing:0.000000pt;}
._0_c00138{width:4.678020pt;}
._1_c00138{width:6.189720pt;}
.fs10_c00138{font-size:32.666667pt;}
.fsd_c00138{font-size:34.000000pt;}
.fs11_c00138{font-size:36.666667pt;}
.fs8_c00138{font-size:37.333333pt;}
.fsa_c00138{font-size:38.666667pt;}
.fse_c00138{font-size:39.333333pt;}
.fs9_c00138{font-size:40.666667pt;}
.fs7_c00138{font-size:41.333333pt;}
.fsf_c00138{font-size:42.000000pt;}
.fsc_c00138{font-size:43.333333pt;}
.fsb_c00138{font-size:48.000000pt;}
.fs4_c00138{font-size:62.000000pt;}
.fs3_c00138{font-size:64.000000pt;}
.fs5_c00138{font-size:65.333333pt;}
.fs1_c00138{font-size:70.000000pt;}
.fs0_c00138{font-size:72.000000pt;}
.fs2_c00138{font-size:77.333333pt;}
.fs6_c00138{font-size:84.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y6_c00138{bottom:170.879867pt;}
.y5_c00138{bottom:194.879867pt;}
.y7_c00138{bottom:195.200667pt;}
.y4_c00138{bottom:867.840733pt;}
.y3_c00138{bottom:887.680667pt;}
.y2_c00138{bottom:966.399827pt;}
.y1_c00138{bottom:1007.359867pt;}
.h12_c00138{height:34.070312pt;}
.he_c00138{height:35.460938pt;}
.h13_c00138{height:38.242188pt;}
.h9_c00138{height:38.937500pt;}
.hb_c00138{height:40.328125pt;}
.hf_c00138{height:41.023438pt;}
.h8_c00138{height:41.656250pt;}
.h10_c00138{height:42.328125pt;}
.ha_c00138{height:42.414062pt;}
.hd_c00138{height:42.825521pt;}
.h11_c00138{height:43.109375pt;}
.hc_c00138{height:47.437500pt;}
.h5_c00138{height:60.849609pt;}
.h4_c00138{height:62.812500pt;}
.h6_c00138{height:64.121094pt;}
.h2_c00138{height:68.701172pt;}
.h1_c00138{height:70.664062pt;}
.h3_c00138{height:76.427083pt;}
.h7_c00138{height:87.609375pt;}
.h0_c00138{height:1122.666667pt;}
.w0_c00138{width:793.333333pt;}
.x0_c00138{left:0.000000pt;}
.x18_c00138{left:128.318813pt;}
.x12_c00138{left:131.519467pt;}
.x19_c00138{left:149.759720pt;}
.x13_c00138{left:183.679733pt;}
.x14_c00138{left:195.199200pt;}
.x1a_c00138{left:200.958920pt;}
.x8_c00138{left:208.319867pt;}
.x15_c00138{left:216.638667pt;}
.x1b_c00138{left:236.480000pt;}
.x1_c00138{left:261.758787pt;}
.x1c_c00138{left:283.519067pt;}
.x1d_c00138{left:298.558533pt;}
.x1e_c00138{left:336.319320pt;}
.x1f_c00138{left:349.439987pt;}
.x16_c00138{left:353.598680pt;}
.x2_c00138{left:354.878907pt;}
.x4_c00138{left:381.439453pt;}
.x17_c00138{left:398.399453pt;}
.x5_c00138{left:424.960000pt;}
.x3_c00138{left:428.799320pt;}
.x6_c00138{left:452.479987pt;}
.x9_c00138{left:466.239173pt;}
.x7_c00138{left:487.038533pt;}
.xa_c00138{left:530.239707pt;}
.xe_c00138{left:555.199173pt;}
.xf_c00138{left:567.679733pt;}
.xb_c00138{left:585.599040pt;}
.x10_c00138{left:593.598720pt;}
.x11_c00138{left:607.038533pt;}
.xc_c00138{left:617.279333pt;}
.xd_c00138{left:630.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53fde4b960b1ca015c9e3c41.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_6d128bead6e83a187c994852.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_0d15c0d8d5d29c4616ca05b0.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_286d67f6968f95e35133f243.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_c42bc457adf4362b78d23547.woff2')format("woff");}.ff5_c00139{font-family:ff5_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;}
@font-face{font-family:ff6_c00139;src:url('chunks/assets/font_2207d219576400bf94647fbd.woff2')format("woff");}.ff6_c00139{font-family:ff6_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;}
@font-face{font-family:ff7_c00139;src:url('chunks/assets/font_b02125a25c8beb551e6fb878.woff2')format("woff");}.ff7_c00139{font-family:ff7_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;}
.m8_c00139{transform:matrix(0.034810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034810,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{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_c00139{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{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);}
.m1_c00139{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m25_c00139{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m23_c00139{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);}
.m1a_c00139{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);}
.m1d_c00139{transform:matrix(0.385246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385246,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{transform:matrix(0.515385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515385,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls27_c00139{letter-spacing:-13.825500px;}
.ls1a_c00139{letter-spacing:-13.044375px;}
.ls29_c00139{letter-spacing:-8.011710px;}
.ls22_c00139{letter-spacing:-7.302157px;}
.lsb_c00139{letter-spacing:-6.905250px;}
.ls1e_c00139{letter-spacing:-5.601600px;}
.ls12_c00139{letter-spacing:-4.657500px;}
.ls28_c00139{letter-spacing:-4.428600px;}
.ls1f_c00139{letter-spacing:-3.972450px;}
.ls5_c00139{letter-spacing:-3.862500px;}
.ls19_c00139{letter-spacing:-3.580800px;}
.ls1c_c00139{letter-spacing:-2.905582px;}
.ls15_c00139{letter-spacing:-2.452800px;}
.ls18_c00139{letter-spacing:-2.320500px;}
.ls17_c00139{letter-spacing:-2.184000px;}
.lsf_c00139{letter-spacing:-2.070878px;}
.ls14_c00139{letter-spacing:-1.602248px;}
.ls20_c00139{letter-spacing:-1.526603px;}
.ls1b_c00139{letter-spacing:-1.501950px;}
.ls26_c00139{letter-spacing:-1.408500px;}
.ls8_c00139{letter-spacing:-0.795375px;}
.ls21_c00139{letter-spacing:-0.724935px;}
.ls10_c00139{letter-spacing:-0.690525px;}
.ls6_c00139{letter-spacing:0.000000px;}
.ls1_c00139{letter-spacing:0.690525px;}
.ls11_c00139{letter-spacing:0.760013px;}
.ls7_c00139{letter-spacing:0.827595px;}
.lsa_c00139{letter-spacing:1.381748px;}
.lsd_c00139{letter-spacing:1.580250px;}
.ls13_c00139{letter-spacing:1.859535px;}
.lsc_c00139{letter-spacing:2.070878px;}
.ls23_c00139{letter-spacing:2.184000px;}
.ls2_c00139{letter-spacing:2.762100px;}
.lse_c00139{letter-spacing:3.452625px;}
.ls4_c00139{letter-spacing:4.143150px;}
.ls25_c00139{letter-spacing:4.341645px;}
.ls9_c00139{letter-spacing:4.365000px;}
.ls3_c00139{letter-spacing:4.834373px;}
.ls16_c00139{letter-spacing:4.851495px;}
.ls24_c00139{letter-spacing:5.944500px;}
.ls0_c00139{letter-spacing:6.214725px;}
.ls1d_c00139{letter-spacing:12.501000px;}
.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{width:10.783806px;}
._3_c00139{width:13.433864px;}
._6_c00139{width:16.249865px;}
._2_c00139{width:21.315158px;}
._1_c00139{width:24.928843px;}
._7_c00139{width:29.389142px;}
._4_c00139{width:41.068966px;}
._5_c00139{width:374.647664px;}
.fc0_c00139{color:transparent;}
.fsf_c00139{font-size:42.750000px;}
.fs14_c00139{font-size:44.250000px;}
.fsa_c00139{font-size:45.000000px;}
.fs12_c00139{font-size:45.750000px;}
.fsb_c00139{font-size:46.500000px;}
.fsc_c00139{font-size:47.250000px;}
.fs11_c00139{font-size:48.000000px;}
.fs8_c00139{font-size:48.750000px;}
.fse_c00139{font-size:49.500000px;}
.fs10_c00139{font-size:51.000000px;}
.fs13_c00139{font-size:53.250000px;}
.fsd_c00139{font-size:54.750000px;}
.fs9_c00139{font-size:56.250000px;}
.fs5_c00139{font-size:69.750000px;}
.fs4_c00139{font-size:72.750000px;}
.fs6_c00139{font-size:73.500000px;}
.fs0_c00139{font-size:77.250000px;}
.fs1_c00139{font-size:78.000000px;}
.fs3_c00139{font-size:78.750000px;}
.fs2_c00139{font-size:79.500000px;}
.fs15_c00139{font-size:81.000000px;}
.fs7_c00139{font-size:118.500000px;}
.y0_c00139{bottom:0.000000px;}
.yf_c00139{bottom:128.159415px;}
.yd_c00139{bottom:159.119415px;}
.ye_c00139{bottom:160.200465px;}
.ya_c00139{bottom:186.839565px;}
.yc_c00139{bottom:188.279850px;}
.y8_c00139{bottom:213.119385px;}
.y9_c00139{bottom:213.480285px;}
.yb_c00139{bottom:214.920600px;}
.y6_c00139{bottom:892.799430px;}
.y7_c00139{bottom:892.799565px;}
.y5_c00139{bottom:919.079400px;}
.y4_c00139{bottom:956.518680px;}
.y3_c00139{bottom:981.360255px;}
.y2_c00139{bottom:1081.440315px;}
.y1_c00139{bottom:1126.439205px;}
.h10_c00139{height:44.586914px;}
.h17_c00139{height:46.151367px;}
.hb_c00139{height:46.933594px;}
.h19_c00139{height:47.619141px;}
.h13_c00139{height:47.715820px;}
.h12_c00139{height:48.375000px;}
.hc_c00139{height:48.498047px;}
.h9_c00139{height:49.130859px;}
.hd_c00139{height:49.280273px;}
.h18_c00139{height:49.886719px;}
.h16_c00139{height:50.053711px;}
.h14_c00139{height:50.062500px;}
.h11_c00139{height:50.402344px;}
.hf_c00139{height:51.626953px;}
.h15_c00139{height:52.625977px;}
.he_c00139{height:54.108398px;}
.ha_c00139{height:55.590820px;}
.h6_c00139{height:68.455811px;}
.h5_c00139{height:71.400146px;}
.h7_c00139{height:74.074219px;}
.h4_c00139{height:77.288818px;}
.h1_c00139{height:77.853516px;}
.h3_c00139{height:78.024902px;}
.h2_c00139{height:78.609375px;}
.h1a_c00139{height:80.050781px;}
.h8_c00139{height:123.591797px;}
.h0_c00139{height:1263.000000px;}
.w0_c00139{width:892.500000px;}
.x0_c00139{left:0.000000px;}
.x12_c00139{left:145.798950px;}
.xc_c00139{left:149.038950px;}
.x13_c00139{left:169.918350px;}
.xd_c00139{left:207.719100px;}
.xa_c00139{left:217.079595px;}
.xe_c00139{left:219.599100px;}
.x14_c00139{left:227.159850px;}
.xf_c00139{left:239.758500px;}
.x15_c00139{left:267.478635px;}
.x1_c00139{left:286.919535px;}
.x5_c00139{left:302.039385px;}
.x16_c00139{left:320.040000px;}
.x17_c00139{left:336.959385px;}
.x6_c00139{left:350.639100px;}
.x7_c00139{left:362.160945px;}
.x2_c00139{left:379.079385px;}
.x18_c00139{left:393.838530px;}
.x10_c00139{left:398.518665px;}
.x11_c00139{left:448.919535px;}
.x21_c00139{left:451.439250px;}
.x4_c00139{left:461.878920px;}
.x8_c00139{left:471.239220px;}
.x3_c00139{left:479.159415px;}
.x22_c00139{left:501.119985px;}
.x9_c00139{left:522.719565px;}
.xb_c00139{left:545.039385px;}
.x23_c00139{left:563.399235px;}
.x19_c00139{left:596.878920px;}
.x24_c00139{left:599.398635px;}
.x1d_c00139{left:625.678530px;}
.x1e_c00139{left:639.359850px;}
.x25_c00139{left:642.958920px;}
.x1a_c00139{left:659.159820px;}
.x1f_c00139{left:668.879520px;}
.x26_c00139{left:678.599070px;}
.x20_c00139{left:683.279250px;}
.x1b_c00139{left:694.798560px;}
.x1c_c00139{left:709.199850px;}
.x27_c00139{left:756.359250px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls27_c00139{letter-spacing:-12.289333pt;}
.ls1a_c00139{letter-spacing:-11.595000pt;}
.ls29_c00139{letter-spacing:-7.121520pt;}
.ls22_c00139{letter-spacing:-6.490807pt;}
.lsb_c00139{letter-spacing:-6.138000pt;}
.ls1e_c00139{letter-spacing:-4.979200pt;}
.ls12_c00139{letter-spacing:-4.140000pt;}
.ls28_c00139{letter-spacing:-3.936533pt;}
.ls1f_c00139{letter-spacing:-3.531067pt;}
.ls5_c00139{letter-spacing:-3.433333pt;}
.ls19_c00139{letter-spacing:-3.182933pt;}
.ls1c_c00139{letter-spacing:-2.582740pt;}
.ls15_c00139{letter-spacing:-2.180267pt;}
.ls18_c00139{letter-spacing:-2.062667pt;}
.ls17_c00139{letter-spacing:-1.941333pt;}
.lsf_c00139{letter-spacing:-1.840780pt;}
.ls14_c00139{letter-spacing:-1.424220pt;}
.ls20_c00139{letter-spacing:-1.356980pt;}
.ls1b_c00139{letter-spacing:-1.335067pt;}
.ls26_c00139{letter-spacing:-1.252000pt;}
.ls8_c00139{letter-spacing:-0.707000pt;}
.ls21_c00139{letter-spacing:-0.644387pt;}
.ls10_c00139{letter-spacing:-0.613800pt;}
.ls6_c00139{letter-spacing:0.000000pt;}
.ls1_c00139{letter-spacing:0.613800pt;}
.ls11_c00139{letter-spacing:0.675567pt;}
.ls7_c00139{letter-spacing:0.735640pt;}
.lsa_c00139{letter-spacing:1.228220pt;}
.lsd_c00139{letter-spacing:1.404667pt;}
.ls13_c00139{letter-spacing:1.652920pt;}
.lsc_c00139{letter-spacing:1.840780pt;}
.ls23_c00139{letter-spacing:1.941333pt;}
.ls2_c00139{letter-spacing:2.455200pt;}
.lse_c00139{letter-spacing:3.069000pt;}
.ls4_c00139{letter-spacing:3.682800pt;}
.ls25_c00139{letter-spacing:3.859240pt;}
.ls9_c00139{letter-spacing:3.880000pt;}
.ls3_c00139{letter-spacing:4.297220pt;}
.ls16_c00139{letter-spacing:4.312440pt;}
.ls24_c00139{letter-spacing:5.284000pt;}
.ls0_c00139{letter-spacing:5.524200pt;}
.ls1d_c00139{letter-spacing:11.112000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
._0_c00139{width:9.585605pt;}
._3_c00139{width:11.941212pt;}
._6_c00139{width:14.444324pt;}
._2_c00139{width:18.946807pt;}
._1_c00139{width:22.158972pt;}
._7_c00139{width:26.123682pt;}
._4_c00139{width:36.505747pt;}
._5_c00139{width:333.020146pt;}
.fsf_c00139{font-size:38.000000pt;}
.fs14_c00139{font-size:39.333333pt;}
.fsa_c00139{font-size:40.000000pt;}
.fs12_c00139{font-size:40.666667pt;}
.fsb_c00139{font-size:41.333333pt;}
.fsc_c00139{font-size:42.000000pt;}
.fs11_c00139{font-size:42.666667pt;}
.fs8_c00139{font-size:43.333333pt;}
.fse_c00139{font-size:44.000000pt;}
.fs10_c00139{font-size:45.333333pt;}
.fs13_c00139{font-size:47.333333pt;}
.fsd_c00139{font-size:48.666667pt;}
.fs9_c00139{font-size:50.000000pt;}
.fs5_c00139{font-size:62.000000pt;}
.fs4_c00139{font-size:64.666667pt;}
.fs6_c00139{font-size:65.333333pt;}
.fs0_c00139{font-size:68.666667pt;}
.fs1_c00139{font-size:69.333333pt;}
.fs3_c00139{font-size:70.000000pt;}
.fs2_c00139{font-size:70.666667pt;}
.fs15_c00139{font-size:72.000000pt;}
.fs7_c00139{font-size:105.333333pt;}
.y0_c00139{bottom:0.000000pt;}
.yf_c00139{bottom:113.919480pt;}
.yd_c00139{bottom:141.439480pt;}
.ye_c00139{bottom:142.400413pt;}
.ya_c00139{bottom:166.079613pt;}
.yc_c00139{bottom:167.359867pt;}
.y8_c00139{bottom:189.439453pt;}
.y9_c00139{bottom:189.760253pt;}
.yb_c00139{bottom:191.040533pt;}
.y6_c00139{bottom:793.599493pt;}
.y7_c00139{bottom:793.599613pt;}
.y5_c00139{bottom:816.959467pt;}
.y4_c00139{bottom:850.238827pt;}
.y3_c00139{bottom:872.320227pt;}
.y2_c00139{bottom:961.280280pt;}
.y1_c00139{bottom:1001.279293pt;}
.h10_c00139{height:39.632812pt;}
.h17_c00139{height:41.023438pt;}
.hb_c00139{height:41.718750pt;}
.h19_c00139{height:42.328125pt;}
.h13_c00139{height:42.414062pt;}
.h12_c00139{height:43.000000pt;}
.hc_c00139{height:43.109375pt;}
.h9_c00139{height:43.671875pt;}
.hd_c00139{height:43.804688pt;}
.h18_c00139{height:44.343750pt;}
.h16_c00139{height:44.492188pt;}
.h14_c00139{height:44.500000pt;}
.h11_c00139{height:44.802083pt;}
.hf_c00139{height:45.890625pt;}
.h15_c00139{height:46.778646pt;}
.he_c00139{height:48.096354pt;}
.ha_c00139{height:49.414063pt;}
.h6_c00139{height:60.849609pt;}
.h5_c00139{height:63.466797pt;}
.h7_c00139{height:65.843750pt;}
.h4_c00139{height:68.701172pt;}
.h1_c00139{height:69.203125pt;}
.h3_c00139{height:69.355469pt;}
.h2_c00139{height:69.875000pt;}
.h1a_c00139{height:71.156250pt;}
.h8_c00139{height:109.859375pt;}
.h0_c00139{height:1122.666667pt;}
.w0_c00139{width:793.333333pt;}
.x0_c00139{left:0.000000pt;}
.x12_c00139{left:129.599067pt;}
.xc_c00139{left:132.479067pt;}
.x13_c00139{left:151.038533pt;}
.xd_c00139{left:184.639200pt;}
.xa_c00139{left:192.959640pt;}
.xe_c00139{left:195.199200pt;}
.x14_c00139{left:201.919867pt;}
.xf_c00139{left:213.118667pt;}
.x15_c00139{left:237.758787pt;}
.x1_c00139{left:255.039587pt;}
.x5_c00139{left:268.479453pt;}
.x16_c00139{left:284.480000pt;}
.x17_c00139{left:299.519453pt;}
.x6_c00139{left:311.679200pt;}
.x7_c00139{left:321.920840pt;}
.x2_c00139{left:336.959453pt;}
.x18_c00139{left:350.078693pt;}
.x10_c00139{left:354.238813pt;}
.x11_c00139{left:399.039587pt;}
.x21_c00139{left:401.279333pt;}
.x4_c00139{left:410.559040pt;}
.x8_c00139{left:418.879307pt;}
.x3_c00139{left:425.919480pt;}
.x22_c00139{left:445.439987pt;}
.x9_c00139{left:464.639613pt;}
.xb_c00139{left:484.479453pt;}
.x23_c00139{left:500.799320pt;}
.x19_c00139{left:530.559040pt;}
.x24_c00139{left:532.798787pt;}
.x1d_c00139{left:556.158693pt;}
.x1e_c00139{left:568.319867pt;}
.x25_c00139{left:571.519040pt;}
.x1a_c00139{left:585.919840pt;}
.x1f_c00139{left:594.559573pt;}
.x26_c00139{left:603.199173pt;}
.x20_c00139{left:607.359333pt;}
.x1b_c00139{left:617.598720pt;}
.x1c_c00139{left:630.399867pt;}
.x27_c00139{left:672.319333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e979bfba9b2f6f601432f263.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_5a0d12e8b2cdcc6af24e5651.woff2')format("woff");}.ff2_c00140{font-family:ff2_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:ff3_c00140;src:url('chunks/assets/font_76055b32191b2b5b9e75ae6d.woff2')format("woff");}.ff3_c00140{font-family:ff3_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:ff4_c00140;src:url('chunks/assets/font_8738e30afaa78c5834986e1f.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_3ed85d66f25f2be19d0e8bd1.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_f9e3fdf3aa09e1995227c08a.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.364746;font-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_c00140{transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177536,0.000000,0.000000,0.250000,0,0);}
.m25_c00140{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m2a_c00140{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m0_c00140{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);}
.m1d_c00140{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{transform:matrix(0.303846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303846,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.314103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314103,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.316327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316327,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00140{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337209,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);}
.me_c00140{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);}
.m17_c00140{transform:matrix(0.415254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415254,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{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);}
.m20_c00140{transform:matrix(0.589286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589286,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls25_c00140{letter-spacing:-16.662750px;}
.ls7_c00140{letter-spacing:-8.175038px;}
.ls9_c00140{letter-spacing:-7.290945px;}
.ls18_c00140{letter-spacing:-7.248900px;}
.ls8_c00140{letter-spacing:-6.685875px;}
.ls15_c00140{letter-spacing:-5.967585px;}
.lse_c00140{letter-spacing:-5.945625px;}
.ls2a_c00140{letter-spacing:-5.356200px;}
.ls29_c00140{letter-spacing:-5.247533px;}
.lsc_c00140{letter-spacing:-5.196713px;}
.lsa_c00140{letter-spacing:-4.456463px;}
.ls5_c00140{letter-spacing:-4.410975px;}
.ls3_c00140{letter-spacing:-3.717000px;}
.ls4_c00140{letter-spacing:-2.968875px;}
.ls20_c00140{letter-spacing:-2.624700px;}
.ls6_c00140{letter-spacing:-2.229413px;}
.ls28_c00140{letter-spacing:-2.224028px;}
.ls27_c00140{letter-spacing:-1.778400px;}
.lsd_c00140{letter-spacing:-1.489163px;}
.ls16_c00140{letter-spacing:-1.429275px;}
.ls14_c00140{letter-spacing:-1.406625px;}
.ls1c_c00140{letter-spacing:-1.353608px;}
.ls1b_c00140{letter-spacing:-1.055700px;}
.ls2b_c00140{letter-spacing:-0.756600px;}
.lsb_c00140{letter-spacing:-0.740250px;}
.ls2_c00140{letter-spacing:0.000000px;}
.ls1_c00140{letter-spacing:0.740250px;}
.ls24_c00140{letter-spacing:0.955500px;}
.lsf_c00140{letter-spacing:1.824000px;}
.ls12_c00140{letter-spacing:2.251800px;}
.ls26_c00140{letter-spacing:2.308500px;}
.ls1a_c00140{letter-spacing:2.494350px;}
.ls21_c00140{letter-spacing:2.822400px;}
.ls10_c00140{letter-spacing:3.295125px;}
.ls22_c00140{letter-spacing:3.565575px;}
.ls11_c00140{letter-spacing:4.050405px;}
.ls1e_c00140{letter-spacing:4.446953px;}
.ls19_c00140{letter-spacing:5.927775px;}
.ls13_c00140{letter-spacing:6.276525px;}
.ls1d_c00140{letter-spacing:6.461325px;}
.ls17_c00140{letter-spacing:6.862043px;}
.ls0_c00140{letter-spacing:7.500090px;}
.ls23_c00140{letter-spacing:7.596450px;}
.ls1f_c00140{letter-spacing:14.300618px;}
.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;}
._19_c00140{margin-left:-13.423770px;}
._1a_c00140{margin-left:-11.073959px;}
._11_c00140{margin-left:-7.964656px;}
._d_c00140{margin-left:-6.198115px;}
._b_c00140{margin-left:-4.593086px;}
._c_c00140{margin-left:-1.618833px;}
._e_c00140{width:1.639144px;}
._a_c00140{width:3.030894px;}
._5_c00140{width:5.050951px;}
._9_c00140{width:7.017071px;}
._17_c00140{width:8.023436px;}
._2_c00140{width:9.029252px;}
._0_c00140{width:10.796595px;}
._1_c00140{width:12.623536px;}
._8_c00140{width:13.868350px;}
._f_c00140{width:14.888208px;}
._10_c00140{width:15.907025px;}
._3_c00140{width:18.506815px;}
._7_c00140{width:20.225942px;}
._12_c00140{width:21.471440px;}
._6_c00140{width:22.522084px;}
._4_c00140{width:24.509422px;}
._13_c00140{width:26.822607px;}
._16_c00140{width:28.982348px;}
._18_c00140{width:30.666097px;}
._14_c00140{width:33.164463px;}
._15_c00140{width:34.308730px;}
.fc0_c00140{color:transparent;}
.fs1a_c00140{font-size:21.000000px;}
.fs1c_c00140{font-size:22.500000px;}
.fs19_c00140{font-size:25.500000px;}
.fs15_c00140{font-size:29.250000px;}
.fs16_c00140{font-size:30.000000px;}
.fs17_c00140{font-size:31.500000px;}
.fs14_c00140{font-size:32.250000px;}
.fs13_c00140{font-size:35.250000px;}
.fs11_c00140{font-size:36.750000px;}
.fsb_c00140{font-size:37.500000px;}
.fsf_c00140{font-size:39.000000px;}
.fsa_c00140{font-size:39.750000px;}
.fs9_c00140{font-size:40.500000px;}
.fsd_c00140{font-size:44.250000px;}
.fse_c00140{font-size:45.750000px;}
.fs12_c00140{font-size:51.750000px;}
.fs10_c00140{font-size:54.750000px;}
.fsc_c00140{font-size:58.500000px;}
.fs5_c00140{font-size:71.250000px;}
.fs1d_c00140{font-size:72.000000px;}
.fs8_c00140{font-size:75.750000px;}
.fs7_c00140{font-size:76.500000px;}
.fs2_c00140{font-size:77.250000px;}
.fs1f_c00140{font-size:78.000000px;}
.fs0_c00140{font-size:78.750000px;}
.fs1_c00140{font-size:79.500000px;}
.fs3_c00140{font-size:80.250000px;}
.fs6_c00140{font-size:81.750000px;}
.fs4_c00140{font-size:82.500000px;}
.fs1e_c00140{font-size:84.750000px;}
.fs1b_c00140{font-size:97.500000px;}
.fs18_c00140{font-size:144.000000px;}
.y0_c00140{bottom:0.000000px;}
.y26_c00140{bottom:271.079340px;}
.y27_c00140{bottom:271.079385px;}
.y24_c00140{bottom:301.318470px;}
.y25_c00140{bottom:301.319250px;}
.y23_c00140{bottom:360.719535px;}
.y22_c00140{bottom:390.600135px;}
.y21_c00140{bottom:390.600225px;}
.y1f_c00140{bottom:420.839625px;}
.y20_c00140{bottom:420.840135px;}
.y1e_c00140{bottom:480.238890px;}
.y1d_c00140{bottom:510.118605px;}
.y1c_c00140{bottom:540.358515px;}
.y1a_c00140{bottom:569.519625px;}
.y1b_c00140{bottom:569.519670px;}
.y18_c00140{bottom:599.758755px;}
.y19_c00140{bottom:599.759535px;}
.y16_c00140{bottom:659.159205px;}
.y17_c00140{bottom:659.159820px;}
.y15_c00140{bottom:689.038920px;}
.y14_c00140{bottom:689.039820px;}
.y13_c00140{bottom:718.919535px;}
.y12_c00140{bottom:749.159370px;}
.y11_c00140{bottom:753.478635px;}
.y10_c00140{bottom:755.279850px;}
.yf_c00140{bottom:779.039985px;}
.ye_c00140{bottom:779.041695px;}
.yd_c00140{bottom:809.639985px;}
.yc_c00140{bottom:839.519715px;}
.yb_c00140{bottom:839.519805px;}
.ya_c00140{bottom:869.039340px;}
.y9_c00140{bottom:869.039385px;}
.y8_c00140{bottom:899.639790px;}
.y7_c00140{bottom:959.039040px;}
.y6_c00140{bottom:988.560375px;}
.y5_c00140{bottom:1018.440105px;}
.y3_c00140{bottom:1048.319775px;}
.y4_c00140{bottom:1048.319820px;}
.y2_c00140{bottom:1078.559685px;}
.y1_c00140{bottom:1139.039340px;}
.h1c_c00140{height:21.902344px;}
.h1e_c00140{height:22.236328px;}
.h1b_c00140{height:25.026855px;}
.h19_c00140{height:29.478516px;}
.h16_c00140{height:30.506836px;}
.h17_c00140{height:31.289062px;}
.h18_c00140{height:31.746094px;}
.h15_c00140{height:33.635742px;}
.h14_c00140{height:34.595947px;}
.h12_c00140{height:38.329102px;}
.hc_c00140{height:39.111328px;}
.h10_c00140{height:39.304688px;}
.hb_c00140{height:41.458008px;}
.ha_c00140{height:42.240234px;}
.he_c00140{height:46.151367px;}
.hf_c00140{height:47.715820px;}
.h13_c00140{height:53.973633px;}
.h11_c00140{height:54.108398px;}
.hd_c00140{height:61.013672px;}
.h6_c00140{height:74.311523px;}
.h9_c00140{height:74.344482px;}
.h22_c00140{height:75.080566px;}
.h1f_c00140{height:75.093750px;}
.h3_c00140{height:75.816650px;}
.h21_c00140{height:76.552734px;}
.h8_c00140{height:77.097656px;}
.h1_c00140{height:77.288818px;}
.h2_c00140{height:78.024902px;}
.h4_c00140{height:78.760986px;}
.h7_c00140{height:80.233154px;}
.h5_c00140{height:80.969238px;}
.h20_c00140{height:83.756836px;}
.h1d_c00140{height:101.689453px;}
.h1a_c00140{height:150.187500px;}
.h0_c00140{height:1263.000000px;}
.w0_c00140{width:892.500000px;}
.x0_c00140{left:0.000000px;}
.x8_c00140{left:136.800150px;}
.x1_c00140{left:138.239850px;}
.x34_c00140{left:152.278800px;}
.x3_c00140{left:164.158785px;}
.x14_c00140{left:165.599100px;}
.x28_c00140{left:185.758500px;}
.x29_c00140{left:200.878350px;}
.x6_c00140{left:202.679700px;}
.x15_c00140{left:204.838515px;}
.x7_c00140{left:219.599100px;}
.x16_c00140{left:268.559685px;}
.x30_c00140{left:300.239850px;}
.x9_c00140{left:310.679700px;}
.x31_c00140{left:314.998950px;}
.x23_c00140{left:318.238785px;}
.x17_c00140{left:319.679100px;}
.xb_c00140{left:322.918950px;}
.x2_c00140{left:324.718500px;}
.xa_c00140{left:325.799535px;}
.x24_c00140{left:333.719535px;}
.x10_c00140{left:343.439235px;}
.xc_c00140{left:347.399235px;}
.x11_c00140{left:358.199850px;}
.xd_c00140{left:362.519100px;}
.x12_c00140{left:375.478635px;}
.x18_c00140{left:382.678530px;}
.x35_c00140{left:389.159820px;}
.x25_c00140{left:390.239220px;}
.x19_c00140{left:405.000000px;}
.x13_c00140{left:408.958335px;}
.x32_c00140{left:437.039385px;}
.x33_c00140{left:451.798515px;}
.x36_c00140{left:468.358665px;}
.x1a_c00140{left:476.639700px;}
.x37_c00140{left:521.999400px;}
.x20_c00140{left:542.519670px;}
.x38_c00140{left:544.678530px;}
.x4_c00140{left:552.598530px;}
.x2a_c00140{left:553.679670px;}
.x1b_c00140{left:556.919535px;}
.x39_c00140{left:558.719100px;}
.x1c_c00140{left:577.798920px;}
.x5_c00140{left:579.598530px;}
.x2f_c00140{left:582.119985px;}
.x26_c00140{left:584.639700px;}
.x1d_c00140{left:608.038920px;}
.x27_c00140{left:617.758530px;}
.x21_c00140{left:638.278800px;}
.x2d_c00140{left:643.319820px;}
.x22_c00140{left:665.998950px;}
.x2e_c00140{left:667.080000px;}
.x1e_c00140{left:694.439250px;}
.x1f_c00140{left:713.159820px;}
.x2b_c00140{left:739.439670px;}
.xe_c00140{left:744.479235px;}
.xf_c00140{left:757.438620px;}
.x2c_c00140{left:759.599070px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls25_c00140{letter-spacing:-14.811333pt;}
.ls7_c00140{letter-spacing:-7.266700pt;}
.ls9_c00140{letter-spacing:-6.480840pt;}
.ls18_c00140{letter-spacing:-6.443467pt;}
.ls8_c00140{letter-spacing:-5.943000pt;}
.ls15_c00140{letter-spacing:-5.304520pt;}
.lse_c00140{letter-spacing:-5.285000pt;}
.ls2a_c00140{letter-spacing:-4.761067pt;}
.ls29_c00140{letter-spacing:-4.664473pt;}
.lsc_c00140{letter-spacing:-4.619300pt;}
.lsa_c00140{letter-spacing:-3.961300pt;}
.ls5_c00140{letter-spacing:-3.920867pt;}
.ls3_c00140{letter-spacing:-3.304000pt;}
.ls4_c00140{letter-spacing:-2.639000pt;}
.ls20_c00140{letter-spacing:-2.333067pt;}
.ls6_c00140{letter-spacing:-1.981700pt;}
.ls28_c00140{letter-spacing:-1.976913pt;}
.ls27_c00140{letter-spacing:-1.580800pt;}
.lsd_c00140{letter-spacing:-1.323700pt;}
.ls16_c00140{letter-spacing:-1.270467pt;}
.ls14_c00140{letter-spacing:-1.250333pt;}
.ls1c_c00140{letter-spacing:-1.203207pt;}
.ls1b_c00140{letter-spacing:-0.938400pt;}
.ls2b_c00140{letter-spacing:-0.672533pt;}
.lsb_c00140{letter-spacing:-0.658000pt;}
.ls2_c00140{letter-spacing:0.000000pt;}
.ls1_c00140{letter-spacing:0.658000pt;}
.ls24_c00140{letter-spacing:0.849333pt;}
.lsf_c00140{letter-spacing:1.621333pt;}
.ls12_c00140{letter-spacing:2.001600pt;}
.ls26_c00140{letter-spacing:2.052000pt;}
.ls1a_c00140{letter-spacing:2.217200pt;}
.ls21_c00140{letter-spacing:2.508800pt;}
.ls10_c00140{letter-spacing:2.929000pt;}
.ls22_c00140{letter-spacing:3.169400pt;}
.ls11_c00140{letter-spacing:3.600360pt;}
.ls1e_c00140{letter-spacing:3.952847pt;}
.ls19_c00140{letter-spacing:5.269133pt;}
.ls13_c00140{letter-spacing:5.579133pt;}
.ls1d_c00140{letter-spacing:5.743400pt;}
.ls17_c00140{letter-spacing:6.099593pt;}
.ls0_c00140{letter-spacing:6.666747pt;}
.ls23_c00140{letter-spacing:6.752400pt;}
.ls1f_c00140{letter-spacing:12.711660pt;}
.ws0_c00140{word-spacing:0.000000pt;}
._19_c00140{margin-left:-11.932240pt;}
._1a_c00140{margin-left:-9.843519pt;}
._11_c00140{margin-left:-7.079694pt;}
._d_c00140{margin-left:-5.509436pt;}
._b_c00140{margin-left:-4.082743pt;}
._c_c00140{margin-left:-1.438962pt;}
._e_c00140{width:1.457017pt;}
._a_c00140{width:2.694128pt;}
._5_c00140{width:4.489734pt;}
._9_c00140{width:6.237396pt;}
._17_c00140{width:7.131943pt;}
._2_c00140{width:8.026002pt;}
._0_c00140{width:9.596974pt;}
._1_c00140{width:11.220921pt;}
._8_c00140{width:12.327423pt;}
._f_c00140{width:13.233962pt;}
._10_c00140{width:14.139577pt;}
._3_c00140{width:16.450502pt;}
._7_c00140{width:17.978615pt;}
._12_c00140{width:19.085725pt;}
._6_c00140{width:20.019630pt;}
._4_c00140{width:21.786153pt;}
._13_c00140{width:23.842317pt;}
._16_c00140{width:25.762087pt;}
._18_c00140{width:27.258753pt;}
._14_c00140{width:29.479523pt;}
._15_c00140{width:30.496649pt;}
.fs1a_c00140{font-size:18.666667pt;}
.fs1c_c00140{font-size:20.000000pt;}
.fs19_c00140{font-size:22.666667pt;}
.fs15_c00140{font-size:26.000000pt;}
.fs16_c00140{font-size:26.666667pt;}
.fs17_c00140{font-size:28.000000pt;}
.fs14_c00140{font-size:28.666667pt;}
.fs13_c00140{font-size:31.333333pt;}
.fs11_c00140{font-size:32.666667pt;}
.fsb_c00140{font-size:33.333333pt;}
.fsf_c00140{font-size:34.666667pt;}
.fsa_c00140{font-size:35.333333pt;}
.fs9_c00140{font-size:36.000000pt;}
.fsd_c00140{font-size:39.333333pt;}
.fse_c00140{font-size:40.666667pt;}
.fs12_c00140{font-size:46.000000pt;}
.fs10_c00140{font-size:48.666667pt;}
.fsc_c00140{font-size:52.000000pt;}
.fs5_c00140{font-size:63.333333pt;}
.fs1d_c00140{font-size:64.000000pt;}
.fs8_c00140{font-size:67.333333pt;}
.fs7_c00140{font-size:68.000000pt;}
.fs2_c00140{font-size:68.666667pt;}
.fs1f_c00140{font-size:69.333333pt;}
.fs0_c00140{font-size:70.000000pt;}
.fs1_c00140{font-size:70.666667pt;}
.fs3_c00140{font-size:71.333333pt;}
.fs6_c00140{font-size:72.666667pt;}
.fs4_c00140{font-size:73.333333pt;}
.fs1e_c00140{font-size:75.333333pt;}
.fs1b_c00140{font-size:86.666667pt;}
.fs18_c00140{font-size:128.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y26_c00140{bottom:240.959413pt;}
.y27_c00140{bottom:240.959453pt;}
.y24_c00140{bottom:267.838640pt;}
.y25_c00140{bottom:267.839333pt;}
.y23_c00140{bottom:320.639587pt;}
.y22_c00140{bottom:347.200120pt;}
.y21_c00140{bottom:347.200200pt;}
.y1f_c00140{bottom:374.079667pt;}
.y20_c00140{bottom:374.080120pt;}
.y1e_c00140{bottom:426.879013pt;}
.y1d_c00140{bottom:453.438760pt;}
.y1c_c00140{bottom:480.318680pt;}
.y1a_c00140{bottom:506.239667pt;}
.y1b_c00140{bottom:506.239707pt;}
.y18_c00140{bottom:533.118893pt;}
.y19_c00140{bottom:533.119587pt;}
.y16_c00140{bottom:585.919293pt;}
.y17_c00140{bottom:585.919840pt;}
.y15_c00140{bottom:612.479040pt;}
.y14_c00140{bottom:612.479840pt;}
.y13_c00140{bottom:639.039587pt;}
.y12_c00140{bottom:665.919440pt;}
.y11_c00140{bottom:669.758787pt;}
.y10_c00140{bottom:671.359867pt;}
.yf_c00140{bottom:692.479987pt;}
.ye_c00140{bottom:692.481507pt;}
.yd_c00140{bottom:719.679987pt;}
.yc_c00140{bottom:746.239747pt;}
.yb_c00140{bottom:746.239827pt;}
.ya_c00140{bottom:772.479413pt;}
.y9_c00140{bottom:772.479453pt;}
.y8_c00140{bottom:799.679813pt;}
.y7_c00140{bottom:852.479147pt;}
.y6_c00140{bottom:878.720333pt;}
.y5_c00140{bottom:905.280093pt;}
.y3_c00140{bottom:931.839800pt;}
.y4_c00140{bottom:931.839840pt;}
.y2_c00140{bottom:958.719720pt;}
.y1_c00140{bottom:1012.479413pt;}
.h1c_c00140{height:19.468750pt;}
.h1e_c00140{height:19.765625pt;}
.h1b_c00140{height:22.246094pt;}
.h19_c00140{height:26.203125pt;}
.h16_c00140{height:27.117188pt;}
.h17_c00140{height:27.812500pt;}
.h18_c00140{height:28.218750pt;}
.h15_c00140{height:29.898438pt;}
.h14_c00140{height:30.751953pt;}
.h12_c00140{height:34.070312pt;}
.hc_c00140{height:34.765625pt;}
.h10_c00140{height:34.937500pt;}
.hb_c00140{height:36.851562pt;}
.ha_c00140{height:37.546875pt;}
.he_c00140{height:41.023438pt;}
.hf_c00140{height:42.414062pt;}
.h13_c00140{height:47.976562pt;}
.h11_c00140{height:48.096354pt;}
.hd_c00140{height:54.234375pt;}
.h6_c00140{height:66.054688pt;}
.h9_c00140{height:66.083984pt;}
.h22_c00140{height:66.738281pt;}
.h1f_c00140{height:66.750000pt;}
.h3_c00140{height:67.392578pt;}
.h21_c00140{height:68.046875pt;}
.h8_c00140{height:68.531250pt;}
.h1_c00140{height:68.701172pt;}
.h2_c00140{height:69.355469pt;}
.h4_c00140{height:70.009766pt;}
.h7_c00140{height:71.318359pt;}
.h5_c00140{height:71.972656pt;}
.h20_c00140{height:74.450521pt;}
.h1d_c00140{height:90.390625pt;}
.h1a_c00140{height:133.500000pt;}
.h0_c00140{height:1122.666667pt;}
.w0_c00140{width:793.333333pt;}
.x0_c00140{left:0.000000pt;}
.x8_c00140{left:121.600133pt;}
.x1_c00140{left:122.879867pt;}
.x34_c00140{left:135.358933pt;}
.x3_c00140{left:145.918920pt;}
.x14_c00140{left:147.199200pt;}
.x28_c00140{left:165.118667pt;}
.x29_c00140{left:178.558533pt;}
.x6_c00140{left:180.159733pt;}
.x15_c00140{left:182.078680pt;}
.x7_c00140{left:195.199200pt;}
.x16_c00140{left:238.719720pt;}
.x30_c00140{left:266.879867pt;}
.x9_c00140{left:276.159733pt;}
.x31_c00140{left:279.999067pt;}
.x23_c00140{left:282.878920pt;}
.x17_c00140{left:284.159200pt;}
.xb_c00140{left:287.039067pt;}
.x2_c00140{left:288.638667pt;}
.xa_c00140{left:289.599587pt;}
.x24_c00140{left:296.639587pt;}
.x10_c00140{left:305.279320pt;}
.xc_c00140{left:308.799320pt;}
.x11_c00140{left:318.399867pt;}
.xd_c00140{left:322.239200pt;}
.x12_c00140{left:333.758787pt;}
.x18_c00140{left:340.158693pt;}
.x35_c00140{left:345.919840pt;}
.x25_c00140{left:346.879307pt;}
.x19_c00140{left:360.000000pt;}
.x13_c00140{left:363.518520pt;}
.x32_c00140{left:388.479453pt;}
.x33_c00140{left:401.598680pt;}
.x36_c00140{left:416.318813pt;}
.x1a_c00140{left:423.679733pt;}
.x37_c00140{left:463.999467pt;}
.x20_c00140{left:482.239707pt;}
.x38_c00140{left:484.158693pt;}
.x4_c00140{left:491.198693pt;}
.x2a_c00140{left:492.159707pt;}
.x1b_c00140{left:495.039587pt;}
.x39_c00140{left:496.639200pt;}
.x1c_c00140{left:513.599040pt;}
.x5_c00140{left:515.198693pt;}
.x2f_c00140{left:517.439987pt;}
.x26_c00140{left:519.679733pt;}
.x1d_c00140{left:540.479040pt;}
.x27_c00140{left:549.118693pt;}
.x21_c00140{left:567.358933pt;}
.x2d_c00140{left:571.839840pt;}
.x22_c00140{left:591.999067pt;}
.x2e_c00140{left:592.960000pt;}
.x1e_c00140{left:617.279333pt;}
.x1f_c00140{left:633.919840pt;}
.x2b_c00140{left:657.279707pt;}
.xe_c00140{left:661.759320pt;}
.xf_c00140{left:673.278773pt;}
.x2c_c00140{left:675.199173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc874291429747eca1a6ad5e.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_624f8e64770510bfdf923381.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.364746;font-style:normal;font-weight:normal;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_261761dbcb07e7069451a5ab.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00141{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.205607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205607,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.lsf_c00141{letter-spacing:-9.654750px;}
.ls15_c00141{letter-spacing:-8.175038px;}
.lsc_c00141{letter-spacing:-7.426125px;}
.ls13_c00141{letter-spacing:-6.685875px;}
.ls6_c00141{letter-spacing:-5.945625px;}
.ls7_c00141{letter-spacing:-5.196713px;}
.lsd_c00141{letter-spacing:-5.024880px;}
.lsb_c00141{letter-spacing:-4.456463px;}
.ls8_c00141{letter-spacing:-3.717000px;}
.ls5_c00141{letter-spacing:-2.968875px;}
.lsa_c00141{letter-spacing:-2.835075px;}
.ls2_c00141{letter-spacing:-2.229413px;}
.ls4_c00141{letter-spacing:-1.489163px;}
.ls12_c00141{letter-spacing:-0.779220px;}
.ls3_c00141{letter-spacing:-0.740250px;}
.ls9_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:0.740250px;}
.ls11_c00141{letter-spacing:1.375050px;}
.ls10_c00141{letter-spacing:2.229413px;}
.ls14_c00141{letter-spacing:4.181700px;}
.lse_c00141{letter-spacing:4.557398px;}
.ls1_c00141{letter-spacing:13.371750px;}
.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;}
._13_c00141{margin-left:-18.672249px;}
._d_c00141{margin-left:-7.036639px;}
._e_c00141{margin-left:-5.827322px;}
._f_c00141{margin-left:-4.102117px;}
._c_c00141{margin-left:-2.676950px;}
._11_c00141{margin-left:-1.232675px;}
._0_c00141{width:1.809229px;}
._14_c00141{width:3.042113px;}
._3_c00141{width:4.317476px;}
._10_c00141{width:6.298707px;}
._1_c00141{width:7.679715px;}
._b_c00141{width:9.387312px;}
._5_c00141{width:10.494700px;}
._2_c00141{width:12.245684px;}
._8_c00141{width:14.256038px;}
._6_c00141{width:16.145830px;}
._16_c00141{width:17.416499px;}
._4_c00141{width:18.765679px;}
._15_c00141{width:19.765864px;}
._7_c00141{width:21.473565px;}
._9_c00141{width:22.507537px;}
._a_c00141{width:24.806220px;}
._17_c00141{width:27.615768px;}
._12_c00141{width:32.216179px;}
.fc0_c00141{color:transparent;}
.fs9_c00141{font-size:66.750000px;}
.fs8_c00141{font-size:69.000000px;}
.fs3_c00141{font-size:72.000000px;}
.fs1_c00141{font-size:74.250000px;}
.fs2_c00141{font-size:77.250000px;}
.fs5_c00141{font-size:78.000000px;}
.fs0_c00141{font-size:78.750000px;}
.fsa_c00141{font-size:79.500000px;}
.fs6_c00141{font-size:80.250000px;}
.fs4_c00141{font-size:82.500000px;}
.fs7_c00141{font-size:84.000000px;}
.y0_c00141{bottom:0.000000px;}
.y25_c00141{bottom:210.600495px;}
.y24_c00141{bottom:241.198785px;}
.y23_c00141{bottom:241.199655px;}
.y21_c00141{bottom:271.077135px;}
.y22_c00141{bottom:271.079385px;}
.y20_c00141{bottom:330.478200px;}
.y1f_c00141{bottom:360.357930px;}
.y1e_c00141{bottom:389.519070px;}
.y1c_c00141{bottom:419.758665px;}
.y1d_c00141{bottom:419.759085px;}
.y1b_c00141{bottom:480.238785px;}
.y1a_c00141{bottom:509.760135px;}
.y19_c00141{bottom:528.479235px;}
.y18_c00141{bottom:540.000000px;}
.y17_c00141{bottom:540.001515px;}
.y16_c00141{bottom:599.040270px;}
.y14_c00141{bottom:628.919010px;}
.y15_c00141{bottom:628.920000px;}
.y13_c00141{bottom:658.798740px;}
.y12_c00141{bottom:718.560285px;}
.y11_c00141{bottom:748.439205px;}
.y10_c00141{bottom:748.440105px;}
.yf_c00141{bottom:778.319820px;}
.yd_c00141{bottom:808.918125px;}
.ye_c00141{bottom:808.918950px;}
.yc_c00141{bottom:868.319190px;}
.yb_c00141{bottom:898.559055px;}
.ya_c00141{bottom:898.559235px;}
.y8_c00141{bottom:928.078680px;}
.y9_c00141{bottom:928.078770px;}
.y7_c00141{bottom:987.479730px;}
.y6_c00141{bottom:1018.080135px;}
.y5_c00141{bottom:1047.599670px;}
.y4_c00141{bottom:1047.600495px;}
.y2_c00141{bottom:1078.197975px;}
.y3_c00141{bottom:1078.198785px;}
.y1_c00141{bottom:1137.599025px;}
.hb_c00141{height:69.618164px;}
.ha_c00141{height:71.964844px;}
.h2_c00141{height:72.872314px;}
.h4_c00141{height:75.093750px;}
.h3_c00141{height:75.816650px;}
.h6_c00141{height:76.552734px;}
.h1_c00141{height:77.288818px;}
.hc_c00141{height:78.024902px;}
.h7_c00141{height:78.760986px;}
.h5_c00141{height:80.969238px;}
.h9_c00141{height:81.533203px;}
.h8_c00141{height:83.015625px;}
.h0_c00141{height:1263.000000px;}
.w0_c00141{width:892.500000px;}
.x0_c00141{left:0.000000px;}
.x1b_c00141{left:97.199415px;}
.x1c_c00141{left:139.678500px;}
.x6_c00141{left:140.758920px;}
.x1_c00141{left:141.838950px;}
.xc_c00141{left:195.119085px;}
.x21_c00141{left:211.679100px;}
.x1f_c00141{left:252.719535px;}
.x22_c00141{left:257.759100px;}
.x20_c00141{left:270.359250px;}
.x23_c00141{left:280.078785px;}
.xe_c00141{left:321.478635px;}
.xf_c00141{left:337.679700px;}
.x24_c00141{left:374.040000px;}
.x17_c00141{left:379.438635px;}
.x25_c00141{left:392.759085px;}
.x18_c00141{left:394.919535px;}
.x10_c00141{left:430.559685px;}
.x1d_c00141{left:441.358665px;}
.x11_c00141{left:450.359850px;}
.x1e_c00141{left:454.679070px;}
.x19_c00141{left:517.678530px;}
.x12_c00141{left:529.919535px;}
.x1a_c00141{left:531.719100px;}
.x9_c00141{left:542.158770px;}
.x13_c00141{left:546.479685px;}
.x26_c00141{left:551.878320px;}
.xa_c00141{left:558.719100px;}
.x27_c00141{left:565.198785px;}
.x14_c00141{left:609.479235px;}
.x15_c00141{left:625.678530px;}
.x28_c00141{left:650.519670px;}
.x2_c00141{left:667.080000px;}
.x29_c00141{left:675.359250px;}
.x3_c00141{left:681.838950px;}
.x7_c00141{left:692.639700px;}
.x4_c00141{left:709.918350px;}
.x8_c00141{left:739.078770px;}
.xb_c00141{left:749.879520px;}
.x5_c00141{left:756.359250px;}
.x16_c00141{left:769.318815px;}
.xd_c00141{left:773.639655px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.lsf_c00141{letter-spacing:-8.582000pt;}
.ls15_c00141{letter-spacing:-7.266700pt;}
.lsc_c00141{letter-spacing:-6.601000pt;}
.ls13_c00141{letter-spacing:-5.943000pt;}
.ls6_c00141{letter-spacing:-5.285000pt;}
.ls7_c00141{letter-spacing:-4.619300pt;}
.lsd_c00141{letter-spacing:-4.466560pt;}
.lsb_c00141{letter-spacing:-3.961300pt;}
.ls8_c00141{letter-spacing:-3.304000pt;}
.ls5_c00141{letter-spacing:-2.639000pt;}
.lsa_c00141{letter-spacing:-2.520067pt;}
.ls2_c00141{letter-spacing:-1.981700pt;}
.ls4_c00141{letter-spacing:-1.323700pt;}
.ls12_c00141{letter-spacing:-0.692640pt;}
.ls3_c00141{letter-spacing:-0.658000pt;}
.ls9_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:0.658000pt;}
.ls11_c00141{letter-spacing:1.222267pt;}
.ls10_c00141{letter-spacing:1.981700pt;}
.ls14_c00141{letter-spacing:3.717067pt;}
.lse_c00141{letter-spacing:4.051020pt;}
.ls1_c00141{letter-spacing:11.886000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
._13_c00141{margin-left:-16.597555pt;}
._d_c00141{margin-left:-6.254791pt;}
._e_c00141{margin-left:-5.179842pt;}
._f_c00141{margin-left:-3.646326pt;}
._c_c00141{margin-left:-2.379511pt;}
._11_c00141{margin-left:-1.095711pt;}
._0_c00141{width:1.608204pt;}
._14_c00141{width:2.704100pt;}
._3_c00141{width:3.837757pt;}
._10_c00141{width:5.598851pt;}
._1_c00141{width:6.826413pt;}
._b_c00141{width:8.344277pt;}
._5_c00141{width:9.328623pt;}
._2_c00141{width:10.885053pt;}
._8_c00141{width:12.672034pt;}
._6_c00141{width:14.351849pt;}
._16_c00141{width:15.481332pt;}
._4_c00141{width:16.680604pt;}
._15_c00141{width:17.569657pt;}
._7_c00141{width:19.087613pt;}
._9_c00141{width:20.006700pt;}
._a_c00141{width:22.049974pt;}
._17_c00141{width:24.547349pt;}
._12_c00141{width:28.636604pt;}
.fs9_c00141{font-size:59.333333pt;}
.fs8_c00141{font-size:61.333333pt;}
.fs3_c00141{font-size:64.000000pt;}
.fs1_c00141{font-size:66.000000pt;}
.fs2_c00141{font-size:68.666667pt;}
.fs5_c00141{font-size:69.333333pt;}
.fs0_c00141{font-size:70.000000pt;}
.fsa_c00141{font-size:70.666667pt;}
.fs6_c00141{font-size:71.333333pt;}
.fs4_c00141{font-size:73.333333pt;}
.fs7_c00141{font-size:74.666667pt;}
.y0_c00141{bottom:0.000000pt;}
.y25_c00141{bottom:187.200440pt;}
.y24_c00141{bottom:214.398920pt;}
.y23_c00141{bottom:214.399693pt;}
.y21_c00141{bottom:240.957453pt;}
.y22_c00141{bottom:240.959453pt;}
.y20_c00141{bottom:293.758400pt;}
.y1f_c00141{bottom:320.318160pt;}
.y1e_c00141{bottom:346.239173pt;}
.y1c_c00141{bottom:373.118813pt;}
.y1d_c00141{bottom:373.119187pt;}
.y1b_c00141{bottom:426.878920pt;}
.y1a_c00141{bottom:453.120120pt;}
.y19_c00141{bottom:469.759320pt;}
.y18_c00141{bottom:480.000000pt;}
.y17_c00141{bottom:480.001347pt;}
.y16_c00141{bottom:532.480240pt;}
.y14_c00141{bottom:559.039120pt;}
.y15_c00141{bottom:559.040000pt;}
.y13_c00141{bottom:585.598880pt;}
.y12_c00141{bottom:638.720253pt;}
.y11_c00141{bottom:665.279293pt;}
.y10_c00141{bottom:665.280093pt;}
.yf_c00141{bottom:691.839840pt;}
.yd_c00141{bottom:719.038333pt;}
.ye_c00141{bottom:719.039067pt;}
.yc_c00141{bottom:771.839280pt;}
.yb_c00141{bottom:798.719160pt;}
.ya_c00141{bottom:798.719320pt;}
.y8_c00141{bottom:824.958827pt;}
.y9_c00141{bottom:824.958907pt;}
.y7_c00141{bottom:877.759760pt;}
.y6_c00141{bottom:904.960120pt;}
.y5_c00141{bottom:931.199707pt;}
.y4_c00141{bottom:931.200440pt;}
.y2_c00141{bottom:958.398200pt;}
.y3_c00141{bottom:958.398920pt;}
.y1_c00141{bottom:1011.199133pt;}
.hb_c00141{height:61.882812pt;}
.ha_c00141{height:63.968750pt;}
.h2_c00141{height:64.775391pt;}
.h4_c00141{height:66.750000pt;}
.h3_c00141{height:67.392578pt;}
.h6_c00141{height:68.046875pt;}
.h1_c00141{height:68.701172pt;}
.hc_c00141{height:69.355469pt;}
.h7_c00141{height:70.009766pt;}
.h5_c00141{height:71.972656pt;}
.h9_c00141{height:72.473958pt;}
.h8_c00141{height:73.791667pt;}
.h0_c00141{height:1122.666667pt;}
.w0_c00141{width:793.333333pt;}
.x0_c00141{left:0.000000pt;}
.x1b_c00141{left:86.399480pt;}
.x1c_c00141{left:124.158667pt;}
.x6_c00141{left:125.119040pt;}
.x1_c00141{left:126.079067pt;}
.xc_c00141{left:173.439187pt;}
.x21_c00141{left:188.159200pt;}
.x1f_c00141{left:224.639587pt;}
.x22_c00141{left:229.119200pt;}
.x20_c00141{left:240.319333pt;}
.x23_c00141{left:248.958920pt;}
.xe_c00141{left:285.758787pt;}
.xf_c00141{left:300.159733pt;}
.x24_c00141{left:332.480000pt;}
.x17_c00141{left:337.278787pt;}
.x25_c00141{left:349.119187pt;}
.x18_c00141{left:351.039587pt;}
.x10_c00141{left:382.719720pt;}
.x1d_c00141{left:392.318813pt;}
.x11_c00141{left:400.319867pt;}
.x1e_c00141{left:404.159173pt;}
.x19_c00141{left:460.158693pt;}
.x12_c00141{left:471.039587pt;}
.x1a_c00141{left:472.639200pt;}
.x9_c00141{left:481.918907pt;}
.x13_c00141{left:485.759720pt;}
.x26_c00141{left:490.558507pt;}
.xa_c00141{left:496.639200pt;}
.x27_c00141{left:502.398920pt;}
.x14_c00141{left:541.759320pt;}
.x15_c00141{left:556.158693pt;}
.x28_c00141{left:578.239707pt;}
.x2_c00141{left:592.960000pt;}
.x29_c00141{left:600.319333pt;}
.x3_c00141{left:606.079067pt;}
.x7_c00141{left:615.679733pt;}
.x4_c00141{left:631.038533pt;}
.x8_c00141{left:656.958907pt;}
.xb_c00141{left:666.559573pt;}
.x5_c00141{left:672.319333pt;}
.x16_c00141{left:683.838947pt;}
.xd_c00141{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c341ead4e13d59e89492fbca.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_7fdb3fef9ed632276b525f16.woff2')format("woff");}.ff2_c00142{font-family:ff2_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;}
.m4_c00142{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.lsd_c00142{letter-spacing:-6.228900px;}
.lsc_c00142{letter-spacing:-5.452110px;}
.ls5_c00142{letter-spacing:-5.440103px;}
.lsb_c00142{letter-spacing:-4.672890px;}
.ls12_c00142{letter-spacing:-4.502400px;}
.lsa_c00142{letter-spacing:-3.896100px;}
.lse_c00142{letter-spacing:-3.717900px;}
.ls1_c00142{letter-spacing:-3.118500px;}
.ls10_c00142{letter-spacing:-3.114675px;}
.ls6_c00142{letter-spacing:-2.331990px;}
.ls3_c00142{letter-spacing:-2.267213px;}
.lsf_c00142{letter-spacing:-1.569600px;}
.ls4_c00142{letter-spacing:-1.555200px;}
.ls11_c00142{letter-spacing:-0.831600px;}
.ls8_c00142{letter-spacing:-0.777600px;}
.ls9_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:2.331990px;}
.ls2_c00142{letter-spacing:2.549250px;}
.ls7_c00142{letter-spacing:3.864840px;}
.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;}
._1_c00142{margin-left:-3.149778px;}
._3_c00142{width:2.794749px;}
._9_c00142{width:4.904612px;}
._a_c00142{width:6.270958px;}
._0_c00142{width:7.446642px;}
._5_c00142{width:9.396312px;}
._2_c00142{width:11.129836px;}
._7_c00142{width:15.621473px;}
._6_c00142{width:17.459488px;}
._8_c00142{width:18.856738px;}
._4_c00142{width:20.800488px;}
.fc0_c00142{color:transparent;}
.fs1_c00142{font-size:77.250000px;}
.fs6_c00142{font-size:78.000000px;}
.fs2_c00142{font-size:78.750000px;}
.fs5_c00142{font-size:80.250000px;}
.fs0_c00142{font-size:81.000000px;}
.fs7_c00142{font-size:81.750000px;}
.fs4_c00142{font-size:84.000000px;}
.fs3_c00142{font-size:84.750000px;}
.y0_c00142{bottom:0.000000px;}
.y6_c00142{bottom:230.399850px;}
.y5_c00142{bottom:995.399235px;}
.y4_c00142{bottom:1078.199820px;}
.y3_c00142{bottom:1107.720150px;}
.y2_c00142{bottom:1107.720270px;}
.y1_c00142{bottom:1137.599025px;}
.h2_c00142{height:75.816650px;}
.h7_c00142{height:76.552734px;}
.h3_c00142{height:77.288818px;}
.h6_c00142{height:78.760986px;}
.h1_c00142{height:79.497070px;}
.h9_c00142{height:80.876953px;}
.h8_c00142{height:81.632812px;}
.ha_c00142{height:82.388672px;}
.h5_c00142{height:82.441406px;}
.h4_c00142{height:83.177490px;}
.hb_c00142{height:84.656250px;}
.h0_c00142{height:1263.000000px;}
.w0_c00142{width:892.500000px;}
.x0_c00142{left:0.000000px;}
.x13_c00142{left:111.599100px;}
.xd_c00142{left:115.199850px;}
.x1_c00142{left:136.799565px;}
.xe_c00142{left:174.598500px;}
.x14_c00142{left:175.679700px;}
.x2_c00142{left:186.839565px;}
.xf_c00142{left:204.838515px;}
.x3_c00142{left:224.279250px;}
.x9_c00142{left:244.079385px;}
.xa_c00142{left:261.719100px;}
.x4_c00142{left:288.359850px;}
.x10_c00142{left:309.598530px;}
.x11_c00142{left:334.078785px;}
.x5_c00142{left:347.399235px;}
.x12_c00142{left:361.439685px;}
.x6_c00142{left:367.199385px;}
.x7_c00142{left:494.638500px;}
.x8_c00142{left:518.759535px;}
.xb_c00142{left:658.078770px;}
.xc_c00142{left:676.799520px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.lsd_c00142{letter-spacing:-5.536800pt;}
.lsc_c00142{letter-spacing:-4.846320pt;}
.ls5_c00142{letter-spacing:-4.835647pt;}
.lsb_c00142{letter-spacing:-4.153680pt;}
.ls12_c00142{letter-spacing:-4.002133pt;}
.lsa_c00142{letter-spacing:-3.463200pt;}
.lse_c00142{letter-spacing:-3.304800pt;}
.ls1_c00142{letter-spacing:-2.772000pt;}
.ls10_c00142{letter-spacing:-2.768600pt;}
.ls6_c00142{letter-spacing:-2.072880pt;}
.ls3_c00142{letter-spacing:-2.015300pt;}
.lsf_c00142{letter-spacing:-1.395200pt;}
.ls4_c00142{letter-spacing:-1.382400pt;}
.ls11_c00142{letter-spacing:-0.739200pt;}
.ls8_c00142{letter-spacing:-0.691200pt;}
.ls9_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:2.072880pt;}
.ls2_c00142{letter-spacing:2.266000pt;}
.ls7_c00142{letter-spacing:3.435413pt;}
.ws0_c00142{word-spacing:0.000000pt;}
._1_c00142{margin-left:-2.799803pt;}
._3_c00142{width:2.484222pt;}
._9_c00142{width:4.359655pt;}
._a_c00142{width:5.574185pt;}
._0_c00142{width:6.619237pt;}
._5_c00142{width:8.352277pt;}
._2_c00142{width:9.893188pt;}
._7_c00142{width:13.885754pt;}
._6_c00142{width:15.519545pt;}
._8_c00142{width:16.761545pt;}
._4_c00142{width:18.489323pt;}
.fs1_c00142{font-size:68.666667pt;}
.fs6_c00142{font-size:69.333333pt;}
.fs2_c00142{font-size:70.000000pt;}
.fs5_c00142{font-size:71.333333pt;}
.fs0_c00142{font-size:72.000000pt;}
.fs7_c00142{font-size:72.666667pt;}
.fs4_c00142{font-size:74.666667pt;}
.fs3_c00142{font-size:75.333333pt;}
.y0_c00142{bottom:0.000000pt;}
.y6_c00142{bottom:204.799867pt;}
.y5_c00142{bottom:884.799320pt;}
.y4_c00142{bottom:958.399840pt;}
.y3_c00142{bottom:984.640133pt;}
.y2_c00142{bottom:984.640240pt;}
.y1_c00142{bottom:1011.199133pt;}
.h2_c00142{height:67.392578pt;}
.h7_c00142{height:68.046875pt;}
.h3_c00142{height:68.701172pt;}
.h6_c00142{height:70.009766pt;}
.h1_c00142{height:70.664062pt;}
.h9_c00142{height:71.890625pt;}
.h8_c00142{height:72.562500pt;}
.ha_c00142{height:73.234375pt;}
.h5_c00142{height:73.281250pt;}
.h4_c00142{height:73.935547pt;}
.hb_c00142{height:75.250000pt;}
.h0_c00142{height:1122.666667pt;}
.w0_c00142{width:793.333333pt;}
.x0_c00142{left:0.000000pt;}
.x13_c00142{left:99.199200pt;}
.xd_c00142{left:102.399867pt;}
.x1_c00142{left:121.599613pt;}
.xe_c00142{left:155.198667pt;}
.x14_c00142{left:156.159733pt;}
.x2_c00142{left:166.079613pt;}
.xf_c00142{left:182.078680pt;}
.x3_c00142{left:199.359333pt;}
.x9_c00142{left:216.959453pt;}
.xa_c00142{left:232.639200pt;}
.x4_c00142{left:256.319867pt;}
.x10_c00142{left:275.198693pt;}
.x11_c00142{left:296.958920pt;}
.x5_c00142{left:308.799320pt;}
.x12_c00142{left:321.279720pt;}
.x6_c00142{left:326.399453pt;}
.x7_c00142{left:439.678667pt;}
.x8_c00142{left:461.119587pt;}
.xb_c00142{left:584.958907pt;}
.xc_c00142{left:601.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e9a3e89c680e714cc89c9b5.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.364746;font-style:normal;font-weight:normal;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_aeb988ca890632176672370b.woff2')format("woff");}.ff3_c00143{font-family:ff3_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:ff4_c00143;src:url('chunks/assets/font_da53acb9a6b1ecbe27405693.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_327bfd10f4ba0a172b608145.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00143;src:url('chunks/assets/font_c94ea0eec8816351b902583f.woff2')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00143;src:url('chunks/assets/font_976c10860e06653785aaede0.woff2')format("woff");}.ff7_c00143{font-family:ff7_c00143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m20_c00143{transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.448276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448276,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.lsd_c00143{letter-spacing:-14.509200px;}
.ls9_c00143{letter-spacing:-13.570650px;}
.ls11_c00143{letter-spacing:-12.425288px;}
.lsc_c00143{letter-spacing:-12.226305px;}
.ls18_c00143{letter-spacing:-11.693655px;}
.ls1b_c00143{letter-spacing:-10.179495px;}
.ls17_c00143{letter-spacing:-9.271800px;}
.ls12_c00143{letter-spacing:-8.186303px;}
.lse_c00143{letter-spacing:-6.685875px;}
.ls13_c00143{letter-spacing:-6.380400px;}
.lsb_c00143{letter-spacing:-5.945625px;}
.ls5_c00143{letter-spacing:-5.196713px;}
.lsa_c00143{letter-spacing:-4.456463px;}
.ls8_c00143{letter-spacing:-3.717000px;}
.ls15_c00143{letter-spacing:-3.148200px;}
.ls4_c00143{letter-spacing:-2.968875px;}
.ls2_c00143{letter-spacing:-2.229413px;}
.ls1f_c00143{letter-spacing:-2.103750px;}
.ls1c_c00143{letter-spacing:-1.767150px;}
.ls6_c00143{letter-spacing:-1.489163px;}
.ls1a_c00143{letter-spacing:-0.785700px;}
.ls3_c00143{letter-spacing:-0.740250px;}
.ls7_c00143{letter-spacing:0.000000px;}
.ls19_c00143{letter-spacing:0.740250px;}
.ls16_c00143{letter-spacing:1.539000px;}
.ls1_c00143{letter-spacing:2.229413px;}
.ls0_c00143{letter-spacing:2.968875px;}
.ls1e_c00143{letter-spacing:3.726810px;}
.lsf_c00143{letter-spacing:4.794075px;}
.ls14_c00143{letter-spacing:6.696000px;}
.ls1d_c00143{letter-spacing:6.856980px;}
.ls10_c00143{letter-spacing:12.750000px;}
.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;}
._10_c00143{margin-left:-52.454662px;}
._17_c00143{margin-left:-46.594815px;}
._19_c00143{margin-left:-13.281775px;}
._1a_c00143{margin-left:-8.453864px;}
._18_c00143{margin-left:-5.332697px;}
._1b_c00143{margin-left:-3.902055px;}
._1c_c00143{margin-left:-2.662211px;}
._14_c00143{margin-left:-1.471585px;}
._0_c00143{width:1.218515px;}
._12_c00143{width:2.881225px;}
._1_c00143{width:4.867344px;}
._15_c00143{width:5.977868px;}
._d_c00143{width:7.241107px;}
._e_c00143{width:8.346074px;}
._13_c00143{width:9.857242px;}
._f_c00143{width:11.198369px;}
._11_c00143{width:12.801897px;}
._c_c00143{width:14.319217px;}
._b_c00143{width:15.827413px;}
._16_c00143{width:17.302281px;}
._1e_c00143{width:18.561880px;}
._a_c00143{width:20.220325px;}
._9_c00143{width:21.718685px;}
._7_c00143{width:22.924482px;}
._20_c00143{width:24.118450px;}
._2_c00143{width:25.218558px;}
._8_c00143{width:27.132555px;}
._6_c00143{width:28.814239px;}
._5_c00143{width:29.990214px;}
._3_c00143{width:32.390083px;}
._1d_c00143{width:33.588955px;}
._1f_c00143{width:35.229288px;}
._4_c00143{width:37.104103px;}
.fc0_c00143{color:transparent;}
.fsa_c00143{font-size:41.250000px;}
.fs9_c00143{font-size:43.500000px;}
.fsb_c00143{font-size:51.000000px;}
.fs10_c00143{font-size:70.500000px;}
.fsc_c00143{font-size:71.250000px;}
.fse_c00143{font-size:72.000000px;}
.fs11_c00143{font-size:74.250000px;}
.fsf_c00143{font-size:76.500000px;}
.fs6_c00143{font-size:78.000000px;}
.fs0_c00143{font-size:78.750000px;}
.fs2_c00143{font-size:79.500000px;}
.fs1_c00143{font-size:80.250000px;}
.fs7_c00143{font-size:81.000000px;}
.fs5_c00143{font-size:82.500000px;}
.fsd_c00143{font-size:84.000000px;}
.fs4_c00143{font-size:84.750000px;}
.fs3_c00143{font-size:86.250000px;}
.fs8_c00143{font-size:90.000000px;}
.y0_c00143{bottom:0.000000px;}
.y23_c00143{bottom:275.039340px;}
.y24_c00143{bottom:275.039385px;}
.y22_c00143{bottom:305.279250px;}
.y21_c00143{bottom:305.279415px;}
.y1f_c00143{bottom:334.798320px;}
.y20_c00143{bottom:334.798950px;}
.y1e_c00143{bottom:394.199385px;}
.y1d_c00143{bottom:425.159415px;}
.y1c_c00143{bottom:431.639100px;}
.y1b_c00143{bottom:484.198110px;}
.y1a_c00143{bottom:513.717630px;}
.y19_c00143{bottom:573.118695px;}
.y18_c00143{bottom:603.358605px;}
.y17_c00143{bottom:603.358635px;}
.y16_c00143{bottom:632.879970px;}
.y15_c00143{bottom:662.759085px;}
.y14_c00143{bottom:662.759970px;}
.y13_c00143{bottom:692.639700px;}
.y12_c00143{bottom:722.879520px;}
.y11_c00143{bottom:722.879655px;}
.y10_c00143{bottom:782.639100px;}
.yf_c00143{bottom:812.519715px;}
.ye_c00143{bottom:812.519760px;}
.yd_c00143{bottom:842.759670px;}
.yc_c00143{bottom:872.279205px;}
.yb_c00143{bottom:872.279520px;}
.ya_c00143{bottom:902.159250px;}
.y9_c00143{bottom:932.038965px;}
.y8_c00143{bottom:962.278755px;}
.y7_c00143{bottom:962.279595px;}
.y6_c00143{bottom:1022.399235px;}
.y5_c00143{bottom:1022.400300px;}
.y4_c00143{bottom:1051.919835px;}
.y2_c00143{bottom:1081.798740px;}
.y3_c00143{bottom:1081.799565px;}
.y1_c00143{bottom:1141.199805px;}
.hb_c00143{height:40.766602px;}
.ha_c00143{height:45.369141px;}
.hc_c00143{height:53.191406px;}
.h15_c00143{height:73.529297px;}
.hd_c00143{height:74.311523px;}
.h14_c00143{height:75.080566px;}
.h11_c00143{height:75.093750px;}
.h7_c00143{height:76.552734px;}
.h1_c00143{height:77.288818px;}
.h16_c00143{height:77.440430px;}
.h17_c00143{height:78.024902px;}
.h3_c00143{height:78.568359px;}
.hf_c00143{height:78.609375px;}
.h2_c00143{height:78.760986px;}
.h13_c00143{height:79.497070px;}
.h12_c00143{height:80.121094px;}
.he_c00143{height:80.876953px;}
.h6_c00143{height:80.969238px;}
.h10_c00143{height:83.015625px;}
.h5_c00143{height:83.177490px;}
.h9_c00143{height:83.756836px;}
.h4_c00143{height:86.923828px;}
.h8_c00143{height:93.867188px;}
.h0_c00143{height:1263.000000px;}
.w0_c00143{width:892.500000px;}
.x0_c00143{left:0.000000px;}
.x9_c00143{left:140.038395px;}
.x1_c00143{left:141.479715px;}
.x13_c00143{left:173.878350px;}
.x10_c00143{left:184.319850px;}
.x1b_c00143{left:195.120600px;}
.xa_c00143{left:210.238785px;}
.x1c_c00143{left:213.839535px;}
.xb_c00143{left:229.318800px;}
.x1d_c00143{left:244.799535px;}
.x1e_c00143{left:264.958950px;}
.x4_c00143{left:314.278800px;}
.x1f_c00143{left:327.599100px;}
.x5_c00143{left:335.159850px;}
.x20_c00143{left:349.918950px;}
.x17_c00143{left:364.679700px;}
.x21_c00143{left:369.359850px;}
.x31_c00143{left:380.158785px;}
.x18_c00143{left:381.239850px;}
.x22_c00143{left:408.599070px;}
.x23_c00143{left:431.279850px;}
.x11_c00143{left:446.759085px;}
.x6_c00143{left:451.439250px;}
.x29_c00143{left:456.839535px;}
.x12_c00143{left:461.878920px;}
.x7_c00143{left:467.279250px;}
.x2b_c00143{left:471.959385px;}
.x2a_c00143{left:482.758530px;}
.x2c_c00143{left:497.519070px;}
.x24_c00143{left:498.598530px;}
.xc_c00143{left:501.119985px;}
.x15_c00143{left:508.319820px;}
.xd_c00143{left:517.319235px;}
.x25_c00143{left:526.679670px;}
.x16_c00143{left:544.319235px;}
.x26_c00143{left:560.879520px;}
.xe_c00143{left:572.759535px;}
.xf_c00143{left:588.958920px;}
.x2_c00143{left:637.558635px;}
.x2d_c00143{left:657.358605px;}
.x3_c00143{left:658.439670px;}
.x2f_c00143{left:661.679670px;}
.x2e_c00143{left:678.958335px;}
.x27_c00143{left:680.039385px;}
.x30_c00143{left:683.638545px;}
.x28_c00143{left:707.039385px;}
.x19_c00143{left:718.199385px;}
.x1a_c00143{left:741.959385px;}
.x14_c00143{left:773.278755px;}
.x8_c00143{left:774.359805px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.lsd_c00143{letter-spacing:-12.897067pt;}
.ls9_c00143{letter-spacing:-12.062800pt;}
.ls11_c00143{letter-spacing:-11.044700pt;}
.lsc_c00143{letter-spacing:-10.867827pt;}
.ls18_c00143{letter-spacing:-10.394360pt;}
.ls1b_c00143{letter-spacing:-9.048440pt;}
.ls17_c00143{letter-spacing:-8.241600pt;}
.ls12_c00143{letter-spacing:-7.276713pt;}
.lse_c00143{letter-spacing:-5.943000pt;}
.ls13_c00143{letter-spacing:-5.671467pt;}
.lsb_c00143{letter-spacing:-5.285000pt;}
.ls5_c00143{letter-spacing:-4.619300pt;}
.lsa_c00143{letter-spacing:-3.961300pt;}
.ls8_c00143{letter-spacing:-3.304000pt;}
.ls15_c00143{letter-spacing:-2.798400pt;}
.ls4_c00143{letter-spacing:-2.639000pt;}
.ls2_c00143{letter-spacing:-1.981700pt;}
.ls1f_c00143{letter-spacing:-1.870000pt;}
.ls1c_c00143{letter-spacing:-1.570800pt;}
.ls6_c00143{letter-spacing:-1.323700pt;}
.ls1a_c00143{letter-spacing:-0.698400pt;}
.ls3_c00143{letter-spacing:-0.658000pt;}
.ls7_c00143{letter-spacing:0.000000pt;}
.ls19_c00143{letter-spacing:0.658000pt;}
.ls16_c00143{letter-spacing:1.368000pt;}
.ls1_c00143{letter-spacing:1.981700pt;}
.ls0_c00143{letter-spacing:2.639000pt;}
.ls1e_c00143{letter-spacing:3.312720pt;}
.lsf_c00143{letter-spacing:4.261400pt;}
.ls14_c00143{letter-spacing:5.952000pt;}
.ls1d_c00143{letter-spacing:6.095093pt;}
.ls10_c00143{letter-spacing:11.333333pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._10_c00143{margin-left:-46.626366pt;}
._17_c00143{margin-left:-41.417613pt;}
._19_c00143{margin-left:-11.806022pt;}
._1a_c00143{margin-left:-7.514546pt;}
._18_c00143{margin-left:-4.740175pt;}
._1b_c00143{margin-left:-3.468494pt;}
._1c_c00143{margin-left:-2.366409pt;}
._14_c00143{margin-left:-1.308075pt;}
._0_c00143{width:1.083125pt;}
._12_c00143{width:2.561089pt;}
._1_c00143{width:4.326528pt;}
._15_c00143{width:5.313660pt;}
._d_c00143{width:6.436540pt;}
._e_c00143{width:7.418732pt;}
._13_c00143{width:8.761992pt;}
._f_c00143{width:9.954106pt;}
._11_c00143{width:11.379464pt;}
._c_c00143{width:12.728192pt;}
._b_c00143{width:14.068811pt;}
._16_c00143{width:15.379806pt;}
._1e_c00143{width:16.499449pt;}
._a_c00143{width:17.973623pt;}
._9_c00143{width:19.305498pt;}
._7_c00143{width:20.377317pt;}
._20_c00143{width:21.438623pt;}
._2_c00143{width:22.416496pt;}
._8_c00143{width:24.117826pt;}
._6_c00143{width:25.612657pt;}
._5_c00143{width:26.657968pt;}
._3_c00143{width:28.791185pt;}
._1d_c00143{width:29.856849pt;}
._1f_c00143{width:31.314923pt;}
._4_c00143{width:32.981425pt;}
.fsa_c00143{font-size:36.666667pt;}
.fs9_c00143{font-size:38.666667pt;}
.fsb_c00143{font-size:45.333333pt;}
.fs10_c00143{font-size:62.666667pt;}
.fsc_c00143{font-size:63.333333pt;}
.fse_c00143{font-size:64.000000pt;}
.fs11_c00143{font-size:66.000000pt;}
.fsf_c00143{font-size:68.000000pt;}
.fs6_c00143{font-size:69.333333pt;}
.fs0_c00143{font-size:70.000000pt;}
.fs2_c00143{font-size:70.666667pt;}
.fs1_c00143{font-size:71.333333pt;}
.fs7_c00143{font-size:72.000000pt;}
.fs5_c00143{font-size:73.333333pt;}
.fsd_c00143{font-size:74.666667pt;}
.fs4_c00143{font-size:75.333333pt;}
.fs3_c00143{font-size:76.666667pt;}
.fs8_c00143{font-size:80.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y23_c00143{bottom:244.479413pt;}
.y24_c00143{bottom:244.479453pt;}
.y22_c00143{bottom:271.359333pt;}
.y21_c00143{bottom:271.359480pt;}
.y1f_c00143{bottom:297.598507pt;}
.y20_c00143{bottom:297.599067pt;}
.y1e_c00143{bottom:350.399453pt;}
.y1d_c00143{bottom:377.919480pt;}
.y1c_c00143{bottom:383.679200pt;}
.y1b_c00143{bottom:430.398320pt;}
.y1a_c00143{bottom:456.637893pt;}
.y19_c00143{bottom:509.438840pt;}
.y18_c00143{bottom:536.318760pt;}
.y17_c00143{bottom:536.318787pt;}
.y16_c00143{bottom:562.559973pt;}
.y15_c00143{bottom:589.119187pt;}
.y14_c00143{bottom:589.119973pt;}
.y13_c00143{bottom:615.679733pt;}
.y12_c00143{bottom:642.559573pt;}
.y11_c00143{bottom:642.559693pt;}
.y10_c00143{bottom:695.679200pt;}
.yf_c00143{bottom:722.239747pt;}
.ye_c00143{bottom:722.239787pt;}
.yd_c00143{bottom:749.119707pt;}
.yc_c00143{bottom:775.359293pt;}
.yb_c00143{bottom:775.359573pt;}
.ya_c00143{bottom:801.919333pt;}
.y9_c00143{bottom:828.479080pt;}
.y8_c00143{bottom:855.358893pt;}
.y7_c00143{bottom:855.359640pt;}
.y6_c00143{bottom:908.799320pt;}
.y5_c00143{bottom:908.800267pt;}
.y4_c00143{bottom:935.039853pt;}
.y2_c00143{bottom:961.598880pt;}
.y3_c00143{bottom:961.599613pt;}
.y1_c00143{bottom:1014.399827pt;}
.hb_c00143{height:36.236979pt;}
.ha_c00143{height:40.328125pt;}
.hc_c00143{height:47.281250pt;}
.h15_c00143{height:65.359375pt;}
.hd_c00143{height:66.054688pt;}
.h14_c00143{height:66.738281pt;}
.h11_c00143{height:66.750000pt;}
.h7_c00143{height:68.046875pt;}
.h1_c00143{height:68.701172pt;}
.h16_c00143{height:68.835938pt;}
.h17_c00143{height:69.355469pt;}
.h3_c00143{height:69.838542pt;}
.hf_c00143{height:69.875000pt;}
.h2_c00143{height:70.009766pt;}
.h13_c00143{height:70.664062pt;}
.h12_c00143{height:71.218750pt;}
.he_c00143{height:71.890625pt;}
.h6_c00143{height:71.972656pt;}
.h10_c00143{height:73.791667pt;}
.h5_c00143{height:73.935547pt;}
.h9_c00143{height:74.450521pt;}
.h4_c00143{height:77.265625pt;}
.h8_c00143{height:83.437500pt;}
.h0_c00143{height:1122.666667pt;}
.w0_c00143{width:793.333333pt;}
.x0_c00143{left:0.000000pt;}
.x9_c00143{left:124.478573pt;}
.x1_c00143{left:125.759747pt;}
.x13_c00143{left:154.558533pt;}
.x10_c00143{left:163.839867pt;}
.x1b_c00143{left:173.440533pt;}
.xa_c00143{left:186.878920pt;}
.x1c_c00143{left:190.079587pt;}
.xb_c00143{left:203.838933pt;}
.x1d_c00143{left:217.599587pt;}
.x1e_c00143{left:235.519067pt;}
.x4_c00143{left:279.358933pt;}
.x1f_c00143{left:291.199200pt;}
.x5_c00143{left:297.919867pt;}
.x20_c00143{left:311.039067pt;}
.x17_c00143{left:324.159733pt;}
.x21_c00143{left:328.319867pt;}
.x31_c00143{left:337.918920pt;}
.x18_c00143{left:338.879867pt;}
.x22_c00143{left:363.199173pt;}
.x23_c00143{left:383.359867pt;}
.x11_c00143{left:397.119187pt;}
.x6_c00143{left:401.279333pt;}
.x29_c00143{left:406.079587pt;}
.x12_c00143{left:410.559040pt;}
.x7_c00143{left:415.359333pt;}
.x2b_c00143{left:419.519453pt;}
.x2a_c00143{left:429.118693pt;}
.x2c_c00143{left:442.239173pt;}
.x24_c00143{left:443.198693pt;}
.xc_c00143{left:445.439987pt;}
.x15_c00143{left:451.839840pt;}
.xd_c00143{left:459.839320pt;}
.x25_c00143{left:468.159707pt;}
.x16_c00143{left:483.839320pt;}
.x26_c00143{left:498.559573pt;}
.xe_c00143{left:509.119587pt;}
.xf_c00143{left:523.519040pt;}
.x2_c00143{left:566.718787pt;}
.x2d_c00143{left:584.318760pt;}
.x3_c00143{left:585.279707pt;}
.x2f_c00143{left:588.159707pt;}
.x2e_c00143{left:603.518520pt;}
.x27_c00143{left:604.479453pt;}
.x30_c00143{left:607.678707pt;}
.x28_c00143{left:628.479453pt;}
.x19_c00143{left:638.399453pt;}
.x1a_c00143{left:659.519453pt;}
.x14_c00143{left:687.358893pt;}
.x8_c00143{left:688.319827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b886697caff6ba077980f9a1.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.364746;font-style:normal;font-weight:normal;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_07a5c970b3985eb93df0a148.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_0cbdecac3be9419a04dda75e.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_0d9d1c80505ccf35af9fdbac.woff2')format("woff");}.ff4_c00144{font-family:ff4_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:ff5_c00144;src:url('chunks/assets/font_1ec94eab79cafb195fb64abf.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00144;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00144{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m21_c00144{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m24_c00144{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m20_c00144{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m0_c00144{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326972,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.lsc_c00144{letter-spacing:-13.877775px;}
.ls14_c00144{letter-spacing:-12.749625px;}
.ls9_c00144{letter-spacing:-11.563425px;}
.ls23_c00144{letter-spacing:-10.128825px;}
.lsb_c00144{letter-spacing:-10.024133px;}
.ls22_c00144{letter-spacing:-9.582075px;}
.ls21_c00144{letter-spacing:-8.914500px;}
.ls1c_c00144{letter-spacing:-8.483175px;}
.ls20_c00144{letter-spacing:-8.175038px;}
.ls13_c00144{letter-spacing:-7.576200px;}
.ls27_c00144{letter-spacing:-6.953850px;}
.ls10_c00144{letter-spacing:-6.685875px;}
.ls0_c00144{letter-spacing:-6.281100px;}
.ls17_c00144{letter-spacing:-6.181200px;}
.lsd_c00144{letter-spacing:-5.945625px;}
.ls24_c00144{letter-spacing:-5.942408px;}
.ls7_c00144{letter-spacing:-5.196713px;}
.ls6_c00144{letter-spacing:-4.461900px;}
.ls1_c00144{letter-spacing:-4.456463px;}
.lse_c00144{letter-spacing:-4.334498px;}
.lsf_c00144{letter-spacing:-4.333500px;}
.ls1f_c00144{letter-spacing:-4.282500px;}
.lsa_c00144{letter-spacing:-3.717000px;}
.ls15_c00144{letter-spacing:-3.121200px;}
.ls25_c00144{letter-spacing:-3.000375px;}
.ls3_c00144{letter-spacing:-2.968875px;}
.ls1a_c00144{letter-spacing:-2.867288px;}
.ls1e_c00144{letter-spacing:-2.337233px;}
.ls2_c00144{letter-spacing:-2.229413px;}
.ls29_c00144{letter-spacing:-2.187135px;}
.ls1b_c00144{letter-spacing:-2.079000px;}
.ls19_c00144{letter-spacing:-1.541505px;}
.ls28_c00144{letter-spacing:-1.530323px;}
.ls5_c00144{letter-spacing:-1.489163px;}
.ls4_c00144{letter-spacing:-0.740250px;}
.ls8_c00144{letter-spacing:0.000000px;}
.ls1d_c00144{letter-spacing:1.560450px;}
.ls12_c00144{letter-spacing:1.606800px;}
.ls26_c00144{letter-spacing:4.514805px;}
.ls18_c00144{letter-spacing:6.685875px;}
.ls16_c00144{letter-spacing:13.002600px;}
.ls11_c00144{letter-spacing:17.054550px;}
.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;}
._c_c00144{margin-left:-5.142628px;}
._6_c00144{margin-left:-2.844925px;}
._7_c00144{margin-left:-1.272630px;}
._3_c00144{width:2.050992px;}
._14_c00144{width:3.090774px;}
._0_c00144{width:4.300760px;}
._1_c00144{width:6.279168px;}
._2_c00144{width:7.496673px;}
._15_c00144{width:8.586543px;}
._a_c00144{width:9.793855px;}
._5_c00144{width:11.430711px;}
._b_c00144{width:13.434691px;}
._d_c00144{width:14.840571px;}
._4_c00144{width:16.221564px;}
._13_c00144{width:18.349760px;}
._9_c00144{width:19.842266px;}
._8_c00144{width:21.632714px;}
._f_c00144{width:22.827575px;}
._16_c00144{width:25.670420px;}
._12_c00144{width:30.059365px;}
._10_c00144{width:31.328682px;}
._e_c00144{width:32.820281px;}
._11_c00144{width:37.296059px;}
._17_c00144{width:39.439189px;}
.fc0_c00144{color:transparent;}
.fs9_c00144{font-size:40.500000px;}
.fsd_c00144{font-size:51.000000px;}
.fsa_c00144{font-size:69.000000px;}
.fsf_c00144{font-size:74.250000px;}
.fs11_c00144{font-size:75.000000px;}
.fs12_c00144{font-size:75.750000px;}
.fsc_c00144{font-size:76.500000px;}
.fs6_c00144{font-size:77.250000px;}
.fs7_c00144{font-size:78.000000px;}
.fs1_c00144{font-size:78.750000px;}
.fse_c00144{font-size:79.500000px;}
.fs2_c00144{font-size:80.250000px;}
.fs10_c00144{font-size:81.750000px;}
.fs3_c00144{font-size:82.500000px;}
.fs4_c00144{font-size:83.250000px;}
.fs5_c00144{font-size:84.000000px;}
.fs8_c00144{font-size:87.000000px;}
.fs0_c00144{font-size:90.000000px;}
.fsb_c00144{font-size:294.750000px;}
.y0_c00144{bottom:0.000000px;}
.y2a_c00144{bottom:188.640495px;}
.y2b_c00144{bottom:188.640750px;}
.y29_c00144{bottom:217.799535px;}
.y28_c00144{bottom:217.799655px;}
.y27_c00144{bottom:277.200720px;}
.y26_c00144{bottom:307.080435px;}
.y25_c00144{bottom:307.080615px;}
.y24_c00144{bottom:336.600150px;}
.y23_c00144{bottom:336.600405px;}
.y22_c00144{bottom:366.840315px;}
.y20_c00144{bottom:396.358905px;}
.y21_c00144{bottom:396.359850px;}
.y1f_c00144{bottom:456.839040px;}
.y1e_c00144{bottom:487.081050px;}
.y1d_c00144{bottom:487.081185px;}
.y1c_c00144{bottom:516.600720px;}
.y1b_c00144{bottom:531.720750px;}
.y19_c00144{bottom:546.119655px;}
.y1a_c00144{bottom:546.120435px;}
.y17_c00144{bottom:605.520105px;}
.y18_c00144{bottom:605.520720px;}
.y15_c00144{bottom:635.399775px;}
.y16_c00144{bottom:635.399820px;}
.y14_c00144{bottom:665.639700px;}
.y12_c00144{bottom:695.520225px;}
.y13_c00144{bottom:695.520270px;}
.y11_c00144{bottom:725.760135px;}
.y10_c00144{bottom:755.279850px;}
.yf_c00144{bottom:761.039385px;}
.ye_c00144{bottom:784.799565px;}
.yd_c00144{bottom:784.799790px;}
.yc_c00144{bottom:845.640105px;}
.yb_c00144{bottom:845.640285px;}
.ya_c00144{bottom:875.159820px;}
.y9_c00144{bottom:875.159955px;}
.y8_c00144{bottom:905.399865px;}
.y7_c00144{bottom:905.399985px;}
.y6_c00144{bottom:964.440855px;}
.y4_c00144{bottom:994.319775px;}
.y5_c00144{bottom:994.319820px;}
.y2_c00144{bottom:1024.559415px;}
.y3_c00144{bottom:1024.559685px;}
.y1_c00144{bottom:1144.080420px;}
.ha_c00144{height:42.240234px;}
.h11_c00144{height:53.191406px;}
.hc_c00144{height:71.964844px;}
.h13_c00144{height:72.872314px;}
.h16_c00144{height:73.608398px;}
.h1a_c00144{height:75.080566px;}
.h7_c00144{height:75.816650px;}
.h19_c00144{height:76.341797px;}
.h8_c00144{height:76.552734px;}
.hf_c00144{height:77.097656px;}
.h2_c00144{height:77.288818px;}
.he_c00144{height:77.827148px;}
.hb_c00144{height:77.853516px;}
.h18_c00144{height:78.024902px;}
.h10_c00144{height:78.609375px;}
.h3_c00144{height:78.760986px;}
.h12_c00144{height:80.121094px;}
.h15_c00144{height:80.233154px;}
.h14_c00144{height:80.791992px;}
.h4_c00144{height:80.969238px;}
.h17_c00144{height:81.705322px;}
.h5_c00144{height:82.274414px;}
.h6_c00144{height:82.441406px;}
.h9_c00144{height:85.385742px;}
.h1_c00144{height:88.945312px;}
.hd_c00144{height:307.415039px;}
.h0_c00144{height:1263.000000px;}
.w0_c00144{width:892.500000px;}
.x0_c00144{left:0.000000px;}
.x33_c00144{left:98.998950px;}
.xf_c00144{left:141.481110px;}
.x1_c00144{left:142.918350px;}
.x26_c00144{left:161.639100px;}
.x1c_c00144{left:164.519685px;}
.x2_c00144{left:191.158785px;}
.x27_c00144{left:195.479685px;}
.x1d_c00144{left:224.279250px;}
.x36_c00144{left:236.879535px;}
.xb_c00144{left:243.359250px;}
.x42_c00144{left:244.438635px;}
.x1e_c00144{left:255.239250px;}
.x37_c00144{left:256.318800px;}
.xc_c00144{left:257.759100px;}
.x17_c00144{left:269.639100px;}
.x43_c00144{left:272.158785px;}
.x40_c00144{left:274.319250px;}
.xd_c00144{left:285.479235px;}
.x1f_c00144{left:287.639700px;}
.x41_c00144{left:290.879535px;}
.x2d_c00144{left:301.678500px;}
.x3f_c00144{left:302.759535px;}
.xe_c00144{left:318.958950px;}
.x2e_c00144{left:326.519685px;}
.x2f_c00144{left:341.278800px;}
.x3b_c00144{left:363.239250px;}
.x30_c00144{left:365.399850px;}
.x3c_c00144{left:383.398635px;}
.x20_c00144{left:388.078815px;}
.x2b_c00144{left:394.558635px;}
.x3_c00144{left:404.639100px;}
.x2c_c00144{left:408.599070px;}
.x21_c00144{left:418.318770px;}
.x4_c00144{left:438.118785px;}
.x38_c00144{left:448.199385px;}
.x22_c00144{left:496.798920px;}
.x13_c00144{left:507.599670px;}
.x34_c00144{left:511.918950px;}
.x3d_c00144{left:517.678530px;}
.x44_c00144{left:525.959385px;}
.x35_c00144{left:534.958920px;}
.x15_c00144{left:539.639100px;}
.x3e_c00144{left:543.599070px;}
.x5_c00144{left:553.318770px;}
.x16_c00144{left:554.759085px;}
.x18_c00144{left:557.998950px;}
.x6_c00144{left:568.079400px;}
.x14_c00144{left:573.118785px;}
.x19_c00144{left:584.639700px;}
.x39_c00144{left:588.238770px;}
.x7_c00144{left:595.079400px;}
.x23_c00144{left:615.238770px;}
.x3a_c00144{left:626.398635px;}
.x1a_c00144{left:634.679670px;}
.x10_c00144{left:636.838530px;}
.x24_c00144{left:641.518620px;}
.x1b_c00144{left:649.799520px;}
.x8_c00144{left:662.399820px;}
.x9_c00144{left:687.598530px;}
.x11_c00144{left:708.479685px;}
.x25_c00144{left:710.638545px;}
.x28_c00144{left:718.919535px;}
.x12_c00144{left:723.238770px;}
.x29_c00144{left:738.719520px;}
.x31_c00144{left:748.798560px;}
.x45_c00144{left:757.438620px;}
.x32_c00144{left:764.279250px;}
.xa_c00144{left:766.798920px;}
.x2a_c00144{left:774.719055px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.lsc_c00144{letter-spacing:-12.335800pt;}
.ls14_c00144{letter-spacing:-11.333000pt;}
.ls9_c00144{letter-spacing:-10.278600pt;}
.ls23_c00144{letter-spacing:-9.003400pt;}
.lsb_c00144{letter-spacing:-8.910340pt;}
.ls22_c00144{letter-spacing:-8.517400pt;}
.ls21_c00144{letter-spacing:-7.924000pt;}
.ls1c_c00144{letter-spacing:-7.540600pt;}
.ls20_c00144{letter-spacing:-7.266700pt;}
.ls13_c00144{letter-spacing:-6.734400pt;}
.ls27_c00144{letter-spacing:-6.181200pt;}
.ls10_c00144{letter-spacing:-5.943000pt;}
.ls0_c00144{letter-spacing:-5.583200pt;}
.ls17_c00144{letter-spacing:-5.494400pt;}
.lsd_c00144{letter-spacing:-5.285000pt;}
.ls24_c00144{letter-spacing:-5.282140pt;}
.ls7_c00144{letter-spacing:-4.619300pt;}
.ls6_c00144{letter-spacing:-3.966133pt;}
.ls1_c00144{letter-spacing:-3.961300pt;}
.lse_c00144{letter-spacing:-3.852887pt;}
.lsf_c00144{letter-spacing:-3.852000pt;}
.ls1f_c00144{letter-spacing:-3.806667pt;}
.lsa_c00144{letter-spacing:-3.304000pt;}
.ls15_c00144{letter-spacing:-2.774400pt;}
.ls25_c00144{letter-spacing:-2.667000pt;}
.ls3_c00144{letter-spacing:-2.639000pt;}
.ls1a_c00144{letter-spacing:-2.548700pt;}
.ls1e_c00144{letter-spacing:-2.077540pt;}
.ls2_c00144{letter-spacing:-1.981700pt;}
.ls29_c00144{letter-spacing:-1.944120pt;}
.ls1b_c00144{letter-spacing:-1.848000pt;}
.ls19_c00144{letter-spacing:-1.370227pt;}
.ls28_c00144{letter-spacing:-1.360287pt;}
.ls5_c00144{letter-spacing:-1.323700pt;}
.ls4_c00144{letter-spacing:-0.658000pt;}
.ls8_c00144{letter-spacing:0.000000pt;}
.ls1d_c00144{letter-spacing:1.387067pt;}
.ls12_c00144{letter-spacing:1.428267pt;}
.ls26_c00144{letter-spacing:4.013160pt;}
.ls18_c00144{letter-spacing:5.943000pt;}
.ls16_c00144{letter-spacing:11.557867pt;}
.ls11_c00144{letter-spacing:15.159600pt;}
.ws0_c00144{word-spacing:0.000000pt;}
._c_c00144{margin-left:-4.571225pt;}
._6_c00144{margin-left:-2.528823pt;}
._7_c00144{margin-left:-1.131226pt;}
._3_c00144{width:1.823104pt;}
._14_c00144{width:2.747355pt;}
._0_c00144{width:3.822898pt;}
._1_c00144{width:5.581483pt;}
._2_c00144{width:6.663709pt;}
._15_c00144{width:7.632483pt;}
._a_c00144{width:8.705649pt;}
._5_c00144{width:10.160632pt;}
._b_c00144{width:11.941947pt;}
._d_c00144{width:13.191619pt;}
._4_c00144{width:14.419168pt;}
._13_c00144{width:16.310898pt;}
._9_c00144{width:17.637570pt;}
._8_c00144{width:19.229079pt;}
._f_c00144{width:20.291177pt;}
._16_c00144{width:22.818151pt;}
._12_c00144{width:26.719436pt;}
._10_c00144{width:27.847717pt;}
._e_c00144{width:29.173583pt;}
._11_c00144{width:33.152053pt;}
._17_c00144{width:35.057057pt;}
.fs9_c00144{font-size:36.000000pt;}
.fsd_c00144{font-size:45.333333pt;}
.fsa_c00144{font-size:61.333333pt;}
.fsf_c00144{font-size:66.000000pt;}
.fs11_c00144{font-size:66.666667pt;}
.fs12_c00144{font-size:67.333333pt;}
.fsc_c00144{font-size:68.000000pt;}
.fs6_c00144{font-size:68.666667pt;}
.fs7_c00144{font-size:69.333333pt;}
.fs1_c00144{font-size:70.000000pt;}
.fse_c00144{font-size:70.666667pt;}
.fs2_c00144{font-size:71.333333pt;}
.fs10_c00144{font-size:72.666667pt;}
.fs3_c00144{font-size:73.333333pt;}
.fs4_c00144{font-size:74.000000pt;}
.fs5_c00144{font-size:74.666667pt;}
.fs8_c00144{font-size:77.333333pt;}
.fs0_c00144{font-size:80.000000pt;}
.fsb_c00144{font-size:262.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y2a_c00144{bottom:167.680440pt;}
.y2b_c00144{bottom:167.680667pt;}
.y29_c00144{bottom:193.599587pt;}
.y28_c00144{bottom:193.599693pt;}
.y27_c00144{bottom:246.400640pt;}
.y26_c00144{bottom:272.960387pt;}
.y25_c00144{bottom:272.960547pt;}
.y24_c00144{bottom:299.200133pt;}
.y23_c00144{bottom:299.200360pt;}
.y22_c00144{bottom:326.080280pt;}
.y20_c00144{bottom:352.319027pt;}
.y21_c00144{bottom:352.319867pt;}
.y1f_c00144{bottom:406.079147pt;}
.y1e_c00144{bottom:432.960933pt;}
.y1d_c00144{bottom:432.961053pt;}
.y1c_c00144{bottom:459.200640pt;}
.y1b_c00144{bottom:472.640667pt;}
.y19_c00144{bottom:485.439693pt;}
.y1a_c00144{bottom:485.440387pt;}
.y17_c00144{bottom:538.240093pt;}
.y18_c00144{bottom:538.240640pt;}
.y15_c00144{bottom:564.799800pt;}
.y16_c00144{bottom:564.799840pt;}
.y14_c00144{bottom:591.679733pt;}
.y12_c00144{bottom:618.240200pt;}
.y13_c00144{bottom:618.240240pt;}
.y11_c00144{bottom:645.120120pt;}
.y10_c00144{bottom:671.359867pt;}
.yf_c00144{bottom:676.479453pt;}
.ye_c00144{bottom:697.599613pt;}
.yd_c00144{bottom:697.599813pt;}
.yc_c00144{bottom:751.680093pt;}
.yb_c00144{bottom:751.680253pt;}
.ya_c00144{bottom:777.919840pt;}
.y9_c00144{bottom:777.919960pt;}
.y8_c00144{bottom:804.799880pt;}
.y7_c00144{bottom:804.799987pt;}
.y6_c00144{bottom:857.280760pt;}
.y4_c00144{bottom:883.839800pt;}
.y5_c00144{bottom:883.839840pt;}
.y2_c00144{bottom:910.719480pt;}
.y3_c00144{bottom:910.719720pt;}
.y1_c00144{bottom:1016.960373pt;}
.ha_c00144{height:37.546875pt;}
.h11_c00144{height:47.281250pt;}
.hc_c00144{height:63.968750pt;}
.h13_c00144{height:64.775391pt;}
.h16_c00144{height:65.429688pt;}
.h1a_c00144{height:66.738281pt;}
.h7_c00144{height:67.392578pt;}
.h19_c00144{height:67.859375pt;}
.h8_c00144{height:68.046875pt;}
.hf_c00144{height:68.531250pt;}
.h2_c00144{height:68.701172pt;}
.he_c00144{height:69.179688pt;}
.hb_c00144{height:69.203125pt;}
.h18_c00144{height:69.355469pt;}
.h10_c00144{height:69.875000pt;}
.h3_c00144{height:70.009766pt;}
.h12_c00144{height:71.218750pt;}
.h15_c00144{height:71.318359pt;}
.h14_c00144{height:71.815104pt;}
.h4_c00144{height:71.972656pt;}
.h17_c00144{height:72.626953pt;}
.h5_c00144{height:73.132813pt;}
.h6_c00144{height:73.281250pt;}
.h9_c00144{height:75.898438pt;}
.h1_c00144{height:79.062500pt;}
.hd_c00144{height:273.257813pt;}
.h0_c00144{height:1122.666667pt;}
.w0_c00144{width:793.333333pt;}
.x0_c00144{left:0.000000pt;}
.x33_c00144{left:87.999067pt;}
.xf_c00144{left:125.760987pt;}
.x1_c00144{left:127.038533pt;}
.x26_c00144{left:143.679200pt;}
.x1c_c00144{left:146.239720pt;}
.x2_c00144{left:169.918920pt;}
.x27_c00144{left:173.759720pt;}
.x1d_c00144{left:199.359333pt;}
.x36_c00144{left:210.559587pt;}
.xb_c00144{left:216.319333pt;}
.x42_c00144{left:217.278787pt;}
.x1e_c00144{left:226.879333pt;}
.x37_c00144{left:227.838933pt;}
.xc_c00144{left:229.119200pt;}
.x17_c00144{left:239.679200pt;}
.x43_c00144{left:241.918920pt;}
.x40_c00144{left:243.839333pt;}
.xd_c00144{left:253.759320pt;}
.x1f_c00144{left:255.679733pt;}
.x41_c00144{left:258.559587pt;}
.x2d_c00144{left:268.158667pt;}
.x3f_c00144{left:269.119587pt;}
.xe_c00144{left:283.519067pt;}
.x2e_c00144{left:290.239720pt;}
.x2f_c00144{left:303.358933pt;}
.x3b_c00144{left:322.879333pt;}
.x30_c00144{left:324.799867pt;}
.x3c_c00144{left:340.798787pt;}
.x20_c00144{left:344.958947pt;}
.x2b_c00144{left:350.718787pt;}
.x3_c00144{left:359.679200pt;}
.x2c_c00144{left:363.199173pt;}
.x21_c00144{left:371.838907pt;}
.x4_c00144{left:389.438920pt;}
.x38_c00144{left:398.399453pt;}
.x22_c00144{left:441.599040pt;}
.x13_c00144{left:451.199707pt;}
.x34_c00144{left:455.039067pt;}
.x3d_c00144{left:460.158693pt;}
.x44_c00144{left:467.519453pt;}
.x35_c00144{left:475.519040pt;}
.x15_c00144{left:479.679200pt;}
.x3e_c00144{left:483.199173pt;}
.x5_c00144{left:491.838907pt;}
.x16_c00144{left:493.119187pt;}
.x18_c00144{left:495.999067pt;}
.x6_c00144{left:504.959467pt;}
.x14_c00144{left:509.438920pt;}
.x19_c00144{left:519.679733pt;}
.x39_c00144{left:522.878907pt;}
.x7_c00144{left:528.959467pt;}
.x23_c00144{left:546.878907pt;}
.x3a_c00144{left:556.798787pt;}
.x1a_c00144{left:564.159707pt;}
.x10_c00144{left:566.078693pt;}
.x24_c00144{left:570.238773pt;}
.x1b_c00144{left:577.599573pt;}
.x8_c00144{left:588.799840pt;}
.x9_c00144{left:611.198693pt;}
.x11_c00144{left:629.759720pt;}
.x25_c00144{left:631.678707pt;}
.x28_c00144{left:639.039587pt;}
.x12_c00144{left:642.878907pt;}
.x29_c00144{left:656.639573pt;}
.x31_c00144{left:665.598720pt;}
.x45_c00144{left:673.278773pt;}
.x32_c00144{left:679.359333pt;}
.xa_c00144{left:681.599040pt;}
.x2a_c00144{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0103c0c766ec50db829a82e4.woff2')format("woff");}.ff1_c00145{font-family:ff1_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:ff2_c00145;src:url('chunks/assets/font_88f130c3cfb7c8453745334c.woff2')format("woff");}.ff2_c00145{font-family:ff2_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:ff3_c00145;src:url('chunks/assets/font_6b3b970908f02e09c9d1717a.woff2')format("woff");}.ff3_c00145{font-family:ff3_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:ff4_c00145;src:url('chunks/assets/font_86285c5d81e857f2a977dd16.woff2')format("woff");}.ff4_c00145{font-family:ff4_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;}
.m2_c00145{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);}
.m3_c00145{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.v1_c00145{vertical-align:2.882760px;}
.ls10_c00145{letter-spacing:-17.828213px;}
.ls13_c00145{letter-spacing:-13.371750px;}
.lsb_c00145{letter-spacing:-8.914500px;}
.lsa_c00145{letter-spacing:-6.685875px;}
.ls8_c00145{letter-spacing:-5.945625px;}
.lsd_c00145{letter-spacing:-5.778855px;}
.ls15_c00145{letter-spacing:-5.731950px;}
.ls2_c00145{letter-spacing:-5.196713px;}
.ls0_c00145{letter-spacing:-4.456463px;}
.ls7_c00145{letter-spacing:-3.717000px;}
.ls6_c00145{letter-spacing:-2.968875px;}
.ls11_c00145{letter-spacing:-2.386125px;}
.ls4_c00145{letter-spacing:-2.310398px;}
.ls1_c00145{letter-spacing:-2.229413px;}
.ls3_c00145{letter-spacing:-1.489163px;}
.ls9_c00145{letter-spacing:-0.740250px;}
.ls5_c00145{letter-spacing:0.000000px;}
.ls14_c00145{letter-spacing:0.795675px;}
.lsc_c00145{letter-spacing:2.806358px;}
.ls16_c00145{letter-spacing:3.726810px;}
.lse_c00145{letter-spacing:4.921875px;}
.ls12_c00145{letter-spacing:6.751125px;}
.lsf_c00145{letter-spacing:13.416000px;}
.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;}
._13_c00145{margin-left:-30.431065px;}
._1c_c00145{margin-left:-5.420169px;}
._3_c00145{margin-left:-4.241728px;}
._8_c00145{margin-left:-2.073933px;}
._4_c00145{width:1.893952px;}
._2_c00145{width:3.401822px;}
._1_c00145{width:5.287899px;}
._1b_c00145{width:6.707108px;}
._0_c00145{width:8.270176px;}
._a_c00145{width:9.395529px;}
._14_c00145{width:10.439977px;}
._5_c00145{width:11.538703px;}
._7_c00145{width:13.011060px;}
._12_c00145{width:14.176085px;}
._6_c00145{width:16.529566px;}
._9_c00145{width:18.682279px;}
._1d_c00145{width:20.705693px;}
._15_c00145{width:21.949185px;}
._c_c00145{width:22.999695px;}
._f_c00145{width:25.213224px;}
._e_c00145{width:27.092556px;}
._10_c00145{width:29.231138px;}
._b_c00145{width:31.409185px;}
._11_c00145{width:32.510080px;}
._d_c00145{width:34.098988px;}
._16_c00145{width:35.634672px;}
._1e_c00145{width:37.692454px;}
._19_c00145{width:40.633128px;}
._17_c00145{width:44.215480px;}
._18_c00145{width:47.305630px;}
._1a_c00145{width:49.641281px;}
.fc0_c00145{color:transparent;}
.fsa_c00145{font-size:38.250000px;}
.fs8_c00145{font-size:40.500000px;}
.fs7_c00145{font-size:53.250000px;}
.fs9_c00145{font-size:57.000000px;}
.fs2_c00145{font-size:75.000000px;}
.fsc_c00145{font-size:77.250000px;}
.fs6_c00145{font-size:78.000000px;}
.fs0_c00145{font-size:78.750000px;}
.fs5_c00145{font-size:79.500000px;}
.fs1_c00145{font-size:80.250000px;}
.fsd_c00145{font-size:81.000000px;}
.fs3_c00145{font-size:82.500000px;}
.fs4_c00145{font-size:83.250000px;}
.fsb_c00145{font-size:86.250000px;}
.y0_c00145{bottom:0.000000px;}
.y1d_c00145{bottom:299.880585px;}
.y1c_c00145{bottom:329.400285px;}
.y1b_c00145{bottom:329.400645px;}
.y1a_c00145{bottom:358.920180px;}
.y19_c00145{bottom:388.439715px;}
.y17_c00145{bottom:418.320150px;}
.y18_c00145{bottom:418.320285px;}
.y16_c00145{bottom:448.920540px;}
.y15_c00145{bottom:568.081050px;}
.y14_c00145{bottom:568.081185px;}
.y13_c00145{bottom:597.600720px;}
.y12_c00145{bottom:597.602670px;}
.y11_c00145{bottom:627.122205px;}
.y10_c00145{bottom:657.720495px;}
.yf_c00145{bottom:717.840135px;}
.ye_c00145{bottom:751.319820px;}
.yd_c00145{bottom:777.419955px;}
.yc_c00145{bottom:807.121035px;}
.yb_c00145{bottom:807.122790px;}
.ya_c00145{bottom:837.721095px;}
.y9_c00145{bottom:897.480540px;}
.y8_c00145{bottom:927.360255px;}
.y7_c00145{bottom:927.361020px;}
.y6_c00145{bottom:957.240735px;}
.y4_c00145{bottom:986.398665px;}
.y5_c00145{bottom:986.399775px;}
.y3_c00145{bottom:1106.279850px;}
.y2_c00145{bottom:1106.280210px;}
.y1_c00145{bottom:1136.880615px;}
.he_c00145{height:37.521606px;}
.hc_c00145{height:39.728760px;}
.hb_c00145{height:52.261963px;}
.hd_c00145{height:57.445312px;}
.h1_c00145{height:77.288818px;}
.h10_c00145{height:77.853516px;}
.h7_c00145{height:78.024902px;}
.h3_c00145{height:78.222656px;}
.ha_c00145{height:78.609375px;}
.h2_c00145{height:78.760986px;}
.h9_c00145{height:79.365234px;}
.h11_c00145{height:79.497070px;}
.h8_c00145{height:80.121094px;}
.h5_c00145{height:80.171578px;}
.h4_c00145{height:80.969238px;}
.h6_c00145{height:81.705322px;}
.hf_c00145{height:89.956055px;}
.h0_c00145{height:1263.000000px;}
.w0_c00145{width:892.500000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:136.799565px;}
.x1b_c00145{left:137.878470px;}
.x1f_c00145{left:138.958350px;}
.xf_c00145{left:159.478665px;}
.x17_c00145{left:192.239850px;}
.x18_c00145{left:212.040000px;}
.x19_c00145{left:259.919535px;}
.x26_c00145{left:263.879535px;}
.x1a_c00145{left:279.358635px;}
.x8_c00145{left:315.719100px;}
.x2_c00145{left:331.199850px;}
.x20_c00145{left:332.279250px;}
.x3_c00145{left:348.478635px;}
.x1c_c00145{left:351.718500px;}
.x1d_c00145{left:362.519100px;}
.x21_c00145{left:365.759100px;}
.x4_c00145{left:368.998950px;}
.x12_c00145{left:388.078815px;}
.x5_c00145{left:393.119985px;}
.x22_c00145{left:411.838950px;}
.x23_c00145{left:426.958920px;}
.x24_c00145{left:505.439250px;}
.x13_c00145{left:527.759085px;}
.x25_c00145{left:529.558635px;}
.x9_c00145{left:533.518620px;}
.x6_c00145{left:544.319235px;}
.xa_c00145{left:547.559100px;}
.x7_c00145{left:557.639700px;}
.x10_c00145{left:588.958920px;}
.x14_c00145{left:609.479235px;}
.x11_c00145{left:620.279850px;}
.xb_c00145{left:649.079355px;}
.xc_c00145{left:663.838530px;}
.x1e_c00145{left:681.838950px;}
.xd_c00145{left:683.999400px;}
.xe_c00145{left:720.719100px;}
.x15_c00145{left:723.958920px;}
.x16_c00145{left:739.078770px;}
.x27_c00145{left:771.838530px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.v1_c00145{vertical-align:2.562453pt;}
.ls10_c00145{letter-spacing:-15.847300pt;}
.ls13_c00145{letter-spacing:-11.886000pt;}
.lsb_c00145{letter-spacing:-7.924000pt;}
.lsa_c00145{letter-spacing:-5.943000pt;}
.ls8_c00145{letter-spacing:-5.285000pt;}
.lsd_c00145{letter-spacing:-5.136760pt;}
.ls15_c00145{letter-spacing:-5.095067pt;}
.ls2_c00145{letter-spacing:-4.619300pt;}
.ls0_c00145{letter-spacing:-3.961300pt;}
.ls7_c00145{letter-spacing:-3.304000pt;}
.ls6_c00145{letter-spacing:-2.639000pt;}
.ls11_c00145{letter-spacing:-2.121000pt;}
.ls4_c00145{letter-spacing:-2.053687pt;}
.ls1_c00145{letter-spacing:-1.981700pt;}
.ls3_c00145{letter-spacing:-1.323700pt;}
.ls9_c00145{letter-spacing:-0.658000pt;}
.ls5_c00145{letter-spacing:0.000000pt;}
.ls14_c00145{letter-spacing:0.707267pt;}
.lsc_c00145{letter-spacing:2.494540pt;}
.ls16_c00145{letter-spacing:3.312720pt;}
.lse_c00145{letter-spacing:4.375000pt;}
.ls12_c00145{letter-spacing:6.001000pt;}
.lsf_c00145{letter-spacing:11.925333pt;}
.ws0_c00145{word-spacing:0.000000pt;}
._13_c00145{margin-left:-27.049836pt;}
._1c_c00145{margin-left:-4.817928pt;}
._3_c00145{margin-left:-3.770425pt;}
._8_c00145{margin-left:-1.843496pt;}
._4_c00145{width:1.683513pt;}
._2_c00145{width:3.023842pt;}
._1_c00145{width:4.700355pt;}
._1b_c00145{width:5.961874pt;}
._0_c00145{width:7.351268pt;}
._a_c00145{width:8.351581pt;}
._14_c00145{width:9.279979pt;}
._5_c00145{width:10.256625pt;}
._7_c00145{width:11.565387pt;}
._12_c00145{width:12.600964pt;}
._6_c00145{width:14.692947pt;}
._9_c00145{width:16.606470pt;}
._1d_c00145{width:18.405060pt;}
._15_c00145{width:19.510387pt;}
._c_c00145{width:20.444174pt;}
._f_c00145{width:22.411755pt;}
._e_c00145{width:24.082272pt;}
._10_c00145{width:25.983234pt;}
._b_c00145{width:27.919275pt;}
._11_c00145{width:28.897849pt;}
._d_c00145{width:30.310211pt;}
._16_c00145{width:31.675264pt;}
._1e_c00145{width:33.504404pt;}
._19_c00145{width:36.118336pt;}
._17_c00145{width:39.302649pt;}
._18_c00145{width:42.049449pt;}
._1a_c00145{width:44.125583pt;}
.fsa_c00145{font-size:34.000000pt;}
.fs8_c00145{font-size:36.000000pt;}
.fs7_c00145{font-size:47.333333pt;}
.fs9_c00145{font-size:50.666667pt;}
.fs2_c00145{font-size:66.666667pt;}
.fsc_c00145{font-size:68.666667pt;}
.fs6_c00145{font-size:69.333333pt;}
.fs0_c00145{font-size:70.000000pt;}
.fs5_c00145{font-size:70.666667pt;}
.fs1_c00145{font-size:71.333333pt;}
.fsd_c00145{font-size:72.000000pt;}
.fs3_c00145{font-size:73.333333pt;}
.fs4_c00145{font-size:74.000000pt;}
.fsb_c00145{font-size:76.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y1d_c00145{bottom:266.560520pt;}
.y1c_c00145{bottom:292.800253pt;}
.y1b_c00145{bottom:292.800573pt;}
.y1a_c00145{bottom:319.040160pt;}
.y19_c00145{bottom:345.279747pt;}
.y17_c00145{bottom:371.840133pt;}
.y18_c00145{bottom:371.840253pt;}
.y16_c00145{bottom:399.040480pt;}
.y15_c00145{bottom:504.960933pt;}
.y14_c00145{bottom:504.961053pt;}
.y13_c00145{bottom:531.200640pt;}
.y12_c00145{bottom:531.202373pt;}
.y11_c00145{bottom:557.441960pt;}
.y10_c00145{bottom:584.640440pt;}
.yf_c00145{bottom:638.080120pt;}
.ye_c00145{bottom:667.839840pt;}
.yd_c00145{bottom:691.039960pt;}
.yc_c00145{bottom:717.440920pt;}
.yb_c00145{bottom:717.442480pt;}
.ya_c00145{bottom:744.640973pt;}
.y9_c00145{bottom:797.760480pt;}
.y8_c00145{bottom:824.320227pt;}
.y7_c00145{bottom:824.320907pt;}
.y6_c00145{bottom:850.880653pt;}
.y4_c00145{bottom:876.798813pt;}
.y5_c00145{bottom:876.799800pt;}
.y3_c00145{bottom:983.359867pt;}
.y2_c00145{bottom:983.360187pt;}
.y1_c00145{bottom:1010.560547pt;}
.he_c00145{height:33.352539pt;}
.hc_c00145{height:35.314453pt;}
.hb_c00145{height:46.455078pt;}
.hd_c00145{height:51.062500pt;}
.h1_c00145{height:68.701172pt;}
.h10_c00145{height:69.203125pt;}
.h7_c00145{height:69.355469pt;}
.h3_c00145{height:69.531250pt;}
.ha_c00145{height:69.875000pt;}
.h2_c00145{height:70.009766pt;}
.h9_c00145{height:70.546875pt;}
.h11_c00145{height:70.664062pt;}
.h8_c00145{height:71.218750pt;}
.h5_c00145{height:71.263625pt;}
.h4_c00145{height:71.972656pt;}
.h6_c00145{height:72.626953pt;}
.hf_c00145{height:79.960938pt;}
.h0_c00145{height:1122.666667pt;}
.w0_c00145{width:793.333333pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:121.599613pt;}
.x1b_c00145{left:122.558640pt;}
.x1f_c00145{left:123.518533pt;}
.xf_c00145{left:141.758813pt;}
.x17_c00145{left:170.879867pt;}
.x18_c00145{left:188.480000pt;}
.x19_c00145{left:231.039587pt;}
.x26_c00145{left:234.559587pt;}
.x1a_c00145{left:248.318787pt;}
.x8_c00145{left:280.639200pt;}
.x2_c00145{left:294.399867pt;}
.x20_c00145{left:295.359333pt;}
.x3_c00145{left:309.758787pt;}
.x1c_c00145{left:312.638667pt;}
.x1d_c00145{left:322.239200pt;}
.x21_c00145{left:325.119200pt;}
.x4_c00145{left:327.999067pt;}
.x12_c00145{left:344.958947pt;}
.x5_c00145{left:349.439987pt;}
.x22_c00145{left:366.079067pt;}
.x23_c00145{left:379.519040pt;}
.x24_c00145{left:449.279333pt;}
.x13_c00145{left:469.119187pt;}
.x25_c00145{left:470.718787pt;}
.x9_c00145{left:474.238773pt;}
.x6_c00145{left:483.839320pt;}
.xa_c00145{left:486.719200pt;}
.x7_c00145{left:495.679733pt;}
.x10_c00145{left:523.519040pt;}
.x14_c00145{left:541.759320pt;}
.x11_c00145{left:551.359867pt;}
.xb_c00145{left:576.959427pt;}
.xc_c00145{left:590.078693pt;}
.x1e_c00145{left:606.079067pt;}
.xd_c00145{left:607.999467pt;}
.xe_c00145{left:640.639200pt;}
.x15_c00145{left:643.519040pt;}
.x16_c00145{left:656.958907pt;}
.x27_c00145{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebc9f063f6168c3c8faf53b4.woff2')format("woff");}.ff1_c00146{font-family:ff1_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:ff2_c00146;src:url('chunks/assets/font_eb870383aee8357b7be28ca0.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.364746;font-style:normal;font-weight:normal;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_232d3dbdcb6e3b98bed938a1.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.432129;font-style:normal;font-weight:normal;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_c0b679a113e8d78ca8560807.woff2')format("woff");}.ff4_c00146{font-family:ff4_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:ff5_c00146;src:url('chunks/assets/font_179992d23fd0f9599d63e266.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00146;src:url('chunks/assets/font_b2ca1f5210b7db01489483c3.woff2')format("woff");}.ff6_c00146{font-family:ff6_c00146;line-height:1.432129;font-style:normal;font-weight: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_c00146;src:url('chunks/assets/font_cbb8ef771ac378badfb77312.woff2')format("woff");}.ff7_c00146{font-family:ff7_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;}
.m6_c00146{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m9_c00146{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.367925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367925,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{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);}
.v0_c00146{vertical-align:0.000000px;}
.ls16_c00146{letter-spacing:-13.138200px;}
.ls1c_c00146{letter-spacing:-11.142338px;}
.lsf_c00146{letter-spacing:-10.181430px;}
.ls18_c00146{letter-spacing:-8.175038px;}
.ls24_c00146{letter-spacing:-7.426125px;}
.ls19_c00146{letter-spacing:-7.365600px;}
.ls13_c00146{letter-spacing:-7.059600px;}
.lsd_c00146{letter-spacing:-6.685875px;}
.lsb_c00146{letter-spacing:-5.945625px;}
.ls7_c00146{letter-spacing:-5.196713px;}
.lsa_c00146{letter-spacing:-5.054400px;}
.ls3_c00146{letter-spacing:-4.625100px;}
.lsc_c00146{letter-spacing:-4.456463px;}
.ls14_c00146{letter-spacing:-4.334498px;}
.ls1a_c00146{letter-spacing:-4.050000px;}
.ls9_c00146{letter-spacing:-3.968363px;}
.ls5_c00146{letter-spacing:-3.717000px;}
.ls2_c00146{letter-spacing:-2.968875px;}
.ls22_c00146{letter-spacing:-2.479725px;}
.ls4_c00146{letter-spacing:-2.229413px;}
.ls1d_c00146{letter-spacing:-1.653150px;}
.ls6_c00146{letter-spacing:-1.489163px;}
.ls1b_c00146{letter-spacing:-1.425165px;}
.ls12_c00146{letter-spacing:-1.017600px;}
.ls1e_c00146{letter-spacing:-0.826575px;}
.ls17_c00146{letter-spacing:-0.749325px;}
.ls8_c00146{letter-spacing:-0.740250px;}
.ls1_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.740250px;}
.ls1f_c00146{letter-spacing:0.856800px;}
.ls15_c00146{letter-spacing:1.755780px;}
.ls11_c00146{letter-spacing:2.079000px;}
.ls23_c00146{letter-spacing:2.229413px;}
.ls20_c00146{letter-spacing:2.493135px;}
.lse_c00146{letter-spacing:2.608650px;}
.ls21_c00146{letter-spacing:2.968875px;}
.ls10_c00146{letter-spacing:8.437500px;}
.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;}
._0_c00146{margin-left:-35.933952px;}
._15_c00146{margin-left:-11.217432px;}
._14_c00146{margin-left:-9.653368px;}
._13_c00146{margin-left:-4.877404px;}
._19_c00146{margin-left:-3.843089px;}
._12_c00146{margin-left:-2.670264px;}
._5_c00146{margin-left:-1.660421px;}
._c_c00146{width:1.386386px;}
._b_c00146{width:3.250503px;}
._9_c00146{width:5.434716px;}
._8_c00146{width:6.669724px;}
._4_c00146{width:7.806785px;}
._a_c00146{width:9.105342px;}
._16_c00146{width:10.243845px;}
._7_c00146{width:11.470532px;}
._6_c00146{width:13.303594px;}
._3_c00146{width:14.337790px;}
._1b_c00146{width:15.752926px;}
._17_c00146{width:16.993834px;}
._11_c00146{width:19.694736px;}
._1_c00146{width:21.131448px;}
._2_c00146{width:23.042309px;}
._10_c00146{width:25.428108px;}
._d_c00146{width:27.412087px;}
._f_c00146{width:30.144192px;}
._18_c00146{width:31.392826px;}
._1a_c00146{width:33.418097px;}
._e_c00146{width:34.548606px;}
._1c_c00146{width:36.747543px;}
._1d_c00146{width:42.731102px;}
.fc0_c00146{color:transparent;}
.fsb_c00146{font-size:18.000000px;}
.fsc_c00146{font-size:39.750000px;}
.fs9_c00146{font-size:45.000000px;}
.fsa_c00146{font-size:54.000000px;}
.fs8_c00146{font-size:63.000000px;}
.fs12_c00146{font-size:71.250000px;}
.fs11_c00146{font-size:73.500000px;}
.fsf_c00146{font-size:74.250000px;}
.fs13_c00146{font-size:74.291400px;}
.fs10_c00146{font-size:75.000000px;}
.fs7_c00146{font-size:76.500000px;}
.fsd_c00146{font-size:77.250000px;}
.fs6_c00146{font-size:78.000000px;}
.fs1_c00146{font-size:78.750000px;}
.fs0_c00146{font-size:80.250000px;}
.fs3_c00146{font-size:81.000000px;}
.fse_c00146{font-size:82.500000px;}
.fs2_c00146{font-size:84.000000px;}
.fs4_c00146{font-size:84.750000px;}
.fs5_c00146{font-size:86.250000px;}
.y0_c00146{bottom:0.000000px;}
.y2d_c00146{bottom:180.359775px;}
.y2e_c00146{bottom:180.359850px;}
.y2b_c00146{bottom:210.598575px;}
.y2c_c00146{bottom:210.599700px;}
.y2a_c00146{bottom:240.659460px;}
.y28_c00146{bottom:300.239640px;}
.y29_c00146{bottom:300.239850px;}
.y27_c00146{bottom:330.118785px;}
.y26_c00146{bottom:330.119655px;}
.y24_c00146{bottom:359.819850px;}
.y25_c00146{bottom:359.999385px;}
.y23_c00146{bottom:389.879970px;}
.y22_c00146{bottom:389.880060px;}
.y21_c00146{bottom:420.119985px;}
.y20_c00146{bottom:420.120165px;}
.y1e_c00146{bottom:449.638320px;}
.y1f_c00146{bottom:449.639700px;}
.y1d_c00146{bottom:480.598920px;}
.y1c_c00146{bottom:510.478635px;}
.y1b_c00146{bottom:510.479535px;}
.y1a_c00146{bottom:540.359250px;}
.y19_c00146{bottom:540.360285px;}
.y18_c00146{bottom:569.879820px;}
.y17_c00146{bottom:599.759535px;}
.y16_c00146{bottom:599.759715px;}
.y15_c00146{bottom:629.279250px;}
.y14_c00146{bottom:629.279385px;}
.y13_c00146{bottom:658.798920px;}
.y12_c00146{bottom:658.799235px;}
.y11_c00146{bottom:688.318770px;}
.y10_c00146{bottom:748.080000px;}
.yf_c00146{bottom:752.039985px;}
.ye_c00146{bottom:808.918905px;}
.yc_c00146{bottom:839.158740px;}
.yd_c00146{bottom:839.158815px;}
.yb_c00146{bottom:868.680090px;}
.ya_c00146{bottom:868.680225px;}
.y9_c00146{bottom:898.559940px;}
.y8_c00146{bottom:928.439670px;}
.y7_c00146{bottom:987.840090px;}
.y6_c00146{bottom:987.840225px;}
.y5_c00146{bottom:1018.080135px;}
.y3_c00146{bottom:1047.599625px;}
.y4_c00146{bottom:1047.599670px;}
.y2_c00146{bottom:1077.839535px;}
.y1_c00146{bottom:1137.599025px;}
.hc_c00146{height:18.773438px;}
.hd_c00146{height:41.458008px;}
.ha_c00146{height:46.933594px;}
.hb_c00146{height:54.421875px;}
.h9_c00146{height:62.261719px;}
.h14_c00146{height:69.893188px;}
.h13_c00146{height:72.136230px;}
.h18_c00146{height:72.912946px;}
.h12_c00146{height:73.608398px;}
.h16_c00146{height:75.043213px;}
.h8_c00146{height:75.080566px;}
.he_c00146{height:75.816650px;}
.h7_c00146{height:76.552734px;}
.h2_c00146{height:77.288818px;}
.h11_c00146{height:77.440430px;}
.h15_c00146{height:78.721802px;}
.h1_c00146{height:78.760986px;}
.h17_c00146{height:79.444262px;}
.h4_c00146{height:79.497070px;}
.h10_c00146{height:80.050781px;}
.hf_c00146{height:80.969238px;}
.h3_c00146{height:82.441406px;}
.h5_c00146{height:83.177490px;}
.h6_c00146{height:85.239258px;}
.h0_c00146{height:1263.000000px;}
.w0_c00146{width:892.500000px;}
.x0_c00146{left:0.000000px;}
.xb_c00146{left:136.799565px;}
.x1_c00146{left:137.878950px;}
.x13_c00146{left:143.279250px;}
.x14_c00146{left:162.359250px;}
.x11_c00146{left:165.599100px;}
.x4_c00146{left:167.759565px;}
.x25_c00146{left:196.199850px;}
.x12_c00146{left:201.959400px;}
.x2_c00146{left:204.838515px;}
.x35_c00146{left:206.998950px;}
.x5_c00146{left:210.958950px;}
.x3a_c00146{left:212.399250px;}
.x26_c00146{left:215.639100px;}
.x6_c00146{left:227.519100px;}
.x3f_c00146{left:231.838515px;}
.x2f_c00146{left:235.080000px;}
.x40_c00146{left:246.958350px;}
.x10_c00146{left:262.080000px;}
.xc_c00146{left:272.519685px;}
.xd_c00146{left:292.679100px;}
.x3b_c00146{left:294.839535px;}
.x7_c00146{left:296.639100px;}
.x8_c00146{left:312.838515px;}
.x27_c00146{left:316.439235px;}
.x15_c00146{left:320.399235px;}
.x9_c00146{left:327.599100px;}
.x28_c00146{left:337.318800px;}
.x36_c00146{left:343.439235px;}
.x16_c00146{left:344.518635px;}
.x41_c00146{left:352.079385px;}
.x3_c00146{left:361.439685px;}
.x30_c00146{left:363.959385px;}
.xa_c00146{left:370.798515px;}
.x31_c00146{left:392.399820px;}
.x42_c00146{left:408.958335px;}
.x37_c00146{left:416.519070px;}
.x17_c00146{left:417.598530px;}
.x29_c00146{left:422.639700px;}
.x18_c00146{left:431.279850px;}
.x20_c00146{left:435.239820px;}
.x21_c00146{left:451.798515px;}
.x2a_c00146{left:453.599670px;}
.x3c_c00146{left:479.518620px;}
.x32_c00146{left:484.559685px;}
.x3d_c00146{left:492.838950px;}
.x2d_c00146{left:501.838530px;}
.x43_c00146{left:503.278800px;}
.x19_c00146{left:528.479235px;}
.x1a_c00146{left:537.478635px;}
.x38_c00146{left:565.198785px;}
.x23_c00146{left:568.438620px;}
.x44_c00146{left:570.958335px;}
.x1b_c00146{left:574.559100px;}
.x24_c00146{left:581.759085px;}
.x1c_c00146{left:587.879520px;}
.x22_c00146{left:626.398635px;}
.x33_c00146{left:628.918350px;}
.x1d_c00146{left:640.798515px;}
.x3e_c00146{left:673.198785px;}
.x1e_c00146{left:677.519670px;}
.x2b_c00146{left:685.439670px;}
.x1f_c00146{left:691.558635px;}
.x2c_c00146{left:700.559685px;}
.xe_c00146{left:704.878920px;}
.x39_c00146{left:707.759535px;}
.xf_c00146{left:718.558635px;}
.x34_c00146{left:721.439205px;}
.x2e_c00146{left:761.759535px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls16_c00146{letter-spacing:-11.678400pt;}
.ls1c_c00146{letter-spacing:-9.904300pt;}
.lsf_c00146{letter-spacing:-9.050160pt;}
.ls18_c00146{letter-spacing:-7.266700pt;}
.ls24_c00146{letter-spacing:-6.601000pt;}
.ls19_c00146{letter-spacing:-6.547200pt;}
.ls13_c00146{letter-spacing:-6.275200pt;}
.lsd_c00146{letter-spacing:-5.943000pt;}
.lsb_c00146{letter-spacing:-5.285000pt;}
.ls7_c00146{letter-spacing:-4.619300pt;}
.lsa_c00146{letter-spacing:-4.492800pt;}
.ls3_c00146{letter-spacing:-4.111200pt;}
.lsc_c00146{letter-spacing:-3.961300pt;}
.ls14_c00146{letter-spacing:-3.852887pt;}
.ls1a_c00146{letter-spacing:-3.600000pt;}
.ls9_c00146{letter-spacing:-3.527433pt;}
.ls5_c00146{letter-spacing:-3.304000pt;}
.ls2_c00146{letter-spacing:-2.639000pt;}
.ls22_c00146{letter-spacing:-2.204200pt;}
.ls4_c00146{letter-spacing:-1.981700pt;}
.ls1d_c00146{letter-spacing:-1.469467pt;}
.ls6_c00146{letter-spacing:-1.323700pt;}
.ls1b_c00146{letter-spacing:-1.266813pt;}
.ls12_c00146{letter-spacing:-0.904533pt;}
.ls1e_c00146{letter-spacing:-0.734733pt;}
.ls17_c00146{letter-spacing:-0.666067pt;}
.ls8_c00146{letter-spacing:-0.658000pt;}
.ls1_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.658000pt;}
.ls1f_c00146{letter-spacing:0.761600pt;}
.ls15_c00146{letter-spacing:1.560693pt;}
.ls11_c00146{letter-spacing:1.848000pt;}
.ls23_c00146{letter-spacing:1.981700pt;}
.ls20_c00146{letter-spacing:2.216120pt;}
.lse_c00146{letter-spacing:2.318800pt;}
.ls21_c00146{letter-spacing:2.639000pt;}
.ls10_c00146{letter-spacing:7.500000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
._0_c00146{margin-left:-31.941291pt;}
._15_c00146{margin-left:-9.971051pt;}
._14_c00146{margin-left:-8.580772pt;}
._13_c00146{margin-left:-4.335470pt;}
._19_c00146{margin-left:-3.416079pt;}
._12_c00146{margin-left:-2.373568pt;}
._5_c00146{margin-left:-1.475930pt;}
._c_c00146{width:1.232343pt;}
._b_c00146{width:2.889336pt;}
._9_c00146{width:4.830858pt;}
._8_c00146{width:5.928643pt;}
._4_c00146{width:6.939364pt;}
._a_c00146{width:8.093638pt;}
._16_c00146{width:9.105640pt;}
._7_c00146{width:10.196028pt;}
._6_c00146{width:11.825417pt;}
._3_c00146{width:12.744702pt;}
._1b_c00146{width:14.002601pt;}
._17_c00146{width:15.105630pt;}
._11_c00146{width:17.506432pt;}
._1_c00146{width:18.783509pt;}
._2_c00146{width:20.482053pt;}
._10_c00146{width:22.602762pt;}
._d_c00146{width:24.366300pt;}
._f_c00146{width:26.794838pt;}
._18_c00146{width:27.904734pt;}
._1a_c00146{width:29.704975pt;}
._e_c00146{width:30.709872pt;}
._1c_c00146{width:32.664483pt;}
._1d_c00146{width:37.983202pt;}
.fsb_c00146{font-size:16.000000pt;}
.fsc_c00146{font-size:35.333333pt;}
.fs9_c00146{font-size:40.000000pt;}
.fsa_c00146{font-size:48.000000pt;}
.fs8_c00146{font-size:56.000000pt;}
.fs12_c00146{font-size:63.333333pt;}
.fs11_c00146{font-size:65.333333pt;}
.fsf_c00146{font-size:66.000000pt;}
.fs13_c00146{font-size:66.036800pt;}
.fs10_c00146{font-size:66.666667pt;}
.fs7_c00146{font-size:68.000000pt;}
.fsd_c00146{font-size:68.666667pt;}
.fs6_c00146{font-size:69.333333pt;}
.fs1_c00146{font-size:70.000000pt;}
.fs0_c00146{font-size:71.333333pt;}
.fs3_c00146{font-size:72.000000pt;}
.fse_c00146{font-size:73.333333pt;}
.fs2_c00146{font-size:74.666667pt;}
.fs4_c00146{font-size:75.333333pt;}
.fs5_c00146{font-size:76.666667pt;}
.y0_c00146{bottom:0.000000pt;}
.y2d_c00146{bottom:160.319800pt;}
.y2e_c00146{bottom:160.319867pt;}
.y2b_c00146{bottom:187.198733pt;}
.y2c_c00146{bottom:187.199733pt;}
.y2a_c00146{bottom:213.919520pt;}
.y28_c00146{bottom:266.879680pt;}
.y29_c00146{bottom:266.879867pt;}
.y27_c00146{bottom:293.438920pt;}
.y26_c00146{bottom:293.439693pt;}
.y24_c00146{bottom:319.839867pt;}
.y25_c00146{bottom:319.999453pt;}
.y23_c00146{bottom:346.559973pt;}
.y22_c00146{bottom:346.560053pt;}
.y21_c00146{bottom:373.439987pt;}
.y20_c00146{bottom:373.440147pt;}
.y1e_c00146{bottom:399.678507pt;}
.y1f_c00146{bottom:399.679733pt;}
.y1d_c00146{bottom:427.199040pt;}
.y1c_c00146{bottom:453.758787pt;}
.y1b_c00146{bottom:453.759587pt;}
.y1a_c00146{bottom:480.319333pt;}
.y19_c00146{bottom:480.320253pt;}
.y18_c00146{bottom:506.559840pt;}
.y17_c00146{bottom:533.119587pt;}
.y16_c00146{bottom:533.119747pt;}
.y15_c00146{bottom:559.359333pt;}
.y14_c00146{bottom:559.359453pt;}
.y13_c00146{bottom:585.599040pt;}
.y12_c00146{bottom:585.599320pt;}
.y11_c00146{bottom:611.838907pt;}
.y10_c00146{bottom:664.960000pt;}
.yf_c00146{bottom:668.479987pt;}
.ye_c00146{bottom:719.039027pt;}
.yc_c00146{bottom:745.918880pt;}
.yd_c00146{bottom:745.918947pt;}
.yb_c00146{bottom:772.160080pt;}
.ya_c00146{bottom:772.160200pt;}
.y9_c00146{bottom:798.719947pt;}
.y8_c00146{bottom:825.279707pt;}
.y7_c00146{bottom:878.080080pt;}
.y6_c00146{bottom:878.080200pt;}
.y5_c00146{bottom:904.960120pt;}
.y3_c00146{bottom:931.199667pt;}
.y4_c00146{bottom:931.199707pt;}
.y2_c00146{bottom:958.079587pt;}
.y1_c00146{bottom:1011.199133pt;}
.hc_c00146{height:16.687500pt;}
.hd_c00146{height:36.851562pt;}
.ha_c00146{height:41.718750pt;}
.hb_c00146{height:48.375000pt;}
.h9_c00146{height:55.343750pt;}
.h14_c00146{height:62.127279pt;}
.h13_c00146{height:64.121094pt;}
.h18_c00146{height:64.811508pt;}
.h12_c00146{height:65.429688pt;}
.h16_c00146{height:66.705078pt;}
.h8_c00146{height:66.738281pt;}
.he_c00146{height:67.392578pt;}
.h7_c00146{height:68.046875pt;}
.h2_c00146{height:68.701172pt;}
.h11_c00146{height:68.835938pt;}
.h15_c00146{height:69.974935pt;}
.h1_c00146{height:70.009766pt;}
.h17_c00146{height:70.617122pt;}
.h4_c00146{height:70.664062pt;}
.h10_c00146{height:71.156250pt;}
.hf_c00146{height:71.972656pt;}
.h3_c00146{height:73.281250pt;}
.h5_c00146{height:73.935547pt;}
.h6_c00146{height:75.768229pt;}
.h0_c00146{height:1122.666667pt;}
.w0_c00146{width:793.333333pt;}
.x0_c00146{left:0.000000pt;}
.xb_c00146{left:121.599613pt;}
.x1_c00146{left:122.559067pt;}
.x13_c00146{left:127.359333pt;}
.x14_c00146{left:144.319333pt;}
.x11_c00146{left:147.199200pt;}
.x4_c00146{left:149.119613pt;}
.x25_c00146{left:174.399867pt;}
.x12_c00146{left:179.519467pt;}
.x2_c00146{left:182.078680pt;}
.x35_c00146{left:183.999067pt;}
.x5_c00146{left:187.519067pt;}
.x3a_c00146{left:188.799333pt;}
.x26_c00146{left:191.679200pt;}
.x6_c00146{left:202.239200pt;}
.x3f_c00146{left:206.078680pt;}
.x2f_c00146{left:208.960000pt;}
.x40_c00146{left:219.518533pt;}
.x10_c00146{left:232.960000pt;}
.xc_c00146{left:242.239720pt;}
.xd_c00146{left:260.159200pt;}
.x3b_c00146{left:262.079587pt;}
.x7_c00146{left:263.679200pt;}
.x8_c00146{left:278.078680pt;}
.x27_c00146{left:281.279320pt;}
.x15_c00146{left:284.799320pt;}
.x9_c00146{left:291.199200pt;}
.x28_c00146{left:299.838933pt;}
.x36_c00146{left:305.279320pt;}
.x16_c00146{left:306.238787pt;}
.x41_c00146{left:312.959453pt;}
.x3_c00146{left:321.279720pt;}
.x30_c00146{left:323.519453pt;}
.xa_c00146{left:329.598680pt;}
.x31_c00146{left:348.799840pt;}
.x42_c00146{left:363.518520pt;}
.x37_c00146{left:370.239173pt;}
.x17_c00146{left:371.198693pt;}
.x29_c00146{left:375.679733pt;}
.x18_c00146{left:383.359867pt;}
.x20_c00146{left:386.879840pt;}
.x21_c00146{left:401.598680pt;}
.x2a_c00146{left:403.199707pt;}
.x3c_c00146{left:426.238773pt;}
.x32_c00146{left:430.719720pt;}
.x3d_c00146{left:438.079067pt;}
.x2d_c00146{left:446.078693pt;}
.x43_c00146{left:447.358933pt;}
.x19_c00146{left:469.759320pt;}
.x1a_c00146{left:477.758787pt;}
.x38_c00146{left:502.398920pt;}
.x23_c00146{left:505.278773pt;}
.x44_c00146{left:507.518520pt;}
.x1b_c00146{left:510.719200pt;}
.x24_c00146{left:517.119187pt;}
.x1c_c00146{left:522.559573pt;}
.x22_c00146{left:556.798787pt;}
.x33_c00146{left:559.038533pt;}
.x1d_c00146{left:569.598680pt;}
.x3e_c00146{left:598.398920pt;}
.x1e_c00146{left:602.239707pt;}
.x2b_c00146{left:609.279707pt;}
.x1f_c00146{left:614.718787pt;}
.x2c_c00146{left:622.719720pt;}
.xe_c00146{left:626.559040pt;}
.x39_c00146{left:629.119587pt;}
.xf_c00146{left:638.718787pt;}
.x34_c00146{left:641.279293pt;}
.x2e_c00146{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f57d4a361ca06f6c5d22b9a5.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_7a108d63c6301a9ad41d070d.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_1b7d411152a0fbdc6640aa9b.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;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_ff1e77dc3c549ba72adf1fee.woff2')format("woff");}.ff4_c00147{font-family:ff4_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:ff5_c00147;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00147;src:url('chunks/assets/font_e48109534f343bed51853281.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;line-height:1.364746;font-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_c00147{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m17_c00147{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m8_c00147{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m18_c00147{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.372685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372685,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls1a_c00147{letter-spacing:-28.674000px;}
.ls20_c00147{letter-spacing:-14.016713px;}
.ls16_c00147{letter-spacing:-13.631625px;}
.ls18_c00147{letter-spacing:-9.900000px;}
.ls1e_c00147{letter-spacing:-8.998493px;}
.lse_c00147{letter-spacing:-7.840800px;}
.ls24_c00147{letter-spacing:-7.576538px;}
.ls14_c00147{letter-spacing:-6.484200px;}
.ls15_c00147{letter-spacing:-6.228900px;}
.ls1c_c00147{letter-spacing:-6.055875px;}
.ls1d_c00147{letter-spacing:-5.300663px;}
.ls13_c00147{letter-spacing:-4.587180px;}
.ls22_c00147{letter-spacing:-4.543088px;}
.ls1f_c00147{letter-spacing:-4.460745px;}
.ls1b_c00147{letter-spacing:-4.053428px;}
.lsb_c00147{letter-spacing:-3.787875px;}
.ls9_c00147{letter-spacing:-3.242903px;}
.ls11_c00147{letter-spacing:-3.031875px;}
.ls5_c00147{letter-spacing:-2.431575px;}
.ls7_c00147{letter-spacing:-2.267213px;}
.ls12_c00147{letter-spacing:-1.621050px;}
.ls8_c00147{letter-spacing:-1.512000px;}
.ls6_c00147{letter-spacing:-0.810525px;}
.ls23_c00147{letter-spacing:-0.809190px;}
.lsf_c00147{letter-spacing:-0.794295px;}
.ls4_c00147{letter-spacing:-0.756000px;}
.lsa_c00147{letter-spacing:0.000000px;}
.ls1_c00147{letter-spacing:0.756000px;}
.ls21_c00147{letter-spacing:0.810525px;}
.lsd_c00147{letter-spacing:0.890258px;}
.ls10_c00147{letter-spacing:1.641803px;}
.ls0_c00147{letter-spacing:2.431575px;}
.lsc_c00147{letter-spacing:2.502900px;}
.ls2_c00147{letter-spacing:3.242903px;}
.ls17_c00147{letter-spacing:3.514875px;}
.ls19_c00147{letter-spacing:4.102088px;}
.ls3_c00147{letter-spacing:17.021025px;}
.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;}
._23_c00147{margin-left:-22.541037px;}
._12_c00147{margin-left:-16.647932px;}
._15_c00147{margin-left:-14.235702px;}
._9_c00147{margin-left:-9.831257px;}
._1a_c00147{margin-left:-8.214110px;}
._13_c00147{margin-left:-6.718708px;}
._b_c00147{margin-left:-4.859360px;}
._1b_c00147{margin-left:-3.856812px;}
._8_c00147{margin-left:-2.391577px;}
._14_c00147{margin-left:-1.015754px;}
._c_c00147{width:1.570033px;}
._a_c00147{width:2.800653px;}
._0_c00147{width:4.174295px;}
._2_c00147{width:5.851428px;}
._3_c00147{width:7.114336px;}
._1c_c00147{width:8.754335px;}
._10_c00147{width:9.962360px;}
._1_c00147{width:11.651749px;}
._11_c00147{width:12.859572px;}
._f_c00147{width:14.150951px;}
._6_c00147{width:15.275864px;}
._1e_c00147{width:16.812083px;}
._17_c00147{width:18.420236px;}
._7_c00147{width:20.328101px;}
._18_c00147{width:21.474943px;}
._d_c00147{width:22.992213px;}
._19_c00147{width:24.363787px;}
._5_c00147{width:25.493253px;}
._4_c00147{width:27.549306px;}
._21_c00147{width:28.769285px;}
._22_c00147{width:30.182220px;}
._e_c00147{width:31.618111px;}
._24_c00147{width:32.622231px;}
._25_c00147{width:35.863768px;}
._26_c00147{width:39.981424px;}
._1d_c00147{width:42.028754px;}
._1f_c00147{width:46.537040px;}
._20_c00147{width:47.709176px;}
._16_c00147{width:56.394208px;}
.fc0_c00147{color:transparent;}
.fs9_c00147{font-size:68.250000px;}
.fsd_c00147{font-size:75.258660px;}
.fs6_c00147{font-size:78.000000px;}
.fs0_c00147{font-size:78.750000px;}
.fsc_c00147{font-size:79.500000px;}
.fs1_c00147{font-size:80.250000px;}
.fs2_c00147{font-size:81.000000px;}
.fs3_c00147{font-size:81.750000px;}
.fsa_c00147{font-size:82.500000px;}
.fsb_c00147{font-size:83.250000px;}
.fs4_c00147{font-size:85.500000px;}
.fs5_c00147{font-size:87.750000px;}
.fs7_c00147{font-size:90.000000px;}
.fs8_c00147{font-size:96.000000px;}
.y0_c00147{bottom:0.000000px;}
.y2d_c00147{bottom:179.640750px;}
.y2c_c00147{bottom:209.160285px;}
.y2b_c00147{bottom:239.040000px;}
.y2a_c00147{bottom:239.041035px;}
.y29_c00147{bottom:268.920750px;}
.y27_c00147{bottom:298.438770px;}
.y28_c00147{bottom:298.440285px;}
.y26_c00147{bottom:328.318500px;}
.y25_c00147{bottom:357.839835px;}
.y24_c00147{bottom:387.719565px;}
.y23_c00147{bottom:447.840135px;}
.y21_c00147{bottom:477.720660px;}
.y22_c00147{bottom:477.720750px;}
.y1f_c00147{bottom:507.959820px;}
.y20_c00147{bottom:507.960570px;}
.y1e_c00147{bottom:537.839535px;}
.y1c_c00147{bottom:567.720060px;}
.y1d_c00147{bottom:567.720150px;}
.y1a_c00147{bottom:597.959610px;}
.y1b_c00147{bottom:597.959970px;}
.y18_c00147{bottom:627.839790px;}
.y19_c00147{bottom:627.840585px;}
.y17_c00147{bottom:657.719520px;}
.y16_c00147{bottom:657.720405px;}
.y15_c00147{bottom:687.600135px;}
.y14_c00147{bottom:717.479235px;}
.y13_c00147{bottom:747.720750px;}
.y12_c00147{bottom:747.721530px;}
.y11_c00147{bottom:778.319820px;}
.y10_c00147{bottom:778.320720px;}
.yf_c00147{bottom:808.200435px;}
.yd_c00147{bottom:868.679745px;}
.ye_c00147{bottom:868.680090px;}
.yc_c00147{bottom:899.279205px;}
.ya_c00147{bottom:928.800000px;}
.yb_c00147{bottom:928.800570px;}
.y9_c00147{bottom:958.679715px;}
.y8_c00147{bottom:988.919490px;}
.y7_c00147{bottom:988.921275px;}
.y6_c00147{bottom:1018.801005px;}
.y5_c00147{bottom:1048.680720px;}
.y4_c00147{bottom:1078.920600px;}
.y2_c00147{bottom:1109.160330px;}
.y3_c00147{bottom:1109.160465px;}
.y1_c00147{bottom:1139.400240px;}
.hc_c00147{height:68.783203px;}
.h14_c00147{height:73.862259px;}
.h13_c00147{height:76.514648px;}
.h1_c00147{height:77.288818px;}
.h11_c00147{height:78.024902px;}
.h8_c00147{height:78.609375px;}
.h2_c00147{height:78.721802px;}
.h12_c00147{height:78.760986px;}
.he_c00147{height:79.365234px;}
.h3_c00147{height:79.457520px;}
.hb_c00147{height:79.497070px;}
.hf_c00147{height:80.050781px;}
.hd_c00147{height:80.928955px;}
.h5_c00147{height:81.632812px;}
.h10_c00147{height:81.705322px;}
.h4_c00147{height:82.388672px;}
.h6_c00147{height:83.871826px;}
.h7_c00147{height:86.078979px;}
.h9_c00147{height:93.867188px;}
.ha_c00147{height:100.125000px;}
.h0_c00147{height:1263.000000px;}
.w0_c00147{width:892.500000px;}
.x0_c00147{left:0.000000px;}
.x23_c00147{left:137.878950px;}
.x1_c00147{left:138.958350px;}
.x4_c00147{left:155.518665px;}
.x24_c00147{left:164.158785px;}
.x2_c00147{left:209.159385px;}
.x16_c00147{left:221.759535px;}
.x7_c00147{left:231.120000px;}
.x21_c00147{left:233.639700px;}
.x17_c00147{left:235.439250px;}
.x2e_c00147{left:239.399250px;}
.x32_c00147{left:240.839535px;}
.x8_c00147{left:293.399250px;}
.x3e_c00147{left:294.839535px;}
.xd_c00147{left:304.559100px;}
.x3f_c00147{left:311.038950px;}
.x5_c00147{left:317.159385px;}
.x11_c00147{left:330.118785px;}
.x9_c00147{left:348.119385px;}
.x3_c00147{left:354.958350px;}
.x1b_c00147{left:399.238770px;}
.x38_c00147{left:401.399235px;}
.xa_c00147{left:407.519670px;}
.x1c_c00147{left:413.999400px;}
.x39_c00147{left:425.879520px;}
.x37_c00147{left:429.478635px;}
.xe_c00147{left:432.359250px;}
.x14_c00147{left:436.678530px;}
.x12_c00147{left:448.919535px;}
.x18_c00147{left:451.080000px;}
.x1d_c00147{left:455.758530px;}
.x2c_c00147{left:457.918950px;}
.x1e_c00147{left:468.358665px;}
.x3a_c00147{left:474.119985px;}
.x3b_c00147{left:487.799565px;}
.x42_c00147{left:489.958335px;}
.xb_c00147{left:496.078770px;}
.x25_c00147{left:503.998950px;}
.xf_c00147{left:509.758530px;}
.x29_c00147{left:519.838950px;}
.x43_c00147{left:534.599670px;}
.x22_c00147{left:535.679070px;}
.x27_c00147{left:546.118785px;}
.x2d_c00147{left:570.599070px;}
.x33_c00147{left:577.439670px;}
.x3c_c00147{left:581.399820px;}
.x34_c00147{left:602.638545px;}
.x15_c00147{left:604.798920px;}
.x19_c00147{left:606.959385px;}
.x2f_c00147{left:608.038920px;}
.x36_c00147{left:609.119985px;}
.x1a_c00147{left:618.478635px;}
.xc_c00147{left:620.279850px;}
.x40_c00147{left:623.519670px;}
.x1f_c00147{left:630.719520px;}
.x41_c00147{left:637.558635px;}
.x10_c00147{left:642.238770px;}
.x35_c00147{left:650.878920px;}
.x26_c00147{left:654.118785px;}
.x2a_c00147{left:662.759085px;}
.x13_c00147{left:664.919535px;}
.x30_c00147{left:681.838950px;}
.x6_c00147{left:702.000000px;}
.x31_c00147{left:705.239820px;}
.x3d_c00147{left:723.599670px;}
.x28_c00147{left:725.039985px;}
.x20_c00147{left:737.999355px;}
.x2b_c00147{left:754.559685px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls1a_c00147{letter-spacing:-25.488000pt;}
.ls20_c00147{letter-spacing:-12.459300pt;}
.ls16_c00147{letter-spacing:-12.117000pt;}
.ls18_c00147{letter-spacing:-8.800000pt;}
.ls1e_c00147{letter-spacing:-7.998660pt;}
.lse_c00147{letter-spacing:-6.969600pt;}
.ls24_c00147{letter-spacing:-6.734700pt;}
.ls14_c00147{letter-spacing:-5.763733pt;}
.ls15_c00147{letter-spacing:-5.536800pt;}
.ls1c_c00147{letter-spacing:-5.383000pt;}
.ls1d_c00147{letter-spacing:-4.711700pt;}
.ls13_c00147{letter-spacing:-4.077493pt;}
.ls22_c00147{letter-spacing:-4.038300pt;}
.ls1f_c00147{letter-spacing:-3.965107pt;}
.ls1b_c00147{letter-spacing:-3.603047pt;}
.lsb_c00147{letter-spacing:-3.367000pt;}
.ls9_c00147{letter-spacing:-2.882580pt;}
.ls11_c00147{letter-spacing:-2.695000pt;}
.ls5_c00147{letter-spacing:-2.161400pt;}
.ls7_c00147{letter-spacing:-2.015300pt;}
.ls12_c00147{letter-spacing:-1.440933pt;}
.ls8_c00147{letter-spacing:-1.344000pt;}
.ls6_c00147{letter-spacing:-0.720467pt;}
.ls23_c00147{letter-spacing:-0.719280pt;}
.lsf_c00147{letter-spacing:-0.706040pt;}
.ls4_c00147{letter-spacing:-0.672000pt;}
.lsa_c00147{letter-spacing:0.000000pt;}
.ls1_c00147{letter-spacing:0.672000pt;}
.ls21_c00147{letter-spacing:0.720467pt;}
.lsd_c00147{letter-spacing:0.791340pt;}
.ls10_c00147{letter-spacing:1.459380pt;}
.ls0_c00147{letter-spacing:2.161400pt;}
.lsc_c00147{letter-spacing:2.224800pt;}
.ls2_c00147{letter-spacing:2.882580pt;}
.ls17_c00147{letter-spacing:3.124333pt;}
.ls19_c00147{letter-spacing:3.646300pt;}
.ls3_c00147{letter-spacing:15.129800pt;}
.ws0_c00147{word-spacing:0.000000pt;}
._23_c00147{margin-left:-20.036477pt;}
._12_c00147{margin-left:-14.798162pt;}
._15_c00147{margin-left:-12.653957pt;}
._9_c00147{margin-left:-8.738895pt;}
._1a_c00147{margin-left:-7.301431pt;}
._13_c00147{margin-left:-5.972185pt;}
._b_c00147{margin-left:-4.319431pt;}
._1b_c00147{margin-left:-3.428277pt;}
._8_c00147{margin-left:-2.125846pt;}
._14_c00147{margin-left:-0.902892pt;}
._c_c00147{width:1.395585pt;}
._a_c00147{width:2.489469pt;}
._0_c00147{width:3.710485pt;}
._2_c00147{width:5.201269pt;}
._3_c00147{width:6.323854pt;}
._1c_c00147{width:7.781631pt;}
._10_c00147{width:8.855431pt;}
._1_c00147{width:10.357110pt;}
._11_c00147{width:11.430731pt;}
._f_c00147{width:12.578623pt;}
._6_c00147{width:13.578546pt;}
._1e_c00147{width:14.944074pt;}
._17_c00147{width:16.373544pt;}
._7_c00147{width:18.069423pt;}
._18_c00147{width:19.088838pt;}
._d_c00147{width:20.437523pt;}
._19_c00147{width:21.656699pt;}
._5_c00147{width:22.660669pt;}
._4_c00147{width:24.488272pt;}
._21_c00147{width:25.572697pt;}
._22_c00147{width:26.828640pt;}
._e_c00147{width:28.104987pt;}
._24_c00147{width:28.997538pt;}
._25_c00147{width:31.878905pt;}
._26_c00147{width:35.539043pt;}
._1d_c00147{width:37.358892pt;}
._1f_c00147{width:41.366258pt;}
._20_c00147{width:42.408157pt;}
._16_c00147{width:50.128185pt;}
.fs9_c00147{font-size:60.666667pt;}
.fsd_c00147{font-size:66.896587pt;}
.fs6_c00147{font-size:69.333333pt;}
.fs0_c00147{font-size:70.000000pt;}
.fsc_c00147{font-size:70.666667pt;}
.fs1_c00147{font-size:71.333333pt;}
.fs2_c00147{font-size:72.000000pt;}
.fs3_c00147{font-size:72.666667pt;}
.fsa_c00147{font-size:73.333333pt;}
.fsb_c00147{font-size:74.000000pt;}
.fs4_c00147{font-size:76.000000pt;}
.fs5_c00147{font-size:78.000000pt;}
.fs7_c00147{font-size:80.000000pt;}
.fs8_c00147{font-size:85.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y2d_c00147{bottom:159.680667pt;}
.y2c_c00147{bottom:185.920253pt;}
.y2b_c00147{bottom:212.480000pt;}
.y2a_c00147{bottom:212.480920pt;}
.y29_c00147{bottom:239.040667pt;}
.y27_c00147{bottom:265.278907pt;}
.y28_c00147{bottom:265.280253pt;}
.y26_c00147{bottom:291.838667pt;}
.y25_c00147{bottom:318.079853pt;}
.y24_c00147{bottom:344.639613pt;}
.y23_c00147{bottom:398.080120pt;}
.y21_c00147{bottom:424.640587pt;}
.y22_c00147{bottom:424.640667pt;}
.y1f_c00147{bottom:451.519840pt;}
.y20_c00147{bottom:451.520507pt;}
.y1e_c00147{bottom:478.079587pt;}
.y1c_c00147{bottom:504.640053pt;}
.y1d_c00147{bottom:504.640133pt;}
.y1a_c00147{bottom:531.519653pt;}
.y1b_c00147{bottom:531.519973pt;}
.y18_c00147{bottom:558.079813pt;}
.y19_c00147{bottom:558.080520pt;}
.y17_c00147{bottom:584.639573pt;}
.y16_c00147{bottom:584.640360pt;}
.y15_c00147{bottom:611.200120pt;}
.y14_c00147{bottom:637.759320pt;}
.y13_c00147{bottom:664.640667pt;}
.y12_c00147{bottom:664.641360pt;}
.y11_c00147{bottom:691.839840pt;}
.y10_c00147{bottom:691.840640pt;}
.yf_c00147{bottom:718.400387pt;}
.yd_c00147{bottom:772.159773pt;}
.ye_c00147{bottom:772.160080pt;}
.yc_c00147{bottom:799.359293pt;}
.ya_c00147{bottom:825.600000pt;}
.yb_c00147{bottom:825.600507pt;}
.y9_c00147{bottom:852.159747pt;}
.y8_c00147{bottom:879.039547pt;}
.y7_c00147{bottom:879.041133pt;}
.y6_c00147{bottom:905.600893pt;}
.y5_c00147{bottom:932.160640pt;}
.y4_c00147{bottom:959.040533pt;}
.y2_c00147{bottom:985.920293pt;}
.y3_c00147{bottom:985.920413pt;}
.y1_c00147{bottom:1012.800213pt;}
.hc_c00147{height:61.140625pt;}
.h14_c00147{height:65.655341pt;}
.h13_c00147{height:68.013021pt;}
.h1_c00147{height:68.701172pt;}
.h11_c00147{height:69.355469pt;}
.h8_c00147{height:69.875000pt;}
.h2_c00147{height:69.974935pt;}
.h12_c00147{height:70.009766pt;}
.he_c00147{height:70.546875pt;}
.h3_c00147{height:70.628906pt;}
.hb_c00147{height:70.664062pt;}
.hf_c00147{height:71.156250pt;}
.hd_c00147{height:71.936849pt;}
.h5_c00147{height:72.562500pt;}
.h10_c00147{height:72.626953pt;}
.h4_c00147{height:73.234375pt;}
.h6_c00147{height:74.552734pt;}
.h7_c00147{height:76.514648pt;}
.h9_c00147{height:83.437500pt;}
.ha_c00147{height:89.000000pt;}
.h0_c00147{height:1122.666667pt;}
.w0_c00147{width:793.333333pt;}
.x0_c00147{left:0.000000pt;}
.x23_c00147{left:122.559067pt;}
.x1_c00147{left:123.518533pt;}
.x4_c00147{left:138.238813pt;}
.x24_c00147{left:145.918920pt;}
.x2_c00147{left:185.919453pt;}
.x16_c00147{left:197.119587pt;}
.x7_c00147{left:205.440000pt;}
.x21_c00147{left:207.679733pt;}
.x17_c00147{left:209.279333pt;}
.x2e_c00147{left:212.799333pt;}
.x32_c00147{left:214.079587pt;}
.x8_c00147{left:260.799333pt;}
.x3e_c00147{left:262.079587pt;}
.xd_c00147{left:270.719200pt;}
.x3f_c00147{left:276.479067pt;}
.x5_c00147{left:281.919453pt;}
.x11_c00147{left:293.438920pt;}
.x9_c00147{left:309.439453pt;}
.x3_c00147{left:315.518533pt;}
.x1b_c00147{left:354.878907pt;}
.x38_c00147{left:356.799320pt;}
.xa_c00147{left:362.239707pt;}
.x1c_c00147{left:367.999467pt;}
.x39_c00147{left:378.559573pt;}
.x37_c00147{left:381.758787pt;}
.xe_c00147{left:384.319333pt;}
.x14_c00147{left:388.158693pt;}
.x12_c00147{left:399.039587pt;}
.x18_c00147{left:400.960000pt;}
.x1d_c00147{left:405.118693pt;}
.x2c_c00147{left:407.039067pt;}
.x1e_c00147{left:416.318813pt;}
.x3a_c00147{left:421.439987pt;}
.x3b_c00147{left:433.599613pt;}
.x42_c00147{left:435.518520pt;}
.xb_c00147{left:440.958907pt;}
.x25_c00147{left:447.999067pt;}
.xf_c00147{left:453.118693pt;}
.x29_c00147{left:462.079067pt;}
.x43_c00147{left:475.199707pt;}
.x22_c00147{left:476.159173pt;}
.x27_c00147{left:485.438920pt;}
.x2d_c00147{left:507.199173pt;}
.x33_c00147{left:513.279707pt;}
.x3c_c00147{left:516.799840pt;}
.x34_c00147{left:535.678707pt;}
.x15_c00147{left:537.599040pt;}
.x19_c00147{left:539.519453pt;}
.x2f_c00147{left:540.479040pt;}
.x36_c00147{left:541.439987pt;}
.x1a_c00147{left:549.758787pt;}
.xc_c00147{left:551.359867pt;}
.x40_c00147{left:554.239707pt;}
.x1f_c00147{left:560.639573pt;}
.x41_c00147{left:566.718787pt;}
.x10_c00147{left:570.878907pt;}
.x35_c00147{left:578.559040pt;}
.x26_c00147{left:581.438920pt;}
.x2a_c00147{left:589.119187pt;}
.x13_c00147{left:591.039587pt;}
.x30_c00147{left:606.079067pt;}
.x6_c00147{left:624.000000pt;}
.x31_c00147{left:626.879840pt;}
.x3d_c00147{left:643.199707pt;}
.x28_c00147{left:644.479987pt;}
.x20_c00147{left:655.999427pt;}
.x2b_c00147{left:670.719720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13ff6ab9d53150c28a021360.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_4de37bb2eac01c7aad70e5b0.woff2')format("woff");}.ff2_c00148{font-family:ff2_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;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_015af9f2d716ca22d4a7f7b7.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_c248cb8ae1b9521eac482683.woff2')format("woff");}.ff5_c00148{font-family:ff5_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:ff6_c00148;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff6_c00148{font-family:ff6_c00148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00148{transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);}
.m17_c00148{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{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);}
.m6_c00148{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c00148{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.md_c00148{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m14_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.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m10_c00148{transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.555825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555825,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls18_c00148{letter-spacing:-13.155675px;}
.ls10_c00148{letter-spacing:-12.687675px;}
.ls13_c00148{letter-spacing:-12.226305px;}
.ls24_c00148{letter-spacing:-10.396800px;}
.ls1c_c00148{letter-spacing:-10.152150px;}
.ls11_c00148{letter-spacing:-8.914500px;}
.ls12_c00148{letter-spacing:-8.175038px;}
.lsd_c00148{letter-spacing:-7.595033px;}
.ls23_c00148{letter-spacing:-6.685875px;}
.ls27_c00148{letter-spacing:-6.534900px;}
.ls22_c00148{letter-spacing:-6.097050px;}
.lse_c00148{letter-spacing:-5.945625px;}
.lsc_c00148{letter-spacing:-5.196713px;}
.ls20_c00148{letter-spacing:-4.972538px;}
.ls21_c00148{letter-spacing:-4.953233px;}
.ls4_c00148{letter-spacing:-4.456463px;}
.ls17_c00148{letter-spacing:-3.932175px;}
.ls6_c00148{letter-spacing:-3.717000px;}
.ls14_c00148{letter-spacing:-3.028950px;}
.ls2_c00148{letter-spacing:-2.968875px;}
.ls8_c00148{letter-spacing:-2.477025px;}
.ls3_c00148{letter-spacing:-2.229413px;}
.ls9_c00148{letter-spacing:-1.651350px;}
.ls25_c00148{letter-spacing:-1.636200px;}
.ls26_c00148{letter-spacing:-1.496250px;}
.ls7_c00148{letter-spacing:-1.489163px;}
.lsa_c00148{letter-spacing:-0.825675px;}
.ls5_c00148{letter-spacing:-0.740250px;}
.lsb_c00148{letter-spacing:0.000000px;}
.lsf_c00148{letter-spacing:0.825675px;}
.ls15_c00148{letter-spacing:0.842400px;}
.ls1a_c00148{letter-spacing:0.849420px;}
.ls19_c00148{letter-spacing:1.510500px;}
.ls16_c00148{letter-spacing:1.660050px;}
.ls1e_c00148{letter-spacing:2.295000px;}
.ls0_c00148{letter-spacing:2.968875px;}
.ls1d_c00148{letter-spacing:4.230195px;}
.ls1f_c00148{letter-spacing:5.072100px;}
.ls28_c00148{letter-spacing:6.243450px;}
.ls1b_c00148{letter-spacing:6.868125px;}
.ls1_c00148{letter-spacing:7.431075px;}
.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;}
._20_c00148{margin-left:-14.060868px;}
._1a_c00148{margin-left:-11.209059px;}
._14_c00148{margin-left:-7.475292px;}
._1f_c00148{margin-left:-5.934734px;}
._a_c00148{margin-left:-4.571021px;}
._13_c00148{margin-left:-3.377944px;}
._1_c00148{margin-left:-1.816540px;}
._0_c00148{width:1.235929px;}
._3_c00148{width:2.457550px;}
._5_c00148{width:4.004868px;}
._6_c00148{width:5.152434px;}
._4_c00148{width:6.708222px;}
._d_c00148{width:7.901626px;}
._21_c00148{width:9.057810px;}
._2_c00148{width:10.264513px;}
._7_c00148{width:11.775161px;}
._e_c00148{width:12.838137px;}
._b_c00148{width:14.079311px;}
._f_c00148{width:15.466203px;}
._c_c00148{width:17.005944px;}
._11_c00148{width:18.602176px;}
._15_c00148{width:19.920957px;}
._12_c00148{width:21.672535px;}
._1b_c00148{width:23.144150px;}
._1d_c00148{width:24.779787px;}
._10_c00148{width:26.515066px;}
._16_c00148{width:27.692200px;}
._1c_c00148{width:28.942438px;}
._17_c00148{width:31.082714px;}
._1e_c00148{width:32.647031px;}
._18_c00148{width:34.780275px;}
._8_c00148{width:44.218113px;}
._9_c00148{width:54.003637px;}
._19_c00148{width:127.056900px;}
.fc0_c00148{color:transparent;}
.fsb_c00148{font-size:56.250000px;}
.fse_c00148{font-size:69.000000px;}
.fsc_c00148{font-size:71.250000px;}
.fs3_c00148{font-size:74.250000px;}
.fs9_c00148{font-size:75.000000px;}
.fs7_c00148{font-size:76.500000px;}
.fs8_c00148{font-size:77.250000px;}
.fs6_c00148{font-size:78.000000px;}
.fs0_c00148{font-size:78.750000px;}
.fs4_c00148{font-size:79.500000px;}
.fs5_c00148{font-size:80.250000px;}
.fs10_c00148{font-size:81.000000px;}
.fs1_c00148{font-size:81.750000px;}
.fs2_c00148{font-size:82.500000px;}
.fsa_c00148{font-size:83.250000px;}
.fsf_c00148{font-size:85.500000px;}
.fsd_c00148{font-size:115.500000px;}
.y0_c00148{bottom:0.000000px;}
.y2e_c00148{bottom:178.918860px;}
.y2c_c00148{bottom:208.079940px;}
.y2d_c00148{bottom:208.080000px;}
.y2b_c00148{bottom:238.319850px;}
.y2a_c00148{bottom:297.359250px;}
.y29_c00148{bottom:297.359340px;}
.y28_c00148{bottom:326.878875px;}
.y27_c00148{bottom:357.118785px;}
.y26_c00148{bottom:357.119685px;}
.y25_c00148{bottom:386.999400px;}
.y24_c00148{bottom:387.000255px;}
.y23_c00148{bottom:416.879970px;}
.y22_c00148{bottom:416.880300px;}
.y21_c00148{bottom:446.399820px;}
.y20_c00148{bottom:446.400645px;}
.y1f_c00148{bottom:476.998950px;}
.y1e_c00148{bottom:525.600135px;}
.y1d_c00148{bottom:536.760135px;}
.y1c_c00148{bottom:566.639100px;}
.y1a_c00148{bottom:596.519625px;}
.y1b_c00148{bottom:596.519670px;}
.y18_c00148{bottom:626.758560px;}
.y19_c00148{bottom:626.759535px;}
.y17_c00148{bottom:656.640150px;}
.y16_c00148{bottom:656.640675px;}
.y15_c00148{bottom:686.879970px;}
.y14_c00148{bottom:686.880690px;}
.y13_c00148{bottom:717.119985px;}
.y12_c00148{bottom:751.319820px;}
.y11_c00148{bottom:777.599670px;}
.y10_c00148{bottom:777.600495px;}
.yf_c00148{bottom:808.198785px;}
.ye_c00148{bottom:808.199685px;}
.yd_c00148{bottom:838.079400px;}
.yc_c00148{bottom:838.079640px;}
.yb_c00148{bottom:897.839085px;}
.ya_c00148{bottom:927.358605px;}
.y9_c00148{bottom:927.359505px;}
.y8_c00148{bottom:957.239220px;}
.y6_c00148{bottom:987.479145px;}
.y7_c00148{bottom:987.479190px;}
.y4_c00148{bottom:1017.718785px;}
.y5_c00148{bottom:1017.719055px;}
.y3_c00148{bottom:1048.319820px;}
.y2_c00148{bottom:1107.359115px;}
.y1_c00148{bottom:1137.599025px;}
.h11_c00148{height:56.689453px;}
.h15_c00148{height:71.964844px;}
.h12_c00148{height:74.311523px;}
.ha_c00148{height:75.043213px;}
.h14_c00148{height:75.080566px;}
.hf_c00148{height:76.514648px;}
.h1_c00148{height:77.288818px;}
.h4_c00148{height:77.440430px;}
.h8_c00148{height:78.024902px;}
.he_c00148{height:78.222656px;}
.h6_c00148{height:78.568359px;}
.h9_c00148{height:78.609375px;}
.h7_c00148{height:78.760986px;}
.h17_c00148{height:79.497070px;}
.hd_c00148{height:80.121094px;}
.h2_c00148{height:80.193237px;}
.hc_c00148{height:80.569336px;}
.h3_c00148{height:80.969238px;}
.h5_c00148{height:81.533203px;}
.h10_c00148{height:81.664673px;}
.hb_c00148{height:82.388672px;}
.h16_c00148{height:84.498047px;}
.h13_c00148{height:120.462891px;}
.h0_c00148{height:1263.000000px;}
.w0_c00148{width:892.500000px;}
.x0_c00148{left:0.000000px;}
.x31_c00148{left:97.919565px;}
.x23_c00148{left:136.800435px;}
.x2_c00148{left:140.039400px;}
.x1_c00148{left:141.479715px;}
.x2e_c00148{left:210.599700px;}
.x16_c00148{left:212.758500px;}
.xb_c00148{left:218.878950px;}
.x8_c00148{left:228.598500px;}
.x17_c00148{left:234.719100px;}
.xc_c00148{left:239.040000px;}
.x35_c00148{left:255.239250px;}
.x38_c00148{left:267.478635px;}
.x36_c00148{left:269.639100px;}
.x3d_c00148{left:279.719535px;}
.x39_c00148{left:295.559685px;}
.x3e_c00148{left:298.799535px;}
.x26_c00148{left:304.199850px;}
.x27_c00148{left:313.199385px;}
.x30_c00148{left:319.319850px;}
.xd_c00148{left:324.359250px;}
.x18_c00148{left:326.519685px;}
.xe_c00148{left:343.080000px;}
.x21_c00148{left:361.798950px;}
.x37_c00148{left:378.718530px;}
.x19_c00148{left:388.439715px;}
.x3b_c00148{left:407.158770px;}
.x3_c00148{left:412.559100px;}
.x3c_c00148{left:428.758530px;}
.x24_c00148{left:433.079400px;}
.x33_c00148{left:434.878920px;}
.x1a_c00148{left:438.118785px;}
.x34_c00148{left:448.199385px;}
.x1b_c00148{left:450.719100px;}
.x2b_c00148{left:461.158770px;}
.x1c_c00148{left:473.038920px;}
.x11_c00148{left:489.239820px;}
.x22_c00148{left:492.479685px;}
.x4_c00148{left:497.159820px;}
.x12_c00148{left:505.439250px;}
.xf_c00148{left:509.039985px;}
.x2f_c00148{left:521.279250px;}
.x10_c00148{left:523.439670px;}
.x28_c00148{left:535.679070px;}
.xa_c00148{left:545.398635px;}
.x1d_c00148{left:559.798515px;}
.x15_c00148{left:576.358665px;}
.x3a_c00148{left:582.479235px;}
.x2c_c00148{left:606.598530px;}
.x13_c00148{left:618.119385px;}
.x5_c00148{left:629.999400px;}
.x14_c00148{left:645.478635px;}
.x29_c00148{left:665.278800px;}
.x9_c00148{left:686.159820px;}
.x1e_c00148{left:692.639700px;}
.x6_c00148{left:708.479685px;}
.x25_c00148{left:718.919535px;}
.x7_c00148{left:730.438620px;}
.x1f_c00148{left:736.559100px;}
.x2a_c00148{left:737.999355px;}
.x20_c00148{left:748.798560px;}
.x32_c00148{left:756.718545px;}
.x2d_c00148{left:765.358605px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls18_c00148{letter-spacing:-11.693933pt;}
.ls10_c00148{letter-spacing:-11.277933pt;}
.ls13_c00148{letter-spacing:-10.867827pt;}
.ls24_c00148{letter-spacing:-9.241600pt;}
.ls1c_c00148{letter-spacing:-9.024133pt;}
.ls11_c00148{letter-spacing:-7.924000pt;}
.ls12_c00148{letter-spacing:-7.266700pt;}
.lsd_c00148{letter-spacing:-6.751140pt;}
.ls23_c00148{letter-spacing:-5.943000pt;}
.ls27_c00148{letter-spacing:-5.808800pt;}
.ls22_c00148{letter-spacing:-5.419600pt;}
.lse_c00148{letter-spacing:-5.285000pt;}
.lsc_c00148{letter-spacing:-4.619300pt;}
.ls20_c00148{letter-spacing:-4.420033pt;}
.ls21_c00148{letter-spacing:-4.402873pt;}
.ls4_c00148{letter-spacing:-3.961300pt;}
.ls17_c00148{letter-spacing:-3.495267pt;}
.ls6_c00148{letter-spacing:-3.304000pt;}
.ls14_c00148{letter-spacing:-2.692400pt;}
.ls2_c00148{letter-spacing:-2.639000pt;}
.ls8_c00148{letter-spacing:-2.201800pt;}
.ls3_c00148{letter-spacing:-1.981700pt;}
.ls9_c00148{letter-spacing:-1.467867pt;}
.ls25_c00148{letter-spacing:-1.454400pt;}
.ls26_c00148{letter-spacing:-1.330000pt;}
.ls7_c00148{letter-spacing:-1.323700pt;}
.lsa_c00148{letter-spacing:-0.733933pt;}
.ls5_c00148{letter-spacing:-0.658000pt;}
.lsb_c00148{letter-spacing:0.000000pt;}
.lsf_c00148{letter-spacing:0.733933pt;}
.ls15_c00148{letter-spacing:0.748800pt;}
.ls1a_c00148{letter-spacing:0.755040pt;}
.ls19_c00148{letter-spacing:1.342667pt;}
.ls16_c00148{letter-spacing:1.475600pt;}
.ls1e_c00148{letter-spacing:2.040000pt;}
.ls0_c00148{letter-spacing:2.639000pt;}
.ls1d_c00148{letter-spacing:3.760173pt;}
.ls1f_c00148{letter-spacing:4.508533pt;}
.ls28_c00148{letter-spacing:5.549733pt;}
.ls1b_c00148{letter-spacing:6.105000pt;}
.ls1_c00148{letter-spacing:6.605400pt;}
.ws0_c00148{word-spacing:0.000000pt;}
._20_c00148{margin-left:-12.498549pt;}
._1a_c00148{margin-left:-9.963608pt;}
._14_c00148{margin-left:-6.644704pt;}
._1f_c00148{margin-left:-5.275319pt;}
._a_c00148{margin-left:-4.063130pt;}
._13_c00148{margin-left:-3.002617pt;}
._1_c00148{margin-left:-1.614702pt;}
._0_c00148{width:1.098604pt;}
._3_c00148{width:2.184489pt;}
._5_c00148{width:3.559883pt;}
._6_c00148{width:4.579942pt;}
._4_c00148{width:5.962864pt;}
._d_c00148{width:7.023668pt;}
._21_c00148{width:8.051387pt;}
._2_c00148{width:9.124011pt;}
._7_c00148{width:10.466809pt;}
._e_c00148{width:11.411677pt;}
._b_c00148{width:12.514943pt;}
._f_c00148{width:13.747736pt;}
._c_c00148{width:15.116394pt;}
._11_c00148{width:16.535268pt;}
._15_c00148{width:17.707517pt;}
._12_c00148{width:19.264475pt;}
._1b_c00148{width:20.572577pt;}
._1d_c00148{width:22.026477pt;}
._10_c00148{width:23.568947pt;}
._16_c00148{width:24.615289pt;}
._1c_c00148{width:25.726611pt;}
._17_c00148{width:27.629079pt;}
._1e_c00148{width:29.019583pt;}
._18_c00148{width:30.915800pt;}
._8_c00148{width:39.304989pt;}
._9_c00148{width:48.003233pt;}
._19_c00148{width:112.939467pt;}
.fsb_c00148{font-size:50.000000pt;}
.fse_c00148{font-size:61.333333pt;}
.fsc_c00148{font-size:63.333333pt;}
.fs3_c00148{font-size:66.000000pt;}
.fs9_c00148{font-size:66.666667pt;}
.fs7_c00148{font-size:68.000000pt;}
.fs8_c00148{font-size:68.666667pt;}
.fs6_c00148{font-size:69.333333pt;}
.fs0_c00148{font-size:70.000000pt;}
.fs4_c00148{font-size:70.666667pt;}
.fs5_c00148{font-size:71.333333pt;}
.fs10_c00148{font-size:72.000000pt;}
.fs1_c00148{font-size:72.666667pt;}
.fs2_c00148{font-size:73.333333pt;}
.fsa_c00148{font-size:74.000000pt;}
.fsf_c00148{font-size:76.000000pt;}
.fsd_c00148{font-size:102.666667pt;}
.y0_c00148{bottom:0.000000pt;}
.y2e_c00148{bottom:159.038987pt;}
.y2c_c00148{bottom:184.959947pt;}
.y2d_c00148{bottom:184.960000pt;}
.y2b_c00148{bottom:211.839867pt;}
.y2a_c00148{bottom:264.319333pt;}
.y29_c00148{bottom:264.319413pt;}
.y28_c00148{bottom:290.559000pt;}
.y27_c00148{bottom:317.438920pt;}
.y26_c00148{bottom:317.439720pt;}
.y25_c00148{bottom:343.999467pt;}
.y24_c00148{bottom:344.000227pt;}
.y23_c00148{bottom:370.559973pt;}
.y22_c00148{bottom:370.560267pt;}
.y21_c00148{bottom:396.799840pt;}
.y20_c00148{bottom:396.800573pt;}
.y1f_c00148{bottom:423.999067pt;}
.y1e_c00148{bottom:467.200120pt;}
.y1d_c00148{bottom:477.120120pt;}
.y1c_c00148{bottom:503.679200pt;}
.y1a_c00148{bottom:530.239667pt;}
.y1b_c00148{bottom:530.239707pt;}
.y18_c00148{bottom:557.118720pt;}
.y19_c00148{bottom:557.119587pt;}
.y17_c00148{bottom:583.680133pt;}
.y16_c00148{bottom:583.680600pt;}
.y15_c00148{bottom:610.559973pt;}
.y14_c00148{bottom:610.560613pt;}
.y13_c00148{bottom:637.439987pt;}
.y12_c00148{bottom:667.839840pt;}
.y11_c00148{bottom:691.199707pt;}
.y10_c00148{bottom:691.200440pt;}
.yf_c00148{bottom:718.398920pt;}
.ye_c00148{bottom:718.399720pt;}
.yd_c00148{bottom:744.959467pt;}
.yc_c00148{bottom:744.959680pt;}
.yb_c00148{bottom:798.079187pt;}
.ya_c00148{bottom:824.318760pt;}
.y9_c00148{bottom:824.319560pt;}
.y8_c00148{bottom:850.879307pt;}
.y6_c00148{bottom:877.759240pt;}
.y7_c00148{bottom:877.759280pt;}
.y4_c00148{bottom:904.638920pt;}
.y5_c00148{bottom:904.639160pt;}
.y3_c00148{bottom:931.839840pt;}
.y2_c00148{bottom:984.319213pt;}
.y1_c00148{bottom:1011.199133pt;}
.h11_c00148{height:50.390625pt;}
.h15_c00148{height:63.968750pt;}
.h12_c00148{height:66.054688pt;}
.ha_c00148{height:66.705078pt;}
.h14_c00148{height:66.738281pt;}
.hf_c00148{height:68.013021pt;}
.h1_c00148{height:68.701172pt;}
.h4_c00148{height:68.835938pt;}
.h8_c00148{height:69.355469pt;}
.he_c00148{height:69.531250pt;}
.h6_c00148{height:69.838542pt;}
.h9_c00148{height:69.875000pt;}
.h7_c00148{height:70.009766pt;}
.h17_c00148{height:70.664062pt;}
.hd_c00148{height:71.218750pt;}
.h2_c00148{height:71.282878pt;}
.hc_c00148{height:71.617188pt;}
.h3_c00148{height:71.972656pt;}
.h5_c00148{height:72.473958pt;}
.h10_c00148{height:72.590820pt;}
.hb_c00148{height:73.234375pt;}
.h16_c00148{height:75.109375pt;}
.h13_c00148{height:107.078125pt;}
.h0_c00148{height:1122.666667pt;}
.w0_c00148{width:793.333333pt;}
.x0_c00148{left:0.000000pt;}
.x31_c00148{left:87.039613pt;}
.x23_c00148{left:121.600387pt;}
.x2_c00148{left:124.479467pt;}
.x1_c00148{left:125.759747pt;}
.x2e_c00148{left:187.199733pt;}
.x16_c00148{left:189.118667pt;}
.xb_c00148{left:194.559067pt;}
.x8_c00148{left:203.198667pt;}
.x17_c00148{left:208.639200pt;}
.xc_c00148{left:212.480000pt;}
.x35_c00148{left:226.879333pt;}
.x38_c00148{left:237.758787pt;}
.x36_c00148{left:239.679200pt;}
.x3d_c00148{left:248.639587pt;}
.x39_c00148{left:262.719720pt;}
.x3e_c00148{left:265.599587pt;}
.x26_c00148{left:270.399867pt;}
.x27_c00148{left:278.399453pt;}
.x30_c00148{left:283.839867pt;}
.xd_c00148{left:288.319333pt;}
.x18_c00148{left:290.239720pt;}
.xe_c00148{left:304.960000pt;}
.x21_c00148{left:321.599067pt;}
.x37_c00148{left:336.638693pt;}
.x19_c00148{left:345.279747pt;}
.x3b_c00148{left:361.918907pt;}
.x3_c00148{left:366.719200pt;}
.x3c_c00148{left:381.118693pt;}
.x24_c00148{left:384.959467pt;}
.x33_c00148{left:386.559040pt;}
.x1a_c00148{left:389.438920pt;}
.x34_c00148{left:398.399453pt;}
.x1b_c00148{left:400.639200pt;}
.x2b_c00148{left:409.918907pt;}
.x1c_c00148{left:420.479040pt;}
.x11_c00148{left:434.879840pt;}
.x22_c00148{left:437.759720pt;}
.x4_c00148{left:441.919840pt;}
.x12_c00148{left:449.279333pt;}
.xf_c00148{left:452.479987pt;}
.x2f_c00148{left:463.359333pt;}
.x10_c00148{left:465.279707pt;}
.x28_c00148{left:476.159173pt;}
.xa_c00148{left:484.798787pt;}
.x1d_c00148{left:497.598680pt;}
.x15_c00148{left:512.318813pt;}
.x3a_c00148{left:517.759320pt;}
.x2c_c00148{left:539.198693pt;}
.x13_c00148{left:549.439453pt;}
.x5_c00148{left:559.999467pt;}
.x14_c00148{left:573.758787pt;}
.x29_c00148{left:591.358933pt;}
.x9_c00148{left:609.919840pt;}
.x1e_c00148{left:615.679733pt;}
.x6_c00148{left:629.759720pt;}
.x25_c00148{left:639.039587pt;}
.x7_c00148{left:649.278773pt;}
.x1f_c00148{left:654.719200pt;}
.x2a_c00148{left:655.999427pt;}
.x20_c00148{left:665.598720pt;}
.x32_c00148{left:672.638707pt;}
.x2d_c00148{left:680.318760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a78926aa8e24f729055bad27.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.364746;font-style:normal;font-weight:normal;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_58cc4b8d726ed3b147ce1e9b.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_322d6ae3394f9439b2102a79.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_c22b89f72d96b4bbac22773b.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_a05a963d9ecffccc5b8d55d1.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00149;src:url('chunks/assets/font_4cba7bab78e26ba64cf2f3e4.woff2')format("woff");}.ff7_c00149{font-family:ff7_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;}
.m4_c00149{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.192771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192771,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m13_c00149{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls28_c00149{letter-spacing:-16.095750px;}
.ls1d_c00149{letter-spacing:-13.570650px;}
.lse_c00149{letter-spacing:-12.687675px;}
.lsf_c00149{letter-spacing:-9.414600px;}
.ls1e_c00149{letter-spacing:-8.175038px;}
.lsd_c00149{letter-spacing:-7.426125px;}
.ls4_c00149{letter-spacing:-6.685875px;}
.ls9_c00149{letter-spacing:-5.945625px;}
.ls6_c00149{letter-spacing:-5.196713px;}
.ls20_c00149{letter-spacing:-4.735350px;}
.ls22_c00149{letter-spacing:-4.503600px;}
.lsb_c00149{letter-spacing:-4.456463px;}
.ls26_c00149{letter-spacing:-4.324800px;}
.ls7_c00149{letter-spacing:-3.717000px;}
.ls12_c00149{letter-spacing:-3.242903px;}
.ls1f_c00149{letter-spacing:-3.110250px;}
.ls1c_c00149{letter-spacing:-2.972700px;}
.ls3_c00149{letter-spacing:-2.968875px;}
.ls27_c00149{letter-spacing:-2.590905px;}
.ls13_c00149{letter-spacing:-2.431575px;}
.ls5_c00149{letter-spacing:-2.229413px;}
.ls24_c00149{letter-spacing:-1.844948px;}
.ls10_c00149{letter-spacing:-1.621050px;}
.ls1a_c00149{letter-spacing:-1.573703px;}
.ls18_c00149{letter-spacing:-1.560000px;}
.ls8_c00149{letter-spacing:-1.489163px;}
.ls25_c00149{letter-spacing:-1.382505px;}
.ls11_c00149{letter-spacing:-0.810525px;}
.ls21_c00149{letter-spacing:-0.786450px;}
.lsc_c00149{letter-spacing:-0.740250px;}
.lsa_c00149{letter-spacing:0.000000px;}
.ls19_c00149{letter-spacing:0.803250px;}
.ls14_c00149{letter-spacing:0.810525px;}
.ls23_c00149{letter-spacing:1.591200px;}
.ls1b_c00149{letter-spacing:1.823310px;}
.ls15_c00149{letter-spacing:2.512800px;}
.ls0_c00149{letter-spacing:2.968875px;}
.ls2_c00149{letter-spacing:3.347280px;}
.ls16_c00149{letter-spacing:3.386250px;}
.ls1_c00149{letter-spacing:5.672873px;}
.ls17_c00149{letter-spacing:8.751728px;}
.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;}
._18_c00149{margin-left:-12.850935px;}
._1f_c00149{margin-left:-10.505033px;}
._1c_c00149{margin-left:-7.206100px;}
._1d_c00149{margin-left:-5.162999px;}
._6_c00149{margin-left:-3.181084px;}
._5_c00149{margin-left:-2.118524px;}
._7_c00149{width:1.674522px;}
._2_c00149{width:2.915295px;}
._4_c00149{width:4.801179px;}
._e_c00149{width:5.932683px;}
._1b_c00149{width:7.109134px;}
._f_c00149{width:8.143166px;}
._0_c00149{width:9.545005px;}
._3_c00149{width:10.695439px;}
._d_c00149{width:12.666655px;}
._11_c00149{width:13.893461px;}
._1e_c00149{width:14.960242px;}
._1_c00149{width:17.009673px;}
._10_c00149{width:18.484467px;}
._c_c00149{width:19.932739px;}
._12_c00149{width:21.590605px;}
._b_c00149{width:22.782018px;}
._9_c00149{width:25.353607px;}
._a_c00149{width:26.771880px;}
._13_c00149{width:28.832084px;}
._14_c00149{width:31.055648px;}
._8_c00149{width:35.359107px;}
._15_c00149{width:40.670959px;}
._20_c00149{width:48.764306px;}
._19_c00149{width:57.547005px;}
._16_c00149{width:58.603365px;}
._17_c00149{width:73.733603px;}
._1a_c00149{width:130.931380px;}
.fc0_c00149{color:transparent;}
.fsa_c00149{font-size:62.250000px;}
.fse_c00149{font-size:70.500000px;}
.fsd_c00149{font-size:71.250000px;}
.fs8_c00149{font-size:72.000000px;}
.fs3_c00149{font-size:76.500000px;}
.fs1_c00149{font-size:78.000000px;}
.fs0_c00149{font-size:78.750000px;}
.fsc_c00149{font-size:79.500000px;}
.fs4_c00149{font-size:80.250000px;}
.fsb_c00149{font-size:81.000000px;}
.fs9_c00149{font-size:81.750000px;}
.fs2_c00149{font-size:82.500000px;}
.fs6_c00149{font-size:84.000000px;}
.fs5_c00149{font-size:90.000000px;}
.fs7_c00149{font-size:115.500000px;}
.y0_c00149{bottom:0.000000px;}
.y2c_c00149{bottom:211.680915px;}
.y2b_c00149{bottom:241.200435px;}
.y2a_c00149{bottom:270.720150px;}
.y29_c00149{bottom:300.600750px;}
.y28_c00149{bottom:300.600840px;}
.y27_c00149{bottom:360.360285px;}
.y26_c00149{bottom:360.360630px;}
.y25_c00149{bottom:390.961035px;}
.y23_c00149{bottom:420.119985px;}
.y24_c00149{bottom:420.840135px;}
.y21_c00149{bottom:450.719955px;}
.y22_c00149{bottom:450.720750px;}
.y20_c00149{bottom:480.599670px;}
.y1f_c00149{bottom:510.480330px;}
.y1e_c00149{bottom:540.360060px;}
.y1d_c00149{bottom:570.239775px;}
.y1c_c00149{bottom:600.479685px;}
.y1b_c00149{bottom:600.479715px;}
.y19_c00149{bottom:630.000255px;}
.y1a_c00149{bottom:630.001050px;}
.y18_c00149{bottom:659.879970px;}
.y17_c00149{bottom:659.880300px;}
.y15_c00149{bottom:689.399775px;}
.y16_c00149{bottom:689.399820px;}
.y14_c00149{bottom:719.639700px;}
.y13_c00149{bottom:751.319820px;}
.y12_c00149{bottom:809.279850px;}
.y11_c00149{bottom:839.880615px;}
.y10_c00149{bottom:869.759490px;}
.ye_c00149{bottom:899.640060px;}
.yf_c00149{bottom:899.640105px;}
.yd_c00149{bottom:929.879970px;}
.yc_c00149{bottom:929.880435px;}
.ya_c00149{bottom:960.480075px;}
.yb_c00149{bottom:960.480840px;}
.y9_c00149{bottom:990.359805px;}
.y8_c00149{bottom:990.360690px;}
.y7_c00149{bottom:1020.240420px;}
.y6_c00149{bottom:1050.121035px;}
.y5_c00149{bottom:1050.121215px;}
.y4_c00149{bottom:1079.640750px;}
.y3_c00149{bottom:1079.640795px;}
.y2_c00149{bottom:1109.520510px;}
.y1_c00149{bottom:1139.400240px;}
.h16_c00149{height:61.520508px;}
.he_c00149{height:64.924805px;}
.h17_c00149{height:71.050781px;}
.h15_c00149{height:74.311523px;}
.h4_c00149{height:75.080566px;}
.hb_c00149{height:75.093750px;}
.h2_c00149{height:76.552734px;}
.h10_c00149{height:77.097656px;}
.h1_c00149{height:77.288818px;}
.h12_c00149{height:78.568359px;}
.hf_c00149{height:78.609375px;}
.h6_c00149{height:78.721802px;}
.h9_c00149{height:78.760986px;}
.hd_c00149{height:79.365234px;}
.h11_c00149{height:79.497070px;}
.h18_c00149{height:80.121094px;}
.hc_c00149{height:80.791992px;}
.h13_c00149{height:80.876953px;}
.h3_c00149{height:80.969238px;}
.h5_c00149{height:81.533203px;}
.h14_c00149{height:81.632812px;}
.h8_c00149{height:87.609375px;}
.h7_c00149{height:93.867188px;}
.ha_c00149{height:120.462891px;}
.h0_c00149{height:1263.000000px;}
.w0_c00149{width:892.500000px;}
.x0_c00149{left:0.000000px;}
.x5_c00149{left:135.359145px;}
.x1_c00149{left:136.438665px;}
.x34_c00149{left:179.998950px;}
.x2d_c00149{left:185.399250px;}
.x35_c00149{left:198.358635px;}
.x39_c00149{left:224.279250px;}
.x20_c00149{left:232.919535px;}
.x2e_c00149{left:241.198785px;}
.x15_c00149{left:255.598500px;}
.x16_c00149{left:270.000000px;}
.x21_c00149{left:280.439685px;}
.x23_c00149{left:281.878350px;}
.x24_c00149{left:295.559685px;}
.x3b_c00149{left:304.199850px;}
.x27_c00149{left:306.358635px;}
.xf_c00149{left:322.198785px;}
.x2f_c00149{left:338.399850px;}
.x3a_c00149{left:367.558635px;}
.x17_c00149{left:370.080000px;}
.x10_c00149{left:389.519070px;}
.x2a_c00149{left:405.000000px;}
.x11_c00149{left:412.559100px;}
.x2b_c00149{left:434.158770px;}
.x30_c00149{left:438.118785px;}
.x18_c00149{left:449.998950px;}
.x6_c00149{left:451.439250px;}
.x19_c00149{left:458.279850px;}
.x22_c00149{left:466.559100px;}
.x7_c00149{left:484.198785px;}
.x25_c00149{left:488.158770px;}
.x31_c00149{left:492.838950px;}
.x26_c00149{left:507.599670px;}
.x32_c00149{left:528.838530px;}
.x1a_c00149{left:541.438620px;}
.xd_c00149{left:543.958335px;}
.x12_c00149{left:560.518620px;}
.x28_c00149{left:570.958335px;}
.x29_c00149{left:584.639700px;}
.x33_c00149{left:588.599670px;}
.x13_c00149{left:624.958335px;}
.x36_c00149{left:646.918950px;}
.x14_c00149{left:648.359250px;}
.x2c_c00149{left:651.239820px;}
.x1b_c00149{left:654.479685px;}
.xa_c00149{left:655.559100px;}
.x8_c00149{left:658.798920px;}
.x37_c00149{left:662.038920px;}
.xb_c00149{left:669.958920px;}
.x9_c00149{left:680.759535px;}
.x1e_c00149{left:682.918350px;}
.x2_c00149{left:685.798920px;}
.x1c_c00149{left:688.318770px;}
.xc_c00149{left:693.359850px;}
.x3_c00149{left:704.878920px;}
.xe_c00149{left:706.319235px;}
.x1f_c00149{left:709.559100px;}
.x1d_c00149{left:724.679070px;}
.x38_c00149{left:763.199850px;}
.x4_c00149{left:768.239220px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls28_c00149{letter-spacing:-14.307333pt;}
.ls1d_c00149{letter-spacing:-12.062800pt;}
.lse_c00149{letter-spacing:-11.277933pt;}
.lsf_c00149{letter-spacing:-8.368533pt;}
.ls1e_c00149{letter-spacing:-7.266700pt;}
.lsd_c00149{letter-spacing:-6.601000pt;}
.ls4_c00149{letter-spacing:-5.943000pt;}
.ls9_c00149{letter-spacing:-5.285000pt;}
.ls6_c00149{letter-spacing:-4.619300pt;}
.ls20_c00149{letter-spacing:-4.209200pt;}
.ls22_c00149{letter-spacing:-4.003200pt;}
.lsb_c00149{letter-spacing:-3.961300pt;}
.ls26_c00149{letter-spacing:-3.844267pt;}
.ls7_c00149{letter-spacing:-3.304000pt;}
.ls12_c00149{letter-spacing:-2.882580pt;}
.ls1f_c00149{letter-spacing:-2.764667pt;}
.ls1c_c00149{letter-spacing:-2.642400pt;}
.ls3_c00149{letter-spacing:-2.639000pt;}
.ls27_c00149{letter-spacing:-2.303027pt;}
.ls13_c00149{letter-spacing:-2.161400pt;}
.ls5_c00149{letter-spacing:-1.981700pt;}
.ls24_c00149{letter-spacing:-1.639953pt;}
.ls10_c00149{letter-spacing:-1.440933pt;}
.ls1a_c00149{letter-spacing:-1.398847pt;}
.ls18_c00149{letter-spacing:-1.386667pt;}
.ls8_c00149{letter-spacing:-1.323700pt;}
.ls25_c00149{letter-spacing:-1.228893pt;}
.ls11_c00149{letter-spacing:-0.720467pt;}
.ls21_c00149{letter-spacing:-0.699067pt;}
.lsc_c00149{letter-spacing:-0.658000pt;}
.lsa_c00149{letter-spacing:0.000000pt;}
.ls19_c00149{letter-spacing:0.714000pt;}
.ls14_c00149{letter-spacing:0.720467pt;}
.ls23_c00149{letter-spacing:1.414400pt;}
.ls1b_c00149{letter-spacing:1.620720pt;}
.ls15_c00149{letter-spacing:2.233600pt;}
.ls0_c00149{letter-spacing:2.639000pt;}
.ls2_c00149{letter-spacing:2.975360pt;}
.ls16_c00149{letter-spacing:3.010000pt;}
.ls1_c00149{letter-spacing:5.042553pt;}
.ls17_c00149{letter-spacing:7.779313pt;}
.ws0_c00149{word-spacing:0.000000pt;}
._18_c00149{margin-left:-11.423053pt;}
._1f_c00149{margin-left:-9.337807pt;}
._1c_c00149{margin-left:-6.405423pt;}
._1d_c00149{margin-left:-4.589332pt;}
._6_c00149{margin-left:-2.827630pt;}
._5_c00149{margin-left:-1.883132pt;}
._7_c00149{width:1.488464pt;}
._2_c00149{width:2.591374pt;}
._4_c00149{width:4.267715pt;}
._e_c00149{width:5.273496pt;}
._1b_c00149{width:6.319230pt;}
._f_c00149{width:7.238370pt;}
._0_c00149{width:8.484449pt;}
._3_c00149{width:9.507057pt;}
._d_c00149{width:11.259249pt;}
._11_c00149{width:12.349743pt;}
._1e_c00149{width:13.297992pt;}
._1_c00149{width:15.119709pt;}
._10_c00149{width:16.430638pt;}
._c_c00149{width:17.717991pt;}
._12_c00149{width:19.191649pt;}
._b_c00149{width:20.250683pt;}
._9_c00149{width:22.536540pt;}
._a_c00149{width:23.797226pt;}
._13_c00149{width:25.628519pt;}
._14_c00149{width:27.605020pt;}
._8_c00149{width:31.430317pt;}
._15_c00149{width:36.151964pt;}
._20_c00149{width:43.346050pt;}
._19_c00149{width:51.152893pt;}
._16_c00149{width:52.091880pt;}
._17_c00149{width:65.540980pt;}
._1a_c00149{width:116.383449pt;}
.fsa_c00149{font-size:55.333333pt;}
.fse_c00149{font-size:62.666667pt;}
.fsd_c00149{font-size:63.333333pt;}
.fs8_c00149{font-size:64.000000pt;}
.fs3_c00149{font-size:68.000000pt;}
.fs1_c00149{font-size:69.333333pt;}
.fs0_c00149{font-size:70.000000pt;}
.fsc_c00149{font-size:70.666667pt;}
.fs4_c00149{font-size:71.333333pt;}
.fsb_c00149{font-size:72.000000pt;}
.fs9_c00149{font-size:72.666667pt;}
.fs2_c00149{font-size:73.333333pt;}
.fs6_c00149{font-size:74.666667pt;}
.fs5_c00149{font-size:80.000000pt;}
.fs7_c00149{font-size:102.666667pt;}
.y0_c00149{bottom:0.000000pt;}
.y2c_c00149{bottom:188.160813pt;}
.y2b_c00149{bottom:214.400387pt;}
.y2a_c00149{bottom:240.640133pt;}
.y29_c00149{bottom:267.200667pt;}
.y28_c00149{bottom:267.200747pt;}
.y27_c00149{bottom:320.320253pt;}
.y26_c00149{bottom:320.320560pt;}
.y25_c00149{bottom:347.520920pt;}
.y23_c00149{bottom:373.439987pt;}
.y24_c00149{bottom:374.080120pt;}
.y21_c00149{bottom:400.639960pt;}
.y22_c00149{bottom:400.640667pt;}
.y20_c00149{bottom:427.199707pt;}
.y1f_c00149{bottom:453.760293pt;}
.y1e_c00149{bottom:480.320053pt;}
.y1d_c00149{bottom:506.879800pt;}
.y1c_c00149{bottom:533.759720pt;}
.y1b_c00149{bottom:533.759747pt;}
.y19_c00149{bottom:560.000227pt;}
.y1a_c00149{bottom:560.000933pt;}
.y18_c00149{bottom:586.559973pt;}
.y17_c00149{bottom:586.560267pt;}
.y15_c00149{bottom:612.799800pt;}
.y16_c00149{bottom:612.799840pt;}
.y14_c00149{bottom:639.679733pt;}
.y13_c00149{bottom:667.839840pt;}
.y12_c00149{bottom:719.359867pt;}
.y11_c00149{bottom:746.560547pt;}
.y10_c00149{bottom:773.119547pt;}
.ye_c00149{bottom:799.680053pt;}
.yf_c00149{bottom:799.680093pt;}
.yd_c00149{bottom:826.559973pt;}
.yc_c00149{bottom:826.560387pt;}
.ya_c00149{bottom:853.760067pt;}
.yb_c00149{bottom:853.760747pt;}
.y9_c00149{bottom:880.319827pt;}
.y8_c00149{bottom:880.320613pt;}
.y7_c00149{bottom:906.880373pt;}
.y6_c00149{bottom:933.440920pt;}
.y5_c00149{bottom:933.441080pt;}
.y4_c00149{bottom:959.680667pt;}
.y3_c00149{bottom:959.680707pt;}
.y2_c00149{bottom:986.240453pt;}
.y1_c00149{bottom:1012.800213pt;}
.h16_c00149{height:54.684896pt;}
.he_c00149{height:57.710938pt;}
.h17_c00149{height:63.156250pt;}
.h15_c00149{height:66.054688pt;}
.h4_c00149{height:66.738281pt;}
.hb_c00149{height:66.750000pt;}
.h2_c00149{height:68.046875pt;}
.h10_c00149{height:68.531250pt;}
.h1_c00149{height:68.701172pt;}
.h12_c00149{height:69.838542pt;}
.hf_c00149{height:69.875000pt;}
.h6_c00149{height:69.974935pt;}
.h9_c00149{height:70.009766pt;}
.hd_c00149{height:70.546875pt;}
.h11_c00149{height:70.664062pt;}
.h18_c00149{height:71.218750pt;}
.hc_c00149{height:71.815104pt;}
.h13_c00149{height:71.890625pt;}
.h3_c00149{height:71.972656pt;}
.h5_c00149{height:72.473958pt;}
.h14_c00149{height:72.562500pt;}
.h8_c00149{height:77.875000pt;}
.h7_c00149{height:83.437500pt;}
.ha_c00149{height:107.078125pt;}
.h0_c00149{height:1122.666667pt;}
.w0_c00149{width:793.333333pt;}
.x0_c00149{left:0.000000pt;}
.x5_c00149{left:120.319240pt;}
.x1_c00149{left:121.278813pt;}
.x34_c00149{left:159.999067pt;}
.x2d_c00149{left:164.799333pt;}
.x35_c00149{left:176.318787pt;}
.x39_c00149{left:199.359333pt;}
.x20_c00149{left:207.039587pt;}
.x2e_c00149{left:214.398920pt;}
.x15_c00149{left:227.198667pt;}
.x16_c00149{left:240.000000pt;}
.x21_c00149{left:249.279720pt;}
.x23_c00149{left:250.558533pt;}
.x24_c00149{left:262.719720pt;}
.x3b_c00149{left:270.399867pt;}
.x27_c00149{left:272.318787pt;}
.xf_c00149{left:286.398920pt;}
.x2f_c00149{left:300.799867pt;}
.x3a_c00149{left:326.718787pt;}
.x17_c00149{left:328.960000pt;}
.x10_c00149{left:346.239173pt;}
.x2a_c00149{left:360.000000pt;}
.x11_c00149{left:366.719200pt;}
.x2b_c00149{left:385.918907pt;}
.x30_c00149{left:389.438920pt;}
.x18_c00149{left:399.999067pt;}
.x6_c00149{left:401.279333pt;}
.x19_c00149{left:407.359867pt;}
.x22_c00149{left:414.719200pt;}
.x7_c00149{left:430.398920pt;}
.x25_c00149{left:433.918907pt;}
.x31_c00149{left:438.079067pt;}
.x26_c00149{left:451.199707pt;}
.x32_c00149{left:470.078693pt;}
.x1a_c00149{left:481.278773pt;}
.xd_c00149{left:483.518520pt;}
.x12_c00149{left:498.238773pt;}
.x28_c00149{left:507.518520pt;}
.x29_c00149{left:519.679733pt;}
.x33_c00149{left:523.199707pt;}
.x13_c00149{left:555.518520pt;}
.x36_c00149{left:575.039067pt;}
.x14_c00149{left:576.319333pt;}
.x2c_c00149{left:578.879840pt;}
.x1b_c00149{left:581.759720pt;}
.xa_c00149{left:582.719200pt;}
.x8_c00149{left:585.599040pt;}
.x37_c00149{left:588.479040pt;}
.xb_c00149{left:595.519040pt;}
.x9_c00149{left:605.119587pt;}
.x1e_c00149{left:607.038533pt;}
.x2_c00149{left:609.599040pt;}
.x1c_c00149{left:611.838907pt;}
.xc_c00149{left:616.319867pt;}
.x3_c00149{left:626.559040pt;}
.xe_c00149{left:627.839320pt;}
.x1f_c00149{left:630.719200pt;}
.x1d_c00149{left:644.159173pt;}
.x38_c00149{left:678.399867pt;}
.x4_c00149{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c7cce4b43f853cde3e9613f.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_156593c4a299806974a4d73b.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_d48d2077f5b68cc5f43fa385.woff2')format("woff");}.ff3_c00150{font-family:ff3_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:ff4_c00150;src:url('chunks/assets/font_2e78870aee9d05645aecd785.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.432129;font-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_c00150{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.205446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205446,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m10_c00150{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.284314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284314,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls2_c00150{letter-spacing:-8.175038px;}
.ls16_c00150{letter-spacing:-7.597200px;}
.lsa_c00150{letter-spacing:-7.451100px;}
.lsd_c00150{letter-spacing:-7.426125px;}
.lse_c00150{letter-spacing:-6.685875px;}
.ls4_c00150{letter-spacing:-6.160478px;}
.ls10_c00150{letter-spacing:-5.945625px;}
.ls19_c00150{letter-spacing:-5.676300px;}
.ls17_c00150{letter-spacing:-5.278500px;}
.ls1a_c00150{letter-spacing:-5.205750px;}
.ls9_c00150{letter-spacing:-5.196713px;}
.lsf_c00150{letter-spacing:-5.151248px;}
.ls1b_c00150{letter-spacing:-4.887225px;}
.ls1c_c00150{letter-spacing:-4.862348px;}
.ls7_c00150{letter-spacing:-4.456463px;}
.ls15_c00150{letter-spacing:-3.792900px;}
.lsc_c00150{letter-spacing:-3.717000px;}
.ls1f_c00150{letter-spacing:-3.088800px;}
.ls1e_c00150{letter-spacing:-3.067200px;}
.ls5_c00150{letter-spacing:-2.968875px;}
.ls12_c00150{letter-spacing:-2.431575px;}
.ls3_c00150{letter-spacing:-2.229413px;}
.lsb_c00150{letter-spacing:-1.621050px;}
.ls11_c00150{letter-spacing:-1.489163px;}
.ls13_c00150{letter-spacing:-0.810525px;}
.ls8_c00150{letter-spacing:-0.740250px;}
.ls6_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.740250px;}
.ls18_c00150{letter-spacing:0.796365px;}
.ls1_c00150{letter-spacing:2.229413px;}
.ls20_c00150{letter-spacing:4.053428px;}
.ls1d_c00150{letter-spacing:5.460780px;}
.ls14_c00150{letter-spacing:8.835750px;}
.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;}
._18_c00150{margin-left:-7.921344px;}
._e_c00150{margin-left:-6.832677px;}
._d_c00150{margin-left:-5.430600px;}
._19_c00150{margin-left:-4.284787px;}
._10_c00150{margin-left:-1.816480px;}
._f_c00150{width:1.566650px;}
._9_c00150{width:2.748345px;}
._16_c00150{width:4.129888px;}
._7_c00150{width:5.409575px;}
._1c_c00150{width:6.464781px;}
._a_c00150{width:7.487401px;}
._14_c00150{width:8.695738px;}
._6_c00150{width:9.839590px;}
._17_c00150{width:11.357384px;}
._13_c00150{width:12.597370px;}
._c_c00150{width:13.813701px;}
._8_c00150{width:15.308762px;}
._15_c00150{width:17.947482px;}
._2_c00150{width:19.850096px;}
._4_c00150{width:21.645864px;}
._1_c00150{width:22.838585px;}
._3_c00150{width:24.302101px;}
._5_c00150{width:26.105120px;}
._1b_c00150{width:27.434672px;}
._b_c00150{width:28.481735px;}
._11_c00150{width:30.570631px;}
._12_c00150{width:33.846646px;}
._1a_c00150{width:37.247665px;}
._1e_c00150{width:39.635261px;}
._0_c00150{width:41.448279px;}
._1d_c00150{width:44.235450px;}
.fc0_c00150{color:transparent;}
.fs5_c00150{font-size:70.500000px;}
.fs8_c00150{font-size:72.000000px;}
.fs9_c00150{font-size:75.750000px;}
.fs2_c00150{font-size:76.500000px;}
.fs6_c00150{font-size:78.000000px;}
.fs0_c00150{font-size:78.750000px;}
.fs7_c00150{font-size:79.500000px;}
.fs3_c00150{font-size:80.250000px;}
.fs4_c00150{font-size:82.500000px;}
.fs1_c00150{font-size:84.750000px;}
.y0_c00150{bottom:0.000000px;}
.y29_c00150{bottom:241.558935px;}
.y2a_c00150{bottom:241.559685px;}
.y28_c00150{bottom:271.438665px;}
.y26_c00150{bottom:300.959925px;}
.y27_c00150{bottom:300.960000px;}
.y24_c00150{bottom:331.199130px;}
.y25_c00150{bottom:331.199850px;}
.y23_c00150{bottom:391.318770px;}
.y22_c00150{bottom:421.560285px;}
.y20_c00150{bottom:451.439160px;}
.y21_c00150{bottom:451.439250px;}
.y1e_c00150{bottom:481.678350px;}
.y1f_c00150{bottom:481.679070px;}
.y1c_c00150{bottom:541.079310px;}
.y1d_c00150{bottom:541.079400px;}
.y1b_c00150{bottom:571.319235px;}
.y1a_c00150{bottom:571.320120px;}
.y18_c00150{bottom:601.199040px;}
.y19_c00150{bottom:601.199850px;}
.y17_c00150{bottom:631.078770px;}
.y16_c00150{bottom:631.080690px;}
.y15_c00150{bottom:660.960405px;}
.y14_c00150{bottom:690.840135px;}
.y13_c00150{bottom:751.319820px;}
.y12_c00150{bottom:780.838965px;}
.y11_c00150{bottom:811.799565px;}
.y10_c00150{bottom:811.799655px;}
.yf_c00150{bottom:841.319190px;}
.ye_c00150{bottom:841.320030px;}
.yd_c00150{bottom:871.199760px;}
.yc_c00150{bottom:901.439670px;}
.yb_c00150{bottom:901.439895px;}
.ya_c00150{bottom:930.959430px;}
.y9_c00150{bottom:961.199340px;}
.y8_c00150{bottom:961.199520px;}
.y7_c00150{bottom:990.719055px;}
.y6_c00150{bottom:990.719190px;}
.y5_c00150{bottom:1020.598920px;}
.y4_c00150{bottom:1050.478635px;}
.y3_c00150{bottom:1050.478815px;}
.y2_c00150{bottom:1110.598455px;}
.y1_c00150{bottom:1141.559055px;}
.hc_c00150{height:70.664062px;}
.h8_c00150{height:73.529297px;}
.hd_c00150{height:74.307495px;}
.h3_c00150{height:75.080566px;}
.hb_c00150{height:76.514648px;}
.h9_c00150{height:76.552734px;}
.h1_c00150{height:77.288818px;}
.ha_c00150{height:78.024902px;}
.he_c00150{height:78.609375px;}
.h4_c00150{height:78.721802px;}
.h5_c00150{height:78.760986px;}
.h7_c00150{height:79.365234px;}
.h6_c00150{height:80.969238px;}
.h2_c00150{height:83.177490px;}
.h0_c00150{height:1263.000000px;}
.w0_c00150{width:892.500000px;}
.x0_c00150{left:0.000000px;}
.x20_c00150{left:137.158785px;}
.xd_c00150{left:139.321305px;}
.x1_c00150{left:140.398665px;}
.x2e_c00150{left:162.000000px;}
.x36_c00150{left:185.040000px;}
.x14_c00150{left:212.040000px;}
.x21_c00150{left:214.918950px;}
.x16_c00150{left:224.279250px;}
.x15_c00150{left:228.598500px;}
.x2f_c00150{left:249.838950px;}
.xe_c00150{left:255.239250px;}
.x7_c00150{left:260.639700px;}
.xf_c00150{left:268.918950px;}
.x1c_c00150{left:272.519685px;}
.x8_c00150{left:284.399850px;}
.x1a_c00150{left:298.799535px;}
.x22_c00150{left:304.199850px;}
.x1b_c00150{left:314.998950px;}
.x37_c00150{left:318.599700px;}
.x2_c00150{left:345.599700px;}
.x23_c00150{left:351.718500px;}
.x30_c00150{left:362.878350px;}
.x24_c00150{left:365.759100px;}
.x3_c00150{left:370.439235px;}
.x10_c00150{left:372.599700px;}
.x3a_c00150{left:383.759535px;}
.x1d_c00150{left:390.239220px;}
.x2a_c00150{left:394.558635px;}
.x3b_c00150{left:398.159415px;}
.xb_c00150{left:401.758530px;}
.x9_c00150{left:405.718500px;}
.xc_c00150{left:417.239220px;}
.x3e_c00150{left:432.718500px;}
.x17_c00150{left:438.838950px;}
.xa_c00150{left:448.558635px;}
.x18_c00150{left:461.878920px;}
.x4_c00150{left:475.558635px;}
.x31_c00150{left:494.279250px;}
.x28_c00150{left:500.759085px;}
.x5_c00150{left:502.558635px;}
.x25_c00150{left:505.080000px;}
.x11_c00150{left:510.839535px;}
.x1e_c00150{left:531.719100px;}
.x29_c00150{left:534.599670px;}
.x19_c00150{left:554.399820px;}
.x2b_c00150{left:557.998950px;}
.x32_c00150{left:564.119385px;}
.x39_c00150{left:569.519670px;}
.x38_c00150{left:575.999400px;}
.x12_c00150{left:586.439250px;}
.x6_c00150{left:594.718500px;}
.x2c_c00150{left:631.078770px;}
.x33_c00150{left:633.239220px;}
.x2d_c00150{left:664.558635px;}
.x3c_c00150{left:685.798920px;}
.x34_c00150{left:689.399820px;}
.x1f_c00150{left:695.159370px;}
.x26_c00150{left:697.679070px;}
.x3d_c00150{left:698.758530px;}
.x35_c00150{left:705.239820px;}
.x27_c00150{left:713.159820px;}
.x13_c00150{left:733.319235px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls2_c00150{letter-spacing:-7.266700pt;}
.ls16_c00150{letter-spacing:-6.753067pt;}
.lsa_c00150{letter-spacing:-6.623200pt;}
.lsd_c00150{letter-spacing:-6.601000pt;}
.lse_c00150{letter-spacing:-5.943000pt;}
.ls4_c00150{letter-spacing:-5.475980pt;}
.ls10_c00150{letter-spacing:-5.285000pt;}
.ls19_c00150{letter-spacing:-5.045600pt;}
.ls17_c00150{letter-spacing:-4.692000pt;}
.ls1a_c00150{letter-spacing:-4.627333pt;}
.ls9_c00150{letter-spacing:-4.619300pt;}
.lsf_c00150{letter-spacing:-4.578887pt;}
.ls1b_c00150{letter-spacing:-4.344200pt;}
.ls1c_c00150{letter-spacing:-4.322087pt;}
.ls7_c00150{letter-spacing:-3.961300pt;}
.ls15_c00150{letter-spacing:-3.371467pt;}
.lsc_c00150{letter-spacing:-3.304000pt;}
.ls1f_c00150{letter-spacing:-2.745600pt;}
.ls1e_c00150{letter-spacing:-2.726400pt;}
.ls5_c00150{letter-spacing:-2.639000pt;}
.ls12_c00150{letter-spacing:-2.161400pt;}
.ls3_c00150{letter-spacing:-1.981700pt;}
.lsb_c00150{letter-spacing:-1.440933pt;}
.ls11_c00150{letter-spacing:-1.323700pt;}
.ls13_c00150{letter-spacing:-0.720467pt;}
.ls8_c00150{letter-spacing:-0.658000pt;}
.ls6_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.658000pt;}
.ls18_c00150{letter-spacing:0.707880pt;}
.ls1_c00150{letter-spacing:1.981700pt;}
.ls20_c00150{letter-spacing:3.603047pt;}
.ls1d_c00150{letter-spacing:4.854027pt;}
.ls14_c00150{letter-spacing:7.854000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
._18_c00150{margin-left:-7.041194pt;}
._e_c00150{margin-left:-6.073491pt;}
._d_c00150{margin-left:-4.827200pt;}
._19_c00150{margin-left:-3.808700pt;}
._10_c00150{margin-left:-1.614649pt;}
._f_c00150{width:1.392577pt;}
._9_c00150{width:2.442974pt;}
._16_c00150{width:3.671011pt;}
._7_c00150{width:4.808511pt;}
._1c_c00150{width:5.746472pt;}
._a_c00150{width:6.655468pt;}
._14_c00150{width:7.729545pt;}
._6_c00150{width:8.746302pt;}
._17_c00150{width:10.095453pt;}
._13_c00150{width:11.197662pt;}
._c_c00150{width:12.278845pt;}
._8_c00150{width:13.607789pt;}
._15_c00150{width:15.953317pt;}
._2_c00150{width:17.644530pt;}
._4_c00150{width:19.240768pt;}
._1_c00150{width:20.300964pt;}
._3_c00150{width:21.601868pt;}
._5_c00150{width:23.204551pt;}
._1b_c00150{width:24.386375pt;}
._b_c00150{width:25.317098pt;}
._11_c00150{width:27.173894pt;}
._12_c00150{width:30.085908pt;}
._1a_c00150{width:33.109036pt;}
._1e_c00150{width:35.231343pt;}
._0_c00150{width:36.842915pt;}
._1d_c00150{width:39.320400pt;}
.fs5_c00150{font-size:62.666667pt;}
.fs8_c00150{font-size:64.000000pt;}
.fs9_c00150{font-size:67.333333pt;}
.fs2_c00150{font-size:68.000000pt;}
.fs6_c00150{font-size:69.333333pt;}
.fs0_c00150{font-size:70.000000pt;}
.fs7_c00150{font-size:70.666667pt;}
.fs3_c00150{font-size:71.333333pt;}
.fs4_c00150{font-size:73.333333pt;}
.fs1_c00150{font-size:75.333333pt;}
.y0_c00150{bottom:0.000000pt;}
.y29_c00150{bottom:214.719053pt;}
.y2a_c00150{bottom:214.719720pt;}
.y28_c00150{bottom:241.278813pt;}
.y26_c00150{bottom:267.519933pt;}
.y27_c00150{bottom:267.520000pt;}
.y24_c00150{bottom:294.399227pt;}
.y25_c00150{bottom:294.399867pt;}
.y23_c00150{bottom:347.838907pt;}
.y22_c00150{bottom:374.720253pt;}
.y20_c00150{bottom:401.279253pt;}
.y21_c00150{bottom:401.279333pt;}
.y1e_c00150{bottom:428.158533pt;}
.y1f_c00150{bottom:428.159173pt;}
.y1c_c00150{bottom:480.959387pt;}
.y1d_c00150{bottom:480.959467pt;}
.y1b_c00150{bottom:507.839320pt;}
.y1a_c00150{bottom:507.840107pt;}
.y18_c00150{bottom:534.399147pt;}
.y19_c00150{bottom:534.399867pt;}
.y17_c00150{bottom:560.958907pt;}
.y16_c00150{bottom:560.960613pt;}
.y15_c00150{bottom:587.520360pt;}
.y14_c00150{bottom:614.080120pt;}
.y13_c00150{bottom:667.839840pt;}
.y12_c00150{bottom:694.079080pt;}
.y11_c00150{bottom:721.599613pt;}
.y10_c00150{bottom:721.599693pt;}
.yf_c00150{bottom:747.839280pt;}
.ye_c00150{bottom:747.840027pt;}
.yd_c00150{bottom:774.399787pt;}
.yc_c00150{bottom:801.279707pt;}
.yb_c00150{bottom:801.279907pt;}
.ya_c00150{bottom:827.519493pt;}
.y9_c00150{bottom:854.399413pt;}
.y8_c00150{bottom:854.399573pt;}
.y7_c00150{bottom:880.639160pt;}
.y6_c00150{bottom:880.639280pt;}
.y5_c00150{bottom:907.199040pt;}
.y4_c00150{bottom:933.758787pt;}
.y3_c00150{bottom:933.758947pt;}
.y2_c00150{bottom:987.198627pt;}
.y1_c00150{bottom:1014.719160pt;}
.hc_c00150{height:62.812500pt;}
.h8_c00150{height:65.359375pt;}
.hd_c00150{height:66.051107pt;}
.h3_c00150{height:66.738281pt;}
.hb_c00150{height:68.013021pt;}
.h9_c00150{height:68.046875pt;}
.h1_c00150{height:68.701172pt;}
.ha_c00150{height:69.355469pt;}
.he_c00150{height:69.875000pt;}
.h4_c00150{height:69.974935pt;}
.h5_c00150{height:70.009766pt;}
.h7_c00150{height:70.546875pt;}
.h6_c00150{height:71.972656pt;}
.h2_c00150{height:73.935547pt;}
.h0_c00150{height:1122.666667pt;}
.w0_c00150{width:793.333333pt;}
.x0_c00150{left:0.000000pt;}
.x20_c00150{left:121.918920pt;}
.xd_c00150{left:123.841160pt;}
.x1_c00150{left:124.798813pt;}
.x2e_c00150{left:144.000000pt;}
.x36_c00150{left:164.480000pt;}
.x14_c00150{left:188.480000pt;}
.x21_c00150{left:191.039067pt;}
.x16_c00150{left:199.359333pt;}
.x15_c00150{left:203.198667pt;}
.x2f_c00150{left:222.079067pt;}
.xe_c00150{left:226.879333pt;}
.x7_c00150{left:231.679733pt;}
.xf_c00150{left:239.039067pt;}
.x1c_c00150{left:242.239720pt;}
.x8_c00150{left:252.799867pt;}
.x1a_c00150{left:265.599587pt;}
.x22_c00150{left:270.399867pt;}
.x1b_c00150{left:279.999067pt;}
.x37_c00150{left:283.199733pt;}
.x2_c00150{left:307.199733pt;}
.x23_c00150{left:312.638667pt;}
.x30_c00150{left:322.558533pt;}
.x24_c00150{left:325.119200pt;}
.x3_c00150{left:329.279320pt;}
.x10_c00150{left:331.199733pt;}
.x3a_c00150{left:341.119587pt;}
.x1d_c00150{left:346.879307pt;}
.x2a_c00150{left:350.718787pt;}
.x3b_c00150{left:353.919480pt;}
.xb_c00150{left:357.118693pt;}
.x9_c00150{left:360.638667pt;}
.xc_c00150{left:370.879307pt;}
.x3e_c00150{left:384.638667pt;}
.x17_c00150{left:390.079067pt;}
.xa_c00150{left:398.718787pt;}
.x18_c00150{left:410.559040pt;}
.x4_c00150{left:422.718787pt;}
.x31_c00150{left:439.359333pt;}
.x28_c00150{left:445.119187pt;}
.x5_c00150{left:446.718787pt;}
.x25_c00150{left:448.960000pt;}
.x11_c00150{left:454.079587pt;}
.x1e_c00150{left:472.639200pt;}
.x29_c00150{left:475.199707pt;}
.x19_c00150{left:492.799840pt;}
.x2b_c00150{left:495.999067pt;}
.x32_c00150{left:501.439453pt;}
.x39_c00150{left:506.239707pt;}
.x38_c00150{left:511.999467pt;}
.x12_c00150{left:521.279333pt;}
.x6_c00150{left:528.638667pt;}
.x2c_c00150{left:560.958907pt;}
.x33_c00150{left:562.879307pt;}
.x2d_c00150{left:590.718787pt;}
.x3c_c00150{left:609.599040pt;}
.x34_c00150{left:612.799840pt;}
.x1f_c00150{left:617.919440pt;}
.x26_c00150{left:620.159173pt;}
.x3d_c00150{left:621.118693pt;}
.x35_c00150{left:626.879840pt;}
.x27_c00150{left:633.919840pt;}
.x13_c00150{left:651.839320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_940eba6bb4deea6dc1d3b937.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_63b0cb36dca46aca3a113f5f.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_30de0026a6c2b1e18231c4a8.woff2')format("woff");}.ff3_c00151{font-family:ff3_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:ff4_c00151;src:url('chunks/assets/font_96e83e091c5229d5dabd067a.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_62200d8346785f23b8d99dd6.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.432129;font-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_c00151{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{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_c00151{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00151{transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls17_c00151{letter-spacing:-13.298700px;}
.ls16_c00151{letter-spacing:-8.175038px;}
.ls20_c00151{letter-spacing:-8.105250px;}
.lsd_c00151{letter-spacing:-7.426125px;}
.ls14_c00151{letter-spacing:-6.940575px;}
.lse_c00151{letter-spacing:-5.945625px;}
.ls21_c00151{letter-spacing:-5.672873px;}
.ls10_c00151{letter-spacing:-5.247533px;}
.lsf_c00151{letter-spacing:-5.196713px;}
.ls1c_c00151{letter-spacing:-5.158425px;}
.ls13_c00151{letter-spacing:-4.586355px;}
.ls5_c00151{letter-spacing:-4.456463px;}
.ls23_c00151{letter-spacing:-4.053428px;}
.ls1a_c00151{letter-spacing:-3.785025px;}
.lsa_c00151{letter-spacing:-3.717000px;}
.ls11_c00151{letter-spacing:-3.465788px;}
.ls22_c00151{letter-spacing:-3.242903px;}
.ls4_c00151{letter-spacing:-2.968875px;}
.lsb_c00151{letter-spacing:-2.431575px;}
.ls1e_c00151{letter-spacing:-2.385000px;}
.ls1b_c00151{letter-spacing:-2.247000px;}
.ls3_c00151{letter-spacing:-2.229413px;}
.ls15_c00151{letter-spacing:-1.653150px;}
.ls7_c00151{letter-spacing:-1.621050px;}
.ls8_c00151{letter-spacing:-1.489163px;}
.ls1d_c00151{letter-spacing:-1.425000px;}
.lsc_c00151{letter-spacing:-0.810525px;}
.ls9_c00151{letter-spacing:-0.740250px;}
.ls6_c00151{letter-spacing:0.000000px;}
.ls0_c00151{letter-spacing:0.740250px;}
.ls24_c00151{letter-spacing:0.810525px;}
.ls12_c00151{letter-spacing:2.381400px;}
.ls2_c00151{letter-spacing:3.242903px;}
.ls1_c00151{letter-spacing:4.862348px;}
.ls18_c00151{letter-spacing:9.463125px;}
.ls19_c00151{letter-spacing:9.639000px;}
.ls1f_c00151{letter-spacing:11.130000px;}
.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;}
._2_c00151{margin-left:-23.936184px;}
._1a_c00151{margin-left:-7.923631px;}
._10_c00151{margin-left:-5.469604px;}
._0_c00151{margin-left:-4.047453px;}
._e_c00151{margin-left:-2.417209px;}
._f_c00151{margin-left:-1.054745px;}
._14_c00151{width:1.233507px;}
._11_c00151{width:2.433865px;}
._b_c00151{width:3.584789px;}
._1_c00151{width:5.043804px;}
._a_c00151{width:6.456891px;}
._13_c00151{width:7.580995px;}
._c_c00151{width:8.638251px;}
._4_c00151{width:10.685810px;}
._12_c00151{width:12.189995px;}
._9_c00151{width:13.714417px;}
._d_c00151{width:14.994089px;}
._3_c00151{width:16.530235px;}
._19_c00151{width:19.469868px;}
._18_c00151{width:21.874475px;}
._1d_c00151{width:23.832175px;}
._6_c00151{width:25.303950px;}
._1f_c00151{width:26.421502px;}
._8_c00151{width:27.814797px;}
._1e_c00151{width:29.246205px;}
._1b_c00151{width:30.269976px;}
._1c_c00151{width:32.733391px;}
._7_c00151{width:34.768392px;}
._5_c00151{width:38.126888px;}
._17_c00151{width:43.250035px;}
._15_c00151{width:50.635837px;}
._16_c00151{width:55.581247px;}
.fc0_c00151{color:transparent;}
.fs8_c00151{font-size:61.500000px;}
.fsb_c00151{font-size:63.750000px;}
.fs9_c00151{font-size:72.750000px;}
.fsc_c00151{font-size:75.000000px;}
.fs4_c00151{font-size:76.500000px;}
.fsa_c00151{font-size:77.250000px;}
.fs0_c00151{font-size:78.750000px;}
.fs7_c00151{font-size:79.500000px;}
.fs1_c00151{font-size:80.250000px;}
.fs6_c00151{font-size:81.000000px;}
.fs5_c00151{font-size:81.750000px;}
.fs3_c00151{font-size:82.500000px;}
.fse_c00151{font-size:84.000000px;}
.fs2_c00151{font-size:84.750000px;}
.fsd_c00151{font-size:90.000000px;}
.y0_c00151{bottom:0.000000px;}
.y2a_c00151{bottom:178.921005px;}
.y2b_c00151{bottom:178.921215px;}
.y28_c00151{bottom:208.799925px;}
.y29_c00151{bottom:208.800150px;}
.y27_c00151{bottom:239.040000px;}
.y25_c00151{bottom:268.920390px;}
.y26_c00151{bottom:268.920600px;}
.y24_c00151{bottom:298.799535px;}
.y23_c00151{bottom:329.041035px;}
.y22_c00151{bottom:358.199850px;}
.y21_c00151{bottom:388.080465px;}
.y1f_c00151{bottom:419.760570px;}
.y20_c00151{bottom:419.760720px;}
.y1e_c00151{bottom:448.201035px;}
.y1c_c00151{bottom:478.798605px;}
.y1d_c00151{bottom:478.800150px;}
.y1b_c00151{bottom:538.199655px;}
.y1a_c00151{bottom:597.600720px;}
.y19_c00151{bottom:627.479685px;}
.y18_c00151{bottom:657.719520px;}
.y17_c00151{bottom:657.720405px;}
.y16_c00151{bottom:687.600135px;}
.y15_c00151{bottom:717.480885px;}
.y14_c00151{bottom:750.599670px;}
.y12_c00151{bottom:808.199760px;}
.y13_c00151{bottom:808.200435px;}
.y10_c00151{bottom:837.360240px;}
.y11_c00151{bottom:837.360900px;}
.yf_c00151{bottom:866.879775px;}
.ye_c00151{bottom:896.759490px;}
.yd_c00151{bottom:896.759805px;}
.yc_c00151{bottom:927.001830px;}
.yb_c00151{bottom:957.600135px;}
.ya_c00151{bottom:957.601065px;}
.y9_c00151{bottom:987.840975px;}
.y7_c00151{bottom:1017.720480px;}
.y8_c00151{bottom:1017.720705px;}
.y5_c00151{bottom:1046.879130px;}
.y6_c00151{bottom:1046.879520px;}
.y4_c00151{bottom:1077.839535px;}
.y2_c00151{bottom:1107.719700px;}
.y3_c00151{bottom:1107.720150px;}
.y1_c00151{bottom:1137.600675px;}
.hd_c00151{height:60.779297px;}
.h10_c00151{height:62.567139px;}
.h11_c00151{height:73.608398px;}
.h5_c00151{height:75.080566px;}
.hf_c00151{height:75.816650px;}
.he_c00151{height:75.875977px;}
.h1_c00151{height:77.288818px;}
.ha_c00151{height:78.024902px;}
.h2_c00151{height:78.721802px;}
.h7_c00151{height:78.760986px;}
.h9_c00151{height:80.121094px;}
.h6_c00151{height:80.233154px;}
.hc_c00151{height:80.876953px;}
.h4_c00151{height:80.969238px;}
.h8_c00151{height:81.632812px;}
.hb_c00151{height:82.388672px;}
.h3_c00151{height:83.177490px;}
.h13_c00151{height:87.609375px;}
.h12_c00151{height:93.867188px;}
.h0_c00151{height:1263.000000px;}
.w0_c00151{width:892.500000px;}
.x0_c00151{left:0.000000px;}
.xb_c00151{left:136.079400px;}
.x1_c00151{left:137.519685px;}
.x1b_c00151{left:138.599835px;}
.x47_c00151{left:140.039400px;}
.x58_c00151{left:175.679700px;}
.x17_c00151{left:184.319850px;}
.x5_c00151{left:190.799565px;}
.x18_c00151{left:199.439685px;}
.x48_c00151{left:201.598500px;}
.xf_c00151{left:206.278800px;}
.x49_c00151{left:213.478635px;}
.x52_c00151{left:216.000000px;}
.xe_c00151{left:217.438635px;}
.x4e_c00151{left:236.159385px;}
.x31_c00151{left:244.799535px;}
.x1d_c00151{left:247.319250px;}
.x10_c00151{left:251.279250px;}
.x1c_c00151{left:258.838515px;}
.x19_c00151{left:259.919535px;}
.x6_c00151{left:266.758500px;}
.x15_c00151{left:273.958350px;}
.x1a_c00151{left:275.039385px;}
.x42_c00151{left:285.838515px;}
.x53_c00151{left:290.879535px;}
.x59_c00151{left:292.319850px;}
.x54_c00151{left:300.239850px;}
.x2a_c00151{left:304.199850px;}
.x3d_c00151{left:308.159850px;}
.x2b_c00151{left:319.679100px;}
.xc_c00151{left:321.478635px;}
.x1e_c00151{left:324.718500px;}
.x32_c00151{left:325.799535px;}
.x1f_c00151{left:343.080000px;}
.x3f_c00151{left:354.239850px;}
.x4a_c00151{left:379.799535px;}
.x43_c00151{left:380.878950px;}
.x5a_c00151{left:398.159415px;}
.x7_c00151{left:405.718500px;}
.x16_c00151{left:411.118785px;}
.x2e_c00151{left:417.239220px;}
.x20_c00151{left:418.679670px;}
.x39_c00151{left:423.719100px;}
.x4f_c00151{left:426.599670px;}
.x27_c00151{left:438.118785px;}
.x3a_c00151{left:440.638500px;}
.x21_c00151{left:446.038920px;}
.x28_c00151{left:453.238770px;}
.x3e_c00151{left:469.439670px;}
.x5b_c00151{left:472.318770px;}
.x4b_c00151{left:480.238770px;}
.x40_c00151{left:489.599070px;}
.x33_c00151{left:490.678530px;}
.x55_c00151{left:494.999400px;}
.x2f_c00151{left:503.639700px;}
.x2_c00151{left:517.678530px;}
.x8_c00151{left:521.638500px;}
.x22_c00151{left:538.918950px;}
.x11_c00151{left:550.078770px;}
.x44_c00151{left:558.719100px;}
.x34_c00151{left:565.198785px;}
.x56_c00151{left:566.639100px;}
.x12_c00151{left:570.958335px;}
.x35_c00151{left:580.318770px;}
.x23_c00151{left:599.759535px;}
.x5c_c00151{left:600.838950px;}
.x2c_c00151{left:610.558635px;}
.x4c_c00151{left:614.518620px;}
.x24_c00151{left:617.039985px;}
.x50_c00151{left:624.958335px;}
.x45_c00151{left:632.878320px;}
.x25_c00151{left:640.439250px;}
.x2d_c00151{left:641.879520px;}
.x13_c00151{left:645.478635px;}
.x3b_c00151{left:649.438620px;}
.x46_c00151{left:650.519670px;}
.x9_c00151{left:657.358605px;}
.x30_c00151{left:667.080000px;}
.xd_c00151{left:668.879520px;}
.x4d_c00151{left:677.158770px;}
.x5d_c00151{left:683.999400px;}
.x36_c00151{left:689.399820px;}
.x5e_c00151{left:691.558635px;}
.x3c_c00151{left:695.159370px;}
.x41_c00151{left:696.958920px;}
.x51_c00151{left:698.399235px;}
.x3_c00151{left:699.839535px;}
.x57_c00151{left:707.759535px;}
.x4_c00151{left:714.239220px;}
.x26_c00151{left:716.399820px;}
.x14_c00151{left:728.279850px;}
.x37_c00151{left:739.078770px;}
.x38_c00151{left:753.119385px;}
.xa_c00151{left:769.318815px;}
.x29_c00151{left:770.399865px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls17_c00151{letter-spacing:-11.821067pt;}
.ls16_c00151{letter-spacing:-7.266700pt;}
.ls20_c00151{letter-spacing:-7.204667pt;}
.lsd_c00151{letter-spacing:-6.601000pt;}
.ls14_c00151{letter-spacing:-6.169400pt;}
.lse_c00151{letter-spacing:-5.285000pt;}
.ls21_c00151{letter-spacing:-5.042553pt;}
.ls10_c00151{letter-spacing:-4.664473pt;}
.lsf_c00151{letter-spacing:-4.619300pt;}
.ls1c_c00151{letter-spacing:-4.585267pt;}
.ls13_c00151{letter-spacing:-4.076760pt;}
.ls5_c00151{letter-spacing:-3.961300pt;}
.ls23_c00151{letter-spacing:-3.603047pt;}
.ls1a_c00151{letter-spacing:-3.364467pt;}
.lsa_c00151{letter-spacing:-3.304000pt;}
.ls11_c00151{letter-spacing:-3.080700pt;}
.ls22_c00151{letter-spacing:-2.882580pt;}
.ls4_c00151{letter-spacing:-2.639000pt;}
.lsb_c00151{letter-spacing:-2.161400pt;}
.ls1e_c00151{letter-spacing:-2.120000pt;}
.ls1b_c00151{letter-spacing:-1.997333pt;}
.ls3_c00151{letter-spacing:-1.981700pt;}
.ls15_c00151{letter-spacing:-1.469467pt;}
.ls7_c00151{letter-spacing:-1.440933pt;}
.ls8_c00151{letter-spacing:-1.323700pt;}
.ls1d_c00151{letter-spacing:-1.266667pt;}
.lsc_c00151{letter-spacing:-0.720467pt;}
.ls9_c00151{letter-spacing:-0.658000pt;}
.ls6_c00151{letter-spacing:0.000000pt;}
.ls0_c00151{letter-spacing:0.658000pt;}
.ls24_c00151{letter-spacing:0.720467pt;}
.ls12_c00151{letter-spacing:2.116800pt;}
.ls2_c00151{letter-spacing:2.882580pt;}
.ls1_c00151{letter-spacing:4.322087pt;}
.ls18_c00151{letter-spacing:8.411667pt;}
.ls19_c00151{letter-spacing:8.568000pt;}
.ls1f_c00151{letter-spacing:9.893333pt;}
.ws0_c00151{word-spacing:0.000000pt;}
._2_c00151{margin-left:-21.276608pt;}
._1a_c00151{margin-left:-7.043228pt;}
._10_c00151{margin-left:-4.861870pt;}
._0_c00151{margin-left:-3.597736pt;}
._e_c00151{margin-left:-2.148630pt;}
._f_c00151{margin-left:-0.937551pt;}
._14_c00151{width:1.096451pt;}
._11_c00151{width:2.163436pt;}
._b_c00151{width:3.186479pt;}
._1_c00151{width:4.483381pt;}
._a_c00151{width:5.739458pt;}
._13_c00151{width:6.738662pt;}
._c_c00151{width:7.678445pt;}
._4_c00151{width:9.498498pt;}
._12_c00151{width:10.835551pt;}
._9_c00151{width:12.190593pt;}
._d_c00151{width:13.328079pt;}
._3_c00151{width:14.693543pt;}
._19_c00151{width:17.306549pt;}
._18_c00151{width:19.443978pt;}
._1d_c00151{width:21.184155pt;}
._6_c00151{width:22.492400pt;}
._1f_c00151{width:23.485779pt;}
._8_c00151{width:24.724264pt;}
._1e_c00151{width:25.996626pt;}
._1b_c00151{width:26.906645pt;}
._1c_c00151{width:29.096348pt;}
._7_c00151{width:30.905238pt;}
._5_c00151{width:33.890568pt;}
._17_c00151{width:38.444475pt;}
._15_c00151{width:45.009633pt;}
._16_c00151{width:49.405553pt;}
.fs8_c00151{font-size:54.666667pt;}
.fsb_c00151{font-size:56.666667pt;}
.fs9_c00151{font-size:64.666667pt;}
.fsc_c00151{font-size:66.666667pt;}
.fs4_c00151{font-size:68.000000pt;}
.fsa_c00151{font-size:68.666667pt;}
.fs0_c00151{font-size:70.000000pt;}
.fs7_c00151{font-size:70.666667pt;}
.fs1_c00151{font-size:71.333333pt;}
.fs6_c00151{font-size:72.000000pt;}
.fs5_c00151{font-size:72.666667pt;}
.fs3_c00151{font-size:73.333333pt;}
.fse_c00151{font-size:74.666667pt;}
.fs2_c00151{font-size:75.333333pt;}
.fsd_c00151{font-size:80.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y2a_c00151{bottom:159.040893pt;}
.y2b_c00151{bottom:159.041080pt;}
.y28_c00151{bottom:185.599933pt;}
.y29_c00151{bottom:185.600133pt;}
.y27_c00151{bottom:212.480000pt;}
.y25_c00151{bottom:239.040347pt;}
.y26_c00151{bottom:239.040533pt;}
.y24_c00151{bottom:265.599587pt;}
.y23_c00151{bottom:292.480920pt;}
.y22_c00151{bottom:318.399867pt;}
.y21_c00151{bottom:344.960413pt;}
.y1f_c00151{bottom:373.120507pt;}
.y20_c00151{bottom:373.120640pt;}
.y1e_c00151{bottom:398.400920pt;}
.y1c_c00151{bottom:425.598760pt;}
.y1d_c00151{bottom:425.600133pt;}
.y1b_c00151{bottom:478.399693pt;}
.y1a_c00151{bottom:531.200640pt;}
.y19_c00151{bottom:557.759720pt;}
.y18_c00151{bottom:584.639573pt;}
.y17_c00151{bottom:584.640360pt;}
.y16_c00151{bottom:611.200120pt;}
.y15_c00151{bottom:637.760787pt;}
.y14_c00151{bottom:667.199707pt;}
.y12_c00151{bottom:718.399787pt;}
.y13_c00151{bottom:718.400387pt;}
.y10_c00151{bottom:744.320213pt;}
.y11_c00151{bottom:744.320800pt;}
.yf_c00151{bottom:770.559800pt;}
.ye_c00151{bottom:797.119547pt;}
.yd_c00151{bottom:797.119827pt;}
.yc_c00151{bottom:824.001627pt;}
.yb_c00151{bottom:851.200120pt;}
.ya_c00151{bottom:851.200947pt;}
.y9_c00151{bottom:878.080867pt;}
.y7_c00151{bottom:904.640427pt;}
.y8_c00151{bottom:904.640627pt;}
.y5_c00151{bottom:930.559227pt;}
.y6_c00151{bottom:930.559573pt;}
.y4_c00151{bottom:958.079587pt;}
.y2_c00151{bottom:984.639733pt;}
.y3_c00151{bottom:984.640133pt;}
.y1_c00151{bottom:1011.200600pt;}
.hd_c00151{height:54.026042pt;}
.h10_c00151{height:55.615234pt;}
.h11_c00151{height:65.429688pt;}
.h5_c00151{height:66.738281pt;}
.hf_c00151{height:67.392578pt;}
.he_c00151{height:67.445312pt;}
.h1_c00151{height:68.701172pt;}
.ha_c00151{height:69.355469pt;}
.h2_c00151{height:69.974935pt;}
.h7_c00151{height:70.009766pt;}
.h9_c00151{height:71.218750pt;}
.h6_c00151{height:71.318359pt;}
.hc_c00151{height:71.890625pt;}
.h4_c00151{height:71.972656pt;}
.h8_c00151{height:72.562500pt;}
.hb_c00151{height:73.234375pt;}
.h3_c00151{height:73.935547pt;}
.h13_c00151{height:77.875000pt;}
.h12_c00151{height:83.437500pt;}
.h0_c00151{height:1122.666667pt;}
.w0_c00151{width:793.333333pt;}
.x0_c00151{left:0.000000pt;}
.xb_c00151{left:120.959467pt;}
.x1_c00151{left:122.239720pt;}
.x1b_c00151{left:123.199853pt;}
.x47_c00151{left:124.479467pt;}
.x58_c00151{left:156.159733pt;}
.x17_c00151{left:163.839867pt;}
.x5_c00151{left:169.599613pt;}
.x18_c00151{left:177.279720pt;}
.x48_c00151{left:179.198667pt;}
.xf_c00151{left:183.358933pt;}
.x49_c00151{left:189.758787pt;}
.x52_c00151{left:192.000000pt;}
.xe_c00151{left:193.278787pt;}
.x4e_c00151{left:209.919453pt;}
.x31_c00151{left:217.599587pt;}
.x1d_c00151{left:219.839333pt;}
.x10_c00151{left:223.359333pt;}
.x1c_c00151{left:230.078680pt;}
.x19_c00151{left:231.039587pt;}
.x6_c00151{left:237.118667pt;}
.x15_c00151{left:243.518533pt;}
.x1a_c00151{left:244.479453pt;}
.x42_c00151{left:254.078680pt;}
.x53_c00151{left:258.559587pt;}
.x59_c00151{left:259.839867pt;}
.x54_c00151{left:266.879867pt;}
.x2a_c00151{left:270.399867pt;}
.x3d_c00151{left:273.919867pt;}
.x2b_c00151{left:284.159200pt;}
.xc_c00151{left:285.758787pt;}
.x1e_c00151{left:288.638667pt;}
.x32_c00151{left:289.599587pt;}
.x1f_c00151{left:304.960000pt;}
.x3f_c00151{left:314.879867pt;}
.x4a_c00151{left:337.599587pt;}
.x43_c00151{left:338.559067pt;}
.x5a_c00151{left:353.919480pt;}
.x7_c00151{left:360.638667pt;}
.x16_c00151{left:365.438920pt;}
.x2e_c00151{left:370.879307pt;}
.x20_c00151{left:372.159707pt;}
.x39_c00151{left:376.639200pt;}
.x4f_c00151{left:379.199707pt;}
.x27_c00151{left:389.438920pt;}
.x3a_c00151{left:391.678667pt;}
.x21_c00151{left:396.479040pt;}
.x28_c00151{left:402.878907pt;}
.x3e_c00151{left:417.279707pt;}
.x5b_c00151{left:419.838907pt;}
.x4b_c00151{left:426.878907pt;}
.x40_c00151{left:435.199173pt;}
.x33_c00151{left:436.158693pt;}
.x55_c00151{left:439.999467pt;}
.x2f_c00151{left:447.679733pt;}
.x2_c00151{left:460.158693pt;}
.x8_c00151{left:463.678667pt;}
.x22_c00151{left:479.039067pt;}
.x11_c00151{left:488.958907pt;}
.x44_c00151{left:496.639200pt;}
.x34_c00151{left:502.398920pt;}
.x56_c00151{left:503.679200pt;}
.x12_c00151{left:507.518520pt;}
.x35_c00151{left:515.838907pt;}
.x23_c00151{left:533.119587pt;}
.x5c_c00151{left:534.079067pt;}
.x2c_c00151{left:542.718787pt;}
.x4c_c00151{left:546.238773pt;}
.x24_c00151{left:548.479987pt;}
.x50_c00151{left:555.518520pt;}
.x45_c00151{left:562.558507pt;}
.x25_c00151{left:569.279333pt;}
.x2d_c00151{left:570.559573pt;}
.x13_c00151{left:573.758787pt;}
.x3b_c00151{left:577.278773pt;}
.x46_c00151{left:578.239707pt;}
.x9_c00151{left:584.318760pt;}
.x30_c00151{left:592.960000pt;}
.xd_c00151{left:594.559573pt;}
.x4d_c00151{left:601.918907pt;}
.x5d_c00151{left:607.999467pt;}
.x36_c00151{left:612.799840pt;}
.x5e_c00151{left:614.718787pt;}
.x3c_c00151{left:617.919440pt;}
.x41_c00151{left:619.519040pt;}
.x51_c00151{left:620.799320pt;}
.x3_c00151{left:622.079587pt;}
.x57_c00151{left:629.119587pt;}
.x4_c00151{left:634.879307pt;}
.x26_c00151{left:636.799840pt;}
.x14_c00151{left:647.359867pt;}
.x37_c00151{left:656.958907pt;}
.x38_c00151{left:669.439453pt;}
.xa_c00151{left:683.838947pt;}
.x29_c00151{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3e244ba494ae0717989ec62.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_d53e66e023938832c7bbc64b.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_8a9a67eacd2de9c8e7cdb8c3.woff2')format("woff");}.ff3_c00152{font-family:ff3_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:ff4_c00152;src:url('chunks/assets/font_9058448895951c2dde6ca862.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_77b3fc96b843dd7e39e1c534.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_3d232113f43ac2566d31e662.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00152;src:url('chunks/assets/font_63407eb29cb5b8e6895d6f9d.woff2')format("woff");}.ff7_c00152{font-family:ff7_c00152;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c00152{transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.236207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236207,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1d_c00152{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m8_c00152{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.369898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369898,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls1b_c00152{letter-spacing:-19.053000px;}
.ls16_c00152{letter-spacing:-14.528588px;}
.ls20_c00152{letter-spacing:-13.407075px;}
.ls23_c00152{letter-spacing:-12.799500px;}
.ls1e_c00152{letter-spacing:-10.312500px;}
.ls1d_c00152{letter-spacing:-9.678645px;}
.ls17_c00152{letter-spacing:-9.174375px;}
.ls28_c00152{letter-spacing:-8.175038px;}
.lsd_c00152{letter-spacing:-7.426125px;}
.ls9_c00152{letter-spacing:-6.685875px;}
.ls12_c00152{letter-spacing:-5.945625px;}
.lse_c00152{letter-spacing:-5.390625px;}
.ls10_c00152{letter-spacing:-5.247533px;}
.lsc_c00152{letter-spacing:-5.196713px;}
.ls3a_c00152{letter-spacing:-5.176500px;}
.ls1f_c00152{letter-spacing:-5.156250px;}
.ls30_c00152{letter-spacing:-4.925003px;}
.ls15_c00152{letter-spacing:-4.461900px;}
.ls11_c00152{letter-spacing:-4.456463px;}
.ls38_c00152{letter-spacing:-3.936000px;}
.lsa_c00152{letter-spacing:-3.717000px;}
.ls29_c00152{letter-spacing:-3.694950px;}
.ls37_c00152{letter-spacing:-3.370080px;}
.lsb_c00152{letter-spacing:-2.968875px;}
.ls32_c00152{letter-spacing:-2.905582px;}
.ls35_c00152{letter-spacing:-2.514128px;}
.ls5_c00152{letter-spacing:-2.479725px;}
.ls1a_c00152{letter-spacing:-2.447550px;}
.ls2d_c00152{letter-spacing:-2.287500px;}
.ls27_c00152{letter-spacing:-2.272905px;}
.ls7_c00152{letter-spacing:-2.229413px;}
.ls34_c00152{letter-spacing:-2.178158px;}
.ls2b_c00152{letter-spacing:-1.684800px;}
.ls39_c00152{letter-spacing:-1.602248px;}
.ls18_c00152{letter-spacing:-1.526963px;}
.ls36_c00152{letter-spacing:-1.498050px;}
.ls4_c00152{letter-spacing:-1.489163px;}
.ls31_c00152{letter-spacing:-1.477725px;}
.ls2e_c00152{letter-spacing:-0.832350px;}
.ls22_c00152{letter-spacing:-0.826575px;}
.ls14_c00152{letter-spacing:-0.794820px;}
.ls2a_c00152{letter-spacing:-0.774000px;}
.ls24_c00152{letter-spacing:-0.765075px;}
.lsf_c00152{letter-spacing:-0.740250px;}
.ls8_c00152{letter-spacing:0.000000px;}
.ls6_c00152{letter-spacing:0.826575px;}
.ls13_c00152{letter-spacing:0.873600px;}
.ls0_c00152{letter-spacing:1.489163px;}
.ls25_c00152{letter-spacing:1.522185px;}
.ls21_c00152{letter-spacing:1.677900px;}
.ls33_c00152{letter-spacing:3.050400px;}
.ls1_c00152{letter-spacing:3.055500px;}
.ls26_c00152{letter-spacing:3.213600px;}
.ls19_c00152{letter-spacing:3.219000px;}
.ls2f_c00152{letter-spacing:5.810250px;}
.ls2c_c00152{letter-spacing:9.310050px;}
.ls1c_c00152{letter-spacing:17.824500px;}
.ls3_c00152{letter-spacing:39.188325px;}
.ls2_c00152{letter-spacing:47.437500px;}
.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;}
._1b_c00152{margin-left:-217.387005px;}
._1d_c00152{margin-left:-94.125900px;}
._1a_c00152{margin-left:-21.908831px;}
._1c_c00152{margin-left:-20.047748px;}
._1f_c00152{margin-left:-6.732396px;}
._1e_c00152{margin-left:-4.010009px;}
._19_c00152{margin-left:-2.651297px;}
._18_c00152{margin-left:-1.380034px;}
._15_c00152{width:1.585906px;}
._12_c00152{width:3.039809px;}
._20_c00152{width:4.310723px;}
._e_c00152{width:5.851325px;}
._f_c00152{width:6.898619px;}
._c_c00152{width:8.032975px;}
._d_c00152{width:10.002855px;}
._11_c00152{width:11.190672px;}
._b_c00152{width:12.966904px;}
._0_c00152{width:14.501125px;}
._10_c00152{width:17.112583px;}
._9_c00152{width:19.188106px;}
._23_c00152{width:20.370207px;}
._7_c00152{width:21.894446px;}
._21_c00152{width:23.291353px;}
._6_c00152{width:24.291864px;}
._13_c00152{width:25.991393px;}
._16_c00152{width:27.234261px;}
._8_c00152{width:29.376038px;}
._14_c00152{width:30.452060px;}
._4_c00152{width:31.740975px;}
._a_c00152{width:32.828721px;}
._5_c00152{width:34.645780px;}
._2_c00152{width:35.878025px;}
._3_c00152{width:38.776470px;}
._17_c00152{width:40.154714px;}
._22_c00152{width:42.409891px;}
._1_c00152{width:48.384267px;}
.fc0_c00152{color:transparent;}
.fs16_c00152{font-size:42.750000px;}
.fs17_c00152{font-size:43.500000px;}
.fs11_c00152{font-size:45.000000px;}
.fs13_c00152{font-size:45.750000px;}
.fs14_c00152{font-size:46.500000px;}
.fsf_c00152{font-size:47.250000px;}
.fs12_c00152{font-size:48.000000px;}
.fs15_c00152{font-size:50.250000px;}
.fs10_c00152{font-size:51.750000px;}
.fsb_c00152{font-size:55.500000px;}
.fsc_c00152{font-size:70.500000px;}
.fse_c00152{font-size:73.500000px;}
.fsd_c00152{font-size:75.750000px;}
.fsa_c00152{font-size:76.500000px;}
.fs5_c00152{font-size:78.000000px;}
.fs0_c00152{font-size:78.750000px;}
.fs7_c00152{font-size:79.500000px;}
.fs1_c00152{font-size:80.250000px;}
.fs4_c00152{font-size:81.750000px;}
.fs2_c00152{font-size:82.500000px;}
.fs8_c00152{font-size:83.250000px;}
.fs3_c00152{font-size:86.250000px;}
.fs6_c00152{font-size:87.000000px;}
.fs9_c00152{font-size:108.750000px;}
.y0_c00152{bottom:0.000000px;}
.y2b_c00152{bottom:169.199850px;}
.y2a_c00152{bottom:184.680750px;}
.y29_c00152{bottom:191.880585px;}
.y28_c00152{bottom:270.720240px;}
.y27_c00152{bottom:300.960165px;}
.y26_c00152{bottom:330.479685px;}
.y24_c00152{bottom:360.000255px;}
.y25_c00152{bottom:360.001035px;}
.y23_c00152{bottom:389.879970px;}
.y22_c00152{bottom:389.881005px;}
.y20_c00152{bottom:419.760540px;}
.y21_c00152{bottom:419.760720px;}
.y1f_c00152{bottom:449.100720px;}
.y1e_c00152{bottom:449.280390px;}
.y1d_c00152{bottom:479.520315px;}
.y1c_c00152{bottom:479.521155px;}
.y1a_c00152{bottom:509.400120px;}
.y1b_c00152{bottom:509.400885px;}
.y19_c00152{bottom:539.279850px;}
.y18_c00152{bottom:539.280345px;}
.y17_c00152{bottom:569.880750px;}
.y16_c00152{bottom:599.400285px;}
.y15_c00152{bottom:659.159130px;}
.y14_c00152{bottom:688.320285px;}
.y13_c00152{bottom:718.560285px;}
.y12_c00152{bottom:751.680720px;}
.y10_c00152{bottom:778.319775px;}
.y11_c00152{bottom:778.319820px;}
.ye_c00152{bottom:808.559640px;}
.yf_c00152{bottom:808.559685px;}
.yd_c00152{bottom:838.799565px;}
.yc_c00152{bottom:838.799580px;}
.yb_c00152{bottom:868.320930px;}
.ya_c00152{bottom:868.322130px;}
.y9_c00152{bottom:927.360900px;}
.y8_c00152{bottom:957.961305px;}
.y7_c00152{bottom:987.480840px;}
.y6_c00152{bottom:987.480975px;}
.y5_c00152{bottom:1017.720885px;}
.y4_c00152{bottom:1047.240420px;}
.y3_c00152{bottom:1047.241125px;}
.y2_c00152{bottom:1077.481035px;}
.y1_c00152{bottom:1137.600675px;}
.h1d_c00152{height:42.249023px;}
.h1f_c00152{height:42.990234px;}
.h18_c00152{height:45.351562px;}
.h1a_c00152{height:46.107422px;}
.h16_c00152{height:46.373291px;}
.h1b_c00152{height:46.863281px;}
.h1e_c00152{height:47.619141px;}
.h19_c00152{height:48.375000px;}
.h1c_c00152{height:49.661133px;}
.h17_c00152{height:51.143555px;}
.he_c00152{height:57.884766px;}
.h14_c00152{height:72.136230px;}
.h10_c00152{height:73.529297px;}
.h11_c00152{height:74.344482px;}
.h13_c00152{height:76.341797px;}
.h6_c00152{height:76.552734px;}
.h1_c00152{height:77.288818px;}
.h12_c00152{height:78.024902px;}
.h15_c00152{height:78.609375px;}
.h2_c00152{height:78.721802px;}
.h7_c00152{height:78.760986px;}
.h8_c00152{height:79.365234px;}
.hd_c00152{height:79.787109px;}
.ha_c00152{height:80.121094px;}
.h5_c00152{height:80.233154px;}
.h3_c00152{height:80.969238px;}
.hf_c00152{height:81.533203px;}
.hb_c00152{height:81.664673px;}
.h4_c00152{height:84.649658px;}
.h9_c00152{height:85.980469px;}
.hc_c00152{height:106.732178px;}
.h0_c00152{height:1263.000000px;}
.w0_c00152{width:892.500000px;}
.x0_c00152{left:0.000000px;}
.x30_c00152{left:138.958815px;}
.x11_c00152{left:140.397150px;}
.x6_c00152{left:141.476070px;}
.x1_c00152{left:142.559100px;}
.x44_c00152{left:152.639700px;}
.x14_c00152{left:166.319250px;}
.x34_c00152{left:169.918350px;}
.x35_c00152{left:182.159415px;}
.x36_c00152{left:197.638500px;}
.x15_c00152{left:217.079385px;}
.x1d_c00152{left:226.078785px;}
.x2_c00152{left:232.919535px;}
.x37_c00152{left:234.359850px;}
.x38_c00152{left:248.039385px;}
.x1f_c00152{left:277.559100px;}
.x39_c00152{left:287.998950px;}
.x16_c00152{left:307.439685px;}
.x1e_c00152{left:314.639700px;}
.x3a_c00152{left:321.478635px;}
.x3b_c00152{left:338.399850px;}
.x17_c00152{left:339.838515px;}
.xd_c00152{left:343.439235px;}
.x18_c00152{left:354.239850px;}
.x20_c00152{left:356.039385px;}
.xe_c00152{left:361.798950px;}
.x33_c00152{left:370.798515px;}
.x19_c00152{left:373.319850px;}
.x9_c00152{left:376.918950px;}
.x3c_c00152{left:383.039385px;}
.x3_c00152{left:391.679670px;}
.xa_c00152{left:397.439250px;}
.xf_c00152{left:410.398635px;}
.xb_c00152{left:412.199850px;}
.x2a_c00152{left:419.759085px;}
.x31_c00152{left:422.278800px;}
.x1a_c00152{left:429.839535px;}
.x25_c00152{left:431.639100px;}
.xc_c00152{left:433.438665px;}
.x10_c00152{left:438.118785px;}
.x3d_c00152{left:444.239220px;}
.x26_c00152{left:458.639100px;}
.x1b_c00152{left:467.279250px;}
.x12_c00152{left:474.479235px;}
.x4_c00152{left:486.359250px;}
.x21_c00152{left:488.158770px;}
.x3e_c00152{left:492.838950px;}
.x13_c00152{left:499.318770px;}
.x5_c00152{left:501.119985px;}
.x2c_c00152{left:504.719100px;}
.x3f_c00152{left:506.159415px;}
.x27_c00152{left:525.239220px;}
.x2b_c00152{left:545.759535px;}
.x32_c00152{left:554.038920px;}
.x22_c00152{left:570.599070px;}
.x23_c00152{left:584.639700px;}
.x2d_c00152{left:619.918950px;}
.x2e_c00152{left:638.278800px;}
.x40_c00152{left:643.319820px;}
.x7_c00152{left:645.119385px;}
.x28_c00152{left:665.639700px;}
.x8_c00152{left:670.319820px;}
.x41_c00152{left:687.598530px;}
.x24_c00152{left:696.958920px;}
.x29_c00152{left:715.318770px;}
.x2f_c00152{left:721.439205px;}
.x42_c00152{left:733.678530px;}
.x43_c00152{left:746.998950px;}
.x1c_c00152{left:754.198785px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls1b_c00152{letter-spacing:-16.936000pt;}
.ls16_c00152{letter-spacing:-12.914300pt;}
.ls20_c00152{letter-spacing:-11.917400pt;}
.ls23_c00152{letter-spacing:-11.377333pt;}
.ls1e_c00152{letter-spacing:-9.166667pt;}
.ls1d_c00152{letter-spacing:-8.603240pt;}
.ls17_c00152{letter-spacing:-8.155000pt;}
.ls28_c00152{letter-spacing:-7.266700pt;}
.lsd_c00152{letter-spacing:-6.601000pt;}
.ls9_c00152{letter-spacing:-5.943000pt;}
.ls12_c00152{letter-spacing:-5.285000pt;}
.lse_c00152{letter-spacing:-4.791667pt;}
.ls10_c00152{letter-spacing:-4.664473pt;}
.lsc_c00152{letter-spacing:-4.619300pt;}
.ls3a_c00152{letter-spacing:-4.601333pt;}
.ls1f_c00152{letter-spacing:-4.583333pt;}
.ls30_c00152{letter-spacing:-4.377780pt;}
.ls15_c00152{letter-spacing:-3.966133pt;}
.ls11_c00152{letter-spacing:-3.961300pt;}
.ls38_c00152{letter-spacing:-3.498667pt;}
.lsa_c00152{letter-spacing:-3.304000pt;}
.ls29_c00152{letter-spacing:-3.284400pt;}
.ls37_c00152{letter-spacing:-2.995627pt;}
.lsb_c00152{letter-spacing:-2.639000pt;}
.ls32_c00152{letter-spacing:-2.582740pt;}
.ls35_c00152{letter-spacing:-2.234780pt;}
.ls5_c00152{letter-spacing:-2.204200pt;}
.ls1a_c00152{letter-spacing:-2.175600pt;}
.ls2d_c00152{letter-spacing:-2.033333pt;}
.ls27_c00152{letter-spacing:-2.020360pt;}
.ls7_c00152{letter-spacing:-1.981700pt;}
.ls34_c00152{letter-spacing:-1.936140pt;}
.ls2b_c00152{letter-spacing:-1.497600pt;}
.ls39_c00152{letter-spacing:-1.424220pt;}
.ls18_c00152{letter-spacing:-1.357300pt;}
.ls36_c00152{letter-spacing:-1.331600pt;}
.ls4_c00152{letter-spacing:-1.323700pt;}
.ls31_c00152{letter-spacing:-1.313533pt;}
.ls2e_c00152{letter-spacing:-0.739867pt;}
.ls22_c00152{letter-spacing:-0.734733pt;}
.ls14_c00152{letter-spacing:-0.706507pt;}
.ls2a_c00152{letter-spacing:-0.688000pt;}
.ls24_c00152{letter-spacing:-0.680067pt;}
.lsf_c00152{letter-spacing:-0.658000pt;}
.ls8_c00152{letter-spacing:0.000000pt;}
.ls6_c00152{letter-spacing:0.734733pt;}
.ls13_c00152{letter-spacing:0.776533pt;}
.ls0_c00152{letter-spacing:1.323700pt;}
.ls25_c00152{letter-spacing:1.353053pt;}
.ls21_c00152{letter-spacing:1.491467pt;}
.ls33_c00152{letter-spacing:2.711467pt;}
.ls1_c00152{letter-spacing:2.716000pt;}
.ls26_c00152{letter-spacing:2.856533pt;}
.ls19_c00152{letter-spacing:2.861333pt;}
.ls2f_c00152{letter-spacing:5.164667pt;}
.ls2c_c00152{letter-spacing:8.275600pt;}
.ls1c_c00152{letter-spacing:15.844000pt;}
.ls3_c00152{letter-spacing:34.834067pt;}
.ls2_c00152{letter-spacing:42.166667pt;}
.ws0_c00152{word-spacing:0.000000pt;}
._1b_c00152{margin-left:-193.232893pt;}
._1d_c00152{margin-left:-83.667467pt;}
._1a_c00152{margin-left:-19.474517pt;}
._1c_c00152{margin-left:-17.820220pt;}
._1f_c00152{margin-left:-5.984352pt;}
._1e_c00152{margin-left:-3.564453pt;}
._19_c00152{margin-left:-2.356709pt;}
._18_c00152{margin-left:-1.226697pt;}
._15_c00152{width:1.409695pt;}
._12_c00152{width:2.702053pt;}
._20_c00152{width:3.831754pt;}
._e_c00152{width:5.201178pt;}
._f_c00152{width:6.132106pt;}
._c_c00152{width:7.140423pt;}
._d_c00152{width:8.891426pt;}
._11_c00152{width:9.947264pt;}
._b_c00152{width:11.526137pt;}
._0_c00152{width:12.889889pt;}
._10_c00152{width:15.211185pt;}
._9_c00152{width:17.056094pt;}
._23_c00152{width:18.106850pt;}
._7_c00152{width:19.461730pt;}
._21_c00152{width:20.703425pt;}
._6_c00152{width:21.592768pt;}
._13_c00152{width:23.103460pt;}
._16_c00152{width:24.208232pt;}
._8_c00152{width:26.112034pt;}
._14_c00152{width:27.068498pt;}
._4_c00152{width:28.214200pt;}
._a_c00152{width:29.181085pt;}
._5_c00152{width:30.796249pt;}
._2_c00152{width:31.891577pt;}
._3_c00152{width:34.467974pt;}
._17_c00152{width:35.693079pt;}
._22_c00152{width:37.697681pt;}
._1_c00152{width:43.008238pt;}
.fs16_c00152{font-size:38.000000pt;}
.fs17_c00152{font-size:38.666667pt;}
.fs11_c00152{font-size:40.000000pt;}
.fs13_c00152{font-size:40.666667pt;}
.fs14_c00152{font-size:41.333333pt;}
.fsf_c00152{font-size:42.000000pt;}
.fs12_c00152{font-size:42.666667pt;}
.fs15_c00152{font-size:44.666667pt;}
.fs10_c00152{font-size:46.000000pt;}
.fsb_c00152{font-size:49.333333pt;}
.fsc_c00152{font-size:62.666667pt;}
.fse_c00152{font-size:65.333333pt;}
.fsd_c00152{font-size:67.333333pt;}
.fsa_c00152{font-size:68.000000pt;}
.fs5_c00152{font-size:69.333333pt;}
.fs0_c00152{font-size:70.000000pt;}
.fs7_c00152{font-size:70.666667pt;}
.fs1_c00152{font-size:71.333333pt;}
.fs4_c00152{font-size:72.666667pt;}
.fs2_c00152{font-size:73.333333pt;}
.fs8_c00152{font-size:74.000000pt;}
.fs3_c00152{font-size:76.666667pt;}
.fs6_c00152{font-size:77.333333pt;}
.fs9_c00152{font-size:96.666667pt;}
.y0_c00152{bottom:0.000000pt;}
.y2b_c00152{bottom:150.399867pt;}
.y2a_c00152{bottom:164.160667pt;}
.y29_c00152{bottom:170.560520pt;}
.y28_c00152{bottom:240.640213pt;}
.y27_c00152{bottom:267.520147pt;}
.y26_c00152{bottom:293.759720pt;}
.y24_c00152{bottom:320.000227pt;}
.y25_c00152{bottom:320.000920pt;}
.y23_c00152{bottom:346.559973pt;}
.y22_c00152{bottom:346.560893pt;}
.y20_c00152{bottom:373.120480pt;}
.y21_c00152{bottom:373.120640pt;}
.y1f_c00152{bottom:399.200640pt;}
.y1e_c00152{bottom:399.360347pt;}
.y1d_c00152{bottom:426.240280pt;}
.y1c_c00152{bottom:426.241027pt;}
.y1a_c00152{bottom:452.800107pt;}
.y1b_c00152{bottom:452.800787pt;}
.y19_c00152{bottom:479.359867pt;}
.y18_c00152{bottom:479.360307pt;}
.y17_c00152{bottom:506.560667pt;}
.y16_c00152{bottom:532.800253pt;}
.y15_c00152{bottom:585.919227pt;}
.y14_c00152{bottom:611.840253pt;}
.y13_c00152{bottom:638.720253pt;}
.y12_c00152{bottom:668.160640pt;}
.y10_c00152{bottom:691.839800pt;}
.y11_c00152{bottom:691.839840pt;}
.ye_c00152{bottom:718.719680pt;}
.yf_c00152{bottom:718.719720pt;}
.yd_c00152{bottom:745.599613pt;}
.yc_c00152{bottom:745.599627pt;}
.yb_c00152{bottom:771.840827pt;}
.ya_c00152{bottom:771.841893pt;}
.y9_c00152{bottom:824.320800pt;}
.y8_c00152{bottom:851.521160pt;}
.y7_c00152{bottom:877.760747pt;}
.y6_c00152{bottom:877.760867pt;}
.y5_c00152{bottom:904.640787pt;}
.y4_c00152{bottom:930.880373pt;}
.y3_c00152{bottom:930.881000pt;}
.y2_c00152{bottom:957.760920pt;}
.y1_c00152{bottom:1011.200600pt;}
.h1d_c00152{height:37.554687pt;}
.h1f_c00152{height:38.213542pt;}
.h18_c00152{height:40.312500pt;}
.h1a_c00152{height:40.984375pt;}
.h16_c00152{height:41.220703pt;}
.h1b_c00152{height:41.656250pt;}
.h1e_c00152{height:42.328125pt;}
.h19_c00152{height:43.000000pt;}
.h1c_c00152{height:44.143229pt;}
.h17_c00152{height:45.460938pt;}
.he_c00152{height:51.453125pt;}
.h14_c00152{height:64.121094pt;}
.h10_c00152{height:65.359375pt;}
.h11_c00152{height:66.083984pt;}
.h13_c00152{height:67.859375pt;}
.h6_c00152{height:68.046875pt;}
.h1_c00152{height:68.701172pt;}
.h12_c00152{height:69.355469pt;}
.h15_c00152{height:69.875000pt;}
.h2_c00152{height:69.974935pt;}
.h7_c00152{height:70.009766pt;}
.h8_c00152{height:70.546875pt;}
.hd_c00152{height:70.921875pt;}
.ha_c00152{height:71.218750pt;}
.h5_c00152{height:71.318359pt;}
.h3_c00152{height:71.972656pt;}
.hf_c00152{height:72.473958pt;}
.hb_c00152{height:72.590820pt;}
.h4_c00152{height:75.244141pt;}
.h9_c00152{height:76.427083pt;}
.hc_c00152{height:94.873047pt;}
.h0_c00152{height:1122.666667pt;}
.w0_c00152{width:793.333333pt;}
.x0_c00152{left:0.000000pt;}
.x30_c00152{left:123.518947pt;}
.x11_c00152{left:124.797467pt;}
.x6_c00152{left:125.756507pt;}
.x1_c00152{left:126.719200pt;}
.x44_c00152{left:135.679733pt;}
.x14_c00152{left:147.839333pt;}
.x34_c00152{left:151.038533pt;}
.x35_c00152{left:161.919480pt;}
.x36_c00152{left:175.678667pt;}
.x15_c00152{left:192.959453pt;}
.x1d_c00152{left:200.958920pt;}
.x2_c00152{left:207.039587pt;}
.x37_c00152{left:208.319867pt;}
.x38_c00152{left:220.479453pt;}
.x1f_c00152{left:246.719200pt;}
.x39_c00152{left:255.999067pt;}
.x16_c00152{left:273.279720pt;}
.x1e_c00152{left:279.679733pt;}
.x3a_c00152{left:285.758787pt;}
.x3b_c00152{left:300.799867pt;}
.x17_c00152{left:302.078680pt;}
.xd_c00152{left:305.279320pt;}
.x18_c00152{left:314.879867pt;}
.x20_c00152{left:316.479453pt;}
.xe_c00152{left:321.599067pt;}
.x33_c00152{left:329.598680pt;}
.x19_c00152{left:331.839867pt;}
.x9_c00152{left:335.039067pt;}
.x3c_c00152{left:340.479453pt;}
.x3_c00152{left:348.159707pt;}
.xa_c00152{left:353.279333pt;}
.xf_c00152{left:364.798787pt;}
.xb_c00152{left:366.399867pt;}
.x2a_c00152{left:373.119187pt;}
.x31_c00152{left:375.358933pt;}
.x1a_c00152{left:382.079587pt;}
.x25_c00152{left:383.679200pt;}
.xc_c00152{left:385.278813pt;}
.x10_c00152{left:389.438920pt;}
.x3d_c00152{left:394.879307pt;}
.x26_c00152{left:407.679200pt;}
.x1b_c00152{left:415.359333pt;}
.x12_c00152{left:421.759320pt;}
.x4_c00152{left:432.319333pt;}
.x21_c00152{left:433.918907pt;}
.x3e_c00152{left:438.079067pt;}
.x13_c00152{left:443.838907pt;}
.x5_c00152{left:445.439987pt;}
.x2c_c00152{left:448.639200pt;}
.x3f_c00152{left:449.919480pt;}
.x27_c00152{left:466.879307pt;}
.x2b_c00152{left:485.119587pt;}
.x32_c00152{left:492.479040pt;}
.x22_c00152{left:507.199173pt;}
.x23_c00152{left:519.679733pt;}
.x2d_c00152{left:551.039067pt;}
.x2e_c00152{left:567.358933pt;}
.x40_c00152{left:571.839840pt;}
.x7_c00152{left:573.439453pt;}
.x28_c00152{left:591.679733pt;}
.x8_c00152{left:595.839840pt;}
.x41_c00152{left:611.198693pt;}
.x24_c00152{left:619.519040pt;}
.x29_c00152{left:635.838907pt;}
.x2f_c00152{left:641.279293pt;}
.x42_c00152{left:652.158693pt;}
.x43_c00152{left:663.999067pt;}
.x1c_c00152{left:670.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b64a77932a6dd5b53f36b3ef.woff2')format("woff");}.ff1_c00153{font-family:ff1_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:ff2_c00153;src:url('chunks/assets/font_0b77c3ab4d5b368e0064fbad.woff2')format("woff");}.ff2_c00153{font-family:ff2_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:ff3_c00153;src:url('chunks/assets/font_4b9139f1652b36fe8bbd7f1d.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.364746;font-style:normal;font-weight:normal;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_1c8117c14506f9fab452e9b6.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_1c3069d9df95379f541625ba.woff2')format("woff");}.ff5_c00153{font-family:ff5_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:ff6_c00153;src:url('chunks/assets/font_d7a9be8aa1f96a1b467150f1.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00153{transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m27_c00153{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.m13_c00153{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m10_c00153{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m28_c00153{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.313107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313107,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2b_c00153{letter-spacing:-18.838500px;}
.ls17_c00153{letter-spacing:-14.466825px;}
.lsc_c00153{letter-spacing:-13.746450px;}
.ls30_c00153{letter-spacing:-13.041000px;}
.ls1c_c00153{letter-spacing:-12.799500px;}
.ls1b_c00153{letter-spacing:-12.377475px;}
.ls20_c00153{letter-spacing:-11.055000px;}
.ls18_c00153{letter-spacing:-9.578228px;}
.ls2f_c00153{letter-spacing:-8.593950px;}
.lse_c00153{letter-spacing:-7.576538px;}
.lsf_c00153{letter-spacing:-6.811875px;}
.lsd_c00153{letter-spacing:-6.055875px;}
.ls25_c00153{letter-spacing:-5.889548px;}
.ls2c_c00153{letter-spacing:-5.786025px;}
.ls9_c00153{letter-spacing:-5.300663px;}
.ls7_c00153{letter-spacing:-4.543088px;}
.ls16_c00153{letter-spacing:-4.502400px;}
.ls14_c00153{letter-spacing:-4.420200px;}
.ls28_c00153{letter-spacing:-4.132875px;}
.ls2d_c00153{letter-spacing:-3.975000px;}
.ls1d_c00153{letter-spacing:-3.927000px;}
.lsb_c00153{letter-spacing:-3.787875px;}
.ls2_c00153{letter-spacing:-3.368100px;}
.ls26_c00153{letter-spacing:-3.158025px;}
.ls27_c00153{letter-spacing:-3.037650px;}
.lsa_c00153{letter-spacing:-3.031875px;}
.ls21_c00153{letter-spacing:-2.526075px;}
.ls19_c00153{letter-spacing:-2.395365px;}
.ls29_c00153{letter-spacing:-2.378925px;}
.ls4_c00153{letter-spacing:-2.267213px;}
.ls1a_c00153{letter-spacing:-1.693125px;}
.ls22_c00153{letter-spacing:-1.684050px;}
.ls23_c00153{letter-spacing:-1.653600px;}
.ls8_c00153{letter-spacing:-1.512000px;}
.ls11_c00153{letter-spacing:-0.858000px;}
.ls3_c00153{letter-spacing:-0.842025px;}
.ls5_c00153{letter-spacing:-0.756000px;}
.ls10_c00153{letter-spacing:-0.750750px;}
.ls15_c00153{letter-spacing:-0.704295px;}
.ls6_c00153{letter-spacing:0.000000px;}
.ls1e_c00153{letter-spacing:0.680850px;}
.ls1_c00153{letter-spacing:0.756000px;}
.ls2e_c00153{letter-spacing:2.317950px;}
.ls1f_c00153{letter-spacing:2.410200px;}
.ls12_c00153{letter-spacing:2.512200px;}
.ls0_c00153{letter-spacing:3.031875px;}
.ls24_c00153{letter-spacing:3.787875px;}
.ls2a_c00153{letter-spacing:9.711900px;}
.ls13_c00153{letter-spacing:10.562400px;}
.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;}
._11_c00153{margin-left:-45.368010px;}
._12_c00153{margin-left:-38.300100px;}
._18_c00153{margin-left:-12.777643px;}
._13_c00153{margin-left:-9.761789px;}
._17_c00153{margin-left:-6.654012px;}
._6_c00153{margin-left:-3.980510px;}
._1_c00153{margin-left:-2.306830px;}
._9_c00153{margin-left:-1.121582px;}
._0_c00153{width:1.433674px;}
._2_c00153{width:2.837060px;}
._5_c00153{width:4.020430px;}
._10_c00153{width:5.041090px;}
._4_c00153{width:6.192052px;}
._a_c00153{width:7.580051px;}
._16_c00153{width:8.587324px;}
._3_c00153{width:9.691581px;}
._7_c00153{width:11.554382px;}
._c_c00153{width:12.973457px;}
._d_c00153{width:14.591103px;}
._f_c00153{width:16.084566px;}
._b_c00153{width:18.020362px;}
._e_c00153{width:19.562166px;}
._8_c00153{width:20.742689px;}
._14_c00153{width:22.767594px;}
._15_c00153{width:24.118702px;}
._19_c00153{width:25.490527px;}
._1a_c00153{width:27.091757px;}
._1b_c00153{width:28.592611px;}
._1d_c00153{width:30.099462px;}
._1c_c00153{width:32.092139px;}
.fc0_c00153{color:transparent;}
.fs12_c00153{font-size:57.750000px;}
.fs11_c00153{font-size:59.250000px;}
.fse_c00153{font-size:69.000000px;}
.fs9_c00153{font-size:70.500000px;}
.fs15_c00153{font-size:71.250000px;}
.fs13_c00153{font-size:72.000000px;}
.fs14_c00153{font-size:72.750000px;}
.fsb_c00153{font-size:73.500000px;}
.fsc_c00153{font-size:74.250000px;}
.fsd_c00153{font-size:76.500000px;}
.fs8_c00153{font-size:77.250000px;}
.fs5_c00153{font-size:78.000000px;}
.fs1_c00153{font-size:78.750000px;}
.fs6_c00153{font-size:79.500000px;}
.fs10_c00153{font-size:80.250000px;}
.fs7_c00153{font-size:81.000000px;}
.fs0_c00153{font-size:81.750000px;}
.fsf_c00153{font-size:82.500000px;}
.fsa_c00153{font-size:84.000000px;}
.fs2_c00153{font-size:84.750000px;}
.fs4_c00153{font-size:101.250000px;}
.fs3_c00153{font-size:115.500000px;}
.y0_c00153{bottom:0.000000px;}
.y25_c00153{bottom:196.919220px;}
.y23_c00153{bottom:226.798515px;}
.y24_c00153{bottom:226.798950px;}
.y22_c00153{bottom:286.199565px;}
.y21_c00153{bottom:315.719100px;}
.y20_c00153{bottom:345.238785px;}
.y1e_c00153{bottom:374.759280px;}
.y1f_c00153{bottom:374.760135px;}
.y1d_c00153{bottom:404.639010px;}
.y1c_c00153{bottom:434.878920px;}
.y1a_c00153{bottom:465.118725px;}
.y1b_c00153{bottom:465.118785px;}
.y19_c00153{bottom:495.358635px;}
.y18_c00153{bottom:524.879970px;}
.y17_c00153{bottom:530.998950px;}
.y16_c00153{bottom:584.639700px;}
.y15_c00153{bottom:584.640015px;}
.y14_c00153{bottom:605.518635px;}
.y13_c00153{bottom:626.759535px;}
.y11_c00153{bottom:686.879880px;}
.y12_c00153{bottom:686.879970px;}
.y10_c00153{bottom:716.038920px;}
.yf_c00153{bottom:752.760135px;}
.ye_c00153{bottom:806.398125px;}
.yd_c00153{bottom:827.639025px;}
.yc_c00153{bottom:848.879955px;}
.yb_c00153{bottom:870.118740px;}
.ya_c00153{bottom:929.879625px;}
.y9_c00153{bottom:960.119550px;}
.y8_c00153{bottom:989.999265px;}
.y7_c00153{bottom:1020.599670px;}
.y6_c00153{bottom:1020.599805px;}
.y5_c00153{bottom:1050.479535px;}
.y3_c00153{bottom:1080.358665px;}
.y4_c00153{bottom:1080.359250px;}
.y2_c00153{bottom:1109.878185px;}
.y1_c00153{bottom:1139.039340px;}
.h18_c00153{height:58.201172px;}
.h17_c00153{height:58.555664px;}
.hb_c00153{height:71.050781px;}
.h12_c00153{height:71.964844px;}
.h1e_c00153{height:73.529297px;}
.h1d_c00153{height:74.311523px;}
.h11_c00153{height:75.080566px;}
.h19_c00153{height:75.093750px;}
.ha_c00153{height:75.816650px;}
.h1c_c00153{height:75.875977px;}
.h13_c00153{height:76.552734px;}
.he_c00153{height:76.658203px;}
.h2_c00153{height:77.288818px;}
.h10_c00153{height:77.440430px;}
.hd_c00153{height:77.853516px;}
.h15_c00153{height:77.986084px;}
.h7_c00153{height:78.024902px;}
.h6_c00153{height:78.609375px;}
.h16_c00153{height:78.760986px;}
.hf_c00153{height:79.365234px;}
.h1f_c00153{height:79.497070px;}
.h9_c00153{height:80.121094px;}
.h1_c00153{height:80.193237px;}
.h1b_c00153{height:80.233154px;}
.h1a_c00153{height:80.876953px;}
.h14_c00153{height:81.533203px;}
.h8_c00153{height:81.632812px;}
.hc_c00153{height:83.015625px;}
.h4_c00153{height:83.177490px;}
.h3_c00153{height:83.756836px;}
.h5_c00153{height:120.462891px;}
.h0_c00153{height:1263.000000px;}
.w0_c00153{width:892.500000px;}
.x0_c00153{left:0.000000px;}
.x21_c00153{left:98.998950px;}
.x9_c00153{left:141.479715px;}
.x1_c00153{left:142.559100px;}
.x22_c00153{left:165.599100px;}
.xa_c00153{left:190.079400px;}
.x8_c00153{left:195.840015px;}
.x6_c00153{left:197.279250px;}
.x25_c00153{left:209.879535px;}
.x15_c00153{left:214.559685px;}
.x1a_c00153{left:217.799535px;}
.x7_c00153{left:228.239250px;}
.x1b_c00153{left:229.679700px;}
.x30_c00153{left:268.198785px;}
.xb_c00153{left:285.838515px;}
.x2_c00153{left:296.639100px;}
.x16_c00153{left:303.838950px;}
.x26_c00153{left:316.798515px;}
.x17_c00153{left:336.598530px;}
.x31_c00153{left:345.599700px;}
.x39_c00153{left:352.438635px;}
.xc_c00153{left:364.318800px;}
.x27_c00153{left:378.718530px;}
.x3a_c00153{left:381.599100px;}
.x1c_c00153{left:386.999400px;}
.x2d_c00153{left:389.878320px;}
.x1d_c00153{left:393.119985px;}
.x18_c00153{left:398.879565px;}
.x1e_c00153{left:404.279850px;}
.xd_c00153{left:420.119985px;}
.x2e_c00153{left:421.199385px;}
.x19_c00153{left:424.439250px;}
.x32_c00153{left:428.039985px;}
.x28_c00153{left:442.439670px;}
.xe_c00153{left:444.959385px;}
.x33_c00153{left:476.998950px;}
.xf_c00153{left:514.079400px;}
.x29_c00153{left:529.919535px;}
.x3_c00153{left:544.319235px;}
.x5_c00153{left:558.719100px;}
.x4_c00153{left:581.759085px;}
.x10_c00153{left:601.559100px;}
.x2a_c00153{left:603.719520px;}
.x34_c00153{left:622.438620px;}
.x11_c00153{left:626.398635px;}
.x35_c00153{left:648.359250px;}
.x12_c00153{left:660.959385px;}
.x36_c00153{left:677.878920px;}
.x23_c00153{left:693.719100px;}
.x1f_c00153{left:700.198785px;}
.x13_c00153{left:720.719100px;}
.x24_c00153{left:724.679070px;}
.x20_c00153{left:731.519670px;}
.x2b_c00153{left:734.398635px;}
.x37_c00153{left:736.199850px;}
.x14_c00153{left:745.919535px;}
.x2f_c00153{left:754.559685px;}
.x38_c00153{left:762.118785px;}
.x2c_c00153{left:778.319820px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2b_c00153{letter-spacing:-16.745333pt;}
.ls17_c00153{letter-spacing:-12.859400pt;}
.lsc_c00153{letter-spacing:-12.219067pt;}
.ls30_c00153{letter-spacing:-11.592000pt;}
.ls1c_c00153{letter-spacing:-11.377333pt;}
.ls1b_c00153{letter-spacing:-11.002200pt;}
.ls20_c00153{letter-spacing:-9.826667pt;}
.ls18_c00153{letter-spacing:-8.513980pt;}
.ls2f_c00153{letter-spacing:-7.639067pt;}
.lse_c00153{letter-spacing:-6.734700pt;}
.lsf_c00153{letter-spacing:-6.055000pt;}
.lsd_c00153{letter-spacing:-5.383000pt;}
.ls25_c00153{letter-spacing:-5.235153pt;}
.ls2c_c00153{letter-spacing:-5.143133pt;}
.ls9_c00153{letter-spacing:-4.711700pt;}
.ls7_c00153{letter-spacing:-4.038300pt;}
.ls16_c00153{letter-spacing:-4.002133pt;}
.ls14_c00153{letter-spacing:-3.929067pt;}
.ls28_c00153{letter-spacing:-3.673667pt;}
.ls2d_c00153{letter-spacing:-3.533333pt;}
.ls1d_c00153{letter-spacing:-3.490667pt;}
.lsb_c00153{letter-spacing:-3.367000pt;}
.ls2_c00153{letter-spacing:-2.993867pt;}
.ls26_c00153{letter-spacing:-2.807133pt;}
.ls27_c00153{letter-spacing:-2.700133pt;}
.lsa_c00153{letter-spacing:-2.695000pt;}
.ls21_c00153{letter-spacing:-2.245400pt;}
.ls19_c00153{letter-spacing:-2.129213pt;}
.ls29_c00153{letter-spacing:-2.114600pt;}
.ls4_c00153{letter-spacing:-2.015300pt;}
.ls1a_c00153{letter-spacing:-1.505000pt;}
.ls22_c00153{letter-spacing:-1.496933pt;}
.ls23_c00153{letter-spacing:-1.469867pt;}
.ls8_c00153{letter-spacing:-1.344000pt;}
.ls11_c00153{letter-spacing:-0.762667pt;}
.ls3_c00153{letter-spacing:-0.748467pt;}
.ls5_c00153{letter-spacing:-0.672000pt;}
.ls10_c00153{letter-spacing:-0.667333pt;}
.ls15_c00153{letter-spacing:-0.626040pt;}
.ls6_c00153{letter-spacing:0.000000pt;}
.ls1e_c00153{letter-spacing:0.605200pt;}
.ls1_c00153{letter-spacing:0.672000pt;}
.ls2e_c00153{letter-spacing:2.060400pt;}
.ls1f_c00153{letter-spacing:2.142400pt;}
.ls12_c00153{letter-spacing:2.233067pt;}
.ls0_c00153{letter-spacing:2.695000pt;}
.ls24_c00153{letter-spacing:3.367000pt;}
.ls2a_c00153{letter-spacing:8.632800pt;}
.ls13_c00153{letter-spacing:9.388800pt;}
.ws0_c00153{word-spacing:0.000000pt;}
._11_c00153{margin-left:-40.327120pt;}
._12_c00153{margin-left:-34.044533pt;}
._18_c00153{margin-left:-11.357905pt;}
._13_c00153{margin-left:-8.677146pt;}
._17_c00153{margin-left:-5.914677pt;}
._6_c00153{margin-left:-3.538231pt;}
._1_c00153{margin-left:-2.050515pt;}
._9_c00153{margin-left:-0.996962pt;}
._0_c00153{width:1.274377pt;}
._2_c00153{width:2.521831pt;}
._5_c00153{width:3.573715pt;}
._10_c00153{width:4.480969pt;}
._4_c00153{width:5.504046pt;}
._a_c00153{width:6.737823pt;}
._16_c00153{width:7.633177pt;}
._3_c00153{width:8.614738pt;}
._7_c00153{width:10.270562pt;}
._c_c00153{width:11.531962pt;}
._d_c00153{width:12.969869pt;}
._f_c00153{width:14.297392pt;}
._b_c00153{width:16.018100pt;}
._e_c00153{width:17.388592pt;}
._8_c00153{width:18.437946pt;}
._14_c00153{width:20.237862pt;}
._15_c00153{width:21.438846pt;}
._19_c00153{width:22.658246pt;}
._1a_c00153{width:24.081562pt;}
._1b_c00153{width:25.415654pt;}
._1d_c00153{width:26.755077pt;}
._1c_c00153{width:28.526346pt;}
.fs12_c00153{font-size:51.333333pt;}
.fs11_c00153{font-size:52.666667pt;}
.fse_c00153{font-size:61.333333pt;}
.fs9_c00153{font-size:62.666667pt;}
.fs15_c00153{font-size:63.333333pt;}
.fs13_c00153{font-size:64.000000pt;}
.fs14_c00153{font-size:64.666667pt;}
.fsb_c00153{font-size:65.333333pt;}
.fsc_c00153{font-size:66.000000pt;}
.fsd_c00153{font-size:68.000000pt;}
.fs8_c00153{font-size:68.666667pt;}
.fs5_c00153{font-size:69.333333pt;}
.fs1_c00153{font-size:70.000000pt;}
.fs6_c00153{font-size:70.666667pt;}
.fs10_c00153{font-size:71.333333pt;}
.fs7_c00153{font-size:72.000000pt;}
.fs0_c00153{font-size:72.666667pt;}
.fsf_c00153{font-size:73.333333pt;}
.fsa_c00153{font-size:74.666667pt;}
.fs2_c00153{font-size:75.333333pt;}
.fs4_c00153{font-size:90.000000pt;}
.fs3_c00153{font-size:102.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y25_c00153{bottom:175.039307pt;}
.y23_c00153{bottom:201.598680pt;}
.y24_c00153{bottom:201.599067pt;}
.y22_c00153{bottom:254.399613pt;}
.y21_c00153{bottom:280.639200pt;}
.y20_c00153{bottom:306.878920pt;}
.y1e_c00153{bottom:333.119360pt;}
.y1f_c00153{bottom:333.120120pt;}
.y1d_c00153{bottom:359.679120pt;}
.y1c_c00153{bottom:386.559040pt;}
.y1a_c00153{bottom:413.438867pt;}
.y1b_c00153{bottom:413.438920pt;}
.y19_c00153{bottom:440.318787pt;}
.y18_c00153{bottom:466.559973pt;}
.y17_c00153{bottom:471.999067pt;}
.y16_c00153{bottom:519.679733pt;}
.y15_c00153{bottom:519.680013pt;}
.y14_c00153{bottom:538.238787pt;}
.y13_c00153{bottom:557.119587pt;}
.y11_c00153{bottom:610.559893pt;}
.y12_c00153{bottom:610.559973pt;}
.y10_c00153{bottom:636.479040pt;}
.yf_c00153{bottom:669.120120pt;}
.ye_c00153{bottom:716.798333pt;}
.yd_c00153{bottom:735.679133pt;}
.yc_c00153{bottom:754.559960pt;}
.yb_c00153{bottom:773.438880pt;}
.ya_c00153{bottom:826.559667pt;}
.y9_c00153{bottom:853.439600pt;}
.y8_c00153{bottom:879.999347pt;}
.y7_c00153{bottom:907.199707pt;}
.y6_c00153{bottom:907.199827pt;}
.y5_c00153{bottom:933.759587pt;}
.y3_c00153{bottom:960.318813pt;}
.y4_c00153{bottom:960.319333pt;}
.y2_c00153{bottom:986.558387pt;}
.y1_c00153{bottom:1012.479413pt;}
.h18_c00153{height:51.734375pt;}
.h17_c00153{height:52.049479pt;}
.hb_c00153{height:63.156250pt;}
.h12_c00153{height:63.968750pt;}
.h1e_c00153{height:65.359375pt;}
.h1d_c00153{height:66.054688pt;}
.h11_c00153{height:66.738281pt;}
.h19_c00153{height:66.750000pt;}
.ha_c00153{height:67.392578pt;}
.h1c_c00153{height:67.445312pt;}
.h13_c00153{height:68.046875pt;}
.he_c00153{height:68.140625pt;}
.h2_c00153{height:68.701172pt;}
.h10_c00153{height:68.835938pt;}
.hd_c00153{height:69.203125pt;}
.h15_c00153{height:69.320964pt;}
.h7_c00153{height:69.355469pt;}
.h6_c00153{height:69.875000pt;}
.h16_c00153{height:70.009766pt;}
.hf_c00153{height:70.546875pt;}
.h1f_c00153{height:70.664062pt;}
.h9_c00153{height:71.218750pt;}
.h1_c00153{height:71.282878pt;}
.h1b_c00153{height:71.318359pt;}
.h1a_c00153{height:71.890625pt;}
.h14_c00153{height:72.473958pt;}
.h8_c00153{height:72.562500pt;}
.hc_c00153{height:73.791667pt;}
.h4_c00153{height:73.935547pt;}
.h3_c00153{height:74.450521pt;}
.h5_c00153{height:107.078125pt;}
.h0_c00153{height:1122.666667pt;}
.w0_c00153{width:793.333333pt;}
.x0_c00153{left:0.000000pt;}
.x21_c00153{left:87.999067pt;}
.x9_c00153{left:125.759747pt;}
.x1_c00153{left:126.719200pt;}
.x22_c00153{left:147.199200pt;}
.xa_c00153{left:168.959467pt;}
.x8_c00153{left:174.080013pt;}
.x6_c00153{left:175.359333pt;}
.x25_c00153{left:186.559587pt;}
.x15_c00153{left:190.719720pt;}
.x1a_c00153{left:193.599587pt;}
.x7_c00153{left:202.879333pt;}
.x1b_c00153{left:204.159733pt;}
.x30_c00153{left:238.398920pt;}
.xb_c00153{left:254.078680pt;}
.x2_c00153{left:263.679200pt;}
.x16_c00153{left:270.079067pt;}
.x26_c00153{left:281.598680pt;}
.x17_c00153{left:299.198693pt;}
.x31_c00153{left:307.199733pt;}
.x39_c00153{left:313.278787pt;}
.xc_c00153{left:323.838933pt;}
.x27_c00153{left:336.638693pt;}
.x3a_c00153{left:339.199200pt;}
.x1c_c00153{left:343.999467pt;}
.x2d_c00153{left:346.558507pt;}
.x1d_c00153{left:349.439987pt;}
.x18_c00153{left:354.559613pt;}
.x1e_c00153{left:359.359867pt;}
.xd_c00153{left:373.439987pt;}
.x2e_c00153{left:374.399453pt;}
.x19_c00153{left:377.279333pt;}
.x32_c00153{left:380.479987pt;}
.x28_c00153{left:393.279707pt;}
.xe_c00153{left:395.519453pt;}
.x33_c00153{left:423.999067pt;}
.xf_c00153{left:456.959467pt;}
.x29_c00153{left:471.039587pt;}
.x3_c00153{left:483.839320pt;}
.x5_c00153{left:496.639200pt;}
.x4_c00153{left:517.119187pt;}
.x10_c00153{left:534.719200pt;}
.x2a_c00153{left:536.639573pt;}
.x34_c00153{left:553.278773pt;}
.x11_c00153{left:556.798787pt;}
.x35_c00153{left:576.319333pt;}
.x12_c00153{left:587.519453pt;}
.x36_c00153{left:602.559040pt;}
.x23_c00153{left:616.639200pt;}
.x1f_c00153{left:622.398920pt;}
.x13_c00153{left:640.639200pt;}
.x24_c00153{left:644.159173pt;}
.x20_c00153{left:650.239707pt;}
.x2b_c00153{left:652.798787pt;}
.x37_c00153{left:654.399867pt;}
.x14_c00153{left:663.039587pt;}
.x2f_c00153{left:670.719720pt;}
.x38_c00153{left:677.438920pt;}
.x2c_c00153{left:691.839840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_490c2a0254c8b4036683fc95.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_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00154{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.214602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214602,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m12_c00154{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{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_c00154{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls5_c00154{letter-spacing:-11.085300px;}
.lsc_c00154{letter-spacing:-8.914500px;}
.ls12_c00154{letter-spacing:-8.175038px;}
.ls10_c00154{letter-spacing:-7.426125px;}
.lsf_c00154{letter-spacing:-7.290945px;}
.lse_c00154{letter-spacing:-6.685875px;}
.ls6_c00154{letter-spacing:-5.945625px;}
.ls15_c00154{letter-spacing:-5.297400px;}
.ls9_c00154{letter-spacing:-5.247533px;}
.lsd_c00154{letter-spacing:-5.199390px;}
.ls7_c00154{letter-spacing:-5.196713px;}
.ls13_c00154{letter-spacing:-4.670400px;}
.lsb_c00154{letter-spacing:-4.456463px;}
.ls4_c00154{letter-spacing:-3.717000px;}
.ls18_c00154{letter-spacing:-3.024750px;}
.ls19_c00154{letter-spacing:-2.973300px;}
.ls1_c00154{letter-spacing:-2.968875px;}
.ls1a_c00154{letter-spacing:-2.800350px;}
.ls14_c00154{letter-spacing:-2.359350px;}
.ls0_c00154{letter-spacing:-2.229413px;}
.ls3_c00154{letter-spacing:-1.489163px;}
.lsa_c00154{letter-spacing:-0.740250px;}
.ls2_c00154{letter-spacing:0.000000px;}
.ls8_c00154{letter-spacing:0.787178px;}
.ls16_c00154{letter-spacing:0.947430px;}
.ls11_c00154{letter-spacing:3.502980px;}
.ls17_c00154{letter-spacing:3.726810px;}
.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;}
._16_c00154{margin-left:-7.550431px;}
._15_c00154{margin-left:-4.899156px;}
._3_c00154{margin-left:-2.552228px;}
._d_c00154{margin-left:-1.015756px;}
._10_c00154{width:1.512966px;}
._4_c00154{width:2.640666px;}
._1_c00154{width:4.021688px;}
._0_c00154{width:6.146051px;}
._e_c00154{width:7.213203px;}
._19_c00154{width:8.339209px;}
._f_c00154{width:9.367491px;}
._2_c00154{width:10.475072px;}
._12_c00154{width:12.327911px;}
._13_c00154{width:13.345272px;}
._b_c00154{width:14.946200px;}
._1a_c00154{width:16.261518px;}
._18_c00154{width:18.433963px;}
._8_c00154{width:19.601217px;}
._c_c00154{width:20.929150px;}
._5_c00154{width:21.946511px;}
._11_c00154{width:24.297703px;}
._1d_c00154{width:25.428078px;}
._6_c00154{width:26.861566px;}
._a_c00154{width:28.544899px;}
._9_c00154{width:30.791696px;}
._17_c00154{width:32.697030px;}
._14_c00154{width:34.956590px;}
._1e_c00154{width:35.967428px;}
._1b_c00154{width:36.978266px;}
._20_c00154{width:38.717482px;}
._7_c00154{width:40.193525px;}
._1f_c00154{width:44.870844px;}
._1c_c00154{width:112.615115px;}
.fc0_c00154{color:transparent;}
.fsc_c00154{font-size:73.500000px;}
.fsd_c00154{font-size:75.000000px;}
.fs3_c00154{font-size:77.250000px;}
.fs9_c00154{font-size:78.000000px;}
.fs0_c00154{font-size:78.750000px;}
.fs8_c00154{font-size:79.500000px;}
.fs4_c00154{font-size:80.250000px;}
.fs5_c00154{font-size:81.000000px;}
.fs2_c00154{font-size:81.750000px;}
.fs1_c00154{font-size:82.500000px;}
.fsa_c00154{font-size:84.000000px;}
.fs6_c00154{font-size:84.750000px;}
.fsb_c00154{font-size:87.000000px;}
.fs7_c00154{font-size:115.500000px;}
.y0_c00154{bottom:0.000000px;}
.y2b_c00154{bottom:181.439415px;}
.y2a_c00154{bottom:210.958950px;}
.y29_c00154{bottom:241.198785px;}
.y28_c00154{bottom:241.199655px;}
.y27_c00154{bottom:271.079385px;}
.y26_c00154{bottom:271.080270px;}
.y24_c00154{bottom:300.959925px;}
.y25_c00154{bottom:300.960000px;}
.y23_c00154{bottom:331.199850px;}
.y22_c00154{bottom:331.200870px;}
.y21_c00154{bottom:360.720405px;}
.y20_c00154{bottom:390.600135px;}
.y1e_c00154{bottom:420.119220px;}
.y1f_c00154{bottom:420.119985px;}
.y1d_c00154{bottom:449.998950px;}
.y1c_c00154{bottom:449.999790px;}
.y1b_c00154{bottom:479.879520px;}
.y1a_c00154{bottom:479.882100px;}
.y19_c00154{bottom:510.122010px;}
.y18_c00154{bottom:539.641545px;}
.y17_c00154{bottom:599.761185px;}
.y16_c00154{bottom:629.640900px;}
.y15_c00154{bottom:658.799955px;}
.y14_c00154{bottom:688.679670px;}
.y13_c00154{bottom:809.279850px;}
.y12_c00154{bottom:809.280030px;}
.y10_c00154{bottom:838.799370px;}
.y11_c00154{bottom:838.799565px;}
.yf_c00154{bottom:869.039295px;}
.ye_c00154{bottom:899.279205px;}
.yd_c00154{bottom:899.279385px;}
.yc_c00154{bottom:928.798920px;}
.yb_c00154{bottom:928.799055px;}
.ya_c00154{bottom:959.038965px;}
.y9_c00154{bottom:959.040660px;}
.y8_c00154{bottom:988.920390px;}
.y6_c00154{bottom:1018.800060px;}
.y7_c00154{bottom:1018.800105px;}
.y4_c00154{bottom:1049.039220px;}
.y5_c00154{bottom:1049.039985px;}
.y3_c00154{bottom:1078.918950px;}
.y2_c00154{bottom:1078.919310px;}
.y1_c00154{bottom:1109.519715px;}
.hd_c00154{height:72.136230px;}
.he_c00154{height:73.608398px;}
.h4_c00154{height:75.816650px;}
.ha_c00154{height:76.552734px;}
.h1_c00154{height:77.288818px;}
.h9_c00154{height:78.024902px;}
.h5_c00154{height:78.760986px;}
.h6_c00154{height:79.497070px;}
.h3_c00154{height:80.233154px;}
.h2_c00154{height:80.969238px;}
.hb_c00154{height:82.441406px;}
.h7_c00154{height:83.177490px;}
.hc_c00154{height:85.385742px;}
.h8_c00154{height:120.462891px;}
.h0_c00154{height:1263.000000px;}
.w0_c00154{width:892.500000px;}
.x0_c00154{left:0.000000px;}
.x30_c00154{left:137.520810px;}
.x10_c00154{left:140.401680px;}
.x1_c00154{left:141.479715px;}
.x33_c00154{left:142.919790px;}
.x28_c00154{left:197.999400px;}
.x29_c00154{left:212.399250px;}
.xb_c00154{left:216.000000px;}
.x15_c00154{left:227.519100px;}
.xc_c00154{left:230.759100px;}
.x9_c00154{left:233.998950px;}
.xa_c00154{left:250.559100px;}
.x16_c00154{left:253.078785px;}
.x20_c00154{left:266.399250px;}
.x1a_c00154{left:283.318800px;}
.xd_c00154{left:291.599700px;}
.x2_c00154{left:296.279850px;}
.x1b_c00154{left:313.919535px;}
.x3_c00154{left:314.998950px;}
.xe_c00154{left:327.239850px;}
.x2a_c00154{left:335.519100px;}
.x6_c00154{left:341.998950px;}
.xf_c00154{left:347.040000px;}
.x2b_c00154{left:348.839535px;}
.x1c_c00154{left:354.599100px;}
.x26_c00154{left:364.679700px;}
.x1d_c00154{left:376.198785px;}
.x27_c00154{left:385.559100px;}
.x7_c00154{left:390.959385px;}
.x17_c00154{left:397.798515px;}
.x8_c00154{left:415.439670px;}
.x21_c00154{left:448.199385px;}
.x22_c00154{left:503.639700px;}
.x11_c00154{left:506.159415px;}
.x12_c00154{left:521.279250px;}
.x23_c00154{left:567.000000px;}
.x24_c00154{left:582.838530px;}
.x18_c00154{left:587.879520px;}
.x13_c00154{left:611.998950px;}
.x19_c00154{left:613.798515px;}
.x1e_c00154{left:617.758530px;}
.x2c_c00154{left:624.958335px;}
.x14_c00154{left:626.039385px;}
.x2d_c00154{left:639.359850px;}
.x4_c00154{left:641.159370px;}
.x1f_c00154{left:667.080000px;}
.x5_c00154{left:671.758530px;}
.x31_c00154{left:675.000000px;}
.x2e_c00154{left:701.639100px;}
.x2f_c00154{left:717.479235px;}
.x32_c00154{left:750.599670px;}
.x25_c00154{left:756.718545px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls5_c00154{letter-spacing:-9.853600pt;}
.lsc_c00154{letter-spacing:-7.924000pt;}
.ls12_c00154{letter-spacing:-7.266700pt;}
.ls10_c00154{letter-spacing:-6.601000pt;}
.lsf_c00154{letter-spacing:-6.480840pt;}
.lse_c00154{letter-spacing:-5.943000pt;}
.ls6_c00154{letter-spacing:-5.285000pt;}
.ls15_c00154{letter-spacing:-4.708800pt;}
.ls9_c00154{letter-spacing:-4.664473pt;}
.lsd_c00154{letter-spacing:-4.621680pt;}
.ls7_c00154{letter-spacing:-4.619300pt;}
.ls13_c00154{letter-spacing:-4.151467pt;}
.lsb_c00154{letter-spacing:-3.961300pt;}
.ls4_c00154{letter-spacing:-3.304000pt;}
.ls18_c00154{letter-spacing:-2.688667pt;}
.ls19_c00154{letter-spacing:-2.642933pt;}
.ls1_c00154{letter-spacing:-2.639000pt;}
.ls1a_c00154{letter-spacing:-2.489200pt;}
.ls14_c00154{letter-spacing:-2.097200pt;}
.ls0_c00154{letter-spacing:-1.981700pt;}
.ls3_c00154{letter-spacing:-1.323700pt;}
.lsa_c00154{letter-spacing:-0.658000pt;}
.ls2_c00154{letter-spacing:0.000000pt;}
.ls8_c00154{letter-spacing:0.699713pt;}
.ls16_c00154{letter-spacing:0.842160pt;}
.ls11_c00154{letter-spacing:3.113760pt;}
.ls17_c00154{letter-spacing:3.312720pt;}
.ws0_c00154{word-spacing:0.000000pt;}
._16_c00154{margin-left:-6.711494pt;}
._15_c00154{margin-left:-4.354806pt;}
._3_c00154{margin-left:-2.268647pt;}
._d_c00154{margin-left:-0.902894pt;}
._10_c00154{width:1.344858pt;}
._4_c00154{width:2.347258pt;}
._1_c00154{width:3.574834pt;}
._0_c00154{width:5.463157pt;}
._e_c00154{width:6.411736pt;}
._19_c00154{width:7.412630pt;}
._f_c00154{width:8.326658pt;}
._2_c00154{width:9.311175pt;}
._12_c00154{width:10.958143pt;}
._13_c00154{width:11.862464pt;}
._b_c00154{width:13.285511pt;}
._1a_c00154{width:14.454683pt;}
._18_c00154{width:16.385745pt;}
._8_c00154{width:17.423304pt;}
._c_c00154{width:18.603689pt;}
._5_c00154{width:19.508009pt;}
._11_c00154{width:21.597958pt;}
._1d_c00154{width:22.602736pt;}
._6_c00154{width:23.876947pt;}
._a_c00154{width:25.373243pt;}
._9_c00154{width:27.370396pt;}
._17_c00154{width:29.064026pt;}
._14_c00154{width:31.072525pt;}
._1e_c00154{width:31.971047pt;}
._1b_c00154{width:32.869570pt;}
._20_c00154{width:34.415540pt;}
._7_c00154{width:35.727577pt;}
._1f_c00154{width:39.885194pt;}
._1c_c00154{width:100.102325pt;}
.fsc_c00154{font-size:65.333333pt;}
.fsd_c00154{font-size:66.666667pt;}
.fs3_c00154{font-size:68.666667pt;}
.fs9_c00154{font-size:69.333333pt;}
.fs0_c00154{font-size:70.000000pt;}
.fs8_c00154{font-size:70.666667pt;}
.fs4_c00154{font-size:71.333333pt;}
.fs5_c00154{font-size:72.000000pt;}
.fs2_c00154{font-size:72.666667pt;}
.fs1_c00154{font-size:73.333333pt;}
.fsa_c00154{font-size:74.666667pt;}
.fs6_c00154{font-size:75.333333pt;}
.fsb_c00154{font-size:77.333333pt;}
.fs7_c00154{font-size:102.666667pt;}
.y0_c00154{bottom:0.000000pt;}
.y2b_c00154{bottom:161.279480pt;}
.y2a_c00154{bottom:187.519067pt;}
.y29_c00154{bottom:214.398920pt;}
.y28_c00154{bottom:214.399693pt;}
.y27_c00154{bottom:240.959453pt;}
.y26_c00154{bottom:240.960240pt;}
.y24_c00154{bottom:267.519933pt;}
.y25_c00154{bottom:267.520000pt;}
.y23_c00154{bottom:294.399867pt;}
.y22_c00154{bottom:294.400773pt;}
.y21_c00154{bottom:320.640360pt;}
.y20_c00154{bottom:347.200120pt;}
.y1e_c00154{bottom:373.439307pt;}
.y1f_c00154{bottom:373.439987pt;}
.y1d_c00154{bottom:399.999067pt;}
.y1c_c00154{bottom:399.999813pt;}
.y1b_c00154{bottom:426.559573pt;}
.y1a_c00154{bottom:426.561867pt;}
.y19_c00154{bottom:453.441787pt;}
.y18_c00154{bottom:479.681373pt;}
.y17_c00154{bottom:533.121053pt;}
.y16_c00154{bottom:559.680800pt;}
.y15_c00154{bottom:585.599960pt;}
.y14_c00154{bottom:612.159707pt;}
.y13_c00154{bottom:719.359867pt;}
.y12_c00154{bottom:719.360027pt;}
.y10_c00154{bottom:745.599440pt;}
.y11_c00154{bottom:745.599613pt;}
.yf_c00154{bottom:772.479373pt;}
.ye_c00154{bottom:799.359293pt;}
.yd_c00154{bottom:799.359453pt;}
.yc_c00154{bottom:825.599040pt;}
.yb_c00154{bottom:825.599160pt;}
.ya_c00154{bottom:852.479080pt;}
.y9_c00154{bottom:852.480587pt;}
.y8_c00154{bottom:879.040347pt;}
.y6_c00154{bottom:905.600053pt;}
.y7_c00154{bottom:905.600093pt;}
.y4_c00154{bottom:932.479307pt;}
.y5_c00154{bottom:932.479987pt;}
.y3_c00154{bottom:959.039067pt;}
.y2_c00154{bottom:959.039387pt;}
.y1_c00154{bottom:986.239747pt;}
.hd_c00154{height:64.121094pt;}
.he_c00154{height:65.429688pt;}
.h4_c00154{height:67.392578pt;}
.ha_c00154{height:68.046875pt;}
.h1_c00154{height:68.701172pt;}
.h9_c00154{height:69.355469pt;}
.h5_c00154{height:70.009766pt;}
.h6_c00154{height:70.664062pt;}
.h3_c00154{height:71.318359pt;}
.h2_c00154{height:71.972656pt;}
.hb_c00154{height:73.281250pt;}
.h7_c00154{height:73.935547pt;}
.hc_c00154{height:75.898438pt;}
.h8_c00154{height:107.078125pt;}
.h0_c00154{height:1122.666667pt;}
.w0_c00154{width:793.333333pt;}
.x0_c00154{left:0.000000pt;}
.x30_c00154{left:122.240720pt;}
.x10_c00154{left:124.801493pt;}
.x1_c00154{left:125.759747pt;}
.x33_c00154{left:127.039813pt;}
.x28_c00154{left:175.999467pt;}
.x29_c00154{left:188.799333pt;}
.xb_c00154{left:192.000000pt;}
.x15_c00154{left:202.239200pt;}
.xc_c00154{left:205.119200pt;}
.x9_c00154{left:207.999067pt;}
.xa_c00154{left:222.719200pt;}
.x16_c00154{left:224.958920pt;}
.x20_c00154{left:236.799333pt;}
.x1a_c00154{left:251.838933pt;}
.xd_c00154{left:259.199733pt;}
.x2_c00154{left:263.359867pt;}
.x1b_c00154{left:279.039587pt;}
.x3_c00154{left:279.999067pt;}
.xe_c00154{left:290.879867pt;}
.x2a_c00154{left:298.239200pt;}
.x6_c00154{left:303.999067pt;}
.xf_c00154{left:308.480000pt;}
.x2b_c00154{left:310.079587pt;}
.x1c_c00154{left:315.199200pt;}
.x26_c00154{left:324.159733pt;}
.x1d_c00154{left:334.398920pt;}
.x27_c00154{left:342.719200pt;}
.x7_c00154{left:347.519453pt;}
.x17_c00154{left:353.598680pt;}
.x8_c00154{left:369.279707pt;}
.x21_c00154{left:398.399453pt;}
.x22_c00154{left:447.679733pt;}
.x11_c00154{left:449.919480pt;}
.x12_c00154{left:463.359333pt;}
.x23_c00154{left:504.000000pt;}
.x24_c00154{left:518.078693pt;}
.x18_c00154{left:522.559573pt;}
.x13_c00154{left:543.999067pt;}
.x19_c00154{left:545.598680pt;}
.x1e_c00154{left:549.118693pt;}
.x2c_c00154{left:555.518520pt;}
.x14_c00154{left:556.479453pt;}
.x2d_c00154{left:568.319867pt;}
.x4_c00154{left:569.919440pt;}
.x1f_c00154{left:592.960000pt;}
.x5_c00154{left:597.118693pt;}
.x31_c00154{left:600.000000pt;}
.x2e_c00154{left:623.679200pt;}
.x2f_c00154{left:637.759320pt;}
.x32_c00154{left:667.199707pt;}
.x25_c00154{left:672.638707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9567361c52b92e1acce02219.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_c6d6fae3d5d7642c60b26867.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_6c1be2f70e73432007339001.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.364746;font-style:normal;font-weight:normal;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_9b4f0d090df460adc9dfccc1.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_a4f85b5beb3edb9dc1ee4d57.woff2')format("woff");}.ff5_c00155{font-family:ff5_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:ff6_c00155;src:url('chunks/assets/font_c35ea7e19866e78761ee52da.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00155;src:url('chunks/assets/font_8335b27884bc6ee1f60417be.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00155;src:url('chunks/assets/font_b08721f021e4cb31bbe93468.woff2')format("woff");}.ff8_c00155{font-family:ff8_c00155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00155{transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m2b_c00155{transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00155{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m32_c00155{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2a_c00155{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.213141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213141,0.000000,0.000000,0.250000,0,0);}
.md_c00155{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m29_c00155{transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);}
.m2d_c00155{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m30_c00155{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m26_c00155{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m2f_c00155{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m21_c00155{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m2e_c00155{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m31_c00155{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m0_c00155{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m24_c00155{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);}
.m27_c00155{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m1f_c00155{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m2c_c00155{transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284946,0.000000,0.000000,0.250000,0,0);}
.m23_c00155{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296512,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m19_c00155{transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);}
.m28_c00155{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.384259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384259,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(0.410714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410714,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{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);}
.m10_c00155{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);}
.m25_c00155{transform:matrix(0.488281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488281,0.000000,0.000000,0.250000,0,0);}
.m16_c00155{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);}
.mf_c00155{transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.690217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690217,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls21_c00155{letter-spacing:-39.572550px;}
.ls20_c00155{letter-spacing:-14.118000px;}
.ls7_c00155{letter-spacing:-8.175038px;}
.ls1_c00155{letter-spacing:-7.426125px;}
.ls10_c00155{letter-spacing:-6.685875px;}
.lsa_c00155{letter-spacing:-6.575250px;}
.ls25_c00155{letter-spacing:-6.484200px;}
.ls11_c00155{letter-spacing:-6.164100px;}
.ls8_c00155{letter-spacing:-5.945625px;}
.ls0_c00155{letter-spacing:-5.196713px;}
.ls12_c00155{letter-spacing:-4.862348px;}
.ls28_c00155{letter-spacing:-4.602803px;}
.ls1e_c00155{letter-spacing:-4.107180px;}
.ls14_c00155{letter-spacing:-4.053428px;}
.ls23_c00155{letter-spacing:-3.839040px;}
.ls3_c00155{letter-spacing:-3.717000px;}
.ls26_c00155{letter-spacing:-3.242903px;}
.ls2b_c00155{letter-spacing:-3.088800px;}
.ls6_c00155{letter-spacing:-2.968875px;}
.ls2a_c00155{letter-spacing:-2.441115px;}
.ls13_c00155{letter-spacing:-2.431575px;}
.ls5_c00155{letter-spacing:-2.229413px;}
.lse_c00155{letter-spacing:-1.621050px;}
.ls24_c00155{letter-spacing:-1.580250px;}
.ls29_c00155{letter-spacing:-1.575600px;}
.ls2_c00155{letter-spacing:-1.489163px;}
.lsb_c00155{letter-spacing:-1.462050px;}
.ls1d_c00155{letter-spacing:-1.255800px;}
.lsd_c00155{letter-spacing:-0.810525px;}
.ls22_c00155{letter-spacing:-0.741150px;}
.ls4_c00155{letter-spacing:-0.740250px;}
.ls9_c00155{letter-spacing:0.000000px;}
.ls16_c00155{letter-spacing:0.417000px;}
.ls27_c00155{letter-spacing:0.740250px;}
.ls18_c00155{letter-spacing:1.755000px;}
.ls17_c00155{letter-spacing:3.046035px;}
.ls1f_c00155{letter-spacing:3.322800px;}
.ls2c_c00155{letter-spacing:3.637710px;}
.lsc_c00155{letter-spacing:6.267375px;}
.ls1a_c00155{letter-spacing:7.501200px;}
.lsf_c00155{letter-spacing:8.105250px;}
.ls19_c00155{letter-spacing:9.253020px;}
.ls15_c00155{letter-spacing:10.226250px;}
.ls1c_c00155{letter-spacing:10.498950px;}
.ls1b_c00155{letter-spacing:19.125000px;}
.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;}
._f_c00155{margin-left:-15.809201px;}
._1d_c00155{margin-left:-9.228348px;}
._1b_c00155{margin-left:-5.390743px;}
._b_c00155{margin-left:-3.868141px;}
._14_c00155{margin-left:-2.212474px;}
._8_c00155{margin-left:-1.205350px;}
._6_c00155{width:1.659248px;}
._a_c00155{width:2.740218px;}
._7_c00155{width:4.198995px;}
._d_c00155{width:5.410006px;}
._e_c00155{width:7.048036px;}
._c_c00155{width:8.465952px;}
._11_c00155{width:9.892248px;}
._12_c00155{width:11.206511px;}
._9_c00155{width:12.245684px;}
._15_c00155{width:13.508522px;}
._13_c00155{width:15.322165px;}
._10_c00155{width:18.840313px;}
._17_c00155{width:20.779165px;}
._16_c00155{width:22.328894px;}
._1c_c00155{width:23.759407px;}
._18_c00155{width:26.413240px;}
._5_c00155{width:27.732392px;}
._1a_c00155{width:29.217275px;}
._4_c00155{width:30.987679px;}
._2_c00155{width:32.892879px;}
._3_c00155{width:40.674524px;}
._19_c00155{width:44.107637px;}
._0_c00155{width:45.350268px;}
._1_c00155{width:46.691350px;}
.fc0_c00155{color:transparent;}
.fsb_c00155{font-size:15.000000px;}
.fs9_c00155{font-size:22.500000px;}
.fs1a_c00155{font-size:29.250000px;}
.fs11_c00155{font-size:30.000000px;}
.fs12_c00155{font-size:32.250000px;}
.fs5_c00155{font-size:33.750000px;}
.fs4_c00155{font-size:34.500000px;}
.fs13_c00155{font-size:35.250000px;}
.fs3_c00155{font-size:40.500000px;}
.fs10_c00155{font-size:42.000000px;}
.fsf_c00155{font-size:43.500000px;}
.fs18_c00155{font-size:49.500000px;}
.fs14_c00155{font-size:50.250000px;}
.fs17_c00155{font-size:51.000000px;}
.fs15_c00155{font-size:60.000000px;}
.fs16_c00155{font-size:60.750000px;}
.fsa_c00155{font-size:67.500000px;}
.fsc_c00155{font-size:69.000000px;}
.fs23_c00155{font-size:69.750000px;}
.fs1_c00155{font-size:71.250000px;}
.fs26_c00155{font-size:72.750000px;}
.fs1f_c00155{font-size:73.500000px;}
.fs21_c00155{font-size:75.750000px;}
.fs25_c00155{font-size:76.500000px;}
.fs19_c00155{font-size:78.000000px;}
.fs0_c00155{font-size:78.750000px;}
.fs6_c00155{font-size:80.250000px;}
.fs7_c00155{font-size:81.000000px;}
.fs2_c00155{font-size:82.500000px;}
.fs22_c00155{font-size:84.750000px;}
.fs1e_c00155{font-size:86.250000px;}
.fs24_c00155{font-size:87.000000px;}
.fs20_c00155{font-size:90.000000px;}
.fsd_c00155{font-size:91.500000px;}
.fs8_c00155{font-size:96.000000px;}
.fse_c00155{font-size:117.000000px;}
.fs1d_c00155{font-size:121.500000px;}
.fs1c_c00155{font-size:135.750000px;}
.fs1b_c00155{font-size:150.000000px;}
.y0_c00155{bottom:0.000000px;}
.y2e_c00155{bottom:182.879565px;}
.y2d_c00155{bottom:182.879730px;}
.y2c_c00155{bottom:212.399250px;}
.y2b_c00155{bottom:241.920600px;}
.y2a_c00155{bottom:241.920750px;}
.y28_c00155{bottom:271.440060px;}
.y29_c00155{bottom:271.440285px;}
.y26_c00155{bottom:300.598575px;}
.y27_c00155{bottom:300.599100px;}
.y25_c00155{bottom:330.840585px;}
.y24_c00155{bottom:360.720495px;}
.y23_c00155{bottom:420.840135px;}
.y21_c00155{bottom:450.000510px;}
.y22_c00155{bottom:450.000600px;}
.y20_c00155{bottom:480.240420px;}
.y1f_c00155{bottom:510.480285px;}
.y1d_c00155{bottom:541.078995px;}
.y1e_c00155{bottom:541.079400px;}
.y1c_c00155{bottom:570.959970px;}
.y1a_c00155{bottom:631.080075px;}
.y1b_c00155{bottom:631.080420px;}
.y19_c00155{bottom:660.600135px;}
.y18_c00155{bottom:690.840135px;}
.y17_c00155{bottom:720.720750px;}
.y15_c00155{bottom:751.319820px;}
.y16_c00155{bottom:752.039985px;}
.y14_c00155{bottom:756.359250px;}
.y13_c00155{bottom:760.319235px;}
.y12_c00155{bottom:760.680135px;}
.y10_c00155{bottom:781.559205px;}
.y11_c00155{bottom:781.559685px;}
.yf_c00155{bottom:842.039340px;}
.ye_c00155{bottom:871.919955px;}
.yd_c00155{bottom:901.800570px;}
.yc_c00155{bottom:932.399865px;}
.yb_c00155{bottom:932.400675px;}
.ya_c00155{bottom:962.280390px;}
.y8_c00155{bottom:992.159160px;}
.y9_c00155{bottom:992.159370px;}
.y6_c00155{bottom:1022.398725px;}
.y7_c00155{bottom:1022.399235px;}
.y5_c00155{bottom:1052.640750px;}
.y4_c00155{bottom:1078.559685px;}
.y3_c00155{bottom:1082.519715px;}
.y2_c00155{bottom:1112.039700px;}
.y1_c00155{bottom:1142.640105px;}
.he_c00155{height:14.824219px;}
.hc_c00155{height:23.466797px;}
.h1d_c00155{height:29.478516px;}
.h14_c00155{height:31.289062px;}
.h15_c00155{height:33.635742px;}
.h6_c00155{height:35.200195px;}
.h5_c00155{height:35.982422px;}
.h16_c00155{height:36.764648px;}
.h4_c00155{height:40.025391px;}
.h13_c00155{height:43.804688px;}
.h12_c00155{height:43.839844px;}
.h1b_c00155{height:51.626953px;}
.h17_c00155{height:52.409180px;}
.h1a_c00155{height:53.191406px;}
.h18_c00155{height:62.578125px;}
.h19_c00155{height:63.360352px;}
.hd_c00155{height:70.400391px;}
.h2_c00155{height:71.806641px;}
.hf_c00155{height:71.964844px;}
.h27_c00155{height:72.747070px;}
.h24_c00155{height:74.307495px;}
.h2c_c00155{height:75.875977px;}
.h25_c00155{height:76.514648px;}
.h28_c00155{height:76.552734px;}
.h22_c00155{height:76.658203px;}
.h2a_c00155{height:77.097656px;}
.h1_c00155{height:77.288818px;}
.h1c_c00155{height:78.609375px;}
.h7_c00155{height:78.721802px;}
.h8_c00155{height:78.760986px;}
.h9_c00155{height:79.457520px;}
.h2b_c00155{height:79.497070px;}
.hb_c00155{height:80.928955px;}
.h3_c00155{height:80.969238px;}
.h26_c00155{height:83.136108px;}
.h29_c00155{height:85.980469px;}
.h21_c00155{height:89.956055px;}
.h23_c00155{height:93.867188px;}
.h10_c00155{height:95.431641px;}
.ha_c00155{height:100.125000px;}
.h11_c00155{height:122.027344px;}
.h20_c00155{height:126.720703px;}
.h1f_c00155{height:141.583008px;}
.h1e_c00155{height:156.445312px;}
.h0_c00155{height:1263.000000px;}
.w0_c00155{width:892.500000px;}
.x0_c00155{left:0.000000px;}
.x41_c00155{left:141.838950px;}
.x1_c00155{left:142.918350px;}
.x25_c00155{left:143.999400px;}
.x5e_c00155{left:145.079835px;}
.x13_c00155{left:156.238785px;}
.x5_c00155{left:171.358665px;}
.x6_c00155{left:182.879565px;}
.x26_c00155{left:191.158785px;}
.x2_c00155{left:200.878350px;}
.xf_c00155{left:203.759100px;}
.x31_c00155{left:206.639700px;}
.x27_c00155{left:208.798515px;}
.x1f_c00155{left:210.599700px;}
.x18_c00155{left:212.399250px;}
.x3c_c00155{left:217.438635px;}
.x19_c00155{left:223.918350px;}
.x20_c00155{left:226.078785px;}
.x54_c00155{left:230.759100px;}
.x10_c00155{left:263.159385px;}
.x28_c00155{left:265.679100px;}
.x66_c00155{left:272.519685px;}
.x29_c00155{left:274.678500px;}
.x11_c00155{left:277.199850px;}
.x4f_c00155{left:291.958950px;}
.x67_c00155{left:298.079385px;}
.x32_c00155{left:304.559100px;}
.x2a_c00155{left:306.719535px;}
.x46_c00155{left:316.798515px;}
.x49_c00155{left:322.559685px;}
.xc_c00155{left:325.079385px;}
.x42_c00155{left:331.559100px;}
.xd_c00155{left:341.278800px;}
.x33_c00155{left:346.679100px;}
.x1a_c00155{left:355.319250px;}
.x3d_c00155{left:367.199385px;}
.x50_c00155{left:381.958350px;}
.x7_c00155{left:383.398635px;}
.x34_c00155{left:389.519070px;}
.x2b_c00155{left:394.919535px;}
.x68_c00155{left:396.719100px;}
.x52_c00155{left:397.798515px;}
.x55_c00155{left:398.879565px;}
.x21_c00155{left:401.399235px;}
.x43_c00155{left:429.119385px;}
.x12_c00155{left:438.118785px;}
.x2c_c00155{left:439.559100px;}
.x5f_c00155{left:456.119385px;}
.x1b_c00155{left:458.639100px;}
.x14_c00155{left:461.519670px;}
.x60_c00155{left:470.159820px;}
.x4a_c00155{left:471.239220px;}
.x39_c00155{left:475.919535px;}
.x5c_c00155{left:478.080000px;}
.x15_c00155{left:479.518620px;}
.x47_c00155{left:488.519670px;}
.x3a_c00155{left:491.759535px;}
.x2d_c00155{left:493.199850px;}
.x5d_c00155{left:496.078770px;}
.x8_c00155{left:497.878320px;}
.x4d_c00155{left:505.439250px;}
.x56_c00155{left:509.399235px;}
.x3e_c00155{left:513.000000px;}
.x2e_c00155{left:516.599070px;}
.x3f_c00155{left:521.999400px;}
.x2f_c00155{left:530.998950px;}
.x9_c00155{left:536.039985px;}
.x22_c00155{left:538.918950px;}
.x5a_c00155{left:548.279250px;}
.xa_c00155{left:550.078770px;}
.x23_c00155{left:555.119985px;}
.x61_c00155{left:557.639700px;}
.x51_c00155{left:561.238770px;}
.x5b_c00155{left:562.679070px;}
.x48_c00155{left:565.559685px;}
.x44_c00155{left:587.518620px;}
.x1c_c00155{left:595.438620px;}
.x57_c00155{left:609.838530px;}
.x62_c00155{left:612.719100px;}
.x35_c00155{left:618.478635px;}
.x3b_c00155{left:622.438620px;}
.x63_c00155{left:626.759535px;}
.x53_c00155{left:628.559100px;}
.x1e_c00155{left:636.119985px;}
.x1d_c00155{left:640.798515px;}
.x24_c00155{left:649.438620px;}
.x36_c00155{left:653.398635px;}
.xb_c00155{left:657.719520px;}
.x37_c00155{left:659.878320px;}
.x16_c00155{left:665.278800px;}
.x4e_c00155{left:668.879520px;}
.x58_c00155{left:672.839535px;}
.x30_c00155{left:682.559100px;}
.x59_c00155{left:687.598530px;}
.x64_c00155{left:689.038920px;}
.x4b_c00155{left:697.319820px;}
.x17_c00155{left:701.639100px;}
.x40_c00155{left:706.678530px;}
.x3_c00155{left:708.479685px;}
.x4c_c00155{left:709.559100px;}
.x65_c00155{left:712.798920px;}
.x38_c00155{left:714.959385px;}
.x45_c00155{left:721.080000px;}
.x69_c00155{left:726.839535px;}
.xe_c00155{left:732.239820px;}
.x4_c00155{left:739.078770px;}
.x6a_c00155{left:744.119985px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls21_c00155{letter-spacing:-35.175600pt;}
.ls20_c00155{letter-spacing:-12.549333pt;}
.ls7_c00155{letter-spacing:-7.266700pt;}
.ls1_c00155{letter-spacing:-6.601000pt;}
.ls10_c00155{letter-spacing:-5.943000pt;}
.lsa_c00155{letter-spacing:-5.844667pt;}
.ls25_c00155{letter-spacing:-5.763733pt;}
.ls11_c00155{letter-spacing:-5.479200pt;}
.ls8_c00155{letter-spacing:-5.285000pt;}
.ls0_c00155{letter-spacing:-4.619300pt;}
.ls12_c00155{letter-spacing:-4.322087pt;}
.ls28_c00155{letter-spacing:-4.091380pt;}
.ls1e_c00155{letter-spacing:-3.650827pt;}
.ls14_c00155{letter-spacing:-3.603047pt;}
.ls23_c00155{letter-spacing:-3.412480pt;}
.ls3_c00155{letter-spacing:-3.304000pt;}
.ls26_c00155{letter-spacing:-2.882580pt;}
.ls2b_c00155{letter-spacing:-2.745600pt;}
.ls6_c00155{letter-spacing:-2.639000pt;}
.ls2a_c00155{letter-spacing:-2.169880pt;}
.ls13_c00155{letter-spacing:-2.161400pt;}
.ls5_c00155{letter-spacing:-1.981700pt;}
.lse_c00155{letter-spacing:-1.440933pt;}
.ls24_c00155{letter-spacing:-1.404667pt;}
.ls29_c00155{letter-spacing:-1.400533pt;}
.ls2_c00155{letter-spacing:-1.323700pt;}
.lsb_c00155{letter-spacing:-1.299600pt;}
.ls1d_c00155{letter-spacing:-1.116267pt;}
.lsd_c00155{letter-spacing:-0.720467pt;}
.ls22_c00155{letter-spacing:-0.658800pt;}
.ls4_c00155{letter-spacing:-0.658000pt;}
.ls9_c00155{letter-spacing:0.000000pt;}
.ls16_c00155{letter-spacing:0.370667pt;}
.ls27_c00155{letter-spacing:0.658000pt;}
.ls18_c00155{letter-spacing:1.560000pt;}
.ls17_c00155{letter-spacing:2.707587pt;}
.ls1f_c00155{letter-spacing:2.953600pt;}
.ls2c_c00155{letter-spacing:3.233520pt;}
.lsc_c00155{letter-spacing:5.571000pt;}
.ls1a_c00155{letter-spacing:6.667733pt;}
.lsf_c00155{letter-spacing:7.204667pt;}
.ls19_c00155{letter-spacing:8.224907pt;}
.ls15_c00155{letter-spacing:9.090000pt;}
.ls1c_c00155{letter-spacing:9.332400pt;}
.ls1b_c00155{letter-spacing:17.000000pt;}
.ws0_c00155{word-spacing:0.000000pt;}
._f_c00155{margin-left:-14.052623pt;}
._1d_c00155{margin-left:-8.202976pt;}
._1b_c00155{margin-left:-4.791772pt;}
._b_c00155{margin-left:-3.438347pt;}
._14_c00155{margin-left:-1.966643pt;}
._8_c00155{margin-left:-1.071423pt;}
._6_c00155{width:1.474887pt;}
._a_c00155{width:2.435749pt;}
._7_c00155{width:3.732440pt;}
._d_c00155{width:4.808894pt;}
._e_c00155{width:6.264921pt;}
._c_c00155{width:7.525291pt;}
._11_c00155{width:8.793109pt;}
._12_c00155{width:9.961343pt;}
._9_c00155{width:10.885053pt;}
._15_c00155{width:12.007575pt;}
._13_c00155{width:13.619702pt;}
._10_c00155{width:16.746945pt;}
._17_c00155{width:18.470369pt;}
._16_c00155{width:19.847906pt;}
._1c_c00155{width:21.119473pt;}
._18_c00155{width:23.478436pt;}
._5_c00155{width:24.651015pt;}
._1a_c00155{width:25.970911pt;}
._4_c00155{width:27.544604pt;}
._2_c00155{width:29.238115pt;}
._3_c00155{width:36.155132pt;}
._19_c00155{width:39.206789pt;}
._0_c00155{width:40.311349pt;}
._1_c00155{width:41.503423pt;}
.fsb_c00155{font-size:13.333333pt;}
.fs9_c00155{font-size:20.000000pt;}
.fs1a_c00155{font-size:26.000000pt;}
.fs11_c00155{font-size:26.666667pt;}
.fs12_c00155{font-size:28.666667pt;}
.fs5_c00155{font-size:30.000000pt;}
.fs4_c00155{font-size:30.666667pt;}
.fs13_c00155{font-size:31.333333pt;}
.fs3_c00155{font-size:36.000000pt;}
.fs10_c00155{font-size:37.333333pt;}
.fsf_c00155{font-size:38.666667pt;}
.fs18_c00155{font-size:44.000000pt;}
.fs14_c00155{font-size:44.666667pt;}
.fs17_c00155{font-size:45.333333pt;}
.fs15_c00155{font-size:53.333333pt;}
.fs16_c00155{font-size:54.000000pt;}
.fsa_c00155{font-size:60.000000pt;}
.fsc_c00155{font-size:61.333333pt;}
.fs23_c00155{font-size:62.000000pt;}
.fs1_c00155{font-size:63.333333pt;}
.fs26_c00155{font-size:64.666667pt;}
.fs1f_c00155{font-size:65.333333pt;}
.fs21_c00155{font-size:67.333333pt;}
.fs25_c00155{font-size:68.000000pt;}
.fs19_c00155{font-size:69.333333pt;}
.fs0_c00155{font-size:70.000000pt;}
.fs6_c00155{font-size:71.333333pt;}
.fs7_c00155{font-size:72.000000pt;}
.fs2_c00155{font-size:73.333333pt;}
.fs22_c00155{font-size:75.333333pt;}
.fs1e_c00155{font-size:76.666667pt;}
.fs24_c00155{font-size:77.333333pt;}
.fs20_c00155{font-size:80.000000pt;}
.fsd_c00155{font-size:81.333333pt;}
.fs8_c00155{font-size:85.333333pt;}
.fse_c00155{font-size:104.000000pt;}
.fs1d_c00155{font-size:108.000000pt;}
.fs1c_c00155{font-size:120.666667pt;}
.fs1b_c00155{font-size:133.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.y2e_c00155{bottom:162.559613pt;}
.y2d_c00155{bottom:162.559760pt;}
.y2c_c00155{bottom:188.799333pt;}
.y2b_c00155{bottom:215.040533pt;}
.y2a_c00155{bottom:215.040667pt;}
.y28_c00155{bottom:241.280053pt;}
.y29_c00155{bottom:241.280253pt;}
.y26_c00155{bottom:267.198733pt;}
.y27_c00155{bottom:267.199200pt;}
.y25_c00155{bottom:294.080520pt;}
.y24_c00155{bottom:320.640440pt;}
.y23_c00155{bottom:374.080120pt;}
.y21_c00155{bottom:400.000453pt;}
.y22_c00155{bottom:400.000533pt;}
.y20_c00155{bottom:426.880373pt;}
.y1f_c00155{bottom:453.760253pt;}
.y1d_c00155{bottom:480.959107pt;}
.y1e_c00155{bottom:480.959467pt;}
.y1c_c00155{bottom:507.519973pt;}
.y1a_c00155{bottom:560.960067pt;}
.y1b_c00155{bottom:560.960373pt;}
.y19_c00155{bottom:587.200120pt;}
.y18_c00155{bottom:614.080120pt;}
.y17_c00155{bottom:640.640667pt;}
.y15_c00155{bottom:667.839840pt;}
.y16_c00155{bottom:668.479987pt;}
.y14_c00155{bottom:672.319333pt;}
.y13_c00155{bottom:675.839320pt;}
.y12_c00155{bottom:676.160120pt;}
.y10_c00155{bottom:694.719293pt;}
.y11_c00155{bottom:694.719720pt;}
.yf_c00155{bottom:748.479413pt;}
.ye_c00155{bottom:775.039960pt;}
.yd_c00155{bottom:801.600507pt;}
.yc_c00155{bottom:828.799880pt;}
.yb_c00155{bottom:828.800600pt;}
.ya_c00155{bottom:855.360347pt;}
.y8_c00155{bottom:881.919253pt;}
.y9_c00155{bottom:881.919440pt;}
.y6_c00155{bottom:908.798867pt;}
.y7_c00155{bottom:908.799320pt;}
.y5_c00155{bottom:935.680667pt;}
.y4_c00155{bottom:958.719720pt;}
.y3_c00155{bottom:962.239747pt;}
.y2_c00155{bottom:988.479733pt;}
.y1_c00155{bottom:1015.680093pt;}
.he_c00155{height:13.177083pt;}
.hc_c00155{height:20.859375pt;}
.h1d_c00155{height:26.203125pt;}
.h14_c00155{height:27.812500pt;}
.h15_c00155{height:29.898438pt;}
.h6_c00155{height:31.289062pt;}
.h5_c00155{height:31.984375pt;}
.h16_c00155{height:32.679688pt;}
.h4_c00155{height:35.578125pt;}
.h13_c00155{height:38.937500pt;}
.h12_c00155{height:38.968750pt;}
.h1b_c00155{height:45.890625pt;}
.h17_c00155{height:46.585938pt;}
.h1a_c00155{height:47.281250pt;}
.h18_c00155{height:55.625000pt;}
.h19_c00155{height:56.320312pt;}
.hd_c00155{height:62.578125pt;}
.h2_c00155{height:63.828125pt;}
.hf_c00155{height:63.968750pt;}
.h27_c00155{height:64.664062pt;}
.h24_c00155{height:66.051107pt;}
.h2c_c00155{height:67.445312pt;}
.h25_c00155{height:68.013021pt;}
.h28_c00155{height:68.046875pt;}
.h22_c00155{height:68.140625pt;}
.h2a_c00155{height:68.531250pt;}
.h1_c00155{height:68.701172pt;}
.h1c_c00155{height:69.875000pt;}
.h7_c00155{height:69.974935pt;}
.h8_c00155{height:70.009766pt;}
.h9_c00155{height:70.628906pt;}
.h2b_c00155{height:70.664062pt;}
.hb_c00155{height:71.936849pt;}
.h3_c00155{height:71.972656pt;}
.h26_c00155{height:73.898763pt;}
.h29_c00155{height:76.427083pt;}
.h21_c00155{height:79.960938pt;}
.h23_c00155{height:83.437500pt;}
.h10_c00155{height:84.828125pt;}
.ha_c00155{height:89.000000pt;}
.h11_c00155{height:108.468750pt;}
.h20_c00155{height:112.640625pt;}
.h1f_c00155{height:125.851562pt;}
.h1e_c00155{height:139.062500pt;}
.h0_c00155{height:1122.666667pt;}
.w0_c00155{width:793.333333pt;}
.x0_c00155{left:0.000000pt;}
.x41_c00155{left:126.079067pt;}
.x1_c00155{left:127.038533pt;}
.x25_c00155{left:127.999467pt;}
.x5e_c00155{left:128.959853pt;}
.x13_c00155{left:138.878920pt;}
.x5_c00155{left:152.318813pt;}
.x6_c00155{left:162.559613pt;}
.x26_c00155{left:169.918920pt;}
.x2_c00155{left:178.558533pt;}
.xf_c00155{left:181.119200pt;}
.x31_c00155{left:183.679733pt;}
.x27_c00155{left:185.598680pt;}
.x1f_c00155{left:187.199733pt;}
.x18_c00155{left:188.799333pt;}
.x3c_c00155{left:193.278787pt;}
.x19_c00155{left:199.038533pt;}
.x20_c00155{left:200.958920pt;}
.x54_c00155{left:205.119200pt;}
.x10_c00155{left:233.919453pt;}
.x28_c00155{left:236.159200pt;}
.x66_c00155{left:242.239720pt;}
.x29_c00155{left:244.158667pt;}
.x11_c00155{left:246.399867pt;}
.x4f_c00155{left:259.519067pt;}
.x67_c00155{left:264.959453pt;}
.x32_c00155{left:270.719200pt;}
.x2a_c00155{left:272.639587pt;}
.x46_c00155{left:281.598680pt;}
.x49_c00155{left:286.719720pt;}
.xc_c00155{left:288.959453pt;}
.x42_c00155{left:294.719200pt;}
.xd_c00155{left:303.358933pt;}
.x33_c00155{left:308.159200pt;}
.x1a_c00155{left:315.839333pt;}
.x3d_c00155{left:326.399453pt;}
.x50_c00155{left:339.518533pt;}
.x7_c00155{left:340.798787pt;}
.x34_c00155{left:346.239173pt;}
.x2b_c00155{left:351.039587pt;}
.x68_c00155{left:352.639200pt;}
.x52_c00155{left:353.598680pt;}
.x55_c00155{left:354.559613pt;}
.x21_c00155{left:356.799320pt;}
.x43_c00155{left:381.439453pt;}
.x12_c00155{left:389.438920pt;}
.x2c_c00155{left:390.719200pt;}
.x5f_c00155{left:405.439453pt;}
.x1b_c00155{left:407.679200pt;}
.x14_c00155{left:410.239707pt;}
.x60_c00155{left:417.919840pt;}
.x4a_c00155{left:418.879307pt;}
.x39_c00155{left:423.039587pt;}
.x5c_c00155{left:424.960000pt;}
.x15_c00155{left:426.238773pt;}
.x47_c00155{left:434.239707pt;}
.x3a_c00155{left:437.119587pt;}
.x2d_c00155{left:438.399867pt;}
.x5d_c00155{left:440.958907pt;}
.x8_c00155{left:442.558507pt;}
.x4d_c00155{left:449.279333pt;}
.x56_c00155{left:452.799320pt;}
.x3e_c00155{left:456.000000pt;}
.x2e_c00155{left:459.199173pt;}
.x3f_c00155{left:463.999467pt;}
.x2f_c00155{left:471.999067pt;}
.x9_c00155{left:476.479987pt;}
.x22_c00155{left:479.039067pt;}
.x5a_c00155{left:487.359333pt;}
.xa_c00155{left:488.958907pt;}
.x23_c00155{left:493.439987pt;}
.x61_c00155{left:495.679733pt;}
.x51_c00155{left:498.878907pt;}
.x5b_c00155{left:500.159173pt;}
.x48_c00155{left:502.719720pt;}
.x44_c00155{left:522.238773pt;}
.x1c_c00155{left:529.278773pt;}
.x57_c00155{left:542.078693pt;}
.x62_c00155{left:544.639200pt;}
.x35_c00155{left:549.758787pt;}
.x3b_c00155{left:553.278773pt;}
.x63_c00155{left:557.119587pt;}
.x53_c00155{left:558.719200pt;}
.x1e_c00155{left:565.439987pt;}
.x1d_c00155{left:569.598680pt;}
.x24_c00155{left:577.278773pt;}
.x36_c00155{left:580.798787pt;}
.xb_c00155{left:584.639573pt;}
.x37_c00155{left:586.558507pt;}
.x16_c00155{left:591.358933pt;}
.x4e_c00155{left:594.559573pt;}
.x58_c00155{left:598.079587pt;}
.x30_c00155{left:606.719200pt;}
.x59_c00155{left:611.198693pt;}
.x64_c00155{left:612.479040pt;}
.x4b_c00155{left:619.839840pt;}
.x17_c00155{left:623.679200pt;}
.x40_c00155{left:628.158693pt;}
.x3_c00155{left:629.759720pt;}
.x4c_c00155{left:630.719200pt;}
.x65_c00155{left:633.599040pt;}
.x38_c00155{left:635.519453pt;}
.x45_c00155{left:640.960000pt;}
.x69_c00155{left:646.079587pt;}
.xe_c00155{left:650.879840pt;}
.x4_c00155{left:656.958907pt;}
.x6a_c00155{left:661.439987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7b28bd30757b2c38d45fa94.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_119dda86b6a6bd279e45d130.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_3dca86acf461b4356f72fffa.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.432129;font-style:normal;font-weight:normal;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_1e868fa94e6f1607e4db4566.woff2')format("woff");}.ff4_c00156{font-family:ff4_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:ff5_c00156;src:url('chunks/assets/font_83adcccb8682110716484539.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_a6c1333b8ae3be8722572b79.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:1.432129;font-style:normal;font-weight: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_c00156;src:url('chunks/assets/font_2abba48f3d9472e463a811a5.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:1.364746;font-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_c00156{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.m18_c00156{transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00156{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m16_c00156{transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);}
.m1b_c00156{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.mb_c00156{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m10_c00156{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.me_c00156{transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m17_c00156{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{transform:matrix(0.440217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440217,0.000000,0.000000,0.250000,0,0);}
.m15_c00156{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls16_c00156{letter-spacing:-9.934148px;}
.lsd_c00156{letter-spacing:-8.175038px;}
.ls25_c00156{letter-spacing:-8.025803px;}
.ls6_c00156{letter-spacing:-7.426125px;}
.ls1f_c00156{letter-spacing:-6.685875px;}
.ls17_c00156{letter-spacing:-6.382350px;}
.ls5_c00156{letter-spacing:-5.945625px;}
.ls2_c00156{letter-spacing:-5.296875px;}
.ls7_c00156{letter-spacing:-5.196713px;}
.lsa_c00156{letter-spacing:-5.109375px;}
.ls1a_c00156{letter-spacing:-4.456463px;}
.ls1c_c00156{letter-spacing:-4.132875px;}
.lsc_c00156{letter-spacing:-3.717000px;}
.lse_c00156{letter-spacing:-3.617250px;}
.ls19_c00156{letter-spacing:-3.538283px;}
.ls1e_c00156{letter-spacing:-3.306300px;}
.ls11_c00156{letter-spacing:-3.148200px;}
.ls1_c00156{letter-spacing:-2.968875px;}
.ls13_c00156{letter-spacing:-2.335275px;}
.ls3_c00156{letter-spacing:-2.229413px;}
.ls1b_c00156{letter-spacing:-1.653150px;}
.ls8_c00156{letter-spacing:-1.489163px;}
.ls10_c00156{letter-spacing:-1.276500px;}
.lsb_c00156{letter-spacing:-0.826575px;}
.ls4_c00156{letter-spacing:-0.740250px;}
.ls15_c00156{letter-spacing:-0.727650px;}
.ls9_c00156{letter-spacing:0.000000px;}
.ls24_c00156{letter-spacing:0.771750px;}
.ls21_c00156{letter-spacing:0.828720px;}
.ls0_c00156{letter-spacing:1.489163px;}
.ls1d_c00156{letter-spacing:1.653150px;}
.ls23_c00156{letter-spacing:2.370923px;}
.lsf_c00156{letter-spacing:3.772440px;}
.ls20_c00156{letter-spacing:6.905250px;}
.ls12_c00156{letter-spacing:7.006500px;}
.ls14_c00156{letter-spacing:8.832450px;}
.ls18_c00156{letter-spacing:11.153700px;}
.ls22_c00156{letter-spacing:27.525225px;}
.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;}
._19_c00156{margin-left:-14.556837px;}
._13_c00156{margin-left:-4.726486px;}
._14_c00156{margin-left:-3.579039px;}
._f_c00156{margin-left:-2.386571px;}
._10_c00156{margin-left:-1.345392px;}
._1a_c00156{width:1.360458px;}
._12_c00156{width:2.366378px;}
._7_c00156{width:4.449360px;}
._e_c00156{width:6.286657px;}
._6_c00156{width:7.347940px;}
._21_c00156{width:8.381288px;}
._4_c00156{width:9.591512px;}
._3_c00156{width:10.796506px;}
._1_c00156{width:11.889110px;}
._d_c00156{width:12.946857px;}
._2_c00156{width:14.114675px;}
._11_c00156{width:16.082429px;}
._0_c00156{width:18.662383px;}
._b_c00156{width:20.156493px;}
._c_c00156{width:21.586846px;}
._5_c00156{width:23.042309px;}
._16_c00156{width:24.683266px;}
._17_c00156{width:26.257601px;}
._22_c00156{width:27.281726px;}
._15_c00156{width:28.544839px;}
._18_c00156{width:30.166008px;}
._1b_c00156{width:31.234523px;}
._1c_c00156{width:33.738919px;}
._20_c00156{width:35.184479px;}
._9_c00156{width:36.702537px;}
._1f_c00156{width:39.592187px;}
._1e_c00156{width:44.131693px;}
._1d_c00156{width:47.951202px;}
._a_c00156{width:49.986354px;}
._8_c00156{width:52.084804px;}
.fc0_c00156{color:transparent;}
.fse_c00156{font-size:24.000000px;}
.fs8_c00156{font-size:34.500000px;}
.fsb_c00156{font-size:58.500000px;}
.fs11_c00156{font-size:72.000000px;}
.fs12_c00156{font-size:72.750000px;}
.fsa_c00156{font-size:73.500000px;}
.fsf_c00156{font-size:74.250000px;}
.fsd_c00156{font-size:75.750000px;}
.fsc_c00156{font-size:76.500000px;}
.fs2_c00156{font-size:77.250000px;}
.fs6_c00156{font-size:78.000000px;}
.fs0_c00156{font-size:78.750000px;}
.fs5_c00156{font-size:79.500000px;}
.fs4_c00156{font-size:80.250000px;}
.fs9_c00156{font-size:81.000000px;}
.fs3_c00156{font-size:81.750000px;}
.fs7_c00156{font-size:84.000000px;}
.fs1_c00156{font-size:84.750000px;}
.fs10_c00156{font-size:96.000000px;}
.y0_c00156{bottom:0.000000px;}
.y2b_c00156{bottom:183.059100px;}
.y2a_c00156{bottom:183.059925px;}
.y28_c00156{bottom:212.757345px;}
.y29_c00156{bottom:212.758500px;}
.y27_c00156{bottom:242.278680px;}
.y26_c00156{bottom:272.158395px;}
.y25_c00156{bottom:301.677930px;}
.y24_c00156{bottom:331.199265px;}
.y23_c00156{bottom:360.718800px;}
.y22_c00156{bottom:390.598530px;}
.y20_c00156{bottom:420.119940px;}
.y21_c00156{bottom:420.119985px;}
.y1e_c00156{bottom:450.359415px;}
.y1f_c00156{bottom:450.359850px;}
.y1c_c00156{bottom:510.839355px;}
.y1d_c00156{bottom:510.839535px;}
.y1b_c00156{bottom:540.718500px;}
.y1a_c00156{bottom:570.599070px;}
.y19_c00156{bottom:570.599265px;}
.y18_c00156{bottom:600.118785px;}
.y17_c00156{bottom:629.999400px;}
.y16_c00156{bottom:660.239220px;}
.y15_c00156{bottom:690.479190px;}
.y14_c00156{bottom:720.719100px;}
.y13_c00156{bottom:749.879520px;}
.y12_c00156{bottom:750.420000px;}
.y11_c00156{bottom:780.119385px;}
.y10_c00156{bottom:780.120330px;}
.yf_c00156{bottom:839.879775px;}
.yd_c00156{bottom:869.759445px;}
.ye_c00156{bottom:869.759490px;}
.yc_c00156{bottom:899.999355px;}
.yb_c00156{bottom:900.000525px;}
.ya_c00156{bottom:929.520060px;}
.y8_c00156{bottom:959.399385px;}
.y9_c00156{bottom:959.399775px;}
.y7_c00156{bottom:989.279115px;}
.y5_c00156{bottom:1019.878860px;}
.y6_c00156{bottom:1019.879520px;}
.y4_c00156{bottom:1049.758575px;}
.y2_c00156{bottom:1109.158680px;}
.y3_c00156{bottom:1109.158815px;}
.y1_c00156{bottom:1139.398590px;}
.h13_c00156{height:25.031250px;}
.ha_c00156{height:35.982422px;}
.h10_c00156{height:57.814453px;}
.h19_c00156{height:71.400146px;}
.h1a_c00156{height:72.136230px;}
.h14_c00156{height:72.836060px;}
.h11_c00156{height:75.080566px;}
.h17_c00156{height:75.093750px;}
.h3_c00156{height:75.816650px;}
.h12_c00156{height:76.341797px;}
.h8_c00156{height:76.552734px;}
.hd_c00156{height:76.658203px;}
.h1_c00156{height:77.288818px;}
.h7_c00156{height:78.024902px;}
.hf_c00156{height:78.609375px;}
.h5_c00156{height:78.721802px;}
.h6_c00156{height:78.760986px;}
.hb_c00156{height:80.121094px;}
.h4_c00156{height:80.233154px;}
.h18_c00156{height:80.791992px;}
.he_c00156{height:80.876953px;}
.hc_c00156{height:81.632812px;}
.h9_c00156{height:82.441406px;}
.h16_c00156{height:83.136108px;}
.h2_c00156{height:83.177490px;}
.h15_c00156{height:100.125000px;}
.h0_c00156{height:1263.000000px;}
.w0_c00156{width:892.500000px;}
.x0_c00156{left:0.000000px;}
.x1c_c00156{left:141.118815px;}
.x1_c00156{left:142.559100px;}
.xf_c00156{left:143.640930px;}
.x12_c00156{left:186.119415px;}
.x13_c00156{left:213.478635px;}
.x21_c00156{left:222.118785px;}
.x2d_c00156{left:230.038950px;}
.x1d_c00156{left:244.079385px;}
.x37_c00156{left:245.878950px;}
.x2_c00156{left:256.318800px;}
.x38_c00156{left:261.719100px;}
.x3_c00156{left:278.279250px;}
.x14_c00156{left:295.198785px;}
.x4_c00156{left:299.878950px;}
.x10_c00156{left:302.759535px;}
.x1e_c00156{left:312.838515px;}
.x11_c00156{left:327.599100px;}
.x5_c00156{left:336.239250px;}
.x22_c00156{left:351.359235px;}
.x32_c00156{left:362.519100px;}
.x6_c00156{left:365.759100px;}
.x29_c00156{left:367.919535px;}
.x35_c00156{left:378.000000px;}
.x36_c00156{left:392.038920px;}
.x2e_c00156{left:404.279850px;}
.xd_c00156{left:419.399820px;}
.x23_c00156{left:420.479235px;}
.x1f_c00156{left:430.198785px;}
.xe_c00156{left:435.958335px;}
.xb_c00156{left:443.519070px;}
.x15_c00156{left:454.679070px;}
.xc_c00156{left:480.238770px;}
.x2f_c00156{left:493.199850px;}
.x16_c00156{left:530.998950px;}
.x27_c00156{left:544.319235px;}
.x24_c00156{left:547.199850px;}
.x17_c00156{left:549.719565px;}
.x28_c00156{left:557.639700px;}
.x33_c00156{left:564.839535px;}
.x2a_c00156{left:568.438620px;}
.x3b_c00156{left:570.239820px;}
.x18_c00156{left:572.039385px;}
.x3c_c00156{left:599.759535px;}
.x7_c00156{left:605.159820px;}
.x19_c00156{left:620.639100px;}
.x30_c00156{left:637.199385px;}
.x25_c00156{left:642.599670px;}
.x1a_c00156{left:647.639100px;}
.x26_c00156{left:655.559100px;}
.x34_c00156{left:659.159820px;}
.x20_c00156{left:664.558635px;}
.x2b_c00156{left:672.478635px;}
.x39_c00156{left:676.799520px;}
.x9_c00156{left:686.878320px;}
.xa_c00156{left:701.279850px;}
.x2c_c00156{left:704.158770px;}
.x3a_c00156{left:708.838950px;}
.x31_c00156{left:711.358605px;}
.x8_c00156{left:726.119385px;}
.x1b_c00156{left:735.838950px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls16_c00156{letter-spacing:-8.830353pt;}
.lsd_c00156{letter-spacing:-7.266700pt;}
.ls25_c00156{letter-spacing:-7.134047pt;}
.ls6_c00156{letter-spacing:-6.601000pt;}
.ls1f_c00156{letter-spacing:-5.943000pt;}
.ls17_c00156{letter-spacing:-5.673200pt;}
.ls5_c00156{letter-spacing:-5.285000pt;}
.ls2_c00156{letter-spacing:-4.708333pt;}
.ls7_c00156{letter-spacing:-4.619300pt;}
.lsa_c00156{letter-spacing:-4.541667pt;}
.ls1a_c00156{letter-spacing:-3.961300pt;}
.ls1c_c00156{letter-spacing:-3.673667pt;}
.lsc_c00156{letter-spacing:-3.304000pt;}
.lse_c00156{letter-spacing:-3.215333pt;}
.ls19_c00156{letter-spacing:-3.145140pt;}
.ls1e_c00156{letter-spacing:-2.938933pt;}
.ls11_c00156{letter-spacing:-2.798400pt;}
.ls1_c00156{letter-spacing:-2.639000pt;}
.ls13_c00156{letter-spacing:-2.075800pt;}
.ls3_c00156{letter-spacing:-1.981700pt;}
.ls1b_c00156{letter-spacing:-1.469467pt;}
.ls8_c00156{letter-spacing:-1.323700pt;}
.ls10_c00156{letter-spacing:-1.134667pt;}
.lsb_c00156{letter-spacing:-0.734733pt;}
.ls4_c00156{letter-spacing:-0.658000pt;}
.ls15_c00156{letter-spacing:-0.646800pt;}
.ls9_c00156{letter-spacing:0.000000pt;}
.ls24_c00156{letter-spacing:0.686000pt;}
.ls21_c00156{letter-spacing:0.736640pt;}
.ls0_c00156{letter-spacing:1.323700pt;}
.ls1d_c00156{letter-spacing:1.469467pt;}
.ls23_c00156{letter-spacing:2.107487pt;}
.lsf_c00156{letter-spacing:3.353280pt;}
.ls20_c00156{letter-spacing:6.138000pt;}
.ls12_c00156{letter-spacing:6.228000pt;}
.ls14_c00156{letter-spacing:7.851067pt;}
.ls18_c00156{letter-spacing:9.914400pt;}
.ls22_c00156{letter-spacing:24.466867pt;}
.ws0_c00156{word-spacing:0.000000pt;}
._19_c00156{margin-left:-12.939411pt;}
._13_c00156{margin-left:-4.201321pt;}
._14_c00156{margin-left:-3.181368pt;}
._f_c00156{margin-left:-2.121396pt;}
._10_c00156{margin-left:-1.195904pt;}
._1a_c00156{width:1.209296pt;}
._12_c00156{width:2.103447pt;}
._7_c00156{width:3.954987pt;}
._e_c00156{width:5.588140pt;}
._6_c00156{width:6.531502pt;}
._21_c00156{width:7.450034pt;}
._4_c00156{width:8.525789pt;}
._3_c00156{width:9.596894pt;}
._1_c00156{width:10.568098pt;}
._d_c00156{width:11.508317pt;}
._2_c00156{width:12.546377pt;}
._11_c00156{width:14.295492pt;}
._0_c00156{width:16.588785pt;}
._b_c00156{width:17.916883pt;}
._c_c00156{width:19.188308pt;}
._5_c00156{width:20.482053pt;}
._16_c00156{width:21.940681pt;}
._17_c00156{width:23.340090pt;}
._22_c00156{width:24.250423pt;}
._15_c00156{width:25.373191pt;}
._18_c00156{width:26.814229pt;}
._1b_c00156{width:27.764021pt;}
._1c_c00156{width:29.990150pt;}
._20_c00156{width:31.275092pt;}
._9_c00156{width:32.624477pt;}
._1f_c00156{width:35.193055pt;}
._1e_c00156{width:39.228172pt;}
._1d_c00156{width:42.623291pt;}
._a_c00156{width:44.432315pt;}
._8_c00156{width:46.297604pt;}
.fse_c00156{font-size:21.333333pt;}
.fs8_c00156{font-size:30.666667pt;}
.fsb_c00156{font-size:52.000000pt;}
.fs11_c00156{font-size:64.000000pt;}
.fs12_c00156{font-size:64.666667pt;}
.fsa_c00156{font-size:65.333333pt;}
.fsf_c00156{font-size:66.000000pt;}
.fsd_c00156{font-size:67.333333pt;}
.fsc_c00156{font-size:68.000000pt;}
.fs2_c00156{font-size:68.666667pt;}
.fs6_c00156{font-size:69.333333pt;}
.fs0_c00156{font-size:70.000000pt;}
.fs5_c00156{font-size:70.666667pt;}
.fs4_c00156{font-size:71.333333pt;}
.fs9_c00156{font-size:72.000000pt;}
.fs3_c00156{font-size:72.666667pt;}
.fs7_c00156{font-size:74.666667pt;}
.fs1_c00156{font-size:75.333333pt;}
.fs10_c00156{font-size:85.333333pt;}
.y0_c00156{bottom:0.000000pt;}
.y2b_c00156{bottom:162.719200pt;}
.y2a_c00156{bottom:162.719933pt;}
.y28_c00156{bottom:189.117640pt;}
.y29_c00156{bottom:189.118667pt;}
.y27_c00156{bottom:215.358827pt;}
.y26_c00156{bottom:241.918573pt;}
.y25_c00156{bottom:268.158160pt;}
.y24_c00156{bottom:294.399347pt;}
.y23_c00156{bottom:320.638933pt;}
.y22_c00156{bottom:347.198693pt;}
.y20_c00156{bottom:373.439947pt;}
.y21_c00156{bottom:373.439987pt;}
.y1e_c00156{bottom:400.319480pt;}
.y1f_c00156{bottom:400.319867pt;}
.y1c_c00156{bottom:454.079427pt;}
.y1d_c00156{bottom:454.079587pt;}
.y1b_c00156{bottom:480.638667pt;}
.y1a_c00156{bottom:507.199173pt;}
.y19_c00156{bottom:507.199347pt;}
.y18_c00156{bottom:533.438920pt;}
.y17_c00156{bottom:559.999467pt;}
.y16_c00156{bottom:586.879307pt;}
.y15_c00156{bottom:613.759280pt;}
.y14_c00156{bottom:640.639200pt;}
.y13_c00156{bottom:666.559573pt;}
.y12_c00156{bottom:667.040000pt;}
.y11_c00156{bottom:693.439453pt;}
.y10_c00156{bottom:693.440293pt;}
.yf_c00156{bottom:746.559800pt;}
.yd_c00156{bottom:773.119507pt;}
.ye_c00156{bottom:773.119547pt;}
.yc_c00156{bottom:799.999427pt;}
.yb_c00156{bottom:800.000467pt;}
.ya_c00156{bottom:826.240053pt;}
.y8_c00156{bottom:852.799453pt;}
.y9_c00156{bottom:852.799800pt;}
.y7_c00156{bottom:879.359213pt;}
.y5_c00156{bottom:906.558987pt;}
.y6_c00156{bottom:906.559573pt;}
.y4_c00156{bottom:933.118733pt;}
.y2_c00156{bottom:985.918827pt;}
.y3_c00156{bottom:985.918947pt;}
.y1_c00156{bottom:1012.798747pt;}
.h13_c00156{height:22.250000pt;}
.ha_c00156{height:31.984375pt;}
.h10_c00156{height:51.390625pt;}
.h19_c00156{height:63.466797pt;}
.h1a_c00156{height:64.121094pt;}
.h14_c00156{height:64.743164pt;}
.h11_c00156{height:66.738281pt;}
.h17_c00156{height:66.750000pt;}
.h3_c00156{height:67.392578pt;}
.h12_c00156{height:67.859375pt;}
.h8_c00156{height:68.046875pt;}
.hd_c00156{height:68.140625pt;}
.h1_c00156{height:68.701172pt;}
.h7_c00156{height:69.355469pt;}
.hf_c00156{height:69.875000pt;}
.h5_c00156{height:69.974935pt;}
.h6_c00156{height:70.009766pt;}
.hb_c00156{height:71.218750pt;}
.h4_c00156{height:71.318359pt;}
.h18_c00156{height:71.815104pt;}
.he_c00156{height:71.890625pt;}
.hc_c00156{height:72.562500pt;}
.h9_c00156{height:73.281250pt;}
.h16_c00156{height:73.898763pt;}
.h2_c00156{height:73.935547pt;}
.h15_c00156{height:89.000000pt;}
.h0_c00156{height:1122.666667pt;}
.w0_c00156{width:793.333333pt;}
.x0_c00156{left:0.000000pt;}
.x1c_c00156{left:125.438947pt;}
.x1_c00156{left:126.719200pt;}
.xf_c00156{left:127.680827pt;}
.x12_c00156{left:165.439480pt;}
.x13_c00156{left:189.758787pt;}
.x21_c00156{left:197.438920pt;}
.x2d_c00156{left:204.479067pt;}
.x1d_c00156{left:216.959453pt;}
.x37_c00156{left:218.559067pt;}
.x2_c00156{left:227.838933pt;}
.x38_c00156{left:232.639200pt;}
.x3_c00156{left:247.359333pt;}
.x14_c00156{left:262.398920pt;}
.x4_c00156{left:266.559067pt;}
.x10_c00156{left:269.119587pt;}
.x1e_c00156{left:278.078680pt;}
.x11_c00156{left:291.199200pt;}
.x5_c00156{left:298.879333pt;}
.x22_c00156{left:312.319320pt;}
.x32_c00156{left:322.239200pt;}
.x6_c00156{left:325.119200pt;}
.x29_c00156{left:327.039587pt;}
.x35_c00156{left:336.000000pt;}
.x36_c00156{left:348.479040pt;}
.x2e_c00156{left:359.359867pt;}
.xd_c00156{left:372.799840pt;}
.x23_c00156{left:373.759320pt;}
.x1f_c00156{left:382.398920pt;}
.xe_c00156{left:387.518520pt;}
.xb_c00156{left:394.239173pt;}
.x15_c00156{left:404.159173pt;}
.xc_c00156{left:426.878907pt;}
.x2f_c00156{left:438.399867pt;}
.x16_c00156{left:471.999067pt;}
.x27_c00156{left:483.839320pt;}
.x24_c00156{left:486.399867pt;}
.x17_c00156{left:488.639613pt;}
.x28_c00156{left:495.679733pt;}
.x33_c00156{left:502.079587pt;}
.x2a_c00156{left:505.278773pt;}
.x3b_c00156{left:506.879840pt;}
.x18_c00156{left:508.479453pt;}
.x3c_c00156{left:533.119587pt;}
.x7_c00156{left:537.919840pt;}
.x19_c00156{left:551.679200pt;}
.x30_c00156{left:566.399453pt;}
.x25_c00156{left:571.199707pt;}
.x1a_c00156{left:575.679200pt;}
.x26_c00156{left:582.719200pt;}
.x34_c00156{left:585.919840pt;}
.x20_c00156{left:590.718787pt;}
.x2b_c00156{left:597.758787pt;}
.x39_c00156{left:601.599573pt;}
.x9_c00156{left:610.558507pt;}
.xa_c00156{left:623.359867pt;}
.x2c_c00156{left:625.918907pt;}
.x3a_c00156{left:630.079067pt;}
.x31_c00156{left:632.318760pt;}
.x8_c00156{left:645.439453pt;}
.x1b_c00156{left:654.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83b7eb4f35cb99c7a22fca82.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_31d806e2f3eca06ce43a9523.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_c2048ec4840b217c94e73785.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_4832da445d3149d7f746f314.woff2')format("woff");}.ff4_c00157{font-family:ff4_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:ff5_c00157;src:url('chunks/assets/font_7143dd062f9477b0d0afba1e.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00157;src:url('chunks/assets/font_4613e0702a958533286d06e4.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:1.364746;font-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.174779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.mc_c00157{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls24_c00157{letter-spacing:-8.175038px;}
.ls11_c00157{letter-spacing:-7.426125px;}
.ls1c_c00157{letter-spacing:-6.685875px;}
.ls10_c00157{letter-spacing:-5.945625px;}
.lsb_c00157{letter-spacing:-5.196713px;}
.ls12_c00157{letter-spacing:-5.109375px;}
.lsf_c00157{letter-spacing:-4.692600px;}
.ls2_c00157{letter-spacing:-4.456463px;}
.ls1b_c00157{letter-spacing:-4.293000px;}
.lsc_c00157{letter-spacing:-4.053428px;}
.ls6_c00157{letter-spacing:-3.717000px;}
.ls1a_c00157{letter-spacing:-3.242903px;}
.ls4_c00157{letter-spacing:-2.968875px;}
.ls9_c00157{letter-spacing:-2.431575px;}
.ls23_c00157{letter-spacing:-2.376555px;}
.ls13_c00157{letter-spacing:-2.315820px;}
.ls5_c00157{letter-spacing:-2.229413px;}
.ls17_c00157{letter-spacing:-1.872000px;}
.ls7_c00157{letter-spacing:-1.621050px;}
.lsd_c00157{letter-spacing:-1.489163px;}
.lsa_c00157{letter-spacing:-0.810525px;}
.ls8_c00157{letter-spacing:-0.740250px;}
.ls25_c00157{letter-spacing:-0.734400px;}
.ls3_c00157{letter-spacing:0.000000px;}
.ls16_c00157{letter-spacing:0.689783px;}
.ls1_c00157{letter-spacing:0.936000px;}
.ls14_c00157{letter-spacing:2.295225px;}
.ls1f_c00157{letter-spacing:3.242903px;}
.ls15_c00157{letter-spacing:3.736800px;}
.ls1e_c00157{letter-spacing:3.772440px;}
.ls21_c00157{letter-spacing:4.053428px;}
.ls1d_c00157{letter-spacing:4.862348px;}
.ls20_c00157{letter-spacing:7.068600px;}
.ls22_c00157{letter-spacing:7.222500px;}
.ls19_c00157{letter-spacing:11.502525px;}
.ls0_c00157{letter-spacing:14.024880px;}
.ls18_c00157{letter-spacing:14.112000px;}
.lse_c00157{letter-spacing:19.452600px;}
.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;}
._10_c00157{margin-left:-51.712878px;}
._18_c00157{margin-left:-15.848872px;}
._19_c00157{margin-left:-11.130302px;}
._3_c00157{margin-left:-6.853804px;}
._11_c00157{margin-left:-5.211176px;}
._1_c00157{margin-left:-3.515088px;}
._b_c00157{margin-left:-2.187096px;}
._12_c00157{margin-left:-1.100567px;}
._13_c00157{width:1.053705px;}
._2_c00157{width:2.511739px;}
._4_c00157{width:4.260375px;}
._c_c00157{width:5.888061px;}
._a_c00157{width:7.131897px;}
._5_c00157{width:9.381533px;}
._0_c00157{width:10.466380px;}
._7_c00157{width:12.237542px;}
._d_c00157{width:13.717953px;}
._e_c00157{width:14.755867px;}
._9_c00157{width:16.323239px;}
._f_c00157{width:17.600358px;}
._6_c00157{width:19.623889px;}
._8_c00157{width:21.887798px;}
._14_c00157{width:30.373993px;}
._16_c00157{width:32.273058px;}
._15_c00157{width:38.899707px;}
._17_c00157{width:49.834731px;}
.fc0_c00157{color:transparent;}
.fs8_c00157{font-size:37.500000px;}
.fsf_c00157{font-size:70.500000px;}
.fs7_c00157{font-size:72.000000px;}
.fs3_c00157{font-size:74.250000px;}
.fs6_c00157{font-size:75.750000px;}
.fs10_c00157{font-size:76.500000px;}
.fs9_c00157{font-size:77.250000px;}
.fs5_c00157{font-size:78.000000px;}
.fs0_c00157{font-size:78.750000px;}
.fsb_c00157{font-size:79.500000px;}
.fs2_c00157{font-size:80.250000px;}
.fs4_c00157{font-size:81.750000px;}
.fse_c00157{font-size:82.500000px;}
.fsc_c00157{font-size:84.000000px;}
.fs1_c00157{font-size:84.750000px;}
.fsd_c00157{font-size:90.000000px;}
.fsa_c00157{font-size:96.000000px;}
.y0_c00157{bottom:0.000000px;}
.y28_c00157{bottom:178.559685px;}
.y29_c00157{bottom:178.560315px;}
.y27_c00157{bottom:208.439415px;}
.y26_c00157{bottom:237.958950px;}
.y25_c00157{bottom:267.839535px;}
.y24_c00157{bottom:267.840360px;}
.y23_c00157{bottom:327.960000px;}
.y22_c00157{bottom:357.838950px;}
.y20_c00157{bottom:387.719175px;}
.y21_c00157{bottom:387.719565px;}
.y1f_c00157{bottom:417.239220px;}
.y1e_c00157{bottom:417.240255px;}
.y1c_c00157{bottom:447.119310px;}
.y1d_c00157{bottom:447.119985px;}
.y1a_c00157{bottom:508.319640px;}
.y1b_c00157{bottom:508.319820px;}
.y19_c00157{bottom:538.198785px;}
.y18_c00157{bottom:568.438620px;}
.y17_c00157{bottom:568.439295px;}
.y16_c00157{bottom:597.960645px;}
.y14_c00157{bottom:656.999310px;}
.y15_c00157{bottom:656.999400px;}
.y13_c00157{bottom:687.239220px;}
.y12_c00157{bottom:717.479235px;}
.y11_c00157{bottom:748.618785px;}
.yf_c00157{bottom:777.958560px;}
.y10_c00157{bottom:777.958920px;}
.ye_c00157{bottom:838.438680px;}
.yc_c00157{bottom:867.959385px;}
.yd_c00157{bottom:867.960015px;}
.yb_c00157{bottom:897.839100px;}
.ya_c00157{bottom:927.718830px;}
.y9_c00157{bottom:987.119895px;}
.y7_c00157{bottom:1017.359040px;}
.y8_c00157{bottom:1017.359805px;}
.y6_c00157{bottom:1047.238770px;}
.y5_c00157{bottom:1047.239655px;}
.y3_c00157{bottom:1077.118995px;}
.y4_c00157{bottom:1077.119385px;}
.y2_c00157{bottom:1108.079400px;}
.y1_c00157{bottom:1137.959925px;}
.hb_c00157{height:39.111328px;}
.h11_c00157{height:72.836060px;}
.h16_c00157{height:73.529297px;}
.h8_c00157{height:74.344482px;}
.ha_c00157{height:74.830078px;}
.h17_c00157{height:75.080566px;}
.h9_c00157{height:75.093750px;}
.hc_c00157{height:75.778931px;}
.h14_c00157{height:76.552734px;}
.h1_c00157{height:77.288818px;}
.h5_c00157{height:77.440430px;}
.he_c00157{height:78.024902px;}
.h7_c00157{height:78.609375px;}
.h3_c00157{height:78.721802px;}
.h4_c00157{height:78.760986px;}
.h13_c00157{height:79.309570px;}
.h6_c00157{height:80.233154px;}
.h15_c00157{height:80.969238px;}
.h10_c00157{height:82.441406px;}
.hf_c00157{height:83.136108px;}
.h2_c00157{height:83.177490px;}
.h12_c00157{height:93.867188px;}
.hd_c00157{height:100.125000px;}
.h0_c00157{height:1263.000000px;}
.w0_c00157{width:892.500000px;}
.x0_c00157{left:0.000000px;}
.x32_c00157{left:138.240600px;}
.x3e_c00157{left:139.319250px;}
.xf_c00157{left:140.398290px;}
.x1_c00157{left:141.479715px;}
.x25_c00157{left:152.998950px;}
.x27_c00157{left:181.798515px;}
.x18_c00157{left:189.718500px;}
.xa_c00157{left:201.959400px;}
.x10_c00157{left:205.919535px;}
.x28_c00157{left:215.639100px;}
.x11_c00157{left:218.878950px;}
.x1f_c00157{left:228.959400px;}
.x38_c00157{left:230.399850px;}
.x2_c00157{left:239.758500px;}
.x49_c00157{left:242.639100px;}
.x3_c00157{left:254.159850px;}
.x19_c00157{left:257.759100px;}
.x4a_c00157{left:268.559685px;}
.xb_c00157{left:275.398635px;}
.x29_c00157{left:278.638500px;}
.x13_c00157{left:285.479235px;}
.x26_c00157{left:287.278800px;}
.x2d_c00157{left:317.518635px;}
.x14_c00157{left:322.559685px;}
.x39_c00157{left:326.878950px;}
.x43_c00157{left:348.478635px;}
.x3a_c00157{left:352.079385px;}
.x20_c00157{left:362.519100px;}
.x33_c00157{left:383.039385px;}
.x12_c00157{left:387.358665px;}
.x3f_c00157{left:389.519070px;}
.x2e_c00157{left:391.679670px;}
.x34_c00157{left:406.799565px;}
.x3b_c00157{left:420.119985px;}
.x1a_c00157{left:437.039385px;}
.x40_c00157{left:444.598530px;}
.xc_c00157{left:452.879520px;}
.x2a_c00157{left:458.639100px;}
.x21_c00157{left:481.679070px;}
.x35_c00157{left:501.479235px;}
.x1b_c00157{left:503.639700px;}
.x3c_c00157{left:515.519670px;}
.x4_c00157{left:519.479685px;}
.x7_c00157{left:521.999400px;}
.x17_c00157{left:544.319235px;}
.x44_c00157{left:546.838950px;}
.xd_c00157{left:550.078770px;}
.x22_c00157{left:551.878320px;}
.x15_c00157{left:553.318770px;}
.x2b_c00157{left:555.838530px;}
.x23_c00157{left:561.958920px;}
.x47_c00157{left:570.599070px;}
.x16_c00157{left:573.838950px;}
.x2f_c00157{left:581.038920px;}
.x41_c00157{left:588.238770px;}
.x1c_c00157{left:591.478635px;}
.x42_c00157{left:601.199850px;}
.x48_c00157{left:606.959385px;}
.x5_c00157{left:615.238770px;}
.x45_c00157{left:627.479685px;}
.x36_c00157{left:629.999400px;}
.x1d_c00157{left:633.598530px;}
.x46_c00157{left:646.559685px;}
.x8_c00157{left:649.079355px;}
.x30_c00157{left:653.759535px;}
.x31_c00157{left:673.918950px;}
.x6_c00157{left:677.158770px;}
.x37_c00157{left:701.639100px;}
.x1e_c00157{left:703.799520px;}
.x3d_c00157{left:705.958335px;}
.x24_c00157{left:711.719520px;}
.xe_c00157{left:724.319820px;}
.x2c_c00157{left:727.198785px;}
.x9_c00157{left:729.359250px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls24_c00157{letter-spacing:-7.266700pt;}
.ls11_c00157{letter-spacing:-6.601000pt;}
.ls1c_c00157{letter-spacing:-5.943000pt;}
.ls10_c00157{letter-spacing:-5.285000pt;}
.lsb_c00157{letter-spacing:-4.619300pt;}
.ls12_c00157{letter-spacing:-4.541667pt;}
.lsf_c00157{letter-spacing:-4.171200pt;}
.ls2_c00157{letter-spacing:-3.961300pt;}
.ls1b_c00157{letter-spacing:-3.816000pt;}
.lsc_c00157{letter-spacing:-3.603047pt;}
.ls6_c00157{letter-spacing:-3.304000pt;}
.ls1a_c00157{letter-spacing:-2.882580pt;}
.ls4_c00157{letter-spacing:-2.639000pt;}
.ls9_c00157{letter-spacing:-2.161400pt;}
.ls23_c00157{letter-spacing:-2.112493pt;}
.ls13_c00157{letter-spacing:-2.058507pt;}
.ls5_c00157{letter-spacing:-1.981700pt;}
.ls17_c00157{letter-spacing:-1.664000pt;}
.ls7_c00157{letter-spacing:-1.440933pt;}
.lsd_c00157{letter-spacing:-1.323700pt;}
.lsa_c00157{letter-spacing:-0.720467pt;}
.ls8_c00157{letter-spacing:-0.658000pt;}
.ls25_c00157{letter-spacing:-0.652800pt;}
.ls3_c00157{letter-spacing:0.000000pt;}
.ls16_c00157{letter-spacing:0.613140pt;}
.ls1_c00157{letter-spacing:0.832000pt;}
.ls14_c00157{letter-spacing:2.040200pt;}
.ls1f_c00157{letter-spacing:2.882580pt;}
.ls15_c00157{letter-spacing:3.321600pt;}
.ls1e_c00157{letter-spacing:3.353280pt;}
.ls21_c00157{letter-spacing:3.603047pt;}
.ls1d_c00157{letter-spacing:4.322087pt;}
.ls20_c00157{letter-spacing:6.283200pt;}
.ls22_c00157{letter-spacing:6.420000pt;}
.ls19_c00157{letter-spacing:10.224467pt;}
.ls0_c00157{letter-spacing:12.466560pt;}
.ls18_c00157{letter-spacing:12.544000pt;}
.lse_c00157{letter-spacing:17.291200pt;}
.ws0_c00157{word-spacing:0.000000pt;}
._10_c00157{margin-left:-45.967003pt;}
._18_c00157{margin-left:-14.087887pt;}
._19_c00157{margin-left:-9.893602pt;}
._3_c00157{margin-left:-6.092270pt;}
._11_c00157{margin-left:-4.632156pt;}
._1_c00157{margin-left:-3.124523pt;}
._b_c00157{margin-left:-1.944085pt;}
._12_c00157{margin-left:-0.978282pt;}
._13_c00157{width:0.936626pt;}
._2_c00157{width:2.232657pt;}
._4_c00157{width:3.787000pt;}
._c_c00157{width:5.233832pt;}
._a_c00157{width:6.339464pt;}
._5_c00157{width:8.339140pt;}
._0_c00157{width:9.303449pt;}
._7_c00157{width:10.877815pt;}
._d_c00157{width:12.193736pt;}
._e_c00157{width:13.116326pt;}
._9_c00157{width:14.509546pt;}
._f_c00157{width:15.644762pt;}
._6_c00157{width:17.443457pt;}
._8_c00157{width:19.455821pt;}
._14_c00157{width:26.999105pt;}
._16_c00157{width:28.687162pt;}
._15_c00157{width:34.577517pt;}
._17_c00157{width:44.297539pt;}
.fs8_c00157{font-size:33.333333pt;}
.fsf_c00157{font-size:62.666667pt;}
.fs7_c00157{font-size:64.000000pt;}
.fs3_c00157{font-size:66.000000pt;}
.fs6_c00157{font-size:67.333333pt;}
.fs10_c00157{font-size:68.000000pt;}
.fs9_c00157{font-size:68.666667pt;}
.fs5_c00157{font-size:69.333333pt;}
.fs0_c00157{font-size:70.000000pt;}
.fsb_c00157{font-size:70.666667pt;}
.fs2_c00157{font-size:71.333333pt;}
.fs4_c00157{font-size:72.666667pt;}
.fse_c00157{font-size:73.333333pt;}
.fsc_c00157{font-size:74.666667pt;}
.fs1_c00157{font-size:75.333333pt;}
.fsd_c00157{font-size:80.000000pt;}
.fsa_c00157{font-size:85.333333pt;}
.y0_c00157{bottom:0.000000pt;}
.y28_c00157{bottom:158.719720pt;}
.y29_c00157{bottom:158.720280pt;}
.y27_c00157{bottom:185.279480pt;}
.y26_c00157{bottom:211.519067pt;}
.y25_c00157{bottom:238.079587pt;}
.y24_c00157{bottom:238.080320pt;}
.y23_c00157{bottom:291.520000pt;}
.y22_c00157{bottom:318.079067pt;}
.y20_c00157{bottom:344.639267pt;}
.y21_c00157{bottom:344.639613pt;}
.y1f_c00157{bottom:370.879307pt;}
.y1e_c00157{bottom:370.880227pt;}
.y1c_c00157{bottom:397.439387pt;}
.y1d_c00157{bottom:397.439987pt;}
.y1a_c00157{bottom:451.839680pt;}
.y1b_c00157{bottom:451.839840pt;}
.y19_c00157{bottom:478.398920pt;}
.y18_c00157{bottom:505.278773pt;}
.y17_c00157{bottom:505.279373pt;}
.y16_c00157{bottom:531.520573pt;}
.y14_c00157{bottom:583.999387pt;}
.y15_c00157{bottom:583.999467pt;}
.y13_c00157{bottom:610.879307pt;}
.y12_c00157{bottom:637.759320pt;}
.y11_c00157{bottom:665.438920pt;}
.yf_c00157{bottom:691.518720pt;}
.y10_c00157{bottom:691.519040pt;}
.ye_c00157{bottom:745.278827pt;}
.yc_c00157{bottom:771.519453pt;}
.yd_c00157{bottom:771.520013pt;}
.yb_c00157{bottom:798.079200pt;}
.ya_c00157{bottom:824.638960pt;}
.y9_c00157{bottom:877.439907pt;}
.y7_c00157{bottom:904.319147pt;}
.y8_c00157{bottom:904.319827pt;}
.y6_c00157{bottom:930.878907pt;}
.y5_c00157{bottom:930.879693pt;}
.y3_c00157{bottom:957.439107pt;}
.y4_c00157{bottom:957.439453pt;}
.y2_c00157{bottom:984.959467pt;}
.y1_c00157{bottom:1011.519933pt;}
.hb_c00157{height:34.765625pt;}
.h11_c00157{height:64.743164pt;}
.h16_c00157{height:65.359375pt;}
.h8_c00157{height:66.083984pt;}
.ha_c00157{height:66.515625pt;}
.h17_c00157{height:66.738281pt;}
.h9_c00157{height:66.750000pt;}
.hc_c00157{height:67.359049pt;}
.h14_c00157{height:68.046875pt;}
.h1_c00157{height:68.701172pt;}
.h5_c00157{height:68.835938pt;}
.he_c00157{height:69.355469pt;}
.h7_c00157{height:69.875000pt;}
.h3_c00157{height:69.974935pt;}
.h4_c00157{height:70.009766pt;}
.h13_c00157{height:70.497396pt;}
.h6_c00157{height:71.318359pt;}
.h15_c00157{height:71.972656pt;}
.h10_c00157{height:73.281250pt;}
.hf_c00157{height:73.898763pt;}
.h2_c00157{height:73.935547pt;}
.h12_c00157{height:83.437500pt;}
.hd_c00157{height:89.000000pt;}
.h0_c00157{height:1122.666667pt;}
.w0_c00157{width:793.333333pt;}
.x0_c00157{left:0.000000pt;}
.x32_c00157{left:122.880533pt;}
.x3e_c00157{left:123.839333pt;}
.xf_c00157{left:124.798480pt;}
.x1_c00157{left:125.759747pt;}
.x25_c00157{left:135.999067pt;}
.x27_c00157{left:161.598680pt;}
.x18_c00157{left:168.638667pt;}
.xa_c00157{left:179.519467pt;}
.x10_c00157{left:183.039587pt;}
.x28_c00157{left:191.679200pt;}
.x11_c00157{left:194.559067pt;}
.x1f_c00157{left:203.519467pt;}
.x38_c00157{left:204.799867pt;}
.x2_c00157{left:213.118667pt;}
.x49_c00157{left:215.679200pt;}
.x3_c00157{left:225.919867pt;}
.x19_c00157{left:229.119200pt;}
.x4a_c00157{left:238.719720pt;}
.xb_c00157{left:244.798787pt;}
.x29_c00157{left:247.678667pt;}
.x13_c00157{left:253.759320pt;}
.x26_c00157{left:255.358933pt;}
.x2d_c00157{left:282.238787pt;}
.x14_c00157{left:286.719720pt;}
.x39_c00157{left:290.559067pt;}
.x43_c00157{left:309.758787pt;}
.x3a_c00157{left:312.959453pt;}
.x20_c00157{left:322.239200pt;}
.x33_c00157{left:340.479453pt;}
.x12_c00157{left:344.318813pt;}
.x3f_c00157{left:346.239173pt;}
.x2e_c00157{left:348.159707pt;}
.x34_c00157{left:361.599613pt;}
.x3b_c00157{left:373.439987pt;}
.x1a_c00157{left:388.479453pt;}
.x40_c00157{left:395.198693pt;}
.xc_c00157{left:402.559573pt;}
.x2a_c00157{left:407.679200pt;}
.x21_c00157{left:428.159173pt;}
.x35_c00157{left:445.759320pt;}
.x1b_c00157{left:447.679733pt;}
.x3c_c00157{left:458.239707pt;}
.x4_c00157{left:461.759720pt;}
.x7_c00157{left:463.999467pt;}
.x17_c00157{left:483.839320pt;}
.x44_c00157{left:486.079067pt;}
.xd_c00157{left:488.958907pt;}
.x22_c00157{left:490.558507pt;}
.x15_c00157{left:491.838907pt;}
.x2b_c00157{left:494.078693pt;}
.x23_c00157{left:499.519040pt;}
.x47_c00157{left:507.199173pt;}
.x16_c00157{left:510.079067pt;}
.x2f_c00157{left:516.479040pt;}
.x41_c00157{left:522.878907pt;}
.x1c_c00157{left:525.758787pt;}
.x42_c00157{left:534.399867pt;}
.x48_c00157{left:539.519453pt;}
.x5_c00157{left:546.878907pt;}
.x45_c00157{left:557.759720pt;}
.x36_c00157{left:559.999467pt;}
.x1d_c00157{left:563.198693pt;}
.x46_c00157{left:574.719720pt;}
.x8_c00157{left:576.959427pt;}
.x30_c00157{left:581.119587pt;}
.x31_c00157{left:599.039067pt;}
.x6_c00157{left:601.918907pt;}
.x37_c00157{left:623.679200pt;}
.x1e_c00157{left:625.599573pt;}
.x3d_c00157{left:627.518520pt;}
.x24_c00157{left:632.639573pt;}
.xe_c00157{left:643.839840pt;}
.x2c_c00157{left:646.398920pt;}
.x9_c00157{left:648.319333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cc57cf18e7e9db2a9a56d8a.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_8c54df3ceed49b88e546d4c8.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_d76c0d8fd97c6c7b68ea30e8.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_b435f488cc75eb73922dfa65.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_e7413086c5844def0fb825b7.woff2')format("woff");}.ff6_c00158{font-family:ff6_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;}
@font-face{font-family:ff7_c00158;src:url('chunks/assets/font_622a51dd76367c84c68a7e6b.woff2')format("woff");}.ff7_c00158{font-family:ff7_c00158;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00158;src:url('chunks/assets/font_2c2f487cbee00d9c716cf2a0.woff2')format("woff");}.ff8_c00158{font-family:ff8_c00158;line-height:1.364746;font-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_c00158{transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.174479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174479,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.184874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184874,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m21_c00158{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m17_c00158{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m19_c00158{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m0_c00158{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m13_c00158{transform:matrix(0.274336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274336,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m1a_c00158{transform:matrix(0.315421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315421,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls18_c00158{letter-spacing:-16.681050px;}
.ls1f_c00158{letter-spacing:-16.399125px;}
.lse_c00158{letter-spacing:-15.106950px;}
.ls11_c00158{letter-spacing:-12.803018px;}
.ls1e_c00158{letter-spacing:-12.799500px;}
.ls2c_c00158{letter-spacing:-12.687675px;}
.ls23_c00158{letter-spacing:-11.145225px;}
.ls12_c00158{letter-spacing:-8.914500px;}
.ls13_c00158{letter-spacing:-8.175038px;}
.ls14_c00158{letter-spacing:-7.426125px;}
.ls25_c00158{letter-spacing:-7.134225px;}
.lsb_c00158{letter-spacing:-6.685875px;}
.ls27_c00158{letter-spacing:-6.035452px;}
.lsa_c00158{letter-spacing:-6.000300px;}
.lsf_c00158{letter-spacing:-5.945625px;}
.ls1_c00158{letter-spacing:-5.196713px;}
.ls15_c00158{letter-spacing:-5.109375px;}
.ls9_c00158{letter-spacing:-4.921875px;}
.ls20_c00158{letter-spacing:-4.678575px;}
.ls19_c00158{letter-spacing:-4.456463px;}
.ls16_c00158{letter-spacing:-4.293000px;}
.ls10_c00158{letter-spacing:-4.156050px;}
.ls2_c00158{letter-spacing:-3.717000px;}
.ls3_c00158{letter-spacing:-2.968875px;}
.ls2a_c00158{letter-spacing:-2.867288px;}
.ls0_c00158{letter-spacing:-2.229413px;}
.ls1a_c00158{letter-spacing:-1.709325px;}
.ls1d_c00158{letter-spacing:-1.698345px;}
.ls26_c00158{letter-spacing:-1.652153px;}
.ls7_c00158{letter-spacing:-1.586955px;}
.ls4_c00158{letter-spacing:-1.489163px;}
.ls1c_c00158{letter-spacing:-0.850650px;}
.ls21_c00158{letter-spacing:-0.794205px;}
.ls8_c00158{letter-spacing:-0.740250px;}
.lsc_c00158{letter-spacing:0.000000px;}
.ls6_c00158{letter-spacing:0.740250px;}
.lsd_c00158{letter-spacing:0.850650px;}
.ls1b_c00158{letter-spacing:0.907200px;}
.ls17_c00158{letter-spacing:1.730400px;}
.ls28_c00158{letter-spacing:2.317950px;}
.ls2b_c00158{letter-spacing:3.726810px;}
.ls5_c00158{letter-spacing:4.060875px;}
.ls29_c00158{letter-spacing:4.456463px;}
.ls24_c00158{letter-spacing:6.241800px;}
.ls22_c00158{letter-spacing:15.048000px;}
.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;}
._17_c00158{margin-left:-12.823813px;}
._18_c00158{margin-left:-8.891905px;}
._14_c00158{margin-left:-7.760991px;}
._16_c00158{margin-left:-4.795548px;}
._8_c00158{margin-left:-3.794413px;}
._6_c00158{margin-left:-2.095047px;}
._9_c00158{margin-left:-1.018876px;}
._11_c00158{width:1.483591px;}
._5_c00158{width:2.564887px;}
._7_c00158{width:3.942938px;}
._0_c00158{width:5.673091px;}
._19_c00158{width:6.740932px;}
._3_c00158{width:7.755879px;}
._15_c00158{width:8.801813px;}
._12_c00158{width:9.816797px;}
._10_c00158{width:11.515627px;}
._4_c00158{width:12.694678px;}
._1_c00158{width:14.297687px;}
._2_c00158{width:15.707936px;}
._13_c00158{width:18.186896px;}
._e_c00158{width:21.319883px;}
._a_c00158{width:23.152708px;}
._d_c00158{width:24.768197px;}
._c_c00158{width:25.957085px;}
._f_c00158{width:32.026585px;}
._b_c00158{width:34.174291px;}
.fc0_c00158{color:transparent;}
.fs11_c00158{font-size:57.750000px;}
.fsf_c00158{font-size:68.250000px;}
.fs2_c00158{font-size:70.500000px;}
.fse_c00158{font-size:72.000000px;}
.fs10_c00158{font-size:72.750000px;}
.fs12_c00158{font-size:76.500000px;}
.fs7_c00158{font-size:77.250000px;}
.fs13_c00158{font-size:78.000000px;}
.fs0_c00158{font-size:78.750000px;}
.fsa_c00158{font-size:79.500000px;}
.fs4_c00158{font-size:80.250000px;}
.fsd_c00158{font-size:81.000000px;}
.fs9_c00158{font-size:81.750000px;}
.fs5_c00158{font-size:82.500000px;}
.fs8_c00158{font-size:83.250000px;}
.fsb_c00158{font-size:84.000000px;}
.fs3_c00158{font-size:84.750000px;}
.fsc_c00158{font-size:85.500000px;}
.fs6_c00158{font-size:88.500000px;}
.fs1_c00158{font-size:89.250000px;}
.y0_c00158{bottom:0.000000px;}
.y29_c00158{bottom:186.839565px;}
.y28_c00158{bottom:216.360900px;}
.y27_c00158{bottom:246.239850px;}
.y26_c00158{bottom:246.240000px;}
.y25_c00158{bottom:275.759535px;}
.y24_c00158{bottom:275.760435px;}
.y23_c00158{bottom:305.640150px;}
.y22_c00158{bottom:305.641020px;}
.y21_c00158{bottom:335.520750px;}
.y20_c00158{bottom:365.400015px;}
.y1f_c00158{bottom:394.919535px;}
.y1e_c00158{bottom:425.879520px;}
.y1d_c00158{bottom:454.680720px;}
.y1c_c00158{bottom:514.799475px;}
.y1b_c00158{bottom:545.039385px;}
.y1a_c00158{bottom:545.039400px;}
.y19_c00158{bottom:574.560750px;}
.y18_c00158{bottom:603.719520px;}
.y17_c00158{bottom:603.720405px;}
.y16_c00158{bottom:633.600135px;}
.y14_c00158{bottom:663.838965px;}
.y15_c00158{bottom:663.840135px;}
.y13_c00158{bottom:723.240030px;}
.y12_c00158{bottom:783.720150px;}
.y11_c00158{bottom:814.321020px;}
.yf_c00158{bottom:843.839790px;}
.y10_c00158{bottom:843.840540px;}
.ye_c00158{bottom:873.719520px;}
.yd_c00158{bottom:873.719535px;}
.yc_c00158{bottom:903.240870px;}
.yb_c00158{bottom:903.240915px;}
.ya_c00158{bottom:933.480840px;}
.y9_c00158{bottom:933.481020px;}
.y8_c00158{bottom:963.000555px;}
.y7_c00158{bottom:993.599670px;}
.y6_c00158{bottom:993.600570px;}
.y5_c00158{bottom:1023.480285px;}
.y3_c00158{bottom:1053.360240px;}
.y4_c00158{bottom:1053.360900px;}
.y2_c00158{bottom:1112.759490px;}
.y1_c00158{bottom:1142.999355px;}
.h16_c00158{height:57.073242px;}
.h13_c00158{height:71.182617px;}
.h3_c00158{height:73.529297px;}
.h17_c00158{height:75.080566px;}
.h12_c00158{height:75.093750px;}
.h15_c00158{height:75.875977px;}
.h19_c00158{height:76.552734px;}
.h1_c00158{height:77.288818px;}
.h14_c00158{height:77.853516px;}
.hc_c00158{height:78.024902px;}
.h5_c00158{height:78.721802px;}
.ha_c00158{height:78.760986px;}
.h18_c00158{height:79.365234px;}
.hf_c00158{height:79.497070px;}
.h11_c00158{height:80.121094px;}
.hb_c00158{height:80.233154px;}
.h8_c00158{height:80.569336px;}
.h10_c00158{height:80.876953px;}
.h6_c00158{height:80.969238px;}
.h1a_c00158{height:81.533203px;}
.h9_c00158{height:82.274414px;}
.hd_c00158{height:82.441406px;}
.h4_c00158{height:83.177490px;}
.he_c00158{height:84.498047px;}
.h7_c00158{height:87.462891px;}
.h2_c00158{height:87.593994px;}
.h0_c00158{height:1263.000000px;}
.w0_c00158{width:892.500000px;}
.x0_c00158{left:0.000000px;}
.x23_c00158{left:138.599100px;}
.x6_c00158{left:140.038995px;}
.x1_c00158{left:141.118815px;}
.x19_c00158{left:154.439250px;}
.x41_c00158{left:160.918950px;}
.x28_c00158{left:167.398665px;}
.x1d_c00158{left:178.199415px;}
.xf_c00158{left:195.838950px;}
.x1e_c00158{left:198.719535px;}
.x10_c00158{left:210.599700px;}
.x24_c00158{left:218.878950px;}
.x14_c00158{left:223.918350px;}
.x29_c00158{left:229.679700px;}
.x15_c00158{left:237.599700px;}
.x11_c00158{left:248.039385px;}
.xc_c00158{left:263.879535px;}
.x25_c00158{left:275.398635px;}
.x7_c00158{left:276.479685px;}
.x8_c00158{left:300.958350px;}
.x12_c00158{left:302.398635px;}
.x36_c00158{left:315.359850px;}
.x2a_c00158{left:321.478635px;}
.x13_c00158{left:324.000000px;}
.x2b_c00158{left:358.559100px;}
.x37_c00158{left:381.239850px;}
.x2c_c00158{left:383.398635px;}
.x38_c00158{left:395.639700px;}
.x2d_c00158{left:418.679670px;}
.xd_c00158{left:434.878920px;}
.x3a_c00158{left:441.719565px;}
.x3c_c00158{left:449.998950px;}
.xe_c00158{left:455.039985px;}
.x3d_c00158{left:464.039385px;}
.x42_c00158{left:467.638500px;}
.x3f_c00158{left:474.838530px;}
.x21_c00158{left:479.518620px;}
.x43_c00158{left:482.399235px;}
.x40_c00158{left:497.878320px;}
.x2e_c00158{left:502.919535px;}
.x22_c00158{left:504.719100px;}
.x3_c00158{left:509.758530px;}
.x1a_c00158{left:515.158770px;}
.x9_c00158{left:524.519070px;}
.x1b_c00158{left:530.278800px;}
.x4_c00158{left:545.398635px;}
.x39_c00158{left:552.959385px;}
.x16_c00158{left:558.719100px;}
.x2f_c00158{left:562.319820px;}
.x17_c00158{left:572.759535px;}
.x3b_c00158{left:587.159370px;}
.x18_c00158{left:592.559685px;}
.x30_c00158{left:601.918350px;}
.x34_c00158{left:604.798920px;}
.x35_c00158{left:621.359250px;}
.x1f_c00158{left:628.199850px;}
.x31_c00158{left:631.078770px;}
.x26_c00158{left:634.318770px;}
.x3e_c00158{left:637.199385px;}
.x32_c00158{left:658.078770px;}
.x27_c00158{left:659.878320px;}
.xa_c00158{left:685.078770px;}
.x44_c00158{left:716.038920px;}
.x33_c00158{left:744.838530px;}
.x1c_c00158{left:749.159370px;}
.x2_c00158{left:755.639100px;}
.x20_c00158{left:764.638545px;}
.x5_c00158{left:767.159820px;}
.xb_c00158{left:772.919490px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls18_c00158{letter-spacing:-14.827600pt;}
.ls1f_c00158{letter-spacing:-14.577000pt;}
.lse_c00158{letter-spacing:-13.428400pt;}
.ls11_c00158{letter-spacing:-11.380460pt;}
.ls1e_c00158{letter-spacing:-11.377333pt;}
.ls2c_c00158{letter-spacing:-11.277933pt;}
.ls23_c00158{letter-spacing:-9.906867pt;}
.ls12_c00158{letter-spacing:-7.924000pt;}
.ls13_c00158{letter-spacing:-7.266700pt;}
.ls14_c00158{letter-spacing:-6.601000pt;}
.ls25_c00158{letter-spacing:-6.341533pt;}
.lsb_c00158{letter-spacing:-5.943000pt;}
.ls27_c00158{letter-spacing:-5.364847pt;}
.lsa_c00158{letter-spacing:-5.333600pt;}
.lsf_c00158{letter-spacing:-5.285000pt;}
.ls1_c00158{letter-spacing:-4.619300pt;}
.ls15_c00158{letter-spacing:-4.541667pt;}
.ls9_c00158{letter-spacing:-4.375000pt;}
.ls20_c00158{letter-spacing:-4.158733pt;}
.ls19_c00158{letter-spacing:-3.961300pt;}
.ls16_c00158{letter-spacing:-3.816000pt;}
.ls10_c00158{letter-spacing:-3.694267pt;}
.ls2_c00158{letter-spacing:-3.304000pt;}
.ls3_c00158{letter-spacing:-2.639000pt;}
.ls2a_c00158{letter-spacing:-2.548700pt;}
.ls0_c00158{letter-spacing:-1.981700pt;}
.ls1a_c00158{letter-spacing:-1.519400pt;}
.ls1d_c00158{letter-spacing:-1.509640pt;}
.ls26_c00158{letter-spacing:-1.468580pt;}
.ls7_c00158{letter-spacing:-1.410627pt;}
.ls4_c00158{letter-spacing:-1.323700pt;}
.ls1c_c00158{letter-spacing:-0.756133pt;}
.ls21_c00158{letter-spacing:-0.705960pt;}
.ls8_c00158{letter-spacing:-0.658000pt;}
.lsc_c00158{letter-spacing:0.000000pt;}
.ls6_c00158{letter-spacing:0.658000pt;}
.lsd_c00158{letter-spacing:0.756133pt;}
.ls1b_c00158{letter-spacing:0.806400pt;}
.ls17_c00158{letter-spacing:1.538133pt;}
.ls28_c00158{letter-spacing:2.060400pt;}
.ls2b_c00158{letter-spacing:3.312720pt;}
.ls5_c00158{letter-spacing:3.609667pt;}
.ls29_c00158{letter-spacing:3.961300pt;}
.ls24_c00158{letter-spacing:5.548267pt;}
.ls22_c00158{letter-spacing:13.376000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
._17_c00158{margin-left:-11.398945pt;}
._18_c00158{margin-left:-7.903915pt;}
._14_c00158{margin-left:-6.898658pt;}
._16_c00158{margin-left:-4.262709pt;}
._8_c00158{margin-left:-3.372811pt;}
._6_c00158{margin-left:-1.862264pt;}
._9_c00158{margin-left:-0.905668pt;}
._11_c00158{width:1.318747pt;}
._5_c00158{width:2.279900pt;}
._7_c00158{width:3.504834pt;}
._0_c00158{width:5.042747pt;}
._19_c00158{width:5.991939pt;}
._3_c00158{width:6.894115pt;}
._15_c00158{width:7.823834pt;}
._12_c00158{width:8.726042pt;}
._10_c00158{width:10.236113pt;}
._4_c00158{width:11.284158pt;}
._1_c00158{width:12.709055pt;}
._2_c00158{width:13.962609pt;}
._13_c00158{width:16.166130pt;}
._e_c00158{width:18.951008pt;}
._a_c00158{width:20.580185pt;}
._d_c00158{width:22.016175pt;}
._c_c00158{width:23.072964pt;}
._f_c00158{width:28.468075pt;}
._b_c00158{width:30.377147pt;}
.fs11_c00158{font-size:51.333333pt;}
.fsf_c00158{font-size:60.666667pt;}
.fs2_c00158{font-size:62.666667pt;}
.fse_c00158{font-size:64.000000pt;}
.fs10_c00158{font-size:64.666667pt;}
.fs12_c00158{font-size:68.000000pt;}
.fs7_c00158{font-size:68.666667pt;}
.fs13_c00158{font-size:69.333333pt;}
.fs0_c00158{font-size:70.000000pt;}
.fsa_c00158{font-size:70.666667pt;}
.fs4_c00158{font-size:71.333333pt;}
.fsd_c00158{font-size:72.000000pt;}
.fs9_c00158{font-size:72.666667pt;}
.fs5_c00158{font-size:73.333333pt;}
.fs8_c00158{font-size:74.000000pt;}
.fsb_c00158{font-size:74.666667pt;}
.fs3_c00158{font-size:75.333333pt;}
.fsc_c00158{font-size:76.000000pt;}
.fs6_c00158{font-size:78.666667pt;}
.fs1_c00158{font-size:79.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.y29_c00158{bottom:166.079613pt;}
.y28_c00158{bottom:192.320800pt;}
.y27_c00158{bottom:218.879867pt;}
.y26_c00158{bottom:218.880000pt;}
.y25_c00158{bottom:245.119587pt;}
.y24_c00158{bottom:245.120387pt;}
.y23_c00158{bottom:271.680133pt;}
.y22_c00158{bottom:271.680907pt;}
.y21_c00158{bottom:298.240667pt;}
.y20_c00158{bottom:324.800013pt;}
.y1f_c00158{bottom:351.039587pt;}
.y1e_c00158{bottom:378.559573pt;}
.y1d_c00158{bottom:404.160640pt;}
.y1c_c00158{bottom:457.599533pt;}
.y1b_c00158{bottom:484.479453pt;}
.y1a_c00158{bottom:484.479467pt;}
.y19_c00158{bottom:510.720667pt;}
.y18_c00158{bottom:536.639573pt;}
.y17_c00158{bottom:536.640360pt;}
.y16_c00158{bottom:563.200120pt;}
.y14_c00158{bottom:590.079080pt;}
.y15_c00158{bottom:590.080120pt;}
.y13_c00158{bottom:642.880027pt;}
.y12_c00158{bottom:696.640133pt;}
.y11_c00158{bottom:723.840907pt;}
.yf_c00158{bottom:750.079813pt;}
.y10_c00158{bottom:750.080480pt;}
.ye_c00158{bottom:776.639573pt;}
.yd_c00158{bottom:776.639587pt;}
.yc_c00158{bottom:802.880773pt;}
.yb_c00158{bottom:802.880813pt;}
.ya_c00158{bottom:829.760747pt;}
.y9_c00158{bottom:829.760907pt;}
.y8_c00158{bottom:856.000493pt;}
.y7_c00158{bottom:883.199707pt;}
.y6_c00158{bottom:883.200507pt;}
.y5_c00158{bottom:909.760253pt;}
.y3_c00158{bottom:936.320213pt;}
.y4_c00158{bottom:936.320800pt;}
.y2_c00158{bottom:989.119547pt;}
.y1_c00158{bottom:1015.999427pt;}
.h16_c00158{height:50.731771pt;}
.h13_c00158{height:63.273438pt;}
.h3_c00158{height:65.359375pt;}
.h17_c00158{height:66.738281pt;}
.h12_c00158{height:66.750000pt;}
.h15_c00158{height:67.445312pt;}
.h19_c00158{height:68.046875pt;}
.h1_c00158{height:68.701172pt;}
.h14_c00158{height:69.203125pt;}
.hc_c00158{height:69.355469pt;}
.h5_c00158{height:69.974935pt;}
.ha_c00158{height:70.009766pt;}
.h18_c00158{height:70.546875pt;}
.hf_c00158{height:70.664062pt;}
.h11_c00158{height:71.218750pt;}
.hb_c00158{height:71.318359pt;}
.h8_c00158{height:71.617188pt;}
.h10_c00158{height:71.890625pt;}
.h6_c00158{height:71.972656pt;}
.h1a_c00158{height:72.473958pt;}
.h9_c00158{height:73.132813pt;}
.hd_c00158{height:73.281250pt;}
.h4_c00158{height:73.935547pt;}
.he_c00158{height:75.109375pt;}
.h7_c00158{height:77.744792pt;}
.h2_c00158{height:77.861328pt;}
.h0_c00158{height:1122.666667pt;}
.w0_c00158{width:793.333333pt;}
.x0_c00158{left:0.000000pt;}
.x23_c00158{left:123.199200pt;}
.x6_c00158{left:124.479107pt;}
.x1_c00158{left:125.438947pt;}
.x19_c00158{left:137.279333pt;}
.x41_c00158{left:143.039067pt;}
.x28_c00158{left:148.798813pt;}
.x1d_c00158{left:158.399480pt;}
.xf_c00158{left:174.079067pt;}
.x1e_c00158{left:176.639587pt;}
.x10_c00158{left:187.199733pt;}
.x24_c00158{left:194.559067pt;}
.x14_c00158{left:199.038533pt;}
.x29_c00158{left:204.159733pt;}
.x15_c00158{left:211.199733pt;}
.x11_c00158{left:220.479453pt;}
.xc_c00158{left:234.559587pt;}
.x25_c00158{left:244.798787pt;}
.x7_c00158{left:245.759720pt;}
.x8_c00158{left:267.518533pt;}
.x12_c00158{left:268.798787pt;}
.x36_c00158{left:280.319867pt;}
.x2a_c00158{left:285.758787pt;}
.x13_c00158{left:288.000000pt;}
.x2b_c00158{left:318.719200pt;}
.x37_c00158{left:338.879867pt;}
.x2c_c00158{left:340.798787pt;}
.x38_c00158{left:351.679733pt;}
.x2d_c00158{left:372.159707pt;}
.xd_c00158{left:386.559040pt;}
.x3a_c00158{left:392.639613pt;}
.x3c_c00158{left:399.999067pt;}
.xe_c00158{left:404.479987pt;}
.x3d_c00158{left:412.479453pt;}
.x42_c00158{left:415.678667pt;}
.x3f_c00158{left:422.078693pt;}
.x21_c00158{left:426.238773pt;}
.x43_c00158{left:428.799320pt;}
.x40_c00158{left:442.558507pt;}
.x2e_c00158{left:447.039587pt;}
.x22_c00158{left:448.639200pt;}
.x3_c00158{left:453.118693pt;}
.x1a_c00158{left:457.918907pt;}
.x9_c00158{left:466.239173pt;}
.x1b_c00158{left:471.358933pt;}
.x4_c00158{left:484.798787pt;}
.x39_c00158{left:491.519453pt;}
.x16_c00158{left:496.639200pt;}
.x2f_c00158{left:499.839840pt;}
.x17_c00158{left:509.119587pt;}
.x3b_c00158{left:521.919440pt;}
.x18_c00158{left:526.719720pt;}
.x30_c00158{left:535.038533pt;}
.x34_c00158{left:537.599040pt;}
.x35_c00158{left:552.319333pt;}
.x1f_c00158{left:558.399867pt;}
.x31_c00158{left:560.958907pt;}
.x26_c00158{left:563.838907pt;}
.x3e_c00158{left:566.399453pt;}
.x32_c00158{left:584.958907pt;}
.x27_c00158{left:586.558507pt;}
.xa_c00158{left:608.958907pt;}
.x44_c00158{left:636.479040pt;}
.x33_c00158{left:662.078693pt;}
.x1c_c00158{left:665.919440pt;}
.x2_c00158{left:671.679200pt;}
.x20_c00158{left:679.678707pt;}
.x5_c00158{left:681.919840pt;}
.xb_c00158{left:687.039547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3efe85429ca2fdb80811dbf5.woff2')format("woff");}.ff1_c00159{font-family:ff1_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:ff2_c00159;src:url('chunks/assets/font_11d6848ec5a7b3120a95a929.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_a1a94093096b32014c800d05.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_8054c7183c84b1a2750bd4d8.woff2')format("woff");}.ff4_c00159{font-family:ff4_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:ff5_c00159;src:url('chunks/assets/font_15a34ff6f157c164eefc496b.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_4b7b3155cd8239b63727791e.woff2')format("woff");}.ff6_c00159{font-family:ff6_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:ff7_c00159;src:url('chunks/assets/font_711ddc779d94d20efe901096.woff2')format("woff");}.ff7_c00159{font-family:ff7_c00159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16_c00159{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00159{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{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_c00159{transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305195,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.334211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334211,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls17_c00159{letter-spacing:-12.019875px;}
.ls21_c00159{letter-spacing:-10.402875px;}
.ls20_c00159{letter-spacing:-8.914500px;}
.ls15_c00159{letter-spacing:-8.175038px;}
.ls11_c00159{letter-spacing:-7.426125px;}
.ls23_c00159{letter-spacing:-6.685875px;}
.ls1d_c00159{letter-spacing:-6.308250px;}
.lsc_c00159{letter-spacing:-5.945625px;}
.ls22_c00159{letter-spacing:-5.731950px;}
.lsd_c00159{letter-spacing:-5.196713px;}
.ls1a_c00159{letter-spacing:-4.695375px;}
.lse_c00159{letter-spacing:-4.456463px;}
.ls14_c00159{letter-spacing:-4.289220px;}
.ls28_c00159{letter-spacing:-3.916800px;}
.ls1b_c00159{letter-spacing:-3.862500px;}
.lsa_c00159{letter-spacing:-3.717000px;}
.lsb_c00159{letter-spacing:-3.303518px;}
.ls24_c00159{letter-spacing:-3.151800px;}
.ls5_c00159{letter-spacing:-2.968875px;}
.ls29_c00159{letter-spacing:-2.889150px;}
.ls6_c00159{letter-spacing:-2.477025px;}
.ls1f_c00159{letter-spacing:-2.460150px;}
.ls7_c00159{letter-spacing:-2.229413px;}
.lsf_c00159{letter-spacing:-2.149875px;}
.ls1c_c00159{letter-spacing:-1.709250px;}
.ls4_c00159{letter-spacing:-1.651350px;}
.ls18_c00159{letter-spacing:-1.622250px;}
.ls8_c00159{letter-spacing:-1.489163px;}
.ls2_c00159{letter-spacing:-0.825675px;}
.ls10_c00159{letter-spacing:-0.740250px;}
.ls9_c00159{letter-spacing:0.000000px;}
.ls12_c00159{letter-spacing:0.740250px;}
.ls26_c00159{letter-spacing:0.825390px;}
.ls1_c00159{letter-spacing:0.825675px;}
.ls3_c00159{letter-spacing:0.826200px;}
.ls27_c00159{letter-spacing:1.620795px;}
.ls1e_c00159{letter-spacing:1.725300px;}
.ls0_c00159{letter-spacing:2.229413px;}
.ls13_c00159{letter-spacing:3.637710px;}
.ls2a_c00159{letter-spacing:3.657795px;}
.ls25_c00159{letter-spacing:3.823875px;}
.ls16_c00159{letter-spacing:5.594475px;}
.ls2b_c00159{letter-spacing:5.882850px;}
.ls19_c00159{letter-spacing:15.710625px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:0.000000px;}
._15_c00159{margin-left:-15.139539px;}
._9_c00159{margin-left:-11.011672px;}
._18_c00159{margin-left:-6.578224px;}
._b_c00159{margin-left:-5.532009px;}
._a_c00159{margin-left:-4.413833px;}
._0_c00159{margin-left:-1.928838px;}
._3_c00159{width:1.422021px;}
._c_c00159{width:2.750300px;}
._2_c00159{width:3.955761px;}
._7_c00159{width:5.468662px;}
._1_c00159{width:6.646975px;}
._6_c00159{width:8.248942px;}
._4_c00159{width:9.369112px;}
._5_c00159{width:10.662304px;}
._8_c00159{width:12.098163px;}
._1a_c00159{width:13.926427px;}
._16_c00159{width:16.254059px;}
._17_c00159{width:17.281693px;}
._d_c00159{width:18.409057px;}
._12_c00159{width:20.004045px;}
._11_c00159{width:21.106204px;}
._14_c00159{width:22.636970px;}
._f_c00159{width:24.802684px;}
._e_c00159{width:28.200345px;}
._10_c00159{width:29.416840px;}
._19_c00159{width:32.887828px;}
._13_c00159{width:38.310107px;}
.fc0_c00159{color:transparent;}
.fsd_c00159{font-size:57.750000px;}
.fs3_c00159{font-size:67.500000px;}
.fs10_c00159{font-size:69.000000px;}
.fse_c00159{font-size:70.500000px;}
.fsa_c00159{font-size:71.250000px;}
.fsf_c00159{font-size:72.000000px;}
.fs9_c00159{font-size:72.750000px;}
.fsc_c00159{font-size:75.000000px;}
.fs1_c00159{font-size:76.500000px;}
.fsb_c00159{font-size:77.250000px;}
.fs7_c00159{font-size:78.000000px;}
.fs2_c00159{font-size:78.750000px;}
.fs8_c00159{font-size:79.500000px;}
.fs4_c00159{font-size:80.250000px;}
.fs6_c00159{font-size:81.000000px;}
.fs0_c00159{font-size:81.750000px;}
.fs5_c00159{font-size:82.500000px;}
.y0_c00159{bottom:0.000000px;}
.y2c_c00159{bottom:182.879565px;}
.y2b_c00159{bottom:212.759370px;}
.y29_c00159{bottom:272.160210px;}
.y2a_c00159{bottom:272.160435px;}
.y27_c00159{bottom:301.318470px;}
.y28_c00159{bottom:301.319250px;}
.y26_c00159{bottom:360.719535px;}
.y25_c00159{bottom:390.959385px;}
.y24_c00159{bottom:421.199385px;}
.y23_c00159{bottom:421.200285px;}
.y21_c00159{bottom:451.079910px;}
.y22_c00159{bottom:451.080000px;}
.y20_c00159{bottom:481.319820px;}
.y1f_c00159{bottom:511.200435px;}
.y1e_c00159{bottom:540.720150px;}
.y1d_c00159{bottom:540.720240px;}
.y1c_c00159{bottom:570.960165px;}
.y1b_c00159{bottom:600.479685px;}
.y1a_c00159{bottom:600.480585px;}
.y18_c00159{bottom:630.360210px;}
.y19_c00159{bottom:630.360300px;}
.y17_c00159{bottom:660.600135px;}
.y16_c00159{bottom:690.481065px;}
.y14_c00159{bottom:719.999970px;}
.y15_c00159{bottom:720.000600px;}
.y13_c00159{bottom:750.960570px;}
.y11_c00159{bottom:779.398725px;}
.y12_c00159{bottom:779.399235px;}
.yf_c00159{bottom:809.639985px;}
.y10_c00159{bottom:809.640750px;}
.ye_c00159{bottom:839.519715px;}
.yd_c00159{bottom:839.519760px;}
.yb_c00159{bottom:899.279070px;}
.yc_c00159{bottom:899.279205px;}
.ya_c00159{bottom:929.521095px;}
.y8_c00159{bottom:959.040480px;}
.y9_c00159{bottom:959.040615px;}
.y6_c00159{bottom:989.279640px;}
.y7_c00159{bottom:989.280390px;}
.y5_c00159{bottom:1019.159370px;}
.y4_c00159{bottom:1078.920600px;}
.y2_c00159{bottom:1108.798485px;}
.y3_c00159{bottom:1108.799565px;}
.y1_c00159{bottom:1138.680090px;}
.h10_c00159{height:58.201172px;}
.h4_c00159{height:66.247559px;}
.h15_c00159{height:67.686035px;}
.h14_c00159{height:70.628906px;}
.h13_c00159{height:73.529297px;}
.hb_c00159{height:74.311523px;}
.h2_c00159{height:75.043213px;}
.h17_c00159{height:75.080566px;}
.h11_c00159{height:75.778931px;}
.h16_c00159{height:75.816650px;}
.ha_c00159{height:75.875977px;}
.h8_c00159{height:76.552734px;}
.h3_c00159{height:77.288818px;}
.hd_c00159{height:77.853516px;}
.h9_c00159{height:78.024902px;}
.hf_c00159{height:78.222656px;}
.h5_c00159{height:78.760986px;}
.hc_c00159{height:79.365234px;}
.h12_c00159{height:79.457520px;}
.h7_c00159{height:79.497070px;}
.he_c00159{height:80.121094px;}
.h1_c00159{height:80.193237px;}
.h6_c00159{height:80.969238px;}
.h0_c00159{height:1263.000000px;}
.w0_c00159{width:892.500000px;}
.x0_c00159{left:0.000000px;}
.x8_c00159{left:141.839190px;}
.x1_c00159{left:143.279250px;}
.x27_c00159{left:158.399250px;}
.x43_c00159{left:197.638500px;}
.x19_c00159{left:216.000000px;}
.x3a_c00159{left:226.078785px;}
.x2_c00159{left:244.079385px;}
.x31_c00159{left:258.838515px;}
.x3_c00159{left:268.198785px;}
.x12_c00159{left:283.679700px;}
.x25_c00159{left:285.120000px;}
.x1a_c00159{left:295.198785px;}
.x26_c00159{left:300.599100px;}
.x4_c00159{left:317.518635px;}
.x9_c00159{left:330.479685px;}
.x2f_c00159{left:338.399850px;}
.x1b_c00159{left:339.479235px;}
.x2a_c00159{left:346.679100px;}
.x1c_c00159{left:357.838950px;}
.x42_c00159{left:361.439685px;}
.xc_c00159{left:362.878350px;}
.x3f_c00159{left:376.559685px;}
.xd_c00159{left:379.079385px;}
.x2b_c00159{left:393.119985px;}
.x5_c00159{left:402.839535px;}
.x40_c00159{left:421.199385px;}
.x44_c00159{left:425.159415px;}
.x1d_c00159{left:430.559685px;}
.x41_c00159{left:435.239820px;}
.x28_c00159{left:440.638500px;}
.x45_c00159{left:441.719565px;}
.x3e_c00159{left:446.399820px;}
.x29_c00159{left:459.359250px;}
.x1e_c00159{left:461.158770px;}
.xa_c00159{left:481.679070px;}
.x1f_c00159{left:518.398635px;}
.x10_c00159{left:521.279250px;}
.x34_c00159{left:525.959385px;}
.x6_c00159{left:533.159415px;}
.x15_c00159{left:537.478635px;}
.x11_c00159{left:538.559685px;}
.x20_c00159{left:540.359250px;}
.x3b_c00159{left:542.519670px;}
.x46_c00159{left:544.678530px;}
.x3c_c00159{left:557.998950px;}
.x16_c00159{left:563.039985px;}
.x21_c00159{left:568.079400px;}
.x35_c00159{left:573.838950px;}
.x30_c00159{left:605.159820px;}
.x17_c00159{left:610.199385px;}
.x22_c00159{left:614.518620px;}
.xb_c00159{left:637.919535px;}
.x18_c00159{left:643.319820px;}
.x23_c00159{left:645.839535px;}
.x7_c00159{left:664.919535px;}
.x36_c00159{left:669.958920px;}
.xe_c00159{left:674.279850px;}
.xf_c00159{left:688.679670px;}
.x37_c00159{left:693.359850px;}
.x13_c00159{left:695.879520px;}
.x24_c00159{left:703.079355px;}
.x14_c00159{left:715.679670px;}
.x2e_c00159{left:716.759085px;}
.x2c_c00159{left:725.399235px;}
.x3d_c00159{left:733.678530px;}
.x2d_c00159{left:739.439670px;}
.x38_c00159{left:751.319820px;}
.x32_c00159{left:754.198785px;}
.x39_c00159{left:766.439670px;}
.x33_c00159{left:770.399865px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls17_c00159{letter-spacing:-10.684333pt;}
.ls21_c00159{letter-spacing:-9.247000pt;}
.ls20_c00159{letter-spacing:-7.924000pt;}
.ls15_c00159{letter-spacing:-7.266700pt;}
.ls11_c00159{letter-spacing:-6.601000pt;}
.ls23_c00159{letter-spacing:-5.943000pt;}
.ls1d_c00159{letter-spacing:-5.607333pt;}
.lsc_c00159{letter-spacing:-5.285000pt;}
.ls22_c00159{letter-spacing:-5.095067pt;}
.lsd_c00159{letter-spacing:-4.619300pt;}
.ls1a_c00159{letter-spacing:-4.173667pt;}
.lse_c00159{letter-spacing:-3.961300pt;}
.ls14_c00159{letter-spacing:-3.812640pt;}
.ls28_c00159{letter-spacing:-3.481600pt;}
.ls1b_c00159{letter-spacing:-3.433333pt;}
.lsa_c00159{letter-spacing:-3.304000pt;}
.lsb_c00159{letter-spacing:-2.936460pt;}
.ls24_c00159{letter-spacing:-2.801600pt;}
.ls5_c00159{letter-spacing:-2.639000pt;}
.ls29_c00159{letter-spacing:-2.568133pt;}
.ls6_c00159{letter-spacing:-2.201800pt;}
.ls1f_c00159{letter-spacing:-2.186800pt;}
.ls7_c00159{letter-spacing:-1.981700pt;}
.lsf_c00159{letter-spacing:-1.911000pt;}
.ls1c_c00159{letter-spacing:-1.519333pt;}
.ls4_c00159{letter-spacing:-1.467867pt;}
.ls18_c00159{letter-spacing:-1.442000pt;}
.ls8_c00159{letter-spacing:-1.323700pt;}
.ls2_c00159{letter-spacing:-0.733933pt;}
.ls10_c00159{letter-spacing:-0.658000pt;}
.ls9_c00159{letter-spacing:0.000000pt;}
.ls12_c00159{letter-spacing:0.658000pt;}
.ls26_c00159{letter-spacing:0.733680pt;}
.ls1_c00159{letter-spacing:0.733933pt;}
.ls3_c00159{letter-spacing:0.734400pt;}
.ls27_c00159{letter-spacing:1.440707pt;}
.ls1e_c00159{letter-spacing:1.533600pt;}
.ls0_c00159{letter-spacing:1.981700pt;}
.ls13_c00159{letter-spacing:3.233520pt;}
.ls2a_c00159{letter-spacing:3.251373pt;}
.ls25_c00159{letter-spacing:3.399000pt;}
.ls16_c00159{letter-spacing:4.972867pt;}
.ls2b_c00159{letter-spacing:5.229200pt;}
.ls19_c00159{letter-spacing:13.965000pt;}
.ws0_c00159{word-spacing:0.000000pt;}
._15_c00159{margin-left:-13.457368pt;}
._9_c00159{margin-left:-9.788153pt;}
._18_c00159{margin-left:-5.847310pt;}
._b_c00159{margin-left:-4.917342pt;}
._a_c00159{margin-left:-3.923408pt;}
._0_c00159{margin-left:-1.714522pt;}
._3_c00159{width:1.264018pt;}
._c_c00159{width:2.444712pt;}
._2_c00159{width:3.516232pt;}
._7_c00159{width:4.861033pt;}
._1_c00159{width:5.908423pt;}
._6_c00159{width:7.332393pt;}
._4_c00159{width:8.328099pt;}
._5_c00159{width:9.477604pt;}
._8_c00159{width:10.753923pt;}
._1a_c00159{width:12.379046pt;}
._16_c00159{width:14.448053pt;}
._17_c00159{width:15.361505pt;}
._d_c00159{width:16.363606pt;}
._12_c00159{width:17.781374pt;}
._11_c00159{width:18.761070pt;}
._14_c00159{width:20.121751pt;}
._f_c00159{width:22.046830pt;}
._e_c00159{width:25.066974pt;}
._10_c00159{width:26.148302pt;}
._19_c00159{width:29.233625pt;}
._13_c00159{width:34.053428pt;}
.fsd_c00159{font-size:51.333333pt;}
.fs3_c00159{font-size:60.000000pt;}
.fs10_c00159{font-size:61.333333pt;}
.fse_c00159{font-size:62.666667pt;}
.fsa_c00159{font-size:63.333333pt;}
.fsf_c00159{font-size:64.000000pt;}
.fs9_c00159{font-size:64.666667pt;}
.fsc_c00159{font-size:66.666667pt;}
.fs1_c00159{font-size:68.000000pt;}
.fsb_c00159{font-size:68.666667pt;}
.fs7_c00159{font-size:69.333333pt;}
.fs2_c00159{font-size:70.000000pt;}
.fs8_c00159{font-size:70.666667pt;}
.fs4_c00159{font-size:71.333333pt;}
.fs6_c00159{font-size:72.000000pt;}
.fs0_c00159{font-size:72.666667pt;}
.fs5_c00159{font-size:73.333333pt;}
.y0_c00159{bottom:0.000000pt;}
.y2c_c00159{bottom:162.559613pt;}
.y2b_c00159{bottom:189.119440pt;}
.y29_c00159{bottom:241.920187pt;}
.y2a_c00159{bottom:241.920387pt;}
.y27_c00159{bottom:267.838640pt;}
.y28_c00159{bottom:267.839333pt;}
.y26_c00159{bottom:320.639587pt;}
.y25_c00159{bottom:347.519453pt;}
.y24_c00159{bottom:374.399453pt;}
.y23_c00159{bottom:374.400253pt;}
.y21_c00159{bottom:400.959920pt;}
.y22_c00159{bottom:400.960000pt;}
.y20_c00159{bottom:427.839840pt;}
.y1f_c00159{bottom:454.400387pt;}
.y1e_c00159{bottom:480.640133pt;}
.y1d_c00159{bottom:480.640213pt;}
.y1c_c00159{bottom:507.520147pt;}
.y1b_c00159{bottom:533.759720pt;}
.y1a_c00159{bottom:533.760520pt;}
.y18_c00159{bottom:560.320187pt;}
.y19_c00159{bottom:560.320267pt;}
.y17_c00159{bottom:587.200120pt;}
.y16_c00159{bottom:613.760947pt;}
.y14_c00159{bottom:639.999973pt;}
.y15_c00159{bottom:640.000533pt;}
.y13_c00159{bottom:667.520507pt;}
.y11_c00159{bottom:692.798867pt;}
.y12_c00159{bottom:692.799320pt;}
.yf_c00159{bottom:719.679987pt;}
.y10_c00159{bottom:719.680667pt;}
.ye_c00159{bottom:746.239747pt;}
.yd_c00159{bottom:746.239787pt;}
.yb_c00159{bottom:799.359173pt;}
.yc_c00159{bottom:799.359293pt;}
.ya_c00159{bottom:826.240973pt;}
.y8_c00159{bottom:852.480427pt;}
.y9_c00159{bottom:852.480547pt;}
.y6_c00159{bottom:879.359680pt;}
.y7_c00159{bottom:879.360347pt;}
.y5_c00159{bottom:905.919440pt;}
.y4_c00159{bottom:959.040533pt;}
.y2_c00159{bottom:985.598653pt;}
.y3_c00159{bottom:985.599613pt;}
.y1_c00159{bottom:1012.160080pt;}
.h10_c00159{height:51.734375pt;}
.h4_c00159{height:58.886719pt;}
.h15_c00159{height:60.165365pt;}
.h14_c00159{height:62.781250pt;}
.h13_c00159{height:65.359375pt;}
.hb_c00159{height:66.054688pt;}
.h2_c00159{height:66.705078pt;}
.h17_c00159{height:66.738281pt;}
.h11_c00159{height:67.359049pt;}
.h16_c00159{height:67.392578pt;}
.ha_c00159{height:67.445312pt;}
.h8_c00159{height:68.046875pt;}
.h3_c00159{height:68.701172pt;}
.hd_c00159{height:69.203125pt;}
.h9_c00159{height:69.355469pt;}
.hf_c00159{height:69.531250pt;}
.h5_c00159{height:70.009766pt;}
.hc_c00159{height:70.546875pt;}
.h12_c00159{height:70.628906pt;}
.h7_c00159{height:70.664062pt;}
.he_c00159{height:71.218750pt;}
.h1_c00159{height:71.282878pt;}
.h6_c00159{height:71.972656pt;}
.h0_c00159{height:1122.666667pt;}
.w0_c00159{width:793.333333pt;}
.x0_c00159{left:0.000000pt;}
.x8_c00159{left:126.079280pt;}
.x1_c00159{left:127.359333pt;}
.x27_c00159{left:140.799333pt;}
.x43_c00159{left:175.678667pt;}
.x19_c00159{left:192.000000pt;}
.x3a_c00159{left:200.958920pt;}
.x2_c00159{left:216.959453pt;}
.x31_c00159{left:230.078680pt;}
.x3_c00159{left:238.398920pt;}
.x12_c00159{left:252.159733pt;}
.x25_c00159{left:253.440000pt;}
.x1a_c00159{left:262.398920pt;}
.x26_c00159{left:267.199200pt;}
.x4_c00159{left:282.238787pt;}
.x9_c00159{left:293.759720pt;}
.x2f_c00159{left:300.799867pt;}
.x1b_c00159{left:301.759320pt;}
.x2a_c00159{left:308.159200pt;}
.x1c_c00159{left:318.079067pt;}
.x42_c00159{left:321.279720pt;}
.xc_c00159{left:322.558533pt;}
.x3f_c00159{left:334.719720pt;}
.xd_c00159{left:336.959453pt;}
.x2b_c00159{left:349.439987pt;}
.x5_c00159{left:358.079587pt;}
.x40_c00159{left:374.399453pt;}
.x44_c00159{left:377.919480pt;}
.x1d_c00159{left:382.719720pt;}
.x41_c00159{left:386.879840pt;}
.x28_c00159{left:391.678667pt;}
.x45_c00159{left:392.639613pt;}
.x3e_c00159{left:396.799840pt;}
.x29_c00159{left:408.319333pt;}
.x1e_c00159{left:409.918907pt;}
.xa_c00159{left:428.159173pt;}
.x1f_c00159{left:460.798787pt;}
.x10_c00159{left:463.359333pt;}
.x34_c00159{left:467.519453pt;}
.x6_c00159{left:473.919480pt;}
.x15_c00159{left:477.758787pt;}
.x11_c00159{left:478.719720pt;}
.x20_c00159{left:480.319333pt;}
.x3b_c00159{left:482.239707pt;}
.x46_c00159{left:484.158693pt;}
.x3c_c00159{left:495.999067pt;}
.x16_c00159{left:500.479987pt;}
.x21_c00159{left:504.959467pt;}
.x35_c00159{left:510.079067pt;}
.x30_c00159{left:537.919840pt;}
.x17_c00159{left:542.399453pt;}
.x22_c00159{left:546.238773pt;}
.xb_c00159{left:567.039587pt;}
.x18_c00159{left:571.839840pt;}
.x23_c00159{left:574.079587pt;}
.x7_c00159{left:591.039587pt;}
.x36_c00159{left:595.519040pt;}
.xe_c00159{left:599.359867pt;}
.xf_c00159{left:612.159707pt;}
.x37_c00159{left:616.319867pt;}
.x13_c00159{left:618.559573pt;}
.x24_c00159{left:624.959427pt;}
.x14_c00159{left:636.159707pt;}
.x2e_c00159{left:637.119187pt;}
.x2c_c00159{left:644.799320pt;}
.x3d_c00159{left:652.158693pt;}
.x2d_c00159{left:657.279707pt;}
.x38_c00159{left:667.839840pt;}
.x32_c00159{left:670.398920pt;}
.x39_c00159{left:681.279707pt;}
.x33_c00159{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9503e69f07c24126b6c632a7.woff2')format("woff");}.ff1_c00160{font-family:ff1_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:ff2_c00160;src:url('chunks/assets/font_cd5a1cbef239b11869e5a128.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_4326f727df0158799ab25711.woff2')format("woff");}.ff3_c00160{font-family:ff3_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:ff4_c00160;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_ff3d16d6083982ad73d09312.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_4d7dacec2cda6116080cb623.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00160{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls18_c00160{letter-spacing:-13.579500px;}
.ls16_c00160{letter-spacing:-10.032000px;}
.ls17_c00160{letter-spacing:-7.778888px;}
.ls1e_c00160{letter-spacing:-7.576538px;}
.lsa_c00160{letter-spacing:-6.811875px;}
.ls15_c00160{letter-spacing:-6.055875px;}
.ls23_c00160{letter-spacing:-6.051443px;}
.ls1c_c00160{letter-spacing:-5.300663px;}
.ls1b_c00160{letter-spacing:-4.862348px;}
.ls21_c00160{letter-spacing:-4.543088px;}
.ls22_c00160{letter-spacing:-4.053428px;}
.ls6_c00160{letter-spacing:-3.787875px;}
.ls1d_c00160{letter-spacing:-3.579150px;}
.ls10_c00160{letter-spacing:-3.408975px;}
.ls20_c00160{letter-spacing:-3.242903px;}
.ls7_c00160{letter-spacing:-3.031875px;}
.ls13_c00160{letter-spacing:-2.917200px;}
.ls1a_c00160{letter-spacing:-2.835075px;}
.ls1f_c00160{letter-spacing:-2.598750px;}
.lsf_c00160{letter-spacing:-2.500733px;}
.ls3_c00160{letter-spacing:-2.431575px;}
.lse_c00160{letter-spacing:-2.407500px;}
.ls5_c00160{letter-spacing:-2.267213px;}
.ls11_c00160{letter-spacing:-2.205000px;}
.ls9_c00160{letter-spacing:-1.621050px;}
.ls12_c00160{letter-spacing:-1.515465px;}
.ls8_c00160{letter-spacing:-1.512000px;}
.ls19_c00160{letter-spacing:-0.810525px;}
.ls4_c00160{letter-spacing:-0.756000px;}
.ls14_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:0.756000px;}
.lsc_c00160{letter-spacing:0.801900px;}
.ls1_c00160{letter-spacing:0.810525px;}
.lsb_c00160{letter-spacing:2.317950px;}
.ls2_c00160{letter-spacing:3.031875px;}
.lsd_c00160{letter-spacing:18.706275px;}
.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;}
._c_c00160{margin-left:-12.887801px;}
._6_c00160{margin-left:-11.151424px;}
._7_c00160{margin-left:-7.449568px;}
._1b_c00160{margin-left:-6.150738px;}
._15_c00160{margin-left:-4.724939px;}
._b_c00160{margin-left:-3.224570px;}
._8_c00160{margin-left:-1.421559px;}
._9_c00160{width:1.661686px;}
._d_c00160{width:3.110867px;}
._0_c00160{width:4.694166px;}
._11_c00160{width:6.324170px;}
._f_c00160{width:7.876393px;}
._a_c00160{width:9.200665px;}
._e_c00160{width:10.834486px;}
._3_c00160{width:12.299114px;}
._1_c00160{width:14.358851px;}
._10_c00160{width:15.854495px;}
._5_c00160{width:17.089053px;}
._12_c00160{width:18.325246px;}
._4_c00160{width:19.750863px;}
._1a_c00160{width:20.853303px;}
._2_c00160{width:22.010080px;}
._13_c00160{width:23.018443px;}
._17_c00160{width:24.859005px;}
._14_c00160{width:26.142819px;}
._23_c00160{width:27.159361px;}
._21_c00160{width:28.806447px;}
._20_c00160{width:29.916580px;}
._16_c00160{width:31.184826px;}
._18_c00160{width:32.682643px;}
._19_c00160{width:34.038173px;}
._22_c00160{width:35.274669px;}
._1d_c00160{width:38.485610px;}
._1e_c00160{width:43.116049px;}
._1c_c00160{width:45.454054px;}
._1f_c00160{width:46.662040px;}
.fc0_c00160{color:transparent;}
.fs2_c00160{font-size:76.500000px;}
.fs9_c00160{font-size:77.250000px;}
.fs6_c00160{font-size:78.000000px;}
.fs1_c00160{font-size:78.750000px;}
.fs0_c00160{font-size:80.250000px;}
.fs3_c00160{font-size:81.000000px;}
.fs5_c00160{font-size:81.750000px;}
.fs7_c00160{font-size:82.500000px;}
.fs4_c00160{font-size:83.250000px;}
.fsa_c00160{font-size:84.750000px;}
.fs8_c00160{font-size:86.250000px;}
.y0_c00160{bottom:0.000000px;}
.y30_c00160{bottom:208.440060px;}
.y2f_c00160{bottom:238.679970px;}
.y2d_c00160{bottom:268.558920px;}
.y2e_c00160{bottom:268.559685px;}
.y2c_c00160{bottom:298.438635px;}
.y2b_c00160{bottom:298.438665px;}
.y2a_c00160{bottom:327.960000px;}
.y29_c00160{bottom:357.479685px;}
.y28_c00160{bottom:357.479880px;}
.y26_c00160{bottom:386.998995px;}
.y27_c00160{bottom:386.999400px;}
.y25_c00160{bottom:416.879970px;}
.y24_c00160{bottom:416.880930px;}
.y23_c00160{bottom:447.479235px;}
.y22_c00160{bottom:447.479685px;}
.y21_c00160{bottom:507.959820px;}
.y20_c00160{bottom:537.839535px;}
.y1f_c00160{bottom:537.840150px;}
.y1e_c00160{bottom:596.878920px;}
.y1c_c00160{bottom:626.398080px;}
.y1d_c00160{bottom:626.398635px;}
.y1a_c00160{bottom:656.999160px;}
.y1b_c00160{bottom:656.999400px;}
.y19_c00160{bottom:687.239220px;}
.y18_c00160{bottom:687.239325px;}
.y16_c00160{bottom:717.478455px;}
.y17_c00160{bottom:717.479235px;}
.y15_c00160{bottom:776.879520px;}
.y14_c00160{bottom:807.119385px;}
.y13_c00160{bottom:807.120225px;}
.y12_c00160{bottom:836.999955px;}
.y11_c00160{bottom:867.239865px;}
.y10_c00160{bottom:867.240600px;}
.yf_c00160{bottom:897.838905px;}
.ye_c00160{bottom:897.839265px;}
.yd_c00160{bottom:928.439670px;}
.yc_c00160{bottom:958.500000px;}
.yb_c00160{bottom:958.500750px;}
.y9_c00160{bottom:988.199295px;}
.ya_c00160{bottom:988.199340px;}
.y8_c00160{bottom:1018.439205px;}
.y7_c00160{bottom:1018.440105px;}
.y6_c00160{bottom:1048.319820px;}
.y5_c00160{bottom:1048.320000px;}
.y4_c00160{bottom:1077.839535px;}
.y2_c00160{bottom:1108.078950px;}
.y3_c00160{bottom:1108.079400px;}
.y1_c00160{bottom:1137.959925px;}
.h3_c00160{height:75.080566px;}
.hc_c00160{height:75.816650px;}
.h9_c00160{height:76.552734px;}
.h2_c00160{height:77.288818px;}
.h1_c00160{height:78.721802px;}
.hd_c00160{height:78.760986px;}
.h8_c00160{height:79.365234px;}
.h6_c00160{height:80.876953px;}
.hf_c00160{height:80.928955px;}
.ha_c00160{height:81.533203px;}
.h4_c00160{height:81.632812px;}
.h11_c00160{height:81.705322px;}
.he_c00160{height:82.133789px;}
.h7_c00160{height:82.388672px;}
.h10_c00160{height:83.177490px;}
.h5_c00160{height:83.900391px;}
.hb_c00160{height:85.239258px;}
.h0_c00160{height:1263.000000px;}
.w0_c00160{width:892.500000px;}
.x0_c00160{left:0.000000px;}
.x2a_c00160{left:135.359850px;}
.x2f_c00160{left:136.438065px;}
.x1b_c00160{left:137.519685px;}
.x1_c00160{left:138.958350px;}
.x41_c00160{left:140.039400px;}
.x23_c00160{left:153.719100px;}
.x17_c00160{left:159.478665px;}
.x5_c00160{left:163.079400px;}
.x1d_c00160{left:171.719565px;}
.x2b_c00160{left:183.958950px;}
.x30_c00160{left:202.318800px;}
.x6_c00160{left:217.079385px;}
.x4_c00160{left:245.878950px;}
.x2_c00160{left:253.439685px;}
.x42_c00160{left:256.318800px;}
.x10_c00160{left:259.919535px;}
.x24_c00160{left:260.998950px;}
.x7_c00160{left:270.359250px;}
.x3a_c00160{left:271.799535px;}
.x43_c00160{left:279.719535px;}
.x33_c00160{left:293.399250px;}
.x1c_c00160{left:316.798515px;}
.x11_c00160{left:317.879535px;}
.x2c_c00160{left:322.559685px;}
.x31_c00160{left:335.159850px;}
.x8_c00160{left:340.558635px;}
.x13_c00160{left:347.399235px;}
.x25_c00160{left:360.358635px;}
.x1e_c00160{left:364.679700px;}
.x14_c00160{left:367.199385px;}
.x18_c00160{left:370.080000px;}
.x12_c00160{left:377.639100px;}
.x1f_c00160{left:382.319235px;}
.x9_c00160{left:386.999400px;}
.x3b_c00160{left:392.038920px;}
.x3e_c00160{left:405.000000px;}
.x26_c00160{left:408.599070px;}
.xa_c00160{left:449.278800px;}
.x2d_c00160{left:451.798515px;}
.x44_c00160{left:462.599070px;}
.x3c_c00160{left:470.519070px;}
.x34_c00160{left:472.318770px;}
.x20_c00160{left:476.278800px;}
.xe_c00160{left:482.039985px;}
.x21_c00160{left:488.878920px;}
.x27_c00160{left:490.678530px;}
.xb_c00160{left:500.399820px;}
.xf_c00160{left:503.639700px;}
.x15_c00160{left:519.838950px;}
.xc_c00160{left:524.878320px;}
.x28_c00160{left:543.239820px;}
.xd_c00160{left:560.879520px;}
.x3f_c00160{left:572.039385px;}
.x37_c00160{left:590.758530px;}
.x3d_c00160{left:626.398635px;}
.x22_c00160{left:633.959385px;}
.x29_c00160{left:654.118785px;}
.x40_c00160{left:655.199850px;}
.x45_c00160{left:659.878320px;}
.x16_c00160{left:662.759085px;}
.x46_c00160{left:675.359250px;}
.x38_c00160{left:686.519070px;}
.x2e_c00160{left:698.399235px;}
.x19_c00160{left:703.438620px;}
.x35_c00160{left:713.519070px;}
.x32_c00160{left:716.759085px;}
.x36_c00160{left:729.718545px;}
.x3_c00160{left:735.838950px;}
.x47_c00160{left:738.719520px;}
.x39_c00160{left:740.519070px;}
.x1a_c00160{left:756.000000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls18_c00160{letter-spacing:-12.070667pt;}
.ls16_c00160{letter-spacing:-8.917333pt;}
.ls17_c00160{letter-spacing:-6.914567pt;}
.ls1e_c00160{letter-spacing:-6.734700pt;}
.lsa_c00160{letter-spacing:-6.055000pt;}
.ls15_c00160{letter-spacing:-5.383000pt;}
.ls23_c00160{letter-spacing:-5.379060pt;}
.ls1c_c00160{letter-spacing:-4.711700pt;}
.ls1b_c00160{letter-spacing:-4.322087pt;}
.ls21_c00160{letter-spacing:-4.038300pt;}
.ls22_c00160{letter-spacing:-3.603047pt;}
.ls6_c00160{letter-spacing:-3.367000pt;}
.ls1d_c00160{letter-spacing:-3.181467pt;}
.ls10_c00160{letter-spacing:-3.030200pt;}
.ls20_c00160{letter-spacing:-2.882580pt;}
.ls7_c00160{letter-spacing:-2.695000pt;}
.ls13_c00160{letter-spacing:-2.593067pt;}
.ls1a_c00160{letter-spacing:-2.520067pt;}
.ls1f_c00160{letter-spacing:-2.310000pt;}
.lsf_c00160{letter-spacing:-2.222873pt;}
.ls3_c00160{letter-spacing:-2.161400pt;}
.lse_c00160{letter-spacing:-2.140000pt;}
.ls5_c00160{letter-spacing:-2.015300pt;}
.ls11_c00160{letter-spacing:-1.960000pt;}
.ls9_c00160{letter-spacing:-1.440933pt;}
.ls12_c00160{letter-spacing:-1.347080pt;}
.ls8_c00160{letter-spacing:-1.344000pt;}
.ls19_c00160{letter-spacing:-0.720467pt;}
.ls4_c00160{letter-spacing:-0.672000pt;}
.ls14_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:0.672000pt;}
.lsc_c00160{letter-spacing:0.712800pt;}
.ls1_c00160{letter-spacing:0.720467pt;}
.lsb_c00160{letter-spacing:2.060400pt;}
.ls2_c00160{letter-spacing:2.695000pt;}
.lsd_c00160{letter-spacing:16.627800pt;}
.ws0_c00160{word-spacing:0.000000pt;}
._c_c00160{margin-left:-11.455823pt;}
._6_c00160{margin-left:-9.912377pt;}
._7_c00160{margin-left:-6.621838pt;}
._1b_c00160{margin-left:-5.467323pt;}
._15_c00160{margin-left:-4.199946pt;}
._b_c00160{margin-left:-2.866285pt;}
._8_c00160{margin-left:-1.263608pt;}
._9_c00160{width:1.477054pt;}
._d_c00160{width:2.765215pt;}
._0_c00160{width:4.172592pt;}
._11_c00160{width:5.621485pt;}
._f_c00160{width:7.001238pt;}
._a_c00160{width:8.178369pt;}
._e_c00160{width:9.630654pt;}
._3_c00160{width:10.932546pt;}
._1_c00160{width:12.763423pt;}
._10_c00160{width:14.092885pt;}
._5_c00160{width:15.190269pt;}
._12_c00160{width:16.289108pt;}
._4_c00160{width:17.556323pt;}
._1a_c00160{width:18.536269pt;}
._2_c00160{width:19.564515pt;}
._13_c00160{width:20.460838pt;}
._17_c00160{width:22.096893pt;}
._14_c00160{width:23.238062pt;}
._23_c00160{width:24.141654pt;}
._21_c00160{width:25.605731pt;}
._20_c00160{width:26.592515pt;}
._16_c00160{width:27.719845pt;}
._18_c00160{width:29.051238pt;}
._19_c00160{width:30.256154pt;}
._22_c00160{width:31.355262pt;}
._1d_c00160{width:34.209431pt;}
._1e_c00160{width:38.325377pt;}
._1c_c00160{width:40.403604pt;}
._1f_c00160{width:41.477369pt;}
.fs2_c00160{font-size:68.000000pt;}
.fs9_c00160{font-size:68.666667pt;}
.fs6_c00160{font-size:69.333333pt;}
.fs1_c00160{font-size:70.000000pt;}
.fs0_c00160{font-size:71.333333pt;}
.fs3_c00160{font-size:72.000000pt;}
.fs5_c00160{font-size:72.666667pt;}
.fs7_c00160{font-size:73.333333pt;}
.fs4_c00160{font-size:74.000000pt;}
.fsa_c00160{font-size:75.333333pt;}
.fs8_c00160{font-size:76.666667pt;}
.y0_c00160{bottom:0.000000pt;}
.y30_c00160{bottom:185.280053pt;}
.y2f_c00160{bottom:212.159973pt;}
.y2d_c00160{bottom:238.719040pt;}
.y2e_c00160{bottom:238.719720pt;}
.y2c_c00160{bottom:265.278787pt;}
.y2b_c00160{bottom:265.278813pt;}
.y2a_c00160{bottom:291.520000pt;}
.y29_c00160{bottom:317.759720pt;}
.y28_c00160{bottom:317.759893pt;}
.y26_c00160{bottom:343.999107pt;}
.y27_c00160{bottom:343.999467pt;}
.y25_c00160{bottom:370.559973pt;}
.y24_c00160{bottom:370.560827pt;}
.y23_c00160{bottom:397.759320pt;}
.y22_c00160{bottom:397.759720pt;}
.y21_c00160{bottom:451.519840pt;}
.y20_c00160{bottom:478.079587pt;}
.y1f_c00160{bottom:478.080133pt;}
.y1e_c00160{bottom:530.559040pt;}
.y1c_c00160{bottom:556.798293pt;}
.y1d_c00160{bottom:556.798787pt;}
.y1a_c00160{bottom:583.999253pt;}
.y1b_c00160{bottom:583.999467pt;}
.y19_c00160{bottom:610.879307pt;}
.y18_c00160{bottom:610.879400pt;}
.y16_c00160{bottom:637.758627pt;}
.y17_c00160{bottom:637.759320pt;}
.y15_c00160{bottom:690.559573pt;}
.y14_c00160{bottom:717.439453pt;}
.y13_c00160{bottom:717.440200pt;}
.y12_c00160{bottom:743.999960pt;}
.y11_c00160{bottom:770.879880pt;}
.y10_c00160{bottom:770.880533pt;}
.yf_c00160{bottom:798.079027pt;}
.ye_c00160{bottom:798.079347pt;}
.yd_c00160{bottom:825.279707pt;}
.yc_c00160{bottom:852.000000pt;}
.yb_c00160{bottom:852.000667pt;}
.y9_c00160{bottom:878.399373pt;}
.ya_c00160{bottom:878.399413pt;}
.y8_c00160{bottom:905.279293pt;}
.y7_c00160{bottom:905.280093pt;}
.y6_c00160{bottom:931.839840pt;}
.y5_c00160{bottom:931.840000pt;}
.y4_c00160{bottom:958.079587pt;}
.y2_c00160{bottom:984.959067pt;}
.y3_c00160{bottom:984.959467pt;}
.y1_c00160{bottom:1011.519933pt;}
.h3_c00160{height:66.738281pt;}
.hc_c00160{height:67.392578pt;}
.h9_c00160{height:68.046875pt;}
.h2_c00160{height:68.701172pt;}
.h1_c00160{height:69.974935pt;}
.hd_c00160{height:70.009766pt;}
.h8_c00160{height:70.546875pt;}
.h6_c00160{height:71.890625pt;}
.hf_c00160{height:71.936849pt;}
.ha_c00160{height:72.473958pt;}
.h4_c00160{height:72.562500pt;}
.h11_c00160{height:72.626953pt;}
.he_c00160{height:73.007812pt;}
.h7_c00160{height:73.234375pt;}
.h10_c00160{height:73.935547pt;}
.h5_c00160{height:74.578125pt;}
.hb_c00160{height:75.768229pt;}
.h0_c00160{height:1122.666667pt;}
.w0_c00160{width:793.333333pt;}
.x0_c00160{left:0.000000pt;}
.x2a_c00160{left:120.319867pt;}
.x2f_c00160{left:121.278280pt;}
.x1b_c00160{left:122.239720pt;}
.x1_c00160{left:123.518533pt;}
.x41_c00160{left:124.479467pt;}
.x23_c00160{left:136.639200pt;}
.x17_c00160{left:141.758813pt;}
.x5_c00160{left:144.959467pt;}
.x1d_c00160{left:152.639613pt;}
.x2b_c00160{left:163.519067pt;}
.x30_c00160{left:179.838933pt;}
.x6_c00160{left:192.959453pt;}
.x4_c00160{left:218.559067pt;}
.x2_c00160{left:225.279720pt;}
.x42_c00160{left:227.838933pt;}
.x10_c00160{left:231.039587pt;}
.x24_c00160{left:231.999067pt;}
.x7_c00160{left:240.319333pt;}
.x3a_c00160{left:241.599587pt;}
.x43_c00160{left:248.639587pt;}
.x33_c00160{left:260.799333pt;}
.x1c_c00160{left:281.598680pt;}
.x11_c00160{left:282.559587pt;}
.x2c_c00160{left:286.719720pt;}
.x31_c00160{left:297.919867pt;}
.x8_c00160{left:302.718787pt;}
.x13_c00160{left:308.799320pt;}
.x25_c00160{left:320.318787pt;}
.x1e_c00160{left:324.159733pt;}
.x14_c00160{left:326.399453pt;}
.x18_c00160{left:328.960000pt;}
.x12_c00160{left:335.679200pt;}
.x1f_c00160{left:339.839320pt;}
.x9_c00160{left:343.999467pt;}
.x3b_c00160{left:348.479040pt;}
.x3e_c00160{left:360.000000pt;}
.x26_c00160{left:363.199173pt;}
.xa_c00160{left:399.358933pt;}
.x2d_c00160{left:401.598680pt;}
.x44_c00160{left:411.199173pt;}
.x3c_c00160{left:418.239173pt;}
.x34_c00160{left:419.838907pt;}
.x20_c00160{left:423.358933pt;}
.xe_c00160{left:428.479987pt;}
.x21_c00160{left:434.559040pt;}
.x27_c00160{left:436.158693pt;}
.xb_c00160{left:444.799840pt;}
.xf_c00160{left:447.679733pt;}
.x15_c00160{left:462.079067pt;}
.xc_c00160{left:466.558507pt;}
.x28_c00160{left:482.879840pt;}
.xd_c00160{left:498.559573pt;}
.x3f_c00160{left:508.479453pt;}
.x37_c00160{left:525.118693pt;}
.x3d_c00160{left:556.798787pt;}
.x22_c00160{left:563.519453pt;}
.x29_c00160{left:581.438920pt;}
.x40_c00160{left:582.399867pt;}
.x45_c00160{left:586.558507pt;}
.x16_c00160{left:589.119187pt;}
.x46_c00160{left:600.319333pt;}
.x38_c00160{left:610.239173pt;}
.x2e_c00160{left:620.799320pt;}
.x19_c00160{left:625.278773pt;}
.x35_c00160{left:634.239173pt;}
.x32_c00160{left:637.119187pt;}
.x36_c00160{left:648.638707pt;}
.x3_c00160{left:654.079067pt;}
.x47_c00160{left:656.639573pt;}
.x39_c00160{left:658.239173pt;}
.x1a_c00160{left:672.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_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_1d46c691632d8b9b5b0679f1.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_34dccd0b3826a3255f8d08df.woff2')format("woff");}.ff2_c00161{font-family:ff2_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;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.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_c350d47f6b7109363efe794f.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_58b70e35a53c8c3a9cab3a6e.woff2')format("woff");}.ff5_c00161{font-family:ff5_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:ff6_c00161;src:url('chunks/assets/font_340e02e9a68bd1bfa66fd02e.woff2')format("woff");}.ff6_c00161{font-family:ff6_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;}
@font-face{font-family:ff7_c00161;src:url('chunks/assets/font_d90a079b317c478fa980cf24.woff2')format("woff");}.ff7_c00161{font-family:ff7_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:ff8_c00161;src:url('chunks/assets/font_16c5eef5ee7639f160794610.woff2')format("woff");}.ff8_c00161{font-family:ff8_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;}
.m20_c00161{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m21_c00161{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.226087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226087,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m1f_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);}
.m22_c00161{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345588,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.357843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357843,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.360656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360656,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);}
.m1c_c00161{transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.409574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409574,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.419355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419355,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.453571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453571,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.493243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493243,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.546875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546875,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.568966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568966,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls2b_c00161{letter-spacing:-14.082750px;}
.ls13_c00161{letter-spacing:-13.698675px;}
.ls29_c00161{letter-spacing:-9.125250px;}
.lsb_c00161{letter-spacing:-7.426125px;}
.ls12_c00161{letter-spacing:-6.685875px;}
.lsf_c00161{letter-spacing:-5.945625px;}
.lsc_c00161{letter-spacing:-5.196713px;}
.ls2c_c00161{letter-spacing:-4.908600px;}
.ls8_c00161{letter-spacing:-4.895933px;}
.ls2d_c00161{letter-spacing:-4.456463px;}
.ls2a_c00161{letter-spacing:-4.282500px;}
.ls5_c00161{letter-spacing:-4.079250px;}
.lsd_c00161{letter-spacing:-3.717000px;}
.ls3_c00161{letter-spacing:-2.968875px;}
.ls1d_c00161{letter-spacing:-2.598142px;}
.ls4_c00161{letter-spacing:-2.447550px;}
.ls11_c00161{letter-spacing:-2.272905px;}
.ls2_c00161{letter-spacing:-2.229413px;}
.ls1b_c00161{letter-spacing:-2.068500px;}
.ls6_c00161{letter-spacing:-1.632533px;}
.ls7_c00161{letter-spacing:-1.489163px;}
.ls1e_c00161{letter-spacing:-1.338735px;}
.lse_c00161{letter-spacing:-0.815850px;}
.lsa_c00161{letter-spacing:-0.740250px;}
.ls15_c00161{letter-spacing:-0.380175px;}
.ls9_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:0.815850px;}
.ls10_c00161{letter-spacing:1.489163px;}
.ls14_c00161{letter-spacing:1.984500px;}
.ls1_c00161{letter-spacing:2.229413px;}
.ls25_c00161{letter-spacing:2.713200px;}
.ls22_c00161{letter-spacing:3.027525px;}
.ls17_c00161{letter-spacing:3.144150px;}
.ls28_c00161{letter-spacing:3.343050px;}
.ls18_c00161{letter-spacing:3.662475px;}
.ls1a_c00161{letter-spacing:3.736350px;}
.ls1c_c00161{letter-spacing:4.320000px;}
.ls1f_c00161{letter-spacing:4.431375px;}
.ls16_c00161{letter-spacing:4.535348px;}
.ls23_c00161{letter-spacing:6.914700px;}
.ls21_c00161{letter-spacing:6.968700px;}
.ls26_c00161{letter-spacing:9.599760px;}
.ls27_c00161{letter-spacing:10.560000px;}
.ls20_c00161{letter-spacing:10.931002px;}
.ls19_c00161{letter-spacing:14.798797px;}
.ls24_c00161{letter-spacing:16.406250px;}
.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;}
._22_c00161{margin-left:-19.738412px;}
._1f_c00161{margin-left:-12.036709px;}
._4_c00161{margin-left:-10.473307px;}
._c_c00161{margin-left:-8.089096px;}
._5_c00161{margin-left:-6.038253px;}
._1e_c00161{margin-left:-4.969666px;}
._b_c00161{margin-left:-3.837923px;}
._e_c00161{margin-left:-2.465246px;}
._10_c00161{margin-left:-1.415212px;}
._2_c00161{width:1.265156px;}
._9_c00161{width:2.522912px;}
._15_c00161{width:3.936846px;}
._f_c00161{width:4.969645px;}
._7_c00161{width:5.990899px;}
._d_c00161{width:7.155804px;}
._1_c00161{width:8.191085px;}
._21_c00161{width:9.278355px;}
._0_c00161{width:10.320604px;}
._a_c00161{width:11.749262px;}
._3_c00161{width:13.518819px;}
._12_c00161{width:14.694319px;}
._18_c00161{width:15.892196px;}
._11_c00161{width:18.072061px;}
._8_c00161{width:19.243692px;}
._19_c00161{width:20.778470px;}
._13_c00161{width:21.794969px;}
._6_c00161{width:23.213509px;}
._14_c00161{width:24.670711px;}
._16_c00161{width:26.295814px;}
._17_c00161{width:29.049414px;}
._20_c00161{width:30.169155px;}
._1a_c00161{width:34.656686px;}
._1c_c00161{width:52.606144px;}
._1b_c00161{width:57.022905px;}
._1d_c00161{width:61.887446px;}
.fc0_c00161{color:transparent;}
.fs14_c00161{font-size:21.750000px;}
.fs15_c00161{font-size:24.000000px;}
.fs13_c00161{font-size:25.500000px;}
.fs12_c00161{font-size:26.250000px;}
.fs6_c00161{font-size:27.000000px;}
.fs7_c00161{font-size:27.750000px;}
.fsb_c00161{font-size:28.500000px;}
.fs11_c00161{font-size:29.250000px;}
.fs10_c00161{font-size:33.750000px;}
.fsa_c00161{font-size:35.250000px;}
.fs9_c00161{font-size:38.250000px;}
.fs8_c00161{font-size:42.750000px;}
.fse_c00161{font-size:45.750000px;}
.fsf_c00161{font-size:46.500000px;}
.fsc_c00161{font-size:52.500000px;}
.fsd_c00161{font-size:54.000000px;}
.fs17_c00161{font-size:75.000000px;}
.fs18_c00161{font-size:75.750000px;}
.fs0_c00161{font-size:78.750000px;}
.fs3_c00161{font-size:79.500000px;}
.fs2_c00161{font-size:80.250000px;}
.fs5_c00161{font-size:82.500000px;}
.fs1_c00161{font-size:83.250000px;}
.fs16_c00161{font-size:86.250000px;}
.fs4_c00161{font-size:115.500000px;}
.y0_c00161{bottom:0.000000px;}
.y2a_c00161{bottom:268.200375px;}
.y29_c00161{bottom:297.359415px;}
.y28_c00161{bottom:326.878950px;}
.y27_c00161{bottom:356.400285px;}
.y26_c00161{bottom:416.519070px;}
.y25_c00161{bottom:416.519160px;}
.y24_c00161{bottom:446.759085px;}
.y23_c00161{bottom:477.359850px;}
.y22_c00161{bottom:477.359910px;}
.y20_c00161{bottom:507.239655px;}
.y21_c00161{bottom:507.240420px;}
.y1f_c00161{bottom:537.119385px;}
.y1e_c00161{bottom:537.119565px;}
.y1c_c00161{bottom:566.639070px;}
.y1d_c00161{bottom:566.639100px;}
.y1b_c00161{bottom:596.160420px;}
.y1a_c00161{bottom:596.161245px;}
.y19_c00161{bottom:626.759535px;}
.y18_c00161{bottom:626.759715px;}
.y17_c00161{bottom:656.279250px;}
.y16_c00161{bottom:656.279325px;}
.y14_c00161{bottom:686.159205px;}
.y15_c00161{bottom:686.159820px;}
.y13_c00161{bottom:716.399820px;}
.y12_c00161{bottom:747.000600px;}
.y11_c00161{bottom:753.119385px;}
.y10_c00161{bottom:777.239655px;}
.yf_c00161{bottom:807.119385px;}
.ye_c00161{bottom:807.120225px;}
.yd_c00161{bottom:867.239865px;}
.yb_c00161{bottom:926.640060px;}
.yc_c00161{bottom:926.640105px;}
.ya_c00161{bottom:956.879970px;}
.y9_c00161{bottom:956.880150px;}
.y8_c00161{bottom:986.399685px;}
.y7_c00161{bottom:1016.639610px;}
.y6_c00161{bottom:1046.879520px;}
.y5_c00161{bottom:1046.880405px;}
.y4_c00161{bottom:1076.760135px;}
.y3_c00161{bottom:1106.639100px;}
.y2_c00161{bottom:1106.639220px;}
.y1_c00161{bottom:1136.519715px;}
.h17_c00161{height:22.684570px;}
.h19_c00161{height:23.542969px;}
.h16_c00161{height:25.014404px;}
.h18_c00161{height:25.031250px;}
.h15_c00161{height:25.750122px;}
.h1a_c00161{height:26.595703px;}
.h8_c00161{height:28.160156px;}
.h14_c00161{height:28.692993px;}
.h9_c00161{height:28.942383px;}
.hd_c00161{height:29.724609px;}
.h13_c00161{height:30.506836px;}
.h12_c00161{height:33.354492px;}
.hc_c00161{height:36.764648px;}
.hb_c00161{height:37.521606px;}
.ha_c00161{height:41.935913px;}
.h11_c00161{height:46.863281px;}
.h10_c00161{height:47.715820px;}
.hf_c00161{height:52.971680px;}
.he_c00161{height:54.755859px;}
.h1c_c00161{height:73.608398px;}
.h1e_c00161{height:74.344482px;}
.h1_c00161{height:77.288818px;}
.h4_c00161{height:78.024902px;}
.h3_c00161{height:78.760986px;}
.h7_c00161{height:79.309570px;}
.h6_c00161{height:80.969238px;}
.h1d_c00161{height:81.533203px;}
.h2_c00161{height:81.664673px;}
.h1b_c00161{height:84.607544px;}
.h5_c00161{height:120.462891px;}
.h0_c00161{height:1263.000000px;}
.w0_c00161{width:892.500000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:135.718500px;}
.xa_c00161{left:136.799565px;}
.x44_c00161{left:137.881455px;}
.x40_c00161{left:161.639100px;}
.x43_c00161{left:166.319250px;}
.x1a_c00161{left:179.639700px;}
.x33_c00161{left:191.158785px;}
.xd_c00161{left:192.239850px;}
.xe_c00161{left:206.998950px;}
.x2b_c00161{left:212.399250px;}
.x5_c00161{left:229.679700px;}
.x31_c00161{left:235.798515px;}
.x37_c00161{left:238.679100px;}
.x34_c00161{left:246.239850px;}
.x22_c00161{left:252.719535px;}
.x1b_c00161{left:255.239250px;}
.x23_c00161{left:263.518635px;}
.x11_c00161{left:270.000000px;}
.x2c_c00161{left:275.039385px;}
.x24_c00161{left:279.719535px;}
.x13_c00161{left:312.838515px;}
.x12_c00161{left:321.839535px;}
.x1c_c00161{left:338.759100px;}
.x6_c00161{left:364.679700px;}
.x38_c00161{left:373.319850px;}
.x25_c00161{left:375.119385px;}
.xb_c00161{left:380.878950px;}
.x42_c00161{left:392.759085px;}
.xc_c00161{left:396.719100px;}
.x1d_c00161{left:410.398635px;}
.x3a_c00161{left:412.559100px;}
.x2d_c00161{left:418.679670px;}
.x3b_c00161{left:431.279850px;}
.x3e_c00161{left:449.278800px;}
.x14_c00161{left:452.879520px;}
.x2_c00161{left:453.958920px;}
.x3f_c00161{left:462.239820px;}
.x26_c00161{left:486.718500px;}
.x16_c00161{left:488.158770px;}
.x1e_c00161{left:489.239820px;}
.x2e_c00161{left:498.239220px;}
.x17_c00161{left:505.080000px;}
.x15_c00161{left:530.639700px;}
.x7_c00161{left:542.158770px;}
.x27_c00161{left:543.599070px;}
.x1f_c00161{left:546.118785px;}
.x41_c00161{left:564.119385px;}
.x18_c00161{left:569.158770px;}
.xf_c00161{left:573.838950px;}
.x39_c00161{left:583.199385px;}
.x3c_c00161{left:589.319820px;}
.x19_c00161{left:591.839535px;}
.x28_c00161{left:603.719520px;}
.x8_c00161{left:608.759085px;}
.x9_c00161{left:623.519670px;}
.x20_c00161{left:630.719520px;}
.x3_c00161{left:647.639100px;}
.x2f_c00161{left:654.479685px;}
.x35_c00161{left:666.719100px;}
.x36_c00161{left:684.719520px;}
.x29_c00161{left:696.599670px;}
.x21_c00161{left:698.399235px;}
.x3d_c00161{left:700.198785px;}
.x10_c00161{left:715.679670px;}
.x32_c00161{left:722.879520px;}
.x4_c00161{left:732.239820px;}
.x30_c00161{left:734.039385px;}
.x2a_c00161{left:745.558635px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls2b_c00161{letter-spacing:-12.518000pt;}
.ls13_c00161{letter-spacing:-12.176600pt;}
.ls29_c00161{letter-spacing:-8.111333pt;}
.lsb_c00161{letter-spacing:-6.601000pt;}
.ls12_c00161{letter-spacing:-5.943000pt;}
.lsf_c00161{letter-spacing:-5.285000pt;}
.lsc_c00161{letter-spacing:-4.619300pt;}
.ls2c_c00161{letter-spacing:-4.363200pt;}
.ls8_c00161{letter-spacing:-4.351940pt;}
.ls2d_c00161{letter-spacing:-3.961300pt;}
.ls2a_c00161{letter-spacing:-3.806667pt;}
.ls5_c00161{letter-spacing:-3.626000pt;}
.lsd_c00161{letter-spacing:-3.304000pt;}
.ls3_c00161{letter-spacing:-2.639000pt;}
.ls1d_c00161{letter-spacing:-2.309460pt;}
.ls4_c00161{letter-spacing:-2.175600pt;}
.ls11_c00161{letter-spacing:-2.020360pt;}
.ls2_c00161{letter-spacing:-1.981700pt;}
.ls1b_c00161{letter-spacing:-1.838667pt;}
.ls6_c00161{letter-spacing:-1.451140pt;}
.ls7_c00161{letter-spacing:-1.323700pt;}
.ls1e_c00161{letter-spacing:-1.189987pt;}
.lse_c00161{letter-spacing:-0.725200pt;}
.lsa_c00161{letter-spacing:-0.658000pt;}
.ls15_c00161{letter-spacing:-0.337933pt;}
.ls9_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:0.725200pt;}
.ls10_c00161{letter-spacing:1.323700pt;}
.ls14_c00161{letter-spacing:1.764000pt;}
.ls1_c00161{letter-spacing:1.981700pt;}
.ls25_c00161{letter-spacing:2.411733pt;}
.ls22_c00161{letter-spacing:2.691133pt;}
.ls17_c00161{letter-spacing:2.794800pt;}
.ls28_c00161{letter-spacing:2.971600pt;}
.ls18_c00161{letter-spacing:3.255533pt;}
.ls1a_c00161{letter-spacing:3.321200pt;}
.ls1c_c00161{letter-spacing:3.840000pt;}
.ls1f_c00161{letter-spacing:3.939000pt;}
.ls16_c00161{letter-spacing:4.031420pt;}
.ls23_c00161{letter-spacing:6.146400pt;}
.ls21_c00161{letter-spacing:6.194400pt;}
.ls26_c00161{letter-spacing:8.533120pt;}
.ls27_c00161{letter-spacing:9.386667pt;}
.ls20_c00161{letter-spacing:9.716447pt;}
.ls19_c00161{letter-spacing:13.154487pt;}
.ls24_c00161{letter-spacing:14.583333pt;}
.ws0_c00161{word-spacing:0.000000pt;}
._22_c00161{margin-left:-17.545255pt;}
._1f_c00161{margin-left:-10.699297pt;}
._4_c00161{margin-left:-9.309606pt;}
._c_c00161{margin-left:-7.190308pt;}
._5_c00161{margin-left:-5.367336pt;}
._1e_c00161{margin-left:-4.417481pt;}
._b_c00161{margin-left:-3.411487pt;}
._e_c00161{margin-left:-2.191330pt;}
._10_c00161{margin-left:-1.257966pt;}
._2_c00161{width:1.124583pt;}
._9_c00161{width:2.242589pt;}
._15_c00161{width:3.499419pt;}
._f_c00161{width:4.417462pt;}
._7_c00161{width:5.325243pt;}
._d_c00161{width:6.360715pt;}
._1_c00161{width:7.280964pt;}
._21_c00161{width:8.247426pt;}
._0_c00161{width:9.173870pt;}
._a_c00161{width:10.443789pt;}
._3_c00161{width:12.016728pt;}
._12_c00161{width:13.061617pt;}
._18_c00161{width:14.126396pt;}
._11_c00161{width:16.064054pt;}
._8_c00161{width:17.105504pt;}
._19_c00161{width:18.469751pt;}
._13_c00161{width:19.373306pt;}
._6_c00161{width:20.634230pt;}
._14_c00161{width:21.929521pt;}
._16_c00161{width:23.374057pt;}
._17_c00161{width:25.821701pt;}
._20_c00161{width:26.817026pt;}
._1a_c00161{width:30.805943pt;}
._1c_c00161{width:46.761017pt;}
._1b_c00161{width:50.687026pt;}
._1d_c00161{width:55.011063pt;}
.fs14_c00161{font-size:19.333333pt;}
.fs15_c00161{font-size:21.333333pt;}
.fs13_c00161{font-size:22.666667pt;}
.fs12_c00161{font-size:23.333333pt;}
.fs6_c00161{font-size:24.000000pt;}
.fs7_c00161{font-size:24.666667pt;}
.fsb_c00161{font-size:25.333333pt;}
.fs11_c00161{font-size:26.000000pt;}
.fs10_c00161{font-size:30.000000pt;}
.fsa_c00161{font-size:31.333333pt;}
.fs9_c00161{font-size:34.000000pt;}
.fs8_c00161{font-size:38.000000pt;}
.fse_c00161{font-size:40.666667pt;}
.fsf_c00161{font-size:41.333333pt;}
.fsc_c00161{font-size:46.666667pt;}
.fsd_c00161{font-size:48.000000pt;}
.fs17_c00161{font-size:66.666667pt;}
.fs18_c00161{font-size:67.333333pt;}
.fs0_c00161{font-size:70.000000pt;}
.fs3_c00161{font-size:70.666667pt;}
.fs2_c00161{font-size:71.333333pt;}
.fs5_c00161{font-size:73.333333pt;}
.fs1_c00161{font-size:74.000000pt;}
.fs16_c00161{font-size:76.666667pt;}
.fs4_c00161{font-size:102.666667pt;}
.y0_c00161{bottom:0.000000pt;}
.y2a_c00161{bottom:238.400333pt;}
.y29_c00161{bottom:264.319480pt;}
.y28_c00161{bottom:290.559067pt;}
.y27_c00161{bottom:316.800253pt;}
.y26_c00161{bottom:370.239173pt;}
.y25_c00161{bottom:370.239253pt;}
.y24_c00161{bottom:397.119187pt;}
.y23_c00161{bottom:424.319867pt;}
.y22_c00161{bottom:424.319920pt;}
.y20_c00161{bottom:450.879693pt;}
.y21_c00161{bottom:450.880373pt;}
.y1f_c00161{bottom:477.439453pt;}
.y1e_c00161{bottom:477.439613pt;}
.y1c_c00161{bottom:503.679173pt;}
.y1d_c00161{bottom:503.679200pt;}
.y1b_c00161{bottom:529.920373pt;}
.y1a_c00161{bottom:529.921107pt;}
.y19_c00161{bottom:557.119587pt;}
.y18_c00161{bottom:557.119747pt;}
.y17_c00161{bottom:583.359333pt;}
.y16_c00161{bottom:583.359400pt;}
.y14_c00161{bottom:609.919293pt;}
.y15_c00161{bottom:609.919840pt;}
.y13_c00161{bottom:636.799840pt;}
.y12_c00161{bottom:664.000533pt;}
.y11_c00161{bottom:669.439453pt;}
.y10_c00161{bottom:690.879693pt;}
.yf_c00161{bottom:717.439453pt;}
.ye_c00161{bottom:717.440200pt;}
.yd_c00161{bottom:770.879880pt;}
.yb_c00161{bottom:823.680053pt;}
.yc_c00161{bottom:823.680093pt;}
.ya_c00161{bottom:850.559973pt;}
.y9_c00161{bottom:850.560133pt;}
.y8_c00161{bottom:876.799720pt;}
.y7_c00161{bottom:903.679653pt;}
.y6_c00161{bottom:930.559573pt;}
.y5_c00161{bottom:930.560360pt;}
.y4_c00161{bottom:957.120120pt;}
.y3_c00161{bottom:983.679200pt;}
.y2_c00161{bottom:983.679307pt;}
.y1_c00161{bottom:1010.239747pt;}
.h17_c00161{height:20.164062pt;}
.h19_c00161{height:20.927083pt;}
.h16_c00161{height:22.235026pt;}
.h18_c00161{height:22.250000pt;}
.h15_c00161{height:22.888997pt;}
.h1a_c00161{height:23.640625pt;}
.h8_c00161{height:25.031250pt;}
.h14_c00161{height:25.504883pt;}
.h9_c00161{height:25.726562pt;}
.hd_c00161{height:26.421875pt;}
.h13_c00161{height:27.117188pt;}
.h12_c00161{height:29.648437pt;}
.hc_c00161{height:32.679688pt;}
.hb_c00161{height:33.352539pt;}
.ha_c00161{height:37.276367pt;}
.h11_c00161{height:41.656250pt;}
.h10_c00161{height:42.414062pt;}
.hf_c00161{height:47.085938pt;}
.he_c00161{height:48.671875pt;}
.h1c_c00161{height:65.429688pt;}
.h1e_c00161{height:66.083984pt;}
.h1_c00161{height:68.701172pt;}
.h4_c00161{height:69.355469pt;}
.h3_c00161{height:70.009766pt;}
.h7_c00161{height:70.497396pt;}
.h6_c00161{height:71.972656pt;}
.h1d_c00161{height:72.473958pt;}
.h2_c00161{height:72.590820pt;}
.h1b_c00161{height:75.206706pt;}
.h5_c00161{height:107.078125pt;}
.h0_c00161{height:1122.666667pt;}
.w0_c00161{width:793.333333pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:120.638667pt;}
.xa_c00161{left:121.599613pt;}
.x44_c00161{left:122.561293pt;}
.x40_c00161{left:143.679200pt;}
.x43_c00161{left:147.839333pt;}
.x1a_c00161{left:159.679733pt;}
.x33_c00161{left:169.918920pt;}
.xd_c00161{left:170.879867pt;}
.xe_c00161{left:183.999067pt;}
.x2b_c00161{left:188.799333pt;}
.x5_c00161{left:204.159733pt;}
.x31_c00161{left:209.598680pt;}
.x37_c00161{left:212.159200pt;}
.x34_c00161{left:218.879867pt;}
.x22_c00161{left:224.639587pt;}
.x1b_c00161{left:226.879333pt;}
.x23_c00161{left:234.238787pt;}
.x11_c00161{left:240.000000pt;}
.x2c_c00161{left:244.479453pt;}
.x24_c00161{left:248.639587pt;}
.x13_c00161{left:278.078680pt;}
.x12_c00161{left:286.079587pt;}
.x1c_c00161{left:301.119200pt;}
.x6_c00161{left:324.159733pt;}
.x38_c00161{left:331.839867pt;}
.x25_c00161{left:333.439453pt;}
.xb_c00161{left:338.559067pt;}
.x42_c00161{left:349.119187pt;}
.xc_c00161{left:352.639200pt;}
.x1d_c00161{left:364.798787pt;}
.x3a_c00161{left:366.719200pt;}
.x2d_c00161{left:372.159707pt;}
.x3b_c00161{left:383.359867pt;}
.x3e_c00161{left:399.358933pt;}
.x14_c00161{left:402.559573pt;}
.x2_c00161{left:403.519040pt;}
.x3f_c00161{left:410.879840pt;}
.x26_c00161{left:432.638667pt;}
.x16_c00161{left:433.918907pt;}
.x1e_c00161{left:434.879840pt;}
.x2e_c00161{left:442.879307pt;}
.x17_c00161{left:448.960000pt;}
.x15_c00161{left:471.679733pt;}
.x7_c00161{left:481.918907pt;}
.x27_c00161{left:483.199173pt;}
.x1f_c00161{left:485.438920pt;}
.x41_c00161{left:501.439453pt;}
.x18_c00161{left:505.918907pt;}
.xf_c00161{left:510.079067pt;}
.x39_c00161{left:518.399453pt;}
.x3c_c00161{left:523.839840pt;}
.x19_c00161{left:526.079587pt;}
.x28_c00161{left:536.639573pt;}
.x8_c00161{left:541.119187pt;}
.x9_c00161{left:554.239707pt;}
.x20_c00161{left:560.639573pt;}
.x3_c00161{left:575.679200pt;}
.x2f_c00161{left:581.759720pt;}
.x35_c00161{left:592.639200pt;}
.x36_c00161{left:608.639573pt;}
.x29_c00161{left:619.199707pt;}
.x21_c00161{left:620.799320pt;}
.x3d_c00161{left:622.398920pt;}
.x10_c00161{left:636.159707pt;}
.x32_c00161{left:642.559573pt;}
.x4_c00161{left:650.879840pt;}
.x30_c00161{left:652.479453pt;}
.x2a_c00161{left:662.718787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f85751978e719451894b6042.woff2')format("woff");}.ff1_c00162{font-family:ff1_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:ff2_c00162;src:url('chunks/assets/font_25abfaabe8c861dec6edb137.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_ffbdb89c31eff624fe6cdf06.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_f6e7fa1e02d10e75f06930e1.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_4811eb99c3c0b1c6876e5c9f.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00162;src:url('chunks/assets/font_7cd868bb1d7c6cb93445d155.woff2')format("woff");}.ff6_c00162{font-family:ff6_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:ff7_c00162;src:url('chunks/assets/font_9ab588188886e27d1cadc868.woff2')format("woff");}.ff7_c00162{font-family:ff7_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00162;src:url('chunks/assets/font_4ccd327f89010e889bb4ebcd.woff2')format("woff");}.ff8_c00162{font-family:ff8_c00162;line-height:1.364746;font-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_c00162{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.201531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201531,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.218447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218447,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.me_c00162{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m0_c00162{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m16_c00162{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433673,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls21_c00162{letter-spacing:-17.658420px;}
.ls24_c00162{letter-spacing:-16.776000px;}
.ls29_c00162{letter-spacing:-11.155500px;}
.ls13_c00162{letter-spacing:-8.175038px;}
.lsf_c00162{letter-spacing:-7.426125px;}
.ls8_c00162{letter-spacing:-6.791850px;}
.lsd_c00162{letter-spacing:-5.945625px;}
.lse_c00162{letter-spacing:-5.196713px;}
.ls18_c00162{letter-spacing:-4.722300px;}
.ls6_c00162{letter-spacing:-4.456463px;}
.ls12_c00162{letter-spacing:-4.053428px;}
.lsc_c00162{letter-spacing:-3.717000px;}
.ls1e_c00162{letter-spacing:-3.242903px;}
.ls22_c00162{letter-spacing:-3.145800px;}
.ls23_c00162{letter-spacing:-3.001350px;}
.ls3_c00162{letter-spacing:-2.968875px;}
.ls1f_c00162{letter-spacing:-2.945175px;}
.ls14_c00162{letter-spacing:-2.820375px;}
.lsb_c00162{letter-spacing:-2.431575px;}
.ls17_c00162{letter-spacing:-2.331000px;}
.ls1c_c00162{letter-spacing:-2.268000px;}
.ls4_c00162{letter-spacing:-2.229413px;}
.ls7_c00162{letter-spacing:-1.621050px;}
.ls5_c00162{letter-spacing:-1.489163px;}
.ls1d_c00162{letter-spacing:-0.810525px;}
.ls25_c00162{letter-spacing:-0.742350px;}
.ls10_c00162{letter-spacing:-0.740250px;}
.ls9_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.740250px;}
.ls2_c00162{letter-spacing:0.811125px;}
.ls19_c00162{letter-spacing:0.867300px;}
.ls27_c00162{letter-spacing:1.622250px;}
.lsa_c00162{letter-spacing:1.722015px;}
.ls11_c00162{letter-spacing:1.810463px;}
.ls28_c00162{letter-spacing:2.357100px;}
.ls2a_c00162{letter-spacing:2.363850px;}
.ls1_c00162{letter-spacing:3.242903px;}
.ls2b_c00162{letter-spacing:3.583125px;}
.ls1b_c00162{letter-spacing:4.968000px;}
.ls1a_c00162{letter-spacing:5.250180px;}
.ls20_c00162{letter-spacing:9.270450px;}
.ls26_c00162{letter-spacing:11.135250px;}
.ls15_c00162{letter-spacing:17.399250px;}
.ls16_c00162{letter-spacing:18.879900px;}
.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;}
._1a_c00162{margin-left:-12.946143px;}
._1b_c00162{margin-left:-7.113918px;}
._18_c00162{margin-left:-2.197303px;}
._10_c00162{margin-left:-1.012874px;}
._11_c00162{width:1.459698px;}
._d_c00162{width:3.147489px;}
._0_c00162{width:4.606697px;}
._f_c00162{width:6.225886px;}
._e_c00162{width:7.563091px;}
._8_c00162{width:8.586543px;}
._a_c00162{width:9.867018px;}
._b_c00162{width:11.341040px;}
._9_c00162{width:12.545083px;}
._6_c00162{width:13.797089px;}
._12_c00162{width:14.913616px;}
._13_c00162{width:16.024719px;}
._c_c00162{width:18.510767px;}
._14_c00162{width:20.466427px;}
._7_c00162{width:21.640351px;}
._15_c00162{width:23.147834px;}
._16_c00162{width:25.129214px;}
._19_c00162{width:26.444800px;}
._2_c00162{width:28.161609px;}
._1d_c00162{width:29.949294px;}
._3_c00162{width:31.260570px;}
._1c_c00162{width:32.809330px;}
._1_c00162{width:33.956643px;}
._5_c00162{width:35.246316px;}
._4_c00162{width:36.558870px;}
._17_c00162{width:41.441088px;}
.fc0_c00162{color:transparent;}
.fsf_c00162{font-size:60.000000px;}
.fs2_c00162{font-size:64.500000px;}
.fs8_c00162{font-size:71.250000px;}
.fsc_c00162{font-size:72.000000px;}
.fs3_c00162{font-size:73.500000px;}
.fs4_c00162{font-size:76.500000px;}
.fs9_c00162{font-size:77.250000px;}
.fs5_c00162{font-size:78.000000px;}
.fs0_c00162{font-size:78.750000px;}
.fsb_c00162{font-size:79.500000px;}
.fs1_c00162{font-size:80.250000px;}
.fsd_c00162{font-size:81.000000px;}
.fs7_c00162{font-size:81.750000px;}
.fs6_c00162{font-size:82.500000px;}
.fsa_c00162{font-size:83.250000px;}
.fse_c00162{font-size:101.250000px;}
.fs10_c00162{font-size:115.500000px;}
.y0_c00162{bottom:0.000000px;}
.y28_c00162{bottom:183.600750px;}
.y27_c00162{bottom:213.120270px;}
.y25_c00162{bottom:242.999220px;}
.y26_c00162{bottom:243.000000px;}
.y24_c00162{bottom:272.878950px;}
.y23_c00162{bottom:302.759655px;}
.y22_c00162{bottom:362.519100px;}
.y21_c00162{bottom:362.519880px;}
.y20_c00162{bottom:383.400285px;}
.y1f_c00162{bottom:383.400300px;}
.y1e_c00162{bottom:404.639100px;}
.y1d_c00162{bottom:425.879520px;}
.y1b_c00162{bottom:447.478815px;}
.y1c_c00162{bottom:447.479235px;}
.y1a_c00162{bottom:507.958950px;}
.y19_c00162{bottom:537.480285px;}
.y18_c00162{bottom:656.279250px;}
.y17_c00162{bottom:656.279565px;}
.y15_c00162{bottom:686.879355px;}
.y16_c00162{bottom:686.879970px;}
.y14_c00162{bottom:716.759085px;}
.y13_c00162{bottom:746.998950px;}
.y12_c00162{bottom:776.879520px;}
.y11_c00162{bottom:807.839535px;}
.y10_c00162{bottom:838.079400px;}
.yf_c00162{bottom:838.079595px;}
.ye_c00162{bottom:867.599115px;}
.yd_c00162{bottom:867.599880px;}
.yc_c00162{bottom:897.479595px;}
.yb_c00162{bottom:927.719520px;}
.ya_c00162{bottom:957.959385px;}
.y9_c00162{bottom:957.960360px;}
.y8_c00162{bottom:987.840090px;}
.y7_c00162{bottom:987.840270px;}
.y5_c00162{bottom:1017.359040px;}
.y6_c00162{bottom:1017.359805px;}
.y4_c00162{bottom:1047.238770px;}
.y2_c00162{bottom:1077.118905px;}
.y3_c00162{bottom:1077.119385px;}
.y1_c00162{bottom:1137.599025px;}
.h14_c00162{height:59.296875px;}
.h3_c00162{height:67.271484px;}
.ha_c00162{height:74.311523px;}
.h5_c00162{height:75.043213px;}
.h17_c00162{height:75.080566px;}
.hf_c00162{height:75.093750px;}
.hb_c00162{height:75.778931px;}
.h6_c00162{height:76.552734px;}
.h4_c00162{height:76.658203px;}
.h1_c00162{height:77.288818px;}
.hd_c00162{height:77.853516px;}
.h2_c00162{height:78.721802px;}
.h7_c00162{height:78.760986px;}
.h10_c00162{height:79.497070px;}
.he_c00162{height:80.121094px;}
.h9_c00162{height:80.233154px;}
.h13_c00162{height:80.876953px;}
.h8_c00162{height:80.969238px;}
.hc_c00162{height:81.664673px;}
.h15_c00162{height:82.274414px;}
.h11_c00162{height:82.388672px;}
.h12_c00162{height:105.600586px;}
.h16_c00162{height:120.462891px;}
.h0_c00162{height:1263.000000px;}
.w0_c00162{width:892.500000px;}
.x0_c00162{left:0.000000px;}
.x7_c00162{left:133.559685px;}
.x10_c00162{left:135.000000px;}
.x9_c00162{left:136.799280px;}
.x1_c00162{left:137.878950px;}
.x40_c00162{left:147.959400px;}
.x18_c00162{left:153.719100px;}
.x2b_c00162{left:174.598500px;}
.x30_c00162{left:189.718500px;}
.x2c_c00162{left:190.800615px;}
.x16_c00162{left:197.638500px;}
.x17_c00162{left:212.399250px;}
.x27_c00162{left:214.198785px;}
.x14_c00162{left:216.359250px;}
.x11_c00162{left:221.759535px;}
.x8_c00162{left:231.120000px;}
.x15_c00162{left:234.359850px;}
.x1c_c00162{left:248.398635px;}
.x31_c00162{left:260.998950px;}
.x32_c00162{left:271.438635px;}
.x3a_c00162{left:282.959400px;}
.x1a_c00162{left:285.838515px;}
.x1d_c00162{left:294.839535px;}
.x3b_c00162{left:298.438635px;}
.x23_c00162{left:363.239250px;}
.x33_c00162{left:367.558635px;}
.x1e_c00162{left:381.958350px;}
.x34_c00162{left:388.798920px;}
.x35_c00162{left:408.239820px;}
.x1f_c00162{left:431.279850px;}
.x12_c00162{left:439.559100px;}
.x13_c00162{left:454.319820px;}
.x1b_c00162{left:460.079400px;}
.xc_c00162{left:469.439670px;}
.xa_c00162{left:482.399235px;}
.xd_c00162{left:483.478635px;}
.x28_c00162{left:487.438665px;}
.x29_c00162{left:501.479235px;}
.xb_c00162{left:503.639700px;}
.x41_c00162{left:506.518620px;}
.x20_c00162{left:516.599070px;}
.x2_c00162{left:532.798515px;}
.x42_c00162{left:539.639100px;}
.x2d_c00162{left:544.319235px;}
.x3e_c00162{left:551.878320px;}
.x36_c00162{left:558.359850px;}
.x25_c00162{left:559.439250px;}
.x2e_c00162{left:560.879520px;}
.x37_c00162{left:573.118785px;}
.x3f_c00162{left:584.278800px;}
.x21_c00162{left:600.838950px;}
.x3_c00162{left:610.919535px;}
.x19_c00162{left:627.479685px;}
.x4_c00162{left:645.119385px;}
.x2a_c00162{left:654.118785px;}
.x38_c00162{left:656.999400px;}
.xe_c00162{left:663.838530px;}
.x22_c00162{left:670.679070px;}
.x3c_c00162{left:675.000000px;}
.x3d_c00162{left:686.159820px;}
.x39_c00162{left:717.479235px;}
.x26_c00162{left:721.439205px;}
.x24_c00162{left:732.599070px;}
.x5_c00162{left:740.159820px;}
.x6_c00162{left:760.678530px;}
.x2f_c00162{left:767.159820px;}
.xf_c00162{left:768.959385px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls21_c00162{letter-spacing:-15.696373pt;}
.ls24_c00162{letter-spacing:-14.912000pt;}
.ls29_c00162{letter-spacing:-9.916000pt;}
.ls13_c00162{letter-spacing:-7.266700pt;}
.lsf_c00162{letter-spacing:-6.601000pt;}
.ls8_c00162{letter-spacing:-6.037200pt;}
.lsd_c00162{letter-spacing:-5.285000pt;}
.lse_c00162{letter-spacing:-4.619300pt;}
.ls18_c00162{letter-spacing:-4.197600pt;}
.ls6_c00162{letter-spacing:-3.961300pt;}
.ls12_c00162{letter-spacing:-3.603047pt;}
.lsc_c00162{letter-spacing:-3.304000pt;}
.ls1e_c00162{letter-spacing:-2.882580pt;}
.ls22_c00162{letter-spacing:-2.796267pt;}
.ls23_c00162{letter-spacing:-2.667867pt;}
.ls3_c00162{letter-spacing:-2.639000pt;}
.ls1f_c00162{letter-spacing:-2.617933pt;}
.ls14_c00162{letter-spacing:-2.507000pt;}
.lsb_c00162{letter-spacing:-2.161400pt;}
.ls17_c00162{letter-spacing:-2.072000pt;}
.ls1c_c00162{letter-spacing:-2.016000pt;}
.ls4_c00162{letter-spacing:-1.981700pt;}
.ls7_c00162{letter-spacing:-1.440933pt;}
.ls5_c00162{letter-spacing:-1.323700pt;}
.ls1d_c00162{letter-spacing:-0.720467pt;}
.ls25_c00162{letter-spacing:-0.659867pt;}
.ls10_c00162{letter-spacing:-0.658000pt;}
.ls9_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.658000pt;}
.ls2_c00162{letter-spacing:0.721000pt;}
.ls19_c00162{letter-spacing:0.770933pt;}
.ls27_c00162{letter-spacing:1.442000pt;}
.lsa_c00162{letter-spacing:1.530680pt;}
.ls11_c00162{letter-spacing:1.609300pt;}
.ls28_c00162{letter-spacing:2.095200pt;}
.ls2a_c00162{letter-spacing:2.101200pt;}
.ls1_c00162{letter-spacing:2.882580pt;}
.ls2b_c00162{letter-spacing:3.185000pt;}
.ls1b_c00162{letter-spacing:4.416000pt;}
.ls1a_c00162{letter-spacing:4.666827pt;}
.ls20_c00162{letter-spacing:8.240400pt;}
.ls26_c00162{letter-spacing:9.898000pt;}
.ls15_c00162{letter-spacing:15.466000pt;}
.ls16_c00162{letter-spacing:16.782133pt;}
.ws0_c00162{word-spacing:0.000000pt;}
._1a_c00162{margin-left:-11.507683pt;}
._1b_c00162{margin-left:-6.323483pt;}
._18_c00162{margin-left:-1.953158pt;}
._10_c00162{margin-left:-0.900332pt;}
._11_c00162{width:1.297509pt;}
._d_c00162{width:2.797768pt;}
._0_c00162{width:4.094842pt;}
._f_c00162{width:5.534121pt;}
._e_c00162{width:6.722747pt;}
._8_c00162{width:7.632483pt;}
._a_c00162{width:8.770683pt;}
._b_c00162{width:10.080925pt;}
._9_c00162{width:11.151185pt;}
._6_c00162{width:12.264079pt;}
._12_c00162{width:13.256547pt;}
._13_c00162{width:14.244194pt;}
._c_c00162{width:16.454015pt;}
._14_c00162{width:18.192379pt;}
._7_c00162{width:19.235868pt;}
._15_c00162{width:20.575853pt;}
._16_c00162{width:22.337079pt;}
._19_c00162{width:23.506489pt;}
._2_c00162{width:25.032542pt;}
._1d_c00162{width:26.621594pt;}
._3_c00162{width:27.787174pt;}
._1c_c00162{width:29.163849pt;}
._1_c00162{width:30.183683pt;}
._5_c00162{width:31.330058pt;}
._4_c00162{width:32.496774pt;}
._17_c00162{width:36.836523pt;}
.fsf_c00162{font-size:53.333333pt;}
.fs2_c00162{font-size:57.333333pt;}
.fs8_c00162{font-size:63.333333pt;}
.fsc_c00162{font-size:64.000000pt;}
.fs3_c00162{font-size:65.333333pt;}
.fs4_c00162{font-size:68.000000pt;}
.fs9_c00162{font-size:68.666667pt;}
.fs5_c00162{font-size:69.333333pt;}
.fs0_c00162{font-size:70.000000pt;}
.fsb_c00162{font-size:70.666667pt;}
.fs1_c00162{font-size:71.333333pt;}
.fsd_c00162{font-size:72.000000pt;}
.fs7_c00162{font-size:72.666667pt;}
.fs6_c00162{font-size:73.333333pt;}
.fsa_c00162{font-size:74.000000pt;}
.fse_c00162{font-size:90.000000pt;}
.fs10_c00162{font-size:102.666667pt;}
.y0_c00162{bottom:0.000000pt;}
.y28_c00162{bottom:163.200667pt;}
.y27_c00162{bottom:189.440240pt;}
.y25_c00162{bottom:215.999307pt;}
.y26_c00162{bottom:216.000000pt;}
.y24_c00162{bottom:242.559067pt;}
.y23_c00162{bottom:269.119693pt;}
.y22_c00162{bottom:322.239200pt;}
.y21_c00162{bottom:322.239893pt;}
.y20_c00162{bottom:340.800253pt;}
.y1f_c00162{bottom:340.800267pt;}
.y1e_c00162{bottom:359.679200pt;}
.y1d_c00162{bottom:378.559573pt;}
.y1b_c00162{bottom:397.758947pt;}
.y1c_c00162{bottom:397.759320pt;}
.y1a_c00162{bottom:451.519067pt;}
.y19_c00162{bottom:477.760253pt;}
.y18_c00162{bottom:583.359333pt;}
.y17_c00162{bottom:583.359613pt;}
.y15_c00162{bottom:610.559427pt;}
.y16_c00162{bottom:610.559973pt;}
.y14_c00162{bottom:637.119187pt;}
.y13_c00162{bottom:663.999067pt;}
.y12_c00162{bottom:690.559573pt;}
.y11_c00162{bottom:718.079587pt;}
.y10_c00162{bottom:744.959467pt;}
.yf_c00162{bottom:744.959640pt;}
.ye_c00162{bottom:771.199213pt;}
.yd_c00162{bottom:771.199893pt;}
.yc_c00162{bottom:797.759640pt;}
.yb_c00162{bottom:824.639573pt;}
.ya_c00162{bottom:851.519453pt;}
.y9_c00162{bottom:851.520320pt;}
.y8_c00162{bottom:878.080080pt;}
.y7_c00162{bottom:878.080240pt;}
.y5_c00162{bottom:904.319147pt;}
.y6_c00162{bottom:904.319827pt;}
.y4_c00162{bottom:930.878907pt;}
.y2_c00162{bottom:957.439027pt;}
.y3_c00162{bottom:957.439453pt;}
.y1_c00162{bottom:1011.199133pt;}
.h14_c00162{height:52.708333pt;}
.h3_c00162{height:59.796875pt;}
.ha_c00162{height:66.054688pt;}
.h5_c00162{height:66.705078pt;}
.h17_c00162{height:66.738281pt;}
.hf_c00162{height:66.750000pt;}
.hb_c00162{height:67.359049pt;}
.h6_c00162{height:68.046875pt;}
.h4_c00162{height:68.140625pt;}
.h1_c00162{height:68.701172pt;}
.hd_c00162{height:69.203125pt;}
.h2_c00162{height:69.974935pt;}
.h7_c00162{height:70.009766pt;}
.h10_c00162{height:70.664062pt;}
.he_c00162{height:71.218750pt;}
.h9_c00162{height:71.318359pt;}
.h13_c00162{height:71.890625pt;}
.h8_c00162{height:71.972656pt;}
.hc_c00162{height:72.590820pt;}
.h15_c00162{height:73.132813pt;}
.h11_c00162{height:73.234375pt;}
.h12_c00162{height:93.867188pt;}
.h16_c00162{height:107.078125pt;}
.h0_c00162{height:1122.666667pt;}
.w0_c00162{width:793.333333pt;}
.x0_c00162{left:0.000000pt;}
.x7_c00162{left:118.719720pt;}
.x10_c00162{left:120.000000pt;}
.x9_c00162{left:121.599360pt;}
.x1_c00162{left:122.559067pt;}
.x40_c00162{left:131.519467pt;}
.x18_c00162{left:136.639200pt;}
.x2b_c00162{left:155.198667pt;}
.x30_c00162{left:168.638667pt;}
.x2c_c00162{left:169.600547pt;}
.x16_c00162{left:175.678667pt;}
.x17_c00162{left:188.799333pt;}
.x27_c00162{left:190.398920pt;}
.x14_c00162{left:192.319333pt;}
.x11_c00162{left:197.119587pt;}
.x8_c00162{left:205.440000pt;}
.x15_c00162{left:208.319867pt;}
.x1c_c00162{left:220.798787pt;}
.x31_c00162{left:231.999067pt;}
.x32_c00162{left:241.278787pt;}
.x3a_c00162{left:251.519467pt;}
.x1a_c00162{left:254.078680pt;}
.x1d_c00162{left:262.079587pt;}
.x3b_c00162{left:265.278787pt;}
.x23_c00162{left:322.879333pt;}
.x33_c00162{left:326.718787pt;}
.x1e_c00162{left:339.518533pt;}
.x34_c00162{left:345.599040pt;}
.x35_c00162{left:362.879840pt;}
.x1f_c00162{left:383.359867pt;}
.x12_c00162{left:390.719200pt;}
.x13_c00162{left:403.839840pt;}
.x1b_c00162{left:408.959467pt;}
.xc_c00162{left:417.279707pt;}
.xa_c00162{left:428.799320pt;}
.xd_c00162{left:429.758787pt;}
.x28_c00162{left:433.278813pt;}
.x29_c00162{left:445.759320pt;}
.xb_c00162{left:447.679733pt;}
.x41_c00162{left:450.238773pt;}
.x20_c00162{left:459.199173pt;}
.x2_c00162{left:473.598680pt;}
.x42_c00162{left:479.679200pt;}
.x2d_c00162{left:483.839320pt;}
.x3e_c00162{left:490.558507pt;}
.x36_c00162{left:496.319867pt;}
.x25_c00162{left:497.279333pt;}
.x2e_c00162{left:498.559573pt;}
.x37_c00162{left:509.438920pt;}
.x3f_c00162{left:519.358933pt;}
.x21_c00162{left:534.079067pt;}
.x3_c00162{left:543.039587pt;}
.x19_c00162{left:557.759720pt;}
.x4_c00162{left:573.439453pt;}
.x2a_c00162{left:581.438920pt;}
.x38_c00162{left:583.999467pt;}
.xe_c00162{left:590.078693pt;}
.x22_c00162{left:596.159173pt;}
.x3c_c00162{left:600.000000pt;}
.x3d_c00162{left:609.919840pt;}
.x39_c00162{left:637.759320pt;}
.x26_c00162{left:641.279293pt;}
.x24_c00162{left:651.199173pt;}
.x5_c00162{left:657.919840pt;}
.x6_c00162{left:676.158693pt;}
.x2f_c00162{left:681.919840pt;}
.xf_c00162{left:683.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9da8ad6948df7fdd2b37cd7.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_eea2749c026d6e6bd71ef854.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.364746;font-style:normal;font-weight:normal;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_505168225270bb115fff71a7.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_ee67fbdb54fc290fef1bb765.woff2')format("woff");}.ff4_c00163{font-family:ff4_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:ff5_c00163;src:url('chunks/assets/font_6f8d4c6485793fd1277730da.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00163;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00163{transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135417,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{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);}
.m19_c00163{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);}
.mf_c00163{transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m1e_c00163{transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m1f_c00163{transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.529762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529762,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls1c_c00163{letter-spacing:-35.961750px;}
.ls1d_c00163{letter-spacing:-25.729200px;}
.ls1a_c00163{letter-spacing:-21.590100px;}
.ls13_c00163{letter-spacing:-17.268998px;}
.ls18_c00163{letter-spacing:-15.891960px;}
.ls1e_c00163{letter-spacing:-12.104400px;}
.ls7_c00163{letter-spacing:-10.931250px;}
.ls16_c00163{letter-spacing:-10.920000px;}
.ls19_c00163{letter-spacing:-9.965325px;}
.ls2b_c00163{letter-spacing:-8.914500px;}
.lsd_c00163{letter-spacing:-8.175038px;}
.lsa_c00163{letter-spacing:-8.053350px;}
.ls14_c00163{letter-spacing:-7.928700px;}
.ls1f_c00163{letter-spacing:-7.499250px;}
.ls5_c00163{letter-spacing:-7.426125px;}
.ls24_c00163{letter-spacing:-7.087500px;}
.ls15_c00163{letter-spacing:-6.927120px;}
.ls3_c00163{letter-spacing:-5.945625px;}
.ls28_c00163{letter-spacing:-5.509950px;}
.ls6_c00163{letter-spacing:-5.196713px;}
.lsf_c00163{letter-spacing:-4.667925px;}
.ls9_c00163{letter-spacing:-4.456463px;}
.ls21_c00163{letter-spacing:-3.937500px;}
.lsb_c00163{letter-spacing:-3.717000px;}
.ls11_c00163{letter-spacing:-3.580200px;}
.ls2_c00163{letter-spacing:-2.968875px;}
.ls22_c00163{letter-spacing:-2.470950px;}
.ls27_c00163{letter-spacing:-2.466225px;}
.ls2a_c00163{letter-spacing:-2.251800px;}
.ls1_c00163{letter-spacing:-2.229413px;}
.ls23_c00163{letter-spacing:-1.575000px;}
.ls20_c00163{letter-spacing:-1.574895px;}
.ls8_c00163{letter-spacing:-1.489163px;}
.ls29_c00163{letter-spacing:-0.915600px;}
.ls4_c00163{letter-spacing:-0.740250px;}
.ls0_c00163{letter-spacing:0.000000px;}
.ls12_c00163{letter-spacing:0.691875px;}
.lse_c00163{letter-spacing:1.545000px;}
.ls26_c00163{letter-spacing:1.840193px;}
.ls17_c00163{letter-spacing:3.603150px;}
.ls10_c00163{letter-spacing:3.705075px;}
.lsc_c00163{letter-spacing:3.726810px;}
.ls1b_c00163{letter-spacing:4.301100px;}
.ls25_c00163{letter-spacing:11.058000px;}
.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;}
._17_c00163{margin-left:-12.843293px;}
._10_c00163{margin-left:-6.516622px;}
._11_c00163{margin-left:-4.579877px;}
._6_c00163{margin-left:-3.401688px;}
._2_c00163{margin-left:-1.544718px;}
._1_c00163{width:1.422136px;}
._0_c00163{width:2.914954px;}
._12_c00163{width:4.088804px;}
._3_c00163{width:5.110340px;}
._c_c00163{width:6.561495px;}
._9_c00163{width:8.158025px;}
._15_c00163{width:9.450966px;}
._8_c00163{width:10.669407px;}
._4_c00163{width:12.245684px;}
._5_c00163{width:13.583350px;}
._a_c00163{width:15.211721px;}
._13_c00163{width:17.030222px;}
._b_c00163{width:18.383311px;}
._14_c00163{width:19.571619px;}
._f_c00163{width:20.628295px;}
._e_c00163{width:21.781641px;}
._1a_c00163{width:23.830790px;}
._7_c00163{width:25.295065px;}
._d_c00163{width:29.622555px;}
._1b_c00163{width:35.604673px;}
._16_c00163{width:51.004694px;}
._19_c00163{width:96.048240px;}
._18_c00163{width:528.506433px;}
.fc0_c00163{color:transparent;}
.fs9_c00163{font-size:56.250000px;}
.fsd_c00163{font-size:57.000000px;}
.fsc_c00163{font-size:63.000000px;}
.fsa_c00163{font-size:72.000000px;}
.fse_c00163{font-size:74.250000px;}
.fs8_c00163{font-size:76.500000px;}
.fs5_c00163{font-size:77.250000px;}
.fs7_c00163{font-size:78.000000px;}
.fs1_c00163{font-size:78.750000px;}
.fs3_c00163{font-size:79.500000px;}
.fs2_c00163{font-size:80.250000px;}
.fs4_c00163{font-size:81.000000px;}
.fs6_c00163{font-size:81.750000px;}
.fs0_c00163{font-size:82.500000px;}
.fsb_c00163{font-size:84.000000px;}
.fsf_c00163{font-size:84.750000px;}
.y0_c00163{bottom:0.000000px;}
.y23_c00163{bottom:212.040735px;}
.y22_c00163{bottom:242.280645px;}
.y21_c00163{bottom:272.160375px;}
.y20_c00163{bottom:302.040090px;}
.y1f_c00163{bottom:331.919820px;}
.y1e_c00163{bottom:362.159730px;}
.y1d_c00163{bottom:391.318770px;}
.y1c_c00163{bottom:427.679070px;}
.y1b_c00163{bottom:450.719415px;}
.y1a_c00163{bottom:481.319820px;}
.y19_c00163{bottom:481.320105px;}
.y18_c00163{bottom:511.199820px;}
.y17_c00163{bottom:541.079550px;}
.y16_c00163{bottom:570.599070px;}
.y15_c00163{bottom:570.600330px;}
.y14_c00163{bottom:629.641200px;}
.y13_c00163{bottom:689.400645px;}
.y12_c00163{bottom:719.998950px;}
.y11_c00163{bottom:752.039985px;}
.y10_c00163{bottom:779.760270px;}
.yf_c00163{bottom:809.639985px;}
.yd_c00163{bottom:839.518935px;}
.ye_c00163{bottom:839.519715px;}
.yc_c00163{bottom:868.680090px;}
.ya_c00163{bottom:898.919340px;}
.yb_c00163{bottom:898.919955px;}
.y9_c00163{bottom:929.159250px;}
.y8_c00163{bottom:959.038965px;}
.y7_c00163{bottom:1018.800300px;}
.y5_c00163{bottom:1048.319775px;}
.y6_c00163{bottom:1048.319820px;}
.y4_c00163{bottom:1078.559685px;}
.y2_c00163{bottom:1108.438590px;}
.y3_c00163{bottom:1108.438665px;}
.y1_c00163{bottom:1137.959925px;}
.ha_c00163{height:55.590820px;}
.h16_c00163{height:55.942383px;}
.h11_c00163{height:62.261719px;}
.h9_c00163{height:75.080566px;}
.hd_c00163{height:75.093750px;}
.h6_c00163{height:75.816650px;}
.h8_c00163{height:76.552734px;}
.hf_c00163{height:77.097656px;}
.h2_c00163{height:77.288818px;}
.h18_c00163{height:77.440430px;}
.h14_c00163{height:78.024902px;}
.h4_c00163{height:78.568359px;}
.he_c00163{height:78.609375px;}
.h3_c00163{height:78.760986px;}
.hb_c00163{height:79.309570px;}
.h5_c00163{height:79.497070px;}
.h15_c00163{height:79.787109px;}
.h12_c00163{height:80.050781px;}
.h7_c00163{height:80.233154px;}
.hc_c00163{height:80.791992px;}
.h1_c00163{height:80.969238px;}
.h13_c00163{height:81.533203px;}
.h17_c00163{height:82.388672px;}
.h10_c00163{height:83.015625px;}
.h19_c00163{height:83.177490px;}
.h0_c00163{height:1263.000000px;}
.w0_c00163{width:892.500000px;}
.x0_c00163{left:0.000000px;}
.xa_c00163{left:141.118080px;}
.x1_c00163{left:142.199850px;}
.x2_c00163{left:156.238785px;}
.x25_c00163{left:166.678500px;}
.xc_c00163{left:169.199850px;}
.x1f_c00163{left:177.838515px;}
.x20_c00163{left:186.839565px;}
.x26_c00163{left:206.639700px;}
.x15_c00163{left:218.158785px;}
.x2c_c00163{left:223.559100px;}
.x16_c00163{left:246.599100px;}
.x2d_c00163{left:267.478635px;}
.x5_c00163{left:287.639700px;}
.xd_c00163{left:303.118785px;}
.x6_c00163{left:304.559100px;}
.x17_c00163{left:318.958950px;}
.xe_c00163{left:336.598530px;}
.x18_c00163{left:337.679700px;}
.x19_c00163{left:386.279250px;}
.x7_c00163{left:390.239220px;}
.x8_c00163{left:412.199850px;}
.x3_c00163{left:440.279250px;}
.x4_c00163{left:453.238770px;}
.x10_c00163{left:465.118785px;}
.x12_c00163{left:474.838530px;}
.xb_c00163{left:477.719100px;}
.x11_c00163{left:497.878320px;}
.x13_c00163{left:502.919535px;}
.x27_c00163{left:505.798515px;}
.x23_c00163{left:514.079400px;}
.x14_c00163{left:517.319235px;}
.x1a_c00163{left:538.198785px;}
.x24_c00163{left:540.000000px;}
.x28_c00163{left:552.959385px;}
.x1b_c00163{left:561.238770px;}
.x1c_c00163{left:594.000000px;}
.x29_c00163{left:610.919535px;}
.x2a_c00163{left:633.239220px;}
.x1d_c00163{left:653.039385px;}
.x21_c00163{left:659.519070px;}
.x1e_c00163{left:676.438620px;}
.x22_c00163{left:678.599070px;}
.x2b_c00163{left:689.038920px;}
.xf_c00163{left:764.999355px;}
.x9_c00163{left:767.878320px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls1c_c00163{letter-spacing:-31.966000pt;}
.ls1d_c00163{letter-spacing:-22.870400pt;}
.ls1a_c00163{letter-spacing:-19.191200pt;}
.ls13_c00163{letter-spacing:-15.350220pt;}
.ls18_c00163{letter-spacing:-14.126187pt;}
.ls1e_c00163{letter-spacing:-10.759467pt;}
.ls7_c00163{letter-spacing:-9.716667pt;}
.ls16_c00163{letter-spacing:-9.706667pt;}
.ls19_c00163{letter-spacing:-8.858067pt;}
.ls2b_c00163{letter-spacing:-7.924000pt;}
.lsd_c00163{letter-spacing:-7.266700pt;}
.lsa_c00163{letter-spacing:-7.158533pt;}
.ls14_c00163{letter-spacing:-7.047733pt;}
.ls1f_c00163{letter-spacing:-6.666000pt;}
.ls5_c00163{letter-spacing:-6.601000pt;}
.ls24_c00163{letter-spacing:-6.300000pt;}
.ls15_c00163{letter-spacing:-6.157440pt;}
.ls3_c00163{letter-spacing:-5.285000pt;}
.ls28_c00163{letter-spacing:-4.897733pt;}
.ls6_c00163{letter-spacing:-4.619300pt;}
.lsf_c00163{letter-spacing:-4.149267pt;}
.ls9_c00163{letter-spacing:-3.961300pt;}
.ls21_c00163{letter-spacing:-3.500000pt;}
.lsb_c00163{letter-spacing:-3.304000pt;}
.ls11_c00163{letter-spacing:-3.182400pt;}
.ls2_c00163{letter-spacing:-2.639000pt;}
.ls22_c00163{letter-spacing:-2.196400pt;}
.ls27_c00163{letter-spacing:-2.192200pt;}
.ls2a_c00163{letter-spacing:-2.001600pt;}
.ls1_c00163{letter-spacing:-1.981700pt;}
.ls23_c00163{letter-spacing:-1.400000pt;}
.ls20_c00163{letter-spacing:-1.399907pt;}
.ls8_c00163{letter-spacing:-1.323700pt;}
.ls29_c00163{letter-spacing:-0.813867pt;}
.ls4_c00163{letter-spacing:-0.658000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ls12_c00163{letter-spacing:0.615000pt;}
.lse_c00163{letter-spacing:1.373333pt;}
.ls26_c00163{letter-spacing:1.635727pt;}
.ls17_c00163{letter-spacing:3.202800pt;}
.ls10_c00163{letter-spacing:3.293400pt;}
.lsc_c00163{letter-spacing:3.312720pt;}
.ls1b_c00163{letter-spacing:3.823200pt;}
.ls25_c00163{letter-spacing:9.829333pt;}
.ws0_c00163{word-spacing:0.000000pt;}
._17_c00163{margin-left:-11.416260pt;}
._10_c00163{margin-left:-5.792553pt;}
._11_c00163{margin-left:-4.071002pt;}
._6_c00163{margin-left:-3.023723pt;}
._2_c00163{margin-left:-1.373083pt;}
._1_c00163{width:1.264121pt;}
._0_c00163{width:2.591070pt;}
._12_c00163{width:3.634492pt;}
._3_c00163{width:4.542525pt;}
._c_c00163{width:5.832440pt;}
._9_c00163{width:7.251577pt;}
._15_c00163{width:8.400858pt;}
._8_c00163{width:9.483917pt;}
._4_c00163{width:10.885053pt;}
._5_c00163{width:12.074089pt;}
._a_c00163{width:13.521530pt;}
._13_c00163{width:15.137975pt;}
._b_c00163{width:16.340721pt;}
._14_c00163{width:17.396994pt;}
._f_c00163{width:18.336262pt;}
._e_c00163{width:19.361458pt;}
._1a_c00163{width:21.182925pt;}
._7_c00163{width:22.484502pt;}
._d_c00163{width:26.331160pt;}
._1b_c00163{width:31.648598pt;}
._16_c00163{width:45.337506pt;}
._19_c00163{width:85.376214pt;}
._18_c00163{width:469.783496pt;}
.fs9_c00163{font-size:50.000000pt;}
.fsd_c00163{font-size:50.666667pt;}
.fsc_c00163{font-size:56.000000pt;}
.fsa_c00163{font-size:64.000000pt;}
.fse_c00163{font-size:66.000000pt;}
.fs8_c00163{font-size:68.000000pt;}
.fs5_c00163{font-size:68.666667pt;}
.fs7_c00163{font-size:69.333333pt;}
.fs1_c00163{font-size:70.000000pt;}
.fs3_c00163{font-size:70.666667pt;}
.fs2_c00163{font-size:71.333333pt;}
.fs4_c00163{font-size:72.000000pt;}
.fs6_c00163{font-size:72.666667pt;}
.fs0_c00163{font-size:73.333333pt;}
.fsb_c00163{font-size:74.666667pt;}
.fsf_c00163{font-size:75.333333pt;}
.y0_c00163{bottom:0.000000pt;}
.y23_c00163{bottom:188.480653pt;}
.y22_c00163{bottom:215.360573pt;}
.y21_c00163{bottom:241.920333pt;}
.y20_c00163{bottom:268.480080pt;}
.y1f_c00163{bottom:295.039840pt;}
.y1e_c00163{bottom:321.919760pt;}
.y1d_c00163{bottom:347.838907pt;}
.y1c_c00163{bottom:380.159173pt;}
.y1b_c00163{bottom:400.639480pt;}
.y1a_c00163{bottom:427.839840pt;}
.y19_c00163{bottom:427.840093pt;}
.y18_c00163{bottom:454.399840pt;}
.y17_c00163{bottom:480.959600pt;}
.y16_c00163{bottom:507.199173pt;}
.y15_c00163{bottom:507.200293pt;}
.y14_c00163{bottom:559.681067pt;}
.y13_c00163{bottom:612.800573pt;}
.y12_c00163{bottom:639.999067pt;}
.y11_c00163{bottom:668.479987pt;}
.y10_c00163{bottom:693.120240pt;}
.yf_c00163{bottom:719.679987pt;}
.yd_c00163{bottom:746.239053pt;}
.ye_c00163{bottom:746.239747pt;}
.yc_c00163{bottom:772.160080pt;}
.ya_c00163{bottom:799.039413pt;}
.yb_c00163{bottom:799.039960pt;}
.y9_c00163{bottom:825.919333pt;}
.y8_c00163{bottom:852.479080pt;}
.y7_c00163{bottom:905.600267pt;}
.y5_c00163{bottom:931.839800pt;}
.y6_c00163{bottom:931.839840pt;}
.y4_c00163{bottom:958.719720pt;}
.y2_c00163{bottom:985.278747pt;}
.y3_c00163{bottom:985.278813pt;}
.y1_c00163{bottom:1011.519933pt;}
.ha_c00163{height:49.414063pt;}
.h16_c00163{height:49.726562pt;}
.h11_c00163{height:55.343750pt;}
.h9_c00163{height:66.738281pt;}
.hd_c00163{height:66.750000pt;}
.h6_c00163{height:67.392578pt;}
.h8_c00163{height:68.046875pt;}
.hf_c00163{height:68.531250pt;}
.h2_c00163{height:68.701172pt;}
.h18_c00163{height:68.835938pt;}
.h14_c00163{height:69.355469pt;}
.h4_c00163{height:69.838542pt;}
.he_c00163{height:69.875000pt;}
.h3_c00163{height:70.009766pt;}
.hb_c00163{height:70.497396pt;}
.h5_c00163{height:70.664062pt;}
.h15_c00163{height:70.921875pt;}
.h12_c00163{height:71.156250pt;}
.h7_c00163{height:71.318359pt;}
.hc_c00163{height:71.815104pt;}
.h1_c00163{height:71.972656pt;}
.h13_c00163{height:72.473958pt;}
.h17_c00163{height:73.234375pt;}
.h10_c00163{height:73.791667pt;}
.h19_c00163{height:73.935547pt;}
.h0_c00163{height:1122.666667pt;}
.w0_c00163{width:793.333333pt;}
.x0_c00163{left:0.000000pt;}
.xa_c00163{left:125.438293pt;}
.x1_c00163{left:126.399867pt;}
.x2_c00163{left:138.878920pt;}
.x25_c00163{left:148.158667pt;}
.xc_c00163{left:150.399867pt;}
.x1f_c00163{left:158.078680pt;}
.x20_c00163{left:166.079613pt;}
.x26_c00163{left:183.679733pt;}
.x15_c00163{left:193.918920pt;}
.x2c_c00163{left:198.719200pt;}
.x16_c00163{left:219.199200pt;}
.x2d_c00163{left:237.758787pt;}
.x5_c00163{left:255.679733pt;}
.xd_c00163{left:269.438920pt;}
.x6_c00163{left:270.719200pt;}
.x17_c00163{left:283.519067pt;}
.xe_c00163{left:299.198693pt;}
.x18_c00163{left:300.159733pt;}
.x19_c00163{left:343.359333pt;}
.x7_c00163{left:346.879307pt;}
.x8_c00163{left:366.399867pt;}
.x3_c00163{left:391.359333pt;}
.x4_c00163{left:402.878907pt;}
.x10_c00163{left:413.438920pt;}
.x12_c00163{left:422.078693pt;}
.xb_c00163{left:424.639200pt;}
.x11_c00163{left:442.558507pt;}
.x13_c00163{left:447.039587pt;}
.x27_c00163{left:449.598680pt;}
.x23_c00163{left:456.959467pt;}
.x14_c00163{left:459.839320pt;}
.x1a_c00163{left:478.398920pt;}
.x24_c00163{left:480.000000pt;}
.x28_c00163{left:491.519453pt;}
.x1b_c00163{left:498.878907pt;}
.x1c_c00163{left:528.000000pt;}
.x29_c00163{left:543.039587pt;}
.x2a_c00163{left:562.879307pt;}
.x1d_c00163{left:580.479453pt;}
.x21_c00163{left:586.239173pt;}
.x1e_c00163{left:601.278773pt;}
.x22_c00163{left:603.199173pt;}
.x2b_c00163{left:612.479040pt;}
.xf_c00163{left:679.999427pt;}
.x9_c00163{left:682.558507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcf3caf786e5132396e2c39f.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.364746;font-style:normal;font-weight:normal;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_625235398798822333fe2a44.woff2')format("woff");}.ff3_c00164{font-family:ff3_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:ff4_c00164;src:url('chunks/assets/font_e00f4b330eb3cc1a85194479.woff2')format("woff");}.ff4_c00164{font-family:ff4_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:ff5_c00164;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff5_c00164{font-family:ff5_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:ff6_c00164;src:url('chunks/assets/font_0b96962795132cfb44503599.woff2')format("woff");}.ff6_c00164{font-family:ff6_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:ff7_c00164;src:url('chunks/assets/font_ebc7435f33e2872ad26e6f6a.woff2')format("woff");}.ff7_c00164{font-family:ff7_c00164;line-height:1.364746;font-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_c00164{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.mc_c00164{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m8_c00164{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{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);}
.v0_c00164{vertical-align:0.000000px;}
.ls9_c00164{letter-spacing:-14.082750px;}
.ls1a_c00164{letter-spacing:-13.765500px;}
.lsd_c00164{letter-spacing:-13.570650px;}
.lsb_c00164{letter-spacing:-12.687675px;}
.lse_c00164{letter-spacing:-12.226305px;}
.lsc_c00164{letter-spacing:-10.576500px;}
.ls5_c00164{letter-spacing:-7.426125px;}
.lsa_c00164{letter-spacing:-6.685875px;}
.ls4_c00164{letter-spacing:-5.945625px;}
.ls19_c00164{letter-spacing:-5.199698px;}
.ls2_c00164{letter-spacing:-5.196713px;}
.ls10_c00164{letter-spacing:-5.054963px;}
.lsf_c00164{letter-spacing:-4.456463px;}
.ls16_c00164{letter-spacing:-3.860025px;}
.ls0_c00164{letter-spacing:-3.717000px;}
.ls18_c00164{letter-spacing:-3.179205px;}
.ls11_c00164{letter-spacing:-3.089228px;}
.ls3_c00164{letter-spacing:-2.968875px;}
.ls13_c00164{letter-spacing:-2.862600px;}
.ls14_c00164{letter-spacing:-2.310398px;}
.ls15_c00164{letter-spacing:-2.251800px;}
.ls1_c00164{letter-spacing:-2.229413px;}
.ls12_c00164{letter-spacing:-2.224028px;}
.ls17_c00164{letter-spacing:-1.540800px;}
.ls8_c00164{letter-spacing:-1.489163px;}
.ls7_c00164{letter-spacing:-0.740250px;}
.ls6_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;}
._11_c00164{margin-left:-5.028722px;}
._10_c00164{margin-left:-2.910659px;}
._6_c00164{margin-left:-1.360206px;}
._2_c00164{width:1.975451px;}
._14_c00164{width:3.302597px;}
._4_c00164{width:4.417504px;}
._1_c00164{width:6.149914px;}
._0_c00164{width:8.284262px;}
._3_c00164{width:9.865518px;}
._12_c00164{width:11.211028px;}
._5_c00164{width:12.245684px;}
._7_c00164{width:13.260935px;}
._15_c00164{width:16.994919px;}
._13_c00164{width:18.896880px;}
._f_c00164{width:20.613912px;}
._e_c00164{width:22.118617px;}
._c_c00164{width:26.114392px;}
._b_c00164{width:27.666405px;}
._8_c00164{width:29.566494px;}
._d_c00164{width:30.894413px;}
._a_c00164{width:32.136998px;}
._9_c00164{width:34.452976px;}
.fc0_c00164{color:transparent;}
.fs7_c00164{font-size:40.500000px;}
.fsb_c00164{font-size:70.500000px;}
.fsa_c00164{font-size:74.250000px;}
.fs9_c00164{font-size:76.500000px;}
.fs6_c00164{font-size:77.250000px;}
.fs1_c00164{font-size:78.000000px;}
.fs0_c00164{font-size:78.750000px;}
.fs4_c00164{font-size:79.500000px;}
.fs2_c00164{font-size:80.250000px;}
.fs5_c00164{font-size:81.000000px;}
.fs8_c00164{font-size:81.750000px;}
.fs3_c00164{font-size:82.500000px;}
.y0_c00164{bottom:0.000000px;}
.y2f_c00164{bottom:188.999085px;}
.y1f_c00164{bottom:189.359250px;}
.y2e_c00164{bottom:229.319160px;}
.y1e_c00164{bottom:229.320300px;}
.y34_c00164{bottom:229.679700px;}
.y2d_c00164{bottom:269.637150px;}
.y33_c00164{bottom:269.639100px;}
.y1d_c00164{bottom:269.639880px;}
.y2c_c00164{bottom:309.598845px;}
.y32_c00164{bottom:309.600150px;}
.y1c_c00164{bottom:309.959970px;}
.y2b_c00164{bottom:350.279115px;}
.y1b_c00164{bottom:350.280045px;}
.y31_c00164{bottom:350.639100px;}
.y1a_c00164{bottom:390.600135px;}
.y2a_c00164{bottom:390.959385px;}
.y30_c00164{bottom:391.319565px;}
.y20_c00164{bottom:420.840135px;}
.y22_c00164{bottom:421.199385px;}
.y23_c00164{bottom:421.560285px;}
.y21_c00164{bottom:430.918950px;}
.y24_c00164{bottom:431.639100px;}
.y19_c00164{bottom:471.600135px;}
.y27_c00164{bottom:471.600795px;}
.y18_c00164{bottom:511.559895px;}
.y26_c00164{bottom:511.560375px;}
.y29_c00164{bottom:511.920570px;}
.y17_c00164{bottom:551.879970px;}
.y25_c00164{bottom:551.880480px;}
.y28_c00164{bottom:552.240675px;}
.y16_c00164{bottom:622.079400px;}
.y15_c00164{bottom:690.840135px;}
.y14_c00164{bottom:721.080000px;}
.y12_c00164{bottom:780.118860px;}
.y13_c00164{bottom:780.119385px;}
.y11_c00164{bottom:841.319370px;}
.y10_c00164{bottom:870.838905px;}
.yf_c00164{bottom:870.839790px;}
.yd_c00164{bottom:900.718830px;}
.ye_c00164{bottom:900.719520px;}
.yb_c00164{bottom:929.879310px;}
.yc_c00164{bottom:929.879970px;}
.ya_c00164{bottom:959.759040px;}
.y9_c00164{bottom:959.759880px;}
.y8_c00164{bottom:989.281215px;}
.y6_c00164{bottom:1019.879340px;}
.y7_c00164{bottom:1019.879520px;}
.y5_c00164{bottom:1049.219520px;}
.y4_c00164{bottom:1049.221545px;}
.y3_c00164{bottom:1079.640795px;}
.y2_c00164{bottom:1109.520510px;}
.y1_c00164{bottom:1139.400240px;}
.hd_c00164{height:42.240234px;}
.h11_c00164{height:73.529297px;}
.h8_c00164{height:75.816650px;}
.h2_c00164{height:76.552734px;}
.h1_c00164{height:77.288818px;}
.h10_c00164{height:77.440430px;}
.h12_c00164{height:77.827148px;}
.hc_c00164{height:77.853516px;}
.h9_c00164{height:78.024902px;}
.h5_c00164{height:78.568359px;}
.h3_c00164{height:78.760986px;}
.h6_c00164{height:79.497070px;}
.hf_c00164{height:79.787109px;}
.he_c00164{height:80.233154px;}
.h7_c00164{height:80.569336px;}
.ha_c00164{height:80.876953px;}
.h4_c00164{height:81.533203px;}
.hb_c00164{height:81.632812px;}
.h0_c00164{height:1263.000000px;}
.w0_c00164{width:892.500000px;}
.x0_c00164{left:0.000000px;}
.x16_c00164{left:139.319250px;}
.x2_c00164{left:140.403120px;}
.x1_c00164{left:141.479715px;}
.x17_c00164{left:165.599100px;}
.xf_c00164{left:215.639100px;}
.x22_c00164{left:218.878950px;}
.x1e_c00164{left:228.598500px;}
.x21_c00164{left:230.399850px;}
.x10_c00164{left:236.159385px;}
.xd_c00164{left:264.599700px;}
.xe_c00164{left:285.120000px;}
.x1f_c00164{left:286.919535px;}
.x5_c00164{left:296.279850px;}
.x23_c00164{left:303.118785px;}
.x6_c00164{left:309.598530px;}
.x24_c00164{left:313.919535px;}
.x20_c00164{left:317.518635px;}
.x9_c00164{left:327.599100px;}
.xa_c00164{left:351.718500px;}
.x11_c00164{left:366.838515px;}
.x12_c00164{left:388.078815px;}
.x3_c00164{left:398.159415px;}
.x1d_c00164{left:421.558635px;}
.x13_c00164{left:425.159415px;}
.x14_c00164{left:434.519670px;}
.x4_c00164{left:441.358665px;}
.x15_c00164{left:462.958335px;}
.x18_c00164{left:493.918350px;}
.x19_c00164{left:514.799520px;}
.xb_c00164{left:519.479685px;}
.x7_c00164{left:541.079400px;}
.xc_c00164{left:543.599070px;}
.x8_c00164{left:560.518620px;}
.x25_c00164{left:582.838530px;}
.x27_c00164{left:601.915695px;}
.x2a_c00164{left:630.358605px;}
.x28_c00164{left:635.397150px;}
.x26_c00164{left:638.278800px;}
.x29_c00164{left:639.719100px;}
.x1a_c00164{left:726.119385px;}
.x1b_c00164{left:741.598530px;}
.x1c_c00164{left:758.519670px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls9_c00164{letter-spacing:-12.518000pt;}
.ls1a_c00164{letter-spacing:-12.236000pt;}
.lsd_c00164{letter-spacing:-12.062800pt;}
.lsb_c00164{letter-spacing:-11.277933pt;}
.lse_c00164{letter-spacing:-10.867827pt;}
.lsc_c00164{letter-spacing:-9.401333pt;}
.ls5_c00164{letter-spacing:-6.601000pt;}
.lsa_c00164{letter-spacing:-5.943000pt;}
.ls4_c00164{letter-spacing:-5.285000pt;}
.ls19_c00164{letter-spacing:-4.621953pt;}
.ls2_c00164{letter-spacing:-4.619300pt;}
.ls10_c00164{letter-spacing:-4.493300pt;}
.lsf_c00164{letter-spacing:-3.961300pt;}
.ls16_c00164{letter-spacing:-3.431133pt;}
.ls0_c00164{letter-spacing:-3.304000pt;}
.ls18_c00164{letter-spacing:-2.825960pt;}
.ls11_c00164{letter-spacing:-2.745980pt;}
.ls3_c00164{letter-spacing:-2.639000pt;}
.ls13_c00164{letter-spacing:-2.544533pt;}
.ls14_c00164{letter-spacing:-2.053687pt;}
.ls15_c00164{letter-spacing:-2.001600pt;}
.ls1_c00164{letter-spacing:-1.981700pt;}
.ls12_c00164{letter-spacing:-1.976913pt;}
.ls17_c00164{letter-spacing:-1.369600pt;}
.ls8_c00164{letter-spacing:-1.323700pt;}
.ls7_c00164{letter-spacing:-0.658000pt;}
.ls6_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:0.000000pt;}
._11_c00164{margin-left:-4.469975pt;}
._10_c00164{margin-left:-2.587253pt;}
._6_c00164{margin-left:-1.209072pt;}
._2_c00164{width:1.755957pt;}
._14_c00164{width:2.935642pt;}
._4_c00164{width:3.926670pt;}
._1_c00164{width:5.466591pt;}
._0_c00164{width:7.363789pt;}
._3_c00164{width:8.769349pt;}
._12_c00164{width:9.965358pt;}
._5_c00164{width:10.885053pt;}
._7_c00164{width:11.787498pt;}
._15_c00164{width:15.106594pt;}
._13_c00164{width:16.797226pt;}
._f_c00164{width:18.323477pt;}
._e_c00164{width:19.660992pt;}
._c_c00164{width:23.212792pt;}
._b_c00164{width:24.592360pt;}
._8_c00164{width:26.281328pt;}
._d_c00164{width:27.461700pt;}
._a_c00164{width:28.566221pt;}
._9_c00164{width:30.624868pt;}
.fs7_c00164{font-size:36.000000pt;}
.fsb_c00164{font-size:62.666667pt;}
.fsa_c00164{font-size:66.000000pt;}
.fs9_c00164{font-size:68.000000pt;}
.fs6_c00164{font-size:68.666667pt;}
.fs1_c00164{font-size:69.333333pt;}
.fs0_c00164{font-size:70.000000pt;}
.fs4_c00164{font-size:70.666667pt;}
.fs2_c00164{font-size:71.333333pt;}
.fs5_c00164{font-size:72.000000pt;}
.fs8_c00164{font-size:72.666667pt;}
.fs3_c00164{font-size:73.333333pt;}
.y0_c00164{bottom:0.000000pt;}
.y2f_c00164{bottom:167.999187pt;}
.y1f_c00164{bottom:168.319333pt;}
.y2e_c00164{bottom:203.839253pt;}
.y1e_c00164{bottom:203.840267pt;}
.y34_c00164{bottom:204.159733pt;}
.y2d_c00164{bottom:239.677467pt;}
.y33_c00164{bottom:239.679200pt;}
.y1d_c00164{bottom:239.679893pt;}
.y2c_c00164{bottom:275.198973pt;}
.y32_c00164{bottom:275.200133pt;}
.y1c_c00164{bottom:275.519973pt;}
.y2b_c00164{bottom:311.359213pt;}
.y1b_c00164{bottom:311.360040pt;}
.y31_c00164{bottom:311.679200pt;}
.y1a_c00164{bottom:347.200120pt;}
.y2a_c00164{bottom:347.519453pt;}
.y30_c00164{bottom:347.839613pt;}
.y20_c00164{bottom:374.080120pt;}
.y22_c00164{bottom:374.399453pt;}
.y23_c00164{bottom:374.720253pt;}
.y21_c00164{bottom:383.039067pt;}
.y24_c00164{bottom:383.679200pt;}
.y19_c00164{bottom:419.200120pt;}
.y27_c00164{bottom:419.200707pt;}
.y18_c00164{bottom:454.719907pt;}
.y26_c00164{bottom:454.720333pt;}
.y29_c00164{bottom:455.040507pt;}
.y17_c00164{bottom:490.559973pt;}
.y25_c00164{bottom:490.560427pt;}
.y28_c00164{bottom:490.880600pt;}
.y16_c00164{bottom:552.959467pt;}
.y15_c00164{bottom:614.080120pt;}
.y14_c00164{bottom:640.960000pt;}
.y12_c00164{bottom:693.438987pt;}
.y13_c00164{bottom:693.439453pt;}
.y11_c00164{bottom:747.839440pt;}
.y10_c00164{bottom:774.079027pt;}
.yf_c00164{bottom:774.079813pt;}
.yd_c00164{bottom:800.638960pt;}
.ye_c00164{bottom:800.639573pt;}
.yb_c00164{bottom:826.559387pt;}
.yc_c00164{bottom:826.559973pt;}
.ya_c00164{bottom:853.119147pt;}
.y9_c00164{bottom:853.119893pt;}
.y8_c00164{bottom:879.361080pt;}
.y6_c00164{bottom:906.559413pt;}
.y7_c00164{bottom:906.559573pt;}
.y5_c00164{bottom:932.639573pt;}
.y4_c00164{bottom:932.641373pt;}
.y3_c00164{bottom:959.680707pt;}
.y2_c00164{bottom:986.240453pt;}
.y1_c00164{bottom:1012.800213pt;}
.hd_c00164{height:37.546875pt;}
.h11_c00164{height:65.359375pt;}
.h8_c00164{height:67.392578pt;}
.h2_c00164{height:68.046875pt;}
.h1_c00164{height:68.701172pt;}
.h10_c00164{height:68.835938pt;}
.h12_c00164{height:69.179688pt;}
.hc_c00164{height:69.203125pt;}
.h9_c00164{height:69.355469pt;}
.h5_c00164{height:69.838542pt;}
.h3_c00164{height:70.009766pt;}
.h6_c00164{height:70.664062pt;}
.hf_c00164{height:70.921875pt;}
.he_c00164{height:71.318359pt;}
.h7_c00164{height:71.617188pt;}
.ha_c00164{height:71.890625pt;}
.h4_c00164{height:72.473958pt;}
.hb_c00164{height:72.562500pt;}
.h0_c00164{height:1122.666667pt;}
.w0_c00164{width:793.333333pt;}
.x0_c00164{left:0.000000pt;}
.x16_c00164{left:123.839333pt;}
.x2_c00164{left:124.802773pt;}
.x1_c00164{left:125.759747pt;}
.x17_c00164{left:147.199200pt;}
.xf_c00164{left:191.679200pt;}
.x22_c00164{left:194.559067pt;}
.x1e_c00164{left:203.198667pt;}
.x21_c00164{left:204.799867pt;}
.x10_c00164{left:209.919453pt;}
.xd_c00164{left:235.199733pt;}
.xe_c00164{left:253.440000pt;}
.x1f_c00164{left:255.039587pt;}
.x5_c00164{left:263.359867pt;}
.x23_c00164{left:269.438920pt;}
.x6_c00164{left:275.198693pt;}
.x24_c00164{left:279.039587pt;}
.x20_c00164{left:282.238787pt;}
.x9_c00164{left:291.199200pt;}
.xa_c00164{left:312.638667pt;}
.x11_c00164{left:326.078680pt;}
.x12_c00164{left:344.958947pt;}
.x3_c00164{left:353.919480pt;}
.x1d_c00164{left:374.718787pt;}
.x13_c00164{left:377.919480pt;}
.x14_c00164{left:386.239707pt;}
.x4_c00164{left:392.318813pt;}
.x15_c00164{left:411.518520pt;}
.x18_c00164{left:439.038533pt;}
.x19_c00164{left:457.599573pt;}
.xb_c00164{left:461.759720pt;}
.x7_c00164{left:480.959467pt;}
.xc_c00164{left:483.199173pt;}
.x8_c00164{left:498.238773pt;}
.x25_c00164{left:518.078693pt;}
.x27_c00164{left:535.036173pt;}
.x2a_c00164{left:560.318760pt;}
.x28_c00164{left:564.797467pt;}
.x26_c00164{left:567.358933pt;}
.x29_c00164{left:568.639200pt;}
.x1a_c00164{left:645.439453pt;}
.x1b_c00164{left:659.198693pt;}
.x1c_c00164{left:674.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4b58d0fd3e9afb5d957878c.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.364746;font-style:normal;font-weight:normal;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_f2e5aa2b7345f649ed417c8a.woff2')format("woff");}.ff3_c00165{font-family:ff3_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:ff4_c00165;src:url('chunks/assets/font_4d527e6df511b9ebc6098d1e.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00165;src:url('chunks/assets/font_6409daa1c74be17e26dfcb49.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.432129;font-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_c00165{transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206422,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{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_c00165{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.lsf_c00165{letter-spacing:-15.510450px;}
.ls4_c00165{letter-spacing:-13.698675px;}
.lsd_c00165{letter-spacing:-7.267575px;}
.ls13_c00165{letter-spacing:-6.685875px;}
.ls10_c00165{letter-spacing:-5.945625px;}
.ls12_c00165{letter-spacing:-5.196713px;}
.lse_c00165{letter-spacing:-4.456463px;}
.lsa_c00165{letter-spacing:-3.860025px;}
.lsc_c00165{letter-spacing:-3.717000px;}
.ls7_c00165{letter-spacing:-3.713445px;}
.ls1_c00165{letter-spacing:-2.968875px;}
.ls9_c00165{letter-spacing:-2.310398px;}
.ls0_c00165{letter-spacing:-2.229413px;}
.ls14_c00165{letter-spacing:-1.604610px;}
.lsb_c00165{letter-spacing:-1.540800px;}
.ls8_c00165{letter-spacing:-1.531710px;}
.ls5_c00165{letter-spacing:-1.489163px;}
.ls3_c00165{letter-spacing:-0.806400px;}
.ls15_c00165{letter-spacing:-0.764250px;}
.ls6_c00165{letter-spacing:-0.740250px;}
.ls2_c00165{letter-spacing:0.000000px;}
.ls11_c00165{letter-spacing:10.230000px;}
.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;}
._18_c00165{margin-left:-4.789248px;}
._17_c00165{margin-left:-1.963713px;}
._5_c00165{width:1.988854px;}
._4_c00165{width:3.306460px;}
._0_c00165{width:4.655239px;}
._2_c00165{width:5.825256px;}
._3_c00165{width:7.530342px;}
._1_c00165{width:9.143053px;}
._c_c00165{width:10.550033px;}
._15_c00165{width:12.463881px;}
._16_c00165{width:13.972033px;}
._19_c00165{width:17.017905px;}
._11_c00165{width:19.488233px;}
._14_c00165{width:20.603838px;}
._10_c00165{width:22.999235px;}
._13_c00165{width:24.281344px;}
._f_c00165{width:26.687989px;}
._12_c00165{width:27.948791px;}
._b_c00165{width:37.258586px;}
._9_c00165{width:40.698446px;}
._6_c00165{width:43.864894px;}
._8_c00165{width:45.045728px;}
._7_c00165{width:46.550789px;}
._a_c00165{width:49.725603px;}
._d_c00165{width:152.462348px;}
._e_c00165{width:625.069775px;}
.fc0_c00165{color:transparent;}
.fs9_c00165{font-size:33.750000px;}
.fsc_c00165{font-size:75.000000px;}
.fs3_c00165{font-size:78.000000px;}
.fs0_c00165{font-size:78.750000px;}
.fs5_c00165{font-size:79.500000px;}
.fs4_c00165{font-size:80.250000px;}
.fs6_c00165{font-size:81.000000px;}
.fs7_c00165{font-size:81.750000px;}
.fs8_c00165{font-size:82.500000px;}
.fs2_c00165{font-size:84.000000px;}
.fs1_c00165{font-size:84.750000px;}
.fsb_c00165{font-size:86.250000px;}
.fsa_c00165{font-size:132.000000px;}
.y0_c00165{bottom:0.000000px;}
.y1a_c00165{bottom:202.318800px;}
.y19_c00165{bottom:232.919535px;}
.y18_c00165{bottom:259.199385px;}
.y17_c00165{bottom:289.439235px;}
.y16_c00165{bottom:318.959835px;}
.y11_c00165{bottom:379.079385px;}
.y10_c00165{bottom:379.079505px;}
.yf_c00165{bottom:408.959220px;}
.ye_c00165{bottom:438.838950px;}
.yd_c00165{bottom:438.839145px;}
.yc_c00165{bottom:469.439535px;}
.y8_c00165{bottom:528.119985px;}
.y15_c00165{bottom:618.839745px;}
.y1d_c00165{bottom:619.199865px;}
.y20_c00165{bottom:619.918950px;}
.y14_c00165{bottom:659.159820px;}
.y1f_c00165{bottom:659.879970px;}
.y1c_c00165{bottom:659.880135px;}
.y13_c00165{bottom:699.839535px;}
.y1b_c00165{bottom:699.839715px;}
.y12_c00165{bottom:699.840000px;}
.y1e_c00165{bottom:700.200210px;}
.yb_c00165{bottom:744.840135px;}
.ya_c00165{bottom:780.840405px;}
.y9_c00165{bottom:821.160510px;}
.y7_c00165{bottom:891.359250px;}
.y6_c00165{bottom:989.998860px;}
.y5_c00165{bottom:1020.238770px;}
.y4_c00165{bottom:1020.240555px;}
.y3_c00165{bottom:1050.120270px;}
.y2_c00165{bottom:1080.000000px;}
.y1_c00165{bottom:1140.118740px;}
.hd_c00165{height:33.123779px;}
.h11_c00165{height:73.608398px;}
.h4_c00165{height:76.552734px;}
.h1_c00165{height:77.288818px;}
.hc_c00165{height:78.568359px;}
.h6_c00165{height:78.760986px;}
.h5_c00165{height:79.309570px;}
.h10_c00165{height:79.497070px;}
.h7_c00165{height:80.121094px;}
.ha_c00165{height:80.791992px;}
.h9_c00165{height:80.876953px;}
.hb_c00165{height:80.969238px;}
.h8_c00165{height:81.632812px;}
.h3_c00165{height:82.441406px;}
.h2_c00165{height:83.177490px;}
.hf_c00165{height:89.956055px;}
.he_c00165{height:137.671875px;}
.h0_c00165{height:1263.000000px;}
.w0_c00165{width:892.500000px;}
.x0_c00165{left:0.000000px;}
.x12_c00165{left:138.239280px;}
.x1_c00165{left:139.319250px;}
.x4_c00165{left:163.799565px;}
.x15_c00165{left:236.518635px;}
.xb_c00165{left:238.319850px;}
.x10_c00165{left:240.477930px;}
.x5_c00165{left:241.559685px;}
.x16_c00165{left:257.399850px;}
.x6_c00165{left:261.719100px;}
.x7_c00165{left:280.078785px;}
.x17_c00165{left:284.038950px;}
.x8_c00165{left:295.198785px;}
.xc_c00165{left:296.639100px;}
.x2_c00165{left:322.559685px;}
.x11_c00165{left:323.639100px;}
.xe_c00165{left:325.079385px;}
.xd_c00165{left:327.239850px;}
.x3_c00165{left:338.038950px;}
.xf_c00165{left:340.558635px;}
.x18_c00165{left:355.318935px;}
.x1b_c00165{left:356.398635px;}
.x19_c00165{left:357.838950px;}
.x13_c00165{left:395.278800px;}
.x14_c00165{left:410.759535px;}
.x9_c00165{left:415.078815px;}
.xa_c00165{left:430.559685px;}
.x1a_c00165{left:435.958335px;}
.x1c_c00165{left:437.039385px;}
.x1e_c00165{left:628.918350px;}
.x1d_c00165{left:633.239205px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.lsf_c00165{letter-spacing:-13.787067pt;}
.ls4_c00165{letter-spacing:-12.176600pt;}
.lsd_c00165{letter-spacing:-6.460067pt;}
.ls13_c00165{letter-spacing:-5.943000pt;}
.ls10_c00165{letter-spacing:-5.285000pt;}
.ls12_c00165{letter-spacing:-4.619300pt;}
.lse_c00165{letter-spacing:-3.961300pt;}
.lsa_c00165{letter-spacing:-3.431133pt;}
.lsc_c00165{letter-spacing:-3.304000pt;}
.ls7_c00165{letter-spacing:-3.300840pt;}
.ls1_c00165{letter-spacing:-2.639000pt;}
.ls9_c00165{letter-spacing:-2.053687pt;}
.ls0_c00165{letter-spacing:-1.981700pt;}
.ls14_c00165{letter-spacing:-1.426320pt;}
.lsb_c00165{letter-spacing:-1.369600pt;}
.ls8_c00165{letter-spacing:-1.361520pt;}
.ls5_c00165{letter-spacing:-1.323700pt;}
.ls3_c00165{letter-spacing:-0.716800pt;}
.ls15_c00165{letter-spacing:-0.679333pt;}
.ls6_c00165{letter-spacing:-0.658000pt;}
.ls2_c00165{letter-spacing:0.000000pt;}
.ls11_c00165{letter-spacing:9.093333pt;}
.ws0_c00165{word-spacing:0.000000pt;}
._18_c00165{margin-left:-4.257109pt;}
._17_c00165{margin-left:-1.745523pt;}
._5_c00165{width:1.767870pt;}
._4_c00165{width:2.939075pt;}
._0_c00165{width:4.137991pt;}
._2_c00165{width:5.178006pt;}
._3_c00165{width:6.693638pt;}
._1_c00165{width:8.127158pt;}
._c_c00165{width:9.377808pt;}
._15_c00165{width:11.079006pt;}
._16_c00165{width:12.419585pt;}
._19_c00165{width:15.127026pt;}
._11_c00165{width:17.322874pt;}
._14_c00165{width:18.314523pt;}
._10_c00165{width:20.443764pt;}
._13_c00165{width:21.583417pt;}
._f_c00165{width:23.722657pt;}
._12_c00165{width:24.843370pt;}
._b_c00165{width:33.118743pt;}
._9_c00165{width:36.176396pt;}
._6_c00165{width:38.991017pt;}
._8_c00165{width:40.040647pt;}
._7_c00165{width:41.378479pt;}
._a_c00165{width:44.200536pt;}
._d_c00165{width:135.522087pt;}
._e_c00165{width:555.617577pt;}
.fs9_c00165{font-size:30.000000pt;}
.fsc_c00165{font-size:66.666667pt;}
.fs3_c00165{font-size:69.333333pt;}
.fs0_c00165{font-size:70.000000pt;}
.fs5_c00165{font-size:70.666667pt;}
.fs4_c00165{font-size:71.333333pt;}
.fs6_c00165{font-size:72.000000pt;}
.fs7_c00165{font-size:72.666667pt;}
.fs8_c00165{font-size:73.333333pt;}
.fs2_c00165{font-size:74.666667pt;}
.fs1_c00165{font-size:75.333333pt;}
.fsb_c00165{font-size:76.666667pt;}
.fsa_c00165{font-size:117.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.y1a_c00165{bottom:179.838933pt;}
.y19_c00165{bottom:207.039587pt;}
.y18_c00165{bottom:230.399453pt;}
.y17_c00165{bottom:257.279320pt;}
.y16_c00165{bottom:283.519853pt;}
.y11_c00165{bottom:336.959453pt;}
.y10_c00165{bottom:336.959560pt;}
.yf_c00165{bottom:363.519307pt;}
.ye_c00165{bottom:390.079067pt;}
.yd_c00165{bottom:390.079240pt;}
.yc_c00165{bottom:417.279587pt;}
.y8_c00165{bottom:469.439987pt;}
.y15_c00165{bottom:550.079773pt;}
.y1d_c00165{bottom:550.399880pt;}
.y20_c00165{bottom:551.039067pt;}
.y14_c00165{bottom:585.919840pt;}
.y1f_c00165{bottom:586.559973pt;}
.y1c_c00165{bottom:586.560120pt;}
.y13_c00165{bottom:622.079587pt;}
.y1b_c00165{bottom:622.079747pt;}
.y12_c00165{bottom:622.080000pt;}
.y1e_c00165{bottom:622.400187pt;}
.yb_c00165{bottom:662.080120pt;}
.ya_c00165{bottom:694.080360pt;}
.y9_c00165{bottom:729.920453pt;}
.y7_c00165{bottom:792.319333pt;}
.y6_c00165{bottom:879.998987pt;}
.y5_c00165{bottom:906.878907pt;}
.y4_c00165{bottom:906.880493pt;}
.y3_c00165{bottom:933.440240pt;}
.y2_c00165{bottom:960.000000pt;}
.y1_c00165{bottom:1013.438880pt;}
.hd_c00165{height:29.443359pt;}
.h11_c00165{height:65.429688pt;}
.h4_c00165{height:68.046875pt;}
.h1_c00165{height:68.701172pt;}
.hc_c00165{height:69.838542pt;}
.h6_c00165{height:70.009766pt;}
.h5_c00165{height:70.497396pt;}
.h10_c00165{height:70.664062pt;}
.h7_c00165{height:71.218750pt;}
.ha_c00165{height:71.815104pt;}
.h9_c00165{height:71.890625pt;}
.hb_c00165{height:71.972656pt;}
.h8_c00165{height:72.562500pt;}
.h3_c00165{height:73.281250pt;}
.h2_c00165{height:73.935547pt;}
.hf_c00165{height:79.960938pt;}
.he_c00165{height:122.375000pt;}
.h0_c00165{height:1122.666667pt;}
.w0_c00165{width:793.333333pt;}
.x0_c00165{left:0.000000pt;}
.x12_c00165{left:122.879360pt;}
.x1_c00165{left:123.839333pt;}
.x4_c00165{left:145.599613pt;}
.x15_c00165{left:210.238787pt;}
.xb_c00165{left:211.839867pt;}
.x10_c00165{left:213.758160pt;}
.x5_c00165{left:214.719720pt;}
.x16_c00165{left:228.799867pt;}
.x6_c00165{left:232.639200pt;}
.x7_c00165{left:248.958920pt;}
.x17_c00165{left:252.479067pt;}
.x8_c00165{left:262.398920pt;}
.xc_c00165{left:263.679200pt;}
.x2_c00165{left:286.719720pt;}
.x11_c00165{left:287.679200pt;}
.xe_c00165{left:288.959453pt;}
.xd_c00165{left:290.879867pt;}
.x3_c00165{left:300.479067pt;}
.xf_c00165{left:302.718787pt;}
.x18_c00165{left:315.839053pt;}
.x1b_c00165{left:316.798787pt;}
.x19_c00165{left:318.079067pt;}
.x13_c00165{left:351.358933pt;}
.x14_c00165{left:365.119587pt;}
.x9_c00165{left:368.958947pt;}
.xa_c00165{left:382.719720pt;}
.x1a_c00165{left:387.518520pt;}
.x1c_c00165{left:388.479453pt;}
.x1e_c00165{left:559.038533pt;}
.x1d_c00165{left:562.879293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2da32b5fc2202f4b4ee36364.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_73ffef460c8fbbac54b9cd3d.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.364746;font-style:normal;font-weight:normal;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_5db237571dcd20d3f20bd074.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_f3e271430086af8152199445.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_4e9c438914d0eccbfc3cbb3c.woff2')format("woff");}.ff5_c00166{font-family:ff5_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;}
.m2_c00166{transform:matrix(0.154206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154206,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186080,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188920,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls4_c00166{letter-spacing:-14.907525px;}
.ls9_c00166{letter-spacing:-13.744575px;}
.ls2_c00166{letter-spacing:-11.312843px;}
.ls6_c00166{letter-spacing:-10.506983px;}
.lsa_c00166{letter-spacing:-9.698625px;}
.lsd_c00166{letter-spacing:-4.853475px;}
.ls15_c00166{letter-spacing:-4.591125px;}
.ls11_c00166{letter-spacing:-3.089625px;}
.ls5_c00166{letter-spacing:-3.055500px;}
.ls7_c00166{letter-spacing:-2.346300px;}
.lsf_c00166{letter-spacing:-2.310398px;}
.ls1_c00166{letter-spacing:-2.291625px;}
.ls12_c00166{letter-spacing:-1.604610px;}
.ls14_c00166{letter-spacing:-1.540800px;}
.ls0_c00166{letter-spacing:-1.526963px;}
.lsb_c00166{letter-spacing:-0.913275px;}
.ls13_c00166{letter-spacing:-0.811125px;}
.lsc_c00166{letter-spacing:-0.763875px;}
.ls10_c00166{letter-spacing:-0.748913px;}
.ls3_c00166{letter-spacing:0.000000px;}
.ls8_c00166{letter-spacing:0.807525px;}
.lse_c00166{letter-spacing:9.068400px;}
.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;}
._6_c00166{margin-left:-7.811832px;}
._5_c00166{margin-left:-5.891020px;}
._4_c00166{margin-left:-4.024828px;}
._7_c00166{margin-left:-1.617181px;}
._b_c00166{width:1.056145px;}
._3_c00166{width:2.088908px;}
._8_c00166{width:3.212450px;}
._1_c00166{width:4.443060px;}
._9_c00166{width:6.371382px;}
._2_c00166{width:7.804125px;}
._0_c00166{width:9.654689px;}
._a_c00166{width:17.356607px;}
.fc0_c00166{color:transparent;}
.fs6_c00166{font-size:72.000000px;}
.fs5_c00166{font-size:74.250000px;}
.fs0_c00166{font-size:78.750000px;}
.fs4_c00166{font-size:79.500000px;}
.fs2_c00166{font-size:80.250000px;}
.fs9_c00166{font-size:81.000000px;}
.fsa_c00166{font-size:82.500000px;}
.fs1_c00166{font-size:83.250000px;}
.fs3_c00166{font-size:84.750000px;}
.fs7_c00166{font-size:90.750000px;}
.fs8_c00166{font-size:132.000000px;}
.y0_c00166{bottom:0.000000px;}
.y1e_c00166{bottom:186.839715px;}
.y1d_c00166{bottom:216.359250px;}
.y1c_c00166{bottom:216.360465px;}
.y1b_c00166{bottom:245.880000px;}
.y1a_c00166{bottom:275.399535px;}
.y19_c00166{bottom:305.279250px;}
.y18_c00166{bottom:736.920000px;}
.y14_c00166{bottom:819.358605px;}
.y13_c00166{bottom:840.599115px;}
.y12_c00166{bottom:840.599805px;}
.y11_c00166{bottom:861.478410px;}
.y10_c00166{bottom:882.719325px;}
.yf_c00166{bottom:904.318605px;}
.ye_c00166{bottom:925.559535px;}
.yd_c00166{bottom:947.158815px;}
.yc_c00166{bottom:968.760135px;}
.yb_c00166{bottom:990.359805px;}
.y9_c00166{bottom:1011.599700px;}
.ya_c00166{bottom:1011.600135px;}
.y8_c00166{bottom:1032.838515px;}
.y7_c00166{bottom:1054.079400px;}
.y6_c00166{bottom:1075.319820px;}
.y4_c00166{bottom:1096.560120px;}
.y5_c00166{bottom:1096.560240px;}
.y17_c00166{bottom:1097.998905px;}
.y3_c00166{bottom:1117.798920px;}
.y2_c00166{bottom:1117.799310px;}
.y16_c00166{bottom:1118.879970px;}
.y1_c00166{bottom:1139.398590px;}
.y15_c00166{bottom:1140.479415px;}
.h7_c00166{height:75.093750px;}
.h1_c00166{height:77.288818px;}
.h6_c00166{height:77.440430px;}
.hd_c00166{height:78.760986px;}
.h3_c00166{height:79.309570px;}
.hb_c00166{height:79.365234px;}
.h5_c00166{height:80.121094px;}
.ha_c00166{height:80.876953px;}
.he_c00166{height:80.969238px;}
.hc_c00166{height:81.632812px;}
.h2_c00166{height:82.274414px;}
.h4_c00166{height:83.756836px;}
.h8_c00166{height:94.649414px;}
.h9_c00166{height:137.671875px;}
.h0_c00166{height:1263.000000px;}
.w0_c00166{width:892.500000px;}
.x0_c00166{left:0.000000px;}
.x1e_c00166{left:141.838950px;}
.x22_c00166{left:142.917480px;}
.x17_c00166{left:206.278800px;}
.x18_c00166{left:264.599700px;}
.x1_c00166{left:275.759535px;}
.x12_c00166{left:276.838620px;}
.x19_c00166{left:295.198785px;}
.xe_c00166{left:329.398635px;}
.x6_c00166{left:335.878350px;}
.x8_c00166{left:339.120000px;}
.xc_c00166{left:341.278800px;}
.x1a_c00166{left:360.719535px;}
.x21_c00166{left:361.798950px;}
.x2_c00166{left:368.998950px;}
.x10_c00166{left:374.040000px;}
.xf_c00166{left:379.438635px;}
.x1b_c00166{left:384.838950px;}
.xd_c00166{left:391.318770px;}
.x11_c00166{left:394.199385px;}
.x7_c00166{left:408.239820px;}
.x3_c00166{left:409.319235px;}
.x9_c00166{left:411.479685px;}
.x4_c00166{left:417.959385px;}
.xa_c00166{left:436.678530px;}
.x13_c00166{left:438.479685px;}
.x5_c00166{left:456.119385px;}
.xb_c00166{left:468.719565px;}
.x1c_c00166{left:472.318770px;}
.x1d_c00166{left:500.759085px;}
.x14_c00166{left:530.999160px;}
.x15_c00166{left:569.158770px;}
.x16_c00166{left:577.439670px;}
.x1f_c00166{left:647.279850px;}
.x20_c00166{left:660.959385px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls4_c00166{letter-spacing:-13.251133pt;}
.ls9_c00166{letter-spacing:-12.217400pt;}
.ls2_c00166{letter-spacing:-10.055860pt;}
.ls6_c00166{letter-spacing:-9.339540pt;}
.lsa_c00166{letter-spacing:-8.621000pt;}
.lsd_c00166{letter-spacing:-4.314200pt;}
.ls15_c00166{letter-spacing:-4.081000pt;}
.ls11_c00166{letter-spacing:-2.746333pt;}
.ls5_c00166{letter-spacing:-2.716000pt;}
.ls7_c00166{letter-spacing:-2.085600pt;}
.lsf_c00166{letter-spacing:-2.053687pt;}
.ls1_c00166{letter-spacing:-2.037000pt;}
.ls12_c00166{letter-spacing:-1.426320pt;}
.ls14_c00166{letter-spacing:-1.369600pt;}
.ls0_c00166{letter-spacing:-1.357300pt;}
.lsb_c00166{letter-spacing:-0.811800pt;}
.ls13_c00166{letter-spacing:-0.721000pt;}
.lsc_c00166{letter-spacing:-0.679000pt;}
.ls10_c00166{letter-spacing:-0.665700pt;}
.ls3_c00166{letter-spacing:0.000000pt;}
.ls8_c00166{letter-spacing:0.717800pt;}
.lse_c00166{letter-spacing:8.060800pt;}
.ws0_c00166{word-spacing:0.000000pt;}
._6_c00166{margin-left:-6.943850pt;}
._5_c00166{margin-left:-5.236462pt;}
._4_c00166{margin-left:-3.577625pt;}
._7_c00166{margin-left:-1.437494pt;}
._b_c00166{width:0.938795pt;}
._3_c00166{width:1.856807pt;}
._8_c00166{width:2.855511pt;}
._1_c00166{width:3.949386pt;}
._9_c00166{width:5.663451pt;}
._2_c00166{width:6.937000pt;}
._0_c00166{width:8.581946pt;}
._a_c00166{width:15.428095pt;}
.fs6_c00166{font-size:64.000000pt;}
.fs5_c00166{font-size:66.000000pt;}
.fs0_c00166{font-size:70.000000pt;}
.fs4_c00166{font-size:70.666667pt;}
.fs2_c00166{font-size:71.333333pt;}
.fs9_c00166{font-size:72.000000pt;}
.fsa_c00166{font-size:73.333333pt;}
.fs1_c00166{font-size:74.000000pt;}
.fs3_c00166{font-size:75.333333pt;}
.fs7_c00166{font-size:80.666667pt;}
.fs8_c00166{font-size:117.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y1e_c00166{bottom:166.079747pt;}
.y1d_c00166{bottom:192.319333pt;}
.y1c_c00166{bottom:192.320413pt;}
.y1b_c00166{bottom:218.560000pt;}
.y1a_c00166{bottom:244.799587pt;}
.y19_c00166{bottom:271.359333pt;}
.y18_c00166{bottom:655.040000pt;}
.y14_c00166{bottom:728.318760pt;}
.y13_c00166{bottom:747.199213pt;}
.y12_c00166{bottom:747.199827pt;}
.y11_c00166{bottom:765.758587pt;}
.y10_c00166{bottom:784.639400pt;}
.yf_c00166{bottom:803.838760pt;}
.ye_c00166{bottom:822.719587pt;}
.yd_c00166{bottom:841.918947pt;}
.yc_c00166{bottom:861.120120pt;}
.yb_c00166{bottom:880.319827pt;}
.y9_c00166{bottom:899.199733pt;}
.ya_c00166{bottom:899.200120pt;}
.y8_c00166{bottom:918.078680pt;}
.y7_c00166{bottom:936.959467pt;}
.y6_c00166{bottom:955.839840pt;}
.y4_c00166{bottom:974.720107pt;}
.y5_c00166{bottom:974.720213pt;}
.y17_c00166{bottom:975.999027pt;}
.y3_c00166{bottom:993.599040pt;}
.y2_c00166{bottom:993.599387pt;}
.y16_c00166{bottom:994.559973pt;}
.y1_c00166{bottom:1012.798747pt;}
.y15_c00166{bottom:1013.759480pt;}
.h7_c00166{height:66.750000pt;}
.h1_c00166{height:68.701172pt;}
.h6_c00166{height:68.835938pt;}
.hd_c00166{height:70.009766pt;}
.h3_c00166{height:70.497396pt;}
.hb_c00166{height:70.546875pt;}
.h5_c00166{height:71.218750pt;}
.ha_c00166{height:71.890625pt;}
.he_c00166{height:71.972656pt;}
.hc_c00166{height:72.562500pt;}
.h2_c00166{height:73.132813pt;}
.h4_c00166{height:74.450521pt;}
.h8_c00166{height:84.132812pt;}
.h9_c00166{height:122.375000pt;}
.h0_c00166{height:1122.666667pt;}
.w0_c00166{width:793.333333pt;}
.x0_c00166{left:0.000000pt;}
.x1e_c00166{left:126.079067pt;}
.x22_c00166{left:127.037760pt;}
.x17_c00166{left:183.358933pt;}
.x18_c00166{left:235.199733pt;}
.x1_c00166{left:245.119587pt;}
.x12_c00166{left:246.078773pt;}
.x19_c00166{left:262.398920pt;}
.xe_c00166{left:292.798787pt;}
.x6_c00166{left:298.558533pt;}
.x8_c00166{left:301.440000pt;}
.xc_c00166{left:303.358933pt;}
.x1a_c00166{left:320.639587pt;}
.x21_c00166{left:321.599067pt;}
.x2_c00166{left:327.999067pt;}
.x10_c00166{left:332.480000pt;}
.xf_c00166{left:337.278787pt;}
.x1b_c00166{left:342.079067pt;}
.xd_c00166{left:347.838907pt;}
.x11_c00166{left:350.399453pt;}
.x7_c00166{left:362.879840pt;}
.x3_c00166{left:363.839320pt;}
.x9_c00166{left:365.759720pt;}
.x4_c00166{left:371.519453pt;}
.xa_c00166{left:388.158693pt;}
.x13_c00166{left:389.759720pt;}
.x5_c00166{left:405.439453pt;}
.xb_c00166{left:416.639613pt;}
.x1c_c00166{left:419.838907pt;}
.x1d_c00166{left:445.119187pt;}
.x14_c00166{left:471.999253pt;}
.x15_c00166{left:505.918907pt;}
.x16_c00166{left:513.279707pt;}
.x1f_c00166{left:575.359867pt;}
.x20_c00166{left:587.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ae2ba1d38add94f60103a5a.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_85e46a58d4ec5b10d3a9144e.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_c5a956774c4513aba7d01aa0.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.364746;font-style:normal;font-weight:normal;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_3d745c921f114813867cb6e1.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;}
.mc_c00167{transform:matrix(0.172018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172018,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.336022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336022,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls8_c00167{letter-spacing:-7.576538px;}
.lsf_c00167{letter-spacing:-6.540000px;}
.lsd_c00167{letter-spacing:-5.935125px;}
.ls7_c00167{letter-spacing:-4.921875px;}
.lsa_c00167{letter-spacing:-4.543088px;}
.lsb_c00167{letter-spacing:-4.464000px;}
.ls9_c00167{letter-spacing:-3.787875px;}
.ls6_c00167{letter-spacing:-3.031875px;}
.lse_c00167{letter-spacing:-2.776950px;}
.ls0_c00167{letter-spacing:-2.267213px;}
.ls1_c00167{letter-spacing:-1.605000px;}
.ls5_c00167{letter-spacing:-1.512000px;}
.ls3_c00167{letter-spacing:-0.770400px;}
.ls2_c00167{letter-spacing:-0.756000px;}
.lsc_c00167{letter-spacing:0.000000px;}
.ls4_c00167{letter-spacing:3.252225px;}
.ls10_c00167{letter-spacing:7.298100px;}
.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;}
._10_c00167{margin-left:-36.267000px;}
._12_c00167{margin-left:-8.708902px;}
._13_c00167{margin-left:-3.173201px;}
._14_c00167{margin-left:-1.913625px;}
._4_c00167{width:1.953303px;}
._1_c00167{width:4.000863px;}
._f_c00167{width:5.258864px;}
._3_c00167{width:6.529950px;}
._2_c00167{width:7.556608px;}
._0_c00167{width:9.446850px;}
._c_c00167{width:11.043718px;}
._6_c00167{width:12.695833px;}
._d_c00167{width:13.956014px;}
._11_c00167{width:15.196630px;}
._e_c00167{width:16.382120px;}
._5_c00167{width:20.208098px;}
._18_c00167{width:23.067935px;}
._15_c00167{width:24.935703px;}
._17_c00167{width:27.353994px;}
._7_c00167{width:28.775008px;}
._b_c00167{width:30.024225px;}
._a_c00167{width:32.158895px;}
._16_c00167{width:33.330513px;}
._9_c00167{width:34.541446px;}
._8_c00167{width:37.719433px;}
.fc0_c00167{color:transparent;}
.fs3_c00167{font-size:69.750000px;}
.fs6_c00167{font-size:71.250000px;}
.fs7_c00167{font-size:74.250000px;}
.fs2_c00167{font-size:77.250000px;}
.fs0_c00167{font-size:78.750000px;}
.fs9_c00167{font-size:79.500000px;}
.fs1_c00167{font-size:80.250000px;}
.fs8_c00167{font-size:81.750000px;}
.fs5_c00167{font-size:101.250000px;}
.fs4_c00167{font-size:115.500000px;}
.y0_c00167{bottom:0.000000px;}
.y1f_c00167{bottom:272.520270px;}
.y1e_c00167{bottom:293.040510px;}
.y1d_c00167{bottom:314.639790px;}
.y1c_c00167{bottom:357.479685px;}
.y1b_c00167{bottom:399.960570px;}
.y1a_c00167{bottom:421.921185px;}
.y19_c00167{bottom:442.800540px;}
.y18_c00167{bottom:464.399850px;}
.y17_c00167{bottom:485.640750px;}
.y15_c00167{bottom:507.240075px;}
.y16_c00167{bottom:507.240420px;}
.y14_c00167{bottom:528.480990px;}
.y13_c00167{bottom:549.719790px;}
.y12_c00167{bottom:592.559685px;}
.y11_c00167{bottom:634.679670px;}
.yf_c00167{bottom:656.280510px;}
.y10_c00167{bottom:656.280900px;}
.ye_c00167{bottom:677.519295px;}
.yd_c00167{bottom:719.280435px;}
.yc_c00167{bottom:762.840585px;}
.yb_c00167{bottom:784.081050px;}
.y9_c00167{bottom:805.679760px;}
.ya_c00167{bottom:805.680720px;}
.y8_c00167{bottom:848.880150px;}
.y7_c00167{bottom:959.399730px;}
.y6_c00167{bottom:989.639655px;}
.y5_c00167{bottom:989.641620px;}
.y4_c00167{bottom:1019.521335px;}
.y3_c00167{bottom:1049.040870px;}
.y2_c00167{bottom:1078.920600px;}
.y1_c00167{bottom:1138.680090px;}
.h4_c00167{height:72.747070px;}
.h7_c00167{height:74.311523px;}
.h3_c00167{height:75.816650px;}
.h1_c00167{height:77.288818px;}
.h8_c00167{height:77.440430px;}
.h2_c00167{height:78.760986px;}
.ha_c00167{height:80.121094px;}
.h9_c00167{height:80.791992px;}
.h6_c00167{height:105.600586px;}
.h5_c00167{height:120.462891px;}
.h0_c00167{height:1263.000000px;}
.w0_c00167{width:892.500000px;}
.x0_c00167{left:0.000000px;}
.x8_c00167{left:140.042445px;}
.x1_c00167{left:141.118815px;}
.x5_c00167{left:165.958350px;}
.x17_c00167{left:192.959040px;}
.xd_c00167{left:194.038200px;}
.x9_c00167{left:218.519685px;}
.xa_c00167{left:235.439250px;}
.x13_c00167{left:260.639700px;}
.x1c_c00167{left:264.958950px;}
.x14_c00167{left:266.758500px;}
.x15_c00167{left:272.878950px;}
.x1d_c00167{left:280.439685px;}
.x2_c00167{left:312.838515px;}
.x3_c00167{left:335.519100px;}
.x4_c00167{left:350.639100px;}
.x16_c00167{left:362.519100px;}
.x12_c00167{left:368.278800px;}
.xe_c00167{left:419.038920px;}
.xf_c00167{left:425.159415px;}
.xb_c00167{left:460.079400px;}
.xc_c00167{left:474.479235px;}
.x18_c00167{left:487.438665px;}
.x19_c00167{left:493.199850px;}
.x1a_c00167{left:532.798515px;}
.x1b_c00167{left:569.878920px;}
.x10_c00167{left:587.518620px;}
.x11_c00167{left:593.639100px;}
.x1e_c00167{left:627.118785px;}
.x6_c00167{left:629.638545px;}
.x1f_c00167{left:633.239220px;}
.x20_c00167{left:639.719100px;}
.x7_c00167{left:649.799520px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls8_c00167{letter-spacing:-6.734700pt;}
.lsf_c00167{letter-spacing:-5.813333pt;}
.lsd_c00167{letter-spacing:-5.275667pt;}
.ls7_c00167{letter-spacing:-4.375000pt;}
.lsa_c00167{letter-spacing:-4.038300pt;}
.lsb_c00167{letter-spacing:-3.968000pt;}
.ls9_c00167{letter-spacing:-3.367000pt;}
.ls6_c00167{letter-spacing:-2.695000pt;}
.lse_c00167{letter-spacing:-2.468400pt;}
.ls0_c00167{letter-spacing:-2.015300pt;}
.ls1_c00167{letter-spacing:-1.426667pt;}
.ls5_c00167{letter-spacing:-1.344000pt;}
.ls3_c00167{letter-spacing:-0.684800pt;}
.ls2_c00167{letter-spacing:-0.672000pt;}
.lsc_c00167{letter-spacing:0.000000pt;}
.ls4_c00167{letter-spacing:2.890867pt;}
.ls10_c00167{letter-spacing:6.487200pt;}
.ws0_c00167{word-spacing:0.000000pt;}
._10_c00167{margin-left:-32.237333pt;}
._12_c00167{margin-left:-7.741246pt;}
._13_c00167{margin-left:-2.820623pt;}
._14_c00167{margin-left:-1.701000pt;}
._4_c00167{width:1.736269pt;}
._1_c00167{width:3.556323pt;}
._f_c00167{width:4.674546pt;}
._3_c00167{width:5.804400pt;}
._2_c00167{width:6.716985pt;}
._0_c00167{width:8.397200pt;}
._c_c00167{width:9.816638pt;}
._6_c00167{width:11.285185pt;}
._d_c00167{width:12.405346pt;}
._11_c00167{width:13.508115pt;}
._e_c00167{width:14.561885pt;}
._5_c00167{width:17.962754pt;}
._18_c00167{width:20.504831pt;}
._15_c00167{width:22.165069pt;}
._17_c00167{width:24.314662pt;}
._7_c00167{width:25.577785pt;}
._b_c00167{width:26.688200pt;}
._a_c00167{width:28.585685pt;}
._16_c00167{width:29.627123pt;}
._9_c00167{width:30.703508pt;}
._8_c00167{width:33.528385pt;}
.fs3_c00167{font-size:62.000000pt;}
.fs6_c00167{font-size:63.333333pt;}
.fs7_c00167{font-size:66.000000pt;}
.fs2_c00167{font-size:68.666667pt;}
.fs0_c00167{font-size:70.000000pt;}
.fs9_c00167{font-size:70.666667pt;}
.fs1_c00167{font-size:71.333333pt;}
.fs8_c00167{font-size:72.666667pt;}
.fs5_c00167{font-size:90.000000pt;}
.fs4_c00167{font-size:102.666667pt;}
.y0_c00167{bottom:0.000000pt;}
.y1f_c00167{bottom:242.240240pt;}
.y1e_c00167{bottom:260.480453pt;}
.y1d_c00167{bottom:279.679813pt;}
.y1c_c00167{bottom:317.759720pt;}
.y1b_c00167{bottom:355.520507pt;}
.y1a_c00167{bottom:375.041053pt;}
.y19_c00167{bottom:393.600480pt;}
.y18_c00167{bottom:412.799867pt;}
.y17_c00167{bottom:431.680667pt;}
.y15_c00167{bottom:450.880067pt;}
.y16_c00167{bottom:450.880373pt;}
.y14_c00167{bottom:469.760880pt;}
.y13_c00167{bottom:488.639813pt;}
.y12_c00167{bottom:526.719720pt;}
.y11_c00167{bottom:564.159707pt;}
.yf_c00167{bottom:583.360453pt;}
.y10_c00167{bottom:583.360800pt;}
.ye_c00167{bottom:602.239373pt;}
.yd_c00167{bottom:639.360387pt;}
.yc_c00167{bottom:678.080520pt;}
.yb_c00167{bottom:696.960933pt;}
.y9_c00167{bottom:716.159787pt;}
.ya_c00167{bottom:716.160640pt;}
.y8_c00167{bottom:754.560133pt;}
.y7_c00167{bottom:852.799760pt;}
.y6_c00167{bottom:879.679693pt;}
.y5_c00167{bottom:879.681440pt;}
.y4_c00167{bottom:906.241187pt;}
.y3_c00167{bottom:932.480773pt;}
.y2_c00167{bottom:959.040533pt;}
.y1_c00167{bottom:1012.160080pt;}
.h4_c00167{height:64.664062pt;}
.h7_c00167{height:66.054688pt;}
.h3_c00167{height:67.392578pt;}
.h1_c00167{height:68.701172pt;}
.h8_c00167{height:68.835938pt;}
.h2_c00167{height:70.009766pt;}
.ha_c00167{height:71.218750pt;}
.h9_c00167{height:71.815104pt;}
.h6_c00167{height:93.867188pt;}
.h5_c00167{height:107.078125pt;}
.h0_c00167{height:1122.666667pt;}
.w0_c00167{width:793.333333pt;}
.x0_c00167{left:0.000000pt;}
.x8_c00167{left:124.482173pt;}
.x1_c00167{left:125.438947pt;}
.x5_c00167{left:147.518533pt;}
.x17_c00167{left:171.519147pt;}
.xd_c00167{left:172.478400pt;}
.x9_c00167{left:194.239720pt;}
.xa_c00167{left:209.279333pt;}
.x13_c00167{left:231.679733pt;}
.x1c_c00167{left:235.519067pt;}
.x14_c00167{left:237.118667pt;}
.x15_c00167{left:242.559067pt;}
.x1d_c00167{left:249.279720pt;}
.x2_c00167{left:278.078680pt;}
.x3_c00167{left:298.239200pt;}
.x4_c00167{left:311.679200pt;}
.x16_c00167{left:322.239200pt;}
.x12_c00167{left:327.358933pt;}
.xe_c00167{left:372.479040pt;}
.xf_c00167{left:377.919480pt;}
.xb_c00167{left:408.959467pt;}
.xc_c00167{left:421.759320pt;}
.x18_c00167{left:433.278813pt;}
.x19_c00167{left:438.399867pt;}
.x1a_c00167{left:473.598680pt;}
.x1b_c00167{left:506.559040pt;}
.x10_c00167{left:522.238773pt;}
.x11_c00167{left:527.679200pt;}
.x1e_c00167{left:557.438920pt;}
.x6_c00167{left:559.678707pt;}
.x1f_c00167{left:562.879307pt;}
.x20_c00167{left:568.639200pt;}
.x7_c00167{left:577.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66276455c7faa13144f98d20.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_5a723e35d084fede9aa9f03b.woff2')format("woff");}.ff2_c00168{font-family:ff2_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:ff3_c00168;src:url('chunks/assets/font_8456d971ceba2decc1934021.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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_e8521a28e88c374803c4d6b4.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.364746;font-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_c00168{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.535326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535326,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.v1_c00168{vertical-align:1.433580px;}
.v2_c00168{vertical-align:2.874300px;}
.v3_c00168{vertical-align:4.307880px;}
.lsf_c00168{letter-spacing:-17.560200px;}
.ls13_c00168{letter-spacing:-7.426125px;}
.ls12_c00168{letter-spacing:-5.945625px;}
.ls2_c00168{letter-spacing:-5.196713px;}
.ls8_c00168{letter-spacing:-4.975500px;}
.lsd_c00168{letter-spacing:-4.456463px;}
.ls3_c00168{letter-spacing:-3.717000px;}
.lsb_c00168{letter-spacing:-3.304800px;}
.ls4_c00168{letter-spacing:-2.968875px;}
.ls9_c00168{letter-spacing:-2.889000px;}
.ls1_c00168{letter-spacing:-2.229413px;}
.ls5_c00168{letter-spacing:-1.629975px;}
.ls7_c00168{letter-spacing:-1.603118px;}
.lse_c00168{letter-spacing:-1.560000px;}
.lsc_c00168{letter-spacing:-1.489163px;}
.ls10_c00168{letter-spacing:-0.742050px;}
.lsa_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:1.489163px;}
.ls11_c00168{letter-spacing:4.500000px;}
.ls6_c00168{letter-spacing:19.596600px;}
.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;}
._12_c00168{margin-left:-4.649697px;}
._11_c00168{margin-left:-1.180581px;}
._3_c00168{width:1.953223px;}
._13_c00168{width:3.015650px;}
._0_c00168{width:4.118328px;}
._8_c00168{width:5.619333px;}
._9_c00168{width:7.150233px;}
._2_c00168{width:8.970249px;}
._a_c00168{width:10.873012px;}
._16_c00168{width:13.233789px;}
._14_c00168{width:14.933689px;}
._15_c00168{width:16.305752px;}
._1_c00168{width:18.613053px;}
._d_c00168{width:20.949045px;}
._17_c00168{width:22.106819px;}
._18_c00168{width:24.188360px;}
._e_c00168{width:25.677938px;}
._b_c00168{width:29.539452px;}
._10_c00168{width:30.860357px;}
._f_c00168{width:33.074242px;}
._c_c00168{width:37.012441px;}
._5_c00168{width:82.651305px;}
._7_c00168{width:94.347804px;}
._6_c00168{width:235.536243px;}
._4_c00168{width:287.059767px;}
.fc0_c00168{color:transparent;}
.fs2_c00168{font-size:57.000000px;}
.fs5_c00168{font-size:69.000000px;}
.fs6_c00168{font-size:72.000000px;}
.fsa_c00168{font-size:75.000000px;}
.fs9_c00168{font-size:76.500000px;}
.fs1_c00168{font-size:77.250000px;}
.fs7_c00168{font-size:78.000000px;}
.fs0_c00168{font-size:78.750000px;}
.fs4_c00168{font-size:80.250000px;}
.fs3_c00168{font-size:81.750000px;}
.fs8_c00168{font-size:84.750000px;}
.y0_c00168{bottom:0.000000px;}
.y13_c00168{bottom:178.919475px;}
.y12_c00168{bottom:209.159385px;}
.y11_c00168{bottom:209.159685px;}
.y10_c00168{bottom:238.320825px;}
.yf_c00168{bottom:267.840360px;}
.ye_c00168{bottom:327.960000px;}
.ya_c00168{bottom:387.717405px;}
.yb_c00168{bottom:387.899235px;}
.yc_c00168{bottom:388.439715px;}
.yd_c00168{bottom:388.798920px;}
.y9_c00168{bottom:417.059685px;}
.y8_c00168{bottom:429.119385px;}
.y7_c00168{bottom:446.759085px;}
.y6_c00168{bottom:446.760195px;}
.y5_c00168{bottom:477.000120px;}
.y4_c00168{bottom:1029.240255px;}
.y3_c00168{bottom:1050.839535px;}
.y2_c00168{bottom:1072.439205px;}
.y1_c00168{bottom:1114.559055px;}
.h3_c00168{height:55.914551px;}
.h7_c00168{height:70.664062px;}
.h6_c00168{height:71.964844px;}
.hb_c00168{height:75.080566px;}
.hc_c00168{height:75.585938px;}
.h9_c00168{height:76.552734px;}
.h1_c00168{height:77.288818px;}
.h2_c00168{height:77.853516px;}
.h5_c00168{height:78.760986px;}
.h4_c00168{height:80.233154px;}
.h8_c00168{height:81.596698px;}
.ha_c00168{height:83.756836px;}
.h0_c00168{height:1263.000000px;}
.w0_c00168{width:892.500000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:138.958350px;}
.xb_c00168{left:140.037390px;}
.xa_c00168{left:206.278800px;}
.x4_c00168{left:222.479010px;}
.x5_c00168{left:271.438635px;}
.x2_c00168{left:309.239250px;}
.x3_c00168{left:349.918950px;}
.xc_c00168{left:354.958350px;}
.xd_c00168{left:372.599700px;}
.x6_c00168{left:383.759535px;}
.x7_c00168{left:431.279850px;}
.x8_c00168{left:543.599070px;}
.x9_c00168{left:591.839535px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:1.274293pt;}
.v2_c00168{vertical-align:2.554933pt;}
.v3_c00168{vertical-align:3.829227pt;}
.lsf_c00168{letter-spacing:-15.609067pt;}
.ls13_c00168{letter-spacing:-6.601000pt;}
.ls12_c00168{letter-spacing:-5.285000pt;}
.ls2_c00168{letter-spacing:-4.619300pt;}
.ls8_c00168{letter-spacing:-4.422667pt;}
.lsd_c00168{letter-spacing:-3.961300pt;}
.ls3_c00168{letter-spacing:-3.304000pt;}
.lsb_c00168{letter-spacing:-2.937600pt;}
.ls4_c00168{letter-spacing:-2.639000pt;}
.ls9_c00168{letter-spacing:-2.568000pt;}
.ls1_c00168{letter-spacing:-1.981700pt;}
.ls5_c00168{letter-spacing:-1.448867pt;}
.ls7_c00168{letter-spacing:-1.424993pt;}
.lse_c00168{letter-spacing:-1.386667pt;}
.lsc_c00168{letter-spacing:-1.323700pt;}
.ls10_c00168{letter-spacing:-0.659600pt;}
.lsa_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:1.323700pt;}
.ls11_c00168{letter-spacing:4.000000pt;}
.ls6_c00168{letter-spacing:17.419200pt;}
.ws0_c00168{word-spacing:0.000000pt;}
._12_c00168{margin-left:-4.133064pt;}
._11_c00168{margin-left:-1.049406pt;}
._3_c00168{width:1.736198pt;}
._13_c00168{width:2.680577pt;}
._0_c00168{width:3.660736pt;}
._8_c00168{width:4.994962pt;}
._9_c00168{width:6.355762pt;}
._2_c00168{width:7.973555pt;}
._a_c00168{width:9.664900pt;}
._16_c00168{width:11.763368pt;}
._14_c00168{width:13.274391pt;}
._15_c00168{width:14.494002pt;}
._1_c00168{width:16.544936pt;}
._d_c00168{width:18.621374pt;}
._17_c00168{width:19.650506pt;}
._18_c00168{width:21.500764pt;}
._e_c00168{width:22.824834pt;}
._b_c00168{width:26.257291pt;}
._10_c00168{width:27.431428pt;}
._f_c00168{width:29.399326pt;}
._c_c00168{width:32.899947pt;}
._5_c00168{width:73.467826pt;}
._7_c00168{width:83.864715pt;}
._6_c00168{width:209.365549pt;}
._4_c00168{width:255.164238pt;}
.fs2_c00168{font-size:50.666667pt;}
.fs5_c00168{font-size:61.333333pt;}
.fs6_c00168{font-size:64.000000pt;}
.fsa_c00168{font-size:66.666667pt;}
.fs9_c00168{font-size:68.000000pt;}
.fs1_c00168{font-size:68.666667pt;}
.fs7_c00168{font-size:69.333333pt;}
.fs0_c00168{font-size:70.000000pt;}
.fs4_c00168{font-size:71.333333pt;}
.fs3_c00168{font-size:72.666667pt;}
.fs8_c00168{font-size:75.333333pt;}
.y0_c00168{bottom:0.000000pt;}
.y13_c00168{bottom:159.039533pt;}
.y12_c00168{bottom:185.919453pt;}
.y11_c00168{bottom:185.919720pt;}
.y10_c00168{bottom:211.840733pt;}
.yf_c00168{bottom:238.080320pt;}
.ye_c00168{bottom:291.520000pt;}
.ya_c00168{bottom:344.637693pt;}
.yb_c00168{bottom:344.799320pt;}
.yc_c00168{bottom:345.279747pt;}
.yd_c00168{bottom:345.599040pt;}
.y9_c00168{bottom:370.719720pt;}
.y8_c00168{bottom:381.439453pt;}
.y7_c00168{bottom:397.119187pt;}
.y6_c00168{bottom:397.120173pt;}
.y5_c00168{bottom:424.000107pt;}
.y4_c00168{bottom:914.880227pt;}
.y3_c00168{bottom:934.079587pt;}
.y2_c00168{bottom:953.279293pt;}
.y1_c00168{bottom:990.719160pt;}
.h3_c00168{height:49.701823pt;}
.h7_c00168{height:62.812500pt;}
.h6_c00168{height:63.968750pt;}
.hb_c00168{height:66.738281pt;}
.hc_c00168{height:67.187500pt;}
.h9_c00168{height:68.046875pt;}
.h1_c00168{height:68.701172pt;}
.h2_c00168{height:69.203125pt;}
.h5_c00168{height:70.009766pt;}
.h4_c00168{height:71.318359pt;}
.h8_c00168{height:72.530399pt;}
.ha_c00168{height:74.450521pt;}
.h0_c00168{height:1122.666667pt;}
.w0_c00168{width:793.333333pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:123.518533pt;}
.xb_c00168{left:124.477680pt;}
.xa_c00168{left:183.358933pt;}
.x4_c00168{left:197.759120pt;}
.x5_c00168{left:241.278787pt;}
.x2_c00168{left:274.879333pt;}
.x3_c00168{left:311.039067pt;}
.xc_c00168{left:315.518533pt;}
.xd_c00168{left:331.199733pt;}
.x6_c00168{left:341.119587pt;}
.x7_c00168{left:383.359867pt;}
.x8_c00168{left:483.199173pt;}
.x9_c00168{left:526.079587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d7defa39bbd047cbb5dca88.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_1883907cf412314916e28be7.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_93d43a74a0cd864cc2b3dfd3.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_7e4fbc4c9f8afbf15d51f207.woff2')format("woff");}.ff4_c00169{font-family:ff4_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;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_32d224b4803c50e1a458fbc7.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.364746;font-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_c00169{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{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_c00169{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m14_c00169{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m15_c00169{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00169{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m5_c00169{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_c00169{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls14_c00169{letter-spacing:-23.209268px;}
.ls1c_c00169{letter-spacing:-17.252055px;}
.ls13_c00169{letter-spacing:-11.682075px;}
.lsc_c00169{letter-spacing:-8.914500px;}
.lsd_c00169{letter-spacing:-8.175038px;}
.ls18_c00169{letter-spacing:-7.426125px;}
.lsb_c00169{letter-spacing:-6.685875px;}
.ls17_c00169{letter-spacing:-5.945625px;}
.ls8_c00169{letter-spacing:-5.247533px;}
.ls9_c00169{letter-spacing:-5.196713px;}
.ls19_c00169{letter-spacing:-4.586355px;}
.lsa_c00169{letter-spacing:-4.456463px;}
.ls1_c00169{letter-spacing:-3.717000px;}
.ls3_c00169{letter-spacing:-2.968875px;}
.lsf_c00169{letter-spacing:-2.940600px;}
.ls2_c00169{letter-spacing:-2.229413px;}
.ls12_c00169{letter-spacing:-2.125463px;}
.ls1b_c00169{letter-spacing:-1.560450px;}
.ls10_c00169{letter-spacing:-1.560038px;}
.ls1a_c00169{letter-spacing:-1.555500px;}
.ls11_c00169{letter-spacing:-1.526400px;}
.ls6_c00169{letter-spacing:-1.489163px;}
.lse_c00169{letter-spacing:-0.846450px;}
.ls5_c00169{letter-spacing:-0.740250px;}
.ls7_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.740250px;}
.ls16_c00169{letter-spacing:3.637710px;}
.ls15_c00169{letter-spacing:4.102800px;}
.ls4_c00169{letter-spacing:4.685175px;}
.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;}
._e_c00169{margin-left:-8.045367px;}
._d_c00169{margin-left:-6.050125px;}
._b_c00169{margin-left:-2.953704px;}
._6_c00169{margin-left:-1.574643px;}
._7_c00169{width:1.486503px;}
._4_c00169{width:2.840498px;}
._3_c00169{width:3.938644px;}
._1_c00169{width:5.380869px;}
._0_c00169{width:6.867475px;}
._5_c00169{width:8.292583px;}
._2_c00169{width:9.686369px;}
._14_c00169{width:10.731515px;}
._9_c00169{width:12.164186px;}
._a_c00169{width:14.474131px;}
._10_c00169{width:15.618517px;}
._8_c00169{width:16.722548px;}
._c_c00169{width:18.952213px;}
._12_c00169{width:21.388441px;}
._f_c00169{width:23.527201px;}
._13_c00169{width:25.944856px;}
._11_c00169{width:27.189314px;}
.fc0_c00169{color:transparent;}
.fsd_c00169{font-size:63.750000px;}
.fs4_c00169{font-size:67.500000px;}
.fsb_c00169{font-size:69.000000px;}
.fsf_c00169{font-size:70.500000px;}
.fs6_c00169{font-size:74.250000px;}
.fse_c00169{font-size:75.750000px;}
.fs9_c00169{font-size:77.250000px;}
.fs7_c00169{font-size:78.000000px;}
.fs0_c00169{font-size:78.750000px;}
.fs8_c00169{font-size:79.500000px;}
.fsc_c00169{font-size:80.250000px;}
.fs5_c00169{font-size:81.000000px;}
.fs2_c00169{font-size:81.750000px;}
.fs1_c00169{font-size:82.500000px;}
.fsa_c00169{font-size:83.250000px;}
.fs3_c00169{font-size:96.750000px;}
.y0_c00169{bottom:0.000000px;}
.y1f_c00169{bottom:279.000270px;}
.y1e_c00169{bottom:308.880000px;}
.y1d_c00169{bottom:308.880840px;}
.y1c_c00169{bottom:337.679700px;}
.y1b_c00169{bottom:337.681500px;}
.y1a_c00169{bottom:367.921410px;}
.y19_c00169{bottom:427.679070px;}
.y18_c00169{bottom:457.560585px;}
.y16_c00169{bottom:487.439505px;}
.y17_c00169{bottom:487.440315px;}
.y15_c00169{bottom:517.319235px;}
.y14_c00169{bottom:528.119985px;}
.y13_c00169{bottom:546.839280px;}
.y12_c00169{bottom:606.240345px;}
.y11_c00169{bottom:665.999790px;}
.y10_c00169{bottom:695.879520px;}
.yf_c00169{bottom:695.880405px;}
.ye_c00169{bottom:725.760135px;}
.yd_c00169{bottom:725.760270px;}
.yc_c00169{bottom:754.919310px;}
.yb_c00169{bottom:785.519715px;}
.ya_c00169{bottom:845.999355px;}
.y9_c00169{bottom:905.400105px;}
.y8_c00169{bottom:935.279820px;}
.y7_c00169{bottom:994.679070px;}
.y6_c00169{bottom:1016.280390px;}
.y5_c00169{bottom:1016.280540px;}
.y4_c00169{bottom:1076.039985px;}
.y2_c00169{bottom:1105.918905px;}
.y3_c00169{bottom:1105.918950px;}
.y1_c00169{bottom:1136.158815px;}
.h12_c00169{height:66.489258px;}
.h14_c00169{height:69.673828px;}
.h5_c00169{height:70.400391px;}
.hf_c00169{height:71.964844px;}
.h13_c00169{height:76.341797px;}
.he_c00169{height:76.552734px;}
.h1_c00169{height:77.288818px;}
.h7_c00169{height:77.440430px;}
.hc_c00169{height:77.853516px;}
.h10_c00169{height:78.024902px;}
.h8_c00169{height:78.609375px;}
.h11_c00169{height:78.760986px;}
.h9_c00169{height:79.365234px;}
.h6_c00169{height:79.497070px;}
.ha_c00169{height:80.121094px;}
.h3_c00169{height:80.233154px;}
.hb_c00169{height:80.791992px;}
.h2_c00169{height:80.969238px;}
.hd_c00169{height:82.274414px;}
.h4_c00169{height:100.907227px;}
.h0_c00169{height:1263.000000px;}
.w0_c00169{width:892.500000px;}
.x0_c00169{left:0.000000px;}
.x1c_c00169{left:94.679700px;}
.x1b_c00169{left:137.159385px;}
.xe_c00169{left:138.598350px;}
.x1_c00169{left:140.039400px;}
.x16_c00169{left:163.079400px;}
.xf_c00169{left:189.718500px;}
.x7_c00169{left:193.679220px;}
.x22_c00169{left:205.919535px;}
.x1d_c00169{left:218.519685px;}
.x1e_c00169{left:232.199385px;}
.x1f_c00169{left:267.839535px;}
.x10_c00169{left:274.678500px;}
.x8_c00169{left:294.478635px;}
.x20_c00169{left:297.359250px;}
.x11_c00169{left:298.799535px;}
.x21_c00169{left:311.038950px;}
.x9_c00169{left:316.080000px;}
.x17_c00169{left:346.679100px;}
.x19_c00169{left:360.719535px;}
.x18_c00169{left:370.080000px;}
.x1a_c00169{left:380.878950px;}
.x12_c00169{left:400.319820px;}
.xa_c00169{left:446.759085px;}
.xb_c00169{left:466.918350px;}
.x13_c00169{left:479.159415px;}
.x14_c00169{left:502.199385px;}
.x24_c00169{left:503.998950px;}
.x15_c00169{left:517.678530px;}
.x25_c00169{left:529.919535px;}
.x2_c00169{left:541.438620px;}
.x3_c00169{left:565.559685px;}
.x23_c00169{left:567.359250px;}
.x4_c00169{left:568.438620px;}
.xc_c00169{left:570.599070px;}
.x5_c00169{left:582.119985px;}
.xd_c00169{left:590.758530px;}
.x26_c00169{left:740.159820px;}
.x27_c00169{left:758.519670px;}
.x6_c00169{left:765.358605px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls14_c00169{letter-spacing:-20.630460pt;}
.ls1c_c00169{letter-spacing:-15.335160pt;}
.ls13_c00169{letter-spacing:-10.384067pt;}
.lsc_c00169{letter-spacing:-7.924000pt;}
.lsd_c00169{letter-spacing:-7.266700pt;}
.ls18_c00169{letter-spacing:-6.601000pt;}
.lsb_c00169{letter-spacing:-5.943000pt;}
.ls17_c00169{letter-spacing:-5.285000pt;}
.ls8_c00169{letter-spacing:-4.664473pt;}
.ls9_c00169{letter-spacing:-4.619300pt;}
.ls19_c00169{letter-spacing:-4.076760pt;}
.lsa_c00169{letter-spacing:-3.961300pt;}
.ls1_c00169{letter-spacing:-3.304000pt;}
.ls3_c00169{letter-spacing:-2.639000pt;}
.lsf_c00169{letter-spacing:-2.613867pt;}
.ls2_c00169{letter-spacing:-1.981700pt;}
.ls12_c00169{letter-spacing:-1.889300pt;}
.ls1b_c00169{letter-spacing:-1.387067pt;}
.ls10_c00169{letter-spacing:-1.386700pt;}
.ls1a_c00169{letter-spacing:-1.382667pt;}
.ls11_c00169{letter-spacing:-1.356800pt;}
.ls6_c00169{letter-spacing:-1.323700pt;}
.lse_c00169{letter-spacing:-0.752400pt;}
.ls5_c00169{letter-spacing:-0.658000pt;}
.ls7_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.658000pt;}
.ls16_c00169{letter-spacing:3.233520pt;}
.ls15_c00169{letter-spacing:3.646933pt;}
.ls4_c00169{letter-spacing:4.164600pt;}
.ws0_c00169{word-spacing:0.000000pt;}
._e_c00169{margin-left:-7.151438pt;}
._d_c00169{margin-left:-5.377889pt;}
._b_c00169{margin-left:-2.625515pt;}
._6_c00169{margin-left:-1.399683pt;}
._7_c00169{width:1.321336pt;}
._4_c00169{width:2.524887pt;}
._3_c00169{width:3.501017pt;}
._1_c00169{width:4.782994pt;}
._0_c00169{width:6.104423pt;}
._5_c00169{width:7.371185pt;}
._2_c00169{width:8.610106pt;}
._14_c00169{width:9.539125pt;}
._9_c00169{width:10.812609pt;}
._a_c00169{width:12.865894pt;}
._10_c00169{width:13.883126pt;}
._8_c00169{width:14.864487pt;}
._c_c00169{width:16.846411pt;}
._12_c00169{width:19.011947pt;}
._f_c00169{width:20.913068pt;}
._13_c00169{width:23.062094pt;}
._11_c00169{width:24.168279pt;}
.fsd_c00169{font-size:56.666667pt;}
.fs4_c00169{font-size:60.000000pt;}
.fsb_c00169{font-size:61.333333pt;}
.fsf_c00169{font-size:62.666667pt;}
.fs6_c00169{font-size:66.000000pt;}
.fse_c00169{font-size:67.333333pt;}
.fs9_c00169{font-size:68.666667pt;}
.fs7_c00169{font-size:69.333333pt;}
.fs0_c00169{font-size:70.000000pt;}
.fs8_c00169{font-size:70.666667pt;}
.fsc_c00169{font-size:71.333333pt;}
.fs5_c00169{font-size:72.000000pt;}
.fs2_c00169{font-size:72.666667pt;}
.fs1_c00169{font-size:73.333333pt;}
.fsa_c00169{font-size:74.000000pt;}
.fs3_c00169{font-size:86.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y1f_c00169{bottom:248.000240pt;}
.y1e_c00169{bottom:274.560000pt;}
.y1d_c00169{bottom:274.560747pt;}
.y1c_c00169{bottom:300.159733pt;}
.y1b_c00169{bottom:300.161333pt;}
.y1a_c00169{bottom:327.041253pt;}
.y19_c00169{bottom:380.159173pt;}
.y18_c00169{bottom:406.720520pt;}
.y16_c00169{bottom:433.279560pt;}
.y17_c00169{bottom:433.280280pt;}
.y15_c00169{bottom:459.839320pt;}
.y14_c00169{bottom:469.439987pt;}
.y13_c00169{bottom:486.079360pt;}
.y12_c00169{bottom:538.880307pt;}
.y11_c00169{bottom:591.999813pt;}
.y10_c00169{bottom:618.559573pt;}
.yf_c00169{bottom:618.560360pt;}
.ye_c00169{bottom:645.120120pt;}
.yd_c00169{bottom:645.120240pt;}
.yc_c00169{bottom:671.039387pt;}
.yb_c00169{bottom:698.239747pt;}
.ya_c00169{bottom:751.999427pt;}
.y9_c00169{bottom:804.800093pt;}
.y8_c00169{bottom:831.359840pt;}
.y7_c00169{bottom:884.159173pt;}
.y6_c00169{bottom:903.360347pt;}
.y5_c00169{bottom:903.360480pt;}
.y4_c00169{bottom:956.479987pt;}
.y2_c00169{bottom:983.039027pt;}
.y3_c00169{bottom:983.039067pt;}
.y1_c00169{bottom:1009.918947pt;}
.h12_c00169{height:59.101562pt;}
.h14_c00169{height:61.932292pt;}
.h5_c00169{height:62.578125pt;}
.hf_c00169{height:63.968750pt;}
.h13_c00169{height:67.859375pt;}
.he_c00169{height:68.046875pt;}
.h1_c00169{height:68.701172pt;}
.h7_c00169{height:68.835938pt;}
.hc_c00169{height:69.203125pt;}
.h10_c00169{height:69.355469pt;}
.h8_c00169{height:69.875000pt;}
.h11_c00169{height:70.009766pt;}
.h9_c00169{height:70.546875pt;}
.h6_c00169{height:70.664062pt;}
.ha_c00169{height:71.218750pt;}
.h3_c00169{height:71.318359pt;}
.hb_c00169{height:71.815104pt;}
.h2_c00169{height:71.972656pt;}
.hd_c00169{height:73.132813pt;}
.h4_c00169{height:89.695312pt;}
.h0_c00169{height:1122.666667pt;}
.w0_c00169{width:793.333333pt;}
.x0_c00169{left:0.000000pt;}
.x1c_c00169{left:84.159733pt;}
.x1b_c00169{left:121.919453pt;}
.xe_c00169{left:123.198533pt;}
.x1_c00169{left:124.479467pt;}
.x16_c00169{left:144.959467pt;}
.xf_c00169{left:168.638667pt;}
.x7_c00169{left:172.159307pt;}
.x22_c00169{left:183.039587pt;}
.x1d_c00169{left:194.239720pt;}
.x1e_c00169{left:206.399453pt;}
.x1f_c00169{left:238.079587pt;}
.x10_c00169{left:244.158667pt;}
.x8_c00169{left:261.758787pt;}
.x20_c00169{left:264.319333pt;}
.x11_c00169{left:265.599587pt;}
.x21_c00169{left:276.479067pt;}
.x9_c00169{left:280.960000pt;}
.x17_c00169{left:308.159200pt;}
.x19_c00169{left:320.639587pt;}
.x18_c00169{left:328.960000pt;}
.x1a_c00169{left:338.559067pt;}
.x12_c00169{left:355.839840pt;}
.xa_c00169{left:397.119187pt;}
.xb_c00169{left:415.038533pt;}
.x13_c00169{left:425.919480pt;}
.x14_c00169{left:446.399453pt;}
.x24_c00169{left:447.999067pt;}
.x15_c00169{left:460.158693pt;}
.x25_c00169{left:471.039587pt;}
.x2_c00169{left:481.278773pt;}
.x3_c00169{left:502.719720pt;}
.x23_c00169{left:504.319333pt;}
.x4_c00169{left:505.278773pt;}
.xc_c00169{left:507.199173pt;}
.x5_c00169{left:517.439987pt;}
.xd_c00169{left:525.118693pt;}
.x26_c00169{left:657.919840pt;}
.x27_c00169{left:674.239707pt;}
.x6_c00169{left:680.318760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ad929140c0d83ab70f3dc3d.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_321f10daed4cf8ff09d4af28.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_36efa5579234c37c499b13d9.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00170{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mf_c00170{transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);}
.mc_c00170{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.me_c00170{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00170{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m6_c00170{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m3_c00170{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.lsf_c00170{letter-spacing:-14.860913px;}
.lsb_c00170{letter-spacing:-6.685875px;}
.ls2_c00170{letter-spacing:-5.945625px;}
.lsa_c00170{letter-spacing:-5.196713px;}
.ls7_c00170{letter-spacing:-4.456463px;}
.ls9_c00170{letter-spacing:-3.717000px;}
.ls8_c00170{letter-spacing:-3.179205px;}
.ls3_c00170{letter-spacing:-2.968875px;}
.lsd_c00170{letter-spacing:-2.317500px;}
.ls1_c00170{letter-spacing:-2.229413px;}
.ls13_c00170{letter-spacing:-1.500608px;}
.ls12_c00170{letter-spacing:-1.497600px;}
.ls4_c00170{letter-spacing:-1.489163px;}
.ls6_c00170{letter-spacing:-0.740250px;}
.ls5_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.740250px;}
.ls11_c00170{letter-spacing:0.930150px;}
.lse_c00170{letter-spacing:1.445348px;}
.lsc_c00170{letter-spacing:1.621800px;}
.ls14_c00170{letter-spacing:3.570345px;}
.ls10_c00170{letter-spacing:3.637710px;}
.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;}
._13_c00170{margin-left:-12.851331px;}
._1c_c00170{margin-left:-9.835578px;}
._1b_c00170{margin-left:-4.054882px;}
._18_c00170{margin-left:-2.786205px;}
._1a_c00170{margin-left:-1.753109px;}
._c_c00170{width:1.234562px;}
._0_c00170{width:2.974982px;}
._6_c00170{width:4.459048px;}
._4_c00170{width:5.625543px;}
._19_c00170{width:6.681373px;}
._2_c00170{width:7.950570px;}
._b_c00170{width:9.458083px;}
._3_c00170{width:10.860814px;}
._7_c00170{width:12.696461px;}
._8_c00170{width:13.936283px;}
._5_c00170{width:15.898154px;}
._1_c00170{width:17.868732px;}
._9_c00170{width:19.506345px;}
._14_c00170{width:20.789287px;}
._17_c00170{width:22.111098px;}
._15_c00170{width:24.898061px;}
._10_c00170{width:26.828535px;}
._a_c00170{width:28.411232px;}
._f_c00170{width:30.261426px;}
._e_c00170{width:31.422394px;}
._16_c00170{width:34.122137px;}
._d_c00170{width:36.808225px;}
._12_c00170{width:38.441738px;}
._11_c00170{width:44.084309px;}
.fc0_c00170{color:transparent;}
.fsb_c00170{font-size:72.750000px;}
.fsa_c00170{font-size:75.750000px;}
.fs1_c00170{font-size:77.250000px;}
.fs9_c00170{font-size:78.000000px;}
.fs0_c00170{font-size:78.750000px;}
.fs4_c00170{font-size:79.500000px;}
.fs5_c00170{font-size:80.250000px;}
.fs6_c00170{font-size:81.000000px;}
.fs3_c00170{font-size:81.750000px;}
.fs2_c00170{font-size:82.500000px;}
.fs7_c00170{font-size:84.750000px;}
.fs8_c00170{font-size:87.750000px;}
.y0_c00170{bottom:0.000000px;}
.y26_c00170{bottom:209.520285px;}
.y25_c00170{bottom:239.760150px;}
.y24_c00170{bottom:239.761830px;}
.y23_c00170{bottom:269.641545px;}
.y22_c00170{bottom:300.239850px;}
.y21_c00170{bottom:300.240000px;}
.y20_c00170{bottom:329.759535px;}
.y1f_c00170{bottom:329.759700px;}
.y1e_c00170{bottom:388.800570px;}
.y1d_c00170{bottom:388.801740px;}
.y1c_c00170{bottom:447.840495px;}
.y1b_c00170{bottom:478.440900px;}
.y19_c00170{bottom:508.679280px;}
.y1a_c00170{bottom:508.680720px;}
.y18_c00170{bottom:538.559010px;}
.y17_c00170{bottom:568.080345px;}
.y16_c00170{bottom:597.960075px;}
.y15_c00170{bottom:657.719520px;}
.y14_c00170{bottom:687.240870px;}
.y13_c00170{bottom:687.240960px;}
.y11_c00170{bottom:717.480270px;}
.y12_c00170{bottom:717.480885px;}
.y10_c00170{bottom:776.879520px;}
.yf_c00170{bottom:776.881260px;}
.ye_c00170{bottom:837.000900px;}
.yd_c00170{bottom:866.880615px;}
.yc_c00170{bottom:866.880705px;}
.yb_c00170{bottom:896.400240px;}
.y9_c00170{bottom:926.279865px;}
.ya_c00170{bottom:926.280855px;}
.y8_c00170{bottom:956.159595px;}
.y6_c00170{bottom:1015.920390px;}
.y7_c00170{bottom:1015.921140px;}
.y5_c00170{bottom:1045.800105px;}
.y4_c00170{bottom:1045.801005px;}
.y2_c00170{bottom:1075.679925px;}
.y3_c00170{bottom:1075.680720px;}
.y1_c00170{bottom:1135.799565px;}
.hb_c00170{height:74.344482px;}
.h2_c00170{height:75.816650px;}
.hc_c00170{height:75.875977px;}
.ha_c00170{height:76.552734px;}
.h1_c00170{height:77.288818px;}
.h5_c00170{height:78.024902px;}
.h6_c00170{height:78.760986px;}
.h7_c00170{height:79.497070px;}
.h4_c00170{height:80.233154px;}
.h3_c00170{height:80.969238px;}
.h8_c00170{height:83.177490px;}
.h9_c00170{height:86.721680px;}
.h0_c00170{height:1263.000000px;}
.w0_c00170{width:892.500000px;}
.x0_c00170{left:0.000000px;}
.x16_c00170{left:141.119130px;}
.xa_c00170{left:142.200525px;}
.x1_c00170{left:143.638500px;}
.x25_c00170{left:186.478665px;}
.x1d_c00170{left:194.039400px;}
.x10_c00170{left:195.118785px;}
.x26_c00170{left:206.278800px;}
.x11_c00170{left:219.239850px;}
.x17_c00170{left:238.679100px;}
.x18_c00170{left:266.040000px;}
.xe_c00170{left:307.439685px;}
.x19_c00170{left:318.238785px;}
.x1a_c00170{left:332.279250px;}
.xf_c00170{left:334.078785px;}
.x12_c00170{left:441.358665px;}
.x13_c00170{left:456.478635px;}
.x14_c00170{left:471.959385px;}
.x15_c00170{left:492.838950px;}
.x2_c00170{left:494.279250px;}
.x20_c00170{left:497.519070px;}
.x3_c00170{left:510.478635px;}
.x21_c00170{left:512.279850px;}
.x4_c00170{left:527.399820px;}
.x6_c00170{left:529.199385px;}
.x8_c00170{left:530.639700px;}
.x5_c00170{left:543.599070px;}
.x9_c00170{left:545.398635px;}
.x7_c00170{left:556.558635px;}
.x1e_c00170{left:575.999400px;}
.x1f_c00170{left:606.239220px;}
.x22_c00170{left:622.079400px;}
.x23_c00170{left:636.838530px;}
.x1b_c00170{left:682.918350px;}
.xc_c00170{left:743.759085px;}
.x1c_c00170{left:746.998950px;}
.xd_c00170{left:758.519670px;}
.x24_c00170{left:765.358605px;}
.xb_c00170{left:774.719055px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.lsf_c00170{letter-spacing:-13.209700pt;}
.lsb_c00170{letter-spacing:-5.943000pt;}
.ls2_c00170{letter-spacing:-5.285000pt;}
.lsa_c00170{letter-spacing:-4.619300pt;}
.ls7_c00170{letter-spacing:-3.961300pt;}
.ls9_c00170{letter-spacing:-3.304000pt;}
.ls8_c00170{letter-spacing:-2.825960pt;}
.ls3_c00170{letter-spacing:-2.639000pt;}
.lsd_c00170{letter-spacing:-2.060000pt;}
.ls1_c00170{letter-spacing:-1.981700pt;}
.ls13_c00170{letter-spacing:-1.333873pt;}
.ls12_c00170{letter-spacing:-1.331200pt;}
.ls4_c00170{letter-spacing:-1.323700pt;}
.ls6_c00170{letter-spacing:-0.658000pt;}
.ls5_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.658000pt;}
.ls11_c00170{letter-spacing:0.826800pt;}
.lse_c00170{letter-spacing:1.284753pt;}
.lsc_c00170{letter-spacing:1.441600pt;}
.ls14_c00170{letter-spacing:3.173640pt;}
.ls10_c00170{letter-spacing:3.233520pt;}
.ws0_c00170{word-spacing:0.000000pt;}
._13_c00170{margin-left:-11.423406pt;}
._1c_c00170{margin-left:-8.742736pt;}
._1b_c00170{margin-left:-3.604340pt;}
._18_c00170{margin-left:-2.476626pt;}
._1a_c00170{margin-left:-1.558319pt;}
._c_c00170{width:1.097389pt;}
._0_c00170{width:2.644428pt;}
._6_c00170{width:3.963598pt;}
._4_c00170{width:5.000483pt;}
._19_c00170{width:5.938998pt;}
._2_c00170{width:7.067174pt;}
._b_c00170{width:8.407185pt;}
._3_c00170{width:9.654057pt;}
._7_c00170{width:11.285743pt;}
._8_c00170{width:12.387808pt;}
._5_c00170{width:14.131692pt;}
._1_c00170{width:15.883317pt;}
._9_c00170{width:17.338974pt;}
._14_c00170{width:18.479366pt;}
._17_c00170{width:19.654309pt;}
._15_c00170{width:22.131609pt;}
._10_c00170{width:23.847587pt;}
._a_c00170{width:25.254428pt;}
._f_c00170{width:26.899045pt;}
._e_c00170{width:27.931017pt;}
._16_c00170{width:30.330789pt;}
._d_c00170{width:32.718423pt;}
._12_c00170{width:34.170434pt;}
._11_c00170{width:39.186053pt;}
.fsb_c00170{font-size:64.666667pt;}
.fsa_c00170{font-size:67.333333pt;}
.fs1_c00170{font-size:68.666667pt;}
.fs9_c00170{font-size:69.333333pt;}
.fs0_c00170{font-size:70.000000pt;}
.fs4_c00170{font-size:70.666667pt;}
.fs5_c00170{font-size:71.333333pt;}
.fs6_c00170{font-size:72.000000pt;}
.fs3_c00170{font-size:72.666667pt;}
.fs2_c00170{font-size:73.333333pt;}
.fs7_c00170{font-size:75.333333pt;}
.fs8_c00170{font-size:78.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y26_c00170{bottom:186.240253pt;}
.y25_c00170{bottom:213.120133pt;}
.y24_c00170{bottom:213.121627pt;}
.y23_c00170{bottom:239.681373pt;}
.y22_c00170{bottom:266.879867pt;}
.y21_c00170{bottom:266.880000pt;}
.y20_c00170{bottom:293.119587pt;}
.y1f_c00170{bottom:293.119733pt;}
.y1e_c00170{bottom:345.600507pt;}
.y1d_c00170{bottom:345.601547pt;}
.y1c_c00170{bottom:398.080440pt;}
.y1b_c00170{bottom:425.280800pt;}
.y19_c00170{bottom:452.159360pt;}
.y1a_c00170{bottom:452.160640pt;}
.y18_c00170{bottom:478.719120pt;}
.y17_c00170{bottom:504.960307pt;}
.y16_c00170{bottom:531.520067pt;}
.y15_c00170{bottom:584.639573pt;}
.y14_c00170{bottom:610.880773pt;}
.y13_c00170{bottom:610.880853pt;}
.y11_c00170{bottom:637.760240pt;}
.y12_c00170{bottom:637.760787pt;}
.y10_c00170{bottom:690.559573pt;}
.yf_c00170{bottom:690.561120pt;}
.ye_c00170{bottom:744.000800pt;}
.yd_c00170{bottom:770.560547pt;}
.yc_c00170{bottom:770.560627pt;}
.yb_c00170{bottom:796.800213pt;}
.y9_c00170{bottom:823.359880pt;}
.ya_c00170{bottom:823.360760pt;}
.y8_c00170{bottom:849.919640pt;}
.y6_c00170{bottom:903.040347pt;}
.y7_c00170{bottom:903.041013pt;}
.y5_c00170{bottom:929.600093pt;}
.y4_c00170{bottom:929.600893pt;}
.y2_c00170{bottom:956.159933pt;}
.y3_c00170{bottom:956.160640pt;}
.y1_c00170{bottom:1009.599613pt;}
.hb_c00170{height:66.083984pt;}
.h2_c00170{height:67.392578pt;}
.hc_c00170{height:67.445312pt;}
.ha_c00170{height:68.046875pt;}
.h1_c00170{height:68.701172pt;}
.h5_c00170{height:69.355469pt;}
.h6_c00170{height:70.009766pt;}
.h7_c00170{height:70.664062pt;}
.h4_c00170{height:71.318359pt;}
.h3_c00170{height:71.972656pt;}
.h8_c00170{height:73.935547pt;}
.h9_c00170{height:77.085938pt;}
.h0_c00170{height:1122.666667pt;}
.w0_c00170{width:793.333333pt;}
.x0_c00170{left:0.000000pt;}
.x16_c00170{left:125.439227pt;}
.xa_c00170{left:126.400467pt;}
.x1_c00170{left:127.678667pt;}
.x25_c00170{left:165.758813pt;}
.x1d_c00170{left:172.479467pt;}
.x10_c00170{left:173.438920pt;}
.x26_c00170{left:183.358933pt;}
.x11_c00170{left:194.879867pt;}
.x17_c00170{left:212.159200pt;}
.x18_c00170{left:236.480000pt;}
.xe_c00170{left:273.279720pt;}
.x19_c00170{left:282.878920pt;}
.x1a_c00170{left:295.359333pt;}
.xf_c00170{left:296.958920pt;}
.x12_c00170{left:392.318813pt;}
.x13_c00170{left:405.758787pt;}
.x14_c00170{left:419.519453pt;}
.x15_c00170{left:438.079067pt;}
.x2_c00170{left:439.359333pt;}
.x20_c00170{left:442.239173pt;}
.x3_c00170{left:453.758787pt;}
.x21_c00170{left:455.359867pt;}
.x4_c00170{left:468.799840pt;}
.x6_c00170{left:470.399453pt;}
.x8_c00170{left:471.679733pt;}
.x5_c00170{left:483.199173pt;}
.x9_c00170{left:484.798787pt;}
.x7_c00170{left:494.718787pt;}
.x1e_c00170{left:511.999467pt;}
.x1f_c00170{left:538.879307pt;}
.x22_c00170{left:552.959467pt;}
.x23_c00170{left:566.078693pt;}
.x1b_c00170{left:607.038533pt;}
.xc_c00170{left:661.119187pt;}
.x1c_c00170{left:663.999067pt;}
.xd_c00170{left:674.239707pt;}
.x24_c00170{left:680.318760pt;}
.xb_c00170{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42aa7786b7dc70d4e83db47a.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_833c685b55b81e1ad2bf7cfe.woff2')format("woff");}.ff2_c00171{font-family:ff2_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;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_4b81629eb2fbf824bfe9169e.woff2')format("woff");}.ff3_c00171{font-family:ff3_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:ff4_c00171;src:url('chunks/assets/font_e2979200039d33459e5071f7.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_b6be8ed6c1a3d16e508dbb12.woff2')format("woff");}.ff5_c00171{font-family:ff5_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:ff6_c00171;src:url('chunks/assets/font_91f2ef3591ef5489a6c4f18a.woff2')format("woff");}.ff6_c00171{font-family:ff6_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:ff7_c00171;src:url('chunks/assets/font_53ddef4fa1c52625c106cc35.woff2')format("woff");}.ff7_c00171{font-family:ff7_c00171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00171{transform:matrix(0.028947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028947,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.042151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042151,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.053779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053779,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.063953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063953,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.118557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118557,0.000000,0.000000,0.250000,0,0);}
.m12_c00171{transform:matrix(0.123333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123333,0.000000,0.000000,0.250000,0,0);}
.m25_c00171{transform:matrix(0.123377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123377,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.123596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123596,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.134921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134921,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.136628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136628,0.000000,0.000000,0.250000,0,0);}
.m24_c00171{transform:matrix(0.143333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);}
.m26_c00171{transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149485,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.161972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161972,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.169444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169444,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m28_c00171{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{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_c00171{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m2_c00171{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m17_c00171{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_c00171{vertical-align:0.000000px;}
.ls17_c00171{letter-spacing:-12.602925px;}
.ls27_c00171{letter-spacing:-7.616400px;}
.ls8_c00171{letter-spacing:-6.685875px;}
.ls20_c00171{letter-spacing:-6.349860px;}
.lsd_c00171{letter-spacing:-5.945625px;}
.ls16_c00171{letter-spacing:-5.400000px;}
.ls10_c00171{letter-spacing:-5.196713px;}
.ls2b_c00171{letter-spacing:-5.075400px;}
.ls6_c00171{letter-spacing:-4.000200px;}
.ls24_c00171{letter-spacing:-3.807540px;}
.ls9_c00171{letter-spacing:-3.717000px;}
.ls1a_c00171{letter-spacing:-3.320325px;}
.ls5_c00171{letter-spacing:-3.057450px;}
.ls7_c00171{letter-spacing:-2.968875px;}
.ls18_c00171{letter-spacing:-2.699325px;}
.ls23_c00171{letter-spacing:-2.541000px;}
.lsb_c00171{letter-spacing:-2.229413px;}
.lse_c00171{letter-spacing:-1.489163px;}
.ls26_c00171{letter-spacing:-1.373850px;}
.ls22_c00171{letter-spacing:-1.267200px;}
.ls14_c00171{letter-spacing:-0.980400px;}
.ls19_c00171{letter-spacing:-0.898425px;}
.ls13_c00171{letter-spacing:-0.763200px;}
.lsf_c00171{letter-spacing:0.000000px;}
.ls4_c00171{letter-spacing:1.267200px;}
.lsa_c00171{letter-spacing:1.512420px;}
.ls1b_c00171{letter-spacing:1.518188px;}
.ls12_c00171{letter-spacing:2.464875px;}
.ls21_c00171{letter-spacing:2.541000px;}
.ls1e_c00171{letter-spacing:2.661750px;}
.ls11_c00171{letter-spacing:2.746425px;}
.lsc_c00171{letter-spacing:3.401933px;}
.ls0_c00171{letter-spacing:3.597750px;}
.ls1d_c00171{letter-spacing:4.553018px;}
.ls2c_c00171{letter-spacing:5.075400px;}
.ls15_c00171{letter-spacing:5.689200px;}
.ls1_c00171{letter-spacing:6.067575px;}
.ls1f_c00171{letter-spacing:6.274575px;}
.ls2a_c00171{letter-spacing:6.349860px;}
.ls1c_c00171{letter-spacing:7.582800px;}
.ls25_c00171{letter-spacing:10.415700px;}
.ls28_c00171{letter-spacing:13.083750px;}
.ls3_c00171{letter-spacing:16.687500px;}
.ls29_c00171{letter-spacing:33.000000px;}
.ls2_c00171{letter-spacing:45.509483px;}
.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;}
._10_c00171{margin-left:-73.183183px;}
._13_c00171{margin-left:-42.748302px;}
._12_c00171{margin-left:-40.326609px;}
._e_c00171{margin-left:-30.530178px;}
._9_c00171{width:1.350161px;}
._6_c00171{width:2.400671px;}
._2_c00171{width:3.938704px;}
._3_c00171{width:5.749835px;}
._4_c00171{width:7.561946px;}
._0_c00171{width:9.323970px;}
._5_c00171{width:10.934542px;}
._a_c00171{width:13.022041px;}
._7_c00171{width:14.756309px;}
._1_c00171{width:16.632297px;}
._8_c00171{width:20.174413px;}
._b_c00171{width:22.633308px;}
._c_c00171{width:38.105415px;}
._d_c00171{width:39.665123px;}
._f_c00171{width:47.566535px;}
._11_c00171{width:77.610346px;}
.fc0_c00171{color:transparent;}
.fs1a_c00171{font-size:24.000000px;}
.fs1b_c00171{font-size:36.750000px;}
.fs12_c00171{font-size:47.250000px;}
.fs19_c00171{font-size:49.500000px;}
.fs16_c00171{font-size:51.750000px;}
.fs18_c00171{font-size:53.250000px;}
.fsd_c00171{font-size:56.250000px;}
.fs11_c00171{font-size:57.750000px;}
.fs13_c00171{font-size:58.500000px;}
.fs15_c00171{font-size:59.250000px;}
.fs10_c00171{font-size:60.000000px;}
.fs14_c00171{font-size:60.750000px;}
.fs17_c00171{font-size:63.750000px;}
.fs8_c00171{font-size:64.500000px;}
.fs9_c00171{font-size:66.000000px;}
.fsc_c00171{font-size:66.750000px;}
.fsa_c00171{font-size:67.500000px;}
.fsf_c00171{font-size:72.750000px;}
.fs4_c00171{font-size:75.750000px;}
.fs3_c00171{font-size:78.000000px;}
.fs2_c00171{font-size:78.750000px;}
.fs6_c00171{font-size:79.500000px;}
.fs7_c00171{font-size:80.250000px;}
.fs0_c00171{font-size:81.750000px;}
.fs5_c00171{font-size:82.500000px;}
.fs1_c00171{font-size:84.750000px;}
.fsb_c00171{font-size:129.000000px;}
.fse_c00171{font-size:142.500000px;}
.y0_c00171{bottom:0.000000px;}
.yf_c00171{bottom:511.199595px;}
.y40_c00171{bottom:568.441905px;}
.y3a_c00171{bottom:568.800180px;}
.y32_c00171{bottom:568.800705px;}
.y25_c00171{bottom:568.803330px;}
.y2b_c00171{bottom:569.166390px;}
.y16_c00171{bottom:569.519670px;}
.y1f_c00171{bottom:569.521140px;}
.y39_c00171{bottom:591.840660px;}
.y31_c00171{bottom:591.841185px;}
.y24_c00171{bottom:592.203600px;}
.y2a_c00171{bottom:592.565145px;}
.y15_c00171{bottom:592.920495px;}
.y1e_c00171{bottom:592.921395px;}
.y38_c00171{bottom:615.240915px;}
.y30_c00171{bottom:615.241440px;}
.y23_c00171{bottom:615.602355px;}
.y29_c00171{bottom:615.605625px;}
.y1d_c00171{bottom:615.961875px;}
.y14_c00171{bottom:616.319820px;}
.y3f_c00171{bottom:638.281410px;}
.y37_c00171{bottom:638.639670px;}
.y2f_c00171{bottom:638.640195px;}
.y22_c00171{bottom:638.642835px;}
.y28_c00171{bottom:639.005880px;}
.y13_c00171{bottom:639.360345px;}
.y1c_c00171{bottom:639.360630px;}
.y3e_c00171{bottom:661.680150px;}
.y36_c00171{bottom:662.039925px;}
.y2e_c00171{bottom:662.040465px;}
.y21_c00171{bottom:662.043090px;}
.y27_c00171{bottom:662.404635px;}
.y1b_c00171{bottom:662.760885px;}
.y12_c00171{bottom:663.119985px;}
.y35_c00171{bottom:685.080420px;}
.y2d_c00171{bottom:685.439205px;}
.y20_c00171{bottom:685.441845px;}
.y26_c00171{bottom:685.804890px;}
.y10_c00171{bottom:686.159640px;}
.y11_c00171{bottom:686.159820px;}
.y3d_c00171{bottom:700.559685px;}
.y3c_c00171{bottom:703.079355px;}
.y34_c00171{bottom:703.440255px;}
.y3b_c00171{bottom:708.121140px;}
.y33_c00171{bottom:708.121680px;}
.y41_c00171{bottom:708.122655px;}
.y2c_c00171{bottom:708.479685px;}
.y1a_c00171{bottom:708.840585px;}
.y18_c00171{bottom:709.199850px;}
.ye_c00171{bottom:709.560495px;}
.yd_c00171{bottom:721.080000px;}
.y19_c00171{bottom:744.119985px;}
.y17_c00171{bottom:744.480885px;}
.yc_c00171{bottom:767.879970px;}
.yb_c00171{bottom:814.680090px;}
.ya_c00171{bottom:959.760675px;}
.y8_c00171{bottom:989.639610px;}
.y9_c00171{bottom:989.639655px;}
.y7_c00171{bottom:1019.879520px;}
.y6_c00171{bottom:1019.880405px;}
.y5_c00171{bottom:1049.760135px;}
.y4_c00171{bottom:1049.761020px;}
.y2_c00171{bottom:1079.640150px;}
.y3_c00171{bottom:1079.640750px;}
.y1_c00171{bottom:1138.320825px;}
.h20_c00171{height:24.187500px;}
.h21_c00171{height:25.031250px;}
.h22_c00171{height:38.329102px;}
.h14_c00171{height:49.280273px;}
.h1c_c00171{height:51.626953px;}
.h19_c00171{height:53.973633px;}
.h1b_c00171{height:55.538086px;}
.h1e_c00171{height:57.073242px;}
.h18_c00171{height:58.150635px;}
.he_c00171{height:58.666992px;}
.h13_c00171{height:60.231445px;}
.h15_c00171{height:61.013672px;}
.h12_c00171{height:62.578125px;}
.h1d_c00171{height:63.271729px;}
.h16_c00171{height:63.360352px;}
.h1a_c00171{height:64.248047px;}
.h9_c00171{height:65.003906px;}
.h17_c00171{height:65.226562px;}
.hd_c00171{height:65.967773px;}
.ha_c00171{height:66.515625px;}
.hb_c00171{height:68.027344px;}
.h11_c00171{height:71.897461px;}
.h5_c00171{height:74.344482px;}
.hf_c00171{height:74.862305px;}
.h1f_c00171{height:75.875977px;}
.h3_c00171{height:77.288818px;}
.h4_c00171{height:78.609375px;}
.h8_c00171{height:78.760986px;}
.h7_c00171{height:80.121094px;}
.h1_c00171{height:80.233154px;}
.h6_c00171{height:80.969238px;}
.h2_c00171{height:83.177490px;}
.hc_c00171{height:134.542969px;}
.h10_c00171{height:140.830078px;}
.h0_c00171{height:1263.000000px;}
.w0_c00171{width:892.500000px;}
.x0_c00171{left:0.000000px;}
.x10_c00171{left:140.039595px;}
.x1_c00171{left:141.118815px;}
.x11_c00171{left:155.518665px;}
.x4_c00171{left:163.079400px;}
.x15_c00171{left:175.318800px;}
.x1a_c00171{left:177.120000px;}
.x2b_c00171{left:186.478665px;}
.x1b_c00171{left:187.559685px;}
.x12_c00171{left:189.718500px;}
.x2_c00171{left:193.678500px;}
.x13_c00171{left:205.558635px;}
.xa_c00171{left:212.758500px;}
.x16_c00171{left:216.000000px;}
.x3_c00171{left:217.079385px;}
.x2c_c00171{left:223.559100px;}
.x5_c00171{left:227.159850px;}
.x8_c00171{left:231.479235px;}
.xb_c00171{left:233.639700px;}
.x17_c00171{left:239.040000px;}
.x9_c00171{left:246.958350px;}
.x1c_c00171{left:258.479235px;}
.x1d_c00171{left:268.918950px;}
.x1e_c00171{left:286.558635px;}
.x2d_c00171{left:292.679100px;}
.x2e_c00171{left:303.838950px;}
.x1f_c00171{left:309.598530px;}
.x30_c00171{left:320.398995px;}
.xc_c00171{left:322.559685px;}
.xd_c00171{left:341.278800px;}
.x6_c00171{left:353.519685px;}
.x20_c00171{left:355.319250px;}
.x21_c00171{left:373.319850px;}
.x33_c00171{left:384.478725px;}
.x2f_c00171{left:385.559100px;}
.x7_c00171{left:390.959385px;}
.xe_c00171{left:395.639700px;}
.xf_c00171{left:408.958335px;}
.x22_c00171{left:420.838530px;}
.x23_c00171{left:431.279850px;}
.x34_c00171{left:437.039385px;}
.x35_c00171{left:454.319820px;}
.x18_c00171{left:465.479685px;}
.x36_c00171{left:466.918350px;}
.x31_c00171{left:471.239250px;}
.x32_c00171{left:476.998560px;}
.x19_c00171{left:482.399235px;}
.x24_c00171{left:501.479235px;}
.x25_c00171{left:511.559685px;}
.x26_c00171{left:528.838530px;}
.x3b_c00171{left:541.799520px;}
.x38_c00171{left:545.759415px;}
.x37_c00171{left:552.239250px;}
.x39_c00171{left:557.998560px;}
.x27_c00171{left:582.838530px;}
.x28_c00171{left:593.279850px;}
.x29_c00171{left:610.919535px;}
.x3c_c00171{left:616.679070px;}
.x3e_c00171{left:627.479580px;}
.x3d_c00171{left:633.959385px;}
.x3f_c00171{left:639.718695px;}
.x40_c00171{left:664.199385px;}
.x3a_c00171{left:714.958875px;}
.x41_c00171{left:720.717795px;}
.x2a_c00171{left:744.838530px;}
.x14_c00171{left:772.199340px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls17_c00171{letter-spacing:-11.202600pt;}
.ls27_c00171{letter-spacing:-6.770133pt;}
.ls8_c00171{letter-spacing:-5.943000pt;}
.ls20_c00171{letter-spacing:-5.644320pt;}
.lsd_c00171{letter-spacing:-5.285000pt;}
.ls16_c00171{letter-spacing:-4.800000pt;}
.ls10_c00171{letter-spacing:-4.619300pt;}
.ls2b_c00171{letter-spacing:-4.511467pt;}
.ls6_c00171{letter-spacing:-3.555733pt;}
.ls24_c00171{letter-spacing:-3.384480pt;}
.ls9_c00171{letter-spacing:-3.304000pt;}
.ls1a_c00171{letter-spacing:-2.951400pt;}
.ls5_c00171{letter-spacing:-2.717733pt;}
.ls7_c00171{letter-spacing:-2.639000pt;}
.ls18_c00171{letter-spacing:-2.399400pt;}
.ls23_c00171{letter-spacing:-2.258667pt;}
.lsb_c00171{letter-spacing:-1.981700pt;}
.lse_c00171{letter-spacing:-1.323700pt;}
.ls26_c00171{letter-spacing:-1.221200pt;}
.ls22_c00171{letter-spacing:-1.126400pt;}
.ls14_c00171{letter-spacing:-0.871467pt;}
.ls19_c00171{letter-spacing:-0.798600pt;}
.ls13_c00171{letter-spacing:-0.678400pt;}
.lsf_c00171{letter-spacing:0.000000pt;}
.ls4_c00171{letter-spacing:1.126400pt;}
.lsa_c00171{letter-spacing:1.344373pt;}
.ls1b_c00171{letter-spacing:1.349500pt;}
.ls12_c00171{letter-spacing:2.191000pt;}
.ls21_c00171{letter-spacing:2.258667pt;}
.ls1e_c00171{letter-spacing:2.366000pt;}
.ls11_c00171{letter-spacing:2.441267pt;}
.lsc_c00171{letter-spacing:3.023940pt;}
.ls0_c00171{letter-spacing:3.198000pt;}
.ls1d_c00171{letter-spacing:4.047127pt;}
.ls2c_c00171{letter-spacing:4.511467pt;}
.ls15_c00171{letter-spacing:5.057067pt;}
.ls1_c00171{letter-spacing:5.393400pt;}
.ls1f_c00171{letter-spacing:5.577400pt;}
.ls2a_c00171{letter-spacing:5.644320pt;}
.ls1c_c00171{letter-spacing:6.740267pt;}
.ls25_c00171{letter-spacing:9.258400pt;}
.ls28_c00171{letter-spacing:11.630000pt;}
.ls3_c00171{letter-spacing:14.833333pt;}
.ls29_c00171{letter-spacing:29.333333pt;}
.ls2_c00171{letter-spacing:40.452873pt;}
.ws0_c00171{word-spacing:0.000000pt;}
._10_c00171{margin-left:-65.051718pt;}
._13_c00171{margin-left:-37.998490pt;}
._12_c00171{margin-left:-35.845875pt;}
._e_c00171{margin-left:-27.137936pt;}
._9_c00171{width:1.200143pt;}
._6_c00171{width:2.133930pt;}
._2_c00171{width:3.501070pt;}
._3_c00171{width:5.110964pt;}
._4_c00171{width:6.721730pt;}
._0_c00171{width:8.287974pt;}
._5_c00171{width:9.719592pt;}
._a_c00171{width:11.575147pt;}
._7_c00171{width:13.116719pt;}
._1_c00171{width:14.784264pt;}
._8_c00171{width:17.932811pt;}
._b_c00171{width:20.118496pt;}
._c_c00171{width:33.871480pt;}
._d_c00171{width:35.257888pt;}
._f_c00171{width:42.281365pt;}
._11_c00171{width:68.986975pt;}
.fs1a_c00171{font-size:21.333333pt;}
.fs1b_c00171{font-size:32.666667pt;}
.fs12_c00171{font-size:42.000000pt;}
.fs19_c00171{font-size:44.000000pt;}
.fs16_c00171{font-size:46.000000pt;}
.fs18_c00171{font-size:47.333333pt;}
.fsd_c00171{font-size:50.000000pt;}
.fs11_c00171{font-size:51.333333pt;}
.fs13_c00171{font-size:52.000000pt;}
.fs15_c00171{font-size:52.666667pt;}
.fs10_c00171{font-size:53.333333pt;}
.fs14_c00171{font-size:54.000000pt;}
.fs17_c00171{font-size:56.666667pt;}
.fs8_c00171{font-size:57.333333pt;}
.fs9_c00171{font-size:58.666667pt;}
.fsc_c00171{font-size:59.333333pt;}
.fsa_c00171{font-size:60.000000pt;}
.fsf_c00171{font-size:64.666667pt;}
.fs4_c00171{font-size:67.333333pt;}
.fs3_c00171{font-size:69.333333pt;}
.fs2_c00171{font-size:70.000000pt;}
.fs6_c00171{font-size:70.666667pt;}
.fs7_c00171{font-size:71.333333pt;}
.fs0_c00171{font-size:72.666667pt;}
.fs5_c00171{font-size:73.333333pt;}
.fs1_c00171{font-size:75.333333pt;}
.fsb_c00171{font-size:114.666667pt;}
.fse_c00171{font-size:126.666667pt;}
.y0_c00171{bottom:0.000000pt;}
.yf_c00171{bottom:454.399640pt;}
.y40_c00171{bottom:505.281693pt;}
.y3a_c00171{bottom:505.600160pt;}
.y32_c00171{bottom:505.600627pt;}
.y25_c00171{bottom:505.602960pt;}
.y2b_c00171{bottom:505.925680pt;}
.y16_c00171{bottom:506.239707pt;}
.y1f_c00171{bottom:506.241013pt;}
.y39_c00171{bottom:526.080587pt;}
.y31_c00171{bottom:526.081053pt;}
.y24_c00171{bottom:526.403200pt;}
.y2a_c00171{bottom:526.724573pt;}
.y15_c00171{bottom:527.040440pt;}
.y1e_c00171{bottom:527.041240pt;}
.y38_c00171{bottom:546.880813pt;}
.y30_c00171{bottom:546.881280pt;}
.y23_c00171{bottom:547.202093pt;}
.y29_c00171{bottom:547.205000pt;}
.y1d_c00171{bottom:547.521667pt;}
.y14_c00171{bottom:547.839840pt;}
.y3f_c00171{bottom:567.361253pt;}
.y37_c00171{bottom:567.679707pt;}
.y2f_c00171{bottom:567.680173pt;}
.y22_c00171{bottom:567.682520pt;}
.y28_c00171{bottom:568.005227pt;}
.y13_c00171{bottom:568.320307pt;}
.y1c_c00171{bottom:568.320560pt;}
.y3e_c00171{bottom:588.160133pt;}
.y36_c00171{bottom:588.479933pt;}
.y2e_c00171{bottom:588.480413pt;}
.y21_c00171{bottom:588.482747pt;}
.y27_c00171{bottom:588.804120pt;}
.y1b_c00171{bottom:589.120787pt;}
.y12_c00171{bottom:589.439987pt;}
.y35_c00171{bottom:608.960373pt;}
.y2d_c00171{bottom:609.279293pt;}
.y20_c00171{bottom:609.281640pt;}
.y26_c00171{bottom:609.604347pt;}
.y10_c00171{bottom:609.919680pt;}
.y11_c00171{bottom:609.919840pt;}
.y3d_c00171{bottom:622.719720pt;}
.y3c_c00171{bottom:624.959427pt;}
.y34_c00171{bottom:625.280227pt;}
.y3b_c00171{bottom:629.441013pt;}
.y33_c00171{bottom:629.441493pt;}
.y41_c00171{bottom:629.442360pt;}
.y2c_c00171{bottom:629.759720pt;}
.y1a_c00171{bottom:630.080520pt;}
.y18_c00171{bottom:630.399867pt;}
.ye_c00171{bottom:630.720440pt;}
.yd_c00171{bottom:640.960000pt;}
.y19_c00171{bottom:661.439987pt;}
.y17_c00171{bottom:661.760787pt;}
.yc_c00171{bottom:682.559973pt;}
.yb_c00171{bottom:724.160080pt;}
.ya_c00171{bottom:853.120600pt;}
.y8_c00171{bottom:879.679653pt;}
.y9_c00171{bottom:879.679693pt;}
.y7_c00171{bottom:906.559573pt;}
.y6_c00171{bottom:906.560360pt;}
.y5_c00171{bottom:933.120120pt;}
.y4_c00171{bottom:933.120907pt;}
.y2_c00171{bottom:959.680133pt;}
.y3_c00171{bottom:959.680667pt;}
.y1_c00171{bottom:1011.840733pt;}
.h20_c00171{height:21.500000pt;}
.h21_c00171{height:22.250000pt;}
.h22_c00171{height:34.070312pt;}
.h14_c00171{height:43.804688pt;}
.h1c_c00171{height:45.890625pt;}
.h19_c00171{height:47.976562pt;}
.h1b_c00171{height:49.367188pt;}
.h1e_c00171{height:50.731771pt;}
.h18_c00171{height:51.689453pt;}
.he_c00171{height:52.148438pt;}
.h13_c00171{height:53.539062pt;}
.h15_c00171{height:54.234375pt;}
.h12_c00171{height:55.625000pt;}
.h1d_c00171{height:56.241536pt;}
.h16_c00171{height:56.320312pt;}
.h1a_c00171{height:57.109375pt;}
.h9_c00171{height:57.781250pt;}
.h17_c00171{height:57.979167pt;}
.hd_c00171{height:58.638021pt;}
.ha_c00171{height:59.125000pt;}
.hb_c00171{height:60.468750pt;}
.h11_c00171{height:63.908854pt;}
.h5_c00171{height:66.083984pt;}
.hf_c00171{height:66.544271pt;}
.h1f_c00171{height:67.445312pt;}
.h3_c00171{height:68.701172pt;}
.h4_c00171{height:69.875000pt;}
.h8_c00171{height:70.009766pt;}
.h7_c00171{height:71.218750pt;}
.h1_c00171{height:71.318359pt;}
.h6_c00171{height:71.972656pt;}
.h2_c00171{height:73.935547pt;}
.hc_c00171{height:119.593750pt;}
.h10_c00171{height:125.182292pt;}
.h0_c00171{height:1122.666667pt;}
.w0_c00171{width:793.333333pt;}
.x0_c00171{left:0.000000pt;}
.x10_c00171{left:124.479640pt;}
.x1_c00171{left:125.438947pt;}
.x11_c00171{left:138.238813pt;}
.x4_c00171{left:144.959467pt;}
.x15_c00171{left:155.838933pt;}
.x1a_c00171{left:157.440000pt;}
.x2b_c00171{left:165.758813pt;}
.x1b_c00171{left:166.719720pt;}
.x12_c00171{left:168.638667pt;}
.x2_c00171{left:172.158667pt;}
.x13_c00171{left:182.718787pt;}
.xa_c00171{left:189.118667pt;}
.x16_c00171{left:192.000000pt;}
.x3_c00171{left:192.959453pt;}
.x2c_c00171{left:198.719200pt;}
.x5_c00171{left:201.919867pt;}
.x8_c00171{left:205.759320pt;}
.xb_c00171{left:207.679733pt;}
.x17_c00171{left:212.480000pt;}
.x9_c00171{left:219.518533pt;}
.x1c_c00171{left:229.759320pt;}
.x1d_c00171{left:239.039067pt;}
.x1e_c00171{left:254.718787pt;}
.x2d_c00171{left:260.159200pt;}
.x2e_c00171{left:270.079067pt;}
.x1f_c00171{left:275.198693pt;}
.x30_c00171{left:284.799107pt;}
.xc_c00171{left:286.719720pt;}
.xd_c00171{left:303.358933pt;}
.x6_c00171{left:314.239720pt;}
.x20_c00171{left:315.839333pt;}
.x21_c00171{left:331.839867pt;}
.x33_c00171{left:341.758867pt;}
.x2f_c00171{left:342.719200pt;}
.x7_c00171{left:347.519453pt;}
.xe_c00171{left:351.679733pt;}
.xf_c00171{left:363.518520pt;}
.x22_c00171{left:374.078693pt;}
.x23_c00171{left:383.359867pt;}
.x34_c00171{left:388.479453pt;}
.x35_c00171{left:403.839840pt;}
.x18_c00171{left:413.759720pt;}
.x36_c00171{left:415.038533pt;}
.x31_c00171{left:418.879333pt;}
.x32_c00171{left:423.998720pt;}
.x19_c00171{left:428.799320pt;}
.x24_c00171{left:445.759320pt;}
.x25_c00171{left:454.719720pt;}
.x26_c00171{left:470.078693pt;}
.x3b_c00171{left:481.599573pt;}
.x38_c00171{left:485.119480pt;}
.x37_c00171{left:490.879333pt;}
.x39_c00171{left:495.998720pt;}
.x27_c00171{left:518.078693pt;}
.x28_c00171{left:527.359867pt;}
.x29_c00171{left:543.039587pt;}
.x3c_c00171{left:548.159173pt;}
.x3e_c00171{left:557.759627pt;}
.x3d_c00171{left:563.519453pt;}
.x3f_c00171{left:568.638840pt;}
.x40_c00171{left:590.399453pt;}
.x3a_c00171{left:635.519000pt;}
.x41_c00171{left:640.638040pt;}
.x2a_c00171{left:662.078693pt;}
.x14_c00171{left:686.399413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdcf168f5b02927c4dbe73ec.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_ca21e1129c70d41870ce3ffc.woff2')format("woff");}.ff2_c00172{font-family:ff2_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:ff3_c00172;src:url('chunks/assets/font_b6ad72a3a85dac6acde055da.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_52ed5c72d1e788f1a60af09f.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_54dbc513840002c73ee2f42e.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_a7bf682b3183b1e036f6270a.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00172;src:url('chunks/assets/font_e4960341f7cf2972640b3bbf.woff2')format("woff");}.ff7_c00172{font-family:ff7_c00172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00172{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{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);}
.m8_c00172{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m10_c00172{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m28_c00172{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m16_c00172{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.286082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286082,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);}
.m1e_c00172{transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);}
.m24_c00172{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00172{transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{transform:matrix(0.335106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335106,0.000000,0.000000,0.250000,0,0);}
.m1b_c00172{transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m25_c00172{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.396552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396552,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls2a_c00172{letter-spacing:-19.875000px;}
.ls19_c00172{letter-spacing:-19.041000px;}
.ls1f_c00172{letter-spacing:-19.010303px;}
.ls29_c00172{letter-spacing:-14.354550px;}
.ls27_c00172{letter-spacing:-13.988700px;}
.ls2b_c00172{letter-spacing:-9.937500px;}
.ls1c_c00172{letter-spacing:-9.520500px;}
.ls21_c00172{letter-spacing:-8.914500px;}
.ls26_c00172{letter-spacing:-8.518028px;}
.ls11_c00172{letter-spacing:-7.683683px;}
.ls12_c00172{letter-spacing:-7.426125px;}
.ls1b_c00172{letter-spacing:-7.401075px;}
.ls10_c00172{letter-spacing:-6.685875px;}
.ls1a_c00172{letter-spacing:-6.344250px;}
.ls9_c00172{letter-spacing:-5.945625px;}
.ls16_c00172{letter-spacing:-5.196713px;}
.lse_c00172{letter-spacing:-5.109375px;}
.ls13_c00172{letter-spacing:-4.456463px;}
.ls3a_c00172{letter-spacing:-4.334498px;}
.ls1e_c00172{letter-spacing:-4.091310px;}
.ls6_c00172{letter-spacing:-4.004325px;}
.ls2f_c00172{letter-spacing:-3.763950px;}
.ls8_c00172{letter-spacing:-3.717000px;}
.ls2c_c00172{letter-spacing:-3.549278px;}
.lsc_c00172{letter-spacing:-2.968875px;}
.ls28_c00172{letter-spacing:-2.836200px;}
.ls2d_c00172{letter-spacing:-2.616840px;}
.ls4_c00172{letter-spacing:-2.439953px;}
.ls22_c00172{letter-spacing:-2.267213px;}
.lsb_c00172{letter-spacing:-2.229413px;}
.ls18_c00172{letter-spacing:-2.112000px;}
.ls3_c00172{letter-spacing:-1.755780px;}
.ls5_c00172{letter-spacing:-1.678898px;}
.ls14_c00172{letter-spacing:-1.634325px;}
.lsa_c00172{letter-spacing:-1.489163px;}
.ls38_c00172{letter-spacing:-1.036800px;}
.ls7_c00172{letter-spacing:-0.809325px;}
.ls20_c00172{letter-spacing:-0.794205px;}
.ls25_c00172{letter-spacing:-0.786713px;}
.lsd_c00172{letter-spacing:-0.740250px;}
.lsf_c00172{letter-spacing:0.000000px;}
.ls32_c00172{letter-spacing:0.549548px;}
.ls2e_c00172{letter-spacing:0.557700px;}
.ls34_c00172{letter-spacing:0.589050px;}
.ls17_c00172{letter-spacing:0.786713px;}
.ls1_c00172{letter-spacing:1.056000px;}
.ls37_c00172{letter-spacing:1.197225px;}
.ls24_c00172{letter-spacing:1.716000px;}
.ls39_c00172{letter-spacing:1.740375px;}
.ls2_c00172{letter-spacing:2.838150px;}
.ls1d_c00172{letter-spacing:3.176250px;}
.ls36_c00172{letter-spacing:3.517500px;}
.ls35_c00172{letter-spacing:3.587850px;}
.ls3b_c00172{letter-spacing:3.637710px;}
.ls15_c00172{letter-spacing:3.772440px;}
.ls23_c00172{letter-spacing:4.685175px;}
.ls31_c00172{letter-spacing:7.350000px;}
.ls33_c00172{letter-spacing:7.500000px;}
.ls0_c00172{letter-spacing:10.402875px;}
.ls30_c00172{letter-spacing:13.740450px;}
.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;}
._1c_c00172{margin-left:-34.031250px;}
._1b_c00172{margin-left:-27.794715px;}
._1e_c00172{margin-left:-26.375292px;}
._1f_c00172{margin-left:-19.659454px;}
._19_c00172{margin-left:-16.261300px;}
._1d_c00172{margin-left:-12.025200px;}
._17_c00172{margin-left:-9.001095px;}
._22_c00172{margin-left:-6.560484px;}
._e_c00172{margin-left:-5.512485px;}
._9_c00172{margin-left:-4.236631px;}
._d_c00172{margin-left:-2.915563px;}
._f_c00172{margin-left:-1.212869px;}
._11_c00172{width:1.335555px;}
._7_c00172{width:2.530654px;}
._b_c00172{width:4.496120px;}
._c_c00172{width:5.509707px;}
._6_c00172{width:7.583417px;}
._8_c00172{width:9.103797px;}
._a_c00172{width:11.579266px;}
._21_c00172{width:12.918150px;}
._18_c00172{width:14.097379px;}
._5_c00172{width:15.105038px;}
._15_c00172{width:16.576355px;}
._3_c00172{width:19.117142px;}
._2_c00172{width:20.984052px;}
._4_c00172{width:22.838704px;}
._10_c00172{width:24.144958px;}
._0_c00172{width:25.727833px;}
._16_c00172{width:26.810631px;}
._20_c00172{width:28.026991px;}
._12_c00172{width:29.332102px;}
._14_c00172{width:30.809452px;}
._1_c00172{width:32.216803px;}
._13_c00172{width:33.641970px;}
._25_c00172{width:84.857719px;}
._23_c00172{width:108.143680px;}
._24_c00172{width:144.200848px;}
._1a_c00172{width:217.296792px;}
.fc0_c00172{color:transparent;}
.fsd_c00172{font-size:21.750000px;}
.fsc_c00172{font-size:24.750000px;}
.fs11_c00172{font-size:34.500000px;}
.fs12_c00172{font-size:35.250000px;}
.fsf_c00172{font-size:36.000000px;}
.fs13_c00172{font-size:36.750000px;}
.fs14_c00172{font-size:37.500000px;}
.fs15_c00172{font-size:38.250000px;}
.fs10_c00172{font-size:39.000000px;}
.fsb_c00172{font-size:39.750000px;}
.fs16_c00172{font-size:54.000000px;}
.fs9_c00172{font-size:72.750000px;}
.fs17_c00172{font-size:77.250000px;}
.fs0_c00172{font-size:78.000000px;}
.fs4_c00172{font-size:78.750000px;}
.fsa_c00172{font-size:79.500000px;}
.fs5_c00172{font-size:80.250000px;}
.fs8_c00172{font-size:81.000000px;}
.fs3_c00172{font-size:81.750000px;}
.fs6_c00172{font-size:82.500000px;}
.fs2_c00172{font-size:83.250000px;}
.fs7_c00172{font-size:84.000000px;}
.fs1_c00172{font-size:84.750000px;}
.fse_c00172{font-size:110.250000px;}
.y0_c00172{bottom:0.000000px;}
.y2e_c00172{bottom:183.958875px;}
.y2d_c00172{bottom:214.198785px;}
.y2c_c00172{bottom:214.199655px;}
.y2b_c00172{bottom:244.079385px;}
.y2a_c00172{bottom:244.080270px;}
.y28_c00172{bottom:273.958770px;}
.y29_c00172{bottom:273.960000px;}
.y27_c00172{bottom:303.838485px;}
.y26_c00172{bottom:332.999640px;}
.y25_c00172{bottom:392.759085px;}
.y20_c00172{bottom:420.840135px;}
.y21_c00172{bottom:421.739820px;}
.y24_c00172{bottom:422.278800px;}
.y23_c00172{bottom:422.459970px;}
.y22_c00172{bottom:422.639700px;}
.y1f_c00172{bottom:429.119385px;}
.y1e_c00172{bottom:452.159415px;}
.y1d_c00172{bottom:452.160435px;}
.y1c_c00172{bottom:482.040165px;}
.y1a_c00172{bottom:511.558890px;}
.y1b_c00172{bottom:511.559685px;}
.y19_c00172{bottom:541.438620px;}
.y18_c00172{bottom:571.319325px;}
.y17_c00172{bottom:601.559235px;}
.y16_c00172{bottom:631.078770px;}
.y15_c00172{bottom:631.080690px;}
.y14_c00172{bottom:660.960405px;}
.y13_c00172{bottom:690.840135px;}
.y12_c00172{bottom:690.840315px;}
.y11_c00172{bottom:720.359850px;}
.y10_c00172{bottom:750.238770px;}
.yf_c00172{bottom:780.478635px;}
.ye_c00172{bottom:780.479535px;}
.yd_c00172{bottom:810.359250px;}
.yc_c00172{bottom:810.359280px;}
.yb_c00172{bottom:870.478905px;}
.ya_c00172{bottom:900.358635px;}
.y9_c00172{bottom:929.879970px;}
.y8_c00172{bottom:960.119940px;}
.y6_c00172{bottom:989.998860px;}
.y7_c00172{bottom:989.998905px;}
.y5_c00172{bottom:1020.238770px;}
.y4_c00172{bottom:1050.119385px;}
.y3_c00172{bottom:1050.120270px;}
.y2_c00172{bottom:1080.000000px;}
.y1_c00172{bottom:1138.680090px;}
.h13_c00172{height:22.684570px;}
.h12_c00172{height:24.459961px;}
.h18_c00172{height:34.595947px;}
.h1d_c00172{height:35.332031px;}
.h17_c00172{height:35.982422px;}
.h19_c00172{height:36.068115px;}
.h1a_c00172{height:36.804199px;}
.h1b_c00172{height:37.540283px;}
.h15_c00172{height:37.546875px;}
.h16_c00172{height:39.304688px;}
.h11_c00172{height:40.060547px;}
.h1c_c00172{height:52.998047px;}
.hd_c00172{height:71.897461px;}
.h1e_c00172{height:75.816650px;}
.hf_c00172{height:76.552734px;}
.h5_c00172{height:77.288818px;}
.he_c00172{height:78.024902px;}
.h10_c00172{height:78.609375px;}
.h7_c00172{height:78.760986px;}
.ha_c00172{height:79.365234px;}
.h1f_c00172{height:79.497070px;}
.h6_c00172{height:80.233154px;}
.h8_c00172{height:80.969238px;}
.h1_c00172{height:81.351562px;}
.hb_c00172{height:81.533203px;}
.hc_c00172{height:81.632812px;}
.h4_c00172{height:82.388672px;}
.h9_c00172{height:82.441406px;}
.h3_c00172{height:83.900391px;}
.h2_c00172{height:85.412109px;}
.h14_c00172{height:114.987305px;}
.h0_c00172{height:1263.000000px;}
.w0_c00172{width:892.500000px;}
.x0_c00172{left:0.000000px;}
.x7_c00172{left:141.118695px;}
.x1_c00172{left:142.199850px;}
.x33_c00172{left:156.238785px;}
.x1e_c00172{left:159.478665px;}
.x21_c00172{left:186.839565px;}
.x2_c00172{left:194.039400px;}
.x22_c00172{left:211.319850px;}
.x26_c00172{left:243.718500px;}
.x27_c00172{left:275.398635px;}
.x3_c00172{left:278.638500px;}
.x37_c00172{left:301.319250px;}
.x4_c00172{left:302.759535px;}
.x23_c00172{left:314.278800px;}
.xe_c00172{left:326.158785px;}
.x28_c00172{left:335.519100px;}
.x29_c00172{left:358.199850px;}
.xf_c00172{left:371.159385px;}
.x24_c00172{left:375.478635px;}
.x25_c00172{left:406.799565px;}
.x12_c00172{left:417.598530px;}
.x5_c00172{left:426.599670px;}
.x13_c00172{left:444.598530px;}
.x35_c00172{left:446.759085px;}
.x2e_c00172{left:455.399235px;}
.x10_c00172{left:459.000000px;}
.x36_c00172{left:460.079400px;}
.x14_c00172{left:476.639700px;}
.x2f_c00172{left:477.719100px;}
.x11_c00172{left:484.559685px;}
.x6_c00172{left:498.239220px;}
.x1f_c00172{left:502.919535px;}
.x30_c00172{left:503.998950px;}
.xb_c00172{left:514.799520px;}
.x20_c00172{left:518.759535px;}
.xc_c00172{left:530.278800px;}
.x15_c00172{left:539.279850px;}
.x38_c00172{left:540.718500px;}
.x2a_c00172{left:560.518620px;}
.x9_c00172{left:570.599070px;}
.x2b_c00172{left:579.239220px;}
.xa_c00172{left:583.919535px;}
.x16_c00172{left:590.758530px;}
.x1c_c00172{left:602.638545px;}
.x17_c00172{left:609.838530px;}
.x1d_c00172{left:619.198785px;}
.x34_c00172{left:636.479235px;}
.x1a_c00172{left:648.718545px;}
.x2c_c00172{left:663.838530px;}
.x1b_c00172{left:666.359850px;}
.x31_c00172{left:685.439670px;}
.x18_c00172{left:695.879520px;}
.x2d_c00172{left:703.799520px;}
.x32_c00172{left:705.239820px;}
.x19_c00172{left:725.039985px;}
.x8_c00172{left:768.239220px;}
.xd_c00172{left:773.639655px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls2a_c00172{letter-spacing:-17.666667pt;}
.ls19_c00172{letter-spacing:-16.925333pt;}
.ls1f_c00172{letter-spacing:-16.898047pt;}
.ls29_c00172{letter-spacing:-12.759600pt;}
.ls27_c00172{letter-spacing:-12.434400pt;}
.ls2b_c00172{letter-spacing:-8.833333pt;}
.ls1c_c00172{letter-spacing:-8.462667pt;}
.ls21_c00172{letter-spacing:-7.924000pt;}
.ls26_c00172{letter-spacing:-7.571580pt;}
.ls11_c00172{letter-spacing:-6.829940pt;}
.ls12_c00172{letter-spacing:-6.601000pt;}
.ls1b_c00172{letter-spacing:-6.578733pt;}
.ls10_c00172{letter-spacing:-5.943000pt;}
.ls1a_c00172{letter-spacing:-5.639333pt;}
.ls9_c00172{letter-spacing:-5.285000pt;}
.ls16_c00172{letter-spacing:-4.619300pt;}
.lse_c00172{letter-spacing:-4.541667pt;}
.ls13_c00172{letter-spacing:-3.961300pt;}
.ls3a_c00172{letter-spacing:-3.852887pt;}
.ls1e_c00172{letter-spacing:-3.636720pt;}
.ls6_c00172{letter-spacing:-3.559400pt;}
.ls2f_c00172{letter-spacing:-3.345733pt;}
.ls8_c00172{letter-spacing:-3.304000pt;}
.ls2c_c00172{letter-spacing:-3.154913pt;}
.lsc_c00172{letter-spacing:-2.639000pt;}
.ls28_c00172{letter-spacing:-2.521067pt;}
.ls2d_c00172{letter-spacing:-2.326080pt;}
.ls4_c00172{letter-spacing:-2.168847pt;}
.ls22_c00172{letter-spacing:-2.015300pt;}
.lsb_c00172{letter-spacing:-1.981700pt;}
.ls18_c00172{letter-spacing:-1.877333pt;}
.ls3_c00172{letter-spacing:-1.560693pt;}
.ls5_c00172{letter-spacing:-1.492353pt;}
.ls14_c00172{letter-spacing:-1.452733pt;}
.lsa_c00172{letter-spacing:-1.323700pt;}
.ls38_c00172{letter-spacing:-0.921600pt;}
.ls7_c00172{letter-spacing:-0.719400pt;}
.ls20_c00172{letter-spacing:-0.705960pt;}
.ls25_c00172{letter-spacing:-0.699300pt;}
.lsd_c00172{letter-spacing:-0.658000pt;}
.lsf_c00172{letter-spacing:0.000000pt;}
.ls32_c00172{letter-spacing:0.488487pt;}
.ls2e_c00172{letter-spacing:0.495733pt;}
.ls34_c00172{letter-spacing:0.523600pt;}
.ls17_c00172{letter-spacing:0.699300pt;}
.ls1_c00172{letter-spacing:0.938667pt;}
.ls37_c00172{letter-spacing:1.064200pt;}
.ls24_c00172{letter-spacing:1.525333pt;}
.ls39_c00172{letter-spacing:1.547000pt;}
.ls2_c00172{letter-spacing:2.522800pt;}
.ls1d_c00172{letter-spacing:2.823333pt;}
.ls36_c00172{letter-spacing:3.126667pt;}
.ls35_c00172{letter-spacing:3.189200pt;}
.ls3b_c00172{letter-spacing:3.233520pt;}
.ls15_c00172{letter-spacing:3.353280pt;}
.ls23_c00172{letter-spacing:4.164600pt;}
.ls31_c00172{letter-spacing:6.533333pt;}
.ls33_c00172{letter-spacing:6.666667pt;}
.ls0_c00172{letter-spacing:9.247000pt;}
.ls30_c00172{letter-spacing:12.213733pt;}
.ws0_c00172{word-spacing:0.000000pt;}
._1c_c00172{margin-left:-30.250000pt;}
._1b_c00172{margin-left:-24.706414pt;}
._1e_c00172{margin-left:-23.444704pt;}
._1f_c00172{margin-left:-17.475070pt;}
._19_c00172{margin-left:-14.454489pt;}
._1d_c00172{margin-left:-10.689067pt;}
._17_c00172{margin-left:-8.000974pt;}
._22_c00172{margin-left:-5.831542pt;}
._e_c00172{margin-left:-4.899987pt;}
._9_c00172{margin-left:-3.765894pt;}
._d_c00172{margin-left:-2.591611pt;}
._f_c00172{margin-left:-1.078106pt;}
._11_c00172{width:1.187160pt;}
._7_c00172{width:2.249470pt;}
._b_c00172{width:3.996551pt;}
._c_c00172{width:4.897517pt;}
._6_c00172{width:6.740815pt;}
._8_c00172{width:8.092264pt;}
._a_c00172{width:10.292681pt;}
._21_c00172{width:11.482800pt;}
._18_c00172{width:12.531004pt;}
._5_c00172{width:13.426700pt;}
._15_c00172{width:14.734538pt;}
._3_c00172{width:16.993015pt;}
._2_c00172{width:18.652491pt;}
._4_c00172{width:20.301070pt;}
._10_c00172{width:21.462185pt;}
._0_c00172{width:22.869185pt;}
._16_c00172{width:23.831672pt;}
._20_c00172{width:24.912881pt;}
._12_c00172{width:26.072979pt;}
._14_c00172{width:27.386179pt;}
._1_c00172{width:28.637158pt;}
._13_c00172{width:29.903974pt;}
._25_c00172{width:75.429084pt;}
._23_c00172{width:96.127715pt;}
._24_c00172{width:128.178531pt;}
._1a_c00172{width:193.152704pt;}
.fsd_c00172{font-size:19.333333pt;}
.fsc_c00172{font-size:22.000000pt;}
.fs11_c00172{font-size:30.666667pt;}
.fs12_c00172{font-size:31.333333pt;}
.fsf_c00172{font-size:32.000000pt;}
.fs13_c00172{font-size:32.666667pt;}
.fs14_c00172{font-size:33.333333pt;}
.fs15_c00172{font-size:34.000000pt;}
.fs10_c00172{font-size:34.666667pt;}
.fsb_c00172{font-size:35.333333pt;}
.fs16_c00172{font-size:48.000000pt;}
.fs9_c00172{font-size:64.666667pt;}
.fs17_c00172{font-size:68.666667pt;}
.fs0_c00172{font-size:69.333333pt;}
.fs4_c00172{font-size:70.000000pt;}
.fsa_c00172{font-size:70.666667pt;}
.fs5_c00172{font-size:71.333333pt;}
.fs8_c00172{font-size:72.000000pt;}
.fs3_c00172{font-size:72.666667pt;}
.fs6_c00172{font-size:73.333333pt;}
.fs2_c00172{font-size:74.000000pt;}
.fs7_c00172{font-size:74.666667pt;}
.fs1_c00172{font-size:75.333333pt;}
.fse_c00172{font-size:98.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y2e_c00172{bottom:163.519000pt;}
.y2d_c00172{bottom:190.398920pt;}
.y2c_c00172{bottom:190.399693pt;}
.y2b_c00172{bottom:216.959453pt;}
.y2a_c00172{bottom:216.960240pt;}
.y28_c00172{bottom:243.518907pt;}
.y29_c00172{bottom:243.520000pt;}
.y27_c00172{bottom:270.078653pt;}
.y26_c00172{bottom:295.999680pt;}
.y25_c00172{bottom:349.119187pt;}
.y20_c00172{bottom:374.080120pt;}
.y21_c00172{bottom:374.879840pt;}
.y24_c00172{bottom:375.358933pt;}
.y23_c00172{bottom:375.519973pt;}
.y22_c00172{bottom:375.679733pt;}
.y1f_c00172{bottom:381.439453pt;}
.y1e_c00172{bottom:401.919480pt;}
.y1d_c00172{bottom:401.920387pt;}
.y1c_c00172{bottom:428.480147pt;}
.y1a_c00172{bottom:454.719013pt;}
.y1b_c00172{bottom:454.719720pt;}
.y19_c00172{bottom:481.278773pt;}
.y18_c00172{bottom:507.839400pt;}
.y17_c00172{bottom:534.719320pt;}
.y16_c00172{bottom:560.958907pt;}
.y15_c00172{bottom:560.960613pt;}
.y14_c00172{bottom:587.520360pt;}
.y13_c00172{bottom:614.080120pt;}
.y12_c00172{bottom:614.080280pt;}
.y11_c00172{bottom:640.319867pt;}
.y10_c00172{bottom:666.878907pt;}
.yf_c00172{bottom:693.758787pt;}
.ye_c00172{bottom:693.759587pt;}
.yd_c00172{bottom:720.319333pt;}
.yc_c00172{bottom:720.319360pt;}
.yb_c00172{bottom:773.759027pt;}
.ya_c00172{bottom:800.318787pt;}
.y9_c00172{bottom:826.559973pt;}
.y8_c00172{bottom:853.439947pt;}
.y6_c00172{bottom:879.998987pt;}
.y7_c00172{bottom:879.999027pt;}
.y5_c00172{bottom:906.878907pt;}
.y4_c00172{bottom:933.439453pt;}
.y3_c00172{bottom:933.440240pt;}
.y2_c00172{bottom:960.000000pt;}
.y1_c00172{bottom:1012.160080pt;}
.h13_c00172{height:20.164062pt;}
.h12_c00172{height:21.742187pt;}
.h18_c00172{height:30.751953pt;}
.h1d_c00172{height:31.406250pt;}
.h17_c00172{height:31.984375pt;}
.h19_c00172{height:32.060547pt;}
.h1a_c00172{height:32.714844pt;}
.h1b_c00172{height:33.369141pt;}
.h15_c00172{height:33.375000pt;}
.h16_c00172{height:34.937500pt;}
.h11_c00172{height:35.609375pt;}
.h1c_c00172{height:47.109375pt;}
.hd_c00172{height:63.908854pt;}
.h1e_c00172{height:67.392578pt;}
.hf_c00172{height:68.046875pt;}
.h5_c00172{height:68.701172pt;}
.he_c00172{height:69.355469pt;}
.h10_c00172{height:69.875000pt;}
.h7_c00172{height:70.009766pt;}
.ha_c00172{height:70.546875pt;}
.h1f_c00172{height:70.664062pt;}
.h6_c00172{height:71.318359pt;}
.h8_c00172{height:71.972656pt;}
.h1_c00172{height:72.312500pt;}
.hb_c00172{height:72.473958pt;}
.hc_c00172{height:72.562500pt;}
.h4_c00172{height:73.234375pt;}
.h9_c00172{height:73.281250pt;}
.h3_c00172{height:74.578125pt;}
.h2_c00172{height:75.921875pt;}
.h14_c00172{height:102.210938pt;}
.h0_c00172{height:1122.666667pt;}
.w0_c00172{width:793.333333pt;}
.x0_c00172{left:0.000000pt;}
.x7_c00172{left:125.438840pt;}
.x1_c00172{left:126.399867pt;}
.x33_c00172{left:138.878920pt;}
.x1e_c00172{left:141.758813pt;}
.x21_c00172{left:166.079613pt;}
.x2_c00172{left:172.479467pt;}
.x22_c00172{left:187.839867pt;}
.x26_c00172{left:216.638667pt;}
.x27_c00172{left:244.798787pt;}
.x3_c00172{left:247.678667pt;}
.x37_c00172{left:267.839333pt;}
.x4_c00172{left:269.119587pt;}
.x23_c00172{left:279.358933pt;}
.xe_c00172{left:289.918920pt;}
.x28_c00172{left:298.239200pt;}
.x29_c00172{left:318.399867pt;}
.xf_c00172{left:329.919453pt;}
.x24_c00172{left:333.758787pt;}
.x25_c00172{left:361.599613pt;}
.x12_c00172{left:371.198693pt;}
.x5_c00172{left:379.199707pt;}
.x13_c00172{left:395.198693pt;}
.x35_c00172{left:397.119187pt;}
.x2e_c00172{left:404.799320pt;}
.x10_c00172{left:408.000000pt;}
.x36_c00172{left:408.959467pt;}
.x14_c00172{left:423.679733pt;}
.x2f_c00172{left:424.639200pt;}
.x11_c00172{left:430.719720pt;}
.x6_c00172{left:442.879307pt;}
.x1f_c00172{left:447.039587pt;}
.x30_c00172{left:447.999067pt;}
.xb_c00172{left:457.599573pt;}
.x20_c00172{left:461.119587pt;}
.xc_c00172{left:471.358933pt;}
.x15_c00172{left:479.359867pt;}
.x38_c00172{left:480.638667pt;}
.x2a_c00172{left:498.238773pt;}
.x9_c00172{left:507.199173pt;}
.x2b_c00172{left:514.879307pt;}
.xa_c00172{left:519.039587pt;}
.x16_c00172{left:525.118693pt;}
.x1c_c00172{left:535.678707pt;}
.x17_c00172{left:542.078693pt;}
.x1d_c00172{left:550.398920pt;}
.x34_c00172{left:565.759320pt;}
.x1a_c00172{left:576.638707pt;}
.x2c_c00172{left:590.078693pt;}
.x1b_c00172{left:592.319867pt;}
.x31_c00172{left:609.279707pt;}
.x18_c00172{left:618.559573pt;}
.x2d_c00172{left:625.599573pt;}
.x32_c00172{left:626.879840pt;}
.x19_c00172{left:644.479987pt;}
.x8_c00172{left:682.879307pt;}
.xd_c00172{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_169f63f2465c72b8eebe8b89.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_60a44928ec164dcb70fdf43b.woff2')format("woff");}.ff2_c00173{font-family:ff2_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:ff3_c00173;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.364746;font-style:normal;font-weight:normal;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_e4f2252d4cd6b8075d2b7f0a.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;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_176ca51067016280cfbcaefa.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00173;src:url('chunks/assets/font_6e040dd7e94959e747336ae1.woff2')format("woff");}.ff6_c00173{font-family:ff6_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;}
.m8_c00173{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m17_c00173{transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m16_c00173{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m21_c00173{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m1c_c00173{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00173{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m1e_c00173{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m20_c00173{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m10_c00173{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls16_c00173{letter-spacing:-14.210775px;}
.ls25_c00173{letter-spacing:-11.574525px;}
.ls1c_c00173{letter-spacing:-11.323200px;}
.ls1a_c00173{letter-spacing:-9.850050px;}
.ls20_c00173{letter-spacing:-8.914500px;}
.ls28_c00173{letter-spacing:-8.825100px;}
.lse_c00173{letter-spacing:-8.175038px;}
.ls19_c00173{letter-spacing:-7.426125px;}
.ls14_c00173{letter-spacing:-6.751650px;}
.ls2d_c00173{letter-spacing:-6.749828px;}
.ls9_c00173{letter-spacing:-6.685875px;}
.ls11_c00173{letter-spacing:-5.945625px;}
.ls12_c00173{letter-spacing:-5.577000px;}
.ls5_c00173{letter-spacing:-5.390625px;}
.ls2c_c00173{letter-spacing:-5.304203px;}
.ls18_c00173{letter-spacing:-5.247533px;}
.ls1b_c00173{letter-spacing:-5.203125px;}
.lsc_c00173{letter-spacing:-5.196713px;}
.ls29_c00173{letter-spacing:-5.140800px;}
.ls15_c00173{letter-spacing:-4.634850px;}
.ls6_c00173{letter-spacing:-4.456463px;}
.ls1d_c00173{letter-spacing:-4.418663px;}
.ls17_c00173{letter-spacing:-4.376580px;}
.ls23_c00173{letter-spacing:-3.782220px;}
.ls2e_c00173{letter-spacing:-3.750300px;}
.ls2_c00173{letter-spacing:-3.717000px;}
.ls1_c00173{letter-spacing:-2.968875px;}
.ls1f_c00173{letter-spacing:-2.592075px;}
.ls7_c00173{letter-spacing:-2.229413px;}
.ls1e_c00173{letter-spacing:-1.725375px;}
.lsa_c00173{letter-spacing:-1.489163px;}
.ls4_c00173{letter-spacing:-0.896100px;}
.ls26_c00173{letter-spacing:-0.842400px;}
.ls13_c00173{letter-spacing:-0.764775px;}
.ls8_c00173{letter-spacing:-0.740250px;}
.ls10_c00173{letter-spacing:0.000000px;}
.ls3_c00173{letter-spacing:0.733200px;}
.ls27_c00173{letter-spacing:0.757050px;}
.lsf_c00173{letter-spacing:0.757350px;}
.ls21_c00173{letter-spacing:0.772650px;}
.ls24_c00173{letter-spacing:0.828720px;}
.lsb_c00173{letter-spacing:3.519765px;}
.ls30_c00173{letter-spacing:3.795825px;}
.lsd_c00173{letter-spacing:3.839805px;}
.ls2f_c00173{letter-spacing:3.864840px;}
.ls0_c00173{letter-spacing:5.196713px;}
.ls22_c00173{letter-spacing:5.239050px;}
.ls2a_c00173{letter-spacing:7.716600px;}
.ls2b_c00173{letter-spacing:30.109845px;}
.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;}
._16_c00173{margin-left:-154.693811px;}
._1d_c00173{margin-left:-8.197994px;}
._1a_c00173{margin-left:-6.596026px;}
._18_c00173{margin-left:-4.957357px;}
._13_c00173{margin-left:-3.008428px;}
._17_c00173{margin-left:-1.236375px;}
._14_c00173{width:1.025355px;}
._12_c00173{width:2.985175px;}
._3_c00173{width:4.680454px;}
._4_c00173{width:6.155575px;}
._2_c00173{width:7.764988px;}
._10_c00173{width:9.132771px;}
._5_c00173{width:10.263175px;}
._1_c00173{width:11.826051px;}
._b_c00173{width:13.292658px;}
._11_c00173{width:15.057327px;}
._f_c00173{width:17.160100px;}
._0_c00173{width:19.168612px;}
._c_c00173{width:20.218632px;}
._6_c00173{width:21.515822px;}
._d_c00173{width:22.848852px;}
._e_c00173{width:24.908655px;}
._19_c00173{width:26.753247px;}
._1b_c00173{width:29.633952px;}
._1c_c00173{width:31.530326px;}
._15_c00173{width:37.345256px;}
._7_c00173{width:42.449341px;}
._a_c00173{width:45.593457px;}
._8_c00173{width:46.693029px;}
._9_c00173{width:48.895608px;}
.fc0_c00173{color:transparent;}
.fsf_c00173{font-size:54.000000px;}
.fse_c00173{font-size:69.000000px;}
.fs10_c00173{font-size:70.500000px;}
.fsc_c00173{font-size:72.000000px;}
.fsd_c00173{font-size:72.750000px;}
.fs4_c00173{font-size:76.500000px;}
.fs2_c00173{font-size:77.250000px;}
.fs1_c00173{font-size:78.000000px;}
.fs0_c00173{font-size:78.750000px;}
.fs8_c00173{font-size:79.500000px;}
.fs6_c00173{font-size:80.250000px;}
.fs11_c00173{font-size:81.000000px;}
.fsa_c00173{font-size:81.750000px;}
.fs7_c00173{font-size:82.500000px;}
.fs9_c00173{font-size:83.250000px;}
.fsb_c00173{font-size:84.000000px;}
.fs5_c00173{font-size:85.500000px;}
.fs3_c00173{font-size:86.250000px;}
.y0_c00173{bottom:0.000000px;}
.y25_c00173{bottom:219.599100px;}
.y24_c00173{bottom:219.599700px;}
.y23_c00173{bottom:249.839610px;}
.y22_c00173{bottom:279.359145px;}
.y21_c00173{bottom:338.039820px;}
.y20_c00173{bottom:367.919535px;}
.y1f_c00173{bottom:397.800150px;}
.y1e_c00173{bottom:428.039985px;}
.y1d_c00173{bottom:457.559070px;}
.y1c_c00173{bottom:488.519670px;}
.y1b_c00173{bottom:488.519850px;}
.y1a_c00173{bottom:518.039385px;}
.y18_c00173{bottom:547.558635px;}
.y19_c00173{bottom:547.559100px;}
.y17_c00173{bottom:606.599505px;}
.y16_c00173{bottom:636.479235px;}
.y15_c00173{bottom:636.479595px;}
.y14_c00173{bottom:667.080000px;}
.y13_c00173{bottom:696.599670px;}
.y12_c00173{bottom:696.600570px;}
.y11_c00173{bottom:726.480285px;}
.yf_c00173{bottom:755.999250px;}
.y10_c00173{bottom:756.000000px;}
.ye_c00173{bottom:785.878965px;}
.yd_c00173{bottom:785.879190px;}
.yc_c00173{bottom:846.719520px;}
.yb_c00173{bottom:906.120075px;}
.ya_c00173{bottom:935.639610px;}
.y9_c00173{bottom:965.879520px;}
.y8_c00173{bottom:965.879700px;}
.y7_c00173{bottom:995.759415px;}
.y6_c00173{bottom:1025.639145px;}
.y5_c00173{bottom:1055.518860px;}
.y3_c00173{bottom:1085.397855px;}
.y4_c00173{bottom:1085.398590px;}
.y2_c00173{bottom:1114.559010px;}
.y1_c00173{bottom:1144.798920px;}
.h17_c00173{height:54.421875px;}
.h18_c00173{height:71.050781px;}
.h16_c00173{height:71.964844px;}
.h5_c00173{height:75.080566px;}
.h13_c00173{height:75.093750px;}
.h9_c00173{height:75.816650px;}
.h14_c00173{height:75.875977px;}
.h2_c00173{height:76.552734px;}
.h1_c00173{height:77.288818px;}
.ha_c00173{height:77.853516px;}
.hf_c00173{height:78.024902px;}
.h15_c00173{height:78.609375px;}
.h7_c00173{height:78.760986px;}
.h19_c00173{height:79.497070px;}
.hb_c00173{height:80.121094px;}
.he_c00173{height:80.233154px;}
.h3_c00173{height:80.569336px;}
.h12_c00173{height:80.876953px;}
.hc_c00173{height:80.969238px;}
.h8_c00173{height:81.533203px;}
.h10_c00173{height:81.705322px;}
.hd_c00173{height:82.274414px;}
.h1a_c00173{height:82.441406px;}
.h11_c00173{height:83.015625px;}
.h6_c00173{height:83.913574px;}
.h4_c00173{height:84.649658px;}
.h0_c00173{height:1263.000000px;}
.w0_c00173{width:892.500000px;}
.x0_c00173{left:0.000000px;}
.x32_c00173{left:136.080615px;}
.x8_c00173{left:140.762175px;}
.x1_c00173{left:141.838950px;}
.x27_c00173{left:168.118815px;}
.xb_c00173{left:208.439250px;}
.x21_c00173{left:247.678500px;}
.x28_c00173{left:250.559100px;}
.x22_c00173{left:273.958350px;}
.x29_c00173{left:281.159850px;}
.x9_c00173{left:307.078785px;}
.x17_c00173{left:312.479235px;}
.x33_c00173{left:323.279850px;}
.xa_c00173{left:330.479685px;}
.x18_c00173{left:334.078785px;}
.x34_c00173{left:351.359235px;}
.x1c_c00173{left:357.479685px;}
.x1d_c00173{left:377.639100px;}
.xe_c00173{left:392.759085px;}
.x23_c00173{left:395.278800px;}
.xf_c00173{left:411.479685px;}
.x2a_c00173{left:416.159820px;}
.x1f_c00173{left:417.959385px;}
.x20_c00173{left:432.718500px;}
.x2_c00173{left:435.958335px;}
.x6_c00173{left:450.719100px;}
.x3_c00173{left:469.078770px;}
.x7_c00173{left:484.559685px;}
.x13_c00173{left:487.438665px;}
.xc_c00173{left:492.479685px;}
.x24_c00173{left:498.598530px;}
.x14_c00173{left:500.399820px;}
.xd_c00173{left:507.958920px;}
.x15_c00173{left:518.759535px;}
.x4_c00173{left:522.719565px;}
.x1b_c00173{left:524.519070px;}
.x5_c00173{left:545.039385px;}
.x10_c00173{left:552.239220px;}
.x25_c00173{left:554.399820px;}
.x26_c00173{left:570.599070px;}
.x2b_c00173{left:579.959385px;}
.x35_c00173{left:633.239220px;}
.x2c_c00173{left:639.359850px;}
.x11_c00173{left:645.478635px;}
.x36_c00173{left:651.958335px;}
.x19_c00173{left:657.358605px;}
.x1a_c00173{left:672.478635px;}
.x2d_c00173{left:677.878920px;}
.x37_c00173{left:679.678530px;}
.x30_c00173{left:700.198785px;}
.x31_c00173{left:712.439670px;}
.x2e_c00173{left:730.799520px;}
.x12_c00173{left:739.078770px;}
.x1e_c00173{left:745.199385px;}
.x16_c00173{left:763.199850px;}
.x2f_c00173{left:766.439670px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls16_c00173{letter-spacing:-12.631800pt;}
.ls25_c00173{letter-spacing:-10.288467pt;}
.ls1c_c00173{letter-spacing:-10.065067pt;}
.ls1a_c00173{letter-spacing:-8.755600pt;}
.ls20_c00173{letter-spacing:-7.924000pt;}
.ls28_c00173{letter-spacing:-7.844533pt;}
.lse_c00173{letter-spacing:-7.266700pt;}
.ls19_c00173{letter-spacing:-6.601000pt;}
.ls14_c00173{letter-spacing:-6.001467pt;}
.ls2d_c00173{letter-spacing:-5.999847pt;}
.ls9_c00173{letter-spacing:-5.943000pt;}
.ls11_c00173{letter-spacing:-5.285000pt;}
.ls12_c00173{letter-spacing:-4.957333pt;}
.ls5_c00173{letter-spacing:-4.791667pt;}
.ls2c_c00173{letter-spacing:-4.714847pt;}
.ls18_c00173{letter-spacing:-4.664473pt;}
.ls1b_c00173{letter-spacing:-4.625000pt;}
.lsc_c00173{letter-spacing:-4.619300pt;}
.ls29_c00173{letter-spacing:-4.569600pt;}
.ls15_c00173{letter-spacing:-4.119867pt;}
.ls6_c00173{letter-spacing:-3.961300pt;}
.ls1d_c00173{letter-spacing:-3.927700pt;}
.ls17_c00173{letter-spacing:-3.890293pt;}
.ls23_c00173{letter-spacing:-3.361973pt;}
.ls2e_c00173{letter-spacing:-3.333600pt;}
.ls2_c00173{letter-spacing:-3.304000pt;}
.ls1_c00173{letter-spacing:-2.639000pt;}
.ls1f_c00173{letter-spacing:-2.304067pt;}
.ls7_c00173{letter-spacing:-1.981700pt;}
.ls1e_c00173{letter-spacing:-1.533667pt;}
.lsa_c00173{letter-spacing:-1.323700pt;}
.ls4_c00173{letter-spacing:-0.796533pt;}
.ls26_c00173{letter-spacing:-0.748800pt;}
.ls13_c00173{letter-spacing:-0.679800pt;}
.ls8_c00173{letter-spacing:-0.658000pt;}
.ls10_c00173{letter-spacing:0.000000pt;}
.ls3_c00173{letter-spacing:0.651733pt;}
.ls27_c00173{letter-spacing:0.672933pt;}
.lsf_c00173{letter-spacing:0.673200pt;}
.ls21_c00173{letter-spacing:0.686800pt;}
.ls24_c00173{letter-spacing:0.736640pt;}
.lsb_c00173{letter-spacing:3.128680pt;}
.ls30_c00173{letter-spacing:3.374067pt;}
.lsd_c00173{letter-spacing:3.413160pt;}
.ls2f_c00173{letter-spacing:3.435413pt;}
.ls0_c00173{letter-spacing:4.619300pt;}
.ls22_c00173{letter-spacing:4.656933pt;}
.ls2a_c00173{letter-spacing:6.859200pt;}
.ls2b_c00173{letter-spacing:26.764307pt;}
.ws0_c00173{word-spacing:0.000000pt;}
._16_c00173{margin-left:-137.505609pt;}
._1d_c00173{margin-left:-7.287106pt;}
._1a_c00173{margin-left:-5.863134pt;}
._18_c00173{margin-left:-4.406540pt;}
._13_c00173{margin-left:-2.674158pt;}
._17_c00173{margin-left:-1.099000pt;}
._14_c00173{width:0.911426pt;}
._12_c00173{width:2.653489pt;}
._3_c00173{width:4.160404pt;}
._4_c00173{width:5.471623pt;}
._2_c00173{width:6.902211pt;}
._10_c00173{width:8.118019pt;}
._5_c00173{width:9.122823pt;}
._1_c00173{width:10.512045pt;}
._b_c00173{width:11.815696pt;}
._11_c00173{width:13.384291pt;}
._f_c00173{width:15.253423pt;}
._0_c00173{width:17.038766pt;}
._c_c00173{width:17.972117pt;}
._6_c00173{width:19.125175pt;}
._d_c00173{width:20.310091pt;}
._e_c00173{width:22.141026pt;}
._19_c00173{width:23.780664pt;}
._1b_c00173{width:26.341291pt;}
._1c_c00173{width:28.026957pt;}
._15_c00173{width:33.195783pt;}
._7_c00173{width:37.732747pt;}
._a_c00173{width:40.527517pt;}
._8_c00173{width:41.504915pt;}
._9_c00173{width:43.462762pt;}
.fsf_c00173{font-size:48.000000pt;}
.fse_c00173{font-size:61.333333pt;}
.fs10_c00173{font-size:62.666667pt;}
.fsc_c00173{font-size:64.000000pt;}
.fsd_c00173{font-size:64.666667pt;}
.fs4_c00173{font-size:68.000000pt;}
.fs2_c00173{font-size:68.666667pt;}
.fs1_c00173{font-size:69.333333pt;}
.fs0_c00173{font-size:70.000000pt;}
.fs8_c00173{font-size:70.666667pt;}
.fs6_c00173{font-size:71.333333pt;}
.fs11_c00173{font-size:72.000000pt;}
.fsa_c00173{font-size:72.666667pt;}
.fs7_c00173{font-size:73.333333pt;}
.fs9_c00173{font-size:74.000000pt;}
.fsb_c00173{font-size:74.666667pt;}
.fs5_c00173{font-size:76.000000pt;}
.fs3_c00173{font-size:76.666667pt;}
.y0_c00173{bottom:0.000000pt;}
.y25_c00173{bottom:195.199200pt;}
.y24_c00173{bottom:195.199733pt;}
.y23_c00173{bottom:222.079653pt;}
.y22_c00173{bottom:248.319240pt;}
.y21_c00173{bottom:300.479840pt;}
.y20_c00173{bottom:327.039587pt;}
.y1f_c00173{bottom:353.600133pt;}
.y1e_c00173{bottom:380.479987pt;}
.y1d_c00173{bottom:406.719173pt;}
.y1c_c00173{bottom:434.239707pt;}
.y1b_c00173{bottom:434.239867pt;}
.y1a_c00173{bottom:460.479453pt;}
.y18_c00173{bottom:486.718787pt;}
.y19_c00173{bottom:486.719200pt;}
.y17_c00173{bottom:539.199560pt;}
.y16_c00173{bottom:565.759320pt;}
.y15_c00173{bottom:565.759640pt;}
.y14_c00173{bottom:592.960000pt;}
.y13_c00173{bottom:619.199707pt;}
.y12_c00173{bottom:619.200507pt;}
.y11_c00173{bottom:645.760253pt;}
.yf_c00173{bottom:671.999333pt;}
.y10_c00173{bottom:672.000000pt;}
.ye_c00173{bottom:698.559080pt;}
.yd_c00173{bottom:698.559280pt;}
.yc_c00173{bottom:752.639573pt;}
.yb_c00173{bottom:805.440067pt;}
.ya_c00173{bottom:831.679653pt;}
.y9_c00173{bottom:858.559573pt;}
.y8_c00173{bottom:858.559733pt;}
.y7_c00173{bottom:885.119480pt;}
.y6_c00173{bottom:911.679240pt;}
.y5_c00173{bottom:938.238987pt;}
.y3_c00173{bottom:964.798093pt;}
.y4_c00173{bottom:964.798747pt;}
.y2_c00173{bottom:990.719120pt;}
.y1_c00173{bottom:1017.599040pt;}
.h17_c00173{height:48.375000pt;}
.h18_c00173{height:63.156250pt;}
.h16_c00173{height:63.968750pt;}
.h5_c00173{height:66.738281pt;}
.h13_c00173{height:66.750000pt;}
.h9_c00173{height:67.392578pt;}
.h14_c00173{height:67.445312pt;}
.h2_c00173{height:68.046875pt;}
.h1_c00173{height:68.701172pt;}
.ha_c00173{height:69.203125pt;}
.hf_c00173{height:69.355469pt;}
.h15_c00173{height:69.875000pt;}
.h7_c00173{height:70.009766pt;}
.h19_c00173{height:70.664062pt;}
.hb_c00173{height:71.218750pt;}
.he_c00173{height:71.318359pt;}
.h3_c00173{height:71.617188pt;}
.h12_c00173{height:71.890625pt;}
.hc_c00173{height:71.972656pt;}
.h8_c00173{height:72.473958pt;}
.h10_c00173{height:72.626953pt;}
.hd_c00173{height:73.132813pt;}
.h1a_c00173{height:73.281250pt;}
.h11_c00173{height:73.791667pt;}
.h6_c00173{height:74.589844pt;}
.h4_c00173{height:75.244141pt;}
.h0_c00173{height:1122.666667pt;}
.w0_c00173{width:793.333333pt;}
.x0_c00173{left:0.000000pt;}
.x32_c00173{left:120.960547pt;}
.x8_c00173{left:125.121933pt;}
.x1_c00173{left:126.079067pt;}
.x27_c00173{left:149.438947pt;}
.xb_c00173{left:185.279333pt;}
.x21_c00173{left:220.158667pt;}
.x28_c00173{left:222.719200pt;}
.x22_c00173{left:243.518533pt;}
.x29_c00173{left:249.919867pt;}
.x9_c00173{left:272.958920pt;}
.x17_c00173{left:277.759320pt;}
.x33_c00173{left:287.359867pt;}
.xa_c00173{left:293.759720pt;}
.x18_c00173{left:296.958920pt;}
.x34_c00173{left:312.319320pt;}
.x1c_c00173{left:317.759720pt;}
.x1d_c00173{left:335.679200pt;}
.xe_c00173{left:349.119187pt;}
.x23_c00173{left:351.358933pt;}
.xf_c00173{left:365.759720pt;}
.x2a_c00173{left:369.919840pt;}
.x1f_c00173{left:371.519453pt;}
.x20_c00173{left:384.638667pt;}
.x2_c00173{left:387.518520pt;}
.x6_c00173{left:400.639200pt;}
.x3_c00173{left:416.958907pt;}
.x7_c00173{left:430.719720pt;}
.x13_c00173{left:433.278813pt;}
.xc_c00173{left:437.759720pt;}
.x24_c00173{left:443.198693pt;}
.x14_c00173{left:444.799840pt;}
.xd_c00173{left:451.519040pt;}
.x15_c00173{left:461.119587pt;}
.x4_c00173{left:464.639613pt;}
.x1b_c00173{left:466.239173pt;}
.x5_c00173{left:484.479453pt;}
.x10_c00173{left:490.879307pt;}
.x25_c00173{left:492.799840pt;}
.x26_c00173{left:507.199173pt;}
.x2b_c00173{left:515.519453pt;}
.x35_c00173{left:562.879307pt;}
.x2c_c00173{left:568.319867pt;}
.x11_c00173{left:573.758787pt;}
.x36_c00173{left:579.518520pt;}
.x19_c00173{left:584.318760pt;}
.x1a_c00173{left:597.758787pt;}
.x2d_c00173{left:602.559040pt;}
.x37_c00173{left:604.158693pt;}
.x30_c00173{left:622.398920pt;}
.x31_c00173{left:633.279707pt;}
.x2e_c00173{left:649.599573pt;}
.x12_c00173{left:656.958907pt;}
.x1e_c00173{left:662.399453pt;}
.x16_c00173{left:678.399867pt;}
.x2f_c00173{left:681.279707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01c8ecac1b9819a8da92a3bf.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_305bd2a3557b0e77c24add6b.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_eceebb1b150f3784b59602e5.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_17c29037bc6a8cbc24064569.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_28877dbf44fb510406b96eff.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_dc21070d4087f65f60191806.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:1.432129;font-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_c00174{transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165385,0.000000,0.000000,0.250000,0,0);}
.mf_c00174{transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);}
.m1d_c00174{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m2b_c00174{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00174{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m29_c00174{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m1b_c00174{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m28_c00174{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m20_c00174{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m21_c00174{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m27_c00174{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00174{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m18_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m17_c00174{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m15_c00174{transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{transform:matrix(0.293860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293860,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls10_c00174{letter-spacing:-25.797900px;}
.ls23_c00174{letter-spacing:-17.753175px;}
.ls2d_c00174{letter-spacing:-12.470250px;}
.ls13_c00174{letter-spacing:-11.237415px;}
.lsd_c00174{letter-spacing:-10.997250px;}
.ls21_c00174{letter-spacing:-10.773000px;}
.ls7_c00174{letter-spacing:-8.914500px;}
.ls2e_c00174{letter-spacing:-8.766900px;}
.ls25_c00174{letter-spacing:-8.381280px;}
.ls4_c00174{letter-spacing:-8.175038px;}
.ls37_c00174{letter-spacing:-7.609425px;}
.ls35_c00174{letter-spacing:-7.553813px;}
.ls16_c00174{letter-spacing:-7.426125px;}
.lsb_c00174{letter-spacing:-6.685875px;}
.ls9_c00174{letter-spacing:-5.945625px;}
.ls12_c00174{letter-spacing:-5.817600px;}
.ls11_c00174{letter-spacing:-5.345190px;}
.ls1_c00174{letter-spacing:-5.196713px;}
.lsc_c00174{letter-spacing:-4.921875px;}
.ls2f_c00174{letter-spacing:-4.781250px;}
.ls15_c00174{letter-spacing:-4.456463px;}
.ls17_c00174{letter-spacing:-4.094925px;}
.ls1e_c00174{letter-spacing:-3.749288px;}
.ls3_c00174{letter-spacing:-3.717000px;}
.lsa_c00174{letter-spacing:-3.645000px;}
.ls24_c00174{letter-spacing:-3.283875px;}
.ls2b_c00174{letter-spacing:-3.162015px;}
.ls0_c00174{letter-spacing:-2.968875px;}
.ls33_c00174{letter-spacing:-2.376780px;}
.ls31_c00174{letter-spacing:-2.359500px;}
.ls5_c00174{letter-spacing:-2.229413px;}
.ls29_c00174{letter-spacing:-2.217600px;}
.ls1a_c00174{letter-spacing:-2.208578px;}
.ls1c_c00174{letter-spacing:-2.109300px;}
.ls1b_c00174{letter-spacing:-2.038320px;}
.ls18_c00174{letter-spacing:-1.915200px;}
.ls36_c00174{letter-spacing:-1.740863px;}
.ls27_c00174{letter-spacing:-1.583835px;}
.ls34_c00174{letter-spacing:-1.583400px;}
.ls28_c00174{letter-spacing:-1.572953px;}
.ls6_c00174{letter-spacing:-1.489163px;}
.ls30_c00174{letter-spacing:-1.409648px;}
.ls2c_c00174{letter-spacing:-0.994500px;}
.ls26_c00174{letter-spacing:-0.873600px;}
.ls20_c00174{letter-spacing:-0.764400px;}
.ls2_c00174{letter-spacing:-0.740250px;}
.ls8_c00174{letter-spacing:0.000000px;}
.ls32_c00174{letter-spacing:0.873600px;}
.ls14_c00174{letter-spacing:1.566675px;}
.ls22_c00174{letter-spacing:1.567500px;}
.lse_c00174{letter-spacing:2.317950px;}
.lsf_c00174{letter-spacing:2.464875px;}
.ls1d_c00174{letter-spacing:3.203535px;}
.ls2a_c00174{letter-spacing:6.376275px;}
.ls19_c00174{letter-spacing:7.370685px;}
.ls1f_c00174{letter-spacing:20.549273px;}
.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;}
._7_c00174{margin-left:-6.545418px;}
._6_c00174{margin-left:-4.594320px;}
._5_c00174{margin-left:-2.880690px;}
._18_c00174{margin-left:-1.529072px;}
._19_c00174{width:1.058489px;}
._2_c00174{width:2.331238px;}
._a_c00174{width:4.054733px;}
._0_c00174{width:5.793058px;}
._3_c00174{width:7.095405px;}
._17_c00174{width:8.147460px;}
._8_c00174{width:9.210630px;}
._15_c00174{width:10.944586px;}
._1_c00174{width:12.039983px;}
._12_c00174{width:13.204800px;}
._14_c00174{width:14.303036px;}
._4_c00174{width:17.193339px;}
._13_c00174{width:18.395643px;}
._16_c00174{width:20.446576px;}
._f_c00174{width:21.816499px;}
._11_c00174{width:22.847024px;}
._e_c00174{width:24.919189px;}
._9_c00174{width:27.006971px;}
._d_c00174{width:28.255025px;}
._c_c00174{width:30.948809px;}
._10_c00174{width:31.965680px;}
._b_c00174{width:36.923304px;}
.fc0_c00174{color:transparent;}
.fsc_c00174{font-size:31.500000px;}
.fs19_c00174{font-size:35.250000px;}
.fs17_c00174{font-size:38.250000px;}
.fs1a_c00174{font-size:42.000000px;}
.fs15_c00174{font-size:43.500000px;}
.fs1c_c00174{font-size:45.000000px;}
.fs16_c00174{font-size:47.250000px;}
.fs14_c00174{font-size:48.000000px;}
.fs18_c00174{font-size:48.750000px;}
.fs9_c00174{font-size:52.500000px;}
.fsa_c00174{font-size:53.250000px;}
.fs1b_c00174{font-size:56.250000px;}
.fsf_c00174{font-size:61.500000px;}
.fse_c00174{font-size:66.750000px;}
.fs11_c00174{font-size:68.250000px;}
.fs12_c00174{font-size:71.250000px;}
.fs6_c00174{font-size:72.000000px;}
.fs7_c00174{font-size:73.500000px;}
.fs8_c00174{font-size:74.250000px;}
.fs4_c00174{font-size:76.500000px;}
.fsd_c00174{font-size:77.250000px;}
.fs0_c00174{font-size:78.750000px;}
.fs1_c00174{font-size:80.250000px;}
.fs2_c00174{font-size:81.000000px;}
.fs13_c00174{font-size:81.750000px;}
.fs3_c00174{font-size:82.500000px;}
.fs10_c00174{font-size:84.000000px;}
.fs5_c00174{font-size:84.750000px;}
.fsb_c00174{font-size:85.500000px;}
.y0_c00174{bottom:0.000000px;}
.y1e_c00174{bottom:176.399850px;}
.y1d_c00174{bottom:336.959385px;}
.y1b_c00174{bottom:367.198695px;}
.y1c_c00174{bottom:367.199385px;}
.y1a_c00174{bottom:396.359850px;}
.y19_c00174{bottom:426.599670px;}
.y18_c00174{bottom:435.239820px;}
.y17_c00174{bottom:486.720150px;}
.y16_c00174{bottom:515.878920px;}
.y15_c00174{bottom:515.879430px;}
.y14_c00174{bottom:546.119340px;}
.y13_c00174{bottom:605.520405px;}
.y12_c00174{bottom:634.681545px;}
.y11_c00174{bottom:694.440990px;}
.y10_c00174{bottom:724.320720px;}
.yf_c00174{bottom:754.200435px;}
.ye_c00174{bottom:784.079355px;}
.yc_c00174{bottom:814.319145px;}
.yd_c00174{bottom:814.319280px;}
.yb_c00174{bottom:844.559055px;}
.ya_c00174{bottom:844.559310px;}
.y9_c00174{bottom:903.960360px;}
.y7_c00174{bottom:933.840045px;}
.y8_c00174{bottom:933.840090px;}
.y6_c00174{bottom:964.079955px;}
.y5_c00174{bottom:964.081515px;}
.y4_c00174{bottom:993.601050px;}
.y3_c00174{bottom:1052.639805px;}
.y2_c00174{bottom:1082.879730px;}
.y1_c00174{bottom:1142.999355px;}
.h11_c00174{height:32.853516px;}
.h1f_c00174{height:34.836914px;}
.h1d_c00174{height:37.801758px;}
.h21_c00174{height:43.804688px;}
.h1b_c00174{height:45.369141px;}
.h24_c00174{height:46.933594px;}
.h1c_c00174{height:47.619141px;}
.h1e_c00174{height:48.178711px;}
.h1a_c00174{height:48.375000px;}
.h20_c00174{height:49.130859px;}
.h23_c00174{height:52.625977px;}
.he_c00174{height:54.755859px;}
.hf_c00174{height:55.538086px;}
.h22_c00174{height:55.590820px;}
.h15_c00174{height:64.142578px;}
.h14_c00174{height:67.271484px;}
.h17_c00174{height:71.182617px;}
.h13_c00174{height:72.562500px;}
.hc_c00174{height:72.872314px;}
.h18_c00174{height:74.311523px;}
.h6_c00174{height:75.080566px;}
.ha_c00174{height:75.093750px;}
.hb_c00174{height:76.658203px;}
.h1_c00174{height:77.288818px;}
.h12_c00174{height:77.853516px;}
.h2_c00174{height:78.760986px;}
.h7_c00174{height:79.365234px;}
.h3_c00174{height:79.497070px;}
.h19_c00174{height:80.791992px;}
.h4_c00174{height:80.969238px;}
.h5_c00174{height:81.533203px;}
.h9_c00174{height:81.632812px;}
.h16_c00174{height:83.015625px;}
.hd_c00174{height:83.177490px;}
.h8_c00174{height:83.756836px;}
.h10_c00174{height:89.173828px;}
.h0_c00174{height:1263.000000px;}
.w0_c00174{width:892.500000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:144.358665px;}
.x8_c00174{left:145.799280px;}
.x15_c00174{left:159.478665px;}
.x24_c00174{left:161.279850px;}
.x2a_c00174{left:191.158785px;}
.x2b_c00174{left:206.278800px;}
.x19_c00174{left:217.438635px;}
.xb_c00174{left:221.759535px;}
.x16_c00174{left:234.359850px;}
.x2_c00174{left:236.879535px;}
.x2c_c00174{left:244.079385px;}
.x1a_c00174{left:245.878950px;}
.xc_c00174{left:248.759535px;}
.x3_c00174{left:256.318800px;}
.x17_c00174{left:258.838515px;}
.x13_c00174{left:261.359850px;}
.x14_c00174{left:275.398635px;}
.x2d_c00174{left:285.838515px;}
.x18_c00174{left:289.080000px;}
.x2e_c00174{left:299.519685px;}
.x2f_c00174{left:315.359850px;}
.x1b_c00174{left:316.439235px;}
.xd_c00174{left:318.958950px;}
.xe_c00174{left:346.319850px;}
.x30_c00174{left:353.158785px;}
.x1c_c00174{left:354.599100px;}
.x1d_c00174{left:374.040000px;}
.xf_c00174{left:399.958920px;}
.x31_c00174{left:413.638500px;}
.x1e_c00174{left:423.359850px;}
.x32_c00174{left:425.159415px;}
.x10_c00174{left:462.239820px;}
.x9_c00174{left:493.199850px;}
.x33_c00174{left:498.959385px;}
.x11_c00174{left:500.038920px;}
.x34_c00174{left:513.000000px;}
.xa_c00174{left:514.438665px;}
.x1f_c00174{left:524.878320px;}
.x6_c00174{left:542.158770px;}
.x35_c00174{left:552.239220px;}
.x7_c00174{left:555.838530px;}
.x20_c00174{left:568.079400px;}
.x12_c00174{left:582.479235px;}
.x21_c00174{left:595.079400px;}
.x36_c00174{left:606.598530px;}
.x4_c00174{left:627.479685px;}
.x25_c00174{left:629.638545px;}
.x26_c00174{left:651.599070px;}
.x27_c00174{left:658.078770px;}
.x5_c00174{left:662.038920px;}
.x37_c00174{left:668.518620px;}
.x28_c00174{left:672.839535px;}
.x22_c00174{left:673.918950px;}
.x38_c00174{left:691.919535px;}
.x23_c00174{left:702.000000px;}
.x39_c00174{left:735.118785px;}
.x3a_c00174{left:752.399235px;}
.x29_c00174{left:777.599670px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls10_c00174{letter-spacing:-22.931467pt;}
.ls23_c00174{letter-spacing:-15.780600pt;}
.ls2d_c00174{letter-spacing:-11.084667pt;}
.ls13_c00174{letter-spacing:-9.988813pt;}
.lsd_c00174{letter-spacing:-9.775333pt;}
.ls21_c00174{letter-spacing:-9.576000pt;}
.ls7_c00174{letter-spacing:-7.924000pt;}
.ls2e_c00174{letter-spacing:-7.792800pt;}
.ls25_c00174{letter-spacing:-7.450027pt;}
.ls4_c00174{letter-spacing:-7.266700pt;}
.ls37_c00174{letter-spacing:-6.763933pt;}
.ls35_c00174{letter-spacing:-6.714500pt;}
.ls16_c00174{letter-spacing:-6.601000pt;}
.lsb_c00174{letter-spacing:-5.943000pt;}
.ls9_c00174{letter-spacing:-5.285000pt;}
.ls12_c00174{letter-spacing:-5.171200pt;}
.ls11_c00174{letter-spacing:-4.751280pt;}
.ls1_c00174{letter-spacing:-4.619300pt;}
.lsc_c00174{letter-spacing:-4.375000pt;}
.ls2f_c00174{letter-spacing:-4.250000pt;}
.ls15_c00174{letter-spacing:-3.961300pt;}
.ls17_c00174{letter-spacing:-3.639933pt;}
.ls1e_c00174{letter-spacing:-3.332700pt;}
.ls3_c00174{letter-spacing:-3.304000pt;}
.lsa_c00174{letter-spacing:-3.240000pt;}
.ls24_c00174{letter-spacing:-2.919000pt;}
.ls2b_c00174{letter-spacing:-2.810680pt;}
.ls0_c00174{letter-spacing:-2.639000pt;}
.ls33_c00174{letter-spacing:-2.112693pt;}
.ls31_c00174{letter-spacing:-2.097333pt;}
.ls5_c00174{letter-spacing:-1.981700pt;}
.ls29_c00174{letter-spacing:-1.971200pt;}
.ls1a_c00174{letter-spacing:-1.963180pt;}
.ls1c_c00174{letter-spacing:-1.874933pt;}
.ls1b_c00174{letter-spacing:-1.811840pt;}
.ls18_c00174{letter-spacing:-1.702400pt;}
.ls36_c00174{letter-spacing:-1.547433pt;}
.ls27_c00174{letter-spacing:-1.407853pt;}
.ls34_c00174{letter-spacing:-1.407467pt;}
.ls28_c00174{letter-spacing:-1.398180pt;}
.ls6_c00174{letter-spacing:-1.323700pt;}
.ls30_c00174{letter-spacing:-1.253020pt;}
.ls2c_c00174{letter-spacing:-0.884000pt;}
.ls26_c00174{letter-spacing:-0.776533pt;}
.ls20_c00174{letter-spacing:-0.679467pt;}
.ls2_c00174{letter-spacing:-0.658000pt;}
.ls8_c00174{letter-spacing:0.000000pt;}
.ls32_c00174{letter-spacing:0.776533pt;}
.ls14_c00174{letter-spacing:1.392600pt;}
.ls22_c00174{letter-spacing:1.393333pt;}
.lse_c00174{letter-spacing:2.060400pt;}
.lsf_c00174{letter-spacing:2.191000pt;}
.ls1d_c00174{letter-spacing:2.847587pt;}
.ls2a_c00174{letter-spacing:5.667800pt;}
.ls19_c00174{letter-spacing:6.551720pt;}
.ls1f_c00174{letter-spacing:18.266020pt;}
.ws0_c00174{word-spacing:0.000000pt;}
._7_c00174{margin-left:-5.818149pt;}
._6_c00174{margin-left:-4.083840pt;}
._5_c00174{margin-left:-2.560613pt;}
._18_c00174{margin-left:-1.359175pt;}
._19_c00174{width:0.940879pt;}
._2_c00174{width:2.072211pt;}
._a_c00174{width:3.604208pt;}
._0_c00174{width:5.149385pt;}
._3_c00174{width:6.307026pt;}
._17_c00174{width:7.242187pt;}
._8_c00174{width:8.187226pt;}
._15_c00174{width:9.728521pt;}
._1_c00174{width:10.702208pt;}
._12_c00174{width:11.737600pt;}
._14_c00174{width:12.713809pt;}
._4_c00174{width:15.282968pt;}
._13_c00174{width:16.351683pt;}
._16_c00174{width:18.174734pt;}
._f_c00174{width:19.392443pt;}
._11_c00174{width:20.308466pt;}
._e_c00174{width:22.150391pt;}
._9_c00174{width:24.006196pt;}
._d_c00174{width:25.115577pt;}
._c_c00174{width:27.510053pt;}
._10_c00174{width:28.413938pt;}
._b_c00174{width:32.820715pt;}
.fsc_c00174{font-size:28.000000pt;}
.fs19_c00174{font-size:31.333333pt;}
.fs17_c00174{font-size:34.000000pt;}
.fs1a_c00174{font-size:37.333333pt;}
.fs15_c00174{font-size:38.666667pt;}
.fs1c_c00174{font-size:40.000000pt;}
.fs16_c00174{font-size:42.000000pt;}
.fs14_c00174{font-size:42.666667pt;}
.fs18_c00174{font-size:43.333333pt;}
.fs9_c00174{font-size:46.666667pt;}
.fsa_c00174{font-size:47.333333pt;}
.fs1b_c00174{font-size:50.000000pt;}
.fsf_c00174{font-size:54.666667pt;}
.fse_c00174{font-size:59.333333pt;}
.fs11_c00174{font-size:60.666667pt;}
.fs12_c00174{font-size:63.333333pt;}
.fs6_c00174{font-size:64.000000pt;}
.fs7_c00174{font-size:65.333333pt;}
.fs8_c00174{font-size:66.000000pt;}
.fs4_c00174{font-size:68.000000pt;}
.fsd_c00174{font-size:68.666667pt;}
.fs0_c00174{font-size:70.000000pt;}
.fs1_c00174{font-size:71.333333pt;}
.fs2_c00174{font-size:72.000000pt;}
.fs13_c00174{font-size:72.666667pt;}
.fs3_c00174{font-size:73.333333pt;}
.fs10_c00174{font-size:74.666667pt;}
.fs5_c00174{font-size:75.333333pt;}
.fsb_c00174{font-size:76.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y1e_c00174{bottom:156.799867pt;}
.y1d_c00174{bottom:299.519453pt;}
.y1b_c00174{bottom:326.398840pt;}
.y1c_c00174{bottom:326.399453pt;}
.y1a_c00174{bottom:352.319867pt;}
.y19_c00174{bottom:379.199707pt;}
.y18_c00174{bottom:386.879840pt;}
.y17_c00174{bottom:432.640133pt;}
.y16_c00174{bottom:458.559040pt;}
.y15_c00174{bottom:458.559493pt;}
.y14_c00174{bottom:485.439413pt;}
.y13_c00174{bottom:538.240360pt;}
.y12_c00174{bottom:564.161373pt;}
.y11_c00174{bottom:617.280880pt;}
.y10_c00174{bottom:643.840640pt;}
.yf_c00174{bottom:670.400387pt;}
.ye_c00174{bottom:696.959427pt;}
.yc_c00174{bottom:723.839240pt;}
.yd_c00174{bottom:723.839360pt;}
.yb_c00174{bottom:750.719160pt;}
.ya_c00174{bottom:750.719387pt;}
.y9_c00174{bottom:803.520320pt;}
.y7_c00174{bottom:830.080040pt;}
.y8_c00174{bottom:830.080080pt;}
.y6_c00174{bottom:856.959960pt;}
.y5_c00174{bottom:856.961347pt;}
.y4_c00174{bottom:883.200933pt;}
.y3_c00174{bottom:935.679827pt;}
.y2_c00174{bottom:962.559760pt;}
.y1_c00174{bottom:1015.999427pt;}
.h11_c00174{height:29.203125pt;}
.h1f_c00174{height:30.966146pt;}
.h1d_c00174{height:33.601562pt;}
.h21_c00174{height:38.937500pt;}
.h1b_c00174{height:40.328125pt;}
.h24_c00174{height:41.718750pt;}
.h1c_c00174{height:42.328125pt;}
.h1e_c00174{height:42.825521pt;}
.h1a_c00174{height:43.000000pt;}
.h20_c00174{height:43.671875pt;}
.h23_c00174{height:46.778646pt;}
.he_c00174{height:48.671875pt;}
.hf_c00174{height:49.367188pt;}
.h22_c00174{height:49.414063pt;}
.h15_c00174{height:57.015625pt;}
.h14_c00174{height:59.796875pt;}
.h17_c00174{height:63.273438pt;}
.h13_c00174{height:64.500000pt;}
.hc_c00174{height:64.775391pt;}
.h18_c00174{height:66.054688pt;}
.h6_c00174{height:66.738281pt;}
.ha_c00174{height:66.750000pt;}
.hb_c00174{height:68.140625pt;}
.h1_c00174{height:68.701172pt;}
.h12_c00174{height:69.203125pt;}
.h2_c00174{height:70.009766pt;}
.h7_c00174{height:70.546875pt;}
.h3_c00174{height:70.664062pt;}
.h19_c00174{height:71.815104pt;}
.h4_c00174{height:71.972656pt;}
.h5_c00174{height:72.473958pt;}
.h9_c00174{height:72.562500pt;}
.h16_c00174{height:73.791667pt;}
.hd_c00174{height:73.935547pt;}
.h8_c00174{height:74.450521pt;}
.h10_c00174{height:79.265625pt;}
.h0_c00174{height:1122.666667pt;}
.w0_c00174{width:793.333333pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:128.318813pt;}
.x8_c00174{left:129.599360pt;}
.x15_c00174{left:141.758813pt;}
.x24_c00174{left:143.359867pt;}
.x2a_c00174{left:169.918920pt;}
.x2b_c00174{left:183.358933pt;}
.x19_c00174{left:193.278787pt;}
.xb_c00174{left:197.119587pt;}
.x16_c00174{left:208.319867pt;}
.x2_c00174{left:210.559587pt;}
.x2c_c00174{left:216.959453pt;}
.x1a_c00174{left:218.559067pt;}
.xc_c00174{left:221.119587pt;}
.x3_c00174{left:227.838933pt;}
.x17_c00174{left:230.078680pt;}
.x13_c00174{left:232.319867pt;}
.x14_c00174{left:244.798787pt;}
.x2d_c00174{left:254.078680pt;}
.x18_c00174{left:256.960000pt;}
.x2e_c00174{left:266.239720pt;}
.x2f_c00174{left:280.319867pt;}
.x1b_c00174{left:281.279320pt;}
.xd_c00174{left:283.519067pt;}
.xe_c00174{left:307.839867pt;}
.x30_c00174{left:313.918920pt;}
.x1c_c00174{left:315.199200pt;}
.x1d_c00174{left:332.480000pt;}
.xf_c00174{left:355.519040pt;}
.x31_c00174{left:367.678667pt;}
.x1e_c00174{left:376.319867pt;}
.x32_c00174{left:377.919480pt;}
.x10_c00174{left:410.879840pt;}
.x9_c00174{left:438.399867pt;}
.x33_c00174{left:443.519453pt;}
.x11_c00174{left:444.479040pt;}
.x34_c00174{left:456.000000pt;}
.xa_c00174{left:457.278813pt;}
.x1f_c00174{left:466.558507pt;}
.x6_c00174{left:481.918907pt;}
.x35_c00174{left:490.879307pt;}
.x7_c00174{left:494.078693pt;}
.x20_c00174{left:504.959467pt;}
.x12_c00174{left:517.759320pt;}
.x21_c00174{left:528.959467pt;}
.x36_c00174{left:539.198693pt;}
.x4_c00174{left:557.759720pt;}
.x25_c00174{left:559.678707pt;}
.x26_c00174{left:579.199173pt;}
.x27_c00174{left:584.958907pt;}
.x5_c00174{left:588.479040pt;}
.x37_c00174{left:594.238773pt;}
.x28_c00174{left:598.079587pt;}
.x22_c00174{left:599.039067pt;}
.x38_c00174{left:615.039587pt;}
.x23_c00174{left:624.000000pt;}
.x39_c00174{left:653.438920pt;}
.x3a_c00174{left:668.799320pt;}
.x29_c00174{left:691.199707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53cbfa068f0f8e3b2d4b235b.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;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_1a3083262e98f1c3b4cd3286.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_53e217c9441f1dbc4fc155e1.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_53352e54813e0511bdefb596.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_f6b21e630d6f70697d19f478.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00175;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.364746;font-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_c00175{transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.179204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179204,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m19_c00175{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m17_c00175{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.mb_c00175{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m18_c00175{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.md_c00175{transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);}
.m1a_c00175{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_c00175{vertical-align:0.000000px;}
.ls1b_c00175{letter-spacing:-13.603223px;}
.ls11_c00175{letter-spacing:-13.102875px;}
.ls18_c00175{letter-spacing:-9.468900px;}
.lsb_c00175{letter-spacing:-8.914500px;}
.ls9_c00175{letter-spacing:-8.175038px;}
.ls7_c00175{letter-spacing:-7.426125px;}
.lsd_c00175{letter-spacing:-7.301250px;}
.ls10_c00175{letter-spacing:-6.685875px;}
.ls8_c00175{letter-spacing:-5.945625px;}
.ls17_c00175{letter-spacing:-5.678348px;}
.lsf_c00175{letter-spacing:-5.343818px;}
.lsa_c00175{letter-spacing:-5.196713px;}
.ls1d_c00175{letter-spacing:-5.015625px;}
.ls16_c00175{letter-spacing:-4.862348px;}
.lsc_c00175{letter-spacing:-4.456463px;}
.ls3_c00175{letter-spacing:-3.717000px;}
.ls6_c00175{letter-spacing:-2.968875px;}
.ls19_c00175{letter-spacing:-2.315790px;}
.ls2_c00175{letter-spacing:-2.229413px;}
.ls5_c00175{letter-spacing:-1.489163px;}
.ls12_c00175{letter-spacing:-1.487445px;}
.ls1_c00175{letter-spacing:-0.740250px;}
.ls4_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:0.740250px;}
.ls1e_c00175{letter-spacing:2.445000px;}
.ls1c_c00175{letter-spacing:2.511825px;}
.ls1a_c00175{letter-spacing:3.283800px;}
.lse_c00175{letter-spacing:3.637710px;}
.ls15_c00175{letter-spacing:4.771463px;}
.ls14_c00175{letter-spacing:24.565328px;}
.ls13_c00175{letter-spacing:75.132000px;}
.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;}
._c_c00175{margin-left:-8.950517px;}
._15_c00175{margin-left:-7.768881px;}
._14_c00175{margin-left:-5.675988px;}
._b_c00175{margin-left:-4.014259px;}
._13_c00175{margin-left:-2.563699px;}
._d_c00175{margin-left:-1.479757px;}
._10_c00175{width:1.644969px;}
._e_c00175{width:2.892369px;}
._19_c00175{width:3.906149px;}
._6_c00175{width:5.014978px;}
._f_c00175{width:6.682547px;}
._1_c00175{width:8.331022px;}
._4_c00175{width:9.490445px;}
._2_c00175{width:11.323864px;}
._5_c00175{width:12.922206px;}
._a_c00175{width:14.082506px;}
._7_c00175{width:15.547226px;}
._0_c00175{width:17.467344px;}
._8_c00175{width:18.535105px;}
._1a_c00175{width:19.589389px;}
._3_c00175{width:20.727639px;}
._18_c00175{width:21.783320px;}
._11_c00175{width:23.018417px;}
._9_c00175{width:24.127811px;}
._1b_c00175{width:25.713197px;}
._12_c00175{width:26.825162px;}
._16_c00175{width:29.779090px;}
._17_c00175{width:34.137560px;}
.fc0_c00175{color:transparent;}
.fsd_c00175{font-size:18.750000px;}
.fsa_c00175{font-size:69.750000px;}
.fs6_c00175{font-size:71.250000px;}
.fs7_c00175{font-size:72.000000px;}
.fs9_c00175{font-size:72.750000px;}
.fs1_c00175{font-size:77.250000px;}
.fsb_c00175{font-size:78.000000px;}
.fs0_c00175{font-size:78.750000px;}
.fs5_c00175{font-size:79.500000px;}
.fs8_c00175{font-size:80.250000px;}
.fs3_c00175{font-size:81.000000px;}
.fs2_c00175{font-size:82.500000px;}
.fs4_c00175{font-size:83.250000px;}
.fsc_c00175{font-size:84.750000px;}
.y0_c00175{bottom:0.000000px;}
.y25_c00175{bottom:186.839715px;}
.y24_c00175{bottom:216.359250px;}
.y23_c00175{bottom:245.158785px;}
.y22_c00175{bottom:275.759535px;}
.y21_c00175{bottom:275.760435px;}
.y1f_c00175{bottom:305.639700px;}
.y20_c00175{bottom:305.640150px;}
.y1e_c00175{bottom:335.159220px;}
.y1d_c00175{bottom:365.038950px;}
.y1c_c00175{bottom:365.039820px;}
.y1a_c00175{bottom:394.918755px;}
.y1b_c00175{bottom:394.919535px;}
.y19_c00175{bottom:454.319820px;}
.y17_c00175{bottom:484.918695px;}
.y18_c00175{bottom:484.918950px;}
.y16_c00175{bottom:544.319760px;}
.y15_c00175{bottom:573.839280px;}
.y14_c00175{bottom:603.719010px;}
.y13_c00175{bottom:633.238545px;}
.y12_c00175{bottom:663.478455px;}
.y11_c00175{bottom:722.879520px;}
.y10_c00175{bottom:752.760135px;}
.yf_c00175{bottom:782.279085px;}
.ye_c00175{bottom:812.158815px;}
.yd_c00175{bottom:812.160390px;}
.yc_c00175{bottom:842.760795px;}
.yb_c00175{bottom:873.000705px;}
.ya_c00175{bottom:902.880435px;}
.y9_c00175{bottom:932.399970px;}
.y8_c00175{bottom:961.919490px;}
.y7_c00175{bottom:961.919685px;}
.y6_c00175{bottom:991.439205px;}
.y5_c00175{bottom:1022.040120px;}
.y4_c00175{bottom:1051.919835px;}
.y3_c00175{bottom:1081.799565px;}
.y2_c00175{bottom:1081.800315px;}
.y1_c00175{bottom:1141.919955px;}
.h12_c00175{height:19.555664px;}
.hd_c00175{height:72.747070px;}
.h7_c00175{height:74.311523px;}
.h8_c00175{height:75.093750px;}
.h2_c00175{height:75.778931px;}
.hb_c00175{height:75.875977px;}
.hf_c00175{height:76.552734px;}
.h1_c00175{height:77.288818px;}
.h9_c00175{height:78.760986px;}
.ha_c00175{height:79.365234px;}
.h4_c00175{height:79.497070px;}
.he_c00175{height:80.050781px;}
.h6_c00175{height:80.121094px;}
.hc_c00175{height:80.876953px;}
.h3_c00175{height:80.969238px;}
.h5_c00175{height:81.705322px;}
.h11_c00175{height:83.177490px;}
.h10_c00175{height:83.756836px;}
.h0_c00175{height:1263.000000px;}
.w0_c00175{width:892.500000px;}
.x0_c00175{left:0.000000px;}
.x1e_c00175{left:138.599010px;}
.x1_c00175{left:139.678500px;}
.xc_c00175{left:156.599700px;}
.x2_c00175{left:163.799565px;}
.x4_c00175{left:170.999400px;}
.xd_c00175{left:178.199415px;}
.x5_c00175{left:209.879535px;}
.x3_c00175{left:217.079385px;}
.x25_c00175{left:227.878350px;}
.x26_c00175{left:241.559685px;}
.x17_c00175{left:246.599100px;}
.xe_c00175{left:269.639100px;}
.xf_c00175{left:305.999385px;}
.x1f_c00175{left:317.159385px;}
.x20_c00175{left:339.479235px;}
.x10_c00175{left:375.839535px;}
.x23_c00175{left:390.598530px;}
.x24_c00175{left:405.359250px;}
.x8_c00175{left:425.159415px;}
.x9_c00175{left:439.559100px;}
.x11_c00175{left:487.438665px;}
.xa_c00175{left:488.519670px;}
.xb_c00175{left:503.998950px;}
.x1a_c00175{left:534.238770px;}
.x12_c00175{left:543.599070px;}
.x1b_c00175{left:549.358665px;}
.x13_c00175{left:581.038920px;}
.x6_c00175{left:621.000000px;}
.x27_c00175{left:628.918350px;}
.x7_c00175{left:642.599670px;}
.x14_c00175{left:644.039985px;}
.x28_c00175{left:645.839535px;}
.x15_c00175{left:662.399820px;}
.x16_c00175{left:685.439670px;}
.x21_c00175{left:686.878320px;}
.x22_c00175{left:709.918350px;}
.x18_c00175{left:746.278800px;}
.x1c_c00175{left:751.679070px;}
.x19_c00175{left:765.719520px;}
.x1d_c00175{left:767.159820px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls1b_c00175{letter-spacing:-12.091753pt;}
.ls11_c00175{letter-spacing:-11.647000pt;}
.ls18_c00175{letter-spacing:-8.416800pt;}
.lsb_c00175{letter-spacing:-7.924000pt;}
.ls9_c00175{letter-spacing:-7.266700pt;}
.ls7_c00175{letter-spacing:-6.601000pt;}
.lsd_c00175{letter-spacing:-6.490000pt;}
.ls10_c00175{letter-spacing:-5.943000pt;}
.ls8_c00175{letter-spacing:-5.285000pt;}
.ls17_c00175{letter-spacing:-5.047420pt;}
.lsf_c00175{letter-spacing:-4.750060pt;}
.lsa_c00175{letter-spacing:-4.619300pt;}
.ls1d_c00175{letter-spacing:-4.458333pt;}
.ls16_c00175{letter-spacing:-4.322087pt;}
.lsc_c00175{letter-spacing:-3.961300pt;}
.ls3_c00175{letter-spacing:-3.304000pt;}
.ls6_c00175{letter-spacing:-2.639000pt;}
.ls19_c00175{letter-spacing:-2.058480pt;}
.ls2_c00175{letter-spacing:-1.981700pt;}
.ls5_c00175{letter-spacing:-1.323700pt;}
.ls12_c00175{letter-spacing:-1.322173pt;}
.ls1_c00175{letter-spacing:-0.658000pt;}
.ls4_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:0.658000pt;}
.ls1e_c00175{letter-spacing:2.173333pt;}
.ls1c_c00175{letter-spacing:2.232733pt;}
.ls1a_c00175{letter-spacing:2.918933pt;}
.lse_c00175{letter-spacing:3.233520pt;}
.ls15_c00175{letter-spacing:4.241300pt;}
.ls14_c00175{letter-spacing:21.835847pt;}
.ls13_c00175{letter-spacing:66.784000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
._c_c00175{margin-left:-7.956015pt;}
._15_c00175{margin-left:-6.905672pt;}
._14_c00175{margin-left:-5.045323pt;}
._b_c00175{margin-left:-3.568230pt;}
._13_c00175{margin-left:-2.278843pt;}
._d_c00175{margin-left:-1.315340pt;}
._10_c00175{width:1.462194pt;}
._e_c00175{width:2.570994pt;}
._19_c00175{width:3.472132pt;}
._6_c00175{width:4.457758pt;}
._f_c00175{width:5.940042pt;}
._1_c00175{width:7.405353pt;}
._4_c00175{width:8.435951pt;}
._2_c00175{width:10.065657pt;}
._5_c00175{width:11.486406pt;}
._a_c00175{width:12.517783pt;}
._7_c00175{width:13.819757pt;}
._0_c00175{width:15.526528pt;}
._8_c00175{width:16.475649pt;}
._1a_c00175{width:17.412791pt;}
._3_c00175{width:18.424568pt;}
._18_c00175{width:19.362951pt;}
._11_c00175{width:20.460815pt;}
._9_c00175{width:21.446943pt;}
._1b_c00175{width:22.856175pt;}
._12_c00175{width:23.844589pt;}
._16_c00175{width:26.470302pt;}
._17_c00175{width:30.344498pt;}
.fsd_c00175{font-size:16.666667pt;}
.fsa_c00175{font-size:62.000000pt;}
.fs6_c00175{font-size:63.333333pt;}
.fs7_c00175{font-size:64.000000pt;}
.fs9_c00175{font-size:64.666667pt;}
.fs1_c00175{font-size:68.666667pt;}
.fsb_c00175{font-size:69.333333pt;}
.fs0_c00175{font-size:70.000000pt;}
.fs5_c00175{font-size:70.666667pt;}
.fs8_c00175{font-size:71.333333pt;}
.fs3_c00175{font-size:72.000000pt;}
.fs2_c00175{font-size:73.333333pt;}
.fs4_c00175{font-size:74.000000pt;}
.fsc_c00175{font-size:75.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y25_c00175{bottom:166.079747pt;}
.y24_c00175{bottom:192.319333pt;}
.y23_c00175{bottom:217.918920pt;}
.y22_c00175{bottom:245.119587pt;}
.y21_c00175{bottom:245.120387pt;}
.y1f_c00175{bottom:271.679733pt;}
.y20_c00175{bottom:271.680133pt;}
.y1e_c00175{bottom:297.919307pt;}
.y1d_c00175{bottom:324.479067pt;}
.y1c_c00175{bottom:324.479840pt;}
.y1a_c00175{bottom:351.038893pt;}
.y1b_c00175{bottom:351.039587pt;}
.y19_c00175{bottom:403.839840pt;}
.y17_c00175{bottom:431.038840pt;}
.y18_c00175{bottom:431.039067pt;}
.y16_c00175{bottom:483.839787pt;}
.y15_c00175{bottom:510.079360pt;}
.y14_c00175{bottom:536.639120pt;}
.y13_c00175{bottom:562.878707pt;}
.y12_c00175{bottom:589.758627pt;}
.y11_c00175{bottom:642.559573pt;}
.y10_c00175{bottom:669.120120pt;}
.yf_c00175{bottom:695.359187pt;}
.ye_c00175{bottom:721.918947pt;}
.yd_c00175{bottom:721.920347pt;}
.yc_c00175{bottom:749.120707pt;}
.yb_c00175{bottom:776.000627pt;}
.ya_c00175{bottom:802.560387pt;}
.y9_c00175{bottom:828.799973pt;}
.y8_c00175{bottom:855.039547pt;}
.y7_c00175{bottom:855.039720pt;}
.y6_c00175{bottom:881.279293pt;}
.y5_c00175{bottom:908.480107pt;}
.y4_c00175{bottom:935.039853pt;}
.y3_c00175{bottom:961.599613pt;}
.y2_c00175{bottom:961.600280pt;}
.y1_c00175{bottom:1015.039960pt;}
.h12_c00175{height:17.382812pt;}
.hd_c00175{height:64.664062pt;}
.h7_c00175{height:66.054688pt;}
.h8_c00175{height:66.750000pt;}
.h2_c00175{height:67.359049pt;}
.hb_c00175{height:67.445312pt;}
.hf_c00175{height:68.046875pt;}
.h1_c00175{height:68.701172pt;}
.h9_c00175{height:70.009766pt;}
.ha_c00175{height:70.546875pt;}
.h4_c00175{height:70.664062pt;}
.he_c00175{height:71.156250pt;}
.h6_c00175{height:71.218750pt;}
.hc_c00175{height:71.890625pt;}
.h3_c00175{height:71.972656pt;}
.h5_c00175{height:72.626953pt;}
.h11_c00175{height:73.935547pt;}
.h10_c00175{height:74.450521pt;}
.h0_c00175{height:1122.666667pt;}
.w0_c00175{width:793.333333pt;}
.x0_c00175{left:0.000000pt;}
.x1e_c00175{left:123.199120pt;}
.x1_c00175{left:124.158667pt;}
.xc_c00175{left:139.199733pt;}
.x2_c00175{left:145.599613pt;}
.x4_c00175{left:151.999467pt;}
.xd_c00175{left:158.399480pt;}
.x5_c00175{left:186.559587pt;}
.x3_c00175{left:192.959453pt;}
.x25_c00175{left:202.558533pt;}
.x26_c00175{left:214.719720pt;}
.x17_c00175{left:219.199200pt;}
.xe_c00175{left:239.679200pt;}
.xf_c00175{left:271.999453pt;}
.x1f_c00175{left:281.919453pt;}
.x20_c00175{left:301.759320pt;}
.x10_c00175{left:334.079587pt;}
.x23_c00175{left:347.198693pt;}
.x24_c00175{left:360.319333pt;}
.x8_c00175{left:377.919480pt;}
.x9_c00175{left:390.719200pt;}
.x11_c00175{left:433.278813pt;}
.xa_c00175{left:434.239707pt;}
.xb_c00175{left:447.999067pt;}
.x1a_c00175{left:474.878907pt;}
.x12_c00175{left:483.199173pt;}
.x1b_c00175{left:488.318813pt;}
.x13_c00175{left:516.479040pt;}
.x6_c00175{left:552.000000pt;}
.x27_c00175{left:559.038533pt;}
.x7_c00175{left:571.199707pt;}
.x14_c00175{left:572.479987pt;}
.x28_c00175{left:574.079587pt;}
.x15_c00175{left:588.799840pt;}
.x16_c00175{left:609.279707pt;}
.x21_c00175{left:610.558507pt;}
.x22_c00175{left:631.038533pt;}
.x18_c00175{left:663.358933pt;}
.x1c_c00175{left:668.159173pt;}
.x19_c00175{left:680.639573pt;}
.x1d_c00175{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42d8ab2c8ce49f997baf9320.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_b4a7afd4b5d856c9391d4656.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.432129;font-style:normal;font-weight:normal;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_4d71653ec51ebbd020a7e5fc.woff2')format("woff");}.ff3_c00176{font-family:ff3_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:ff4_c00176;src:url('chunks/assets/font_c007819cc644e84140e11d48.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_84158aae2ddc805f40b3248c.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c00176{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m26_c00176{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.219424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219424,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219745,0.000000,0.000000,0.250000,0,0);}
.m1c_c00176{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.221854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221854,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{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_c00176{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m23_c00176{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m1f_c00176{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.mc_c00176{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{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_c00176{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.mb_c00176{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.355932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355932,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls12_c00176{letter-spacing:-9.654750px;}
.ls10_c00176{letter-spacing:-8.914500px;}
.ls7_c00176{letter-spacing:-8.602200px;}
.ls29_c00176{letter-spacing:-8.175038px;}
.lse_c00176{letter-spacing:-7.426125px;}
.ls11_c00176{letter-spacing:-6.685875px;}
.lsf_c00176{letter-spacing:-6.051443px;}
.lsb_c00176{letter-spacing:-5.945625px;}
.ls28_c00176{letter-spacing:-5.625000px;}
.ls8_c00176{letter-spacing:-5.196713px;}
.ls9_c00176{letter-spacing:-4.456463px;}
.ls6_c00176{letter-spacing:-4.282500px;}
.ls2a_c00176{letter-spacing:-4.181700px;}
.ls2_c00176{letter-spacing:-3.717000px;}
.ls27_c00176{letter-spacing:-3.278213px;}
.ls4_c00176{letter-spacing:-2.968875px;}
.ls3_c00176{letter-spacing:-2.229413px;}
.ls23_c00176{letter-spacing:-1.584023px;}
.lsc_c00176{letter-spacing:-1.489163px;}
.ls18_c00176{letter-spacing:-1.180875px;}
.ls26_c00176{letter-spacing:-0.811125px;}
.ls25_c00176{letter-spacing:-0.786713px;}
.lsa_c00176{letter-spacing:-0.740250px;}
.ls5_c00176{letter-spacing:0.000000px;}
.ls1_c00176{letter-spacing:0.740250px;}
.ls1f_c00176{letter-spacing:0.847800px;}
.ls21_c00176{letter-spacing:0.849420px;}
.ls0_c00176{letter-spacing:1.489163px;}
.ls2b_c00176{letter-spacing:2.101365px;}
.ls22_c00176{letter-spacing:2.317950px;}
.ls13_c00176{letter-spacing:2.499750px;}
.ls2c_c00176{letter-spacing:3.637710px;}
.lsd_c00176{letter-spacing:4.181700px;}
.ls19_c00176{letter-spacing:4.206600px;}
.ls1d_c00176{letter-spacing:5.044950px;}
.ls24_c00176{letter-spacing:5.199300px;}
.ls17_c00176{letter-spacing:8.667600px;}
.ls1b_c00176{letter-spacing:11.625000px;}
.ls1a_c00176{letter-spacing:14.690295px;}
.ls1c_c00176{letter-spacing:24.114338px;}
.ls16_c00176{letter-spacing:25.811025px;}
.ls1e_c00176{letter-spacing:32.384228px;}
.ls14_c00176{letter-spacing:33.410490px;}
.ls20_c00176{letter-spacing:36.187500px;}
.ls15_c00176{letter-spacing:252.693592px;}
.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;}
._f_c00176{margin-left:-13.724193px;}
._d_c00176{margin-left:-6.230982px;}
._b_c00176{margin-left:-4.486001px;}
._9_c00176{margin-left:-1.952643px;}
._e_c00176{width:1.467142px;}
._c_c00176{width:2.895459px;}
._7_c00176{width:4.724747px;}
._10_c00176{width:5.998373px;}
._a_c00176{width:7.567994px;}
._8_c00176{width:8.815275px;}
._1_c00176{width:10.670714px;}
._3_c00176{width:12.063712px;}
._0_c00176{width:13.876939px;}
._13_c00176{width:14.892725px;}
._11_c00176{width:16.411025px;}
._14_c00176{width:18.018342px;}
._5_c00176{width:19.270600px;}
._15_c00176{width:20.664000px;}
._2_c00176{width:21.750691px;}
._4_c00176{width:24.058630px;}
._18_c00176{width:25.458062px;}
._6_c00176{width:26.663324px;}
._12_c00176{width:28.439983px;}
._17_c00176{width:29.716803px;}
._16_c00176{width:30.915348px;}
._1a_c00176{width:33.423045px;}
._19_c00176{width:39.334362px;}
.fc0_c00176{color:transparent;}
.fsf_c00176{font-size:41.250000px;}
.fs9_c00176{font-size:44.250000px;}
.fsa_c00176{font-size:46.500000px;}
.fsb_c00176{font-size:50.250000px;}
.fsc_c00176{font-size:54.000000px;}
.fsd_c00176{font-size:55.500000px;}
.fs7_c00176{font-size:69.000000px;}
.fs10_c00176{font-size:69.750000px;}
.fs17_c00176{font-size:71.250000px;}
.fs19_c00176{font-size:73.500000px;}
.fs2_c00176{font-size:75.000000px;}
.fs16_c00176{font-size:76.500000px;}
.fs15_c00176{font-size:77.250000px;}
.fs14_c00176{font-size:78.000000px;}
.fs0_c00176{font-size:78.750000px;}
.fs4_c00176{font-size:79.500000px;}
.fs1_c00176{font-size:80.250000px;}
.fs3_c00176{font-size:81.000000px;}
.fs6_c00176{font-size:82.500000px;}
.fs5_c00176{font-size:83.250000px;}
.fs18_c00176{font-size:84.750000px;}
.fs13_c00176{font-size:86.250000px;}
.fse_c00176{font-size:93.408600px;}
.fs12_c00176{font-size:104.250000px;}
.fs8_c00176{font-size:113.250000px;}
.fs11_c00176{font-size:117.750000px;}
.y0_c00176{bottom:0.000000px;}
.y29_c00176{bottom:187.199655px;}
.y2a_c00176{bottom:187.200465px;}
.y28_c00176{bottom:217.079385px;}
.y27_c00176{bottom:247.319250px;}
.y26_c00176{bottom:247.319415px;}
.y24_c00176{bottom:276.838605px;}
.y25_c00176{bottom:276.838950px;}
.y23_c00176{bottom:307.080615px;}
.y22_c00176{bottom:336.600150px;}
.y21_c00176{bottom:336.600405px;}
.y20_c00176{bottom:366.480120px;}
.y1f_c00176{bottom:396.359850px;}
.y1e_c00176{bottom:426.240420px;}
.y1d_c00176{bottom:426.240645px;}
.y1c_c00176{bottom:455.760180px;}
.y1b_c00176{bottom:486.720765px;}
.y1a_c00176{bottom:545.759535px;}
.y19_c00176{bottom:605.160855px;}
.y17_c00176{bottom:635.040525px;}
.y18_c00176{bottom:635.040570px;}
.y15_c00176{bottom:665.279640px;}
.y16_c00176{bottom:665.280435px;}
.y14_c00176{bottom:695.159370px;}
.y13_c00176{bottom:754.200435px;}
.y12_c00176{bottom:757.799520px;}
.y10_c00176{bottom:784.079175px;}
.y11_c00176{bottom:784.079400px;}
.yf_c00176{bottom:814.319085px;}
.ye_c00176{bottom:844.559010px;}
.yd_c00176{bottom:874.798920px;}
.yc_c00176{bottom:874.800300px;}
.yb_c00176{bottom:904.680015px;}
.ya_c00176{bottom:963.360690px;}
.y8_c00176{bottom:993.240375px;}
.y9_c00176{bottom:993.240420px;}
.y6_c00176{bottom:1023.479535px;}
.y7_c00176{bottom:1023.480285px;}
.y4_c00176{bottom:1053.358845px;}
.y5_c00176{bottom:1053.359250px;}
.y2_c00176{bottom:1113.119640px;}
.y3_c00176{bottom:1113.120390px;}
.y1_c00176{bottom:1142.999355px;}
.h11_c00176{height:41.572266px;}
.ha_c00176{height:44.595703px;}
.h10_c00176{height:46.863281px;}
.hb_c00176{height:48.498047px;}
.hc_c00176{height:52.409180px;}
.hd_c00176{height:54.421875px;}
.h13_c00176{height:55.933594px;}
.he_c00176{height:57.884766px;}
.h1c_c00176{height:70.294922px;}
.h8_c00176{height:71.964844px;}
.h14_c00176{height:72.747070px;}
.h3_c00176{height:73.608398px;}
.h1e_c00176{height:74.311523px;}
.h1b_c00176{height:75.080566px;}
.h19_c00176{height:75.585938px;}
.h1a_c00176{height:75.816650px;}
.h18_c00176{height:76.552734px;}
.h21_c00176{height:76.658203px;}
.h1_c00176{height:77.288818px;}
.h5_c00176{height:78.024902px;}
.h1f_c00176{height:78.222656px;}
.h2_c00176{height:78.760986px;}
.h1d_c00176{height:79.365234px;}
.h4_c00176{height:79.497070px;}
.h12_c00176{height:80.121094px;}
.h7_c00176{height:80.969238px;}
.h6_c00176{height:81.705322px;}
.h20_c00176{height:83.177490px;}
.h17_c00176{height:89.956055px;}
.hf_c00176{height:97.422251px;}
.h16_c00176{height:108.729492px;}
.h9_c00176{height:118.116211px;}
.h15_c00176{height:122.809570px;}
.h0_c00176{height:1263.000000px;}
.w0_c00176{width:892.500000px;}
.x0_c00176{left:0.000000px;}
.x7_c00176{left:143.639355px;}
.x1_c00176{left:145.078815px;}
.x10_c00176{left:182.879565px;}
.x2_c00176{left:200.878350px;}
.xc_c00176{left:202.679700px;}
.x23_c00176{left:210.599700px;}
.x11_c00176{left:211.679100px;}
.x36_c00176{left:213.839535px;}
.x3_c00176{left:216.000000px;}
.xd_c00176{left:223.559100px;}
.x4_c00176{left:237.958950px;}
.x37_c00176{left:240.839535px;}
.x21_c00176{left:257.759100px;}
.xe_c00176{left:271.079385px;}
.x22_c00176{left:272.158785px;}
.xa_c00176{left:273.599100px;}
.x18_c00176{left:289.798515px;}
.xf_c00176{left:292.319850px;}
.xb_c00176{left:299.519685px;}
.x19_c00176{left:304.918350px;}
.x24_c00176{left:320.758500px;}
.x12_c00176{left:326.878950px;}
.x5_c00176{left:327.958350px;}
.x6_c00176{left:357.118785px;}
.x25_c00176{left:367.919535px;}
.x1a_c00176{left:371.879535px;}
.x26_c00176{left:384.118785px;}
.x27_c00176{left:413.999400px;}
.x13_c00176{left:416.159820px;}
.x28_c00176{left:462.599070px;}
.x14_c00176{left:466.199850px;}
.x29_c00176{left:488.878920px;}
.x2a_c00176{left:513.000000px;}
.x31_c00176{left:519.118785px;}
.x15_c00176{left:536.039985px;}
.x1d_c00176{left:558.359850px;}
.x16_c00176{left:563.039985px;}
.x2b_c00176{left:567.359250px;}
.x1e_c00176{left:575.999400px;}
.x1b_c00176{left:601.559100px;}
.x2c_c00176{left:612.359850px;}
.x1c_c00176{left:617.758530px;}
.x2d_c00176{left:636.838530px;}
.x2e_c00176{left:663.838530px;}
.x8_c00176{left:668.879520px;}
.x17_c00176{left:671.758530px;}
.x9_c00176{left:683.279250px;}
.x32_c00176{left:705.239820px;}
.x33_c00176{left:723.958920px;}
.x2f_c00176{left:734.039385px;}
.x1f_c00176{left:746.278800px;}
.x34_c00176{left:750.958920px;}
.x30_c00176{left:754.559685px;}
.x20_c00176{left:763.918350px;}
.x35_c00176{left:775.439205px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls12_c00176{letter-spacing:-8.582000pt;}
.ls10_c00176{letter-spacing:-7.924000pt;}
.ls7_c00176{letter-spacing:-7.646400pt;}
.ls29_c00176{letter-spacing:-7.266700pt;}
.lse_c00176{letter-spacing:-6.601000pt;}
.ls11_c00176{letter-spacing:-5.943000pt;}
.lsf_c00176{letter-spacing:-5.379060pt;}
.lsb_c00176{letter-spacing:-5.285000pt;}
.ls28_c00176{letter-spacing:-5.000000pt;}
.ls8_c00176{letter-spacing:-4.619300pt;}
.ls9_c00176{letter-spacing:-3.961300pt;}
.ls6_c00176{letter-spacing:-3.806667pt;}
.ls2a_c00176{letter-spacing:-3.717067pt;}
.ls2_c00176{letter-spacing:-3.304000pt;}
.ls27_c00176{letter-spacing:-2.913967pt;}
.ls4_c00176{letter-spacing:-2.639000pt;}
.ls3_c00176{letter-spacing:-1.981700pt;}
.ls23_c00176{letter-spacing:-1.408020pt;}
.lsc_c00176{letter-spacing:-1.323700pt;}
.ls18_c00176{letter-spacing:-1.049667pt;}
.ls26_c00176{letter-spacing:-0.721000pt;}
.ls25_c00176{letter-spacing:-0.699300pt;}
.lsa_c00176{letter-spacing:-0.658000pt;}
.ls5_c00176{letter-spacing:0.000000pt;}
.ls1_c00176{letter-spacing:0.658000pt;}
.ls1f_c00176{letter-spacing:0.753600pt;}
.ls21_c00176{letter-spacing:0.755040pt;}
.ls0_c00176{letter-spacing:1.323700pt;}
.ls2b_c00176{letter-spacing:1.867880pt;}
.ls22_c00176{letter-spacing:2.060400pt;}
.ls13_c00176{letter-spacing:2.222000pt;}
.ls2c_c00176{letter-spacing:3.233520pt;}
.lsd_c00176{letter-spacing:3.717067pt;}
.ls19_c00176{letter-spacing:3.739200pt;}
.ls1d_c00176{letter-spacing:4.484400pt;}
.ls24_c00176{letter-spacing:4.621600pt;}
.ls17_c00176{letter-spacing:7.704533pt;}
.ls1b_c00176{letter-spacing:10.333333pt;}
.ls1a_c00176{letter-spacing:13.058040pt;}
.ls1c_c00176{letter-spacing:21.434967pt;}
.ls16_c00176{letter-spacing:22.943133pt;}
.ls1e_c00176{letter-spacing:28.785980pt;}
.ls14_c00176{letter-spacing:29.698213pt;}
.ls20_c00176{letter-spacing:32.166667pt;}
.ls15_c00176{letter-spacing:224.616527pt;}
.ws0_c00176{word-spacing:0.000000pt;}
._f_c00176{margin-left:-12.199283pt;}
._d_c00176{margin-left:-5.538651pt;}
._b_c00176{margin-left:-3.987557pt;}
._9_c00176{margin-left:-1.735683pt;}
._e_c00176{width:1.304126pt;}
._c_c00176{width:2.573742pt;}
._7_c00176{width:4.199775pt;}
._10_c00176{width:5.331887pt;}
._a_c00176{width:6.727106pt;}
._8_c00176{width:7.835800pt;}
._1_c00176{width:9.485079pt;}
._3_c00176{width:10.723300pt;}
._0_c00176{width:12.335057pt;}
._13_c00176{width:13.237977pt;}
._11_c00176{width:14.587577pt;}
._14_c00176{width:16.016304pt;}
._5_c00176{width:17.129423pt;}
._15_c00176{width:18.368000pt;}
._2_c00176{width:19.333947pt;}
._4_c00176{width:21.385449pt;}
._18_c00176{width:22.629389pt;}
._6_c00176{width:23.700732pt;}
._12_c00176{width:25.279985pt;}
._17_c00176{width:26.414936pt;}
._16_c00176{width:27.480309pt;}
._1a_c00176{width:29.709374pt;}
._19_c00176{width:34.963877pt;}
.fsf_c00176{font-size:36.666667pt;}
.fs9_c00176{font-size:39.333333pt;}
.fsa_c00176{font-size:41.333333pt;}
.fsb_c00176{font-size:44.666667pt;}
.fsc_c00176{font-size:48.000000pt;}
.fsd_c00176{font-size:49.333333pt;}
.fs7_c00176{font-size:61.333333pt;}
.fs10_c00176{font-size:62.000000pt;}
.fs17_c00176{font-size:63.333333pt;}
.fs19_c00176{font-size:65.333333pt;}
.fs2_c00176{font-size:66.666667pt;}
.fs16_c00176{font-size:68.000000pt;}
.fs15_c00176{font-size:68.666667pt;}
.fs14_c00176{font-size:69.333333pt;}
.fs0_c00176{font-size:70.000000pt;}
.fs4_c00176{font-size:70.666667pt;}
.fs1_c00176{font-size:71.333333pt;}
.fs3_c00176{font-size:72.000000pt;}
.fs6_c00176{font-size:73.333333pt;}
.fs5_c00176{font-size:74.000000pt;}
.fs18_c00176{font-size:75.333333pt;}
.fs13_c00176{font-size:76.666667pt;}
.fse_c00176{font-size:83.029867pt;}
.fs12_c00176{font-size:92.666667pt;}
.fs8_c00176{font-size:100.666667pt;}
.fs11_c00176{font-size:104.666667pt;}
.y0_c00176{bottom:0.000000pt;}
.y29_c00176{bottom:166.399693pt;}
.y2a_c00176{bottom:166.400413pt;}
.y28_c00176{bottom:192.959453pt;}
.y27_c00176{bottom:219.839333pt;}
.y26_c00176{bottom:219.839480pt;}
.y24_c00176{bottom:246.078760pt;}
.y25_c00176{bottom:246.079067pt;}
.y23_c00176{bottom:272.960547pt;}
.y22_c00176{bottom:299.200133pt;}
.y21_c00176{bottom:299.200360pt;}
.y20_c00176{bottom:325.760107pt;}
.y1f_c00176{bottom:352.319867pt;}
.y1e_c00176{bottom:378.880373pt;}
.y1d_c00176{bottom:378.880573pt;}
.y1c_c00176{bottom:405.120160pt;}
.y1b_c00176{bottom:432.640680pt;}
.y1a_c00176{bottom:485.119587pt;}
.y19_c00176{bottom:537.920760pt;}
.y17_c00176{bottom:564.480467pt;}
.y18_c00176{bottom:564.480507pt;}
.y15_c00176{bottom:591.359680pt;}
.y16_c00176{bottom:591.360387pt;}
.y14_c00176{bottom:617.919440pt;}
.y13_c00176{bottom:670.400387pt;}
.y12_c00176{bottom:673.599573pt;}
.y10_c00176{bottom:696.959267pt;}
.y11_c00176{bottom:696.959467pt;}
.yf_c00176{bottom:723.839187pt;}
.ye_c00176{bottom:750.719120pt;}
.yd_c00176{bottom:777.599040pt;}
.yc_c00176{bottom:777.600267pt;}
.yb_c00176{bottom:804.160013pt;}
.ya_c00176{bottom:856.320613pt;}
.y8_c00176{bottom:882.880333pt;}
.y9_c00176{bottom:882.880373pt;}
.y6_c00176{bottom:909.759587pt;}
.y7_c00176{bottom:909.760253pt;}
.y4_c00176{bottom:936.318973pt;}
.y5_c00176{bottom:936.319333pt;}
.y2_c00176{bottom:989.439680pt;}
.y3_c00176{bottom:989.440347pt;}
.y1_c00176{bottom:1015.999427pt;}
.h11_c00176{height:36.953125pt;}
.ha_c00176{height:39.640625pt;}
.h10_c00176{height:41.656250pt;}
.hb_c00176{height:43.109375pt;}
.hc_c00176{height:46.585938pt;}
.hd_c00176{height:48.375000pt;}
.h13_c00176{height:49.718750pt;}
.he_c00176{height:51.453125pt;}
.h1c_c00176{height:62.484375pt;}
.h8_c00176{height:63.968750pt;}
.h14_c00176{height:64.664062pt;}
.h3_c00176{height:65.429688pt;}
.h1e_c00176{height:66.054688pt;}
.h1b_c00176{height:66.738281pt;}
.h19_c00176{height:67.187500pt;}
.h1a_c00176{height:67.392578pt;}
.h18_c00176{height:68.046875pt;}
.h21_c00176{height:68.140625pt;}
.h1_c00176{height:68.701172pt;}
.h5_c00176{height:69.355469pt;}
.h1f_c00176{height:69.531250pt;}
.h2_c00176{height:70.009766pt;}
.h1d_c00176{height:70.546875pt;}
.h4_c00176{height:70.664062pt;}
.h12_c00176{height:71.218750pt;}
.h7_c00176{height:71.972656pt;}
.h6_c00176{height:72.626953pt;}
.h20_c00176{height:73.935547pt;}
.h17_c00176{height:79.960938pt;}
.hf_c00176{height:86.597556pt;}
.h16_c00176{height:96.648438pt;}
.h9_c00176{height:104.992188pt;}
.h15_c00176{height:109.164062pt;}
.h0_c00176{height:1122.666667pt;}
.w0_c00176{width:793.333333pt;}
.x0_c00176{left:0.000000pt;}
.x7_c00176{left:127.679427pt;}
.x1_c00176{left:128.958947pt;}
.x10_c00176{left:162.559613pt;}
.x2_c00176{left:178.558533pt;}
.xc_c00176{left:180.159733pt;}
.x23_c00176{left:187.199733pt;}
.x11_c00176{left:188.159200pt;}
.x36_c00176{left:190.079587pt;}
.x3_c00176{left:192.000000pt;}
.xd_c00176{left:198.719200pt;}
.x4_c00176{left:211.519067pt;}
.x37_c00176{left:214.079587pt;}
.x21_c00176{left:229.119200pt;}
.xe_c00176{left:240.959453pt;}
.x22_c00176{left:241.918920pt;}
.xa_c00176{left:243.199200pt;}
.x18_c00176{left:257.598680pt;}
.xf_c00176{left:259.839867pt;}
.xb_c00176{left:266.239720pt;}
.x19_c00176{left:271.038533pt;}
.x24_c00176{left:285.118667pt;}
.x12_c00176{left:290.559067pt;}
.x5_c00176{left:291.518533pt;}
.x6_c00176{left:317.438920pt;}
.x25_c00176{left:327.039587pt;}
.x1a_c00176{left:330.559587pt;}
.x26_c00176{left:341.438920pt;}
.x27_c00176{left:367.999467pt;}
.x13_c00176{left:369.919840pt;}
.x28_c00176{left:411.199173pt;}
.x14_c00176{left:414.399867pt;}
.x29_c00176{left:434.559040pt;}
.x2a_c00176{left:456.000000pt;}
.x31_c00176{left:461.438920pt;}
.x15_c00176{left:476.479987pt;}
.x1d_c00176{left:496.319867pt;}
.x16_c00176{left:500.479987pt;}
.x2b_c00176{left:504.319333pt;}
.x1e_c00176{left:511.999467pt;}
.x1b_c00176{left:534.719200pt;}
.x2c_c00176{left:544.319867pt;}
.x1c_c00176{left:549.118693pt;}
.x2d_c00176{left:566.078693pt;}
.x2e_c00176{left:590.078693pt;}
.x8_c00176{left:594.559573pt;}
.x17_c00176{left:597.118693pt;}
.x9_c00176{left:607.359333pt;}
.x32_c00176{left:626.879840pt;}
.x33_c00176{left:643.519040pt;}
.x2f_c00176{left:652.479453pt;}
.x1f_c00176{left:663.358933pt;}
.x34_c00176{left:667.519040pt;}
.x30_c00176{left:670.719720pt;}
.x20_c00176{left:679.038533pt;}
.x35_c00176{left:689.279293pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_043427d43777c70b4b054989.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00177{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.lsa_c00177{letter-spacing:-8.175038px;}
.ls9_c00177{letter-spacing:-7.426125px;}
.lsc_c00177{letter-spacing:-6.685875px;}
.lsb_c00177{letter-spacing:-5.945625px;}
.ls8_c00177{letter-spacing:-5.196713px;}
.ls3_c00177{letter-spacing:-4.456463px;}
.ls6_c00177{letter-spacing:-3.717000px;}
.ls1_c00177{letter-spacing:-2.968875px;}
.ls2_c00177{letter-spacing:-2.229413px;}
.ls5_c00177{letter-spacing:-1.489163px;}
.ls4_c00177{letter-spacing:-0.740250px;}
.ls7_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.740250px;}
.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;}
._e_c00177{margin-left:-7.656432px;}
._d_c00177{margin-left:-5.831007px;}
._c_c00177{margin-left:-3.523245px;}
._f_c00177{margin-left:-1.542980px;}
._8_c00177{width:1.042175px;}
._16_c00177{width:2.440626px;}
._7_c00177{width:3.985017px;}
._9_c00177{width:5.110697px;}
._5_c00177{width:6.145487px;}
._b_c00177{width:7.304538px;}
._a_c00177{width:8.378079px;}
._2_c00177{width:10.319341px;}
._1_c00177{width:11.657006px;}
._3_c00177{width:13.024165px;}
._0_c00177{width:15.513364px;}
._6_c00177{width:17.077279px;}
._14_c00177{width:18.439877px;}
._11_c00177{width:19.726994px;}
._4_c00177{width:20.816225px;}
._12_c00177{width:23.557409px;}
._10_c00177{width:24.986840px;}
._13_c00177{width:26.507309px;}
._18_c00177{width:28.705579px;}
._15_c00177{width:29.969605px;}
._17_c00177{width:32.554567px;}
._19_c00177{width:39.445310px;}
.fc0_c00177{color:transparent;}
.fs2_c00177{font-size:77.250000px;}
.fs1_c00177{font-size:78.000000px;}
.fs0_c00177{font-size:78.750000px;}
.y0_c00177{bottom:0.000000px;}
.yd_c00177{bottom:809.281515px;}
.yc_c00177{bottom:839.700780px;}
.yb_c00177{bottom:869.040960px;}
.ya_c00177{bottom:898.920690px;}
.y9_c00177{bottom:928.800405px;}
.y8_c00177{bottom:988.561965px;}
.y7_c00177{bottom:1019.160255px;}
.y5_c00177{bottom:1049.039220px;}
.y6_c00177{bottom:1049.039985px;}
.y3_c00177{bottom:1078.918530px;}
.y4_c00177{bottom:1078.918950px;}
.y2_c00177{bottom:1108.438065px;}
.y1_c00177{bottom:1138.680090px;}
.h3_c00177{height:75.816650px;}
.h2_c00177{height:76.552734px;}
.h1_c00177{height:77.288818px;}
.h0_c00177{height:1263.000000px;}
.w0_c00177{width:892.500000px;}
.x0_c00177{left:0.000000px;}
.x4_c00177{left:137.879355px;}
.x1_c00177{left:138.958350px;}
.x5_c00177{left:338.399850px;}
.x6_c00177{left:361.439685px;}
.x2_c00177{left:376.559685px;}
.x3_c00177{left:392.038920px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.lsa_c00177{letter-spacing:-7.266700pt;}
.ls9_c00177{letter-spacing:-6.601000pt;}
.lsc_c00177{letter-spacing:-5.943000pt;}
.lsb_c00177{letter-spacing:-5.285000pt;}
.ls8_c00177{letter-spacing:-4.619300pt;}
.ls3_c00177{letter-spacing:-3.961300pt;}
.ls6_c00177{letter-spacing:-3.304000pt;}
.ls1_c00177{letter-spacing:-2.639000pt;}
.ls2_c00177{letter-spacing:-1.981700pt;}
.ls5_c00177{letter-spacing:-1.323700pt;}
.ls4_c00177{letter-spacing:-0.658000pt;}
.ls7_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.658000pt;}
.ws0_c00177{word-spacing:0.000000pt;}
._e_c00177{margin-left:-6.805717pt;}
._d_c00177{margin-left:-5.183117pt;}
._c_c00177{margin-left:-3.131774pt;}
._f_c00177{margin-left:-1.371538pt;}
._8_c00177{width:0.926377pt;}
._16_c00177{width:2.169445pt;}
._7_c00177{width:3.542238pt;}
._9_c00177{width:4.542842pt;}
._5_c00177{width:5.462655pt;}
._b_c00177{width:6.492923pt;}
._a_c00177{width:7.447181pt;}
._2_c00177{width:9.172747pt;}
._1_c00177{width:10.361783pt;}
._3_c00177{width:11.577036pt;}
._0_c00177{width:13.789657pt;}
._6_c00177{width:15.179804pt;}
._14_c00177{width:16.391002pt;}
._11_c00177{width:17.535106pt;}
._4_c00177{width:18.503311pt;}
._12_c00177{width:20.939919pt;}
._10_c00177{width:22.210525pt;}
._13_c00177{width:23.562053pt;}
._18_c00177{width:25.516070pt;}
._15_c00177{width:26.639649pt;}
._17_c00177{width:28.937392pt;}
._19_c00177{width:35.062498pt;}
.fs2_c00177{font-size:68.666667pt;}
.fs1_c00177{font-size:69.333333pt;}
.fs0_c00177{font-size:70.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.yd_c00177{bottom:719.361347pt;}
.yc_c00177{bottom:746.400693pt;}
.yb_c00177{bottom:772.480853pt;}
.ya_c00177{bottom:799.040613pt;}
.y9_c00177{bottom:825.600360pt;}
.y8_c00177{bottom:878.721747pt;}
.y7_c00177{bottom:905.920227pt;}
.y5_c00177{bottom:932.479307pt;}
.y6_c00177{bottom:932.479987pt;}
.y3_c00177{bottom:959.038693pt;}
.y4_c00177{bottom:959.039067pt;}
.y2_c00177{bottom:985.278280pt;}
.y1_c00177{bottom:1012.160080pt;}
.h3_c00177{height:67.392578pt;}
.h2_c00177{height:68.046875pt;}
.h1_c00177{height:68.701172pt;}
.h0_c00177{height:1122.666667pt;}
.w0_c00177{width:793.333333pt;}
.x0_c00177{left:0.000000pt;}
.x4_c00177{left:122.559427pt;}
.x1_c00177{left:123.518533pt;}
.x5_c00177{left:300.799867pt;}
.x6_c00177{left:321.279720pt;}
.x2_c00177{left:334.719720pt;}
.x3_c00177{left:348.479040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62cfef1caf21312f48580982.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_02cf2a3db004cf7a969d5372.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_e6bee8ce270ba98e58aadb40.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_dddf0b6f91db4dcd551fffdd.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_e284f5a823830c2aafd9fc9b.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.364746;font-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_c00178{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m12_c00178{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m17_c00178{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{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);}
.m16_c00178{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m11_c00178{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m15_c00178{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00178{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m4_c00178{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m13_c00178{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.mf_c00178{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m1b_c00178{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m9_c00178{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2_c00178{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m18_c00178{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.me_c00178{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m1e_c00178{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m14_c00178{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_c00178{transform:matrix(0.271845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271845,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.lsa_c00178{letter-spacing:-13.698675px;}
.ls20_c00178{letter-spacing:-12.687675px;}
.ls10_c00178{letter-spacing:-11.640000px;}
.ls18_c00178{letter-spacing:-9.555120px;}
.ls1f_c00178{letter-spacing:-8.331750px;}
.ls1b_c00178{letter-spacing:-7.576538px;}
.ls21_c00178{letter-spacing:-6.811875px;}
.lsc_c00178{letter-spacing:-6.055875px;}
.ls7_c00178{letter-spacing:-5.300663px;}
.ls1c_c00178{letter-spacing:-4.543088px;}
.ls1e_c00178{letter-spacing:-4.410975px;}
.ls1d_c00178{letter-spacing:-4.208250px;}
.ls22_c00178{letter-spacing:-4.140600px;}
.ls17_c00178{letter-spacing:-4.030658px;}
.ls4_c00178{letter-spacing:-3.860025px;}
.ls12_c00178{letter-spacing:-3.787875px;}
.ls11_c00178{letter-spacing:-3.715725px;}
.ls5_c00178{letter-spacing:-3.089625px;}
.lsd_c00178{letter-spacing:-3.031875px;}
.ls1a_c00178{letter-spacing:-2.369318px;}
.ls3_c00178{letter-spacing:-2.310398px;}
.lsb_c00178{letter-spacing:-2.267213px;}
.ls14_c00178{letter-spacing:-1.615050px;}
.lsf_c00178{letter-spacing:-1.540800px;}
.ls9_c00178{letter-spacing:-1.512000px;}
.ls15_c00178{letter-spacing:-1.483200px;}
.ls13_c00178{letter-spacing:-0.763875px;}
.ls8_c00178{letter-spacing:-0.756000px;}
.ls2_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:1.512000px;}
.lse_c00178{letter-spacing:1.645800px;}
.ls1_c00178{letter-spacing:2.267213px;}
.ls19_c00178{letter-spacing:3.213600px;}
.ls23_c00178{letter-spacing:4.635000px;}
.ls16_c00178{letter-spacing:5.800507px;}
.ls6_c00178{letter-spacing:6.171225px;}
.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;}
._c_c00178{margin-left:-10.199325px;}
._1b_c00178{margin-left:-7.198152px;}
._b_c00178{margin-left:-5.555467px;}
._d_c00178{margin-left:-4.264779px;}
._8_c00178{margin-left:-3.072213px;}
._9_c00178{margin-left:-1.097230px;}
._3_c00178{width:1.199738px;}
._7_c00178{width:3.084554px;}
._a_c00178{width:4.323191px;}
._e_c00178{width:5.347941px;}
._1_c00178{width:6.590747px;}
._0_c00178{width:7.711963px;}
._2_c00178{width:9.052694px;}
._f_c00178{width:10.282359px;}
._6_c00178{width:11.899983px;}
._5_c00178{width:13.861151px;}
._12_c00178{width:15.662285px;}
._13_c00178{width:16.921004px;}
._14_c00178{width:19.301867px;}
._10_c00178{width:20.593367px;}
._11_c00178{width:22.084218px;}
._4_c00178{width:23.579810px;}
._1e_c00178{width:24.591384px;}
._1c_c00178{width:30.499814px;}
._1d_c00178{width:31.963111px;}
._15_c00178{width:35.185439px;}
._16_c00178{width:36.823985px;}
._1a_c00178{width:38.601190px;}
._17_c00178{width:42.841030px;}
._18_c00178{width:44.090550px;}
._19_c00178{width:53.660068px;}
.fc0_c00178{color:transparent;}
.fs7_c00178{font-size:21.750000px;}
.fs6_c00178{font-size:72.000000px;}
.fs4_c00178{font-size:72.750000px;}
.fs9_c00178{font-size:74.250000px;}
.fsb_c00178{font-size:75.000000px;}
.fs8_c00178{font-size:75.750000px;}
.fs5_c00178{font-size:77.250000px;}
.fs3_c00178{font-size:78.000000px;}
.fs2_c00178{font-size:78.750000px;}
.fs0_c00178{font-size:80.250000px;}
.fsa_c00178{font-size:82.500000px;}
.fsc_c00178{font-size:84.750000px;}
.fs1_c00178{font-size:86.250000px;}
.y0_c00178{bottom:0.000000px;}
.y25_c00178{bottom:184.679970px;}
.y26_c00178{bottom:184.680750px;}
.y24_c00178{bottom:214.559685px;}
.y23_c00178{bottom:214.559715px;}
.y21_c00178{bottom:244.080270px;}
.y22_c00178{bottom:244.081050px;}
.y20_c00178{bottom:273.960000px;}
.y1f_c00178{bottom:273.960165px;}
.y1e_c00178{bottom:303.479685px;}
.y1d_c00178{bottom:333.001050px;}
.y1c_c00178{bottom:451.800150px;}
.y1b_c00178{bottom:451.800480px;}
.y1a_c00178{bottom:482.400885px;}
.y19_c00178{bottom:482.401065px;}
.y17_c00178{bottom:511.919820px;}
.y18_c00178{bottom:511.920600px;}
.y16_c00178{bottom:542.159730px;}
.y14_c00178{bottom:571.320255px;}
.y15_c00178{bottom:571.320870px;}
.y13_c00178{bottom:601.199985px;}
.y11_c00178{bottom:630.718920px;}
.y12_c00178{bottom:630.719520px;}
.y10_c00178{bottom:660.240255px;}
.ye_c00178{bottom:690.119940px;}
.yf_c00178{bottom:690.119985px;}
.yd_c00178{bottom:720.359850px;}
.yc_c00178{bottom:751.680720px;}
.yb_c00178{bottom:780.480285px;}
.ya_c00178{bottom:780.481185px;}
.y9_c00178{bottom:810.360900px;}
.y8_c00178{bottom:840.600810px;}
.y7_c00178{bottom:900.360255px;}
.y6_c00178{bottom:959.760675px;}
.y4_c00178{bottom:1019.879490px;}
.y5_c00178{bottom:1019.879520px;}
.y3_c00178{bottom:1049.400840px;}
.y2_c00178{bottom:1079.640750px;}
.y1_c00178{bottom:1138.320825px;}
.ha_c00178{height:21.495117px;}
.h9_c00178{height:72.562500px;}
.hf_c00178{height:73.608398px;}
.h7_c00178{height:75.816650px;}
.h6_c00178{height:75.875977px;}
.h5_c00178{height:76.552734px;}
.h3_c00178{height:77.288818px;}
.hd_c00178{height:77.440430px;}
.hc_c00178{height:78.609375px;}
.h8_c00178{height:78.760986px;}
.hb_c00178{height:79.004883px;}
.h4_c00178{height:79.309570px;}
.h1_c00178{height:80.876953px;}
.he_c00178{height:80.969238px;}
.h11_c00178{height:81.533203px;}
.h10_c00178{height:83.177490px;}
.h2_c00178{height:86.923828px;}
.h0_c00178{height:1263.000000px;}
.w0_c00178{width:892.500000px;}
.x0_c00178{left:0.000000px;}
.x1d_c00178{left:138.600540px;}
.xa_c00178{left:139.678500px;}
.x1_c00178{left:140.759565px;}
.x2e_c00178{left:153.359850px;}
.x2b_c00178{left:163.799565px;}
.x1e_c00178{left:185.399250px;}
.x1f_c00178{left:201.598500px;}
.xd_c00178{left:206.278800px;}
.x19_c00178{left:224.638500px;}
.xe_c00178{left:231.838515px;}
.x11_c00178{left:241.559685px;}
.x1a_c00178{left:257.399850px;}
.x8_c00178{left:264.238785px;}
.xb_c00178{left:266.399250px;}
.x4_c00178{left:275.759535px;}
.x22_c00178{left:284.399850px;}
.xc_c00178{left:290.159385px;}
.x12_c00178{left:293.399250px;}
.x25_c00178{left:295.559685px;}
.x5_c00178{left:298.079385px;}
.x29_c00178{left:305.638500px;}
.x9_c00178{left:308.519100px;}
.x26_c00178{left:313.919535px;}
.x2a_c00178{left:319.319850px;}
.x33_c00178{left:352.799535px;}
.x13_c00178{left:367.919535px;}
.x2_c00178{left:372.238785px;}
.x3_c00178{left:386.999400px;}
.x14_c00178{left:400.319820px;}
.x36_c00178{left:419.759085px;}
.x20_c00178{left:433.079400px;}
.x2f_c00178{left:438.118785px;}
.x37_c00178{left:439.199850px;}
.x21_c00178{left:447.838530px;}
.x15_c00178{left:452.159415px;}
.x30_c00178{left:454.319820px;}
.xf_c00178{left:464.039385px;}
.x10_c00178{left:480.958920px;}
.x23_c00178{left:485.279850px;}
.x24_c00178{left:509.399235px;}
.x31_c00178{left:516.599070px;}
.x16_c00178{left:527.399820px;}
.x32_c00178{left:543.239820px;}
.x6_c00178{left:566.639100px;}
.x2c_c00178{left:577.439670px;}
.x17_c00178{left:579.598530px;}
.x7_c00178{left:583.558635px;}
.x34_c00178{left:588.238770px;}
.x2d_c00178{left:592.198785px;}
.x35_c00178{left:620.639100px;}
.x18_c00178{left:741.239220px;}
.x1b_c00178{left:743.399820px;}
.x27_c00178{left:748.798560px;}
.x38_c00178{left:757.438620px;}
.x1c_c00178{left:759.958335px;}
.x28_c00178{left:767.159820px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.lsa_c00178{letter-spacing:-12.176600pt;}
.ls20_c00178{letter-spacing:-11.277933pt;}
.ls10_c00178{letter-spacing:-10.346667pt;}
.ls18_c00178{letter-spacing:-8.493440pt;}
.ls1f_c00178{letter-spacing:-7.406000pt;}
.ls1b_c00178{letter-spacing:-6.734700pt;}
.ls21_c00178{letter-spacing:-6.055000pt;}
.lsc_c00178{letter-spacing:-5.383000pt;}
.ls7_c00178{letter-spacing:-4.711700pt;}
.ls1c_c00178{letter-spacing:-4.038300pt;}
.ls1e_c00178{letter-spacing:-3.920867pt;}
.ls1d_c00178{letter-spacing:-3.740667pt;}
.ls22_c00178{letter-spacing:-3.680533pt;}
.ls17_c00178{letter-spacing:-3.582807pt;}
.ls4_c00178{letter-spacing:-3.431133pt;}
.ls12_c00178{letter-spacing:-3.367000pt;}
.ls11_c00178{letter-spacing:-3.302867pt;}
.ls5_c00178{letter-spacing:-2.746333pt;}
.lsd_c00178{letter-spacing:-2.695000pt;}
.ls1a_c00178{letter-spacing:-2.106060pt;}
.ls3_c00178{letter-spacing:-2.053687pt;}
.lsb_c00178{letter-spacing:-2.015300pt;}
.ls14_c00178{letter-spacing:-1.435600pt;}
.lsf_c00178{letter-spacing:-1.369600pt;}
.ls9_c00178{letter-spacing:-1.344000pt;}
.ls15_c00178{letter-spacing:-1.318400pt;}
.ls13_c00178{letter-spacing:-0.679000pt;}
.ls8_c00178{letter-spacing:-0.672000pt;}
.ls2_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:1.344000pt;}
.lse_c00178{letter-spacing:1.462933pt;}
.ls1_c00178{letter-spacing:2.015300pt;}
.ls19_c00178{letter-spacing:2.856533pt;}
.ls23_c00178{letter-spacing:4.120000pt;}
.ls16_c00178{letter-spacing:5.156007pt;}
.ls6_c00178{letter-spacing:5.485533pt;}
.ws0_c00178{word-spacing:0.000000pt;}
._c_c00178{margin-left:-9.066067pt;}
._1b_c00178{margin-left:-6.398357pt;}
._b_c00178{margin-left:-4.938193pt;}
._d_c00178{margin-left:-3.790915pt;}
._8_c00178{margin-left:-2.730856pt;}
._9_c00178{margin-left:-0.975315pt;}
._3_c00178{width:1.066433pt;}
._7_c00178{width:2.741826pt;}
._a_c00178{width:3.842836pt;}
._e_c00178{width:4.753725pt;}
._1_c00178{width:5.858442pt;}
._0_c00178{width:6.855078pt;}
._2_c00178{width:8.046839pt;}
._f_c00178{width:9.139875pt;}
._6_c00178{width:10.577763pt;}
._5_c00178{width:12.321023pt;}
._12_c00178{width:13.922031pt;}
._13_c00178{width:15.040893pt;}
._14_c00178{width:17.157215pt;}
._10_c00178{width:18.305215pt;}
._11_c00178{width:19.630416pt;}
._4_c00178{width:20.959831pt;}
._1e_c00178{width:21.859008pt;}
._1c_c00178{width:27.110946pt;}
._1d_c00178{width:28.411654pt;}
._15_c00178{width:31.275946pt;}
._16_c00178{width:32.732431pt;}
._1a_c00178{width:34.312169pt;}
._17_c00178{width:38.080915pt;}
._18_c00178{width:39.191600pt;}
._19_c00178{width:47.697838pt;}
.fs7_c00178{font-size:19.333333pt;}
.fs6_c00178{font-size:64.000000pt;}
.fs4_c00178{font-size:64.666667pt;}
.fs9_c00178{font-size:66.000000pt;}
.fsb_c00178{font-size:66.666667pt;}
.fs8_c00178{font-size:67.333333pt;}
.fs5_c00178{font-size:68.666667pt;}
.fs3_c00178{font-size:69.333333pt;}
.fs2_c00178{font-size:70.000000pt;}
.fs0_c00178{font-size:71.333333pt;}
.fsa_c00178{font-size:73.333333pt;}
.fsc_c00178{font-size:75.333333pt;}
.fs1_c00178{font-size:76.666667pt;}
.y0_c00178{bottom:0.000000pt;}
.y25_c00178{bottom:164.159973pt;}
.y26_c00178{bottom:164.160667pt;}
.y24_c00178{bottom:190.719720pt;}
.y23_c00178{bottom:190.719747pt;}
.y21_c00178{bottom:216.960240pt;}
.y22_c00178{bottom:216.960933pt;}
.y20_c00178{bottom:243.520000pt;}
.y1f_c00178{bottom:243.520147pt;}
.y1e_c00178{bottom:269.759720pt;}
.y1d_c00178{bottom:296.000933pt;}
.y1c_c00178{bottom:401.600133pt;}
.y1b_c00178{bottom:401.600427pt;}
.y1a_c00178{bottom:428.800787pt;}
.y19_c00178{bottom:428.800947pt;}
.y17_c00178{bottom:455.039840pt;}
.y18_c00178{bottom:455.040533pt;}
.y16_c00178{bottom:481.919760pt;}
.y14_c00178{bottom:507.840227pt;}
.y15_c00178{bottom:507.840773pt;}
.y13_c00178{bottom:534.399987pt;}
.y11_c00178{bottom:560.639040pt;}
.y12_c00178{bottom:560.639573pt;}
.y10_c00178{bottom:586.880227pt;}
.ye_c00178{bottom:613.439947pt;}
.yf_c00178{bottom:613.439987pt;}
.yd_c00178{bottom:640.319867pt;}
.yc_c00178{bottom:668.160640pt;}
.yb_c00178{bottom:693.760253pt;}
.ya_c00178{bottom:693.761053pt;}
.y9_c00178{bottom:720.320800pt;}
.y8_c00178{bottom:747.200720pt;}
.y7_c00178{bottom:800.320227pt;}
.y6_c00178{bottom:853.120600pt;}
.y4_c00178{bottom:906.559547pt;}
.y5_c00178{bottom:906.559573pt;}
.y3_c00178{bottom:932.800747pt;}
.y2_c00178{bottom:959.680667pt;}
.y1_c00178{bottom:1011.840733pt;}
.ha_c00178{height:19.106771pt;}
.h9_c00178{height:64.500000pt;}
.hf_c00178{height:65.429688pt;}
.h7_c00178{height:67.392578pt;}
.h6_c00178{height:67.445312pt;}
.h5_c00178{height:68.046875pt;}
.h3_c00178{height:68.701172pt;}
.hd_c00178{height:68.835938pt;}
.hc_c00178{height:69.875000pt;}
.h8_c00178{height:70.009766pt;}
.hb_c00178{height:70.226562pt;}
.h4_c00178{height:70.497396pt;}
.h1_c00178{height:71.890625pt;}
.he_c00178{height:71.972656pt;}
.h11_c00178{height:72.473958pt;}
.h10_c00178{height:73.935547pt;}
.h2_c00178{height:77.265625pt;}
.h0_c00178{height:1122.666667pt;}
.w0_c00178{width:793.333333pt;}
.x0_c00178{left:0.000000pt;}
.x1d_c00178{left:123.200480pt;}
.xa_c00178{left:124.158667pt;}
.x1_c00178{left:125.119613pt;}
.x2e_c00178{left:136.319867pt;}
.x2b_c00178{left:145.599613pt;}
.x1e_c00178{left:164.799333pt;}
.x1f_c00178{left:179.198667pt;}
.xd_c00178{left:183.358933pt;}
.x19_c00178{left:199.678667pt;}
.xe_c00178{left:206.078680pt;}
.x11_c00178{left:214.719720pt;}
.x1a_c00178{left:228.799867pt;}
.x8_c00178{left:234.878920pt;}
.xb_c00178{left:236.799333pt;}
.x4_c00178{left:245.119587pt;}
.x22_c00178{left:252.799867pt;}
.xc_c00178{left:257.919453pt;}
.x12_c00178{left:260.799333pt;}
.x25_c00178{left:262.719720pt;}
.x5_c00178{left:264.959453pt;}
.x29_c00178{left:271.678667pt;}
.x9_c00178{left:274.239200pt;}
.x26_c00178{left:279.039587pt;}
.x2a_c00178{left:283.839867pt;}
.x33_c00178{left:313.599587pt;}
.x13_c00178{left:327.039587pt;}
.x2_c00178{left:330.878920pt;}
.x3_c00178{left:343.999467pt;}
.x14_c00178{left:355.839840pt;}
.x36_c00178{left:373.119187pt;}
.x20_c00178{left:384.959467pt;}
.x2f_c00178{left:389.438920pt;}
.x37_c00178{left:390.399867pt;}
.x21_c00178{left:398.078693pt;}
.x15_c00178{left:401.919480pt;}
.x30_c00178{left:403.839840pt;}
.xf_c00178{left:412.479453pt;}
.x10_c00178{left:427.519040pt;}
.x23_c00178{left:431.359867pt;}
.x24_c00178{left:452.799320pt;}
.x31_c00178{left:459.199173pt;}
.x16_c00178{left:468.799840pt;}
.x32_c00178{left:482.879840pt;}
.x6_c00178{left:503.679200pt;}
.x2c_c00178{left:513.279707pt;}
.x17_c00178{left:515.198693pt;}
.x7_c00178{left:518.718787pt;}
.x34_c00178{left:522.878907pt;}
.x2d_c00178{left:526.398920pt;}
.x35_c00178{left:551.679200pt;}
.x18_c00178{left:658.879307pt;}
.x1b_c00178{left:660.799840pt;}
.x27_c00178{left:665.598720pt;}
.x38_c00178{left:673.278773pt;}
.x1c_c00178{left:675.518520pt;}
.x28_c00178{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ea00b271384d5942193f78a.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_ee37cad0992fe270a666baab.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_206bcd5a0b88cef0a752fe0d.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_aced06ca361e129483cdc623.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_91ea0ee229fcefd1f280a559.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.364746;font-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_c00179{transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m16_c00179{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.199541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199541,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m1b_c00179{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{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_c00179{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.me_c00179{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_c00179{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls19_c00179{letter-spacing:-19.771875px;}
.ls1c_c00179{letter-spacing:-11.102100px;}
.ls18_c00179{letter-spacing:-10.432800px;}
.lse_c00179{letter-spacing:-9.654750px;}
.lsd_c00179{letter-spacing:-8.914500px;}
.ls10_c00179{letter-spacing:-8.175038px;}
.ls15_c00179{letter-spacing:-7.832550px;}
.lsb_c00179{letter-spacing:-6.685875px;}
.ls9_c00179{letter-spacing:-5.945625px;}
.ls20_c00179{letter-spacing:-5.345190px;}
.ls6_c00179{letter-spacing:-5.196713px;}
.ls16_c00179{letter-spacing:-4.544250px;}
.ls3_c00179{letter-spacing:-4.456463px;}
.ls4_c00179{letter-spacing:-3.717000px;}
.ls24_c00179{letter-spacing:-3.583125px;}
.ls8_c00179{letter-spacing:-2.968875px;}
.ls13_c00179{letter-spacing:-2.403450px;}
.ls2_c00179{letter-spacing:-2.229413px;}
.ls21_c00179{letter-spacing:-1.643775px;}
.ls5_c00179{letter-spacing:-1.489163px;}
.lsa_c00179{letter-spacing:-0.740250px;}
.ls7_c00179{letter-spacing:0.000000px;}
.ls1_c00179{letter-spacing:0.740250px;}
.ls17_c00179{letter-spacing:0.772800px;}
.ls23_c00179{letter-spacing:0.780750px;}
.ls12_c00179{letter-spacing:0.818850px;}
.ls0_c00179{letter-spacing:1.489163px;}
.ls14_c00179{letter-spacing:1.653600px;}
.ls1b_c00179{letter-spacing:2.106000px;}
.ls22_c00179{letter-spacing:2.229413px;}
.ls1d_c00179{letter-spacing:3.637710px;}
.ls1f_c00179{letter-spacing:3.772440px;}
.ls1e_c00179{letter-spacing:3.795825px;}
.lsf_c00179{letter-spacing:4.270103px;}
.ls11_c00179{letter-spacing:4.514805px;}
.lsc_c00179{letter-spacing:4.700625px;}
.ls1a_c00179{letter-spacing:8.325833px;}
.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;}
._18_c00179{margin-left:-9.338012px;}
._f_c00179{margin-left:-7.645005px;}
._e_c00179{margin-left:-5.890366px;}
._15_c00179{margin-left:-4.847122px;}
._d_c00179{margin-left:-3.043212px;}
._6_c00179{margin-left:-1.876910px;}
._10_c00179{width:1.064254px;}
._14_c00179{width:2.362084px;}
._0_c00179{width:3.748634px;}
._11_c00179{width:4.938606px;}
._a_c00179{width:6.302288px;}
._8_c00179{width:7.881241px;}
._2_c00179{width:8.901306px;}
._9_c00179{width:10.343723px;}
._3_c00179{width:11.421543px;}
._7_c00179{width:12.857661px;}
._5_c00179{width:14.369825px;}
._b_c00179{width:15.529500px;}
._12_c00179{width:17.393542px;}
._c_c00179{width:18.417203px;}
._4_c00179{width:19.579657px;}
._1_c00179{width:21.368144px;}
._16_c00179{width:24.509422px;}
._1c_c00179{width:26.131152px;}
._19_c00179{width:28.025803px;}
._1a_c00179{width:29.869756px;}
._13_c00179{width:31.437238px;}
._1b_c00179{width:33.116470px;}
._1d_c00179{width:34.422011px;}
._1e_c00179{width:36.648734px;}
._1f_c00179{width:40.196779px;}
._23_c00179{width:44.682839px;}
._22_c00179{width:45.705252px;}
._20_c00179{width:47.844711px;}
._21_c00179{width:60.050887px;}
._17_c00179{width:110.222917px;}
.fc0_c00179{color:transparent;}
.fs3_c00179{font-size:69.000000px;}
.fs7_c00179{font-size:70.500000px;}
.fs8_c00179{font-size:75.000000px;}
.fsd_c00179{font-size:75.750000px;}
.fs5_c00179{font-size:76.500000px;}
.fsb_c00179{font-size:77.250000px;}
.fs0_c00179{font-size:78.750000px;}
.fs6_c00179{font-size:79.500000px;}
.fs4_c00179{font-size:80.250000px;}
.fsa_c00179{font-size:81.000000px;}
.fs2_c00179{font-size:81.750000px;}
.fs1_c00179{font-size:82.500000px;}
.fs9_c00179{font-size:83.250000px;}
.fsc_c00179{font-size:84.000000px;}
.y0_c00179{bottom:0.000000px;}
.y28_c00179{bottom:183.599700px;}
.y27_c00179{bottom:183.600465px;}
.y26_c00179{bottom:213.120000px;}
.y25_c00179{bottom:242.999730px;}
.y24_c00179{bottom:303.479850px;}
.y23_c00179{bottom:332.999385px;}
.y22_c00179{bottom:332.999400px;}
.y21_c00179{bottom:362.520750px;}
.y20_c00179{bottom:362.521530px;}
.y1f_c00179{bottom:391.680570px;}
.y1e_c00179{bottom:421.560285px;}
.y1c_c00179{bottom:451.079865px;}
.y1d_c00179{bottom:451.080000px;}
.y1b_c00179{bottom:481.498830px;}
.y1a_c00179{bottom:511.559685px;}
.y19_c00179{bottom:511.561380px;}
.y18_c00179{bottom:571.681020px;}
.y16_c00179{bottom:601.560465px;}
.y17_c00179{bottom:601.560750px;}
.y14_c00179{bottom:630.718875px;}
.y15_c00179{bottom:630.719520px;}
.y13_c00179{bottom:690.119940px;}
.y12_c00179{bottom:720.359850px;}
.y11_c00179{bottom:750.960570px;}
.y10_c00179{bottom:810.359250px;}
.yf_c00179{bottom:840.599880px;}
.ye_c00179{bottom:870.479595px;}
.yd_c00179{bottom:900.719520px;}
.yc_c00179{bottom:930.600180px;}
.yb_c00179{bottom:960.840090px;}
.ya_c00179{bottom:960.840450px;}
.y9_c00179{bottom:990.359985px;}
.y8_c00179{bottom:1019.879520px;}
.y7_c00179{bottom:1049.399235px;}
.y6_c00179{bottom:1049.399250px;}
.y5_c00179{bottom:1078.920600px;}
.y3_c00179{bottom:1079.279670px;}
.y4_c00179{bottom:1079.279850px;}
.y2_c00179{bottom:1109.519580px;}
.y1_c00179{bottom:1139.759490px;}
.h4_c00179{height:71.964844px;}
.h9_c00179{height:73.529297px;}
.h12_c00179{height:73.608398px;}
.h6_c00179{height:75.080566px;}
.hd_c00179{height:75.816650px;}
.h11_c00179{height:76.341797px;}
.h1_c00179{height:77.288818px;}
.h7_c00179{height:78.024902px;}
.ha_c00179{height:78.222656px;}
.h5_c00179{height:78.760986px;}
.he_c00179{height:79.497070px;}
.hc_c00179{height:80.050781px;}
.h8_c00179{height:80.121094px;}
.h3_c00179{height:80.233154px;}
.h2_c00179{height:80.969238px;}
.h10_c00179{height:81.632812px;}
.hb_c00179{height:82.274414px;}
.hf_c00179{height:82.441406px;}
.h0_c00179{height:1263.000000px;}
.w0_c00179{width:892.500000px;}
.x0_c00179{left:0.000000px;}
.x9_c00179{left:141.480450px;}
.x4_c00179{left:142.558530px;}
.x1_c00179{left:144.358665px;}
.xd_c00179{left:164.158785px;}
.x10_c00179{left:165.239850px;}
.x1d_c00179{left:195.119115px;}
.x22_c00179{left:196.918905px;}
.x27_c00179{left:217.799535px;}
.x11_c00179{left:224.638500px;}
.x20_c00179{left:228.598500px;}
.x12_c00179{left:248.039385px;}
.x21_c00179{left:254.878350px;}
.xe_c00179{left:267.478635px;}
.x13_c00179{left:275.398635px;}
.xf_c00179{left:281.159850px;}
.x1e_c00179{left:306.719535px;}
.x28_c00179{left:317.159385px;}
.x25_c00179{left:334.798950px;}
.x14_c00179{left:348.119385px;}
.x1f_c00179{left:349.559685px;}
.x26_c00179{left:357.118785px;}
.x15_c00179{left:368.278800px;}
.x34_c00179{left:380.519685px;}
.x2e_c00179{left:386.638500px;}
.x2f_c00179{left:404.639100px;}
.x30_c00179{left:406.799565px;}
.x29_c00179{left:422.278800px;}
.x35_c00179{left:428.758530px;}
.x16_c00179{left:461.158770px;}
.x2a_c00179{left:468.358665px;}
.x5_c00179{left:475.558635px;}
.x23_c00179{left:479.159415px;}
.x24_c00179{left:502.919535px;}
.x31_c00179{left:512.639100px;}
.x6_c00179{left:514.079400px;}
.x7_c00179{left:539.279850px;}
.x2b_c00179{left:541.799520px;}
.x32_c00179{left:557.998950px;}
.x33_c00179{left:572.039385px;}
.x2c_c00179{left:581.759085px;}
.x2d_c00179{left:596.158770px;}
.x8_c00179{left:597.239820px;}
.x17_c00179{left:606.598530px;}
.xb_c00179{left:612.719100px;}
.x1b_c00179{left:621.718545px;}
.x18_c00179{left:633.598530px;}
.xc_c00179{left:634.679670px;}
.x1c_c00179{left:637.558635px;}
.x2_c00179{left:701.639100px;}
.x3_c00179{left:716.759085px;}
.x19_c00179{left:746.278800px;}
.x1a_c00179{left:769.318815px;}
.xa_c00179{left:773.998905px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls19_c00179{letter-spacing:-17.575000pt;}
.ls1c_c00179{letter-spacing:-9.868533pt;}
.ls18_c00179{letter-spacing:-9.273600pt;}
.lse_c00179{letter-spacing:-8.582000pt;}
.lsd_c00179{letter-spacing:-7.924000pt;}
.ls10_c00179{letter-spacing:-7.266700pt;}
.ls15_c00179{letter-spacing:-6.962267pt;}
.lsb_c00179{letter-spacing:-5.943000pt;}
.ls9_c00179{letter-spacing:-5.285000pt;}
.ls20_c00179{letter-spacing:-4.751280pt;}
.ls6_c00179{letter-spacing:-4.619300pt;}
.ls16_c00179{letter-spacing:-4.039333pt;}
.ls3_c00179{letter-spacing:-3.961300pt;}
.ls4_c00179{letter-spacing:-3.304000pt;}
.ls24_c00179{letter-spacing:-3.185000pt;}
.ls8_c00179{letter-spacing:-2.639000pt;}
.ls13_c00179{letter-spacing:-2.136400pt;}
.ls2_c00179{letter-spacing:-1.981700pt;}
.ls21_c00179{letter-spacing:-1.461133pt;}
.ls5_c00179{letter-spacing:-1.323700pt;}
.lsa_c00179{letter-spacing:-0.658000pt;}
.ls7_c00179{letter-spacing:0.000000pt;}
.ls1_c00179{letter-spacing:0.658000pt;}
.ls17_c00179{letter-spacing:0.686933pt;}
.ls23_c00179{letter-spacing:0.694000pt;}
.ls12_c00179{letter-spacing:0.727867pt;}
.ls0_c00179{letter-spacing:1.323700pt;}
.ls14_c00179{letter-spacing:1.469867pt;}
.ls1b_c00179{letter-spacing:1.872000pt;}
.ls22_c00179{letter-spacing:1.981700pt;}
.ls1d_c00179{letter-spacing:3.233520pt;}
.ls1f_c00179{letter-spacing:3.353280pt;}
.ls1e_c00179{letter-spacing:3.374067pt;}
.lsf_c00179{letter-spacing:3.795647pt;}
.ls11_c00179{letter-spacing:4.013160pt;}
.lsc_c00179{letter-spacing:4.178333pt;}
.ls1a_c00179{letter-spacing:7.400740pt;}
.ws0_c00179{word-spacing:0.000000pt;}
._18_c00179{margin-left:-8.300455pt;}
._f_c00179{margin-left:-6.795560pt;}
._e_c00179{margin-left:-5.235881pt;}
._15_c00179{margin-left:-4.308553pt;}
._d_c00179{margin-left:-2.705077pt;}
._6_c00179{margin-left:-1.668364pt;}
._10_c00179{width:0.946004pt;}
._14_c00179{width:2.099630pt;}
._0_c00179{width:3.332119pt;}
._11_c00179{width:4.389872pt;}
._a_c00179{width:5.602034pt;}
._8_c00179{width:7.005547pt;}
._2_c00179{width:7.912272pt;}
._9_c00179{width:9.194421pt;}
._3_c00179{width:10.152483pt;}
._7_c00179{width:11.429032pt;}
._5_c00179{width:12.773177pt;}
._b_c00179{width:13.804000pt;}
._12_c00179{width:15.460926pt;}
._c_c00179{width:16.370847pt;}
._4_c00179{width:17.404140pt;}
._1_c00179{width:18.993906pt;}
._16_c00179{width:21.786153pt;}
._1c_c00179{width:23.227691pt;}
._19_c00179{width:24.911825pt;}
._1a_c00179{width:26.550894pt;}
._13_c00179{width:27.944211pt;}
._1b_c00179{width:29.436862pt;}
._1d_c00179{width:30.597343pt;}
._1e_c00179{width:32.576653pt;}
._1f_c00179{width:35.730470pt;}
._23_c00179{width:39.718079pt;}
._22_c00179{width:40.626891pt;}
._20_c00179{width:42.528632pt;}
._21_c00179{width:53.378566pt;}
._17_c00179{width:97.975926pt;}
.fs3_c00179{font-size:61.333333pt;}
.fs7_c00179{font-size:62.666667pt;}
.fs8_c00179{font-size:66.666667pt;}
.fsd_c00179{font-size:67.333333pt;}
.fs5_c00179{font-size:68.000000pt;}
.fsb_c00179{font-size:68.666667pt;}
.fs0_c00179{font-size:70.000000pt;}
.fs6_c00179{font-size:70.666667pt;}
.fs4_c00179{font-size:71.333333pt;}
.fsa_c00179{font-size:72.000000pt;}
.fs2_c00179{font-size:72.666667pt;}
.fs1_c00179{font-size:73.333333pt;}
.fs9_c00179{font-size:74.000000pt;}
.fsc_c00179{font-size:74.666667pt;}
.y0_c00179{bottom:0.000000pt;}
.y28_c00179{bottom:163.199733pt;}
.y27_c00179{bottom:163.200413pt;}
.y26_c00179{bottom:189.440000pt;}
.y25_c00179{bottom:215.999760pt;}
.y24_c00179{bottom:269.759867pt;}
.y23_c00179{bottom:295.999453pt;}
.y22_c00179{bottom:295.999467pt;}
.y21_c00179{bottom:322.240667pt;}
.y20_c00179{bottom:322.241360pt;}
.y1f_c00179{bottom:348.160507pt;}
.y1e_c00179{bottom:374.720253pt;}
.y1c_c00179{bottom:400.959880pt;}
.y1d_c00179{bottom:400.960000pt;}
.y1b_c00179{bottom:427.998960pt;}
.y1a_c00179{bottom:454.719720pt;}
.y19_c00179{bottom:454.721227pt;}
.y18_c00179{bottom:508.160907pt;}
.y16_c00179{bottom:534.720413pt;}
.y17_c00179{bottom:534.720667pt;}
.y14_c00179{bottom:560.639000pt;}
.y15_c00179{bottom:560.639573pt;}
.y13_c00179{bottom:613.439947pt;}
.y12_c00179{bottom:640.319867pt;}
.y11_c00179{bottom:667.520507pt;}
.y10_c00179{bottom:720.319333pt;}
.yf_c00179{bottom:747.199893pt;}
.ye_c00179{bottom:773.759640pt;}
.yd_c00179{bottom:800.639573pt;}
.yc_c00179{bottom:827.200160pt;}
.yb_c00179{bottom:854.080080pt;}
.ya_c00179{bottom:854.080400pt;}
.y9_c00179{bottom:880.319987pt;}
.y8_c00179{bottom:906.559573pt;}
.y7_c00179{bottom:932.799320pt;}
.y6_c00179{bottom:932.799333pt;}
.y5_c00179{bottom:959.040533pt;}
.y3_c00179{bottom:959.359707pt;}
.y4_c00179{bottom:959.359867pt;}
.y2_c00179{bottom:986.239627pt;}
.y1_c00179{bottom:1013.119547pt;}
.h4_c00179{height:63.968750pt;}
.h9_c00179{height:65.359375pt;}
.h12_c00179{height:65.429688pt;}
.h6_c00179{height:66.738281pt;}
.hd_c00179{height:67.392578pt;}
.h11_c00179{height:67.859375pt;}
.h1_c00179{height:68.701172pt;}
.h7_c00179{height:69.355469pt;}
.ha_c00179{height:69.531250pt;}
.h5_c00179{height:70.009766pt;}
.he_c00179{height:70.664062pt;}
.hc_c00179{height:71.156250pt;}
.h8_c00179{height:71.218750pt;}
.h3_c00179{height:71.318359pt;}
.h2_c00179{height:71.972656pt;}
.h10_c00179{height:72.562500pt;}
.hb_c00179{height:73.132813pt;}
.hf_c00179{height:73.281250pt;}
.h0_c00179{height:1122.666667pt;}
.w0_c00179{width:793.333333pt;}
.x0_c00179{left:0.000000pt;}
.x9_c00179{left:125.760400pt;}
.x4_c00179{left:126.718693pt;}
.x1_c00179{left:128.318813pt;}
.xd_c00179{left:145.918920pt;}
.x10_c00179{left:146.879867pt;}
.x1d_c00179{left:173.439213pt;}
.x22_c00179{left:175.039027pt;}
.x27_c00179{left:193.599587pt;}
.x11_c00179{left:199.678667pt;}
.x20_c00179{left:203.198667pt;}
.x12_c00179{left:220.479453pt;}
.x21_c00179{left:226.558533pt;}
.xe_c00179{left:237.758787pt;}
.x13_c00179{left:244.798787pt;}
.xf_c00179{left:249.919867pt;}
.x1e_c00179{left:272.639587pt;}
.x28_c00179{left:281.919453pt;}
.x25_c00179{left:297.599067pt;}
.x14_c00179{left:309.439453pt;}
.x1f_c00179{left:310.719720pt;}
.x26_c00179{left:317.438920pt;}
.x15_c00179{left:327.358933pt;}
.x34_c00179{left:338.239720pt;}
.x2e_c00179{left:343.678667pt;}
.x2f_c00179{left:359.679200pt;}
.x30_c00179{left:361.599613pt;}
.x29_c00179{left:375.358933pt;}
.x35_c00179{left:381.118693pt;}
.x16_c00179{left:409.918907pt;}
.x2a_c00179{left:416.318813pt;}
.x5_c00179{left:422.718787pt;}
.x23_c00179{left:425.919480pt;}
.x24_c00179{left:447.039587pt;}
.x31_c00179{left:455.679200pt;}
.x6_c00179{left:456.959467pt;}
.x7_c00179{left:479.359867pt;}
.x2b_c00179{left:481.599573pt;}
.x32_c00179{left:495.999067pt;}
.x33_c00179{left:508.479453pt;}
.x2c_c00179{left:517.119187pt;}
.x2d_c00179{left:529.918907pt;}
.x8_c00179{left:530.879840pt;}
.x17_c00179{left:539.198693pt;}
.xb_c00179{left:544.639200pt;}
.x1b_c00179{left:552.638707pt;}
.x18_c00179{left:563.198693pt;}
.xc_c00179{left:564.159707pt;}
.x1c_c00179{left:566.718787pt;}
.x2_c00179{left:623.679200pt;}
.x3_c00179{left:637.119187pt;}
.x19_c00179{left:663.358933pt;}
.x1a_c00179{left:683.838947pt;}
.xa_c00179{left:687.999027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4418be410bb50d3594529ae3.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_5bfae8dce61c174955b7544d.woff2')format("woff");}.ff2_c00180{font-family:ff2_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;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_c429bb0a3993b895fe44442d.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_80e3c35ca41f0fee9522afd6.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_a3780c83f980dba2f9271cf7.woff2')format("woff");}.ff5_c00180{font-family:ff5_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:ff6_c00180;src:url('chunks/assets/font_6b91bc1efe1fb463db94996f.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m44_c00180{transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174603,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{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);}
.m34_c00180{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m23_c00180{transform:matrix(0.196338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196338,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m22_c00180{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m24_c00180{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m3d_c00180{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m2d_c00180{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m20_c00180{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m38_c00180{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m36_c00180{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);}
.m41_c00180{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m1e_c00180{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m3b_c00180{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m0_c00180{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m28_c00180{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m30_c00180{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m42_c00180{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m39_c00180{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m3e_c00180{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.273196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273196,0.000000,0.000000,0.250000,0,0);}
.m3a_c00180{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.m2a_c00180{transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(0.449742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449742,0.000000,0.000000,0.250000,0,0);}
.m1b_c00180{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_c00180{vertical-align:0.000000px;}
.ls23_c00180{letter-spacing:-8.914500px;}
.ls37_c00180{letter-spacing:-8.235473px;}
.ls22_c00180{letter-spacing:-7.426125px;}
.ls3c_c00180{letter-spacing:-6.998250px;}
.ls2d_c00180{letter-spacing:-6.547200px;}
.ls16_c00180{letter-spacing:-6.229350px;}
.ls13_c00180{letter-spacing:-6.113250px;}
.ls19_c00180{letter-spacing:-6.058875px;}
.lse_c00180{letter-spacing:-5.945625px;}
.ls3e_c00180{letter-spacing:-5.612550px;}
.ls2_c00180{letter-spacing:-5.196713px;}
.ls26_c00180{letter-spacing:-5.129018px;}
.ls10_c00180{letter-spacing:-5.109375px;}
.ls6_c00180{letter-spacing:-4.680578px;}
.ls25_c00180{letter-spacing:-4.578525px;}
.lsd_c00180{letter-spacing:-4.456463px;}
.ls24_c00180{letter-spacing:-4.418663px;}
.lsc_c00180{letter-spacing:-4.410975px;}
.ls1b_c00180{letter-spacing:-4.334498px;}
.ls29_c00180{letter-spacing:-4.218953px;}
.ls2a_c00180{letter-spacing:-3.936000px;}
.lsa_c00180{letter-spacing:-3.823950px;}
.ls33_c00180{letter-spacing:-3.822000px;}
.ls31_c00180{letter-spacing:-3.748320px;}
.ls9_c00180{letter-spacing:-3.717000px;}
.ls36_c00180{letter-spacing:-3.694950px;}
.lsb_c00180{letter-spacing:-3.680850px;}
.ls38_c00180{letter-spacing:-3.580800px;}
.ls3d_c00180{letter-spacing:-3.505500px;}
.ls39_c00180{letter-spacing:-3.229800px;}
.ls1d_c00180{letter-spacing:-3.119220px;}
.ls17_c00180{letter-spacing:-3.110250px;}
.ls41_c00180{letter-spacing:-3.096000px;}
.ls15_c00180{letter-spacing:-3.052500px;}
.ls3_c00180{letter-spacing:-2.968875px;}
.ls34_c00180{letter-spacing:-2.745495px;}
.ls8_c00180{letter-spacing:-2.742675px;}
.ls40_c00180{letter-spacing:-2.442825px;}
.ls11_c00180{letter-spacing:-2.315790px;}
.ls43_c00180{letter-spacing:-2.250000px;}
.ls1_c00180{letter-spacing:-2.229413px;}
.ls3b_c00180{letter-spacing:-1.684800px;}
.ls1f_c00180{letter-spacing:-1.661625px;}
.ls28_c00180{letter-spacing:-1.604250px;}
.ls2c_c00180{letter-spacing:-1.602248px;}
.ls21_c00180{letter-spacing:-1.594950px;}
.ls3a_c00180{letter-spacing:-1.559250px;}
.ls2e_c00180{letter-spacing:-1.501058px;}
.ls0_c00180{letter-spacing:-1.489163px;}
.ls2f_c00180{letter-spacing:-1.038375px;}
.ls27_c00180{letter-spacing:-0.994500px;}
.lsf_c00180{letter-spacing:-0.831668px;}
.ls2b_c00180{letter-spacing:-0.799800px;}
.ls4_c00180{letter-spacing:-0.740250px;}
.ls5_c00180{letter-spacing:0.000000px;}
.ls1e_c00180{letter-spacing:0.421950px;}
.ls12_c00180{letter-spacing:0.756000px;}
.ls30_c00180{letter-spacing:0.799800px;}
.ls3f_c00180{letter-spacing:1.604250px;}
.ls1a_c00180{letter-spacing:2.464875px;}
.ls7_c00180{letter-spacing:2.937600px;}
.ls35_c00180{letter-spacing:3.159450px;}
.ls18_c00180{letter-spacing:5.110875px;}
.ls42_c00180{letter-spacing:5.367600px;}
.ls20_c00180{letter-spacing:7.306050px;}
.ls1c_c00180{letter-spacing:7.648883px;}
.ls14_c00180{letter-spacing:7.897500px;}
.ls32_c00180{letter-spacing:10.757280px;}
.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;}
._18_c00180{margin-left:-9.329141px;}
._17_c00180{margin-left:-7.512601px;}
._16_c00180{margin-left:-5.552603px;}
._d_c00180{margin-left:-4.290389px;}
._f_c00180{margin-left:-3.228037px;}
._e_c00180{margin-left:-1.416296px;}
._b_c00180{width:1.110316px;}
._10_c00180{width:3.188810px;}
._12_c00180{width:4.291518px;}
._a_c00180{width:5.356144px;}
._c_c00180{width:6.606679px;}
._9_c00180{width:7.720650px;}
._11_c00180{width:8.926758px;}
._14_c00180{width:10.031026px;}
._8_c00180{width:11.588256px;}
._6_c00180{width:12.938268px;}
._4_c00180{width:14.221448px;}
._3_c00180{width:15.278986px;}
._13_c00180{width:17.256190px;}
._15_c00180{width:18.413488px;}
._0_c00180{width:19.524770px;}
._1_c00180{width:20.962002px;}
._7_c00180{width:23.450814px;}
._5_c00180{width:27.159359px;}
._2_c00180{width:28.598672px;}
._19_c00180{width:117.933236px;}
.fc0_c00180{color:transparent;}
.fs1c_c00180{font-size:40.500000px;}
.fs22_c00180{font-size:41.250000px;}
.fs20_c00180{font-size:42.000000px;}
.fs15_c00180{font-size:42.750000px;}
.fs16_c00180{font-size:44.250000px;}
.fs1d_c00180{font-size:45.000000px;}
.fs1b_c00180{font-size:45.750000px;}
.fs17_c00180{font-size:46.500000px;}
.fs19_c00180{font-size:47.250000px;}
.fs1a_c00180{font-size:48.000000px;}
.fs18_c00180{font-size:48.750000px;}
.fs1f_c00180{font-size:50.250000px;}
.fs1e_c00180{font-size:51.750000px;}
.fs21_c00180{font-size:52.500000px;}
.fse_c00180{font-size:60.000000px;}
.fs10_c00180{font-size:66.750000px;}
.fs3_c00180{font-size:72.000000px;}
.fs4_c00180{font-size:72.750000px;}
.fs14_c00180{font-size:73.500000px;}
.fsd_c00180{font-size:75.000000px;}
.fs1_c00180{font-size:75.750000px;}
.fs2_c00180{font-size:77.250000px;}
.fs11_c00180{font-size:78.000000px;}
.fs0_c00180{font-size:78.750000px;}
.fs6_c00180{font-size:79.500000px;}
.fs5_c00180{font-size:80.250000px;}
.fsb_c00180{font-size:81.000000px;}
.fs9_c00180{font-size:81.750000px;}
.fsc_c00180{font-size:82.500000px;}
.fs8_c00180{font-size:83.250000px;}
.fsa_c00180{font-size:84.000000px;}
.fs7_c00180{font-size:84.750000px;}
.fs13_c00180{font-size:97.632540px;}
.fsf_c00180{font-size:101.250000px;}
.fs12_c00180{font-size:145.500000px;}
.y0_c00180{bottom:0.000000px;}
.y28_c00180{bottom:165.239850px;}
.y27_c00180{bottom:179.639700px;}
.y26_c00180{bottom:194.759535px;}
.y24_c00180{bottom:273.239130px;}
.y25_c00180{bottom:273.239850px;}
.y22_c00180{bottom:302.399685px;}
.y23_c00180{bottom:302.400285px;}
.y21_c00180{bottom:332.279415px;}
.y20_c00180{bottom:361.798950px;}
.y1f_c00180{bottom:361.799955px;}
.y1e_c00180{bottom:391.679670px;}
.y1d_c00180{bottom:421.560285px;}
.y1c_c00180{bottom:431.279850px;}
.y1b_c00180{bottom:452.159415px;}
.y1a_c00180{bottom:482.039985px;}
.y19_c00180{bottom:541.440930px;}
.y18_c00180{bottom:600.479685px;}
.y17_c00180{bottom:600.479775px;}
.y16_c00180{bottom:630.719700px;}
.y15_c00180{bottom:660.239220px;}
.y14_c00180{bottom:660.240255px;}
.y13_c00180{bottom:690.119985px;}
.y12_c00180{bottom:690.120165px;}
.y11_c00180{bottom:719.639700px;}
.y10_c00180{bottom:751.319820px;}
.yf_c00180{bottom:810.360150px;}
.ye_c00180{bottom:870.119595px;}
.yc_c00180{bottom:890.999970px;}
.yd_c00180{bottom:891.000000px;}
.yb_c00180{bottom:912.238770px;}
.ya_c00180{bottom:933.479190px;}
.y9_c00180{bottom:933.479325px;}
.y8_c00180{bottom:955.440600px;}
.y7_c00180{bottom:1015.560240px;}
.y6_c00180{bottom:1015.560420px;}
.y5_c00180{bottom:1045.079955px;}
.y3_c00180{bottom:1074.958905px;}
.y4_c00180{bottom:1074.958920px;}
.y2_c00180{bottom:1104.480240px;}
.y1_c00180{bottom:1134.720150px;}
.h24_c00180{height:42.240234px;}
.h2a_c00180{height:43.022461px;}
.h28_c00180{height:43.804688px;}
.h1d_c00180{height:44.586914px;}
.h23_c00180{height:46.107422px;}
.h1e_c00180{height:46.151367px;}
.h1f_c00180{height:46.863281px;}
.h25_c00180{height:46.933594px;}
.h21_c00180{height:47.619141px;}
.h20_c00180{height:48.178711px;}
.h22_c00180{height:48.375000px;}
.h2b_c00180{height:49.130859px;}
.h27_c00180{height:49.661133px;}
.h26_c00180{height:51.143555px;}
.h29_c00180{height:51.884766px;}
.h13_c00180{height:62.578125px;}
.h15_c00180{height:65.478882px;}
.h4_c00180{height:70.664062px;}
.h5_c00180{height:71.400146px;}
.he_c00180{height:72.562500px;}
.h10_c00180{height:74.121094px;}
.h2_c00180{height:74.344482px;}
.h8_c00180{height:75.816650px;}
.h19_c00180{height:75.875977px;}
.h1c_c00180{height:76.658203px;}
.h1_c00180{height:77.288818px;}
.h12_c00180{height:77.827148px;}
.h3_c00180{height:77.853516px;}
.h7_c00180{height:78.024902px;}
.h16_c00180{height:78.609375px;}
.h6_c00180{height:78.760986px;}
.h18_c00180{height:79.365234px;}
.hd_c00180{height:79.497070px;}
.h1a_c00180{height:80.121094px;}
.hb_c00180{height:80.233154px;}
.hf_c00180{height:80.969238px;}
.ha_c00180{height:81.705322px;}
.h11_c00180{height:82.388672px;}
.h9_c00180{height:83.177490px;}
.hc_c00180{height:87.609375px;}
.h1b_c00180{height:95.820999px;}
.h14_c00180{height:105.600586px;}
.h17_c00180{height:142.729248px;}
.h0_c00180{height:1263.000000px;}
.w0_c00180{width:892.500000px;}
.x0_c00180{left:0.000000px;}
.x36_c00180{left:138.962295px;}
.x15_c00180{left:140.038530px;}
.x1_c00180{left:141.838950px;}
.x8_c00180{left:155.518665px;}
.x24_c00180{left:164.878950px;}
.x49_c00180{left:174.598500px;}
.x3b_c00180{left:181.080000px;}
.x9_c00180{left:184.319850px;}
.x16_c00180{left:186.119415px;}
.xf_c00180{left:195.117570px;}
.xe_c00180{left:196.918395px;}
.x4a_c00180{left:214.559685px;}
.xa_c00180{left:220.319250px;}
.x4b_c00180{left:230.759100px;}
.x27_c00180{left:235.439250px;}
.xb_c00180{left:253.439685px;}
.x28_c00180{left:255.598500px;}
.x33_c00180{left:259.558635px;}
.x34_c00180{left:273.239850px;}
.x4c_c00180{left:281.519100px;}
.x3c_c00180{left:287.639700px;}
.x17_c00180{left:290.518635px;}
.x4d_c00180{left:296.639100px;}
.x29_c00180{left:305.279250px;}
.x37_c00180{left:309.239250px;}
.x54_c00180{left:317.879535px;}
.x2f_c00180{left:326.158785px;}
.x3d_c00180{left:330.118785px;}
.xc_c00180{left:335.878350px;}
.x30_c00180{left:342.359850px;}
.x38_c00180{left:345.599700px;}
.x4e_c00180{left:350.639100px;}
.xd_c00180{left:361.439685px;}
.x55_c00180{left:364.679700px;}
.x3e_c00180{left:375.119385px;}
.x3f_c00180{left:388.439715px;}
.x4f_c00180{left:391.679670px;}
.x2a_c00180{left:392.759085px;}
.x2b_c00180{left:408.599070px;}
.x6_c00180{left:411.118785px;}
.x7_c00180{left:424.080000px;}
.x40_c00180{left:437.039385px;}
.x56_c00180{left:440.279250px;}
.x22_c00180{left:447.479235px;}
.x57_c00180{left:454.319820px;}
.x31_c00180{left:456.839535px;}
.x23_c00180{left:464.039385px;}
.x2c_c00180{left:478.080000px;}
.x41_c00180{left:479.879520px;}
.x32_c00180{left:482.039985px;}
.x50_c00180{left:483.839535px;}
.x20_c00180{left:491.039385px;}
.x18_c00180{left:493.199850px;}
.x10_c00180{left:499.679670px;}
.x21_c00180{left:509.399235px;}
.x51_c00180{left:512.279850px;}
.x11_c00180{left:514.799520px;}
.x13_c00180{left:519.838950px;}
.x39_c00180{left:523.078770px;}
.x19_c00180{left:527.759085px;}
.x35_c00180{left:541.438620px;}
.x3a_c00180{left:547.918350px;}
.x2d_c00180{left:550.078770px;}
.x42_c00180{left:553.318770px;}
.x43_c00180{left:566.639100px;}
.x58_c00180{left:569.158770px;}
.x52_c00180{left:573.479685px;}
.x59_c00180{left:593.279850px;}
.x25_c00180{left:596.158770px;}
.x1e_c00180{left:606.239220px;}
.x44_c00180{left:610.199385px;}
.x26_c00180{left:611.639700px;}
.x1f_c00180{left:620.279850px;}
.x1a_c00180{left:640.439250px;}
.x53_c00180{left:644.758530px;}
.x45_c00180{left:649.438620px;}
.x2_c00180{left:660.959385px;}
.x1b_c00180{left:666.359850px;}
.x3_c00180{left:674.639100px;}
.x46_c00180{left:707.759535px;}
.x4_c00180{left:722.159370px;}
.x1c_c00180{left:736.918350px;}
.x47_c00180{left:737.999355px;}
.x5_c00180{left:747.719100px;}
.x12_c00180{left:748.798560px;}
.x2e_c00180{left:756.718545px;}
.x14_c00180{left:760.319235px;}
.x48_c00180{left:771.120030px;}
.x1d_c00180{left:773.639655px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls23_c00180{letter-spacing:-7.924000pt;}
.ls37_c00180{letter-spacing:-7.320420pt;}
.ls22_c00180{letter-spacing:-6.601000pt;}
.ls3c_c00180{letter-spacing:-6.220667pt;}
.ls2d_c00180{letter-spacing:-5.819733pt;}
.ls16_c00180{letter-spacing:-5.537200pt;}
.ls13_c00180{letter-spacing:-5.434000pt;}
.ls19_c00180{letter-spacing:-5.385667pt;}
.lse_c00180{letter-spacing:-5.285000pt;}
.ls3e_c00180{letter-spacing:-4.988933pt;}
.ls2_c00180{letter-spacing:-4.619300pt;}
.ls26_c00180{letter-spacing:-4.559127pt;}
.ls10_c00180{letter-spacing:-4.541667pt;}
.ls6_c00180{letter-spacing:-4.160513pt;}
.ls25_c00180{letter-spacing:-4.069800pt;}
.lsd_c00180{letter-spacing:-3.961300pt;}
.ls24_c00180{letter-spacing:-3.927700pt;}
.lsc_c00180{letter-spacing:-3.920867pt;}
.ls1b_c00180{letter-spacing:-3.852887pt;}
.ls29_c00180{letter-spacing:-3.750180pt;}
.ls2a_c00180{letter-spacing:-3.498667pt;}
.lsa_c00180{letter-spacing:-3.399067pt;}
.ls33_c00180{letter-spacing:-3.397333pt;}
.ls31_c00180{letter-spacing:-3.331840pt;}
.ls9_c00180{letter-spacing:-3.304000pt;}
.ls36_c00180{letter-spacing:-3.284400pt;}
.lsb_c00180{letter-spacing:-3.271867pt;}
.ls38_c00180{letter-spacing:-3.182933pt;}
.ls3d_c00180{letter-spacing:-3.116000pt;}
.ls39_c00180{letter-spacing:-2.870933pt;}
.ls1d_c00180{letter-spacing:-2.772640pt;}
.ls17_c00180{letter-spacing:-2.764667pt;}
.ls41_c00180{letter-spacing:-2.752000pt;}
.ls15_c00180{letter-spacing:-2.713333pt;}
.ls3_c00180{letter-spacing:-2.639000pt;}
.ls34_c00180{letter-spacing:-2.440440pt;}
.ls8_c00180{letter-spacing:-2.437933pt;}
.ls40_c00180{letter-spacing:-2.171400pt;}
.ls11_c00180{letter-spacing:-2.058480pt;}
.ls43_c00180{letter-spacing:-2.000000pt;}
.ls1_c00180{letter-spacing:-1.981700pt;}
.ls3b_c00180{letter-spacing:-1.497600pt;}
.ls1f_c00180{letter-spacing:-1.477000pt;}
.ls28_c00180{letter-spacing:-1.426000pt;}
.ls2c_c00180{letter-spacing:-1.424220pt;}
.ls21_c00180{letter-spacing:-1.417733pt;}
.ls3a_c00180{letter-spacing:-1.386000pt;}
.ls2e_c00180{letter-spacing:-1.334273pt;}
.ls0_c00180{letter-spacing:-1.323700pt;}
.ls2f_c00180{letter-spacing:-0.923000pt;}
.ls27_c00180{letter-spacing:-0.884000pt;}
.lsf_c00180{letter-spacing:-0.739260pt;}
.ls2b_c00180{letter-spacing:-0.710933pt;}
.ls4_c00180{letter-spacing:-0.658000pt;}
.ls5_c00180{letter-spacing:0.000000pt;}
.ls1e_c00180{letter-spacing:0.375067pt;}
.ls12_c00180{letter-spacing:0.672000pt;}
.ls30_c00180{letter-spacing:0.710933pt;}
.ls3f_c00180{letter-spacing:1.426000pt;}
.ls1a_c00180{letter-spacing:2.191000pt;}
.ls7_c00180{letter-spacing:2.611200pt;}
.ls35_c00180{letter-spacing:2.808400pt;}
.ls18_c00180{letter-spacing:4.543000pt;}
.ls42_c00180{letter-spacing:4.771200pt;}
.ls20_c00180{letter-spacing:6.494267pt;}
.ls1c_c00180{letter-spacing:6.799007pt;}
.ls14_c00180{letter-spacing:7.020000pt;}
.ls32_c00180{letter-spacing:9.562027pt;}
.ws0_c00180{word-spacing:0.000000pt;}
._18_c00180{margin-left:-8.292570pt;}
._17_c00180{margin-left:-6.677868pt;}
._16_c00180{margin-left:-4.935647pt;}
._d_c00180{margin-left:-3.813679pt;}
._f_c00180{margin-left:-2.869366pt;}
._e_c00180{margin-left:-1.258930pt;}
._b_c00180{width:0.986947pt;}
._10_c00180{width:2.834498pt;}
._12_c00180{width:3.814683pt;}
._a_c00180{width:4.761017pt;}
._c_c00180{width:5.872604pt;}
._9_c00180{width:6.862800pt;}
._11_c00180{width:7.934896pt;}
._14_c00180{width:8.916468pt;}
._8_c00180{width:10.300672pt;}
._6_c00180{width:11.500683pt;}
._4_c00180{width:12.641287pt;}
._3_c00180{width:13.581321pt;}
._13_c00180{width:15.338836pt;}
._15_c00180{width:16.367545pt;}
._0_c00180{width:17.355351pt;}
._1_c00180{width:18.632891pt;}
._7_c00180{width:20.845168pt;}
._5_c00180{width:24.141653pt;}
._2_c00180{width:25.421042pt;}
._19_c00180{width:104.829543pt;}
.fs1c_c00180{font-size:36.000000pt;}
.fs22_c00180{font-size:36.666667pt;}
.fs20_c00180{font-size:37.333333pt;}
.fs15_c00180{font-size:38.000000pt;}
.fs16_c00180{font-size:39.333333pt;}
.fs1d_c00180{font-size:40.000000pt;}
.fs1b_c00180{font-size:40.666667pt;}
.fs17_c00180{font-size:41.333333pt;}
.fs19_c00180{font-size:42.000000pt;}
.fs1a_c00180{font-size:42.666667pt;}
.fs18_c00180{font-size:43.333333pt;}
.fs1f_c00180{font-size:44.666667pt;}
.fs1e_c00180{font-size:46.000000pt;}
.fs21_c00180{font-size:46.666667pt;}
.fse_c00180{font-size:53.333333pt;}
.fs10_c00180{font-size:59.333333pt;}
.fs3_c00180{font-size:64.000000pt;}
.fs4_c00180{font-size:64.666667pt;}
.fs14_c00180{font-size:65.333333pt;}
.fsd_c00180{font-size:66.666667pt;}
.fs1_c00180{font-size:67.333333pt;}
.fs2_c00180{font-size:68.666667pt;}
.fs11_c00180{font-size:69.333333pt;}
.fs0_c00180{font-size:70.000000pt;}
.fs6_c00180{font-size:70.666667pt;}
.fs5_c00180{font-size:71.333333pt;}
.fsb_c00180{font-size:72.000000pt;}
.fs9_c00180{font-size:72.666667pt;}
.fsc_c00180{font-size:73.333333pt;}
.fs8_c00180{font-size:74.000000pt;}
.fsa_c00180{font-size:74.666667pt;}
.fs7_c00180{font-size:75.333333pt;}
.fs13_c00180{font-size:86.784480pt;}
.fsf_c00180{font-size:90.000000pt;}
.fs12_c00180{font-size:129.333333pt;}
.y0_c00180{bottom:0.000000pt;}
.y28_c00180{bottom:146.879867pt;}
.y27_c00180{bottom:159.679733pt;}
.y26_c00180{bottom:173.119587pt;}
.y24_c00180{bottom:242.879227pt;}
.y25_c00180{bottom:242.879867pt;}
.y22_c00180{bottom:268.799720pt;}
.y23_c00180{bottom:268.800253pt;}
.y21_c00180{bottom:295.359480pt;}
.y20_c00180{bottom:321.599067pt;}
.y1f_c00180{bottom:321.599960pt;}
.y1e_c00180{bottom:348.159707pt;}
.y1d_c00180{bottom:374.720253pt;}
.y1c_c00180{bottom:383.359867pt;}
.y1b_c00180{bottom:401.919480pt;}
.y1a_c00180{bottom:428.479987pt;}
.y19_c00180{bottom:481.280827pt;}
.y18_c00180{bottom:533.759720pt;}
.y17_c00180{bottom:533.759800pt;}
.y16_c00180{bottom:560.639733pt;}
.y15_c00180{bottom:586.879307pt;}
.y14_c00180{bottom:586.880227pt;}
.y13_c00180{bottom:613.439987pt;}
.y12_c00180{bottom:613.440147pt;}
.y11_c00180{bottom:639.679733pt;}
.y10_c00180{bottom:667.839840pt;}
.yf_c00180{bottom:720.320133pt;}
.ye_c00180{bottom:773.439640pt;}
.yc_c00180{bottom:791.999973pt;}
.yd_c00180{bottom:792.000000pt;}
.yb_c00180{bottom:810.878907pt;}
.ya_c00180{bottom:829.759280pt;}
.y9_c00180{bottom:829.759400pt;}
.y8_c00180{bottom:849.280533pt;}
.y7_c00180{bottom:902.720213pt;}
.y6_c00180{bottom:902.720373pt;}
.y5_c00180{bottom:928.959960pt;}
.y3_c00180{bottom:955.519027pt;}
.y4_c00180{bottom:955.519040pt;}
.y2_c00180{bottom:981.760213pt;}
.y1_c00180{bottom:1008.640133pt;}
.h24_c00180{height:37.546875pt;}
.h2a_c00180{height:38.242188pt;}
.h28_c00180{height:38.937500pt;}
.h1d_c00180{height:39.632812pt;}
.h23_c00180{height:40.984375pt;}
.h1e_c00180{height:41.023438pt;}
.h1f_c00180{height:41.656250pt;}
.h25_c00180{height:41.718750pt;}
.h21_c00180{height:42.328125pt;}
.h20_c00180{height:42.825521pt;}
.h22_c00180{height:43.000000pt;}
.h2b_c00180{height:43.671875pt;}
.h27_c00180{height:44.143229pt;}
.h26_c00180{height:45.460938pt;}
.h29_c00180{height:46.119792pt;}
.h13_c00180{height:55.625000pt;}
.h15_c00180{height:58.203451pt;}
.h4_c00180{height:62.812500pt;}
.h5_c00180{height:63.466797pt;}
.he_c00180{height:64.500000pt;}
.h10_c00180{height:65.885417pt;}
.h2_c00180{height:66.083984pt;}
.h8_c00180{height:67.392578pt;}
.h19_c00180{height:67.445312pt;}
.h1c_c00180{height:68.140625pt;}
.h1_c00180{height:68.701172pt;}
.h12_c00180{height:69.179688pt;}
.h3_c00180{height:69.203125pt;}
.h7_c00180{height:69.355469pt;}
.h16_c00180{height:69.875000pt;}
.h6_c00180{height:70.009766pt;}
.h18_c00180{height:70.546875pt;}
.hd_c00180{height:70.664062pt;}
.h1a_c00180{height:71.218750pt;}
.hb_c00180{height:71.318359pt;}
.hf_c00180{height:71.972656pt;}
.ha_c00180{height:72.626953pt;}
.h11_c00180{height:73.234375pt;}
.h9_c00180{height:73.935547pt;}
.hc_c00180{height:77.875000pt;}
.h1b_c00180{height:85.174221pt;}
.h14_c00180{height:93.867188pt;}
.h17_c00180{height:126.870443pt;}
.h0_c00180{height:1122.666667pt;}
.w0_c00180{width:793.333333pt;}
.x0_c00180{left:0.000000pt;}
.x36_c00180{left:123.522040pt;}
.x15_c00180{left:124.478693pt;}
.x1_c00180{left:126.079067pt;}
.x8_c00180{left:138.238813pt;}
.x24_c00180{left:146.559067pt;}
.x49_c00180{left:155.198667pt;}
.x3b_c00180{left:160.960000pt;}
.x9_c00180{left:163.839867pt;}
.x16_c00180{left:165.439480pt;}
.xf_c00180{left:173.437840pt;}
.xe_c00180{left:175.038573pt;}
.x4a_c00180{left:190.719720pt;}
.xa_c00180{left:195.839333pt;}
.x4b_c00180{left:205.119200pt;}
.x27_c00180{left:209.279333pt;}
.xb_c00180{left:225.279720pt;}
.x28_c00180{left:227.198667pt;}
.x33_c00180{left:230.718787pt;}
.x34_c00180{left:242.879867pt;}
.x4c_c00180{left:250.239200pt;}
.x3c_c00180{left:255.679733pt;}
.x17_c00180{left:258.238787pt;}
.x4d_c00180{left:263.679200pt;}
.x29_c00180{left:271.359333pt;}
.x37_c00180{left:274.879333pt;}
.x54_c00180{left:282.559587pt;}
.x2f_c00180{left:289.918920pt;}
.x3d_c00180{left:293.438920pt;}
.xc_c00180{left:298.558533pt;}
.x30_c00180{left:304.319867pt;}
.x38_c00180{left:307.199733pt;}
.x4e_c00180{left:311.679200pt;}
.xd_c00180{left:321.279720pt;}
.x55_c00180{left:324.159733pt;}
.x3e_c00180{left:333.439453pt;}
.x3f_c00180{left:345.279747pt;}
.x4f_c00180{left:348.159707pt;}
.x2a_c00180{left:349.119187pt;}
.x2b_c00180{left:363.199173pt;}
.x6_c00180{left:365.438920pt;}
.x7_c00180{left:376.960000pt;}
.x40_c00180{left:388.479453pt;}
.x56_c00180{left:391.359333pt;}
.x22_c00180{left:397.759320pt;}
.x57_c00180{left:403.839840pt;}
.x31_c00180{left:406.079587pt;}
.x23_c00180{left:412.479453pt;}
.x2c_c00180{left:424.960000pt;}
.x41_c00180{left:426.559573pt;}
.x32_c00180{left:428.479987pt;}
.x50_c00180{left:430.079587pt;}
.x20_c00180{left:436.479453pt;}
.x18_c00180{left:438.399867pt;}
.x10_c00180{left:444.159707pt;}
.x21_c00180{left:452.799320pt;}
.x51_c00180{left:455.359867pt;}
.x11_c00180{left:457.599573pt;}
.x13_c00180{left:462.079067pt;}
.x39_c00180{left:464.958907pt;}
.x19_c00180{left:469.119187pt;}
.x35_c00180{left:481.278773pt;}
.x3a_c00180{left:487.038533pt;}
.x2d_c00180{left:488.958907pt;}
.x42_c00180{left:491.838907pt;}
.x43_c00180{left:503.679200pt;}
.x58_c00180{left:505.918907pt;}
.x52_c00180{left:509.759720pt;}
.x59_c00180{left:527.359867pt;}
.x25_c00180{left:529.918907pt;}
.x1e_c00180{left:538.879307pt;}
.x44_c00180{left:542.399453pt;}
.x26_c00180{left:543.679733pt;}
.x1f_c00180{left:551.359867pt;}
.x1a_c00180{left:569.279333pt;}
.x53_c00180{left:573.118693pt;}
.x45_c00180{left:577.278773pt;}
.x2_c00180{left:587.519453pt;}
.x1b_c00180{left:592.319867pt;}
.x3_c00180{left:599.679200pt;}
.x46_c00180{left:629.119587pt;}
.x4_c00180{left:641.919440pt;}
.x1c_c00180{left:655.038533pt;}
.x47_c00180{left:655.999427pt;}
.x5_c00180{left:664.639200pt;}
.x12_c00180{left:665.598720pt;}
.x2e_c00180{left:672.638707pt;}
.x14_c00180{left:675.839320pt;}
.x48_c00180{left:685.440027pt;}
.x1d_c00180{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_927c33d31fd1d914fa90fbd6.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_9b52d132762c7c8fa8b0f374.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_87f27a29c5362568cae49383.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_1b406b6bee7207e166f4edc7.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00181;src:url('chunks/assets/font_d0fa332c004bc16064950e96.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.281250;font-style:normal;font-weight: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_c00181;src:url('chunks/assets/font_aa855ca66a934c8aee1ccd7f.woff2')format("woff");}.ff7_c00181{font-family:ff7_c00181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00181{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m1f_c00181{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m17_c00181{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m26_c00181{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m21_c00181{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1d_c00181{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m14_c00181{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m1e_c00181{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1b_c00181{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_c00181{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_c00181{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m20_c00181{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.md_c00181{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m23_c00181{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m15_c00181{transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);}
.m1c_c00181{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m22_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c00181{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m24_c00181{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m25_c00181{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m1a_c00181{transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414286,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls1d_c00181{letter-spacing:-18.349403px;}
.ls25_c00181{letter-spacing:-15.164078px;}
.ls12_c00181{letter-spacing:-14.082750px;}
.lsc_c00181{letter-spacing:-10.961100px;}
.ls1f_c00181{letter-spacing:-10.191900px;}
.ls13_c00181{letter-spacing:-8.914500px;}
.ls11_c00181{letter-spacing:-8.175038px;}
.lsd_c00181{letter-spacing:-7.426125px;}
.ls9_c00181{letter-spacing:-6.685875px;}
.ls18_c00181{letter-spacing:-6.420000px;}
.ls6_c00181{letter-spacing:-5.945625px;}
.ls1e_c00181{letter-spacing:-5.208000px;}
.lse_c00181{letter-spacing:-5.196713px;}
.ls14_c00181{letter-spacing:-4.543088px;}
.ls10_c00181{letter-spacing:-4.456463px;}
.ls22_c00181{letter-spacing:-4.080000px;}
.ls1c_c00181{letter-spacing:-4.035000px;}
.ls19_c00181{letter-spacing:-4.024200px;}
.ls7_c00181{letter-spacing:-3.717000px;}
.ls8_c00181{letter-spacing:-3.588300px;}
.ls2a_c00181{letter-spacing:-3.575400px;}
.ls26_c00181{letter-spacing:-3.212595px;}
.ls28_c00181{letter-spacing:-3.205125px;}
.ls29_c00181{letter-spacing:-2.971800px;}
.ls4_c00181{letter-spacing:-2.968875px;}
.ls20_c00181{letter-spacing:-2.945250px;}
.ls5_c00181{letter-spacing:-2.229413px;}
.ls24_c00181{letter-spacing:-1.798500px;}
.ls16_c00181{letter-spacing:-1.636200px;}
.ls23_c00181{letter-spacing:-1.530000px;}
.ls15_c00181{letter-spacing:-1.529543px;}
.lsa_c00181{letter-spacing:-1.489163px;}
.lsf_c00181{letter-spacing:-0.740250px;}
.ls3_c00181{letter-spacing:0.000000px;}
.ls2_c00181{letter-spacing:0.740250px;}
.ls1_c00181{letter-spacing:1.489163px;}
.lsb_c00181{letter-spacing:1.606500px;}
.ls17_c00181{letter-spacing:2.935500px;}
.ls21_c00181{letter-spacing:3.502980px;}
.ls0_c00181{letter-spacing:3.787875px;}
.ls27_c00181{letter-spacing:4.456463px;}
.ls1a_c00181{letter-spacing:10.233300px;}
.ls1b_c00181{letter-spacing:12.229875px;}
.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;}
._18_c00181{margin-left:-20.055471px;}
._17_c00181{margin-left:-17.506303px;}
._14_c00181{margin-left:-15.608161px;}
._f_c00181{margin-left:-8.701726px;}
._15_c00181{margin-left:-4.871861px;}
._12_c00181{margin-left:-3.770238px;}
._19_c00181{margin-left:-2.751243px;}
._2_c00181{margin-left:-1.238203px;}
._1_c00181{width:1.340295px;}
._13_c00181{width:2.609552px;}
._0_c00181{width:3.630732px;}
._e_c00181{width:4.704555px;}
._c_c00181{width:5.752554px;}
._3_c00181{width:6.990429px;}
._4_c00181{width:8.284262px;}
._1a_c00181{width:9.483640px;}
._b_c00181{width:10.624534px;}
._d_c00181{width:11.745102px;}
._5_c00181{width:13.005845px;}
._8_c00181{width:14.153797px;}
._9_c00181{width:16.086381px;}
._10_c00181{width:17.915714px;}
._6_c00181{width:19.089475px;}
._1b_c00181{width:20.277159px;}
._a_c00181{width:22.042571px;}
._11_c00181{width:23.579726px;}
._1c_c00181{width:24.586790px;}
._16_c00181{width:25.855571px;}
._7_c00181{width:29.247720px;}
._1d_c00181{width:31.940257px;}
._1e_c00181{width:34.812136px;}
._20_c00181{width:37.514078px;}
._1f_c00181{width:45.480889px;}
.fc0_c00181{color:transparent;}
.fs12_c00181{font-size:43.500000px;}
.fs8_c00181{font-size:57.000000px;}
.fs9_c00181{font-size:57.750000px;}
.fsb_c00181{font-size:60.000000px;}
.fs6_c00181{font-size:71.250000px;}
.fsa_c00181{font-size:74.250000px;}
.fsc_c00181{font-size:75.000000px;}
.fs14_c00181{font-size:75.750000px;}
.fs10_c00181{font-size:76.500000px;}
.fs11_c00181{font-size:78.000000px;}
.fs1_c00181{font-size:78.750000px;}
.fsf_c00181{font-size:79.500000px;}
.fs7_c00181{font-size:80.250000px;}
.fs2_c00181{font-size:81.000000px;}
.fs4_c00181{font-size:81.750000px;}
.fs5_c00181{font-size:82.500000px;}
.fs13_c00181{font-size:83.250000px;}
.fse_c00181{font-size:84.000000px;}
.fs0_c00181{font-size:84.750000px;}
.fs3_c00181{font-size:85.500000px;}
.fsd_c00181{font-size:87.750000px;}
.y0_c00181{bottom:0.000000px;}
.y2e_c00181{bottom:184.679970px;}
.y2f_c00181{bottom:184.680750px;}
.y2d_c00181{bottom:214.559685px;}
.y2c_c00181{bottom:214.560555px;}
.y2a_c00181{bottom:244.439595px;}
.y2b_c00181{bottom:244.440285px;}
.y28_c00181{bottom:273.599970px;}
.y29_c00181{bottom:273.600750px;}
.y27_c00181{bottom:303.479685px;}
.y25_c00181{bottom:332.998875px;}
.y26_c00181{bottom:332.999385px;}
.y24_c00181{bottom:363.240900px;}
.y23_c00181{bottom:363.241200px;}
.y22_c00181{bottom:392.760720px;}
.y21_c00181{bottom:429.119385px;}
.y20_c00181{bottom:429.119775px;}
.y1f_c00181{bottom:482.760225px;}
.y1e_c00181{bottom:512.639940px;}
.y1d_c00181{bottom:542.519670px;}
.y1c_c00181{bottom:542.519850px;}
.y1b_c00181{bottom:572.039385px;}
.y1a_c00181{bottom:572.039400px;}
.y18_c00181{bottom:601.560465px;}
.y19_c00181{bottom:601.560750px;}
.y17_c00181{bottom:630.719520px;}
.y16_c00181{bottom:630.719880px;}
.y15_c00181{bottom:661.320285px;}
.y14_c00181{bottom:661.320555px;}
.y13_c00181{bottom:721.080000px;}
.y11_c00181{bottom:750.240420px;}
.y12_c00181{bottom:750.599670px;}
.y10_c00181{bottom:780.481185px;}
.yf_c00181{bottom:810.360900px;}
.ye_c00181{bottom:810.361770px;}
.yd_c00181{bottom:840.960075px;}
.yc_c00181{bottom:870.839790px;}
.yb_c00181{bottom:900.719520px;}
.ya_c00181{bottom:900.719535px;}
.y8_c00181{bottom:930.240165px;}
.y9_c00181{bottom:930.240870px;}
.y7_c00181{bottom:960.480075px;}
.y6_c00181{bottom:990.359805px;}
.y5_c00181{bottom:1020.240420px;}
.y4_c00181{bottom:1079.639985px;}
.y3_c00181{bottom:1109.519715px;}
.y2_c00181{bottom:1109.519985px;}
.y1_c00181{bottom:1140.120390px;}
.h1c_c00181{height:45.369141px;}
.hc_c00181{height:56.332031px;}
.hd_c00181{height:58.201172px;}
.hf_c00181{height:59.296875px;}
.ha_c00181{height:74.311523px;}
.h1e_c00181{height:74.344482px;}
.h15_c00181{height:75.080566px;}
.h10_c00181{height:75.585938px;}
.h16_c00181{height:76.552734px;}
.h18_c00181{height:77.097656px;}
.h2_c00181{height:77.288818px;}
.he_c00181{height:77.440430px;}
.h17_c00181{height:78.222656px;}
.h14_c00181{height:78.568359px;}
.h11_c00181{height:78.760986px;}
.h8_c00181{height:79.365234px;}
.h3_c00181{height:79.497070px;}
.h1a_c00181{height:80.121094px;}
.h5_c00181{height:80.233154px;}
.hb_c00181{height:80.876953px;}
.h6_c00181{height:80.969238px;}
.h7_c00181{height:81.533203px;}
.h9_c00181{height:81.632812px;}
.h1d_c00181{height:81.705322px;}
.h19_c00181{height:82.388672px;}
.h13_c00181{height:82.441406px;}
.h1_c00181{height:83.177490px;}
.h4_c00181{height:84.498047px;}
.h12_c00181{height:86.078979px;}
.h1b_c00181{height:86.721680px;}
.h0_c00181{height:1263.000000px;}
.w0_c00181{width:892.500000px;}
.x0_c00181{left:0.000000px;}
.x9_c00181{left:139.678710px;}
.x1_c00181{left:140.759565px;}
.xe_c00181{left:141.842910px;}
.x2_c00181{left:155.879565px;}
.x5_c00181{left:166.319250px;}
.x3b_c00181{left:194.759535px;}
.xc_c00181{left:197.279250px;}
.x27_c00181{left:198.719535px;}
.xd_c00181{left:214.559685px;}
.x28_c00181{left:219.599100px;}
.x3c_c00181{left:220.678500px;}
.x2b_c00181{left:224.999400px;}
.xa_c00181{left:227.519100px;}
.xb_c00181{left:242.639100px;}
.x11_c00181{left:252.719535px;}
.x3_c00181{left:261.719100px;}
.x2c_c00181{left:270.359250px;}
.x1a_c00181{left:285.838515px;}
.x12_c00181{left:300.958350px;}
.x1d_c00181{left:306.719535px;}
.x4_c00181{left:311.038950px;}
.x6_c00181{left:333.719535px;}
.x21_c00181{left:347.399235px;}
.x1e_c00181{left:348.478635px;}
.x13_c00181{left:351.000000px;}
.x7_c00181{left:354.599100px;}
.x22_c00181{left:366.838515px;}
.x3d_c00181{left:371.518635px;}
.x41_c00181{left:373.679100px;}
.x14_c00181{left:387.719565px;}
.x42_c00181{left:389.519070px;}
.x3e_c00181{left:392.399820px;}
.x29_c00181{left:423.719100px;}
.x37_c00181{left:440.279250px;}
.x2a_c00181{left:442.078815px;}
.x38_c00181{left:453.958920px;}
.x23_c00181{left:475.919535px;}
.x2d_c00181{left:484.559685px;}
.x15_c00181{left:497.159820px;}
.xf_c00181{left:503.639700px;}
.x24_c00181{left:506.518620px;}
.x25_c00181{left:520.199850px;}
.x10_c00181{left:523.798920px;}
.x2e_c00181{left:536.039985px;}
.x36_c00181{left:539.279850px;}
.x26_c00181{left:542.878920px;}
.x2f_c00181{left:549.358665px;}
.x16_c00181{left:574.918350px;}
.x1f_c00181{left:579.239220px;}
.x20_c00181{left:593.639100px;}
.x17_c00181{left:600.118785px;}
.x34_c00181{left:623.158770px;}
.x3f_c00181{left:631.798920px;}
.x35_c00181{left:645.839535px;}
.x40_c00181{left:646.918950px;}
.x33_c00181{left:653.759535px;}
.x30_c00181{left:664.919535px;}
.x18_c00181{left:668.159370px;}
.x19_c00181{left:683.638545px;}
.x39_c00181{left:695.518620px;}
.x3a_c00181{left:708.838950px;}
.x31_c00181{left:715.679670px;}
.x1b_c00181{left:729.718545px;}
.x1c_c00181{left:772.558590px;}
.x8_c00181{left:773.998905px;}
.x32_c00181{left:786.239865px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls1d_c00181{letter-spacing:-16.310580pt;}
.ls25_c00181{letter-spacing:-13.479180pt;}
.ls12_c00181{letter-spacing:-12.518000pt;}
.lsc_c00181{letter-spacing:-9.743200pt;}
.ls1f_c00181{letter-spacing:-9.059467pt;}
.ls13_c00181{letter-spacing:-7.924000pt;}
.ls11_c00181{letter-spacing:-7.266700pt;}
.lsd_c00181{letter-spacing:-6.601000pt;}
.ls9_c00181{letter-spacing:-5.943000pt;}
.ls18_c00181{letter-spacing:-5.706667pt;}
.ls6_c00181{letter-spacing:-5.285000pt;}
.ls1e_c00181{letter-spacing:-4.629333pt;}
.lse_c00181{letter-spacing:-4.619300pt;}
.ls14_c00181{letter-spacing:-4.038300pt;}
.ls10_c00181{letter-spacing:-3.961300pt;}
.ls22_c00181{letter-spacing:-3.626667pt;}
.ls1c_c00181{letter-spacing:-3.586667pt;}
.ls19_c00181{letter-spacing:-3.577067pt;}
.ls7_c00181{letter-spacing:-3.304000pt;}
.ls8_c00181{letter-spacing:-3.189600pt;}
.ls2a_c00181{letter-spacing:-3.178133pt;}
.ls26_c00181{letter-spacing:-2.855640pt;}
.ls28_c00181{letter-spacing:-2.849000pt;}
.ls29_c00181{letter-spacing:-2.641600pt;}
.ls4_c00181{letter-spacing:-2.639000pt;}
.ls20_c00181{letter-spacing:-2.618000pt;}
.ls5_c00181{letter-spacing:-1.981700pt;}
.ls24_c00181{letter-spacing:-1.598667pt;}
.ls16_c00181{letter-spacing:-1.454400pt;}
.ls23_c00181{letter-spacing:-1.360000pt;}
.ls15_c00181{letter-spacing:-1.359593pt;}
.lsa_c00181{letter-spacing:-1.323700pt;}
.lsf_c00181{letter-spacing:-0.658000pt;}
.ls3_c00181{letter-spacing:0.000000pt;}
.ls2_c00181{letter-spacing:0.658000pt;}
.ls1_c00181{letter-spacing:1.323700pt;}
.lsb_c00181{letter-spacing:1.428000pt;}
.ls17_c00181{letter-spacing:2.609333pt;}
.ls21_c00181{letter-spacing:3.113760pt;}
.ls0_c00181{letter-spacing:3.367000pt;}
.ls27_c00181{letter-spacing:3.961300pt;}
.ls1a_c00181{letter-spacing:9.096267pt;}
.ls1b_c00181{letter-spacing:10.871000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
._18_c00181{margin-left:-17.827085pt;}
._17_c00181{margin-left:-15.561158pt;}
._14_c00181{margin-left:-13.873921pt;}
._f_c00181{margin-left:-7.734868pt;}
._15_c00181{margin-left:-4.330543pt;}
._12_c00181{margin-left:-3.351323pt;}
._19_c00181{margin-left:-2.445549pt;}
._2_c00181{margin-left:-1.100625pt;}
._1_c00181{width:1.191374pt;}
._13_c00181{width:2.319602pt;}
._0_c00181{width:3.227317pt;}
._e_c00181{width:4.181826pt;}
._c_c00181{width:5.113381pt;}
._3_c00181{width:6.213715pt;}
._4_c00181{width:7.363789pt;}
._1a_c00181{width:8.429902pt;}
._b_c00181{width:9.444030pt;}
._d_c00181{width:10.440091pt;}
._5_c00181{width:11.560751pt;}
._8_c00181{width:12.581153pt;}
._9_c00181{width:14.299006pt;}
._10_c00181{width:15.925079pt;}
._6_c00181{width:16.968423pt;}
._1b_c00181{width:18.024142pt;}
._a_c00181{width:19.593396pt;}
._11_c00181{width:20.959757pt;}
._1c_c00181{width:21.854925pt;}
._16_c00181{width:22.982730pt;}
._7_c00181{width:25.997974pt;}
._1d_c00181{width:28.391340pt;}
._1e_c00181{width:30.944121pt;}
._20_c00181{width:33.345847pt;}
._1f_c00181{width:40.427457pt;}
.fs12_c00181{font-size:38.666667pt;}
.fs8_c00181{font-size:50.666667pt;}
.fs9_c00181{font-size:51.333333pt;}
.fsb_c00181{font-size:53.333333pt;}
.fs6_c00181{font-size:63.333333pt;}
.fsa_c00181{font-size:66.000000pt;}
.fsc_c00181{font-size:66.666667pt;}
.fs14_c00181{font-size:67.333333pt;}
.fs10_c00181{font-size:68.000000pt;}
.fs11_c00181{font-size:69.333333pt;}
.fs1_c00181{font-size:70.000000pt;}
.fsf_c00181{font-size:70.666667pt;}
.fs7_c00181{font-size:71.333333pt;}
.fs2_c00181{font-size:72.000000pt;}
.fs4_c00181{font-size:72.666667pt;}
.fs5_c00181{font-size:73.333333pt;}
.fs13_c00181{font-size:74.000000pt;}
.fse_c00181{font-size:74.666667pt;}
.fs0_c00181{font-size:75.333333pt;}
.fs3_c00181{font-size:76.000000pt;}
.fsd_c00181{font-size:78.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y2e_c00181{bottom:164.159973pt;}
.y2f_c00181{bottom:164.160667pt;}
.y2d_c00181{bottom:190.719720pt;}
.y2c_c00181{bottom:190.720493pt;}
.y2a_c00181{bottom:217.279640pt;}
.y2b_c00181{bottom:217.280253pt;}
.y28_c00181{bottom:243.199973pt;}
.y29_c00181{bottom:243.200667pt;}
.y27_c00181{bottom:269.759720pt;}
.y25_c00181{bottom:295.999000pt;}
.y26_c00181{bottom:295.999453pt;}
.y24_c00181{bottom:322.880800pt;}
.y23_c00181{bottom:322.881067pt;}
.y22_c00181{bottom:349.120640pt;}
.y21_c00181{bottom:381.439453pt;}
.y20_c00181{bottom:381.439800pt;}
.y1f_c00181{bottom:429.120200pt;}
.y1e_c00181{bottom:455.679947pt;}
.y1d_c00181{bottom:482.239707pt;}
.y1c_c00181{bottom:482.239867pt;}
.y1b_c00181{bottom:508.479453pt;}
.y1a_c00181{bottom:508.479467pt;}
.y18_c00181{bottom:534.720413pt;}
.y19_c00181{bottom:534.720667pt;}
.y17_c00181{bottom:560.639573pt;}
.y16_c00181{bottom:560.639893pt;}
.y15_c00181{bottom:587.840253pt;}
.y14_c00181{bottom:587.840493pt;}
.y13_c00181{bottom:640.960000pt;}
.y11_c00181{bottom:666.880373pt;}
.y12_c00181{bottom:667.199707pt;}
.y10_c00181{bottom:693.761053pt;}
.yf_c00181{bottom:720.320800pt;}
.ye_c00181{bottom:720.321573pt;}
.yd_c00181{bottom:747.520067pt;}
.yc_c00181{bottom:774.079813pt;}
.yb_c00181{bottom:800.639573pt;}
.ya_c00181{bottom:800.639587pt;}
.y8_c00181{bottom:826.880147pt;}
.y9_c00181{bottom:826.880773pt;}
.y7_c00181{bottom:853.760067pt;}
.y6_c00181{bottom:880.319827pt;}
.y5_c00181{bottom:906.880373pt;}
.y4_c00181{bottom:959.679987pt;}
.y3_c00181{bottom:986.239747pt;}
.y2_c00181{bottom:986.239987pt;}
.y1_c00181{bottom:1013.440347pt;}
.h1c_c00181{height:40.328125pt;}
.hc_c00181{height:50.072917pt;}
.hd_c00181{height:51.734375pt;}
.hf_c00181{height:52.708333pt;}
.ha_c00181{height:66.054688pt;}
.h1e_c00181{height:66.083984pt;}
.h15_c00181{height:66.738281pt;}
.h10_c00181{height:67.187500pt;}
.h16_c00181{height:68.046875pt;}
.h18_c00181{height:68.531250pt;}
.h2_c00181{height:68.701172pt;}
.he_c00181{height:68.835938pt;}
.h17_c00181{height:69.531250pt;}
.h14_c00181{height:69.838542pt;}
.h11_c00181{height:70.009766pt;}
.h8_c00181{height:70.546875pt;}
.h3_c00181{height:70.664062pt;}
.h1a_c00181{height:71.218750pt;}
.h5_c00181{height:71.318359pt;}
.hb_c00181{height:71.890625pt;}
.h6_c00181{height:71.972656pt;}
.h7_c00181{height:72.473958pt;}
.h9_c00181{height:72.562500pt;}
.h1d_c00181{height:72.626953pt;}
.h19_c00181{height:73.234375pt;}
.h13_c00181{height:73.281250pt;}
.h1_c00181{height:73.935547pt;}
.h4_c00181{height:75.109375pt;}
.h12_c00181{height:76.514648pt;}
.h1b_c00181{height:77.085938pt;}
.h0_c00181{height:1122.666667pt;}
.w0_c00181{width:793.333333pt;}
.x0_c00181{left:0.000000pt;}
.x9_c00181{left:124.158853pt;}
.x1_c00181{left:125.119613pt;}
.xe_c00181{left:126.082587pt;}
.x2_c00181{left:138.559613pt;}
.x5_c00181{left:147.839333pt;}
.x3b_c00181{left:173.119587pt;}
.xc_c00181{left:175.359333pt;}
.x27_c00181{left:176.639587pt;}
.xd_c00181{left:190.719720pt;}
.x28_c00181{left:195.199200pt;}
.x3c_c00181{left:196.158667pt;}
.x2b_c00181{left:199.999467pt;}
.xa_c00181{left:202.239200pt;}
.xb_c00181{left:215.679200pt;}
.x11_c00181{left:224.639587pt;}
.x3_c00181{left:232.639200pt;}
.x2c_c00181{left:240.319333pt;}
.x1a_c00181{left:254.078680pt;}
.x12_c00181{left:267.518533pt;}
.x1d_c00181{left:272.639587pt;}
.x4_c00181{left:276.479067pt;}
.x6_c00181{left:296.639587pt;}
.x21_c00181{left:308.799320pt;}
.x1e_c00181{left:309.758787pt;}
.x13_c00181{left:312.000000pt;}
.x7_c00181{left:315.199200pt;}
.x22_c00181{left:326.078680pt;}
.x3d_c00181{left:330.238787pt;}
.x41_c00181{left:332.159200pt;}
.x14_c00181{left:344.639613pt;}
.x42_c00181{left:346.239173pt;}
.x3e_c00181{left:348.799840pt;}
.x29_c00181{left:376.639200pt;}
.x37_c00181{left:391.359333pt;}
.x2a_c00181{left:392.958947pt;}
.x38_c00181{left:403.519040pt;}
.x23_c00181{left:423.039587pt;}
.x2d_c00181{left:430.719720pt;}
.x15_c00181{left:441.919840pt;}
.xf_c00181{left:447.679733pt;}
.x24_c00181{left:450.238773pt;}
.x25_c00181{left:462.399867pt;}
.x10_c00181{left:465.599040pt;}
.x2e_c00181{left:476.479987pt;}
.x36_c00181{left:479.359867pt;}
.x26_c00181{left:482.559040pt;}
.x2f_c00181{left:488.318813pt;}
.x16_c00181{left:511.038533pt;}
.x1f_c00181{left:514.879307pt;}
.x20_c00181{left:527.679200pt;}
.x17_c00181{left:533.438920pt;}
.x34_c00181{left:553.918907pt;}
.x3f_c00181{left:561.599040pt;}
.x35_c00181{left:574.079587pt;}
.x40_c00181{left:575.039067pt;}
.x33_c00181{left:581.119587pt;}
.x30_c00181{left:591.039587pt;}
.x18_c00181{left:593.919440pt;}
.x19_c00181{left:607.678707pt;}
.x39_c00181{left:618.238773pt;}
.x3a_c00181{left:630.079067pt;}
.x31_c00181{left:636.159707pt;}
.x1b_c00181{left:648.638707pt;}
.x1c_c00181{left:686.718747pt;}
.x8_c00181{left:687.999027pt;}
.x32_c00181{left:698.879880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a102d4eb00d87a9ef313660.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_ca025616fbd5e2ce37a683ab.woff2')format("woff");}.ff2_c00182{font-family:ff2_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:ff3_c00182;src:url('chunks/assets/font_cfba0151ac42a0a4384e4542.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_c922a5a3c94d11a55bfab842.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.364746;font-style:normal;font-weight:normal;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_111b3453f8d7b2aaa31370e1.woff2')format("woff");}.ff5_c00182{font-family:ff5_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;}
.m24_c00182{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{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);}
.m18_c00182{transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352564,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{transform:matrix(0.379630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379630,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.m1a_c00182{transform:matrix(0.391892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391892,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{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);}
.m19_c00182{transform:matrix(0.404412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404412,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.407258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407258,0.000000,0.000000,0.250000,0,0);}
.m1d_c00182{transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.413462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413462,0.000000,0.000000,0.250000,0,0);}
.m1f_c00182{transform:matrix(0.461207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461207,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.472656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472656,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.488095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488095,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.570652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570652,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls2b_c00182{letter-spacing:-9.654750px;}
.ls2c_c00182{letter-spacing:-8.914500px;}
.ls7_c00182{letter-spacing:-8.671163px;}
.lsa_c00182{letter-spacing:-7.426125px;}
.ls13_c00182{letter-spacing:-6.685875px;}
.ls12_c00182{letter-spacing:-5.945625px;}
.lsb_c00182{letter-spacing:-5.196713px;}
.ls9_c00182{letter-spacing:-5.109375px;}
.lse_c00182{letter-spacing:-4.629623px;}
.ls6_c00182{letter-spacing:-4.456463px;}
.ls14_c00182{letter-spacing:-4.420200px;}
.ls8_c00182{letter-spacing:-3.717000px;}
.ls4_c00182{letter-spacing:-2.968875px;}
.ls10_c00182{letter-spacing:-2.477790px;}
.lsf_c00182{letter-spacing:-2.363400px;}
.ls3_c00182{letter-spacing:-2.229413px;}
.ls17_c00182{letter-spacing:-1.976400px;}
.ls1e_c00182{letter-spacing:-1.875000px;}
.lsc_c00182{letter-spacing:-1.545180px;}
.ls2_c00182{letter-spacing:-1.489163px;}
.ls29_c00182{letter-spacing:-0.986355px;}
.ls23_c00182{letter-spacing:-0.910350px;}
.ls5_c00182{letter-spacing:-0.740250px;}
.ls1a_c00182{letter-spacing:-0.384615px;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls16_c00182{letter-spacing:0.398400px;}
.ls15_c00182{letter-spacing:0.740250px;}
.ls25_c00182{letter-spacing:0.813885px;}
.ls22_c00182{letter-spacing:0.908700px;}
.ls27_c00182{letter-spacing:0.964912px;}
.ls21_c00182{letter-spacing:1.434675px;}
.ls1d_c00182{letter-spacing:1.597050px;}
.lsd_c00182{letter-spacing:1.621800px;}
.ls26_c00182{letter-spacing:2.249100px;}
.ls1b_c00182{letter-spacing:2.658825px;}
.ls11_c00182{letter-spacing:3.637710px;}
.ls28_c00182{letter-spacing:4.719600px;}
.ls0_c00182{letter-spacing:5.317358px;}
.ls18_c00182{letter-spacing:6.000750px;}
.ls19_c00182{letter-spacing:9.573525px;}
.ls1c_c00182{letter-spacing:12.679800px;}
.ls2a_c00182{letter-spacing:16.743600px;}
.ls24_c00182{letter-spacing:17.828213px;}
.ls1f_c00182{letter-spacing:18.051600px;}
.ls20_c00182{letter-spacing:22.253850px;}
.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:0.000000px;}
._16_c00182{margin-left:-22.373781px;}
._1f_c00182{margin-left:-16.645462px;}
._1e_c00182{margin-left:-9.610561px;}
._18_c00182{margin-left:-7.169816px;}
._b_c00182{margin-left:-6.122500px;}
._5_c00182{margin-left:-4.220629px;}
._19_c00182{margin-left:-2.688555px;}
._7_c00182{margin-left:-1.675651px;}
._0_c00182{width:1.493308px;}
._9_c00182{width:2.518455px;}
._1_c00182{width:4.724807px;}
._3_c00182{width:6.146497px;}
._4_c00182{width:8.047269px;}
._2_c00182{width:9.505511px;}
._a_c00182{width:10.857233px;}
._6_c00182{width:12.246977px;}
._8_c00182{width:13.965154px;}
._15_c00182{width:15.115780px;}
._11_c00182{width:16.842114px;}
._17_c00182{width:17.871703px;}
._10_c00182{width:19.201687px;}
._13_c00182{width:21.152517px;}
._20_c00182{width:22.169269px;}
._d_c00182{width:23.270358px;}
._12_c00182{width:24.971090px;}
._e_c00182{width:26.809026px;}
._f_c00182{width:27.945166px;}
._21_c00182{width:29.106178px;}
._14_c00182{width:31.790543px;}
._c_c00182{width:33.854268px;}
._1d_c00182{width:36.780440px;}
._1a_c00182{width:38.050990px;}
._1c_c00182{width:39.172939px;}
._1b_c00182{width:42.318838px;}
.fc0_c00182{color:transparent;}
.fse_c00182{font-size:20.250000px;}
.fs14_c00182{font-size:25.500000px;}
.fs15_c00182{font-size:27.750000px;}
.fsb_c00182{font-size:29.250000px;}
.fs18_c00182{font-size:30.000000px;}
.fsd_c00182{font-size:31.500000px;}
.fs1a_c00182{font-size:33.750000px;}
.fs1b_c00182{font-size:34.500000px;}
.fs12_c00182{font-size:36.000000px;}
.fs13_c00182{font-size:36.750000px;}
.fs11_c00182{font-size:37.500000px;}
.fs17_c00182{font-size:38.250000px;}
.fs16_c00182{font-size:39.000000px;}
.fs9_c00182{font-size:40.500000px;}
.fsf_c00182{font-size:42.000000px;}
.fs19_c00182{font-size:43.500000px;}
.fsc_c00182{font-size:44.250000px;}
.fs10_c00182{font-size:46.500000px;}
.fs8_c00182{font-size:48.000000px;}
.fsa_c00182{font-size:52.500000px;}
.fs5_c00182{font-size:72.750000px;}
.fs3_c00182{font-size:78.000000px;}
.fs1_c00182{font-size:78.750000px;}
.fs4_c00182{font-size:79.500000px;}
.fs0_c00182{font-size:80.250000px;}
.fs7_c00182{font-size:81.000000px;}
.fs2_c00182{font-size:81.750000px;}
.fs6_c00182{font-size:82.500000px;}
.y0_c00182{bottom:0.000000px;}
.y29_c00182{bottom:185.039220px;}
.y28_c00182{bottom:214.918950px;}
.y27_c00182{bottom:214.919055px;}
.y26_c00182{bottom:244.440405px;}
.y25_c00182{bottom:274.320120px;}
.y23_c00182{bottom:304.199385px;}
.y24_c00182{bottom:304.199850px;}
.y22_c00182{bottom:363.958830px;}
.y21_c00182{bottom:393.119985px;}
.y20_c00182{bottom:423.719100px;}
.y1f_c00182{bottom:428.760135px;}
.y1e_c00182{bottom:453.599670px;}
.y1d_c00182{bottom:453.599940px;}
.y1c_c00182{bottom:483.479670px;}
.y1b_c00182{bottom:512.999205px;}
.y1a_c00182{bottom:542.878920px;}
.y19_c00182{bottom:542.880705px;}
.y18_c00182{bottom:572.760435px;}
.y16_c00182{bottom:602.639880px;}
.y17_c00182{bottom:602.640150px;}
.y15_c00182{bottom:631.798920px;}
.y14_c00182{bottom:662.038920px;}
.y13_c00182{bottom:662.038950px;}
.y11_c00182{bottom:691.559490px;}
.y12_c00182{bottom:691.560285px;}
.y10_c00182{bottom:721.439205px;}
.ye_c00182{bottom:751.319775px;}
.yf_c00182{bottom:751.319820px;}
.yd_c00182{bottom:781.559685px;}
.yc_c00182{bottom:841.680090px;}
.ya_c00182{bottom:871.199760px;}
.yb_c00182{bottom:871.199805px;}
.y9_c00182{bottom:901.439670px;}
.y8_c00182{bottom:901.439850px;}
.y6_c00182{bottom:930.958740px;}
.y7_c00182{bottom:930.959385px;}
.y5_c00182{bottom:961.198650px;}
.y4_c00182{bottom:990.359805px;}
.y3_c00182{bottom:1049.758890px;}
.y2_c00182{bottom:1110.239025px;}
.y1_c00182{bottom:1140.118740px;}
.h11_c00182{height:21.120117px;}
.h1a_c00182{height:25.026855px;}
.h17_c00182{height:25.201172px;}
.h18_c00182{height:27.235107px;}
.h1c_c00182{height:29.443359px;}
.he_c00182{height:30.506836px;}
.h1f_c00182{height:30.915527px;}
.h1e_c00182{height:31.289062px;}
.h10_c00182{height:32.853516px;}
.h20_c00182{height:33.123779px;}
.h22_c00182{height:33.859863px;}
.h21_c00182{height:35.332031px;}
.h23_c00182{height:36.281250px;}
.h15_c00182{height:37.546875px;}
.h14_c00182{height:37.792969px;}
.h19_c00182{height:38.276367px;}
.h16_c00182{height:38.329102px;}
.h1b_c00182{height:39.893555px;}
.hc_c00182{height:40.816406px;}
.h1d_c00182{height:42.692871px;}
.h12_c00182{height:43.804688px;}
.h13_c00182{height:45.955078px;}
.hf_c00182{height:46.151367px;}
.hb_c00182{height:50.062500px;}
.hd_c00182{height:51.884766px;}
.h6_c00182{height:73.318359px;}
.h4_c00182{height:76.552734px;}
.h2_c00182{height:77.288818px;}
.h5_c00182{height:78.024902px;}
.h8_c00182{height:78.609375px;}
.h1_c00182{height:78.760986px;}
.ha_c00182{height:79.497070px;}
.h3_c00182{height:80.233154px;}
.h7_c00182{height:80.969238px;}
.h9_c00182{height:81.632812px;}
.h0_c00182{height:1263.000000px;}
.w0_c00182{width:892.500000px;}
.x0_c00182{left:0.000000px;}
.x30_c00182{left:136.440360px;}
.xa_c00182{left:137.519685px;}
.x3_c00182{left:138.599100px;}
.x1_c00182{left:139.678500px;}
.x2_c00182{left:154.439250px;}
.x4_c00182{left:164.158785px;}
.xb_c00182{left:167.759565px;}
.x21_c00182{left:213.478635px;}
.x5_c00182{left:214.559685px;}
.x1f_c00182{left:215.639100px;}
.x1b_c00182{left:232.558635px;}
.x6_c00182{left:233.639700px;}
.x22_c00182{left:237.238785px;}
.x1c_c00182{left:246.958350px;}
.x2c_c00182{left:248.039385px;}
.x2d_c00182{left:299.158785px;}
.x23_c00182{left:301.678500px;}
.x32_c00182{left:305.279250px;}
.x24_c00182{left:312.479235px;}
.x33_c00182{left:323.639100px;}
.x12_c00182{left:337.679700px;}
.x13_c00182{left:355.319250px;}
.xc_c00182{left:404.639100px;}
.x1d_c00182{left:406.079400px;}
.x2e_c00182{left:415.078815px;}
.x1e_c00182{left:421.199385px;}
.xd_c00182{left:429.119385px;}
.x7_c00182{left:449.998950px;}
.x20_c00182{left:464.398635px;}
.x25_c00182{left:472.679670px;}
.x8_c00182{left:473.759085px;}
.x26_c00182{left:487.799565px;}
.x19_c00182{left:517.678530px;}
.xe_c00182{left:523.078770px;}
.x1a_c00182{left:532.439250px;}
.x27_c00182{left:546.838950px;}
.x16_c00182{left:574.918350px;}
.x17_c00182{left:588.958920px;}
.x2f_c00182{left:621.718545px;}
.x31_c00182{left:638.278800px;}
.x14_c00182{left:648.718545px;}
.x28_c00182{left:670.679070px;}
.x15_c00182{left:675.359250px;}
.xf_c00182{left:686.519070px;}
.x29_c00182{left:695.159370px;}
.x10_c00182{left:702.359250px;}
.x2a_c00182{left:722.879520px;}
.x2b_c00182{left:732.958335px;}
.x9_c00182{left:760.319235px;}
.x18_c00182{left:763.918350px;}
.x11_c00182{left:766.798920px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls2b_c00182{letter-spacing:-8.582000pt;}
.ls2c_c00182{letter-spacing:-7.924000pt;}
.ls7_c00182{letter-spacing:-7.707700pt;}
.lsa_c00182{letter-spacing:-6.601000pt;}
.ls13_c00182{letter-spacing:-5.943000pt;}
.ls12_c00182{letter-spacing:-5.285000pt;}
.lsb_c00182{letter-spacing:-4.619300pt;}
.ls9_c00182{letter-spacing:-4.541667pt;}
.lse_c00182{letter-spacing:-4.115220pt;}
.ls6_c00182{letter-spacing:-3.961300pt;}
.ls14_c00182{letter-spacing:-3.929067pt;}
.ls8_c00182{letter-spacing:-3.304000pt;}
.ls4_c00182{letter-spacing:-2.639000pt;}
.ls10_c00182{letter-spacing:-2.202480pt;}
.lsf_c00182{letter-spacing:-2.100800pt;}
.ls3_c00182{letter-spacing:-1.981700pt;}
.ls17_c00182{letter-spacing:-1.756800pt;}
.ls1e_c00182{letter-spacing:-1.666667pt;}
.lsc_c00182{letter-spacing:-1.373493pt;}
.ls2_c00182{letter-spacing:-1.323700pt;}
.ls29_c00182{letter-spacing:-0.876760pt;}
.ls23_c00182{letter-spacing:-0.809200pt;}
.ls5_c00182{letter-spacing:-0.658000pt;}
.ls1a_c00182{letter-spacing:-0.341880pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls16_c00182{letter-spacing:0.354133pt;}
.ls15_c00182{letter-spacing:0.658000pt;}
.ls25_c00182{letter-spacing:0.723453pt;}
.ls22_c00182{letter-spacing:0.807733pt;}
.ls27_c00182{letter-spacing:0.857700pt;}
.ls21_c00182{letter-spacing:1.275267pt;}
.ls1d_c00182{letter-spacing:1.419600pt;}
.lsd_c00182{letter-spacing:1.441600pt;}
.ls26_c00182{letter-spacing:1.999200pt;}
.ls1b_c00182{letter-spacing:2.363400pt;}
.ls11_c00182{letter-spacing:3.233520pt;}
.ls28_c00182{letter-spacing:4.195200pt;}
.ls0_c00182{letter-spacing:4.726540pt;}
.ls18_c00182{letter-spacing:5.334000pt;}
.ls19_c00182{letter-spacing:8.509800pt;}
.ls1c_c00182{letter-spacing:11.270933pt;}
.ls2a_c00182{letter-spacing:14.883200pt;}
.ls24_c00182{letter-spacing:15.847300pt;}
.ls1f_c00182{letter-spacing:16.045867pt;}
.ls20_c00182{letter-spacing:19.781200pt;}
.ws0_c00182{word-spacing:0.000000pt;}
._16_c00182{margin-left:-19.887806pt;}
._1f_c00182{margin-left:-14.795966pt;}
._1e_c00182{margin-left:-8.542721pt;}
._18_c00182{margin-left:-6.373170pt;}
._b_c00182{margin-left:-5.442223pt;}
._5_c00182{margin-left:-3.751670pt;}
._19_c00182{margin-left:-2.389826pt;}
._7_c00182{margin-left:-1.489468pt;}
._0_c00182{width:1.327385pt;}
._9_c00182{width:2.238626pt;}
._1_c00182{width:4.199828pt;}
._3_c00182{width:5.463553pt;}
._4_c00182{width:7.153128pt;}
._2_c00182{width:8.449343pt;}
._a_c00182{width:9.650874pt;}
._6_c00182{width:10.886202pt;}
._8_c00182{width:12.413470pt;}
._15_c00182{width:13.436249pt;}
._11_c00182{width:14.970768pt;}
._17_c00182{width:15.885958pt;}
._10_c00182{width:17.068166pt;}
._13_c00182{width:18.802238pt;}
._20_c00182{width:19.706017pt;}
._d_c00182{width:20.684762pt;}
._12_c00182{width:22.196525pt;}
._e_c00182{width:23.830245pt;}
._f_c00182{width:24.840147pt;}
._21_c00182{width:25.872158pt;}
._14_c00182{width:28.258260pt;}
._c_c00182{width:30.092683pt;}
._1d_c00182{width:32.693725pt;}
._1a_c00182{width:33.823102pt;}
._1c_c00182{width:34.820391pt;}
._1b_c00182{width:37.616745pt;}
.fse_c00182{font-size:18.000000pt;}
.fs14_c00182{font-size:22.666667pt;}
.fs15_c00182{font-size:24.666667pt;}
.fsb_c00182{font-size:26.000000pt;}
.fs18_c00182{font-size:26.666667pt;}
.fsd_c00182{font-size:28.000000pt;}
.fs1a_c00182{font-size:30.000000pt;}
.fs1b_c00182{font-size:30.666667pt;}
.fs12_c00182{font-size:32.000000pt;}
.fs13_c00182{font-size:32.666667pt;}
.fs11_c00182{font-size:33.333333pt;}
.fs17_c00182{font-size:34.000000pt;}
.fs16_c00182{font-size:34.666667pt;}
.fs9_c00182{font-size:36.000000pt;}
.fsf_c00182{font-size:37.333333pt;}
.fs19_c00182{font-size:38.666667pt;}
.fsc_c00182{font-size:39.333333pt;}
.fs10_c00182{font-size:41.333333pt;}
.fs8_c00182{font-size:42.666667pt;}
.fsa_c00182{font-size:46.666667pt;}
.fs5_c00182{font-size:64.666667pt;}
.fs3_c00182{font-size:69.333333pt;}
.fs1_c00182{font-size:70.000000pt;}
.fs4_c00182{font-size:70.666667pt;}
.fs0_c00182{font-size:71.333333pt;}
.fs7_c00182{font-size:72.000000pt;}
.fs2_c00182{font-size:72.666667pt;}
.fs6_c00182{font-size:73.333333pt;}
.y0_c00182{bottom:0.000000pt;}
.y29_c00182{bottom:164.479307pt;}
.y28_c00182{bottom:191.039067pt;}
.y27_c00182{bottom:191.039160pt;}
.y26_c00182{bottom:217.280360pt;}
.y25_c00182{bottom:243.840107pt;}
.y23_c00182{bottom:270.399453pt;}
.y24_c00182{bottom:270.399867pt;}
.y22_c00182{bottom:323.518960pt;}
.y21_c00182{bottom:349.439987pt;}
.y20_c00182{bottom:376.639200pt;}
.y1f_c00182{bottom:381.120120pt;}
.y1e_c00182{bottom:403.199707pt;}
.y1d_c00182{bottom:403.199947pt;}
.y1c_c00182{bottom:429.759707pt;}
.y1b_c00182{bottom:455.999293pt;}
.y1a_c00182{bottom:482.559040pt;}
.y19_c00182{bottom:482.560627pt;}
.y18_c00182{bottom:509.120387pt;}
.y16_c00182{bottom:535.679893pt;}
.y17_c00182{bottom:535.680133pt;}
.y15_c00182{bottom:561.599040pt;}
.y14_c00182{bottom:588.479040pt;}
.y13_c00182{bottom:588.479067pt;}
.y11_c00182{bottom:614.719547pt;}
.y12_c00182{bottom:614.720253pt;}
.y10_c00182{bottom:641.279293pt;}
.ye_c00182{bottom:667.839800pt;}
.yf_c00182{bottom:667.839840pt;}
.yd_c00182{bottom:694.719720pt;}
.yc_c00182{bottom:748.160080pt;}
.ya_c00182{bottom:774.399787pt;}
.yb_c00182{bottom:774.399827pt;}
.y9_c00182{bottom:801.279707pt;}
.y8_c00182{bottom:801.279867pt;}
.y6_c00182{bottom:827.518880pt;}
.y7_c00182{bottom:827.519453pt;}
.y5_c00182{bottom:854.398800pt;}
.y4_c00182{bottom:880.319827pt;}
.y3_c00182{bottom:933.119013pt;}
.y2_c00182{bottom:986.879133pt;}
.y1_c00182{bottom:1013.438880pt;}
.h11_c00182{height:18.773437pt;}
.h1a_c00182{height:22.246094pt;}
.h17_c00182{height:22.401042pt;}
.h18_c00182{height:24.208984pt;}
.h1c_c00182{height:26.171875pt;}
.he_c00182{height:27.117188pt;}
.h1f_c00182{height:27.480469pt;}
.h1e_c00182{height:27.812500pt;}
.h10_c00182{height:29.203125pt;}
.h20_c00182{height:29.443359pt;}
.h22_c00182{height:30.097656pt;}
.h21_c00182{height:31.406250pt;}
.h23_c00182{height:32.250000pt;}
.h15_c00182{height:33.375000pt;}
.h14_c00182{height:33.593750pt;}
.h19_c00182{height:34.023438pt;}
.h16_c00182{height:34.070312pt;}
.h1b_c00182{height:35.460938pt;}
.hc_c00182{height:36.281250pt;}
.h1d_c00182{height:37.949219pt;}
.h12_c00182{height:38.937500pt;}
.h13_c00182{height:40.848958pt;}
.hf_c00182{height:41.023438pt;}
.hb_c00182{height:44.500000pt;}
.hd_c00182{height:46.119792pt;}
.h6_c00182{height:65.171875pt;}
.h4_c00182{height:68.046875pt;}
.h2_c00182{height:68.701172pt;}
.h5_c00182{height:69.355469pt;}
.h8_c00182{height:69.875000pt;}
.h1_c00182{height:70.009766pt;}
.ha_c00182{height:70.664062pt;}
.h3_c00182{height:71.318359pt;}
.h7_c00182{height:71.972656pt;}
.h9_c00182{height:72.562500pt;}
.h0_c00182{height:1122.666667pt;}
.w0_c00182{width:793.333333pt;}
.x0_c00182{left:0.000000pt;}
.x30_c00182{left:121.280320pt;}
.xa_c00182{left:122.239720pt;}
.x3_c00182{left:123.199200pt;}
.x1_c00182{left:124.158667pt;}
.x2_c00182{left:137.279333pt;}
.x4_c00182{left:145.918920pt;}
.xb_c00182{left:149.119613pt;}
.x21_c00182{left:189.758787pt;}
.x5_c00182{left:190.719720pt;}
.x1f_c00182{left:191.679200pt;}
.x1b_c00182{left:206.718787pt;}
.x6_c00182{left:207.679733pt;}
.x22_c00182{left:210.878920pt;}
.x1c_c00182{left:219.518533pt;}
.x2c_c00182{left:220.479453pt;}
.x2d_c00182{left:265.918920pt;}
.x23_c00182{left:268.158667pt;}
.x32_c00182{left:271.359333pt;}
.x24_c00182{left:277.759320pt;}
.x33_c00182{left:287.679200pt;}
.x12_c00182{left:300.159733pt;}
.x13_c00182{left:315.839333pt;}
.xc_c00182{left:359.679200pt;}
.x1d_c00182{left:360.959467pt;}
.x2e_c00182{left:368.958947pt;}
.x1e_c00182{left:374.399453pt;}
.xd_c00182{left:381.439453pt;}
.x7_c00182{left:399.999067pt;}
.x20_c00182{left:412.798787pt;}
.x25_c00182{left:420.159707pt;}
.x8_c00182{left:421.119187pt;}
.x26_c00182{left:433.599613pt;}
.x19_c00182{left:460.158693pt;}
.xe_c00182{left:464.958907pt;}
.x1a_c00182{left:473.279333pt;}
.x27_c00182{left:486.079067pt;}
.x16_c00182{left:511.038533pt;}
.x17_c00182{left:523.519040pt;}
.x2f_c00182{left:552.638707pt;}
.x31_c00182{left:567.358933pt;}
.x14_c00182{left:576.638707pt;}
.x28_c00182{left:596.159173pt;}
.x15_c00182{left:600.319333pt;}
.xf_c00182{left:610.239173pt;}
.x29_c00182{left:617.919440pt;}
.x10_c00182{left:624.319333pt;}
.x2a_c00182{left:642.559573pt;}
.x2b_c00182{left:651.518520pt;}
.x9_c00182{left:675.839320pt;}
.x18_c00182{left:679.038533pt;}
.x11_c00182{left:681.599040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c973ec92a5881565e5836b0.woff2')format("woff");}.ff1_c00183{font-family:ff1_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:ff2_c00183;src:url('chunks/assets/font_8985c61e99b31d001686f10e.woff2')format("woff");}.ff2_c00183{font-family:ff2_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:ff3_c00183;src:url('chunks/assets/font_4fe0fc249d68ada90b7231c7.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_363b1b687a2be6718d94efc3.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_bed5643a99660527b0d08201.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_8c0ba7d44ea44ac95ee69c32.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00183;src:url('chunks/assets/font_48f5a8b4539922ca9d36c9f0.woff2')format("woff");}.ff7_c00183{font-family:ff7_c00183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00183;src:url('chunks/assets/font_fb0a6e062a1a3cb82143606d.woff2')format("woff");}.ff8_c00183{font-family:ff8_c00183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00183{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.204327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204327,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{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);}
.m22_c00183{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{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_c00183{vertical-align:0.000000px;}
.ls2b_c00183{letter-spacing:-9.266400px;}
.lsf_c00183{letter-spacing:-7.576538px;}
.ls23_c00183{letter-spacing:-7.050705px;}
.lsd_c00183{letter-spacing:-6.811875px;}
.lsa_c00183{letter-spacing:-6.055875px;}
.ls28_c00183{letter-spacing:-5.548350px;}
.ls20_c00183{letter-spacing:-5.300663px;}
.ls32_c00183{letter-spacing:-5.159925px;}
.ls1a_c00183{letter-spacing:-4.551750px;}
.ls10_c00183{letter-spacing:-4.543088px;}
.ls30_c00183{letter-spacing:-4.424625px;}
.ls33_c00183{letter-spacing:-4.310775px;}
.ls8_c00183{letter-spacing:-3.787875px;}
.ls2a_c00183{letter-spacing:-3.749288px;}
.lsb_c00183{letter-spacing:-3.717000px;}
.ls2e_c00183{letter-spacing:-3.685050px;}
.ls24_c00183{letter-spacing:-3.170678px;}
.ls6_c00183{letter-spacing:-3.031875px;}
.ls1f_c00183{letter-spacing:-2.971800px;}
.ls2c_c00183{letter-spacing:-2.949750px;}
.ls26_c00183{letter-spacing:-2.886075px;}
.ls2d_c00183{letter-spacing:-2.590222px;}
.ls1d_c00183{letter-spacing:-2.406375px;}
.ls7_c00183{letter-spacing:-2.267213px;}
.lsc_c00183{letter-spacing:-2.250645px;}
.ls31_c00183{letter-spacing:-2.210175px;}
.ls19_c00183{letter-spacing:-1.950000px;}
.ls17_c00183{letter-spacing:-1.859250px;}
.ls29_c00183{letter-spacing:-1.773225px;}
.ls4_c00183{letter-spacing:-1.512000px;}
.ls21_c00183{letter-spacing:-1.498500px;}
.ls2f_c00183{letter-spacing:-1.474875px;}
.ls18_c00183{letter-spacing:-1.287743px;}
.ls5_c00183{letter-spacing:-0.756000px;}
.ls16_c00183{letter-spacing:-0.595125px;}
.ls9_c00183{letter-spacing:0.000000px;}
.ls15_c00183{letter-spacing:1.468575px;}
.ls14_c00183{letter-spacing:1.517250px;}
.ls1e_c00183{letter-spacing:1.712550px;}
.ls13_c00183{letter-spacing:2.100000px;}
.ls27_c00183{letter-spacing:2.165693px;}
.ls1c_c00183{letter-spacing:2.295000px;}
.ls22_c00183{letter-spacing:2.761200px;}
.ls3_c00183{letter-spacing:3.685050px;}
.ls1b_c00183{letter-spacing:4.120800px;}
.ls1_c00183{letter-spacing:4.325325px;}
.ls12_c00183{letter-spacing:4.551750px;}
.lse_c00183{letter-spacing:5.506800px;}
.ls11_c00183{letter-spacing:6.827625px;}
.ls25_c00183{letter-spacing:8.134425px;}
.ls2_c00183{letter-spacing:14.431133px;}
.ls0_c00183{letter-spacing:14.782050px;}
.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:0.000000px;}
._1d_c00183{margin-left:-53.888420px;}
._1c_c00183{margin-left:-51.103538px;}
._1e_c00183{margin-left:-32.054413px;}
._20_c00183{margin-left:-13.695231px;}
._d_c00183{margin-left:-8.375365px;}
._1f_c00183{margin-left:-6.563267px;}
._c_c00183{margin-left:-5.363178px;}
._5_c00183{margin-left:-3.976996px;}
._8_c00183{margin-left:-1.462085px;}
._7_c00183{width:1.262787px;}
._11_c00183{width:2.639458px;}
._f_c00183{width:3.913330px;}
._17_c00183{width:4.969125px;}
._6_c00183{width:6.024799px;}
._10_c00183{width:7.243243px;}
._9_c00183{width:8.431338px;}
._0_c00183{width:10.442795px;}
._b_c00183{width:11.594484px;}
._a_c00183{width:12.609450px;}
._2_c00183{width:13.678390px;}
._1b_c00183{width:14.816449px;}
._1_c00183{width:15.821238px;}
._19_c00183{width:17.324394px;}
._4_c00183{width:18.835183px;}
._16_c00183{width:19.860326px;}
._13_c00183{width:20.963250px;}
._e_c00183{width:22.214042px;}
._12_c00183{width:23.774443px;}
._1a_c00183{width:24.954179px;}
._3_c00183{width:26.294262px;}
._15_c00183{width:27.497683px;}
._18_c00183{width:29.933420px;}
._14_c00183{width:33.369464px;}
.fc0_c00183{color:transparent;}
.fs5_c00183{font-size:10.500000px;}
.fs7_c00183{font-size:30.000000px;}
.fs14_c00183{font-size:42.750000px;}
.fs15_c00183{font-size:45.000000px;}
.fs9_c00183{font-size:50.250000px;}
.fs16_c00183{font-size:51.750000px;}
.fs3_c00183{font-size:63.750000px;}
.fse_c00183{font-size:69.750000px;}
.fs11_c00183{font-size:70.500000px;}
.fsf_c00183{font-size:73.500000px;}
.fsc_c00183{font-size:75.750000px;}
.fsd_c00183{font-size:76.500000px;}
.fs12_c00183{font-size:77.250000px;}
.fs1_c00183{font-size:78.000000px;}
.fs0_c00183{font-size:78.750000px;}
.fs2_c00183{font-size:79.500000px;}
.fs6_c00183{font-size:80.250000px;}
.fs4_c00183{font-size:81.750000px;}
.fs13_c00183{font-size:83.250000px;}
.fs8_c00183{font-size:86.250000px;}
.fsa_c00183{font-size:96.750000px;}
.fsb_c00183{font-size:97.500000px;}
.fs10_c00183{font-size:101.250000px;}
.y0_c00183{bottom:0.000000px;}
.y1e_c00183{bottom:211.319850px;}
.y1d_c00183{bottom:323.640750px;}
.y1c_c00183{bottom:345.240435px;}
.y1b_c00183{bottom:365.759535px;}
.y1a_c00183{bottom:387.358815px;}
.y19_c00183{bottom:446.759880px;}
.y18_c00183{bottom:506.879520px;}
.y16_c00183{bottom:528.838320px;}
.y17_c00183{bottom:528.840135px;}
.y15_c00183{bottom:550.079250px;}
.y14_c00183{bottom:570.957855px;}
.y13_c00183{bottom:630.358905px;}
.y12_c00183{bottom:659.520060px;}
.y11_c00183{bottom:689.399775px;}
.y10_c00183{bottom:719.639700px;}
.yf_c00183{bottom:752.039985px;}
.ye_c00183{bottom:780.120330px;}
.yd_c00183{bottom:809.639850px;}
.yc_c00183{bottom:839.519580px;}
.yb_c00183{bottom:869.759490px;}
.ya_c00183{bottom:899.280855px;}
.y9_c00183{bottom:899.281215px;}
.y8_c00183{bottom:928.800750px;}
.y7_c00183{bottom:988.560195px;}
.y6_c00183{bottom:1018.800105px;}
.y5_c00183{bottom:1048.680720px;}
.y4_c00183{bottom:1078.920600px;}
.y3_c00183{bottom:1078.920645px;}
.y2_c00183{bottom:1108.440165px;}
.y1_c00183{bottom:1138.680090px;}
.h6_c00183{height:10.951172px;}
.h8_c00183{height:31.289062px;}
.h1b_c00183{height:44.586914px;}
.h1c_c00183{height:46.933594px;}
.ha_c00183{height:49.661133px;}
.h1d_c00183{height:51.143555px;}
.h4_c00183{height:64.248047px;}
.h10_c00183{height:72.747070px;}
.h13_c00183{height:73.529297px;}
.h16_c00183{height:74.344482px;}
.he_c00183{height:75.080566px;}
.h15_c00183{height:75.816650px;}
.hd_c00183{height:76.341797px;}
.h2_c00183{height:76.552734px;}
.h11_c00183{height:76.658203px;}
.h1_c00183{height:77.288818px;}
.h3_c00183{height:78.024902px;}
.h1a_c00183{height:78.609375px;}
.hf_c00183{height:78.721802px;}
.h19_c00183{height:78.760986px;}
.h14_c00183{height:79.309570px;}
.h18_c00183{height:79.365234px;}
.h17_c00183{height:81.664673px;}
.h5_c00183{height:82.388672px;}
.h7_c00183{height:83.698242px;}
.h9_c00183{height:89.956055px;}
.hb_c00183{height:100.907227px;}
.hc_c00183{height:101.689453px;}
.h12_c00183{height:105.600586px;}
.h0_c00183{height:1263.000000px;}
.w0_c00183{width:892.500000px;}
.x0_c00183{left:0.000000px;}
.x1c_c00183{left:139.319730px;}
.x4_c00183{left:140.398665px;}
.x1_c00183{left:141.479715px;}
.x2_c00183{left:142.922520px;}
.x5_c00183{left:161.639100px;}
.x2a_c00183{left:181.080000px;}
.x1e_c00183{left:194.040300px;}
.x1d_c00183{left:195.477450px;}
.xb_c00183{left:199.439685px;}
.xc_c00183{left:212.399250px;}
.xd_c00183{left:213.478635px;}
.x22_c00183{left:215.639100px;}
.x2b_c00183{left:220.319250px;}
.xe_c00183{left:256.679700px;}
.x2c_c00183{left:264.238785px;}
.x6_c00183{left:271.799535px;}
.xf_c00183{left:286.199385px;}
.x10_c00183{left:291.958950px;}
.x7_c00183{left:293.399250px;}
.x23_c00183{left:322.559685px;}
.x11_c00183{left:327.239850px;}
.x12_c00183{left:328.319250px;}
.x24_c00183{left:366.838515px;}
.x8_c00183{left:381.239850px;}
.x20_c00183{left:387.719565px;}
.x13_c00183{left:407.878920px;}
.x9_c00183{left:413.999400px;}
.x21_c00183{left:418.679670px;}
.x14_c00183{left:448.558635px;}
.x15_c00183{left:465.479685px;}
.x16_c00183{left:541.438620px;}
.x25_c00183{left:546.838950px;}
.x1a_c00183{left:553.318770px;}
.x1b_c00183{left:579.598530px;}
.x26_c00183{left:598.319235px;}
.x2d_c00183{left:604.798920px;}
.x2e_c00183{left:613.798515px;}
.x27_c00183{left:626.039385px;}
.x17_c00183{left:650.158770px;}
.x18_c00183{left:663.119985px;}
.x2f_c00183{left:669.958920px;}
.x28_c00183{left:685.078770px;}
.x30_c00183{left:688.679670px;}
.x29_c00183{left:698.758530px;}
.x19_c00183{left:741.239220px;}
.x1f_c00183{left:755.279850px;}
.x3_c00183{left:759.599070px;}
.xa_c00183{left:764.279250px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls2b_c00183{letter-spacing:-8.236800pt;}
.lsf_c00183{letter-spacing:-6.734700pt;}
.ls23_c00183{letter-spacing:-6.267293pt;}
.lsd_c00183{letter-spacing:-6.055000pt;}
.lsa_c00183{letter-spacing:-5.383000pt;}
.ls28_c00183{letter-spacing:-4.931867pt;}
.ls20_c00183{letter-spacing:-4.711700pt;}
.ls32_c00183{letter-spacing:-4.586600pt;}
.ls1a_c00183{letter-spacing:-4.046000pt;}
.ls10_c00183{letter-spacing:-4.038300pt;}
.ls30_c00183{letter-spacing:-3.933000pt;}
.ls33_c00183{letter-spacing:-3.831800pt;}
.ls8_c00183{letter-spacing:-3.367000pt;}
.ls2a_c00183{letter-spacing:-3.332700pt;}
.lsb_c00183{letter-spacing:-3.304000pt;}
.ls2e_c00183{letter-spacing:-3.275600pt;}
.ls24_c00183{letter-spacing:-2.818380pt;}
.ls6_c00183{letter-spacing:-2.695000pt;}
.ls1f_c00183{letter-spacing:-2.641600pt;}
.ls2c_c00183{letter-spacing:-2.622000pt;}
.ls26_c00183{letter-spacing:-2.565400pt;}
.ls2d_c00183{letter-spacing:-2.302420pt;}
.ls1d_c00183{letter-spacing:-2.139000pt;}
.ls7_c00183{letter-spacing:-2.015300pt;}
.lsc_c00183{letter-spacing:-2.000573pt;}
.ls31_c00183{letter-spacing:-1.964600pt;}
.ls19_c00183{letter-spacing:-1.733333pt;}
.ls17_c00183{letter-spacing:-1.652667pt;}
.ls29_c00183{letter-spacing:-1.576200pt;}
.ls4_c00183{letter-spacing:-1.344000pt;}
.ls21_c00183{letter-spacing:-1.332000pt;}
.ls2f_c00183{letter-spacing:-1.311000pt;}
.ls18_c00183{letter-spacing:-1.144660pt;}
.ls5_c00183{letter-spacing:-0.672000pt;}
.ls16_c00183{letter-spacing:-0.529000pt;}
.ls9_c00183{letter-spacing:0.000000pt;}
.ls15_c00183{letter-spacing:1.305400pt;}
.ls14_c00183{letter-spacing:1.348667pt;}
.ls1e_c00183{letter-spacing:1.522267pt;}
.ls13_c00183{letter-spacing:1.866667pt;}
.ls27_c00183{letter-spacing:1.925060pt;}
.ls1c_c00183{letter-spacing:2.040000pt;}
.ls22_c00183{letter-spacing:2.454400pt;}
.ls3_c00183{letter-spacing:3.275600pt;}
.ls1b_c00183{letter-spacing:3.662933pt;}
.ls1_c00183{letter-spacing:3.844733pt;}
.ls12_c00183{letter-spacing:4.046000pt;}
.lse_c00183{letter-spacing:4.894933pt;}
.ls11_c00183{letter-spacing:6.069000pt;}
.ls25_c00183{letter-spacing:7.230600pt;}
.ls2_c00183{letter-spacing:12.827673pt;}
.ls0_c00183{letter-spacing:13.139600pt;}
.ws0_c00183{word-spacing:0.000000pt;}
._1d_c00183{margin-left:-47.900818pt;}
._1c_c00183{margin-left:-45.425367pt;}
._1e_c00183{margin-left:-28.492811pt;}
._20_c00183{margin-left:-12.173538pt;}
._d_c00183{margin-left:-7.444769pt;}
._1f_c00183{margin-left:-5.834015pt;}
._c_c00183{margin-left:-4.767269pt;}
._5_c00183{margin-left:-3.535108pt;}
._8_c00183{margin-left:-1.299631pt;}
._7_c00183{width:1.122477pt;}
._11_c00183{width:2.346185pt;}
._f_c00183{width:3.478515pt;}
._17_c00183{width:4.417000pt;}
._6_c00183{width:5.355377pt;}
._10_c00183{width:6.438438pt;}
._9_c00183{width:7.494523pt;}
._0_c00183{width:9.282485pt;}
._b_c00183{width:10.306208pt;}
._a_c00183{width:11.208400pt;}
._2_c00183{width:12.158569pt;}
._1b_c00183{width:13.170177pt;}
._1_c00183{width:14.063323pt;}
._19_c00183{width:15.399462pt;}
._4_c00183{width:16.742385pt;}
._16_c00183{width:17.653623pt;}
._13_c00183{width:18.634000pt;}
._e_c00183{width:19.745815pt;}
._12_c00183{width:21.132838pt;}
._1a_c00183{width:22.181492pt;}
._3_c00183{width:23.372677pt;}
._15_c00183{width:24.442385pt;}
._18_c00183{width:26.607485pt;}
._14_c00183{width:29.661746pt;}
.fs5_c00183{font-size:9.333333pt;}
.fs7_c00183{font-size:26.666667pt;}
.fs14_c00183{font-size:38.000000pt;}
.fs15_c00183{font-size:40.000000pt;}
.fs9_c00183{font-size:44.666667pt;}
.fs16_c00183{font-size:46.000000pt;}
.fs3_c00183{font-size:56.666667pt;}
.fse_c00183{font-size:62.000000pt;}
.fs11_c00183{font-size:62.666667pt;}
.fsf_c00183{font-size:65.333333pt;}
.fsc_c00183{font-size:67.333333pt;}
.fsd_c00183{font-size:68.000000pt;}
.fs12_c00183{font-size:68.666667pt;}
.fs1_c00183{font-size:69.333333pt;}
.fs0_c00183{font-size:70.000000pt;}
.fs2_c00183{font-size:70.666667pt;}
.fs6_c00183{font-size:71.333333pt;}
.fs4_c00183{font-size:72.666667pt;}
.fs13_c00183{font-size:74.000000pt;}
.fs8_c00183{font-size:76.666667pt;}
.fsa_c00183{font-size:86.000000pt;}
.fsb_c00183{font-size:86.666667pt;}
.fs10_c00183{font-size:90.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y1e_c00183{bottom:187.839867pt;}
.y1d_c00183{bottom:287.680667pt;}
.y1c_c00183{bottom:306.880387pt;}
.y1b_c00183{bottom:325.119587pt;}
.y1a_c00183{bottom:344.318947pt;}
.y19_c00183{bottom:397.119893pt;}
.y18_c00183{bottom:450.559573pt;}
.y16_c00183{bottom:470.078507pt;}
.y17_c00183{bottom:470.080120pt;}
.y15_c00183{bottom:488.959333pt;}
.y14_c00183{bottom:507.518093pt;}
.y13_c00183{bottom:560.319027pt;}
.y12_c00183{bottom:586.240053pt;}
.y11_c00183{bottom:612.799800pt;}
.y10_c00183{bottom:639.679733pt;}
.yf_c00183{bottom:668.479987pt;}
.ye_c00183{bottom:693.440293pt;}
.yd_c00183{bottom:719.679867pt;}
.yc_c00183{bottom:746.239627pt;}
.yb_c00183{bottom:773.119547pt;}
.ya_c00183{bottom:799.360760pt;}
.y9_c00183{bottom:799.361080pt;}
.y8_c00183{bottom:825.600667pt;}
.y7_c00183{bottom:878.720173pt;}
.y6_c00183{bottom:905.600093pt;}
.y5_c00183{bottom:932.160640pt;}
.y4_c00183{bottom:959.040533pt;}
.y3_c00183{bottom:959.040573pt;}
.y2_c00183{bottom:985.280147pt;}
.y1_c00183{bottom:1012.160080pt;}
.h6_c00183{height:9.734375pt;}
.h8_c00183{height:27.812500pt;}
.h1b_c00183{height:39.632812pt;}
.h1c_c00183{height:41.718750pt;}
.ha_c00183{height:44.143229pt;}
.h1d_c00183{height:45.460938pt;}
.h4_c00183{height:57.109375pt;}
.h10_c00183{height:64.664062pt;}
.h13_c00183{height:65.359375pt;}
.h16_c00183{height:66.083984pt;}
.he_c00183{height:66.738281pt;}
.h15_c00183{height:67.392578pt;}
.hd_c00183{height:67.859375pt;}
.h2_c00183{height:68.046875pt;}
.h11_c00183{height:68.140625pt;}
.h1_c00183{height:68.701172pt;}
.h3_c00183{height:69.355469pt;}
.h1a_c00183{height:69.875000pt;}
.hf_c00183{height:69.974935pt;}
.h19_c00183{height:70.009766pt;}
.h14_c00183{height:70.497396pt;}
.h18_c00183{height:70.546875pt;}
.h17_c00183{height:72.590820pt;}
.h5_c00183{height:73.234375pt;}
.h7_c00183{height:74.398438pt;}
.h9_c00183{height:79.960938pt;}
.hb_c00183{height:89.695312pt;}
.hc_c00183{height:90.390625pt;}
.h12_c00183{height:93.867188pt;}
.h0_c00183{height:1122.666667pt;}
.w0_c00183{width:793.333333pt;}
.x0_c00183{left:0.000000pt;}
.x1c_c00183{left:123.839760pt;}
.x4_c00183{left:124.798813pt;}
.x1_c00183{left:125.759747pt;}
.x2_c00183{left:127.042240pt;}
.x5_c00183{left:143.679200pt;}
.x2a_c00183{left:160.960000pt;}
.x1e_c00183{left:172.480267pt;}
.x1d_c00183{left:173.757733pt;}
.xb_c00183{left:177.279720pt;}
.xc_c00183{left:188.799333pt;}
.xd_c00183{left:189.758787pt;}
.x22_c00183{left:191.679200pt;}
.x2b_c00183{left:195.839333pt;}
.xe_c00183{left:228.159733pt;}
.x2c_c00183{left:234.878920pt;}
.x6_c00183{left:241.599587pt;}
.xf_c00183{left:254.399453pt;}
.x10_c00183{left:259.519067pt;}
.x7_c00183{left:260.799333pt;}
.x23_c00183{left:286.719720pt;}
.x11_c00183{left:290.879867pt;}
.x12_c00183{left:291.839333pt;}
.x24_c00183{left:326.078680pt;}
.x8_c00183{left:338.879867pt;}
.x20_c00183{left:344.639613pt;}
.x13_c00183{left:362.559040pt;}
.x9_c00183{left:367.999467pt;}
.x21_c00183{left:372.159707pt;}
.x14_c00183{left:398.718787pt;}
.x15_c00183{left:413.759720pt;}
.x16_c00183{left:481.278773pt;}
.x25_c00183{left:486.079067pt;}
.x1a_c00183{left:491.838907pt;}
.x1b_c00183{left:515.198693pt;}
.x26_c00183{left:531.839320pt;}
.x2d_c00183{left:537.599040pt;}
.x2e_c00183{left:545.598680pt;}
.x27_c00183{left:556.479453pt;}
.x17_c00183{left:577.918907pt;}
.x18_c00183{left:589.439987pt;}
.x2f_c00183{left:595.519040pt;}
.x28_c00183{left:608.958907pt;}
.x30_c00183{left:612.159707pt;}
.x29_c00183{left:621.118693pt;}
.x19_c00183{left:658.879307pt;}
.x1f_c00183{left:671.359867pt;}
.x3_c00183{left:675.199173pt;}
.xa_c00183{left:679.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d8b7ac7fecf3b3b1d4f5a3d.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_a2ba0151541862986f61a8a3.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_ac9cdcc615454f5b0c6ce88d.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00184{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.lse_c00184{letter-spacing:-15.990450px;}
.lsc_c00184{letter-spacing:-8.640000px;}
.ls15_c00184{letter-spacing:-7.576538px;}
.ls12_c00184{letter-spacing:-7.195703px;}
.ls9_c00184{letter-spacing:-6.811875px;}
.lsb_c00184{letter-spacing:-6.055875px;}
.lsd_c00184{letter-spacing:-5.725425px;}
.ls6_c00184{letter-spacing:-5.300663px;}
.lsa_c00184{letter-spacing:-4.543088px;}
.lsf_c00184{letter-spacing:-3.993975px;}
.ls8_c00184{letter-spacing:-3.787875px;}
.ls11_c00184{letter-spacing:-3.201728px;}
.ls3_c00184{letter-spacing:-3.031875px;}
.ls10_c00184{letter-spacing:-2.400750px;}
.ls4_c00184{letter-spacing:-2.267213px;}
.ls5_c00184{letter-spacing:-1.512000px;}
.ls7_c00184{letter-spacing:-0.756000px;}
.ls2_c00184{letter-spacing:0.000000px;}
.ls1_c00184{letter-spacing:0.800250px;}
.ls13_c00184{letter-spacing:2.596620px;}
.ls14_c00184{letter-spacing:3.726810px;}
.ls0_c00184{letter-spacing:3.787875px;}
.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;}
._9_c00184{margin-left:-36.266932px;}
._18_c00184{margin-left:-30.618139px;}
._16_c00184{margin-left:-6.126144px;}
._1_c00184{margin-left:-4.411878px;}
._5_c00184{margin-left:-3.137582px;}
._15_c00184{margin-left:-1.377580px;}
._7_c00184{width:1.937371px;}
._2_c00184{width:3.636554px;}
._0_c00184{width:4.937625px;}
._6_c00184{width:6.315387px;}
._3_c00184{width:7.874576px;}
._8_c00184{width:9.462418px;}
._4_c00184{width:11.147547px;}
._11_c00184{width:12.503501px;}
._b_c00184{width:13.552088px;}
._a_c00184{width:14.844254px;}
._14_c00184{width:16.063728px;}
._13_c00184{width:19.494260px;}
._12_c00184{width:20.741660px;}
._19_c00184{width:22.632508px;}
._f_c00184{width:25.278750px;}
._10_c00184{width:26.478597px;}
._c_c00184{width:28.152701px;}
._d_c00184{width:29.720916px;}
._e_c00184{width:45.580924px;}
._17_c00184{width:47.491200px;}
.fc0_c00184{color:transparent;}
.fs2_c00184{font-size:72.000000px;}
.fs3_c00184{font-size:72.750000px;}
.fs4_c00184{font-size:78.000000px;}
.fs0_c00184{font-size:78.750000px;}
.fs5_c00184{font-size:81.000000px;}
.fs6_c00184{font-size:84.750000px;}
.fs1_c00184{font-size:115.500000px;}
.y0_c00184{bottom:0.000000px;}
.y13_c00184{bottom:659.519070px;}
.y11_c00184{bottom:689.399070px;}
.y12_c00184{bottom:689.399820px;}
.y10_c00184{bottom:719.278800px;}
.yf_c00184{bottom:749.159370px;}
.ye_c00184{bottom:779.039880px;}
.yd_c00184{bottom:809.279805px;}
.yc_c00184{bottom:839.159520px;}
.yb_c00184{bottom:869.039250px;}
.ya_c00184{bottom:898.558770px;}
.y9_c00184{bottom:928.078305px;}
.y8_c00184{bottom:958.318215px;}
.y7_c00184{bottom:988.560240px;}
.y6_c00184{bottom:1047.958920px;}
.y5_c00184{bottom:1047.959475px;}
.y4_c00184{bottom:1078.559880px;}
.y2_c00184{bottom:1108.079265px;}
.y3_c00184{bottom:1108.079400px;}
.y1_c00184{bottom:1138.319190px;}
.h3_c00184{height:75.093750px;}
.h4_c00184{height:75.875977px;}
.h5_c00184{height:76.552734px;}
.h1_c00184{height:77.288818px;}
.h6_c00184{height:79.497070px;}
.h7_c00184{height:83.177490px;}
.h2_c00184{height:120.462891px;}
.h0_c00184{height:1263.000000px;}
.w0_c00184{width:892.500000px;}
.x0_c00184{left:0.000000px;}
.x6_c00184{left:137.884695px;}
.x1_c00184{left:138.958350px;}
.x2_c00184{left:157.319850px;}
.x7_c00184{left:240.839535px;}
.x8_c00184{left:312.479235px;}
.xc_c00184{left:346.319850px;}
.xd_c00184{left:361.439685px;}
.x5_c00184{left:467.638500px;}
.x9_c00184{left:508.679070px;}
.xa_c00184{left:532.080000px;}
.x3_c00184{left:700.198785px;}
.x4_c00184{left:716.759085px;}
.xb_c00184{left:761.759535px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.lse_c00184{letter-spacing:-14.213733pt;}
.lsc_c00184{letter-spacing:-7.680000pt;}
.ls15_c00184{letter-spacing:-6.734700pt;}
.ls12_c00184{letter-spacing:-6.396180pt;}
.ls9_c00184{letter-spacing:-6.055000pt;}
.lsb_c00184{letter-spacing:-5.383000pt;}
.lsd_c00184{letter-spacing:-5.089267pt;}
.ls6_c00184{letter-spacing:-4.711700pt;}
.lsa_c00184{letter-spacing:-4.038300pt;}
.lsf_c00184{letter-spacing:-3.550200pt;}
.ls8_c00184{letter-spacing:-3.367000pt;}
.ls11_c00184{letter-spacing:-2.845980pt;}
.ls3_c00184{letter-spacing:-2.695000pt;}
.ls10_c00184{letter-spacing:-2.134000pt;}
.ls4_c00184{letter-spacing:-2.015300pt;}
.ls5_c00184{letter-spacing:-1.344000pt;}
.ls7_c00184{letter-spacing:-0.672000pt;}
.ls2_c00184{letter-spacing:0.000000pt;}
.ls1_c00184{letter-spacing:0.711333pt;}
.ls13_c00184{letter-spacing:2.308107pt;}
.ls14_c00184{letter-spacing:3.312720pt;}
.ls0_c00184{letter-spacing:3.367000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
._9_c00184{margin-left:-32.237272pt;}
._18_c00184{margin-left:-27.216124pt;}
._16_c00184{margin-left:-5.445462pt;}
._1_c00184{margin-left:-3.921669pt;}
._5_c00184{margin-left:-2.788962pt;}
._15_c00184{margin-left:-1.224515pt;}
._7_c00184{width:1.722108pt;}
._2_c00184{width:3.232492pt;}
._0_c00184{width:4.389000pt;}
._6_c00184{width:5.613677pt;}
._3_c00184{width:6.999623pt;}
._8_c00184{width:8.411038pt;}
._4_c00184{width:9.908931pt;}
._11_c00184{width:11.114223pt;}
._b_c00184{width:12.046300pt;}
._a_c00184{width:13.194892pt;}
._14_c00184{width:14.278869pt;}
._13_c00184{width:17.328231pt;}
._12_c00184{width:18.437031pt;}
._19_c00184{width:20.117785pt;}
._f_c00184{width:22.470000pt;}
._10_c00184{width:23.536531pt;}
._c_c00184{width:25.024623pt;}
._d_c00184{width:26.418592pt;}
._e_c00184{width:40.516377pt;}
._17_c00184{width:42.214400pt;}
.fs2_c00184{font-size:64.000000pt;}
.fs3_c00184{font-size:64.666667pt;}
.fs4_c00184{font-size:69.333333pt;}
.fs0_c00184{font-size:70.000000pt;}
.fs5_c00184{font-size:72.000000pt;}
.fs6_c00184{font-size:75.333333pt;}
.fs1_c00184{font-size:102.666667pt;}
.y0_c00184{bottom:0.000000pt;}
.y13_c00184{bottom:586.239173pt;}
.y11_c00184{bottom:612.799173pt;}
.y12_c00184{bottom:612.799840pt;}
.y10_c00184{bottom:639.358933pt;}
.yf_c00184{bottom:665.919440pt;}
.ye_c00184{bottom:692.479893pt;}
.yd_c00184{bottom:719.359827pt;}
.yc_c00184{bottom:745.919573pt;}
.yb_c00184{bottom:772.479333pt;}
.ya_c00184{bottom:798.718907pt;}
.y9_c00184{bottom:824.958493pt;}
.y8_c00184{bottom:851.838413pt;}
.y7_c00184{bottom:878.720213pt;}
.y6_c00184{bottom:931.519040pt;}
.y5_c00184{bottom:931.519533pt;}
.y4_c00184{bottom:958.719893pt;}
.y2_c00184{bottom:984.959347pt;}
.y3_c00184{bottom:984.959467pt;}
.y1_c00184{bottom:1011.839280pt;}
.h3_c00184{height:66.750000pt;}
.h4_c00184{height:67.445312pt;}
.h5_c00184{height:68.046875pt;}
.h1_c00184{height:68.701172pt;}
.h6_c00184{height:70.664062pt;}
.h7_c00184{height:73.935547pt;}
.h2_c00184{height:107.078125pt;}
.h0_c00184{height:1122.666667pt;}
.w0_c00184{width:793.333333pt;}
.x0_c00184{left:0.000000pt;}
.x6_c00184{left:122.564173pt;}
.x1_c00184{left:123.518533pt;}
.x2_c00184{left:139.839867pt;}
.x7_c00184{left:214.079587pt;}
.x8_c00184{left:277.759320pt;}
.xc_c00184{left:307.839867pt;}
.xd_c00184{left:321.279720pt;}
.x5_c00184{left:415.678667pt;}
.x9_c00184{left:452.159173pt;}
.xa_c00184{left:472.960000pt;}
.x3_c00184{left:622.398920pt;}
.x4_c00184{left:637.119187pt;}
.xb_c00184{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c06e13569a6d6d72aa25613.woff2')format("woff");}.ff1_c00185{font-family:ff1_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:ff2_c00185;src:url('chunks/assets/font_964e1b09be1fbe89eddf2f42.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.432129;font-style:normal;font-weight:normal;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_5b942f0b703e6a299cc2278d.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_868d6aae18914fc4c43cd169.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.364746;font-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_c00185{transform:matrix(0.132653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132653,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{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);}
.m4_c00185{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls4_c00185{letter-spacing:-7.071435px;}
.ls2_c00185{letter-spacing:-3.086100px;}
.ls0_c00185{letter-spacing:-2.353583px;}
.ls1_c00185{letter-spacing:-0.761400px;}
.ls3_c00185{letter-spacing:0.000000px;}
.ls5_c00185{letter-spacing:0.790447px;}
.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;}
.fs5_c00185{font-size:42.750000px;}
.fs2_c00185{font-size:45.000000px;}
.fs3_c00185{font-size:50.250000px;}
.fs4_c00185{font-size:73.500000px;}
.fs1_c00185{font-size:81.000000px;}
.fs0_c00185{font-size:81.750000px;}
.y0_c00185{bottom:0.000000px;}
.y2_c00185{bottom:448.201035px;}
.y1_c00185{bottom:1125.000555px;}
.h6_c00185{height:44.586914px;}
.h3_c00185{height:46.933594px;}
.h4_c00185{height:52.409180px;}
.h5_c00185{height:72.638672px;}
.h2_c00185{height:81.632812px;}
.h1_c00185{height:82.388672px;}
.h0_c00185{height:1263.000000px;}
.w0_c00185{width:892.500000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:108.359250px;}
.x2_c00185{left:167.759565px;}
.x3_c00185{left:198.358635px;}
.x4_c00185{left:256.679700px;}
.x5_c00185{left:281.519100px;}
.x6_c00185{left:560.879520px;}
.x7_c00185{left:624.599070px;}
.x8_c00185{left:684.719520px;}
.x9_c00185{left:698.758530px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls4_c00185{letter-spacing:-6.285720pt;}
.ls2_c00185{letter-spacing:-2.743200pt;}
.ls0_c00185{letter-spacing:-2.092073pt;}
.ls1_c00185{letter-spacing:-0.676800pt;}
.ls3_c00185{letter-spacing:0.000000pt;}
.ls5_c00185{letter-spacing:0.702620pt;}
.ws0_c00185{word-spacing:0.000000pt;}
.fs5_c00185{font-size:38.000000pt;}
.fs2_c00185{font-size:40.000000pt;}
.fs3_c00185{font-size:44.666667pt;}
.fs4_c00185{font-size:65.333333pt;}
.fs1_c00185{font-size:72.000000pt;}
.fs0_c00185{font-size:72.666667pt;}
.y0_c00185{bottom:0.000000pt;}
.y2_c00185{bottom:398.400920pt;}
.y1_c00185{bottom:1000.000493pt;}
.h6_c00185{height:39.632812pt;}
.h3_c00185{height:41.718750pt;}
.h4_c00185{height:46.585938pt;}
.h5_c00185{height:64.567708pt;}
.h2_c00185{height:72.562500pt;}
.h1_c00185{height:73.234375pt;}
.h0_c00185{height:1122.666667pt;}
.w0_c00185{width:793.333333pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:96.319333pt;}
.x2_c00185{left:149.119613pt;}
.x3_c00185{left:176.318787pt;}
.x4_c00185{left:228.159733pt;}
.x5_c00185{left:250.239200pt;}
.x6_c00185{left:498.559573pt;}
.x7_c00185{left:555.199173pt;}
.x8_c00185{left:608.639573pt;}
.x9_c00185{left:621.118693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0aa1dcaa755983024d208a2.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_a703bfd5cfce1d1af1f5953a.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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_b523b2610558e5bc18fbf7ea.woff2')format("woff");}.ff4_c00186{font-family:ff4_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;}
.me_c00186{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.md_c00186{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.lse_c00186{letter-spacing:-6.685875px;}
.ls8_c00186{letter-spacing:-5.945625px;}
.ls1_c00186{letter-spacing:-5.196713px;}
.lsa_c00186{letter-spacing:-4.456463px;}
.ls7_c00186{letter-spacing:-3.717000px;}
.lsc_c00186{letter-spacing:-3.053700px;}
.ls2_c00186{letter-spacing:-2.968875px;}
.ls3_c00186{letter-spacing:-2.229413px;}
.ls4_c00186{letter-spacing:-1.489163px;}
.ls5_c00186{letter-spacing:-0.740250px;}
.ls0_c00186{letter-spacing:0.000000px;}
.ls10_c00186{letter-spacing:1.698300px;}
.lsf_c00186{letter-spacing:2.470950px;}
.lsb_c00186{letter-spacing:2.546685px;}
.ls11_c00186{letter-spacing:3.151800px;}
.ls9_c00186{letter-spacing:3.163050px;}
.ls6_c00186{letter-spacing:3.657795px;}
.lsd_c00186{letter-spacing:7.392825px;}
.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;}
._14_c00186{margin-left:-21.962736px;}
._b_c00186{margin-left:-5.272417px;}
._13_c00186{margin-left:-3.876981px;}
._16_c00186{margin-left:-2.757691px;}
._c_c00186{margin-left:-1.750196px;}
._10_c00186{width:2.094928px;}
._d_c00186{width:3.225184px;}
._f_c00186{width:4.870063px;}
._e_c00186{width:5.942178px;}
._12_c00186{width:7.962160px;}
._0_c00186{width:9.373984px;}
._11_c00186{width:10.868763px;}
._17_c00186{width:12.187632px;}
._15_c00186{width:13.342925px;}
._9_c00186{width:15.293250px;}
._8_c00186{width:17.013789px;}
._a_c00186{width:19.474340px;}
._7_c00186{width:21.091910px;}
._3_c00186{width:24.220885px;}
._4_c00186{width:26.704274px;}
._2_c00186{width:29.525128px;}
._6_c00186{width:30.628178px;}
._1_c00186{width:33.814834px;}
._5_c00186{width:36.240750px;}
.fc0_c00186{color:transparent;}
.fsa_c00186{font-size:69.000000px;}
.fs2_c00186{font-size:74.250000px;}
.fs5_c00186{font-size:76.500000px;}
.fs7_c00186{font-size:77.250000px;}
.fs8_c00186{font-size:78.000000px;}
.fs0_c00186{font-size:78.750000px;}
.fs1_c00186{font-size:79.500000px;}
.fs3_c00186{font-size:80.250000px;}
.fs6_c00186{font-size:81.000000px;}
.fs9_c00186{font-size:82.500000px;}
.fs4_c00186{font-size:84.750000px;}
.y0_c00186{bottom:0.000000px;}
.y27_c00186{bottom:236.879535px;}
.y26_c00186{bottom:266.040000px;}
.y25_c00186{bottom:266.040165px;}
.y23_c00186{bottom:295.558155px;}
.y24_c00186{bottom:295.559685px;}
.y22_c00186{bottom:324.719310px;}
.y21_c00186{bottom:354.599025px;}
.y1f_c00186{bottom:384.838875px;}
.y20_c00186{bottom:384.838950px;}
.y1e_c00186{bottom:415.078785px;}
.y1d_c00186{bottom:444.600135px;}
.y1c_c00186{bottom:444.600225px;}
.y1b_c00186{bottom:474.840135px;}
.y1a_c00186{bottom:488.158770px;}
.y18_c00186{bottom:504.359580px;}
.y19_c00186{bottom:504.359850px;}
.y17_c00186{bottom:533.518620px;}
.y16_c00186{bottom:533.518815px;}
.y15_c00186{bottom:562.679970px;}
.y14_c00186{bottom:592.559685px;}
.y13_c00186{bottom:592.559745px;}
.y12_c00186{bottom:622.439460px;}
.y10_c00186{bottom:682.558590px;}
.y11_c00186{bottom:682.559100px;}
.yf_c00186{bottom:741.959655px;}
.ye_c00186{bottom:771.479190px;}
.yd_c00186{bottom:800.998905px;}
.yc_c00186{bottom:800.999880px;}
.yb_c00186{bottom:831.239805px;}
.ya_c00186{bottom:861.119520px;}
.y9_c00186{bottom:891.359430px;}
.y7_c00186{bottom:920.878830px;}
.y8_c00186{bottom:920.878965px;}
.y5_c00186{bottom:951.118260px;}
.y6_c00186{bottom:951.118740px;}
.y4_c00186{bottom:980.639610px;}
.y3_c00186{bottom:1010.519325px;}
.y2_c00186{bottom:1039.680480px;}
.y1_c00186{bottom:1099.800105px;}
.hb_c00186{height:71.964844px;}
.h3_c00186{height:72.872314px;}
.hc_c00186{height:75.080566px;}
.hd_c00186{height:75.778931px;}
.h9_c00186{height:76.552734px;}
.h6_c00186{height:77.097656px;}
.h1_c00186{height:77.288818px;}
.h8_c00186{height:77.853516px;}
.h2_c00186{height:78.024902px;}
.h4_c00186{height:78.760986px;}
.h7_c00186{height:79.497070px;}
.ha_c00186{height:80.969238px;}
.h5_c00186{height:83.177490px;}
.h0_c00186{height:1263.000000px;}
.w0_c00186{width:892.500000px;}
.x0_c00186{left:0.000000px;}
.x14_c00186{left:98.998950px;}
.x2_c00186{left:136.798710px;}
.x1_c00186{left:137.878950px;}
.xd_c00186{left:169.559100px;}
.x5_c00186{left:196.559100px;}
.x6_c00186{left:233.998950px;}
.x7_c00186{left:248.398635px;}
.x1f_c00186{left:310.318800px;}
.x20_c00186{left:325.799535px;}
.x8_c00186{left:379.799535px;}
.x10_c00186{left:390.239220px;}
.x9_c00186{left:394.199385px;}
.x11_c00186{left:406.079400px;}
.x12_c00186{left:466.559100px;}
.x15_c00186{left:472.679670px;}
.x19_c00186{left:480.238770px;}
.x13_c00186{left:481.319820px;}
.x16_c00186{left:502.558635px;}
.xa_c00186{left:511.198785px;}
.x3_c00186{left:521.999400px;}
.x1a_c00186{left:540.718500px;}
.x4_c00186{left:545.398635px;}
.x1b_c00186{left:643.679070px;}
.x17_c00186{left:646.198785px;}
.xe_c00186{left:652.678530px;}
.xb_c00186{left:654.479685px;}
.x1c_c00186{left:659.878320px;}
.xf_c00186{left:667.798560px;}
.x18_c00186{left:682.918350px;}
.xc_c00186{left:699.839535px;}
.x1d_c00186{left:748.798560px;}
.x1e_c00186{left:765.358605px;}
.x21_c00186{left:769.679715px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.lse_c00186{letter-spacing:-5.943000pt;}
.ls8_c00186{letter-spacing:-5.285000pt;}
.ls1_c00186{letter-spacing:-4.619300pt;}
.lsa_c00186{letter-spacing:-3.961300pt;}
.ls7_c00186{letter-spacing:-3.304000pt;}
.lsc_c00186{letter-spacing:-2.714400pt;}
.ls2_c00186{letter-spacing:-2.639000pt;}
.ls3_c00186{letter-spacing:-1.981700pt;}
.ls4_c00186{letter-spacing:-1.323700pt;}
.ls5_c00186{letter-spacing:-0.658000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ls10_c00186{letter-spacing:1.509600pt;}
.lsf_c00186{letter-spacing:2.196400pt;}
.lsb_c00186{letter-spacing:2.263720pt;}
.ls11_c00186{letter-spacing:2.801600pt;}
.ls9_c00186{letter-spacing:2.811600pt;}
.ls6_c00186{letter-spacing:3.251373pt;}
.lsd_c00186{letter-spacing:6.571400pt;}
.ws0_c00186{word-spacing:0.000000pt;}
._14_c00186{margin-left:-19.522432pt;}
._b_c00186{margin-left:-4.686592pt;}
._13_c00186{margin-left:-3.446206pt;}
._16_c00186{margin-left:-2.451281pt;}
._c_c00186{margin-left:-1.555730pt;}
._10_c00186{width:1.862158pt;}
._d_c00186{width:2.866830pt;}
._f_c00186{width:4.328945pt;}
._e_c00186{width:5.281936pt;}
._12_c00186{width:7.077475pt;}
._0_c00186{width:8.332430pt;}
._11_c00186{width:9.661123pt;}
._17_c00186{width:10.833451pt;}
._15_c00186{width:11.860377pt;}
._9_c00186{width:13.594000pt;}
._8_c00186{width:15.123368pt;}
._a_c00186{width:17.310525pt;}
._7_c00186{width:18.748364pt;}
._3_c00186{width:21.529675pt;}
._4_c00186{width:23.737132pt;}
._2_c00186{width:26.244558pt;}
._6_c00186{width:27.225047pt;}
._1_c00186{width:30.057630pt;}
._5_c00186{width:32.214000pt;}
.fsa_c00186{font-size:61.333333pt;}
.fs2_c00186{font-size:66.000000pt;}
.fs5_c00186{font-size:68.000000pt;}
.fs7_c00186{font-size:68.666667pt;}
.fs8_c00186{font-size:69.333333pt;}
.fs0_c00186{font-size:70.000000pt;}
.fs1_c00186{font-size:70.666667pt;}
.fs3_c00186{font-size:71.333333pt;}
.fs6_c00186{font-size:72.000000pt;}
.fs9_c00186{font-size:73.333333pt;}
.fs4_c00186{font-size:75.333333pt;}
.y0_c00186{bottom:0.000000pt;}
.y27_c00186{bottom:210.559587pt;}
.y26_c00186{bottom:236.480000pt;}
.y25_c00186{bottom:236.480147pt;}
.y23_c00186{bottom:262.718360pt;}
.y24_c00186{bottom:262.719720pt;}
.y22_c00186{bottom:288.639387pt;}
.y21_c00186{bottom:315.199133pt;}
.y1f_c00186{bottom:342.079000pt;}
.y20_c00186{bottom:342.079067pt;}
.y1e_c00186{bottom:368.958920pt;}
.y1d_c00186{bottom:395.200120pt;}
.y1c_c00186{bottom:395.200200pt;}
.y1b_c00186{bottom:422.080120pt;}
.y1a_c00186{bottom:433.918907pt;}
.y18_c00186{bottom:448.319627pt;}
.y19_c00186{bottom:448.319867pt;}
.y17_c00186{bottom:474.238773pt;}
.y16_c00186{bottom:474.238947pt;}
.y15_c00186{bottom:500.159973pt;}
.y14_c00186{bottom:526.719720pt;}
.y13_c00186{bottom:526.719773pt;}
.y12_c00186{bottom:553.279520pt;}
.y10_c00186{bottom:606.718747pt;}
.y11_c00186{bottom:606.719200pt;}
.yf_c00186{bottom:659.519693pt;}
.ye_c00186{bottom:685.759280pt;}
.yd_c00186{bottom:711.999027pt;}
.yc_c00186{bottom:711.999893pt;}
.yb_c00186{bottom:738.879827pt;}
.ya_c00186{bottom:765.439573pt;}
.y9_c00186{bottom:792.319493pt;}
.y7_c00186{bottom:818.558960pt;}
.y8_c00186{bottom:818.559080pt;}
.y5_c00186{bottom:845.438453pt;}
.y6_c00186{bottom:845.438880pt;}
.y4_c00186{bottom:871.679653pt;}
.y3_c00186{bottom:898.239400pt;}
.y2_c00186{bottom:924.160427pt;}
.y1_c00186{bottom:977.600093pt;}
.hb_c00186{height:63.968750pt;}
.h3_c00186{height:64.775391pt;}
.hc_c00186{height:66.738281pt;}
.hd_c00186{height:67.359049pt;}
.h9_c00186{height:68.046875pt;}
.h6_c00186{height:68.531250pt;}
.h1_c00186{height:68.701172pt;}
.h8_c00186{height:69.203125pt;}
.h2_c00186{height:69.355469pt;}
.h4_c00186{height:70.009766pt;}
.h7_c00186{height:70.664062pt;}
.ha_c00186{height:71.972656pt;}
.h5_c00186{height:73.935547pt;}
.h0_c00186{height:1122.666667pt;}
.w0_c00186{width:793.333333pt;}
.x0_c00186{left:0.000000pt;}
.x14_c00186{left:87.999067pt;}
.x2_c00186{left:121.598853pt;}
.x1_c00186{left:122.559067pt;}
.xd_c00186{left:150.719200pt;}
.x5_c00186{left:174.719200pt;}
.x6_c00186{left:207.999067pt;}
.x7_c00186{left:220.798787pt;}
.x1f_c00186{left:275.838933pt;}
.x20_c00186{left:289.599587pt;}
.x8_c00186{left:337.599587pt;}
.x10_c00186{left:346.879307pt;}
.x9_c00186{left:350.399453pt;}
.x11_c00186{left:360.959467pt;}
.x12_c00186{left:414.719200pt;}
.x15_c00186{left:420.159707pt;}
.x19_c00186{left:426.878907pt;}
.x13_c00186{left:427.839840pt;}
.x16_c00186{left:446.718787pt;}
.xa_c00186{left:454.398920pt;}
.x3_c00186{left:463.999467pt;}
.x1a_c00186{left:480.638667pt;}
.x4_c00186{left:484.798787pt;}
.x1b_c00186{left:572.159173pt;}
.x17_c00186{left:574.398920pt;}
.xe_c00186{left:580.158693pt;}
.xb_c00186{left:581.759720pt;}
.x1c_c00186{left:586.558507pt;}
.xf_c00186{left:593.598720pt;}
.x18_c00186{left:607.038533pt;}
.xc_c00186{left:622.079587pt;}
.x1d_c00186{left:665.598720pt;}
.x1e_c00186{left:680.318760pt;}
.x21_c00186{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_838fcb4b4f282f3ab0302fa3.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_84158aae2ddc805f40b3248c.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_4be3fe7cb1cc56af1c01ede3.woff2')format("woff");}.ff3_c00187{font-family:ff3_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;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_1e0d9fd88d8ab08990a78025.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_98c7bb210e1a8147a653375d.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00187;src:url('chunks/assets/font_f47005fb4624cf9753d5e48a.woff2')format("woff");}.ff7_c00187{font-family:ff7_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00187{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{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);}
.m22_c00187{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{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);}
.m3_c00187{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.me_c00187{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_c00187{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1c_c00187{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m11_c00187{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls12_c00187{letter-spacing:-8.175038px;}
.lsb_c00187{letter-spacing:-8.022345px;}
.ls9_c00187{letter-spacing:-7.426125px;}
.ls1f_c00187{letter-spacing:-6.749550px;}
.ls13_c00187{letter-spacing:-5.945625px;}
.ls1d_c00187{letter-spacing:-5.394683px;}
.ls5_c00187{letter-spacing:-5.196713px;}
.ls15_c00187{letter-spacing:-4.456463px;}
.ls22_c00187{letter-spacing:-4.371705px;}
.ls8_c00187{letter-spacing:-3.717000px;}
.ls10_c00187{letter-spacing:-3.715575px;}
.ls1b_c00187{letter-spacing:-3.651375px;}
.ls21_c00187{letter-spacing:-3.519765px;}
.ls1c_c00187{letter-spacing:-3.300885px;}
.ls1_c00187{letter-spacing:-3.028950px;}
.ls1a_c00187{letter-spacing:-3.000375px;}
.ls2_c00187{letter-spacing:-2.968875px;}
.ls29_c00187{letter-spacing:-2.475000px;}
.ls25_c00187{letter-spacing:-2.249100px;}
.ls3_c00187{letter-spacing:-2.229413px;}
.ls14_c00187{letter-spacing:-2.208180px;}
.ls1e_c00187{letter-spacing:-1.815000px;}
.lsa_c00187{letter-spacing:-1.638038px;}
.ls20_c00187{letter-spacing:-1.531710px;}
.ls4_c00187{letter-spacing:-1.489163px;}
.lse_c00187{letter-spacing:-1.487850px;}
.ls24_c00187{letter-spacing:-1.484700px;}
.lsf_c00187{letter-spacing:-0.756000px;}
.ls7_c00187{letter-spacing:-0.740250px;}
.lsd_c00187{letter-spacing:0.000000px;}
.ls28_c00187{letter-spacing:0.811125px;}
.ls19_c00187{letter-spacing:1.617000px;}
.ls6_c00187{letter-spacing:2.813250px;}
.ls16_c00187{letter-spacing:3.864840px;}
.ls23_c00187{letter-spacing:3.913950px;}
.ls17_c00187{letter-spacing:4.456463px;}
.lsc_c00187{letter-spacing:4.591125px;}
.ls18_c00187{letter-spacing:4.740000px;}
.ls27_c00187{letter-spacing:4.779825px;}
.ls11_c00187{letter-spacing:5.123250px;}
.ls0_c00187{letter-spacing:5.196713px;}
.ls26_c00187{letter-spacing:6.181200px;}
.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;}
._f_c00187{margin-left:-6.987161px;}
._e_c00187{margin-left:-4.874982px;}
._1_c00187{margin-left:-2.616342px;}
._7_c00187{margin-left:-1.409536px;}
._c_c00187{width:1.032264px;}
._4_c00187{width:2.181256px;}
._3_c00187{width:3.802882px;}
._13_c00187{width:4.841684px;}
._0_c00187{width:6.087524px;}
._5_c00187{width:7.419186px;}
._2_c00187{width:8.993399px;}
._8_c00187{width:11.316108px;}
._b_c00187{width:12.694262px;}
._9_c00187{width:13.893342px;}
._d_c00187{width:15.563675px;}
._6_c00187{width:17.237201px;}
._16_c00187{width:18.561524px;}
._12_c00187{width:19.818106px;}
._10_c00187{width:22.302357px;}
._17_c00187{width:23.534972px;}
._a_c00187{width:25.176717px;}
._18_c00187{width:26.517978px;}
._11_c00187{width:27.643687px;}
._15_c00187{width:29.521651px;}
._14_c00187{width:32.461285px;}
.fc0_c00187{color:transparent;}
.fs3_c00187{font-size:71.250000px;}
.fsd_c00187{font-size:72.750000px;}
.fsa_c00187{font-size:73.500000px;}
.fs7_c00187{font-size:74.250000px;}
.fs9_c00187{font-size:75.000000px;}
.fsf_c00187{font-size:75.750000px;}
.fsc_c00187{font-size:76.500000px;}
.fs10_c00187{font-size:77.250000px;}
.fs8_c00187{font-size:78.000000px;}
.fs1_c00187{font-size:78.750000px;}
.fs0_c00187{font-size:79.500000px;}
.fs6_c00187{font-size:80.250000px;}
.fsb_c00187{font-size:81.000000px;}
.fs5_c00187{font-size:81.750000px;}
.fs2_c00187{font-size:82.500000px;}
.fs4_c00187{font-size:84.000000px;}
.fse_c00187{font-size:84.750000px;}
.y0_c00187{bottom:0.000000px;}
.y27_c00187{bottom:186.478110px;}
.y28_c00187{bottom:186.478665px;}
.y26_c00187{bottom:215.639265px;}
.y25_c00187{bottom:245.158785px;}
.y24_c00187{bottom:245.158980px;}
.y23_c00187{bottom:274.678500px;}
.y22_c00187{bottom:274.680135px;}
.y21_c00187{bottom:304.920045px;}
.y20_c00187{bottom:334.799760px;}
.y1f_c00187{bottom:393.838530px;}
.y1e_c00187{bottom:423.719100px;}
.y1d_c00187{bottom:423.719235px;}
.y1c_c00187{bottom:453.238770px;}
.y1b_c00187{bottom:483.478665px;}
.y1a_c00187{bottom:513.000000px;}
.y19_c00187{bottom:513.000135px;}
.y18_c00187{bottom:542.519670px;}
.y17_c00187{bottom:542.519805px;}
.y16_c00187{bottom:572.039340px;}
.y15_c00187{bottom:602.279250px;}
.y14_c00187{bottom:602.280600px;}
.y13_c00187{bottom:631.800135px;}
.y12_c00187{bottom:661.679850px;}
.y11_c00187{bottom:691.199385px;}
.y10_c00187{bottom:691.199565px;}
.yf_c00187{bottom:720.719100px;}
.ye_c00187{bottom:751.319820px;}
.yd_c00187{bottom:751.320495px;}
.yb_c00187{bottom:810.357765px;}
.yc_c00187{bottom:810.359250px;}
.ya_c00187{bottom:840.597675px;}
.y9_c00187{bottom:869.758830px;}
.y8_c00187{bottom:899.638545px;}
.y7_c00187{bottom:899.639745px;}
.y6_c00187{bottom:929.519460px;}
.y5_c00187{bottom:989.278905px;}
.y4_c00187{bottom:1048.679970px;}
.y3_c00187{bottom:1078.559685px;}
.y2_c00187{bottom:1108.079265px;}
.y1_c00187{bottom:1138.319190px;}
.h14_c00187{height:71.400146px;}
.ha_c00187{height:72.872314px;}
.hd_c00187{height:73.608398px;}
.h16_c00187{height:74.074219px;}
.h4_c00187{height:74.311523px;}
.h19_c00187{height:75.816650px;}
.h18_c00187{height:76.341797px;}
.hb_c00187{height:76.552734px;}
.he_c00187{height:76.658203px;}
.h17_c00187{height:77.097656px;}
.h2_c00187{height:77.288818px;}
.h1_c00187{height:78.024902px;}
.h1a_c00187{height:78.222656px;}
.h9_c00187{height:78.760986px;}
.h6_c00187{height:79.365234px;}
.h13_c00187{height:79.787109px;}
.h5_c00187{height:80.121094px;}
.h8_c00187{height:80.233154px;}
.hf_c00187{height:80.876953px;}
.h11_c00187{height:80.928955px;}
.h3_c00187{height:80.969238px;}
.h12_c00187{height:81.632812px;}
.h10_c00187{height:82.388672px;}
.hc_c00187{height:82.441406px;}
.h7_c00187{height:83.015625px;}
.h15_c00187{height:83.177490px;}
.h0_c00187{height:1263.000000px;}
.w0_c00187{width:892.500000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:143.999400px;}
.x11_c00187{left:145.077960px;}
.x5_c00187{left:163.799565px;}
.x2_c00187{left:169.199850px;}
.x6_c00187{left:194.759535px;}
.x14_c00187{left:199.078530px;}
.x36_c00187{left:200.159985px;}
.x2b_c00187{left:201.238905px;}
.x2e_c00187{left:214.198785px;}
.x7_c00187{left:231.838515px;}
.x12_c00187{left:240.119385px;}
.x8_c00187{left:250.199850px;}
.x15_c00187{left:257.038950px;}
.x13_c00187{left:264.238785px;}
.x37_c00187{left:269.279850px;}
.x16_c00187{left:279.358635px;}
.x9_c00187{left:298.438635px;}
.x38_c00187{left:308.519100px;}
.x17_c00187{left:355.678530px;}
.x2c_c00187{left:372.599700px;}
.x18_c00187{left:379.438635px;}
.x3_c00187{left:385.199850px;}
.x2d_c00187{left:388.798920px;}
.x19_c00187{left:397.798515px;}
.x34_c00187{left:401.758530px;}
.x4_c00187{left:408.599070px;}
.x39_c00187{left:412.918350px;}
.x35_c00187{left:417.239220px;}
.xa_c00187{left:428.758530px;}
.x1f_c00187{left:433.079400px;}
.x3d_c00187{left:443.519070px;}
.x1a_c00187{left:461.519670px;}
.x27_c00187{left:462.599070px;}
.x20_c00187{left:463.678530px;}
.x3a_c00187{left:465.118785px;}
.xb_c00187{left:481.319820px;}
.x1b_c00187{left:484.559685px;}
.xc_c00187{left:502.558635px;}
.x21_c00187{left:512.639100px;}
.x2f_c00187{left:523.798920px;}
.x22_c00187{left:525.959385px;}
.x1c_c00187{left:536.399235px;}
.x30_c00187{left:549.358665px;}
.x3b_c00187{left:578.519070px;}
.x3c_c00187{left:592.918950px;}
.x25_c00187{left:601.559100px;}
.x1d_c00187{left:605.519070px;}
.x26_c00187{left:621.718545px;}
.x31_c00187{left:642.958920px;}
.xd_c00187{left:646.559685px;}
.xe_c00187{left:659.519070px;}
.xf_c00187{left:675.718545px;}
.x32_c00187{left:676.799520px;}
.x28_c00187{left:697.319820px;}
.x10_c00187{left:701.279850px;}
.x1e_c00187{left:704.519670px;}
.x29_c00187{left:733.678530px;}
.x33_c00187{left:738.719520px;}
.x2a_c00187{left:750.599670px;}
.x23_c00187{left:752.758530px;}
.x24_c00187{left:767.878320px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls12_c00187{letter-spacing:-7.266700pt;}
.lsb_c00187{letter-spacing:-7.130973pt;}
.ls9_c00187{letter-spacing:-6.601000pt;}
.ls1f_c00187{letter-spacing:-5.999600pt;}
.ls13_c00187{letter-spacing:-5.285000pt;}
.ls1d_c00187{letter-spacing:-4.795273pt;}
.ls5_c00187{letter-spacing:-4.619300pt;}
.ls15_c00187{letter-spacing:-3.961300pt;}
.ls22_c00187{letter-spacing:-3.885960pt;}
.ls8_c00187{letter-spacing:-3.304000pt;}
.ls10_c00187{letter-spacing:-3.302733pt;}
.ls1b_c00187{letter-spacing:-3.245667pt;}
.ls21_c00187{letter-spacing:-3.128680pt;}
.ls1c_c00187{letter-spacing:-2.934120pt;}
.ls1_c00187{letter-spacing:-2.692400pt;}
.ls1a_c00187{letter-spacing:-2.667000pt;}
.ls2_c00187{letter-spacing:-2.639000pt;}
.ls29_c00187{letter-spacing:-2.200000pt;}
.ls25_c00187{letter-spacing:-1.999200pt;}
.ls3_c00187{letter-spacing:-1.981700pt;}
.ls14_c00187{letter-spacing:-1.962827pt;}
.ls1e_c00187{letter-spacing:-1.613333pt;}
.lsa_c00187{letter-spacing:-1.456033pt;}
.ls20_c00187{letter-spacing:-1.361520pt;}
.ls4_c00187{letter-spacing:-1.323700pt;}
.lse_c00187{letter-spacing:-1.322533pt;}
.ls24_c00187{letter-spacing:-1.319733pt;}
.lsf_c00187{letter-spacing:-0.672000pt;}
.ls7_c00187{letter-spacing:-0.658000pt;}
.lsd_c00187{letter-spacing:0.000000pt;}
.ls28_c00187{letter-spacing:0.721000pt;}
.ls19_c00187{letter-spacing:1.437333pt;}
.ls6_c00187{letter-spacing:2.500667pt;}
.ls16_c00187{letter-spacing:3.435413pt;}
.ls23_c00187{letter-spacing:3.479067pt;}
.ls17_c00187{letter-spacing:3.961300pt;}
.lsc_c00187{letter-spacing:4.081000pt;}
.ls18_c00187{letter-spacing:4.213333pt;}
.ls27_c00187{letter-spacing:4.248733pt;}
.ls11_c00187{letter-spacing:4.554000pt;}
.ls0_c00187{letter-spacing:4.619300pt;}
.ls26_c00187{letter-spacing:5.494400pt;}
.ws0_c00187{word-spacing:0.000000pt;}
._f_c00187{margin-left:-6.210809pt;}
._e_c00187{margin-left:-4.333317pt;}
._1_c00187{margin-left:-2.325638pt;}
._7_c00187{margin-left:-1.252921pt;}
._c_c00187{width:0.917568pt;}
._4_c00187{width:1.938894pt;}
._3_c00187{width:3.380340pt;}
._13_c00187{width:4.303719pt;}
._0_c00187{width:5.411132pt;}
._5_c00187{width:6.594832pt;}
._2_c00187{width:7.994132pt;}
._8_c00187{width:10.058762pt;}
._b_c00187{width:11.283789pt;}
._9_c00187{width:12.349638pt;}
._d_c00187{width:13.834377pt;}
._6_c00187{width:15.321957pt;}
._16_c00187{width:16.499132pt;}
._12_c00187{width:17.616094pt;}
._10_c00187{width:19.824317pt;}
._17_c00187{width:20.919975pt;}
._a_c00187{width:22.379304pt;}
._18_c00187{width:23.571536pt;}
._11_c00187{width:24.572166pt;}
._15_c00187{width:26.241468pt;}
._14_c00187{width:28.854475pt;}
.fs3_c00187{font-size:63.333333pt;}
.fsd_c00187{font-size:64.666667pt;}
.fsa_c00187{font-size:65.333333pt;}
.fs7_c00187{font-size:66.000000pt;}
.fs9_c00187{font-size:66.666667pt;}
.fsf_c00187{font-size:67.333333pt;}
.fsc_c00187{font-size:68.000000pt;}
.fs10_c00187{font-size:68.666667pt;}
.fs8_c00187{font-size:69.333333pt;}
.fs1_c00187{font-size:70.000000pt;}
.fs0_c00187{font-size:70.666667pt;}
.fs6_c00187{font-size:71.333333pt;}
.fsb_c00187{font-size:72.000000pt;}
.fs5_c00187{font-size:72.666667pt;}
.fs2_c00187{font-size:73.333333pt;}
.fs4_c00187{font-size:74.666667pt;}
.fse_c00187{font-size:75.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y27_c00187{bottom:165.758320pt;}
.y28_c00187{bottom:165.758813pt;}
.y26_c00187{bottom:191.679347pt;}
.y25_c00187{bottom:217.918920pt;}
.y24_c00187{bottom:217.919093pt;}
.y23_c00187{bottom:244.158667pt;}
.y22_c00187{bottom:244.160120pt;}
.y21_c00187{bottom:271.040040pt;}
.y20_c00187{bottom:297.599787pt;}
.y1f_c00187{bottom:350.078693pt;}
.y1e_c00187{bottom:376.639200pt;}
.y1d_c00187{bottom:376.639320pt;}
.y1c_c00187{bottom:402.878907pt;}
.y1b_c00187{bottom:429.758813pt;}
.y1a_c00187{bottom:456.000000pt;}
.y19_c00187{bottom:456.000120pt;}
.y18_c00187{bottom:482.239707pt;}
.y17_c00187{bottom:482.239827pt;}
.y16_c00187{bottom:508.479413pt;}
.y15_c00187{bottom:535.359333pt;}
.y14_c00187{bottom:535.360533pt;}
.y13_c00187{bottom:561.600120pt;}
.y12_c00187{bottom:588.159867pt;}
.y11_c00187{bottom:614.399453pt;}
.y10_c00187{bottom:614.399613pt;}
.yf_c00187{bottom:640.639200pt;}
.ye_c00187{bottom:667.839840pt;}
.yd_c00187{bottom:667.840440pt;}
.yb_c00187{bottom:720.318013pt;}
.yc_c00187{bottom:720.319333pt;}
.ya_c00187{bottom:747.197933pt;}
.y9_c00187{bottom:773.118960pt;}
.y8_c00187{bottom:799.678707pt;}
.y7_c00187{bottom:799.679773pt;}
.y6_c00187{bottom:826.239520pt;}
.y5_c00187{bottom:879.359027pt;}
.y4_c00187{bottom:932.159973pt;}
.y3_c00187{bottom:958.719720pt;}
.y2_c00187{bottom:984.959347pt;}
.y1_c00187{bottom:1011.839280pt;}
.h14_c00187{height:63.466797pt;}
.ha_c00187{height:64.775391pt;}
.hd_c00187{height:65.429688pt;}
.h16_c00187{height:65.843750pt;}
.h4_c00187{height:66.054688pt;}
.h19_c00187{height:67.392578pt;}
.h18_c00187{height:67.859375pt;}
.hb_c00187{height:68.046875pt;}
.he_c00187{height:68.140625pt;}
.h17_c00187{height:68.531250pt;}
.h2_c00187{height:68.701172pt;}
.h1_c00187{height:69.355469pt;}
.h1a_c00187{height:69.531250pt;}
.h9_c00187{height:70.009766pt;}
.h6_c00187{height:70.546875pt;}
.h13_c00187{height:70.921875pt;}
.h5_c00187{height:71.218750pt;}
.h8_c00187{height:71.318359pt;}
.hf_c00187{height:71.890625pt;}
.h11_c00187{height:71.936849pt;}
.h3_c00187{height:71.972656pt;}
.h12_c00187{height:72.562500pt;}
.h10_c00187{height:73.234375pt;}
.hc_c00187{height:73.281250pt;}
.h7_c00187{height:73.791667pt;}
.h15_c00187{height:73.935547pt;}
.h0_c00187{height:1122.666667pt;}
.w0_c00187{width:793.333333pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:127.999467pt;}
.x11_c00187{left:128.958187pt;}
.x5_c00187{left:145.599613pt;}
.x2_c00187{left:150.399867pt;}
.x6_c00187{left:173.119587pt;}
.x14_c00187{left:176.958693pt;}
.x36_c00187{left:177.919987pt;}
.x2b_c00187{left:178.879027pt;}
.x2e_c00187{left:190.398920pt;}
.x7_c00187{left:206.078680pt;}
.x12_c00187{left:213.439453pt;}
.x8_c00187{left:222.399867pt;}
.x15_c00187{left:228.479067pt;}
.x13_c00187{left:234.878920pt;}
.x37_c00187{left:239.359867pt;}
.x16_c00187{left:248.318787pt;}
.x9_c00187{left:265.278787pt;}
.x38_c00187{left:274.239200pt;}
.x17_c00187{left:316.158693pt;}
.x2c_c00187{left:331.199733pt;}
.x18_c00187{left:337.278787pt;}
.x3_c00187{left:342.399867pt;}
.x2d_c00187{left:345.599040pt;}
.x19_c00187{left:353.598680pt;}
.x34_c00187{left:357.118693pt;}
.x4_c00187{left:363.199173pt;}
.x39_c00187{left:367.038533pt;}
.x35_c00187{left:370.879307pt;}
.xa_c00187{left:381.118693pt;}
.x1f_c00187{left:384.959467pt;}
.x3d_c00187{left:394.239173pt;}
.x1a_c00187{left:410.239707pt;}
.x27_c00187{left:411.199173pt;}
.x20_c00187{left:412.158693pt;}
.x3a_c00187{left:413.438920pt;}
.xb_c00187{left:427.839840pt;}
.x1b_c00187{left:430.719720pt;}
.xc_c00187{left:446.718787pt;}
.x21_c00187{left:455.679200pt;}
.x2f_c00187{left:465.599040pt;}
.x22_c00187{left:467.519453pt;}
.x1c_c00187{left:476.799320pt;}
.x30_c00187{left:488.318813pt;}
.x3b_c00187{left:514.239173pt;}
.x3c_c00187{left:527.039067pt;}
.x25_c00187{left:534.719200pt;}
.x1d_c00187{left:538.239173pt;}
.x26_c00187{left:552.638707pt;}
.x31_c00187{left:571.519040pt;}
.xd_c00187{left:574.719720pt;}
.xe_c00187{left:586.239173pt;}
.xf_c00187{left:600.638707pt;}
.x32_c00187{left:601.599573pt;}
.x28_c00187{left:619.839840pt;}
.x10_c00187{left:623.359867pt;}
.x1e_c00187{left:626.239707pt;}
.x29_c00187{left:652.158693pt;}
.x33_c00187{left:656.639573pt;}
.x2a_c00187{left:667.199707pt;}
.x23_c00187{left:669.118693pt;}
.x24_c00187{left:682.558507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1189e5f6c52505859f425733.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_5d4c5048e3fffbd7db5192d7.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_62e40c3afa4a575b93932376.woff2')format("woff");}.ff3_c00188{font-family:ff3_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:ff4_c00188;src:url('chunks/assets/font_34e6703004621ec1052fa82d.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.311035;font-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_c00188{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{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_c00188{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.v1_c00188{vertical-align:-1.433520px;}
.v0_c00188{vertical-align:0.000000px;}
.lsd_c00188{letter-spacing:-16.054200px;}
.ls14_c00188{letter-spacing:-7.426125px;}
.ls13_c00188{letter-spacing:-6.685875px;}
.ls8_c00188{letter-spacing:-5.945625px;}
.ls7_c00188{letter-spacing:-5.196713px;}
.ls12_c00188{letter-spacing:-4.960800px;}
.ls5_c00188{letter-spacing:-4.456463px;}
.lse_c00188{letter-spacing:-4.260600px;}
.ls3_c00188{letter-spacing:-3.717000px;}
.lsc_c00188{letter-spacing:-3.025425px;}
.ls2_c00188{letter-spacing:-2.968875px;}
.ls1_c00188{letter-spacing:-2.229413px;}
.lsa_c00188{letter-spacing:-1.530150px;}
.ls11_c00188{letter-spacing:-1.515510px;}
.ls4_c00188{letter-spacing:-1.489163px;}
.ls9_c00188{letter-spacing:-0.740250px;}
.ls6_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.740250px;}
.ls10_c00188{letter-spacing:0.826200px;}
.lsb_c00188{letter-spacing:1.489163px;}
.lsf_c00188{letter-spacing:5.134500px;}
.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;}
._13_c00188{margin-left:-5.931762px;}
._12_c00188{margin-left:-3.265688px;}
._18_c00188{margin-left:-2.133813px;}
._4_c00188{margin-left:-1.046587px;}
._5_c00188{width:1.494883px;}
._6_c00188{width:3.271929px;}
._2_c00188{width:4.411545px;}
._0_c00188{width:6.131683px;}
._1_c00188{width:7.149906px;}
._7_c00188{width:8.663837px;}
._3_c00188{width:10.210294px;}
._8_c00188{width:12.036685px;}
._9_c00188{width:13.868142px;}
._a_c00188{width:15.729272px;}
._15_c00188{width:19.617531px;}
._14_c00188{width:21.215101px;}
._b_c00188{width:22.411983px;}
._19_c00188{width:23.621820px;}
._c_c00188{width:25.368778px;}
._17_c00188{width:26.877583px;}
._1b_c00188{width:28.198443px;}
._16_c00188{width:29.598143px;}
._11_c00188{width:31.028704px;}
._10_c00188{width:32.605130px;}
._d_c00188{width:33.942454px;}
._e_c00188{width:36.245936px;}
._f_c00188{width:40.122679px;}
._1a_c00188{width:41.257363px;}
.fc0_c00188{color:transparent;}
.fs4_c00188{font-size:21.000000px;}
.fs7_c00188{font-size:75.000000px;}
.fs3_c00188{font-size:75.750000px;}
.fs8_c00188{font-size:76.500000px;}
.fs9_c00188{font-size:78.000000px;}
.fs0_c00188{font-size:78.750000px;}
.fs2_c00188{font-size:80.250000px;}
.fs5_c00188{font-size:81.000000px;}
.fsa_c00188{font-size:81.750000px;}
.fs1_c00188{font-size:82.500000px;}
.fs6_c00188{font-size:84.750000px;}
.y0_c00188{bottom:0.000000px;}
.y24_c00188{bottom:218.519850px;}
.y23_c00188{bottom:248.039385px;}
.y22_c00188{bottom:248.041215px;}
.y21_c00188{bottom:277.920930px;}
.y20_c00188{bottom:307.078170px;}
.y1f_c00188{bottom:366.479235px;}
.y1e_c00188{bottom:430.918950px;}
.y1d_c00188{bottom:455.760135px;}
.y1c_c00188{bottom:455.760315px;}
.y1b_c00188{bottom:485.279850px;}
.y1a_c00188{bottom:485.279985px;}
.y19_c00188{bottom:514.799520px;}
.y18_c00188{bottom:575.280105px;}
.y16_c00188{bottom:605.159205px;}
.y17_c00188{bottom:605.159820px;}
.y14_c00188{bottom:635.038425px;}
.y15_c00188{bottom:635.038920px;}
.y13_c00188{bottom:663.839385px;}
.y12_c00188{bottom:693.719100px;}
.y11_c00188{bottom:753.480285px;}
.y10_c00188{bottom:753.480420px;}
.yf_c00188{bottom:783.360150px;}
.yd_c00188{bottom:813.239730px;}
.ye_c00188{bottom:813.239865px;}
.yc_c00188{bottom:843.479640px;}
.yb_c00188{bottom:843.480015px;}
.ya_c00188{bottom:872.999535px;}
.y9_c00188{bottom:902.519070px;}
.y8_c00188{bottom:963.359115px;}
.y7_c00188{bottom:992.520270px;}
.y6_c00188{bottom:1022.399235px;}
.y5_c00188{bottom:1022.399415px;}
.y4_c00188{bottom:1051.918950px;}
.y3_c00188{bottom:1051.919880px;}
.y2_c00188{bottom:1081.799610px;}
.y1_c00188{bottom:1141.559055px;}
.h5_c00188{height:21.902344px;}
.h4_c00188{height:74.307495px;}
.hd_c00188{height:76.552734px;}
.hb_c00188{height:77.097656px;}
.h1_c00188{height:77.288818px;}
.ha_c00188{height:78.222656px;}
.h3_c00188{height:78.760986px;}
.h9_c00188{height:79.365234px;}
.h6_c00188{height:79.457520px;}
.hc_c00188{height:79.497070px;}
.he_c00188{height:80.233154px;}
.h2_c00188{height:80.969238px;}
.h8_c00188{height:81.632812px;}
.h7_c00188{height:83.177490px;}
.h0_c00188{height:1263.000000px;}
.w0_c00188{width:892.500000px;}
.x0_c00188{left:0.000000px;}
.x18_c00188{left:142.918350px;}
.x5_c00188{left:197.999400px;}
.x1_c00188{left:199.439685px;}
.x19_c00188{left:219.599100px;}
.x10_c00188{left:257.399850px;}
.xc_c00188{left:262.439250px;}
.x6_c00188{left:267.478635px;}
.x1a_c00188{left:273.239850px;}
.xf_c00188{left:280.439685px;}
.x2_c00188{left:282.959400px;}
.x1b_c00188{left:288.359850px;}
.x3_c00188{left:297.718500px;}
.x11_c00188{left:322.559685px;}
.xb_c00188{left:336.598530px;}
.x12_c00188{left:345.958950px;}
.x16_c00188{left:378.718530px;}
.x17_c00188{left:393.479235px;}
.xd_c00188{left:470.159820px;}
.xe_c00188{left:497.519070px;}
.x13_c00188{left:551.878320px;}
.x15_c00188{left:566.639100px;}
.x14_c00188{left:570.239820px;}
.x1f_c00188{left:600.838950px;}
.x1c_c00188{left:617.039985px;}
.x20_c00188{left:618.478635px;}
.x9_c00188{left:631.798920px;}
.x1d_c00188{left:639.719100px;}
.xa_c00188{left:650.158770px;}
.x1e_c00188{left:656.638545px;}
.x7_c00188{left:690.838530px;}
.x8_c00188{left:704.878920px;}
.x4_c00188{left:775.079955px;}
@media print{
.v1_c00188{vertical-align:-1.274240pt;}
.v0_c00188{vertical-align:0.000000pt;}
.lsd_c00188{letter-spacing:-14.270400pt;}
.ls14_c00188{letter-spacing:-6.601000pt;}
.ls13_c00188{letter-spacing:-5.943000pt;}
.ls8_c00188{letter-spacing:-5.285000pt;}
.ls7_c00188{letter-spacing:-4.619300pt;}
.ls12_c00188{letter-spacing:-4.409600pt;}
.ls5_c00188{letter-spacing:-3.961300pt;}
.lse_c00188{letter-spacing:-3.787200pt;}
.ls3_c00188{letter-spacing:-3.304000pt;}
.lsc_c00188{letter-spacing:-2.689267pt;}
.ls2_c00188{letter-spacing:-2.639000pt;}
.ls1_c00188{letter-spacing:-1.981700pt;}
.lsa_c00188{letter-spacing:-1.360133pt;}
.ls11_c00188{letter-spacing:-1.347120pt;}
.ls4_c00188{letter-spacing:-1.323700pt;}
.ls9_c00188{letter-spacing:-0.658000pt;}
.ls6_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.658000pt;}
.ls10_c00188{letter-spacing:0.734400pt;}
.lsb_c00188{letter-spacing:1.323700pt;}
.lsf_c00188{letter-spacing:4.564000pt;}
.ws0_c00188{word-spacing:0.000000pt;}
._13_c00188{margin-left:-5.272677pt;}
._12_c00188{margin-left:-2.902834pt;}
._18_c00188{margin-left:-1.896723pt;}
._4_c00188{margin-left:-0.930300pt;}
._5_c00188{width:1.328785pt;}
._6_c00188{width:2.908381pt;}
._2_c00188{width:3.921374pt;}
._0_c00188{width:5.450385pt;}
._1_c00188{width:6.355472pt;}
._7_c00188{width:7.701189pt;}
._3_c00188{width:9.075817pt;}
._8_c00188{width:10.699275pt;}
._9_c00188{width:12.327238pt;}
._a_c00188{width:13.981575pt;}
._15_c00188{width:17.437806pt;}
._14_c00188{width:18.857868pt;}
._b_c00188{width:19.921762pt;}
._19_c00188{width:20.997174pt;}
._c_c00188{width:22.550025pt;}
._17_c00188{width:23.891185pt;}
._1b_c00188{width:25.065283pt;}
._16_c00188{width:26.309460pt;}
._11_c00188{width:27.581070pt;}
._10_c00188{width:28.982338pt;}
._d_c00188{width:30.171070pt;}
._e_c00188{width:32.218609pt;}
._f_c00188{width:35.664604pt;}
._1a_c00188{width:36.673211pt;}
.fs4_c00188{font-size:18.666667pt;}
.fs7_c00188{font-size:66.666667pt;}
.fs3_c00188{font-size:67.333333pt;}
.fs8_c00188{font-size:68.000000pt;}
.fs9_c00188{font-size:69.333333pt;}
.fs0_c00188{font-size:70.000000pt;}
.fs2_c00188{font-size:71.333333pt;}
.fs5_c00188{font-size:72.000000pt;}
.fsa_c00188{font-size:72.666667pt;}
.fs1_c00188{font-size:73.333333pt;}
.fs6_c00188{font-size:75.333333pt;}
.y0_c00188{bottom:0.000000pt;}
.y24_c00188{bottom:194.239867pt;}
.y23_c00188{bottom:220.479453pt;}
.y22_c00188{bottom:220.481080pt;}
.y21_c00188{bottom:247.040827pt;}
.y20_c00188{bottom:272.958373pt;}
.y1f_c00188{bottom:325.759320pt;}
.y1e_c00188{bottom:383.039067pt;}
.y1d_c00188{bottom:405.120120pt;}
.y1c_c00188{bottom:405.120280pt;}
.y1b_c00188{bottom:431.359867pt;}
.y1a_c00188{bottom:431.359987pt;}
.y19_c00188{bottom:457.599573pt;}
.y18_c00188{bottom:511.360093pt;}
.y16_c00188{bottom:537.919293pt;}
.y17_c00188{bottom:537.919840pt;}
.y14_c00188{bottom:564.478600pt;}
.y15_c00188{bottom:564.479040pt;}
.y13_c00188{bottom:590.079453pt;}
.y12_c00188{bottom:616.639200pt;}
.y11_c00188{bottom:669.760253pt;}
.y10_c00188{bottom:669.760373pt;}
.yf_c00188{bottom:696.320133pt;}
.yd_c00188{bottom:722.879760pt;}
.ye_c00188{bottom:722.879880pt;}
.yc_c00188{bottom:749.759680pt;}
.yb_c00188{bottom:749.760013pt;}
.ya_c00188{bottom:775.999587pt;}
.y9_c00188{bottom:802.239173pt;}
.y8_c00188{bottom:856.319213pt;}
.y7_c00188{bottom:882.240240pt;}
.y6_c00188{bottom:908.799320pt;}
.y5_c00188{bottom:908.799480pt;}
.y4_c00188{bottom:935.039067pt;}
.y3_c00188{bottom:935.039893pt;}
.y2_c00188{bottom:961.599653pt;}
.y1_c00188{bottom:1014.719160pt;}
.h5_c00188{height:19.468750pt;}
.h4_c00188{height:66.051107pt;}
.hd_c00188{height:68.046875pt;}
.hb_c00188{height:68.531250pt;}
.h1_c00188{height:68.701172pt;}
.ha_c00188{height:69.531250pt;}
.h3_c00188{height:70.009766pt;}
.h9_c00188{height:70.546875pt;}
.h6_c00188{height:70.628906pt;}
.hc_c00188{height:70.664062pt;}
.he_c00188{height:71.318359pt;}
.h2_c00188{height:71.972656pt;}
.h8_c00188{height:72.562500pt;}
.h7_c00188{height:73.935547pt;}
.h0_c00188{height:1122.666667pt;}
.w0_c00188{width:793.333333pt;}
.x0_c00188{left:0.000000pt;}
.x18_c00188{left:127.038533pt;}
.x5_c00188{left:175.999467pt;}
.x1_c00188{left:177.279720pt;}
.x19_c00188{left:195.199200pt;}
.x10_c00188{left:228.799867pt;}
.xc_c00188{left:233.279333pt;}
.x6_c00188{left:237.758787pt;}
.x1a_c00188{left:242.879867pt;}
.xf_c00188{left:249.279720pt;}
.x2_c00188{left:251.519467pt;}
.x1b_c00188{left:256.319867pt;}
.x3_c00188{left:264.638667pt;}
.x11_c00188{left:286.719720pt;}
.xb_c00188{left:299.198693pt;}
.x12_c00188{left:307.519067pt;}
.x16_c00188{left:336.638693pt;}
.x17_c00188{left:349.759320pt;}
.xd_c00188{left:417.919840pt;}
.xe_c00188{left:442.239173pt;}
.x13_c00188{left:490.558507pt;}
.x15_c00188{left:503.679200pt;}
.x14_c00188{left:506.879840pt;}
.x1f_c00188{left:534.079067pt;}
.x1c_c00188{left:548.479987pt;}
.x20_c00188{left:549.758787pt;}
.x9_c00188{left:561.599040pt;}
.x1d_c00188{left:568.639200pt;}
.xa_c00188{left:577.918907pt;}
.x1e_c00188{left:583.678707pt;}
.x7_c00188{left:614.078693pt;}
.x8_c00188{left:626.559040pt;}
.x4_c00188{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b95fc04107e23cf50a32bb63.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_92be9b85e22f605634bf6dff.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.432129;font-style:normal;font-weight:normal;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_1e6752fdd01419602550ca55.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_d18e6d36716e3494a2d6d081.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_65a9926ec16aa0cc0867981b.woff2')format("woff");}.ff5_c00189{font-family:ff5_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:ff6_c00189;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:1.432129;font-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_c00189{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00189{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m18_c00189{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.m1c_c00189{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1d_c00189{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1b_c00189{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m14_c00189{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m15_c00189{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m16_c00189{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);}
.m19_c00189{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m6_c00189{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m0_c00189{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m1a_c00189{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.m1e_c00189{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m8_c00189{transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);}
.m13_c00189{transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);}
.m10_c00189{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_c00189{transform:matrix(0.385593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385593,0.000000,0.000000,0.250000,0,0);}
.mf_c00189{transform:matrix(0.386905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386905,0.000000,0.000000,0.250000,0,0);}
.md_c00189{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.me_c00189{transform:matrix(0.420732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420732,0.000000,0.000000,0.250000,0,0);}
.mb_c00189{transform:matrix(0.439655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439655,0.000000,0.000000,0.250000,0,0);}
.mc_c00189{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.ma_c00189{transform:matrix(0.508621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508621,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.598684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598684,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls7_c00189{letter-spacing:-8.914500px;}
.ls23_c00189{letter-spacing:-8.175038px;}
.ls13_c00189{letter-spacing:-8.100810px;}
.ls10_c00189{letter-spacing:-7.426125px;}
.ls24_c00189{letter-spacing:-6.685875px;}
.ls8_c00189{letter-spacing:-6.000300px;}
.lsc_c00189{letter-spacing:-5.945625px;}
.lsf_c00189{letter-spacing:-5.196713px;}
.ls29_c00189{letter-spacing:-4.946273px;}
.ls14_c00189{letter-spacing:-4.456463px;}
.lsa_c00189{letter-spacing:-3.717000px;}
.ls9_c00189{letter-spacing:-2.968875px;}
.ls28_c00189{letter-spacing:-2.661330px;}
.ls22_c00189{letter-spacing:-2.429325px;}
.ls12_c00189{letter-spacing:-2.271878px;}
.ls6_c00189{letter-spacing:-2.229413px;}
.ls16_c00189{letter-spacing:-2.004900px;}
.ls26_c00189{letter-spacing:-1.627500px;}
.lse_c00189{letter-spacing:-1.489163px;}
.ls2a_c00189{letter-spacing:-0.816750px;}
.ls11_c00189{letter-spacing:-0.740250px;}
.ls1d_c00189{letter-spacing:-0.485100px;}
.lsb_c00189{letter-spacing:0.000000px;}
.ls1f_c00189{letter-spacing:1.254285px;}
.ls1a_c00189{letter-spacing:1.279118px;}
.ls2b_c00189{letter-spacing:1.823310px;}
.ls0_c00189{letter-spacing:2.229413px;}
.ls17_c00189{letter-spacing:3.836700px;}
.lsd_c00189{letter-spacing:4.115700px;}
.ls1c_c00189{letter-spacing:4.455675px;}
.ls27_c00189{letter-spacing:4.968405px;}
.ls21_c00189{letter-spacing:5.393550px;}
.ls1b_c00189{letter-spacing:6.205815px;}
.ls1e_c00189{letter-spacing:6.429712px;}
.ls5_c00189{letter-spacing:6.748125px;}
.ls2_c00189{letter-spacing:7.499933px;}
.ls3_c00189{letter-spacing:8.248200px;}
.ls4_c00189{letter-spacing:9.748718px;}
.ls1_c00189{letter-spacing:10.500525px;}
.ls20_c00189{letter-spacing:13.129418px;}
.ls18_c00189{letter-spacing:13.500675px;}
.ls15_c00189{letter-spacing:15.000750px;}
.ls19_c00189{letter-spacing:16.588725px;}
.ls25_c00189{letter-spacing:19.408950px;}
.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;}
._18_c00189{margin-left:-10.320782px;}
._1d_c00189{margin-left:-8.801430px;}
._1b_c00189{margin-left:-6.580350px;}
._17_c00189{margin-left:-4.100408px;}
._1f_c00189{margin-left:-2.344254px;}
._1c_c00189{margin-left:-1.247578px;}
._3_c00189{width:1.477231px;}
._1_c00189{width:2.559969px;}
._2_c00189{width:4.175696px;}
._10_c00189{width:5.697473px;}
._4_c00189{width:7.347642px;}
._9_c00189{width:8.822749px;}
._0_c00189{width:10.294601px;}
._5_c00189{width:11.953656px;}
._6_c00189{width:14.455528px;}
._a_c00189{width:15.694400px;}
._19_c00189{width:17.390541px;}
._8_c00189{width:18.994916px;}
._7_c00189{width:20.231410px;}
._20_c00189{width:21.664392px;}
._e_c00189{width:22.854320px;}
._d_c00189{width:24.147127px;}
._b_c00189{width:26.192072px;}
._1e_c00189{width:28.129342px;}
._1a_c00189{width:29.677443px;}
._c_c00189{width:30.791577px;}
._12_c00189{width:32.841841px;}
._22_c00189{width:34.170026px;}
._13_c00189{width:35.439788px;}
._f_c00189{width:36.658363px;}
._16_c00189{width:37.897368px;}
._21_c00189{width:39.619274px;}
._14_c00189{width:42.223179px;}
._23_c00189{width:44.498044px;}
._15_c00189{width:46.354092px;}
._24_c00189{width:47.369730px;}
._25_c00189{width:50.903762px;}
._11_c00189{width:56.676108px;}
.fc0_c00189{color:transparent;}
.fsa_c00189{font-size:19.500000px;}
.fs9_c00189{font-size:21.750000px;}
.fsd_c00189{font-size:28.500000px;}
.fs7_c00189{font-size:30.750000px;}
.fsb_c00189{font-size:31.500000px;}
.fsc_c00189{font-size:33.750000px;}
.fs8_c00189{font-size:43.500000px;}
.fs6_c00189{font-size:44.250000px;}
.fs13_c00189{font-size:72.750000px;}
.fse_c00189{font-size:74.250000px;}
.fsf_c00189{font-size:75.000000px;}
.fs3_c00189{font-size:76.500000px;}
.fs12_c00189{font-size:77.250000px;}
.fs14_c00189{font-size:78.000000px;}
.fs0_c00189{font-size:78.750000px;}
.fs4_c00189{font-size:80.250000px;}
.fs5_c00189{font-size:81.000000px;}
.fs2_c00189{font-size:82.500000px;}
.fs1_c00189{font-size:84.750000px;}
.fs10_c00189{font-size:85.500000px;}
.fs11_c00189{font-size:87.000000px;}
.y0_c00189{bottom:0.000000px;}
.y2c_c00189{bottom:213.480285px;}
.y2b_c00189{bottom:213.480885px;}
.y2a_c00189{bottom:242.639940px;}
.y29_c00189{bottom:272.161260px;}
.y28_c00189{bottom:301.859850px;}
.y27_c00189{bottom:331.920000px;}
.y26_c00189{bottom:331.921035px;}
.y25_c00189{bottom:361.440555px;}
.y23_c00189{bottom:391.320195px;}
.y24_c00189{bottom:391.320285px;}
.y22_c00189{bottom:420.479235px;}
.y20_c00189{bottom:450.359760px;}
.y21_c00189{bottom:450.359850px;}
.y1f_c00189{bottom:480.599670px;}
.y1e_c00189{bottom:487.799565px;}
.y1d_c00189{bottom:510.480240px;}
.y1b_c00189{bottom:540.719355px;}
.y1c_c00189{bottom:540.720150px;}
.y1a_c00189{bottom:570.599070px;}
.y19_c00189{bottom:570.599970px;}
.y18_c00189{bottom:600.479685px;}
.y17_c00189{bottom:659.158515px;}
.y16_c00189{bottom:688.319670px;}
.y15_c00189{bottom:718.199385px;}
.y14_c00189{bottom:748.080000px;}
.y13_c00189{bottom:751.679070px;}
.y12_c00189{bottom:778.319820px;}
.y11_c00189{bottom:778.320855px;}
.y10_c00189{bottom:808.560765px;}
.yf_c00189{bottom:838.440495px;}
.ye_c00189{bottom:867.960015px;}
.yd_c00189{bottom:867.960075px;}
.yc_c00189{bottom:927.719520px;}
.yb_c00189{bottom:927.720450px;}
.ya_c00189{bottom:957.960360px;}
.y8_c00189{bottom:987.839340px;}
.y9_c00189{bottom:987.840090px;}
.y7_c00189{bottom:1017.719055px;}
.y6_c00189{bottom:1017.719220px;}
.y5_c00189{bottom:1047.240555px;}
.y4_c00189{bottom:1077.120270px;}
.y2_c00189{bottom:1106.999865px;}
.y3_c00189{bottom:1107.000000px;}
.y1_c00189{bottom:1137.239775px;}
.hb_c00189{height:19.271484px;}
.ha_c00189{height:22.684570px;}
.hf_c00189{height:29.724609px;}
.hd_c00189{height:30.179443px;}
.hc_c00189{height:30.915527px;}
.h8_c00189{height:32.071289px;}
.he_c00189{height:33.123779px;}
.h9_c00189{height:45.369141px;}
.h7_c00189{height:46.151367px;}
.h15_c00189{height:73.318359px;}
.h10_c00189{height:74.830078px;}
.h4_c00189{height:75.080566px;}
.h16_c00189{height:76.552734px;}
.h1_c00189{height:77.288818px;}
.h14_c00189{height:77.853516px;}
.h11_c00189{height:78.222656px;}
.h5_c00189{height:78.760986px;}
.h6_c00189{height:79.497070px;}
.h3_c00189{height:80.969238px;}
.h2_c00189{height:83.177490px;}
.h12_c00189{height:83.913574px;}
.h13_c00189{height:85.980469px;}
.h0_c00189{height:1263.000000px;}
.w0_c00189{width:892.500000px;}
.x0_c00189{left:0.000000px;}
.x28_c00189{left:101.879565px;}
.x37_c00189{left:140.037900px;}
.x12_c00189{left:141.117090px;}
.x8_c00189{left:142.206270px;}
.x1_c00189{left:143.279250px;}
.x25_c00189{left:163.438665px;}
.x1b_c00189{left:169.199850px;}
.x26_c00189{left:190.079400px;}
.x22_c00189{left:193.319250px;}
.x29_c00189{left:204.479250px;}
.x27_c00189{left:205.919535px;}
.x3d_c00189{left:219.239850px;}
.x2a_c00189{left:222.479685px;}
.x3e_c00189{left:234.359850px;}
.x2b_c00189{left:245.878950px;}
.x13_c00189{left:251.279250px;}
.x38_c00189{left:255.598500px;}
.x14_c00189{left:265.679100px;}
.x39_c00189{left:271.079385px;}
.x1c_c00189{left:278.638500px;}
.x2_c00189{left:286.199385px;}
.x1d_c00189{left:289.080000px;}
.x15_c00189{left:291.238785px;}
.x3_c00189{left:307.078785px;}
.x2c_c00189{left:312.838515px;}
.xd_c00189{left:321.839535px;}
.x31_c00189{left:357.479685px;}
.x32_c00189{left:374.399235px;}
.x4_c00189{left:379.799535px;}
.x1e_c00189{left:389.519070px;}
.x5_c00189{left:398.159415px;}
.x1f_c00189{left:436.678530px;}
.x2d_c00189{left:438.838950px;}
.x20_c00189{left:464.759535px;}
.x2e_c00189{left:466.559100px;}
.x33_c00189{left:489.599070px;}
.x18_c00189{left:516.599070px;}
.x2f_c00189{left:519.838950px;}
.x3a_c00189{left:525.239220px;}
.xe_c00189{left:531.359850px;}
.x19_c00189{left:538.198785px;}
.x3b_c00189{left:539.279850px;}
.x30_c00189{left:551.159820px;}
.xf_c00189{left:553.679670px;}
.x23_c00189{left:578.159820px;}
.x6_c00189{left:579.239220px;}
.x24_c00189{left:593.639100px;}
.x36_c00189{left:595.799520px;}
.xb_c00189{left:605.878320px;}
.x1a_c00189{left:608.399820px;}
.x7_c00189{left:609.479235px;}
.xc_c00189{left:621.359250px;}
.x34_c00189{left:628.918350px;}
.x35_c00189{left:646.198785px;}
.x9_c00189{left:657.358605px;}
.xa_c00189{left:676.079355px;}
.x16_c00189{left:684.719520px;}
.x10_c00189{left:695.159370px;}
.x17_c00189{left:699.119385px;}
.x11_c00189{left:708.838950px;}
.x21_c00189{left:710.999400px;}
.x3c_c00189{left:762.118785px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls7_c00189{letter-spacing:-7.924000pt;}
.ls23_c00189{letter-spacing:-7.266700pt;}
.ls13_c00189{letter-spacing:-7.200720pt;}
.ls10_c00189{letter-spacing:-6.601000pt;}
.ls24_c00189{letter-spacing:-5.943000pt;}
.ls8_c00189{letter-spacing:-5.333600pt;}
.lsc_c00189{letter-spacing:-5.285000pt;}
.lsf_c00189{letter-spacing:-4.619300pt;}
.ls29_c00189{letter-spacing:-4.396687pt;}
.ls14_c00189{letter-spacing:-3.961300pt;}
.lsa_c00189{letter-spacing:-3.304000pt;}
.ls9_c00189{letter-spacing:-2.639000pt;}
.ls28_c00189{letter-spacing:-2.365627pt;}
.ls22_c00189{letter-spacing:-2.159400pt;}
.ls12_c00189{letter-spacing:-2.019447pt;}
.ls6_c00189{letter-spacing:-1.981700pt;}
.ls16_c00189{letter-spacing:-1.782133pt;}
.ls26_c00189{letter-spacing:-1.446667pt;}
.lse_c00189{letter-spacing:-1.323700pt;}
.ls2a_c00189{letter-spacing:-0.726000pt;}
.ls11_c00189{letter-spacing:-0.658000pt;}
.ls1d_c00189{letter-spacing:-0.431200pt;}
.lsb_c00189{letter-spacing:0.000000pt;}
.ls1f_c00189{letter-spacing:1.114920pt;}
.ls1a_c00189{letter-spacing:1.136993pt;}
.ls2b_c00189{letter-spacing:1.620720pt;}
.ls0_c00189{letter-spacing:1.981700pt;}
.ls17_c00189{letter-spacing:3.410400pt;}
.lsd_c00189{letter-spacing:3.658400pt;}
.ls1c_c00189{letter-spacing:3.960600pt;}
.ls27_c00189{letter-spacing:4.416360pt;}
.ls21_c00189{letter-spacing:4.794267pt;}
.ls1b_c00189{letter-spacing:5.516280pt;}
.ls1e_c00189{letter-spacing:5.715300pt;}
.ls5_c00189{letter-spacing:5.998333pt;}
.ls2_c00189{letter-spacing:6.666607pt;}
.ls3_c00189{letter-spacing:7.331733pt;}
.ls4_c00189{letter-spacing:8.665527pt;}
.ls1_c00189{letter-spacing:9.333800pt;}
.ls20_c00189{letter-spacing:11.670593pt;}
.ls18_c00189{letter-spacing:12.000600pt;}
.ls15_c00189{letter-spacing:13.334000pt;}
.ls19_c00189{letter-spacing:14.745533pt;}
.ls25_c00189{letter-spacing:17.252400pt;}
.ws0_c00189{word-spacing:0.000000pt;}
._18_c00189{margin-left:-9.174028pt;}
._1d_c00189{margin-left:-7.823493pt;}
._1b_c00189{margin-left:-5.849200pt;}
._17_c00189{margin-left:-3.644808pt;}
._1f_c00189{margin-left:-2.083781pt;}
._1c_c00189{margin-left:-1.108958pt;}
._3_c00189{width:1.313094pt;}
._1_c00189{width:2.275528pt;}
._2_c00189{width:3.711730pt;}
._10_c00189{width:5.064421pt;}
._4_c00189{width:6.531238pt;}
._9_c00189{width:7.842443pt;}
._0_c00189{width:9.150757pt;}
._5_c00189{width:10.625472pt;}
._6_c00189{width:12.849358pt;}
._a_c00189{width:13.950577pt;}
._19_c00189{width:15.458258pt;}
._8_c00189{width:16.884370pt;}
._7_c00189{width:17.983475pt;}
._20_c00189{width:19.257238pt;}
._e_c00189{width:20.314951pt;}
._d_c00189{width:21.464113pt;}
._b_c00189{width:23.281842pt;}
._1e_c00189{width:25.003859pt;}
._1a_c00189{width:26.379949pt;}
._c_c00189{width:27.370291pt;}
._12_c00189{width:29.192747pt;}
._22_c00189{width:30.373356pt;}
._13_c00189{width:31.502034pt;}
._f_c00189{width:32.585211pt;}
._16_c00189{width:33.686549pt;}
._21_c00189{width:35.217132pt;}
._14_c00189{width:37.531715pt;}
._23_c00189{width:39.553817pt;}
._15_c00189{width:41.203638pt;}
._24_c00189{width:42.106426pt;}
._25_c00189{width:45.247789pt;}
._11_c00189{width:50.378762pt;}
.fsa_c00189{font-size:17.333333pt;}
.fs9_c00189{font-size:19.333333pt;}
.fsd_c00189{font-size:25.333333pt;}
.fs7_c00189{font-size:27.333333pt;}
.fsb_c00189{font-size:28.000000pt;}
.fsc_c00189{font-size:30.000000pt;}
.fs8_c00189{font-size:38.666667pt;}
.fs6_c00189{font-size:39.333333pt;}
.fs13_c00189{font-size:64.666667pt;}
.fse_c00189{font-size:66.000000pt;}
.fsf_c00189{font-size:66.666667pt;}
.fs3_c00189{font-size:68.000000pt;}
.fs12_c00189{font-size:68.666667pt;}
.fs14_c00189{font-size:69.333333pt;}
.fs0_c00189{font-size:70.000000pt;}
.fs4_c00189{font-size:71.333333pt;}
.fs5_c00189{font-size:72.000000pt;}
.fs2_c00189{font-size:73.333333pt;}
.fs1_c00189{font-size:75.333333pt;}
.fs10_c00189{font-size:76.000000pt;}
.fs11_c00189{font-size:77.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y2c_c00189{bottom:189.760253pt;}
.y2b_c00189{bottom:189.760787pt;}
.y2a_c00189{bottom:215.679947pt;}
.y29_c00189{bottom:241.921120pt;}
.y28_c00189{bottom:268.319867pt;}
.y27_c00189{bottom:295.040000pt;}
.y26_c00189{bottom:295.040920pt;}
.y25_c00189{bottom:321.280493pt;}
.y23_c00189{bottom:347.840173pt;}
.y24_c00189{bottom:347.840253pt;}
.y22_c00189{bottom:373.759320pt;}
.y20_c00189{bottom:400.319787pt;}
.y21_c00189{bottom:400.319867pt;}
.y1f_c00189{bottom:427.199707pt;}
.y1e_c00189{bottom:433.599613pt;}
.y1d_c00189{bottom:453.760213pt;}
.y1b_c00189{bottom:480.639427pt;}
.y1c_c00189{bottom:480.640133pt;}
.y1a_c00189{bottom:507.199173pt;}
.y19_c00189{bottom:507.199973pt;}
.y18_c00189{bottom:533.759720pt;}
.y17_c00189{bottom:585.918680pt;}
.y16_c00189{bottom:611.839707pt;}
.y15_c00189{bottom:638.399453pt;}
.y14_c00189{bottom:664.960000pt;}
.y13_c00189{bottom:668.159173pt;}
.y12_c00189{bottom:691.839840pt;}
.y11_c00189{bottom:691.840760pt;}
.y10_c00189{bottom:718.720680pt;}
.yf_c00189{bottom:745.280440pt;}
.ye_c00189{bottom:771.520013pt;}
.yd_c00189{bottom:771.520067pt;}
.yc_c00189{bottom:824.639573pt;}
.yb_c00189{bottom:824.640400pt;}
.ya_c00189{bottom:851.520320pt;}
.y8_c00189{bottom:878.079413pt;}
.y9_c00189{bottom:878.080080pt;}
.y7_c00189{bottom:904.639160pt;}
.y6_c00189{bottom:904.639307pt;}
.y5_c00189{bottom:930.880493pt;}
.y4_c00189{bottom:957.440240pt;}
.y2_c00189{bottom:983.999880pt;}
.y3_c00189{bottom:984.000000pt;}
.y1_c00189{bottom:1010.879800pt;}
.hb_c00189{height:17.130208pt;}
.ha_c00189{height:20.164062pt;}
.hf_c00189{height:26.421875pt;}
.hd_c00189{height:26.826172pt;}
.hc_c00189{height:27.480469pt;}
.h8_c00189{height:28.507812pt;}
.he_c00189{height:29.443359pt;}
.h9_c00189{height:40.328125pt;}
.h7_c00189{height:41.023438pt;}
.h15_c00189{height:65.171875pt;}
.h10_c00189{height:66.515625pt;}
.h4_c00189{height:66.738281pt;}
.h16_c00189{height:68.046875pt;}
.h1_c00189{height:68.701172pt;}
.h14_c00189{height:69.203125pt;}
.h11_c00189{height:69.531250pt;}
.h5_c00189{height:70.009766pt;}
.h6_c00189{height:70.664062pt;}
.h3_c00189{height:71.972656pt;}
.h2_c00189{height:73.935547pt;}
.h12_c00189{height:74.589844pt;}
.h13_c00189{height:76.427083pt;}
.h0_c00189{height:1122.666667pt;}
.w0_c00189{width:793.333333pt;}
.x0_c00189{left:0.000000pt;}
.x28_c00189{left:90.559613pt;}
.x37_c00189{left:124.478133pt;}
.x12_c00189{left:125.437413pt;}
.x8_c00189{left:126.405573pt;}
.x1_c00189{left:127.359333pt;}
.x25_c00189{left:145.278813pt;}
.x1b_c00189{left:150.399867pt;}
.x26_c00189{left:168.959467pt;}
.x22_c00189{left:171.839333pt;}
.x29_c00189{left:181.759333pt;}
.x27_c00189{left:183.039587pt;}
.x3d_c00189{left:194.879867pt;}
.x2a_c00189{left:197.759720pt;}
.x3e_c00189{left:208.319867pt;}
.x2b_c00189{left:218.559067pt;}
.x13_c00189{left:223.359333pt;}
.x38_c00189{left:227.198667pt;}
.x14_c00189{left:236.159200pt;}
.x39_c00189{left:240.959453pt;}
.x1c_c00189{left:247.678667pt;}
.x2_c00189{left:254.399453pt;}
.x1d_c00189{left:256.960000pt;}
.x15_c00189{left:258.878920pt;}
.x3_c00189{left:272.958920pt;}
.x2c_c00189{left:278.078680pt;}
.xd_c00189{left:286.079587pt;}
.x31_c00189{left:317.759720pt;}
.x32_c00189{left:332.799320pt;}
.x4_c00189{left:337.599587pt;}
.x1e_c00189{left:346.239173pt;}
.x5_c00189{left:353.919480pt;}
.x1f_c00189{left:388.158693pt;}
.x2d_c00189{left:390.079067pt;}
.x20_c00189{left:413.119587pt;}
.x2e_c00189{left:414.719200pt;}
.x33_c00189{left:435.199173pt;}
.x18_c00189{left:459.199173pt;}
.x2f_c00189{left:462.079067pt;}
.x3a_c00189{left:466.879307pt;}
.xe_c00189{left:472.319867pt;}
.x19_c00189{left:478.398920pt;}
.x3b_c00189{left:479.359867pt;}
.x30_c00189{left:489.919840pt;}
.xf_c00189{left:492.159707pt;}
.x23_c00189{left:513.919840pt;}
.x6_c00189{left:514.879307pt;}
.x24_c00189{left:527.679200pt;}
.x36_c00189{left:529.599573pt;}
.xb_c00189{left:538.558507pt;}
.x1a_c00189{left:540.799840pt;}
.x7_c00189{left:541.759320pt;}
.xc_c00189{left:552.319333pt;}
.x34_c00189{left:559.038533pt;}
.x35_c00189{left:574.398920pt;}
.x9_c00189{left:584.318760pt;}
.xa_c00189{left:600.959427pt;}
.x16_c00189{left:608.639573pt;}
.x10_c00189{left:617.919440pt;}
.x17_c00189{left:621.439453pt;}
.x11_c00189{left:630.079067pt;}
.x21_c00189{left:631.999467pt;}
.x3c_c00189{left:677.438920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03ec027d49e08a61304425aa.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_2d9b9747e23e968d6bca1979.woff2')format("woff");}.ff2_c00190{font-family:ff2_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:ff3_c00190;src:url('chunks/assets/font_261489ebd23a7db5470d35bf.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_407a14a39de2b6a07f3e9d66.woff2')format("woff");}.ff4_c00190{font-family:ff4_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:ff5_c00190;src:url('chunks/assets/font_470883e8cc6effda8afc1ef7.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.364746;font-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_c00190{transform:matrix(0.022727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022727,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041667,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.057432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057432,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.106383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106383,0.000000,0.000000,0.250000,0,0);}
.m9_c00190{transform:matrix(0.112994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112994,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.129581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129581,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.145570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145570,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);}
.m17_c00190{transform:matrix(0.155071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155071,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157407,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.158228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158228,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.164706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164706,0.000000,0.000000,0.250000,0,0);}
.m21_c00190{transform:matrix(0.167763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167763,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{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);}
.m19_c00190{transform:matrix(0.173295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173295,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{transform:matrix(0.189759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189759,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{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);}
.m3_c00190{transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266484,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);}
.m16_c00190{transform:matrix(1.054348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.054348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.054348,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls14_c00190{letter-spacing:-18.415658px;}
.ls12_c00190{letter-spacing:-16.112783px;}
.ls19_c00190{letter-spacing:-14.959343px;}
.ls1a_c00190{letter-spacing:-12.662475px;}
.ls22_c00190{letter-spacing:-11.507033px;}
.ls1c_c00190{letter-spacing:-10.359600px;}
.ls13_c00190{letter-spacing:-9.204158px;}
.ls29_c00190{letter-spacing:-8.411100px;}
.ls1d_c00190{letter-spacing:-8.056725px;}
.ls2c_c00190{letter-spacing:-6.908625px;}
.ls1b_c00190{letter-spacing:-5.753850px;}
.ls15_c00190{letter-spacing:-4.605750px;}
.ls16_c00190{letter-spacing:-4.044383px;}
.ls21_c00190{letter-spacing:-3.450975px;}
.ls2b_c00190{letter-spacing:-3.037125px;}
.ls25_c00190{letter-spacing:-2.963723px;}
.ls18_c00190{letter-spacing:-2.302875px;}
.lsc_c00190{letter-spacing:-2.022525px;}
.ls26_c00190{letter-spacing:-1.574625px;}
.ls17_c00190{letter-spacing:-1.148100px;}
.lsb_c00190{letter-spacing:0.000000px;}
.ls1_c00190{letter-spacing:1.014600px;}
.ls1f_c00190{letter-spacing:1.083750px;}
.lsf_c00190{letter-spacing:1.118250px;}
.ls27_c00190{letter-spacing:1.680128px;}
.ls9_c00190{letter-spacing:2.022525px;}
.ls3_c00190{letter-spacing:3.037125px;}
.ls4_c00190{letter-spacing:4.044383px;}
.ls0_c00190{letter-spacing:5.060318px;}
.ls24_c00190{letter-spacing:5.412000px;}
.ls10_c00190{letter-spacing:5.517600px;}
.ls8_c00190{letter-spacing:6.067575px;}
.lse_c00190{letter-spacing:7.081508px;}
.ls5_c00190{letter-spacing:8.090100px;}
.ls23_c00190{letter-spacing:8.714700px;}
.ls2_c00190{letter-spacing:10.112625px;}
.ls28_c00190{letter-spacing:10.816740px;}
.ls7_c00190{letter-spacing:11.127225px;}
.ls2a_c00190{letter-spacing:11.977650px;}
.ls20_c00190{letter-spacing:16.180200px;}
.ls1e_c00190{letter-spacing:17.194800px;}
.lsa_c00190{letter-spacing:18.203392px;}
.lsd_c00190{letter-spacing:20.909918px;}
.ls6_c00190{letter-spacing:26.293493px;}
.ls11_c00190{letter-spacing:643.145100px;}
.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;}
._17_c00190{margin-left:-100.447989px;}
._15_c00190{margin-left:-47.758371px;}
._1b_c00190{margin-left:-4.715665px;}
._22_c00190{margin-left:-3.681141px;}
._f_c00190{width:1.932332px;}
._18_c00190{width:3.083688px;}
._5_c00190{width:5.564604px;}
._23_c00190{width:11.365219px;}
._0_c00190{width:13.195403px;}
._3_c00190{width:17.236225px;}
._16_c00190{width:18.664514px;}
._4_c00190{width:19.825074px;}
._2_c00190{width:21.360324px;}
._11_c00190{width:24.696610px;}
._9_c00190{width:27.336714px;}
._1_c00190{width:50.643225px;}
._14_c00190{width:87.695690px;}
._e_c00190{width:96.761168px;}
._a_c00190{width:98.963090px;}
._c_c00190{width:101.179466px;}
._6_c00190{width:107.171613px;}
._8_c00190{width:109.661757px;}
._12_c00190{width:119.587436px;}
._13_c00190{width:147.864692px;}
._20_c00190{width:157.990989px;}
._1e_c00190{width:162.409471px;}
._7_c00190{width:166.163882px;}
._1c_c00190{width:167.202489px;}
._b_c00190{width:169.411684px;}
._1d_c00190{width:171.620971px;}
._10_c00190{width:175.499100px;}
._1f_c00190{width:178.630366px;}
._19_c00190{width:181.006389px;}
._d_c00190{width:197.016722px;}
._1a_c00190{width:199.240280px;}
._21_c00190{width:208.451780px;}
.fc0_c00190{color:transparent;}
.fs11_c00190{font-size:17.250000px;}
.fsf_c00190{font-size:34.500000px;}
.fs6_c00190{font-size:52.500000px;}
.fsd_c00190{font-size:56.250000px;}
.fs7_c00190{font-size:57.000000px;}
.fs10_c00190{font-size:57.750000px;}
.fs2_c00190{font-size:58.500000px;}
.fs3_c00190{font-size:59.250000px;}
.fse_c00190{font-size:60.000000px;}
.fs16_c00190{font-size:60.750000px;}
.fs15_c00190{font-size:62.250000px;}
.fs1_c00190{font-size:63.000000px;}
.fsc_c00190{font-size:63.750000px;}
.fs18_c00190{font-size:64.500000px;}
.fs13_c00190{font-size:66.000000px;}
.fs0_c00190{font-size:66.750000px;}
.fs14_c00190{font-size:68.250000px;}
.fs17_c00190{font-size:69.000000px;}
.fs12_c00190{font-size:81.357600px;}
.fsb_c00190{font-size:107.250000px;}
.fsa_c00190{font-size:111.000000px;}
.fs8_c00190{font-size:121.500000px;}
.fs9_c00190{font-size:132.750000px;}
.fs4_c00190{font-size:141.000000px;}
.fs5_c00190{font-size:143.250000px;}
.y0_c00190{bottom:0.000000px;}
.y1e_c00190{bottom:149.760090px;}
.y2a_c00190{bottom:196.560660px;}
.y3c_c00190{bottom:196.915095px;}
.y36_c00190{bottom:196.917135px;}
.y30_c00190{bottom:196.919175px;}
.y24_c00190{bottom:196.920540px;}
.y29_c00190{bottom:219.959970px;}
.y3b_c00190{bottom:220.315935px;}
.y35_c00190{bottom:220.317975px;}
.y2f_c00190{bottom:220.320000px;}
.y23_c00190{bottom:220.321410px;}
.y3a_c00190{bottom:243.356490px;}
.y2e_c00190{bottom:243.360555px;}
.y22_c00190{bottom:243.361935px;}
.y34_c00190{bottom:243.717300px;}
.y28_c00190{bottom:243.719580px;}
.y39_c00190{bottom:266.755800px;}
.y33_c00190{bottom:266.757840px;}
.y2d_c00190{bottom:266.759880px;}
.y27_c00190{bottom:266.760135px;}
.y21_c00190{bottom:266.761260px;}
.y20_c00190{bottom:289.441245px;}
.y38_c00190{bottom:289.796355px;}
.y32_c00190{bottom:289.798395px;}
.y2c_c00190{bottom:289.800435px;}
.y26_c00190{bottom:290.161035px;}
.y37_c00190{bottom:313.197195px;}
.y31_c00190{bottom:313.199220px;}
.y1f_c00190{bottom:313.200870px;}
.y25_c00190{bottom:313.201035px;}
.y2b_c00190{bottom:313.201260px;}
.y1d_c00190{bottom:371.520285px;}
.y1c_c00190{bottom:430.559685px;}
.y1b_c00190{bottom:430.560195px;}
.y1a_c00190{bottom:501.119985px;}
.y19_c00190{bottom:540.000000px;}
.y18_c00190{bottom:547.740420px;}
.y15_c00190{bottom:570.959970px;}
.y16_c00190{bottom:571.139700px;}
.y17_c00190{bottom:571.320870px;}
.y12_c00190{bottom:594.360900px;}
.y11_c00190{bottom:594.361905px;}
.y13_c00190{bottom:594.899820px;}
.y14_c00190{bottom:595.079400px;}
.y10_c00190{bottom:758.520270px;}
.ye_c00190{bottom:805.680045px;}
.yf_c00190{bottom:805.680720px;}
.yd_c00190{bottom:876.600135px;}
.yc_c00190{bottom:923.039340px;}
.yb_c00190{bottom:946.619940px;}
.ya_c00190{bottom:970.200435px;}
.y9_c00190{bottom:970.559685px;}
.y8_c00190{bottom:993.599670px;}
.y7_c00190{bottom:1017.000555px;}
.y5_c00190{bottom:1055.880615px;}
.y4_c00190{bottom:1076.400885px;}
.y2_c00190{bottom:1076.760135px;}
.y6_c00190{bottom:1078.200435px;}
.y3_c00190{bottom:1086.479640px;}
.y1_c00190{bottom:1134.000000px;}
.h17_c00190{height:17.991211px;}
.h14_c00190{height:35.982422px;}
.h7_c00190{height:54.755859px;}
.hf_c00190{height:55.206299px;}
.h3_c00190{height:57.414551px;}
.h8_c00190{height:57.445312px;}
.h20_c00190{height:59.449219px;}
.h4_c00190{height:59.712891px;}
.h15_c00190{height:60.231445px;}
.h10_c00190{height:61.795898px;}
.h2_c00190{height:61.831055px;}
.he_c00190{height:62.567139px;}
.h12_c00190{height:62.578125px;}
.h1b_c00190{height:62.736328px;}
.h1d_c00190{height:63.360352px;}
.h1c_c00190{height:64.248047px;}
.h1f_c00190{height:65.003906px;}
.h1_c00190{height:65.511475px;}
.hd_c00190{height:65.967773px;}
.h19_c00190{height:66.515625px;}
.h11_c00190{height:66.688973px;}
.h13_c00190{height:66.694973px;}
.h1a_c00190{height:67.450195px;}
.h16_c00190{height:68.137193px;}
.h1e_c00190{height:69.539062px;}
.h18_c00190{height:79.848035px;}
.hc_c00190{height:105.993164px;}
.hb_c00190{height:108.940430px;}
.h9_c00190{height:119.245605px;}
.ha_c00190{height:138.454102px;}
.h5_c00190{height:147.058594px;}
.h6_c00190{height:149.405273px;}
.h0_c00190{height:1263.000000px;}
.w0_c00190{width:892.500000px;}
.x0_c00190{left:0.000000px;}
.x1b_c00190{left:218.879490px;}
.x1_c00190{left:219.958350px;}
.xa_c00190{left:221.398635px;}
.x24_c00190{left:224.636610px;}
.x23_c00190{left:225.719535px;}
.x19_c00190{left:236.518635px;}
.xb_c00190{left:237.599700px;}
.x2_c00190{left:260.278800px;}
.x13_c00190{left:266.040000px;}
.xc_c00190{left:272.519685px;}
.x12_c00190{left:282.959400px;}
.x3_c00190{left:284.038950px;}
.xd_c00190{left:289.798515px;}
.x1c_c00190{left:324.000000px;}
.x4_c00190{left:330.118785px;}
.x16_c00190{left:336.239250px;}
.x5_c00190{left:341.998950px;}
.x1d_c00190{left:359.279250px;}
.x8_c00190{left:360.719535px;}
.x1a_c00190{left:363.598530px;}
.x1e_c00190{left:381.599100px;}
.x11_c00190{left:388.439715px;}
.xf_c00190{left:394.199385px;}
.x25_c00190{left:400.319820px;}
.x10_c00190{left:422.998950px;}
.x26_c00190{left:446.758605px;}
.x1f_c00190{left:451.439250px;}
.x27_c00190{left:510.119730px;}
.x20_c00190{left:515.158770px;}
.x9_c00190{left:537.839535px;}
.x21_c00190{left:549.719565px;}
.x22_c00190{left:567.359250px;}
.x17_c00190{left:569.519670px;}
.x6_c00190{left:573.118785px;}
.x28_c00190{left:574.199685px;}
.x18_c00190{left:585.719100px;}
.x7_c00190{left:596.519670px;}
.x14_c00190{left:719.278800px;}
.x15_c00190{left:748.080000px;}
.xe_c00190{left:766.439670px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls14_c00190{letter-spacing:-16.369473pt;}
.ls12_c00190{letter-spacing:-14.322473pt;}
.ls19_c00190{letter-spacing:-13.297193pt;}
.ls1a_c00190{letter-spacing:-11.255533pt;}
.ls22_c00190{letter-spacing:-10.228473pt;}
.ls1c_c00190{letter-spacing:-9.208533pt;}
.ls13_c00190{letter-spacing:-8.181473pt;}
.ls29_c00190{letter-spacing:-7.476533pt;}
.ls1d_c00190{letter-spacing:-7.161533pt;}
.ls2c_c00190{letter-spacing:-6.141000pt;}
.ls1b_c00190{letter-spacing:-5.114533pt;}
.ls15_c00190{letter-spacing:-4.094000pt;}
.ls16_c00190{letter-spacing:-3.595007pt;}
.ls21_c00190{letter-spacing:-3.067533pt;}
.ls2b_c00190{letter-spacing:-2.699667pt;}
.ls25_c00190{letter-spacing:-2.634420pt;}
.ls18_c00190{letter-spacing:-2.047000pt;}
.lsc_c00190{letter-spacing:-1.797800pt;}
.ls26_c00190{letter-spacing:-1.399667pt;}
.ls17_c00190{letter-spacing:-1.020533pt;}
.lsb_c00190{letter-spacing:0.000000pt;}
.ls1_c00190{letter-spacing:0.901867pt;}
.ls1f_c00190{letter-spacing:0.963333pt;}
.lsf_c00190{letter-spacing:0.994000pt;}
.ls27_c00190{letter-spacing:1.493447pt;}
.ls9_c00190{letter-spacing:1.797800pt;}
.ls3_c00190{letter-spacing:2.699667pt;}
.ls4_c00190{letter-spacing:3.595007pt;}
.ls0_c00190{letter-spacing:4.498060pt;}
.ls24_c00190{letter-spacing:4.810667pt;}
.ls10_c00190{letter-spacing:4.904533pt;}
.ls8_c00190{letter-spacing:5.393400pt;}
.lse_c00190{letter-spacing:6.294673pt;}
.ls5_c00190{letter-spacing:7.191200pt;}
.ls23_c00190{letter-spacing:7.746400pt;}
.ls2_c00190{letter-spacing:8.989000pt;}
.ls28_c00190{letter-spacing:9.614880pt;}
.ls7_c00190{letter-spacing:9.890867pt;}
.ls2a_c00190{letter-spacing:10.646800pt;}
.ls20_c00190{letter-spacing:14.382400pt;}
.ls1e_c00190{letter-spacing:15.284267pt;}
.lsa_c00190{letter-spacing:16.180793pt;}
.lsd_c00190{letter-spacing:18.586593pt;}
.ls6_c00190{letter-spacing:23.371993pt;}
.ls11_c00190{letter-spacing:571.684533pt;}
.ws0_c00190{word-spacing:0.000000pt;}
._17_c00190{margin-left:-89.287101pt;}
._15_c00190{margin-left:-42.451885pt;}
._1b_c00190{margin-left:-4.191702pt;}
._22_c00190{margin-left:-3.272125pt;}
._f_c00190{width:1.717628pt;}
._18_c00190{width:2.741056pt;}
._5_c00190{width:4.946314pt;}
._23_c00190{width:10.102417pt;}
._0_c00190{width:11.729247pt;}
._3_c00190{width:15.321089pt;}
._16_c00190{width:16.590679pt;}
._4_c00190{width:17.622288pt;}
._2_c00190{width:18.986954pt;}
._11_c00190{width:21.952542pt;}
._9_c00190{width:24.299301pt;}
._1_c00190{width:45.016200pt;}
._14_c00190{width:77.951724pt;}
._e_c00190{width:86.009927pt;}
._a_c00190{width:87.967191pt;}
._c_c00190{width:89.937303pt;}
._6_c00190{width:95.263656pt;}
._8_c00190{width:97.477117pt;}
._12_c00190{width:106.299943pt;}
._13_c00190{width:131.435282pt;}
._20_c00190{width:140.436435pt;}
._1e_c00190{width:144.363974pt;}
._7_c00190{width:147.701229pt;}
._1c_c00190{width:148.624435pt;}
._b_c00190{width:150.588164pt;}
._1d_c00190{width:152.551974pt;}
._10_c00190{width:155.999200pt;}
._1f_c00190{width:158.782547pt;}
._19_c00190{width:160.894568pt;}
._d_c00190{width:175.125975pt;}
._1a_c00190{width:177.102471pt;}
._21_c00190{width:185.290471pt;}
.fs11_c00190{font-size:15.333333pt;}
.fsf_c00190{font-size:30.666667pt;}
.fs6_c00190{font-size:46.666667pt;}
.fsd_c00190{font-size:50.000000pt;}
.fs7_c00190{font-size:50.666667pt;}
.fs10_c00190{font-size:51.333333pt;}
.fs2_c00190{font-size:52.000000pt;}
.fs3_c00190{font-size:52.666667pt;}
.fse_c00190{font-size:53.333333pt;}
.fs16_c00190{font-size:54.000000pt;}
.fs15_c00190{font-size:55.333333pt;}
.fs1_c00190{font-size:56.000000pt;}
.fsc_c00190{font-size:56.666667pt;}
.fs18_c00190{font-size:57.333333pt;}
.fs13_c00190{font-size:58.666667pt;}
.fs0_c00190{font-size:59.333333pt;}
.fs14_c00190{font-size:60.666667pt;}
.fs17_c00190{font-size:61.333333pt;}
.fs12_c00190{font-size:72.317867pt;}
.fsb_c00190{font-size:95.333333pt;}
.fsa_c00190{font-size:98.666667pt;}
.fs8_c00190{font-size:108.000000pt;}
.fs9_c00190{font-size:118.000000pt;}
.fs4_c00190{font-size:125.333333pt;}
.fs5_c00190{font-size:127.333333pt;}
.y0_c00190{bottom:0.000000pt;}
.y1e_c00190{bottom:133.120080pt;}
.y2a_c00190{bottom:174.720587pt;}
.y3c_c00190{bottom:175.035640pt;}
.y36_c00190{bottom:175.037453pt;}
.y30_c00190{bottom:175.039267pt;}
.y24_c00190{bottom:175.040480pt;}
.y29_c00190{bottom:195.519973pt;}
.y3b_c00190{bottom:195.836387pt;}
.y35_c00190{bottom:195.838200pt;}
.y2f_c00190{bottom:195.840000pt;}
.y23_c00190{bottom:195.841253pt;}
.y3a_c00190{bottom:216.316880pt;}
.y2e_c00190{bottom:216.320493pt;}
.y22_c00190{bottom:216.321720pt;}
.y34_c00190{bottom:216.637600pt;}
.y28_c00190{bottom:216.639627pt;}
.y39_c00190{bottom:237.116267pt;}
.y33_c00190{bottom:237.118080pt;}
.y2d_c00190{bottom:237.119893pt;}
.y27_c00190{bottom:237.120120pt;}
.y21_c00190{bottom:237.121120pt;}
.y20_c00190{bottom:257.281107pt;}
.y38_c00190{bottom:257.596760pt;}
.y32_c00190{bottom:257.598573pt;}
.y2c_c00190{bottom:257.600387pt;}
.y26_c00190{bottom:257.920920pt;}
.y37_c00190{bottom:278.397507pt;}
.y31_c00190{bottom:278.399307pt;}
.y1f_c00190{bottom:278.400773pt;}
.y25_c00190{bottom:278.400920pt;}
.y2b_c00190{bottom:278.401120pt;}
.y1d_c00190{bottom:330.240253pt;}
.y1c_c00190{bottom:382.719720pt;}
.y1b_c00190{bottom:382.720173pt;}
.y1a_c00190{bottom:445.439987pt;}
.y19_c00190{bottom:480.000000pt;}
.y18_c00190{bottom:486.880373pt;}
.y15_c00190{bottom:507.519973pt;}
.y16_c00190{bottom:507.679733pt;}
.y17_c00190{bottom:507.840773pt;}
.y12_c00190{bottom:528.320800pt;}
.y11_c00190{bottom:528.321693pt;}
.y13_c00190{bottom:528.799840pt;}
.y14_c00190{bottom:528.959467pt;}
.y10_c00190{bottom:674.240240pt;}
.ye_c00190{bottom:716.160040pt;}
.yf_c00190{bottom:716.160640pt;}
.yd_c00190{bottom:779.200120pt;}
.yc_c00190{bottom:820.479413pt;}
.yb_c00190{bottom:841.439947pt;}
.ya_c00190{bottom:862.400387pt;}
.y9_c00190{bottom:862.719720pt;}
.y8_c00190{bottom:883.199707pt;}
.y7_c00190{bottom:904.000493pt;}
.y5_c00190{bottom:938.560547pt;}
.y4_c00190{bottom:956.800787pt;}
.y2_c00190{bottom:957.120120pt;}
.y6_c00190{bottom:958.400387pt;}
.y3_c00190{bottom:965.759680pt;}
.y1_c00190{bottom:1008.000000pt;}
.h17_c00190{height:15.992187pt;}
.h14_c00190{height:31.984375pt;}
.h7_c00190{height:48.671875pt;}
.hf_c00190{height:49.072266pt;}
.h3_c00190{height:51.035156pt;}
.h8_c00190{height:51.062500pt;}
.h20_c00190{height:52.843750pt;}
.h4_c00190{height:53.078125pt;}
.h15_c00190{height:53.539062pt;}
.h10_c00190{height:54.929688pt;}
.h2_c00190{height:54.960938pt;}
.he_c00190{height:55.615234pt;}
.h12_c00190{height:55.625000pt;}
.h1b_c00190{height:55.765625pt;}
.h1d_c00190{height:56.320312pt;}
.h1c_c00190{height:57.109375pt;}
.h1f_c00190{height:57.781250pt;}
.h1_c00190{height:58.232422pt;}
.hd_c00190{height:58.638021pt;}
.h19_c00190{height:59.125000pt;}
.h11_c00190{height:59.279087pt;}
.h13_c00190{height:59.284421pt;}
.h1a_c00190{height:59.955729pt;}
.h16_c00190{height:60.566394pt;}
.h1e_c00190{height:61.812500pt;}
.h18_c00190{height:70.976031pt;}
.hc_c00190{height:94.216146pt;}
.hb_c00190{height:96.835938pt;}
.h9_c00190{height:105.996094pt;}
.ha_c00190{height:123.070312pt;}
.h5_c00190{height:130.718750pt;}
.h6_c00190{height:132.804688pt;}
.h0_c00190{height:1122.666667pt;}
.w0_c00190{width:793.333333pt;}
.x0_c00190{left:0.000000pt;}
.x1b_c00190{left:194.559547pt;}
.x1_c00190{left:195.518533pt;}
.xa_c00190{left:196.798787pt;}
.x24_c00190{left:199.676987pt;}
.x23_c00190{left:200.639587pt;}
.x19_c00190{left:210.238787pt;}
.xb_c00190{left:211.199733pt;}
.x2_c00190{left:231.358933pt;}
.x13_c00190{left:236.480000pt;}
.xc_c00190{left:242.239720pt;}
.x12_c00190{left:251.519467pt;}
.x3_c00190{left:252.479067pt;}
.xd_c00190{left:257.598680pt;}
.x1c_c00190{left:288.000000pt;}
.x4_c00190{left:293.438920pt;}
.x16_c00190{left:298.879333pt;}
.x5_c00190{left:303.999067pt;}
.x1d_c00190{left:319.359333pt;}
.x8_c00190{left:320.639587pt;}
.x1a_c00190{left:323.198693pt;}
.x1e_c00190{left:339.199200pt;}
.x11_c00190{left:345.279747pt;}
.xf_c00190{left:350.399453pt;}
.x25_c00190{left:355.839840pt;}
.x10_c00190{left:375.999067pt;}
.x26_c00190{left:397.118760pt;}
.x1f_c00190{left:401.279333pt;}
.x27_c00190{left:453.439760pt;}
.x20_c00190{left:457.918907pt;}
.x9_c00190{left:478.079587pt;}
.x21_c00190{left:488.639613pt;}
.x22_c00190{left:504.319333pt;}
.x17_c00190{left:506.239707pt;}
.x6_c00190{left:509.438920pt;}
.x28_c00190{left:510.399720pt;}
.x18_c00190{left:520.639200pt;}
.x7_c00190{left:530.239707pt;}
.x14_c00190{left:639.358933pt;}
.x15_c00190{left:664.960000pt;}
.xe_c00190{left:681.279707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3114245a806320e0e38fe014.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_9d66478ed4785f96b4ba77c9.woff2')format("woff");}.ff2_c00191{font-family:ff2_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:ff3_c00191;src:url('chunks/assets/font_afe30650032e1e6f65bae820.woff2')format("woff");}.ff3_c00191{font-family:ff3_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:ff4_c00191;src:url('chunks/assets/font_b58dc859bdf619fef1a08968.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_f07e51d3bff875b95abf9b0a.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_109d3960fafedee4217597b1.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:1.364746;font-style:normal;font-weight: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_c00191;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:1.364746;font-style:normal;font-weight: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_c00191;src:url('chunks/assets/font_0016011fd6c21f57ea7650d6.woff2')format("woff");}.ff8_c00191{font-family:ff8_c00191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00191{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m17_c00191{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m14_c00191{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.278947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278947,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.md_c00191{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_c00191{transform:matrix(0.371134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371134,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls1d_c00191{letter-spacing:-16.681050px;}
.ls18_c00191{letter-spacing:-8.914500px;}
.ls19_c00191{letter-spacing:-8.175038px;}
.lsd_c00191{letter-spacing:-7.426125px;}
.lsb_c00191{letter-spacing:-5.945625px;}
.lsf_c00191{letter-spacing:-5.549250px;}
.ls3_c00191{letter-spacing:-5.196713px;}
.ls13_c00191{letter-spacing:-4.755000px;}
.ls15_c00191{letter-spacing:-4.701788px;}
.lsc_c00191{letter-spacing:-4.456463px;}
.ls20_c00191{letter-spacing:-3.861000px;}
.ls5_c00191{letter-spacing:-3.717000px;}
.ls10_c00191{letter-spacing:-3.399773px;}
.ls11_c00191{letter-spacing:-3.088800px;}
.ls4_c00191{letter-spacing:-2.968875px;}
.ls2_c00191{letter-spacing:-2.943225px;}
.lsa_c00191{letter-spacing:-2.855775px;}
.ls1e_c00191{letter-spacing:-2.470950px;}
.ls1f_c00191{letter-spacing:-2.269800px;}
.ls7_c00191{letter-spacing:-2.229413px;}
.ls17_c00191{letter-spacing:-1.994475px;}
.ls12_c00191{letter-spacing:-1.638000px;}
.ls9_c00191{letter-spacing:-1.489163px;}
.lse_c00191{letter-spacing:-0.740250px;}
.ls6_c00191{letter-spacing:-0.734648px;}
.ls8_c00191{letter-spacing:0.000000px;}
.ls1_c00191{letter-spacing:0.740250px;}
.ls21_c00191{letter-spacing:1.575600px;}
.ls1b_c00191{letter-spacing:1.645425px;}
.ls16_c00191{letter-spacing:2.732400px;}
.ls22_c00191{letter-spacing:3.637710px;}
.ls1c_c00191{letter-spacing:3.772440px;}
.ls1a_c00191{letter-spacing:3.795825px;}
.ls14_c00191{letter-spacing:4.591125px;}
.ls0_c00191{letter-spacing:8.175038px;}
.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;}
._6_c00191{margin-left:-9.106531px;}
._15_c00191{margin-left:-6.612860px;}
._1c_c00191{margin-left:-4.707883px;}
._3_c00191{margin-left:-2.546894px;}
._a_c00191{margin-left:-1.205350px;}
._9_c00191{width:1.407976px;}
._b_c00191{width:2.460091px;}
._4_c00191{width:3.494984px;}
._7_c00191{width:5.577892px;}
._10_c00191{width:6.589325px;}
._c_c00191{width:8.108709px;}
._5_c00191{width:9.917522px;}
._2_c00191{width:11.104954px;}
._8_c00191{width:12.298120px;}
._1b_c00191{width:13.437083px;}
._1_c00191{width:14.529494px;}
._11_c00191{width:17.011367px;}
._16_c00191{width:18.335362px;}
._d_c00191{width:19.488768px;}
._f_c00191{width:20.548431px;}
._0_c00191{width:22.159195px;}
._12_c00191{width:23.899481px;}
._e_c00191{width:25.530913px;}
._13_c00191{width:26.990671px;}
._18_c00191{width:28.305826px;}
._1d_c00191{width:29.327614px;}
._14_c00191{width:31.721510px;}
._17_c00191{width:33.069933px;}
._1a_c00191{width:35.486251px;}
._19_c00191{width:40.651285px;}
.fc0_c00191{color:transparent;}
.fsc_c00191{font-size:43.500000px;}
.fsb_c00191{font-size:52.500000px;}
.fsa_c00191{font-size:54.000000px;}
.fs6_c00191{font-size:71.250000px;}
.fs8_c00191{font-size:72.750000px;}
.fs3_c00191{font-size:73.500000px;}
.fs9_c00191{font-size:75.000000px;}
.fs4_c00191{font-size:75.750000px;}
.fsf_c00191{font-size:76.500000px;}
.fs0_c00191{font-size:77.250000px;}
.fs7_c00191{font-size:78.000000px;}
.fs1_c00191{font-size:78.750000px;}
.fs2_c00191{font-size:80.250000px;}
.fs10_c00191{font-size:81.000000px;}
.fs5_c00191{font-size:82.500000px;}
.fsd_c00191{font-size:84.000000px;}
.fse_c00191{font-size:85.500000px;}
.y0_c00191{bottom:0.000000px;}
.y25_c00191{bottom:184.319955px;}
.y24_c00191{bottom:213.481110px;}
.y23_c00191{bottom:272.519880px;}
.y22_c00191{bottom:331.920930px;}
.y21_c00191{bottom:362.160855px;}
.y20_c00191{bottom:392.040570px;}
.y1f_c00191{bottom:421.919535px;}
.y1e_c00191{bottom:421.919565px;}
.y1d_c00191{bottom:451.440900px;}
.y1c_c00191{bottom:481.680720px;}
.y1b_c00191{bottom:491.759535px;}
.y1a_c00191{bottom:510.839490px;}
.y18_c00191{bottom:541.077945px;}
.y19_c00191{bottom:541.079400px;}
.y17_c00191{bottom:570.599280px;}
.y16_c00191{bottom:600.479010px;}
.y15_c00191{bottom:629.640150px;}
.y14_c00191{bottom:629.641275px;}
.y13_c00191{bottom:659.520990px;}
.y12_c00191{bottom:719.280435px;}
.y11_c00191{bottom:746.280435px;}
.yf_c00191{bottom:749.520270px;}
.y10_c00191{bottom:750.240420px;}
.ye_c00191{bottom:779.041050px;}
.yd_c00191{bottom:808.560585px;}
.yc_c00191{bottom:838.440315px;}
.yb_c00191{bottom:838.441290px;}
.ya_c00191{bottom:868.321020px;}
.y9_c00191{bottom:897.840540px;}
.y8_c00191{bottom:897.842535px;}
.y7_c00191{bottom:957.960360px;}
.y6_c00191{bottom:987.840090px;}
.y5_c00191{bottom:987.841170px;}
.y4_c00191{bottom:1017.720885px;}
.y3_c00191{bottom:1047.240420px;}
.y2_c00191{bottom:1077.119385px;}
.y1_c00191{bottom:1106.640750px;}
.h11_c00191{height:45.369141px;}
.hf_c00191{height:51.884766px;}
.he_c00191{height:56.320312px;}
.h4_c00191{height:74.074219px;}
.h8_c00191{height:74.311523px;}
.h5_c00191{height:74.344482px;}
.h15_c00191{height:75.080566px;}
.h1_c00191{height:75.778931px;}
.h12_c00191{height:75.816650px;}
.hb_c00191{height:75.875977px;}
.h10_c00191{height:76.552734px;}
.h7_c00191{height:76.658203px;}
.h16_c00191{height:77.097656px;}
.h2_c00191{height:77.288818px;}
.h9_c00191{height:77.853516px;}
.hd_c00191{height:78.222656px;}
.ha_c00191{height:78.609375px;}
.h3_c00191{height:78.760986px;}
.hc_c00191{height:79.365234px;}
.h17_c00191{height:79.497070px;}
.h6_c00191{height:80.969238px;}
.h13_c00191{height:82.441406px;}
.h14_c00191{height:84.498047px;}
.h0_c00191{height:1263.000000px;}
.w0_c00191{width:892.500000px;}
.x0_c00191{left:0.000000px;}
.x25_c00191{left:105.119415px;}
.x1_c00191{left:143.999400px;}
.x9_c00191{left:145.078815px;}
.xd_c00191{left:158.758500px;}
.x2_c00191{left:207.719100px;}
.x14_c00191{left:217.438635px;}
.x15_c00191{left:230.038950px;}
.xa_c00191{left:246.958350px;}
.x16_c00191{left:267.839535px;}
.xb_c00191{left:297.359250px;}
.xc_c00191{left:332.999385px;}
.x17_c00191{left:358.559100px;}
.x22_c00191{left:362.159850px;}
.x18_c00191{left:379.799535px;}
.x23_c00191{left:394.199385px;}
.x19_c00191{left:416.159820px;}
.x12_c00191{left:419.399820px;}
.x26_c00191{left:421.199385px;}
.x13_c00191{left:433.799565px;}
.x3_c00191{left:440.999400px;}
.x1a_c00191{left:448.919535px;}
.x2b_c00191{left:452.518620px;}
.x27_c00191{left:469.439670px;}
.x24_c00191{left:477.359850px;}
.x2c_c00191{left:479.159415px;}
.x2d_c00191{left:500.759085px;}
.x4_c00191{left:506.518620px;}
.x10_c00191{left:538.918950px;}
.x2e_c00191{left:541.079400px;}
.x1b_c00191{left:545.759535px;}
.x11_c00191{left:557.639700px;}
.x5_c00191{left:584.278800px;}
.xe_c00191{left:588.238770px;}
.x6_c00191{left:600.838950px;}
.xf_c00191{left:606.239220px;}
.x1e_c00191{left:610.558635px;}
.x7_c00191{left:623.158770px;}
.x1f_c00191{left:628.559100px;}
.x1c_c00191{left:632.519070px;}
.x31_c00191{left:635.759085px;}
.x32_c00191{left:659.878320px;}
.x29_c00191{left:676.079355px;}
.x2f_c00191{left:679.319235px;}
.x8_c00191{left:689.038920px;}
.x2a_c00191{left:696.238770px;}
.x30_c00191{left:705.958335px;}
.x20_c00191{left:707.759535px;}
.x1d_c00191{left:715.679670px;}
.x21_c00191{left:737.999355px;}
.x28_c00191{left:765.719520px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls1d_c00191{letter-spacing:-14.827600pt;}
.ls18_c00191{letter-spacing:-7.924000pt;}
.ls19_c00191{letter-spacing:-7.266700pt;}
.lsd_c00191{letter-spacing:-6.601000pt;}
.lsb_c00191{letter-spacing:-5.285000pt;}
.lsf_c00191{letter-spacing:-4.932667pt;}
.ls3_c00191{letter-spacing:-4.619300pt;}
.ls13_c00191{letter-spacing:-4.226667pt;}
.ls15_c00191{letter-spacing:-4.179367pt;}
.lsc_c00191{letter-spacing:-3.961300pt;}
.ls20_c00191{letter-spacing:-3.432000pt;}
.ls5_c00191{letter-spacing:-3.304000pt;}
.ls10_c00191{letter-spacing:-3.022020pt;}
.ls11_c00191{letter-spacing:-2.745600pt;}
.ls4_c00191{letter-spacing:-2.639000pt;}
.ls2_c00191{letter-spacing:-2.616200pt;}
.lsa_c00191{letter-spacing:-2.538467pt;}
.ls1e_c00191{letter-spacing:-2.196400pt;}
.ls1f_c00191{letter-spacing:-2.017600pt;}
.ls7_c00191{letter-spacing:-1.981700pt;}
.ls17_c00191{letter-spacing:-1.772867pt;}
.ls12_c00191{letter-spacing:-1.456000pt;}
.ls9_c00191{letter-spacing:-1.323700pt;}
.lse_c00191{letter-spacing:-0.658000pt;}
.ls6_c00191{letter-spacing:-0.653020pt;}
.ls8_c00191{letter-spacing:0.000000pt;}
.ls1_c00191{letter-spacing:0.658000pt;}
.ls21_c00191{letter-spacing:1.400533pt;}
.ls1b_c00191{letter-spacing:1.462600pt;}
.ls16_c00191{letter-spacing:2.428800pt;}
.ls22_c00191{letter-spacing:3.233520pt;}
.ls1c_c00191{letter-spacing:3.353280pt;}
.ls1a_c00191{letter-spacing:3.374067pt;}
.ls14_c00191{letter-spacing:4.081000pt;}
.ls0_c00191{letter-spacing:7.266700pt;}
.ws0_c00191{word-spacing:0.000000pt;}
._6_c00191{margin-left:-8.094694pt;}
._15_c00191{margin-left:-5.878098pt;}
._1c_c00191{margin-left:-4.184785pt;}
._3_c00191{margin-left:-2.263906pt;}
._a_c00191{margin-left:-1.071423pt;}
._9_c00191{width:1.251534pt;}
._b_c00191{width:2.186747pt;}
._4_c00191{width:3.106653pt;}
._7_c00191{width:4.958126pt;}
._10_c00191{width:5.857177pt;}
._c_c00191{width:7.207742pt;}
._5_c00191{width:8.815575pt;}
._2_c00191{width:9.871070pt;}
._8_c00191{width:10.931662pt;}
._1b_c00191{width:11.944074pt;}
._1_c00191{width:12.915106pt;}
._11_c00191{width:15.121215pt;}
._16_c00191{width:16.298100pt;}
._d_c00191{width:17.323349pt;}
._f_c00191{width:18.265272pt;}
._0_c00191{width:19.697062pt;}
._12_c00191{width:21.243983pt;}
._e_c00191{width:22.694145pt;}
._13_c00191{width:23.991708pt;}
._18_c00191{width:25.160734pt;}
._1d_c00191{width:26.068991pt;}
._14_c00191{width:28.196898pt;}
._17_c00191{width:29.395496pt;}
._1a_c00191{width:31.543334pt;}
._19_c00191{width:36.134475pt;}
.fsc_c00191{font-size:38.666667pt;}
.fsb_c00191{font-size:46.666667pt;}
.fsa_c00191{font-size:48.000000pt;}
.fs6_c00191{font-size:63.333333pt;}
.fs8_c00191{font-size:64.666667pt;}
.fs3_c00191{font-size:65.333333pt;}
.fs9_c00191{font-size:66.666667pt;}
.fs4_c00191{font-size:67.333333pt;}
.fsf_c00191{font-size:68.000000pt;}
.fs0_c00191{font-size:68.666667pt;}
.fs7_c00191{font-size:69.333333pt;}
.fs1_c00191{font-size:70.000000pt;}
.fs2_c00191{font-size:71.333333pt;}
.fs10_c00191{font-size:72.000000pt;}
.fs5_c00191{font-size:73.333333pt;}
.fsd_c00191{font-size:74.666667pt;}
.fse_c00191{font-size:76.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y25_c00191{bottom:163.839960pt;}
.y24_c00191{bottom:189.760987pt;}
.y23_c00191{bottom:242.239893pt;}
.y22_c00191{bottom:295.040827pt;}
.y21_c00191{bottom:321.920760pt;}
.y20_c00191{bottom:348.480507pt;}
.y1f_c00191{bottom:375.039587pt;}
.y1e_c00191{bottom:375.039613pt;}
.y1d_c00191{bottom:401.280800pt;}
.y1c_c00191{bottom:428.160640pt;}
.y1b_c00191{bottom:437.119587pt;}
.y1a_c00191{bottom:454.079547pt;}
.y18_c00191{bottom:480.958173pt;}
.y19_c00191{bottom:480.959467pt;}
.y17_c00191{bottom:507.199360pt;}
.y16_c00191{bottom:533.759120pt;}
.y15_c00191{bottom:559.680133pt;}
.y14_c00191{bottom:559.681133pt;}
.y13_c00191{bottom:586.240880pt;}
.y12_c00191{bottom:639.360387pt;}
.y11_c00191{bottom:663.360387pt;}
.yf_c00191{bottom:666.240240pt;}
.y10_c00191{bottom:666.880373pt;}
.ye_c00191{bottom:692.480933pt;}
.yd_c00191{bottom:718.720520pt;}
.yc_c00191{bottom:745.280280pt;}
.yb_c00191{bottom:745.281147pt;}
.ya_c00191{bottom:771.840907pt;}
.y9_c00191{bottom:798.080480pt;}
.y8_c00191{bottom:798.082253pt;}
.y7_c00191{bottom:851.520320pt;}
.y6_c00191{bottom:878.080080pt;}
.y5_c00191{bottom:878.081040pt;}
.y4_c00191{bottom:904.640787pt;}
.y3_c00191{bottom:930.880373pt;}
.y2_c00191{bottom:957.439453pt;}
.y1_c00191{bottom:983.680667pt;}
.h11_c00191{height:40.328125pt;}
.hf_c00191{height:46.119792pt;}
.he_c00191{height:50.062500pt;}
.h4_c00191{height:65.843750pt;}
.h8_c00191{height:66.054688pt;}
.h5_c00191{height:66.083984pt;}
.h15_c00191{height:66.738281pt;}
.h1_c00191{height:67.359049pt;}
.h12_c00191{height:67.392578pt;}
.hb_c00191{height:67.445312pt;}
.h10_c00191{height:68.046875pt;}
.h7_c00191{height:68.140625pt;}
.h16_c00191{height:68.531250pt;}
.h2_c00191{height:68.701172pt;}
.h9_c00191{height:69.203125pt;}
.hd_c00191{height:69.531250pt;}
.ha_c00191{height:69.875000pt;}
.h3_c00191{height:70.009766pt;}
.hc_c00191{height:70.546875pt;}
.h17_c00191{height:70.664062pt;}
.h6_c00191{height:71.972656pt;}
.h13_c00191{height:73.281250pt;}
.h14_c00191{height:75.109375pt;}
.h0_c00191{height:1122.666667pt;}
.w0_c00191{width:793.333333pt;}
.x0_c00191{left:0.000000pt;}
.x25_c00191{left:93.439480pt;}
.x1_c00191{left:127.999467pt;}
.x9_c00191{left:128.958947pt;}
.xd_c00191{left:141.118667pt;}
.x2_c00191{left:184.639200pt;}
.x14_c00191{left:193.278787pt;}
.x15_c00191{left:204.479067pt;}
.xa_c00191{left:219.518533pt;}
.x16_c00191{left:238.079587pt;}
.xb_c00191{left:264.319333pt;}
.xc_c00191{left:295.999453pt;}
.x17_c00191{left:318.719200pt;}
.x22_c00191{left:321.919867pt;}
.x18_c00191{left:337.599587pt;}
.x23_c00191{left:350.399453pt;}
.x19_c00191{left:369.919840pt;}
.x12_c00191{left:372.799840pt;}
.x26_c00191{left:374.399453pt;}
.x13_c00191{left:385.599613pt;}
.x3_c00191{left:391.999467pt;}
.x1a_c00191{left:399.039587pt;}
.x2b_c00191{left:402.238773pt;}
.x27_c00191{left:417.279707pt;}
.x24_c00191{left:424.319867pt;}
.x2c_c00191{left:425.919480pt;}
.x2d_c00191{left:445.119187pt;}
.x4_c00191{left:450.238773pt;}
.x10_c00191{left:479.039067pt;}
.x2e_c00191{left:480.959467pt;}
.x1b_c00191{left:485.119587pt;}
.x11_c00191{left:495.679733pt;}
.x5_c00191{left:519.358933pt;}
.xe_c00191{left:522.878907pt;}
.x6_c00191{left:534.079067pt;}
.xf_c00191{left:538.879307pt;}
.x1e_c00191{left:542.718787pt;}
.x7_c00191{left:553.918907pt;}
.x1f_c00191{left:558.719200pt;}
.x1c_c00191{left:562.239173pt;}
.x31_c00191{left:565.119187pt;}
.x32_c00191{left:586.558507pt;}
.x29_c00191{left:600.959427pt;}
.x2f_c00191{left:603.839320pt;}
.x8_c00191{left:612.479040pt;}
.x2a_c00191{left:618.878907pt;}
.x30_c00191{left:627.518520pt;}
.x20_c00191{left:629.119587pt;}
.x1d_c00191{left:636.159707pt;}
.x21_c00191{left:655.999427pt;}
.x28_c00191{left:680.639573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc67899055418bcf13870284.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_26411734b49ca770d58bf4bb.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.364746;font-style:normal;font-weight:normal;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_d209a6c8277064b2d65cbc53.woff2')format("woff");}.ff3_c00192{font-family:ff3_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:ff4_c00192;src:url('chunks/assets/font_47aae18ff274cad246fd5e75.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00192{font-family:ff5_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:ff6_c00192;src:url('chunks/assets/font_5ba44babbb628493c4a30359.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00192{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);}
.m18_c00192{transform:matrix(0.359890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359890,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.lsb_c00192{letter-spacing:-14.198490px;}
.ls17_c00192{letter-spacing:-11.247173px;}
.ls15_c00192{letter-spacing:-8.175038px;}
.ls12_c00192{letter-spacing:-7.426125px;}
.ls9_c00192{letter-spacing:-6.685875px;}
.ls1b_c00192{letter-spacing:-6.060075px;}
.ls16_c00192{letter-spacing:-5.945625px;}
.ls18_c00192{letter-spacing:-5.664375px;}
.ls13_c00192{letter-spacing:-5.247533px;}
.ls5_c00192{letter-spacing:-5.196713px;}
.ls19_c00192{letter-spacing:-5.176500px;}
.lse_c00192{letter-spacing:-4.722300px;}
.ls2_c00192{letter-spacing:-4.456463px;}
.ls20_c00192{letter-spacing:-3.787875px;}
.ls21_c00192{letter-spacing:-3.751800px;}
.ls8_c00192{letter-spacing:-3.717000px;}
.ls22_c00192{letter-spacing:-3.611400px;}
.ls7_c00192{letter-spacing:-3.085500px;}
.ls10_c00192{letter-spacing:-3.031500px;}
.ls0_c00192{letter-spacing:-2.968875px;}
.lsd_c00192{letter-spacing:-2.338088px;}
.ls1_c00192{letter-spacing:-2.229413px;}
.ls1d_c00192{letter-spacing:-2.224028px;}
.ls1a_c00192{letter-spacing:-1.530000px;}
.lsa_c00192{letter-spacing:-1.489163px;}
.ls23_c00192{letter-spacing:-0.802950px;}
.lsf_c00192{letter-spacing:-0.778425px;}
.ls1e_c00192{letter-spacing:-0.772200px;}
.ls6_c00192{letter-spacing:-0.740250px;}
.ls4_c00192{letter-spacing:0.000000px;}
.lsc_c00192{letter-spacing:0.772650px;}
.ls3_c00192{letter-spacing:3.726810px;}
.ls14_c00192{letter-spacing:5.024400px;}
.ls11_c00192{letter-spacing:11.018700px;}
.ls1f_c00192{letter-spacing:13.547625px;}
.ls1c_c00192{letter-spacing:14.112000px;}
.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;}
._1c_c00192{margin-left:-10.468713px;}
._1d_c00192{margin-left:-9.300033px;}
._10_c00192{margin-left:-7.611633px;}
._e_c00192{margin-left:-5.710430px;}
._f_c00192{margin-left:-4.575108px;}
._c_c00192{margin-left:-3.241588px;}
._d_c00192{margin-left:-1.251011px;}
._a_c00192{width:1.070614px;}
._6_c00192{width:2.549048px;}
._2_c00192{width:3.610643px;}
._1_c00192{width:5.380928px;}
._9_c00192{width:6.504512px;}
._0_c00192{width:7.567310px;}
._5_c00192{width:9.391814px;}
._3_c00192{width:10.855049px;}
._4_c00192{width:12.911375px;}
._8_c00192{width:14.525244px;}
._20_c00192{width:15.973427px;}
._b_c00192{width:17.181229px;}
._14_c00192{width:19.994803px;}
._15_c00192{width:22.514358px;}
._12_c00192{width:24.145255px;}
._11_c00192{width:25.928794px;}
._7_c00192{width:28.223881px;}
._16_c00192{width:30.286983px;}
._13_c00192{width:32.516113px;}
._1b_c00192{width:33.879899px;}
._18_c00192{width:34.977971px;}
._1e_c00192{width:36.686549px;}
._19_c00192{width:37.823417px;}
._17_c00192{width:40.777196px;}
._1f_c00192{width:42.814339px;}
._1a_c00192{width:44.661339px;}
.fc0_c00192{color:transparent;}
.fs11_c00192{font-size:51.750000px;}
.fsc_c00192{font-size:52.500000px;}
.fse_c00192{font-size:68.250000px;}
.fs8_c00192{font-size:70.500000px;}
.fsb_c00192{font-size:71.250000px;}
.fsd_c00192{font-size:72.750000px;}
.fs4_c00192{font-size:76.500000px;}
.fs5_c00192{font-size:77.250000px;}
.fsa_c00192{font-size:78.000000px;}
.fs0_c00192{font-size:78.750000px;}
.fs6_c00192{font-size:79.500000px;}
.fs7_c00192{font-size:80.250000px;}
.fs1_c00192{font-size:81.000000px;}
.fs9_c00192{font-size:81.750000px;}
.fs3_c00192{font-size:82.500000px;}
.fsf_c00192{font-size:83.250000px;}
.fs2_c00192{font-size:84.750000px;}
.fs10_c00192{font-size:87.750000px;}
.y0_c00192{bottom:0.000000px;}
.y26_c00192{bottom:182.881215px;}
.y25_c00192{bottom:182.882055px;}
.y24_c00192{bottom:211.680915px;}
.y23_c00192{bottom:241.200435px;}
.y22_c00192{bottom:301.321065px;}
.y20_c00192{bottom:330.840000px;}
.y21_c00192{bottom:330.840585px;}
.y1f_c00192{bottom:390.241065px;}
.y1e_c00192{bottom:450.000510px;}
.y1d_c00192{bottom:480.240420px;}
.y1c_c00192{bottom:493.560750px;}
.y1b_c00192{bottom:509.760135px;}
.y1a_c00192{bottom:509.760315px;}
.y19_c00192{bottom:539.279850px;}
.y18_c00192{bottom:539.279985px;}
.y17_c00192{bottom:568.799520px;}
.y15_c00192{bottom:628.199760px;}
.y16_c00192{bottom:628.199850px;}
.y14_c00192{bottom:658.439670px;}
.y13_c00192{bottom:687.961995px;}
.y12_c00192{bottom:718.560285px;}
.y11_c00192{bottom:753.121035px;}
.y10_c00192{bottom:777.600510px;}
.yf_c00192{bottom:807.480240px;}
.ye_c00192{bottom:837.720150px;}
.yd_c00192{bottom:837.720330px;}
.yb_c00192{bottom:867.239460px;}
.yc_c00192{bottom:867.239865px;}
.ya_c00192{bottom:927.001005px;}
.y9_c00192{bottom:956.879970px;}
.y8_c00192{bottom:956.880210px;}
.y7_c00192{bottom:986.759925px;}
.y6_c00192{bottom:1016.639655px;}
.y5_c00192{bottom:1046.161005px;}
.y4_c00192{bottom:1076.400885px;}
.y3_c00192{bottom:1076.401065px;}
.y2_c00192{bottom:1105.920600px;}
.y1_c00192{bottom:1135.799565px;}
.h18_c00192{height:53.973633px;}
.h10_c00192{height:54.755859px;}
.h15_c00192{height:68.783203px;}
.hb_c00192{height:73.529297px;}
.hf_c00192{height:74.311523px;}
.h6_c00192{height:75.080566px;}
.h7_c00192{height:75.816650px;}
.h12_c00192{height:75.875977px;}
.hd_c00192{height:76.552734px;}
.h11_c00192{height:77.097656px;}
.h1_c00192{height:77.288818px;}
.h13_c00192{height:77.853516px;}
.h19_c00192{height:77.986084px;}
.he_c00192{height:78.024902px;}
.h14_c00192{height:78.609375px;}
.ha_c00192{height:78.760986px;}
.h8_c00192{height:79.365234px;}
.h2_c00192{height:79.497070px;}
.h5_c00192{height:80.050781px;}
.h9_c00192{height:80.121094px;}
.hc_c00192{height:80.233154px;}
.h4_c00192{height:80.969238px;}
.h16_c00192{height:81.705322px;}
.h3_c00192{height:83.177490px;}
.h17_c00192{height:86.121826px;}
.h0_c00192{height:1263.000000px;}
.w0_c00192{width:892.500000px;}
.x0_c00192{left:0.000000px;}
.x33_c00192{left:104.399250px;}
.x14_c00192{left:143.274840px;}
.x1_c00192{left:144.719565px;}
.x24_c00192{left:157.679100px;}
.x4_c00192{left:159.839565px;}
.xf_c00192{left:172.078815px;}
.x2b_c00192{left:174.598500px;}
.x36_c00192{left:197.638500px;}
.x27_c00192{left:210.599700px;}
.x28_c00192{left:224.638500px;}
.x1d_c00192{left:238.679100px;}
.x1e_c00192{left:257.038950px;}
.x16_c00192{left:259.558635px;}
.x10_c00192{left:261.719100px;}
.x37_c00192{left:265.319850px;}
.x11_c00192{left:275.039385px;}
.x17_c00192{left:282.598500px;}
.x1f_c00192{left:287.998950px;}
.x25_c00192{left:324.359250px;}
.x20_c00192{left:345.238785px;}
.x12_c00192{left:347.399235px;}
.x13_c00192{left:365.399850px;}
.x26_c00192{left:367.558635px;}
.x18_c00192{left:380.878950px;}
.x21_c00192{left:389.159820px;}
.x38_c00192{left:439.559100px;}
.x7_c00192{left:441.358665px;}
.x39_c00192{left:454.319820px;}
.x19_c00192{left:476.278800px;}
.x29_c00192{left:488.519670px;}
.x1a_c00192{left:491.039385px;}
.x2a_c00192{left:503.639700px;}
.x8_c00192{left:514.079400px;}
.x22_c00192{left:520.918350px;}
.x5_c00192{left:523.439670px;}
.x2_c00192{left:532.439250px;}
.x9_c00192{left:538.918950px;}
.x3_c00192{left:556.919535px;}
.xa_c00192{left:560.879520px;}
.x6_c00192{left:562.319820px;}
.x2c_c00192{left:577.078770px;}
.x31_c00192{left:605.878320px;}
.x2f_c00192{left:607.318770px;}
.x2d_c00192{left:615.238770px;}
.x30_c00192{left:623.158770px;}
.x32_c00192{left:628.559100px;}
.x2e_c00192{left:645.119385px;}
.xb_c00192{left:646.559685px;}
.x34_c00192{left:662.399820px;}
.xc_c00192{left:671.758530px;}
.x35_c00192{left:681.838950px;}
.x23_c00192{left:698.758530px;}
.xd_c00192{left:707.398635px;}
.x1b_c00192{left:735.479685px;}
.xe_c00192{left:740.878320px;}
.x1c_c00192{left:750.599670px;}
.x15_c00192{left:774.719055px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.lsb_c00192{letter-spacing:-12.620880pt;}
.ls17_c00192{letter-spacing:-9.997487pt;}
.ls15_c00192{letter-spacing:-7.266700pt;}
.ls12_c00192{letter-spacing:-6.601000pt;}
.ls9_c00192{letter-spacing:-5.943000pt;}
.ls1b_c00192{letter-spacing:-5.386733pt;}
.ls16_c00192{letter-spacing:-5.285000pt;}
.ls18_c00192{letter-spacing:-5.035000pt;}
.ls13_c00192{letter-spacing:-4.664473pt;}
.ls5_c00192{letter-spacing:-4.619300pt;}
.ls19_c00192{letter-spacing:-4.601333pt;}
.lse_c00192{letter-spacing:-4.197600pt;}
.ls2_c00192{letter-spacing:-3.961300pt;}
.ls20_c00192{letter-spacing:-3.367000pt;}
.ls21_c00192{letter-spacing:-3.334933pt;}
.ls8_c00192{letter-spacing:-3.304000pt;}
.ls22_c00192{letter-spacing:-3.210133pt;}
.ls7_c00192{letter-spacing:-2.742667pt;}
.ls10_c00192{letter-spacing:-2.694667pt;}
.ls0_c00192{letter-spacing:-2.639000pt;}
.lsd_c00192{letter-spacing:-2.078300pt;}
.ls1_c00192{letter-spacing:-1.981700pt;}
.ls1d_c00192{letter-spacing:-1.976913pt;}
.ls1a_c00192{letter-spacing:-1.360000pt;}
.lsa_c00192{letter-spacing:-1.323700pt;}
.ls23_c00192{letter-spacing:-0.713733pt;}
.lsf_c00192{letter-spacing:-0.691933pt;}
.ls1e_c00192{letter-spacing:-0.686400pt;}
.ls6_c00192{letter-spacing:-0.658000pt;}
.ls4_c00192{letter-spacing:0.000000pt;}
.lsc_c00192{letter-spacing:0.686800pt;}
.ls3_c00192{letter-spacing:3.312720pt;}
.ls14_c00192{letter-spacing:4.466133pt;}
.ls11_c00192{letter-spacing:9.794400pt;}
.ls1f_c00192{letter-spacing:12.042333pt;}
.ls1c_c00192{letter-spacing:12.544000pt;}
.ws0_c00192{word-spacing:0.000000pt;}
._1c_c00192{margin-left:-9.305523pt;}
._1d_c00192{margin-left:-8.266696pt;}
._10_c00192{margin-left:-6.765896pt;}
._e_c00192{margin-left:-5.075938pt;}
._f_c00192{margin-left:-4.066762pt;}
._c_c00192{margin-left:-2.881411pt;}
._d_c00192{margin-left:-1.112009pt;}
._a_c00192{width:0.951657pt;}
._6_c00192{width:2.265821pt;}
._2_c00192{width:3.209460pt;}
._1_c00192{width:4.783047pt;}
._9_c00192{width:5.781789pt;}
._0_c00192{width:6.726498pt;}
._5_c00192{width:8.348279pt;}
._3_c00192{width:9.648932pt;}
._4_c00192{width:11.476777pt;}
._8_c00192{width:12.911328pt;}
._20_c00192{width:14.198602pt;}
._b_c00192{width:15.272204pt;}
._14_c00192{width:17.773158pt;}
._15_c00192{width:20.012762pt;}
._12_c00192{width:21.462449pt;}
._11_c00192{width:23.047817pt;}
._7_c00192{width:25.087894pt;}
._16_c00192{width:26.921762pt;}
._13_c00192{width:28.903211pt;}
._1b_c00192{width:30.115466pt;}
._18_c00192{width:31.091530pt;}
._1e_c00192{width:32.610266pt;}
._19_c00192{width:33.620815pt;}
._17_c00192{width:36.246396pt;}
._1f_c00192{width:38.057191pt;}
._1a_c00192{width:39.698968pt;}
.fs11_c00192{font-size:46.000000pt;}
.fsc_c00192{font-size:46.666667pt;}
.fse_c00192{font-size:60.666667pt;}
.fs8_c00192{font-size:62.666667pt;}
.fsb_c00192{font-size:63.333333pt;}
.fsd_c00192{font-size:64.666667pt;}
.fs4_c00192{font-size:68.000000pt;}
.fs5_c00192{font-size:68.666667pt;}
.fsa_c00192{font-size:69.333333pt;}
.fs0_c00192{font-size:70.000000pt;}
.fs6_c00192{font-size:70.666667pt;}
.fs7_c00192{font-size:71.333333pt;}
.fs1_c00192{font-size:72.000000pt;}
.fs9_c00192{font-size:72.666667pt;}
.fs3_c00192{font-size:73.333333pt;}
.fsf_c00192{font-size:74.000000pt;}
.fs2_c00192{font-size:75.333333pt;}
.fs10_c00192{font-size:78.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y26_c00192{bottom:162.561080pt;}
.y25_c00192{bottom:162.561827pt;}
.y24_c00192{bottom:188.160813pt;}
.y23_c00192{bottom:214.400387pt;}
.y22_c00192{bottom:267.840947pt;}
.y20_c00192{bottom:294.080000pt;}
.y21_c00192{bottom:294.080520pt;}
.y1f_c00192{bottom:346.880947pt;}
.y1e_c00192{bottom:400.000453pt;}
.y1d_c00192{bottom:426.880373pt;}
.y1c_c00192{bottom:438.720667pt;}
.y1b_c00192{bottom:453.120120pt;}
.y1a_c00192{bottom:453.120280pt;}
.y19_c00192{bottom:479.359867pt;}
.y18_c00192{bottom:479.359987pt;}
.y17_c00192{bottom:505.599573pt;}
.y15_c00192{bottom:558.399787pt;}
.y16_c00192{bottom:558.399867pt;}
.y14_c00192{bottom:585.279707pt;}
.y13_c00192{bottom:611.521773pt;}
.y12_c00192{bottom:638.720253pt;}
.y11_c00192{bottom:669.440920pt;}
.y10_c00192{bottom:691.200453pt;}
.yf_c00192{bottom:717.760213pt;}
.ye_c00192{bottom:744.640133pt;}
.yd_c00192{bottom:744.640293pt;}
.yb_c00192{bottom:770.879520pt;}
.yc_c00192{bottom:770.879880pt;}
.ya_c00192{bottom:824.000893pt;}
.y9_c00192{bottom:850.559973pt;}
.y8_c00192{bottom:850.560187pt;}
.y7_c00192{bottom:877.119933pt;}
.y6_c00192{bottom:903.679693pt;}
.y5_c00192{bottom:929.920893pt;}
.y4_c00192{bottom:956.800787pt;}
.y3_c00192{bottom:956.800947pt;}
.y2_c00192{bottom:983.040533pt;}
.y1_c00192{bottom:1009.599613pt;}
.h18_c00192{height:47.976562pt;}
.h10_c00192{height:48.671875pt;}
.h15_c00192{height:61.140625pt;}
.hb_c00192{height:65.359375pt;}
.hf_c00192{height:66.054688pt;}
.h6_c00192{height:66.738281pt;}
.h7_c00192{height:67.392578pt;}
.h12_c00192{height:67.445312pt;}
.hd_c00192{height:68.046875pt;}
.h11_c00192{height:68.531250pt;}
.h1_c00192{height:68.701172pt;}
.h13_c00192{height:69.203125pt;}
.h19_c00192{height:69.320964pt;}
.he_c00192{height:69.355469pt;}
.h14_c00192{height:69.875000pt;}
.ha_c00192{height:70.009766pt;}
.h8_c00192{height:70.546875pt;}
.h2_c00192{height:70.664062pt;}
.h5_c00192{height:71.156250pt;}
.h9_c00192{height:71.218750pt;}
.hc_c00192{height:71.318359pt;}
.h4_c00192{height:71.972656pt;}
.h16_c00192{height:72.626953pt;}
.h3_c00192{height:73.935547pt;}
.h17_c00192{height:76.552734pt;}
.h0_c00192{height:1122.666667pt;}
.w0_c00192{width:793.333333pt;}
.x0_c00192{left:0.000000pt;}
.x33_c00192{left:92.799333pt;}
.x14_c00192{left:127.355413pt;}
.x1_c00192{left:128.639613pt;}
.x24_c00192{left:140.159200pt;}
.x4_c00192{left:142.079613pt;}
.xf_c00192{left:152.958947pt;}
.x2b_c00192{left:155.198667pt;}
.x36_c00192{left:175.678667pt;}
.x27_c00192{left:187.199733pt;}
.x28_c00192{left:199.678667pt;}
.x1d_c00192{left:212.159200pt;}
.x1e_c00192{left:228.479067pt;}
.x16_c00192{left:230.718787pt;}
.x10_c00192{left:232.639200pt;}
.x37_c00192{left:235.839867pt;}
.x11_c00192{left:244.479453pt;}
.x17_c00192{left:251.198667pt;}
.x1f_c00192{left:255.999067pt;}
.x25_c00192{left:288.319333pt;}
.x20_c00192{left:306.878920pt;}
.x12_c00192{left:308.799320pt;}
.x13_c00192{left:324.799867pt;}
.x26_c00192{left:326.718787pt;}
.x18_c00192{left:338.559067pt;}
.x21_c00192{left:345.919840pt;}
.x38_c00192{left:390.719200pt;}
.x7_c00192{left:392.318813pt;}
.x39_c00192{left:403.839840pt;}
.x19_c00192{left:423.358933pt;}
.x29_c00192{left:434.239707pt;}
.x1a_c00192{left:436.479453pt;}
.x2a_c00192{left:447.679733pt;}
.x8_c00192{left:456.959467pt;}
.x22_c00192{left:463.038533pt;}
.x5_c00192{left:465.279707pt;}
.x2_c00192{left:473.279333pt;}
.x9_c00192{left:479.039067pt;}
.x3_c00192{left:495.039587pt;}
.xa_c00192{left:498.559573pt;}
.x6_c00192{left:499.839840pt;}
.x2c_c00192{left:512.958907pt;}
.x31_c00192{left:538.558507pt;}
.x2f_c00192{left:539.838907pt;}
.x2d_c00192{left:546.878907pt;}
.x30_c00192{left:553.918907pt;}
.x32_c00192{left:558.719200pt;}
.x2e_c00192{left:573.439453pt;}
.xb_c00192{left:574.719720pt;}
.x34_c00192{left:588.799840pt;}
.xc_c00192{left:597.118693pt;}
.x35_c00192{left:606.079067pt;}
.x23_c00192{left:621.118693pt;}
.xd_c00192{left:628.798787pt;}
.x1b_c00192{left:653.759720pt;}
.xe_c00192{left:658.558507pt;}
.x1c_c00192{left:667.199707pt;}
.x15_c00192{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65d8f97a0dffc2ba84bdb550.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_33638de7027c02ef6028a7ca.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_7f5e2a1f013a0d95058fde93.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_e796f5d9da27d8f464982f19.woff2')format("woff");}.ff4_c00193{font-family:ff4_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:ff5_c00193;src:url('chunks/assets/font_64acdbea2e00357e6c2ebe81.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00193;src:url('chunks/assets/font_656c26349cb7434cd294e523.woff2')format("woff");}.ff6_c00193{font-family:ff6_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;}
.m9_c00193{transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{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_c00193{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m1e_c00193{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.294737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294737,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310976,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.602041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602041,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls18_c00193{letter-spacing:-12.636810px;}
.lsd_c00193{letter-spacing:-12.525750px;}
.ls11_c00193{letter-spacing:-10.521900px;}
.ls4_c00193{letter-spacing:-8.914500px;}
.ls26_c00193{letter-spacing:-8.175038px;}
.ls7_c00193{letter-spacing:-7.426125px;}
.ls13_c00193{letter-spacing:-7.232400px;}
.lsa_c00193{letter-spacing:-6.685875px;}
.ls25_c00193{letter-spacing:-6.336150px;}
.ls1e_c00193{letter-spacing:-6.000750px;}
.ls9_c00193{letter-spacing:-5.945625px;}
.ls19_c00193{letter-spacing:-5.889548px;}
.ls15_c00193{letter-spacing:-5.800463px;}
.lsb_c00193{letter-spacing:-5.196713px;}
.ls24_c00193{letter-spacing:-5.054963px;}
.ls2_c00193{letter-spacing:-4.456463px;}
.ls1c_c00193{letter-spacing:-4.453125px;}
.ls20_c00193{letter-spacing:-3.937500px;}
.ls21_c00193{letter-spacing:-3.820703px;}
.ls16_c00193{letter-spacing:-3.783510px;}
.ls8_c00193{letter-spacing:-3.717000px;}
.ls1f_c00193{letter-spacing:-3.680850px;}
.ls22_c00193{letter-spacing:-3.446625px;}
.ls0_c00193{letter-spacing:-2.968875px;}
.ls23_c00193{letter-spacing:-2.914650px;}
.ls1_c00193{letter-spacing:-2.229413px;}
.ls6_c00193{letter-spacing:-1.489163px;}
.ls5_c00193{letter-spacing:-0.740250px;}
.ls3_c00193{letter-spacing:0.000000px;}
.ls1b_c00193{letter-spacing:0.737490px;}
.ls10_c00193{letter-spacing:2.514413px;}
.ls1a_c00193{letter-spacing:3.439800px;}
.ls17_c00193{letter-spacing:3.637710px;}
.ls1d_c00193{letter-spacing:5.101200px;}
.lsf_c00193{letter-spacing:5.729850px;}
.lsc_c00193{letter-spacing:9.016950px;}
.lse_c00193{letter-spacing:16.755000px;}
.ls12_c00193{letter-spacing:35.586953px;}
.ls14_c00193{letter-spacing:72.956835px;}
.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;}
._12_c00193{margin-left:-87.003640px;}
._17_c00193{margin-left:-2.262413px;}
._4_c00193{margin-left:-1.029233px;}
._9_c00193{width:1.370146px;}
._0_c00193{width:2.504309px;}
._6_c00193{width:4.332795px;}
._2_c00193{width:6.129558px;}
._1_c00193{width:7.267570px;}
._3_c00193{width:8.518016px;}
._13_c00193{width:9.530221px;}
._7_c00193{width:10.657891px;}
._b_c00193{width:12.073534px;}
._8_c00193{width:14.330093px;}
._11_c00193{width:16.043975px;}
._a_c00193{width:17.366084px;}
._f_c00193{width:19.145819px;}
._c_c00193{width:20.158692px;}
._5_c00193{width:22.065126px;}
._e_c00193{width:23.864222px;}
._15_c00193{width:25.327100px;}
._10_c00193{width:26.377283px;}
._14_c00193{width:28.169217px;}
._16_c00193{width:31.395173px;}
._d_c00193{width:32.696970px;}
.fc0_c00193{color:transparent;}
.fsd_c00193{font-size:36.750000px;}
.fsf_c00193{font-size:39.000000px;}
.fsc_c00193{font-size:43.500000px;}
.fs8_c00193{font-size:54.750000px;}
.fse_c00193{font-size:58.500000px;}
.fs9_c00193{font-size:61.500000px;}
.fs3_c00193{font-size:70.500000px;}
.fs4_c00193{font-size:71.250000px;}
.fs6_c00193{font-size:72.750000px;}
.fs5_c00193{font-size:75.000000px;}
.fs12_c00193{font-size:75.750000px;}
.fsa_c00193{font-size:76.500000px;}
.fs11_c00193{font-size:77.250000px;}
.fsb_c00193{font-size:78.000000px;}
.fs0_c00193{font-size:78.750000px;}
.fs10_c00193{font-size:79.500000px;}
.fs2_c00193{font-size:80.250000px;}
.fs7_c00193{font-size:81.000000px;}
.fs1_c00193{font-size:82.500000px;}
.y0_c00193{bottom:0.000000px;}
.y24_c00193{bottom:242.639025px;}
.y25_c00193{bottom:242.639100px;}
.y23_c00193{bottom:272.160375px;}
.y22_c00193{bottom:302.400285px;}
.y21_c00193{bottom:302.400405px;}
.y20_c00193{bottom:331.919925px;}
.y1f_c00193{bottom:362.159850px;}
.y1e_c00193{bottom:362.160135px;}
.y1d_c00193{bottom:391.679670px;}
.y1c_c00193{bottom:391.680135px;}
.y1b_c00193{bottom:428.399235px;}
.y1a_c00193{bottom:480.958920px;}
.y19_c00193{bottom:488.519670px;}
.y18_c00193{bottom:510.480285px;}
.y17_c00193{bottom:510.480465px;}
.y16_c00193{bottom:540.000000px;}
.y15_c00193{bottom:569.878920px;}
.y14_c00193{bottom:569.879820px;}
.y13_c00193{bottom:599.759535px;}
.y12_c00193{bottom:599.759715px;}
.y11_c00193{bottom:629.279250px;}
.y10_c00193{bottom:629.281305px;}
.yf_c00193{bottom:659.161035px;}
.ye_c00193{bottom:689.040750px;}
.yd_c00193{bottom:718.560285px;}
.yc_c00193{bottom:751.319820px;}
.ya_c00193{bottom:778.318455px;}
.yb_c00193{bottom:778.319820px;}
.y9_c00193{bottom:808.558365px;}
.y8_c00193{bottom:868.317810px;}
.y7_c00193{bottom:927.718875px;}
.y6_c00193{bottom:987.119940px;}
.y5_c00193{bottom:987.120075px;}
.y4_c00193{bottom:1017.718365px;}
.y3_c00193{bottom:1076.759235px;}
.y2_c00193{bottom:1106.638965px;}
.y1_c00193{bottom:1136.878875px;}
.h10_c00193{height:36.319336px;}
.h13_c00193{height:38.542969px;}
.h12_c00193{height:40.675781px;}
.hf_c00193{height:45.369141px;}
.ha_c00193{height:57.102539px;}
.h11_c00193{height:58.957031px;}
.hb_c00193{height:60.779297px;}
.h4_c00193{height:73.529297px;}
.h5_c00193{height:74.311523px;}
.h17_c00193{height:74.344482px;}
.hd_c00193{height:75.080566px;}
.h16_c00193{height:75.816650px;}
.h7_c00193{height:75.875977px;}
.he_c00193{height:76.552734px;}
.h18_c00193{height:77.097656px;}
.h1_c00193{height:77.288818px;}
.h15_c00193{height:78.024902px;}
.h6_c00193{height:78.222656px;}
.h8_c00193{height:78.721802px;}
.h3_c00193{height:78.760986px;}
.h14_c00193{height:79.365234px;}
.hc_c00193{height:79.497070px;}
.h9_c00193{height:80.050781px;}
.h2_c00193{height:80.969238px;}
.h0_c00193{height:1263.000000px;}
.w0_c00193{width:892.500000px;}
.x0_c00193{left:0.000000px;}
.x21_c00193{left:100.798515px;}
.x1c_c00193{left:138.599100px;}
.x7_c00193{left:139.676970px;}
.x4_c00193{left:141.117135px;}
.x24_c00193{left:149.759100px;}
.x25_c00193{left:157.679100px;}
.x26_c00193{left:191.158785px;}
.x1_c00193{left:196.559100px;}
.x38_c00193{left:205.919535px;}
.x27_c00193{left:215.639100px;}
.xa_c00193{left:241.198785px;}
.x1d_c00193{left:255.598500px;}
.xb_c00193{left:261.359850px;}
.x1e_c00193{left:282.598500px;}
.x28_c00193{left:302.039385px;}
.x29_c00193{left:323.639100px;}
.xc_c00193{left:351.718500px;}
.x30_c00193{left:352.799535px;}
.x2a_c00193{left:370.798515px;}
.x31_c00193{left:372.599700px;}
.xd_c00193{left:376.559685px;}
.x16_c00193{left:384.118785px;}
.x2b_c00193{left:410.759535px;}
.x17_c00193{left:412.199850px;}
.x18_c00193{left:437.039385px;}
.xe_c00193{left:439.199850px;}
.x19_c00193{left:445.679670px;}
.x12_c00193{left:453.599670px;}
.x2c_c00193{left:455.758530px;}
.x13_c00193{left:468.719565px;}
.x1a_c00193{left:486.000000px;}
.x34_c00193{left:487.799565px;}
.x35_c00193{left:506.518620px;}
.x2d_c00193{left:508.319820px;}
.xf_c00193{left:513.718500px;}
.x14_c00193{left:518.759535px;}
.x2e_c00193{left:526.318770px;}
.x5_c00193{left:572.039385px;}
.x8_c00193{left:585.359850px;}
.x6_c00193{left:587.518620px;}
.x32_c00193{left:596.519670px;}
.x2f_c00193{left:598.678530px;}
.x9_c00193{left:601.918350px;}
.x22_c00193{left:607.318770px;}
.x10_c00193{left:609.479235px;}
.x33_c00193{left:610.558635px;}
.x15_c00193{left:611.998950px;}
.x23_c00193{left:622.079400px;}
.x1f_c00193{left:623.158770px;}
.x39_c00193{left:635.399820px;}
.x20_c00193{left:637.558635px;}
.x11_c00193{left:642.958920px;}
.x3a_c00193{left:669.238770px;}
.x2_c00193{left:682.199850px;}
.x3_c00193{left:696.599670px;}
.x36_c00193{left:701.279850px;}
.x37_c00193{left:716.038920px;}
.x1b_c00193{left:769.679715px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls18_c00193{letter-spacing:-11.232720pt;}
.lsd_c00193{letter-spacing:-11.134000pt;}
.ls11_c00193{letter-spacing:-9.352800pt;}
.ls4_c00193{letter-spacing:-7.924000pt;}
.ls26_c00193{letter-spacing:-7.266700pt;}
.ls7_c00193{letter-spacing:-6.601000pt;}
.ls13_c00193{letter-spacing:-6.428800pt;}
.lsa_c00193{letter-spacing:-5.943000pt;}
.ls25_c00193{letter-spacing:-5.632133pt;}
.ls1e_c00193{letter-spacing:-5.334000pt;}
.ls9_c00193{letter-spacing:-5.285000pt;}
.ls19_c00193{letter-spacing:-5.235153pt;}
.ls15_c00193{letter-spacing:-5.155967pt;}
.lsb_c00193{letter-spacing:-4.619300pt;}
.ls24_c00193{letter-spacing:-4.493300pt;}
.ls2_c00193{letter-spacing:-3.961300pt;}
.ls1c_c00193{letter-spacing:-3.958333pt;}
.ls20_c00193{letter-spacing:-3.500000pt;}
.ls21_c00193{letter-spacing:-3.396180pt;}
.ls16_c00193{letter-spacing:-3.363120pt;}
.ls8_c00193{letter-spacing:-3.304000pt;}
.ls1f_c00193{letter-spacing:-3.271867pt;}
.ls22_c00193{letter-spacing:-3.063667pt;}
.ls0_c00193{letter-spacing:-2.639000pt;}
.ls23_c00193{letter-spacing:-2.590800pt;}
.ls1_c00193{letter-spacing:-1.981700pt;}
.ls6_c00193{letter-spacing:-1.323700pt;}
.ls5_c00193{letter-spacing:-0.658000pt;}
.ls3_c00193{letter-spacing:0.000000pt;}
.ls1b_c00193{letter-spacing:0.655547pt;}
.ls10_c00193{letter-spacing:2.235033pt;}
.ls1a_c00193{letter-spacing:3.057600pt;}
.ls17_c00193{letter-spacing:3.233520pt;}
.ls1d_c00193{letter-spacing:4.534400pt;}
.lsf_c00193{letter-spacing:5.093200pt;}
.lsc_c00193{letter-spacing:8.015067pt;}
.lse_c00193{letter-spacing:14.893333pt;}
.ls12_c00193{letter-spacing:31.632847pt;}
.ls14_c00193{letter-spacing:64.850520pt;}
.ws0_c00193{word-spacing:0.000000pt;}
._12_c00193{margin-left:-77.336569pt;}
._17_c00193{margin-left:-2.011034pt;}
._4_c00193{margin-left:-0.914874pt;}
._9_c00193{width:1.217908pt;}
._0_c00193{width:2.226053pt;}
._6_c00193{width:3.851374pt;}
._2_c00193{width:5.448496pt;}
._1_c00193{width:6.460062pt;}
._3_c00193{width:7.571570pt;}
._13_c00193{width:8.471308pt;}
._7_c00193{width:9.473681pt;}
._b_c00193{width:10.732030pt;}
._8_c00193{width:12.737860pt;}
._11_c00193{width:14.261311pt;}
._a_c00193{width:15.436519pt;}
._f_c00193{width:17.018506pt;}
._c_c00193{width:17.918838pt;}
._5_c00193{width:19.613445pt;}
._e_c00193{width:21.212642pt;}
._15_c00193{width:22.512977pt;}
._10_c00193{width:23.446474pt;}
._14_c00193{width:25.039304pt;}
._16_c00193{width:27.906821pt;}
._d_c00193{width:29.063974pt;}
.fsd_c00193{font-size:32.666667pt;}
.fsf_c00193{font-size:34.666667pt;}
.fsc_c00193{font-size:38.666667pt;}
.fs8_c00193{font-size:48.666667pt;}
.fse_c00193{font-size:52.000000pt;}
.fs9_c00193{font-size:54.666667pt;}
.fs3_c00193{font-size:62.666667pt;}
.fs4_c00193{font-size:63.333333pt;}
.fs6_c00193{font-size:64.666667pt;}
.fs5_c00193{font-size:66.666667pt;}
.fs12_c00193{font-size:67.333333pt;}
.fsa_c00193{font-size:68.000000pt;}
.fs11_c00193{font-size:68.666667pt;}
.fsb_c00193{font-size:69.333333pt;}
.fs0_c00193{font-size:70.000000pt;}
.fs10_c00193{font-size:70.666667pt;}
.fs2_c00193{font-size:71.333333pt;}
.fs7_c00193{font-size:72.000000pt;}
.fs1_c00193{font-size:73.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.y24_c00193{bottom:215.679133pt;}
.y25_c00193{bottom:215.679200pt;}
.y23_c00193{bottom:241.920333pt;}
.y22_c00193{bottom:268.800253pt;}
.y21_c00193{bottom:268.800360pt;}
.y20_c00193{bottom:295.039933pt;}
.y1f_c00193{bottom:321.919867pt;}
.y1e_c00193{bottom:321.920120pt;}
.y1d_c00193{bottom:348.159707pt;}
.y1c_c00193{bottom:348.160120pt;}
.y1b_c00193{bottom:380.799320pt;}
.y1a_c00193{bottom:427.519040pt;}
.y19_c00193{bottom:434.239707pt;}
.y18_c00193{bottom:453.760253pt;}
.y17_c00193{bottom:453.760413pt;}
.y16_c00193{bottom:480.000000pt;}
.y15_c00193{bottom:506.559040pt;}
.y14_c00193{bottom:506.559840pt;}
.y13_c00193{bottom:533.119587pt;}
.y12_c00193{bottom:533.119747pt;}
.y11_c00193{bottom:559.359333pt;}
.y10_c00193{bottom:559.361160pt;}
.yf_c00193{bottom:585.920920pt;}
.ye_c00193{bottom:612.480667pt;}
.yd_c00193{bottom:638.720253pt;}
.yc_c00193{bottom:667.839840pt;}
.ya_c00193{bottom:691.838627pt;}
.yb_c00193{bottom:691.839840pt;}
.y9_c00193{bottom:718.718547pt;}
.y8_c00193{bottom:771.838053pt;}
.y7_c00193{bottom:824.639000pt;}
.y6_c00193{bottom:877.439947pt;}
.y5_c00193{bottom:877.440067pt;}
.y4_c00193{bottom:904.638547pt;}
.y3_c00193{bottom:957.119320pt;}
.y2_c00193{bottom:983.679080pt;}
.y1_c00193{bottom:1010.559000pt;}
.h10_c00193{height:32.283854pt;}
.h13_c00193{height:34.260417pt;}
.h12_c00193{height:36.156250pt;}
.hf_c00193{height:40.328125pt;}
.ha_c00193{height:50.757812pt;}
.h11_c00193{height:52.406250pt;}
.hb_c00193{height:54.026042pt;}
.h4_c00193{height:65.359375pt;}
.h5_c00193{height:66.054688pt;}
.h17_c00193{height:66.083984pt;}
.hd_c00193{height:66.738281pt;}
.h16_c00193{height:67.392578pt;}
.h7_c00193{height:67.445312pt;}
.he_c00193{height:68.046875pt;}
.h18_c00193{height:68.531250pt;}
.h1_c00193{height:68.701172pt;}
.h15_c00193{height:69.355469pt;}
.h6_c00193{height:69.531250pt;}
.h8_c00193{height:69.974935pt;}
.h3_c00193{height:70.009766pt;}
.h14_c00193{height:70.546875pt;}
.hc_c00193{height:70.664062pt;}
.h9_c00193{height:71.156250pt;}
.h2_c00193{height:71.972656pt;}
.h0_c00193{height:1122.666667pt;}
.w0_c00193{width:793.333333pt;}
.x0_c00193{left:0.000000pt;}
.x21_c00193{left:89.598680pt;}
.x1c_c00193{left:123.199200pt;}
.x7_c00193{left:124.157307pt;}
.x4_c00193{left:125.437453pt;}
.x24_c00193{left:133.119200pt;}
.x25_c00193{left:140.159200pt;}
.x26_c00193{left:169.918920pt;}
.x1_c00193{left:174.719200pt;}
.x38_c00193{left:183.039587pt;}
.x27_c00193{left:191.679200pt;}
.xa_c00193{left:214.398920pt;}
.x1d_c00193{left:227.198667pt;}
.xb_c00193{left:232.319867pt;}
.x1e_c00193{left:251.198667pt;}
.x28_c00193{left:268.479453pt;}
.x29_c00193{left:287.679200pt;}
.xc_c00193{left:312.638667pt;}
.x30_c00193{left:313.599587pt;}
.x2a_c00193{left:329.598680pt;}
.x31_c00193{left:331.199733pt;}
.xd_c00193{left:334.719720pt;}
.x16_c00193{left:341.438920pt;}
.x2b_c00193{left:365.119587pt;}
.x17_c00193{left:366.399867pt;}
.x18_c00193{left:388.479453pt;}
.xe_c00193{left:390.399867pt;}
.x19_c00193{left:396.159707pt;}
.x12_c00193{left:403.199707pt;}
.x2c_c00193{left:405.118693pt;}
.x13_c00193{left:416.639613pt;}
.x1a_c00193{left:432.000000pt;}
.x34_c00193{left:433.599613pt;}
.x35_c00193{left:450.238773pt;}
.x2d_c00193{left:451.839840pt;}
.xf_c00193{left:456.638667pt;}
.x14_c00193{left:461.119587pt;}
.x2e_c00193{left:467.838907pt;}
.x5_c00193{left:508.479453pt;}
.x8_c00193{left:520.319867pt;}
.x6_c00193{left:522.238773pt;}
.x32_c00193{left:530.239707pt;}
.x2f_c00193{left:532.158693pt;}
.x9_c00193{left:535.038533pt;}
.x22_c00193{left:539.838907pt;}
.x10_c00193{left:541.759320pt;}
.x33_c00193{left:542.718787pt;}
.x15_c00193{left:543.999067pt;}
.x23_c00193{left:552.959467pt;}
.x1f_c00193{left:553.918907pt;}
.x39_c00193{left:564.799840pt;}
.x20_c00193{left:566.718787pt;}
.x11_c00193{left:571.519040pt;}
.x3a_c00193{left:594.878907pt;}
.x2_c00193{left:606.399867pt;}
.x3_c00193{left:619.199707pt;}
.x36_c00193{left:623.359867pt;}
.x37_c00193{left:636.479040pt;}
.x1b_c00193{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2acdf2432f41251d8c8ecaa4.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_a72099da456748fa4a4fbf16.woff2')format("woff");}.ff2_c00194{font-family:ff2_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;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_2c14108b6a73b14d51675a52.woff2')format("woff");}.ff3_c00194{font-family:ff3_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:ff4_c00194;src:url('chunks/assets/font_6c63a64343cf43c1cf09b4f5.woff2')format("woff");}.ff4_c00194{font-family:ff4_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;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_0f7f58d326a2833cd38efd35.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00194{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.329114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329114,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.590426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590426,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls17_c00194{letter-spacing:-34.200720px;}
.ls1_c00194{letter-spacing:-10.857825px;}
.ls8_c00194{letter-spacing:-9.654750px;}
.ls14_c00194{letter-spacing:-8.914500px;}
.ls11_c00194{letter-spacing:-8.250825px;}
.ls1d_c00194{letter-spacing:-7.734038px;}
.ls1c_c00194{letter-spacing:-7.426125px;}
.lsf_c00194{letter-spacing:-6.000300px;}
.ls4_c00194{letter-spacing:-5.945625px;}
.lsc_c00194{letter-spacing:-5.676300px;}
.ls3_c00194{letter-spacing:-5.247533px;}
.ls5_c00194{letter-spacing:-5.196713px;}
.ls12_c00194{letter-spacing:-4.544910px;}
.lsd_c00194{letter-spacing:-4.456463px;}
.lse_c00194{letter-spacing:-4.418663px;}
.ls1b_c00194{letter-spacing:-4.378500px;}
.ls16_c00194{letter-spacing:-3.822000px;}
.ls6_c00194{letter-spacing:-3.717000px;}
.ls10_c00194{letter-spacing:-3.028950px;}
.ls0_c00194{letter-spacing:-2.968875px;}
.ls9_c00194{letter-spacing:-2.400750px;}
.ls2_c00194{letter-spacing:-2.229413px;}
.ls19_c00194{letter-spacing:-1.632533px;}
.ls13_c00194{letter-spacing:-1.584000px;}
.lsb_c00194{letter-spacing:-1.489163px;}
.ls15_c00194{letter-spacing:-0.804173px;}
.lsa_c00194{letter-spacing:-0.740250px;}
.ls7_c00194{letter-spacing:0.000000px;}
.ls18_c00194{letter-spacing:1.137600px;}
.ls1a_c00194{letter-spacing:42.629550px;}
.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;}
._17_c00194{margin-left:-7.255044px;}
._16_c00194{margin-left:-6.045504px;}
._c_c00194{margin-left:-5.032526px;}
._6_c00194{margin-left:-3.635769px;}
._15_c00194{margin-left:-2.599315px;}
._5_c00194{margin-left:-1.575178px;}
._11_c00194{width:1.069544px;}
._4_c00194{width:2.338548px;}
._0_c00194{width:3.535117px;}
._e_c00194{width:4.731567px;}
._3_c00194{width:5.858851px;}
._2_c00194{width:7.168880px;}
._10_c00194{width:8.766435px;}
._d_c00194{width:9.999006px;}
._f_c00194{width:11.810687px;}
._7_c00194{width:12.838538px;}
._14_c00194{width:13.967338px;}
._1_c00194{width:15.095959px;}
._8_c00194{width:16.121863px;}
._b_c00194{width:18.170938px;}
._13_c00194{width:19.213187px;}
._12_c00194{width:21.388797px;}
._9_c00194{width:24.719209px;}
._19_c00194{width:25.918170px;}
._18_c00194{width:26.985114px;}
._a_c00194{width:28.502181px;}
.fc0_c00194{color:transparent;}
.fs6_c00194{font-size:35.250000px;}
.fs8_c00194{font-size:43.500000px;}
.fsf_c00194{font-size:55.500000px;}
.fsd_c00194{font-size:59.250000px;}
.fsc_c00194{font-size:72.000000px;}
.fs3_c00194{font-size:72.750000px;}
.fsa_c00194{font-size:75.750000px;}
.fs9_c00194{font-size:77.250000px;}
.fsb_c00194{font-size:78.000000px;}
.fs0_c00194{font-size:78.750000px;}
.fs4_c00194{font-size:79.500000px;}
.fs10_c00194{font-size:80.250000px;}
.fs7_c00194{font-size:81.000000px;}
.fs2_c00194{font-size:81.750000px;}
.fs1_c00194{font-size:82.500000px;}
.fse_c00194{font-size:83.250000px;}
.fs5_c00194{font-size:84.750000px;}
.y0_c00194{bottom:0.000000px;}
.y24_c00194{bottom:187.559010px;}
.y23_c00194{bottom:216.720150px;}
.y22_c00194{bottom:216.720180px;}
.y21_c00194{bottom:246.960090px;}
.y20_c00194{bottom:276.839820px;}
.y1e_c00194{bottom:306.718845px;}
.y1f_c00194{bottom:306.719535px;}
.y1c_c00194{bottom:335.879385px;}
.y1d_c00194{bottom:335.880000px;}
.y1b_c00194{bottom:365.759100px;}
.y1a_c00194{bottom:395.280435px;}
.y19_c00194{bottom:430.198785px;}
.y18_c00194{bottom:484.918950px;}
.y17_c00194{bottom:492.118785px;}
.y16_c00194{bottom:514.801260px;}
.y15_c00194{bottom:544.680975px;}
.y14_c00194{bottom:574.200510px;}
.y13_c00194{bottom:632.881185px;}
.y12_c00194{bottom:663.121095px;}
.y11_c00194{bottom:722.880540px;}
.y10_c00194{bottom:782.639985px;}
.yf_c00194{bottom:812.519715px;}
.ye_c00194{bottom:812.520510px;}
.yd_c00194{bottom:842.400240px;}
.yc_c00194{bottom:881.280390px;}
.yb_c00194{bottom:902.519445px;}
.ya_c00194{bottom:932.038965px;}
.y9_c00194{bottom:932.039085px;}
.y8_c00194{bottom:961.918815px;}
.y6_c00194{bottom:991.078740px;}
.y7_c00194{bottom:991.079955px;}
.y5_c00194{bottom:1051.198380px;}
.y4_c00194{bottom:1081.440405px;}
.y3_c00194{bottom:1110.959925px;}
.y2_c00194{bottom:1110.960120px;}
.y1_c00194{bottom:1140.479640px;}
.h7_c00194{height:36.764648px;}
.h9_c00194{height:45.369141px;}
.h11_c00194{height:55.933594px;}
.he_c00194{height:59.712891px;}
.hd_c00194{height:75.093750px;}
.h4_c00194{height:75.875977px;}
.hb_c00194{height:76.341797px;}
.h1_c00194{height:77.288818px;}
.ha_c00194{height:77.853516px;}
.h5_c00194{height:78.024902px;}
.hc_c00194{height:78.609375px;}
.h12_c00194{height:78.760986px;}
.hf_c00194{height:79.365234px;}
.h8_c00194{height:79.497070px;}
.h3_c00194{height:80.233154px;}
.h2_c00194{height:80.969238px;}
.h10_c00194{height:81.664673px;}
.h6_c00194{height:83.177490px;}
.h0_c00194{height:1263.000000px;}
.w0_c00194{width:892.500000px;}
.x0_c00194{left:0.000000px;}
.x20_c00194{left:102.238785px;}
.x12_c00194{left:141.478890px;}
.x1_c00194{left:142.559100px;}
.x19_c00194{left:169.559100px;}
.x13_c00194{left:199.798950px;}
.x2_c00194{left:206.998950px;}
.x14_c00194{left:213.839535px;}
.x2a_c00194{left:227.878350px;}
.x3_c00194{left:232.919535px;}
.x15_c00194{left:239.040000px;}
.x2b_c00194{left:241.918950px;}
.xe_c00194{left:243.359250px;}
.xf_c00194{left:267.839535px;}
.x2e_c00194{left:269.639100px;}
.x4_c00194{left:288.359850px;}
.x23_c00194{left:291.599700px;}
.x5_c00194{left:308.878350px;}
.x10_c00194{left:321.839535px;}
.x1a_c00194{left:324.359250px;}
.x11_c00194{left:341.639700px;}
.x24_c00194{left:344.518635px;}
.x1b_c00194{left:352.438635px;}
.x25_c00194{left:444.959385px;}
.x1e_c00194{left:464.759535px;}
.x26_c00194{left:471.598530px;}
.x1f_c00194{left:479.879520px;}
.x2c_c00194{left:481.679070px;}
.x2d_c00194{left:499.679670px;}
.x18_c00194{left:517.319235px;}
.xa_c00194{left:528.479235px;}
.x6_c00194{left:540.718500px;}
.xb_c00194{left:541.799520px;}
.x16_c00194{left:545.759535px;}
.x21_c00194{left:554.399820px;}
.x7_c00194{left:556.919535px;}
.x17_c00194{left:560.159415px;}
.x22_c00194{left:569.878920px;}
.x27_c00194{left:573.838950px;}
.x8_c00194{left:578.159820px;}
.x9_c00194{left:615.238770px;}
.x1c_c00194{left:653.398635px;}
.x28_c00194{left:664.558635px;}
.x29_c00194{left:691.199385px;}
.x1d_c00194{left:695.159370px;}
.xc_c00194{left:723.958920px;}
.xd_c00194{left:755.639100px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls17_c00194{letter-spacing:-30.400640pt;}
.ls1_c00194{letter-spacing:-9.651400pt;}
.ls8_c00194{letter-spacing:-8.582000pt;}
.ls14_c00194{letter-spacing:-7.924000pt;}
.ls11_c00194{letter-spacing:-7.334067pt;}
.ls1d_c00194{letter-spacing:-6.874700pt;}
.ls1c_c00194{letter-spacing:-6.601000pt;}
.lsf_c00194{letter-spacing:-5.333600pt;}
.ls4_c00194{letter-spacing:-5.285000pt;}
.lsc_c00194{letter-spacing:-5.045600pt;}
.ls3_c00194{letter-spacing:-4.664473pt;}
.ls5_c00194{letter-spacing:-4.619300pt;}
.ls12_c00194{letter-spacing:-4.039920pt;}
.lsd_c00194{letter-spacing:-3.961300pt;}
.lse_c00194{letter-spacing:-3.927700pt;}
.ls1b_c00194{letter-spacing:-3.892000pt;}
.ls16_c00194{letter-spacing:-3.397333pt;}
.ls6_c00194{letter-spacing:-3.304000pt;}
.ls10_c00194{letter-spacing:-2.692400pt;}
.ls0_c00194{letter-spacing:-2.639000pt;}
.ls9_c00194{letter-spacing:-2.134000pt;}
.ls2_c00194{letter-spacing:-1.981700pt;}
.ls19_c00194{letter-spacing:-1.451140pt;}
.ls13_c00194{letter-spacing:-1.408000pt;}
.lsb_c00194{letter-spacing:-1.323700pt;}
.ls15_c00194{letter-spacing:-0.714820pt;}
.lsa_c00194{letter-spacing:-0.658000pt;}
.ls7_c00194{letter-spacing:0.000000pt;}
.ls18_c00194{letter-spacing:1.011200pt;}
.ls1a_c00194{letter-spacing:37.892933pt;}
.ws0_c00194{word-spacing:0.000000pt;}
._17_c00194{margin-left:-6.448928pt;}
._16_c00194{margin-left:-5.373781pt;}
._c_c00194{margin-left:-4.473357pt;}
._6_c00194{margin-left:-3.231794pt;}
._15_c00194{margin-left:-2.310502pt;}
._5_c00194{margin-left:-1.400158pt;}
._11_c00194{width:0.950706pt;}
._4_c00194{width:2.078709pt;}
._0_c00194{width:3.142326pt;}
._e_c00194{width:4.205838pt;}
._3_c00194{width:5.207868pt;}
._2_c00194{width:6.372338pt;}
._10_c00194{width:7.792387pt;}
._d_c00194{width:8.888006pt;}
._f_c00194{width:10.498389pt;}
._7_c00194{width:11.412034pt;}
._14_c00194{width:12.415411pt;}
._1_c00194{width:13.418630pt;}
._8_c00194{width:14.330545pt;}
._b_c00194{width:16.151945pt;}
._13_c00194{width:17.078389pt;}
._12_c00194{width:19.012264pt;}
._9_c00194{width:21.972630pt;}
._19_c00194{width:23.038374pt;}
._18_c00194{width:23.986768pt;}
._a_c00194{width:25.335272pt;}
.fs6_c00194{font-size:31.333333pt;}
.fs8_c00194{font-size:38.666667pt;}
.fsf_c00194{font-size:49.333333pt;}
.fsd_c00194{font-size:52.666667pt;}
.fsc_c00194{font-size:64.000000pt;}
.fs3_c00194{font-size:64.666667pt;}
.fsa_c00194{font-size:67.333333pt;}
.fs9_c00194{font-size:68.666667pt;}
.fsb_c00194{font-size:69.333333pt;}
.fs0_c00194{font-size:70.000000pt;}
.fs4_c00194{font-size:70.666667pt;}
.fs10_c00194{font-size:71.333333pt;}
.fs7_c00194{font-size:72.000000pt;}
.fs2_c00194{font-size:72.666667pt;}
.fs1_c00194{font-size:73.333333pt;}
.fse_c00194{font-size:74.000000pt;}
.fs5_c00194{font-size:75.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y24_c00194{bottom:166.719120pt;}
.y23_c00194{bottom:192.640133pt;}
.y22_c00194{bottom:192.640160pt;}
.y21_c00194{bottom:219.520080pt;}
.y20_c00194{bottom:246.079840pt;}
.y1e_c00194{bottom:272.638973pt;}
.y1f_c00194{bottom:272.639587pt;}
.y1c_c00194{bottom:298.559453pt;}
.y1d_c00194{bottom:298.560000pt;}
.y1b_c00194{bottom:325.119200pt;}
.y1a_c00194{bottom:351.360387pt;}
.y19_c00194{bottom:382.398920pt;}
.y18_c00194{bottom:431.039067pt;}
.y17_c00194{bottom:437.438920pt;}
.y16_c00194{bottom:457.601120pt;}
.y15_c00194{bottom:484.160867pt;}
.y14_c00194{bottom:510.400453pt;}
.y13_c00194{bottom:562.561053pt;}
.y12_c00194{bottom:589.440973pt;}
.y11_c00194{bottom:642.560480pt;}
.y10_c00194{bottom:695.679987pt;}
.yf_c00194{bottom:722.239747pt;}
.ye_c00194{bottom:722.240453pt;}
.yd_c00194{bottom:748.800213pt;}
.yc_c00194{bottom:783.360347pt;}
.yb_c00194{bottom:802.239507pt;}
.ya_c00194{bottom:828.479080pt;}
.y9_c00194{bottom:828.479187pt;}
.y8_c00194{bottom:855.038947pt;}
.y6_c00194{bottom:880.958880pt;}
.y7_c00194{bottom:880.959960pt;}
.y5_c00194{bottom:934.398560pt;}
.y4_c00194{bottom:961.280360pt;}
.y3_c00194{bottom:987.519933pt;}
.y2_c00194{bottom:987.520107pt;}
.y1_c00194{bottom:1013.759680pt;}
.h7_c00194{height:32.679688pt;}
.h9_c00194{height:40.328125pt;}
.h11_c00194{height:49.718750pt;}
.he_c00194{height:53.078125pt;}
.hd_c00194{height:66.750000pt;}
.h4_c00194{height:67.445312pt;}
.hb_c00194{height:67.859375pt;}
.h1_c00194{height:68.701172pt;}
.ha_c00194{height:69.203125pt;}
.h5_c00194{height:69.355469pt;}
.hc_c00194{height:69.875000pt;}
.h12_c00194{height:70.009766pt;}
.hf_c00194{height:70.546875pt;}
.h8_c00194{height:70.664062pt;}
.h3_c00194{height:71.318359pt;}
.h2_c00194{height:71.972656pt;}
.h10_c00194{height:72.590820pt;}
.h6_c00194{height:73.935547pt;}
.h0_c00194{height:1122.666667pt;}
.w0_c00194{width:793.333333pt;}
.x0_c00194{left:0.000000pt;}
.x20_c00194{left:90.878920pt;}
.x12_c00194{left:125.759013pt;}
.x1_c00194{left:126.719200pt;}
.x19_c00194{left:150.719200pt;}
.x13_c00194{left:177.599067pt;}
.x2_c00194{left:183.999067pt;}
.x14_c00194{left:190.079587pt;}
.x2a_c00194{left:202.558533pt;}
.x3_c00194{left:207.039587pt;}
.x15_c00194{left:212.480000pt;}
.x2b_c00194{left:215.039067pt;}
.xe_c00194{left:216.319333pt;}
.xf_c00194{left:238.079587pt;}
.x2e_c00194{left:239.679200pt;}
.x4_c00194{left:256.319867pt;}
.x23_c00194{left:259.199733pt;}
.x5_c00194{left:274.558533pt;}
.x10_c00194{left:286.079587pt;}
.x1a_c00194{left:288.319333pt;}
.x11_c00194{left:303.679733pt;}
.x24_c00194{left:306.238787pt;}
.x1b_c00194{left:313.278787pt;}
.x25_c00194{left:395.519453pt;}
.x1e_c00194{left:413.119587pt;}
.x26_c00194{left:419.198693pt;}
.x1f_c00194{left:426.559573pt;}
.x2c_c00194{left:428.159173pt;}
.x2d_c00194{left:444.159707pt;}
.x18_c00194{left:459.839320pt;}
.xa_c00194{left:469.759320pt;}
.x6_c00194{left:480.638667pt;}
.xb_c00194{left:481.599573pt;}
.x16_c00194{left:485.119587pt;}
.x21_c00194{left:492.799840pt;}
.x7_c00194{left:495.039587pt;}
.x17_c00194{left:497.919480pt;}
.x22_c00194{left:506.559040pt;}
.x27_c00194{left:510.079067pt;}
.x8_c00194{left:513.919840pt;}
.x9_c00194{left:546.878907pt;}
.x1c_c00194{left:580.798787pt;}
.x28_c00194{left:590.718787pt;}
.x29_c00194{left:614.399453pt;}
.x1d_c00194{left:617.919440pt;}
.xc_c00194{left:643.519040pt;}
.xd_c00194{left:671.679200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a4c624a2ff68d51a212449e.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.364746;font-style:normal;font-weight:normal;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_7c36b9e81fd99b1a0fdab565.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_38e514412bbf271fda4d45f1.woff2')format("woff");}.ff4_c00195{font-family:ff4_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:ff5_c00195;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14_c00195{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.me_c00195{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mc_c00195{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);}
.m13_c00195{transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls17_c00195{letter-spacing:-13.209150px;}
.lsd_c00195{letter-spacing:-12.880928px;}
.ls18_c00195{letter-spacing:-12.226305px;}
.ls16_c00195{letter-spacing:-8.914500px;}
.lsa_c00195{letter-spacing:-7.426125px;}
.lse_c00195{letter-spacing:-5.945625px;}
.ls6_c00195{letter-spacing:-5.196713px;}
.ls9_c00195{letter-spacing:-4.456463px;}
.ls7_c00195{letter-spacing:-4.410975px;}
.ls12_c00195{letter-spacing:-4.110473px;}
.ls1_c00195{letter-spacing:-3.717000px;}
.ls2_c00195{letter-spacing:-2.968875px;}
.lsf_c00195{letter-spacing:-2.434275px;}
.ls3_c00195{letter-spacing:-2.229413px;}
.lsc_c00195{letter-spacing:-2.226000px;}
.ls15_c00195{letter-spacing:-2.016000px;}
.ls11_c00195{letter-spacing:-1.541505px;}
.ls10_c00195{letter-spacing:-1.529850px;}
.ls5_c00195{letter-spacing:-1.489163px;}
.ls14_c00195{letter-spacing:-0.826875px;}
.ls13_c00195{letter-spacing:-0.764400px;}
.ls4_c00195{letter-spacing:-0.740250px;}
.ls8_c00195{letter-spacing:0.000000px;}
.lsb_c00195{letter-spacing:3.717000px;}
.ls0_c00195{letter-spacing:5.196713px;}
.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;}
._d_c00195{margin-left:-32.461983px;}
._1a_c00195{margin-left:-10.077964px;}
._7_c00195{margin-left:-5.418773px;}
._12_c00195{margin-left:-4.328902px;}
._13_c00195{margin-left:-2.429705px;}
._6_c00195{margin-left:-1.255245px;}
._3_c00195{width:2.030621px;}
._4_c00195{width:3.282018px;}
._2_c00195{width:4.292633px;}
._17_c00195{width:5.373677px;}
._1_c00195{width:6.473874px;}
._5_c00195{width:8.491746px;}
._8_c00195{width:9.796143px;}
._0_c00195{width:11.329599px;}
._11_c00195{width:13.428509px;}
._14_c00195{width:15.442994px;}
._16_c00195{width:16.564171px;}
._f_c00195{width:18.483160px;}
._15_c00195{width:20.038502px;}
._18_c00195{width:21.685700px;}
._e_c00195{width:23.963952px;}
._19_c00195{width:25.174993px;}
._a_c00195{width:26.773247px;}
._10_c00195{width:28.389999px;}
._b_c00195{width:31.264136px;}
._9_c00195{width:32.875302px;}
._c_c00195{width:37.927129px;}
.fc0_c00195{color:transparent;}
.fsc_c00195{font-size:51.750000px;}
.fs8_c00195{font-size:69.000000px;}
.fs6_c00195{font-size:69.750000px;}
.fs7_c00195{font-size:70.500000px;}
.fsb_c00195{font-size:72.000000px;}
.fsa_c00195{font-size:72.750000px;}
.fs2_c00195{font-size:75.750000px;}
.fs1_c00195{font-size:77.250000px;}
.fs9_c00195{font-size:78.000000px;}
.fs0_c00195{font-size:78.750000px;}
.fs4_c00195{font-size:79.500000px;}
.fs5_c00195{font-size:80.250000px;}
.fs3_c00195{font-size:82.500000px;}
.y0_c00195{bottom:0.000000px;}
.y24_c00195{bottom:217.799190px;}
.y25_c00195{bottom:217.799535px;}
.y23_c00195{bottom:247.678920px;}
.y22_c00195{bottom:277.558635px;}
.y21_c00195{bottom:307.798560px;}
.y20_c00195{bottom:366.479235px;}
.y1f_c00195{bottom:395.998950px;}
.y1e_c00195{bottom:395.999745px;}
.y1d_c00195{bottom:456.119385px;}
.y1c_c00195{bottom:494.638500px;}
.y1b_c00195{bottom:515.519625px;}
.y1a_c00195{bottom:545.759535px;}
.y19_c00195{bottom:545.760390px;}
.y18_c00195{bottom:575.279910px;}
.y17_c00195{bottom:633.960600px;}
.y16_c00195{bottom:663.840315px;}
.y14_c00195{bottom:693.359760px;}
.y15_c00195{bottom:693.359850px;}
.y12_c00195{bottom:723.599625px;}
.y13_c00195{bottom:723.599670px;}
.y11_c00195{bottom:753.839535px;}
.y10_c00195{bottom:813.599220px;}
.yf_c00195{bottom:843.118740px;}
.ye_c00195{bottom:843.119025px;}
.yd_c00195{bottom:872.638545px;}
.yc_c00195{bottom:872.639400px;}
.yb_c00195{bottom:932.759040px;}
.ya_c00195{bottom:932.759925px;}
.y9_c00195{bottom:962.639655px;}
.y8_c00195{bottom:962.639835px;}
.y7_c00195{bottom:992.159370px;}
.y6_c00195{bottom:992.160390px;}
.y5_c00195{bottom:1051.919835px;}
.y4_c00195{bottom:1081.799565px;}
.y2_c00195{bottom:1111.677930px;}
.y3_c00195{bottom:1111.678530px;}
.y1_c00195{bottom:1141.919955px;}
.h11_c00195{height:53.973633px;}
.h10_c00195{height:70.664062px;}
.hf_c00195{height:71.400146px;}
.hb_c00195{height:71.964844px;}
.h8_c00195{height:72.747070px;}
.h9_c00195{height:73.529297px;}
.h3_c00195{height:74.344482px;}
.h2_c00195{height:75.816650px;}
.h1_c00195{height:77.288818px;}
.hc_c00195{height:77.853516px;}
.h5_c00195{height:78.024902px;}
.h12_c00195{height:78.568359px;}
.hd_c00195{height:78.609375px;}
.h7_c00195{height:78.760986px;}
.h6_c00195{height:79.309570px;}
.he_c00195{height:79.365234px;}
.ha_c00195{height:80.121094px;}
.h4_c00195{height:80.969238px;}
.h0_c00195{height:1263.000000px;}
.w0_c00195{width:892.500000px;}
.x0_c00195{left:0.000000px;}
.x1e_c00195{left:103.679100px;}
.xb_c00195{left:142.199850px;}
.x1_c00195{left:143.279250px;}
.x21_c00195{left:164.158785px;}
.x4_c00195{left:188.639100px;}
.x5_c00195{left:206.639700px;}
.xc_c00195{left:218.158785px;}
.x22_c00195{left:226.078785px;}
.x6_c00195{left:232.919535px;}
.x23_c00195{left:251.999400px;}
.x7_c00195{left:280.439685px;}
.x8_c00195{left:293.758500px;}
.x19_c00195{left:295.918950px;}
.x9_c00195{left:311.399850px;}
.x11_c00195{left:320.758500px;}
.x12_c00195{left:349.918950px;}
.xa_c00195{left:364.318800px;}
.x13_c00195{left:367.199385px;}
.x14_c00195{left:401.758530px;}
.x15_c00195{left:491.039385px;}
.x1c_c00195{left:506.879520px;}
.x2_c00195{left:511.198785px;}
.x1f_c00195{left:515.519670px;}
.x1d_c00195{left:527.399820px;}
.x20_c00195{left:530.278800px;}
.x3_c00195{left:535.679070px;}
.x16_c00195{left:561.958920px;}
.x17_c00195{left:578.878320px;}
.x18_c00195{left:609.119985px;}
.xd_c00195{left:644.758530px;}
.xf_c00195{left:650.519670px;}
.x10_c00195{left:665.639700px;}
.xe_c00195{left:667.439250px;}
.x1a_c00195{left:709.199850px;}
.x1b_c00195{left:727.198785px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls17_c00195{letter-spacing:-11.741467pt;}
.lsd_c00195{letter-spacing:-11.449713pt;}
.ls18_c00195{letter-spacing:-10.867827pt;}
.ls16_c00195{letter-spacing:-7.924000pt;}
.lsa_c00195{letter-spacing:-6.601000pt;}
.lse_c00195{letter-spacing:-5.285000pt;}
.ls6_c00195{letter-spacing:-4.619300pt;}
.ls9_c00195{letter-spacing:-3.961300pt;}
.ls7_c00195{letter-spacing:-3.920867pt;}
.ls12_c00195{letter-spacing:-3.653753pt;}
.ls1_c00195{letter-spacing:-3.304000pt;}
.ls2_c00195{letter-spacing:-2.639000pt;}
.lsf_c00195{letter-spacing:-2.163800pt;}
.ls3_c00195{letter-spacing:-1.981700pt;}
.lsc_c00195{letter-spacing:-1.978667pt;}
.ls15_c00195{letter-spacing:-1.792000pt;}
.ls11_c00195{letter-spacing:-1.370227pt;}
.ls10_c00195{letter-spacing:-1.359867pt;}
.ls5_c00195{letter-spacing:-1.323700pt;}
.ls14_c00195{letter-spacing:-0.735000pt;}
.ls13_c00195{letter-spacing:-0.679467pt;}
.ls4_c00195{letter-spacing:-0.658000pt;}
.ls8_c00195{letter-spacing:0.000000pt;}
.lsb_c00195{letter-spacing:3.304000pt;}
.ls0_c00195{letter-spacing:4.619300pt;}
.ws0_c00195{word-spacing:0.000000pt;}
._d_c00195{margin-left:-28.855096pt;}
._1a_c00195{margin-left:-8.958191pt;}
._7_c00195{margin-left:-4.816687pt;}
._12_c00195{margin-left:-3.847913pt;}
._13_c00195{margin-left:-2.159738pt;}
._6_c00195{margin-left:-1.115774pt;}
._3_c00195{width:1.804996pt;}
._4_c00195{width:2.917349pt;}
._2_c00195{width:3.815674pt;}
._17_c00195{width:4.776602pt;}
._1_c00195{width:5.754555pt;}
._5_c00195{width:7.548219pt;}
._8_c00195{width:8.707683pt;}
._0_c00195{width:10.070755pt;}
._11_c00195{width:11.936453pt;}
._14_c00195{width:13.727106pt;}
._16_c00195{width:14.723708pt;}
._f_c00195{width:16.429475pt;}
._15_c00195{width:17.812002pt;}
._18_c00195{width:19.276177pt;}
._e_c00195{width:21.301291pt;}
._19_c00195{width:22.377772pt;}
._a_c00195{width:23.798442pt;}
._10_c00195{width:25.235555pt;}
._b_c00195{width:27.790343pt;}
._9_c00195{width:29.222491pt;}
._c_c00195{width:33.713004pt;}
.fsc_c00195{font-size:46.000000pt;}
.fs8_c00195{font-size:61.333333pt;}
.fs6_c00195{font-size:62.000000pt;}
.fs7_c00195{font-size:62.666667pt;}
.fsb_c00195{font-size:64.000000pt;}
.fsa_c00195{font-size:64.666667pt;}
.fs2_c00195{font-size:67.333333pt;}
.fs1_c00195{font-size:68.666667pt;}
.fs9_c00195{font-size:69.333333pt;}
.fs0_c00195{font-size:70.000000pt;}
.fs4_c00195{font-size:70.666667pt;}
.fs5_c00195{font-size:71.333333pt;}
.fs3_c00195{font-size:73.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y24_c00195{bottom:193.599280pt;}
.y25_c00195{bottom:193.599587pt;}
.y23_c00195{bottom:220.159040pt;}
.y22_c00195{bottom:246.718787pt;}
.y21_c00195{bottom:273.598720pt;}
.y20_c00195{bottom:325.759320pt;}
.y1f_c00195{bottom:351.999067pt;}
.y1e_c00195{bottom:351.999773pt;}
.y1d_c00195{bottom:405.439453pt;}
.y1c_c00195{bottom:439.678667pt;}
.y1b_c00195{bottom:458.239667pt;}
.y1a_c00195{bottom:485.119587pt;}
.y19_c00195{bottom:485.120347pt;}
.y18_c00195{bottom:511.359920pt;}
.y17_c00195{bottom:563.520533pt;}
.y16_c00195{bottom:590.080280pt;}
.y14_c00195{bottom:616.319787pt;}
.y15_c00195{bottom:616.319867pt;}
.y12_c00195{bottom:643.199667pt;}
.y13_c00195{bottom:643.199707pt;}
.y11_c00195{bottom:670.079587pt;}
.y10_c00195{bottom:723.199307pt;}
.yf_c00195{bottom:749.438880pt;}
.ye_c00195{bottom:749.439133pt;}
.yd_c00195{bottom:775.678707pt;}
.yc_c00195{bottom:775.679467pt;}
.yb_c00195{bottom:829.119147pt;}
.ya_c00195{bottom:829.119933pt;}
.y9_c00195{bottom:855.679693pt;}
.y8_c00195{bottom:855.679853pt;}
.y7_c00195{bottom:881.919440pt;}
.y6_c00195{bottom:881.920347pt;}
.y5_c00195{bottom:935.039853pt;}
.y4_c00195{bottom:961.599613pt;}
.y2_c00195{bottom:988.158160pt;}
.y3_c00195{bottom:988.158693pt;}
.y1_c00195{bottom:1015.039960pt;}
.h11_c00195{height:47.976562pt;}
.h10_c00195{height:62.812500pt;}
.hf_c00195{height:63.466797pt;}
.hb_c00195{height:63.968750pt;}
.h8_c00195{height:64.664062pt;}
.h9_c00195{height:65.359375pt;}
.h3_c00195{height:66.083984pt;}
.h2_c00195{height:67.392578pt;}
.h1_c00195{height:68.701172pt;}
.hc_c00195{height:69.203125pt;}
.h5_c00195{height:69.355469pt;}
.h12_c00195{height:69.838542pt;}
.hd_c00195{height:69.875000pt;}
.h7_c00195{height:70.009766pt;}
.h6_c00195{height:70.497396pt;}
.he_c00195{height:70.546875pt;}
.ha_c00195{height:71.218750pt;}
.h4_c00195{height:71.972656pt;}
.h0_c00195{height:1122.666667pt;}
.w0_c00195{width:793.333333pt;}
.x0_c00195{left:0.000000pt;}
.x1e_c00195{left:92.159200pt;}
.xb_c00195{left:126.399867pt;}
.x1_c00195{left:127.359333pt;}
.x21_c00195{left:145.918920pt;}
.x4_c00195{left:167.679200pt;}
.x5_c00195{left:183.679733pt;}
.xc_c00195{left:193.918920pt;}
.x22_c00195{left:200.958920pt;}
.x6_c00195{left:207.039587pt;}
.x23_c00195{left:223.999467pt;}
.x7_c00195{left:249.279720pt;}
.x8_c00195{left:261.118667pt;}
.x19_c00195{left:263.039067pt;}
.x9_c00195{left:276.799867pt;}
.x11_c00195{left:285.118667pt;}
.x12_c00195{left:311.039067pt;}
.xa_c00195{left:323.838933pt;}
.x13_c00195{left:326.399453pt;}
.x14_c00195{left:357.118693pt;}
.x15_c00195{left:436.479453pt;}
.x1c_c00195{left:450.559573pt;}
.x2_c00195{left:454.398920pt;}
.x1f_c00195{left:458.239707pt;}
.x1d_c00195{left:468.799840pt;}
.x20_c00195{left:471.358933pt;}
.x3_c00195{left:476.159173pt;}
.x16_c00195{left:499.519040pt;}
.x17_c00195{left:514.558507pt;}
.x18_c00195{left:541.439987pt;}
.xd_c00195{left:573.118693pt;}
.xf_c00195{left:578.239707pt;}
.x10_c00195{left:591.679733pt;}
.xe_c00195{left:593.279333pt;}
.x1a_c00195{left:630.399867pt;}
.x1b_c00195{left:646.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32d4361db958948a26e62b3e.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.364746;font-style:normal;font-weight:normal;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_5ba44babbb628493c4a30359.woff2')format("woff");}.ff3_c00196{font-family:ff3_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:ff4_c00196;src:url('chunks/assets/font_1dadf1ed6bbeff1a3f0b9ead.woff2')format("woff");}.ff4_c00196{font-family:ff4_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:ff5_c00196;src:url('chunks/assets/font_8179f79fd7a8dfcf84efd72b.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00196{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.mc_c00196{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m3_c00196{transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);}
.md_c00196{transform:matrix(0.181373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181373,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00196{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.ma_c00196{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);}
.v1_c00196{vertical-align:-2.882700px;}
.v0_c00196{vertical-align:0.000000px;}
.ls9_c00196{letter-spacing:-7.426125px;}
.lse_c00196{letter-spacing:-7.028100px;}
.ls15_c00196{letter-spacing:-6.685875px;}
.ls14_c00196{letter-spacing:-6.534900px;}
.ls6_c00196{letter-spacing:-5.945625px;}
.ls5_c00196{letter-spacing:-5.577000px;}
.lsd_c00196{letter-spacing:-5.374200px;}
.lsf_c00196{letter-spacing:-5.196713px;}
.ls7_c00196{letter-spacing:-4.456463px;}
.ls11_c00196{letter-spacing:-3.870450px;}
.ls4_c00196{letter-spacing:-3.717000px;}
.ls1_c00196{letter-spacing:-2.968875px;}
.ls10_c00196{letter-spacing:-2.449725px;}
.ls3_c00196{letter-spacing:-2.229413px;}
.ls2_c00196{letter-spacing:-1.489163px;}
.lsb_c00196{letter-spacing:-0.740250px;}
.lsa_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:1.489163px;}
.ls13_c00196{letter-spacing:1.545300px;}
.ls8_c00196{letter-spacing:2.455200px;}
.ls16_c00196{letter-spacing:3.090600px;}
.lsc_c00196{letter-spacing:8.175038px;}
.ls12_c00196{letter-spacing:8.521500px;}
.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;}
._15_c00196{margin-left:-5.220650px;}
._18_c00196{margin-left:-3.780045px;}
._11_c00196{margin-left:-1.885557px;}
._d_c00196{width:1.373430px;}
._16_c00196{width:2.885192px;}
._f_c00196{width:3.947321px;}
._3_c00196{width:5.553777px;}
._4_c00196{width:7.045852px;}
._2_c00196{width:8.671163px;}
._1_c00196{width:10.632335px;}
._17_c00196{width:11.795903px;}
._e_c00196{width:12.855180px;}
._12_c00196{width:13.875527px;}
._0_c00196{width:15.159375px;}
._10_c00196{width:16.741923px;}
._13_c00196{width:18.080643px;}
._14_c00196{width:19.414713px;}
._5_c00196{width:21.638450px;}
._6_c00196{width:23.650839px;}
._8_c00196{width:26.303466px;}
._c_c00196{width:27.953783px;}
._9_c00196{width:28.997786px;}
._a_c00196{width:30.101445px;}
._7_c00196{width:33.641970px;}
._b_c00196{width:39.905716px;}
.fc0_c00196{color:transparent;}
.fsa_c00196{font-size:38.250000px;}
.fs6_c00196{font-size:66.750000px;}
.fs7_c00196{font-size:70.500000px;}
.fs8_c00196{font-size:71.250000px;}
.fs2_c00196{font-size:72.000000px;}
.fs9_c00196{font-size:75.750000px;}
.fs5_c00196{font-size:78.000000px;}
.fs0_c00196{font-size:78.750000px;}
.fs3_c00196{font-size:79.500000px;}
.fsb_c00196{font-size:80.250000px;}
.fs1_c00196{font-size:82.500000px;}
.fs4_c00196{font-size:85.500000px;}
.y0_c00196{bottom:0.000000px;}
.y21_c00196{bottom:183.959655px;}
.y20_c00196{bottom:213.479190px;}
.y1f_c00196{bottom:302.399775px;}
.y1e_c00196{bottom:331.560930px;}
.y1d_c00196{bottom:362.159220px;}
.y1c_c00196{bottom:421.560285px;}
.y1b_c00196{bottom:421.560465px;}
.y19_c00196{bottom:451.079910px;}
.y1a_c00196{bottom:451.080000px;}
.y18_c00196{bottom:481.319820px;}
.y17_c00196{bottom:490.320870px;}
.y16_c00196{bottom:510.840435px;}
.y15_c00196{bottom:540.720150px;}
.y13_c00196{bottom:570.239340px;}
.y14_c00196{bottom:570.239820px;}
.y12_c00196{bottom:629.280210px;}
.y11_c00196{bottom:659.520120px;}
.y10_c00196{bottom:688.679175px;}
.yf_c00196{bottom:718.921185px;}
.ye_c00196{bottom:749.161005px;}
.yd_c00196{bottom:779.039985px;}
.yc_c00196{bottom:779.040120px;}
.yb_c00196{bottom:808.919835px;}
.ya_c00196{bottom:838.799565px;}
.y9_c00196{bottom:898.199805px;}
.y8_c00196{bottom:898.201590px;}
.y7_c00196{bottom:958.321215px;}
.y6_c00196{bottom:1018.440855px;}
.y4_c00196{bottom:1047.959820px;}
.y5_c00196{bottom:1047.960570px;}
.y3_c00196{bottom:1077.839535px;}
.y2_c00196{bottom:1107.720240px;}
.y1_c00196{bottom:1137.239775px;}
.hc_c00196{height:39.893555px;}
.h8_c00196{height:67.271484px;}
.h3_c00196{height:70.664062px;}
.h9_c00196{height:73.529297px;}
.ha_c00196{height:74.311523px;}
.hb_c00196{height:74.344482px;}
.he_c00196{height:76.341797px;}
.h7_c00196{height:76.514648px;}
.h1_c00196{height:77.288818px;}
.h4_c00196{height:78.568359px;}
.hd_c00196{height:78.760986px;}
.h5_c00196{height:80.969238px;}
.h2_c00196{height:81.533203px;}
.h6_c00196{height:84.498047px;}
.h0_c00196{height:1263.000000px;}
.w0_c00196{width:892.500000px;}
.x0_c00196{left:0.000000px;}
.x13_c00196{left:106.559685px;}
.x6_c00196{left:143.999400px;}
.x1_c00196{left:145.078815px;}
.x9_c00196{left:186.839565px;}
.xb_c00196{left:198.358635px;}
.xd_c00196{left:199.801005px;}
.xa_c00196{left:207.719100px;}
.x4_c00196{left:232.558635px;}
.x12_c00196{left:235.439250px;}
.xc_c00196{left:265.679100px;}
.x10_c00196{left:284.038950px;}
.x11_c00196{left:400.319820px;}
.x16_c00196{left:444.598530px;}
.xe_c00196{left:464.039385px;}
.xf_c00196{left:479.159415px;}
.x7_c00196{left:486.718500px;}
.x17_c00196{left:497.878320px;}
.x8_c00196{left:501.479235px;}
.x2_c00196{left:568.079400px;}
.x3_c00196{left:590.758530px;}
.x14_c00196{left:686.159820px;}
.x15_c00196{left:703.079355px;}
.x5_c00196{left:768.959385px;}
@media print{
.v1_c00196{vertical-align:-2.562400pt;}
.v0_c00196{vertical-align:0.000000pt;}
.ls9_c00196{letter-spacing:-6.601000pt;}
.lse_c00196{letter-spacing:-6.247200pt;}
.ls15_c00196{letter-spacing:-5.943000pt;}
.ls14_c00196{letter-spacing:-5.808800pt;}
.ls6_c00196{letter-spacing:-5.285000pt;}
.ls5_c00196{letter-spacing:-4.957333pt;}
.lsd_c00196{letter-spacing:-4.777067pt;}
.lsf_c00196{letter-spacing:-4.619300pt;}
.ls7_c00196{letter-spacing:-3.961300pt;}
.ls11_c00196{letter-spacing:-3.440400pt;}
.ls4_c00196{letter-spacing:-3.304000pt;}
.ls1_c00196{letter-spacing:-2.639000pt;}
.ls10_c00196{letter-spacing:-2.177533pt;}
.ls3_c00196{letter-spacing:-1.981700pt;}
.ls2_c00196{letter-spacing:-1.323700pt;}
.lsb_c00196{letter-spacing:-0.658000pt;}
.lsa_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:1.323700pt;}
.ls13_c00196{letter-spacing:1.373600pt;}
.ls8_c00196{letter-spacing:2.182400pt;}
.ls16_c00196{letter-spacing:2.747200pt;}
.lsc_c00196{letter-spacing:7.266700pt;}
.ls12_c00196{letter-spacing:7.574667pt;}
.ws0_c00196{word-spacing:0.000000pt;}
._15_c00196{margin-left:-4.640577pt;}
._18_c00196{margin-left:-3.360040pt;}
._11_c00196{margin-left:-1.676051pt;}
._d_c00196{width:1.220826pt;}
._16_c00196{width:2.564615pt;}
._f_c00196{width:3.508730pt;}
._3_c00196{width:4.936691pt;}
._4_c00196{width:6.262979pt;}
._2_c00196{width:7.707700pt;}
._1_c00196{width:9.450964pt;}
._17_c00196{width:10.485247pt;}
._e_c00196{width:11.426826pt;}
._12_c00196{width:12.333802pt;}
._0_c00196{width:13.475000pt;}
._10_c00196{width:14.881709pt;}
._13_c00196{width:16.071683pt;}
._14_c00196{width:17.257523pt;}
._5_c00196{width:19.234177pt;}
._6_c00196{width:21.022968pt;}
._8_c00196{width:23.380858pt;}
._c_c00196{width:24.847808pt;}
._9_c00196{width:25.775809pt;}
._a_c00196{width:26.756840pt;}
._7_c00196{width:29.903974pt;}
._b_c00196{width:35.471747pt;}
.fsa_c00196{font-size:34.000000pt;}
.fs6_c00196{font-size:59.333333pt;}
.fs7_c00196{font-size:62.666667pt;}
.fs8_c00196{font-size:63.333333pt;}
.fs2_c00196{font-size:64.000000pt;}
.fs9_c00196{font-size:67.333333pt;}
.fs5_c00196{font-size:69.333333pt;}
.fs0_c00196{font-size:70.000000pt;}
.fs3_c00196{font-size:70.666667pt;}
.fsb_c00196{font-size:71.333333pt;}
.fs1_c00196{font-size:73.333333pt;}
.fs4_c00196{font-size:76.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y21_c00196{bottom:163.519693pt;}
.y20_c00196{bottom:189.759280pt;}
.y1f_c00196{bottom:268.799800pt;}
.y1e_c00196{bottom:294.720827pt;}
.y1d_c00196{bottom:321.919307pt;}
.y1c_c00196{bottom:374.720253pt;}
.y1b_c00196{bottom:374.720413pt;}
.y19_c00196{bottom:400.959920pt;}
.y1a_c00196{bottom:400.960000pt;}
.y18_c00196{bottom:427.839840pt;}
.y17_c00196{bottom:435.840773pt;}
.y16_c00196{bottom:454.080387pt;}
.y15_c00196{bottom:480.640133pt;}
.y13_c00196{bottom:506.879413pt;}
.y14_c00196{bottom:506.879840pt;}
.y12_c00196{bottom:559.360187pt;}
.y11_c00196{bottom:586.240107pt;}
.y10_c00196{bottom:612.159267pt;}
.yf_c00196{bottom:639.041053pt;}
.ye_c00196{bottom:665.920893pt;}
.yd_c00196{bottom:692.479987pt;}
.yc_c00196{bottom:692.480107pt;}
.yb_c00196{bottom:719.039853pt;}
.ya_c00196{bottom:745.599613pt;}
.y9_c00196{bottom:798.399827pt;}
.y8_c00196{bottom:798.401413pt;}
.y7_c00196{bottom:851.841080pt;}
.y6_c00196{bottom:905.280760pt;}
.y4_c00196{bottom:931.519840pt;}
.y5_c00196{bottom:931.520507pt;}
.y3_c00196{bottom:958.079587pt;}
.y2_c00196{bottom:984.640213pt;}
.y1_c00196{bottom:1010.879800pt;}
.hc_c00196{height:35.460938pt;}
.h8_c00196{height:59.796875pt;}
.h3_c00196{height:62.812500pt;}
.h9_c00196{height:65.359375pt;}
.ha_c00196{height:66.054688pt;}
.hb_c00196{height:66.083984pt;}
.he_c00196{height:67.859375pt;}
.h7_c00196{height:68.013021pt;}
.h1_c00196{height:68.701172pt;}
.h4_c00196{height:69.838542pt;}
.hd_c00196{height:70.009766pt;}
.h5_c00196{height:71.972656pt;}
.h2_c00196{height:72.473958pt;}
.h6_c00196{height:75.109375pt;}
.h0_c00196{height:1122.666667pt;}
.w0_c00196{width:793.333333pt;}
.x0_c00196{left:0.000000pt;}
.x13_c00196{left:94.719720pt;}
.x6_c00196{left:127.999467pt;}
.x1_c00196{left:128.958947pt;}
.x9_c00196{left:166.079613pt;}
.xb_c00196{left:176.318787pt;}
.xd_c00196{left:177.600893pt;}
.xa_c00196{left:184.639200pt;}
.x4_c00196{left:206.718787pt;}
.x12_c00196{left:209.279333pt;}
.xc_c00196{left:236.159200pt;}
.x10_c00196{left:252.479067pt;}
.x11_c00196{left:355.839840pt;}
.x16_c00196{left:395.198693pt;}
.xe_c00196{left:412.479453pt;}
.xf_c00196{left:425.919480pt;}
.x7_c00196{left:432.638667pt;}
.x17_c00196{left:442.558507pt;}
.x8_c00196{left:445.759320pt;}
.x2_c00196{left:504.959467pt;}
.x3_c00196{left:525.118693pt;}
.x14_c00196{left:609.919840pt;}
.x15_c00196{left:624.959427pt;}
.x5_c00196{left:683.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50d32feb24c93bfc9ebcae82.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_079a99ef83fc3e6bf8c35023.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.432129;font-style:normal;font-weight:normal;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_9d1bf934c4b067540a37c255.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_6aa88115d2e280997e00ce03.woff2')format("woff");}.ff4_c00197{font-family:ff4_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;}
.m6_c00197{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.298780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298780,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.mf_c00197{transform:matrix(0.354839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354839,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.436869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436869,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{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);}
.v0_c00197{vertical-align:0.000000px;}
.ls19_c00197{letter-spacing:-17.828213px;}
.ls20_c00197{letter-spacing:-10.402875px;}
.ls1f_c00197{letter-spacing:-8.914500px;}
.ls1e_c00197{letter-spacing:-8.175038px;}
.ls23_c00197{letter-spacing:-6.940890px;}
.ls26_c00197{letter-spacing:-6.350400px;}
.lsc_c00197{letter-spacing:-5.945625px;}
.ls6_c00197{letter-spacing:-5.196713px;}
.lse_c00197{letter-spacing:-4.456463px;}
.ls11_c00197{letter-spacing:-4.410975px;}
.ls25_c00197{letter-spacing:-4.009500px;}
.ls8_c00197{letter-spacing:-3.717000px;}
.ls1d_c00197{letter-spacing:-3.091365px;}
.ls17_c00197{letter-spacing:-3.013763px;}
.ls21_c00197{letter-spacing:-2.973300px;}
.ls7_c00197{letter-spacing:-2.968875px;}
.ls24_c00197{letter-spacing:-2.477790px;}
.ls9_c00197{letter-spacing:-2.229413px;}
.lsf_c00197{letter-spacing:-2.224028px;}
.ls1c_c00197{letter-spacing:-2.103750px;}
.ls12_c00197{letter-spacing:-1.713000px;}
.lsa_c00197{letter-spacing:-1.489163px;}
.lsd_c00197{letter-spacing:-0.740250px;}
.lsb_c00197{letter-spacing:0.000000px;}
.ls1_c00197{letter-spacing:0.429000px;}
.ls5_c00197{letter-spacing:0.740250px;}
.ls22_c00197{letter-spacing:0.779100px;}
.ls27_c00197{letter-spacing:0.779625px;}
.ls2_c00197{letter-spacing:1.286700px;}
.ls14_c00197{letter-spacing:1.881900px;}
.ls0_c00197{letter-spacing:3.000300px;}
.ls18_c00197{letter-spacing:3.115800px;}
.ls4_c00197{letter-spacing:3.429000px;}
.ls16_c00197{letter-spacing:3.656250px;}
.ls10_c00197{letter-spacing:3.726810px;}
.ls1a_c00197{letter-spacing:4.640625px;}
.ls15_c00197{letter-spacing:4.800000px;}
.ls1b_c00197{letter-spacing:5.284493px;}
.ls28_c00197{letter-spacing:6.068400px;}
.ls3_c00197{letter-spacing:6.428700px;}
.ls13_c00197{letter-spacing:8.530200px;}
.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;}
._15_c00197{margin-left:-48.646217px;}
._14_c00197{margin-left:-16.238554px;}
._16_c00197{margin-left:-11.880455px;}
._1c_c00197{margin-left:-7.717634px;}
._13_c00197{margin-left:-6.582980px;}
._6_c00197{margin-left:-4.847449px;}
._a_c00197{margin-left:-3.330709px;}
._7_c00197{margin-left:-2.054588px;}
._9_c00197{width:1.104699px;}
._19_c00197{width:2.218700px;}
._2_c00197{width:3.408003px;}
._4_c00197{width:5.196950px;}
._8_c00197{width:6.239571px;}
._3_c00197{width:7.754141px;}
._0_c00197{width:9.304223px;}
._5_c00197{width:10.505948px;}
._c_c00197{width:11.732650px;}
._1_c00197{width:12.875476px;}
._e_c00197{width:14.125105px;}
._d_c00197{width:15.972134px;}
._b_c00197{width:18.048995px;}
._f_c00197{width:19.608824px;}
._10_c00197{width:20.833714px;}
._12_c00197{width:22.346308px;}
._11_c00197{width:24.446645px;}
._18_c00197{width:26.344624px;}
._1b_c00197{width:28.625506px;}
._1a_c00197{width:31.019595px;}
._17_c00197{width:37.470543px;}
.fc0_c00197{color:transparent;}
.fsd_c00197{font-size:23.250000px;}
.fsc_c00197{font-size:24.750000px;}
.fsa_c00197{font-size:26.250000px;}
.fsb_c00197{font-size:27.000000px;}
.fs9_c00197{font-size:29.250000px;}
.fs6_c00197{font-size:30.000000px;}
.fs8_c00197{font-size:30.750000px;}
.fs7_c00197{font-size:31.500000px;}
.fs11_c00197{font-size:73.500000px;}
.fs3_c00197{font-size:74.250000px;}
.fse_c00197{font-size:76.500000px;}
.fs2_c00197{font-size:77.250000px;}
.fs12_c00197{font-size:78.000000px;}
.fs0_c00197{font-size:78.750000px;}
.fs10_c00197{font-size:79.500000px;}
.fs1_c00197{font-size:80.250000px;}
.fs4_c00197{font-size:81.000000px;}
.fs5_c00197{font-size:82.500000px;}
.fsf_c00197{font-size:84.750000px;}
.y0_c00197{bottom:0.000000px;}
.y27_c00197{bottom:182.520465px;}
.y26_c00197{bottom:212.040000px;}
.y25_c00197{bottom:212.041575px;}
.y24_c00197{bottom:241.921305px;}
.y23_c00197{bottom:270.720150px;}
.y22_c00197{bottom:270.720405px;}
.y21_c00197{bottom:300.600135px;}
.y20_c00197{bottom:329.759175px;}
.y1f_c00197{bottom:389.520720px;}
.y1d_c00197{bottom:419.759970px;}
.y1e_c00197{bottom:419.760720px;}
.y1c_c00197{bottom:449.639700px;}
.y1b_c00197{bottom:479.161050px;}
.y1a_c00197{bottom:479.161200px;}
.y19_c00197{bottom:508.680720px;}
.y18_c00197{bottom:508.680960px;}
.y17_c00197{bottom:538.920870px;}
.y16_c00197{bottom:568.440405px;}
.y15_c00197{bottom:598.320120px;}
.y14_c00197{bottom:628.199850px;}
.y13_c00197{bottom:687.240960px;}
.y12_c00197{bottom:717.480885px;}
.y11_c00197{bottom:746.639700px;}
.y10_c00197{bottom:752.400885px;}
.ye_c00197{bottom:776.879010px;}
.yf_c00197{bottom:776.879520px;}
.yc_c00197{bottom:807.120990px;}
.yd_c00197{bottom:807.121035px;}
.yb_c00197{bottom:837.360900px;}
.ya_c00197{bottom:837.361080px;}
.y8_c00197{bottom:866.880345px;}
.y9_c00197{bottom:866.880615px;}
.y7_c00197{bottom:896.760060px;}
.y6_c00197{bottom:956.879700px;}
.y5_c00197{bottom:1015.920570px;}
.y4_c00197{bottom:1045.440105px;}
.y2_c00197{bottom:1075.319085px;}
.y3_c00197{bottom:1075.319820px;}
.y1_c00197{bottom:1134.720150px;}
.hf_c00197{height:22.818604px;}
.he_c00197{height:24.290771px;}
.hc_c00197{height:25.762939px;}
.hd_c00197{height:26.499023px;}
.hb_c00197{height:28.707275px;}
.ha_c00197{height:29.443359px;}
.h9_c00197{height:30.179443px;}
.h8_c00197{height:30.915527px;}
.h7_c00197{height:31.289062px;}
.h14_c00197{height:74.074219px;}
.h10_c00197{height:75.080566px;}
.h3_c00197{height:75.816650px;}
.h16_c00197{height:76.552734px;}
.h11_c00197{height:77.097656px;}
.h1_c00197{height:77.288818px;}
.h4_c00197{height:77.440430px;}
.h13_c00197{height:78.024902px;}
.h2_c00197{height:78.760986px;}
.h5_c00197{height:79.497070px;}
.h6_c00197{height:80.969238px;}
.h15_c00197{height:81.632812px;}
.h12_c00197{height:83.177490px;}
.h0_c00197{height:1263.000000px;}
.w0_c00197{width:892.500000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:138.239850px;}
.x30_c00197{left:139.677705px;}
.x1c_c00197{left:161.639100px;}
.x2a_c00197{left:190.438665px;}
.x2b_c00197{left:205.199385px;}
.x1a_c00197{left:211.679100px;}
.x2c_c00197{left:217.799535px;}
.x1b_c00197{left:225.358635px;}
.x2d_c00197{left:232.558635px;}
.x6_c00197{left:247.319250px;}
.x1d_c00197{left:251.279250px;}
.xc_c00197{left:255.239250px;}
.x7_c00197{left:260.639700px;}
.x12_c00197{left:269.639100px;}
.xd_c00197{left:277.199850px;}
.x1e_c00197{left:285.479235px;}
.x1f_c00197{left:301.319250px;}
.x13_c00197{left:317.159385px;}
.x10_c00197{left:318.238785px;}
.x11_c00197{left:331.199850px;}
.xe_c00197{left:344.879535px;}
.x14_c00197{left:347.040000px;}
.xf_c00197{left:368.998950px;}
.x8_c00197{left:374.399235px;}
.x9_c00197{left:383.759535px;}
.x15_c00197{left:428.758530px;}
.xa_c00197{left:438.479685px;}
.x23_c00197{left:439.918350px;}
.xb_c00197{left:451.798515px;}
.x16_c00197{left:455.399235px;}
.x24_c00197{left:504.359850px;}
.x17_c00197{left:527.399820px;}
.x25_c00197{left:528.479235px;}
.x21_c00197{left:533.518620px;}
.x22_c00197{left:548.279250px;}
.x31_c00197{left:569.519670px;}
.x32_c00197{left:584.639700px;}
.x2_c00197{left:603.358605px;}
.x18_c00197{left:608.399820px;}
.x26_c00197{left:609.479235px;}
.x4_c00197{left:614.879520px;}
.x3_c00197{left:617.039985px;}
.x5_c00197{left:643.679070px;}
.x2e_c00197{left:675.718545px;}
.x2f_c00197{left:696.958920px;}
.x27_c00197{left:699.839535px;}
.x28_c00197{left:720.359850px;}
.x19_c00197{left:731.158770px;}
.x29_c00197{left:761.039385px;}
.x20_c00197{left:769.679715px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls19_c00197{letter-spacing:-15.847300pt;}
.ls20_c00197{letter-spacing:-9.247000pt;}
.ls1f_c00197{letter-spacing:-7.924000pt;}
.ls1e_c00197{letter-spacing:-7.266700pt;}
.ls23_c00197{letter-spacing:-6.169680pt;}
.ls26_c00197{letter-spacing:-5.644800pt;}
.lsc_c00197{letter-spacing:-5.285000pt;}
.ls6_c00197{letter-spacing:-4.619300pt;}
.lse_c00197{letter-spacing:-3.961300pt;}
.ls11_c00197{letter-spacing:-3.920867pt;}
.ls25_c00197{letter-spacing:-3.564000pt;}
.ls8_c00197{letter-spacing:-3.304000pt;}
.ls1d_c00197{letter-spacing:-2.747880pt;}
.ls17_c00197{letter-spacing:-2.678900pt;}
.ls21_c00197{letter-spacing:-2.642933pt;}
.ls7_c00197{letter-spacing:-2.639000pt;}
.ls24_c00197{letter-spacing:-2.202480pt;}
.ls9_c00197{letter-spacing:-1.981700pt;}
.lsf_c00197{letter-spacing:-1.976913pt;}
.ls1c_c00197{letter-spacing:-1.870000pt;}
.ls12_c00197{letter-spacing:-1.522667pt;}
.lsa_c00197{letter-spacing:-1.323700pt;}
.lsd_c00197{letter-spacing:-0.658000pt;}
.lsb_c00197{letter-spacing:0.000000pt;}
.ls1_c00197{letter-spacing:0.381333pt;}
.ls5_c00197{letter-spacing:0.658000pt;}
.ls22_c00197{letter-spacing:0.692533pt;}
.ls27_c00197{letter-spacing:0.693000pt;}
.ls2_c00197{letter-spacing:1.143733pt;}
.ls14_c00197{letter-spacing:1.672800pt;}
.ls0_c00197{letter-spacing:2.666933pt;}
.ls18_c00197{letter-spacing:2.769600pt;}
.ls4_c00197{letter-spacing:3.048000pt;}
.ls16_c00197{letter-spacing:3.250000pt;}
.ls10_c00197{letter-spacing:3.312720pt;}
.ls1a_c00197{letter-spacing:4.125000pt;}
.ls15_c00197{letter-spacing:4.266667pt;}
.ls1b_c00197{letter-spacing:4.697327pt;}
.ls28_c00197{letter-spacing:5.394133pt;}
.ls3_c00197{letter-spacing:5.714400pt;}
.ls13_c00197{letter-spacing:7.582400pt;}
.ws0_c00197{word-spacing:0.000000pt;}
._15_c00197{margin-left:-43.241082pt;}
._14_c00197{margin-left:-14.434270pt;}
._16_c00197{margin-left:-10.560405pt;}
._1c_c00197{margin-left:-6.860119pt;}
._13_c00197{margin-left:-5.851538pt;}
._6_c00197{margin-left:-4.308843pt;}
._a_c00197{margin-left:-2.960630pt;}
._7_c00197{margin-left:-1.826300pt;}
._9_c00197{width:0.981955pt;}
._19_c00197{width:1.972177pt;}
._2_c00197{width:3.029336pt;}
._4_c00197{width:4.619511pt;}
._8_c00197{width:5.546285pt;}
._3_c00197{width:6.892570pt;}
._0_c00197{width:8.270421pt;}
._5_c00197{width:9.338621pt;}
._c_c00197{width:10.429023pt;}
._1_c00197{width:11.444868pt;}
._e_c00197{width:12.555649pt;}
._d_c00197{width:14.197453pt;}
._b_c00197{width:16.043551pt;}
._f_c00197{width:17.430066pt;}
._10_c00197{width:18.518857pt;}
._12_c00197{width:19.863385pt;}
._11_c00197{width:21.730351pt;}
._18_c00197{width:23.417443pt;}
._1b_c00197{width:25.444894pt;}
._1a_c00197{width:27.572974pt;}
._17_c00197{width:33.307149pt;}
.fsd_c00197{font-size:20.666667pt;}
.fsc_c00197{font-size:22.000000pt;}
.fsa_c00197{font-size:23.333333pt;}
.fsb_c00197{font-size:24.000000pt;}
.fs9_c00197{font-size:26.000000pt;}
.fs6_c00197{font-size:26.666667pt;}
.fs8_c00197{font-size:27.333333pt;}
.fs7_c00197{font-size:28.000000pt;}
.fs11_c00197{font-size:65.333333pt;}
.fs3_c00197{font-size:66.000000pt;}
.fse_c00197{font-size:68.000000pt;}
.fs2_c00197{font-size:68.666667pt;}
.fs12_c00197{font-size:69.333333pt;}
.fs0_c00197{font-size:70.000000pt;}
.fs10_c00197{font-size:70.666667pt;}
.fs1_c00197{font-size:71.333333pt;}
.fs4_c00197{font-size:72.000000pt;}
.fs5_c00197{font-size:73.333333pt;}
.fsf_c00197{font-size:75.333333pt;}
.y0_c00197{bottom:0.000000pt;}
.y27_c00197{bottom:162.240413pt;}
.y26_c00197{bottom:188.480000pt;}
.y25_c00197{bottom:188.481400pt;}
.y24_c00197{bottom:215.041160pt;}
.y23_c00197{bottom:240.640133pt;}
.y22_c00197{bottom:240.640360pt;}
.y21_c00197{bottom:267.200120pt;}
.y20_c00197{bottom:293.119267pt;}
.y1f_c00197{bottom:346.240640pt;}
.y1d_c00197{bottom:373.119973pt;}
.y1e_c00197{bottom:373.120640pt;}
.y1c_c00197{bottom:399.679733pt;}
.y1b_c00197{bottom:425.920933pt;}
.y1a_c00197{bottom:425.921067pt;}
.y19_c00197{bottom:452.160640pt;}
.y18_c00197{bottom:452.160853pt;}
.y17_c00197{bottom:479.040773pt;}
.y16_c00197{bottom:505.280360pt;}
.y15_c00197{bottom:531.840107pt;}
.y14_c00197{bottom:558.399867pt;}
.y13_c00197{bottom:610.880853pt;}
.y12_c00197{bottom:637.760787pt;}
.y11_c00197{bottom:663.679733pt;}
.y10_c00197{bottom:668.800787pt;}
.ye_c00197{bottom:690.559120pt;}
.yf_c00197{bottom:690.559573pt;}
.yc_c00197{bottom:717.440880pt;}
.yd_c00197{bottom:717.440920pt;}
.yb_c00197{bottom:744.320800pt;}
.ya_c00197{bottom:744.320960pt;}
.y8_c00197{bottom:770.560307pt;}
.y9_c00197{bottom:770.560547pt;}
.y7_c00197{bottom:797.120053pt;}
.y6_c00197{bottom:850.559733pt;}
.y5_c00197{bottom:903.040507pt;}
.y4_c00197{bottom:929.280093pt;}
.y2_c00197{bottom:955.839187pt;}
.y3_c00197{bottom:955.839840pt;}
.y1_c00197{bottom:1008.640133pt;}
.hf_c00197{height:20.283203pt;}
.he_c00197{height:21.591797pt;}
.hc_c00197{height:22.900391pt;}
.hd_c00197{height:23.554688pt;}
.hb_c00197{height:25.517578pt;}
.ha_c00197{height:26.171875pt;}
.h9_c00197{height:26.826172pt;}
.h8_c00197{height:27.480469pt;}
.h7_c00197{height:27.812500pt;}
.h14_c00197{height:65.843750pt;}
.h10_c00197{height:66.738281pt;}
.h3_c00197{height:67.392578pt;}
.h16_c00197{height:68.046875pt;}
.h11_c00197{height:68.531250pt;}
.h1_c00197{height:68.701172pt;}
.h4_c00197{height:68.835938pt;}
.h13_c00197{height:69.355469pt;}
.h2_c00197{height:70.009766pt;}
.h5_c00197{height:70.664062pt;}
.h6_c00197{height:71.972656pt;}
.h15_c00197{height:72.562500pt;}
.h12_c00197{height:73.935547pt;}
.h0_c00197{height:1122.666667pt;}
.w0_c00197{width:793.333333pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:122.879867pt;}
.x30_c00197{left:124.157960pt;}
.x1c_c00197{left:143.679200pt;}
.x2a_c00197{left:169.278813pt;}
.x2b_c00197{left:182.399453pt;}
.x1a_c00197{left:188.159200pt;}
.x2c_c00197{left:193.599587pt;}
.x1b_c00197{left:200.318787pt;}
.x2d_c00197{left:206.718787pt;}
.x6_c00197{left:219.839333pt;}
.x1d_c00197{left:223.359333pt;}
.xc_c00197{left:226.879333pt;}
.x7_c00197{left:231.679733pt;}
.x12_c00197{left:239.679200pt;}
.xd_c00197{left:246.399867pt;}
.x1e_c00197{left:253.759320pt;}
.x1f_c00197{left:267.839333pt;}
.x13_c00197{left:281.919453pt;}
.x10_c00197{left:282.878920pt;}
.x11_c00197{left:294.399867pt;}
.xe_c00197{left:306.559587pt;}
.x14_c00197{left:308.480000pt;}
.xf_c00197{left:327.999067pt;}
.x8_c00197{left:332.799320pt;}
.x9_c00197{left:341.119587pt;}
.x15_c00197{left:381.118693pt;}
.xa_c00197{left:389.759720pt;}
.x23_c00197{left:391.038533pt;}
.xb_c00197{left:401.598680pt;}
.x16_c00197{left:404.799320pt;}
.x24_c00197{left:448.319867pt;}
.x17_c00197{left:468.799840pt;}
.x25_c00197{left:469.759320pt;}
.x21_c00197{left:474.238773pt;}
.x22_c00197{left:487.359333pt;}
.x31_c00197{left:506.239707pt;}
.x32_c00197{left:519.679733pt;}
.x2_c00197{left:536.318760pt;}
.x18_c00197{left:540.799840pt;}
.x26_c00197{left:541.759320pt;}
.x4_c00197{left:546.559573pt;}
.x3_c00197{left:548.479987pt;}
.x5_c00197{left:572.159173pt;}
.x2e_c00197{left:600.638707pt;}
.x2f_c00197{left:619.519040pt;}
.x27_c00197{left:622.079587pt;}
.x28_c00197{left:640.319867pt;}
.x19_c00197{left:649.918907pt;}
.x29_c00197{left:676.479453pt;}
.x20_c00197{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2d986a785bd0fd6338703f5.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_363b1b687a2be6718d94efc3.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_1e82faed2be80c47e7e8574b.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_71a2beb3c18467b84c8b80b8.woff2')format("woff");}.ff4_c00198{font-family:ff4_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:ff5_c00198;src:url('chunks/assets/font_6233141f6550cd728b843ee9.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_aff0f2e5cbc875da28b9cfa1.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00198{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272152,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.308696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308696,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00198{transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{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_c00198{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);}
.m1f_c00198{transform:matrix(0.347656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347656,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{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);}
.m19_c00198{transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382353,0.000000,0.000000,0.250000,0,0);}
.m17_c00198{transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541667,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(1.828125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.828125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.828125,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls15_c00198{letter-spacing:-28.547888px;}
.ls12_c00198{letter-spacing:-27.202320px;}
.ls24_c00198{letter-spacing:-16.502850px;}
.ls16_c00198{letter-spacing:-12.461400px;}
.ls13_c00198{letter-spacing:-10.822995px;}
.ls10_c00198{letter-spacing:-9.566700px;}
.ls23_c00198{letter-spacing:-7.608750px;}
.ls9_c00198{letter-spacing:-6.685875px;}
.ls5_c00198{letter-spacing:-5.945625px;}
.ls1_c00198{letter-spacing:-5.196713px;}
.ls1c_c00198{letter-spacing:-5.040300px;}
.ls8_c00198{letter-spacing:-4.456463px;}
.ls11_c00198{letter-spacing:-4.410000px;}
.ls17_c00198{letter-spacing:-4.026450px;}
.ls28_c00198{letter-spacing:-3.860025px;}
.ls3_c00198{letter-spacing:-3.717000px;}
.ls20_c00198{letter-spacing:-3.437400px;}
.ls2_c00198{letter-spacing:-2.968875px;}
.ls1d_c00198{letter-spacing:-2.967900px;}
.ls1f_c00198{letter-spacing:-2.941425px;}
.ls26_c00198{letter-spacing:-2.310398px;}
.ls0_c00198{letter-spacing:-2.229413px;}
.ls25_c00198{letter-spacing:-2.155680px;}
.ls29_c00198{letter-spacing:-1.540800px;}
.ls27_c00198{letter-spacing:-1.510500px;}
.lsf_c00198{letter-spacing:-1.500750px;}
.ls4_c00198{letter-spacing:-1.489163px;}
.ls14_c00198{letter-spacing:-1.352400px;}
.lse_c00198{letter-spacing:-0.817965px;}
.ls6_c00198{letter-spacing:-0.740250px;}
.ls21_c00198{letter-spacing:-0.577500px;}
.ls7_c00198{letter-spacing:0.000000px;}
.ls1b_c00198{letter-spacing:1.204425px;}
.lsd_c00198{letter-spacing:1.388625px;}
.ls18_c00198{letter-spacing:2.222438px;}
.lsa_c00198{letter-spacing:3.978375px;}
.ls22_c00198{letter-spacing:4.410000px;}
.lsb_c00198{letter-spacing:5.196713px;}
.ls19_c00198{letter-spacing:5.542425px;}
.lsc_c00198{letter-spacing:5.803875px;}
.ls1a_c00198{letter-spacing:11.713133px;}
.ls1e_c00198{letter-spacing:22.374975px;}
.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;}
._c_c00198{margin-left:-6.266702px;}
._9_c00198{margin-left:-3.110298px;}
._4_c00198{margin-left:-1.459104px;}
._5_c00198{width:1.701981px;}
._b_c00198{width:2.781450px;}
._1_c00198{width:3.928763px;}
._3_c00198{width:6.009041px;}
._0_c00198{width:7.248893px;}
._2_c00198{width:8.683421px;}
._7_c00198{width:10.291080px;}
._6_c00198{width:11.513725px;}
._a_c00198{width:13.755604px;}
._8_c00198{width:15.008888px;}
._17_c00198{width:18.705175px;}
._12_c00198{width:21.355336px;}
._11_c00198{width:23.770910px;}
._e_c00198{width:25.089899px;}
._f_c00198{width:27.964704px;}
._d_c00198{width:29.355920px;}
._16_c00198{width:30.823894px;}
._18_c00198{width:32.289863px;}
._14_c00198{width:33.743394px;}
._15_c00198{width:35.240566px;}
._13_c00198{width:37.332478px;}
._10_c00198{width:38.398767px;}
._19_c00198{width:167.620584px;}
.fc0_c00198{color:transparent;}
.fs5_c00198{font-size:13.500000px;}
.fsc_c00198{font-size:25.500000px;}
.fsb_c00198{font-size:31.500000px;}
.fsa_c00198{font-size:32.250000px;}
.fs6_c00198{font-size:34.500000px;}
.fs8_c00198{font-size:36.000000px;}
.fs13_c00198{font-size:37.500000px;}
.fse_c00198{font-size:38.250000px;}
.fs7_c00198{font-size:39.000000px;}
.fs10_c00198{font-size:39.750000px;}
.fs15_c00198{font-size:48.000000px;}
.fs12_c00198{font-size:51.000000px;}
.fs11_c00198{font-size:52.500000px;}
.fsd_c00198{font-size:56.250000px;}
.fs14_c00198{font-size:58.500000px;}
.fsf_c00198{font-size:59.250000px;}
.fs9_c00198{font-size:72.000000px;}
.fs3_c00198{font-size:77.250000px;}
.fs0_c00198{font-size:78.750000px;}
.fs16_c00198{font-size:79.500000px;}
.fs1_c00198{font-size:80.250000px;}
.fs2_c00198{font-size:82.500000px;}
.fs4_c00198{font-size:86.250000px;}
.y0_c00198{bottom:0.000000px;}
.y15_c00198{bottom:626.039385px;}
.y13_c00198{bottom:744.658770px;}
.y14_c00198{bottom:745.019670px;}
.y12_c00198{bottom:752.039985px;}
.y11_c00198{bottom:774.719055px;}
.y10_c00198{bottom:804.599670px;}
.yf_c00198{bottom:834.839535px;}
.yd_c00198{bottom:864.719400px;}
.ye_c00198{bottom:864.720150px;}
.yc_c00198{bottom:894.599115px;}
.yb_c00198{bottom:924.479640px;}
.ya_c00198{bottom:924.479835px;}
.y9_c00198{bottom:953.999355px;}
.y8_c00198{bottom:954.000255px;}
.y6_c00198{bottom:983.879310px;}
.y7_c00198{bottom:983.879970px;}
.y5_c00198{bottom:1013.759040px;}
.y4_c00198{bottom:1013.760960px;}
.y3_c00198{bottom:1043.280480px;}
.y2_c00198{bottom:1103.400120px;}
.y1_c00198{bottom:1133.279850px;}
.h6_c00198{height:14.080078px;}
.he_c00198{height:26.595703px;}
.hd_c00198{height:31.130859px;}
.hc_c00198{height:33.635742px;}
.h7_c00198{height:34.769531px;}
.hb_c00198{height:35.982422px;}
.h9_c00198{height:37.546875px;}
.h8_c00198{height:38.542969px;}
.h16_c00198{height:39.111328px;}
.h10_c00198{height:39.893555px;}
.h13_c00198{height:40.675781px;}
.h12_c00198{height:41.458008px;}
.h18_c00198{height:50.062500px;}
.h15_c00198{height:53.191406px;}
.h14_c00198{height:54.755859px;}
.h17_c00198{height:57.814453px;}
.hf_c00198{height:58.666992px;}
.h11_c00198{height:61.795898px;}
.ha_c00198{height:75.093750px;}
.h4_c00198{height:75.816650px;}
.h1_c00198{height:77.288818px;}
.h2_c00198{height:78.760986px;}
.h1a_c00198{height:80.121094px;}
.h19_c00198{height:80.876953px;}
.h3_c00198{height:80.969238px;}
.h5_c00198{height:89.956055px;}
.h0_c00198{height:1263.000000px;}
.w0_c00198{width:892.500000px;}
.x0_c00198{left:0.000000px;}
.xa_c00198{left:137.878740px;}
.x1_c00198{left:138.958350px;}
.x12_c00198{left:160.559685px;}
.x13_c00198{left:163.799565px;}
.x20_c00198{left:169.559100px;}
.x16_c00198{left:170.638500px;}
.x21_c00198{left:186.119415px;}
.x2_c00198{left:192.958350px;}
.x3_c00198{left:206.998950px;}
.x17_c00198{left:225.358635px;}
.x6_c00198{left:239.040000px;}
.x26_c00198{left:246.958350px;}
.x7_c00198{left:255.598500px;}
.x22_c00198{left:302.039385px;}
.x18_c00198{left:303.118785px;}
.x27_c00198{left:305.279250px;}
.x8_c00198{left:307.439685px;}
.xb_c00198{left:318.599700px;}
.x9_c00198{left:327.239850px;}
.x28_c00198{left:334.798950px;}
.xc_c00198{left:340.919535px;}
.x19_c00198{left:349.198785px;}
.x1a_c00198{left:381.958350px;}
.x23_c00198{left:396.719100px;}
.x1b_c00198{left:432.718500px;}
.x4_c00198{left:469.798920px;}
.x5_c00198{left:483.119385px;}
.x24_c00198{left:484.559685px;}
.x1c_c00198{left:508.319820px;}
.xe_c00198{left:523.439670px;}
.x1d_c00198{left:542.519670px;}
.xf_c00198{left:555.479235px;}
.x10_c00198{left:602.279250px;}
.x11_c00198{left:617.399235px;}
.x1e_c00198{left:618.839535px;}
.x25_c00198{left:646.559685px;}
.x1f_c00198{left:665.639700px;}
.x14_c00198{left:696.958920px;}
.x15_c00198{left:711.358605px;}
.xd_c00198{left:770.399865px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls15_c00198{letter-spacing:-25.375900pt;}
.ls12_c00198{letter-spacing:-24.179840pt;}
.ls24_c00198{letter-spacing:-14.669200pt;}
.ls16_c00198{letter-spacing:-11.076800pt;}
.ls13_c00198{letter-spacing:-9.620440pt;}
.ls10_c00198{letter-spacing:-8.503733pt;}
.ls23_c00198{letter-spacing:-6.763333pt;}
.ls9_c00198{letter-spacing:-5.943000pt;}
.ls5_c00198{letter-spacing:-5.285000pt;}
.ls1_c00198{letter-spacing:-4.619300pt;}
.ls1c_c00198{letter-spacing:-4.480267pt;}
.ls8_c00198{letter-spacing:-3.961300pt;}
.ls11_c00198{letter-spacing:-3.920000pt;}
.ls17_c00198{letter-spacing:-3.579067pt;}
.ls28_c00198{letter-spacing:-3.431133pt;}
.ls3_c00198{letter-spacing:-3.304000pt;}
.ls20_c00198{letter-spacing:-3.055467pt;}
.ls2_c00198{letter-spacing:-2.639000pt;}
.ls1d_c00198{letter-spacing:-2.638133pt;}
.ls1f_c00198{letter-spacing:-2.614600pt;}
.ls26_c00198{letter-spacing:-2.053687pt;}
.ls0_c00198{letter-spacing:-1.981700pt;}
.ls25_c00198{letter-spacing:-1.916160pt;}
.ls29_c00198{letter-spacing:-1.369600pt;}
.ls27_c00198{letter-spacing:-1.342667pt;}
.lsf_c00198{letter-spacing:-1.334000pt;}
.ls4_c00198{letter-spacing:-1.323700pt;}
.ls14_c00198{letter-spacing:-1.202133pt;}
.lse_c00198{letter-spacing:-0.727080pt;}
.ls6_c00198{letter-spacing:-0.658000pt;}
.ls21_c00198{letter-spacing:-0.513333pt;}
.ls7_c00198{letter-spacing:0.000000pt;}
.ls1b_c00198{letter-spacing:1.070600pt;}
.lsd_c00198{letter-spacing:1.234333pt;}
.ls18_c00198{letter-spacing:1.975500pt;}
.lsa_c00198{letter-spacing:3.536333pt;}
.ls22_c00198{letter-spacing:3.920000pt;}
.lsb_c00198{letter-spacing:4.619300pt;}
.ls19_c00198{letter-spacing:4.926600pt;}
.lsc_c00198{letter-spacing:5.159000pt;}
.ls1a_c00198{letter-spacing:10.411673pt;}
.ls1e_c00198{letter-spacing:19.888867pt;}
.ws0_c00198{word-spacing:0.000000pt;}
._c_c00198{margin-left:-5.570402pt;}
._9_c00198{margin-left:-2.764709pt;}
._4_c00198{margin-left:-1.296981pt;}
._5_c00198{width:1.512872pt;}
._b_c00198{width:2.472400pt;}
._1_c00198{width:3.492234pt;}
._3_c00198{width:5.341370pt;}
._0_c00198{width:6.443460pt;}
._2_c00198{width:7.718596pt;}
._7_c00198{width:9.147626pt;}
._6_c00198{width:10.234423pt;}
._a_c00198{width:12.227204pt;}
._8_c00198{width:13.341234pt;}
._17_c00198{width:16.626823pt;}
._12_c00198{width:18.982521pt;}
._11_c00198{width:21.129698pt;}
._e_c00198{width:22.302132pt;}
._f_c00198{width:24.857515pt;}
._d_c00198{width:26.094151pt;}
._16_c00198{width:27.399017pt;}
._18_c00198{width:28.702100pt;}
._14_c00198{width:29.994128pt;}
._15_c00198{width:31.324947pt;}
._13_c00198{width:33.184425pt;}
._10_c00198{width:34.132238pt;}
._19_c00198{width:148.996075pt;}
.fs5_c00198{font-size:12.000000pt;}
.fsc_c00198{font-size:22.666667pt;}
.fsb_c00198{font-size:28.000000pt;}
.fsa_c00198{font-size:28.666667pt;}
.fs6_c00198{font-size:30.666667pt;}
.fs8_c00198{font-size:32.000000pt;}
.fs13_c00198{font-size:33.333333pt;}
.fse_c00198{font-size:34.000000pt;}
.fs7_c00198{font-size:34.666667pt;}
.fs10_c00198{font-size:35.333333pt;}
.fs15_c00198{font-size:42.666667pt;}
.fs12_c00198{font-size:45.333333pt;}
.fs11_c00198{font-size:46.666667pt;}
.fsd_c00198{font-size:50.000000pt;}
.fs14_c00198{font-size:52.000000pt;}
.fsf_c00198{font-size:52.666667pt;}
.fs9_c00198{font-size:64.000000pt;}
.fs3_c00198{font-size:68.666667pt;}
.fs0_c00198{font-size:70.000000pt;}
.fs16_c00198{font-size:70.666667pt;}
.fs1_c00198{font-size:71.333333pt;}
.fs2_c00198{font-size:73.333333pt;}
.fs4_c00198{font-size:76.666667pt;}
.y0_c00198{bottom:0.000000pt;}
.y15_c00198{bottom:556.479453pt;}
.y13_c00198{bottom:661.918907pt;}
.y14_c00198{bottom:662.239707pt;}
.y12_c00198{bottom:668.479987pt;}
.y11_c00198{bottom:688.639160pt;}
.y10_c00198{bottom:715.199707pt;}
.yf_c00198{bottom:742.079587pt;}
.yd_c00198{bottom:768.639467pt;}
.ye_c00198{bottom:768.640133pt;}
.yc_c00198{bottom:795.199213pt;}
.yb_c00198{bottom:821.759680pt;}
.ya_c00198{bottom:821.759853pt;}
.y9_c00198{bottom:847.999427pt;}
.y8_c00198{bottom:848.000227pt;}
.y6_c00198{bottom:874.559387pt;}
.y7_c00198{bottom:874.559973pt;}
.y5_c00198{bottom:901.119147pt;}
.y4_c00198{bottom:901.120853pt;}
.y3_c00198{bottom:927.360427pt;}
.y2_c00198{bottom:980.800107pt;}
.y1_c00198{bottom:1007.359867pt;}
.h6_c00198{height:12.515625pt;}
.he_c00198{height:23.640625pt;}
.hd_c00198{height:27.671875pt;}
.hc_c00198{height:29.898438pt;}
.h7_c00198{height:30.906250pt;}
.hb_c00198{height:31.984375pt;}
.h9_c00198{height:33.375000pt;}
.h8_c00198{height:34.260417pt;}
.h16_c00198{height:34.765625pt;}
.h10_c00198{height:35.460938pt;}
.h13_c00198{height:36.156250pt;}
.h12_c00198{height:36.851562pt;}
.h18_c00198{height:44.500000pt;}
.h15_c00198{height:47.281250pt;}
.h14_c00198{height:48.671875pt;}
.h17_c00198{height:51.390625pt;}
.hf_c00198{height:52.148438pt;}
.h11_c00198{height:54.929688pt;}
.ha_c00198{height:66.750000pt;}
.h4_c00198{height:67.392578pt;}
.h1_c00198{height:68.701172pt;}
.h2_c00198{height:70.009766pt;}
.h1a_c00198{height:71.218750pt;}
.h19_c00198{height:71.890625pt;}
.h3_c00198{height:71.972656pt;}
.h5_c00198{height:79.960938pt;}
.h0_c00198{height:1122.666667pt;}
.w0_c00198{width:793.333333pt;}
.x0_c00198{left:0.000000pt;}
.xa_c00198{left:122.558880pt;}
.x1_c00198{left:123.518533pt;}
.x12_c00198{left:142.719720pt;}
.x13_c00198{left:145.599613pt;}
.x20_c00198{left:150.719200pt;}
.x16_c00198{left:151.678667pt;}
.x21_c00198{left:165.439480pt;}
.x2_c00198{left:171.518533pt;}
.x3_c00198{left:183.999067pt;}
.x17_c00198{left:200.318787pt;}
.x6_c00198{left:212.480000pt;}
.x26_c00198{left:219.518533pt;}
.x7_c00198{left:227.198667pt;}
.x22_c00198{left:268.479453pt;}
.x18_c00198{left:269.438920pt;}
.x27_c00198{left:271.359333pt;}
.x8_c00198{left:273.279720pt;}
.xb_c00198{left:283.199733pt;}
.x9_c00198{left:290.879867pt;}
.x28_c00198{left:297.599067pt;}
.xc_c00198{left:303.039587pt;}
.x19_c00198{left:310.398920pt;}
.x1a_c00198{left:339.518533pt;}
.x23_c00198{left:352.639200pt;}
.x1b_c00198{left:384.638667pt;}
.x4_c00198{left:417.599040pt;}
.x5_c00198{left:429.439453pt;}
.x24_c00198{left:430.719720pt;}
.x1c_c00198{left:451.839840pt;}
.xe_c00198{left:465.279707pt;}
.x1d_c00198{left:482.239707pt;}
.xf_c00198{left:493.759320pt;}
.x10_c00198{left:535.359333pt;}
.x11_c00198{left:548.799320pt;}
.x1e_c00198{left:550.079587pt;}
.x25_c00198{left:574.719720pt;}
.x1f_c00198{left:591.679733pt;}
.x14_c00198{left:619.519040pt;}
.x15_c00198{left:632.318760pt;}
.xd_c00198{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e97b77a56f920783ac3542f6.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_a5300f9ec4fa96767a708f16.woff2')format("woff");}.ff2_c00199{font-family:ff2_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;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_3cca9749ac527e1a865be5e4.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.364746;font-style:normal;font-weight:normal;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_464a70405bfcb1df13959af9.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_c4d21bd055a13bb7632315e7.woff2')format("woff");}.ff5_c00199{font-family:ff5_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:ff6_c00199;src:url('chunks/assets/font_e787879fe3853af847deb7eb.woff2')format("woff");}.ff6_c00199{font-family:ff6_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;}
.m20_c00199{transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178241,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.234288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234288,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{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_c00199{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_c00199{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls13_c00199{letter-spacing:-16.776000px;}
.ls28_c00199{letter-spacing:-16.146900px;}
.ls25_c00199{letter-spacing:-12.247500px;}
.ls14_c00199{letter-spacing:-11.220000px;}
.ls1b_c00199{letter-spacing:-10.436250px;}
.ls2d_c00199{letter-spacing:-10.212375px;}
.ls18_c00199{letter-spacing:-9.945000px;}
.ls15_c00199{letter-spacing:-9.134550px;}
.lsa_c00199{letter-spacing:-8.914500px;}
.ls11_c00199{letter-spacing:-7.426125px;}
.ls1c_c00199{letter-spacing:-6.879600px;}
.lsd_c00199{letter-spacing:-6.685875px;}
.ls16_c00199{letter-spacing:-6.400545px;}
.ls10_c00199{letter-spacing:-5.945625px;}
.ls9_c00199{letter-spacing:-5.196713px;}
.ls23_c00199{letter-spacing:-5.109375px;}
.ls17_c00199{letter-spacing:-5.063775px;}
.ls3a_c00199{letter-spacing:-4.725473px;}
.ls19_c00199{letter-spacing:-4.587180px;}
.ls4_c00199{letter-spacing:-4.456463px;}
.ls27_c00199{letter-spacing:-4.039875px;}
.ls1d_c00199{letter-spacing:-3.896100px;}
.ls5_c00199{letter-spacing:-3.717000px;}
.ls36_c00199{letter-spacing:-3.690000px;}
.ls2f_c00199{letter-spacing:-3.135533px;}
.ls3_c00199{letter-spacing:-2.968875px;}
.ls38_c00199{letter-spacing:-2.834910px;}
.ls34_c00199{letter-spacing:-2.757375px;}
.ls24_c00199{letter-spacing:-2.386125px;}
.ls1f_c00199{letter-spacing:-2.331990px;}
.ls35_c00199{letter-spacing:-2.250000px;}
.lsf_c00199{letter-spacing:-2.230020px;}
.ls7_c00199{letter-spacing:-2.229413px;}
.lsc_c00199{letter-spacing:-2.136375px;}
.ls32_c00199{letter-spacing:-1.638450px;}
.ls6_c00199{letter-spacing:-1.560000px;}
.ls12_c00199{letter-spacing:-1.524750px;}
.ls8_c00199{letter-spacing:-1.489163px;}
.ls31_c00199{letter-spacing:-1.451843px;}
.ls2b_c00199{letter-spacing:-0.882090px;}
.ls37_c00199{letter-spacing:-0.819000px;}
.ls2e_c00199{letter-spacing:-0.765000px;}
.ls2c_c00199{letter-spacing:-0.764400px;}
.ls39_c00199{letter-spacing:-0.748650px;}
.ls2_c00199{letter-spacing:-0.740250px;}
.lsb_c00199{letter-spacing:0.000000px;}
.ls33_c00199{letter-spacing:0.819000px;}
.ls30_c00199{letter-spacing:0.832650px;}
.ls2a_c00199{letter-spacing:0.915045px;}
.ls0_c00199{letter-spacing:1.489163px;}
.lse_c00199{letter-spacing:1.497878px;}
.ls1_c00199{letter-spacing:1.638450px;}
.ls29_c00199{letter-spacing:2.092800px;}
.ls22_c00199{letter-spacing:3.090000px;}
.ls21_c00199{letter-spacing:3.524513px;}
.ls20_c00199{letter-spacing:3.604028px;}
.ls1a_c00199{letter-spacing:3.656318px;}
.ls1e_c00199{letter-spacing:4.587180px;}
.ls26_c00199{letter-spacing:12.247500px;}
.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:0.000000px;}
._13_c00199{margin-left:-10.469456px;}
._4_c00199{margin-left:-8.954380px;}
._11_c00199{margin-left:-5.948909px;}
._9_c00199{margin-left:-4.896363px;}
._14_c00199{margin-left:-3.746123px;}
._19_c00199{margin-left:-2.451710px;}
._15_c00199{margin-left:-1.376951px;}
._7_c00199{width:1.459238px;}
._8_c00199{width:2.646550px;}
._3_c00199{width:3.772036px;}
._1_c00199{width:5.664740px;}
._6_c00199{width:7.032345px;}
._5_c00199{width:8.810089px;}
._a_c00199{width:9.998947px;}
._2_c00199{width:11.444842px;}
._1d_c00199{width:12.502885px;}
._12_c00199{width:13.899286px;}
._0_c00199{width:16.033738px;}
._1c_c00199{width:18.636722px;}
._18_c00199{width:21.171061px;}
._1b_c00199{width:22.955982px;}
._22_c00199{width:24.571085px;}
._17_c00199{width:25.906016px;}
._16_c00199{width:27.829834px;}
._c_c00199{width:29.061959px;}
._e_c00199{width:30.316610px;}
._b_c00199{width:31.896841px;}
._1e_c00199{width:34.280113px;}
._d_c00199{width:35.517736px;}
._f_c00199{width:36.880943px;}
._10_c00199{width:39.392102px;}
._1f_c00199{width:42.468597px;}
._20_c00199{width:46.192090px;}
._21_c00199{width:49.132095px;}
._1a_c00199{width:66.182878px;}
.fc0_c00199{color:transparent;}
.fs1b_c00199{font-size:39.000000px;}
.fs15_c00199{font-size:41.250000px;}
.fs1a_c00199{font-size:42.750000px;}
.fsf_c00199{font-size:43.500000px;}
.fs18_c00199{font-size:44.250000px;}
.fs14_c00199{font-size:45.000000px;}
.fs17_c00199{font-size:45.750000px;}
.fs1c_c00199{font-size:46.500000px;}
.fs1d_c00199{font-size:47.250000px;}
.fs19_c00199{font-size:48.000000px;}
.fs16_c00199{font-size:51.750000px;}
.fs13_c00199{font-size:57.750000px;}
.fs9_c00199{font-size:59.250000px;}
.fs7_c00199{font-size:60.000000px;}
.fs11_c00199{font-size:72.750000px;}
.fse_c00199{font-size:75.000000px;}
.fs5_c00199{font-size:77.250000px;}
.fs12_c00199{font-size:77.836200px;}
.fs1_c00199{font-size:78.000000px;}
.fs0_c00199{font-size:78.750000px;}
.fs8_c00199{font-size:79.500000px;}
.fs6_c00199{font-size:80.250000px;}
.fsb_c00199{font-size:81.000000px;}
.fs10_c00199{font-size:81.750000px;}
.fs2_c00199{font-size:82.500000px;}
.fs3_c00199{font-size:84.750000px;}
.fsa_c00199{font-size:86.250000px;}
.fsd_c00199{font-size:87.750000px;}
.fs4_c00199{font-size:101.250000px;}
.fsc_c00199{font-size:115.500000px;}
.y0_c00199{bottom:0.000000px;}
.y28_c00199{bottom:132.121050px;}
.y27_c00199{bottom:172.800585px;}
.y25_c00199{bottom:255.960360px;}
.y26_c00199{bottom:255.961050px;}
.y24_c00199{bottom:286.200285px;}
.y23_c00199{bottom:316.080000px;}
.y22_c00199{bottom:345.960600px;}
.y21_c00199{bottom:375.479595px;}
.y20_c00199{bottom:404.640750px;}
.y1f_c00199{bottom:404.642595px;}
.y1e_c00199{bottom:464.760435px;}
.y1c_c00199{bottom:491.400285px;}
.y1d_c00199{bottom:494.640150px;}
.y1b_c00199{bottom:524.520225px;}
.y1a_c00199{bottom:554.399940px;}
.y19_c00199{bottom:583.921275px;}
.y18_c00199{bottom:643.680720px;}
.y16_c00199{bottom:664.560120px;}
.y17_c00199{bottom:664.560285px;}
.y15_c00199{bottom:685.438725px;}
.y14_c00199{bottom:706.500600px;}
.y13_c00199{bottom:706.501515px;}
.y12_c00199{bottom:728.279850px;}
.y11_c00199{bottom:749.520270px;}
.yf_c00199{bottom:770.399820px;}
.y10_c00199{bottom:770.399865px;}
.ye_c00199{bottom:792.000915px;}
.yd_c00199{bottom:813.960405px;}
.yc_c00199{bottom:835.559685px;}
.yb_c00199{bottom:877.679715px;}
.ya_c00199{bottom:877.679760px;}
.y9_c00199{bottom:899.280855px;}
.y8_c00199{bottom:959.040705px;}
.y6_c00199{bottom:988.560195px;}
.y7_c00199{bottom:988.560240px;}
.y5_c00199{bottom:1018.800105px;}
.y4_c00199{bottom:1018.801185px;}
.y3_c00199{bottom:1048.320720px;}
.y2_c00199{bottom:1078.200435px;}
.y1_c00199{bottom:1138.320825px;}
.h27_c00199{height:40.675781px;}
.h20_c00199{height:43.022461px;}
.h23_c00199{height:43.428955px;}
.h26_c00199{height:44.472656px;}
.h25_c00199{height:44.586914px;}
.h1f_c00199{height:45.351562px;}
.h14_c00199{height:45.369141px;}
.h22_c00199{height:46.107422px;}
.h29_c00199{height:46.696289px;}
.h28_c00199{height:46.863281px;}
.h24_c00199{height:47.437500px;}
.h21_c00199{height:51.143555px;}
.h1a_c00199{height:57.073242px;}
.hc_c00199{height:58.121704px;}
.h8_c00199{height:59.296875px;}
.h13_c00199{height:73.608398px;}
.h6_c00199{height:75.816650px;}
.h17_c00199{height:75.875977px;}
.h2_c00199{height:76.552734px;}
.h19_c00199{height:76.924057px;}
.h1_c00199{height:77.288818px;}
.h18_c00199{height:77.827148px;}
.h12_c00199{height:78.005038px;}
.ha_c00199{height:78.568359px;}
.hb_c00199{height:78.609375px;}
.h7_c00199{height:78.760986px;}
.h16_c00199{height:79.365234px;}
.hf_c00199{height:79.497070px;}
.h1b_c00199{height:80.050781px;}
.he_c00199{height:80.121094px;}
.h15_c00199{height:80.233154px;}
.h1c_c00199{height:80.791992px;}
.h3_c00199{height:80.969238px;}
.h9_c00199{height:81.533203px;}
.h1d_c00199{height:81.632812px;}
.h4_c00199{height:83.177490px;}
.h1e_c00199{height:83.756836px;}
.hd_c00199{height:85.239258px;}
.h11_c00199{height:86.721680px;}
.h5_c00199{height:105.600586px;}
.h10_c00199{height:120.462891px;}
.h0_c00199{height:1263.000000px;}
.w0_c00199{width:892.500000px;}
.x0_c00199{left:0.000000px;}
.x29_c00199{left:97.558665px;}
.x28_c00199{left:135.719145px;}
.x7_c00199{left:136.801065px;}
.x1_c00199{left:137.878950px;}
.x3c_c00199{left:177.479250px;}
.xd_c00199{left:191.158905px;}
.x8_c00199{left:192.599100px;}
.x2e_c00199{left:196.199850px;}
.x13_c00199{left:209.518635px;}
.x2f_c00199{left:211.319850px;}
.x9_c00199{left:213.478635px;}
.x10_c00199{left:226.078785px;}
.xa_c00199{left:227.878350px;}
.x3d_c00199{left:240.119385px;}
.x3e_c00199{left:249.118785px;}
.x1f_c00199{left:277.918350px;}
.x14_c00199{left:285.479235px;}
.x3f_c00199{left:292.679100px;}
.x20_c00199{left:298.799535px;}
.x21_c00199{left:304.199850px;}
.x30_c00199{left:308.878350px;}
.x40_c00199{left:324.718500px;}
.x22_c00199{left:343.080000px;}
.x41_c00199{left:349.198785px;}
.x15_c00199{left:361.439685px;}
.x26_c00199{left:362.519100px;}
.x31_c00199{left:374.040000px;}
.x16_c00199{left:392.759085px;}
.x27_c00199{left:394.199385px;}
.x23_c00199{left:408.239820px;}
.x32_c00199{left:412.199850px;}
.x2c_c00199{left:414.358665px;}
.x24_c00199{left:424.439250px;}
.x2d_c00199{left:427.679070px;}
.x33_c00199{left:430.918950px;}
.x2_c00199{left:482.039985px;}
.x5_c00199{left:484.559685px;}
.x42_c00199{left:494.638500px;}
.x6_c00199{left:498.959385px;}
.x17_c00199{left:501.479235px;}
.x43_c00199{left:506.159415px;}
.x34_c00199{left:507.958920px;}
.x44_c00199{left:529.919535px;}
.x35_c00199{left:530.998950px;}
.x3a_c00199{left:537.478635px;}
.x18_c00199{left:546.479685px;}
.x3b_c00199{left:552.598530px;}
.x36_c00199{left:556.199385px;}
.x19_c00199{left:561.599670px;}
.x45_c00199{left:563.758530px;}
.x46_c00199{left:582.479235px;}
.x2a_c00199{left:590.039985px;}
.x3_c00199{left:601.559100px;}
.x1a_c00199{left:604.798920px;}
.x2b_c00199{left:606.598530px;}
.x37_c00199{left:610.199385px;}
.x4_c00199{left:614.879520px;}
.x38_c00199{left:624.958335px;}
.xe_c00199{left:626.039385px;}
.x1b_c00199{left:628.918350px;}
.x47_c00199{left:645.119385px;}
.xf_c00199{left:658.439670px;}
.x48_c00199{left:664.558635px;}
.x11_c00199{left:670.319820px;}
.x39_c00199{left:672.478635px;}
.x1c_c00199{left:674.279850px;}
.xb_c00199{left:680.759535px;}
.xc_c00199{left:699.839535px;}
.x12_c00199{left:712.078770px;}
.x49_c00199{left:750.238770px;}
.x1d_c00199{left:752.758530px;}
.x1e_c00199{left:763.918350px;}
.x25_c00199{left:764.999355px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls13_c00199{letter-spacing:-14.912000pt;}
.ls28_c00199{letter-spacing:-14.352800pt;}
.ls25_c00199{letter-spacing:-10.886667pt;}
.ls14_c00199{letter-spacing:-9.973333pt;}
.ls1b_c00199{letter-spacing:-9.276667pt;}
.ls2d_c00199{letter-spacing:-9.077667pt;}
.ls18_c00199{letter-spacing:-8.840000pt;}
.ls15_c00199{letter-spacing:-8.119600pt;}
.lsa_c00199{letter-spacing:-7.924000pt;}
.ls11_c00199{letter-spacing:-6.601000pt;}
.ls1c_c00199{letter-spacing:-6.115200pt;}
.lsd_c00199{letter-spacing:-5.943000pt;}
.ls16_c00199{letter-spacing:-5.689373pt;}
.ls10_c00199{letter-spacing:-5.285000pt;}
.ls9_c00199{letter-spacing:-4.619300pt;}
.ls23_c00199{letter-spacing:-4.541667pt;}
.ls17_c00199{letter-spacing:-4.501133pt;}
.ls3a_c00199{letter-spacing:-4.200420pt;}
.ls19_c00199{letter-spacing:-4.077493pt;}
.ls4_c00199{letter-spacing:-3.961300pt;}
.ls27_c00199{letter-spacing:-3.591000pt;}
.ls1d_c00199{letter-spacing:-3.463200pt;}
.ls5_c00199{letter-spacing:-3.304000pt;}
.ls36_c00199{letter-spacing:-3.280000pt;}
.ls2f_c00199{letter-spacing:-2.787140pt;}
.ls3_c00199{letter-spacing:-2.639000pt;}
.ls38_c00199{letter-spacing:-2.519920pt;}
.ls34_c00199{letter-spacing:-2.451000pt;}
.ls24_c00199{letter-spacing:-2.121000pt;}
.ls1f_c00199{letter-spacing:-2.072880pt;}
.ls35_c00199{letter-spacing:-2.000000pt;}
.lsf_c00199{letter-spacing:-1.982240pt;}
.ls7_c00199{letter-spacing:-1.981700pt;}
.lsc_c00199{letter-spacing:-1.899000pt;}
.ls32_c00199{letter-spacing:-1.456400pt;}
.ls6_c00199{letter-spacing:-1.386667pt;}
.ls12_c00199{letter-spacing:-1.355333pt;}
.ls8_c00199{letter-spacing:-1.323700pt;}
.ls31_c00199{letter-spacing:-1.290527pt;}
.ls2b_c00199{letter-spacing:-0.784080pt;}
.ls37_c00199{letter-spacing:-0.728000pt;}
.ls2e_c00199{letter-spacing:-0.680000pt;}
.ls2c_c00199{letter-spacing:-0.679467pt;}
.ls39_c00199{letter-spacing:-0.665467pt;}
.ls2_c00199{letter-spacing:-0.658000pt;}
.lsb_c00199{letter-spacing:0.000000pt;}
.ls33_c00199{letter-spacing:0.728000pt;}
.ls30_c00199{letter-spacing:0.740133pt;}
.ls2a_c00199{letter-spacing:0.813373pt;}
.ls0_c00199{letter-spacing:1.323700pt;}
.lse_c00199{letter-spacing:1.331447pt;}
.ls1_c00199{letter-spacing:1.456400pt;}
.ls29_c00199{letter-spacing:1.860267pt;}
.ls22_c00199{letter-spacing:2.746667pt;}
.ls21_c00199{letter-spacing:3.132900pt;}
.ls20_c00199{letter-spacing:3.203580pt;}
.ls1a_c00199{letter-spacing:3.250060pt;}
.ls1e_c00199{letter-spacing:4.077493pt;}
.ls26_c00199{letter-spacing:10.886667pt;}
.ws0_c00199{word-spacing:0.000000pt;}
._13_c00199{margin-left:-9.306183pt;}
._4_c00199{margin-left:-7.959449pt;}
._11_c00199{margin-left:-5.287919pt;}
._9_c00199{margin-left:-4.352323pt;}
._14_c00199{margin-left:-3.329887pt;}
._19_c00199{margin-left:-2.179298pt;}
._15_c00199{margin-left:-1.223957pt;}
._7_c00199{width:1.297100pt;}
._8_c00199{width:2.352489pt;}
._3_c00199{width:3.352921pt;}
._1_c00199{width:5.035325pt;}
._6_c00199{width:6.250974pt;}
._5_c00199{width:7.831191pt;}
._a_c00199{width:8.887953pt;}
._2_c00199{width:10.173192pt;}
._1d_c00199{width:11.113675pt;}
._12_c00199{width:12.354921pt;}
._0_c00199{width:14.252211pt;}
._1c_c00199{width:16.565975pt;}
._18_c00199{width:18.818721pt;}
._1b_c00199{width:20.405317pt;}
._22_c00199{width:21.840964pt;}
._17_c00199{width:23.027570pt;}
._16_c00199{width:24.737630pt;}
._c_c00199{width:25.832853pt;}
._e_c00199{width:26.948098pt;}
._b_c00199{width:28.352747pt;}
._1e_c00199{width:30.471211pt;}
._d_c00199{width:31.571321pt;}
._f_c00199{width:32.783060pt;}
._10_c00199{width:35.015202pt;}
._1f_c00199{width:37.749864pt;}
._20_c00199{width:41.059636pt;}
._21_c00199{width:43.672974pt;}
._1a_c00199{width:58.829225pt;}
.fs1b_c00199{font-size:34.666667pt;}
.fs15_c00199{font-size:36.666667pt;}
.fs1a_c00199{font-size:38.000000pt;}
.fsf_c00199{font-size:38.666667pt;}
.fs18_c00199{font-size:39.333333pt;}
.fs14_c00199{font-size:40.000000pt;}
.fs17_c00199{font-size:40.666667pt;}
.fs1c_c00199{font-size:41.333333pt;}
.fs1d_c00199{font-size:42.000000pt;}
.fs19_c00199{font-size:42.666667pt;}
.fs16_c00199{font-size:46.000000pt;}
.fs13_c00199{font-size:51.333333pt;}
.fs9_c00199{font-size:52.666667pt;}
.fs7_c00199{font-size:53.333333pt;}
.fs11_c00199{font-size:64.666667pt;}
.fse_c00199{font-size:66.666667pt;}
.fs5_c00199{font-size:68.666667pt;}
.fs12_c00199{font-size:69.187733pt;}
.fs1_c00199{font-size:69.333333pt;}
.fs0_c00199{font-size:70.000000pt;}
.fs8_c00199{font-size:70.666667pt;}
.fs6_c00199{font-size:71.333333pt;}
.fsb_c00199{font-size:72.000000pt;}
.fs10_c00199{font-size:72.666667pt;}
.fs2_c00199{font-size:73.333333pt;}
.fs3_c00199{font-size:75.333333pt;}
.fsa_c00199{font-size:76.666667pt;}
.fsd_c00199{font-size:78.000000pt;}
.fs4_c00199{font-size:90.000000pt;}
.fsc_c00199{font-size:102.666667pt;}
.y0_c00199{bottom:0.000000pt;}
.y28_c00199{bottom:117.440933pt;}
.y27_c00199{bottom:153.600520pt;}
.y25_c00199{bottom:227.520320pt;}
.y26_c00199{bottom:227.520933pt;}
.y24_c00199{bottom:254.400253pt;}
.y23_c00199{bottom:280.960000pt;}
.y22_c00199{bottom:307.520533pt;}
.y21_c00199{bottom:333.759640pt;}
.y20_c00199{bottom:359.680667pt;}
.y1f_c00199{bottom:359.682307pt;}
.y1e_c00199{bottom:413.120387pt;}
.y1c_c00199{bottom:436.800253pt;}
.y1d_c00199{bottom:439.680133pt;}
.y1b_c00199{bottom:466.240200pt;}
.y1a_c00199{bottom:492.799947pt;}
.y19_c00199{bottom:519.041133pt;}
.y18_c00199{bottom:572.160640pt;}
.y16_c00199{bottom:590.720107pt;}
.y17_c00199{bottom:590.720253pt;}
.y15_c00199{bottom:609.278867pt;}
.y14_c00199{bottom:628.000533pt;}
.y13_c00199{bottom:628.001347pt;}
.y12_c00199{bottom:647.359867pt;}
.y11_c00199{bottom:666.240240pt;}
.yf_c00199{bottom:684.799840pt;}
.y10_c00199{bottom:684.799880pt;}
.ye_c00199{bottom:704.000813pt;}
.yd_c00199{bottom:723.520360pt;}
.yc_c00199{bottom:742.719720pt;}
.yb_c00199{bottom:780.159747pt;}
.ya_c00199{bottom:780.159787pt;}
.y9_c00199{bottom:799.360760pt;}
.y8_c00199{bottom:852.480627pt;}
.y6_c00199{bottom:878.720173pt;}
.y7_c00199{bottom:878.720213pt;}
.y5_c00199{bottom:905.600093pt;}
.y4_c00199{bottom:905.601053pt;}
.y3_c00199{bottom:931.840640pt;}
.y2_c00199{bottom:958.400387pt;}
.y1_c00199{bottom:1011.840733pt;}
.h27_c00199{height:36.156250pt;}
.h20_c00199{height:38.242188pt;}
.h23_c00199{height:38.603516pt;}
.h26_c00199{height:39.531250pt;}
.h25_c00199{height:39.632812pt;}
.h1f_c00199{height:40.312500pt;}
.h14_c00199{height:40.328125pt;}
.h22_c00199{height:40.984375pt;}
.h29_c00199{height:41.507812pt;}
.h28_c00199{height:41.656250pt;}
.h24_c00199{height:42.166667pt;}
.h21_c00199{height:45.460938pt;}
.h1a_c00199{height:50.731771pt;}
.hc_c00199{height:51.663737pt;}
.h8_c00199{height:52.708333pt;}
.h13_c00199{height:65.429688pt;}
.h6_c00199{height:67.392578pt;}
.h17_c00199{height:67.445312pt;}
.h2_c00199{height:68.046875pt;}
.h19_c00199{height:68.376940pt;}
.h1_c00199{height:68.701172pt;}
.h18_c00199{height:69.179688pt;}
.h12_c00199{height:69.337812pt;}
.ha_c00199{height:69.838542pt;}
.hb_c00199{height:69.875000pt;}
.h7_c00199{height:70.009766pt;}
.h16_c00199{height:70.546875pt;}
.hf_c00199{height:70.664062pt;}
.h1b_c00199{height:71.156250pt;}
.he_c00199{height:71.218750pt;}
.h15_c00199{height:71.318359pt;}
.h1c_c00199{height:71.815104pt;}
.h3_c00199{height:71.972656pt;}
.h9_c00199{height:72.473958pt;}
.h1d_c00199{height:72.562500pt;}
.h4_c00199{height:73.935547pt;}
.h1e_c00199{height:74.450521pt;}
.hd_c00199{height:75.768229pt;}
.h11_c00199{height:77.085938pt;}
.h5_c00199{height:93.867188pt;}
.h10_c00199{height:107.078125pt;}
.h0_c00199{height:1122.666667pt;}
.w0_c00199{width:793.333333pt;}
.x0_c00199{left:0.000000pt;}
.x29_c00199{left:86.718813pt;}
.x28_c00199{left:120.639240pt;}
.x7_c00199{left:121.600947pt;}
.x1_c00199{left:122.559067pt;}
.x3c_c00199{left:157.759333pt;}
.xd_c00199{left:169.919027pt;}
.x8_c00199{left:171.199200pt;}
.x2e_c00199{left:174.399867pt;}
.x13_c00199{left:186.238787pt;}
.x2f_c00199{left:187.839867pt;}
.x9_c00199{left:189.758787pt;}
.x10_c00199{left:200.958920pt;}
.xa_c00199{left:202.558533pt;}
.x3d_c00199{left:213.439453pt;}
.x3e_c00199{left:221.438920pt;}
.x1f_c00199{left:247.038533pt;}
.x14_c00199{left:253.759320pt;}
.x3f_c00199{left:260.159200pt;}
.x20_c00199{left:265.599587pt;}
.x21_c00199{left:270.399867pt;}
.x30_c00199{left:274.558533pt;}
.x40_c00199{left:288.638667pt;}
.x22_c00199{left:304.960000pt;}
.x41_c00199{left:310.398920pt;}
.x15_c00199{left:321.279720pt;}
.x26_c00199{left:322.239200pt;}
.x31_c00199{left:332.480000pt;}
.x16_c00199{left:349.119187pt;}
.x27_c00199{left:350.399453pt;}
.x23_c00199{left:362.879840pt;}
.x32_c00199{left:366.399867pt;}
.x2c_c00199{left:368.318813pt;}
.x24_c00199{left:377.279333pt;}
.x2d_c00199{left:380.159173pt;}
.x33_c00199{left:383.039067pt;}
.x2_c00199{left:428.479987pt;}
.x5_c00199{left:430.719720pt;}
.x42_c00199{left:439.678667pt;}
.x6_c00199{left:443.519453pt;}
.x17_c00199{left:445.759320pt;}
.x43_c00199{left:449.919480pt;}
.x34_c00199{left:451.519040pt;}
.x44_c00199{left:471.039587pt;}
.x35_c00199{left:471.999067pt;}
.x3a_c00199{left:477.758787pt;}
.x18_c00199{left:485.759720pt;}
.x3b_c00199{left:491.198693pt;}
.x36_c00199{left:494.399453pt;}
.x19_c00199{left:499.199707pt;}
.x45_c00199{left:501.118693pt;}
.x46_c00199{left:517.759320pt;}
.x2a_c00199{left:524.479987pt;}
.x3_c00199{left:534.719200pt;}
.x1a_c00199{left:537.599040pt;}
.x2b_c00199{left:539.198693pt;}
.x37_c00199{left:542.399453pt;}
.x4_c00199{left:546.559573pt;}
.x38_c00199{left:555.518520pt;}
.xe_c00199{left:556.479453pt;}
.x1b_c00199{left:559.038533pt;}
.x47_c00199{left:573.439453pt;}
.xf_c00199{left:585.279707pt;}
.x48_c00199{left:590.718787pt;}
.x11_c00199{left:595.839840pt;}
.x39_c00199{left:597.758787pt;}
.x1c_c00199{left:599.359867pt;}
.xb_c00199{left:605.119587pt;}
.xc_c00199{left:622.079587pt;}
.x12_c00199{left:632.958907pt;}
.x49_c00199{left:666.878907pt;}
.x1d_c00199{left:669.118693pt;}
.x1e_c00199{left:679.038533pt;}
.x25_c00199{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53ef08c28744a739704ddd45.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_da6424738216be653b674e1d.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_0ed13b64b38988cb86ab9a7d.woff2')format("woff");}.ff3_c00200{font-family:ff3_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:ff4_c00200;src:url('chunks/assets/font_0a7eb468de21f93be3a74052.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.364746;font-style:normal;font-weight:normal;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_75bbf9fcbdb3f5db3ff334ce.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;}
@font-face{font-family:ff6_c00200;src:url('chunks/assets/font_9aa45b38644ef644bb6a539c.woff2')format("woff");}.ff6_c00200{font-family:ff6_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;}
.ma_c00200{transform:matrix(0.169192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169192,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.lsf_c00200{letter-spacing:-16.941578px;}
.ls1f_c00200{letter-spacing:-16.412873px;}
.ls8_c00200{letter-spacing:-15.287250px;}
.lsc_c00200{letter-spacing:-14.011950px;}
.lsa_c00200{letter-spacing:-12.873300px;}
.ls17_c00200{letter-spacing:-10.561703px;}
.ls15_c00200{letter-spacing:-8.175038px;}
.ls18_c00200{letter-spacing:-7.426125px;}
.ls16_c00200{letter-spacing:-6.685875px;}
.ls1d_c00200{letter-spacing:-6.391800px;}
.lsb_c00200{letter-spacing:-6.000750px;}
.ls7_c00200{letter-spacing:-5.945625px;}
.ls20_c00200{letter-spacing:-5.779800px;}
.ls0_c00200{letter-spacing:-5.196713px;}
.ls14_c00200{letter-spacing:-4.629150px;}
.ls9_c00200{letter-spacing:-4.456463px;}
.ls19_c00200{letter-spacing:-3.938978px;}
.ls5_c00200{letter-spacing:-3.717000px;}
.ls10_c00200{letter-spacing:-3.326400px;}
.ls3_c00200{letter-spacing:-2.968875px;}
.ls1e_c00200{letter-spacing:-2.714250px;}
.ls1_c00200{letter-spacing:-2.229413px;}
.ls1a_c00200{letter-spacing:-1.661625px;}
.ls2_c00200{letter-spacing:-1.489163px;}
.ls1b_c00200{letter-spacing:-1.378125px;}
.ls1c_c00200{letter-spacing:-0.882000px;}
.ls4_c00200{letter-spacing:-0.740250px;}
.ls6_c00200{letter-spacing:0.000000px;}
.lsd_c00200{letter-spacing:0.790575px;}
.ls13_c00200{letter-spacing:1.962218px;}
.ls12_c00200{letter-spacing:4.864200px;}
.lse_c00200{letter-spacing:7.782600px;}
.ls11_c00200{letter-spacing:18.918450px;}
.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;}
._a_c00200{margin-left:-17.063416px;}
._18_c00200{margin-left:-12.922608px;}
._10_c00200{margin-left:-7.243841px;}
._17_c00200{margin-left:-5.822805px;}
._1_c00200{margin-left:-4.666636px;}
._11_c00200{margin-left:-2.214049px;}
._2_c00200{margin-left:-1.057256px;}
._3_c00200{width:1.886167px;}
._e_c00200{width:3.688635px;}
._c_c00200{width:5.359695px;}
._0_c00200{width:7.202386px;}
._f_c00200{width:9.134287px;}
._d_c00200{width:10.261571px;}
._13_c00200{width:11.516326px;}
._12_c00200{width:12.595409px;}
._14_c00200{width:14.025004px;}
._6_c00200{width:15.277738px;}
._5_c00200{width:16.674555px;}
._7_c00200{width:18.579547px;}
._8_c00200{width:19.753605px;}
._9_c00200{width:20.947559px;}
._1a_c00200{width:22.010239px;}
._4_c00200{width:23.341411px;}
._15_c00200{width:24.524592px;}
._b_c00200{width:25.911603px;}
._1b_c00200{width:27.302833px;}
._19_c00200{width:29.028929px;}
._16_c00200{width:30.334865px;}
.fc0_c00200{color:transparent;}
.fsa_c00200{font-size:40.500000px;}
.fs9_c00200{font-size:45.750000px;}
.fs8_c00200{font-size:50.250000px;}
.fs5_c00200{font-size:62.250000px;}
.fse_c00200{font-size:69.750000px;}
.fs4_c00200{font-size:70.500000px;}
.fs6_c00200{font-size:74.250000px;}
.fs7_c00200{font-size:76.500000px;}
.fsc_c00200{font-size:77.250000px;}
.fsb_c00200{font-size:78.000000px;}
.fs0_c00200{font-size:78.750000px;}
.fsd_c00200{font-size:79.500000px;}
.fs1_c00200{font-size:80.250000px;}
.fs3_c00200{font-size:81.750000px;}
.fs2_c00200{font-size:82.500000px;}
.y0_c00200{bottom:0.000000px;}
.y2a_c00200{bottom:183.238785px;}
.y29_c00200{bottom:183.239655px;}
.y27_c00200{bottom:213.118980px;}
.y28_c00200{bottom:213.119385px;}
.y26_c00200{bottom:242.638500px;}
.y25_c00200{bottom:302.039565px;}
.y23_c00200{bottom:331.559025px;}
.y24_c00200{bottom:331.559100px;}
.y22_c00200{bottom:361.798950px;}
.y21_c00200{bottom:361.799235px;}
.y20_c00200{bottom:391.318770px;}
.y1e_c00200{bottom:420.840135px;}
.y1f_c00200{bottom:421.919535px;}
.y1d_c00200{bottom:450.360630px;}
.y1c_c00200{bottom:480.958920px;}
.y1b_c00200{bottom:540.360285px;}
.y1a_c00200{bottom:570.240000px;}
.y19_c00200{bottom:599.759535px;}
.y18_c00200{bottom:599.760570px;}
.y17_c00200{bottom:629.640285px;}
.y16_c00200{bottom:659.159820px;}
.y15_c00200{bottom:659.160135px;}
.y14_c00200{bottom:688.679670px;}
.y13_c00200{bottom:688.680570px;}
.y12_c00200{bottom:718.560285px;}
.y11_c00200{bottom:744.479235px;}
.yf_c00200{bottom:748.080000px;}
.y10_c00200{bottom:748.439205px;}
.ye_c00200{bottom:808.560405px;}
.yd_c00200{bottom:868.319850px;}
.yc_c00200{bottom:898.199565px;}
.ya_c00200{bottom:927.358110px;}
.yb_c00200{bottom:927.358605px;}
.y8_c00200{bottom:957.599985px;}
.y9_c00200{bottom:957.600135px;}
.y6_c00200{bottom:986.758665px;}
.y7_c00200{bottom:986.759040px;}
.y5_c00200{bottom:1017.359070px;}
.y3_c00200{bottom:1076.759235px;}
.y4_c00200{bottom:1076.760135px;}
.y2_c00200{bottom:1106.999160px;}
.y1_c00200{bottom:1136.878875px;}
.he_c00200{height:42.240234px;}
.hd_c00200{height:47.715820px;}
.hc_c00200{height:52.409180px;}
.h8_c00200{height:61.520508px;}
.h12_c00200{height:71.050781px;}
.h13_c00200{height:72.747070px;}
.h5_c00200{height:73.529297px;}
.hf_c00200{height:76.552734px;}
.hb_c00200{height:77.097656px;}
.h1_c00200{height:77.288818px;}
.ha_c00200{height:77.440430px;}
.h10_c00200{height:77.853516px;}
.h2_c00200{height:78.760986px;}
.h9_c00200{height:79.309570px;}
.h6_c00200{height:79.365234px;}
.h11_c00200{height:80.121094px;}
.h4_c00200{height:80.233154px;}
.h7_c00200{height:80.791992px;}
.h3_c00200{height:80.969238px;}
.h0_c00200{height:1263.000000px;}
.w0_c00200{width:892.500000px;}
.x0_c00200{left:0.000000px;}
.x6_c00200{left:141.476070px;}
.x1_c00200{left:142.559100px;}
.x1d_c00200{left:168.838950px;}
.x4_c00200{left:216.718500px;}
.x5_c00200{left:230.038950px;}
.xb_c00200{left:232.558635px;}
.x17_c00200{left:243.718500px;}
.xc_c00200{left:259.199385px;}
.x19_c00200{left:267.119385px;}
.x1a_c00200{left:281.519100px;}
.x2_c00200{left:300.958350px;}
.x3_c00200{left:316.439235px;}
.x1e_c00200{left:348.478635px;}
.xd_c00200{left:359.638530px;}
.x1f_c00200{left:371.159385px;}
.x2a_c00200{left:378.000000px;}
.x26_c00200{left:416.878320px;}
.x2b_c00200{left:421.199385px;}
.x2c_c00200{left:438.118785px;}
.x27_c00200{left:443.519070px;}
.xe_c00200{left:463.319235px;}
.x9_c00200{left:494.999400px;}
.x14_c00200{left:507.238770px;}
.x7_c00200{left:510.839535px;}
.x18_c00200{left:513.000000px;}
.xa_c00200{left:521.279250px;}
.x8_c00200{left:525.598530px;}
.x20_c00200{left:537.839535px;}
.xf_c00200{left:562.319820px;}
.x21_c00200{left:564.478635px;}
.x10_c00200{left:585.359850px;}
.x11_c00200{left:612.719100px;}
.x25_c00200{left:646.198785px;}
.x12_c00200{left:649.438620px;}
.x22_c00200{left:652.678530px;}
.x1b_c00200{left:659.159820px;}
.x1c_c00200{left:673.559685px;}
.x13_c00200{left:722.879520px;}
.x23_c00200{left:730.438620px;}
.x15_c00200{left:745.558635px;}
.x28_c00200{left:754.559685px;}
.x16_c00200{left:760.678530px;}
.x24_c00200{left:763.918350px;}
.x29_c00200{left:768.598575px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.lsf_c00200{letter-spacing:-15.059180pt;}
.ls1f_c00200{letter-spacing:-14.589220pt;}
.ls8_c00200{letter-spacing:-13.588667pt;}
.lsc_c00200{letter-spacing:-12.455067pt;}
.lsa_c00200{letter-spacing:-11.442933pt;}
.ls17_c00200{letter-spacing:-9.388180pt;}
.ls15_c00200{letter-spacing:-7.266700pt;}
.ls18_c00200{letter-spacing:-6.601000pt;}
.ls16_c00200{letter-spacing:-5.943000pt;}
.ls1d_c00200{letter-spacing:-5.681600pt;}
.lsb_c00200{letter-spacing:-5.334000pt;}
.ls7_c00200{letter-spacing:-5.285000pt;}
.ls20_c00200{letter-spacing:-5.137600pt;}
.ls0_c00200{letter-spacing:-4.619300pt;}
.ls14_c00200{letter-spacing:-4.114800pt;}
.ls9_c00200{letter-spacing:-3.961300pt;}
.ls19_c00200{letter-spacing:-3.501313pt;}
.ls5_c00200{letter-spacing:-3.304000pt;}
.ls10_c00200{letter-spacing:-2.956800pt;}
.ls3_c00200{letter-spacing:-2.639000pt;}
.ls1e_c00200{letter-spacing:-2.412667pt;}
.ls1_c00200{letter-spacing:-1.981700pt;}
.ls1a_c00200{letter-spacing:-1.477000pt;}
.ls2_c00200{letter-spacing:-1.323700pt;}
.ls1b_c00200{letter-spacing:-1.225000pt;}
.ls1c_c00200{letter-spacing:-0.784000pt;}
.ls4_c00200{letter-spacing:-0.658000pt;}
.ls6_c00200{letter-spacing:0.000000pt;}
.lsd_c00200{letter-spacing:0.702733pt;}
.ls13_c00200{letter-spacing:1.744193pt;}
.ls12_c00200{letter-spacing:4.323733pt;}
.lse_c00200{letter-spacing:6.917867pt;}
.ls11_c00200{letter-spacing:16.816400pt;}
.ws0_c00200{word-spacing:0.000000pt;}
._a_c00200{margin-left:-15.167481pt;}
._18_c00200{margin-left:-11.486762pt;}
._10_c00200{margin-left:-6.438970pt;}
._17_c00200{margin-left:-5.175826pt;}
._1_c00200{margin-left:-4.148121pt;}
._11_c00200{margin-left:-1.968043pt;}
._2_c00200{margin-left:-0.939783pt;}
._3_c00200{width:1.676592pt;}
._e_c00200{width:3.278787pt;}
._c_c00200{width:4.764174pt;}
._0_c00200{width:6.402121pt;}
._f_c00200{width:8.119366pt;}
._d_c00200{width:9.121396pt;}
._13_c00200{width:10.236734pt;}
._12_c00200{width:11.195919pt;}
._14_c00200{width:12.466670pt;}
._6_c00200{width:13.580211pt;}
._5_c00200{width:14.821826pt;}
._7_c00200{width:16.515153pt;}
._8_c00200{width:17.558760pt;}
._9_c00200{width:18.620053pt;}
._1a_c00200{width:19.564657pt;}
._4_c00200{width:20.747921pt;}
._15_c00200{width:21.799638pt;}
._b_c00200{width:23.032536pt;}
._1b_c00200{width:24.269185pt;}
._19_c00200{width:25.803492pt;}
._16_c00200{width:26.964324pt;}
.fsa_c00200{font-size:36.000000pt;}
.fs9_c00200{font-size:40.666667pt;}
.fs8_c00200{font-size:44.666667pt;}
.fs5_c00200{font-size:55.333333pt;}
.fse_c00200{font-size:62.000000pt;}
.fs4_c00200{font-size:62.666667pt;}
.fs6_c00200{font-size:66.000000pt;}
.fs7_c00200{font-size:68.000000pt;}
.fsc_c00200{font-size:68.666667pt;}
.fsb_c00200{font-size:69.333333pt;}
.fs0_c00200{font-size:70.000000pt;}
.fsd_c00200{font-size:70.666667pt;}
.fs1_c00200{font-size:71.333333pt;}
.fs3_c00200{font-size:72.666667pt;}
.fs2_c00200{font-size:73.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y2a_c00200{bottom:162.878920pt;}
.y29_c00200{bottom:162.879693pt;}
.y27_c00200{bottom:189.439093pt;}
.y28_c00200{bottom:189.439453pt;}
.y26_c00200{bottom:215.678667pt;}
.y25_c00200{bottom:268.479613pt;}
.y23_c00200{bottom:294.719133pt;}
.y24_c00200{bottom:294.719200pt;}
.y22_c00200{bottom:321.599067pt;}
.y21_c00200{bottom:321.599320pt;}
.y20_c00200{bottom:347.838907pt;}
.y1e_c00200{bottom:374.080120pt;}
.y1f_c00200{bottom:375.039587pt;}
.y1d_c00200{bottom:400.320560pt;}
.y1c_c00200{bottom:427.519040pt;}
.y1b_c00200{bottom:480.320253pt;}
.y1a_c00200{bottom:506.880000pt;}
.y19_c00200{bottom:533.119587pt;}
.y18_c00200{bottom:533.120507pt;}
.y17_c00200{bottom:559.680253pt;}
.y16_c00200{bottom:585.919840pt;}
.y15_c00200{bottom:585.920120pt;}
.y14_c00200{bottom:612.159707pt;}
.y13_c00200{bottom:612.160507pt;}
.y12_c00200{bottom:638.720253pt;}
.y11_c00200{bottom:661.759320pt;}
.yf_c00200{bottom:664.960000pt;}
.y10_c00200{bottom:665.279293pt;}
.ye_c00200{bottom:718.720360pt;}
.yd_c00200{bottom:771.839867pt;}
.yc_c00200{bottom:798.399613pt;}
.ya_c00200{bottom:824.318320pt;}
.yb_c00200{bottom:824.318760pt;}
.y8_c00200{bottom:851.199987pt;}
.y9_c00200{bottom:851.200120pt;}
.y6_c00200{bottom:877.118813pt;}
.y7_c00200{bottom:877.119147pt;}
.y5_c00200{bottom:904.319173pt;}
.y3_c00200{bottom:957.119320pt;}
.y4_c00200{bottom:957.120120pt;}
.y2_c00200{bottom:983.999253pt;}
.y1_c00200{bottom:1010.559000pt;}
.he_c00200{height:37.546875pt;}
.hd_c00200{height:42.414062pt;}
.hc_c00200{height:46.585938pt;}
.h8_c00200{height:54.684896pt;}
.h12_c00200{height:63.156250pt;}
.h13_c00200{height:64.664062pt;}
.h5_c00200{height:65.359375pt;}
.hf_c00200{height:68.046875pt;}
.hb_c00200{height:68.531250pt;}
.h1_c00200{height:68.701172pt;}
.ha_c00200{height:68.835938pt;}
.h10_c00200{height:69.203125pt;}
.h2_c00200{height:70.009766pt;}
.h9_c00200{height:70.497396pt;}
.h6_c00200{height:70.546875pt;}
.h11_c00200{height:71.218750pt;}
.h4_c00200{height:71.318359pt;}
.h7_c00200{height:71.815104pt;}
.h3_c00200{height:71.972656pt;}
.h0_c00200{height:1122.666667pt;}
.w0_c00200{width:793.333333pt;}
.x0_c00200{left:0.000000pt;}
.x6_c00200{left:125.756507pt;}
.x1_c00200{left:126.719200pt;}
.x1d_c00200{left:150.079067pt;}
.x4_c00200{left:192.638667pt;}
.x5_c00200{left:204.479067pt;}
.xb_c00200{left:206.718787pt;}
.x17_c00200{left:216.638667pt;}
.xc_c00200{left:230.399453pt;}
.x19_c00200{left:237.439453pt;}
.x1a_c00200{left:250.239200pt;}
.x2_c00200{left:267.518533pt;}
.x3_c00200{left:281.279320pt;}
.x1e_c00200{left:309.758787pt;}
.xd_c00200{left:319.678693pt;}
.x1f_c00200{left:329.919453pt;}
.x2a_c00200{left:336.000000pt;}
.x26_c00200{left:370.558507pt;}
.x2b_c00200{left:374.399453pt;}
.x2c_c00200{left:389.438920pt;}
.x27_c00200{left:394.239173pt;}
.xe_c00200{left:411.839320pt;}
.x9_c00200{left:439.999467pt;}
.x14_c00200{left:450.878907pt;}
.x7_c00200{left:454.079587pt;}
.x18_c00200{left:456.000000pt;}
.xa_c00200{left:463.359333pt;}
.x8_c00200{left:467.198693pt;}
.x20_c00200{left:478.079587pt;}
.xf_c00200{left:499.839840pt;}
.x21_c00200{left:501.758787pt;}
.x10_c00200{left:520.319867pt;}
.x11_c00200{left:544.639200pt;}
.x25_c00200{left:574.398920pt;}
.x12_c00200{left:577.278773pt;}
.x22_c00200{left:580.158693pt;}
.x1b_c00200{left:585.919840pt;}
.x1c_c00200{left:598.719720pt;}
.x13_c00200{left:642.559573pt;}
.x23_c00200{left:649.278773pt;}
.x15_c00200{left:662.718787pt;}
.x28_c00200{left:670.719720pt;}
.x16_c00200{left:676.158693pt;}
.x24_c00200{left:679.038533pt;}
.x29_c00200{left:683.198733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aae88065db3c3f4f6f864cd1.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_a0b522f18fd3c325db8327f9.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.364746;font-style:normal;font-weight:normal;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_849d0f721fb471cce5b7956c.woff2')format("woff");}.ff3_c00201{font-family:ff3_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:ff4_c00201;src:url('chunks/assets/font_bc81ca510cd05ad356695a59.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;}
@font-face{font-family:ff5_c00201;src:url('chunks/assets/font_99f3765fe1d17b2ae50abd44.woff2')format("woff");}.ff5_c00201{font-family:ff5_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;}
.m15_c00201{transform:matrix(0.110577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110577,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.161458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161458,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m14_c00201{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m7_c00201{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.ma_c00201{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m1c_c00201{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.me_c00201{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);}
.mf_c00201{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.330128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330128,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.332447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332447,0.000000,0.000000,0.250000,0,0);}
.m16_c00201{transform:matrix(0.332474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332474,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.365196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365196,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.lsa_c00201{letter-spacing:-11.343750px;}
.ls14_c00201{letter-spacing:-8.914500px;}
.ls24_c00201{letter-spacing:-8.175038px;}
.ls22_c00201{letter-spacing:-7.426125px;}
.ls21_c00201{letter-spacing:-6.685875px;}
.ls20_c00201{letter-spacing:-6.408450px;}
.ls5_c00201{letter-spacing:-5.945625px;}
.ls12_c00201{letter-spacing:-5.303220px;}
.ls7_c00201{letter-spacing:-5.196713px;}
.ls15_c00201{letter-spacing:-5.077223px;}
.ls1_c00201{letter-spacing:-4.456463px;}
.lse_c00201{letter-spacing:-4.131473px;}
.ls4_c00201{letter-spacing:-3.717000px;}
.ls1a_c00201{letter-spacing:-3.484800px;}
.ls1e_c00201{letter-spacing:-3.244500px;}
.ls1b_c00201{letter-spacing:-3.151800px;}
.ls16_c00201{letter-spacing:-3.082950px;}
.ls3_c00201{letter-spacing:-2.968875px;}
.ls1f_c00201{letter-spacing:-2.566463px;}
.ls0_c00201{letter-spacing:-2.229413px;}
.ls18_c00201{letter-spacing:-1.693125px;}
.ls23_c00201{letter-spacing:-1.530450px;}
.ls2_c00201{letter-spacing:-1.489163px;}
.ls1d_c00201{letter-spacing:-1.365000px;}
.ls1c_c00201{letter-spacing:-1.134315px;}
.ls19_c00201{letter-spacing:-0.857588px;}
.ls17_c00201{letter-spacing:-0.800250px;}
.ls8_c00201{letter-spacing:-0.740250px;}
.ls6_c00201{letter-spacing:0.000000px;}
.lsd_c00201{letter-spacing:0.819000px;}
.lsc_c00201{letter-spacing:1.890840px;}
.ls9_c00201{letter-spacing:3.726810px;}
.lsb_c00201{letter-spacing:4.928550px;}
.ls11_c00201{letter-spacing:8.014275px;}
.ls13_c00201{letter-spacing:9.468750px;}
.ls10_c00201{letter-spacing:10.598700px;}
.lsf_c00201{letter-spacing:24.251295px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:0.000000px;}
._14_c00201{margin-left:-9.812755px;}
._e_c00201{margin-left:-8.262911px;}
._15_c00201{margin-left:-5.221095px;}
._17_c00201{margin-left:-4.031539px;}
._13_c00201{margin-left:-2.945191px;}
._8_c00201{margin-left:-1.819155px;}
._d_c00201{width:1.714090px;}
._7_c00201{width:2.787260px;}
._6_c00201{width:4.562626px;}
._c_c00201{width:6.343327px;}
._f_c00201{width:7.429305px;}
._b_c00201{width:9.376718px;}
._5_c00201{width:11.556904px;}
._10_c00201{width:12.686224px;}
._a_c00201{width:14.187050px;}
._9_c00201{width:15.770802px;}
._3_c00201{width:17.996574px;}
._4_c00201{width:19.891685px;}
._11_c00201{width:21.777555px;}
._0_c00201{width:23.860106px;}
._12_c00201{width:24.863842px;}
._2_c00201{width:27.089569px;}
._16_c00201{width:28.207165px;}
._1_c00201{width:29.659583px;}
.fc0_c00201{color:transparent;}
.fsb_c00201{font-size:39.750000px;}
.fs12_c00201{font-size:58.500000px;}
.fs13_c00201{font-size:68.250000px;}
.fsc_c00201{font-size:69.750000px;}
.fs8_c00201{font-size:70.500000px;}
.fs11_c00201{font-size:72.000000px;}
.fs7_c00201{font-size:72.750000px;}
.fsa_c00201{font-size:73.500000px;}
.fsd_c00201{font-size:75.750000px;}
.fs10_c00201{font-size:76.500000px;}
.fs5_c00201{font-size:77.250000px;}
.fs4_c00201{font-size:78.000000px;}
.fs0_c00201{font-size:78.750000px;}
.fse_c00201{font-size:79.500000px;}
.fs2_c00201{font-size:80.250000px;}
.fs3_c00201{font-size:81.000000px;}
.fs9_c00201{font-size:81.750000px;}
.fs1_c00201{font-size:82.500000px;}
.fs6_c00201{font-size:84.000000px;}
.fs14_c00201{font-size:85.500000px;}
.fsf_c00201{font-size:156.000000px;}
.y0_c00201{bottom:0.000000px;}
.y27_c00201{bottom:185.400285px;}
.y26_c00201{bottom:214.919820px;}
.y24_c00201{bottom:244.798215px;}
.y25_c00201{bottom:244.799535px;}
.y23_c00201{bottom:274.677930px;}
.y22_c00201{bottom:333.718800px;}
.y21_c00201{bottom:363.598530px;}
.y20_c00201{bottom:393.119985px;}
.y1f_c00201{bottom:430.198785px;}
.y1e_c00201{bottom:483.119385px;}
.y1d_c00201{bottom:491.398635px;}
.y1b_c00201{bottom:512.999955px;}
.y1c_c00201{bottom:513.000000px;}
.y1a_c00201{bottom:542.158995px;}
.y19_c00201{bottom:571.678530px;}
.y18_c00201{bottom:571.678635px;}
.y17_c00201{bottom:601.558365px;}
.y15_c00201{bottom:630.719460px;}
.y16_c00201{bottom:630.719520px;}
.y14_c00201{bottom:660.959385px;}
.y13_c00201{bottom:660.959655px;}
.y12_c00201{bottom:720.719100px;}
.y11_c00201{bottom:752.758530px;}
.y10_c00201{bottom:780.479535px;}
.yf_c00201{bottom:810.359250px;}
.ye_c00201{bottom:840.239865px;}
.yd_c00201{bottom:840.239910px;}
.yc_c00201{bottom:870.479835px;}
.yb_c00201{bottom:899.999355px;}
.ya_c00201{bottom:899.999910px;}
.y9_c00201{bottom:929.519445px;}
.y8_c00201{bottom:959.038965px;}
.y7_c00201{bottom:988.919490px;}
.y6_c00201{bottom:1048.679070px;}
.y5_c00201{bottom:1048.680150px;}
.y4_c00201{bottom:1078.559880px;}
.y2_c00201{bottom:1108.079265px;}
.y3_c00201{bottom:1108.079400px;}
.y1_c00201{bottom:1138.319190px;}
.hd_c00201{height:41.458008px;}
.h19_c00201{height:58.957031px;}
.h1a_c00201{height:68.783203px;}
.he_c00201{height:72.747070px;}
.h13_c00201{height:73.318359px;}
.ha_c00201{height:73.529297px;}
.h14_c00201{height:75.080566px;}
.h17_c00201{height:75.093750px;}
.h7_c00201{height:75.816650px;}
.h9_c00201{height:75.875977px;}
.h10_c00201{height:76.341797px;}
.h5_c00201{height:76.552734px;}
.hc_c00201{height:76.658203px;}
.h1_c00201{height:77.288818px;}
.h18_c00201{height:77.853516px;}
.hf_c00201{height:78.609375px;}
.h3_c00201{height:78.760986px;}
.h16_c00201{height:79.365234px;}
.h4_c00201{height:79.497070px;}
.h11_c00201{height:80.121094px;}
.h2_c00201{height:80.969238px;}
.h6_c00201{height:81.533203px;}
.hb_c00201{height:82.388672px;}
.h8_c00201{height:82.441406px;}
.h15_c00201{height:83.144531px;}
.h1b_c00201{height:84.498047px;}
.h12_c00201{height:162.703125px;}
.h0_c00201{height:1263.000000px;}
.w0_c00201{width:892.500000px;}
.x0_c00201{left:0.000000px;}
.x24_c00201{left:101.159415px;}
.xe_c00201{left:140.037390px;}
.x1_c00201{left:141.118815px;}
.x8_c00201{left:165.958350px;}
.x25_c00201{left:172.439715px;}
.x16_c00201{left:210.238785px;}
.x26_c00201{left:212.758500px;}
.x27_c00201{left:246.599100px;}
.x28_c00201{left:269.639100px;}
.x4_c00201{left:293.399250px;}
.x17_c00201{left:301.319250px;}
.x5_c00201{left:328.319250px;}
.x29_c00201{left:336.959385px;}
.x2a_c00201{left:376.918950px;}
.x18_c00201{left:379.799535px;}
.x19_c00201{left:394.558635px;}
.x2_c00201{left:399.599670px;}
.x1a_c00201{left:412.199850px;}
.x3_c00201{left:413.638500px;}
.x9_c00201{left:417.598530px;}
.x2b_c00201{left:423.359850px;}
.x11_c00201{left:425.518665px;}
.xa_c00201{left:433.079400px;}
.x2c_c00201{left:438.479685px;}
.x12_c00201{left:443.878320px;}
.x1b_c00201{left:447.479235px;}
.x6_c00201{left:468.719565px;}
.x2d_c00201{left:470.878320px;}
.x1d_c00201{left:484.918950px;}
.x7_c00201{left:491.398635px;}
.x1f_c00201{left:497.159820px;}
.x1e_c00201{left:508.679070px;}
.x14_c00201{left:512.639100px;}
.x2e_c00201{left:525.598530px;}
.x22_c00201{left:550.439670px;}
.x20_c00201{left:557.639700px;}
.x15_c00201{left:560.159415px;}
.x1c_c00201{left:562.319820px;}
.x23_c00201{left:564.119385px;}
.x21_c00201{left:569.878920px;}
.x2f_c00201{left:620.639100px;}
.xf_c00201{left:632.159820px;}
.x34_c00201{left:635.038920px;}
.x10_c00201{left:658.439670px;}
.xc_c00201{left:672.119385px;}
.x32_c00201{left:675.359250px;}
.x30_c00201{left:685.798920px;}
.xd_c00201{left:691.558635px;}
.x33_c00201{left:692.639700px;}
.x31_c00201{left:700.559685px;}
.x35_c00201{left:733.319235px;}
.x13_c00201{left:762.838950px;}
.xb_c00201{left:771.479190px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.lsa_c00201{letter-spacing:-10.083333pt;}
.ls14_c00201{letter-spacing:-7.924000pt;}
.ls24_c00201{letter-spacing:-7.266700pt;}
.ls22_c00201{letter-spacing:-6.601000pt;}
.ls21_c00201{letter-spacing:-5.943000pt;}
.ls20_c00201{letter-spacing:-5.696400pt;}
.ls5_c00201{letter-spacing:-5.285000pt;}
.ls12_c00201{letter-spacing:-4.713973pt;}
.ls7_c00201{letter-spacing:-4.619300pt;}
.ls15_c00201{letter-spacing:-4.513087pt;}
.ls1_c00201{letter-spacing:-3.961300pt;}
.lse_c00201{letter-spacing:-3.672420pt;}
.ls4_c00201{letter-spacing:-3.304000pt;}
.ls1a_c00201{letter-spacing:-3.097600pt;}
.ls1e_c00201{letter-spacing:-2.884000pt;}
.ls1b_c00201{letter-spacing:-2.801600pt;}
.ls16_c00201{letter-spacing:-2.740400pt;}
.ls3_c00201{letter-spacing:-2.639000pt;}
.ls1f_c00201{letter-spacing:-2.281300pt;}
.ls0_c00201{letter-spacing:-1.981700pt;}
.ls18_c00201{letter-spacing:-1.505000pt;}
.ls23_c00201{letter-spacing:-1.360400pt;}
.ls2_c00201{letter-spacing:-1.323700pt;}
.ls1d_c00201{letter-spacing:-1.213333pt;}
.ls1c_c00201{letter-spacing:-1.008280pt;}
.ls19_c00201{letter-spacing:-0.762300pt;}
.ls17_c00201{letter-spacing:-0.711333pt;}
.ls8_c00201{letter-spacing:-0.658000pt;}
.ls6_c00201{letter-spacing:0.000000pt;}
.lsd_c00201{letter-spacing:0.728000pt;}
.lsc_c00201{letter-spacing:1.680747pt;}
.ls9_c00201{letter-spacing:3.312720pt;}
.lsb_c00201{letter-spacing:4.380933pt;}
.ls11_c00201{letter-spacing:7.123800pt;}
.ls13_c00201{letter-spacing:8.416667pt;}
.ls10_c00201{letter-spacing:9.421067pt;}
.lsf_c00201{letter-spacing:21.556707pt;}
.ws0_c00201{word-spacing:0.000000pt;}
._14_c00201{margin-left:-8.722449pt;}
._e_c00201{margin-left:-7.344809pt;}
._15_c00201{margin-left:-4.640974pt;}
._17_c00201{margin-left:-3.583591pt;}
._13_c00201{margin-left:-2.617947pt;}
._8_c00201{margin-left:-1.617026pt;}
._d_c00201{width:1.523636pt;}
._7_c00201{width:2.477564pt;}
._6_c00201{width:4.055668pt;}
._c_c00201{width:5.638513pt;}
._f_c00201{width:6.603826pt;}
._b_c00201{width:8.334860pt;}
._5_c00201{width:10.272804pt;}
._10_c00201{width:11.276643pt;}
._a_c00201{width:12.610711pt;}
._9_c00201{width:14.018491pt;}
._3_c00201{width:15.996955pt;}
._4_c00201{width:17.681498pt;}
._11_c00201{width:19.357826pt;}
._0_c00201{width:21.208983pt;}
._12_c00201{width:22.101192pt;}
._2_c00201{width:24.079617pt;}
._16_c00201{width:25.073036pt;}
._1_c00201{width:26.364074pt;}
.fsb_c00201{font-size:35.333333pt;}
.fs12_c00201{font-size:52.000000pt;}
.fs13_c00201{font-size:60.666667pt;}
.fsc_c00201{font-size:62.000000pt;}
.fs8_c00201{font-size:62.666667pt;}
.fs11_c00201{font-size:64.000000pt;}
.fs7_c00201{font-size:64.666667pt;}
.fsa_c00201{font-size:65.333333pt;}
.fsd_c00201{font-size:67.333333pt;}
.fs10_c00201{font-size:68.000000pt;}
.fs5_c00201{font-size:68.666667pt;}
.fs4_c00201{font-size:69.333333pt;}
.fs0_c00201{font-size:70.000000pt;}
.fse_c00201{font-size:70.666667pt;}
.fs2_c00201{font-size:71.333333pt;}
.fs3_c00201{font-size:72.000000pt;}
.fs9_c00201{font-size:72.666667pt;}
.fs1_c00201{font-size:73.333333pt;}
.fs6_c00201{font-size:74.666667pt;}
.fs14_c00201{font-size:76.000000pt;}
.fsf_c00201{font-size:138.666667pt;}
.y0_c00201{bottom:0.000000pt;}
.y27_c00201{bottom:164.800253pt;}
.y26_c00201{bottom:191.039840pt;}
.y24_c00201{bottom:217.598413pt;}
.y25_c00201{bottom:217.599587pt;}
.y23_c00201{bottom:244.158160pt;}
.y22_c00201{bottom:296.638933pt;}
.y21_c00201{bottom:323.198693pt;}
.y20_c00201{bottom:349.439987pt;}
.y1f_c00201{bottom:382.398920pt;}
.y1e_c00201{bottom:429.439453pt;}
.y1d_c00201{bottom:436.798787pt;}
.y1b_c00201{bottom:455.999960pt;}
.y1c_c00201{bottom:456.000000pt;}
.y1a_c00201{bottom:481.919107pt;}
.y19_c00201{bottom:508.158693pt;}
.y18_c00201{bottom:508.158787pt;}
.y17_c00201{bottom:534.718547pt;}
.y15_c00201{bottom:560.639520pt;}
.y16_c00201{bottom:560.639573pt;}
.y14_c00201{bottom:587.519453pt;}
.y13_c00201{bottom:587.519693pt;}
.y12_c00201{bottom:640.639200pt;}
.y11_c00201{bottom:669.118693pt;}
.y10_c00201{bottom:693.759587pt;}
.yf_c00201{bottom:720.319333pt;}
.ye_c00201{bottom:746.879880pt;}
.yd_c00201{bottom:746.879920pt;}
.yc_c00201{bottom:773.759853pt;}
.yb_c00201{bottom:799.999427pt;}
.ya_c00201{bottom:799.999920pt;}
.y9_c00201{bottom:826.239507pt;}
.y8_c00201{bottom:852.479080pt;}
.y7_c00201{bottom:879.039547pt;}
.y6_c00201{bottom:932.159173pt;}
.y5_c00201{bottom:932.160133pt;}
.y4_c00201{bottom:958.719893pt;}
.y2_c00201{bottom:984.959347pt;}
.y3_c00201{bottom:984.959467pt;}
.y1_c00201{bottom:1011.839280pt;}
.hd_c00201{height:36.851562pt;}
.h19_c00201{height:52.406250pt;}
.h1a_c00201{height:61.140625pt;}
.he_c00201{height:64.664062pt;}
.h13_c00201{height:65.171875pt;}
.ha_c00201{height:65.359375pt;}
.h14_c00201{height:66.738281pt;}
.h17_c00201{height:66.750000pt;}
.h7_c00201{height:67.392578pt;}
.h9_c00201{height:67.445312pt;}
.h10_c00201{height:67.859375pt;}
.h5_c00201{height:68.046875pt;}
.hc_c00201{height:68.140625pt;}
.h1_c00201{height:68.701172pt;}
.h18_c00201{height:69.203125pt;}
.hf_c00201{height:69.875000pt;}
.h3_c00201{height:70.009766pt;}
.h16_c00201{height:70.546875pt;}
.h4_c00201{height:70.664062pt;}
.h11_c00201{height:71.218750pt;}
.h2_c00201{height:71.972656pt;}
.h6_c00201{height:72.473958pt;}
.hb_c00201{height:73.234375pt;}
.h8_c00201{height:73.281250pt;}
.h15_c00201{height:73.906250pt;}
.h1b_c00201{height:75.109375pt;}
.h12_c00201{height:144.625000pt;}
.h0_c00201{height:1122.666667pt;}
.w0_c00201{width:793.333333pt;}
.x0_c00201{left:0.000000pt;}
.x24_c00201{left:89.919480pt;}
.xe_c00201{left:124.477680pt;}
.x1_c00201{left:125.438947pt;}
.x8_c00201{left:147.518533pt;}
.x25_c00201{left:153.279747pt;}
.x16_c00201{left:186.878920pt;}
.x26_c00201{left:189.118667pt;}
.x27_c00201{left:219.199200pt;}
.x28_c00201{left:239.679200pt;}
.x4_c00201{left:260.799333pt;}
.x17_c00201{left:267.839333pt;}
.x5_c00201{left:291.839333pt;}
.x29_c00201{left:299.519453pt;}
.x2a_c00201{left:335.039067pt;}
.x18_c00201{left:337.599587pt;}
.x19_c00201{left:350.718787pt;}
.x2_c00201{left:355.199707pt;}
.x1a_c00201{left:366.399867pt;}
.x3_c00201{left:367.678667pt;}
.x9_c00201{left:371.198693pt;}
.x2b_c00201{left:376.319867pt;}
.x11_c00201{left:378.238813pt;}
.xa_c00201{left:384.959467pt;}
.x2c_c00201{left:389.759720pt;}
.x12_c00201{left:394.558507pt;}
.x1b_c00201{left:397.759320pt;}
.x6_c00201{left:416.639613pt;}
.x2d_c00201{left:418.558507pt;}
.x1d_c00201{left:431.039067pt;}
.x7_c00201{left:436.798787pt;}
.x1f_c00201{left:441.919840pt;}
.x1e_c00201{left:452.159173pt;}
.x14_c00201{left:455.679200pt;}
.x2e_c00201{left:467.198693pt;}
.x22_c00201{left:489.279707pt;}
.x20_c00201{left:495.679733pt;}
.x15_c00201{left:497.919480pt;}
.x1c_c00201{left:499.839840pt;}
.x23_c00201{left:501.439453pt;}
.x21_c00201{left:506.559040pt;}
.x2f_c00201{left:551.679200pt;}
.xf_c00201{left:561.919840pt;}
.x34_c00201{left:564.479040pt;}
.x10_c00201{left:585.279707pt;}
.xc_c00201{left:597.439453pt;}
.x32_c00201{left:600.319333pt;}
.x30_c00201{left:609.599040pt;}
.xd_c00201{left:614.718787pt;}
.x33_c00201{left:615.679733pt;}
.x31_c00201{left:622.719720pt;}
.x35_c00201{left:651.839320pt;}
.x13_c00201{left:678.079067pt;}
.xb_c00201{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_931aaf270104582b6645bca1.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_9e9a65292c4039dda48ffc27.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_7fae3f161d656001fa13ab0d.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_adfaed09e18feb1c117bbbe9.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;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00202{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1c_c00202{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.205446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205446,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{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);}
.me_c00202{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.md_c00202{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);}
.m12_c00202{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);}
.m19_c00202{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.235151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235151,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00202{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m16_c00202{transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.lsa_c00202{letter-spacing:-126.300038px;}
.ls1c_c00202{letter-spacing:-8.914500px;}
.lsd_c00202{letter-spacing:-7.426125px;}
.ls22_c00202{letter-spacing:-6.685875px;}
.lse_c00202{letter-spacing:-5.945625px;}
.lsc_c00202{letter-spacing:-5.196713px;}
.lsb_c00202{letter-spacing:-5.158425px;}
.ls1b_c00202{letter-spacing:-4.887225px;}
.ls11_c00202{letter-spacing:-4.602300px;}
.ls1d_c00202{letter-spacing:-4.560150px;}
.ls5_c00202{letter-spacing:-4.456463px;}
.ls20_c00202{letter-spacing:-3.717900px;}
.ls1_c00202{letter-spacing:-3.717000px;}
.ls18_c00202{letter-spacing:-3.651150px;}
.ls7_c00202{letter-spacing:-3.113700px;}
.ls0_c00202{letter-spacing:-2.968875px;}
.ls15_c00202{letter-spacing:-2.317500px;}
.ls4_c00202{letter-spacing:-2.229413px;}
.ls10_c00202{letter-spacing:-1.824818px;}
.ls13_c00202{letter-spacing:-1.692600px;}
.ls14_c00202{letter-spacing:-1.645800px;}
.ls21_c00202{letter-spacing:-1.540800px;}
.ls3_c00202{letter-spacing:-1.489163px;}
.ls16_c00202{letter-spacing:-1.468793px;}
.ls1a_c00202{letter-spacing:-0.810525px;}
.ls9_c00202{letter-spacing:-0.793800px;}
.ls2_c00202{letter-spacing:-0.740250px;}
.ls6_c00202{letter-spacing:0.000000px;}
.ls17_c00202{letter-spacing:0.795000px;}
.ls8_c00202{letter-spacing:1.545893px;}
.ls19_c00202{letter-spacing:1.645425px;}
.ls1f_c00202{letter-spacing:2.393700px;}
.ls12_c00202{letter-spacing:2.422500px;}
.ls1e_c00202{letter-spacing:2.468693px;}
.lsf_c00202{letter-spacing:8.914500px;}
.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;}
._1f_c00202{margin-left:-8.905793px;}
._8_c00202{margin-left:-6.375659px;}
._6_c00202{margin-left:-4.463609px;}
._c_c00202{margin-left:-2.372099px;}
._1e_c00202{margin-left:-1.131846px;}
._9_c00202{width:1.131578px;}
._17_c00202{width:2.521085px;}
._a_c00202{width:3.992387px;}
._b_c00202{width:5.001308px;}
._14_c00202{width:6.098014px;}
._16_c00202{width:7.176131px;}
._15_c00202{width:8.602026px;}
._5_c00202{width:10.435475px;}
._7_c00202{width:11.627527px;}
._3_c00202{width:13.278290px;}
._13_c00202{width:14.764258px;}
._4_c00202{width:16.358856px;}
._2_c00202{width:18.662264px;}
._0_c00202{width:20.797934px;}
._1_c00202{width:22.735214px;}
._10_c00202{width:24.985027px;}
._e_c00202{width:27.479857px;}
._19_c00202{width:29.383571px;}
._12_c00202{width:30.608773px;}
._f_c00202{width:31.724304px;}
._11_c00202{width:33.689458px;}
._1a_c00202{width:36.007932px;}
._18_c00202{width:38.952202px;}
._1c_c00202{width:40.853108px;}
._1d_c00202{width:45.856452px;}
._1b_c00202{width:48.553104px;}
._d_c00202{width:1884.450755px;}
.fc0_c00202{color:transparent;}
.fs9_c00202{font-size:69.000000px;}
.fs7_c00202{font-size:75.000000px;}
.fs6_c00202{font-size:75.750000px;}
.fs5_c00202{font-size:76.500000px;}
.fsb_c00202{font-size:77.250000px;}
.fsa_c00202{font-size:78.000000px;}
.fs0_c00202{font-size:78.750000px;}
.fs1_c00202{font-size:80.250000px;}
.fs3_c00202{font-size:81.000000px;}
.fs8_c00202{font-size:81.357600px;}
.fs2_c00202{font-size:81.750000px;}
.fs4_c00202{font-size:82.500000px;}
.fsc_c00202{font-size:87.000000px;}
.y0_c00202{bottom:0.000000px;}
.y26_c00202{bottom:242.637630px;}
.y25_c00202{bottom:271.798785px;}
.y24_c00202{bottom:301.678500px;}
.y23_c00202{bottom:301.678665px;}
.y22_c00202{bottom:330.839820px;}
.y21_c00202{bottom:360.719535px;}
.y20_c00202{bottom:360.719700px;}
.y1f_c00202{bottom:390.239220px;}
.y1e_c00202{bottom:390.240255px;}
.y1d_c00202{bottom:420.119985px;}
.y1c_c00202{bottom:480.238770px;}
.y1b_c00202{bottom:493.920000px;}
.y1a_c00202{bottom:510.119385px;}
.y18_c00202{bottom:539.999040px;}
.y19_c00202{bottom:540.000000px;}
.y17_c00202{bottom:569.158080px;}
.y16_c00202{bottom:598.319235px;}
.y15_c00202{bottom:598.320120px;}
.y13_c00202{bottom:628.199130px;}
.y14_c00202{bottom:628.199850px;}
.y12_c00202{bottom:658.078860px;}
.y11_c00202{bottom:688.318770px;}
.yf_c00202{bottom:748.079340px;}
.y10_c00202{bottom:748.080000px;}
.ye_c00202{bottom:777.959055px;}
.yd_c00202{bottom:807.838785px;}
.yc_c00202{bottom:837.718500px;}
.yb_c00202{bottom:837.718530px;}
.ya_c00202{bottom:867.239865px;}
.y9_c00202{bottom:867.240090px;}
.y8_c00202{bottom:926.999535px;}
.y7_c00202{bottom:956.519070px;}
.y5_c00202{bottom:986.399730px;}
.y6_c00202{bottom:986.399775px;}
.y4_c00202{bottom:1016.639655px;}
.y3_c00202{bottom:1076.399235px;}
.y2_c00202{bottom:1105.919835px;}
.y1_c00202{bottom:1135.799565px;}
.hc_c00202{height:71.964844px;}
.hd_c00202{height:73.608398px;}
.h10_c00202{height:74.344482px;}
.h7_c00202{height:75.080566px;}
.h11_c00202{height:75.585938px;}
.h13_c00202{height:75.816650px;}
.h8_c00202{height:76.341797px;}
.h1_c00202{height:77.288818px;}
.hf_c00202{height:77.853516px;}
.h9_c00202{height:78.222656px;}
.he_c00202{height:78.609375px;}
.h14_c00202{height:78.721802px;}
.hb_c00202{height:78.760986px;}
.h15_c00202{height:79.497070px;}
.ha_c00202{height:79.848035px;}
.h5_c00202{height:80.233154px;}
.h2_c00202{height:80.876953px;}
.h6_c00202{height:80.969238px;}
.h4_c00202{height:81.632812px;}
.h3_c00202{height:82.388672px;}
.h12_c00202{height:85.385742px;}
.h0_c00202{height:1263.000000px;}
.w0_c00202{width:892.500000px;}
.x0_c00202{left:0.000000px;}
.x25_c00202{left:101.518665px;}
.x22_c00202{left:140.037420px;}
.x5_c00202{left:141.118815px;}
.x1_c00202{left:142.199850px;}
.x27_c00202{left:186.478665px;}
.x1b_c00202{left:189.000000px;}
.xb_c00202{left:190.079400px;}
.xc_c00202{left:208.798515px;}
.x2_c00202{left:210.958950px;}
.x1c_c00202{left:214.559685px;}
.x28_c00202{left:215.639100px;}
.x13_c00202{left:256.679700px;}
.xd_c00202{left:274.319250px;}
.xe_c00202{left:290.518635px;}
.x2c_c00202{left:295.918950px;}
.x14_c00202{left:301.319250px;}
.x3_c00202{left:324.359250px;}
.x2d_c00202{left:325.438635px;}
.x15_c00202{left:333.719535px;}
.x31_c00202{left:337.318800px;}
.x26_c00202{left:341.998950px;}
.x32_c00202{left:353.158785px;}
.x4_c00202{left:369.359850px;}
.x1f_c00202{left:415.439670px;}
.x1d_c00202{left:418.679670px;}
.x1e_c00202{left:434.158770px;}
.x16_c00202{left:449.998950px;}
.x23_c00202{left:458.279850px;}
.x20_c00202{left:463.319235px;}
.x2e_c00202{left:475.199385px;}
.x21_c00202{left:477.359850px;}
.x17_c00202{left:493.199850px;}
.xf_c00202{left:503.998950px;}
.x7_c00202{left:536.039985px;}
.x8_c00202{left:553.679670px;}
.x18_c00202{left:568.438620px;}
.x2b_c00202{left:574.559100px;}
.x10_c00202{left:583.199385px;}
.x19_c00202{left:597.239820px;}
.x2f_c00202{left:629.999400px;}
.x1a_c00202{left:637.919535px;}
.x30_c00202{left:643.319820px;}
.x11_c00202{left:673.198785px;}
.x9_c00202{left:680.039385px;}
.x12_c00202{left:688.318770px;}
.x29_c00202{left:705.239820px;}
.xa_c00202{left:711.358605px;}
.x6_c00202{left:745.919535px;}
.x2a_c00202{left:748.080000px;}
.x24_c00202{left:765.719520px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.lsa_c00202{letter-spacing:-112.266700pt;}
.ls1c_c00202{letter-spacing:-7.924000pt;}
.lsd_c00202{letter-spacing:-6.601000pt;}
.ls22_c00202{letter-spacing:-5.943000pt;}
.lse_c00202{letter-spacing:-5.285000pt;}
.lsc_c00202{letter-spacing:-4.619300pt;}
.lsb_c00202{letter-spacing:-4.585267pt;}
.ls1b_c00202{letter-spacing:-4.344200pt;}
.ls11_c00202{letter-spacing:-4.090933pt;}
.ls1d_c00202{letter-spacing:-4.053467pt;}
.ls5_c00202{letter-spacing:-3.961300pt;}
.ls20_c00202{letter-spacing:-3.304800pt;}
.ls1_c00202{letter-spacing:-3.304000pt;}
.ls18_c00202{letter-spacing:-3.245467pt;}
.ls7_c00202{letter-spacing:-2.767733pt;}
.ls0_c00202{letter-spacing:-2.639000pt;}
.ls15_c00202{letter-spacing:-2.060000pt;}
.ls4_c00202{letter-spacing:-1.981700pt;}
.ls10_c00202{letter-spacing:-1.622060pt;}
.ls13_c00202{letter-spacing:-1.504533pt;}
.ls14_c00202{letter-spacing:-1.462933pt;}
.ls21_c00202{letter-spacing:-1.369600pt;}
.ls3_c00202{letter-spacing:-1.323700pt;}
.ls16_c00202{letter-spacing:-1.305593pt;}
.ls1a_c00202{letter-spacing:-0.720467pt;}
.ls9_c00202{letter-spacing:-0.705600pt;}
.ls2_c00202{letter-spacing:-0.658000pt;}
.ls6_c00202{letter-spacing:0.000000pt;}
.ls17_c00202{letter-spacing:0.706667pt;}
.ls8_c00202{letter-spacing:1.374127pt;}
.ls19_c00202{letter-spacing:1.462600pt;}
.ls1f_c00202{letter-spacing:2.127733pt;}
.ls12_c00202{letter-spacing:2.153333pt;}
.ls1e_c00202{letter-spacing:2.194393pt;}
.lsf_c00202{letter-spacing:7.924000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
._1f_c00202{margin-left:-7.916260pt;}
._8_c00202{margin-left:-5.667253pt;}
._6_c00202{margin-left:-3.967653pt;}
._c_c00202{margin-left:-2.108532pt;}
._1e_c00202{margin-left:-1.006085pt;}
._9_c00202{width:1.005847pt;}
._17_c00202{width:2.240964pt;}
._a_c00202{width:3.548789pt;}
._b_c00202{width:4.445608pt;}
._14_c00202{width:5.420457pt;}
._16_c00202{width:6.378783pt;}
._15_c00202{width:7.646245pt;}
._5_c00202{width:9.275977pt;}
._7_c00202{width:10.335579pt;}
._3_c00202{width:11.802925pt;}
._13_c00202{width:13.123785pt;}
._4_c00202{width:14.541206pt;}
._2_c00202{width:16.588679pt;}
._0_c00202{width:18.487053pt;}
._1_c00202{width:20.209079pt;}
._10_c00202{width:22.208913pt;}
._e_c00202{width:24.426540pt;}
._19_c00202{width:26.118730pt;}
._12_c00202{width:27.207798pt;}
._f_c00202{width:28.199381pt;}
._11_c00202{width:29.946185pt;}
._1a_c00202{width:32.007051pt;}
._18_c00202{width:34.624179pt;}
._1c_c00202{width:36.313874pt;}
._1d_c00202{width:40.761291pt;}
._1b_c00202{width:43.158315pt;}
._d_c00202{width:1675.067338pt;}
.fs9_c00202{font-size:61.333333pt;}
.fs7_c00202{font-size:66.666667pt;}
.fs6_c00202{font-size:67.333333pt;}
.fs5_c00202{font-size:68.000000pt;}
.fsb_c00202{font-size:68.666667pt;}
.fsa_c00202{font-size:69.333333pt;}
.fs0_c00202{font-size:70.000000pt;}
.fs1_c00202{font-size:71.333333pt;}
.fs3_c00202{font-size:72.000000pt;}
.fs8_c00202{font-size:72.317867pt;}
.fs2_c00202{font-size:72.666667pt;}
.fs4_c00202{font-size:73.333333pt;}
.fsc_c00202{font-size:77.333333pt;}
.y0_c00202{bottom:0.000000pt;}
.y26_c00202{bottom:215.677893pt;}
.y25_c00202{bottom:241.598920pt;}
.y24_c00202{bottom:268.158667pt;}
.y23_c00202{bottom:268.158813pt;}
.y22_c00202{bottom:294.079840pt;}
.y21_c00202{bottom:320.639587pt;}
.y20_c00202{bottom:320.639733pt;}
.y1f_c00202{bottom:346.879307pt;}
.y1e_c00202{bottom:346.880227pt;}
.y1d_c00202{bottom:373.439987pt;}
.y1c_c00202{bottom:426.878907pt;}
.y1b_c00202{bottom:439.040000pt;}
.y1a_c00202{bottom:453.439453pt;}
.y18_c00202{bottom:479.999147pt;}
.y19_c00202{bottom:480.000000pt;}
.y17_c00202{bottom:505.918293pt;}
.y16_c00202{bottom:531.839320pt;}
.y15_c00202{bottom:531.840107pt;}
.y13_c00202{bottom:558.399227pt;}
.y14_c00202{bottom:558.399867pt;}
.y12_c00202{bottom:584.958987pt;}
.y11_c00202{bottom:611.838907pt;}
.yf_c00202{bottom:664.959413pt;}
.y10_c00202{bottom:664.960000pt;}
.ye_c00202{bottom:691.519160pt;}
.yd_c00202{bottom:718.078920pt;}
.yc_c00202{bottom:744.638667pt;}
.yb_c00202{bottom:744.638693pt;}
.ya_c00202{bottom:770.879880pt;}
.y9_c00202{bottom:770.880080pt;}
.y8_c00202{bottom:823.999587pt;}
.y7_c00202{bottom:850.239173pt;}
.y5_c00202{bottom:876.799760pt;}
.y6_c00202{bottom:876.799800pt;}
.y4_c00202{bottom:903.679693pt;}
.y3_c00202{bottom:956.799320pt;}
.y2_c00202{bottom:983.039853pt;}
.y1_c00202{bottom:1009.599613pt;}
.hc_c00202{height:63.968750pt;}
.hd_c00202{height:65.429688pt;}
.h10_c00202{height:66.083984pt;}
.h7_c00202{height:66.738281pt;}
.h11_c00202{height:67.187500pt;}
.h13_c00202{height:67.392578pt;}
.h8_c00202{height:67.859375pt;}
.h1_c00202{height:68.701172pt;}
.hf_c00202{height:69.203125pt;}
.h9_c00202{height:69.531250pt;}
.he_c00202{height:69.875000pt;}
.h14_c00202{height:69.974935pt;}
.hb_c00202{height:70.009766pt;}
.h15_c00202{height:70.664062pt;}
.ha_c00202{height:70.976031pt;}
.h5_c00202{height:71.318359pt;}
.h2_c00202{height:71.890625pt;}
.h6_c00202{height:71.972656pt;}
.h4_c00202{height:72.562500pt;}
.h3_c00202{height:73.234375pt;}
.h12_c00202{height:75.898438pt;}
.h0_c00202{height:1122.666667pt;}
.w0_c00202{width:793.333333pt;}
.x0_c00202{left:0.000000pt;}
.x25_c00202{left:90.238813pt;}
.x22_c00202{left:124.477707pt;}
.x5_c00202{left:125.438947pt;}
.x1_c00202{left:126.399867pt;}
.x27_c00202{left:165.758813pt;}
.x1b_c00202{left:168.000000pt;}
.xb_c00202{left:168.959467pt;}
.xc_c00202{left:185.598680pt;}
.x2_c00202{left:187.519067pt;}
.x1c_c00202{left:190.719720pt;}
.x28_c00202{left:191.679200pt;}
.x13_c00202{left:228.159733pt;}
.xd_c00202{left:243.839333pt;}
.xe_c00202{left:258.238787pt;}
.x2c_c00202{left:263.039067pt;}
.x14_c00202{left:267.839333pt;}
.x3_c00202{left:288.319333pt;}
.x2d_c00202{left:289.278787pt;}
.x15_c00202{left:296.639587pt;}
.x31_c00202{left:299.838933pt;}
.x26_c00202{left:303.999067pt;}
.x32_c00202{left:313.918920pt;}
.x4_c00202{left:328.319867pt;}
.x1f_c00202{left:369.279707pt;}
.x1d_c00202{left:372.159707pt;}
.x1e_c00202{left:385.918907pt;}
.x16_c00202{left:399.999067pt;}
.x23_c00202{left:407.359867pt;}
.x20_c00202{left:411.839320pt;}
.x2e_c00202{left:422.399453pt;}
.x21_c00202{left:424.319867pt;}
.x17_c00202{left:438.399867pt;}
.xf_c00202{left:447.999067pt;}
.x7_c00202{left:476.479987pt;}
.x8_c00202{left:492.159707pt;}
.x18_c00202{left:505.278773pt;}
.x2b_c00202{left:510.719200pt;}
.x10_c00202{left:518.399453pt;}
.x19_c00202{left:530.879840pt;}
.x2f_c00202{left:559.999467pt;}
.x1a_c00202{left:567.039587pt;}
.x30_c00202{left:571.839840pt;}
.x11_c00202{left:598.398920pt;}
.x9_c00202{left:604.479453pt;}
.x12_c00202{left:611.838907pt;}
.x29_c00202{left:626.879840pt;}
.xa_c00202{left:632.318760pt;}
.x6_c00202{left:663.039587pt;}
.x2a_c00202{left:664.960000pt;}
.x24_c00202{left:680.639573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b32efdd3522bc103fc316ca1.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_3781305b80a0782f5d16a509.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_c5c8e73547b1c9bf8c8e0031.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.364746;font-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_c00203{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.349537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349537,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.lsf_c00203{letter-spacing:-13.209150px;}
.ls8_c00203{letter-spacing:-12.235658px;}
.lsb_c00203{letter-spacing:-9.907800px;}
.ls9_c00203{letter-spacing:-8.586000px;}
.ls12_c00203{letter-spacing:-7.500375px;}
.ls10_c00203{letter-spacing:-5.945625px;}
.ls6_c00203{letter-spacing:-5.196713px;}
.ls11_c00203{letter-spacing:-4.456463px;}
.lsc_c00203{letter-spacing:-4.044900px;}
.lsd_c00203{letter-spacing:-3.745853px;}
.ls5_c00203{letter-spacing:-3.717000px;}
.ls2_c00203{letter-spacing:-2.968875px;}
.ls4_c00203{letter-spacing:-2.229413px;}
.lsa_c00203{letter-spacing:-1.615050px;}
.ls13_c00203{letter-spacing:-1.524750px;}
.ls3_c00203{letter-spacing:-1.489163px;}
.ls1_c00203{letter-spacing:0.000000px;}
.lse_c00203{letter-spacing:1.637700px;}
.ls7_c00203{letter-spacing:3.637710px;}
.ls0_c00203{letter-spacing:3.717000px;}
.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;}
._8_c00203{margin-left:-8.487185px;}
._6_c00203{margin-left:-3.815631px;}
._5_c00203{margin-left:-1.185410px;}
._7_c00203{width:1.637525px;}
._12_c00203{width:2.992262px;}
._11_c00203{width:4.071553px;}
._10_c00203{width:5.386203px;}
._13_c00203{width:7.967331px;}
._f_c00203{width:9.532583px;}
._1_c00203{width:10.769167px;}
._0_c00203{width:12.342948px;}
._c_c00203{width:14.502555px;}
._3_c00203{width:16.097302px;}
._17_c00203{width:17.614443px;}
._2_c00203{width:18.632250px;}
._14_c00203{width:20.013154px;}
._b_c00203{width:21.743246px;}
._16_c00203{width:22.996486px;}
._4_c00203{width:24.134052px;}
._d_c00203{width:25.892941px;}
._a_c00203{width:27.032631px;}
._15_c00203{width:29.944940px;}
._9_c00203{width:34.334822px;}
._e_c00203{width:54.479131px;}
.fc0_c00203{color:transparent;}
.fs4_c00203{font-size:72.750000px;}
.fs5_c00203{font-size:73.500000px;}
.fs3_c00203{font-size:74.250000px;}
.fs6_c00203{font-size:77.250000px;}
.fs8_c00203{font-size:78.000000px;}
.fs0_c00203{font-size:78.750000px;}
.fs7_c00203{font-size:79.500000px;}
.fs1_c00203{font-size:80.250000px;}
.fs2_c00203{font-size:81.000000px;}
.fsa_c00203{font-size:82.500000px;}
.fs9_c00203{font-size:84.750000px;}
.y0_c00203{bottom:0.000000px;}
.yf_c00203{bottom:862.559685px;}
.yd_c00203{bottom:892.438065px;}
.ye_c00203{bottom:892.438665px;}
.yb_c00203{bottom:922.679280px;}
.yc_c00203{bottom:922.680090px;}
.ya_c00203{bottom:952.919190px;}
.y9_c00203{bottom:982.798920px;}
.y8_c00203{bottom:982.800000px;}
.y7_c00203{bottom:1012.679715px;}
.y6_c00203{bottom:1012.679805px;}
.y5_c00203{bottom:1042.199340px;}
.y4_c00203{bottom:1072.800105px;}
.y2_c00203{bottom:1102.319070px;}
.y3_c00203{bottom:1102.319820px;}
.y1_c00203{bottom:1132.198785px;}
.h6_c00203{height:75.875977px;}
.hb_c00203{height:76.552734px;}
.h7_c00203{height:76.658203px;}
.h1_c00203{height:77.288818px;}
.h4_c00203{height:77.440430px;}
.h8_c00203{height:77.853516px;}
.h2_c00203{height:78.760986px;}
.ha_c00203{height:79.309570px;}
.h3_c00203{height:79.497070px;}
.h9_c00203{height:80.121094px;}
.hd_c00203{height:80.969238px;}
.h5_c00203{height:81.632812px;}
.hc_c00203{height:83.177490px;}
.h0_c00203{height:1263.000000px;}
.w0_c00203{width:892.500000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:137.878950px;}
.x5_c00203{left:159.478665px;}
.x13_c00203{left:208.080000px;}
.x6_c00203{left:215.639100px;}
.x1a_c00203{left:224.638500px;}
.x14_c00203{left:226.798950px;}
.x1b_c00203{left:271.799535px;}
.x7_c00203{left:295.918950px;}
.x17_c00203{left:297.718500px;}
.x18_c00203{left:319.679100px;}
.x8_c00203{left:326.878950px;}
.x2_c00203{left:345.238785px;}
.x3_c00203{left:358.559100px;}
.x4_c00203{left:380.519685px;}
.x9_c00203{left:419.038920px;}
.xd_c00203{left:432.000000px;}
.xe_c00203{left:449.278800px;}
.xf_c00203{left:537.839535px;}
.x10_c00203{left:555.479235px;}
.xa_c00203{left:622.799520px;}
.x11_c00203{left:628.559100px;}
.x12_c00203{left:642.599670px;}
.xb_c00203{left:656.999400px;}
.x15_c00203{left:739.078770px;}
.x16_c00203{left:757.438620px;}
.xc_c00203{left:762.838950px;}
.x19_c00203{left:768.239220px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.lsf_c00203{letter-spacing:-11.741467pt;}
.ls8_c00203{letter-spacing:-10.876140pt;}
.lsb_c00203{letter-spacing:-8.806933pt;}
.ls9_c00203{letter-spacing:-7.632000pt;}
.ls12_c00203{letter-spacing:-6.667000pt;}
.ls10_c00203{letter-spacing:-5.285000pt;}
.ls6_c00203{letter-spacing:-4.619300pt;}
.ls11_c00203{letter-spacing:-3.961300pt;}
.lsc_c00203{letter-spacing:-3.595467pt;}
.lsd_c00203{letter-spacing:-3.329647pt;}
.ls5_c00203{letter-spacing:-3.304000pt;}
.ls2_c00203{letter-spacing:-2.639000pt;}
.ls4_c00203{letter-spacing:-1.981700pt;}
.lsa_c00203{letter-spacing:-1.435600pt;}
.ls13_c00203{letter-spacing:-1.355333pt;}
.ls3_c00203{letter-spacing:-1.323700pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.lse_c00203{letter-spacing:1.455733pt;}
.ls7_c00203{letter-spacing:3.233520pt;}
.ls0_c00203{letter-spacing:3.304000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
._8_c00203{margin-left:-7.544164pt;}
._6_c00203{margin-left:-3.391672pt;}
._5_c00203{margin-left:-1.053698pt;}
._7_c00203{width:1.455577pt;}
._12_c00203{width:2.659789pt;}
._11_c00203{width:3.619158pt;}
._10_c00203{width:4.787736pt;}
._13_c00203{width:7.082072pt;}
._f_c00203{width:8.473408pt;}
._1_c00203{width:9.572592pt;}
._0_c00203{width:10.971509pt;}
._c_c00203{width:12.891160pt;}
._3_c00203{width:14.308713pt;}
._17_c00203{width:15.657283pt;}
._2_c00203{width:16.562000pt;}
._14_c00203{width:17.789470pt;}
._b_c00203{width:19.327330pt;}
._16_c00203{width:20.441321pt;}
._4_c00203{width:21.452491pt;}
._d_c00203{width:23.015947pt;}
._a_c00203{width:24.029006pt;}
._15_c00203{width:26.617725pt;}
._9_c00203{width:30.519842pt;}
._e_c00203{width:48.425894pt;}
.fs4_c00203{font-size:64.666667pt;}
.fs5_c00203{font-size:65.333333pt;}
.fs3_c00203{font-size:66.000000pt;}
.fs6_c00203{font-size:68.666667pt;}
.fs8_c00203{font-size:69.333333pt;}
.fs0_c00203{font-size:70.000000pt;}
.fs7_c00203{font-size:70.666667pt;}
.fs1_c00203{font-size:71.333333pt;}
.fs2_c00203{font-size:72.000000pt;}
.fsa_c00203{font-size:73.333333pt;}
.fs9_c00203{font-size:75.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.yf_c00203{bottom:766.719720pt;}
.yd_c00203{bottom:793.278280pt;}
.ye_c00203{bottom:793.278813pt;}
.yb_c00203{bottom:820.159360pt;}
.yc_c00203{bottom:820.160080pt;}
.ya_c00203{bottom:847.039280pt;}
.y9_c00203{bottom:873.599040pt;}
.y8_c00203{bottom:873.600000pt;}
.y7_c00203{bottom:900.159747pt;}
.y6_c00203{bottom:900.159827pt;}
.y5_c00203{bottom:926.399413pt;}
.y4_c00203{bottom:953.600093pt;}
.y2_c00203{bottom:979.839173pt;}
.y3_c00203{bottom:979.839840pt;}
.y1_c00203{bottom:1006.398920pt;}
.h6_c00203{height:67.445312pt;}
.hb_c00203{height:68.046875pt;}
.h7_c00203{height:68.140625pt;}
.h1_c00203{height:68.701172pt;}
.h4_c00203{height:68.835938pt;}
.h8_c00203{height:69.203125pt;}
.h2_c00203{height:70.009766pt;}
.ha_c00203{height:70.497396pt;}
.h3_c00203{height:70.664062pt;}
.h9_c00203{height:71.218750pt;}
.hd_c00203{height:71.972656pt;}
.h5_c00203{height:72.562500pt;}
.hc_c00203{height:73.935547pt;}
.h0_c00203{height:1122.666667pt;}
.w0_c00203{width:793.333333pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:122.559067pt;}
.x5_c00203{left:141.758813pt;}
.x13_c00203{left:184.960000pt;}
.x6_c00203{left:191.679200pt;}
.x1a_c00203{left:199.678667pt;}
.x14_c00203{left:201.599067pt;}
.x1b_c00203{left:241.599587pt;}
.x7_c00203{left:263.039067pt;}
.x17_c00203{left:264.638667pt;}
.x18_c00203{left:284.159200pt;}
.x8_c00203{left:290.559067pt;}
.x2_c00203{left:306.878920pt;}
.x3_c00203{left:318.719200pt;}
.x4_c00203{left:338.239720pt;}
.x9_c00203{left:372.479040pt;}
.xd_c00203{left:384.000000pt;}
.xe_c00203{left:399.358933pt;}
.xf_c00203{left:478.079587pt;}
.x10_c00203{left:493.759320pt;}
.xa_c00203{left:553.599573pt;}
.x11_c00203{left:558.719200pt;}
.x12_c00203{left:571.199707pt;}
.xb_c00203{left:583.999467pt;}
.x15_c00203{left:656.958907pt;}
.x16_c00203{left:673.278773pt;}
.xc_c00203{left:678.079067pt;}
.x19_c00203{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9918087eb003141d73970f8c.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_f4122de9c4b72379aa345829.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_1193bbc93c9fd298f0a6667f.woff2')format("woff");}.ff3_c00204{font-family:ff3_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;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_934b74f2f1c9ca98803e86ba.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_a495bcde8c20b5df0474e1a9.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00204;src:url('chunks/assets/font_9ed8d6b4b33b8c2770f04db1.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00204{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m26_c00204{transform:matrix(0.168033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168033,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.me_c00204{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m12_c00204{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.md_c00204{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00204{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m8_c00204{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{transform:matrix(0.210417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210417,0.000000,0.000000,0.250000,0,0);}
.mb_c00204{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m14_c00204{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m17_c00204{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m22_c00204{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m4_c00204{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m1f_c00204{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m24_c00204{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m25_c00204{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.mc_c00204{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m23_c00204{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m1d_c00204{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m19_c00204{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m21_c00204{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m13_c00204{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m20_c00204{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m1e_c00204{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.mf_c00204{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1c_c00204{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m10_c00204{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m7_c00204{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00204{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m15_c00204{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1b_c00204{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.m16_c00204{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls16_c00204{letter-spacing:-15.656775px;}
.ls11_c00204{letter-spacing:-12.687675px;}
.lsf_c00204{letter-spacing:-10.402875px;}
.ls13_c00204{letter-spacing:-7.951500px;}
.lse_c00204{letter-spacing:-7.426125px;}
.ls12_c00204{letter-spacing:-7.294725px;}
.ls24_c00204{letter-spacing:-6.298425px;}
.ls14_c00204{letter-spacing:-6.160478px;}
.ls15_c00204{letter-spacing:-6.051443px;}
.lsd_c00204{letter-spacing:-5.945625px;}
.ls4_c00204{letter-spacing:-5.346000px;}
.lsb_c00204{letter-spacing:-5.196713px;}
.ls25_c00204{letter-spacing:-5.045625px;}
.ls17_c00204{letter-spacing:-4.921875px;}
.ls1d_c00204{letter-spacing:-4.560675px;}
.ls28_c00204{letter-spacing:-4.465200px;}
.ls10_c00204{letter-spacing:-4.456463px;}
.ls1_c00204{letter-spacing:-3.820703px;}
.ls5_c00204{letter-spacing:-3.751800px;}
.ls9_c00204{letter-spacing:-3.717000px;}
.ls1e_c00204{letter-spacing:-3.455483px;}
.ls22_c00204{letter-spacing:-3.320100px;}
.ls6_c00204{letter-spacing:-2.968875px;}
.ls1a_c00204{letter-spacing:-2.955203px;}
.ls20_c00204{letter-spacing:-2.400000px;}
.ls7_c00204{letter-spacing:-2.229413px;}
.ls2_c00204{letter-spacing:-1.570590px;}
.ls21_c00204{letter-spacing:-1.550250px;}
.ls1f_c00204{letter-spacing:-1.525095px;}
.ls1c_c00204{letter-spacing:-1.501988px;}
.lsc_c00204{letter-spacing:-1.489163px;}
.ls26_c00204{letter-spacing:-0.809025px;}
.ls1b_c00204{letter-spacing:-0.799500px;}
.ls23_c00204{letter-spacing:-0.778650px;}
.ls8_c00204{letter-spacing:-0.740250px;}
.ls0_c00204{letter-spacing:0.000000px;}
.ls19_c00204{letter-spacing:0.864300px;}
.ls3_c00204{letter-spacing:1.693350px;}
.ls18_c00204{letter-spacing:4.035150px;}
.lsa_c00204{letter-spacing:4.514805px;}
.ls27_c00204{letter-spacing:8.974035px;}
.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;}
._12_c00204{margin-left:-7.730011px;}
._d_c00204{margin-left:-5.317720px;}
._a_c00204{margin-left:-4.196005px;}
._7_c00204{margin-left:-3.144871px;}
._8_c00204{margin-left:-1.267013px;}
._0_c00204{width:1.938629px;}
._9_c00204{width:3.547955px;}
._b_c00204{width:4.823125px;}
._1_c00204{width:6.757686px;}
._5_c00204{width:8.890816px;}
._2_c00204{width:10.002394px;}
._4_c00204{width:11.890150px;}
._3_c00204{width:13.212333px;}
._c_c00204{width:14.245468px;}
._11_c00204{width:15.635694px;}
._6_c00204{width:17.478146px;}
._e_c00204{width:19.540683px;}
._10_c00204{width:21.106204px;}
._f_c00204{width:24.082315px;}
._19_c00204{width:25.248558px;}
._1a_c00204{width:27.190250px;}
._13_c00204{width:39.300826px;}
._14_c00204{width:41.030013px;}
._17_c00204{width:42.833284px;}
._16_c00204{width:44.017625px;}
._18_c00204{width:45.452598px;}
._15_c00204{width:48.374595px;}
.fc0_c00204{color:transparent;}
.fsb_c00204{font-size:34.500000px;}
.fs15_c00204{font-size:43.500000px;}
.fs11_c00204{font-size:44.250000px;}
.fsd_c00204{font-size:45.750000px;}
.fs14_c00204{font-size:46.500000px;}
.fs16_c00204{font-size:47.250000px;}
.fs13_c00204{font-size:48.000000px;}
.fsf_c00204{font-size:48.750000px;}
.fs12_c00204{font-size:49.500000px;}
.fse_c00204{font-size:50.250000px;}
.fs10_c00204{font-size:54.750000px;}
.fs3_c00204{font-size:77.250000px;}
.fs5_c00204{font-size:78.000000px;}
.fs6_c00204{font-size:78.750000px;}
.fs2_c00204{font-size:79.500000px;}
.fs1_c00204{font-size:80.250000px;}
.fs0_c00204{font-size:81.000000px;}
.fsc_c00204{font-size:81.750000px;}
.fs7_c00204{font-size:82.500000px;}
.fsa_c00204{font-size:83.250000px;}
.fs9_c00204{font-size:84.750000px;}
.fs8_c00204{font-size:85.500000px;}
.fs4_c00204{font-size:90.000000px;}
.y0_c00204{bottom:0.000000px;}
.y2b_c00204{bottom:135.720150px;}
.y2a_c00204{bottom:175.679700px;}
.y29_c00204{bottom:246.960000px;}
.y28_c00204{bottom:246.960165px;}
.y27_c00204{bottom:276.479685px;}
.y26_c00204{bottom:276.480750px;}
.y25_c00204{bottom:306.000270px;}
.y24_c00204{bottom:335.880000px;}
.y23_c00204{bottom:335.880315px;}
.y21_c00204{bottom:365.399070px;}
.y22_c00204{bottom:365.399850px;}
.y20_c00204{bottom:395.278800px;}
.y1f_c00204{bottom:395.278905px;}
.y1e_c00204{bottom:454.319775px;}
.y1d_c00204{bottom:484.559685px;}
.y1c_c00204{bottom:492.118785px;}
.y1b_c00204{bottom:514.438665px;}
.y1a_c00204{bottom:514.439505px;}
.y19_c00204{bottom:544.319235px;}
.y18_c00204{bottom:544.319415px;}
.y16_c00204{bottom:573.838845px;}
.y17_c00204{bottom:573.838950px;}
.y14_c00204{bottom:604.078350px;}
.y15_c00204{bottom:604.078770px;}
.y13_c00204{bottom:633.239505px;}
.y12_c00204{bottom:663.479415px;}
.y11_c00204{bottom:692.998950px;}
.y10_c00204{bottom:752.760135px;}
.yf_c00204{bottom:752.761545px;}
.ye_c00204{bottom:811.800315px;}
.yd_c00204{bottom:842.040225px;}
.yb_c00204{bottom:871.919910px;}
.yc_c00204{bottom:871.919955px;}
.y9_c00204{bottom:902.159250px;}
.ya_c00204{bottom:902.159820px;}
.y8_c00204{bottom:932.038965px;}
.y7_c00204{bottom:932.041215px;}
.y6_c00204{bottom:961.920930px;}
.y5_c00204{bottom:991.440465px;}
.y4_c00204{bottom:1021.320195px;}
.y3_c00204{bottom:1050.839715px;}
.y2_c00204{bottom:1080.359250px;}
.y1_c00204{bottom:1140.118740px;}
.hf_c00204{height:35.982422px;}
.h12_c00204{height:44.901123px;}
.h20_c00204{height:45.213867px;}
.h1c_c00204{height:45.369141px;}
.h18_c00204{height:46.151367px;}
.h1b_c00204{height:46.863281px;}
.h1f_c00204{height:47.109375px;}
.h1d_c00204{height:47.619141px;}
.h16_c00204{height:47.845459px;}
.h1e_c00204{height:48.178711px;}
.h1a_c00204{height:48.375000px;}
.h19_c00204{height:48.581543px;}
.h15_c00204{height:49.130859px;}
.h14_c00204{height:49.317627px;}
.h13_c00204{height:50.642578px;}
.h17_c00204{height:54.108398px;}
.h6_c00204{height:76.552734px;}
.h7_c00204{height:77.288818px;}
.h4_c00204{height:77.853516px;}
.h8_c00204{height:78.024902px;}
.h9_c00204{height:78.760986px;}
.h10_c00204{height:79.309570px;}
.h3_c00204{height:80.121094px;}
.h11_c00204{height:80.233154px;}
.h2_c00204{height:80.876953px;}
.hb_c00204{height:80.969238px;}
.ha_c00204{height:81.533203px;}
.h1_c00204{height:81.632812px;}
.he_c00204{height:81.705322px;}
.hd_c00204{height:83.177490px;}
.hc_c00204{height:84.498047px;}
.h5_c00204{height:88.945312px;}
.h0_c00204{height:1263.000000px;}
.w0_c00204{width:892.500000px;}
.x0_c00204{left:0.000000px;}
.x21_c00204{left:104.758500px;}
.xa_c00204{left:142.915770px;}
.x1_c00204{left:143.999400px;}
.x29_c00204{left:145.799535px;}
.x7_c00204{left:170.279250px;}
.x2d_c00204{left:176.038950px;}
.x2e_c00204{left:191.878950px;}
.x22_c00204{left:194.039400px;}
.x2_c00204{left:195.118785px;}
.x23_c00204{left:213.839535px;}
.x3_c00204{left:218.158785px;}
.x12_c00204{left:228.598500px;}
.x13_c00204{left:241.918950px;}
.x2f_c00204{left:259.558635px;}
.x30_c00204{left:282.598500px;}
.x18_c00204{left:290.159385px;}
.xf_c00204{left:302.398635px;}
.x31_c00204{left:317.518635px;}
.x10_c00204{left:321.478635px;}
.x11_c00204{left:325.799535px;}
.x32_c00204{left:345.238785px;}
.x33_c00204{left:360.358635px;}
.x1d_c00204{left:364.679700px;}
.xb_c00204{left:367.558635px;}
.x2a_c00204{left:370.798515px;}
.x1f_c00204{left:376.559685px;}
.xc_c00204{left:383.039385px;}
.x1e_c00204{left:385.559100px;}
.x20_c00204{left:391.679670px;}
.x24_c00204{left:398.159415px;}
.x4_c00204{left:400.679070px;}
.x34_c00204{left:407.878920px;}
.x5_c00204{left:432.718500px;}
.x6_c00204{left:447.838530px;}
.x35_c00204{left:449.998950px;}
.x19_c00204{left:455.758530px;}
.x1a_c00204{left:469.078770px;}
.x36_c00204{left:492.838950px;}
.x37_c00204{left:520.559100px;}
.x14_c00204{left:530.639700px;}
.xd_c00204{left:531.719100px;}
.x15_c00204{left:543.599070px;}
.xe_c00204{left:552.239220px;}
.x38_c00204{left:566.279850px;}
.x39_c00204{left:582.479235px;}
.x3a_c00204{left:596.158770px;}
.x8_c00204{left:603.358605px;}
.x25_c00204{left:610.558635px;}
.x9_c00204{left:628.199850px;}
.x3b_c00204{left:632.159820px;}
.x26_c00204{left:639.719100px;}
.x16_c00204{left:642.958920px;}
.x2b_c00204{left:656.999400px;}
.x3c_c00204{left:659.878320px;}
.x17_c00204{left:672.478635px;}
.x1b_c00204{left:686.519070px;}
.x2c_c00204{left:691.558635px;}
.x3d_c00204{left:704.519670px;}
.x1c_c00204{left:707.039385px;}
.x27_c00204{left:716.038920px;}
.x28_c00204{left:732.599070px;}
.x3e_c00204{left:759.599070px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls16_c00204{letter-spacing:-13.917133pt;}
.ls11_c00204{letter-spacing:-11.277933pt;}
.lsf_c00204{letter-spacing:-9.247000pt;}
.ls13_c00204{letter-spacing:-7.068000pt;}
.lse_c00204{letter-spacing:-6.601000pt;}
.ls12_c00204{letter-spacing:-6.484200pt;}
.ls24_c00204{letter-spacing:-5.598600pt;}
.ls14_c00204{letter-spacing:-5.475980pt;}
.ls15_c00204{letter-spacing:-5.379060pt;}
.lsd_c00204{letter-spacing:-5.285000pt;}
.ls4_c00204{letter-spacing:-4.752000pt;}
.lsb_c00204{letter-spacing:-4.619300pt;}
.ls25_c00204{letter-spacing:-4.485000pt;}
.ls17_c00204{letter-spacing:-4.375000pt;}
.ls1d_c00204{letter-spacing:-4.053933pt;}
.ls28_c00204{letter-spacing:-3.969067pt;}
.ls10_c00204{letter-spacing:-3.961300pt;}
.ls1_c00204{letter-spacing:-3.396180pt;}
.ls5_c00204{letter-spacing:-3.334933pt;}
.ls9_c00204{letter-spacing:-3.304000pt;}
.ls1e_c00204{letter-spacing:-3.071540pt;}
.ls22_c00204{letter-spacing:-2.951200pt;}
.ls6_c00204{letter-spacing:-2.639000pt;}
.ls1a_c00204{letter-spacing:-2.626847pt;}
.ls20_c00204{letter-spacing:-2.133333pt;}
.ls7_c00204{letter-spacing:-1.981700pt;}
.ls2_c00204{letter-spacing:-1.396080pt;}
.ls21_c00204{letter-spacing:-1.378000pt;}
.ls1f_c00204{letter-spacing:-1.355640pt;}
.ls1c_c00204{letter-spacing:-1.335100pt;}
.lsc_c00204{letter-spacing:-1.323700pt;}
.ls26_c00204{letter-spacing:-0.719133pt;}
.ls1b_c00204{letter-spacing:-0.710667pt;}
.ls23_c00204{letter-spacing:-0.692133pt;}
.ls8_c00204{letter-spacing:-0.658000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ls19_c00204{letter-spacing:0.768267pt;}
.ls3_c00204{letter-spacing:1.505200pt;}
.ls18_c00204{letter-spacing:3.586800pt;}
.lsa_c00204{letter-spacing:4.013160pt;}
.ls27_c00204{letter-spacing:7.976920pt;}
.ws0_c00204{word-spacing:0.000000pt;}
._12_c00204{margin-left:-6.871121pt;}
._d_c00204{margin-left:-4.726862pt;}
._a_c00204{margin-left:-3.729782pt;}
._7_c00204{margin-left:-2.795441pt;}
._8_c00204{margin-left:-1.126234pt;}
._0_c00204{width:1.723226pt;}
._9_c00204{width:3.153738pt;}
._b_c00204{width:4.287223pt;}
._1_c00204{width:6.006832pt;}
._5_c00204{width:7.902947pt;}
._2_c00204{width:8.891017pt;}
._4_c00204{width:10.569023pt;}
._3_c00204{width:11.744296pt;}
._c_c00204{width:12.662638pt;}
._11_c00204{width:13.898394pt;}
._6_c00204{width:15.536130pt;}
._e_c00204{width:17.369496pt;}
._10_c00204{width:18.761070pt;}
._f_c00204{width:21.406502pt;}
._19_c00204{width:22.443162pt;}
._1a_c00204{width:24.169111pt;}
._13_c00204{width:34.934068pt;}
._14_c00204{width:36.471123pt;}
._17_c00204{width:38.074030pt;}
._16_c00204{width:39.126777pt;}
._18_c00204{width:40.402309pt;}
._15_c00204{width:42.999640pt;}
.fsb_c00204{font-size:30.666667pt;}
.fs15_c00204{font-size:38.666667pt;}
.fs11_c00204{font-size:39.333333pt;}
.fsd_c00204{font-size:40.666667pt;}
.fs14_c00204{font-size:41.333333pt;}
.fs16_c00204{font-size:42.000000pt;}
.fs13_c00204{font-size:42.666667pt;}
.fsf_c00204{font-size:43.333333pt;}
.fs12_c00204{font-size:44.000000pt;}
.fse_c00204{font-size:44.666667pt;}
.fs10_c00204{font-size:48.666667pt;}
.fs3_c00204{font-size:68.666667pt;}
.fs5_c00204{font-size:69.333333pt;}
.fs6_c00204{font-size:70.000000pt;}
.fs2_c00204{font-size:70.666667pt;}
.fs1_c00204{font-size:71.333333pt;}
.fs0_c00204{font-size:72.000000pt;}
.fsc_c00204{font-size:72.666667pt;}
.fs7_c00204{font-size:73.333333pt;}
.fsa_c00204{font-size:74.000000pt;}
.fs9_c00204{font-size:75.333333pt;}
.fs8_c00204{font-size:76.000000pt;}
.fs4_c00204{font-size:80.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y2b_c00204{bottom:120.640133pt;}
.y2a_c00204{bottom:156.159733pt;}
.y29_c00204{bottom:219.520000pt;}
.y28_c00204{bottom:219.520147pt;}
.y27_c00204{bottom:245.759720pt;}
.y26_c00204{bottom:245.760667pt;}
.y25_c00204{bottom:272.000240pt;}
.y24_c00204{bottom:298.560000pt;}
.y23_c00204{bottom:298.560280pt;}
.y21_c00204{bottom:324.799173pt;}
.y22_c00204{bottom:324.799867pt;}
.y20_c00204{bottom:351.358933pt;}
.y1f_c00204{bottom:351.359027pt;}
.y1e_c00204{bottom:403.839800pt;}
.y1d_c00204{bottom:430.719720pt;}
.y1c_c00204{bottom:437.438920pt;}
.y1b_c00204{bottom:457.278813pt;}
.y1a_c00204{bottom:457.279560pt;}
.y19_c00204{bottom:483.839320pt;}
.y18_c00204{bottom:483.839480pt;}
.y16_c00204{bottom:510.078973pt;}
.y17_c00204{bottom:510.079067pt;}
.y14_c00204{bottom:536.958533pt;}
.y15_c00204{bottom:536.958907pt;}
.y13_c00204{bottom:562.879560pt;}
.y12_c00204{bottom:589.759480pt;}
.y11_c00204{bottom:615.999067pt;}
.y10_c00204{bottom:669.120120pt;}
.yf_c00204{bottom:669.121373pt;}
.ye_c00204{bottom:721.600280pt;}
.yd_c00204{bottom:748.480200pt;}
.yb_c00204{bottom:775.039920pt;}
.yc_c00204{bottom:775.039960pt;}
.y9_c00204{bottom:801.919333pt;}
.ya_c00204{bottom:801.919840pt;}
.y8_c00204{bottom:828.479080pt;}
.y7_c00204{bottom:828.481080pt;}
.y6_c00204{bottom:855.040827pt;}
.y5_c00204{bottom:881.280413pt;}
.y4_c00204{bottom:907.840173pt;}
.y3_c00204{bottom:934.079747pt;}
.y2_c00204{bottom:960.319333pt;}
.y1_c00204{bottom:1013.438880pt;}
.hf_c00204{height:31.984375pt;}
.h12_c00204{height:39.912109pt;}
.h20_c00204{height:40.190104pt;}
.h1c_c00204{height:40.328125pt;}
.h18_c00204{height:41.023438pt;}
.h1b_c00204{height:41.656250pt;}
.h1f_c00204{height:41.875000pt;}
.h1d_c00204{height:42.328125pt;}
.h16_c00204{height:42.529297pt;}
.h1e_c00204{height:42.825521pt;}
.h1a_c00204{height:43.000000pt;}
.h19_c00204{height:43.183594pt;}
.h15_c00204{height:43.671875pt;}
.h14_c00204{height:43.837891pt;}
.h13_c00204{height:45.015625pt;}
.h17_c00204{height:48.096354pt;}
.h6_c00204{height:68.046875pt;}
.h7_c00204{height:68.701172pt;}
.h4_c00204{height:69.203125pt;}
.h8_c00204{height:69.355469pt;}
.h9_c00204{height:70.009766pt;}
.h10_c00204{height:70.497396pt;}
.h3_c00204{height:71.218750pt;}
.h11_c00204{height:71.318359pt;}
.h2_c00204{height:71.890625pt;}
.hb_c00204{height:71.972656pt;}
.ha_c00204{height:72.473958pt;}
.h1_c00204{height:72.562500pt;}
.he_c00204{height:72.626953pt;}
.hd_c00204{height:73.935547pt;}
.hc_c00204{height:75.109375pt;}
.h5_c00204{height:79.062500pt;}
.h0_c00204{height:1122.666667pt;}
.w0_c00204{width:793.333333pt;}
.x0_c00204{left:0.000000pt;}
.x21_c00204{left:93.118667pt;}
.xa_c00204{left:127.036240pt;}
.x1_c00204{left:127.999467pt;}
.x29_c00204{left:129.599587pt;}
.x7_c00204{left:151.359333pt;}
.x2d_c00204{left:156.479067pt;}
.x2e_c00204{left:170.559067pt;}
.x22_c00204{left:172.479467pt;}
.x2_c00204{left:173.438920pt;}
.x23_c00204{left:190.079587pt;}
.x3_c00204{left:193.918920pt;}
.x12_c00204{left:203.198667pt;}
.x13_c00204{left:215.039067pt;}
.x2f_c00204{left:230.718787pt;}
.x30_c00204{left:251.198667pt;}
.x18_c00204{left:257.919453pt;}
.xf_c00204{left:268.798787pt;}
.x31_c00204{left:282.238787pt;}
.x10_c00204{left:285.758787pt;}
.x11_c00204{left:289.599587pt;}
.x32_c00204{left:306.878920pt;}
.x33_c00204{left:320.318787pt;}
.x1d_c00204{left:324.159733pt;}
.xb_c00204{left:326.718787pt;}
.x2a_c00204{left:329.598680pt;}
.x1f_c00204{left:334.719720pt;}
.xc_c00204{left:340.479453pt;}
.x1e_c00204{left:342.719200pt;}
.x20_c00204{left:348.159707pt;}
.x24_c00204{left:353.919480pt;}
.x4_c00204{left:356.159173pt;}
.x34_c00204{left:362.559040pt;}
.x5_c00204{left:384.638667pt;}
.x6_c00204{left:398.078693pt;}
.x35_c00204{left:399.999067pt;}
.x19_c00204{left:405.118693pt;}
.x1a_c00204{left:416.958907pt;}
.x36_c00204{left:438.079067pt;}
.x37_c00204{left:462.719200pt;}
.x14_c00204{left:471.679733pt;}
.xd_c00204{left:472.639200pt;}
.x15_c00204{left:483.199173pt;}
.xe_c00204{left:490.879307pt;}
.x38_c00204{left:503.359867pt;}
.x39_c00204{left:517.759320pt;}
.x3a_c00204{left:529.918907pt;}
.x8_c00204{left:536.318760pt;}
.x25_c00204{left:542.718787pt;}
.x9_c00204{left:558.399867pt;}
.x3b_c00204{left:561.919840pt;}
.x26_c00204{left:568.639200pt;}
.x16_c00204{left:571.519040pt;}
.x2b_c00204{left:583.999467pt;}
.x3c_c00204{left:586.558507pt;}
.x17_c00204{left:597.758787pt;}
.x1b_c00204{left:610.239173pt;}
.x2c_c00204{left:614.718787pt;}
.x3d_c00204{left:626.239707pt;}
.x1c_c00204{left:628.479453pt;}
.x27_c00204{left:636.479040pt;}
.x28_c00204{left:651.199173pt;}
.x3e_c00204{left:675.199173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_150c44cc248ff5286021be93.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_b3ccce12cfe712d7b17a1bf6.woff2')format("woff");}.ff2_c00205{font-family:ff2_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:ff3_c00205;src:url('chunks/assets/font_e598951b416a906641dd14a9.woff2')format("woff");}.ff3_c00205{font-family:ff3_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:ff4_c00205;src:url('chunks/assets/font_df0067b340546c2e4660c8ab.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.364746;font-style:normal;font-weight:normal;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_18a2d7d5de1bae3bdd8c2279.woff2')format("woff");}.ff5_c00205{font-family:ff5_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:ff6_c00205;src:url('chunks/assets/font_63cac3f2c1d3131e4f3ee67f.woff2')format("woff");}.ff6_c00205{font-family:ff6_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:ff7_c00205;src:url('chunks/assets/font_0d944d3555951c7fe5a99e0f.woff2')format("woff");}.ff7_c00205{font-family:ff7_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:ff8_c00205;src:url('chunks/assets/font_105c2d445c280832e99c957d.woff2')format("woff");}.ff8_c00205{font-family:ff8_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;}
.m25_c00205{transform:matrix(0.133028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133028,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133929,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.221739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221739,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{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);}
.m10_c00205{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.244966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244966,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311475,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.421360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421360,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.426724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426724,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.505952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505952,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(1.007143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007143,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls25_c00205{letter-spacing:-36.648525px;}
.ls10_c00205{letter-spacing:-26.602800px;}
.ls12_c00205{letter-spacing:-13.533488px;}
.ls30_c00205{letter-spacing:-9.750000px;}
.ls5_c00205{letter-spacing:-8.914500px;}
.ls2e_c00205{letter-spacing:-8.126625px;}
.ls3e_c00205{letter-spacing:-7.612500px;}
.ls7_c00205{letter-spacing:-7.426125px;}
.ls35_c00205{letter-spacing:-7.312013px;}
.lsd_c00205{letter-spacing:-7.234650px;}
.ls16_c00205{letter-spacing:-6.749550px;}
.ls11_c00205{letter-spacing:-6.559875px;}
.ls39_c00205{letter-spacing:-6.398400px;}
.ls32_c00205{letter-spacing:-6.033825px;}
.lsb_c00205{letter-spacing:-5.945625px;}
.ls18_c00205{letter-spacing:-5.783625px;}
.ls14_c00205{letter-spacing:-5.653200px;}
.ls17_c00205{letter-spacing:-5.550555px;}
.ls4_c00205{letter-spacing:-5.196713px;}
.ls21_c00205{letter-spacing:-4.633988px;}
.ls2_c00205{letter-spacing:-4.456463px;}
.ls24_c00205{letter-spacing:-3.895500px;}
.lse_c00205{letter-spacing:-3.820733px;}
.ls3_c00205{letter-spacing:-3.717000px;}
.lsc_c00205{letter-spacing:-3.513023px;}
.ls3b_c00205{letter-spacing:-3.101393px;}
.ls1_c00205{letter-spacing:-2.968875px;}
.ls2c_c00205{letter-spacing:-2.758763px;}
.ls1f_c00205{letter-spacing:-2.288805px;}
.ls2d_c00205{letter-spacing:-2.286900px;}
.ls0_c00205{letter-spacing:-2.229413px;}
.ls1b_c00205{letter-spacing:-2.187135px;}
.ls2f_c00205{letter-spacing:-2.184000px;}
.ls31_c00205{letter-spacing:-1.630125px;}
.ls33_c00205{letter-spacing:-1.622888px;}
.ls26_c00205{letter-spacing:-1.622400px;}
.ls37_c00205{letter-spacing:-1.502550px;}
.ls27_c00205{letter-spacing:-1.501913px;}
.ls6_c00205{letter-spacing:-1.489163px;}
.ls3d_c00205{letter-spacing:-1.478925px;}
.ls36_c00205{letter-spacing:-1.478880px;}
.ls38_c00205{letter-spacing:-1.455450px;}
.ls3c_c00205{letter-spacing:-0.799800px;}
.ls19_c00205{letter-spacing:-0.788558px;}
.ls8_c00205{letter-spacing:-0.740250px;}
.ls3a_c00205{letter-spacing:-0.739350px;}
.ls22_c00205{letter-spacing:-0.588300px;}
.ls9_c00205{letter-spacing:0.000000px;}
.ls20_c00205{letter-spacing:0.542700px;}
.ls23_c00205{letter-spacing:0.806798px;}
.ls1a_c00205{letter-spacing:1.562400px;}
.ls1c_c00205{letter-spacing:1.669200px;}
.ls29_c00205{letter-spacing:1.709400px;}
.lsa_c00205{letter-spacing:1.807583px;}
.ls1d_c00205{letter-spacing:1.852515px;}
.ls2b_c00205{letter-spacing:3.010350px;}
.ls15_c00205{letter-spacing:4.393500px;}
.ls2a_c00205{letter-spacing:4.619745px;}
.ls13_c00205{letter-spacing:4.794225px;}
.ls28_c00205{letter-spacing:5.932800px;}
.ls34_c00205{letter-spacing:9.620385px;}
.lsf_c00205{letter-spacing:19.440810px;}
.ls1e_c00205{letter-spacing:57.175200px;}
.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:0.000000px;}
._1f_c00205{margin-left:-38.299140px;}
._1a_c00205{margin-left:-22.419486px;}
._19_c00205{margin-left:-12.954405px;}
._1b_c00205{margin-left:-10.307617px;}
._1d_c00205{margin-left:-8.129793px;}
._1e_c00205{margin-left:-5.897038px;}
._1c_c00205{margin-left:-2.279382px;}
._20_c00205{width:1.041476px;}
._15_c00205{width:2.128434px;}
._14_c00205{width:3.784235px;}
._16_c00205{width:4.868830px;}
._12_c00205{width:6.066841px;}
._13_c00205{width:7.141942px;}
._17_c00205{width:8.373205px;}
._8_c00205{width:9.465393px;}
._7_c00205{width:11.424708px;}
._9_c00205{width:12.483866px;}
._6_c00205{width:14.594544px;}
._0_c00205{width:15.622455px;}
._18_c00205{width:17.112167px;}
._11_c00205{width:18.398140px;}
._4_c00205{width:19.529599px;}
._1_c00205{width:20.719630px;}
._d_c00205{width:22.389338px;}
._a_c00205{width:23.735369px;}
._2_c00205{width:25.148783px;}
._c_c00205{width:27.081248px;}
._3_c00205{width:28.496326px;}
._b_c00205{width:30.041550px;}
._e_c00205{width:31.994208px;}
._5_c00205{width:33.655922px;}
._f_c00205{width:35.671804px;}
._10_c00205{width:38.138090px;}
.fc0_c00205{color:transparent;}
.fs14_c00205{font-size:26.250000px;}
.fs15_c00205{font-size:27.000000px;}
.fs16_c00205{font-size:30.000000px;}
.fs12_c00205{font-size:31.500000px;}
.fs1d_c00205{font-size:41.250000px;}
.fsb_c00205{font-size:42.000000px;}
.fsc_c00205{font-size:43.500000px;}
.fs22_c00205{font-size:44.250000px;}
.fs2_c00205{font-size:45.750000px;}
.fs20_c00205{font-size:46.500000px;}
.fs25_c00205{font-size:47.250000px;}
.fs17_c00205{font-size:47.540400px;}
.fs24_c00205{font-size:48.000000px;}
.fs21_c00205{font-size:48.750000px;}
.fs23_c00205{font-size:49.500000px;}
.fs18_c00205{font-size:50.250000px;}
.fs13_c00205{font-size:51.750000px;}
.fse_c00205{font-size:55.500000px;}
.fs19_c00205{font-size:63.750000px;}
.fs1a_c00205{font-size:71.250000px;}
.fs10_c00205{font-size:72.000000px;}
.fsa_c00205{font-size:72.750000px;}
.fsf_c00205{font-size:75.750000px;}
.fs11_c00205{font-size:76.500000px;}
.fs1c_c00205{font-size:78.000000px;}
.fs0_c00205{font-size:78.750000px;}
.fsd_c00205{font-size:79.500000px;}
.fs1_c00205{font-size:80.250000px;}
.fs7_c00205{font-size:81.000000px;}
.fs1b_c00205{font-size:81.750000px;}
.fs3_c00205{font-size:82.500000px;}
.fs8_c00205{font-size:84.000000px;}
.fs9_c00205{font-size:86.250000px;}
.fs1f_c00205{font-size:101.250000px;}
.fs4_c00205{font-size:102.750000px;}
.fs5_c00205{font-size:103.500000px;}
.fs6_c00205{font-size:111.750000px;}
.fs1e_c00205{font-size:115.500000px;}
.y0_c00205{bottom:0.000000px;}
.y27_c00205{bottom:174.600150px;}
.y26_c00205{bottom:190.440315px;}
.y24_c00205{bottom:294.479850px;}
.y25_c00205{bottom:294.480285px;}
.y22_c00205{bottom:315.720585px;}
.y23_c00205{bottom:315.720750px;}
.y21_c00205{bottom:336.959385px;}
.y20_c00205{bottom:396.359850px;}
.y1e_c00205{bottom:425.879520px;}
.y1f_c00205{bottom:426.599670px;}
.y1d_c00205{bottom:434.519670px;}
.y1b_c00205{bottom:456.479505px;}
.y1c_c00205{bottom:456.480285px;}
.y1a_c00205{bottom:515.880570px;}
.y19_c00205{bottom:515.880585px;}
.y17_c00205{bottom:537.118950px;}
.y18_c00205{bottom:537.119385px;}
.y16_c00205{bottom:558.359850px;}
.y15_c00205{bottom:558.361020px;}
.y14_c00205{bottom:579.601920px;}
.y13_c00205{bottom:638.640675px;}
.y12_c00205{bottom:668.520405px;}
.y11_c00205{bottom:728.279850px;}
.y10_c00205{bottom:749.879520px;}
.yf_c00205{bottom:771.480540px;}
.ye_c00205{bottom:791.998965px;}
.yd_c00205{bottom:813.239865px;}
.yc_c00205{bottom:872.277990px;}
.yb_c00205{bottom:902.520015px;}
.ya_c00205{bottom:962.639655px;}
.y9_c00205{bottom:962.640540px;}
.y8_c00205{bottom:992.520270px;}
.y7_c00205{bottom:992.520630px;}
.y6_c00205{bottom:1022.040165px;}
.y5_c00205{bottom:1051.559685px;}
.y4_c00205{bottom:1051.560630px;}
.y3_c00205{bottom:1081.440360px;}
.y2_c00205{bottom:1110.959880px;}
.y1_c00205{bottom:1141.199805px;}
.h17_c00205{height:27.377930px;}
.h18_c00205{height:28.160156px;}
.h19_c00205{height:31.289062px;}
.h15_c00205{height:32.853516px;}
.h20_c00205{height:40.464478px;}
.hd_c00205{height:41.220703px;}
.h2e_c00205{height:42.990234px;}
.he_c00205{height:43.839844px;}
.h3_c00205{height:44.901123px;}
.h2b_c00205{height:45.637207px;}
.h2d_c00205{height:46.107422px;}
.h25_c00205{height:46.151367px;}
.h28_c00205{height:46.373291px;}
.h2a_c00205{height:46.696289px;}
.h23_c00205{height:46.863281px;}
.h27_c00205{height:47.109375px;}
.h2c_c00205{height:47.437500px;}
.h29_c00205{height:47.619141px;}
.h24_c00205{height:48.178711px;}
.h26_c00205{height:48.581543px;}
.h1a_c00205{height:49.583152px;}
.h1b_c00205{height:49.661133px;}
.h16_c00205{height:53.973633px;}
.h10_c00205{height:55.933594px;}
.h1c_c00205{height:64.248047px;}
.h1d_c00205{height:74.311523px;}
.h14_c00205{height:75.080566px;}
.h12_c00205{height:75.093750px;}
.hc_c00205{height:75.875977px;}
.h11_c00205{height:76.341797px;}
.h1_c00205{height:77.288818px;}
.h22_c00205{height:78.024902px;}
.h1f_c00205{height:78.609375px;}
.h2_c00205{height:78.760986px;}
.ha_c00205{height:79.365234px;}
.hf_c00205{height:80.121094px;}
.h1e_c00205{height:80.791992px;}
.h4_c00205{height:80.969238px;}
.h8_c00205{height:81.632812px;}
.h9_c00205{height:83.015625px;}
.h13_c00205{height:87.609375px;}
.hb_c00205{height:89.956055px;}
.h5_c00205{height:107.165039px;}
.h6_c00205{height:107.947266px;}
.h7_c00205{height:116.551758px;}
.h21_c00205{height:120.462891px;}
.h0_c00205{height:1263.000000px;}
.w0_c00205{width:892.500000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:143.277810px;}
.x1_c00205{left:144.358665px;}
.x23_c00205{left:167.039400px;}
.x3b_c00205{left:175.679700px;}
.x3c_c00205{left:190.079400px;}
.x24_c00205{left:196.199850px;}
.x11_c00205{left:197.638050px;}
.xb_c00205{left:199.078785px;}
.x4e_c00205{left:204.120000px;}
.x25_c00205{left:212.758500px;}
.x31_c00205{left:213.839535px;}
.x3d_c00205{left:223.199850px;}
.x1d_c00205{left:224.279250px;}
.x1f_c00205{left:227.519100px;}
.x26_c00205{left:228.959400px;}
.x32_c00205{left:231.120000px;}
.xc_c00205{left:232.199385px;}
.x3e_c00205{left:236.518635px;}
.x5_c00205{left:239.040000px;}
.x6_c00205{left:258.120000px;}
.x20_c00205{left:259.919535px;}
.x27_c00205{left:262.080000px;}
.x1e_c00205{left:266.758500px;}
.x28_c00205{left:271.079385px;}
.x3f_c00205{left:278.279250px;}
.x4f_c00205{left:290.159385px;}
.x50_c00205{left:299.878950px;}
.x40_c00205{left:304.199850px;}
.x7_c00205{left:307.078785px;}
.x12_c00205{left:311.399850px;}
.x29_c00205{left:317.518635px;}
.x8_c00205{left:326.519685px;}
.x9_c00205{left:334.798950px;}
.x3_c00205{left:341.639700px;}
.x41_c00205{left:345.238785px;}
.xa_c00205{left:349.198785px;}
.x4_c00205{left:359.279250px;}
.x51_c00205{left:362.519100px;}
.x42_c00205{left:371.879535px;}
.x13_c00205{left:374.758500px;}
.x38_c00205{left:392.038920px;}
.x43_c00205{left:405.359250px;}
.x39_c00205{left:406.438665px;}
.x2a_c00205{left:408.239820px;}
.x33_c00205{left:427.679070px;}
.x14_c00205{left:438.479685px;}
.x2b_c00205{left:442.798920px;}
.x44_c00205{left:455.758530px;}
.xd_c00205{left:460.079400px;}
.x15_c00205{left:476.278800px;}
.x45_c00205{left:482.399235px;}
.xe_c00205{left:490.319235px;}
.x2c_c00205{left:509.399235px;}
.x46_c00205{left:525.239220px;}
.x16_c00205{left:532.798515px;}
.x47_c00205{left:551.878320px;}
.x21_c00205{left:559.080000px;}
.x17_c00205{left:561.958920px;}
.x22_c00205{left:573.479685px;}
.x2d_c00205{left:592.559685px;}
.x18_c00205{left:595.079400px;}
.x48_c00205{left:600.118785px;}
.x2e_c00205{left:609.838530px;}
.x49_c00205{left:623.519670px;}
.x2f_c00205{left:632.519070px;}
.x4a_c00205{left:639.359850px;}
.xf_c00205{left:656.279250px;}
.x36_c00205{left:658.798920px;}
.x4b_c00205{left:662.399820px;}
.x34_c00205{left:664.199385px;}
.x19_c00205{left:669.599670px;}
.x35_c00205{left:678.958335px;}
.x1b_c00205{left:682.918350px;}
.x37_c00205{left:684.358605px;}
.x10_c00205{left:687.598530px;}
.x1c_c00205{left:699.839535px;}
.x4c_c00205{left:716.759085px;}
.x30_c00205{left:726.119385px;}
.x3a_c00205{left:752.039985px;}
.x4d_c00205{left:758.878920px;}
.x1a_c00205{left:765.358605px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls25_c00205{letter-spacing:-32.576467pt;}
.ls10_c00205{letter-spacing:-23.646933pt;}
.ls12_c00205{letter-spacing:-12.029767pt;}
.ls30_c00205{letter-spacing:-8.666667pt;}
.ls5_c00205{letter-spacing:-7.924000pt;}
.ls2e_c00205{letter-spacing:-7.223667pt;}
.ls3e_c00205{letter-spacing:-6.766667pt;}
.ls7_c00205{letter-spacing:-6.601000pt;}
.ls35_c00205{letter-spacing:-6.499567pt;}
.lsd_c00205{letter-spacing:-6.430800pt;}
.ls16_c00205{letter-spacing:-5.999600pt;}
.ls11_c00205{letter-spacing:-5.831000pt;}
.ls39_c00205{letter-spacing:-5.687467pt;}
.ls32_c00205{letter-spacing:-5.363400pt;}
.lsb_c00205{letter-spacing:-5.285000pt;}
.ls18_c00205{letter-spacing:-5.141000pt;}
.ls14_c00205{letter-spacing:-5.025067pt;}
.ls17_c00205{letter-spacing:-4.933827pt;}
.ls4_c00205{letter-spacing:-4.619300pt;}
.ls21_c00205{letter-spacing:-4.119100pt;}
.ls2_c00205{letter-spacing:-3.961300pt;}
.ls24_c00205{letter-spacing:-3.462667pt;}
.lse_c00205{letter-spacing:-3.396207pt;}
.ls3_c00205{letter-spacing:-3.304000pt;}
.lsc_c00205{letter-spacing:-3.122687pt;}
.ls3b_c00205{letter-spacing:-2.756793pt;}
.ls1_c00205{letter-spacing:-2.639000pt;}
.ls2c_c00205{letter-spacing:-2.452233pt;}
.ls1f_c00205{letter-spacing:-2.034493pt;}
.ls2d_c00205{letter-spacing:-2.032800pt;}
.ls0_c00205{letter-spacing:-1.981700pt;}
.ls1b_c00205{letter-spacing:-1.944120pt;}
.ls2f_c00205{letter-spacing:-1.941333pt;}
.ls31_c00205{letter-spacing:-1.449000pt;}
.ls33_c00205{letter-spacing:-1.442567pt;}
.ls26_c00205{letter-spacing:-1.442133pt;}
.ls37_c00205{letter-spacing:-1.335600pt;}
.ls27_c00205{letter-spacing:-1.335033pt;}
.ls6_c00205{letter-spacing:-1.323700pt;}
.ls3d_c00205{letter-spacing:-1.314600pt;}
.ls36_c00205{letter-spacing:-1.314560pt;}
.ls38_c00205{letter-spacing:-1.293733pt;}
.ls3c_c00205{letter-spacing:-0.710933pt;}
.ls19_c00205{letter-spacing:-0.700940pt;}
.ls8_c00205{letter-spacing:-0.658000pt;}
.ls3a_c00205{letter-spacing:-0.657200pt;}
.ls22_c00205{letter-spacing:-0.522933pt;}
.ls9_c00205{letter-spacing:0.000000pt;}
.ls20_c00205{letter-spacing:0.482400pt;}
.ls23_c00205{letter-spacing:0.717153pt;}
.ls1a_c00205{letter-spacing:1.388800pt;}
.ls1c_c00205{letter-spacing:1.483733pt;}
.ls29_c00205{letter-spacing:1.519467pt;}
.lsa_c00205{letter-spacing:1.606740pt;}
.ls1d_c00205{letter-spacing:1.646680pt;}
.ls2b_c00205{letter-spacing:2.675867pt;}
.ls15_c00205{letter-spacing:3.905333pt;}
.ls2a_c00205{letter-spacing:4.106440pt;}
.ls13_c00205{letter-spacing:4.261533pt;}
.ls28_c00205{letter-spacing:5.273600pt;}
.ls34_c00205{letter-spacing:8.551453pt;}
.lsf_c00205{letter-spacing:17.280720pt;}
.ls1e_c00205{letter-spacing:50.822400pt;}
.ws0_c00205{word-spacing:0.000000pt;}
._1f_c00205{margin-left:-34.043680pt;}
._1a_c00205{margin-left:-19.928432pt;}
._19_c00205{margin-left:-11.515026pt;}
._1b_c00205{margin-left:-9.162326pt;}
._1d_c00205{margin-left:-7.226483pt;}
._1e_c00205{margin-left:-5.241811pt;}
._1c_c00205{margin-left:-2.026117pt;}
._20_c00205{width:0.925757pt;}
._15_c00205{width:1.891942pt;}
._14_c00205{width:3.363764pt;}
._16_c00205{width:4.327849pt;}
._12_c00205{width:5.392747pt;}
._13_c00205{width:6.348392pt;}
._17_c00205{width:7.442849pt;}
._8_c00205{width:8.413683pt;}
._7_c00205{width:10.155296pt;}
._9_c00205{width:11.096770pt;}
._6_c00205{width:12.972928pt;}
._0_c00205{width:13.886626pt;}
._18_c00205{width:15.210815pt;}
._11_c00205{width:16.353902pt;}
._4_c00205{width:17.359643pt;}
._1_c00205{width:18.417449pt;}
._d_c00205{width:19.901634pt;}
._a_c00205{width:21.098106pt;}
._2_c00205{width:22.354474pt;}
._c_c00205{width:24.072221pt;}
._3_c00205{width:25.330068pt;}
._b_c00205{width:26.703600pt;}
._e_c00205{width:28.439296pt;}
._5_c00205{width:29.916375pt;}
._f_c00205{width:31.708270pt;}
._10_c00205{width:33.900525pt;}
.fs14_c00205{font-size:23.333333pt;}
.fs15_c00205{font-size:24.000000pt;}
.fs16_c00205{font-size:26.666667pt;}
.fs12_c00205{font-size:28.000000pt;}
.fs1d_c00205{font-size:36.666667pt;}
.fsb_c00205{font-size:37.333333pt;}
.fsc_c00205{font-size:38.666667pt;}
.fs22_c00205{font-size:39.333333pt;}
.fs2_c00205{font-size:40.666667pt;}
.fs20_c00205{font-size:41.333333pt;}
.fs25_c00205{font-size:42.000000pt;}
.fs17_c00205{font-size:42.258133pt;}
.fs24_c00205{font-size:42.666667pt;}
.fs21_c00205{font-size:43.333333pt;}
.fs23_c00205{font-size:44.000000pt;}
.fs18_c00205{font-size:44.666667pt;}
.fs13_c00205{font-size:46.000000pt;}
.fse_c00205{font-size:49.333333pt;}
.fs19_c00205{font-size:56.666667pt;}
.fs1a_c00205{font-size:63.333333pt;}
.fs10_c00205{font-size:64.000000pt;}
.fsa_c00205{font-size:64.666667pt;}
.fsf_c00205{font-size:67.333333pt;}
.fs11_c00205{font-size:68.000000pt;}
.fs1c_c00205{font-size:69.333333pt;}
.fs0_c00205{font-size:70.000000pt;}
.fsd_c00205{font-size:70.666667pt;}
.fs1_c00205{font-size:71.333333pt;}
.fs7_c00205{font-size:72.000000pt;}
.fs1b_c00205{font-size:72.666667pt;}
.fs3_c00205{font-size:73.333333pt;}
.fs8_c00205{font-size:74.666667pt;}
.fs9_c00205{font-size:76.666667pt;}
.fs1f_c00205{font-size:90.000000pt;}
.fs4_c00205{font-size:91.333333pt;}
.fs5_c00205{font-size:92.000000pt;}
.fs6_c00205{font-size:99.333333pt;}
.fs1e_c00205{font-size:102.666667pt;}
.y0_c00205{bottom:0.000000pt;}
.y27_c00205{bottom:155.200133pt;}
.y26_c00205{bottom:169.280280pt;}
.y24_c00205{bottom:261.759867pt;}
.y25_c00205{bottom:261.760253pt;}
.y22_c00205{bottom:280.640520pt;}
.y23_c00205{bottom:280.640667pt;}
.y21_c00205{bottom:299.519453pt;}
.y20_c00205{bottom:352.319867pt;}
.y1e_c00205{bottom:378.559573pt;}
.y1f_c00205{bottom:379.199707pt;}
.y1d_c00205{bottom:386.239707pt;}
.y1b_c00205{bottom:405.759560pt;}
.y1c_c00205{bottom:405.760253pt;}
.y1a_c00205{bottom:458.560507pt;}
.y19_c00205{bottom:458.560520pt;}
.y17_c00205{bottom:477.439067pt;}
.y18_c00205{bottom:477.439453pt;}
.y16_c00205{bottom:496.319867pt;}
.y15_c00205{bottom:496.320907pt;}
.y14_c00205{bottom:515.201707pt;}
.y13_c00205{bottom:567.680600pt;}
.y12_c00205{bottom:594.240360pt;}
.y11_c00205{bottom:647.359867pt;}
.y10_c00205{bottom:666.559573pt;}
.yf_c00205{bottom:685.760480pt;}
.ye_c00205{bottom:703.999080pt;}
.yd_c00205{bottom:722.879880pt;}
.yc_c00205{bottom:775.358213pt;}
.yb_c00205{bottom:802.240013pt;}
.ya_c00205{bottom:855.679693pt;}
.y9_c00205{bottom:855.680480pt;}
.y8_c00205{bottom:882.240240pt;}
.y7_c00205{bottom:882.240560pt;}
.y6_c00205{bottom:908.480147pt;}
.y5_c00205{bottom:934.719720pt;}
.y4_c00205{bottom:934.720560pt;}
.y3_c00205{bottom:961.280320pt;}
.y2_c00205{bottom:987.519893pt;}
.y1_c00205{bottom:1014.399827pt;}
.h17_c00205{height:24.335938pt;}
.h18_c00205{height:25.031250pt;}
.h19_c00205{height:27.812500pt;}
.h15_c00205{height:29.203125pt;}
.h20_c00205{height:35.968424pt;}
.hd_c00205{height:36.640625pt;}
.h2e_c00205{height:38.213542pt;}
.he_c00205{height:38.968750pt;}
.h3_c00205{height:39.912109pt;}
.h2b_c00205{height:40.566406pt;}
.h2d_c00205{height:40.984375pt;}
.h25_c00205{height:41.023438pt;}
.h28_c00205{height:41.220703pt;}
.h2a_c00205{height:41.507812pt;}
.h23_c00205{height:41.656250pt;}
.h27_c00205{height:41.875000pt;}
.h2c_c00205{height:42.166667pt;}
.h29_c00205{height:42.328125pt;}
.h24_c00205{height:42.825521pt;}
.h26_c00205{height:43.183594pt;}
.h1a_c00205{height:44.073912pt;}
.h1b_c00205{height:44.143229pt;}
.h16_c00205{height:47.976562pt;}
.h10_c00205{height:49.718750pt;}
.h1c_c00205{height:57.109375pt;}
.h1d_c00205{height:66.054688pt;}
.h14_c00205{height:66.738281pt;}
.h12_c00205{height:66.750000pt;}
.hc_c00205{height:67.445312pt;}
.h11_c00205{height:67.859375pt;}
.h1_c00205{height:68.701172pt;}
.h22_c00205{height:69.355469pt;}
.h1f_c00205{height:69.875000pt;}
.h2_c00205{height:70.009766pt;}
.ha_c00205{height:70.546875pt;}
.hf_c00205{height:71.218750pt;}
.h1e_c00205{height:71.815104pt;}
.h4_c00205{height:71.972656pt;}
.h8_c00205{height:72.562500pt;}
.h9_c00205{height:73.791667pt;}
.h13_c00205{height:77.875000pt;}
.hb_c00205{height:79.960938pt;}
.h5_c00205{height:95.257812pt;}
.h6_c00205{height:95.953125pt;}
.h7_c00205{height:103.601562pt;}
.h21_c00205{height:107.078125pt;}
.h0_c00205{height:1122.666667pt;}
.w0_c00205{width:793.333333pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:127.358053pt;}
.x1_c00205{left:128.318813pt;}
.x23_c00205{left:148.479467pt;}
.x3b_c00205{left:156.159733pt;}
.x3c_c00205{left:168.959467pt;}
.x24_c00205{left:174.399867pt;}
.x11_c00205{left:175.678267pt;}
.xb_c00205{left:176.958920pt;}
.x4e_c00205{left:181.440000pt;}
.x25_c00205{left:189.118667pt;}
.x31_c00205{left:190.079587pt;}
.x3d_c00205{left:198.399867pt;}
.x1d_c00205{left:199.359333pt;}
.x1f_c00205{left:202.239200pt;}
.x26_c00205{left:203.519467pt;}
.x32_c00205{left:205.440000pt;}
.xc_c00205{left:206.399453pt;}
.x3e_c00205{left:210.238787pt;}
.x5_c00205{left:212.480000pt;}
.x6_c00205{left:229.440000pt;}
.x20_c00205{left:231.039587pt;}
.x27_c00205{left:232.960000pt;}
.x1e_c00205{left:237.118667pt;}
.x28_c00205{left:240.959453pt;}
.x3f_c00205{left:247.359333pt;}
.x4f_c00205{left:257.919453pt;}
.x50_c00205{left:266.559067pt;}
.x40_c00205{left:270.399867pt;}
.x7_c00205{left:272.958920pt;}
.x12_c00205{left:276.799867pt;}
.x29_c00205{left:282.238787pt;}
.x8_c00205{left:290.239720pt;}
.x9_c00205{left:297.599067pt;}
.x3_c00205{left:303.679733pt;}
.x41_c00205{left:306.878920pt;}
.xa_c00205{left:310.398920pt;}
.x4_c00205{left:319.359333pt;}
.x51_c00205{left:322.239200pt;}
.x42_c00205{left:330.559587pt;}
.x13_c00205{left:333.118667pt;}
.x38_c00205{left:348.479040pt;}
.x43_c00205{left:360.319333pt;}
.x39_c00205{left:361.278813pt;}
.x2a_c00205{left:362.879840pt;}
.x33_c00205{left:380.159173pt;}
.x14_c00205{left:389.759720pt;}
.x2b_c00205{left:393.599040pt;}
.x44_c00205{left:405.118693pt;}
.xd_c00205{left:408.959467pt;}
.x15_c00205{left:423.358933pt;}
.x45_c00205{left:428.799320pt;}
.xe_c00205{left:435.839320pt;}
.x2c_c00205{left:452.799320pt;}
.x46_c00205{left:466.879307pt;}
.x16_c00205{left:473.598680pt;}
.x47_c00205{left:490.558507pt;}
.x21_c00205{left:496.960000pt;}
.x17_c00205{left:499.519040pt;}
.x22_c00205{left:509.759720pt;}
.x2d_c00205{left:526.719720pt;}
.x18_c00205{left:528.959467pt;}
.x48_c00205{left:533.438920pt;}
.x2e_c00205{left:542.078693pt;}
.x49_c00205{left:554.239707pt;}
.x2f_c00205{left:562.239173pt;}
.x4a_c00205{left:568.319867pt;}
.xf_c00205{left:583.359333pt;}
.x36_c00205{left:585.599040pt;}
.x4b_c00205{left:588.799840pt;}
.x34_c00205{left:590.399453pt;}
.x19_c00205{left:595.199707pt;}
.x35_c00205{left:603.518520pt;}
.x1b_c00205{left:607.038533pt;}
.x37_c00205{left:608.318760pt;}
.x10_c00205{left:611.198693pt;}
.x1c_c00205{left:622.079587pt;}
.x4c_c00205{left:637.119187pt;}
.x30_c00205{left:645.439453pt;}
.x3a_c00205{left:668.479987pt;}
.x4d_c00205{left:674.559040pt;}
.x1a_c00205{left:680.318760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bb169995b78ba232ea30186.woff2')format("woff");}.ff1_c00206{font-family:ff1_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:ff2_c00206;src:url('chunks/assets/font_8fb662e324bf6709f02bd919.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_0750e3ae1f024c0a2f7c862d.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_4f3dc711da6a197ed44efc0b.woff2')format("woff");}.ff5_c00206{font-family:ff5_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;}
.m17_c00206{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.189732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189732,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m16_c00206{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272901,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.lsc_c00206{letter-spacing:-18.224250px;}
.lsb_c00206{letter-spacing:-17.572500px;}
.ls15_c00206{letter-spacing:-12.842760px;}
.ls17_c00206{letter-spacing:-12.687675px;}
.ls12_c00206{letter-spacing:-6.685875px;}
.lsa_c00206{letter-spacing:-5.945625px;}
.ls9_c00206{letter-spacing:-5.196713px;}
.lsd_c00206{letter-spacing:-4.960800px;}
.ls4_c00206{letter-spacing:-4.456463px;}
.ls10_c00206{letter-spacing:-4.111800px;}
.lsf_c00206{letter-spacing:-3.754800px;}
.ls2_c00206{letter-spacing:-3.717000px;}
.ls11_c00206{letter-spacing:-3.438750px;}
.ls7_c00206{letter-spacing:-2.971800px;}
.ls0_c00206{letter-spacing:-2.968875px;}
.ls13_c00206{letter-spacing:-2.917200px;}
.ls14_c00206{letter-spacing:-2.247000px;}
.ls1_c00206{letter-spacing:-2.229413px;}
.ls5_c00206{letter-spacing:-1.489163px;}
.lse_c00206{letter-spacing:-1.454400px;}
.ls6_c00206{letter-spacing:-0.740250px;}
.ls3_c00206{letter-spacing:0.000000px;}
.ls16_c00206{letter-spacing:0.772650px;}
.ls8_c00206{letter-spacing:4.181700px;}
.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;}
._18_c00206{margin-left:-39.732060px;}
._6_c00206{margin-left:-14.167511px;}
._8_c00206{margin-left:-9.177436px;}
._a_c00206{margin-left:-6.220715px;}
._9_c00206{margin-left:-4.063084px;}
._7_c00206{margin-left:-2.516850px;}
._b_c00206{margin-left:-1.391453px;}
._c_c00206{width:1.622042px;}
._e_c00206{width:3.630108px;}
._4_c00206{width:4.761804px;}
._1_c00206{width:6.743912px;}
._1a_c00206{width:7.964953px;}
._10_c00206{width:9.020753px;}
._d_c00206{width:10.214989px;}
._3_c00206{width:11.875886px;}
._0_c00206{width:13.355495px;}
._19_c00206{width:14.402914px;}
._12_c00206{width:15.436144px;}
._11_c00206{width:16.999614px;}
._5_c00206{width:18.900475px;}
._2_c00206{width:20.286238px;}
._f_c00206{width:21.768298px;}
._17_c00206{width:24.414996px;}
._13_c00206{width:25.419371px;}
._14_c00206{width:26.592924px;}
._16_c00206{width:28.107732px;}
._15_c00206{width:101.113366px;}
.fc0_c00206{color:transparent;}
.fs9_c00206{font-size:72.000000px;}
.fsa_c00206{font-size:75.750000px;}
.fs7_c00206{font-size:76.500000px;}
.fs4_c00206{font-size:78.000000px;}
.fs0_c00206{font-size:78.750000px;}
.fs5_c00206{font-size:79.500000px;}
.fs6_c00206{font-size:80.250000px;}
.fs8_c00206{font-size:82.500000px;}
.fsb_c00206{font-size:84.000000px;}
.fs1_c00206{font-size:84.750000px;}
.fsd_c00206{font-size:98.250000px;}
.fs2_c00206{font-size:101.250000px;}
.fsc_c00206{font-size:111.750000px;}
.fs3_c00206{font-size:115.500000px;}
.y0_c00206{bottom:0.000000px;}
.y24_c00206{bottom:188.279850px;}
.y23_c00206{bottom:188.280765px;}
.y21_c00206{bottom:209.158950px;}
.y22_c00206{bottom:209.159385px;}
.y20_c00206{bottom:230.399850px;}
.y1f_c00206{bottom:230.400780px;}
.y1e_c00206{bottom:289.439550px;}
.y1d_c00206{bottom:318.959085px;}
.y1b_c00206{bottom:378.718020px;}
.y1c_c00206{bottom:378.718530px;}
.y1a_c00206{bottom:399.958920px;}
.y19_c00206{bottom:421.558635px;}
.y18_c00206{bottom:421.559265px;}
.y17_c00206{bottom:442.439670px;}
.y16_c00206{bottom:464.039385px;}
.y15_c00206{bottom:523.078770px;}
.y14_c00206{bottom:582.840135px;}
.y13_c00206{bottom:582.840390px;}
.y12_c00206{bottom:604.439670px;}
.y11_c00206{bottom:663.119505px;}
.y10_c00206{bottom:693.359415px;}
.yf_c00206{bottom:753.839535px;}
.ye_c00206{bottom:774.360165px;}
.yd_c00206{bottom:834.119610px;}
.yc_c00206{bottom:863.639145px;}
.ya_c00206{bottom:923.397975px;}
.yb_c00206{bottom:923.398590px;}
.y8_c00206{bottom:945.358770px;}
.y9_c00206{bottom:945.359250px;}
.y6_c00206{bottom:966.598935px;}
.y7_c00206{bottom:966.599670px;}
.y5_c00206{bottom:1026.000000px;}
.y4_c00206{bottom:1055.158815px;}
.y2_c00206{bottom:1114.558440px;}
.y3_c00206{bottom:1114.559055px;}
.y1_c00206{bottom:1136.519715px;}
.hb_c00206{height:72.562500px;}
.hc_c00206{height:74.344482px;}
.h9_c00206{height:75.080566px;}
.h6_c00206{height:76.552734px;}
.h1_c00206{height:77.288818px;}
.h7_c00206{height:78.024902px;}
.h8_c00206{height:78.760986px;}
.he_c00206{height:80.969238px;}
.ha_c00206{height:81.533203px;}
.h5_c00206{height:82.133789px;}
.h11_c00206{height:83.015625px;}
.h2_c00206{height:83.177490px;}
.hd_c00206{height:87.609375px;}
.h10_c00206{height:102.471680px;}
.h3_c00206{height:105.600586px;}
.hf_c00206{height:116.551758px;}
.h4_c00206{height:120.462891px;}
.h0_c00206{height:1263.000000px;}
.w0_c00206{width:892.500000px;}
.x0_c00206{left:0.000000px;}
.xa_c00206{left:139.319250px;}
.xc_c00206{left:154.439250px;}
.xb_c00206{left:163.079400px;}
.x1_c00206{left:193.319250px;}
.x4_c00206{left:194.401680px;}
.x16_c00206{left:202.679700px;}
.x17_c00206{left:215.279850px;}
.x18_c00206{left:224.279250px;}
.x1d_c00206{left:227.878350px;}
.x11_c00206{left:248.039385px;}
.x14_c00206{left:251.999400px;}
.x12_c00206{left:268.559685px;}
.xf_c00206{left:287.998950px;}
.x25_c00206{left:289.080000px;}
.x26_c00206{left:298.438635px;}
.x15_c00206{left:305.279250px;}
.x2d_c00206{left:308.519100px;}
.x1e_c00206{left:317.518635px;}
.x10_c00206{left:320.399235px;}
.x2e_c00206{left:329.039385px;}
.x1f_c00206{left:341.998950px;}
.x33_c00206{left:369.359850px;}
.x13_c00206{left:374.040000px;}
.x34_c00206{left:384.479685px;}
.x2f_c00206{left:385.559100px;}
.x30_c00206{left:400.679070px;}
.x5_c00206{left:402.478635px;}
.x1b_c00206{left:406.438665px;}
.x6_c00206{left:408.599070px;}
.x7_c00206{left:414.719565px;}
.x2_c00206{left:416.159820px;}
.x1c_c00206{left:420.479235px;}
.x8_c00206{left:428.399235px;}
.x3_c00206{left:432.718500px;}
.x35_c00206{left:448.199385px;}
.x31_c00206{left:457.918950px;}
.x9_c00206{left:462.958335px;}
.x21_c00206{left:469.798920px;}
.x32_c00206{left:475.199385px;}
.x27_c00206{left:480.238770px;}
.x22_c00206{left:483.839535px;}
.x19_c00206{left:493.918350px;}
.x1a_c00206{left:507.599670px;}
.x28_c00206{left:518.398635px;}
.x36_c00206{left:564.478635px;}
.x2b_c00206{left:565.559685px;}
.x37_c00206{left:579.239220px;}
.x2c_c00206{left:586.439250px;}
.x29_c00206{left:621.718545px;}
.x2a_c00206{left:664.919535px;}
.x23_c00206{left:702.718545px;}
.x24_c00206{left:716.759085px;}
.xd_c00206{left:718.919535px;}
.xe_c00206{left:739.078770px;}
.x20_c00206{left:755.639100px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.lsc_c00206{letter-spacing:-16.199333pt;}
.lsb_c00206{letter-spacing:-15.620000pt;}
.ls15_c00206{letter-spacing:-11.415787pt;}
.ls17_c00206{letter-spacing:-11.277933pt;}
.ls12_c00206{letter-spacing:-5.943000pt;}
.lsa_c00206{letter-spacing:-5.285000pt;}
.ls9_c00206{letter-spacing:-4.619300pt;}
.lsd_c00206{letter-spacing:-4.409600pt;}
.ls4_c00206{letter-spacing:-3.961300pt;}
.ls10_c00206{letter-spacing:-3.654933pt;}
.lsf_c00206{letter-spacing:-3.337600pt;}
.ls2_c00206{letter-spacing:-3.304000pt;}
.ls11_c00206{letter-spacing:-3.056667pt;}
.ls7_c00206{letter-spacing:-2.641600pt;}
.ls0_c00206{letter-spacing:-2.639000pt;}
.ls13_c00206{letter-spacing:-2.593067pt;}
.ls14_c00206{letter-spacing:-1.997333pt;}
.ls1_c00206{letter-spacing:-1.981700pt;}
.ls5_c00206{letter-spacing:-1.323700pt;}
.lse_c00206{letter-spacing:-1.292800pt;}
.ls6_c00206{letter-spacing:-0.658000pt;}
.ls3_c00206{letter-spacing:0.000000pt;}
.ls16_c00206{letter-spacing:0.686800pt;}
.ls8_c00206{letter-spacing:3.717067pt;}
.ws0_c00206{word-spacing:0.000000pt;}
._18_c00206{margin-left:-35.317387pt;}
._6_c00206{margin-left:-12.593343pt;}
._8_c00206{margin-left:-8.157721pt;}
._a_c00206{margin-left:-5.529525pt;}
._9_c00206{margin-left:-3.611630pt;}
._7_c00206{margin-left:-2.237200pt;}
._b_c00206{margin-left:-1.236847pt;}
._c_c00206{width:1.441815pt;}
._e_c00206{width:3.226762pt;}
._4_c00206{width:4.232715pt;}
._1_c00206{width:5.994589pt;}
._1a_c00206{width:7.079958pt;}
._10_c00206{width:8.018447pt;}
._d_c00206{width:9.079991pt;}
._3_c00206{width:10.556343pt;}
._0_c00206{width:11.871551pt;}
._19_c00206{width:12.802591pt;}
._12_c00206{width:13.721017pt;}
._11_c00206{width:15.110768pt;}
._5_c00206{width:16.800423pt;}
._2_c00206{width:18.032211pt;}
._f_c00206{width:19.349598pt;}
._17_c00206{width:21.702219pt;}
._13_c00206{width:22.594996pt;}
._14_c00206{width:23.638155pt;}
._16_c00206{width:24.984651pt;}
._15_c00206{width:89.878547pt;}
.fs9_c00206{font-size:64.000000pt;}
.fsa_c00206{font-size:67.333333pt;}
.fs7_c00206{font-size:68.000000pt;}
.fs4_c00206{font-size:69.333333pt;}
.fs0_c00206{font-size:70.000000pt;}
.fs5_c00206{font-size:70.666667pt;}
.fs6_c00206{font-size:71.333333pt;}
.fs8_c00206{font-size:73.333333pt;}
.fsb_c00206{font-size:74.666667pt;}
.fs1_c00206{font-size:75.333333pt;}
.fsd_c00206{font-size:87.333333pt;}
.fs2_c00206{font-size:90.000000pt;}
.fsc_c00206{font-size:99.333333pt;}
.fs3_c00206{font-size:102.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y24_c00206{bottom:167.359867pt;}
.y23_c00206{bottom:167.360680pt;}
.y21_c00206{bottom:185.919067pt;}
.y22_c00206{bottom:185.919453pt;}
.y20_c00206{bottom:204.799867pt;}
.y1f_c00206{bottom:204.800693pt;}
.y1e_c00206{bottom:257.279600pt;}
.y1d_c00206{bottom:283.519187pt;}
.y1b_c00206{bottom:336.638240pt;}
.y1c_c00206{bottom:336.638693pt;}
.y1a_c00206{bottom:355.519040pt;}
.y19_c00206{bottom:374.718787pt;}
.y18_c00206{bottom:374.719347pt;}
.y17_c00206{bottom:393.279707pt;}
.y16_c00206{bottom:412.479453pt;}
.y15_c00206{bottom:464.958907pt;}
.y14_c00206{bottom:518.080120pt;}
.y13_c00206{bottom:518.080347pt;}
.y12_c00206{bottom:537.279707pt;}
.y11_c00206{bottom:589.439560pt;}
.y10_c00206{bottom:616.319480pt;}
.yf_c00206{bottom:670.079587pt;}
.ye_c00206{bottom:688.320147pt;}
.yd_c00206{bottom:741.439653pt;}
.yc_c00206{bottom:767.679240pt;}
.ya_c00206{bottom:820.798200pt;}
.yb_c00206{bottom:820.798747pt;}
.y8_c00206{bottom:840.318907pt;}
.y9_c00206{bottom:840.319333pt;}
.y6_c00206{bottom:859.199053pt;}
.y7_c00206{bottom:859.199707pt;}
.y5_c00206{bottom:912.000000pt;}
.y4_c00206{bottom:937.918947pt;}
.y2_c00206{bottom:990.718613pt;}
.y3_c00206{bottom:990.719160pt;}
.y1_c00206{bottom:1010.239747pt;}
.hb_c00206{height:64.500000pt;}
.hc_c00206{height:66.083984pt;}
.h9_c00206{height:66.738281pt;}
.h6_c00206{height:68.046875pt;}
.h1_c00206{height:68.701172pt;}
.h7_c00206{height:69.355469pt;}
.h8_c00206{height:70.009766pt;}
.he_c00206{height:71.972656pt;}
.ha_c00206{height:72.473958pt;}
.h5_c00206{height:73.007812pt;}
.h11_c00206{height:73.791667pt;}
.h2_c00206{height:73.935547pt;}
.hd_c00206{height:77.875000pt;}
.h10_c00206{height:91.085938pt;}
.h3_c00206{height:93.867188pt;}
.hf_c00206{height:103.601562pt;}
.h4_c00206{height:107.078125pt;}
.h0_c00206{height:1122.666667pt;}
.w0_c00206{width:793.333333pt;}
.x0_c00206{left:0.000000pt;}
.xa_c00206{left:123.839333pt;}
.xc_c00206{left:137.279333pt;}
.xb_c00206{left:144.959467pt;}
.x1_c00206{left:171.839333pt;}
.x4_c00206{left:172.801493pt;}
.x16_c00206{left:180.159733pt;}
.x17_c00206{left:191.359867pt;}
.x18_c00206{left:199.359333pt;}
.x1d_c00206{left:202.558533pt;}
.x11_c00206{left:220.479453pt;}
.x14_c00206{left:223.999467pt;}
.x12_c00206{left:238.719720pt;}
.xf_c00206{left:255.999067pt;}
.x25_c00206{left:256.960000pt;}
.x26_c00206{left:265.278787pt;}
.x15_c00206{left:271.359333pt;}
.x2d_c00206{left:274.239200pt;}
.x1e_c00206{left:282.238787pt;}
.x10_c00206{left:284.799320pt;}
.x2e_c00206{left:292.479453pt;}
.x1f_c00206{left:303.999067pt;}
.x33_c00206{left:328.319867pt;}
.x13_c00206{left:332.480000pt;}
.x34_c00206{left:341.759720pt;}
.x2f_c00206{left:342.719200pt;}
.x30_c00206{left:356.159173pt;}
.x5_c00206{left:357.758787pt;}
.x1b_c00206{left:361.278813pt;}
.x6_c00206{left:363.199173pt;}
.x7_c00206{left:368.639613pt;}
.x2_c00206{left:369.919840pt;}
.x1c_c00206{left:373.759320pt;}
.x8_c00206{left:380.799320pt;}
.x3_c00206{left:384.638667pt;}
.x35_c00206{left:398.399453pt;}
.x31_c00206{left:407.039067pt;}
.x9_c00206{left:411.518520pt;}
.x21_c00206{left:417.599040pt;}
.x32_c00206{left:422.399453pt;}
.x27_c00206{left:426.878907pt;}
.x22_c00206{left:430.079587pt;}
.x19_c00206{left:439.038533pt;}
.x1a_c00206{left:451.199707pt;}
.x28_c00206{left:460.798787pt;}
.x36_c00206{left:501.758787pt;}
.x2b_c00206{left:502.719720pt;}
.x37_c00206{left:514.879307pt;}
.x2c_c00206{left:521.279333pt;}
.x29_c00206{left:552.638707pt;}
.x2a_c00206{left:591.039587pt;}
.x23_c00206{left:624.638707pt;}
.x24_c00206{left:637.119187pt;}
.xd_c00206{left:639.039587pt;}
.xe_c00206{left:656.958907pt;}
.x20_c00206{left:671.679200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93abf51d9757e7f12d6ec245.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_18c0caf6296fc6f1d8cf6fcf.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_088dc0b25a78ceb119813de2.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_a949c6e1aefe389b47b9009b.woff2')format("woff");}.ff4_c00207{font-family:ff4_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;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_02fc5d23fa6479293b926586.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_fc1410aa419d94fffba2aa87.woff2')format("woff");}.ff6_c00207{font-family:ff6_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;}
.m1_c00207{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.186893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186893,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{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_c00207{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m21_c00207{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.m14_c00207{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m13_c00207{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.mb_c00207{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m22_c00207{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);}
.m24_c00207{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m1d_c00207{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m15_c00207{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m6_c00207{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m1f_c00207{transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.ma_c00207{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m25_c00207{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26_c00207{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m29_c00207{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m1b_c00207{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);}
.m28_c00207{transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);}
.m19_c00207{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m27_c00207{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{transform:matrix(0.387931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387931,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520833,0.000000,0.000000,0.250000,0,0);}
.md_c00207{transform:matrix(0.575617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575617,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls27_c00207{letter-spacing:-16.154400px;}
.ls1f_c00207{letter-spacing:-15.259725px;}
.ls1e_c00207{letter-spacing:-12.832500px;}
.ls6_c00207{letter-spacing:-11.601450px;}
.ls24_c00207{letter-spacing:-11.348400px;}
.lsa_c00207{letter-spacing:-8.996828px;}
.ls18_c00207{letter-spacing:-8.914500px;}
.lsb_c00207{letter-spacing:-7.574580px;}
.ls2d_c00207{letter-spacing:-7.426125px;}
.ls21_c00207{letter-spacing:-7.418250px;}
.ls29_c00207{letter-spacing:-6.685875px;}
.ls15_c00207{letter-spacing:-5.945625px;}
.ls1a_c00207{letter-spacing:-5.316638px;}
.ls14_c00207{letter-spacing:-5.196713px;}
.ls22_c00207{letter-spacing:-5.115750px;}
.ls2c_c00207{letter-spacing:-5.015625px;}
.ls2a_c00207{letter-spacing:-4.696500px;}
.lsf_c00207{letter-spacing:-4.478775px;}
.ls2b_c00207{letter-spacing:-4.456463px;}
.lse_c00207{letter-spacing:-4.330463px;}
.ls17_c00207{letter-spacing:-3.927000px;}
.ls11_c00207{letter-spacing:-3.717000px;}
.ls25_c00207{letter-spacing:-3.564000px;}
.ls1_c00207{letter-spacing:-2.968875px;}
.ls1b_c00207{letter-spacing:-2.855775px;}
.ls2_c00207{letter-spacing:-2.229413px;}
.ls10_c00207{letter-spacing:-2.160000px;}
.lsc_c00207{letter-spacing:-1.512420px;}
.ls26_c00207{letter-spacing:-1.498500px;}
.ls12_c00207{letter-spacing:-1.489163px;}
.ls9_c00207{letter-spacing:-1.004250px;}
.ls1d_c00207{letter-spacing:-0.809190px;}
.ls28_c00207{letter-spacing:-0.750750px;}
.ls3_c00207{letter-spacing:-0.740250px;}
.ls4_c00207{letter-spacing:0.000000px;}
.ls16_c00207{letter-spacing:1.709400px;}
.ls13_c00207{letter-spacing:2.009700px;}
.ls0_c00207{letter-spacing:2.269800px;}
.ls1c_c00207{letter-spacing:2.386020px;}
.ls20_c00207{letter-spacing:2.584710px;}
.ls5_c00207{letter-spacing:3.786008px;}
.ls19_c00207{letter-spacing:6.166125px;}
.ls23_c00207{letter-spacing:9.004050px;}
.lsd_c00207{letter-spacing:10.124325px;}
.ls8_c00207{letter-spacing:18.532125px;}
.ls7_c00207{letter-spacing:24.469380px;}
.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;}
._1b_c00207{margin-left:-45.368850px;}
._10_c00207{margin-left:-33.250440px;}
._1f_c00207{margin-left:-31.792440px;}
._1_c00207{margin-left:-25.818663px;}
._3_c00207{margin-left:-14.379631px;}
._20_c00207{margin-left:-8.998658px;}
._1d_c00207{margin-left:-5.333247px;}
._1c_c00207{margin-left:-2.503789px;}
._1a_c00207{width:1.605519px;}
._11_c00207{width:2.664053px;}
._6_c00207{width:4.768194px;}
._0_c00207{width:6.165709px;}
._b_c00207{width:7.816502px;}
._1e_c00207{width:8.942048px;}
._8_c00207{width:10.449471px;}
._a_c00207{width:12.315282px;}
._2_c00207{width:13.622442px;}
._9_c00207{width:14.799948px;}
._7_c00207{width:15.999058px;}
._5_c00207{width:17.487552px;}
._e_c00207{width:19.554413px;}
._12_c00207{width:20.745915px;}
._4_c00207{width:21.843181px;}
._d_c00207{width:22.860011px;}
._c_c00207{width:24.179667px;}
._f_c00207{width:25.356969px;}
._16_c00207{width:26.516967px;}
._13_c00207{width:28.329436px;}
._15_c00207{width:29.844883px;}
._17_c00207{width:31.390285px;}
._19_c00207{width:34.410392px;}
._18_c00207{width:35.990890px;}
._14_c00207{width:43.847465px;}
.fc0_c00207{color:transparent;}
.fsc_c00207{font-size:14.250000px;}
.fsd_c00207{font-size:18.000000px;}
.fs2_c00207{font-size:54.750000px;}
.fs1_c00207{font-size:56.250000px;}
.fs3_c00207{font-size:60.000000px;}
.fs7_c00207{font-size:63.750000px;}
.fs5_c00207{font-size:65.250000px;}
.fsa_c00207{font-size:67.500000px;}
.fs4_c00207{font-size:74.250000px;}
.fs13_c00207{font-size:75.000000px;}
.fs11_c00207{font-size:75.750000px;}
.fs8_c00207{font-size:77.250000px;}
.fs6_c00207{font-size:78.000000px;}
.fs0_c00207{font-size:78.750000px;}
.fs16_c00207{font-size:79.500000px;}
.fs9_c00207{font-size:80.250000px;}
.fs12_c00207{font-size:81.000000px;}
.fse_c00207{font-size:82.500000px;}
.fs15_c00207{font-size:84.000000px;}
.fs17_c00207{font-size:84.750000px;}
.fs14_c00207{font-size:87.750000px;}
.fs10_c00207{font-size:101.250000px;}
.fsf_c00207{font-size:115.500000px;}
.fsb_c00207{font-size:121.500000px;}
.y0_c00207{bottom:0.000000px;}
.y26_c00207{bottom:297.720090px;}
.y25_c00207{bottom:327.960000px;}
.y24_c00207{bottom:327.960870px;}
.y23_c00207{bottom:357.840585px;}
.y22_c00207{bottom:357.841740px;}
.y21_c00207{bottom:387.721455px;}
.y20_c00207{bottom:446.762325px;}
.y1f_c00207{bottom:468.361635px;}
.y1e_c00207{bottom:489.240255px;}
.y1c_c00207{bottom:510.838470px;}
.y1d_c00207{bottom:510.839535px;}
.y1b_c00207{bottom:532.079385px;}
.y1a_c00207{bottom:553.320285px;}
.y19_c00207{bottom:553.320720px;}
.y17_c00207{bottom:574.919520px;}
.y18_c00207{bottom:574.920000px;}
.y16_c00207{bottom:596.160420px;}
.y15_c00207{bottom:655.560465px;}
.y14_c00207{bottom:684.719520px;}
.y13_c00207{bottom:714.420600px;}
.y12_c00207{bottom:750.599670px;}
.y10_c00207{bottom:774.359760px;}
.y11_c00207{bottom:774.359805px;}
.ye_c00207{bottom:804.599625px;}
.yf_c00207{bottom:804.599670px;}
.yd_c00207{bottom:834.839535px;}
.yc_c00207{bottom:864.000000px;}
.yb_c00207{bottom:864.000900px;}
.ya_c00207{bottom:893.880615px;}
.y9_c00207{bottom:893.880885px;}
.y8_c00207{bottom:923.400420px;}
.y7_c00207{bottom:983.159865px;}
.y6_c00207{bottom:1013.399775px;}
.y5_c00207{bottom:1013.399805px;}
.y4_c00207{bottom:1042.921140px;}
.y3_c00207{bottom:1072.800105px;}
.y2_c00207{bottom:1074.599670px;}
.y1_c00207{bottom:1132.200435px;}
.he_c00207{height:14.083008px;}
.hf_c00207{height:17.789062px;}
.h3_c00207{height:54.108398px;}
.h2_c00207{height:58.666992px;}
.h4_c00207{height:60.468750px;}
.h8_c00207{height:62.567139px;}
.h6_c00207{height:64.485352px;}
.hb_c00207{height:66.214600px;}
.h15_c00207{height:74.344482px;}
.h5_c00207{height:74.830078px;}
.h9_c00207{height:76.344727px;}
.h12_c00207{height:76.552734px;}
.h1_c00207{height:77.288818px;}
.h1b_c00207{height:78.024902px;}
.h17_c00207{height:78.222656px;}
.h7_c00207{height:78.609375px;}
.ha_c00207{height:78.760986px;}
.hc_c00207{height:79.365234px;}
.h19_c00207{height:80.876953px;}
.h10_c00207{height:80.969238px;}
.h16_c00207{height:81.632812px;}
.h14_c00207{height:82.133789px;}
.h1a_c00207{height:83.015625px;}
.h1c_c00207{height:83.177490px;}
.h18_c00207{height:86.721680px;}
.h13_c00207{height:105.600586px;}
.h11_c00207{height:120.462891px;}
.hd_c00207{height:126.720703px;}
.h0_c00207{height:1263.000000px;}
.w0_c00207{width:892.500000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:139.678500px;}
.x18_c00207{left:140.759565px;}
.x3_c00207{left:149.759100px;}
.x19_c00207{left:161.639100px;}
.x4_c00207{left:164.878950px;}
.x1a_c00207{left:176.038950px;}
.x1_c00207{left:194.039400px;}
.x32_c00207{left:195.479685px;}
.x3e_c00207{left:213.839535px;}
.x23_c00207{left:216.359250px;}
.x33_c00207{left:226.439685px;}
.x3f_c00207{left:229.318800px;}
.x5_c00207{left:233.278800px;}
.x24_c00207{left:237.238785px;}
.x26_c00207{left:254.159850px;}
.x3c_c00207{left:268.559685px;}
.x3d_c00207{left:287.278800px;}
.x25_c00207{left:290.159385px;}
.x2d_c00207{left:294.839535px;}
.x3a_c00207{left:297.359250px;}
.x42_c00207{left:300.239850px;}
.x6_c00207{left:309.598530px;}
.x43_c00207{left:313.919535px;}
.x3b_c00207{left:318.238785px;}
.x7_c00207{left:330.118785px;}
.x2e_c00207{left:332.638530px;}
.x27_c00207{left:338.759100px;}
.x31_c00207{left:357.479685px;}
.x28_c00207{left:358.918350px;}
.x8_c00207{left:384.838950px;}
.x40_c00207{left:388.798920px;}
.x14_c00207{left:396.359850px;}
.x41_c00207{left:403.559685px;}
.x15_c00207{left:415.798920px;}
.x1b_c00207{left:421.199385px;}
.x1c_c00207{left:440.279250px;}
.x9_c00207{left:448.919535px;}
.xa_c00207{left:471.598530px;}
.x36_c00207{left:503.639700px;}
.x29_c00207{left:509.039985px;}
.x34_c00207{left:513.718500px;}
.x37_c00207{left:526.318770px;}
.x35_c00207{left:528.479235px;}
.x2f_c00207{left:548.279250px;}
.xb_c00207{left:564.839535px;}
.x30_c00207{left:569.878920px;}
.x2a_c00207{left:589.679070px;}
.x16_c00207{left:635.038920px;}
.x38_c00207{left:646.198785px;}
.x17_c00207{left:649.438620px;}
.x39_c00207{left:665.639700px;}
.xf_c00207{left:681.838950px;}
.x2b_c00207{left:683.999400px;}
.xc_c00207{left:690.119985px;}
.x10_c00207{left:700.559685px;}
.x11_c00207{left:710.999400px;}
.x2c_c00207{left:712.078770px;}
.x1f_c00207{left:719.639700px;}
.x12_c00207{left:725.758530px;}
.x1d_c00207{left:727.198785px;}
.x20_c00207{left:728.279850px;}
.xd_c00207{left:734.759535px;}
.x21_c00207{left:740.159820px;}
.x13_c00207{left:744.119985px;}
.x1e_c00207{left:751.679070px;}
.x22_c00207{left:754.918950px;}
.xe_c00207{left:757.799520px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls27_c00207{letter-spacing:-14.359467pt;}
.ls1f_c00207{letter-spacing:-13.564200pt;}
.ls1e_c00207{letter-spacing:-11.406667pt;}
.ls6_c00207{letter-spacing:-10.312400pt;}
.ls24_c00207{letter-spacing:-10.087467pt;}
.lsa_c00207{letter-spacing:-7.997180pt;}
.ls18_c00207{letter-spacing:-7.924000pt;}
.lsb_c00207{letter-spacing:-6.732960pt;}
.ls2d_c00207{letter-spacing:-6.601000pt;}
.ls21_c00207{letter-spacing:-6.594000pt;}
.ls29_c00207{letter-spacing:-5.943000pt;}
.ls15_c00207{letter-spacing:-5.285000pt;}
.ls1a_c00207{letter-spacing:-4.725900pt;}
.ls14_c00207{letter-spacing:-4.619300pt;}
.ls22_c00207{letter-spacing:-4.547333pt;}
.ls2c_c00207{letter-spacing:-4.458333pt;}
.ls2a_c00207{letter-spacing:-4.174667pt;}
.lsf_c00207{letter-spacing:-3.981133pt;}
.ls2b_c00207{letter-spacing:-3.961300pt;}
.lse_c00207{letter-spacing:-3.849300pt;}
.ls17_c00207{letter-spacing:-3.490667pt;}
.ls11_c00207{letter-spacing:-3.304000pt;}
.ls25_c00207{letter-spacing:-3.168000pt;}
.ls1_c00207{letter-spacing:-2.639000pt;}
.ls1b_c00207{letter-spacing:-2.538467pt;}
.ls2_c00207{letter-spacing:-1.981700pt;}
.ls10_c00207{letter-spacing:-1.920000pt;}
.lsc_c00207{letter-spacing:-1.344373pt;}
.ls26_c00207{letter-spacing:-1.332000pt;}
.ls12_c00207{letter-spacing:-1.323700pt;}
.ls9_c00207{letter-spacing:-0.892667pt;}
.ls1d_c00207{letter-spacing:-0.719280pt;}
.ls28_c00207{letter-spacing:-0.667333pt;}
.ls3_c00207{letter-spacing:-0.658000pt;}
.ls4_c00207{letter-spacing:0.000000pt;}
.ls16_c00207{letter-spacing:1.519467pt;}
.ls13_c00207{letter-spacing:1.786400pt;}
.ls0_c00207{letter-spacing:2.017600pt;}
.ls1c_c00207{letter-spacing:2.120907pt;}
.ls20_c00207{letter-spacing:2.297520pt;}
.ls5_c00207{letter-spacing:3.365340pt;}
.ls19_c00207{letter-spacing:5.481000pt;}
.ls23_c00207{letter-spacing:8.003600pt;}
.lsd_c00207{letter-spacing:8.999400pt;}
.ls8_c00207{letter-spacing:16.473000pt;}
.ls7_c00207{letter-spacing:21.750560pt;}
.ws0_c00207{word-spacing:0.000000pt;}
._1b_c00207{margin-left:-40.327867pt;}
._10_c00207{margin-left:-29.555947pt;}
._1f_c00207{margin-left:-28.259947pt;}
._1_c00207{margin-left:-22.949923pt;}
._3_c00207{margin-left:-12.781894pt;}
._20_c00207{margin-left:-7.998808pt;}
._1d_c00207{margin-left:-4.740664pt;}
._1c_c00207{margin-left:-2.225591pt;}
._1a_c00207{width:1.427128pt;}
._11_c00207{width:2.368047pt;}
._6_c00207{width:4.238394pt;}
._0_c00207{width:5.480630pt;}
._b_c00207{width:6.948002pt;}
._1e_c00207{width:7.948487pt;}
._8_c00207{width:9.288419pt;}
._a_c00207{width:10.946917pt;}
._2_c00207{width:12.108838pt;}
._9_c00207{width:13.155509pt;}
._7_c00207{width:14.221385pt;}
._5_c00207{width:15.544491pt;}
._e_c00207{width:17.381700pt;}
._12_c00207{width:18.440813pt;}
._4_c00207{width:19.416161pt;}
._d_c00207{width:20.320009pt;}
._c_c00207{width:21.493038pt;}
._f_c00207{width:22.539528pt;}
._16_c00207{width:23.570638pt;}
._13_c00207{width:25.181721pt;}
._15_c00207{width:26.528785pt;}
._17_c00207{width:27.902475pt;}
._19_c00207{width:30.587015pt;}
._18_c00207{width:31.991902pt;}
._14_c00207{width:38.975525pt;}
.fsc_c00207{font-size:12.666667pt;}
.fsd_c00207{font-size:16.000000pt;}
.fs2_c00207{font-size:48.666667pt;}
.fs1_c00207{font-size:50.000000pt;}
.fs3_c00207{font-size:53.333333pt;}
.fs7_c00207{font-size:56.666667pt;}
.fs5_c00207{font-size:58.000000pt;}
.fsa_c00207{font-size:60.000000pt;}
.fs4_c00207{font-size:66.000000pt;}
.fs13_c00207{font-size:66.666667pt;}
.fs11_c00207{font-size:67.333333pt;}
.fs8_c00207{font-size:68.666667pt;}
.fs6_c00207{font-size:69.333333pt;}
.fs0_c00207{font-size:70.000000pt;}
.fs16_c00207{font-size:70.666667pt;}
.fs9_c00207{font-size:71.333333pt;}
.fs12_c00207{font-size:72.000000pt;}
.fse_c00207{font-size:73.333333pt;}
.fs15_c00207{font-size:74.666667pt;}
.fs17_c00207{font-size:75.333333pt;}
.fs14_c00207{font-size:78.000000pt;}
.fs10_c00207{font-size:90.000000pt;}
.fsf_c00207{font-size:102.666667pt;}
.fsb_c00207{font-size:108.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y26_c00207{bottom:264.640080pt;}
.y25_c00207{bottom:291.520000pt;}
.y24_c00207{bottom:291.520773pt;}
.y23_c00207{bottom:318.080520pt;}
.y22_c00207{bottom:318.081547pt;}
.y21_c00207{bottom:344.641293pt;}
.y20_c00207{bottom:397.122067pt;}
.y1f_c00207{bottom:416.321453pt;}
.y1e_c00207{bottom:434.880227pt;}
.y1c_c00207{bottom:454.078640pt;}
.y1d_c00207{bottom:454.079587pt;}
.y1b_c00207{bottom:472.959453pt;}
.y1a_c00207{bottom:491.840253pt;}
.y19_c00207{bottom:491.840640pt;}
.y17_c00207{bottom:511.039573pt;}
.y18_c00207{bottom:511.040000pt;}
.y16_c00207{bottom:529.920373pt;}
.y15_c00207{bottom:582.720413pt;}
.y14_c00207{bottom:608.639573pt;}
.y13_c00207{bottom:635.040533pt;}
.y12_c00207{bottom:667.199707pt;}
.y10_c00207{bottom:688.319787pt;}
.y11_c00207{bottom:688.319827pt;}
.ye_c00207{bottom:715.199667pt;}
.yf_c00207{bottom:715.199707pt;}
.yd_c00207{bottom:742.079587pt;}
.yc_c00207{bottom:768.000000pt;}
.yb_c00207{bottom:768.000800pt;}
.ya_c00207{bottom:794.560547pt;}
.y9_c00207{bottom:794.560787pt;}
.y8_c00207{bottom:820.800373pt;}
.y7_c00207{bottom:873.919880pt;}
.y6_c00207{bottom:900.799800pt;}
.y5_c00207{bottom:900.799827pt;}
.y4_c00207{bottom:927.041013pt;}
.y3_c00207{bottom:953.600093pt;}
.y2_c00207{bottom:955.199707pt;}
.y1_c00207{bottom:1006.400387pt;}
.he_c00207{height:12.518229pt;}
.hf_c00207{height:15.812500pt;}
.h3_c00207{height:48.096354pt;}
.h2_c00207{height:52.148438pt;}
.h4_c00207{height:53.750000pt;}
.h8_c00207{height:55.615234pt;}
.h6_c00207{height:57.320313pt;}
.hb_c00207{height:58.857422pt;}
.h15_c00207{height:66.083984pt;}
.h5_c00207{height:66.515625pt;}
.h9_c00207{height:67.861979pt;}
.h12_c00207{height:68.046875pt;}
.h1_c00207{height:68.701172pt;}
.h1b_c00207{height:69.355469pt;}
.h17_c00207{height:69.531250pt;}
.h7_c00207{height:69.875000pt;}
.ha_c00207{height:70.009766pt;}
.hc_c00207{height:70.546875pt;}
.h19_c00207{height:71.890625pt;}
.h10_c00207{height:71.972656pt;}
.h16_c00207{height:72.562500pt;}
.h14_c00207{height:73.007812pt;}
.h1a_c00207{height:73.791667pt;}
.h1c_c00207{height:73.935547pt;}
.h18_c00207{height:77.085938pt;}
.h13_c00207{height:93.867188pt;}
.h11_c00207{height:107.078125pt;}
.hd_c00207{height:112.640625pt;}
.h0_c00207{height:1122.666667pt;}
.w0_c00207{width:793.333333pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:124.158667pt;}
.x18_c00207{left:125.119613pt;}
.x3_c00207{left:133.119200pt;}
.x19_c00207{left:143.679200pt;}
.x4_c00207{left:146.559067pt;}
.x1a_c00207{left:156.479067pt;}
.x1_c00207{left:172.479467pt;}
.x32_c00207{left:173.759720pt;}
.x3e_c00207{left:190.079587pt;}
.x23_c00207{left:192.319333pt;}
.x33_c00207{left:201.279720pt;}
.x3f_c00207{left:203.838933pt;}
.x5_c00207{left:207.358933pt;}
.x24_c00207{left:210.878920pt;}
.x26_c00207{left:225.919867pt;}
.x3c_c00207{left:238.719720pt;}
.x3d_c00207{left:255.358933pt;}
.x25_c00207{left:257.919453pt;}
.x2d_c00207{left:262.079587pt;}
.x3a_c00207{left:264.319333pt;}
.x42_c00207{left:266.879867pt;}
.x6_c00207{left:275.198693pt;}
.x43_c00207{left:279.039587pt;}
.x3b_c00207{left:282.878920pt;}
.x7_c00207{left:293.438920pt;}
.x2e_c00207{left:295.678693pt;}
.x27_c00207{left:301.119200pt;}
.x31_c00207{left:317.759720pt;}
.x28_c00207{left:319.038533pt;}
.x8_c00207{left:342.079067pt;}
.x40_c00207{left:345.599040pt;}
.x14_c00207{left:352.319867pt;}
.x41_c00207{left:358.719720pt;}
.x15_c00207{left:369.599040pt;}
.x1b_c00207{left:374.399453pt;}
.x1c_c00207{left:391.359333pt;}
.x9_c00207{left:399.039587pt;}
.xa_c00207{left:419.198693pt;}
.x36_c00207{left:447.679733pt;}
.x29_c00207{left:452.479987pt;}
.x34_c00207{left:456.638667pt;}
.x37_c00207{left:467.838907pt;}
.x35_c00207{left:469.759320pt;}
.x2f_c00207{left:487.359333pt;}
.xb_c00207{left:502.079587pt;}
.x30_c00207{left:506.559040pt;}
.x2a_c00207{left:524.159173pt;}
.x16_c00207{left:564.479040pt;}
.x38_c00207{left:574.398920pt;}
.x17_c00207{left:577.278773pt;}
.x39_c00207{left:591.679733pt;}
.xf_c00207{left:606.079067pt;}
.x2b_c00207{left:607.999467pt;}
.xc_c00207{left:613.439987pt;}
.x10_c00207{left:622.719720pt;}
.x11_c00207{left:631.999467pt;}
.x2c_c00207{left:632.958907pt;}
.x1f_c00207{left:639.679733pt;}
.x12_c00207{left:645.118693pt;}
.x1d_c00207{left:646.398920pt;}
.x20_c00207{left:647.359867pt;}
.xd_c00207{left:653.119587pt;}
.x21_c00207{left:657.919840pt;}
.x13_c00207{left:661.439987pt;}
.x1e_c00207{left:668.159173pt;}
.x22_c00207{left:671.039067pt;}
.xe_c00207{left:673.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fc92c7f57d870fe5aa540b.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_826d101086734fbfbfa02ddc.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.364746;font-style:normal;font-weight:normal;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_1466f45842d298e2fd205d6b.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_8f90b6fdad47a96bcc2fc877.woff2')format("woff");}.ff4_c00208{font-family:ff4_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;}
.md_c00208{transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls15_c00208{letter-spacing:-8.662598px;}
.lsf_c00208{letter-spacing:-8.175038px;}
.lsb_c00208{letter-spacing:-7.426125px;}
.ls12_c00208{letter-spacing:-6.928973px;}
.lsa_c00208{letter-spacing:-6.685875px;}
.ls11_c00208{letter-spacing:-6.065175px;}
.ls5_c00208{letter-spacing:-5.945625px;}
.ls8_c00208{letter-spacing:-5.196713px;}
.lse_c00208{letter-spacing:-4.594350px;}
.ls3_c00208{letter-spacing:-4.456463px;}
.ls4_c00208{letter-spacing:-3.717000px;}
.ls14_c00208{letter-spacing:-3.457290px;}
.ls9_c00208{letter-spacing:-3.113550px;}
.lsd_c00208{letter-spacing:-3.028950px;}
.ls2_c00208{letter-spacing:-2.968875px;}
.ls0_c00208{letter-spacing:-2.229413px;}
.ls1_c00208{letter-spacing:-1.489163px;}
.ls13_c00208{letter-spacing:-0.788603px;}
.ls7_c00208{letter-spacing:-0.740250px;}
.ls6_c00208{letter-spacing:0.000000px;}
.ls10_c00208{letter-spacing:1.396950px;}
.lsc_c00208{letter-spacing:4.737150px;}
.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;}
._1e_c00208{margin-left:-13.114349px;}
._11_c00208{margin-left:-12.080651px;}
._1f_c00208{margin-left:-10.731047px;}
._e_c00208{margin-left:-7.100293px;}
._f_c00208{margin-left:-5.740088px;}
._d_c00208{margin-left:-3.932522px;}
._10_c00208{margin-left:-2.488663px;}
._b_c00208{margin-left:-1.161979px;}
._8_c00208{width:1.334144px;}
._1d_c00208{width:2.399884px;}
._6_c00208{width:3.450320px;}
._7_c00208{width:4.543637px;}
._18_c00208{width:5.645602px;}
._9_c00208{width:6.741773px;}
._c_c00208{width:8.756554px;}
._a_c00208{width:10.556348px;}
._1c_c00208{width:11.994338px;}
._17_c00208{width:13.061802px;}
._0_c00208{width:14.078479px;}
._1a_c00208{width:15.088886px;}
._1_c00208{width:16.358856px;}
._1b_c00208{width:17.889682px;}
._19_c00208{width:19.181717px;}
._3_c00208{width:20.183417px;}
._4_c00208{width:22.322698px;}
._16_c00208{width:23.491600px;}
._2_c00208{width:24.865996px;}
._5_c00208{width:26.506745px;}
._15_c00208{width:27.984481px;}
._14_c00208{width:30.887860px;}
._13_c00208{width:34.541280px;}
._12_c00208{width:36.492245px;}
.fc0_c00208{color:transparent;}
.fsa_c00208{font-size:47.250000px;}
.fs9_c00208{font-size:50.250000px;}
.fsb_c00208{font-size:51.000000px;}
.fs4_c00208{font-size:74.250000px;}
.fs0_c00208{font-size:78.750000px;}
.fs5_c00208{font-size:79.500000px;}
.fs1_c00208{font-size:80.250000px;}
.fs7_c00208{font-size:81.750000px;}
.fs3_c00208{font-size:82.500000px;}
.fs2_c00208{font-size:83.250000px;}
.fs6_c00208{font-size:86.250000px;}
.fs8_c00208{font-size:96.000000px;}
.y0_c00208{bottom:0.000000px;}
.y22_c00208{bottom:169.920000px;}
.y21_c00208{bottom:241.559850px;}
.y20_c00208{bottom:271.079385px;}
.y1f_c00208{bottom:271.080825px;}
.y1e_c00208{bottom:300.960555px;}
.y1d_c00208{bottom:330.480075px;}
.y1c_c00208{bottom:360.359805px;}
.y1b_c00208{bottom:390.239520px;}
.y1a_c00208{bottom:449.640585px;}
.y19_c00208{bottom:479.520315px;}
.y17_c00208{bottom:509.038530px;}
.y18_c00208{bottom:509.039985px;}
.y16_c00208{bottom:538.918260px;}
.y15_c00208{bottom:568.079400px;}
.y14_c00208{bottom:598.319235px;}
.y13_c00208{bottom:598.319340px;}
.y12_c00208{bottom:628.199070px;}
.y10_c00208{bottom:687.598875px;}
.y11_c00208{bottom:687.600135px;}
.yf_c00208{bottom:776.519460px;}
.ye_c00208{bottom:806.759370px;}
.yd_c00208{bottom:836.639100px;}
.yc_c00208{bottom:836.640090px;}
.yb_c00208{bottom:866.519805px;}
.ya_c00208{bottom:896.039340px;}
.y9_c00208{bottom:896.039520px;}
.y8_c00208{bottom:925.559055px;}
.y6_c00208{bottom:955.798230px;}
.y7_c00208{bottom:955.798920px;}
.y5_c00208{bottom:985.319565px;}
.y4_c00208{bottom:1015.559490px;}
.y3_c00208{bottom:1045.439205px;}
.y2_c00208{bottom:1045.440105px;}
.y1_c00208{bottom:1075.319820px;}
.hb_c00208{height:47.619141px;}
.ha_c00208{height:49.661133px;}
.hc_c00208{height:50.402344px;}
.h5_c00208{height:72.872314px;}
.h1_c00208{height:77.288818px;}
.h6_c00208{height:78.024902px;}
.h2_c00208{height:78.760986px;}
.h8_c00208{height:80.791992px;}
.h4_c00208{height:80.969238px;}
.h3_c00208{height:81.705322px;}
.h7_c00208{height:85.239258px;}
.h9_c00208{height:100.125000px;}
.h0_c00208{height:1263.000000px;}
.w0_c00208{width:892.500000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:133.559685px;}
.x4_c00208{left:135.362955px;}
.x19_c00208{left:136.436355px;}
.x1e_c00208{left:168.118815px;}
.x1f_c00208{left:185.040000px;}
.xd_c00208{left:215.639100px;}
.xe_c00208{left:242.279850px;}
.x2_c00208{left:294.478635px;}
.x3_c00208{left:308.159850px;}
.x14_c00208{left:331.199850px;}
.x6_c00208{left:343.080000px;}
.x15_c00208{left:344.159385px;}
.x16_c00208{left:440.279250px;}
.x1a_c00208{left:456.478635px;}
.x1b_c00208{left:466.559100px;}
.x20_c00208{left:494.279250px;}
.x17_c00208{left:524.159820px;}
.x21_c00208{left:543.958335px;}
.x12_c00208{left:547.918350px;}
.x13_c00208{left:561.958920px;}
.x22_c00208{left:563.399235px;}
.x7_c00208{left:565.198785px;}
.x8_c00208{left:577.798920px;}
.xf_c00208{left:592.918950px;}
.xb_c00208{left:601.918350px;}
.x10_c00208{left:610.558635px;}
.xc_c00208{left:615.958920px;}
.x1c_c00208{left:666.719100px;}
.x1d_c00208{left:679.678530px;}
.x9_c00208{left:705.599070px;}
.xa_c00208{left:719.639700px;}
.x18_c00208{left:737.999355px;}
.x11_c00208{left:755.279850px;}
.x5_c00208{left:764.279250px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls15_c00208{letter-spacing:-7.700087pt;}
.lsf_c00208{letter-spacing:-7.266700pt;}
.lsb_c00208{letter-spacing:-6.601000pt;}
.ls12_c00208{letter-spacing:-6.159087pt;}
.lsa_c00208{letter-spacing:-5.943000pt;}
.ls11_c00208{letter-spacing:-5.391267pt;}
.ls5_c00208{letter-spacing:-5.285000pt;}
.ls8_c00208{letter-spacing:-4.619300pt;}
.lse_c00208{letter-spacing:-4.083867pt;}
.ls3_c00208{letter-spacing:-3.961300pt;}
.ls4_c00208{letter-spacing:-3.304000pt;}
.ls14_c00208{letter-spacing:-3.073147pt;}
.ls9_c00208{letter-spacing:-2.767600pt;}
.lsd_c00208{letter-spacing:-2.692400pt;}
.ls2_c00208{letter-spacing:-2.639000pt;}
.ls0_c00208{letter-spacing:-1.981700pt;}
.ls1_c00208{letter-spacing:-1.323700pt;}
.ls13_c00208{letter-spacing:-0.700980pt;}
.ls7_c00208{letter-spacing:-0.658000pt;}
.ls6_c00208{letter-spacing:0.000000pt;}
.ls10_c00208{letter-spacing:1.241733pt;}
.lsc_c00208{letter-spacing:4.210800pt;}
.ws0_c00208{word-spacing:0.000000pt;}
._1e_c00208{margin-left:-11.657199pt;}
._11_c00208{margin-left:-10.738357pt;}
._1f_c00208{margin-left:-9.538708pt;}
._e_c00208{margin-left:-6.311372pt;}
._f_c00208{margin-left:-5.102300pt;}
._d_c00208{margin-left:-3.495575pt;}
._10_c00208{margin-left:-2.212145pt;}
._b_c00208{margin-left:-1.032870pt;}
._8_c00208{width:1.185906pt;}
._1d_c00208{width:2.133230pt;}
._6_c00208{width:3.066951pt;}
._7_c00208{width:4.038789pt;}
._18_c00208{width:5.018313pt;}
._9_c00208{width:5.992687pt;}
._c_c00208{width:7.783604pt;}
._a_c00208{width:9.383421pt;}
._1c_c00208{width:10.661634pt;}
._17_c00208{width:11.610491pt;}
._0_c00208{width:12.514204pt;}
._1a_c00208{width:13.412343pt;}
._1_c00208{width:14.541206pt;}
._1b_c00208{width:15.901940pt;}
._19_c00208{width:17.050415pt;}
._3_c00208{width:17.940815pt;}
._4_c00208{width:19.842398pt;}
._16_c00208{width:20.881423pt;}
._2_c00208{width:22.103108pt;}
._5_c00208{width:23.561551pt;}
._15_c00208{width:24.875094pt;}
._14_c00208{width:27.455875pt;}
._13_c00208{width:30.703360pt;}
._12_c00208{width:32.437551pt;}
.fsa_c00208{font-size:42.000000pt;}
.fs9_c00208{font-size:44.666667pt;}
.fsb_c00208{font-size:45.333333pt;}
.fs4_c00208{font-size:66.000000pt;}
.fs0_c00208{font-size:70.000000pt;}
.fs5_c00208{font-size:70.666667pt;}
.fs1_c00208{font-size:71.333333pt;}
.fs7_c00208{font-size:72.666667pt;}
.fs3_c00208{font-size:73.333333pt;}
.fs2_c00208{font-size:74.000000pt;}
.fs6_c00208{font-size:76.666667pt;}
.fs8_c00208{font-size:85.333333pt;}
.y0_c00208{bottom:0.000000pt;}
.y22_c00208{bottom:151.040000pt;}
.y21_c00208{bottom:214.719867pt;}
.y20_c00208{bottom:240.959453pt;}
.y1f_c00208{bottom:240.960733pt;}
.y1e_c00208{bottom:267.520493pt;}
.y1d_c00208{bottom:293.760067pt;}
.y1c_c00208{bottom:320.319827pt;}
.y1b_c00208{bottom:346.879573pt;}
.y1a_c00208{bottom:399.680520pt;}
.y19_c00208{bottom:426.240280pt;}
.y17_c00208{bottom:452.478693pt;}
.y18_c00208{bottom:452.479987pt;}
.y16_c00208{bottom:479.038453pt;}
.y15_c00208{bottom:504.959467pt;}
.y14_c00208{bottom:531.839320pt;}
.y13_c00208{bottom:531.839413pt;}
.y12_c00208{bottom:558.399173pt;}
.y10_c00208{bottom:611.199000pt;}
.y11_c00208{bottom:611.200120pt;}
.yf_c00208{bottom:690.239520pt;}
.ye_c00208{bottom:717.119440pt;}
.yd_c00208{bottom:743.679200pt;}
.yc_c00208{bottom:743.680080pt;}
.yb_c00208{bottom:770.239827pt;}
.ya_c00208{bottom:796.479413pt;}
.y9_c00208{bottom:796.479573pt;}
.y8_c00208{bottom:822.719160pt;}
.y6_c00208{bottom:849.598427pt;}
.y7_c00208{bottom:849.599040pt;}
.y5_c00208{bottom:875.839613pt;}
.y4_c00208{bottom:902.719547pt;}
.y3_c00208{bottom:929.279293pt;}
.y2_c00208{bottom:929.280093pt;}
.y1_c00208{bottom:955.839840pt;}
.hb_c00208{height:42.328125pt;}
.ha_c00208{height:44.143229pt;}
.hc_c00208{height:44.802083pt;}
.h5_c00208{height:64.775391pt;}
.h1_c00208{height:68.701172pt;}
.h6_c00208{height:69.355469pt;}
.h2_c00208{height:70.009766pt;}
.h8_c00208{height:71.815104pt;}
.h4_c00208{height:71.972656pt;}
.h3_c00208{height:72.626953pt;}
.h7_c00208{height:75.768229pt;}
.h9_c00208{height:89.000000pt;}
.h0_c00208{height:1122.666667pt;}
.w0_c00208{width:793.333333pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:118.719720pt;}
.x4_c00208{left:120.322627pt;}
.x19_c00208{left:121.276760pt;}
.x1e_c00208{left:149.438947pt;}
.x1f_c00208{left:164.480000pt;}
.xd_c00208{left:191.679200pt;}
.xe_c00208{left:215.359867pt;}
.x2_c00208{left:261.758787pt;}
.x3_c00208{left:273.919867pt;}
.x14_c00208{left:294.399867pt;}
.x6_c00208{left:304.960000pt;}
.x15_c00208{left:305.919453pt;}
.x16_c00208{left:391.359333pt;}
.x1a_c00208{left:405.758787pt;}
.x1b_c00208{left:414.719200pt;}
.x20_c00208{left:439.359333pt;}
.x17_c00208{left:465.919840pt;}
.x21_c00208{left:483.518520pt;}
.x12_c00208{left:487.038533pt;}
.x13_c00208{left:499.519040pt;}
.x22_c00208{left:500.799320pt;}
.x7_c00208{left:502.398920pt;}
.x8_c00208{left:513.599040pt;}
.xf_c00208{left:527.039067pt;}
.xb_c00208{left:535.038533pt;}
.x10_c00208{left:542.718787pt;}
.xc_c00208{left:547.519040pt;}
.x1c_c00208{left:592.639200pt;}
.x1d_c00208{left:604.158693pt;}
.x9_c00208{left:627.199173pt;}
.xa_c00208{left:639.679733pt;}
.x18_c00208{left:655.999427pt;}
.x11_c00208{left:671.359867pt;}
.x5_c00208{left:679.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28c2814f7c66d996cce117da.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_8ff85cea91f55bf0d4868ed6.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_54d2a55ee2b60b437c741253.woff2')format("woff");}.ff3_c00209{font-family:ff3_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:ff4_c00209;src:url('chunks/assets/font_4bc839f55b955210e9f1f303.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_1ff6d8bcebcb075d8ee55fb1.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00209;src:url('chunks/assets/font_599d41c5038f61cd0ead5a22.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00209{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m2c_c00209{transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{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);}
.m12_c00209{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00209{transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m20_c00209{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);}
.m24_c00209{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.428082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428082,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.533654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533654,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{transform:matrix(0.765000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765000,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.793750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793750,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.960784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960784,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(1.663462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.663462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.663462,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:5.764260px;}
.ls1d_c00209{letter-spacing:-15.810600px;}
.lsb_c00209{letter-spacing:-10.561703px;}
.ls3_c00209{letter-spacing:-8.914500px;}
.ls14_c00209{letter-spacing:-8.250825px;}
.lse_c00209{letter-spacing:-8.175038px;}
.ls10_c00209{letter-spacing:-7.426125px;}
.ls6_c00209{letter-spacing:-6.685875px;}
.ls2c_c00209{letter-spacing:-6.246225px;}
.ls13_c00209{letter-spacing:-6.160478px;}
.ls2e_c00209{letter-spacing:-5.963100px;}
.lsa_c00209{letter-spacing:-5.945625px;}
.ls1c_c00209{letter-spacing:-5.568750px;}
.lsf_c00209{letter-spacing:-5.196713px;}
.ls1a_c00209{letter-spacing:-5.123183px;}
.lsd_c00209{letter-spacing:-4.456463px;}
.ls2d_c00209{letter-spacing:-3.751800px;}
.ls4_c00209{letter-spacing:-3.717000px;}
.ls2f_c00209{letter-spacing:-3.677873px;}
.ls5_c00209{letter-spacing:-2.968875px;}
.ls1b_c00209{letter-spacing:-2.833050px;}
.ls12_c00209{letter-spacing:-2.363400px;}
.ls2_c00209{letter-spacing:-2.229413px;}
.ls2b_c00209{letter-spacing:-2.189453px;}
.ls16_c00209{letter-spacing:-2.124150px;}
.ls7_c00209{letter-spacing:-1.489163px;}
.ls26_c00209{letter-spacing:-1.251600px;}
.ls9_c00209{letter-spacing:-0.740250px;}
.ls15_c00209{letter-spacing:-0.708900px;}
.ls8_c00209{letter-spacing:0.000000px;}
.ls1e_c00209{letter-spacing:0.506063px;}
.ls1_c00209{letter-spacing:0.708900px;}
.ls17_c00209{letter-spacing:0.944700px;}
.ls1f_c00209{letter-spacing:1.142640px;}
.ls28_c00209{letter-spacing:1.696500px;}
.ls19_c00209{letter-spacing:2.131200px;}
.lsc_c00209{letter-spacing:2.512200px;}
.ls18_c00209{letter-spacing:3.413250px;}
.ls0_c00209{letter-spacing:3.541950px;}
.ls23_c00209{letter-spacing:3.748095px;}
.ls11_c00209{letter-spacing:3.795825px;}
.ls22_c00209{letter-spacing:4.658850px;}
.ls2a_c00209{letter-spacing:4.995900px;}
.ls29_c00209{letter-spacing:5.392500px;}
.ls21_c00209{letter-spacing:6.527318px;}
.ls25_c00209{letter-spacing:10.327800px;}
.ls27_c00209{letter-spacing:10.859070px;}
.ls24_c00209{letter-spacing:13.980900px;}
.ls20_c00209{letter-spacing:15.975900px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:0.000000px;}
._1d_c00209{margin-left:-14.372380px;}
._11_c00209{margin-left:-3.233208px;}
._17_c00209{margin-left:-2.226233px;}
._12_c00209{margin-left:-1.204192px;}
._e_c00209{width:1.658787px;}
._13_c00209{width:2.997180px;}
._10_c00209{width:4.397177px;}
._7_c00209{width:5.679955px;}
._5_c00209{width:7.369158px;}
._16_c00209{width:8.993785px;}
._3_c00209{width:10.190621px;}
._6_c00209{width:11.573783px;}
._0_c00209{width:12.880855px;}
._14_c00209{width:14.694334px;}
._8_c00209{width:16.035952px;}
._9_c00209{width:18.065933px;}
._c_c00209{width:19.364060px;}
._b_c00209{width:20.787950px;}
._a_c00209{width:22.853577px;}
._2_c00209{width:24.221227px;}
._18_c00209{width:25.416354px;}
._4_c00209{width:26.815638px;}
._1c_c00209{width:28.421038px;}
._d_c00209{width:29.575499px;}
._15_c00209{width:31.105893px;}
._1b_c00209{width:33.037289px;}
._f_c00209{width:34.405504px;}
._1_c00209{width:36.713369px;}
._19_c00209{width:118.179977px;}
._1a_c00209{width:128.456250px;}
.fc0_c00209{color:transparent;}
.fs15_c00209{font-size:18.750000px;}
.fsb_c00209{font-size:19.500000px;}
.fs13_c00209{font-size:24.000000px;}
.fsd_c00209{font-size:25.500000px;}
.fse_c00209{font-size:30.000000px;}
.fs1c_c00209{font-size:37.500000px;}
.fs1f_c00209{font-size:38.250000px;}
.fs14_c00209{font-size:39.000000px;}
.fs12_c00209{font-size:40.500000px;}
.fs1a_c00209{font-size:42.000000px;}
.fs18_c00209{font-size:43.500000px;}
.fs17_c00209{font-size:44.250000px;}
.fs16_c00209{font-size:45.750000px;}
.fs11_c00209{font-size:53.250000px;}
.fs1e_c00209{font-size:54.750000px;}
.fs1b_c00209{font-size:57.000000px;}
.fs1d_c00209{font-size:58.500000px;}
.fs19_c00209{font-size:64.500000px;}
.fs10_c00209{font-size:72.000000px;}
.fsa_c00209{font-size:75.000000px;}
.fs22_c00209{font-size:77.250000px;}
.fs6_c00209{font-size:78.000000px;}
.fs0_c00209{font-size:78.750000px;}
.fs4_c00209{font-size:79.500000px;}
.fs2_c00209{font-size:80.250000px;}
.fs1_c00209{font-size:82.500000px;}
.fsf_c00209{font-size:83.250000px;}
.fs9_c00209{font-size:84.000000px;}
.fs3_c00209{font-size:84.750000px;}
.fsc_c00209{font-size:87.750000px;}
.fs8_c00209{font-size:90.000000px;}
.fs23_c00209{font-size:96.000000px;}
.fs7_c00209{font-size:101.250000px;}
.fs21_c00209{font-size:107.250000px;}
.fs20_c00209{font-size:111.000000px;}
.fs5_c00209{font-size:115.500000px;}
.y0_c00209{bottom:0.000000px;}
.y2b_c00209{bottom:213.120375px;}
.y2a_c00209{bottom:243.000090px;}
.y29_c00209{bottom:272.519625px;}
.y28_c00209{bottom:302.759535px;}
.y26_c00209{bottom:331.919925px;}
.y27_c00209{bottom:331.920000px;}
.y24_c00209{bottom:362.159655px;}
.y25_c00209{bottom:362.159850px;}
.y22_c00209{bottom:389.159820px;}
.y23_c00209{bottom:390.600135px;}
.y21_c00209{bottom:421.199385px;}
.y20_c00209{bottom:429.119385px;}
.y1f_c00209{bottom:450.719100px;}
.y1e_c00209{bottom:450.719415px;}
.y1d_c00209{bottom:481.319820px;}
.y1c_c00209{bottom:489.599070px;}
.y1a_c00209{bottom:541.078680px;}
.y1b_c00209{bottom:541.079400px;}
.y18_c00209{bottom:570.239070px;}
.y19_c00209{bottom:570.239820px;}
.y16_c00209{bottom:600.118110px;}
.y17_c00209{bottom:600.118785px;}
.y15_c00209{bottom:629.279250px;}
.y14_c00209{bottom:629.280420px;}
.y13_c00209{bottom:659.160135px;}
.y12_c00209{bottom:688.679670px;}
.y11_c00209{bottom:718.560285px;}
.yf_c00209{bottom:778.679025px;}
.y10_c00209{bottom:778.679070px;}
.ye_c00209{bottom:808.918950px;}
.yd_c00209{bottom:808.919835px;}
.yc_c00209{bottom:838.799565px;}
.yb_c00209{bottom:838.801485px;}
.ya_c00209{bottom:868.321020px;}
.y9_c00209{bottom:898.200735px;}
.y8_c00209{bottom:927.720270px;}
.y7_c00209{bottom:957.599985px;}
.y6_c00209{bottom:986.759040px;}
.y5_c00209{bottom:1017.359805px;}
.y4_c00209{bottom:1076.760315px;}
.y2_c00209{bottom:1106.279085px;}
.y3_c00209{bottom:1106.279850px;}
.y1_c00209{bottom:1136.158815px;}
.h18_c00209{height:19.555664px;}
.he_c00209{height:20.337891px;}
.h16_c00209{height:25.031250px;}
.h10_c00209{height:25.201172px;}
.h11_c00209{height:31.289062px;}
.h20_c00209{height:37.792969px;}
.h17_c00209{height:38.542969px;}
.h23_c00209{height:38.548828px;}
.h1f_c00209{height:39.304688px;}
.h15_c00209{height:40.025391px;}
.h1d_c00209{height:42.328125px;}
.h1b_c00209{height:43.839844px;}
.h1a_c00209{height:44.595703px;}
.h19_c00209{height:46.107422px;}
.h14_c00209{height:52.625977px;}
.h22_c00209{height:53.734131px;}
.h1e_c00209{height:57.445312px;}
.h21_c00209{height:58.957031px;}
.h1c_c00209{height:65.003906px;}
.hc_c00209{height:73.608398px;}
.h13_c00209{height:75.093750px;}
.h27_c00209{height:75.816650px;}
.h8_c00209{height:76.552734px;}
.h1_c00209{height:77.288818px;}
.h5_c00209{height:78.024902px;}
.hd_c00209{height:78.609375px;}
.h3_c00209{height:78.760986px;}
.h2_c00209{height:80.969238px;}
.h7_c00209{height:82.133789px;}
.h24_c00209{height:83.053078px;}
.h4_c00209{height:83.177490px;}
.hf_c00209{height:86.121826px;}
.h12_c00209{height:86.827148px;}
.hb_c00209{height:87.609375px;}
.ha_c00209{height:93.867188px;}
.h28_c00209{height:100.125000px;}
.h9_c00209{height:105.600586px;}
.h26_c00209{height:111.858398px;}
.h25_c00209{height:115.769531px;}
.h6_c00209{height:120.462891px;}
.h0_c00209{height:1263.000000px;}
.w0_c00209{width:892.500000px;}
.x0_c00209{left:0.000000px;}
.x27_c00209{left:97.919565px;}
.x9_c00209{left:136.080420px;}
.x1_c00209{left:137.158815px;}
.x48_c00209{left:138.960690px;}
.x47_c00209{left:156.599700px;}
.x4_c00209{left:163.799565px;}
.x18_c00209{left:164.878950px;}
.xf_c00209{left:190.799565px;}
.x3a_c00209{left:194.039400px;}
.x10_c00209{left:204.838515px;}
.x25_c00209{left:211.319850px;}
.x42_c00209{left:213.478635px;}
.x30_c00209{left:236.159385px;}
.x43_c00209{left:242.639100px;}
.x26_c00209{left:255.239250px;}
.x3b_c00209{left:261.719100px;}
.x31_c00209{left:263.159385px;}
.x28_c00209{left:289.080000px;}
.x32_c00209{left:292.319850px;}
.x15_c00209{left:308.878350px;}
.x8_c00209{left:311.759100px;}
.x29_c00209{left:313.919535px;}
.x16_c00209{left:314.998950px;}
.x17_c00209{left:329.039385px;}
.x2_c00209{left:347.399235px;}
.x3_c00209{left:363.239250px;}
.x20_c00209{left:366.838515px;}
.x21_c00209{left:373.319850px;}
.x2a_c00209{left:383.398635px;}
.x22_c00209{left:385.199850px;}
.x3c_c00209{left:394.199385px;}
.x40_c00209{left:395.998950px;}
.x2b_c00209{left:401.039985px;}
.x44_c00209{left:411.118785px;}
.x33_c00209{left:414.358665px;}
.x34_c00209{left:432.359250px;}
.x45_c00209{left:439.559100px;}
.x2c_c00209{left:448.199385px;}
.x1b_c00209{left:451.439250px;}
.x1c_c00209{left:457.559685px;}
.x11_c00209{left:464.039385px;}
.x3d_c00209{left:465.118785px;}
.x1d_c00209{left:466.918350px;}
.xa_c00209{left:469.439670px;}
.x2d_c00209{left:474.838530px;}
.x46_c00209{left:475.919535px;}
.x12_c00209{left:478.439250px;}
.x35_c00209{left:483.119385px;}
.xb_c00209{left:491.759535px;}
.xc_c00209{left:501.838530px;}
.x5_c00209{left:530.639700px;}
.x36_c00209{left:539.639100px;}
.x13_c00209{left:542.519670px;}
.x6_c00209{left:546.838950px;}
.x41_c00209{left:551.519070px;}
.x14_c00209{left:556.558635px;}
.x19_c00209{left:584.998950px;}
.xd_c00209{left:587.879520px;}
.xe_c00209{left:602.279250px;}
.x37_c00209{left:613.798515px;}
.x3e_c00209{left:616.319820px;}
.x23_c00209{left:646.198785px;}
.x38_c00209{left:656.999400px;}
.x24_c00209{left:667.080000px;}
.x1e_c00209{left:684.719520px;}
.x39_c00209{left:687.598530px;}
.x2e_c00209{left:692.639700px;}
.x1f_c00209{left:698.039985px;}
.x2f_c00209{left:707.039385px;}
.x3f_c00209{left:751.319820px;}
.x1a_c00209{left:759.599070px;}
.x7_c00209{left:768.239220px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:5.123787pt;}
.ls1d_c00209{letter-spacing:-14.053867pt;}
.lsb_c00209{letter-spacing:-9.388180pt;}
.ls3_c00209{letter-spacing:-7.924000pt;}
.ls14_c00209{letter-spacing:-7.334067pt;}
.lse_c00209{letter-spacing:-7.266700pt;}
.ls10_c00209{letter-spacing:-6.601000pt;}
.ls6_c00209{letter-spacing:-5.943000pt;}
.ls2c_c00209{letter-spacing:-5.552200pt;}
.ls13_c00209{letter-spacing:-5.475980pt;}
.ls2e_c00209{letter-spacing:-5.300533pt;}
.lsa_c00209{letter-spacing:-5.285000pt;}
.ls1c_c00209{letter-spacing:-4.950000pt;}
.lsf_c00209{letter-spacing:-4.619300pt;}
.ls1a_c00209{letter-spacing:-4.553940pt;}
.lsd_c00209{letter-spacing:-3.961300pt;}
.ls2d_c00209{letter-spacing:-3.334933pt;}
.ls4_c00209{letter-spacing:-3.304000pt;}
.ls2f_c00209{letter-spacing:-3.269220pt;}
.ls5_c00209{letter-spacing:-2.639000pt;}
.ls1b_c00209{letter-spacing:-2.518267pt;}
.ls12_c00209{letter-spacing:-2.100800pt;}
.ls2_c00209{letter-spacing:-1.981700pt;}
.ls2b_c00209{letter-spacing:-1.946180pt;}
.ls16_c00209{letter-spacing:-1.888133pt;}
.ls7_c00209{letter-spacing:-1.323700pt;}
.ls26_c00209{letter-spacing:-1.112533pt;}
.ls9_c00209{letter-spacing:-0.658000pt;}
.ls15_c00209{letter-spacing:-0.630133pt;}
.ls8_c00209{letter-spacing:0.000000pt;}
.ls1e_c00209{letter-spacing:0.449833pt;}
.ls1_c00209{letter-spacing:0.630133pt;}
.ls17_c00209{letter-spacing:0.839733pt;}
.ls1f_c00209{letter-spacing:1.015680pt;}
.ls28_c00209{letter-spacing:1.508000pt;}
.ls19_c00209{letter-spacing:1.894400pt;}
.lsc_c00209{letter-spacing:2.233067pt;}
.ls18_c00209{letter-spacing:3.034000pt;}
.ls0_c00209{letter-spacing:3.148400pt;}
.ls23_c00209{letter-spacing:3.331640pt;}
.ls11_c00209{letter-spacing:3.374067pt;}
.ls22_c00209{letter-spacing:4.141200pt;}
.ls2a_c00209{letter-spacing:4.440800pt;}
.ls29_c00209{letter-spacing:4.793333pt;}
.ls21_c00209{letter-spacing:5.802060pt;}
.ls25_c00209{letter-spacing:9.180267pt;}
.ls27_c00209{letter-spacing:9.652507pt;}
.ls24_c00209{letter-spacing:12.427467pt;}
.ls20_c00209{letter-spacing:14.200800pt;}
.ws0_c00209{word-spacing:0.000000pt;}
._1d_c00209{margin-left:-12.775449pt;}
._11_c00209{margin-left:-2.873962pt;}
._17_c00209{margin-left:-1.978874pt;}
._12_c00209{margin-left:-1.070392pt;}
._e_c00209{width:1.474477pt;}
._13_c00209{width:2.664160pt;}
._10_c00209{width:3.908602pt;}
._7_c00209{width:5.048849pt;}
._5_c00209{width:6.550362pt;}
._16_c00209{width:7.994475pt;}
._3_c00209{width:9.058330pt;}
._6_c00209{width:10.287808pt;}
._0_c00209{width:11.449649pt;}
._14_c00209{width:13.061630pt;}
._8_c00209{width:14.254179pt;}
._9_c00209{width:16.058608pt;}
._c_c00209{width:17.212498pt;}
._b_c00209{width:18.478177pt;}
._a_c00209{width:20.314291pt;}
._2_c00209{width:21.529979pt;}
._18_c00209{width:22.592315pt;}
._4_c00209{width:23.836123pt;}
._1c_c00209{width:25.263145pt;}
._d_c00209{width:26.289332pt;}
._15_c00209{width:27.649683pt;}
._1b_c00209{width:29.366479pt;}
._f_c00209{width:30.582670pt;}
._1_c00209{width:32.634106pt;}
._19_c00209{width:105.048868pt;}
._1a_c00209{width:114.183333pt;}
.fs15_c00209{font-size:16.666667pt;}
.fsb_c00209{font-size:17.333333pt;}
.fs13_c00209{font-size:21.333333pt;}
.fsd_c00209{font-size:22.666667pt;}
.fse_c00209{font-size:26.666667pt;}
.fs1c_c00209{font-size:33.333333pt;}
.fs1f_c00209{font-size:34.000000pt;}
.fs14_c00209{font-size:34.666667pt;}
.fs12_c00209{font-size:36.000000pt;}
.fs1a_c00209{font-size:37.333333pt;}
.fs18_c00209{font-size:38.666667pt;}
.fs17_c00209{font-size:39.333333pt;}
.fs16_c00209{font-size:40.666667pt;}
.fs11_c00209{font-size:47.333333pt;}
.fs1e_c00209{font-size:48.666667pt;}
.fs1b_c00209{font-size:50.666667pt;}
.fs1d_c00209{font-size:52.000000pt;}
.fs19_c00209{font-size:57.333333pt;}
.fs10_c00209{font-size:64.000000pt;}
.fsa_c00209{font-size:66.666667pt;}
.fs22_c00209{font-size:68.666667pt;}
.fs6_c00209{font-size:69.333333pt;}
.fs0_c00209{font-size:70.000000pt;}
.fs4_c00209{font-size:70.666667pt;}
.fs2_c00209{font-size:71.333333pt;}
.fs1_c00209{font-size:73.333333pt;}
.fsf_c00209{font-size:74.000000pt;}
.fs9_c00209{font-size:74.666667pt;}
.fs3_c00209{font-size:75.333333pt;}
.fsc_c00209{font-size:78.000000pt;}
.fs8_c00209{font-size:80.000000pt;}
.fs23_c00209{font-size:85.333333pt;}
.fs7_c00209{font-size:90.000000pt;}
.fs21_c00209{font-size:95.333333pt;}
.fs20_c00209{font-size:98.666667pt;}
.fs5_c00209{font-size:102.666667pt;}
.y0_c00209{bottom:0.000000pt;}
.y2b_c00209{bottom:189.440333pt;}
.y2a_c00209{bottom:216.000080pt;}
.y29_c00209{bottom:242.239667pt;}
.y28_c00209{bottom:269.119587pt;}
.y26_c00209{bottom:295.039933pt;}
.y27_c00209{bottom:295.040000pt;}
.y24_c00209{bottom:321.919693pt;}
.y25_c00209{bottom:321.919867pt;}
.y22_c00209{bottom:345.919840pt;}
.y23_c00209{bottom:347.200120pt;}
.y21_c00209{bottom:374.399453pt;}
.y20_c00209{bottom:381.439453pt;}
.y1f_c00209{bottom:400.639200pt;}
.y1e_c00209{bottom:400.639480pt;}
.y1d_c00209{bottom:427.839840pt;}
.y1c_c00209{bottom:435.199173pt;}
.y1a_c00209{bottom:480.958827pt;}
.y1b_c00209{bottom:480.959467pt;}
.y18_c00209{bottom:506.879173pt;}
.y19_c00209{bottom:506.879840pt;}
.y16_c00209{bottom:533.438320pt;}
.y17_c00209{bottom:533.438920pt;}
.y15_c00209{bottom:559.359333pt;}
.y14_c00209{bottom:559.360373pt;}
.y13_c00209{bottom:585.920120pt;}
.y12_c00209{bottom:612.159707pt;}
.y11_c00209{bottom:638.720253pt;}
.yf_c00209{bottom:692.159133pt;}
.y10_c00209{bottom:692.159173pt;}
.ye_c00209{bottom:719.039067pt;}
.yd_c00209{bottom:719.039853pt;}
.yc_c00209{bottom:745.599613pt;}
.yb_c00209{bottom:745.601320pt;}
.ya_c00209{bottom:771.840907pt;}
.y9_c00209{bottom:798.400653pt;}
.y8_c00209{bottom:824.640240pt;}
.y7_c00209{bottom:851.199987pt;}
.y6_c00209{bottom:877.119147pt;}
.y5_c00209{bottom:904.319827pt;}
.y4_c00209{bottom:957.120280pt;}
.y2_c00209{bottom:983.359187pt;}
.y3_c00209{bottom:983.359867pt;}
.y1_c00209{bottom:1009.918947pt;}
.h18_c00209{height:17.382812pt;}
.he_c00209{height:18.078125pt;}
.h16_c00209{height:22.250000pt;}
.h10_c00209{height:22.401042pt;}
.h11_c00209{height:27.812500pt;}
.h20_c00209{height:33.593750pt;}
.h17_c00209{height:34.260417pt;}
.h23_c00209{height:34.265625pt;}
.h1f_c00209{height:34.937500pt;}
.h15_c00209{height:35.578125pt;}
.h1d_c00209{height:37.625000pt;}
.h1b_c00209{height:38.968750pt;}
.h1a_c00209{height:39.640625pt;}
.h19_c00209{height:40.984375pt;}
.h14_c00209{height:46.778646pt;}
.h22_c00209{height:47.763672pt;}
.h1e_c00209{height:51.062500pt;}
.h21_c00209{height:52.406250pt;}
.h1c_c00209{height:57.781250pt;}
.hc_c00209{height:65.429688pt;}
.h13_c00209{height:66.750000pt;}
.h27_c00209{height:67.392578pt;}
.h8_c00209{height:68.046875pt;}
.h1_c00209{height:68.701172pt;}
.h5_c00209{height:69.355469pt;}
.hd_c00209{height:69.875000pt;}
.h3_c00209{height:70.009766pt;}
.h2_c00209{height:71.972656pt;}
.h7_c00209{height:73.007812pt;}
.h24_c00209{height:73.824959pt;}
.h4_c00209{height:73.935547pt;}
.hf_c00209{height:76.552734pt;}
.h12_c00209{height:77.179688pt;}
.hb_c00209{height:77.875000pt;}
.ha_c00209{height:83.437500pt;}
.h28_c00209{height:89.000000pt;}
.h9_c00209{height:93.867188pt;}
.h26_c00209{height:99.429688pt;}
.h25_c00209{height:102.906250pt;}
.h6_c00209{height:107.078125pt;}
.h0_c00209{height:1122.666667pt;}
.w0_c00209{width:793.333333pt;}
.x0_c00209{left:0.000000pt;}
.x27_c00209{left:87.039613pt;}
.x9_c00209{left:120.960373pt;}
.x1_c00209{left:121.918947pt;}
.x48_c00209{left:123.520613pt;}
.x47_c00209{left:139.199733pt;}
.x4_c00209{left:145.599613pt;}
.x18_c00209{left:146.559067pt;}
.xf_c00209{left:169.599613pt;}
.x3a_c00209{left:172.479467pt;}
.x10_c00209{left:182.078680pt;}
.x25_c00209{left:187.839867pt;}
.x42_c00209{left:189.758787pt;}
.x30_c00209{left:209.919453pt;}
.x43_c00209{left:215.679200pt;}
.x26_c00209{left:226.879333pt;}
.x3b_c00209{left:232.639200pt;}
.x31_c00209{left:233.919453pt;}
.x28_c00209{left:256.960000pt;}
.x32_c00209{left:259.839867pt;}
.x15_c00209{left:274.558533pt;}
.x8_c00209{left:277.119200pt;}
.x29_c00209{left:279.039587pt;}
.x16_c00209{left:279.999067pt;}
.x17_c00209{left:292.479453pt;}
.x2_c00209{left:308.799320pt;}
.x3_c00209{left:322.879333pt;}
.x20_c00209{left:326.078680pt;}
.x21_c00209{left:331.839867pt;}
.x2a_c00209{left:340.798787pt;}
.x22_c00209{left:342.399867pt;}
.x3c_c00209{left:350.399453pt;}
.x40_c00209{left:351.999067pt;}
.x2b_c00209{left:356.479987pt;}
.x44_c00209{left:365.438920pt;}
.x33_c00209{left:368.318813pt;}
.x34_c00209{left:384.319333pt;}
.x45_c00209{left:390.719200pt;}
.x2c_c00209{left:398.399453pt;}
.x1b_c00209{left:401.279333pt;}
.x1c_c00209{left:406.719720pt;}
.x11_c00209{left:412.479453pt;}
.x3d_c00209{left:413.438920pt;}
.x1d_c00209{left:415.038533pt;}
.xa_c00209{left:417.279707pt;}
.x2d_c00209{left:422.078693pt;}
.x46_c00209{left:423.039587pt;}
.x12_c00209{left:425.279333pt;}
.x35_c00209{left:429.439453pt;}
.xb_c00209{left:437.119587pt;}
.xc_c00209{left:446.078693pt;}
.x5_c00209{left:471.679733pt;}
.x36_c00209{left:479.679200pt;}
.x13_c00209{left:482.239707pt;}
.x6_c00209{left:486.079067pt;}
.x41_c00209{left:490.239173pt;}
.x14_c00209{left:494.718787pt;}
.x19_c00209{left:519.999067pt;}
.xd_c00209{left:522.559573pt;}
.xe_c00209{left:535.359333pt;}
.x37_c00209{left:545.598680pt;}
.x3e_c00209{left:547.839840pt;}
.x23_c00209{left:574.398920pt;}
.x38_c00209{left:583.999467pt;}
.x24_c00209{left:592.960000pt;}
.x1e_c00209{left:608.639573pt;}
.x39_c00209{left:611.198693pt;}
.x2e_c00209{left:615.679733pt;}
.x1f_c00209{left:620.479987pt;}
.x2f_c00209{left:628.479453pt;}
.x3f_c00209{left:667.839840pt;}
.x1a_c00209{left:675.199173pt;}
.x7_c00209{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac584e9714b02a9efb2529cd.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_c0d0d4869285348388b5a618.woff2')format("woff");}.ff2_c00210{font-family:ff2_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:ff3_c00210;src:url('chunks/assets/font_d42498899962ef4b883701a6.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00210{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m1_c00210{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls2_c00210{letter-spacing:-13.490828px;}
.lsd_c00210{letter-spacing:-12.631500px;}
.lse_c00210{letter-spacing:-8.914500px;}
.ls16_c00210{letter-spacing:-8.175038px;}
.ls12_c00210{letter-spacing:-7.426125px;}
.lsf_c00210{letter-spacing:-6.685875px;}
.lsc_c00210{letter-spacing:-6.000300px;}
.ls8_c00210{letter-spacing:-5.945625px;}
.lsb_c00210{letter-spacing:-5.196713px;}
.ls3_c00210{letter-spacing:-4.456463px;}
.ls6_c00210{letter-spacing:-3.717000px;}
.ls4_c00210{letter-spacing:-2.968875px;}
.ls13_c00210{letter-spacing:-2.446815px;}
.ls10_c00210{letter-spacing:-2.425500px;}
.ls11_c00210{letter-spacing:-2.356200px;}
.ls5_c00210{letter-spacing:-2.229413px;}
.ls15_c00210{letter-spacing:-2.180843px;}
.ls14_c00210{letter-spacing:-1.631700px;}
.lsa_c00210{letter-spacing:-1.489163px;}
.ls9_c00210{letter-spacing:-0.740250px;}
.ls7_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:1.489163px;}
.ls1_c00210{letter-spacing:7.426125px;}
.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:0.000000px;}
._1f_c00210{margin-left:-36.278907px;}
._12_c00210{margin-left:-12.946084px;}
._21_c00210{margin-left:-9.660679px;}
._20_c00210{margin-left:-8.613824px;}
._13_c00210{margin-left:-7.594442px;}
._1d_c00210{margin-left:-6.298054px;}
._10_c00210{margin-left:-4.363285px;}
._14_c00210{margin-left:-2.732417px;}
._11_c00210{margin-left:-1.635846px;}
._f_c00210{width:1.873745px;}
._6_c00210{width:3.126078px;}
._0_c00210{width:4.868890px;}
._4_c00210{width:6.056989px;}
._1_c00210{width:7.267050px;}
._17_c00210{width:8.509294px;}
._3_c00210{width:9.628881px;}
._16_c00210{width:10.836223px;}
._8_c00210{width:11.841221px;}
._e_c00210{width:13.226568px;}
._7_c00210{width:15.020775px;}
._9_c00210{width:16.087436px;}
._2_c00210{width:17.655988px;}
._a_c00210{width:18.879525px;}
._b_c00210{width:20.444079px;}
._15_c00210{width:21.570160px;}
._c_c00210{width:23.015787px;}
._d_c00210{width:25.304292px;}
._5_c00210{width:26.506745px;}
._19_c00210{width:29.413571px;}
._1c_c00210{width:31.815238px;}
._1b_c00210{width:33.083425px;}
._1a_c00210{width:36.988964px;}
._1e_c00210{width:39.208243px;}
._18_c00210{width:45.584987px;}
.fc0_c00210{color:transparent;}
.fs9_c00210{font-size:38.250000px;}
.fs6_c00210{font-size:69.750000px;}
.fsa_c00210{font-size:73.500000px;}
.fs3_c00210{font-size:74.250000px;}
.fsb_c00210{font-size:75.750000px;}
.fs8_c00210{font-size:77.250000px;}
.fs5_c00210{font-size:78.000000px;}
.fs1_c00210{font-size:78.750000px;}
.fs0_c00210{font-size:80.250000px;}
.fs2_c00210{font-size:82.500000px;}
.fs4_c00210{font-size:84.750000px;}
.fs7_c00210{font-size:115.500000px;}
.y0_c00210{bottom:0.000000px;}
.y2c_c00210{bottom:189.359415px;}
.y2a_c00210{bottom:218.878605px;}
.y2b_c00210{bottom:218.878950px;}
.y29_c00210{bottom:248.398125px;}
.y28_c00210{bottom:278.640150px;}
.y26_c00210{bottom:307.798365px;}
.y27_c00210{bottom:307.798950px;}
.y25_c00210{bottom:337.859235px;}
.y23_c00210{bottom:367.199160px;}
.y24_c00210{bottom:367.199385px;}
.y22_c00210{bottom:486.720150px;}
.y21_c00210{bottom:491.039385px;}
.y20_c00210{bottom:516.599070px;}
.y1f_c00210{bottom:546.118785px;}
.y1e_c00210{bottom:546.118815px;}
.y1c_c00210{bottom:575.639880px;}
.y1d_c00210{bottom:575.640150px;}
.y1b_c00210{bottom:604.798920px;}
.y1a_c00210{bottom:604.799955px;}
.y18_c00210{bottom:634.679490px;}
.y19_c00210{bottom:634.679670px;}
.y16_c00210{bottom:664.018290px;}
.y17_c00210{bottom:664.019670px;}
.y15_c00210{bottom:694.079160px;}
.y14_c00210{bottom:723.958875px;}
.y13_c00210{bottom:754.198785px;}
.y12_c00210{bottom:754.198815px;}
.y11_c00210{bottom:783.720150px;}
.y10_c00210{bottom:783.721620px;}
.yf_c00210{bottom:843.120870px;}
.ye_c00210{bottom:864.001305px;}
.yd_c00210{bottom:885.600585px;}
.yc_c00210{bottom:907.199895px;}
.yb_c00210{bottom:928.440795px;}
.ya_c00210{bottom:988.200240px;}
.y9_c00210{bottom:1018.079955px;}
.y8_c00210{bottom:1018.080135px;}
.y7_c00210{bottom:1047.599670px;}
.y6_c00210{bottom:1047.599850px;}
.y5_c00210{bottom:1077.119385px;}
.y4_c00210{bottom:1077.120270px;}
.y2_c00210{bottom:1106.999865px;}
.y3_c00210{bottom:1107.000000px;}
.y1_c00210{bottom:1137.239775px;}
.ha_c00210{height:39.893555px;}
.h7_c00210{height:68.455811px;}
.h4_c00210{height:72.872314px;}
.hc_c00210{height:74.344482px;}
.h9_c00210{height:75.816650px;}
.h6_c00210{height:76.552734px;}
.hb_c00210{height:76.658203px;}
.h2_c00210{height:77.288818px;}
.h1_c00210{height:78.760986px;}
.h3_c00210{height:80.969238px;}
.h5_c00210{height:83.177490px;}
.h8_c00210{height:120.462891px;}
.h0_c00210{height:1263.000000px;}
.w0_c00210{width:892.500000px;}
.x0_c00210{left:0.000000px;}
.x25_c00210{left:98.998950px;}
.x1_c00210{left:137.878950px;}
.x31_c00210{left:140.398545px;}
.x24_c00210{left:162.718500px;}
.x2_c00210{left:163.799565px;}
.xd_c00210{left:191.875470px;}
.xc_c00210{left:192.956910px;}
.x3_c00210{left:200.159850px;}
.x14_c00210{left:203.759100px;}
.x10_c00210{left:210.599700px;}
.x4_c00210{left:216.000000px;}
.x15_c00210{left:217.079385px;}
.x1c_c00210{left:219.599100px;}
.x26_c00210{left:226.798950px;}
.x11_c00210{left:228.239250px;}
.x27_c00210{left:243.718500px;}
.xa_c00210{left:318.599700px;}
.xb_c00210{left:339.479235px;}
.x1d_c00210{left:380.158785px;}
.x1e_c00210{left:395.998950px;}
.x16_c00210{left:430.559685px;}
.x17_c00210{left:443.878320px;}
.x2e_c00210{left:488.158770px;}
.x2f_c00210{left:503.998950px;}
.x18_c00210{left:524.159820px;}
.x19_c00210{left:538.198785px;}
.x12_c00210{left:568.079400px;}
.x5_c00210{left:596.878920px;}
.x1f_c00210{left:600.838950px;}
.x13_c00210{left:602.999400px;}
.x6_c00210{left:613.080000px;}
.x20_c00210{left:615.958920px;}
.x29_c00210{left:626.759535px;}
.x9_c00210{left:631.439670px;}
.x7_c00210{left:663.838530px;}
.x2a_c00210{left:672.119385px;}
.x8_c00210{left:679.678530px;}
.xe_c00210{left:681.118785px;}
.x2b_c00210{left:693.719100px;}
.xf_c00210{left:694.798560px;}
.x21_c00210{left:705.239820px;}
.x30_c00210{left:709.559100px;}
.x22_c00210{left:721.080000px;}
.x1a_c00210{left:724.679070px;}
.x1b_c00210{left:738.719520px;}
.x2c_c00210{left:745.558635px;}
.x2d_c00210{left:765.358605px;}
.x23_c00210{left:767.519070px;}
.x28_c00210{left:768.959385px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls2_c00210{letter-spacing:-11.991847pt;}
.lsd_c00210{letter-spacing:-11.228000pt;}
.lse_c00210{letter-spacing:-7.924000pt;}
.ls16_c00210{letter-spacing:-7.266700pt;}
.ls12_c00210{letter-spacing:-6.601000pt;}
.lsf_c00210{letter-spacing:-5.943000pt;}
.lsc_c00210{letter-spacing:-5.333600pt;}
.ls8_c00210{letter-spacing:-5.285000pt;}
.lsb_c00210{letter-spacing:-4.619300pt;}
.ls3_c00210{letter-spacing:-3.961300pt;}
.ls6_c00210{letter-spacing:-3.304000pt;}
.ls4_c00210{letter-spacing:-2.639000pt;}
.ls13_c00210{letter-spacing:-2.174947pt;}
.ls10_c00210{letter-spacing:-2.156000pt;}
.ls11_c00210{letter-spacing:-2.094400pt;}
.ls5_c00210{letter-spacing:-1.981700pt;}
.ls15_c00210{letter-spacing:-1.938527pt;}
.ls14_c00210{letter-spacing:-1.450400pt;}
.lsa_c00210{letter-spacing:-1.323700pt;}
.ls9_c00210{letter-spacing:-0.658000pt;}
.ls7_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:1.323700pt;}
.ls1_c00210{letter-spacing:6.601000pt;}
.ws0_c00210{word-spacing:0.000000pt;}
._1f_c00210{margin-left:-32.247917pt;}
._12_c00210{margin-left:-11.507630pt;}
._21_c00210{margin-left:-8.587270pt;}
._20_c00210{margin-left:-7.656732pt;}
._13_c00210{margin-left:-6.750615pt;}
._1d_c00210{margin-left:-5.598270pt;}
._10_c00210{margin-left:-3.878475pt;}
._14_c00210{margin-left:-2.428815pt;}
._11_c00210{margin-left:-1.454085pt;}
._f_c00210{width:1.665551pt;}
._6_c00210{width:2.778736pt;}
._0_c00210{width:4.327902pt;}
._4_c00210{width:5.383991pt;}
._1_c00210{width:6.459600pt;}
._17_c00210{width:7.563817pt;}
._3_c00210{width:8.559006pt;}
._16_c00210{width:9.632198pt;}
._8_c00210{width:10.525530pt;}
._e_c00210{width:11.756949pt;}
._7_c00210{width:13.351800pt;}
._9_c00210{width:14.299943pt;}
._2_c00210{width:15.694211pt;}
._a_c00210{width:16.781800pt;}
._b_c00210{width:18.172515pt;}
._15_c00210{width:19.173475pt;}
._c_c00210{width:20.458477pt;}
._d_c00210{width:22.492704pt;}
._5_c00210{width:23.561551pt;}
._19_c00210{width:26.145396pt;}
._1c_c00210{width:28.280211pt;}
._1b_c00210{width:29.407489pt;}
._1a_c00210{width:32.879079pt;}
._1e_c00210{width:34.851772pt;}
._18_c00210{width:40.519989pt;}
.fs9_c00210{font-size:34.000000pt;}
.fs6_c00210{font-size:62.000000pt;}
.fsa_c00210{font-size:65.333333pt;}
.fs3_c00210{font-size:66.000000pt;}
.fsb_c00210{font-size:67.333333pt;}
.fs8_c00210{font-size:68.666667pt;}
.fs5_c00210{font-size:69.333333pt;}
.fs1_c00210{font-size:70.000000pt;}
.fs0_c00210{font-size:71.333333pt;}
.fs2_c00210{font-size:73.333333pt;}
.fs4_c00210{font-size:75.333333pt;}
.fs7_c00210{font-size:102.666667pt;}
.y0_c00210{bottom:0.000000pt;}
.y2c_c00210{bottom:168.319480pt;}
.y2a_c00210{bottom:194.558760pt;}
.y2b_c00210{bottom:194.559067pt;}
.y29_c00210{bottom:220.798333pt;}
.y28_c00210{bottom:247.680133pt;}
.y26_c00210{bottom:273.598547pt;}
.y27_c00210{bottom:273.599067pt;}
.y25_c00210{bottom:300.319320pt;}
.y23_c00210{bottom:326.399253pt;}
.y24_c00210{bottom:326.399453pt;}
.y22_c00210{bottom:432.640133pt;}
.y21_c00210{bottom:436.479453pt;}
.y20_c00210{bottom:459.199173pt;}
.y1f_c00210{bottom:485.438920pt;}
.y1e_c00210{bottom:485.438947pt;}
.y1c_c00210{bottom:511.679893pt;}
.y1d_c00210{bottom:511.680133pt;}
.y1b_c00210{bottom:537.599040pt;}
.y1a_c00210{bottom:537.599960pt;}
.y18_c00210{bottom:564.159547pt;}
.y19_c00210{bottom:564.159707pt;}
.y16_c00210{bottom:590.238480pt;}
.y17_c00210{bottom:590.239707pt;}
.y15_c00210{bottom:616.959253pt;}
.y14_c00210{bottom:643.519000pt;}
.y13_c00210{bottom:670.398920pt;}
.y12_c00210{bottom:670.398947pt;}
.y11_c00210{bottom:696.640133pt;}
.y10_c00210{bottom:696.641440pt;}
.yf_c00210{bottom:749.440773pt;}
.ye_c00210{bottom:768.001160pt;}
.yd_c00210{bottom:787.200520pt;}
.yc_c00210{bottom:806.399907pt;}
.yb_c00210{bottom:825.280707pt;}
.ya_c00210{bottom:878.400213pt;}
.y9_c00210{bottom:904.959960pt;}
.y8_c00210{bottom:904.960120pt;}
.y7_c00210{bottom:931.199707pt;}
.y6_c00210{bottom:931.199867pt;}
.y5_c00210{bottom:957.439453pt;}
.y4_c00210{bottom:957.440240pt;}
.y2_c00210{bottom:983.999880pt;}
.y3_c00210{bottom:984.000000pt;}
.y1_c00210{bottom:1010.879800pt;}
.ha_c00210{height:35.460938pt;}
.h7_c00210{height:60.849609pt;}
.h4_c00210{height:64.775391pt;}
.hc_c00210{height:66.083984pt;}
.h9_c00210{height:67.392578pt;}
.h6_c00210{height:68.046875pt;}
.hb_c00210{height:68.140625pt;}
.h2_c00210{height:68.701172pt;}
.h1_c00210{height:70.009766pt;}
.h3_c00210{height:71.972656pt;}
.h5_c00210{height:73.935547pt;}
.h8_c00210{height:107.078125pt;}
.h0_c00210{height:1122.666667pt;}
.w0_c00210{width:793.333333pt;}
.x0_c00210{left:0.000000pt;}
.x25_c00210{left:87.999067pt;}
.x1_c00210{left:122.559067pt;}
.x31_c00210{left:124.798707pt;}
.x24_c00210{left:144.638667pt;}
.x2_c00210{left:145.599613pt;}
.xd_c00210{left:170.555973pt;}
.xc_c00210{left:171.517253pt;}
.x3_c00210{left:177.919867pt;}
.x14_c00210{left:181.119200pt;}
.x10_c00210{left:187.199733pt;}
.x4_c00210{left:192.000000pt;}
.x15_c00210{left:192.959453pt;}
.x1c_c00210{left:195.199200pt;}
.x26_c00210{left:201.599067pt;}
.x11_c00210{left:202.879333pt;}
.x27_c00210{left:216.638667pt;}
.xa_c00210{left:283.199733pt;}
.xb_c00210{left:301.759320pt;}
.x1d_c00210{left:337.918920pt;}
.x1e_c00210{left:351.999067pt;}
.x16_c00210{left:382.719720pt;}
.x17_c00210{left:394.558507pt;}
.x2e_c00210{left:433.918907pt;}
.x2f_c00210{left:447.999067pt;}
.x18_c00210{left:465.919840pt;}
.x19_c00210{left:478.398920pt;}
.x12_c00210{left:504.959467pt;}
.x5_c00210{left:530.559040pt;}
.x1f_c00210{left:534.079067pt;}
.x13_c00210{left:535.999467pt;}
.x6_c00210{left:544.960000pt;}
.x20_c00210{left:547.519040pt;}
.x29_c00210{left:557.119587pt;}
.x9_c00210{left:561.279707pt;}
.x7_c00210{left:590.078693pt;}
.x2a_c00210{left:597.439453pt;}
.x8_c00210{left:604.158693pt;}
.xe_c00210{left:605.438920pt;}
.x2b_c00210{left:616.639200pt;}
.xf_c00210{left:617.598720pt;}
.x21_c00210{left:626.879840pt;}
.x30_c00210{left:630.719200pt;}
.x22_c00210{left:640.960000pt;}
.x1a_c00210{left:644.159173pt;}
.x1b_c00210{left:656.639573pt;}
.x2c_c00210{left:662.718787pt;}
.x2d_c00210{left:680.318760pt;}
.x23_c00210{left:682.239173pt;}
.x28_c00210{left:683.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a70519f2557165b655bde91.woff2')format("woff");}.ff1_c00211{font-family:ff1_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:ff2_c00211;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.364746;font-style:normal;font-weight:normal;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_4b81865c9019bbddb908d0f4.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_8e8347e06ceb44ec86968ced.woff2')format("woff");}.ff4_c00211{font-family:ff4_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:ff5_c00211;src:url('chunks/assets/font_f45adbf5a47e8f8b0024a1b9.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00211;src:url('chunks/assets/font_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00211;src:url('chunks/assets/font_b524717fdfd8edf5214451bc.woff2')format("woff");}.ff7_c00211{font-family:ff7_c00211;line-height:1.364746;font-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_c00211{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.me_c00211{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m5_c00211{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m9_c00211{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m1f_c00211{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m0_c00211{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{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_c00211{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_c00211{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.365385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365385,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.403409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403409,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);}
.m12_c00211{transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls1e_c00211{letter-spacing:-13.570650px;}
.ls32_c00211{letter-spacing:-8.914500px;}
.lsf_c00211{letter-spacing:-8.753745px;}
.ls1c_c00211{letter-spacing:-7.804500px;}
.ls12_c00211{letter-spacing:-7.426125px;}
.ls1b_c00211{letter-spacing:-6.685875px;}
.lse_c00211{letter-spacing:-5.945625px;}
.ls33_c00211{letter-spacing:-5.247533px;}
.ls14_c00211{letter-spacing:-5.196713px;}
.ls16_c00211{letter-spacing:-5.103105px;}
.ls15_c00211{letter-spacing:-4.456463px;}
.ls19_c00211{letter-spacing:-4.410975px;}
.ls30_c00211{letter-spacing:-4.282500px;}
.ls13_c00211{letter-spacing:-3.752325px;}
.lsd_c00211{letter-spacing:-3.717000px;}
.ls18_c00211{letter-spacing:-3.147375px;}
.ls1f_c00211{letter-spacing:-3.110250px;}
.ls9_c00211{letter-spacing:-2.968875px;}
.lsb_c00211{letter-spacing:-2.229413px;}
.ls2b_c00211{letter-spacing:-2.211615px;}
.ls2e_c00211{letter-spacing:-2.053643px;}
.ls34_c00211{letter-spacing:-1.605825px;}
.ls1d_c00211{letter-spacing:-1.515510px;}
.lsa_c00211{letter-spacing:-1.489163px;}
.ls29_c00211{letter-spacing:-1.459500px;}
.ls17_c00211{letter-spacing:-1.431795px;}
.ls20_c00211{letter-spacing:-0.822000px;}
.lsc_c00211{letter-spacing:-0.740250px;}
.ls11_c00211{letter-spacing:0.000000px;}
.ls22_c00211{letter-spacing:2.088450px;}
.ls2c_c00211{letter-spacing:2.238000px;}
.ls21_c00211{letter-spacing:2.362500px;}
.ls1a_c00211{letter-spacing:2.410200px;}
.ls25_c00211{letter-spacing:2.788500px;}
.ls31_c00211{letter-spacing:3.502980px;}
.ls10_c00211{letter-spacing:3.637710px;}
.ls28_c00211{letter-spacing:3.890250px;}
.ls2f_c00211{letter-spacing:4.692375px;}
.ls6_c00211{letter-spacing:6.135000px;}
.ls27_c00211{letter-spacing:6.818700px;}
.ls2_c00211{letter-spacing:7.087815px;}
.ls24_c00211{letter-spacing:7.499933px;}
.ls7_c00211{letter-spacing:7.500000px;}
.ls8_c00211{letter-spacing:8.181300px;}
.ls2a_c00211{letter-spacing:9.546300px;}
.ls3_c00211{letter-spacing:11.025315px;}
.ls1_c00211{letter-spacing:11.812500px;}
.ls0_c00211{letter-spacing:13.387500px;}
.ls26_c00211{letter-spacing:14.175000px;}
.ls4_c00211{letter-spacing:17.325000px;}
.ls2d_c00211{letter-spacing:17.727000px;}
.ls23_c00211{letter-spacing:20.474685px;}
.ls5_c00211{letter-spacing:21.262500px;}
.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;}
._15_c00211{margin-left:-35.909937px;}
._19_c00211{margin-left:-34.830053px;}
._17_c00211{margin-left:-30.678039px;}
._16_c00211{margin-left:-21.356811px;}
._11_c00211{margin-left:-6.102917px;}
._b_c00211{margin-left:-3.148856px;}
._a_c00211{margin-left:-1.097864px;}
._10_c00211{width:1.003349px;}
._3_c00211{width:2.509317px;}
._1_c00211{width:3.523022px;}
._2_c00211{width:4.761745px;}
._c_c00211{width:5.819432px;}
._4_c00211{width:7.168880px;}
._f_c00211{width:8.206047px;}
._0_c00211{width:9.276483px;}
._8_c00211{width:10.898941px;}
._d_c00211{width:12.750323px;}
._12_c00211{width:13.871129px;}
._e_c00211{width:15.426768px;}
._13_c00211{width:17.605231px;}
._7_c00211{width:19.727930px;}
._5_c00211{width:21.358293px;}
._18_c00211{width:22.742599px;}
._6_c00211{width:24.247511px;}
._1b_c00211{width:25.728739px;}
._1a_c00211{width:26.743351px;}
._14_c00211{width:28.603471px;}
._9_c00211{width:29.938922px;}
.fc0_c00211{color:transparent;}
.fse_c00211{font-size:26.250000px;}
.fsb_c00211{font-size:29.250000px;}
.fsa_c00211{font-size:30.000000px;}
.fs9_c00211{font-size:31.500000px;}
.fsd_c00211{font-size:33.000000px;}
.fsc_c00211{font-size:44.250000px;}
.fsf_c00211{font-size:72.750000px;}
.fs10_c00211{font-size:75.000000px;}
.fs7_c00211{font-size:77.250000px;}
.fs8_c00211{font-size:78.000000px;}
.fs0_c00211{font-size:78.750000px;}
.fs1_c00211{font-size:79.500000px;}
.fs4_c00211{font-size:80.250000px;}
.fs2_c00211{font-size:81.000000px;}
.fs6_c00211{font-size:81.750000px;}
.fs3_c00211{font-size:82.500000px;}
.fs5_c00211{font-size:84.750000px;}
.fs12_c00211{font-size:87.750000px;}
.fs11_c00211{font-size:101.250000px;}
.y0_c00211{bottom:0.000000px;}
.y2d_c00211{bottom:181.799955px;}
.y2e_c00211{bottom:181.800150px;}
.y2c_c00211{bottom:203.038740px;}
.y2b_c00211{bottom:224.279670px;}
.y2a_c00211{bottom:245.878950px;}
.y29_c00211{bottom:304.920255px;}
.y28_c00211{bottom:334.799970px;}
.y27_c00211{bottom:364.679700px;}
.y26_c00211{bottom:364.679850px;}
.y25_c00211{bottom:394.199385px;}
.y24_c00211{bottom:423.719100px;}
.y23_c00211{bottom:429.119385px;}
.y22_c00211{bottom:453.238770px;}
.y21_c00211{bottom:453.240030px;}
.y20_c00211{bottom:483.840435px;}
.y1f_c00211{bottom:513.720150px;}
.y1e_c00211{bottom:543.599070px;}
.y1d_c00211{bottom:543.599265px;}
.y1c_c00211{bottom:573.118785px;}
.y1b_c00211{bottom:573.118815px;}
.y19_c00211{bottom:602.639970px;}
.y1a_c00211{bottom:602.640150px;}
.y18_c00211{bottom:631.799010px;}
.y17_c00211{bottom:662.038920px;}
.y16_c00211{bottom:662.038950px;}
.y14_c00211{bottom:691.560195px;}
.y15_c00211{bottom:691.560285px;}
.y12_c00211{bottom:721.800060px;}
.y13_c00211{bottom:721.800105px;}
.y11_c00211{bottom:780.478635px;}
.y10_c00211{bottom:780.479340px;}
.yf_c00211{bottom:840.598980px;}
.ye_c00211{bottom:870.838905px;}
.yd_c00211{bottom:870.839790px;}
.yc_c00211{bottom:900.719520px;}
.yb_c00211{bottom:900.719700px;}
.ya_c00211{bottom:930.239220px;}
.y9_c00211{bottom:930.239685px;}
.y8_c00211{bottom:959.759220px;}
.y6_c00211{bottom:989.278425px;}
.y7_c00211{bottom:989.278755px;}
.y5_c00211{bottom:1019.878830px;}
.y3_c00211{bottom:1049.039925px;}
.y4_c00211{bottom:1049.039985px;}
.y2_c00211{bottom:1079.279850px;}
.y1_c00211{bottom:1138.680090px;}
.h13_c00211{height:27.377930px;}
.h14_c00211{height:29.478516px;}
.h11_c00211{height:30.234375px;}
.he_c00211{height:30.506836px;}
.hd_c00211{height:31.289062px;}
.h12_c00211{height:31.746094px;}
.hc_c00211{height:32.853516px;}
.h10_c00211{height:34.417969px;}
.hf_c00211{height:46.151367px;}
.h15_c00211{height:71.400146px;}
.h16_c00211{height:73.608398px;}
.h8_c00211{height:75.816650px;}
.h9_c00211{height:76.552734px;}
.h1_c00211{height:77.288818px;}
.h2_c00211{height:78.024902px;}
.hb_c00211{height:78.568359px;}
.h5_c00211{height:78.760986px;}
.h3_c00211{height:79.497070px;}
.h7_c00211{height:80.233154px;}
.h4_c00211{height:80.969238px;}
.ha_c00211{height:81.533203px;}
.h18_c00211{height:82.133789px;}
.h6_c00211{height:83.177490px;}
.h19_c00211{height:86.721680px;}
.h17_c00211{height:105.600586px;}
.h0_c00211{height:1263.000000px;}
.w0_c00211{width:892.500000px;}
.x0_c00211{left:0.000000px;}
.x35_c00211{left:139.319250px;}
.x1_c00211{left:140.398665px;}
.x1f_c00211{left:141.481665px;}
.x26_c00211{left:160.198785px;}
.x2_c00211{left:170.279250px;}
.x3f_c00211{left:194.399385px;}
.x3c_c00211{left:196.199850px;}
.x3d_c00211{left:210.599700px;}
.x1a_c00211{left:221.398635px;}
.x29_c00211{left:223.199850px;}
.x3e_c00211{left:226.439685px;}
.x2a_c00211{left:244.799535px;}
.x1b_c00211{left:247.678500px;}
.x12_c00211{left:270.359250px;}
.x13_c00211{left:284.399850px;}
.x16_c00211{left:318.958950px;}
.x36_c00211{left:324.359250px;}
.x5_c00211{left:331.559100px;}
.x30_c00211{left:334.798950px;}
.x17_c00211{left:335.878350px;}
.x6_c00211{left:345.238785px;}
.x37_c00211{left:357.118785px;}
.x22_c00211{left:367.199385px;}
.x31_c00211{left:381.239850px;}
.x23_c00211{left:383.039385px;}
.x2b_c00211{left:398.879565px;}
.x40_c00211{left:403.198785px;}
.x9_c00211{left:405.000000px;}
.x38_c00211{left:409.678530px;}
.xa_c00211{left:418.679670px;}
.xf_c00211{left:424.439250px;}
.x2c_c00211{left:429.839535px;}
.x39_c00211{left:435.239820px;}
.x10_c00211{left:438.118785px;}
.x32_c00211{left:448.558635px;}
.xb_c00211{left:547.918350px;}
.x21_c00211{left:560.518620px;}
.xc_c00211{left:561.958920px;}
.x2d_c00211{left:574.559100px;}
.x1e_c00211{left:578.519070px;}
.x24_c00211{left:586.798515px;}
.x41_c00211{left:594.718500px;}
.x2e_c00211{left:595.799520px;}
.x42_c00211{left:600.838950px;}
.x25_c00211{left:601.918350px;}
.x3_c00211{left:604.439670px;}
.x43_c00211{left:613.080000px;}
.x14_c00211{left:623.878920px;}
.x4_c00211{left:632.159820px;}
.x3a_c00211{left:633.598530px;}
.xd_c00211{left:637.919535px;}
.x15_c00211{left:653.759535px;}
.x3b_c00211{left:656.999400px;}
.x20_c00211{left:662.399820px;}
.x2f_c00211{left:664.558635px;}
.x18_c00211{left:674.279850px;}
.x11_c00211{left:685.439670px;}
.xe_c00211{left:688.679670px;}
.x33_c00211{left:695.159370px;}
.x7_c00211{left:704.158770px;}
.x27_c00211{left:710.999400px;}
.x34_c00211{left:714.239220px;}
.x8_c00211{left:717.838530px;}
.x1c_c00211{left:719.639700px;}
.x19_c00211{left:722.159370px;}
.x28_c00211{left:743.399820px;}
.x1d_c00211{left:746.639700px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls1e_c00211{letter-spacing:-12.062800pt;}
.ls32_c00211{letter-spacing:-7.924000pt;}
.lsf_c00211{letter-spacing:-7.781107pt;}
.ls1c_c00211{letter-spacing:-6.937333pt;}
.ls12_c00211{letter-spacing:-6.601000pt;}
.ls1b_c00211{letter-spacing:-5.943000pt;}
.lse_c00211{letter-spacing:-5.285000pt;}
.ls33_c00211{letter-spacing:-4.664473pt;}
.ls14_c00211{letter-spacing:-4.619300pt;}
.ls16_c00211{letter-spacing:-4.536093pt;}
.ls15_c00211{letter-spacing:-3.961300pt;}
.ls19_c00211{letter-spacing:-3.920867pt;}
.ls30_c00211{letter-spacing:-3.806667pt;}
.ls13_c00211{letter-spacing:-3.335400pt;}
.lsd_c00211{letter-spacing:-3.304000pt;}
.ls18_c00211{letter-spacing:-2.797667pt;}
.ls1f_c00211{letter-spacing:-2.764667pt;}
.ls9_c00211{letter-spacing:-2.639000pt;}
.lsb_c00211{letter-spacing:-1.981700pt;}
.ls2b_c00211{letter-spacing:-1.965880pt;}
.ls2e_c00211{letter-spacing:-1.825460pt;}
.ls34_c00211{letter-spacing:-1.427400pt;}
.ls1d_c00211{letter-spacing:-1.347120pt;}
.lsa_c00211{letter-spacing:-1.323700pt;}
.ls29_c00211{letter-spacing:-1.297333pt;}
.ls17_c00211{letter-spacing:-1.272707pt;}
.ls20_c00211{letter-spacing:-0.730667pt;}
.lsc_c00211{letter-spacing:-0.658000pt;}
.ls11_c00211{letter-spacing:0.000000pt;}
.ls22_c00211{letter-spacing:1.856400pt;}
.ls2c_c00211{letter-spacing:1.989333pt;}
.ls21_c00211{letter-spacing:2.100000pt;}
.ls1a_c00211{letter-spacing:2.142400pt;}
.ls25_c00211{letter-spacing:2.478667pt;}
.ls31_c00211{letter-spacing:3.113760pt;}
.ls10_c00211{letter-spacing:3.233520pt;}
.ls28_c00211{letter-spacing:3.458000pt;}
.ls2f_c00211{letter-spacing:4.171000pt;}
.ls6_c00211{letter-spacing:5.453333pt;}
.ls27_c00211{letter-spacing:6.061067pt;}
.ls2_c00211{letter-spacing:6.300280pt;}
.ls24_c00211{letter-spacing:6.666607pt;}
.ls7_c00211{letter-spacing:6.666667pt;}
.ls8_c00211{letter-spacing:7.272267pt;}
.ls2a_c00211{letter-spacing:8.485600pt;}
.ls3_c00211{letter-spacing:9.800280pt;}
.ls1_c00211{letter-spacing:10.500000pt;}
.ls0_c00211{letter-spacing:11.900000pt;}
.ls26_c00211{letter-spacing:12.600000pt;}
.ls4_c00211{letter-spacing:15.400000pt;}
.ls2d_c00211{letter-spacing:15.757333pt;}
.ls23_c00211{letter-spacing:18.199720pt;}
.ls5_c00211{letter-spacing:18.900000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
._15_c00211{margin-left:-31.919944pt;}
._19_c00211{margin-left:-30.960047pt;}
._17_c00211{margin-left:-27.269368pt;}
._16_c00211{margin-left:-18.983832pt;}
._11_c00211{margin-left:-5.424815pt;}
._b_c00211{margin-left:-2.798983pt;}
._a_c00211{margin-left:-0.975879pt;}
._10_c00211{width:0.891866pt;}
._3_c00211{width:2.230504pt;}
._1_c00211{width:3.131575pt;}
._2_c00211{width:4.232662pt;}
._c_c00211{width:5.172828pt;}
._4_c00211{width:6.372338pt;}
._f_c00211{width:7.294264pt;}
._0_c00211{width:8.245762pt;}
._8_c00211{width:9.687947pt;}
._d_c00211{width:11.333621pt;}
._12_c00211{width:12.329892pt;}
._e_c00211{width:13.712683pt;}
._13_c00211{width:15.649094pt;}
._7_c00211{width:17.535938pt;}
._5_c00211{width:18.985149pt;}
._18_c00211{width:20.215643pt;}
._6_c00211{width:21.553343pt;}
._1b_c00211{width:22.869991pt;}
._1a_c00211{width:23.771868pt;}
._14_c00211{width:25.425308pt;}
._9_c00211{width:26.612375pt;}
.fse_c00211{font-size:23.333333pt;}
.fsb_c00211{font-size:26.000000pt;}
.fsa_c00211{font-size:26.666667pt;}
.fs9_c00211{font-size:28.000000pt;}
.fsd_c00211{font-size:29.333333pt;}
.fsc_c00211{font-size:39.333333pt;}
.fsf_c00211{font-size:64.666667pt;}
.fs10_c00211{font-size:66.666667pt;}
.fs7_c00211{font-size:68.666667pt;}
.fs8_c00211{font-size:69.333333pt;}
.fs0_c00211{font-size:70.000000pt;}
.fs1_c00211{font-size:70.666667pt;}
.fs4_c00211{font-size:71.333333pt;}
.fs2_c00211{font-size:72.000000pt;}
.fs6_c00211{font-size:72.666667pt;}
.fs3_c00211{font-size:73.333333pt;}
.fs5_c00211{font-size:75.333333pt;}
.fs12_c00211{font-size:78.000000pt;}
.fs11_c00211{font-size:90.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y2d_c00211{bottom:161.599960pt;}
.y2e_c00211{bottom:161.600133pt;}
.y2c_c00211{bottom:180.478880pt;}
.y2b_c00211{bottom:199.359707pt;}
.y2a_c00211{bottom:218.559067pt;}
.y29_c00211{bottom:271.040227pt;}
.y28_c00211{bottom:297.599973pt;}
.y27_c00211{bottom:324.159733pt;}
.y26_c00211{bottom:324.159867pt;}
.y25_c00211{bottom:350.399453pt;}
.y24_c00211{bottom:376.639200pt;}
.y23_c00211{bottom:381.439453pt;}
.y22_c00211{bottom:402.878907pt;}
.y21_c00211{bottom:402.880027pt;}
.y20_c00211{bottom:430.080387pt;}
.y1f_c00211{bottom:456.640133pt;}
.y1e_c00211{bottom:483.199173pt;}
.y1d_c00211{bottom:483.199347pt;}
.y1c_c00211{bottom:509.438920pt;}
.y1b_c00211{bottom:509.438947pt;}
.y19_c00211{bottom:535.679973pt;}
.y1a_c00211{bottom:535.680133pt;}
.y18_c00211{bottom:561.599120pt;}
.y17_c00211{bottom:588.479040pt;}
.y16_c00211{bottom:588.479067pt;}
.y14_c00211{bottom:614.720173pt;}
.y15_c00211{bottom:614.720253pt;}
.y12_c00211{bottom:641.600053pt;}
.y13_c00211{bottom:641.600093pt;}
.y11_c00211{bottom:693.758787pt;}
.y10_c00211{bottom:693.759413pt;}
.yf_c00211{bottom:747.199093pt;}
.ye_c00211{bottom:774.079027pt;}
.yd_c00211{bottom:774.079813pt;}
.yc_c00211{bottom:800.639573pt;}
.yb_c00211{bottom:800.639733pt;}
.ya_c00211{bottom:826.879307pt;}
.y9_c00211{bottom:826.879720pt;}
.y8_c00211{bottom:853.119307pt;}
.y6_c00211{bottom:879.358600pt;}
.y7_c00211{bottom:879.358893pt;}
.y5_c00211{bottom:906.558960pt;}
.y3_c00211{bottom:932.479933pt;}
.y4_c00211{bottom:932.479987pt;}
.y2_c00211{bottom:959.359867pt;}
.y1_c00211{bottom:1012.160080pt;}
.h13_c00211{height:24.335938pt;}
.h14_c00211{height:26.203125pt;}
.h11_c00211{height:26.875000pt;}
.he_c00211{height:27.117188pt;}
.hd_c00211{height:27.812500pt;}
.h12_c00211{height:28.218750pt;}
.hc_c00211{height:29.203125pt;}
.h10_c00211{height:30.593750pt;}
.hf_c00211{height:41.023438pt;}
.h15_c00211{height:63.466797pt;}
.h16_c00211{height:65.429688pt;}
.h8_c00211{height:67.392578pt;}
.h9_c00211{height:68.046875pt;}
.h1_c00211{height:68.701172pt;}
.h2_c00211{height:69.355469pt;}
.hb_c00211{height:69.838542pt;}
.h5_c00211{height:70.009766pt;}
.h3_c00211{height:70.664062pt;}
.h7_c00211{height:71.318359pt;}
.h4_c00211{height:71.972656pt;}
.ha_c00211{height:72.473958pt;}
.h18_c00211{height:73.007812pt;}
.h6_c00211{height:73.935547pt;}
.h19_c00211{height:77.085938pt;}
.h17_c00211{height:93.867188pt;}
.h0_c00211{height:1122.666667pt;}
.w0_c00211{width:793.333333pt;}
.x0_c00211{left:0.000000pt;}
.x35_c00211{left:123.839333pt;}
.x1_c00211{left:124.798813pt;}
.x1f_c00211{left:125.761480pt;}
.x26_c00211{left:142.398920pt;}
.x2_c00211{left:151.359333pt;}
.x3f_c00211{left:172.799453pt;}
.x3c_c00211{left:174.399867pt;}
.x3d_c00211{left:187.199733pt;}
.x1a_c00211{left:196.798787pt;}
.x29_c00211{left:198.399867pt;}
.x3e_c00211{left:201.279720pt;}
.x2a_c00211{left:217.599587pt;}
.x1b_c00211{left:220.158667pt;}
.x12_c00211{left:240.319333pt;}
.x13_c00211{left:252.799867pt;}
.x16_c00211{left:283.519067pt;}
.x36_c00211{left:288.319333pt;}
.x5_c00211{left:294.719200pt;}
.x30_c00211{left:297.599067pt;}
.x17_c00211{left:298.558533pt;}
.x6_c00211{left:306.878920pt;}
.x37_c00211{left:317.438920pt;}
.x22_c00211{left:326.399453pt;}
.x31_c00211{left:338.879867pt;}
.x23_c00211{left:340.479453pt;}
.x2b_c00211{left:354.559613pt;}
.x40_c00211{left:358.398920pt;}
.x9_c00211{left:360.000000pt;}
.x38_c00211{left:364.158693pt;}
.xa_c00211{left:372.159707pt;}
.xf_c00211{left:377.279333pt;}
.x2c_c00211{left:382.079587pt;}
.x39_c00211{left:386.879840pt;}
.x10_c00211{left:389.438920pt;}
.x32_c00211{left:398.718787pt;}
.xb_c00211{left:487.038533pt;}
.x21_c00211{left:498.238773pt;}
.xc_c00211{left:499.519040pt;}
.x2d_c00211{left:510.719200pt;}
.x1e_c00211{left:514.239173pt;}
.x24_c00211{left:521.598680pt;}
.x41_c00211{left:528.638667pt;}
.x2e_c00211{left:529.599573pt;}
.x42_c00211{left:534.079067pt;}
.x25_c00211{left:535.038533pt;}
.x3_c00211{left:537.279707pt;}
.x43_c00211{left:544.960000pt;}
.x14_c00211{left:554.559040pt;}
.x4_c00211{left:561.919840pt;}
.x3a_c00211{left:563.198693pt;}
.xd_c00211{left:567.039587pt;}
.x15_c00211{left:581.119587pt;}
.x3b_c00211{left:583.999467pt;}
.x20_c00211{left:588.799840pt;}
.x2f_c00211{left:590.718787pt;}
.x18_c00211{left:599.359867pt;}
.x11_c00211{left:609.279707pt;}
.xe_c00211{left:612.159707pt;}
.x33_c00211{left:617.919440pt;}
.x7_c00211{left:625.918907pt;}
.x27_c00211{left:631.999467pt;}
.x34_c00211{left:634.879307pt;}
.x8_c00211{left:638.078693pt;}
.x1c_c00211{left:639.679733pt;}
.x19_c00211{left:641.919440pt;}
.x28_c00211{left:660.799840pt;}
.x1d_c00211{left:663.679733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6926ad2654448aa90f141c84.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.364746;font-style:normal;font-weight:normal;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_ba454ad65b9eca1fe7e53521.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_7bee0b9c99c2a3728576ee3d.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_908a310db40232e70799ba30.woff2')format("woff");}.ff4_c00212{font-family:ff4_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:ff5_c00212;src:url('chunks/assets/font_2fd92b49fa3e71355c7b8bb4.woff2')format("woff");}.ff5_c00212{font-family:ff5_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:ff6_c00212;src:url('chunks/assets/font_4a5f47f21c9263832848fab4.woff2')format("woff");}.ff6_c00212{font-family:ff6_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;}
.m20_c00212{transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183628,0.000000,0.000000,0.250000,0,0);}
.m18_c00212{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m16_c00212{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3d_c00212{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);}
.m3f_c00212{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m41_c00212{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m13_c00212{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1d_c00212{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m12_c00212{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m30_c00212{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m17_c00212{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m22_c00212{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m3e_c00212{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m28_c00212{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m14_c00212{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m29_c00212{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m11_c00212{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m21_c00212{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m19_c00212{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m15_c00212{transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);}
.m36_c00212{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m3c_c00212{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m40_c00212{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m25_c00212{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m32_c00212{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);}
.m34_c00212{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.m31_c00212{transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);}
.m42_c00212{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m2d_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);}
.mc_c00212{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00212{transform:matrix(0.311275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311275,0.000000,0.000000,0.250000,0,0);}
.m33_c00212{transform:matrix(0.326271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326271,0.000000,0.000000,0.250000,0,0);}
.m2a_c00212{transform:matrix(0.331818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331818,0.000000,0.000000,0.250000,0,0);}
.m3b_c00212{transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);}
.m26_c00212{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m37_c00212{transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);}
.m38_c00212{transform:matrix(0.359091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359091,0.000000,0.000000,0.250000,0,0);}
.m10_c00212{transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);}
.m39_c00212{transform:matrix(0.377451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377451,0.000000,0.000000,0.250000,0,0);}
.m1b_c00212{transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);}
.mf_c00212{transform:matrix(0.383152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383152,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.421196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421196,0.000000,0.000000,0.250000,0,0);}
.m35_c00212{transform:matrix(0.426230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426230,0.000000,0.000000,0.250000,0,0);}
.m2c_c00212{transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);}
.m2e_c00212{transform:matrix(0.461207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461207,0.000000,0.000000,0.250000,0,0);}
.m2f_c00212{transform:matrix(0.481481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481481,0.000000,0.000000,0.250000,0,0);}
.m3a_c00212{transform:matrix(0.571429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571429,0.000000,0.000000,0.250000,0,0);}
.md_c00212{transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);}
.m2b_c00212{transform:matrix(0.654762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654762,0.000000,0.000000,0.250000,0,0);}
.m27_c00212{transform:matrix(0.695122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695122,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.764493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764493,0.000000,0.000000,0.250000,0,0);}
.m23_c00212{transform:matrix(1.467391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.467391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.467391,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls2f_c00212{letter-spacing:-17.827500px;}
.ls25_c00212{letter-spacing:-13.271850px;}
.ls1f_c00212{letter-spacing:-11.335875px;}
.ls24_c00212{letter-spacing:-9.186900px;}
.ls14_c00212{letter-spacing:-8.914500px;}
.ls1_c00212{letter-spacing:-7.484400px;}
.ls1c_c00212{letter-spacing:-7.426125px;}
.ls3d_c00212{letter-spacing:-7.222575px;}
.ls19_c00212{letter-spacing:-6.685875px;}
.ls6_c00212{letter-spacing:-6.623663px;}
.ls2_c00212{letter-spacing:-6.363060px;}
.ls8_c00212{letter-spacing:-6.002325px;}
.ls16_c00212{letter-spacing:-5.999633px;}
.ls13_c00212{letter-spacing:-5.945625px;}
.ls4_c00212{letter-spacing:-5.890500px;}
.ls9_c00212{letter-spacing:-5.252228px;}
.ls27_c00212{letter-spacing:-5.196713px;}
.ls1d_c00212{letter-spacing:-5.151248px;}
.ls35_c00212{letter-spacing:-4.741875px;}
.ls18_c00212{letter-spacing:-4.456463px;}
.ls11_c00212{letter-spacing:-3.717000px;}
.ls3a_c00212{letter-spacing:-3.476925px;}
.ls34_c00212{letter-spacing:-3.447075px;}
.lsb_c00212{letter-spacing:-3.432780px;}
.ls3f_c00212{letter-spacing:-3.148200px;}
.ls39_c00212{letter-spacing:-3.130875px;}
.ls17_c00212{letter-spacing:-3.110250px;}
.lsa_c00212{letter-spacing:-2.997300px;}
.ls10_c00212{letter-spacing:-2.968875px;}
.ls15_c00212{letter-spacing:-2.252250px;}
.lsd_c00212{letter-spacing:-2.229413px;}
.ls38_c00212{letter-spacing:-1.631685px;}
.lsc_c00212{letter-spacing:-1.497878px;}
.ls12_c00212{letter-spacing:-1.489163px;}
.ls26_c00212{letter-spacing:-1.482000px;}
.ls2e_c00212{letter-spacing:-1.433250px;}
.ls3b_c00212{letter-spacing:-0.983220px;}
.ls21_c00212{letter-spacing:-0.854618px;}
.ls7_c00212{letter-spacing:-0.787178px;}
.lse_c00212{letter-spacing:-0.740250px;}
.ls33_c00212{letter-spacing:-0.680183px;}
.ls2a_c00212{letter-spacing:-0.546000px;}
.ls31_c00212{letter-spacing:-0.388800px;}
.ls3_c00212{letter-spacing:0.000000px;}
.ls32_c00212{letter-spacing:0.674175px;}
.ls30_c00212{letter-spacing:0.813885px;}
.ls1a_c00212{letter-spacing:2.247750px;}
.ls5_c00212{letter-spacing:2.785380px;}
.ls37_c00212{letter-spacing:2.902500px;}
.ls22_c00212{letter-spacing:3.014100px;}
.ls1b_c00212{letter-spacing:3.283800px;}
.lsf_c00212{letter-spacing:4.211700px;}
.ls36_c00212{letter-spacing:4.401608px;}
.ls2d_c00212{letter-spacing:4.521000px;}
.ls28_c00212{letter-spacing:4.828200px;}
.ls1e_c00212{letter-spacing:5.093550px;}
.ls0_c00212{letter-spacing:5.998200px;}
.ls29_c00212{letter-spacing:6.292800px;}
.ls3c_c00212{letter-spacing:7.287900px;}
.ls2b_c00212{letter-spacing:7.820400px;}
.ls20_c00212{letter-spacing:8.175038px;}
.ls3e_c00212{letter-spacing:14.287500px;}
.ls2c_c00212{letter-spacing:23.076000px;}
.ls23_c00212{letter-spacing:29.334375px;}
.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;}
._18_c00212{margin-left:-55.435486px;}
._19_c00212{margin-left:-40.057450px;}
._d_c00212{margin-left:-36.266932px;}
._17_c00212{margin-left:-31.812120px;}
._22_c00212{margin-left:-13.587882px;}
._c_c00212{margin-left:-11.137702px;}
._2_c00212{margin-left:-8.525434px;}
._1d_c00212{margin-left:-5.569021px;}
._b_c00212{margin-left:-3.883189px;}
._a_c00212{margin-left:-2.110749px;}
._21_c00212{margin-left:-1.100907px;}
._14_c00212{width:1.149809px;}
._1c_c00212{width:2.466447px;}
._4_c00212{width:3.492414px;}
._6_c00212{width:5.189952px;}
._5_c00212{width:6.606620px;}
._8_c00212{width:7.726759px;}
._1_c00212{width:9.689557px;}
._20_c00212{width:10.741023px;}
._0_c00212{width:11.946478px;}
._3_c00212{width:13.454014px;}
._7_c00212{width:15.277500px;}
._16_c00212{width:16.372488px;}
._12_c00212{width:18.133763px;}
._13_c00212{width:19.637397px;}
._e_c00212{width:21.250509px;}
._1f_c00212{width:22.398327px;}
._10_c00212{width:23.654925px;}
._15_c00212{width:25.309598px;}
._1a_c00212{width:26.511751px;}
._9_c00212{width:27.979623px;}
._f_c00212{width:29.995370px;}
._1e_c00212{width:31.744792px;}
._1b_c00212{width:34.077115px;}
._11_c00212{width:35.563857px;}
.fc0_c00212{color:transparent;}
.fs13_c00212{font-size:17.250000px;}
.fs14_c00212{font-size:30.000000px;}
.fs15_c00212{font-size:30.750000px;}
.fs18_c00212{font-size:31.500000px;}
.fs16_c00212{font-size:36.750000px;}
.fs1a_c00212{font-size:37.500000px;}
.fs22_c00212{font-size:38.250000px;}
.fs1b_c00212{font-size:40.500000px;}
.fs17_c00212{font-size:41.250000px;}
.fs23_c00212{font-size:42.000000px;}
.fs19_c00212{font-size:43.500000px;}
.fs1e_c00212{font-size:44.250000px;}
.fs21_c00212{font-size:45.000000px;}
.fs20_c00212{font-size:45.750000px;}
.fs24_c00212{font-size:51.000000px;}
.fs5_c00212{font-size:51.750000px;}
.fs1f_c00212{font-size:56.250000px;}
.fse_c00212{font-size:57.750000px;}
.fs25_c00212{font-size:59.250000px;}
.fs1_c00212{font-size:64.500000px;}
.fs0_c00212{font-size:66.000000px;}
.fs1d_c00212{font-size:66.750000px;}
.fs6_c00212{font-size:69.000000px;}
.fs10_c00212{font-size:71.250000px;}
.fs1c_c00212{font-size:72.000000px;}
.fsf_c00212{font-size:72.750000px;}
.fs11_c00212{font-size:74.250000px;}
.fs7_c00212{font-size:75.750000px;}
.fs12_c00212{font-size:76.500000px;}
.fs4_c00212{font-size:77.250000px;}
.fs3_c00212{font-size:78.000000px;}
.fs2_c00212{font-size:78.750000px;}
.fs26_c00212{font-size:79.500000px;}
.fsd_c00212{font-size:80.250000px;}
.fs9_c00212{font-size:81.750000px;}
.fsa_c00212{font-size:82.500000px;}
.fsb_c00212{font-size:84.750000px;}
.fsc_c00212{font-size:101.250000px;}
.fs8_c00212{font-size:115.500000px;}
.y0_c00212{bottom:0.000000px;}
.y27_c00212{bottom:179.278800px;}
.y26_c00212{bottom:179.280255px;}
.y25_c00212{bottom:200.881350px;}
.y24_c00212{bottom:222.480630px;}
.y23_c00212{bottom:243.359250px;}
.y22_c00212{bottom:303.118785px;}
.y21_c00212{bottom:332.279250px;}
.y20_c00212{bottom:332.280420px;}
.y1f_c00212{bottom:361.799955px;}
.y1e_c00212{bottom:391.679670px;}
.y1c_c00212{bottom:421.199385px;}
.y1d_c00212{bottom:421.919535px;}
.y1b_c00212{bottom:429.119385px;}
.y1a_c00212{bottom:451.080780px;}
.y19_c00212{bottom:481.679070px;}
.y18_c00212{bottom:488.519670px;}
.y17_c00212{bottom:511.740075px;}
.y16_c00212{bottom:570.959970px;}
.y15_c00212{bottom:630.000750px;}
.y14_c00212{bottom:659.520285px;}
.y13_c00212{bottom:689.400015px;}
.y12_c00212{bottom:718.919535px;}
.y10_c00212{bottom:748.800105px;}
.y11_c00212{bottom:749.518620px;}
.yf_c00212{bottom:779.039985px;}
.yd_c00212{bottom:838.438185px;}
.ye_c00212{bottom:838.438665px;}
.yc_c00212{bottom:859.679070px;}
.yb_c00212{bottom:859.679460px;}
.ya_c00212{bottom:881.278755px;}
.y9_c00212{bottom:881.279415px;}
.y7_c00212{bottom:902.159805px;}
.y8_c00212{bottom:902.159820px;}
.y6_c00212{bottom:923.398590px;}
.y5_c00212{bottom:982.799865px;}
.y4_c00212{bottom:1013.039775px;}
.y3_c00212{bottom:1042.919490px;}
.y2_c00212{bottom:1073.159370px;}
.y1_c00212{bottom:1073.879520px;}
.h18_c00212{height:17.991211px;}
.h1c_c00212{height:30.234375px;}
.h19_c00212{height:31.289062px;}
.h1a_c00212{height:32.071289px;}
.h1e_c00212{height:32.853516px;}
.h1b_c00212{height:36.319336px;}
.h20_c00212{height:37.060547px;}
.h29_c00212{height:39.893555px;}
.h2a_c00212{height:41.220703px;}
.h21_c00212{height:42.240234px;}
.h28_c00212{height:42.692871px;}
.h1d_c00212{height:43.022461px;}
.h27_c00212{height:44.165039px;}
.h26_c00212{height:44.901123px;}
.h1f_c00212{height:45.369141px;}
.h24_c00212{height:46.151367px;}
.h2b_c00212{height:53.191406px;}
.h7_c00212{height:53.973633px;}
.h12_c00212{height:56.678467px;}
.h2d_c00212{height:56.689453px;}
.h2c_c00212{height:58.555664px;}
.h25_c00212{height:58.666992px;}
.h2_c00212{height:65.003906px;}
.h1_c00212{height:65.226562px;}
.h23_c00212{height:65.511475px;}
.h22_c00212{height:70.664062px;}
.h8_c00212{height:71.964844px;}
.h14_c00212{height:74.311523px;}
.h16_c00212{height:75.080566px;}
.h13_c00212{height:75.875977px;}
.ha_c00212{height:76.341797px;}
.h11_c00212{height:76.552734px;}
.h4_c00212{height:77.085938px;}
.h9_c00212{height:77.288818px;}
.h15_c00212{height:77.440430px;}
.h5_c00212{height:77.853516px;}
.h6_c00212{height:78.609375px;}
.h10_c00212{height:78.760986px;}
.h3_c00212{height:79.365234px;}
.h2e_c00212{height:80.121094px;}
.hc_c00212{height:80.233154px;}
.hd_c00212{height:80.969238px;}
.h2f_c00212{height:82.133789px;}
.he_c00212{height:83.177490px;}
.h17_c00212{height:83.756836px;}
.hf_c00212{height:105.600586px;}
.hb_c00212{height:120.462891px;}
.h0_c00212{height:1263.000000px;}
.w0_c00212{width:892.500000px;}
.x0_c00212{left:0.000000px;}
.x36_c00212{left:100.798515px;}
.x1_c00212{left:139.319250px;}
.xb_c00212{left:150.479250px;}
.x38_c00212{left:154.439250px;}
.x34_c00212{left:156.599700px;}
.x2_c00212{left:164.878950px;}
.x27_c00212{left:165.958350px;}
.xc_c00212{left:172.798950px;}
.x39_c00212{left:174.598500px;}
.xd_c00212{left:177.838515px;}
.xe_c00212{left:185.040000px;}
.x2b_c00212{left:186.478665px;}
.x20_c00212{left:193.677675px;}
.x17_c00212{left:194.759535px;}
.x48_c00212{left:203.759100px;}
.x3_c00212{left:204.838515px;}
.x35_c00212{left:205.919535px;}
.xf_c00212{left:206.998950px;}
.x18_c00212{left:209.159385px;}
.x49_c00212{left:215.639100px;}
.x10_c00212{left:217.799535px;}
.x11_c00212{left:225.719535px;}
.x4a_c00212{left:227.878350px;}
.x19_c00212{left:230.038950px;}
.x12_c00212{left:235.080000px;}
.x41_c00212{left:236.518635px;}
.x3a_c00212{left:238.319850px;}
.x13_c00212{left:243.000000px;}
.x14_c00212{left:248.039385px;}
.x25_c00212{left:251.279250px;}
.x42_c00212{left:260.998950px;}
.x4_c00212{left:263.159385px;}
.x21_c00212{left:264.238785px;}
.x26_c00212{left:266.758500px;}
.x22_c00212{left:270.359250px;}
.x23_c00212{left:279.719535px;}
.x2c_c00212{left:284.759100px;}
.x15_c00212{left:291.958950px;}
.x2d_c00212{left:305.999385px;}
.x16_c00212{left:335.519100px;}
.x5_c00212{left:358.199850px;}
.x2e_c00212{left:380.878950px;}
.x3b_c00212{left:388.439715px;}
.x2f_c00212{left:398.879565px;}
.x6_c00212{left:407.158770px;}
.x4b_c00212{left:408.599070px;}
.x4c_c00212{left:420.838530px;}
.x7_c00212{left:432.000000px;}
.x3c_c00212{left:440.279250px;}
.x3d_c00212{left:463.678530px;}
.x28_c00212{left:471.239220px;}
.x8_c00212{left:472.318770px;}
.x30_c00212{left:476.998950px;}
.x29_c00212{left:486.718500px;}
.x37_c00212{left:497.159820px;}
.x1a_c00212{left:499.318770px;}
.x31_c00212{left:511.198785px;}
.x43_c00212{left:529.919535px;}
.x3e_c00212{left:530.998950px;}
.x1b_c00212{left:532.798515px;}
.x32_c00212{left:533.879520px;}
.x4d_c00212{left:542.519670px;}
.x4e_c00212{left:548.279250px;}
.x1e_c00212{left:552.239220px;}
.x3f_c00212{left:553.318770px;}
.x4f_c00212{left:560.159415px;}
.x1f_c00212{left:568.438620px;}
.x33_c00212{left:584.639700px;}
.x40_c00212{left:596.878920px;}
.x9_c00212{left:638.639700px;}
.x1c_c00212{left:659.159820px;}
.x44_c00212{left:660.598530px;}
.x24_c00212{left:666.719100px;}
.x45_c00212{left:681.838950px;}
.x1d_c00212{left:694.798560px;}
.xa_c00212{left:757.799520px;}
.x46_c00212{left:762.118785px;}
.x2a_c00212{left:764.999355px;}
.x47_c00212{left:769.679715px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls2f_c00212{letter-spacing:-15.846667pt;}
.ls25_c00212{letter-spacing:-11.797200pt;}
.ls1f_c00212{letter-spacing:-10.076333pt;}
.ls24_c00212{letter-spacing:-8.166133pt;}
.ls14_c00212{letter-spacing:-7.924000pt;}
.ls1_c00212{letter-spacing:-6.652800pt;}
.ls1c_c00212{letter-spacing:-6.601000pt;}
.ls3d_c00212{letter-spacing:-6.420067pt;}
.ls19_c00212{letter-spacing:-5.943000pt;}
.ls6_c00212{letter-spacing:-5.887700pt;}
.ls2_c00212{letter-spacing:-5.656053pt;}
.ls8_c00212{letter-spacing:-5.335400pt;}
.ls16_c00212{letter-spacing:-5.333007pt;}
.ls13_c00212{letter-spacing:-5.285000pt;}
.ls4_c00212{letter-spacing:-5.236000pt;}
.ls9_c00212{letter-spacing:-4.668647pt;}
.ls27_c00212{letter-spacing:-4.619300pt;}
.ls1d_c00212{letter-spacing:-4.578887pt;}
.ls35_c00212{letter-spacing:-4.215000pt;}
.ls18_c00212{letter-spacing:-3.961300pt;}
.ls11_c00212{letter-spacing:-3.304000pt;}
.ls3a_c00212{letter-spacing:-3.090600pt;}
.ls34_c00212{letter-spacing:-3.064067pt;}
.lsb_c00212{letter-spacing:-3.051360pt;}
.ls3f_c00212{letter-spacing:-2.798400pt;}
.ls39_c00212{letter-spacing:-2.783000pt;}
.ls17_c00212{letter-spacing:-2.764667pt;}
.lsa_c00212{letter-spacing:-2.664267pt;}
.ls10_c00212{letter-spacing:-2.639000pt;}
.ls15_c00212{letter-spacing:-2.002000pt;}
.lsd_c00212{letter-spacing:-1.981700pt;}
.ls38_c00212{letter-spacing:-1.450387pt;}
.lsc_c00212{letter-spacing:-1.331447pt;}
.ls12_c00212{letter-spacing:-1.323700pt;}
.ls26_c00212{letter-spacing:-1.317333pt;}
.ls2e_c00212{letter-spacing:-1.274000pt;}
.ls3b_c00212{letter-spacing:-0.873973pt;}
.ls21_c00212{letter-spacing:-0.759660pt;}
.ls7_c00212{letter-spacing:-0.699713pt;}
.lse_c00212{letter-spacing:-0.658000pt;}
.ls33_c00212{letter-spacing:-0.604607pt;}
.ls2a_c00212{letter-spacing:-0.485333pt;}
.ls31_c00212{letter-spacing:-0.345600pt;}
.ls3_c00212{letter-spacing:0.000000pt;}
.ls32_c00212{letter-spacing:0.599267pt;}
.ls30_c00212{letter-spacing:0.723453pt;}
.ls1a_c00212{letter-spacing:1.998000pt;}
.ls5_c00212{letter-spacing:2.475893pt;}
.ls37_c00212{letter-spacing:2.580000pt;}
.ls22_c00212{letter-spacing:2.679200pt;}
.ls1b_c00212{letter-spacing:2.918933pt;}
.lsf_c00212{letter-spacing:3.743733pt;}
.ls36_c00212{letter-spacing:3.912540pt;}
.ls2d_c00212{letter-spacing:4.018667pt;}
.ls28_c00212{letter-spacing:4.291733pt;}
.ls1e_c00212{letter-spacing:4.527600pt;}
.ls0_c00212{letter-spacing:5.331733pt;}
.ls29_c00212{letter-spacing:5.593600pt;}
.ls3c_c00212{letter-spacing:6.478133pt;}
.ls2b_c00212{letter-spacing:6.951467pt;}
.ls20_c00212{letter-spacing:7.266700pt;}
.ls3e_c00212{letter-spacing:12.700000pt;}
.ls2c_c00212{letter-spacing:20.512000pt;}
.ls23_c00212{letter-spacing:26.075000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
._18_c00212{margin-left:-49.275987pt;}
._19_c00212{margin-left:-35.606622pt;}
._d_c00212{margin-left:-32.237272pt;}
._17_c00212{margin-left:-28.277440pt;}
._22_c00212{margin-left:-12.078117pt;}
._c_c00212{margin-left:-9.900179pt;}
._2_c00212{margin-left:-7.578164pt;}
._1d_c00212{margin-left:-4.950241pt;}
._b_c00212{margin-left:-3.451724pt;}
._a_c00212{margin-left:-1.876221pt;}
._21_c00212{margin-left:-0.978584pt;}
._14_c00212{width:1.022053pt;}
._1c_c00212{width:2.192397pt;}
._4_c00212{width:3.104368pt;}
._6_c00212{width:4.613291pt;}
._5_c00212{width:5.872551pt;}
._8_c00212{width:6.868230pt;}
._1_c00212{width:8.612940pt;}
._20_c00212{width:9.547576pt;}
._0_c00212{width:10.619092pt;}
._3_c00212{width:11.959124pt;}
._7_c00212{width:13.580000pt;}
._16_c00212{width:14.553322pt;}
._12_c00212{width:16.118900pt;}
._13_c00212{width:17.455464pt;}
._e_c00212{width:18.889342pt;}
._1f_c00212{width:19.909624pt;}
._10_c00212{width:21.026600pt;}
._15_c00212{width:22.497421pt;}
._1a_c00212{width:23.566001pt;}
._9_c00212{width:24.870776pt;}
._f_c00212{width:26.662551pt;}
._1e_c00212{width:28.217593pt;}
._1b_c00212{width:30.290769pt;}
._11_c00212{width:31.612317pt;}
.fs13_c00212{font-size:15.333333pt;}
.fs14_c00212{font-size:26.666667pt;}
.fs15_c00212{font-size:27.333333pt;}
.fs18_c00212{font-size:28.000000pt;}
.fs16_c00212{font-size:32.666667pt;}
.fs1a_c00212{font-size:33.333333pt;}
.fs22_c00212{font-size:34.000000pt;}
.fs1b_c00212{font-size:36.000000pt;}
.fs17_c00212{font-size:36.666667pt;}
.fs23_c00212{font-size:37.333333pt;}
.fs19_c00212{font-size:38.666667pt;}
.fs1e_c00212{font-size:39.333333pt;}
.fs21_c00212{font-size:40.000000pt;}
.fs20_c00212{font-size:40.666667pt;}
.fs24_c00212{font-size:45.333333pt;}
.fs5_c00212{font-size:46.000000pt;}
.fs1f_c00212{font-size:50.000000pt;}
.fse_c00212{font-size:51.333333pt;}
.fs25_c00212{font-size:52.666667pt;}
.fs1_c00212{font-size:57.333333pt;}
.fs0_c00212{font-size:58.666667pt;}
.fs1d_c00212{font-size:59.333333pt;}
.fs6_c00212{font-size:61.333333pt;}
.fs10_c00212{font-size:63.333333pt;}
.fs1c_c00212{font-size:64.000000pt;}
.fsf_c00212{font-size:64.666667pt;}
.fs11_c00212{font-size:66.000000pt;}
.fs7_c00212{font-size:67.333333pt;}
.fs12_c00212{font-size:68.000000pt;}
.fs4_c00212{font-size:68.666667pt;}
.fs3_c00212{font-size:69.333333pt;}
.fs2_c00212{font-size:70.000000pt;}
.fs26_c00212{font-size:70.666667pt;}
.fsd_c00212{font-size:71.333333pt;}
.fs9_c00212{font-size:72.666667pt;}
.fsa_c00212{font-size:73.333333pt;}
.fsb_c00212{font-size:75.333333pt;}
.fsc_c00212{font-size:90.000000pt;}
.fs8_c00212{font-size:102.666667pt;}
.y0_c00212{bottom:0.000000pt;}
.y27_c00212{bottom:159.358933pt;}
.y26_c00212{bottom:159.360227pt;}
.y25_c00212{bottom:178.561200pt;}
.y24_c00212{bottom:197.760560pt;}
.y23_c00212{bottom:216.319333pt;}
.y22_c00212{bottom:269.438920pt;}
.y21_c00212{bottom:295.359333pt;}
.y20_c00212{bottom:295.360373pt;}
.y1f_c00212{bottom:321.599960pt;}
.y1e_c00212{bottom:348.159707pt;}
.y1c_c00212{bottom:374.399453pt;}
.y1d_c00212{bottom:375.039587pt;}
.y1b_c00212{bottom:381.439453pt;}
.y1a_c00212{bottom:400.960693pt;}
.y19_c00212{bottom:428.159173pt;}
.y18_c00212{bottom:434.239707pt;}
.y17_c00212{bottom:454.880067pt;}
.y16_c00212{bottom:507.519973pt;}
.y15_c00212{bottom:560.000667pt;}
.y14_c00212{bottom:586.240253pt;}
.y13_c00212{bottom:612.800013pt;}
.y12_c00212{bottom:639.039587pt;}
.y10_c00212{bottom:665.600093pt;}
.y11_c00212{bottom:666.238773pt;}
.yf_c00212{bottom:692.479987pt;}
.yd_c00212{bottom:745.278387pt;}
.ye_c00212{bottom:745.278813pt;}
.yc_c00212{bottom:764.159173pt;}
.yb_c00212{bottom:764.159520pt;}
.ya_c00212{bottom:783.358893pt;}
.y9_c00212{bottom:783.359480pt;}
.y7_c00212{bottom:801.919827pt;}
.y8_c00212{bottom:801.919840pt;}
.y6_c00212{bottom:820.798747pt;}
.y5_c00212{bottom:873.599880pt;}
.y4_c00212{bottom:900.479800pt;}
.y3_c00212{bottom:927.039547pt;}
.y2_c00212{bottom:953.919440pt;}
.y1_c00212{bottom:954.559573pt;}
.h18_c00212{height:15.992187pt;}
.h1c_c00212{height:26.875000pt;}
.h19_c00212{height:27.812500pt;}
.h1a_c00212{height:28.507812pt;}
.h1e_c00212{height:29.203125pt;}
.h1b_c00212{height:32.283854pt;}
.h20_c00212{height:32.942708pt;}
.h29_c00212{height:35.460938pt;}
.h2a_c00212{height:36.640625pt;}
.h21_c00212{height:37.546875pt;}
.h28_c00212{height:37.949219pt;}
.h1d_c00212{height:38.242188pt;}
.h27_c00212{height:39.257812pt;}
.h26_c00212{height:39.912109pt;}
.h1f_c00212{height:40.328125pt;}
.h24_c00212{height:41.023438pt;}
.h2b_c00212{height:47.281250pt;}
.h7_c00212{height:47.976562pt;}
.h12_c00212{height:50.380859pt;}
.h2d_c00212{height:50.390625pt;}
.h2c_c00212{height:52.049479pt;}
.h25_c00212{height:52.148438pt;}
.h2_c00212{height:57.781250pt;}
.h1_c00212{height:57.979167pt;}
.h23_c00212{height:58.232422pt;}
.h22_c00212{height:62.812500pt;}
.h8_c00212{height:63.968750pt;}
.h14_c00212{height:66.054688pt;}
.h16_c00212{height:66.738281pt;}
.h13_c00212{height:67.445312pt;}
.ha_c00212{height:67.859375pt;}
.h11_c00212{height:68.046875pt;}
.h4_c00212{height:68.520833pt;}
.h9_c00212{height:68.701172pt;}
.h15_c00212{height:68.835938pt;}
.h5_c00212{height:69.203125pt;}
.h6_c00212{height:69.875000pt;}
.h10_c00212{height:70.009766pt;}
.h3_c00212{height:70.546875pt;}
.h2e_c00212{height:71.218750pt;}
.hc_c00212{height:71.318359pt;}
.hd_c00212{height:71.972656pt;}
.h2f_c00212{height:73.007812pt;}
.he_c00212{height:73.935547pt;}
.h17_c00212{height:74.450521pt;}
.hf_c00212{height:93.867188pt;}
.hb_c00212{height:107.078125pt;}
.h0_c00212{height:1122.666667pt;}
.w0_c00212{width:793.333333pt;}
.x0_c00212{left:0.000000pt;}
.x36_c00212{left:89.598680pt;}
.x1_c00212{left:123.839333pt;}
.xb_c00212{left:133.759333pt;}
.x38_c00212{left:137.279333pt;}
.x34_c00212{left:139.199733pt;}
.x2_c00212{left:146.559067pt;}
.x27_c00212{left:147.518533pt;}
.xc_c00212{left:153.599067pt;}
.x39_c00212{left:155.198667pt;}
.xd_c00212{left:158.078680pt;}
.xe_c00212{left:164.480000pt;}
.x2b_c00212{left:165.758813pt;}
.x20_c00212{left:172.157933pt;}
.x17_c00212{left:173.119587pt;}
.x48_c00212{left:181.119200pt;}
.x3_c00212{left:182.078680pt;}
.x35_c00212{left:183.039587pt;}
.xf_c00212{left:183.999067pt;}
.x18_c00212{left:185.919453pt;}
.x49_c00212{left:191.679200pt;}
.x10_c00212{left:193.599587pt;}
.x11_c00212{left:200.639587pt;}
.x4a_c00212{left:202.558533pt;}
.x19_c00212{left:204.479067pt;}
.x12_c00212{left:208.960000pt;}
.x41_c00212{left:210.238787pt;}
.x3a_c00212{left:211.839867pt;}
.x13_c00212{left:216.000000pt;}
.x14_c00212{left:220.479453pt;}
.x25_c00212{left:223.359333pt;}
.x42_c00212{left:231.999067pt;}
.x4_c00212{left:233.919453pt;}
.x21_c00212{left:234.878920pt;}
.x26_c00212{left:237.118667pt;}
.x22_c00212{left:240.319333pt;}
.x23_c00212{left:248.639587pt;}
.x2c_c00212{left:253.119200pt;}
.x15_c00212{left:259.519067pt;}
.x2d_c00212{left:271.999453pt;}
.x16_c00212{left:298.239200pt;}
.x5_c00212{left:318.399867pt;}
.x2e_c00212{left:338.559067pt;}
.x3b_c00212{left:345.279747pt;}
.x2f_c00212{left:354.559613pt;}
.x6_c00212{left:361.918907pt;}
.x4b_c00212{left:363.199173pt;}
.x4c_c00212{left:374.078693pt;}
.x7_c00212{left:384.000000pt;}
.x3c_c00212{left:391.359333pt;}
.x3d_c00212{left:412.158693pt;}
.x28_c00212{left:418.879307pt;}
.x8_c00212{left:419.838907pt;}
.x30_c00212{left:423.999067pt;}
.x29_c00212{left:432.638667pt;}
.x37_c00212{left:441.919840pt;}
.x1a_c00212{left:443.838907pt;}
.x31_c00212{left:454.398920pt;}
.x43_c00212{left:471.039587pt;}
.x3e_c00212{left:471.999067pt;}
.x1b_c00212{left:473.598680pt;}
.x32_c00212{left:474.559573pt;}
.x4d_c00212{left:482.239707pt;}
.x4e_c00212{left:487.359333pt;}
.x1e_c00212{left:490.879307pt;}
.x3f_c00212{left:491.838907pt;}
.x4f_c00212{left:497.919480pt;}
.x1f_c00212{left:505.278773pt;}
.x33_c00212{left:519.679733pt;}
.x40_c00212{left:530.559040pt;}
.x9_c00212{left:567.679733pt;}
.x1c_c00212{left:585.919840pt;}
.x44_c00212{left:587.198693pt;}
.x24_c00212{left:592.639200pt;}
.x45_c00212{left:606.079067pt;}
.x1d_c00212{left:617.598720pt;}
.xa_c00212{left:673.599573pt;}
.x46_c00212{left:677.438920pt;}
.x2a_c00212{left:679.999427pt;}
.x47_c00212{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ddf1fa1c25641343f127d46.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.364746;font-style:normal;font-weight:normal;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_3a91859d9db0a419eae2c08b.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_94464062602e073a1432ee61.woff2')format("woff");}.ff4_c00213{font-family:ff4_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;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_a5fe7f9aa5bb16362b7ac748.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00213;src:url('chunks/assets/font_6be35f803385704dc72c76e7.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00213;src:url('chunks/assets/font_3d259ec6321e1ebc94bf27b3.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:1.432129;font-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_c00213{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m31_c00213{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m26_c00213{transform:matrix(0.196809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196809,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.200553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200553,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);}
.m2e_c00213{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3e_c00213{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m42_c00213{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m46_c00213{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m33_c00213{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m44_c00213{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{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);}
.m43_c00213{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m37_c00213{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m40_c00213{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m23_c00213{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m30_c00213{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m27_c00213{transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274194,0.000000,0.000000,0.250000,0,0);}
.m2a_c00213{transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);}
.m36_c00213{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m29_c00213{transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.309783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309783,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311321,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m28_c00213{transform:matrix(0.331633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331633,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{transform:matrix(0.348361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348361,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493590,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.564286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564286,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.570312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570312,0.000000,0.000000,0.250000,0,0);}
.m22_c00213{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls4_c00213{letter-spacing:-13.242075px;}
.ls19_c00213{letter-spacing:-13.149045px;}
.ls16_c00213{letter-spacing:-12.799500px;}
.ls13_c00213{letter-spacing:-12.467610px;}
.ls7_c00213{letter-spacing:-10.576350px;}
.ls42_c00213{letter-spacing:-7.296315px;}
.ls10_c00213{letter-spacing:-6.748088px;}
.ls2_c00213{letter-spacing:-6.685875px;}
.ls38_c00213{letter-spacing:-6.570900px;}
.ls34_c00213{letter-spacing:-6.156600px;}
.ls4a_c00213{letter-spacing:-6.093750px;}
.ls17_c00213{letter-spacing:-5.945625px;}
.ls8_c00213{letter-spacing:-5.196713px;}
.ls2d_c00213{letter-spacing:-4.937108px;}
.lse_c00213{letter-spacing:-4.725000px;}
.ls37_c00213{letter-spacing:-4.709250px;}
.ls18_c00213{letter-spacing:-4.456463px;}
.ls1e_c00213{letter-spacing:-4.406250px;}
.ls35_c00213{letter-spacing:-4.371578px;}
.ls4d_c00213{letter-spacing:-3.733200px;}
.ls14_c00213{letter-spacing:-3.717000px;}
.ls30_c00213{letter-spacing:-3.489750px;}
.ls44_c00213{letter-spacing:-3.101550px;}
.ls2b_c00213{letter-spacing:-3.067200px;}
.ls41_c00213{letter-spacing:-3.046875px;}
.ls3_c00213{letter-spacing:-2.968875px;}
.ls49_c00213{letter-spacing:-2.952000px;}
.ls36_c00213{letter-spacing:-2.914650px;}
.ls20_c00213{letter-spacing:-2.325488px;}
.ls3f_c00213{letter-spacing:-2.325000px;}
.ls9_c00213{letter-spacing:-2.251463px;}
.ls6_c00213{letter-spacing:-2.229413px;}
.ls43_c00213{letter-spacing:-2.213550px;}
.ls3c_c00213{letter-spacing:-1.989000px;}
.ls21_c00213{letter-spacing:-1.666170px;}
.lsd_c00213{letter-spacing:-1.606500px;}
.lsf_c00213{letter-spacing:-1.560000px;}
.ls3a_c00213{letter-spacing:-1.547985px;}
.ls15_c00213{letter-spacing:-1.489163px;}
.ls4c_c00213{letter-spacing:-1.476450px;}
.ls11_c00213{letter-spacing:-1.418288px;}
.lsc_c00213{letter-spacing:-1.382250px;}
.ls3b_c00213{letter-spacing:-1.340775px;}
.ls1d_c00213{letter-spacing:-1.035300px;}
.ls45_c00213{letter-spacing:-0.994500px;}
.ls4b_c00213{letter-spacing:-0.812700px;}
.ls3d_c00213{letter-spacing:-0.776085px;}
.ls5_c00213{letter-spacing:-0.740250px;}
.ls46_c00213{letter-spacing:-0.739350px;}
.lsb_c00213{letter-spacing:-0.705600px;}
.ls40_c00213{letter-spacing:-0.693000px;}
.ls2a_c00213{letter-spacing:-0.518400px;}
.lsa_c00213{letter-spacing:0.000000px;}
.ls22_c00213{letter-spacing:0.460800px;}
.ls3e_c00213{letter-spacing:0.539850px;}
.ls25_c00213{letter-spacing:0.735000px;}
.ls23_c00213{letter-spacing:1.314960px;}
.ls2c_c00213{letter-spacing:1.462050px;}
.ls28_c00213{letter-spacing:1.686825px;}
.ls29_c00213{letter-spacing:1.814700px;}
.ls39_c00213{letter-spacing:1.896480px;}
.ls33_c00213{letter-spacing:2.040585px;}
.ls27_c00213{letter-spacing:2.199773px;}
.ls31_c00213{letter-spacing:2.259758px;}
.ls1b_c00213{letter-spacing:2.643810px;}
.ls48_c00213{letter-spacing:3.013447px;}
.ls26_c00213{letter-spacing:3.067200px;}
.ls1_c00213{letter-spacing:3.873450px;}
.ls32_c00213{letter-spacing:4.332900px;}
.ls24_c00213{letter-spacing:4.908330px;}
.ls1f_c00213{letter-spacing:6.972150px;}
.ls47_c00213{letter-spacing:8.572448px;}
.ls1a_c00213{letter-spacing:9.840600px;}
.ls2f_c00213{letter-spacing:11.431575px;}
.ls0_c00213{letter-spacing:14.290350px;}
.ls1c_c00213{letter-spacing:14.542710px;}
.ls12_c00213{letter-spacing:20.821500px;}
.ls2e_c00213{letter-spacing:22.438582px;}
.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;}
._1a_c00213{margin-left:-29.016186px;}
._a_c00213{margin-left:-5.562187px;}
._18_c00213{margin-left:-4.105683px;}
._2_c00213{margin-left:-2.861716px;}
._1_c00213{margin-left:-1.449535px;}
._3_c00213{width:1.650957px;}
._4_c00213{width:3.483989px;}
._c_c00213{width:4.719993px;}
._5_c00213{width:6.313090px;}
._8_c00213{width:8.317664px;}
._6_c00213{width:9.954000px;}
._9_c00213{width:11.064672px;}
._12_c00213{width:13.237637px;}
._7_c00213{width:14.568691px;}
._10_c00213{width:15.577107px;}
._b_c00213{width:16.799871px;}
._e_c00213{width:18.733525px;}
._11_c00213{width:20.118307px;}
._0_c00213{width:21.286303px;}
._f_c00213{width:22.794722px;}
._d_c00213{width:24.396661px;}
._19_c00213{width:26.200452px;}
._13_c00213{width:27.833534px;}
._16_c00213{width:29.589956px;}
._15_c00213{width:30.950652px;}
._17_c00213{width:33.722459px;}
._14_c00213{width:36.853856px;}
.fc0_c00213{color:transparent;}
.fs10_c00213{font-size:24.000000px;}
.fse_c00213{font-size:26.250000px;}
.fsf_c00213{font-size:27.000000px;}
.fs15_c00213{font-size:28.500000px;}
.fs16_c00213{font-size:29.250000px;}
.fs17_c00213{font-size:30.750000px;}
.fs12_c00213{font-size:32.250000px;}
.fs14_c00213{font-size:34.500000px;}
.fsc_c00213{font-size:35.250000px;}
.fs11_c00213{font-size:36.750000px;}
.fs13_c00213{font-size:38.250000px;}
.fs9_c00213{font-size:39.000000px;}
.fsd_c00213{font-size:39.750000px;}
.fsb_c00213{font-size:43.500000px;}
.fs22_c00213{font-size:44.250000px;}
.fs24_c00213{font-size:45.000000px;}
.fs25_c00213{font-size:45.750000px;}
.fs19_c00213{font-size:46.500000px;}
.fs26_c00213{font-size:47.250000px;}
.fs21_c00213{font-size:48.000000px;}
.fs23_c00213{font-size:48.750000px;}
.fs27_c00213{font-size:49.500000px;}
.fsa_c00213{font-size:50.250000px;}
.fs8_c00213{font-size:53.250000px;}
.fs1f_c00213{font-size:68.250000px;}
.fs6_c00213{font-size:69.000000px;}
.fs18_c00213{font-size:70.500000px;}
.fs4_c00213{font-size:72.000000px;}
.fs3_c00213{font-size:72.750000px;}
.fs20_c00213{font-size:73.500000px;}
.fs1e_c00213{font-size:76.500000px;}
.fs1c_c00213{font-size:77.250000px;}
.fs5_c00213{font-size:78.000000px;}
.fs0_c00213{font-size:78.750000px;}
.fs7_c00213{font-size:79.500000px;}
.fs1a_c00213{font-size:80.250000px;}
.fs1_c00213{font-size:82.500000px;}
.fs1d_c00213{font-size:84.750000px;}
.fs1b_c00213{font-size:85.297200px;}
.fs2_c00213{font-size:85.500000px;}
.y0_c00213{bottom:0.000000px;}
.y27_c00213{bottom:169.559100px;}
.y26_c00213{bottom:185.760150px;}
.y25_c00213{bottom:192.239850px;}
.y24_c00213{bottom:223.199850px;}
.y23_c00213{bottom:223.199895px;}
.y22_c00213{bottom:239.399250px;}
.y21_c00213{bottom:318.238785px;}
.y20_c00213{bottom:390.959385px;}
.y1f_c00213{bottom:390.960405px;}
.y1e_c00213{bottom:420.840135px;}
.y1d_c00213{bottom:450.359850px;}
.y1c_c00213{bottom:450.361695px;}
.y1b_c00213{bottom:480.960000px;}
.y1a_c00213{bottom:510.839715px;}
.y19_c00213{bottom:540.359250px;}
.y18_c00213{bottom:599.398635px;}
.y16_c00213{bottom:628.919190px;}
.y17_c00213{bottom:628.920000px;}
.y15_c00213{bottom:658.798920px;}
.y14_c00213{bottom:658.799955px;}
.y13_c00213{bottom:688.679670px;}
.y12_c00213{bottom:688.680570px;}
.y11_c00213{bottom:718.560285px;}
.y10_c00213{bottom:748.080000px;}
.yf_c00213{bottom:753.119385px;}
.ye_c00213{bottom:778.318335px;}
.yd_c00213{bottom:837.719400px;}
.yc_c00213{bottom:867.599115px;}
.yb_c00213{bottom:867.599220px;}
.ya_c00213{bottom:897.118740px;}
.y9_c00213{bottom:897.118770px;}
.y7_c00213{bottom:926.640060px;}
.y8_c00213{bottom:926.640105px;}
.y6_c00213{bottom:956.879970px;}
.y5_c00213{bottom:1016.279640px;}
.y4_c00213{bottom:1046.159370px;}
.y2_c00213{bottom:1076.398545px;}
.y3_c00213{bottom:1076.399235px;}
.y1_c00213{bottom:1105.559685px;}
.h14_c00213{height:25.031250px;}
.h19_c00213{height:27.210938px;}
.h12_c00213{height:27.377930px;}
.h13_c00213{height:28.160156px;}
.h1a_c00213{height:29.724609px;}
.h1b_c00213{height:30.506836px;}
.h1c_c00213{height:30.990234px;}
.h16_c00213{height:33.635742px;}
.h10_c00213{height:34.836914px;}
.h18_c00213{height:35.982422px;}
.h1e_c00213{height:36.068115px;}
.h15_c00213{height:37.037109px;}
.h17_c00213{height:37.801758px;}
.h1f_c00213{height:38.276367px;}
.hd_c00213{height:38.542969px;}
.h11_c00213{height:41.458008px;}
.h2c_c00213{height:43.428955px;}
.h20_c00213{height:43.839844px;}
.h2f_c00213{height:44.901123px;}
.h32_c00213{height:45.213867px;}
.h2e_c00213{height:45.351562px;}
.hf_c00213{height:45.369141px;}
.h21_c00213{height:45.955078px;}
.h2b_c00213{height:46.863281px;}
.h2a_c00213{height:47.109375px;}
.h30_c00213{height:47.619141px;}
.h2d_c00213{height:48.178711px;}
.h31_c00213{height:49.886719px;}
.he_c00213{height:50.642578px;}
.hc_c00213{height:53.666016px;}
.h5_c00213{height:70.664062px;}
.h28_c00213{height:71.182617px;}
.h4_c00213{height:71.400146px;}
.h9_c00213{height:71.964844px;}
.h6_c00213{height:73.318359px;}
.h1d_c00213{height:73.529297px;}
.h27_c00213{height:75.080566px;}
.h25_c00213{height:75.816650px;}
.h24_c00213{height:76.552734px;}
.h29_c00213{height:76.658203px;}
.h1_c00213{height:77.288818px;}
.ha_c00213{height:78.024902px;}
.h8_c00213{height:78.609375px;}
.h22_c00213{height:78.760986px;}
.h7_c00213{height:79.365234px;}
.hb_c00213{height:80.969238px;}
.h2_c00213{height:81.533203px;}
.h26_c00213{height:83.177490px;}
.h23_c00213{height:83.714537px;}
.h3_c00213{height:84.498047px;}
.h0_c00213{height:1263.000000px;}
.w0_c00213{width:892.500000px;}
.x0_c00213{left:0.000000px;}
.x31_c00213{left:140.759400px;}
.x18_c00213{left:142.199850px;}
.x1_c00213{left:143.638500px;}
.x22_c00213{left:167.039400px;}
.x12_c00213{left:169.199850px;}
.x3a_c00213{left:174.239250px;}
.x3b_c00213{left:190.438665px;}
.x6_c00213{left:191.878950px;}
.x26_c00213{left:205.199385px;}
.x2_c00213{left:210.599700px;}
.x52_c00213{left:217.799535px;}
.x2c_c00213{left:222.118785px;}
.x34_c00213{left:226.439685px;}
.x53_c00213{left:228.598500px;}
.x3_c00213{left:230.038950px;}
.x5d_c00213{left:231.838515px;}
.x2d_c00213{left:238.679100px;}
.x42_c00213{left:244.438635px;}
.x3c_c00213{left:245.878950px;}
.x3d_c00213{left:259.558635px;}
.x19_c00213{left:270.000000px;}
.x43_c00213{left:276.479685px;}
.x5e_c00213{left:280.439685px;}
.x3e_c00213{left:287.998950px;}
.x1a_c00213{left:290.518635px;}
.x23_c00213{left:292.679100px;}
.x35_c00213{left:299.878950px;}
.x3f_c00213{left:301.678500px;}
.x2e_c00213{left:312.838515px;}
.x27_c00213{left:316.439235px;}
.x2f_c00213{left:333.719535px;}
.x1b_c00213{left:336.239250px;}
.x7_c00213{left:337.318800px;}
.x36_c00213{left:340.919535px;}
.x54_c00213{left:346.319850px;}
.x24_c00213{left:353.158785px;}
.x8_c00213{left:360.358635px;}
.x37_c00213{left:365.399850px;}
.x55_c00213{left:366.838515px;}
.x25_c00213{left:372.238785px;}
.x4_c00213{left:376.918950px;}
.x56_c00213{left:380.519685px;}
.x1c_c00213{left:381.958350px;}
.x44_c00213{left:384.118785px;}
.x4e_c00213{left:396.359850px;}
.x45_c00213{left:415.798920px;}
.x5_c00213{left:418.318770px;}
.x9_c00213{left:423.719100px;}
.x4f_c00213{left:425.879520px;}
.x28_c00213{left:435.239820px;}
.x1d_c00213{left:446.399820px;}
.x29_c00213{left:452.159415px;}
.x46_c00213{left:456.478635px;}
.x47_c00213{left:466.199850px;}
.x32_c00213{left:470.159820px;}
.xa_c00213{left:471.239220px;}
.x33_c00213{left:486.000000px;}
.x1e_c00213{left:494.279250px;}
.x48_c00213{left:503.639700px;}
.xb_c00213{left:513.359250px;}
.x15_c00213{left:521.279250px;}
.x1f_c00213{left:524.159820px;}
.x16_c00213{left:538.559685px;}
.xc_c00213{left:539.639100px;}
.x49_c00213{left:543.958335px;}
.x4a_c00213{left:553.679670px;}
.x13_c00213{left:563.399235px;}
.x57_c00213{left:568.079400px;}
.xd_c00213{left:571.678530px;}
.x58_c00213{left:578.159820px;}
.x14_c00213{left:581.759085px;}
.x20_c00213{left:594.359250px;}
.x40_c00213{left:597.599070px;}
.x2a_c00213{left:598.678530px;}
.x41_c00213{left:606.959385px;}
.x4b_c00213{left:613.080000px;}
.x2b_c00213{left:615.958920px;}
.x50_c00213{left:639.719100px;}
.xe_c00213{left:645.839535px;}
.xf_c00213{left:668.879520px;}
.x38_c00213{left:671.039985px;}
.x39_c00213{left:685.798920px;}
.x51_c00213{left:689.038920px;}
.x17_c00213{left:691.199385px;}
.x59_c00213{left:700.918950px;}
.x21_c00213{left:702.359250px;}
.x5a_c00213{left:711.358605px;}
.x5b_c00213{left:728.279850px;}
.x10_c00213{left:733.319235px;}
.x4c_c00213{left:741.239220px;}
.x4d_c00213{left:750.958920px;}
.x5c_c00213{left:768.598575px;}
.x11_c00213{left:770.038965px;}
.x30_c00213{left:773.278755px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls4_c00213{letter-spacing:-11.770733pt;}
.ls19_c00213{letter-spacing:-11.688040pt;}
.ls16_c00213{letter-spacing:-11.377333pt;}
.ls13_c00213{letter-spacing:-11.082320pt;}
.ls7_c00213{letter-spacing:-9.401200pt;}
.ls42_c00213{letter-spacing:-6.485613pt;}
.ls10_c00213{letter-spacing:-5.998300pt;}
.ls2_c00213{letter-spacing:-5.943000pt;}
.ls38_c00213{letter-spacing:-5.840800pt;}
.ls34_c00213{letter-spacing:-5.472533pt;}
.ls4a_c00213{letter-spacing:-5.416667pt;}
.ls17_c00213{letter-spacing:-5.285000pt;}
.ls8_c00213{letter-spacing:-4.619300pt;}
.ls2d_c00213{letter-spacing:-4.388540pt;}
.lse_c00213{letter-spacing:-4.200000pt;}
.ls37_c00213{letter-spacing:-4.186000pt;}
.ls18_c00213{letter-spacing:-3.961300pt;}
.ls1e_c00213{letter-spacing:-3.916667pt;}
.ls35_c00213{letter-spacing:-3.885847pt;}
.ls4d_c00213{letter-spacing:-3.318400pt;}
.ls14_c00213{letter-spacing:-3.304000pt;}
.ls30_c00213{letter-spacing:-3.102000pt;}
.ls44_c00213{letter-spacing:-2.756933pt;}
.ls2b_c00213{letter-spacing:-2.726400pt;}
.ls41_c00213{letter-spacing:-2.708333pt;}
.ls3_c00213{letter-spacing:-2.639000pt;}
.ls49_c00213{letter-spacing:-2.624000pt;}
.ls36_c00213{letter-spacing:-2.590800pt;}
.ls20_c00213{letter-spacing:-2.067100pt;}
.ls3f_c00213{letter-spacing:-2.066667pt;}
.ls9_c00213{letter-spacing:-2.001300pt;}
.ls6_c00213{letter-spacing:-1.981700pt;}
.ls43_c00213{letter-spacing:-1.967600pt;}
.ls3c_c00213{letter-spacing:-1.768000pt;}
.ls21_c00213{letter-spacing:-1.481040pt;}
.lsd_c00213{letter-spacing:-1.428000pt;}
.lsf_c00213{letter-spacing:-1.386667pt;}
.ls3a_c00213{letter-spacing:-1.375987pt;}
.ls15_c00213{letter-spacing:-1.323700pt;}
.ls4c_c00213{letter-spacing:-1.312400pt;}
.ls11_c00213{letter-spacing:-1.260700pt;}
.lsc_c00213{letter-spacing:-1.228667pt;}
.ls3b_c00213{letter-spacing:-1.191800pt;}
.ls1d_c00213{letter-spacing:-0.920267pt;}
.ls45_c00213{letter-spacing:-0.884000pt;}
.ls4b_c00213{letter-spacing:-0.722400pt;}
.ls3d_c00213{letter-spacing:-0.689853pt;}
.ls5_c00213{letter-spacing:-0.658000pt;}
.ls46_c00213{letter-spacing:-0.657200pt;}
.lsb_c00213{letter-spacing:-0.627200pt;}
.ls40_c00213{letter-spacing:-0.616000pt;}
.ls2a_c00213{letter-spacing:-0.460800pt;}
.lsa_c00213{letter-spacing:0.000000pt;}
.ls22_c00213{letter-spacing:0.409600pt;}
.ls3e_c00213{letter-spacing:0.479867pt;}
.ls25_c00213{letter-spacing:0.653333pt;}
.ls23_c00213{letter-spacing:1.168853pt;}
.ls2c_c00213{letter-spacing:1.299600pt;}
.ls28_c00213{letter-spacing:1.499400pt;}
.ls29_c00213{letter-spacing:1.613067pt;}
.ls39_c00213{letter-spacing:1.685760pt;}
.ls33_c00213{letter-spacing:1.813853pt;}
.ls27_c00213{letter-spacing:1.955353pt;}
.ls31_c00213{letter-spacing:2.008673pt;}
.ls1b_c00213{letter-spacing:2.350053pt;}
.ls48_c00213{letter-spacing:2.678620pt;}
.ls26_c00213{letter-spacing:2.726400pt;}
.ls1_c00213{letter-spacing:3.443067pt;}
.ls32_c00213{letter-spacing:3.851467pt;}
.ls24_c00213{letter-spacing:4.362960pt;}
.ls1f_c00213{letter-spacing:6.197467pt;}
.ls47_c00213{letter-spacing:7.619953pt;}
.ls1a_c00213{letter-spacing:8.747200pt;}
.ls2f_c00213{letter-spacing:10.161400pt;}
.ls0_c00213{letter-spacing:12.702533pt;}
.ls1c_c00213{letter-spacing:12.926853pt;}
.ls12_c00213{letter-spacing:18.508000pt;}
.ls2e_c00213{letter-spacing:19.945407pt;}
.ws0_c00213{word-spacing:0.000000pt;}
._1a_c00213{margin-left:-25.792165pt;}
._a_c00213{margin-left:-4.944166pt;}
._18_c00213{margin-left:-3.649496pt;}
._2_c00213{margin-left:-2.543747pt;}
._1_c00213{margin-left:-1.288475pt;}
._3_c00213{width:1.467517pt;}
._4_c00213{width:3.096879pt;}
._c_c00213{width:4.195549pt;}
._5_c00213{width:5.611636pt;}
._8_c00213{width:7.393479pt;}
._6_c00213{width:8.848000pt;}
._9_c00213{width:9.835264pt;}
._12_c00213{width:11.766789pt;}
._7_c00213{width:12.949947pt;}
._10_c00213{width:13.846317pt;}
._b_c00213{width:14.933219pt;}
._e_c00213{width:16.652023pt;}
._11_c00213{width:17.882940pt;}
._0_c00213{width:18.921158pt;}
._f_c00213{width:20.261975pt;}
._d_c00213{width:21.685921pt;}
._19_c00213{width:23.289291pt;}
._13_c00213{width:24.740919pt;}
._16_c00213{width:26.302183pt;}
._15_c00213{width:27.511691pt;}
._17_c00213{width:29.975519pt;}
._14_c00213{width:32.758983pt;}
.fs10_c00213{font-size:21.333333pt;}
.fse_c00213{font-size:23.333333pt;}
.fsf_c00213{font-size:24.000000pt;}
.fs15_c00213{font-size:25.333333pt;}
.fs16_c00213{font-size:26.000000pt;}
.fs17_c00213{font-size:27.333333pt;}
.fs12_c00213{font-size:28.666667pt;}
.fs14_c00213{font-size:30.666667pt;}
.fsc_c00213{font-size:31.333333pt;}
.fs11_c00213{font-size:32.666667pt;}
.fs13_c00213{font-size:34.000000pt;}
.fs9_c00213{font-size:34.666667pt;}
.fsd_c00213{font-size:35.333333pt;}
.fsb_c00213{font-size:38.666667pt;}
.fs22_c00213{font-size:39.333333pt;}
.fs24_c00213{font-size:40.000000pt;}
.fs25_c00213{font-size:40.666667pt;}
.fs19_c00213{font-size:41.333333pt;}
.fs26_c00213{font-size:42.000000pt;}
.fs21_c00213{font-size:42.666667pt;}
.fs23_c00213{font-size:43.333333pt;}
.fs27_c00213{font-size:44.000000pt;}
.fsa_c00213{font-size:44.666667pt;}
.fs8_c00213{font-size:47.333333pt;}
.fs1f_c00213{font-size:60.666667pt;}
.fs6_c00213{font-size:61.333333pt;}
.fs18_c00213{font-size:62.666667pt;}
.fs4_c00213{font-size:64.000000pt;}
.fs3_c00213{font-size:64.666667pt;}
.fs20_c00213{font-size:65.333333pt;}
.fs1e_c00213{font-size:68.000000pt;}
.fs1c_c00213{font-size:68.666667pt;}
.fs5_c00213{font-size:69.333333pt;}
.fs0_c00213{font-size:70.000000pt;}
.fs7_c00213{font-size:70.666667pt;}
.fs1a_c00213{font-size:71.333333pt;}
.fs1_c00213{font-size:73.333333pt;}
.fs1d_c00213{font-size:75.333333pt;}
.fs1b_c00213{font-size:75.819733pt;}
.fs2_c00213{font-size:76.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y27_c00213{bottom:150.719200pt;}
.y26_c00213{bottom:165.120133pt;}
.y25_c00213{bottom:170.879867pt;}
.y24_c00213{bottom:198.399867pt;}
.y23_c00213{bottom:198.399907pt;}
.y22_c00213{bottom:212.799333pt;}
.y21_c00213{bottom:282.878920pt;}
.y20_c00213{bottom:347.519453pt;}
.y1f_c00213{bottom:347.520360pt;}
.y1e_c00213{bottom:374.080120pt;}
.y1d_c00213{bottom:400.319867pt;}
.y1c_c00213{bottom:400.321507pt;}
.y1b_c00213{bottom:427.520000pt;}
.y1a_c00213{bottom:454.079747pt;}
.y19_c00213{bottom:480.319333pt;}
.y18_c00213{bottom:532.798787pt;}
.y16_c00213{bottom:559.039280pt;}
.y17_c00213{bottom:559.040000pt;}
.y15_c00213{bottom:585.599040pt;}
.y14_c00213{bottom:585.599960pt;}
.y13_c00213{bottom:612.159707pt;}
.y12_c00213{bottom:612.160507pt;}
.y11_c00213{bottom:638.720253pt;}
.y10_c00213{bottom:664.960000pt;}
.yf_c00213{bottom:669.439453pt;}
.ye_c00213{bottom:691.838520pt;}
.yd_c00213{bottom:744.639467pt;}
.yc_c00213{bottom:771.199213pt;}
.yb_c00213{bottom:771.199307pt;}
.ya_c00213{bottom:797.438880pt;}
.y9_c00213{bottom:797.438907pt;}
.y7_c00213{bottom:823.680053pt;}
.y8_c00213{bottom:823.680093pt;}
.y6_c00213{bottom:850.559973pt;}
.y5_c00213{bottom:903.359680pt;}
.y4_c00213{bottom:929.919440pt;}
.y2_c00213{bottom:956.798707pt;}
.y3_c00213{bottom:956.799320pt;}
.y1_c00213{bottom:982.719720pt;}
.h14_c00213{height:22.250000pt;}
.h19_c00213{height:24.187500pt;}
.h12_c00213{height:24.335938pt;}
.h13_c00213{height:25.031250pt;}
.h1a_c00213{height:26.421875pt;}
.h1b_c00213{height:27.117188pt;}
.h1c_c00213{height:27.546875pt;}
.h16_c00213{height:29.898438pt;}
.h10_c00213{height:30.966146pt;}
.h18_c00213{height:31.984375pt;}
.h1e_c00213{height:32.060547pt;}
.h15_c00213{height:32.921875pt;}
.h17_c00213{height:33.601562pt;}
.h1f_c00213{height:34.023438pt;}
.hd_c00213{height:34.260417pt;}
.h11_c00213{height:36.851562pt;}
.h2c_c00213{height:38.603516pt;}
.h20_c00213{height:38.968750pt;}
.h2f_c00213{height:39.912109pt;}
.h32_c00213{height:40.190104pt;}
.h2e_c00213{height:40.312500pt;}
.hf_c00213{height:40.328125pt;}
.h21_c00213{height:40.848958pt;}
.h2b_c00213{height:41.656250pt;}
.h2a_c00213{height:41.875000pt;}
.h30_c00213{height:42.328125pt;}
.h2d_c00213{height:42.825521pt;}
.h31_c00213{height:44.343750pt;}
.he_c00213{height:45.015625pt;}
.hc_c00213{height:47.703125pt;}
.h5_c00213{height:62.812500pt;}
.h28_c00213{height:63.273438pt;}
.h4_c00213{height:63.466797pt;}
.h9_c00213{height:63.968750pt;}
.h6_c00213{height:65.171875pt;}
.h1d_c00213{height:65.359375pt;}
.h27_c00213{height:66.738281pt;}
.h25_c00213{height:67.392578pt;}
.h24_c00213{height:68.046875pt;}
.h29_c00213{height:68.140625pt;}
.h1_c00213{height:68.701172pt;}
.ha_c00213{height:69.355469pt;}
.h8_c00213{height:69.875000pt;}
.h22_c00213{height:70.009766pt;}
.h7_c00213{height:70.546875pt;}
.hb_c00213{height:71.972656pt;}
.h2_c00213{height:72.473958pt;}
.h26_c00213{height:73.935547pt;}
.h23_c00213{height:74.412922pt;}
.h3_c00213{height:75.109375pt;}
.h0_c00213{height:1122.666667pt;}
.w0_c00213{width:793.333333pt;}
.x0_c00213{left:0.000000pt;}
.x31_c00213{left:125.119467pt;}
.x18_c00213{left:126.399867pt;}
.x1_c00213{left:127.678667pt;}
.x22_c00213{left:148.479467pt;}
.x12_c00213{left:150.399867pt;}
.x3a_c00213{left:154.879333pt;}
.x3b_c00213{left:169.278813pt;}
.x6_c00213{left:170.559067pt;}
.x26_c00213{left:182.399453pt;}
.x2_c00213{left:187.199733pt;}
.x52_c00213{left:193.599587pt;}
.x2c_c00213{left:197.438920pt;}
.x34_c00213{left:201.279720pt;}
.x53_c00213{left:203.198667pt;}
.x3_c00213{left:204.479067pt;}
.x5d_c00213{left:206.078680pt;}
.x2d_c00213{left:212.159200pt;}
.x42_c00213{left:217.278787pt;}
.x3c_c00213{left:218.559067pt;}
.x3d_c00213{left:230.718787pt;}
.x19_c00213{left:240.000000pt;}
.x43_c00213{left:245.759720pt;}
.x5e_c00213{left:249.279720pt;}
.x3e_c00213{left:255.999067pt;}
.x1a_c00213{left:258.238787pt;}
.x23_c00213{left:260.159200pt;}
.x35_c00213{left:266.559067pt;}
.x3f_c00213{left:268.158667pt;}
.x2e_c00213{left:278.078680pt;}
.x27_c00213{left:281.279320pt;}
.x2f_c00213{left:296.639587pt;}
.x1b_c00213{left:298.879333pt;}
.x7_c00213{left:299.838933pt;}
.x36_c00213{left:303.039587pt;}
.x54_c00213{left:307.839867pt;}
.x24_c00213{left:313.918920pt;}
.x8_c00213{left:320.318787pt;}
.x37_c00213{left:324.799867pt;}
.x55_c00213{left:326.078680pt;}
.x25_c00213{left:330.878920pt;}
.x4_c00213{left:335.039067pt;}
.x56_c00213{left:338.239720pt;}
.x1c_c00213{left:339.518533pt;}
.x44_c00213{left:341.438920pt;}
.x4e_c00213{left:352.319867pt;}
.x45_c00213{left:369.599040pt;}
.x5_c00213{left:371.838907pt;}
.x9_c00213{left:376.639200pt;}
.x4f_c00213{left:378.559573pt;}
.x28_c00213{left:386.879840pt;}
.x1d_c00213{left:396.799840pt;}
.x29_c00213{left:401.919480pt;}
.x46_c00213{left:405.758787pt;}
.x47_c00213{left:414.399867pt;}
.x32_c00213{left:417.919840pt;}
.xa_c00213{left:418.879307pt;}
.x33_c00213{left:432.000000pt;}
.x1e_c00213{left:439.359333pt;}
.x48_c00213{left:447.679733pt;}
.xb_c00213{left:456.319333pt;}
.x15_c00213{left:463.359333pt;}
.x1f_c00213{left:465.919840pt;}
.x16_c00213{left:478.719720pt;}
.xc_c00213{left:479.679200pt;}
.x49_c00213{left:483.518520pt;}
.x4a_c00213{left:492.159707pt;}
.x13_c00213{left:500.799320pt;}
.x57_c00213{left:504.959467pt;}
.xd_c00213{left:508.158693pt;}
.x58_c00213{left:513.919840pt;}
.x14_c00213{left:517.119187pt;}
.x20_c00213{left:528.319333pt;}
.x40_c00213{left:531.199173pt;}
.x2a_c00213{left:532.158693pt;}
.x41_c00213{left:539.519453pt;}
.x4b_c00213{left:544.960000pt;}
.x2b_c00213{left:547.519040pt;}
.x50_c00213{left:568.639200pt;}
.xe_c00213{left:574.079587pt;}
.xf_c00213{left:594.559573pt;}
.x38_c00213{left:596.479987pt;}
.x39_c00213{left:609.599040pt;}
.x51_c00213{left:612.479040pt;}
.x17_c00213{left:614.399453pt;}
.x59_c00213{left:623.039067pt;}
.x21_c00213{left:624.319333pt;}
.x5a_c00213{left:632.318760pt;}
.x5b_c00213{left:647.359867pt;}
.x10_c00213{left:651.839320pt;}
.x4c_c00213{left:658.879307pt;}
.x4d_c00213{left:667.519040pt;}
.x5c_c00213{left:683.198733pt;}
.x11_c00213{left:684.479080pt;}
.x30_c00213{left:687.358893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c3958672216eb70ca76fffd.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_29471f20ddc53d9849b08007.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_fbaf434289c32d0e25d3b372.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.364746;font-style:normal;font-weight:normal;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_1c3d92ffd7e17972342b133c.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_8c3d808ae4017ca8aed5a2d3.woff2')format("woff");}.ff5_c00214{font-family:ff5_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;}
.m21_c00214{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.221198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221198,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m16_c00214{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.429104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429104,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls11_c00214{letter-spacing:-16.797450px;}
.ls13_c00214{letter-spacing:-13.371750px;}
.ls12_c00214{letter-spacing:-8.914500px;}
.lsf_c00214{letter-spacing:-8.657550px;}
.ls1a_c00214{letter-spacing:-6.749828px;}
.lsa_c00214{letter-spacing:-5.945625px;}
.ls20_c00214{letter-spacing:-5.440103px;}
.ls23_c00214{letter-spacing:-5.247533px;}
.ls6_c00214{letter-spacing:-5.196713px;}
.ls27_c00214{letter-spacing:-4.923450px;}
.ls8_c00214{letter-spacing:-4.456463px;}
.ls5_c00214{letter-spacing:-3.717000px;}
.ls16_c00214{letter-spacing:-3.715725px;}
.ls1e_c00214{letter-spacing:-3.709485px;}
.ls1d_c00214{letter-spacing:-3.151980px;}
.ls4_c00214{letter-spacing:-2.968875px;}
.ls24_c00214{letter-spacing:-2.953125px;}
.ls26_c00214{letter-spacing:-2.325000px;}
.ls19_c00214{letter-spacing:-2.288805px;}
.ls17_c00214{letter-spacing:-2.271878px;}
.ls3_c00214{letter-spacing:-2.229413px;}
.lsd_c00214{letter-spacing:-1.709250px;}
.ls2_c00214{letter-spacing:-1.489163px;}
.ls21_c00214{letter-spacing:-0.843900px;}
.ls1c_c00214{letter-spacing:-0.811125px;}
.ls1b_c00214{letter-spacing:-0.809190px;}
.ls25_c00214{letter-spacing:-0.776085px;}
.ls9_c00214{letter-spacing:-0.740250px;}
.ls7_c00214{letter-spacing:0.000000px;}
.ls1_c00214{letter-spacing:0.982800px;}
.ls0_c00214{letter-spacing:1.489163px;}
.ls15_c00214{letter-spacing:3.382148px;}
.ls22_c00214{letter-spacing:4.181700px;}
.ls18_c00214{letter-spacing:5.119950px;}
.ls1f_c00214{letter-spacing:5.944050px;}
.lsc_c00214{letter-spacing:6.138600px;}
.lse_c00214{letter-spacing:7.012200px;}
.lsb_c00214{letter-spacing:9.355500px;}
.ls10_c00214{letter-spacing:9.640800px;}
.ls14_c00214{letter-spacing:15.258600px;}
.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;}
._1a_c00214{margin-left:-13.608079px;}
._19_c00214{margin-left:-8.008560px;}
._f_c00214{margin-left:-4.522494px;}
._4_c00214{margin-left:-3.217844px;}
._e_c00214{margin-left:-2.201508px;}
._17_c00214{width:1.197238px;}
._10_c00214{width:2.225772px;}
._0_c00214{width:3.523022px;}
._3_c00214{width:4.706457px;}
._2_c00214{width:6.496608px;}
._a_c00214{width:7.981000px;}
._11_c00214{width:9.013740px;}
._1_c00214{width:10.163193px;}
._14_c00214{width:11.487946px;}
._b_c00214{width:13.304708px;}
._5_c00214{width:15.026926px;}
._15_c00214{width:16.186899px;}
._9_c00214{width:18.561880px;}
._8_c00214{width:19.642939px;}
._d_c00214{width:21.780274px;}
._12_c00214{width:22.900322px;}
._7_c00214{width:23.932392px;}
._c_c00214{width:26.393716px;}
._6_c00214{width:28.544958px;}
._13_c00214{width:31.266930px;}
._18_c00214{width:47.567003px;}
._16_c00214{width:63.338417px;}
.fc0_c00214{color:transparent;}
.fs4_c00214{font-size:40.500000px;}
.fs13_c00214{font-size:43.545060px;}
.fs12_c00214{font-size:46.500000px;}
.fs11_c00214{font-size:47.250000px;}
.fsb_c00214{font-size:50.250000px;}
.fs6_c00214{font-size:55.500000px;}
.fse_c00214{font-size:71.250000px;}
.fs8_c00214{font-size:72.750000px;}
.fs7_c00214{font-size:73.500000px;}
.fsf_c00214{font-size:76.500000px;}
.fs9_c00214{font-size:77.250000px;}
.fs2_c00214{font-size:78.000000px;}
.fs0_c00214{font-size:78.750000px;}
.fs3_c00214{font-size:79.500000px;}
.fs1_c00214{font-size:80.250000px;}
.fsd_c00214{font-size:81.000000px;}
.fs10_c00214{font-size:81.750000px;}
.fsc_c00214{font-size:82.500000px;}
.fsa_c00214{font-size:83.250000px;}
.fs5_c00214{font-size:84.750000px;}
.y0_c00214{bottom:0.000000px;}
.y26_c00214{bottom:172.080465px;}
.y25_c00214{bottom:243.720315px;}
.y24_c00214{bottom:273.239850px;}
.y23_c00214{bottom:273.240720px;}
.y22_c00214{bottom:303.120435px;}
.y21_c00214{bottom:362.159850px;}
.y20_c00214{bottom:362.160135px;}
.y1f_c00214{bottom:391.679670px;}
.y1e_c00214{bottom:428.039985px;}
.y1c_c00214{bottom:451.079910px;}
.y1d_c00214{bottom:451.080000px;}
.y1b_c00214{bottom:481.319820px;}
.y1a_c00214{bottom:490.680135px;}
.y19_c00214{bottom:511.200435px;}
.y18_c00214{bottom:511.200630px;}
.y17_c00214{bottom:540.720150px;}
.y16_c00214{bottom:540.720285px;}
.y15_c00214{bottom:570.239820px;}
.y13_c00214{bottom:629.640090px;}
.y14_c00214{bottom:629.640150px;}
.y11_c00214{bottom:689.039820px;}
.y12_c00214{bottom:689.040570px;}
.y10_c00214{bottom:718.919535px;}
.yf_c00214{bottom:748.800105px;}
.ye_c00214{bottom:779.038875px;}
.yd_c00214{bottom:808.918605px;}
.yc_c00214{bottom:838.439940px;}
.yb_c00214{bottom:867.598980px;}
.ya_c00214{bottom:897.838905px;}
.y9_c00214{bottom:897.839880px;}
.y8_c00214{bottom:957.601440px;}
.y7_c00214{bottom:987.481155px;}
.y6_c00214{bottom:1017.360885px;}
.y5_c00214{bottom:1047.240600px;}
.y4_c00214{bottom:1076.760135px;}
.y3_c00214{bottom:1106.279850px;}
.y2_c00214{bottom:1106.280735px;}
.y1_c00214{bottom:1136.160465px;}
.h6_c00214{height:40.816406px;}
.h1b_c00214{height:45.416137px;}
.h1a_c00214{height:45.955078px;}
.h18_c00214{height:46.696289px;}
.h19_c00214{height:46.863281px;}
.he_c00214{height:52.409180px;}
.h8_c00214{height:54.470215px;}
.h14_c00214{height:74.311523px;}
.h16_c00214{height:75.080566px;}
.hb_c00214{height:75.816650px;}
.ha_c00214{height:75.875977px;}
.hd_c00214{height:76.552734px;}
.h9_c00214{height:76.658203px;}
.h1_c00214{height:77.288818px;}
.h11_c00214{height:78.024902px;}
.h4_c00214{height:78.609375px;}
.h2_c00214{height:78.760986px;}
.h3_c00214{height:79.365234px;}
.h12_c00214{height:79.497070px;}
.h5_c00214{height:80.121094px;}
.h17_c00214{height:80.233154px;}
.h13_c00214{height:80.876953px;}
.hf_c00214{height:80.969238px;}
.h15_c00214{height:81.632812px;}
.h10_c00214{height:83.177490px;}
.h7_c00214{height:83.756836px;}
.hc_c00214{height:83.900391px;}
.h0_c00214{height:1263.000000px;}
.w0_c00214{width:892.500000px;}
.x0_c00214{left:0.000000px;}
.x21_c00214{left:103.679100px;}
.x31_c00214{left:141.118815px;}
.x15_c00214{left:142.200945px;}
.x5_c00214{left:143.280855px;}
.x1_c00214{left:144.719565px;}
.x32_c00214{left:168.479685px;}
.x1b_c00214{left:183.958950px;}
.x38_c00214{left:185.758500px;}
.x35_c00214{left:197.999400px;}
.x17_c00214{left:208.798515px;}
.x1e_c00214{left:218.878950px;}
.x25_c00214{left:219.958350px;}
.x18_c00214{left:233.998950px;}
.x8_c00214{left:235.080000px;}
.x33_c00214{left:238.679100px;}
.x9_c00214{left:257.759100px;}
.x1c_c00214{left:258.838515px;}
.x34_c00214{left:260.278800px;}
.x1d_c00214{left:279.358635px;}
.xa_c00214{left:284.038950px;}
.x26_c00214{left:287.278800px;}
.x2_c00214{left:299.519685px;}
.x27_c00214{left:304.918350px;}
.x3_c00214{left:317.879535px;}
.x39_c00214{left:345.958950px;}
.xb_c00214{left:354.599100px;}
.x28_c00214{left:379.079385px;}
.xc_c00214{left:382.319235px;}
.x36_c00214{left:389.519070px;}
.x19_c00214{left:395.278800px;}
.x29_c00214{left:397.080000px;}
.x1a_c00214{left:410.398635px;}
.x37_c00214{left:414.358665px;}
.xd_c00214{left:426.238770px;}
.x3a_c00214{left:429.478635px;}
.x3b_c00214{left:439.199850px;}
.xe_c00214{left:453.599670px;}
.x2a_c00214{left:461.519670px;}
.xf_c00214{left:480.238770px;}
.x3c_c00214{left:485.279850px;}
.x22_c00214{left:494.999400px;}
.x1f_c00214{left:501.119985px;}
.x20_c00214{left:526.679670px;}
.x2b_c00214{left:532.439250px;}
.x16_c00214{left:543.958335px;}
.x2c_c00214{left:567.359250px;}
.x23_c00214{left:569.878920px;}
.x2d_c00214{left:572.039385px;}
.x10_c00214{left:587.159370px;}
.x24_c00214{left:596.878920px;}
.x11_c00214{left:608.038920px;}
.x2e_c00214{left:611.639700px;}
.x6_c00214{left:638.998950px;}
.x7_c00214{left:655.918350px;}
.x2f_c00214{left:694.798560px;}
.x30_c00214{left:741.239220px;}
.x12_c00214{left:743.399820px;}
.x13_c00214{left:755.279850px;}
.x14_c00214{left:769.318815px;}
.x4_c00214{left:774.719055px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls11_c00214{letter-spacing:-14.931067pt;}
.ls13_c00214{letter-spacing:-11.886000pt;}
.ls12_c00214{letter-spacing:-7.924000pt;}
.lsf_c00214{letter-spacing:-7.695600pt;}
.ls1a_c00214{letter-spacing:-5.999847pt;}
.lsa_c00214{letter-spacing:-5.285000pt;}
.ls20_c00214{letter-spacing:-4.835647pt;}
.ls23_c00214{letter-spacing:-4.664473pt;}
.ls6_c00214{letter-spacing:-4.619300pt;}
.ls27_c00214{letter-spacing:-4.376400pt;}
.ls8_c00214{letter-spacing:-3.961300pt;}
.ls5_c00214{letter-spacing:-3.304000pt;}
.ls16_c00214{letter-spacing:-3.302867pt;}
.ls1e_c00214{letter-spacing:-3.297320pt;}
.ls1d_c00214{letter-spacing:-2.801760pt;}
.ls4_c00214{letter-spacing:-2.639000pt;}
.ls24_c00214{letter-spacing:-2.625000pt;}
.ls26_c00214{letter-spacing:-2.066667pt;}
.ls19_c00214{letter-spacing:-2.034493pt;}
.ls17_c00214{letter-spacing:-2.019447pt;}
.ls3_c00214{letter-spacing:-1.981700pt;}
.lsd_c00214{letter-spacing:-1.519333pt;}
.ls2_c00214{letter-spacing:-1.323700pt;}
.ls21_c00214{letter-spacing:-0.750133pt;}
.ls1c_c00214{letter-spacing:-0.721000pt;}
.ls1b_c00214{letter-spacing:-0.719280pt;}
.ls25_c00214{letter-spacing:-0.689853pt;}
.ls9_c00214{letter-spacing:-0.658000pt;}
.ls7_c00214{letter-spacing:0.000000pt;}
.ls1_c00214{letter-spacing:0.873600pt;}
.ls0_c00214{letter-spacing:1.323700pt;}
.ls15_c00214{letter-spacing:3.006353pt;}
.ls22_c00214{letter-spacing:3.717067pt;}
.ls18_c00214{letter-spacing:4.551067pt;}
.ls1f_c00214{letter-spacing:5.283600pt;}
.lsc_c00214{letter-spacing:5.456533pt;}
.lse_c00214{letter-spacing:6.233067pt;}
.lsb_c00214{letter-spacing:8.316000pt;}
.ls10_c00214{letter-spacing:8.569600pt;}
.ls14_c00214{letter-spacing:13.563200pt;}
.ws0_c00214{word-spacing:0.000000pt;}
._1a_c00214{margin-left:-12.096070pt;}
._19_c00214{margin-left:-7.118720pt;}
._f_c00214{margin-left:-4.019994pt;}
._4_c00214{margin-left:-2.860306pt;}
._e_c00214{margin-left:-1.956896pt;}
._17_c00214{width:1.064211pt;}
._10_c00214{width:1.978464pt;}
._0_c00214{width:3.131575pt;}
._3_c00214{width:4.183517pt;}
._2_c00214{width:5.774762pt;}
._a_c00214{width:7.094223pt;}
._11_c00214{width:8.012213pt;}
._1_c00214{width:9.033949pt;}
._14_c00214{width:10.211508pt;}
._b_c00214{width:11.826408pt;}
._5_c00214{width:13.357268pt;}
._15_c00214{width:14.388355pt;}
._9_c00214{width:16.499449pt;}
._8_c00214{width:17.460391pt;}
._d_c00214{width:19.360243pt;}
._12_c00214{width:20.355842pt;}
._7_c00214{width:21.273238pt;}
._c_c00214{width:23.461081pt;}
._6_c00214{width:25.373296pt;}
._13_c00214{width:27.792826pt;}
._18_c00214{width:42.281780pt;}
._16_c00214{width:56.300815pt;}
.fs4_c00214{font-size:36.000000pt;}
.fs13_c00214{font-size:38.706720pt;}
.fs12_c00214{font-size:41.333333pt;}
.fs11_c00214{font-size:42.000000pt;}
.fsb_c00214{font-size:44.666667pt;}
.fs6_c00214{font-size:49.333333pt;}
.fse_c00214{font-size:63.333333pt;}
.fs8_c00214{font-size:64.666667pt;}
.fs7_c00214{font-size:65.333333pt;}
.fsf_c00214{font-size:68.000000pt;}
.fs9_c00214{font-size:68.666667pt;}
.fs2_c00214{font-size:69.333333pt;}
.fs0_c00214{font-size:70.000000pt;}
.fs3_c00214{font-size:70.666667pt;}
.fs1_c00214{font-size:71.333333pt;}
.fsd_c00214{font-size:72.000000pt;}
.fs10_c00214{font-size:72.666667pt;}
.fsc_c00214{font-size:73.333333pt;}
.fsa_c00214{font-size:74.000000pt;}
.fs5_c00214{font-size:75.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y26_c00214{bottom:152.960413pt;}
.y25_c00214{bottom:216.640280pt;}
.y24_c00214{bottom:242.879867pt;}
.y23_c00214{bottom:242.880640pt;}
.y22_c00214{bottom:269.440387pt;}
.y21_c00214{bottom:321.919867pt;}
.y20_c00214{bottom:321.920120pt;}
.y1f_c00214{bottom:348.159707pt;}
.y1e_c00214{bottom:380.479987pt;}
.y1c_c00214{bottom:400.959920pt;}
.y1d_c00214{bottom:400.960000pt;}
.y1b_c00214{bottom:427.839840pt;}
.y1a_c00214{bottom:436.160120pt;}
.y19_c00214{bottom:454.400387pt;}
.y18_c00214{bottom:454.400560pt;}
.y17_c00214{bottom:480.640133pt;}
.y16_c00214{bottom:480.640253pt;}
.y15_c00214{bottom:506.879840pt;}
.y13_c00214{bottom:559.680080pt;}
.y14_c00214{bottom:559.680133pt;}
.y11_c00214{bottom:612.479840pt;}
.y12_c00214{bottom:612.480507pt;}
.y10_c00214{bottom:639.039587pt;}
.yf_c00214{bottom:665.600093pt;}
.ye_c00214{bottom:692.479000pt;}
.yd_c00214{bottom:719.038760pt;}
.yc_c00214{bottom:745.279947pt;}
.yb_c00214{bottom:771.199093pt;}
.ya_c00214{bottom:798.079027pt;}
.y9_c00214{bottom:798.079893pt;}
.y8_c00214{bottom:851.201280pt;}
.y7_c00214{bottom:877.761027pt;}
.y6_c00214{bottom:904.320787pt;}
.y5_c00214{bottom:930.880533pt;}
.y4_c00214{bottom:957.120120pt;}
.y3_c00214{bottom:983.359867pt;}
.y2_c00214{bottom:983.360653pt;}
.y1_c00214{bottom:1009.920413pt;}
.h6_c00214{height:36.281250pt;}
.h1b_c00214{height:40.369899pt;}
.h1a_c00214{height:40.848958pt;}
.h18_c00214{height:41.507812pt;}
.h19_c00214{height:41.656250pt;}
.he_c00214{height:46.585938pt;}
.h8_c00214{height:48.417969pt;}
.h14_c00214{height:66.054688pt;}
.h16_c00214{height:66.738281pt;}
.hb_c00214{height:67.392578pt;}
.ha_c00214{height:67.445312pt;}
.hd_c00214{height:68.046875pt;}
.h9_c00214{height:68.140625pt;}
.h1_c00214{height:68.701172pt;}
.h11_c00214{height:69.355469pt;}
.h4_c00214{height:69.875000pt;}
.h2_c00214{height:70.009766pt;}
.h3_c00214{height:70.546875pt;}
.h12_c00214{height:70.664062pt;}
.h5_c00214{height:71.218750pt;}
.h17_c00214{height:71.318359pt;}
.h13_c00214{height:71.890625pt;}
.hf_c00214{height:71.972656pt;}
.h15_c00214{height:72.562500pt;}
.h10_c00214{height:73.935547pt;}
.h7_c00214{height:74.450521pt;}
.hc_c00214{height:74.578125pt;}
.h0_c00214{height:1122.666667pt;}
.w0_c00214{width:793.333333pt;}
.x0_c00214{left:0.000000pt;}
.x21_c00214{left:92.159200pt;}
.x31_c00214{left:125.438947pt;}
.x15_c00214{left:126.400840pt;}
.x5_c00214{left:127.360760pt;}
.x1_c00214{left:128.639613pt;}
.x32_c00214{left:149.759720pt;}
.x1b_c00214{left:163.519067pt;}
.x38_c00214{left:165.118667pt;}
.x35_c00214{left:175.999467pt;}
.x17_c00214{left:185.598680pt;}
.x1e_c00214{left:194.559067pt;}
.x25_c00214{left:195.518533pt;}
.x18_c00214{left:207.999067pt;}
.x8_c00214{left:208.960000pt;}
.x33_c00214{left:212.159200pt;}
.x9_c00214{left:229.119200pt;}
.x1c_c00214{left:230.078680pt;}
.x34_c00214{left:231.358933pt;}
.x1d_c00214{left:248.318787pt;}
.xa_c00214{left:252.479067pt;}
.x26_c00214{left:255.358933pt;}
.x2_c00214{left:266.239720pt;}
.x27_c00214{left:271.038533pt;}
.x3_c00214{left:282.559587pt;}
.x39_c00214{left:307.519067pt;}
.xb_c00214{left:315.199200pt;}
.x28_c00214{left:336.959453pt;}
.xc_c00214{left:339.839320pt;}
.x36_c00214{left:346.239173pt;}
.x19_c00214{left:351.358933pt;}
.x29_c00214{left:352.960000pt;}
.x1a_c00214{left:364.798787pt;}
.x37_c00214{left:368.318813pt;}
.xd_c00214{left:378.878907pt;}
.x3a_c00214{left:381.758787pt;}
.x3b_c00214{left:390.399867pt;}
.xe_c00214{left:403.199707pt;}
.x2a_c00214{left:410.239707pt;}
.xf_c00214{left:426.878907pt;}
.x3c_c00214{left:431.359867pt;}
.x22_c00214{left:439.999467pt;}
.x1f_c00214{left:445.439987pt;}
.x20_c00214{left:468.159707pt;}
.x2b_c00214{left:473.279333pt;}
.x16_c00214{left:483.518520pt;}
.x2c_c00214{left:504.319333pt;}
.x23_c00214{left:506.559040pt;}
.x2d_c00214{left:508.479453pt;}
.x10_c00214{left:521.919440pt;}
.x24_c00214{left:530.559040pt;}
.x11_c00214{left:540.479040pt;}
.x2e_c00214{left:543.679733pt;}
.x6_c00214{left:567.999067pt;}
.x7_c00214{left:583.038533pt;}
.x2f_c00214{left:617.598720pt;}
.x30_c00214{left:658.879307pt;}
.x12_c00214{left:660.799840pt;}
.x13_c00214{left:671.359867pt;}
.x14_c00214{left:683.838947pt;}
.x4_c00214{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5cf7a1cb5657b289e2830be8.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_2107945de32fdad4fa21bf69.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_93aac1fcb88e8479864b37c0.woff2')format("woff");}.ff3_c00215{font-family:ff3_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:ff4_c00215;src:url('chunks/assets/font_6030aaa540b1035659ab4ac0.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c00215{transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.073413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073413,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075203,0.000000,0.000000,0.250000,0,0);}
.m2c_c00215{transform:matrix(0.113402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113402,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.127841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127841,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.129213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129213,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.137931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137931,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.148876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148876,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.178161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178161,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.225589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225589,0.000000,0.000000,0.250000,0,0);}
.m16_c00215{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286111,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{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_c00215{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.326613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326613,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{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);}
.m23_c00215{transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.441667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441667,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.465116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465116,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls20_c00215{letter-spacing:-16.557750px;}
.ls29_c00215{letter-spacing:-11.343450px;}
.ls21_c00215{letter-spacing:-10.539825px;}
.ls18_c00215{letter-spacing:-9.086850px;}
.ls11_c00215{letter-spacing:-6.465000px;}
.ls10_c00215{letter-spacing:-6.400208px;}
.lse_c00215{letter-spacing:-5.945625px;}
.lsf_c00215{letter-spacing:-5.775750px;}
.ls1b_c00215{letter-spacing:-5.719125px;}
.ls1d_c00215{letter-spacing:-5.196713px;}
.ls1c_c00215{letter-spacing:-4.921875px;}
.ls12_c00215{letter-spacing:-4.456463px;}
.ls13_c00215{letter-spacing:-3.717000px;}
.ls25_c00215{letter-spacing:-3.347325px;}
.ls17_c00215{letter-spacing:-2.971800px;}
.lsa_c00215{letter-spacing:-2.968875px;}
.ls16_c00215{letter-spacing:-2.718293px;}
.ls15_c00215{letter-spacing:-2.337233px;}
.lsb_c00215{letter-spacing:-2.229413px;}
.ls9_c00215{letter-spacing:-1.489163px;}
.ls19_c00215{letter-spacing:-1.453500px;}
.ls23_c00215{letter-spacing:-1.262243px;}
.ls26_c00215{letter-spacing:-1.067798px;}
.ls27_c00215{letter-spacing:-0.778388px;}
.ls1e_c00215{letter-spacing:-0.769500px;}
.lsc_c00215{letter-spacing:-0.740250px;}
.lsd_c00215{letter-spacing:0.000000px;}
.ls1a_c00215{letter-spacing:0.654750px;}
.ls1f_c00215{letter-spacing:0.717600px;}
.ls0_c00215{letter-spacing:0.740250px;}
.ls14_c00215{letter-spacing:0.795675px;}
.ls3_c00215{letter-spacing:1.448475px;}
.ls8_c00215{letter-spacing:1.465200px;}
.ls24_c00215{letter-spacing:1.854525px;}
.ls2_c00215{letter-spacing:2.903625px;}
.ls6_c00215{letter-spacing:2.930400px;}
.ls1_c00215{letter-spacing:4.352100px;}
.ls5_c00215{letter-spacing:4.402200px;}
.ls2c_c00215{letter-spacing:4.962278px;}
.ls28_c00215{letter-spacing:5.807918px;}
.ls7_c00215{letter-spacing:5.867400px;}
.ls2a_c00215{letter-spacing:7.332600px;}
.ls4_c00215{letter-spacing:8.797800px;}
.ls22_c00215{letter-spacing:10.160018px;}
.ls2b_c00215{letter-spacing:10.263000px;}
.ls2d_c00215{letter-spacing:13.200000px;}
.ls2e_c00215{letter-spacing:16.130400px;}
.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;}
._1a_c00215{margin-left:-45.625536px;}
._19_c00215{margin-left:-40.662072px;}
._10_c00215{margin-left:-36.266932px;}
._17_c00215{margin-left:-31.898240px;}
._1b_c00215{margin-left:-26.267531px;}
._11_c00215{margin-left:-14.379572px;}
._12_c00215{margin-left:-13.365205px;}
._e_c00215{margin-left:-12.046804px;}
._b_c00215{margin-left:-6.067970px;}
._d_c00215{margin-left:-3.877576px;}
._a_c00215{margin-left:-2.353986px;}
._c_c00215{margin-left:-1.160745px;}
._4_c00215{width:1.867653px;}
._6_c00215{width:3.505727px;}
._0_c00215{width:4.955381px;}
._3_c00215{width:6.525730px;}
._2_c00215{width:7.637710px;}
._5_c00215{width:9.127407px;}
._1_c00215{width:10.469144px;}
._16_c00215{width:11.608931px;}
._8_c00215{width:12.664649px;}
._9_c00215{width:14.331074px;}
._14_c00215{width:15.437547px;}
._13_c00215{width:16.520093px;}
._f_c00215{width:19.705122px;}
._7_c00215{width:21.224329px;}
._15_c00215{width:22.737323px;}
._18_c00215{width:55.671803px;}
.fc0_c00215{color:transparent;}
.fs1e_c00215{font-size:24.000000px;}
.fs1b_c00215{font-size:30.000000px;}
.fs1a_c00215{font-size:32.250000px;}
.fs19_c00215{font-size:34.500000px;}
.fs1c_c00215{font-size:40.500000px;}
.fs18_c00215{font-size:46.500000px;}
.fs15_c00215{font-size:57.750000px;}
.fs13_c00215{font-size:59.250000px;}
.fs16_c00215{font-size:63.750000px;}
.fs14_c00215{font-size:65.250000px;}
.fs1d_c00215{font-size:66.000000px;}
.fs12_c00215{font-size:66.750000px;}
.fsd_c00215{font-size:67.500000px;}
.fs17_c00215{font-size:70.500000px;}
.fs22_c00215{font-size:72.750000px;}
.fsa_c00215{font-size:74.250000px;}
.fs5_c00215{font-size:75.000000px;}
.fse_c00215{font-size:75.750000px;}
.fs3_c00215{font-size:76.500000px;}
.fs9_c00215{font-size:77.250000px;}
.fsb_c00215{font-size:78.000000px;}
.fs0_c00215{font-size:78.750000px;}
.fsc_c00215{font-size:79.500000px;}
.fs2_c00215{font-size:80.250000px;}
.fs8_c00215{font-size:81.357600px;}
.fs4_c00215{font-size:81.750000px;}
.fs6_c00215{font-size:82.500000px;}
.fs7_c00215{font-size:84.750000px;}
.fs11_c00215{font-size:85.500000px;}
.fs1_c00215{font-size:87.000000px;}
.fs20_c00215{font-size:92.250000px;}
.fs21_c00215{font-size:94.500000px;}
.fs1f_c00215{font-size:96.750000px;}
.fs10_c00215{font-size:101.250000px;}
.fs24_c00215{font-size:104.250000px;}
.fsf_c00215{font-size:115.500000px;}
.fs23_c00215{font-size:121.500000px;}
.y0_c00215{bottom:0.000000px;}
.y35_c00215{bottom:235.440585px;}
.y2b_c00215{bottom:235.800360px;}
.y30_c00215{bottom:240.480285px;}
.y34_c00215{bottom:259.200630px;}
.y2a_c00215{bottom:259.560405px;}
.y38_c00215{bottom:282.599370px;}
.y33_c00215{bottom:282.958905px;}
.y29_c00215{bottom:282.959145px;}
.y2f_c00215{bottom:287.639700px;}
.y37_c00215{bottom:305.998125px;}
.y32_c00215{bottom:305.999385px;}
.y28_c00215{bottom:306.359415px;}
.y2e_c00215{bottom:310.679700px;}
.y36_c00215{bottom:329.038605px;}
.y31_c00215{bottom:329.039385px;}
.y27_c00215{bottom:329.399895px;}
.y2d_c00215{bottom:329.759670px;}
.y2c_c00215{bottom:357.479550px;}
.y21_c00215{bottom:376.200435px;}
.y26_c00215{bottom:380.518530px;}
.y25_c00215{bottom:392.759835px;}
.y20_c00215{bottom:394.201035px;}
.y24_c00215{bottom:403.920540px;}
.y22_c00215{bottom:415.800345px;}
.y23_c00215{bottom:415.800570px;}
.y1e_c00215{bottom:432.360900px;}
.y1f_c00215{bottom:439.199850px;}
.y1d_c00215{bottom:492.120435px;}
.y1c_c00215{bottom:516.239820px;}
.y1b_c00215{bottom:609.480885px;}
.y1a_c00215{bottom:609.481680px;}
.y19_c00215{bottom:630.360300px;}
.y17_c00215{bottom:651.959535px;}
.y18_c00215{bottom:651.959970px;}
.y16_c00215{bottom:673.200435px;}
.y15_c00215{bottom:673.200825px;}
.y14_c00215{bottom:694.800105px;}
.y13_c00215{bottom:753.839535px;}
.y12_c00215{bottom:753.840390px;}
.y11_c00215{bottom:784.080300px;}
.y10_c00215{bottom:813.960015px;}
.ye_c00215{bottom:873.360210px;}
.yf_c00215{bottom:873.360255px;}
.yd_c00215{bottom:903.600135px;}
.yc_c00215{bottom:903.601110px;}
.ya_c00215{bottom:933.480075px;}
.yb_c00215{bottom:933.480840px;}
.y9_c00215{bottom:963.359805px;}
.y8_c00215{bottom:993.240600px;}
.y7_c00215{bottom:1022.760135px;}
.y6_c00215{bottom:1022.761020px;}
.y4_c00215{bottom:1052.639985px;}
.y5_c00215{bottom:1052.640750px;}
.y3_c00215{bottom:1082.519715px;}
.y2_c00215{bottom:1112.039340px;}
.y1_c00215{bottom:1142.280855px;}
.h21_c00215{height:24.187500px;}
.h1e_c00215{height:31.289062px;}
.h1d_c00215{height:33.635742px;}
.h1c_c00215{height:35.982422px;}
.h1f_c00215{height:42.240234px;}
.h1b_c00215{height:48.498047px;}
.h18_c00215{height:57.073242px;}
.h16_c00215{height:61.795898px;}
.h19_c00215{height:64.248047px;}
.h28_c00215{height:64.485352px;}
.h20_c00215{height:65.226562px;}
.h17_c00215{height:65.759766px;}
.h15_c00215{height:65.967773px;}
.he_c00215{height:66.247559px;}
.h14_c00215{height:68.027344px;}
.h1a_c00215{height:69.673828px;}
.h25_c00215{height:71.897461px;}
.h6_c00215{height:73.608398px;}
.h4_c00215{height:75.080566px;}
.ha_c00215{height:75.816650px;}
.hf_c00215{height:76.341797px;}
.hc_c00215{height:76.552734px;}
.h1_c00215{height:77.288818px;}
.hb_c00215{height:77.440430px;}
.hd_c00215{height:78.024902px;}
.h3_c00215{height:78.760986px;}
.h9_c00215{height:79.848035px;}
.h5_c00215{height:80.233154px;}
.h7_c00215{height:80.969238px;}
.h12_c00215{height:82.133789px;}
.h8_c00215{height:83.177490px;}
.h13_c00215{height:84.498047px;}
.h2_c00215{height:85.385742px;}
.h23_c00215{height:96.213867px;}
.h24_c00215{height:98.560547px;}
.h22_c00215{height:100.907227px;}
.h11_c00215{height:105.600586px;}
.h27_c00215{height:108.729492px;}
.h10_c00215{height:120.462891px;}
.h26_c00215{height:126.720703px;}
.h0_c00215{height:1263.000000px;}
.w0_c00215{width:892.500000px;}
.x0_c00215{left:0.000000px;}
.x16_c00215{left:140.398590px;}
.x6_c00215{left:141.479715px;}
.x1_c00215{left:142.559100px;}
.xd_c00215{left:157.319850px;}
.x1b_c00215{left:165.958350px;}
.x1e_c00215{left:185.758500px;}
.x3a_c00215{left:188.639100px;}
.x34_c00215{left:192.599100px;}
.x26_c00215{left:194.396295px;}
.x24_c00215{left:195.838950px;}
.x3f_c00215{left:198.358635px;}
.x9_c00215{left:200.159850px;}
.x25_c00215{left:210.599700px;}
.x1f_c00215{left:217.079385px;}
.xa_c00215{left:220.678500px;}
.x17_c00215{left:227.878350px;}
.x1c_c00215{left:233.639700px;}
.x18_c00215{left:244.438635px;}
.x1d_c00215{left:248.039385px;}
.x35_c00215{left:262.798515px;}
.x3b_c00215{left:270.359250px;}
.x19_c00215{left:278.279250px;}
.x39_c00215{left:286.199385px;}
.x14_c00215{left:304.199850px;}
.x1a_c00215{left:309.239250px;}
.x43_c00215{left:315.361170px;}
.x44_c00215{left:320.040000px;}
.x36_c00215{left:326.519685px;}
.x2b_c00215{left:333.358635px;}
.x27_c00215{left:340.558635px;}
.x37_c00215{left:350.279850px;}
.x2c_c00215{left:353.158785px;}
.x28_c00215{left:354.958350px;}
.x38_c00215{left:372.958950px;}
.x45_c00215{left:379.079385px;}
.x46_c00215{left:384.838950px;}
.x15_c00215{left:385.918350px;}
.x3c_c00215{left:398.159415px;}
.x2e_c00215{left:413.279250px;}
.x2f_c00215{left:425.879520px;}
.x29_c00215{left:432.718500px;}
.x40_c00215{left:437.039385px;}
.x30_c00215{left:438.838950px;}
.x2a_c00215{left:447.119985px;}
.x3d_c00215{left:459.718500px;}
.x3_c00215{left:467.638500px;}
.x4_c00215{left:483.839535px;}
.x7_c00215{left:488.519670px;}
.x8_c00215{left:502.919535px;}
.xe_c00215{left:515.158770px;}
.x20_c00215{left:519.118785px;}
.xf_c00215{left:530.278800px;}
.x3e_c00215{left:543.599070px;}
.x41_c00215{left:544.678275px;}
.x21_c00215{left:551.519070px;}
.x31_c00215{left:572.039385px;}
.x10_c00215{left:590.758530px;}
.x11_c00215{left:605.878320px;}
.x12_c00215{left:633.959385px;}
.x32_c00215{left:670.679070px;}
.x42_c00215{left:683.638545px;}
.x22_c00215{left:688.679670px;}
.x33_c00215{left:700.559685px;}
.x13_c00215{left:705.599070px;}
.x23_c00215{left:711.719520px;}
.xb_c00215{left:720.359850px;}
.x2d_c00215{left:731.158770px;}
.xc_c00215{left:732.958335px;}
.x5_c00215{left:765.358605px;}
.x2_c00215{left:772.558590px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls20_c00215{letter-spacing:-14.718000pt;}
.ls29_c00215{letter-spacing:-10.083067pt;}
.ls21_c00215{letter-spacing:-9.368733pt;}
.ls18_c00215{letter-spacing:-8.077200pt;}
.ls11_c00215{letter-spacing:-5.746667pt;}
.ls10_c00215{letter-spacing:-5.689073pt;}
.lse_c00215{letter-spacing:-5.285000pt;}
.lsf_c00215{letter-spacing:-5.134000pt;}
.ls1b_c00215{letter-spacing:-5.083667pt;}
.ls1d_c00215{letter-spacing:-4.619300pt;}
.ls1c_c00215{letter-spacing:-4.375000pt;}
.ls12_c00215{letter-spacing:-3.961300pt;}
.ls13_c00215{letter-spacing:-3.304000pt;}
.ls25_c00215{letter-spacing:-2.975400pt;}
.ls17_c00215{letter-spacing:-2.641600pt;}
.lsa_c00215{letter-spacing:-2.639000pt;}
.ls16_c00215{letter-spacing:-2.416260pt;}
.ls15_c00215{letter-spacing:-2.077540pt;}
.lsb_c00215{letter-spacing:-1.981700pt;}
.ls9_c00215{letter-spacing:-1.323700pt;}
.ls19_c00215{letter-spacing:-1.292000pt;}
.ls23_c00215{letter-spacing:-1.121993pt;}
.ls26_c00215{letter-spacing:-0.949153pt;}
.ls27_c00215{letter-spacing:-0.691900pt;}
.ls1e_c00215{letter-spacing:-0.684000pt;}
.lsc_c00215{letter-spacing:-0.658000pt;}
.lsd_c00215{letter-spacing:0.000000pt;}
.ls1a_c00215{letter-spacing:0.582000pt;}
.ls1f_c00215{letter-spacing:0.637867pt;}
.ls0_c00215{letter-spacing:0.658000pt;}
.ls14_c00215{letter-spacing:0.707267pt;}
.ls3_c00215{letter-spacing:1.287533pt;}
.ls8_c00215{letter-spacing:1.302400pt;}
.ls24_c00215{letter-spacing:1.648467pt;}
.ls2_c00215{letter-spacing:2.581000pt;}
.ls6_c00215{letter-spacing:2.604800pt;}
.ls1_c00215{letter-spacing:3.868533pt;}
.ls5_c00215{letter-spacing:3.913067pt;}
.ls2c_c00215{letter-spacing:4.410913pt;}
.ls28_c00215{letter-spacing:5.162593pt;}
.ls7_c00215{letter-spacing:5.215467pt;}
.ls2a_c00215{letter-spacing:6.517867pt;}
.ls4_c00215{letter-spacing:7.820267pt;}
.ls22_c00215{letter-spacing:9.031127pt;}
.ls2b_c00215{letter-spacing:9.122667pt;}
.ls2d_c00215{letter-spacing:11.733333pt;}
.ls2e_c00215{letter-spacing:14.338133pt;}
.ws0_c00215{word-spacing:0.000000pt;}
._1a_c00215{margin-left:-40.556032pt;}
._19_c00215{margin-left:-36.144064pt;}
._10_c00215{margin-left:-32.237272pt;}
._17_c00215{margin-left:-28.353991pt;}
._1b_c00215{margin-left:-23.348916pt;}
._11_c00215{margin-left:-12.781842pt;}
._12_c00215{margin-left:-11.880183pt;}
._e_c00215{margin-left:-10.708270pt;}
._b_c00215{margin-left:-5.393751pt;}
._d_c00215{margin-left:-3.446734pt;}
._a_c00215{margin-left:-2.092432pt;}
._c_c00215{margin-left:-1.031774pt;}
._4_c00215{width:1.660136pt;}
._6_c00215{width:3.116202pt;}
._0_c00215{width:4.404783pt;}
._3_c00215{width:5.800649pt;}
._2_c00215{width:6.789075pt;}
._5_c00215{width:8.113251pt;}
._1_c00215{width:9.305906pt;}
._16_c00215{width:10.319049pt;}
._8_c00215{width:11.257466pt;}
._9_c00215{width:12.738732pt;}
._14_c00215{width:13.722264pt;}
._13_c00215{width:14.684527pt;}
._f_c00215{width:17.515664pt;}
._7_c00215{width:18.866070pt;}
._15_c00215{width:20.210953pt;}
._18_c00215{width:49.486047pt;}
.fs1e_c00215{font-size:21.333333pt;}
.fs1b_c00215{font-size:26.666667pt;}
.fs1a_c00215{font-size:28.666667pt;}
.fs19_c00215{font-size:30.666667pt;}
.fs1c_c00215{font-size:36.000000pt;}
.fs18_c00215{font-size:41.333333pt;}
.fs15_c00215{font-size:51.333333pt;}
.fs13_c00215{font-size:52.666667pt;}
.fs16_c00215{font-size:56.666667pt;}
.fs14_c00215{font-size:58.000000pt;}
.fs1d_c00215{font-size:58.666667pt;}
.fs12_c00215{font-size:59.333333pt;}
.fsd_c00215{font-size:60.000000pt;}
.fs17_c00215{font-size:62.666667pt;}
.fs22_c00215{font-size:64.666667pt;}
.fsa_c00215{font-size:66.000000pt;}
.fs5_c00215{font-size:66.666667pt;}
.fse_c00215{font-size:67.333333pt;}
.fs3_c00215{font-size:68.000000pt;}
.fs9_c00215{font-size:68.666667pt;}
.fsb_c00215{font-size:69.333333pt;}
.fs0_c00215{font-size:70.000000pt;}
.fsc_c00215{font-size:70.666667pt;}
.fs2_c00215{font-size:71.333333pt;}
.fs8_c00215{font-size:72.317867pt;}
.fs4_c00215{font-size:72.666667pt;}
.fs6_c00215{font-size:73.333333pt;}
.fs7_c00215{font-size:75.333333pt;}
.fs11_c00215{font-size:76.000000pt;}
.fs1_c00215{font-size:77.333333pt;}
.fs20_c00215{font-size:82.000000pt;}
.fs21_c00215{font-size:84.000000pt;}
.fs1f_c00215{font-size:86.000000pt;}
.fs10_c00215{font-size:90.000000pt;}
.fs24_c00215{font-size:92.666667pt;}
.fsf_c00215{font-size:102.666667pt;}
.fs23_c00215{font-size:108.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y35_c00215{bottom:209.280520pt;}
.y2b_c00215{bottom:209.600320pt;}
.y30_c00215{bottom:213.760253pt;}
.y34_c00215{bottom:230.400560pt;}
.y2a_c00215{bottom:230.720360pt;}
.y38_c00215{bottom:251.199440pt;}
.y33_c00215{bottom:251.519027pt;}
.y29_c00215{bottom:251.519240pt;}
.y2f_c00215{bottom:255.679733pt;}
.y37_c00215{bottom:271.998333pt;}
.y32_c00215{bottom:271.999453pt;}
.y28_c00215{bottom:272.319480pt;}
.y2e_c00215{bottom:276.159733pt;}
.y36_c00215{bottom:292.478760pt;}
.y31_c00215{bottom:292.479453pt;}
.y27_c00215{bottom:292.799907pt;}
.y2d_c00215{bottom:293.119707pt;}
.y2c_c00215{bottom:317.759600pt;}
.y21_c00215{bottom:334.400387pt;}
.y26_c00215{bottom:338.238693pt;}
.y25_c00215{bottom:349.119853pt;}
.y20_c00215{bottom:350.400920pt;}
.y24_c00215{bottom:359.040480pt;}
.y22_c00215{bottom:369.600307pt;}
.y23_c00215{bottom:369.600507pt;}
.y1e_c00215{bottom:384.320800pt;}
.y1f_c00215{bottom:390.399867pt;}
.y1d_c00215{bottom:437.440387pt;}
.y1c_c00215{bottom:458.879840pt;}
.y1b_c00215{bottom:541.760787pt;}
.y1a_c00215{bottom:541.761493pt;}
.y19_c00215{bottom:560.320267pt;}
.y17_c00215{bottom:579.519587pt;}
.y18_c00215{bottom:579.519973pt;}
.y16_c00215{bottom:598.400387pt;}
.y15_c00215{bottom:598.400733pt;}
.y14_c00215{bottom:617.600093pt;}
.y13_c00215{bottom:670.079587pt;}
.y12_c00215{bottom:670.080347pt;}
.y11_c00215{bottom:696.960267pt;}
.y10_c00215{bottom:723.520013pt;}
.ye_c00215{bottom:776.320187pt;}
.yf_c00215{bottom:776.320227pt;}
.yd_c00215{bottom:803.200120pt;}
.yc_c00215{bottom:803.200987pt;}
.ya_c00215{bottom:829.760067pt;}
.yb_c00215{bottom:829.760747pt;}
.y9_c00215{bottom:856.319827pt;}
.y8_c00215{bottom:882.880533pt;}
.y7_c00215{bottom:909.120120pt;}
.y6_c00215{bottom:909.120907pt;}
.y4_c00215{bottom:935.679987pt;}
.y5_c00215{bottom:935.680667pt;}
.y3_c00215{bottom:962.239747pt;}
.y2_c00215{bottom:988.479413pt;}
.y1_c00215{bottom:1015.360760pt;}
.h21_c00215{height:21.500000pt;}
.h1e_c00215{height:27.812500pt;}
.h1d_c00215{height:29.898438pt;}
.h1c_c00215{height:31.984375pt;}
.h1f_c00215{height:37.546875pt;}
.h1b_c00215{height:43.109375pt;}
.h18_c00215{height:50.731771pt;}
.h16_c00215{height:54.929688pt;}
.h19_c00215{height:57.109375pt;}
.h28_c00215{height:57.320313pt;}
.h20_c00215{height:57.979167pt;}
.h17_c00215{height:58.453125pt;}
.h15_c00215{height:58.638021pt;}
.he_c00215{height:58.886719pt;}
.h14_c00215{height:60.468750pt;}
.h1a_c00215{height:61.932292pt;}
.h25_c00215{height:63.908854pt;}
.h6_c00215{height:65.429688pt;}
.h4_c00215{height:66.738281pt;}
.ha_c00215{height:67.392578pt;}
.hf_c00215{height:67.859375pt;}
.hc_c00215{height:68.046875pt;}
.h1_c00215{height:68.701172pt;}
.hb_c00215{height:68.835938pt;}
.hd_c00215{height:69.355469pt;}
.h3_c00215{height:70.009766pt;}
.h9_c00215{height:70.976031pt;}
.h5_c00215{height:71.318359pt;}
.h7_c00215{height:71.972656pt;}
.h12_c00215{height:73.007812pt;}
.h8_c00215{height:73.935547pt;}
.h13_c00215{height:75.109375pt;}
.h2_c00215{height:75.898438pt;}
.h23_c00215{height:85.523438pt;}
.h24_c00215{height:87.609375pt;}
.h22_c00215{height:89.695312pt;}
.h11_c00215{height:93.867188pt;}
.h27_c00215{height:96.648438pt;}
.h10_c00215{height:107.078125pt;}
.h26_c00215{height:112.640625pt;}
.h0_c00215{height:1122.666667pt;}
.w0_c00215{width:793.333333pt;}
.x0_c00215{left:0.000000pt;}
.x16_c00215{left:124.798747pt;}
.x6_c00215{left:125.759747pt;}
.x1_c00215{left:126.719200pt;}
.xd_c00215{left:139.839867pt;}
.x1b_c00215{left:147.518533pt;}
.x1e_c00215{left:165.118667pt;}
.x3a_c00215{left:167.679200pt;}
.x34_c00215{left:171.199200pt;}
.x26_c00215{left:172.796707pt;}
.x24_c00215{left:174.079067pt;}
.x3f_c00215{left:176.318787pt;}
.x9_c00215{left:177.919867pt;}
.x25_c00215{left:187.199733pt;}
.x1f_c00215{left:192.959453pt;}
.xa_c00215{left:196.158667pt;}
.x17_c00215{left:202.558533pt;}
.x1c_c00215{left:207.679733pt;}
.x18_c00215{left:217.278787pt;}
.x1d_c00215{left:220.479453pt;}
.x35_c00215{left:233.598680pt;}
.x3b_c00215{left:240.319333pt;}
.x19_c00215{left:247.359333pt;}
.x39_c00215{left:254.399453pt;}
.x14_c00215{left:270.399867pt;}
.x1a_c00215{left:274.879333pt;}
.x43_c00215{left:280.321040pt;}
.x44_c00215{left:284.480000pt;}
.x36_c00215{left:290.239720pt;}
.x2b_c00215{left:296.318787pt;}
.x27_c00215{left:302.718787pt;}
.x37_c00215{left:311.359867pt;}
.x2c_c00215{left:313.918920pt;}
.x28_c00215{left:315.518533pt;}
.x38_c00215{left:331.519067pt;}
.x45_c00215{left:336.959453pt;}
.x46_c00215{left:342.079067pt;}
.x15_c00215{left:343.038533pt;}
.x3c_c00215{left:353.919480pt;}
.x2e_c00215{left:367.359333pt;}
.x2f_c00215{left:378.559573pt;}
.x29_c00215{left:384.638667pt;}
.x40_c00215{left:388.479453pt;}
.x30_c00215{left:390.079067pt;}
.x2a_c00215{left:397.439987pt;}
.x3d_c00215{left:408.638667pt;}
.x3_c00215{left:415.678667pt;}
.x4_c00215{left:430.079587pt;}
.x7_c00215{left:434.239707pt;}
.x8_c00215{left:447.039587pt;}
.xe_c00215{left:457.918907pt;}
.x20_c00215{left:461.438920pt;}
.xf_c00215{left:471.358933pt;}
.x3e_c00215{left:483.199173pt;}
.x41_c00215{left:484.158467pt;}
.x21_c00215{left:490.239173pt;}
.x31_c00215{left:508.479453pt;}
.x10_c00215{left:525.118693pt;}
.x11_c00215{left:538.558507pt;}
.x12_c00215{left:563.519453pt;}
.x32_c00215{left:596.159173pt;}
.x42_c00215{left:607.678707pt;}
.x22_c00215{left:612.159707pt;}
.x33_c00215{left:622.719720pt;}
.x13_c00215{left:627.199173pt;}
.x23_c00215{left:632.639573pt;}
.xb_c00215{left:640.319867pt;}
.x2d_c00215{left:649.918907pt;}
.xc_c00215{left:651.518520pt;}
.x5_c00215{left:680.318760pt;}
.x2_c00215{left:686.718747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_867c64532040f57e8e83a6b4.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_6eff670aea3cb9357911629b.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_07f311d37f3cba2c4b437a2b.woff2')format("woff");}.ff3_c00216{font-family:ff3_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:ff4_c00216;src:url('chunks/assets/font_521dc2501f938eb93b576355.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00216{transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.239224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239224,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{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_c00216{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m19_c00216{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m1f_c00216{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.lse_c00216{letter-spacing:-12.110963px;}
.ls1d_c00216{letter-spacing:-9.850050px;}
.ls9_c00216{letter-spacing:-8.331750px;}
.ls16_c00216{letter-spacing:-8.100810px;}
.ls1e_c00216{letter-spacing:-6.693300px;}
.ls17_c00216{letter-spacing:-6.515475px;}
.ls23_c00216{letter-spacing:-6.475868px;}
.lsd_c00216{letter-spacing:-6.055875px;}
.lsc_c00216{letter-spacing:-5.300663px;}
.ls22_c00216{letter-spacing:-5.199698px;}
.ls14_c00216{letter-spacing:-4.543088px;}
.lsb_c00216{letter-spacing:-3.927000px;}
.ls6_c00216{letter-spacing:-3.787875px;}
.ls15_c00216{letter-spacing:-3.110250px;}
.lsa_c00216{letter-spacing:-3.031875px;}
.ls11_c00216{letter-spacing:-2.348130px;}
.ls20_c00216{letter-spacing:-2.293553px;}
.ls19_c00216{letter-spacing:-2.271878px;}
.ls4_c00216{letter-spacing:-2.267213px;}
.lsf_c00216{letter-spacing:-2.252250px;}
.ls1a_c00216{letter-spacing:-2.208180px;}
.ls1b_c00216{letter-spacing:-2.145000px;}
.ls5_c00216{letter-spacing:-1.512000px;}
.ls1c_c00216{letter-spacing:-1.482000px;}
.ls12_c00216{letter-spacing:-1.380600px;}
.ls3_c00216{letter-spacing:-0.808500px;}
.ls24_c00216{letter-spacing:-0.777750px;}
.ls7_c00216{letter-spacing:-0.756000px;}
.ls8_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:1.512000px;}
.ls13_c00216{letter-spacing:1.560000px;}
.ls10_c00216{letter-spacing:1.709400px;}
.ls1_c00216{letter-spacing:2.267213px;}
.ls18_c00216{letter-spacing:3.119220px;}
.ls1f_c00216{letter-spacing:3.939750px;}
.ls21_c00216{letter-spacing:4.371578px;}
.ls2_c00216{letter-spacing:6.055875px;}
.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;}
._17_c00216{margin-left:-22.884447px;}
._14_c00216{margin-left:-13.927301px;}
._18_c00216{margin-left:-6.479853px;}
._3_c00216{margin-left:-4.820772px;}
._6_c00216{margin-left:-3.070826px;}
._1_c00216{margin-left:-1.627581px;}
._7_c00216{width:1.026597px;}
._2_c00216{width:2.079061px;}
._0_c00216{width:3.620925px;}
._5_c00216{width:5.039031px;}
._4_c00216{width:6.375297px;}
._10_c00216{width:7.796492px;}
._8_c00216{width:9.016693px;}
._9_c00216{width:10.140213px;}
._b_c00216{width:11.636645px;}
._d_c00216{width:12.827224px;}
._13_c00216{width:14.577655px;}
._15_c00216{width:16.067362px;}
._19_c00216{width:17.220808px;}
._c_c00216{width:18.789144px;}
._12_c00216{width:20.793877px;}
._e_c00216{width:22.369604px;}
._a_c00216{width:23.642931px;}
._11_c00216{width:25.754037px;}
._1a_c00216{width:27.008827px;}
._16_c00216{width:29.739574px;}
._f_c00216{width:33.757763px;}
.fc0_c00216{color:transparent;}
.fs13_c00216{font-size:45.750000px;}
.fs12_c00216{font-size:47.250000px;}
.fs11_c00216{font-size:50.250000px;}
.fsd_c00216{font-size:69.000000px;}
.fs2_c00216{font-size:74.250000px;}
.fs7_c00216{font-size:75.000000px;}
.fs10_c00216{font-size:75.750000px;}
.fsc_c00216{font-size:76.500000px;}
.fsf_c00216{font-size:77.250000px;}
.fs6_c00216{font-size:78.000000px;}
.fs1_c00216{font-size:78.750000px;}
.fsa_c00216{font-size:79.500000px;}
.fs4_c00216{font-size:80.250000px;}
.fs8_c00216{font-size:81.000000px;}
.fs9_c00216{font-size:81.750000px;}
.fs0_c00216{font-size:82.500000px;}
.fsb_c00216{font-size:83.250000px;}
.fs5_c00216{font-size:87.000000px;}
.fse_c00216{font-size:96.000000px;}
.fs3_c00216{font-size:115.500000px;}
.y0_c00216{bottom:0.000000px;}
.y26_c00216{bottom:135.360900px;}
.y25_c00216{bottom:174.961050px;}
.y24_c00216{bottom:376.920690px;}
.y23_c00216{bottom:407.160600px;}
.y22_c00216{bottom:436.680135px;}
.y21_c00216{bottom:436.680225px;}
.y20_c00216{bottom:467.280630px;}
.y1f_c00216{bottom:496.439670px;}
.y1e_c00216{bottom:496.440555px;}
.y1d_c00216{bottom:526.320285px;}
.y1c_c00216{bottom:555.840135px;}
.y1b_c00216{bottom:555.840315px;}
.y1a_c00216{bottom:585.359850px;}
.y19_c00216{bottom:645.120420px;}
.y18_c00216{bottom:674.639940px;}
.y17_c00216{bottom:704.519670px;}
.y16_c00216{bottom:734.041035px;}
.y15_c00216{bottom:763.920000px;}
.y14_c00216{bottom:763.920840px;}
.y13_c00216{bottom:793.800570px;}
.y12_c00216{bottom:793.801575px;}
.y10_c00216{bottom:824.399805px;}
.y11_c00216{bottom:824.399865px;}
.yf_c00216{bottom:853.921140px;}
.ye_c00216{bottom:912.960570px;}
.yc_c00216{bottom:934.559670px;}
.yd_c00216{bottom:934.560240px;}
.ya_c00216{bottom:955.800090px;}
.yb_c00216{bottom:955.800570px;}
.y9_c00216{bottom:977.040990px;}
.y8_c00216{bottom:977.041470px;}
.y6_c00216{bottom:998.640045px;}
.y7_c00216{bottom:998.640750px;}
.y5_c00216{bottom:1020.601320px;}
.y4_c00216{bottom:1079.279850px;}
.y3_c00216{bottom:1079.281545px;}
.y2_c00216{bottom:1109.161260px;}
.y1_c00216{bottom:1139.040990px;}
.h16_c00216{height:46.107422px;}
.h15_c00216{height:47.619141px;}
.h14_c00216{height:49.661133px;}
.hf_c00216{height:71.964844px;}
.h3_c00216{height:72.872314px;}
.h9_c00216{height:73.608398px;}
.h13_c00216{height:74.344482px;}
.h11_c00216{height:75.816650px;}
.h8_c00216{height:76.552734px;}
.he_c00216{height:77.097656px;}
.h2_c00216{height:77.288818px;}
.h12_c00216{height:77.853516px;}
.hc_c00216{height:78.024902px;}
.h6_c00216{height:78.760986px;}
.ha_c00216{height:79.497070px;}
.hb_c00216{height:80.233154px;}
.h1_c00216{height:80.969238px;}
.hd_c00216{height:81.705322px;}
.h5_c00216{height:83.144531px;}
.h7_c00216{height:85.980469px;}
.h10_c00216{height:100.125000px;}
.h4_c00216{height:120.462891px;}
.h0_c00216{height:1263.000000px;}
.w0_c00216{width:892.500000px;}
.x0_c00216{left:0.000000px;}
.x25_c00216{left:145.800525px;}
.x1_c00216{left:146.878350px;}
.x29_c00216{left:165.239850px;}
.x12_c00216{left:168.118815px;}
.x17_c00216{left:170.638500px;}
.x26_c00216{left:171.719565px;}
.x2b_c00216{left:176.038950px;}
.x2_c00216{left:179.639700px;}
.x33_c00216{left:194.759535px;}
.x8_c00216{left:200.875260px;}
.x5_c00216{left:202.679700px;}
.x3_c00216{left:204.838515px;}
.x18_c00216{left:216.000000px;}
.x4_c00216{left:219.958350px;}
.x6_c00216{left:223.199850px;}
.x2a_c00216{left:226.798950px;}
.x2c_c00216{left:232.199385px;}
.x7_c00216{left:235.080000px;}
.x19_c00216{left:242.279850px;}
.x27_c00216{left:250.199850px;}
.x2e_c00216{left:256.679700px;}
.x34_c00216{left:260.998950px;}
.x28_c00216{left:270.359250px;}
.x2d_c00216{left:285.120000px;}
.x23_c00216{left:376.918950px;}
.x2f_c00216{left:388.439715px;}
.x24_c00216{left:394.199385px;}
.x30_c00216{left:413.279250px;}
.x1a_c00216{left:462.958335px;}
.x1b_c00216{left:494.638500px;}
.x31_c00216{left:505.080000px;}
.xb_c00216{left:510.839535px;}
.x32_c00216{left:523.439670px;}
.xd_c00216{left:540.718500px;}
.x9_c00216{left:548.638500px;}
.xc_c00216{left:552.598530px;}
.x21_c00216{left:556.919535px;}
.xe_c00216{left:560.159415px;}
.xa_c00216{left:564.839535px;}
.x22_c00216{left:571.319235px;}
.x1f_c00216{left:590.399235px;}
.x1c_c00216{left:625.678530px;}
.x13_c00216{left:627.838950px;}
.xf_c00216{left:637.199385px;}
.x14_c00216{left:642.238770px;}
.x10_c00216{left:658.078770px;}
.x1d_c00216{left:703.438620px;}
.x15_c00216{left:704.519670px;}
.x1e_c00216{left:717.479235px;}
.x16_c00216{left:719.998950px;}
.x35_c00216{left:759.958335px;}
.x11_c00216{left:763.199850px;}
.x20_c00216{left:768.959385px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.lse_c00216{letter-spacing:-10.765300pt;}
.ls1d_c00216{letter-spacing:-8.755600pt;}
.ls9_c00216{letter-spacing:-7.406000pt;}
.ls16_c00216{letter-spacing:-7.200720pt;}
.ls1e_c00216{letter-spacing:-5.949600pt;}
.ls17_c00216{letter-spacing:-5.791533pt;}
.ls23_c00216{letter-spacing:-5.756327pt;}
.lsd_c00216{letter-spacing:-5.383000pt;}
.lsc_c00216{letter-spacing:-4.711700pt;}
.ls22_c00216{letter-spacing:-4.621953pt;}
.ls14_c00216{letter-spacing:-4.038300pt;}
.lsb_c00216{letter-spacing:-3.490667pt;}
.ls6_c00216{letter-spacing:-3.367000pt;}
.ls15_c00216{letter-spacing:-2.764667pt;}
.lsa_c00216{letter-spacing:-2.695000pt;}
.ls11_c00216{letter-spacing:-2.087227pt;}
.ls20_c00216{letter-spacing:-2.038713pt;}
.ls19_c00216{letter-spacing:-2.019447pt;}
.ls4_c00216{letter-spacing:-2.015300pt;}
.lsf_c00216{letter-spacing:-2.002000pt;}
.ls1a_c00216{letter-spacing:-1.962827pt;}
.ls1b_c00216{letter-spacing:-1.906667pt;}
.ls5_c00216{letter-spacing:-1.344000pt;}
.ls1c_c00216{letter-spacing:-1.317333pt;}
.ls12_c00216{letter-spacing:-1.227200pt;}
.ls3_c00216{letter-spacing:-0.718667pt;}
.ls24_c00216{letter-spacing:-0.691333pt;}
.ls7_c00216{letter-spacing:-0.672000pt;}
.ls8_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:1.344000pt;}
.ls13_c00216{letter-spacing:1.386667pt;}
.ls10_c00216{letter-spacing:1.519467pt;}
.ls1_c00216{letter-spacing:2.015300pt;}
.ls18_c00216{letter-spacing:2.772640pt;}
.ls1f_c00216{letter-spacing:3.502000pt;}
.ls21_c00216{letter-spacing:3.885847pt;}
.ls2_c00216{letter-spacing:5.383000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
._17_c00216{margin-left:-20.341731pt;}
._14_c00216{margin-left:-12.379823pt;}
._18_c00216{margin-left:-5.759869pt;}
._3_c00216{margin-left:-4.285131pt;}
._6_c00216{margin-left:-2.729623pt;}
._1_c00216{margin-left:-1.446738pt;}
._7_c00216{width:0.912531pt;}
._2_c00216{width:1.848054pt;}
._0_c00216{width:3.218600pt;}
._5_c00216{width:4.479138pt;}
._4_c00216{width:5.666931pt;}
._10_c00216{width:6.930215pt;}
._8_c00216{width:8.014838pt;}
._9_c00216{width:9.013523pt;}
._b_c00216{width:10.343685pt;}
._d_c00216{width:11.401977pt;}
._13_c00216{width:12.957915pt;}
._15_c00216{width:14.282100pt;}
._19_c00216{width:15.307385pt;}
._c_c00216{width:16.701462pt;}
._12_c00216{width:18.483446pt;}
._e_c00216{width:19.884092pt;}
._a_c00216{width:21.015938pt;}
._11_c00216{width:22.892477pt;}
._1a_c00216{width:24.007846pt;}
._16_c00216{width:26.435177pt;}
._f_c00216{width:30.006900pt;}
.fs13_c00216{font-size:40.666667pt;}
.fs12_c00216{font-size:42.000000pt;}
.fs11_c00216{font-size:44.666667pt;}
.fsd_c00216{font-size:61.333333pt;}
.fs2_c00216{font-size:66.000000pt;}
.fs7_c00216{font-size:66.666667pt;}
.fs10_c00216{font-size:67.333333pt;}
.fsc_c00216{font-size:68.000000pt;}
.fsf_c00216{font-size:68.666667pt;}
.fs6_c00216{font-size:69.333333pt;}
.fs1_c00216{font-size:70.000000pt;}
.fsa_c00216{font-size:70.666667pt;}
.fs4_c00216{font-size:71.333333pt;}
.fs8_c00216{font-size:72.000000pt;}
.fs9_c00216{font-size:72.666667pt;}
.fs0_c00216{font-size:73.333333pt;}
.fsb_c00216{font-size:74.000000pt;}
.fs5_c00216{font-size:77.333333pt;}
.fse_c00216{font-size:85.333333pt;}
.fs3_c00216{font-size:102.666667pt;}
.y0_c00216{bottom:0.000000pt;}
.y26_c00216{bottom:120.320800pt;}
.y25_c00216{bottom:155.520933pt;}
.y24_c00216{bottom:335.040613pt;}
.y23_c00216{bottom:361.920533pt;}
.y22_c00216{bottom:388.160120pt;}
.y21_c00216{bottom:388.160200pt;}
.y20_c00216{bottom:415.360560pt;}
.y1f_c00216{bottom:441.279707pt;}
.y1e_c00216{bottom:441.280493pt;}
.y1d_c00216{bottom:467.840253pt;}
.y1c_c00216{bottom:494.080120pt;}
.y1b_c00216{bottom:494.080280pt;}
.y1a_c00216{bottom:520.319867pt;}
.y19_c00216{bottom:573.440373pt;}
.y18_c00216{bottom:599.679947pt;}
.y17_c00216{bottom:626.239707pt;}
.y16_c00216{bottom:652.480920pt;}
.y15_c00216{bottom:679.040000pt;}
.y14_c00216{bottom:679.040747pt;}
.y13_c00216{bottom:705.600507pt;}
.y12_c00216{bottom:705.601400pt;}
.y10_c00216{bottom:732.799827pt;}
.y11_c00216{bottom:732.799880pt;}
.yf_c00216{bottom:759.041013pt;}
.ye_c00216{bottom:811.520507pt;}
.yc_c00216{bottom:830.719707pt;}
.yd_c00216{bottom:830.720213pt;}
.ya_c00216{bottom:849.600080pt;}
.yb_c00216{bottom:849.600507pt;}
.y9_c00216{bottom:868.480880pt;}
.y8_c00216{bottom:868.481307pt;}
.y6_c00216{bottom:887.680040pt;}
.y7_c00216{bottom:887.680667pt;}
.y5_c00216{bottom:907.201173pt;}
.y4_c00216{bottom:959.359867pt;}
.y3_c00216{bottom:959.361373pt;}
.y2_c00216{bottom:985.921120pt;}
.y1_c00216{bottom:1012.480880pt;}
.h16_c00216{height:40.984375pt;}
.h15_c00216{height:42.328125pt;}
.h14_c00216{height:44.143229pt;}
.hf_c00216{height:63.968750pt;}
.h3_c00216{height:64.775391pt;}
.h9_c00216{height:65.429688pt;}
.h13_c00216{height:66.083984pt;}
.h11_c00216{height:67.392578pt;}
.h8_c00216{height:68.046875pt;}
.he_c00216{height:68.531250pt;}
.h2_c00216{height:68.701172pt;}
.h12_c00216{height:69.203125pt;}
.hc_c00216{height:69.355469pt;}
.h6_c00216{height:70.009766pt;}
.ha_c00216{height:70.664062pt;}
.hb_c00216{height:71.318359pt;}
.h1_c00216{height:71.972656pt;}
.hd_c00216{height:72.626953pt;}
.h5_c00216{height:73.906250pt;}
.h7_c00216{height:76.427083pt;}
.h10_c00216{height:89.000000pt;}
.h4_c00216{height:107.078125pt;}
.h0_c00216{height:1122.666667pt;}
.w0_c00216{width:793.333333pt;}
.x0_c00216{left:0.000000pt;}
.x25_c00216{left:129.600467pt;}
.x1_c00216{left:130.558533pt;}
.x29_c00216{left:146.879867pt;}
.x12_c00216{left:149.438947pt;}
.x17_c00216{left:151.678667pt;}
.x26_c00216{left:152.639613pt;}
.x2b_c00216{left:156.479067pt;}
.x2_c00216{left:159.679733pt;}
.x33_c00216{left:173.119587pt;}
.x8_c00216{left:178.555787pt;}
.x5_c00216{left:180.159733pt;}
.x3_c00216{left:182.078680pt;}
.x18_c00216{left:192.000000pt;}
.x4_c00216{left:195.518533pt;}
.x6_c00216{left:198.399867pt;}
.x2a_c00216{left:201.599067pt;}
.x2c_c00216{left:206.399453pt;}
.x7_c00216{left:208.960000pt;}
.x19_c00216{left:215.359867pt;}
.x27_c00216{left:222.399867pt;}
.x2e_c00216{left:228.159733pt;}
.x34_c00216{left:231.999067pt;}
.x28_c00216{left:240.319333pt;}
.x2d_c00216{left:253.440000pt;}
.x23_c00216{left:335.039067pt;}
.x2f_c00216{left:345.279747pt;}
.x24_c00216{left:350.399453pt;}
.x30_c00216{left:367.359333pt;}
.x1a_c00216{left:411.518520pt;}
.x1b_c00216{left:439.678667pt;}
.x31_c00216{left:448.960000pt;}
.xb_c00216{left:454.079587pt;}
.x32_c00216{left:465.279707pt;}
.xd_c00216{left:480.638667pt;}
.x9_c00216{left:487.678667pt;}
.xc_c00216{left:491.198693pt;}
.x21_c00216{left:495.039587pt;}
.xe_c00216{left:497.919480pt;}
.xa_c00216{left:502.079587pt;}
.x22_c00216{left:507.839320pt;}
.x1f_c00216{left:524.799320pt;}
.x1c_c00216{left:556.158693pt;}
.x13_c00216{left:558.079067pt;}
.xf_c00216{left:566.399453pt;}
.x14_c00216{left:570.878907pt;}
.x10_c00216{left:584.958907pt;}
.x1d_c00216{left:625.278773pt;}
.x15_c00216{left:626.239707pt;}
.x1e_c00216{left:637.759320pt;}
.x16_c00216{left:639.999067pt;}
.x35_c00216{left:675.518520pt;}
.x11_c00216{left:678.399867pt;}
.x20_c00216{left:683.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3972f437e9a06b3a4269fcb.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_8786ec8680589bd3563f06c5.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_6ac94d8ff0ff0c6438fd8648.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_7819df30b01bc7cbab6a37fa.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_a551033bf05c477b07eb599b.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00217;src:url('chunks/assets/font_2933c7c4a9f641113446bb99.woff2')format("woff");}.ff6_c00217{font-family:ff6_c00217;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00217;src:url('chunks/assets/font_8bb2227f998303d1a4ac65a6.woff2')format("woff");}.ff7_c00217{font-family:ff7_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:ff8_c00217;src:url('chunks/assets/font_fe0e777039b4f1997d3ad78e.woff2')format("woff");}.ff8_c00217{font-family:ff8_c00217;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00217{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.167969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167969,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m1e_c00217{transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{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);}
.m1a_c00217{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m16_c00217{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m18_c00217{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.268421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268421,0.000000,0.000000,0.250000,0,0);}
.m1b_c00217{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);}
.m1f_c00217{transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299107,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m20_c00217{transform:matrix(0.361607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361607,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.448276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448276,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{transform:matrix(0.494186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494186,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.566667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566667,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.888158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888158,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls1b_c00217{letter-spacing:-12.238125px;}
.ls19_c00217{letter-spacing:-7.567425px;}
.ls18_c00217{letter-spacing:-6.811875px;}
.ls5_c00217{letter-spacing:-5.401628px;}
.ls1a_c00217{letter-spacing:-5.300663px;}
.ls15_c00217{letter-spacing:-5.109375px;}
.ls16_c00217{letter-spacing:-4.626233px;}
.ls1d_c00217{letter-spacing:-4.543088px;}
.ls17_c00217{letter-spacing:-3.787875px;}
.lsf_c00217{letter-spacing:-3.747450px;}
.ls1_c00217{letter-spacing:-3.089625px;}
.ls1c_c00217{letter-spacing:-3.081975px;}
.ls13_c00217{letter-spacing:-3.031875px;}
.ls8_c00217{letter-spacing:-2.587500px;}
.ls3_c00217{letter-spacing:-2.310398px;}
.ls10_c00217{letter-spacing:-2.267213px;}
.lsb_c00217{letter-spacing:-2.138850px;}
.ls9_c00217{letter-spacing:-2.009700px;}
.ls4_c00217{letter-spacing:-1.636200px;}
.lse_c00217{letter-spacing:-1.545893px;}
.ls6_c00217{letter-spacing:-1.540800px;}
.ls11_c00217{letter-spacing:-1.512000px;}
.lsd_c00217{letter-spacing:-1.425165px;}
.ls14_c00217{letter-spacing:-0.801900px;}
.ls2_c00217{letter-spacing:-0.785700px;}
.ls12_c00217{letter-spacing:-0.756000px;}
.lsc_c00217{letter-spacing:-0.698250px;}
.ls7_c00217{letter-spacing:0.000000px;}
.ls1f_c00217{letter-spacing:0.756000px;}
.ls1e_c00217{letter-spacing:0.855000px;}
.ls0_c00217{letter-spacing:1.512000px;}
.ls20_c00217{letter-spacing:1.724925px;}
.lsa_c00217{letter-spacing:1.885275px;}
.ls21_c00217{letter-spacing:21.954712px;}
.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;}
._15_c00217{margin-left:-31.091291px;}
._10_c00217{margin-left:-20.564878px;}
._a_c00217{margin-left:-15.881373px;}
._1_c00217{margin-left:-10.054927px;}
._f_c00217{margin-left:-8.426129px;}
._d_c00217{margin-left:-6.197713px;}
._c_c00217{margin-left:-3.835488px;}
._b_c00217{margin-left:-2.511701px;}
._11_c00217{margin-left:-1.342478px;}
._0_c00217{width:1.407029px;}
._3_c00217{width:2.955142px;}
._4_c00217{width:4.959069px;}
._e_c00217{width:7.167159px;}
._6_c00217{width:8.195312px;}
._7_c00217{width:9.362406px;}
._8_c00217{width:10.993682px;}
._9_c00217{width:13.209725px;}
._5_c00217{width:15.196690px;}
._2_c00217{width:17.119095px;}
._13_c00217{width:18.633247px;}
._12_c00217{width:19.742425px;}
._14_c00217{width:21.040368px;}
._16_c00217{width:22.631663px;}
.fc0_c00217{color:transparent;}
.fs8_c00217{font-size:21.750000px;}
.fsa_c00217{font-size:22.500000px;}
.fs7_c00217{font-size:28.500000px;}
.fs9_c00217{font-size:32.250000px;}
.fs4_c00217{font-size:34.500000px;}
.fs6_c00217{font-size:36.750000px;}
.fs15_c00217{font-size:42.000000px;}
.fs3_c00217{font-size:43.500000px;}
.fs5_c00217{font-size:48.000000px;}
.fs2_c00217{font-size:51.750000px;}
.fse_c00217{font-size:62.250000px;}
.fsc_c00217{font-size:71.250000px;}
.fs13_c00217{font-size:72.750000px;}
.fsb_c00217{font-size:73.500000px;}
.fs14_c00217{font-size:75.000000px;}
.fs11_c00217{font-size:77.250000px;}
.fs10_c00217{font-size:78.000000px;}
.fsf_c00217{font-size:78.750000px;}
.fs0_c00217{font-size:80.250000px;}
.fs1_c00217{font-size:81.000000px;}
.fsd_c00217{font-size:81.750000px;}
.fs12_c00217{font-size:83.250000px;}
.y0_c00217{bottom:0.000000px;}
.y21_c00217{bottom:179.280555px;}
.y20_c00217{bottom:208.800090px;}
.y1f_c00217{bottom:237.959130px;}
.y1e_c00217{bottom:267.480465px;}
.y1d_c00217{bottom:297.000000px;}
.y1c_c00217{bottom:326.878950px;}
.y1b_c00217{bottom:326.880840px;}
.y1a_c00217{bottom:356.760570px;}
.y19_c00217{bottom:386.640285px;}
.y18_c00217{bottom:416.159820px;}
.y17_c00217{bottom:446.038920px;}
.y16_c00217{bottom:446.040705px;}
.y15_c00217{bottom:475.920435px;}
.y14_c00217{bottom:505.800150px;}
.y13_c00217{bottom:505.800300px;}
.y12_c00217{bottom:535.319820px;}
.y11_c00217{bottom:535.320420px;}
.yb_c00217{bottom:623.878920px;}
.ya_c00217{bottom:653.400285px;}
.y9_c00217{bottom:653.400540px;}
.y8_c00217{bottom:683.280255px;}
.y25_c00217{bottom:743.759085px;}
.y27_c00217{bottom:744.119985px;}
.y26_c00217{bottom:754.198785px;}
.y2a_c00217{bottom:790.921095px;}
.y10_c00217{bottom:793.799670px;}
.y29_c00217{bottom:794.159805px;}
.y28_c00217{bottom:834.119385px;}
.yf_c00217{bottom:834.479940px;}
.y24_c00217{bottom:873.719520px;}
.y23_c00217{bottom:874.078770px;}
.y7_c00217{bottom:874.440015px;}
.ye_c00217{bottom:915.480285px;}
.y6_c00217{bottom:915.480465px;}
.yd_c00217{bottom:955.439670px;}
.y5_c00217{bottom:955.798440px;}
.y22_c00217{bottom:995.399235px;}
.y4_c00217{bottom:995.760135px;}
.yc_c00217{bottom:995.760150px;}
.y3_c00217{bottom:1065.959385px;}
.y2_c00217{bottom:1074.958920px;}
.y1_c00217{bottom:1095.479190px;}
.h9_c00217{height:22.684570px;}
.hb_c00217{height:23.466797px;}
.h8_c00217{height:29.724609px;}
.ha_c00217{height:33.635742px;}
.h5_c00217{height:35.982422px;}
.h7_c00217{height:38.329102px;}
.h4_c00217{height:42.671631px;}
.h19_c00217{height:43.804688px;}
.h6_c00217{height:50.062500px;}
.h3_c00217{height:53.973633px;}
.hf_c00217{height:61.520508px;}
.hd_c00217{height:71.806641px;}
.hc_c00217{height:74.074219px;}
.h14_c00217{height:75.816650px;}
.h17_c00217{height:75.875977px;}
.h10_c00217{height:77.288818px;}
.h18_c00217{height:78.222656px;}
.h11_c00217{height:78.609375px;}
.h16_c00217{height:78.760986px;}
.h12_c00217{height:79.497070px;}
.h13_c00217{height:80.233154px;}
.h1_c00217{height:80.876953px;}
.h2_c00217{height:81.632812px;}
.h15_c00217{height:82.274414px;}
.he_c00217{height:82.388672px;}
.h0_c00217{height:1263.000000px;}
.w0_c00217{width:892.500000px;}
.x0_c00217{left:0.000000px;}
.x1f_c00217{left:136.798185px;}
.x27_c00217{left:167.039400px;}
.x23_c00217{left:202.679700px;}
.x29_c00217{left:208.080000px;}
.x24_c00217{left:239.399250px;}
.x2d_c00217{left:267.839535px;}
.x1a_c00217{left:277.560150px;}
.x1_c00217{left:279.719535px;}
.x19_c00217{left:280.798950px;}
.x6_c00217{left:290.159385px;}
.x7_c00217{left:321.478635px;}
.x2_c00217{left:337.679700px;}
.x16_c00217{left:347.758500px;}
.x8_c00217{left:356.398635px;}
.x9_c00217{left:364.318800px;}
.x3_c00217{left:367.199385px;}
.x28_c00217{left:376.918950px;}
.x20_c00217{left:380.878950px;}
.xa_c00217{left:381.958350px;}
.x17_c00217{left:398.159415px;}
.x21_c00217{left:402.839535px;}
.xb_c00217{left:408.239820px;}
.xc_c00217{left:414.719565px;}
.x1b_c00217{left:425.879520px;}
.xd_c00217{left:431.279850px;}
.x1c_c00217{left:445.680540px;}
.xe_c00217{left:448.919535px;}
.xf_c00217{left:456.478635px;}
.x10_c00217{left:464.759535px;}
.x4_c00217{left:470.159820px;}
.x22_c00217{left:475.919535px;}
.x11_c00217{left:476.998950px;}
.x2e_c00217{left:481.319820px;}
.x12_c00217{left:488.519670px;}
.x25_c00217{left:490.678530px;}
.x5_c00217{left:493.918350px;}
.x1e_c00217{left:494.999400px;}
.x1d_c00217{left:496.078770px;}
.x26_c00217{left:501.479235px;}
.x2f_c00217{left:529.558635px;}
.x18_c00217{left:554.759085px;}
.x13_c00217{left:579.959385px;}
.x2a_c00217{left:583.199385px;}
.x14_c00217{left:590.039985px;}
.x30_c00217{left:594.359250px;}
.x2b_c00217{left:602.638545px;}
.x2c_c00217{left:604.078770px;}
.x15_c00217{left:608.038920px;}
.x32_c00217{left:611.279670px;}
.x31_c00217{left:644.399235px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls1b_c00217{letter-spacing:-10.878333pt;}
.ls19_c00217{letter-spacing:-6.726600pt;}
.ls18_c00217{letter-spacing:-6.055000pt;}
.ls5_c00217{letter-spacing:-4.801447pt;}
.ls1a_c00217{letter-spacing:-4.711700pt;}
.ls15_c00217{letter-spacing:-4.541667pt;}
.ls16_c00217{letter-spacing:-4.112207pt;}
.ls1d_c00217{letter-spacing:-4.038300pt;}
.ls17_c00217{letter-spacing:-3.367000pt;}
.lsf_c00217{letter-spacing:-3.331067pt;}
.ls1_c00217{letter-spacing:-2.746333pt;}
.ls1c_c00217{letter-spacing:-2.739533pt;}
.ls13_c00217{letter-spacing:-2.695000pt;}
.ls8_c00217{letter-spacing:-2.300000pt;}
.ls3_c00217{letter-spacing:-2.053687pt;}
.ls10_c00217{letter-spacing:-2.015300pt;}
.lsb_c00217{letter-spacing:-1.901200pt;}
.ls9_c00217{letter-spacing:-1.786400pt;}
.ls4_c00217{letter-spacing:-1.454400pt;}
.lse_c00217{letter-spacing:-1.374127pt;}
.ls6_c00217{letter-spacing:-1.369600pt;}
.ls11_c00217{letter-spacing:-1.344000pt;}
.lsd_c00217{letter-spacing:-1.266813pt;}
.ls14_c00217{letter-spacing:-0.712800pt;}
.ls2_c00217{letter-spacing:-0.698400pt;}
.ls12_c00217{letter-spacing:-0.672000pt;}
.lsc_c00217{letter-spacing:-0.620667pt;}
.ls7_c00217{letter-spacing:0.000000pt;}
.ls1f_c00217{letter-spacing:0.672000pt;}
.ls1e_c00217{letter-spacing:0.760000pt;}
.ls0_c00217{letter-spacing:1.344000pt;}
.ls20_c00217{letter-spacing:1.533267pt;}
.lsa_c00217{letter-spacing:1.675800pt;}
.ls21_c00217{letter-spacing:19.515300pt;}
.ws0_c00217{word-spacing:0.000000pt;}
._15_c00217{margin-left:-27.636703pt;}
._10_c00217{margin-left:-18.279891pt;}
._a_c00217{margin-left:-14.116776pt;}
._1_c00217{margin-left:-8.937713pt;}
._f_c00217{margin-left:-7.489892pt;}
._d_c00217{margin-left:-5.509078pt;}
._c_c00217{margin-left:-3.409323pt;}
._b_c00217{margin-left:-2.232623pt;}
._11_c00217{margin-left:-1.193314pt;}
._0_c00217{width:1.250693pt;}
._3_c00217{width:2.626793pt;}
._4_c00217{width:4.408062pt;}
._e_c00217{width:6.370808pt;}
._6_c00217{width:7.284722pt;}
._7_c00217{width:8.322138pt;}
._8_c00217{width:9.772162pt;}
._9_c00217{width:11.741978pt;}
._5_c00217{width:13.508169pt;}
._2_c00217{width:15.216974pt;}
._13_c00217{width:16.562886pt;}
._12_c00217{width:17.548822pt;}
._14_c00217{width:18.702549pt;}
._16_c00217{width:20.117034pt;}
.fs8_c00217{font-size:19.333333pt;}
.fsa_c00217{font-size:20.000000pt;}
.fs7_c00217{font-size:25.333333pt;}
.fs9_c00217{font-size:28.666667pt;}
.fs4_c00217{font-size:30.666667pt;}
.fs6_c00217{font-size:32.666667pt;}
.fs15_c00217{font-size:37.333333pt;}
.fs3_c00217{font-size:38.666667pt;}
.fs5_c00217{font-size:42.666667pt;}
.fs2_c00217{font-size:46.000000pt;}
.fse_c00217{font-size:55.333333pt;}
.fsc_c00217{font-size:63.333333pt;}
.fs13_c00217{font-size:64.666667pt;}
.fsb_c00217{font-size:65.333333pt;}
.fs14_c00217{font-size:66.666667pt;}
.fs11_c00217{font-size:68.666667pt;}
.fs10_c00217{font-size:69.333333pt;}
.fsf_c00217{font-size:70.000000pt;}
.fs0_c00217{font-size:71.333333pt;}
.fs1_c00217{font-size:72.000000pt;}
.fsd_c00217{font-size:72.666667pt;}
.fs12_c00217{font-size:74.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y21_c00217{bottom:159.360493pt;}
.y20_c00217{bottom:185.600080pt;}
.y1f_c00217{bottom:211.519227pt;}
.y1e_c00217{bottom:237.760413pt;}
.y1d_c00217{bottom:264.000000pt;}
.y1c_c00217{bottom:290.559067pt;}
.y1b_c00217{bottom:290.560747pt;}
.y1a_c00217{bottom:317.120507pt;}
.y19_c00217{bottom:343.680253pt;}
.y18_c00217{bottom:369.919840pt;}
.y17_c00217{bottom:396.479040pt;}
.y16_c00217{bottom:396.480627pt;}
.y15_c00217{bottom:423.040387pt;}
.y14_c00217{bottom:449.600133pt;}
.y13_c00217{bottom:449.600267pt;}
.y12_c00217{bottom:475.839840pt;}
.y11_c00217{bottom:475.840373pt;}
.yb_c00217{bottom:554.559040pt;}
.ya_c00217{bottom:580.800253pt;}
.y9_c00217{bottom:580.800480pt;}
.y8_c00217{bottom:607.360227pt;}
.y25_c00217{bottom:661.119187pt;}
.y27_c00217{bottom:661.439987pt;}
.y26_c00217{bottom:670.398920pt;}
.y2a_c00217{bottom:703.040973pt;}
.y10_c00217{bottom:705.599707pt;}
.y29_c00217{bottom:705.919827pt;}
.y28_c00217{bottom:741.439453pt;}
.yf_c00217{bottom:741.759947pt;}
.y24_c00217{bottom:776.639573pt;}
.y23_c00217{bottom:776.958907pt;}
.y7_c00217{bottom:777.280013pt;}
.ye_c00217{bottom:813.760253pt;}
.y6_c00217{bottom:813.760413pt;}
.yd_c00217{bottom:849.279707pt;}
.y5_c00217{bottom:849.598613pt;}
.y22_c00217{bottom:884.799320pt;}
.y4_c00217{bottom:885.120120pt;}
.yc_c00217{bottom:885.120133pt;}
.y3_c00217{bottom:947.519453pt;}
.y2_c00217{bottom:955.519040pt;}
.y1_c00217{bottom:973.759280pt;}
.h9_c00217{height:20.164062pt;}
.hb_c00217{height:20.859375pt;}
.h8_c00217{height:26.421875pt;}
.ha_c00217{height:29.898438pt;}
.h5_c00217{height:31.984375pt;}
.h7_c00217{height:34.070312pt;}
.h4_c00217{height:37.930339pt;}
.h19_c00217{height:38.937500pt;}
.h6_c00217{height:44.500000pt;}
.h3_c00217{height:47.976562pt;}
.hf_c00217{height:54.684896pt;}
.hd_c00217{height:63.828125pt;}
.hc_c00217{height:65.843750pt;}
.h14_c00217{height:67.392578pt;}
.h17_c00217{height:67.445312pt;}
.h10_c00217{height:68.701172pt;}
.h18_c00217{height:69.531250pt;}
.h11_c00217{height:69.875000pt;}
.h16_c00217{height:70.009766pt;}
.h12_c00217{height:70.664062pt;}
.h13_c00217{height:71.318359pt;}
.h1_c00217{height:71.890625pt;}
.h2_c00217{height:72.562500pt;}
.h15_c00217{height:73.132813pt;}
.he_c00217{height:73.234375pt;}
.h0_c00217{height:1122.666667pt;}
.w0_c00217{width:793.333333pt;}
.x0_c00217{left:0.000000pt;}
.x1f_c00217{left:121.598387pt;}
.x27_c00217{left:148.479467pt;}
.x23_c00217{left:180.159733pt;}
.x29_c00217{left:184.960000pt;}
.x24_c00217{left:212.799333pt;}
.x2d_c00217{left:238.079587pt;}
.x1a_c00217{left:246.720133pt;}
.x1_c00217{left:248.639587pt;}
.x19_c00217{left:249.599067pt;}
.x6_c00217{left:257.919453pt;}
.x7_c00217{left:285.758787pt;}
.x2_c00217{left:300.159733pt;}
.x16_c00217{left:309.118667pt;}
.x8_c00217{left:316.798787pt;}
.x9_c00217{left:323.838933pt;}
.x3_c00217{left:326.399453pt;}
.x28_c00217{left:335.039067pt;}
.x20_c00217{left:338.559067pt;}
.xa_c00217{left:339.518533pt;}
.x17_c00217{left:353.919480pt;}
.x21_c00217{left:358.079587pt;}
.xb_c00217{left:362.879840pt;}
.xc_c00217{left:368.639613pt;}
.x1b_c00217{left:378.559573pt;}
.xd_c00217{left:383.359867pt;}
.x1c_c00217{left:396.160480pt;}
.xe_c00217{left:399.039587pt;}
.xf_c00217{left:405.758787pt;}
.x10_c00217{left:413.119587pt;}
.x4_c00217{left:417.919840pt;}
.x22_c00217{left:423.039587pt;}
.x11_c00217{left:423.999067pt;}
.x2e_c00217{left:427.839840pt;}
.x12_c00217{left:434.239707pt;}
.x25_c00217{left:436.158693pt;}
.x5_c00217{left:439.038533pt;}
.x1e_c00217{left:439.999467pt;}
.x1d_c00217{left:440.958907pt;}
.x26_c00217{left:445.759320pt;}
.x2f_c00217{left:470.718787pt;}
.x18_c00217{left:493.119187pt;}
.x13_c00217{left:515.519453pt;}
.x2a_c00217{left:518.399453pt;}
.x14_c00217{left:524.479987pt;}
.x30_c00217{left:528.319333pt;}
.x2b_c00217{left:535.678707pt;}
.x2c_c00217{left:536.958907pt;}
.x15_c00217{left:540.479040pt;}
.x32_c00217{left:543.359707pt;}
.x31_c00217{left:572.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1ecb5db9e8163622fd08192.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_536d4714e9343e7da3676d12.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.364746;font-style:normal;font-weight:normal;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_b23d26b4976a6ba22ba80d18.woff2')format("woff");}.ff3_c00218{font-family:ff3_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:ff4_c00218;src:url('chunks/assets/font_c0c18a215bd944e8964dc949.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_2e81070a8465d956e6d9b048.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_d0ccaf961d0bff1c3e3b3310.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00218;src:url('chunks/assets/font_bc9a48c321c46e2dd183f69a.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;line-height:1.364746;font-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_c00218{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{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);}
.mb_c00218{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281818,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.297872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297872,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.365672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365672,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368182,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.406863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406863,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.449074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449074,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{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);}
.m26_c00218{transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.622549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622549,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.744186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744186,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(1.070312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070312,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(1.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.468750,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls17_c00218{letter-spacing:-30.554288px;}
.ls18_c00218{letter-spacing:-14.745375px;}
.ls30_c00218{letter-spacing:-13.371750px;}
.ls2d_c00218{letter-spacing:-13.119300px;}
.lsa_c00218{letter-spacing:-10.725000px;}
.ls1a_c00218{letter-spacing:-9.110400px;}
.ls12_c00218{letter-spacing:-8.914500px;}
.ls1e_c00218{letter-spacing:-8.062500px;}
.ls19_c00218{letter-spacing:-7.875157px;}
.ls1b_c00218{letter-spacing:-7.661280px;}
.ls16_c00218{letter-spacing:-7.499250px;}
.ls2e_c00218{letter-spacing:-7.426125px;}
.ls1d_c00218{letter-spacing:-7.398300px;}
.ls2f_c00218{letter-spacing:-6.685875px;}
.ls1f_c00218{letter-spacing:-6.678450px;}
.ls9_c00218{letter-spacing:-5.945625px;}
.ls15_c00218{letter-spacing:-5.365125px;}
.lsf_c00218{letter-spacing:-5.196713px;}
.ls23_c00218{letter-spacing:-4.707300px;}
.ls11_c00218{letter-spacing:-4.456463px;}
.ls31_c00218{letter-spacing:-4.171500px;}
.ls4_c00218{letter-spacing:-3.717000px;}
.ls25_c00218{letter-spacing:-3.437400px;}
.lsc_c00218{letter-spacing:-3.275400px;}
.ls20_c00218{letter-spacing:-3.010275px;}
.ls3_c00218{letter-spacing:-2.968875px;}
.ls2b_c00218{letter-spacing:-2.691300px;}
.ls5_c00218{letter-spacing:-2.229413px;}
.ls21_c00218{letter-spacing:-2.016300px;}
.ls29_c00218{letter-spacing:-1.537148px;}
.ls6_c00218{letter-spacing:-1.489163px;}
.ls1c_c00218{letter-spacing:-0.748650px;}
.ls14_c00218{letter-spacing:-0.740250px;}
.ls7_c00218{letter-spacing:0.000000px;}
.ls28_c00218{letter-spacing:0.630975px;}
.lse_c00218{letter-spacing:0.716498px;}
.ls27_c00218{letter-spacing:1.332375px;}
.ls2_c00218{letter-spacing:1.489163px;}
.ls10_c00218{letter-spacing:1.591200px;}
.ls2c_c00218{letter-spacing:1.860503px;}
.ls22_c00218{letter-spacing:3.243600px;}
.ls8_c00218{letter-spacing:3.685500px;}
.ls0_c00218{letter-spacing:4.406250px;}
.ls13_c00218{letter-spacing:4.619745px;}
.lsb_c00218{letter-spacing:5.321250px;}
.ls2a_c00218{letter-spacing:8.181525px;}
.lsd_c00218{letter-spacing:9.087000px;}
.ls1_c00218{letter-spacing:11.959973px;}
.ls26_c00218{letter-spacing:14.477528px;}
.ls24_c00218{letter-spacing:16.994025px;}
.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;}
._19_c00218{margin-left:-44.887451px;}
._1a_c00218{margin-left:-11.558777px;}
._11_c00218{margin-left:-8.816107px;}
._d_c00218{margin-left:-7.799905px;}
._b_c00218{margin-left:-4.557203px;}
._f_c00218{margin-left:-3.006690px;}
._e_c00218{margin-left:-1.314367px;}
._c_c00218{width:1.977606px;}
._1b_c00218{width:3.167667px;}
._10_c00218{width:4.468661px;}
._a_c00218{width:5.988492px;}
._17_c00218{width:7.004723px;}
._1c_c00218{width:8.219776px;}
._16_c00218{width:9.278578px;}
._1_c00218{width:11.061552px;}
._15_c00218{width:12.285683px;}
._14_c00218{width:14.098538px;}
._2_c00218{width:15.260844px;}
._3_c00218{width:17.025215px;}
._0_c00218{width:18.356150px;}
._12_c00218{width:19.851330px;}
._18_c00218{width:21.441545px;}
._5_c00218{width:22.522173px;}
._9_c00218{width:24.273900px;}
._4_c00218{width:25.519175px;}
._7_c00218{width:26.632923px;}
._13_c00218{width:29.578203px;}
._6_c00218{width:31.287345px;}
._8_c00218{width:36.500566px;}
.fc0_c00218{color:transparent;}
.fs18_c00218{font-size:30.000000px;}
.fs12_c00218{font-size:32.250000px;}
.fs10_c00218{font-size:34.500000px;}
.fs15_c00218{font-size:35.250000px;}
.fse_c00218{font-size:36.750000px;}
.fsd_c00218{font-size:38.250000px;}
.fs11_c00218{font-size:39.000000px;}
.fs14_c00218{font-size:39.750000px;}
.fs13_c00218{font-size:40.500000px;}
.fsc_c00218{font-size:41.250000px;}
.fsf_c00218{font-size:48.000000px;}
.fs17_c00218{font-size:50.250000px;}
.fs16_c00218{font-size:51.000000px;}
.fs8_c00218{font-size:62.250000px;}
.fs7_c00218{font-size:69.000000px;}
.fsa_c00218{font-size:71.250000px;}
.fs9_c00218{font-size:77.250000px;}
.fs3_c00218{font-size:78.000000px;}
.fs0_c00218{font-size:78.750000px;}
.fs5_c00218{font-size:79.500000px;}
.fs1_c00218{font-size:80.250000px;}
.fs2_c00218{font-size:81.000000px;}
.fs4_c00218{font-size:82.500000px;}
.fs6_c00218{font-size:84.000000px;}
.fsb_c00218{font-size:84.750000px;}
.y0_c00218{bottom:0.000000px;}
.y26_c00218{bottom:181.800150px;}
.y25_c00218{bottom:210.958950px;}
.y23_c00218{bottom:240.478425px;}
.y24_c00218{bottom:240.478635px;}
.y22_c00218{bottom:269.639580px;}
.y21_c00218{bottom:328.680450px;}
.y20_c00218{bottom:359.278755px;}
.y1f_c00218{bottom:388.439895px;}
.y1e_c00218{bottom:418.319625px;}
.y1d_c00218{bottom:447.840960px;}
.y1c_c00218{bottom:478.439250px;}
.y1b_c00218{bottom:488.519670px;}
.y1a_c00218{bottom:507.599670px;}
.y19_c00218{bottom:537.478635px;}
.y18_c00218{bottom:537.479535px;}
.y17_c00218{bottom:567.359250px;}
.y16_c00218{bottom:597.239820px;}
.y15_c00218{bottom:597.239850px;}
.y14_c00218{bottom:656.278605px;}
.y13_c00218{bottom:715.679670px;}
.y12_c00218{bottom:745.199385px;}
.y11_c00218{bottom:752.039985px;}
.yf_c00218{bottom:775.079910px;}
.y10_c00218{bottom:775.079955px;}
.yd_c00218{bottom:805.319070px;}
.ye_c00218{bottom:805.319820px;}
.yc_c00218{bottom:835.198785px;}
.yb_c00218{bottom:835.198815px;}
.ya_c00218{bottom:864.720150px;}
.y9_c00218{bottom:894.599115px;}
.y8_c00218{bottom:924.479640px;}
.y7_c00218{bottom:983.879970px;}
.y6_c00218{bottom:1014.119940px;}
.y5_c00218{bottom:1073.159370px;}
.y4_c00218{bottom:1073.879520px;}
.y3_c00218{bottom:1103.399235px;}
.y2_c00218{bottom:1103.400120px;}
.y1_c00218{bottom:1133.279850px;}
.h1e_c00218{height:31.289062px;}
.h1f_c00218{height:32.501953px;}
.h17_c00218{height:33.635742px;}
.h1b_c00218{height:35.525391px;}
.h15_c00218{height:35.982422px;}
.h12_c00218{height:37.801758px;}
.h13_c00218{height:38.329102px;}
.h19_c00218{height:39.893555px;}
.h16_c00218{height:40.675781px;}
.h11_c00218{height:40.766602px;}
.h1a_c00218{height:41.458008px;}
.h18_c00218{height:42.240234px;}
.h14_c00218{height:50.062500px;}
.h1d_c00218{height:50.642578px;}
.h21_c00218{height:52.409180px;}
.h1c_c00218{height:53.191406px;}
.ha_c00218{height:64.924805px;}
.h9_c00218{height:71.964844px;}
.hd_c00218{height:74.311523px;}
.hb_c00218{height:75.816650px;}
.h8_c00218{height:76.552734px;}
.h4_c00218{height:77.085938px;}
.h1_c00218{height:77.288818px;}
.hc_c00218{height:78.024902px;}
.h2_c00218{height:78.760986px;}
.h3_c00218{height:79.497070px;}
.h6_c00218{height:80.121094px;}
.h10_c00218{height:80.969238px;}
.hf_c00218{height:81.533203px;}
.h7_c00218{height:83.015625px;}
.h5_c00218{height:83.144531px;}
.he_c00218{height:83.177490px;}
.h20_c00218{height:83.756836px;}
.h0_c00218{height:1263.000000px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x2e_c00218{left:101.879565px;}
.xd_c00218{left:138.958350px;}
.x1_c00218{left:140.039400px;}
.x5_c00218{left:141.118815px;}
.xa_c00218{left:147.598500px;}
.xb_c00218{left:155.159415px;}
.x10_c00218{left:156.238785px;}
.xe_c00218{left:167.039400px;}
.xc_c00218{left:170.279250px;}
.x19_c00218{left:196.559100px;}
.x1a_c00218{left:211.679100px;}
.x27_c00218{left:217.799535px;}
.x1d_c00218{left:218.878950px;}
.x28_c00218{left:241.918950px;}
.x6_c00218{left:244.438635px;}
.x11_c00218{left:278.999385px;}
.x7_c00218{left:315.359850px;}
.x12_c00218{left:334.439685px;}
.x1e_c00218{left:346.679100px;}
.x15_c00218{left:353.158785px;}
.x1f_c00218{left:368.639700px;}
.x16_c00218{left:370.798515px;}
.x31_c00218{left:378.718530px;}
.x2c_c00218{left:389.519070px;}
.x32_c00218{left:392.759085px;}
.x8_c00218{left:394.199385px;}
.x2d_c00218{left:405.718500px;}
.x9_c00218{left:409.319235px;}
.x20_c00218{left:419.038920px;}
.x21_c00218{left:445.318770px;}
.x2_c00218{left:447.119985px;}
.x22_c00218{left:464.759535px;}
.x3_c00218{left:467.638500px;}
.x13_c00218{left:487.438665px;}
.x14_c00218{left:503.639700px;}
.x23_c00218{left:507.599670px;}
.x4_c00218{left:510.119385px;}
.x33_c00218{left:528.838530px;}
.x34_c00218{left:543.239820px;}
.x24_c00218{left:553.679670px;}
.x17_c00218{left:583.558635px;}
.x18_c00218{left:605.159820px;}
.x25_c00218{left:620.279850px;}
.x2f_c00218{left:629.638545px;}
.x30_c00218{left:644.758530px;}
.x1b_c00218{left:680.759535px;}
.x29_c00218{left:694.798560px;}
.x1c_c00218{left:695.879520px;}
.x26_c00218{left:714.959385px;}
.xf_c00218{left:762.479685px;}
.x2a_c00218{left:765.719520px;}
.x2b_c00218{left:770.399865px;}
.x35_c00218{left:771.838530px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls17_c00218{letter-spacing:-27.159367pt;}
.ls18_c00218{letter-spacing:-13.107000pt;}
.ls30_c00218{letter-spacing:-11.886000pt;}
.ls2d_c00218{letter-spacing:-11.661600pt;}
.lsa_c00218{letter-spacing:-9.533333pt;}
.ls1a_c00218{letter-spacing:-8.098133pt;}
.ls12_c00218{letter-spacing:-7.924000pt;}
.ls1e_c00218{letter-spacing:-7.166667pt;}
.ls19_c00218{letter-spacing:-7.000140pt;}
.ls1b_c00218{letter-spacing:-6.810027pt;}
.ls16_c00218{letter-spacing:-6.666000pt;}
.ls2e_c00218{letter-spacing:-6.601000pt;}
.ls1d_c00218{letter-spacing:-6.576267pt;}
.ls2f_c00218{letter-spacing:-5.943000pt;}
.ls1f_c00218{letter-spacing:-5.936400pt;}
.ls9_c00218{letter-spacing:-5.285000pt;}
.ls15_c00218{letter-spacing:-4.769000pt;}
.lsf_c00218{letter-spacing:-4.619300pt;}
.ls23_c00218{letter-spacing:-4.184267pt;}
.ls11_c00218{letter-spacing:-3.961300pt;}
.ls31_c00218{letter-spacing:-3.708000pt;}
.ls4_c00218{letter-spacing:-3.304000pt;}
.ls25_c00218{letter-spacing:-3.055467pt;}
.lsc_c00218{letter-spacing:-2.911467pt;}
.ls20_c00218{letter-spacing:-2.675800pt;}
.ls3_c00218{letter-spacing:-2.639000pt;}
.ls2b_c00218{letter-spacing:-2.392267pt;}
.ls5_c00218{letter-spacing:-1.981700pt;}
.ls21_c00218{letter-spacing:-1.792267pt;}
.ls29_c00218{letter-spacing:-1.366353pt;}
.ls6_c00218{letter-spacing:-1.323700pt;}
.ls1c_c00218{letter-spacing:-0.665467pt;}
.ls14_c00218{letter-spacing:-0.658000pt;}
.ls7_c00218{letter-spacing:0.000000pt;}
.ls28_c00218{letter-spacing:0.560867pt;}
.lse_c00218{letter-spacing:0.636887pt;}
.ls27_c00218{letter-spacing:1.184333pt;}
.ls2_c00218{letter-spacing:1.323700pt;}
.ls10_c00218{letter-spacing:1.414400pt;}
.ls2c_c00218{letter-spacing:1.653780pt;}
.ls22_c00218{letter-spacing:2.883200pt;}
.ls8_c00218{letter-spacing:3.276000pt;}
.ls0_c00218{letter-spacing:3.916667pt;}
.ls13_c00218{letter-spacing:4.106440pt;}
.lsb_c00218{letter-spacing:4.730000pt;}
.ls2a_c00218{letter-spacing:7.272467pt;}
.lsd_c00218{letter-spacing:8.077333pt;}
.ls1_c00218{letter-spacing:10.631087pt;}
.ls26_c00218{letter-spacing:12.868913pt;}
.ls24_c00218{letter-spacing:15.105800pt;}
.ws0_c00218{word-spacing:0.000000pt;}
._19_c00218{margin-left:-39.899956pt;}
._1a_c00218{margin-left:-10.274469pt;}
._11_c00218{margin-left:-7.836540pt;}
._d_c00218{margin-left:-6.933249pt;}
._b_c00218{margin-left:-4.050847pt;}
._f_c00218{margin-left:-2.672613pt;}
._e_c00218{margin-left:-1.168326pt;}
._c_c00218{width:1.757872pt;}
._1b_c00218{width:2.815704pt;}
._10_c00218{width:3.972143pt;}
._a_c00218{width:5.323104pt;}
._17_c00218{width:6.226421pt;}
._1c_c00218{width:7.306468pt;}
._16_c00218{width:8.247625pt;}
._1_c00218{width:9.832491pt;}
._15_c00218{width:10.920608pt;}
._14_c00218{width:12.532034pt;}
._2_c00218{width:13.565194pt;}
._3_c00218{width:15.133525pt;}
._0_c00218{width:16.316577pt;}
._12_c00218{width:17.645626pt;}
._18_c00218{width:19.059151pt;}
._5_c00218{width:20.019709pt;}
._9_c00218{width:21.576800pt;}
._4_c00218{width:22.683711pt;}
._7_c00218{width:23.673709pt;}
._13_c00218{width:26.291736pt;}
._6_c00218{width:27.810974pt;}
._8_c00218{width:32.444947pt;}
.fs18_c00218{font-size:26.666667pt;}
.fs12_c00218{font-size:28.666667pt;}
.fs10_c00218{font-size:30.666667pt;}
.fs15_c00218{font-size:31.333333pt;}
.fse_c00218{font-size:32.666667pt;}
.fsd_c00218{font-size:34.000000pt;}
.fs11_c00218{font-size:34.666667pt;}
.fs14_c00218{font-size:35.333333pt;}
.fs13_c00218{font-size:36.000000pt;}
.fsc_c00218{font-size:36.666667pt;}
.fsf_c00218{font-size:42.666667pt;}
.fs17_c00218{font-size:44.666667pt;}
.fs16_c00218{font-size:45.333333pt;}
.fs8_c00218{font-size:55.333333pt;}
.fs7_c00218{font-size:61.333333pt;}
.fsa_c00218{font-size:63.333333pt;}
.fs9_c00218{font-size:68.666667pt;}
.fs3_c00218{font-size:69.333333pt;}
.fs0_c00218{font-size:70.000000pt;}
.fs5_c00218{font-size:70.666667pt;}
.fs1_c00218{font-size:71.333333pt;}
.fs2_c00218{font-size:72.000000pt;}
.fs4_c00218{font-size:73.333333pt;}
.fs6_c00218{font-size:74.666667pt;}
.fsb_c00218{font-size:75.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y26_c00218{bottom:161.600133pt;}
.y25_c00218{bottom:187.519067pt;}
.y23_c00218{bottom:213.758600pt;}
.y24_c00218{bottom:213.758787pt;}
.y22_c00218{bottom:239.679627pt;}
.y21_c00218{bottom:292.160400pt;}
.y20_c00218{bottom:319.358893pt;}
.y1f_c00218{bottom:345.279907pt;}
.y1e_c00218{bottom:371.839667pt;}
.y1d_c00218{bottom:398.080853pt;}
.y1c_c00218{bottom:425.279333pt;}
.y1b_c00218{bottom:434.239707pt;}
.y1a_c00218{bottom:451.199707pt;}
.y19_c00218{bottom:477.758787pt;}
.y18_c00218{bottom:477.759587pt;}
.y17_c00218{bottom:504.319333pt;}
.y16_c00218{bottom:530.879840pt;}
.y15_c00218{bottom:530.879867pt;}
.y14_c00218{bottom:583.358760pt;}
.y13_c00218{bottom:636.159707pt;}
.y12_c00218{bottom:662.399453pt;}
.y11_c00218{bottom:668.479987pt;}
.yf_c00218{bottom:688.959920pt;}
.y10_c00218{bottom:688.959960pt;}
.yd_c00218{bottom:715.839173pt;}
.ye_c00218{bottom:715.839840pt;}
.yc_c00218{bottom:742.398920pt;}
.yb_c00218{bottom:742.398947pt;}
.ya_c00218{bottom:768.640133pt;}
.y9_c00218{bottom:795.199213pt;}
.y8_c00218{bottom:821.759680pt;}
.y7_c00218{bottom:874.559973pt;}
.y6_c00218{bottom:901.439947pt;}
.y5_c00218{bottom:953.919440pt;}
.y4_c00218{bottom:954.559573pt;}
.y3_c00218{bottom:980.799320pt;}
.y2_c00218{bottom:980.800107pt;}
.y1_c00218{bottom:1007.359867pt;}
.h1e_c00218{height:27.812500pt;}
.h1f_c00218{height:28.890625pt;}
.h17_c00218{height:29.898438pt;}
.h1b_c00218{height:31.578125pt;}
.h15_c00218{height:31.984375pt;}
.h12_c00218{height:33.601562pt;}
.h13_c00218{height:34.070312pt;}
.h19_c00218{height:35.460938pt;}
.h16_c00218{height:36.156250pt;}
.h11_c00218{height:36.236979pt;}
.h1a_c00218{height:36.851562pt;}
.h18_c00218{height:37.546875pt;}
.h14_c00218{height:44.500000pt;}
.h1d_c00218{height:45.015625pt;}
.h21_c00218{height:46.585938pt;}
.h1c_c00218{height:47.281250pt;}
.ha_c00218{height:57.710938pt;}
.h9_c00218{height:63.968750pt;}
.hd_c00218{height:66.054688pt;}
.hb_c00218{height:67.392578pt;}
.h8_c00218{height:68.046875pt;}
.h4_c00218{height:68.520833pt;}
.h1_c00218{height:68.701172pt;}
.hc_c00218{height:69.355469pt;}
.h2_c00218{height:70.009766pt;}
.h3_c00218{height:70.664062pt;}
.h6_c00218{height:71.218750pt;}
.h10_c00218{height:71.972656pt;}
.hf_c00218{height:72.473958pt;}
.h7_c00218{height:73.791667pt;}
.h5_c00218{height:73.906250pt;}
.he_c00218{height:73.935547pt;}
.h20_c00218{height:74.450521pt;}
.h0_c00218{height:1122.666667pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x2e_c00218{left:90.559613pt;}
.xd_c00218{left:123.518533pt;}
.x1_c00218{left:124.479467pt;}
.x5_c00218{left:125.438947pt;}
.xa_c00218{left:131.198667pt;}
.xb_c00218{left:137.919480pt;}
.x10_c00218{left:138.878920pt;}
.xe_c00218{left:148.479467pt;}
.xc_c00218{left:151.359333pt;}
.x19_c00218{left:174.719200pt;}
.x1a_c00218{left:188.159200pt;}
.x27_c00218{left:193.599587pt;}
.x1d_c00218{left:194.559067pt;}
.x28_c00218{left:215.039067pt;}
.x6_c00218{left:217.278787pt;}
.x11_c00218{left:247.999453pt;}
.x7_c00218{left:280.319867pt;}
.x12_c00218{left:297.279720pt;}
.x1e_c00218{left:308.159200pt;}
.x15_c00218{left:313.918920pt;}
.x1f_c00218{left:327.679733pt;}
.x16_c00218{left:329.598680pt;}
.x31_c00218{left:336.638693pt;}
.x2c_c00218{left:346.239173pt;}
.x32_c00218{left:349.119187pt;}
.x8_c00218{left:350.399453pt;}
.x2d_c00218{left:360.638667pt;}
.x9_c00218{left:363.839320pt;}
.x20_c00218{left:372.479040pt;}
.x21_c00218{left:395.838907pt;}
.x2_c00218{left:397.439987pt;}
.x22_c00218{left:413.119587pt;}
.x3_c00218{left:415.678667pt;}
.x13_c00218{left:433.278813pt;}
.x14_c00218{left:447.679733pt;}
.x23_c00218{left:451.199707pt;}
.x4_c00218{left:453.439453pt;}
.x33_c00218{left:470.078693pt;}
.x34_c00218{left:482.879840pt;}
.x24_c00218{left:492.159707pt;}
.x17_c00218{left:518.718787pt;}
.x18_c00218{left:537.919840pt;}
.x25_c00218{left:551.359867pt;}
.x2f_c00218{left:559.678707pt;}
.x30_c00218{left:573.118693pt;}
.x1b_c00218{left:605.119587pt;}
.x29_c00218{left:617.598720pt;}
.x1c_c00218{left:618.559573pt;}
.x26_c00218{left:635.519453pt;}
.xf_c00218{left:677.759720pt;}
.x2a_c00218{left:680.639573pt;}
.x2b_c00218{left:684.799880pt;}
.x35_c00218{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3de5e2eefe1529254e0f1705.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_07e901ec3027373b757c025b.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_e544f346fdcfe95065a1542a.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_aa5ff3b982fbf1022da37cf6.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_79f05bbba631f67b2280a775.woff2')format("woff");}.ff5_c00219{font-family:ff5_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;}
.me_c00219{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00219{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m1d_c00219{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m10_c00219{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m16_c00219{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m17_c00219{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m1e_c00219{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m14_c00219{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1c_c00219{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.md_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00219{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m20_c00219{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.278777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278777,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.309278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309278,0.000000,0.000000,0.250000,0,0);}
.m18_c00219{transform:matrix(0.315934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315934,0.000000,0.000000,0.250000,0,0);}
.m19_c00219{transform:matrix(0.412791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412791,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls1c_c00219{letter-spacing:-20.625000px;}
.ls1d_c00219{letter-spacing:-8.489925px;}
.ls24_c00219{letter-spacing:-8.175038px;}
.lsc_c00219{letter-spacing:-7.426125px;}
.ls11_c00219{letter-spacing:-6.749550px;}
.ls22_c00219{letter-spacing:-6.051443px;}
.lsa_c00219{letter-spacing:-5.945625px;}
.ls1f_c00219{letter-spacing:-5.577450px;}
.lsb_c00219{letter-spacing:-5.440103px;}
.ls6_c00219{letter-spacing:-5.196713px;}
.ls21_c00219{letter-spacing:-4.957200px;}
.lsf_c00219{letter-spacing:-4.794225px;}
.ls16_c00219{letter-spacing:-4.659750px;}
.ls8_c00219{letter-spacing:-4.456463px;}
.ls2_c00219{letter-spacing:-3.717000px;}
.ls1a_c00219{letter-spacing:-3.562650px;}
.ls18_c00219{letter-spacing:-3.290850px;}
.ls1_c00219{letter-spacing:-2.968875px;}
.lsd_c00219{letter-spacing:-2.297595px;}
.ls0_c00219{letter-spacing:-2.229413px;}
.ls23_c00219{letter-spacing:-2.224028px;}
.ls1b_c00219{letter-spacing:-1.818900px;}
.ls9_c00219{letter-spacing:-1.489163px;}
.ls20_c00219{letter-spacing:-0.873600px;}
.ls3_c00219{letter-spacing:-0.740250px;}
.lse_c00219{letter-spacing:-0.662175px;}
.ls4_c00219{letter-spacing:0.000000px;}
.ls14_c00219{letter-spacing:0.826500px;}
.ls17_c00219{letter-spacing:1.591200px;}
.ls7_c00219{letter-spacing:2.968875px;}
.ls5_c00219{letter-spacing:3.588780px;}
.ls15_c00219{letter-spacing:6.405375px;}
.ls12_c00219{letter-spacing:8.400893px;}
.ls10_c00219{letter-spacing:9.362700px;}
.ls19_c00219{letter-spacing:9.567225px;}
.ls13_c00219{letter-spacing:20.404575px;}
.ls1e_c00219{letter-spacing:185.429183px;}
.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;}
._1c_c00219{margin-left:-15.577820px;}
._1a_c00219{margin-left:-10.011443px;}
._15_c00219{margin-left:-8.607108px;}
._f_c00219{margin-left:-5.520969px;}
._12_c00219{margin-left:-3.673227px;}
._10_c00219{margin-left:-2.557889px;}
._a_c00219{margin-left:-1.365347px;}
._7_c00219{width:1.929494px;}
._3_c00219{width:3.223594px;}
._9_c00219{width:5.055497px;}
._14_c00219{width:6.377636px;}
._6_c00219{width:7.896887px;}
._1_c00219{width:9.024423px;}
._1b_c00219{width:10.031086px;}
._0_c00219{width:11.092844px;}
._11_c00219{width:12.315668px;}
._2_c00219{width:14.206857px;}
._4_c00219{width:15.554165px;}
._b_c00219{width:18.799913px;}
._c_c00219{width:20.398196px;}
._e_c00219{width:22.368670px;}
._5_c00219{width:24.254673px;}
._8_c00219{width:25.384186px;}
._13_c00219{width:26.967833px;}
._17_c00219{width:28.111283px;}
._16_c00219{width:29.183561px;}
._d_c00219{width:30.258469px;}
._19_c00219{width:32.228096px;}
._18_c00219{width:35.027643px;}
.fc0_c00219{color:transparent;}
.fsf_c00219{font-size:50.250000px;}
.fs11_c00219{font-size:64.500000px;}
.fsc_c00219{font-size:68.250000px;}
.fs5_c00219{font-size:69.750000px;}
.fs7_c00219{font-size:70.500000px;}
.fse_c00219{font-size:71.250000px;}
.fs9_c00219{font-size:72.750000px;}
.fs10_c00219{font-size:75.750000px;}
.fs12_c00219{font-size:76.500000px;}
.fsa_c00219{font-size:77.250000px;}
.fs3_c00219{font-size:78.000000px;}
.fs0_c00219{font-size:78.750000px;}
.fsb_c00219{font-size:79.500000px;}
.fs2_c00219{font-size:80.250000px;}
.fs8_c00219{font-size:81.750000px;}
.fs1_c00219{font-size:82.500000px;}
.fsd_c00219{font-size:83.250000px;}
.fs6_c00219{font-size:84.750000px;}
.fs4_c00219{font-size:104.250000px;}
.y0_c00219{bottom:0.000000px;}
.y29_c00219{bottom:183.239760px;}
.y27_c00219{bottom:212.400840px;}
.y28_c00219{bottom:212.400900px;}
.y26_c00219{bottom:242.640750px;}
.y25_c00219{bottom:242.642580px;}
.y24_c00219{bottom:272.162115px;}
.y23_c00219{bottom:302.041830px;}
.y22_c00219{bottom:361.801275px;}
.y21_c00219{bottom:390.600135px;}
.y1f_c00219{bottom:420.480885px;}
.y20_c00219{bottom:420.840135px;}
.y1d_c00219{bottom:450.000510px;}
.y1e_c00219{bottom:450.000600px;}
.y1c_c00219{bottom:480.240420px;}
.y1b_c00219{bottom:489.239820px;}
.y1a_c00219{bottom:510.121035px;}
.y19_c00219{bottom:540.360900px;}
.y18_c00219{bottom:540.363765px;}
.y17_c00219{bottom:569.522805px;}
.y16_c00219{bottom:599.402520px;}
.y15_c00219{bottom:628.922055px;}
.y14_c00219{bottom:658.441590px;}
.y13_c00219{bottom:688.321305px;}
.y12_c00219{bottom:718.201035px;}
.y11_c00219{bottom:748.440900px;}
.y10_c00219{bottom:807.480540px;}
.yf_c00219{bottom:837.720450px;}
.ye_c00219{bottom:867.600180px;}
.yd_c00219{bottom:897.479895px;}
.yc_c00219{bottom:927.001230px;}
.yb_c00219{bottom:956.880960px;}
.y9_c00219{bottom:986.759925px;}
.ya_c00219{bottom:986.760675px;}
.y7_c00219{bottom:1016.639625px;}
.y8_c00219{bottom:1016.639655px;}
.y6_c00219{bottom:1046.160960px;}
.y4_c00219{bottom:1076.400840px;}
.y5_c00219{bottom:1076.400885px;}
.y2_c00219{bottom:1106.640525px;}
.y3_c00219{bottom:1106.640750px;}
.y1_c00219{bottom:1135.799565px;}
.h11_c00219{height:52.409180px;}
.h14_c00219{height:67.271484px;}
.h6_c00219{height:68.455811px;}
.hd_c00219{height:71.182617px;}
.h8_c00219{height:73.529297px;}
.hf_c00219{height:74.311523px;}
.h16_c00219{height:74.344482px;}
.h12_c00219{height:75.816650px;}
.ha_c00219{height:75.875977px;}
.h13_c00219{height:76.341797px;}
.h4_c00219{height:76.552734px;}
.h18_c00219{height:77.097656px;}
.h1_c00219{height:77.288818px;}
.hb_c00219{height:77.853516px;}
.h17_c00219{height:78.609375px;}
.h3_c00219{height:78.760986px;}
.hc_c00219{height:80.121094px;}
.h10_c00219{height:80.233154px;}
.h2_c00219{height:80.969238px;}
.he_c00219{height:81.664673px;}
.h19_c00219{height:81.705322px;}
.h9_c00219{height:82.388672px;}
.h15_c00219{height:83.144531px;}
.h7_c00219{height:83.177490px;}
.h5_c00219{height:108.729492px;}
.h0_c00219{height:1263.000000px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x23_c00219{left:97.558665px;}
.x30_c00219{left:134.639100px;}
.x1_c00219{left:135.718500px;}
.xf_c00219{left:137.163735px;}
.x8_c00219{left:165.599100px;}
.x10_c00219{left:187.559685px;}
.x9_c00219{left:205.919535px;}
.x26_c00219{left:207.719100px;}
.x1d_c00219{left:216.359250px;}
.x11_c00219{left:232.199385px;}
.x12_c00219{left:253.439685px;}
.x27_c00219{left:285.479235px;}
.xd_c00219{left:286.558635px;}
.xe_c00219{left:299.519685px;}
.x13_c00219{left:304.199850px;}
.x28_c00219{left:317.159385px;}
.x21_c00219{left:327.239850px;}
.x6_c00219{left:331.918350px;}
.x1e_c00219{left:334.078785px;}
.x22_c00219{left:340.199385px;}
.x1f_c00219{left:350.639100px;}
.x14_c00219{left:357.118785px;}
.x7_c00219{left:360.358635px;}
.x33_c00219{left:363.239250px;}
.x34_c00219{left:382.319235px;}
.x15_c00219{left:384.118785px;}
.x29_c00219{left:422.998950px;}
.x16_c00219{left:430.198785px;}
.x2a_c00219{left:475.919535px;}
.x17_c00219{left:491.759535px;}
.x2b_c00219{left:515.519670px;}
.x18_c00219{left:548.638500px;}
.x2_c00219{left:565.198785px;}
.x19_c00219{left:575.999400px;}
.x3_c00219{left:580.679670px;}
.x2c_c00219{left:584.278800px;}
.xa_c00219{left:597.239820px;}
.x2d_c00219{left:607.679670px;}
.xb_c00219{left:610.919535px;}
.x24_c00219{left:618.478635px;}
.xc_c00219{left:630.358605px;}
.x25_c00219{left:633.598530px;}
.x4_c00219{left:644.758530px;}
.x1a_c00219{left:646.198785px;}
.x5_c00219{left:660.959385px;}
.x2e_c00219{left:690.119985px;}
.x31_c00219{left:717.479235px;}
.x2f_c00219{left:722.879520px;}
.x1b_c00219{left:725.758530px;}
.x32_c00219{left:737.638545px;}
.x20_c00219{left:756.359250px;}
.x1c_c00219{left:768.239220px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls1c_c00219{letter-spacing:-18.333333pt;}
.ls1d_c00219{letter-spacing:-7.546600pt;}
.ls24_c00219{letter-spacing:-7.266700pt;}
.lsc_c00219{letter-spacing:-6.601000pt;}
.ls11_c00219{letter-spacing:-5.999600pt;}
.ls22_c00219{letter-spacing:-5.379060pt;}
.lsa_c00219{letter-spacing:-5.285000pt;}
.ls1f_c00219{letter-spacing:-4.957733pt;}
.lsb_c00219{letter-spacing:-4.835647pt;}
.ls6_c00219{letter-spacing:-4.619300pt;}
.ls21_c00219{letter-spacing:-4.406400pt;}
.lsf_c00219{letter-spacing:-4.261533pt;}
.ls16_c00219{letter-spacing:-4.142000pt;}
.ls8_c00219{letter-spacing:-3.961300pt;}
.ls2_c00219{letter-spacing:-3.304000pt;}
.ls1a_c00219{letter-spacing:-3.166800pt;}
.ls18_c00219{letter-spacing:-2.925200pt;}
.ls1_c00219{letter-spacing:-2.639000pt;}
.lsd_c00219{letter-spacing:-2.042307pt;}
.ls0_c00219{letter-spacing:-1.981700pt;}
.ls23_c00219{letter-spacing:-1.976913pt;}
.ls1b_c00219{letter-spacing:-1.616800pt;}
.ls9_c00219{letter-spacing:-1.323700pt;}
.ls20_c00219{letter-spacing:-0.776533pt;}
.ls3_c00219{letter-spacing:-0.658000pt;}
.lse_c00219{letter-spacing:-0.588600pt;}
.ls4_c00219{letter-spacing:0.000000pt;}
.ls14_c00219{letter-spacing:0.734667pt;}
.ls17_c00219{letter-spacing:1.414400pt;}
.ls7_c00219{letter-spacing:2.639000pt;}
.ls5_c00219{letter-spacing:3.190027pt;}
.ls15_c00219{letter-spacing:5.693667pt;}
.ls12_c00219{letter-spacing:7.467460pt;}
.ls10_c00219{letter-spacing:8.322400pt;}
.ls19_c00219{letter-spacing:8.504200pt;}
.ls13_c00219{letter-spacing:18.137400pt;}
.ls1e_c00219{letter-spacing:164.825940pt;}
.ws0_c00219{word-spacing:0.000000pt;}
._1c_c00219{margin-left:-13.846951pt;}
._1a_c00219{margin-left:-8.899060pt;}
._15_c00219{margin-left:-7.650762pt;}
._f_c00219{margin-left:-4.907528pt;}
._12_c00219{margin-left:-3.265091pt;}
._10_c00219{margin-left:-2.273679pt;}
._a_c00219{margin-left:-1.213642pt;}
._7_c00219{width:1.715106pt;}
._3_c00219{width:2.865417pt;}
._9_c00219{width:4.493775pt;}
._14_c00219{width:5.669009pt;}
._6_c00219{width:7.019455pt;}
._1_c00219{width:8.021709pt;}
._1b_c00219{width:8.916521pt;}
._0_c00219{width:9.860306pt;}
._11_c00219{width:10.947260pt;}
._2_c00219{width:12.628317pt;}
._4_c00219{width:13.825925pt;}
._b_c00219{width:16.711034pt;}
._c_c00219{width:18.131730pt;}
._e_c00219{width:19.883262pt;}
._5_c00219{width:21.559709pt;}
._8_c00219{width:22.563721pt;}
._13_c00219{width:23.971408pt;}
._17_c00219{width:24.987808pt;}
._16_c00219{width:25.940943pt;}
._d_c00219{width:26.896417pt;}
._19_c00219{width:28.647196pt;}
._18_c00219{width:31.135683pt;}
.fsf_c00219{font-size:44.666667pt;}
.fs11_c00219{font-size:57.333333pt;}
.fsc_c00219{font-size:60.666667pt;}
.fs5_c00219{font-size:62.000000pt;}
.fs7_c00219{font-size:62.666667pt;}
.fse_c00219{font-size:63.333333pt;}
.fs9_c00219{font-size:64.666667pt;}
.fs10_c00219{font-size:67.333333pt;}
.fs12_c00219{font-size:68.000000pt;}
.fsa_c00219{font-size:68.666667pt;}
.fs3_c00219{font-size:69.333333pt;}
.fs0_c00219{font-size:70.000000pt;}
.fsb_c00219{font-size:70.666667pt;}
.fs2_c00219{font-size:71.333333pt;}
.fs8_c00219{font-size:72.666667pt;}
.fs1_c00219{font-size:73.333333pt;}
.fsd_c00219{font-size:74.000000pt;}
.fs6_c00219{font-size:75.333333pt;}
.fs4_c00219{font-size:92.666667pt;}
.y0_c00219{bottom:0.000000pt;}
.y29_c00219{bottom:162.879787pt;}
.y27_c00219{bottom:188.800747pt;}
.y28_c00219{bottom:188.800800pt;}
.y26_c00219{bottom:215.680667pt;}
.y25_c00219{bottom:215.682293pt;}
.y24_c00219{bottom:241.921880pt;}
.y23_c00219{bottom:268.481627pt;}
.y22_c00219{bottom:321.601133pt;}
.y21_c00219{bottom:347.200120pt;}
.y1f_c00219{bottom:373.760787pt;}
.y20_c00219{bottom:374.080120pt;}
.y1d_c00219{bottom:400.000453pt;}
.y1e_c00219{bottom:400.000533pt;}
.y1c_c00219{bottom:426.880373pt;}
.y1b_c00219{bottom:434.879840pt;}
.y1a_c00219{bottom:453.440920pt;}
.y19_c00219{bottom:480.320800pt;}
.y18_c00219{bottom:480.323347pt;}
.y17_c00219{bottom:506.242493pt;}
.y16_c00219{bottom:532.802240pt;}
.y15_c00219{bottom:559.041827pt;}
.y14_c00219{bottom:585.281413pt;}
.y13_c00219{bottom:611.841160pt;}
.y12_c00219{bottom:638.400920pt;}
.y11_c00219{bottom:665.280800pt;}
.y10_c00219{bottom:717.760480pt;}
.yf_c00219{bottom:744.640400pt;}
.ye_c00219{bottom:771.200160pt;}
.yd_c00219{bottom:797.759907pt;}
.yc_c00219{bottom:824.001093pt;}
.yb_c00219{bottom:850.560853pt;}
.y9_c00219{bottom:877.119933pt;}
.ya_c00219{bottom:877.120600pt;}
.y7_c00219{bottom:903.679667pt;}
.y8_c00219{bottom:903.679693pt;}
.y6_c00219{bottom:929.920853pt;}
.y4_c00219{bottom:956.800747pt;}
.y5_c00219{bottom:956.800787pt;}
.y2_c00219{bottom:983.680467pt;}
.y3_c00219{bottom:983.680667pt;}
.y1_c00219{bottom:1009.599613pt;}
.h11_c00219{height:46.585938pt;}
.h14_c00219{height:59.796875pt;}
.h6_c00219{height:60.849609pt;}
.hd_c00219{height:63.273438pt;}
.h8_c00219{height:65.359375pt;}
.hf_c00219{height:66.054688pt;}
.h16_c00219{height:66.083984pt;}
.h12_c00219{height:67.392578pt;}
.ha_c00219{height:67.445312pt;}
.h13_c00219{height:67.859375pt;}
.h4_c00219{height:68.046875pt;}
.h18_c00219{height:68.531250pt;}
.h1_c00219{height:68.701172pt;}
.hb_c00219{height:69.203125pt;}
.h17_c00219{height:69.875000pt;}
.h3_c00219{height:70.009766pt;}
.hc_c00219{height:71.218750pt;}
.h10_c00219{height:71.318359pt;}
.h2_c00219{height:71.972656pt;}
.he_c00219{height:72.590820pt;}
.h19_c00219{height:72.626953pt;}
.h9_c00219{height:73.234375pt;}
.h15_c00219{height:73.906250pt;}
.h7_c00219{height:73.935547pt;}
.h5_c00219{height:96.648438pt;}
.h0_c00219{height:1122.666667pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x23_c00219{left:86.718813pt;}
.x30_c00219{left:119.679200pt;}
.x1_c00219{left:120.638667pt;}
.xf_c00219{left:121.923320pt;}
.x8_c00219{left:147.199200pt;}
.x10_c00219{left:166.719720pt;}
.x9_c00219{left:183.039587pt;}
.x26_c00219{left:184.639200pt;}
.x1d_c00219{left:192.319333pt;}
.x11_c00219{left:206.399453pt;}
.x12_c00219{left:225.279720pt;}
.x27_c00219{left:253.759320pt;}
.xd_c00219{left:254.718787pt;}
.xe_c00219{left:266.239720pt;}
.x13_c00219{left:270.399867pt;}
.x28_c00219{left:281.919453pt;}
.x21_c00219{left:290.879867pt;}
.x6_c00219{left:295.038533pt;}
.x1e_c00219{left:296.958920pt;}
.x22_c00219{left:302.399453pt;}
.x1f_c00219{left:311.679200pt;}
.x14_c00219{left:317.438920pt;}
.x7_c00219{left:320.318787pt;}
.x33_c00219{left:322.879333pt;}
.x34_c00219{left:339.839320pt;}
.x15_c00219{left:341.438920pt;}
.x29_c00219{left:375.999067pt;}
.x16_c00219{left:382.398920pt;}
.x2a_c00219{left:423.039587pt;}
.x17_c00219{left:437.119587pt;}
.x2b_c00219{left:458.239707pt;}
.x18_c00219{left:487.678667pt;}
.x2_c00219{left:502.398920pt;}
.x19_c00219{left:511.999467pt;}
.x3_c00219{left:516.159707pt;}
.x2c_c00219{left:519.358933pt;}
.xa_c00219{left:530.879840pt;}
.x2d_c00219{left:540.159707pt;}
.xb_c00219{left:543.039587pt;}
.x24_c00219{left:549.758787pt;}
.xc_c00219{left:560.318760pt;}
.x25_c00219{left:563.198693pt;}
.x4_c00219{left:573.118693pt;}
.x1a_c00219{left:574.398920pt;}
.x5_c00219{left:587.519453pt;}
.x2e_c00219{left:613.439987pt;}
.x31_c00219{left:637.759320pt;}
.x2f_c00219{left:642.559573pt;}
.x1b_c00219{left:645.118693pt;}
.x32_c00219{left:655.678707pt;}
.x20_c00219{left:672.319333pt;}
.x1c_c00219{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb8b5b3e8c3caabbe511574c.woff2')format("woff");}.ff1_c00220{font-family:ff1_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:ff2_c00220;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.364746;font-style:normal;font-weight:normal;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_ca8250a862070ca8dd157398.woff2')format("woff");}.ff3_c00220{font-family:ff3_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:ff4_c00220;src:url('chunks/assets/font_77e3e52b9dcc4016e8a3ed6c.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_26b5b8e175d0805b2674abe8.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_b66515fa36930b859bf7ce78.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00220{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m13_c00220{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m16_c00220{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m20_c00220{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.me_c00220{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m11_c00220{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m0_c00220{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.mb_c00220{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.958333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958333,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls22_c00220{letter-spacing:-12.687675px;}
.ls17_c00220{letter-spacing:-11.464125px;}
.ls12_c00220{letter-spacing:-10.024575px;}
.ls24_c00220{letter-spacing:-9.396105px;}
.lsa_c00220{letter-spacing:-8.914500px;}
.ls7_c00220{letter-spacing:-8.175038px;}
.ls23_c00220{letter-spacing:-7.426125px;}
.lsb_c00220{letter-spacing:-7.028100px;}
.ls11_c00220{letter-spacing:-6.115500px;}
.ls6_c00220{letter-spacing:-5.945625px;}
.ls10_c00220{letter-spacing:-5.734800px;}
.ls1b_c00220{letter-spacing:-5.430300px;}
.ls3_c00220{letter-spacing:-5.196713px;}
.ls1f_c00220{letter-spacing:-5.134500px;}
.ls5_c00220{letter-spacing:-4.456463px;}
.ls21_c00220{letter-spacing:-4.453800px;}
.ls16_c00220{letter-spacing:-3.825000px;}
.lse_c00220{letter-spacing:-3.787800px;}
.ls4_c00220{letter-spacing:-3.717000px;}
.ls1e_c00220{letter-spacing:-3.499335px;}
.ls15_c00220{letter-spacing:-3.386700px;}
.lsd_c00220{letter-spacing:-3.119220px;}
.lsc_c00220{letter-spacing:-3.089228px;}
.ls2_c00220{letter-spacing:-2.968875px;}
.ls18_c00220{letter-spacing:-2.247975px;}
.ls0_c00220{letter-spacing:-2.229413px;}
.ls1c_c00220{letter-spacing:-1.693125px;}
.ls19_c00220{letter-spacing:-1.654485px;}
.ls8_c00220{letter-spacing:-1.489163px;}
.ls1a_c00220{letter-spacing:-0.849420px;}
.lsf_c00220{letter-spacing:-0.833033px;}
.ls14_c00220{letter-spacing:-0.801900px;}
.ls1_c00220{letter-spacing:-0.740250px;}
.ls9_c00220{letter-spacing:0.000000px;}
.ls13_c00220{letter-spacing:10.395975px;}
.ls1d_c00220{letter-spacing:13.643100px;}
.ls20_c00220{letter-spacing:42.629550px;}
.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;}
._10_c00220{margin-left:-7.010266px;}
._11_c00220{margin-left:-5.249594px;}
._4_c00220{margin-left:-3.408939px;}
._0_c00220{margin-left:-1.975332px;}
._6_c00220{width:1.310147px;}
._1_c00220{width:3.146538px;}
._5_c00220{width:4.927982px;}
._a_c00220{width:6.805976px;}
._3_c00220{width:8.733464px;}
._7_c00220{width:10.345566px;}
._2_c00220{width:12.323365px;}
._f_c00220{width:14.108657px;}
._c_c00220{width:15.143268px;}
._1c_c00220{width:16.813496px;}
._d_c00220{width:18.378214px;}
._9_c00220{width:20.242970px;}
._b_c00220{width:21.640262px;}
._8_c00220{width:23.265172px;}
._17_c00220{width:24.445932px;}
._e_c00220{width:26.118106px;}
._15_c00220{width:27.687400px;}
._1a_c00220{width:28.929719px;}
._18_c00220{width:30.742975px;}
._12_c00220{width:32.325582px;}
._13_c00220{width:34.020059px;}
._1b_c00220{width:37.164398px;}
._16_c00220{width:38.428574px;}
._14_c00220{width:42.200728px;}
._19_c00220{width:43.682878px;}
.fc0_c00220{color:transparent;}
.fsa_c00220{font-size:22.500000px;}
.fs11_c00220{font-size:55.500000px;}
.fsf_c00220{font-size:69.000000px;}
.fs10_c00220{font-size:69.750000px;}
.fse_c00220{font-size:71.250000px;}
.fs9_c00220{font-size:72.750000px;}
.fs6_c00220{font-size:73.500000px;}
.fsd_c00220{font-size:76.500000px;}
.fs5_c00220{font-size:77.250000px;}
.fs4_c00220{font-size:78.000000px;}
.fs0_c00220{font-size:78.750000px;}
.fsc_c00220{font-size:79.500000px;}
.fs3_c00220{font-size:80.250000px;}
.fs8_c00220{font-size:81.000000px;}
.fs7_c00220{font-size:81.750000px;}
.fs1_c00220{font-size:82.500000px;}
.fsb_c00220{font-size:84.750000px;}
.fs2_c00220{font-size:85.500000px;}
.y0_c00220{bottom:0.000000px;}
.y31_c00220{bottom:187.920345px;}
.y32_c00220{bottom:187.920600px;}
.y2f_c00220{bottom:217.078875px;}
.y30_c00220{bottom:217.079385px;}
.y2d_c00220{bottom:247.320645px;}
.y2e_c00220{bottom:247.320900px;}
.y2c_c00220{bottom:276.479685px;}
.y2b_c00220{bottom:306.360285px;}
.y2a_c00220{bottom:306.360465px;}
.y29_c00220{bottom:335.880000px;}
.y28_c00220{bottom:335.881020px;}
.y27_c00220{bottom:365.760750px;}
.y26_c00220{bottom:365.760915px;}
.y25_c00220{bottom:395.280435px;}
.y24_c00220{bottom:425.161050px;}
.y23_c00220{bottom:425.520315px;}
.y22_c00220{bottom:454.680720px;}
.y21_c00220{bottom:454.681545px;}
.y20_c00220{bottom:485.279850px;}
.y1f_c00220{bottom:494.280900px;}
.y1e_c00220{bottom:515.519850px;}
.y1c_c00220{bottom:545.038440px;}
.y1d_c00220{bottom:545.039385px;}
.y1b_c00220{bottom:574.559790px;}
.y1a_c00220{bottom:603.718830px;}
.y18_c00220{bottom:632.879385px;}
.y19_c00220{bottom:632.879970px;}
.y17_c00220{bottom:692.280435px;}
.y16_c00220{bottom:722.879520px;}
.y15_c00220{bottom:753.119385px;}
.y14_c00220{bottom:753.119415px;}
.y12_c00220{bottom:782.639985px;}
.y13_c00220{bottom:782.640750px;}
.y11_c00220{bottom:812.519715px;}
.y10_c00220{bottom:812.520705px;}
.yf_c00220{bottom:842.400420px;}
.ye_c00220{bottom:871.919955px;}
.yd_c00220{bottom:871.920840px;}
.yb_c00220{bottom:901.799925px;}
.yc_c00220{bottom:901.800570px;}
.y9_c00220{bottom:961.200240px;}
.ya_c00220{bottom:961.200990px;}
.y8_c00220{bottom:991.079955px;}
.y7_c00220{bottom:991.080090px;}
.y6_c00220{bottom:1020.959820px;}
.y5_c00220{bottom:1050.839535px;}
.y4_c00220{bottom:1050.839610px;}
.y3_c00220{bottom:1081.079520px;}
.y2_c00220{bottom:1110.600855px;}
.y1_c00220{bottom:1140.120390px;}
.he_c00220{height:23.466797px;}
.h17_c00220{height:55.933594px;}
.hd_c00220{height:71.400146px;}
.h14_c00220{height:71.964844px;}
.h8_c00220{height:72.136230px;}
.h16_c00220{height:72.747070px;}
.h12_c00220{height:74.311523px;}
.hc_c00220{height:75.875977px;}
.h5_c00220{height:76.552734px;}
.h13_c00220{height:76.658203px;}
.h11_c00220{height:77.097656px;}
.h1_c00220{height:77.288818px;}
.h6_c00220{height:77.853516px;}
.h19_c00220{height:78.024902px;}
.h7_c00220{height:78.609375px;}
.h4_c00220{height:78.760986px;}
.h15_c00220{height:79.365234px;}
.h10_c00220{height:80.121094px;}
.h2_c00220{height:80.969238px;}
.h18_c00220{height:81.533203px;}
.ha_c00220{height:81.632812px;}
.h9_c00220{height:82.388672px;}
.hb_c00220{height:83.144531px;}
.hf_c00220{height:83.177490px;}
.h3_c00220{height:84.498047px;}
.h0_c00220{height:1263.000000px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x27_c00220{left:102.599700px;}
.x2_c00220{left:140.036820px;}
.x5_c00220{left:141.482370px;}
.x1_c00220{left:142.559100px;}
.x37_c00220{left:197.279250px;}
.x38_c00220{left:211.319850px;}
.x11_c00220{left:212.399250px;}
.x2c_c00220{left:239.758500px;}
.x18_c00220{left:241.559685px;}
.x19_c00220{left:257.038950px;}
.x12_c00220{left:259.199385px;}
.x3_c00220{left:268.198785px;}
.x4_c00220{left:282.239250px;}
.x2d_c00220{left:304.559100px;}
.x25_c00220{left:310.318800px;}
.xd_c00220{left:312.479235px;}
.xe_c00220{left:326.878950px;}
.x39_c00220{left:327.958350px;}
.x1a_c00220{left:335.159850px;}
.x26_c00220{left:349.559685px;}
.x3a_c00220{left:353.158785px;}
.x16_c00220{left:373.319850px;}
.x28_c00220{left:378.359235px;}
.x1b_c00220{left:379.438635px;}
.x17_c00220{left:385.918350px;}
.x29_c00220{left:393.838530px;}
.x1c_c00220{left:407.519670px;}
.x2e_c00220{left:447.479235px;}
.x2f_c00220{left:462.599070px;}
.x30_c00220{left:481.679070px;}
.x1d_c00220{left:492.479685px;}
.x2a_c00220{left:503.278800px;}
.x3b_c00220{left:511.559685px;}
.x2b_c00220{left:517.678530px;}
.x13_c00220{left:525.598530px;}
.xa_c00220{left:528.838530px;}
.x14_c00220{left:542.878920px;}
.xb_c00220{left:544.678530px;}
.x31_c00220{left:552.959385px;}
.x6_c00220{left:560.518620px;}
.x8_c00220{left:564.119385px;}
.xc_c00220{left:565.559685px;}
.x7_c00220{left:574.559100px;}
.x32_c00220{left:576.358665px;}
.x9_c00220{left:578.878320px;}
.x40_c00220{left:588.238770px;}
.x15_c00220{left:589.319820px;}
.x45_c00220{left:593.279850px;}
.x41_c00220{left:601.559100px;}
.x46_c00220{left:608.038920px;}
.x1e_c00220{left:612.359850px;}
.x42_c00220{left:619.559685px;}
.x3e_c00220{left:623.158770px;}
.x23_c00220{left:624.599070px;}
.x1f_c00220{left:636.838530px;}
.x24_c00220{left:638.278800px;}
.x3f_c00220{left:639.719100px;}
.x20_c00220{left:699.119385px;}
.x43_c00220{left:706.678530px;}
.x33_c00220{left:708.479685px;}
.x44_c00220{left:732.239820px;}
.x35_c00220{left:737.638545px;}
.x3c_c00220{left:740.519070px;}
.xf_c00220{left:746.278800px;}
.x36_c00220{left:753.839535px;}
.x3d_c00220{left:754.918950px;}
.x10_c00220{left:760.678530px;}
.x34_c00220{left:762.838950px;}
.x22_c00220{left:771.479190px;}
.x21_c00220{left:772.919490px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls22_c00220{letter-spacing:-11.277933pt;}
.ls17_c00220{letter-spacing:-10.190333pt;}
.ls12_c00220{letter-spacing:-8.910733pt;}
.ls24_c00220{letter-spacing:-8.352093pt;}
.lsa_c00220{letter-spacing:-7.924000pt;}
.ls7_c00220{letter-spacing:-7.266700pt;}
.ls23_c00220{letter-spacing:-6.601000pt;}
.lsb_c00220{letter-spacing:-6.247200pt;}
.ls11_c00220{letter-spacing:-5.436000pt;}
.ls6_c00220{letter-spacing:-5.285000pt;}
.ls10_c00220{letter-spacing:-5.097600pt;}
.ls1b_c00220{letter-spacing:-4.826933pt;}
.ls3_c00220{letter-spacing:-4.619300pt;}
.ls1f_c00220{letter-spacing:-4.564000pt;}
.ls5_c00220{letter-spacing:-3.961300pt;}
.ls21_c00220{letter-spacing:-3.958933pt;}
.ls16_c00220{letter-spacing:-3.400000pt;}
.lse_c00220{letter-spacing:-3.366933pt;}
.ls4_c00220{letter-spacing:-3.304000pt;}
.ls1e_c00220{letter-spacing:-3.110520pt;}
.ls15_c00220{letter-spacing:-3.010400pt;}
.lsd_c00220{letter-spacing:-2.772640pt;}
.lsc_c00220{letter-spacing:-2.745980pt;}
.ls2_c00220{letter-spacing:-2.639000pt;}
.ls18_c00220{letter-spacing:-1.998200pt;}
.ls0_c00220{letter-spacing:-1.981700pt;}
.ls1c_c00220{letter-spacing:-1.505000pt;}
.ls19_c00220{letter-spacing:-1.470653pt;}
.ls8_c00220{letter-spacing:-1.323700pt;}
.ls1a_c00220{letter-spacing:-0.755040pt;}
.lsf_c00220{letter-spacing:-0.740473pt;}
.ls14_c00220{letter-spacing:-0.712800pt;}
.ls1_c00220{letter-spacing:-0.658000pt;}
.ls9_c00220{letter-spacing:0.000000pt;}
.ls13_c00220{letter-spacing:9.240867pt;}
.ls1d_c00220{letter-spacing:12.127200pt;}
.ls20_c00220{letter-spacing:37.892933pt;}
.ws0_c00220{word-spacing:0.000000pt;}
._10_c00220{margin-left:-6.231347pt;}
._11_c00220{margin-left:-4.666306pt;}
._4_c00220{margin-left:-3.030168pt;}
._0_c00220{margin-left:-1.755851pt;}
._6_c00220{width:1.164575pt;}
._1_c00220{width:2.796923pt;}
._5_c00220{width:4.380428pt;}
._a_c00220{width:6.049757pt;}
._3_c00220{width:7.763079pt;}
._7_c00220{width:9.196058pt;}
._2_c00220{width:10.954102pt;}
._f_c00220{width:12.541028pt;}
._c_c00220{width:13.460683pt;}
._1c_c00220{width:14.945330pt;}
._d_c00220{width:16.336191pt;}
._9_c00220{width:17.993751pt;}
._b_c00220{width:19.235789pt;}
._8_c00220{width:20.680153pt;}
._17_c00220{width:21.729717pt;}
._e_c00220{width:23.216094pt;}
._15_c00220{width:24.611023pt;}
._1a_c00220{width:25.715306pt;}
._18_c00220{width:27.327089pt;}
._12_c00220{width:28.733851pt;}
._13_c00220{width:30.240053pt;}
._1b_c00220{width:33.035021pt;}
._16_c00220{width:34.158732pt;}
._14_c00220{width:37.511758pt;}
._19_c00220{width:38.829225pt;}
.fsa_c00220{font-size:20.000000pt;}
.fs11_c00220{font-size:49.333333pt;}
.fsf_c00220{font-size:61.333333pt;}
.fs10_c00220{font-size:62.000000pt;}
.fse_c00220{font-size:63.333333pt;}
.fs9_c00220{font-size:64.666667pt;}
.fs6_c00220{font-size:65.333333pt;}
.fsd_c00220{font-size:68.000000pt;}
.fs5_c00220{font-size:68.666667pt;}
.fs4_c00220{font-size:69.333333pt;}
.fs0_c00220{font-size:70.000000pt;}
.fsc_c00220{font-size:70.666667pt;}
.fs3_c00220{font-size:71.333333pt;}
.fs8_c00220{font-size:72.000000pt;}
.fs7_c00220{font-size:72.666667pt;}
.fs1_c00220{font-size:73.333333pt;}
.fsb_c00220{font-size:75.333333pt;}
.fs2_c00220{font-size:76.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y31_c00220{bottom:167.040307pt;}
.y32_c00220{bottom:167.040533pt;}
.y2f_c00220{bottom:192.959000pt;}
.y30_c00220{bottom:192.959453pt;}
.y2d_c00220{bottom:219.840573pt;}
.y2e_c00220{bottom:219.840800pt;}
.y2c_c00220{bottom:245.759720pt;}
.y2b_c00220{bottom:272.320253pt;}
.y2a_c00220{bottom:272.320413pt;}
.y29_c00220{bottom:298.560000pt;}
.y28_c00220{bottom:298.560907pt;}
.y27_c00220{bottom:325.120667pt;}
.y26_c00220{bottom:325.120813pt;}
.y25_c00220{bottom:351.360387pt;}
.y24_c00220{bottom:377.920933pt;}
.y23_c00220{bottom:378.240280pt;}
.y22_c00220{bottom:404.160640pt;}
.y21_c00220{bottom:404.161373pt;}
.y20_c00220{bottom:431.359867pt;}
.y1f_c00220{bottom:439.360800pt;}
.y1e_c00220{bottom:458.239867pt;}
.y1c_c00220{bottom:484.478613pt;}
.y1d_c00220{bottom:484.479453pt;}
.y1b_c00220{bottom:510.719813pt;}
.y1a_c00220{bottom:536.638960pt;}
.y18_c00220{bottom:562.559453pt;}
.y19_c00220{bottom:562.559973pt;}
.y17_c00220{bottom:615.360387pt;}
.y16_c00220{bottom:642.559573pt;}
.y15_c00220{bottom:669.439453pt;}
.y14_c00220{bottom:669.439480pt;}
.y12_c00220{bottom:695.679987pt;}
.y13_c00220{bottom:695.680667pt;}
.y11_c00220{bottom:722.239747pt;}
.y10_c00220{bottom:722.240627pt;}
.yf_c00220{bottom:748.800373pt;}
.ye_c00220{bottom:775.039960pt;}
.yd_c00220{bottom:775.040747pt;}
.yb_c00220{bottom:801.599933pt;}
.yc_c00220{bottom:801.600507pt;}
.y9_c00220{bottom:854.400213pt;}
.ya_c00220{bottom:854.400880pt;}
.y8_c00220{bottom:880.959960pt;}
.y7_c00220{bottom:880.960080pt;}
.y6_c00220{bottom:907.519840pt;}
.y5_c00220{bottom:934.079587pt;}
.y4_c00220{bottom:934.079653pt;}
.y3_c00220{bottom:960.959573pt;}
.y2_c00220{bottom:987.200760pt;}
.y1_c00220{bottom:1013.440347pt;}
.he_c00220{height:20.859375pt;}
.h17_c00220{height:49.718750pt;}
.hd_c00220{height:63.466797pt;}
.h14_c00220{height:63.968750pt;}
.h8_c00220{height:64.121094pt;}
.h16_c00220{height:64.664062pt;}
.h12_c00220{height:66.054688pt;}
.hc_c00220{height:67.445312pt;}
.h5_c00220{height:68.046875pt;}
.h13_c00220{height:68.140625pt;}
.h11_c00220{height:68.531250pt;}
.h1_c00220{height:68.701172pt;}
.h6_c00220{height:69.203125pt;}
.h19_c00220{height:69.355469pt;}
.h7_c00220{height:69.875000pt;}
.h4_c00220{height:70.009766pt;}
.h15_c00220{height:70.546875pt;}
.h10_c00220{height:71.218750pt;}
.h2_c00220{height:71.972656pt;}
.h18_c00220{height:72.473958pt;}
.ha_c00220{height:72.562500pt;}
.h9_c00220{height:73.234375pt;}
.hb_c00220{height:73.906250pt;}
.hf_c00220{height:73.935547pt;}
.h3_c00220{height:75.109375pt;}
.h0_c00220{height:1122.666667pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x27_c00220{left:91.199733pt;}
.x2_c00220{left:124.477173pt;}
.x5_c00220{left:125.762107pt;}
.x1_c00220{left:126.719200pt;}
.x37_c00220{left:175.359333pt;}
.x38_c00220{left:187.839867pt;}
.x11_c00220{left:188.799333pt;}
.x2c_c00220{left:213.118667pt;}
.x18_c00220{left:214.719720pt;}
.x19_c00220{left:228.479067pt;}
.x12_c00220{left:230.399453pt;}
.x3_c00220{left:238.398920pt;}
.x4_c00220{left:250.879333pt;}
.x2d_c00220{left:270.719200pt;}
.x25_c00220{left:275.838933pt;}
.xd_c00220{left:277.759320pt;}
.xe_c00220{left:290.559067pt;}
.x39_c00220{left:291.518533pt;}
.x1a_c00220{left:297.919867pt;}
.x26_c00220{left:310.719720pt;}
.x3a_c00220{left:313.918920pt;}
.x16_c00220{left:331.839867pt;}
.x28_c00220{left:336.319320pt;}
.x1b_c00220{left:337.278787pt;}
.x17_c00220{left:343.038533pt;}
.x29_c00220{left:350.078693pt;}
.x1c_c00220{left:362.239707pt;}
.x2e_c00220{left:397.759320pt;}
.x2f_c00220{left:411.199173pt;}
.x30_c00220{left:428.159173pt;}
.x1d_c00220{left:437.759720pt;}
.x2a_c00220{left:447.358933pt;}
.x3b_c00220{left:454.719720pt;}
.x2b_c00220{left:460.158693pt;}
.x13_c00220{left:467.198693pt;}
.xa_c00220{left:470.078693pt;}
.x14_c00220{left:482.559040pt;}
.xb_c00220{left:484.158693pt;}
.x31_c00220{left:491.519453pt;}
.x6_c00220{left:498.238773pt;}
.x8_c00220{left:501.439453pt;}
.xc_c00220{left:502.719720pt;}
.x7_c00220{left:510.719200pt;}
.x32_c00220{left:512.318813pt;}
.x9_c00220{left:514.558507pt;}
.x40_c00220{left:522.878907pt;}
.x15_c00220{left:523.839840pt;}
.x45_c00220{left:527.359867pt;}
.x41_c00220{left:534.719200pt;}
.x46_c00220{left:540.479040pt;}
.x1e_c00220{left:544.319867pt;}
.x42_c00220{left:550.719720pt;}
.x3e_c00220{left:553.918907pt;}
.x23_c00220{left:555.199173pt;}
.x1f_c00220{left:566.078693pt;}
.x24_c00220{left:567.358933pt;}
.x3f_c00220{left:568.639200pt;}
.x20_c00220{left:621.439453pt;}
.x43_c00220{left:628.158693pt;}
.x33_c00220{left:629.759720pt;}
.x44_c00220{left:650.879840pt;}
.x35_c00220{left:655.678707pt;}
.x3c_c00220{left:658.239173pt;}
.xf_c00220{left:663.358933pt;}
.x36_c00220{left:670.079587pt;}
.x3d_c00220{left:671.039067pt;}
.x10_c00220{left:676.158693pt;}
.x34_c00220{left:678.079067pt;}
.x22_c00220{left:685.759280pt;}
.x21_c00220{left:687.039547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_828562fe42e654afe12f3d56.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_00319c05afd42c0f83d94384.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_465e63d3dd8b27663ab51cc5.woff2')format("woff");}.ff3_c00221{font-family:ff3_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:ff4_c00221;src:url('chunks/assets/font_da910b8c10baedc63a8538ab.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.364746;font-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_c00221{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m17_c00221{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{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_c00221{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m14_c00221{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls20_c00221{letter-spacing:-21.033000px;}
.ls13_c00221{letter-spacing:-17.828213px;}
.ls10_c00221{letter-spacing:-10.644750px;}
.ls1a_c00221{letter-spacing:-8.914500px;}
.ls1d_c00221{letter-spacing:-8.330400px;}
.ls6_c00221{letter-spacing:-8.175038px;}
.ls12_c00221{letter-spacing:-7.749225px;}
.ls9_c00221{letter-spacing:-7.426125px;}
.lsc_c00221{letter-spacing:-6.685875px;}
.ls1e_c00221{letter-spacing:-6.058035px;}
.ls7_c00221{letter-spacing:-5.945625px;}
.lsa_c00221{letter-spacing:-5.196713px;}
.lsd_c00221{letter-spacing:-4.456463px;}
.ls4_c00221{letter-spacing:-3.717000px;}
.ls11_c00221{letter-spacing:-3.063750px;}
.ls3_c00221{letter-spacing:-2.968875px;}
.ls1b_c00221{letter-spacing:-2.928000px;}
.lse_c00221{letter-spacing:-2.251500px;}
.ls1_c00221{letter-spacing:-2.229413px;}
.ls19_c00221{letter-spacing:-2.204325px;}
.ls15_c00221{letter-spacing:-1.545180px;}
.ls5_c00221{letter-spacing:-1.489163px;}
.ls17_c00221{letter-spacing:-1.483200px;}
.ls8_c00221{letter-spacing:-0.740250px;}
.ls2_c00221{letter-spacing:0.000000px;}
.ls14_c00221{letter-spacing:0.756045px;}
.lsf_c00221{letter-spacing:0.772650px;}
.ls1c_c00221{letter-spacing:0.811125px;}
.lsb_c00221{letter-spacing:2.470950px;}
.ls18_c00221{letter-spacing:4.301843px;}
.ls16_c00221{letter-spacing:4.305375px;}
.ls1f_c00221{letter-spacing:4.740000px;}
.ls0_c00221{letter-spacing:7.426125px;}
.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;}
._11_c00221{margin-left:-108.974339px;}
._12_c00221{margin-left:-10.872121px;}
._f_c00221{margin-left:-8.883609px;}
._16_c00221{margin-left:-6.989167px;}
._d_c00221{margin-left:-5.732242px;}
._17_c00221{margin-left:-4.021346px;}
._18_c00221{margin-left:-1.600482px;}
._e_c00221{width:2.033191px;}
._2_c00221{width:3.947321px;}
._c_c00221{width:5.197812px;}
._1_c00221{width:7.182475px;}
._3_c00221{width:8.795929px;}
._0_c00221{width:10.764828px;}
._10_c00221{width:12.565721px;}
._15_c00221{width:13.811279px;}
._14_c00221{width:14.899649px;}
._7_c00221{width:17.291747px;}
._13_c00221{width:18.301797px;}
._9_c00221{width:19.333734px;}
._8_c00221{width:20.539679px;}
._6_c00221{width:22.696077px;}
._5_c00221{width:23.936226px;}
._a_c00221{width:26.330300px;}
._4_c00221{width:28.604125px;}
._b_c00221{width:34.461297px;}
.fc0_c00221{color:transparent;}
.fsd_c00221{font-size:60.000000px;}
.fsa_c00221{font-size:66.750000px;}
.fs7_c00221{font-size:69.750000px;}
.fs6_c00221{font-size:71.250000px;}
.fse_c00221{font-size:75.000000px;}
.fsc_c00221{font-size:75.750000px;}
.fs4_c00221{font-size:76.500000px;}
.fsb_c00221{font-size:77.250000px;}
.fs9_c00221{font-size:78.000000px;}
.fs0_c00221{font-size:78.750000px;}
.fs8_c00221{font-size:79.500000px;}
.fs3_c00221{font-size:80.250000px;}
.fs5_c00221{font-size:82.500000px;}
.fs1_c00221{font-size:84.750000px;}
.fsf_c00221{font-size:85.500000px;}
.fs2_c00221{font-size:87.000000px;}
.y0_c00221{bottom:0.000000px;}
.y26_c00221{bottom:190.438665px;}
.y25_c00221{bottom:190.439535px;}
.y24_c00221{bottom:220.319250px;}
.y23_c00221{bottom:220.319370px;}
.y22_c00221{bottom:250.199085px;}
.y21_c00221{bottom:280.078815px;}
.y20_c00221{bottom:309.600150px;}
.y1e_c00221{bottom:339.478545px;}
.y1f_c00221{bottom:339.479235px;}
.y1d_c00221{bottom:368.639700px;}
.y1c_c00221{bottom:428.760135px;}
.y1b_c00221{bottom:449.638845px;}
.y1a_c00221{bottom:471.600150px;}
.y19_c00221{bottom:492.838950px;}
.y18_c00221{bottom:492.840450px;}
.y17_c00221{bottom:513.720870px;}
.y16_c00221{bottom:572.759625px;}
.y15_c00221{bottom:602.639355px;}
.y13_c00221{bottom:632.518485px;}
.y14_c00221{bottom:632.519070px;}
.y11_c00221{bottom:691.919445px;}
.y12_c00221{bottom:691.919535px;}
.yf_c00221{bottom:722.159310px;}
.y10_c00221{bottom:722.159370px;}
.ye_c00221{bottom:752.399235px;}
.yc_c00221{bottom:781.559640px;}
.yd_c00221{bottom:781.559685px;}
.yb_c00221{bottom:811.799565px;}
.ya_c00221{bottom:811.799655px;}
.y9_c00221{bottom:841.319190px;}
.y8_c00221{bottom:841.322460px;}
.y7_c00221{bottom:870.841995px;}
.y6_c00221{bottom:930.603540px;}
.y5_c00221{bottom:961.201830px;}
.y4_c00221{bottom:990.721365px;}
.y3_c00221{bottom:1020.601095px;}
.y2_c00221{bottom:1080.720720px;}
.y1_c00221{bottom:1139.759490px;}
.hf_c00221{height:62.578125px;}
.hb_c00221{height:65.511475px;}
.h8_c00221{height:72.747070px;}
.h12_c00221{height:73.608398px;}
.h7_c00221{height:74.311523px;}
.hd_c00221{height:74.344482px;}
.h5_c00221{height:75.080566px;}
.hc_c00221{height:75.816650px;}
.h13_c00221{height:76.552734px;}
.h11_c00221{height:77.097656px;}
.h1_c00221{height:77.288818px;}
.he_c00221{height:78.024902px;}
.ha_c00221{height:78.609375px;}
.h4_c00221{height:78.760986px;}
.h10_c00221{height:79.365234px;}
.h9_c00221{height:80.121094px;}
.h6_c00221{height:80.969238px;}
.h2_c00221{height:83.177490px;}
.h14_c00221{height:84.498047px;}
.h3_c00221{height:85.385742px;}
.h0_c00221{height:1263.000000px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x6_c00221{left:136.800105px;}
.x1_c00221{left:137.878950px;}
.x22_c00221{left:190.438380px;}
.x1f_c00221{left:191.880705px;}
.x2_c00221{left:210.599700px;}
.xd_c00221{left:217.438635px;}
.x3_c00221{left:225.358635px;}
.xe_c00221{left:242.279850px;}
.xf_c00221{left:263.518635px;}
.x23_c00221{left:296.279850px;}
.x1b_c00221{left:316.798515px;}
.x10_c00221{left:321.478635px;}
.x1c_c00221{left:331.918350px;}
.x11_c00221{left:338.759100px;}
.x27_c00221{left:343.798515px;}
.x28_c00221{left:357.479685px;}
.x12_c00221{left:361.439685px;}
.x1d_c00221{left:363.959385px;}
.x24_c00221{left:367.919535px;}
.x1e_c00221{left:410.759535px;}
.xb_c00221{left:415.439670px;}
.xc_c00221{left:429.119385px;}
.x13_c00221{left:430.198785px;}
.x4_c00221{left:464.398635px;}
.x5_c00221{left:479.518620px;}
.x9_c00221{left:489.239820px;}
.x29_c00221{left:503.278800px;}
.x14_c00221{left:529.919535px;}
.x7_c00221{left:531.359850px;}
.xa_c00221{left:532.798515px;}
.x1a_c00221{left:546.479685px;}
.x8_c00221{left:548.279250px;}
.x15_c00221{left:597.239820px;}
.x16_c00221{left:621.718545px;}
.x2a_c00221{left:632.159820px;}
.x17_c00221{left:642.599670px;}
.x2b_c00221{left:648.000000px;}
.x25_c00221{left:678.239820px;}
.x18_c00221{left:701.639100px;}
.x26_c00221{left:704.519670px;}
.x20_c00221{left:723.238770px;}
.x21_c00221{left:735.118785px;}
.x19_c00221{left:758.878920px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls20_c00221{letter-spacing:-18.696000pt;}
.ls13_c00221{letter-spacing:-15.847300pt;}
.ls10_c00221{letter-spacing:-9.462000pt;}
.ls1a_c00221{letter-spacing:-7.924000pt;}
.ls1d_c00221{letter-spacing:-7.404800pt;}
.ls6_c00221{letter-spacing:-7.266700pt;}
.ls12_c00221{letter-spacing:-6.888200pt;}
.ls9_c00221{letter-spacing:-6.601000pt;}
.lsc_c00221{letter-spacing:-5.943000pt;}
.ls1e_c00221{letter-spacing:-5.384920pt;}
.ls7_c00221{letter-spacing:-5.285000pt;}
.lsa_c00221{letter-spacing:-4.619300pt;}
.lsd_c00221{letter-spacing:-3.961300pt;}
.ls4_c00221{letter-spacing:-3.304000pt;}
.ls11_c00221{letter-spacing:-2.723333pt;}
.ls3_c00221{letter-spacing:-2.639000pt;}
.ls1b_c00221{letter-spacing:-2.602667pt;}
.lse_c00221{letter-spacing:-2.001333pt;}
.ls1_c00221{letter-spacing:-1.981700pt;}
.ls19_c00221{letter-spacing:-1.959400pt;}
.ls15_c00221{letter-spacing:-1.373493pt;}
.ls5_c00221{letter-spacing:-1.323700pt;}
.ls17_c00221{letter-spacing:-1.318400pt;}
.ls8_c00221{letter-spacing:-0.658000pt;}
.ls2_c00221{letter-spacing:0.000000pt;}
.ls14_c00221{letter-spacing:0.672040pt;}
.lsf_c00221{letter-spacing:0.686800pt;}
.ls1c_c00221{letter-spacing:0.721000pt;}
.lsb_c00221{letter-spacing:2.196400pt;}
.ls18_c00221{letter-spacing:3.823860pt;}
.ls16_c00221{letter-spacing:3.827000pt;}
.ls1f_c00221{letter-spacing:4.213333pt;}
.ls0_c00221{letter-spacing:6.601000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
._11_c00221{margin-left:-96.866079pt;}
._12_c00221{margin-left:-9.664108pt;}
._f_c00221{margin-left:-7.896542pt;}
._16_c00221{margin-left:-6.212592pt;}
._d_c00221{margin-left:-5.095326pt;}
._17_c00221{margin-left:-3.574530pt;}
._18_c00221{margin-left:-1.422651pt;}
._e_c00221{width:1.807281pt;}
._2_c00221{width:3.508730pt;}
._c_c00221{width:4.620277pt;}
._1_c00221{width:6.384423pt;}
._3_c00221{width:7.818604pt;}
._0_c00221{width:9.568736pt;}
._10_c00221{width:11.169530pt;}
._15_c00221{width:12.276692pt;}
._14_c00221{width:13.244132pt;}
._7_c00221{width:15.370442pt;}
._13_c00221{width:16.268264pt;}
._9_c00221{width:17.185542pt;}
._8_c00221{width:18.257492pt;}
._6_c00221{width:20.174291pt;}
._5_c00221{width:21.276645pt;}
._a_c00221{width:23.404711pt;}
._4_c00221{width:25.425889pt;}
._b_c00221{width:30.632264pt;}
.fsd_c00221{font-size:53.333333pt;}
.fsa_c00221{font-size:59.333333pt;}
.fs7_c00221{font-size:62.000000pt;}
.fs6_c00221{font-size:63.333333pt;}
.fse_c00221{font-size:66.666667pt;}
.fsc_c00221{font-size:67.333333pt;}
.fs4_c00221{font-size:68.000000pt;}
.fsb_c00221{font-size:68.666667pt;}
.fs9_c00221{font-size:69.333333pt;}
.fs0_c00221{font-size:70.000000pt;}
.fs8_c00221{font-size:70.666667pt;}
.fs3_c00221{font-size:71.333333pt;}
.fs5_c00221{font-size:73.333333pt;}
.fs1_c00221{font-size:75.333333pt;}
.fsf_c00221{font-size:76.000000pt;}
.fs2_c00221{font-size:77.333333pt;}
.y0_c00221{bottom:0.000000pt;}
.y26_c00221{bottom:169.278813pt;}
.y25_c00221{bottom:169.279587pt;}
.y24_c00221{bottom:195.839333pt;}
.y23_c00221{bottom:195.839440pt;}
.y22_c00221{bottom:222.399187pt;}
.y21_c00221{bottom:248.958947pt;}
.y20_c00221{bottom:275.200133pt;}
.y1e_c00221{bottom:301.758707pt;}
.y1f_c00221{bottom:301.759320pt;}
.y1d_c00221{bottom:327.679733pt;}
.y1c_c00221{bottom:381.120120pt;}
.y1b_c00221{bottom:399.678973pt;}
.y1a_c00221{bottom:419.200133pt;}
.y19_c00221{bottom:438.079067pt;}
.y18_c00221{bottom:438.080400pt;}
.y17_c00221{bottom:456.640773pt;}
.y16_c00221{bottom:509.119667pt;}
.y15_c00221{bottom:535.679427pt;}
.y13_c00221{bottom:562.238653pt;}
.y14_c00221{bottom:562.239173pt;}
.y11_c00221{bottom:615.039507pt;}
.y12_c00221{bottom:615.039587pt;}
.yf_c00221{bottom:641.919387pt;}
.y10_c00221{bottom:641.919440pt;}
.ye_c00221{bottom:668.799320pt;}
.yc_c00221{bottom:694.719680pt;}
.yd_c00221{bottom:694.719720pt;}
.yb_c00221{bottom:721.599613pt;}
.ya_c00221{bottom:721.599693pt;}
.y9_c00221{bottom:747.839280pt;}
.y8_c00221{bottom:747.842187pt;}
.y7_c00221{bottom:774.081773pt;}
.y6_c00221{bottom:827.203147pt;}
.y5_c00221{bottom:854.401627pt;}
.y4_c00221{bottom:880.641213pt;}
.y3_c00221{bottom:907.200973pt;}
.y2_c00221{bottom:960.640640pt;}
.y1_c00221{bottom:1013.119547pt;}
.hf_c00221{height:55.625000pt;}
.hb_c00221{height:58.232422pt;}
.h8_c00221{height:64.664062pt;}
.h12_c00221{height:65.429688pt;}
.h7_c00221{height:66.054688pt;}
.hd_c00221{height:66.083984pt;}
.h5_c00221{height:66.738281pt;}
.hc_c00221{height:67.392578pt;}
.h13_c00221{height:68.046875pt;}
.h11_c00221{height:68.531250pt;}
.h1_c00221{height:68.701172pt;}
.he_c00221{height:69.355469pt;}
.ha_c00221{height:69.875000pt;}
.h4_c00221{height:70.009766pt;}
.h10_c00221{height:70.546875pt;}
.h9_c00221{height:71.218750pt;}
.h6_c00221{height:71.972656pt;}
.h2_c00221{height:73.935547pt;}
.h14_c00221{height:75.109375pt;}
.h3_c00221{height:75.898438pt;}
.h0_c00221{height:1122.666667pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x6_c00221{left:121.600093pt;}
.x1_c00221{left:122.559067pt;}
.x22_c00221{left:169.278560pt;}
.x1f_c00221{left:170.560627pt;}
.x2_c00221{left:187.199733pt;}
.xd_c00221{left:193.278787pt;}
.x3_c00221{left:200.318787pt;}
.xe_c00221{left:215.359867pt;}
.xf_c00221{left:234.238787pt;}
.x23_c00221{left:263.359867pt;}
.x1b_c00221{left:281.598680pt;}
.x10_c00221{left:285.758787pt;}
.x1c_c00221{left:295.038533pt;}
.x11_c00221{left:301.119200pt;}
.x27_c00221{left:305.598680pt;}
.x28_c00221{left:317.759720pt;}
.x12_c00221{left:321.279720pt;}
.x1d_c00221{left:323.519453pt;}
.x24_c00221{left:327.039587pt;}
.x1e_c00221{left:365.119587pt;}
.xb_c00221{left:369.279707pt;}
.xc_c00221{left:381.439453pt;}
.x13_c00221{left:382.398920pt;}
.x4_c00221{left:412.798787pt;}
.x5_c00221{left:426.238773pt;}
.x9_c00221{left:434.879840pt;}
.x29_c00221{left:447.358933pt;}
.x14_c00221{left:471.039587pt;}
.x7_c00221{left:472.319867pt;}
.xa_c00221{left:473.598680pt;}
.x1a_c00221{left:485.759720pt;}
.x8_c00221{left:487.359333pt;}
.x15_c00221{left:530.879840pt;}
.x16_c00221{left:552.638707pt;}
.x2a_c00221{left:561.919840pt;}
.x17_c00221{left:571.199707pt;}
.x2b_c00221{left:576.000000pt;}
.x25_c00221{left:602.879840pt;}
.x18_c00221{left:623.679200pt;}
.x26_c00221{left:626.239707pt;}
.x20_c00221{left:642.878907pt;}
.x21_c00221{left:653.438920pt;}
.x19_c00221{left:674.559040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02d4c6c096e13777a51b3e11.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_7f2d985f804753b8bea39f14.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.432129;font-style:normal;font-weight:normal;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_8fb662e324bf6709f02bd919.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_7d04078874a2c38e147043cd.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_4dd5395c7ee3cefc46ec3917.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_b51b7bf58d185c1ab8b4b82b.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.432129;font-style:normal;font-weight: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_c00222;src:url('chunks/assets/font_41aebab1b11138149d4be5e2.woff2')format("woff");}.ff7_c00222{font-family:ff7_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:ff8_c00222;src:url('chunks/assets/font_8be8dff4b74989f1ed1fb92f.woff2')format("woff");}.ff8_c00222{font-family:ff8_c00222;line-height:1.364746;font-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_c00222{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m20_c00222{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m26_c00222{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m2a_c00222{transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m0_c00222{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m16_c00222{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m1f_c00222{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289604,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00222{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);}
.m1a_c00222{transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342593,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{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);}
.m7_c00222{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{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);}
.m18_c00222{transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);}
.ma_c00222{transform:matrix(0.523148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523148,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{transform:matrix(0.622549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622549,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.lse_c00222{letter-spacing:-21.038738px;}
.ls25_c00222{letter-spacing:-14.082750px;}
.lsd_c00222{letter-spacing:-11.774100px;}
.ls35_c00222{letter-spacing:-10.402875px;}
.ls37_c00222{letter-spacing:-8.914500px;}
.ls26_c00222{letter-spacing:-8.175038px;}
.ls2f_c00222{letter-spacing:-7.875450px;}
.ls31_c00222{letter-spacing:-7.426125px;}
.lsa_c00222{letter-spacing:-6.685875px;}
.lsc_c00222{letter-spacing:-6.572700px;}
.ls6_c00222{letter-spacing:-5.945625px;}
.ls8_c00222{letter-spacing:-5.196713px;}
.ls34_c00222{letter-spacing:-5.182058px;}
.ls36_c00222{letter-spacing:-5.054963px;}
.ls29_c00222{letter-spacing:-5.015625px;}
.ls5_c00222{letter-spacing:-4.456463px;}
.ls30_c00222{letter-spacing:-4.087500px;}
.ls23_c00222{letter-spacing:-3.935250px;}
.lsb_c00222{letter-spacing:-3.820703px;}
.ls4_c00222{letter-spacing:-3.717000px;}
.ls11_c00222{letter-spacing:-3.677700px;}
.ls13_c00222{letter-spacing:-3.584250px;}
.ls33_c00222{letter-spacing:-3.543750px;}
.ls21_c00222{letter-spacing:-3.450345px;}
.ls1_c00222{letter-spacing:-2.968875px;}
.ls3_c00222{letter-spacing:-2.229413px;}
.ls24_c00222{letter-spacing:-2.165625px;}
.ls1a_c00222{letter-spacing:-1.999200px;}
.ls2_c00222{letter-spacing:-1.489163px;}
.lsf_c00222{letter-spacing:-1.415250px;}
.ls28_c00222{letter-spacing:-1.396238px;}
.ls7_c00222{letter-spacing:-0.740250px;}
.ls27_c00222{letter-spacing:-0.672750px;}
.ls1c_c00222{letter-spacing:-0.548550px;}
.ls10_c00222{letter-spacing:-0.302175px;}
.ls9_c00222{letter-spacing:0.000000px;}
.ls20_c00222{letter-spacing:0.291600px;}
.ls1e_c00222{letter-spacing:0.717600px;}
.ls2d_c00222{letter-spacing:0.754350px;}
.ls2a_c00222{letter-spacing:0.770310px;}
.ls2c_c00222{letter-spacing:0.866700px;}
.ls18_c00222{letter-spacing:1.297058px;}
.ls12_c00222{letter-spacing:1.470300px;}
.ls22_c00222{letter-spacing:4.075275px;}
.ls1f_c00222{letter-spacing:4.456463px;}
.ls16_c00222{letter-spacing:5.248395px;}
.ls1b_c00222{letter-spacing:5.785560px;}
.ls15_c00222{letter-spacing:6.569100px;}
.ls2e_c00222{letter-spacing:8.175038px;}
.ls0_c00222{letter-spacing:9.000000px;}
.ls14_c00222{letter-spacing:9.300000px;}
.ls19_c00222{letter-spacing:9.644400px;}
.ls17_c00222{letter-spacing:16.118550px;}
.ls32_c00222{letter-spacing:22.212975px;}
.ls1d_c00222{letter-spacing:28.874842px;}
.ls2b_c00222{letter-spacing:42.881400px;}
.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;}
._1c_c00222{margin-left:-31.792500px;}
._16_c00222{margin-left:-27.640344px;}
._1b_c00222{margin-left:-9.057703px;}
._17_c00222{margin-left:-5.955224px;}
._15_c00222{margin-left:-4.811239px;}
._13_c00222{margin-left:-2.359662px;}
._19_c00222{margin-left:-1.018817px;}
._14_c00222{width:1.237995px;}
._d_c00222{width:2.265088px;}
._c_c00222{width:4.244566px;}
._f_c00222{width:6.071982px;}
._18_c00222{width:7.399320px;}
._e_c00222{width:9.322291px;}
._1d_c00222{width:10.355833px;}
._3_c00222{width:11.420295px;}
._5_c00222{width:13.211843px;}
._2_c00222{width:14.674691px;}
._0_c00222{width:15.925434px;}
._1_c00222{width:18.109053px;}
._11_c00222{width:19.308400px;}
._4_c00222{width:20.823892px;}
._7_c00222{width:22.838704px;}
._a_c00222{width:24.288476px;}
._b_c00222{width:26.420358px;}
._9_c00222{width:27.889758px;}
._6_c00222{width:29.676611px;}
._12_c00222{width:31.395233px;}
._10_c00222{width:33.525821px;}
._1e_c00222{width:35.671610px;}
._8_c00222{width:40.623336px;}
._1a_c00222{width:94.333097px;}
.fc0_c00222{color:transparent;}
.fsf_c00222{font-size:28.500000px;}
.fse_c00222{font-size:34.500000px;}
.fsb_c00222{font-size:36.000000px;}
.fsa_c00222{font-size:36.750000px;}
.fs7_c00222{font-size:37.500000px;}
.fs6_c00222{font-size:38.250000px;}
.fs4_c00222{font-size:39.000000px;}
.fs8_c00222{font-size:40.500000px;}
.fs9_c00222{font-size:46.500000px;}
.fs11_c00222{font-size:49.500000px;}
.fs10_c00222{font-size:50.250000px;}
.fsc_c00222{font-size:51.000000px;}
.fsd_c00222{font-size:51.750000px;}
.fs17_c00222{font-size:75.750000px;}
.fs18_c00222{font-size:76.500000px;}
.fs12_c00222{font-size:78.000000px;}
.fs0_c00222{font-size:78.750000px;}
.fs2_c00222{font-size:80.250000px;}
.fs14_c00222{font-size:81.000000px;}
.fs3_c00222{font-size:81.750000px;}
.fs1_c00222{font-size:82.500000px;}
.fs15_c00222{font-size:83.250000px;}
.fs16_c00222{font-size:84.750000px;}
.fs5_c00222{font-size:101.250000px;}
.fs13_c00222{font-size:103.500000px;}
.y0_c00222{bottom:0.000000px;}
.y30_c00222{bottom:180.358995px;}
.y31_c00222{bottom:180.359850px;}
.y2f_c00222{bottom:210.238725px;}
.y2e_c00222{bottom:240.478635px;}
.y2d_c00222{bottom:240.478665px;}
.y2b_c00222{bottom:269.999220px;}
.y2c_c00222{bottom:270.000000px;}
.y2a_c00222{bottom:299.878950px;}
.y29_c00222{bottom:299.879100px;}
.y28_c00222{bottom:329.398635px;}
.y27_c00222{bottom:329.398845px;}
.y26_c00222{bottom:359.278560px;}
.y25_c00222{bottom:388.439715px;}
.y23_c00222{bottom:418.317645px;}
.y24_c00222{bottom:418.318770px;}
.y22_c00222{bottom:447.478800px;}
.y21_c00222{bottom:507.958920px;}
.y20_c00222{bottom:507.959820px;}
.y1f_c00222{bottom:537.839535px;}
.y1e_c00222{bottom:537.839715px;}
.y1d_c00222{bottom:567.359250px;}
.y1c_c00222{bottom:567.360105px;}
.y1a_c00222{bottom:597.239595px;}
.y1b_c00222{bottom:597.239820px;}
.y19_c00222{bottom:626.398635px;}
.y18_c00222{bottom:626.398665px;}
.y17_c00222{bottom:655.920000px;}
.y16_c00222{bottom:655.920135px;}
.y15_c00222{bottom:685.439670px;}
.y14_c00222{bottom:685.439760px;}
.y13_c00222{bottom:715.679670px;}
.y11_c00222{bottom:745.560285px;}
.y12_c00222{bottom:746.099070px;}
.y10_c00222{bottom:752.039985px;}
.yf_c00222{bottom:775.800105px;}
.yd_c00222{bottom:805.679025px;}
.ye_c00222{bottom:805.679070px;}
.yb_c00222{bottom:835.918305px;}
.yc_c00222{bottom:835.918950px;}
.ya_c00222{bottom:894.959175px;}
.y9_c00222{bottom:924.838905px;}
.y8_c00222{bottom:924.841935px;}
.y7_c00222{bottom:954.721665px;}
.y6_c00222{bottom:984.961575px;}
.y5_c00222{bottom:1014.841305px;}
.y4_c00222{bottom:1044.360825px;}
.y3_c00222{bottom:1074.959130px;}
.y2_c00222{bottom:1103.939145px;}
.y1_c00222{bottom:1134.000000px;}
.h15_c00222{height:29.724609px;}
.h13_c00222{height:34.095703px;}
.h12_c00222{height:34.769531px;}
.he_c00222{height:36.281250px;}
.h11_c00222{height:36.319336px;}
.hc_c00222{height:37.037109px;}
.h14_c00222{height:37.060547px;}
.hd_c00222{height:38.548828px;}
.h8_c00222{height:39.111328px;}
.hb_c00222{height:39.728760px;}
.h7_c00222{height:39.893555px;}
.h5_c00222{height:40.675781px;}
.h9_c00222{height:42.240234px;}
.ha_c00222{height:45.955078px;}
.hf_c00222{height:51.398438px;}
.h17_c00222{height:51.626953px;}
.h10_c00222{height:52.154297px;}
.h16_c00222{height:52.409180px;}
.h21_c00222{height:74.344482px;}
.h22_c00222{height:75.080566px;}
.h1a_c00222{height:76.552734px;}
.h1_c00222{height:77.288818px;}
.h3_c00222{height:78.760986px;}
.h4_c00222{height:80.233154px;}
.h1d_c00222{height:80.876953px;}
.h2_c00222{height:80.969238px;}
.h18_c00222{height:81.533203px;}
.h1c_c00222{height:81.632812px;}
.h19_c00222{height:82.133789px;}
.h1e_c00222{height:82.274414px;}
.h1f_c00222{height:82.388672px;}
.h20_c00222{height:83.756836px;}
.h6_c00222{height:105.600586px;}
.h1b_c00222{height:107.947266px;}
.h0_c00222{height:1263.000000px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x3_c00222{left:137.880840px;}
.x1_c00222{left:138.958350px;}
.x2_c00222{left:140.039490px;}
.xb_c00222{left:214.559685px;}
.xc_c00222{left:244.799535px;}
.x2d_c00222{left:246.599100px;}
.x2b_c00222{left:248.398635px;}
.x35_c00222{left:256.679700px;}
.x2c_c00222{left:269.279850px;}
.x3c_c00222{left:277.559100px;}
.x2e_c00222{left:292.319850px;}
.x36_c00222{left:310.679700px;}
.xd_c00222{left:331.199850px;}
.x4_c00222{left:355.678530px;}
.x37_c00222{left:369.359850px;}
.x5_c00222{left:371.159385px;}
.xe_c00222{left:372.238785px;}
.x27_c00222{left:373.679100px;}
.x2f_c00222{left:378.359235px;}
.x38_c00222{left:385.199850px;}
.xf_c00222{left:389.878320px;}
.x29_c00222{left:396.359850px;}
.x3f_c00222{left:397.439250px;}
.x28_c00222{left:407.878920px;}
.x2a_c00222{left:411.118785px;}
.x40_c00222{left:413.279250px;}
.x15_c00222{left:434.878920px;}
.x6_c00222{left:437.398635px;}
.x7_c00222{left:452.159415px;}
.x8_c00222{left:460.799565px;}
.x23_c00222{left:465.479685px;}
.x30_c00222{left:479.159415px;}
.x24_c00222{left:481.319820px;}
.x3d_c00222{left:488.519670px;}
.x10_c00222{left:499.679670px;}
.x9_c00222{left:501.838530px;}
.x31_c00222{left:509.039985px;}
.x3e_c00222{left:525.239220px;}
.x11_c00222{left:545.398635px;}
.x32_c00222{left:554.759085px;}
.x25_c00222{left:568.799520px;}
.x1e_c00222{left:572.398635px;}
.x1f_c00222{left:595.079400px;}
.x3a_c00222{left:606.598530px;}
.x26_c00222{left:609.838530px;}
.x12_c00222{left:625.678530px;}
.x3b_c00222{left:627.838950px;}
.x39_c00222{left:637.558635px;}
.x33_c00222{left:638.639700px;}
.x16_c00222{left:646.559685px;}
.x13_c00222{left:649.438620px;}
.x34_c00222{left:658.078770px;}
.x1d_c00222{left:662.759085px;}
.x14_c00222{left:677.519670px;}
.x20_c00222{left:716.399820px;}
.x17_c00222{left:718.199385px;}
.x21_c00222{left:725.039985px;}
.x1b_c00222{left:727.198785px;}
.x18_c00222{left:730.079355px;}
.x19_c00222{left:735.838950px;}
.x22_c00222{left:736.918350px;}
.x1c_c00222{left:746.998950px;}
.x1a_c00222{left:752.039985px;}
.xa_c00222{left:763.918350px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.lse_c00222{letter-spacing:-18.701100pt;}
.ls25_c00222{letter-spacing:-12.518000pt;}
.lsd_c00222{letter-spacing:-10.465867pt;}
.ls35_c00222{letter-spacing:-9.247000pt;}
.ls37_c00222{letter-spacing:-7.924000pt;}
.ls26_c00222{letter-spacing:-7.266700pt;}
.ls2f_c00222{letter-spacing:-7.000400pt;}
.ls31_c00222{letter-spacing:-6.601000pt;}
.lsa_c00222{letter-spacing:-5.943000pt;}
.lsc_c00222{letter-spacing:-5.842400pt;}
.ls6_c00222{letter-spacing:-5.285000pt;}
.ls8_c00222{letter-spacing:-4.619300pt;}
.ls34_c00222{letter-spacing:-4.606273pt;}
.ls36_c00222{letter-spacing:-4.493300pt;}
.ls29_c00222{letter-spacing:-4.458333pt;}
.ls5_c00222{letter-spacing:-3.961300pt;}
.ls30_c00222{letter-spacing:-3.633333pt;}
.ls23_c00222{letter-spacing:-3.498000pt;}
.lsb_c00222{letter-spacing:-3.396180pt;}
.ls4_c00222{letter-spacing:-3.304000pt;}
.ls11_c00222{letter-spacing:-3.269067pt;}
.ls13_c00222{letter-spacing:-3.186000pt;}
.ls33_c00222{letter-spacing:-3.150000pt;}
.ls21_c00222{letter-spacing:-3.066973pt;}
.ls1_c00222{letter-spacing:-2.639000pt;}
.ls3_c00222{letter-spacing:-1.981700pt;}
.ls24_c00222{letter-spacing:-1.925000pt;}
.ls1a_c00222{letter-spacing:-1.777067pt;}
.ls2_c00222{letter-spacing:-1.323700pt;}
.lsf_c00222{letter-spacing:-1.258000pt;}
.ls28_c00222{letter-spacing:-1.241100pt;}
.ls7_c00222{letter-spacing:-0.658000pt;}
.ls27_c00222{letter-spacing:-0.598000pt;}
.ls1c_c00222{letter-spacing:-0.487600pt;}
.ls10_c00222{letter-spacing:-0.268600pt;}
.ls9_c00222{letter-spacing:0.000000pt;}
.ls20_c00222{letter-spacing:0.259200pt;}
.ls1e_c00222{letter-spacing:0.637867pt;}
.ls2d_c00222{letter-spacing:0.670533pt;}
.ls2a_c00222{letter-spacing:0.684720pt;}
.ls2c_c00222{letter-spacing:0.770400pt;}
.ls18_c00222{letter-spacing:1.152940pt;}
.ls12_c00222{letter-spacing:1.306933pt;}
.ls22_c00222{letter-spacing:3.622467pt;}
.ls1f_c00222{letter-spacing:3.961300pt;}
.ls16_c00222{letter-spacing:4.665240pt;}
.ls1b_c00222{letter-spacing:5.142720pt;}
.ls15_c00222{letter-spacing:5.839200pt;}
.ls2e_c00222{letter-spacing:7.266700pt;}
.ls0_c00222{letter-spacing:8.000000pt;}
.ls14_c00222{letter-spacing:8.266667pt;}
.ls19_c00222{letter-spacing:8.572800pt;}
.ls17_c00222{letter-spacing:14.327600pt;}
.ls32_c00222{letter-spacing:19.744867pt;}
.ls1d_c00222{letter-spacing:25.666527pt;}
.ls2b_c00222{letter-spacing:38.116800pt;}
.ws0_c00222{word-spacing:0.000000pt;}
._1c_c00222{margin-left:-28.260000pt;}
._16_c00222{margin-left:-24.569194pt;}
._1b_c00222{margin-left:-8.051291pt;}
._17_c00222{margin-left:-5.293532pt;}
._15_c00222{margin-left:-4.276657pt;}
._13_c00222{margin-left:-2.097477pt;}
._19_c00222{margin-left:-0.905615pt;}
._14_c00222{width:1.100440pt;}
._d_c00222{width:2.013411pt;}
._c_c00222{width:3.772947pt;}
._f_c00222{width:5.397317pt;}
._18_c00222{width:6.577174pt;}
._e_c00222{width:8.286481pt;}
._1d_c00222{width:9.205185pt;}
._3_c00222{width:10.151374pt;}
._5_c00222{width:11.743860pt;}
._2_c00222{width:13.044170pt;}
._0_c00222{width:14.155942pt;}
._1_c00222{width:16.096936pt;}
._11_c00222{width:17.163023pt;}
._4_c00222{width:18.510126pt;}
._7_c00222{width:20.301070pt;}
._a_c00222{width:21.589757pt;}
._b_c00222{width:23.484762pt;}
._9_c00222{width:24.790896pt;}
._6_c00222{width:26.379209pt;}
._12_c00222{width:27.906874pt;}
._10_c00222{width:29.800730pt;}
._1e_c00222{width:31.708098pt;}
._8_c00222{width:36.109632pt;}
._1a_c00222{width:83.851642pt;}
.fsf_c00222{font-size:25.333333pt;}
.fse_c00222{font-size:30.666667pt;}
.fsb_c00222{font-size:32.000000pt;}
.fsa_c00222{font-size:32.666667pt;}
.fs7_c00222{font-size:33.333333pt;}
.fs6_c00222{font-size:34.000000pt;}
.fs4_c00222{font-size:34.666667pt;}
.fs8_c00222{font-size:36.000000pt;}
.fs9_c00222{font-size:41.333333pt;}
.fs11_c00222{font-size:44.000000pt;}
.fs10_c00222{font-size:44.666667pt;}
.fsc_c00222{font-size:45.333333pt;}
.fsd_c00222{font-size:46.000000pt;}
.fs17_c00222{font-size:67.333333pt;}
.fs18_c00222{font-size:68.000000pt;}
.fs12_c00222{font-size:69.333333pt;}
.fs0_c00222{font-size:70.000000pt;}
.fs2_c00222{font-size:71.333333pt;}
.fs14_c00222{font-size:72.000000pt;}
.fs3_c00222{font-size:72.666667pt;}
.fs1_c00222{font-size:73.333333pt;}
.fs15_c00222{font-size:74.000000pt;}
.fs16_c00222{font-size:75.333333pt;}
.fs5_c00222{font-size:90.000000pt;}
.fs13_c00222{font-size:92.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y30_c00222{bottom:160.319107pt;}
.y31_c00222{bottom:160.319867pt;}
.y2f_c00222{bottom:186.878867pt;}
.y2e_c00222{bottom:213.758787pt;}
.y2d_c00222{bottom:213.758813pt;}
.y2b_c00222{bottom:239.999307pt;}
.y2c_c00222{bottom:240.000000pt;}
.y2a_c00222{bottom:266.559067pt;}
.y29_c00222{bottom:266.559200pt;}
.y28_c00222{bottom:292.798787pt;}
.y27_c00222{bottom:292.798973pt;}
.y26_c00222{bottom:319.358720pt;}
.y25_c00222{bottom:345.279747pt;}
.y23_c00222{bottom:371.837907pt;}
.y24_c00222{bottom:371.838907pt;}
.y22_c00222{bottom:397.758933pt;}
.y21_c00222{bottom:451.519040pt;}
.y20_c00222{bottom:451.519840pt;}
.y1f_c00222{bottom:478.079587pt;}
.y1e_c00222{bottom:478.079747pt;}
.y1d_c00222{bottom:504.319333pt;}
.y1c_c00222{bottom:504.320093pt;}
.y1a_c00222{bottom:530.879640pt;}
.y1b_c00222{bottom:530.879840pt;}
.y19_c00222{bottom:556.798787pt;}
.y18_c00222{bottom:556.798813pt;}
.y17_c00222{bottom:583.040000pt;}
.y16_c00222{bottom:583.040120pt;}
.y15_c00222{bottom:609.279707pt;}
.y14_c00222{bottom:609.279787pt;}
.y13_c00222{bottom:636.159707pt;}
.y11_c00222{bottom:662.720253pt;}
.y12_c00222{bottom:663.199173pt;}
.y10_c00222{bottom:668.479987pt;}
.yf_c00222{bottom:689.600093pt;}
.yd_c00222{bottom:716.159133pt;}
.ye_c00222{bottom:716.159173pt;}
.yb_c00222{bottom:743.038493pt;}
.yc_c00222{bottom:743.039067pt;}
.ya_c00222{bottom:795.519267pt;}
.y9_c00222{bottom:822.079027pt;}
.y8_c00222{bottom:822.081720pt;}
.y7_c00222{bottom:848.641480pt;}
.y6_c00222{bottom:875.521400pt;}
.y5_c00222{bottom:902.081160pt;}
.y4_c00222{bottom:928.320733pt;}
.y3_c00222{bottom:955.519227pt;}
.y2_c00222{bottom:981.279240pt;}
.y1_c00222{bottom:1008.000000pt;}
.h15_c00222{height:26.421875pt;}
.h13_c00222{height:30.307292pt;}
.h12_c00222{height:30.906250pt;}
.he_c00222{height:32.250000pt;}
.h11_c00222{height:32.283854pt;}
.hc_c00222{height:32.921875pt;}
.h14_c00222{height:32.942708pt;}
.hd_c00222{height:34.265625pt;}
.h8_c00222{height:34.765625pt;}
.hb_c00222{height:35.314453pt;}
.h7_c00222{height:35.460938pt;}
.h5_c00222{height:36.156250pt;}
.h9_c00222{height:37.546875pt;}
.ha_c00222{height:40.848958pt;}
.hf_c00222{height:45.687500pt;}
.h17_c00222{height:45.890625pt;}
.h10_c00222{height:46.359375pt;}
.h16_c00222{height:46.585938pt;}
.h21_c00222{height:66.083984pt;}
.h22_c00222{height:66.738281pt;}
.h1a_c00222{height:68.046875pt;}
.h1_c00222{height:68.701172pt;}
.h3_c00222{height:70.009766pt;}
.h4_c00222{height:71.318359pt;}
.h1d_c00222{height:71.890625pt;}
.h2_c00222{height:71.972656pt;}
.h18_c00222{height:72.473958pt;}
.h1c_c00222{height:72.562500pt;}
.h19_c00222{height:73.007812pt;}
.h1e_c00222{height:73.132813pt;}
.h1f_c00222{height:73.234375pt;}
.h20_c00222{height:74.450521pt;}
.h6_c00222{height:93.867188pt;}
.h1b_c00222{height:95.953125pt;}
.h0_c00222{height:1122.666667pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x3_c00222{left:122.560747pt;}
.x1_c00222{left:123.518533pt;}
.x2_c00222{left:124.479547pt;}
.xb_c00222{left:190.719720pt;}
.xc_c00222{left:217.599587pt;}
.x2d_c00222{left:219.199200pt;}
.x2b_c00222{left:220.798787pt;}
.x35_c00222{left:228.159733pt;}
.x2c_c00222{left:239.359867pt;}
.x3c_c00222{left:246.719200pt;}
.x2e_c00222{left:259.839867pt;}
.x36_c00222{left:276.159733pt;}
.xd_c00222{left:294.399867pt;}
.x4_c00222{left:316.158693pt;}
.x37_c00222{left:328.319867pt;}
.x5_c00222{left:329.919453pt;}
.xe_c00222{left:330.878920pt;}
.x27_c00222{left:332.159200pt;}
.x2f_c00222{left:336.319320pt;}
.x38_c00222{left:342.399867pt;}
.xf_c00222{left:346.558507pt;}
.x29_c00222{left:352.319867pt;}
.x3f_c00222{left:353.279333pt;}
.x28_c00222{left:362.559040pt;}
.x2a_c00222{left:365.438920pt;}
.x40_c00222{left:367.359333pt;}
.x15_c00222{left:386.559040pt;}
.x6_c00222{left:388.798787pt;}
.x7_c00222{left:401.919480pt;}
.x8_c00222{left:409.599613pt;}
.x23_c00222{left:413.759720pt;}
.x30_c00222{left:425.919480pt;}
.x24_c00222{left:427.839840pt;}
.x3d_c00222{left:434.239707pt;}
.x10_c00222{left:444.159707pt;}
.x9_c00222{left:446.078693pt;}
.x31_c00222{left:452.479987pt;}
.x3e_c00222{left:466.879307pt;}
.x11_c00222{left:484.798787pt;}
.x32_c00222{left:493.119187pt;}
.x25_c00222{left:505.599573pt;}
.x1e_c00222{left:508.798787pt;}
.x1f_c00222{left:528.959467pt;}
.x3a_c00222{left:539.198693pt;}
.x26_c00222{left:542.078693pt;}
.x12_c00222{left:556.158693pt;}
.x3b_c00222{left:558.079067pt;}
.x39_c00222{left:566.718787pt;}
.x33_c00222{left:567.679733pt;}
.x16_c00222{left:574.719720pt;}
.x13_c00222{left:577.278773pt;}
.x34_c00222{left:584.958907pt;}
.x1d_c00222{left:589.119187pt;}
.x14_c00222{left:602.239707pt;}
.x20_c00222{left:636.799840pt;}
.x17_c00222{left:638.399453pt;}
.x21_c00222{left:644.479987pt;}
.x1b_c00222{left:646.398920pt;}
.x18_c00222{left:648.959427pt;}
.x19_c00222{left:654.079067pt;}
.x22_c00222{left:655.038533pt;}
.x1c_c00222{left:663.999067pt;}
.x1a_c00222{left:668.479987pt;}
.xa_c00222{left:679.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ea5264a4a9e8619be994c38.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_bda92a1bf2ac877559c116e4.woff2')format("woff");}.ff2_c00223{font-family:ff2_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;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_3f6125438150651d2a6334c0.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.311035;font-style:normal;font-weight:normal;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_a5e5d854067982a98fa1340f.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_c683d2269c6c1b1f1f09d199.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00223;src:url('chunks/assets/font_c4a13d2d2236d5ad7a83ce1d.woff2')format("woff");}.ff6_c00223{font-family:ff6_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;}
@font-face{font-family:ff7_c00223;src:url('chunks/assets/font_53ff6149c3bea6a1e64cbe99.woff2')format("woff");}.ff7_c00223{font-family:ff7_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;}
.m14_c00223{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);}
.m17_c00223{transform:matrix(0.172018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172018,0.000000,0.000000,0.250000,0,0);}
.m6_c00223{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.mf_c00223{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.me_c00223{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00223{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{transform:matrix(0.218447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218447,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m8_c00223{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.md_c00223{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_c00223{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m3_c00223{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m22_c00223{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m15_c00223{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m21_c00223{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1c_c00223{transform:matrix(0.281863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281863,0.000000,0.000000,0.250000,0,0);}
.m27_c00223{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_c00223{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{transform:matrix(0.528037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528037,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls16_c00223{letter-spacing:-26.364915px;}
.ls27_c00223{letter-spacing:-8.914500px;}
.ls22_c00223{letter-spacing:-8.175038px;}
.ls1a_c00223{letter-spacing:-7.628093px;}
.ls13_c00223{letter-spacing:-7.426125px;}
.ls7_c00223{letter-spacing:-6.949800px;}
.ls15_c00223{letter-spacing:-6.685875px;}
.ls14_c00223{letter-spacing:-6.515475px;}
.ls1d_c00223{letter-spacing:-6.185025px;}
.lsf_c00223{letter-spacing:-5.945625px;}
.ls1f_c00223{letter-spacing:-5.324400px;}
.ls28_c00223{letter-spacing:-5.310000px;}
.ls2b_c00223{letter-spacing:-5.296875px;}
.ls10_c00223{letter-spacing:-5.196713px;}
.ls23_c00223{letter-spacing:-5.151248px;}
.ls17_c00223{letter-spacing:-5.140800px;}
.ls11_c00223{letter-spacing:-4.921875px;}
.ls8_c00223{letter-spacing:-4.633200px;}
.ls9_c00223{letter-spacing:-4.587000px;}
.ls12_c00223{letter-spacing:-4.456463px;}
.ls29_c00223{letter-spacing:-4.286693px;}
.lsb_c00223{letter-spacing:-4.241025px;}
.ls4_c00223{letter-spacing:-3.717000px;}
.ls19_c00223{letter-spacing:-3.335400px;}
.ls1b_c00223{letter-spacing:-3.197250px;}
.ls20_c00223{letter-spacing:-3.158775px;}
.ls1_c00223{letter-spacing:-2.968875px;}
.ls3_c00223{letter-spacing:-2.229413px;}
.ls18_c00223{letter-spacing:-2.227050px;}
.ls1e_c00223{letter-spacing:-1.669185px;}
.ls24_c00223{letter-spacing:-1.526348px;}
.ls5_c00223{letter-spacing:-1.489163px;}
.lsc_c00223{letter-spacing:-0.984375px;}
.ls1c_c00223{letter-spacing:-0.849420px;}
.ls6_c00223{letter-spacing:-0.803700px;}
.ls2_c00223{letter-spacing:-0.740250px;}
.lse_c00223{letter-spacing:0.000000px;}
.ls25_c00223{letter-spacing:1.314225px;}
.ls26_c00223{letter-spacing:2.247000px;}
.lsa_c00223{letter-spacing:3.826133px;}
.ls2a_c00223{letter-spacing:4.685175px;}
.ls21_c00223{letter-spacing:6.856980px;}
.ls0_c00223{letter-spacing:8.385000px;}
.lsd_c00223{letter-spacing:15.919800px;}
.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;}
._1a_c00223{margin-left:-22.393885px;}
._23_c00223{margin-left:-14.222057px;}
._22_c00223{margin-left:-6.130896px;}
._1c_c00223{margin-left:-3.960085px;}
._c_c00223{margin-left:-2.256500px;}
._21_c00223{width:1.008000px;}
._e_c00223{width:2.059966px;}
._1_c00223{width:4.013353px;}
._f_c00223{width:5.225196px;}
._d_c00223{width:7.007264px;}
._0_c00223{width:8.772750px;}
._10_c00223{width:9.778729px;}
._2_c00223{width:10.874810px;}
._3_c00223{width:11.899571px;}
._19_c00223{width:12.984835px;}
._18_c00223{width:14.581796px;}
._5_c00223{width:16.032949px;}
._b_c00223{width:17.800591px;}
._9_c00223{width:19.103324px;}
._6_c00223{width:20.639736px;}
._8_c00223{width:21.974742px;}
._12_c00223{width:23.283374px;}
._17_c00223{width:24.346886px;}
._7_c00223{width:25.412358px;}
._16_c00223{width:28.091893px;}
._a_c00223{width:29.365340px;}
._1b_c00223{width:30.436689px;}
._4_c00223{width:31.847632px;}
._1d_c00223{width:33.623783px;}
._13_c00223{width:34.775688px;}
._1e_c00223{width:36.800281px;}
._11_c00223{width:37.808113px;}
._14_c00223{width:39.772836px;}
._15_c00223{width:42.066759px;}
._20_c00223{width:43.312124px;}
._1f_c00223{width:52.619767px;}
.fc0_c00223{color:transparent;}
.fs9_c00223{font-size:43.500000px;}
.fs1_c00223{font-size:70.500000px;}
.fsa_c00223{font-size:72.750000px;}
.fsc_c00223{font-size:73.500000px;}
.fsd_c00223{font-size:74.250000px;}
.fs7_c00223{font-size:75.000000px;}
.fs4_c00223{font-size:75.750000px;}
.fse_c00223{font-size:76.500000px;}
.fs5_c00223{font-size:77.250000px;}
.fs2_c00223{font-size:78.000000px;}
.fs0_c00223{font-size:78.750000px;}
.fs10_c00223{font-size:79.500000px;}
.fs8_c00223{font-size:80.250000px;}
.fs6_c00223{font-size:81.750000px;}
.fs3_c00223{font-size:82.500000px;}
.fsb_c00223{font-size:84.000000px;}
.fsf_c00223{font-size:84.750000px;}
.y0_c00223{bottom:0.000000px;}
.y29_c00223{bottom:239.040000px;}
.y27_c00223{bottom:268.558935px;}
.y28_c00223{bottom:268.559685px;}
.y26_c00223{bottom:298.798845px;}
.y24_c00223{bottom:327.959385px;}
.y25_c00223{bottom:327.960000px;}
.y23_c00223{bottom:357.478905px;}
.y22_c00223{bottom:416.879970px;}
.y21_c00223{bottom:416.881830px;}
.y20_c00223{bottom:446.761545px;}
.y1f_c00223{bottom:477.359850px;}
.y1e_c00223{bottom:477.360015px;}
.y1d_c00223{bottom:507.239730px;}
.y1b_c00223{bottom:536.400285px;}
.y1c_c00223{bottom:536.400885px;}
.y1a_c00223{bottom:565.919820px;}
.y19_c00223{bottom:595.799535px;}
.y17_c00223{bottom:625.320120px;}
.y18_c00223{bottom:625.320870px;}
.y15_c00223{bottom:655.199475px;}
.y16_c00223{bottom:655.199850px;}
.y14_c00223{bottom:714.961035px;}
.y12_c00223{bottom:744.480885px;}
.y13_c00223{bottom:744.840135px;}
.y11_c00223{bottom:774.359805px;}
.y10_c00223{bottom:774.360825px;}
.yf_c00223{bottom:804.240555px;}
.ye_c00223{bottom:834.480465px;}
.yd_c00223{bottom:864.000000px;}
.yc_c00223{bottom:864.000990px;}
.yb_c00223{bottom:893.880705px;}
.y9_c00223{bottom:923.400195px;}
.ya_c00223{bottom:923.400240px;}
.y8_c00223{bottom:953.640105px;}
.y7_c00223{bottom:953.640285px;}
.y6_c00223{bottom:983.159820px;}
.y4_c00223{bottom:1013.039835px;}
.y5_c00223{bottom:1013.040615px;}
.y3_c00223{bottom:1042.200990px;}
.y2_c00223{bottom:1072.440855px;}
.y1_c00223{bottom:1131.839535px;}
.hd_c00223{height:45.369141px;}
.h19_c00223{height:72.872314px;}
.h2_c00223{height:73.529297px;}
.ha_c00223{height:73.608398px;}
.h15_c00223{height:74.307495px;}
.h5_c00223{height:74.344482px;}
.h13_c00223{height:74.830078px;}
.he_c00223{height:75.875977px;}
.h10_c00223{height:76.341797px;}
.h17_c00223{height:76.552734px;}
.h12_c00223{height:76.658203px;}
.h14_c00223{height:77.097656px;}
.h1_c00223{height:77.288818px;}
.h7_c00223{height:77.827148px;}
.h6_c00223{height:77.853516px;}
.h1a_c00223{height:78.024902px;}
.h3_c00223{height:78.609375px;}
.hb_c00223{height:78.760986px;}
.hc_c00223{height:79.309570px;}
.h9_c00223{height:80.233154px;}
.h11_c00223{height:80.791992px;}
.h8_c00223{height:80.969238px;}
.h4_c00223{height:81.533203px;}
.hf_c00223{height:83.015625px;}
.h16_c00223{height:83.177490px;}
.h18_c00223{height:83.756836px;}
.h0_c00223{height:1263.000000px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:135.359250px;}
.x24_c00223{left:136.799565px;}
.x3b_c00223{left:157.319850px;}
.x33_c00223{left:169.918350px;}
.x2a_c00223{left:199.439685px;}
.x34_c00223{left:201.239250px;}
.x2_c00223{left:210.958950px;}
.x15_c00223{left:219.958350px;}
.x16_c00223{left:251.999400px;}
.x2f_c00223{left:253.078785px;}
.x17_c00223{left:271.799535px;}
.x30_c00223{left:283.679700px;}
.x18_c00223{left:302.759535px;}
.x19_c00223{left:317.879535px;}
.x3_c00223{left:323.279850px;}
.xe_c00223{left:330.118785px;}
.x11_c00223{left:331.918350px;}
.x1a_c00223{left:336.959385px;}
.x12_c00223{left:346.679100px;}
.xa_c00223{left:356.759535px;}
.x4_c00223{left:359.638530px;}
.x25_c00223{left:362.878350px;}
.xf_c00223{left:367.199385px;}
.xb_c00223{left:371.879535px;}
.x26_c00223{left:377.639100px;}
.x1b_c00223{left:380.878950px;}
.x1c_c00223{left:407.878920px;}
.x37_c00223{left:422.278800px;}
.x5_c00223{left:425.159415px;}
.x2b_c00223{left:435.599070px;}
.x38_c00223{left:437.398635px;}
.x1d_c00223{left:462.958335px;}
.x2c_c00223{left:466.199850px;}
.x35_c00223{left:480.599670px;}
.x1e_c00223{left:486.359250px;}
.x36_c00223{left:500.038920px;}
.x1f_c00223{left:505.439250px;}
.x31_c00223{left:506.879520px;}
.x13_c00223{left:525.239220px;}
.x32_c00223{left:528.479235px;}
.x14_c00223{left:540.359250px;}
.x6_c00223{left:548.999400px;}
.x10_c00223{left:571.678530px;}
.x3c_c00223{left:573.118785px;}
.x20_c00223{left:576.358665px;}
.x7_c00223{left:583.558635px;}
.x3d_c00223{left:587.879520px;}
.x21_c00223{left:599.398635px;}
.x2d_c00223{left:606.239220px;}
.x2e_c00223{left:622.079400px;}
.x8_c00223{left:638.998950px;}
.x22_c00223{left:672.839535px;}
.x39_c00223{left:676.438620px;}
.x27_c00223{left:699.478635px;}
.x3a_c00223{left:700.918950px;}
.x23_c00223{left:708.838950px;}
.xc_c00223{left:712.078770px;}
.xd_c00223{left:726.478635px;}
.x28_c00223{left:745.919535px;}
.x9_c00223{left:760.319235px;}
.x29_c00223{left:762.118785px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls16_c00223{letter-spacing:-23.435480pt;}
.ls27_c00223{letter-spacing:-7.924000pt;}
.ls22_c00223{letter-spacing:-7.266700pt;}
.ls1a_c00223{letter-spacing:-6.780527pt;}
.ls13_c00223{letter-spacing:-6.601000pt;}
.ls7_c00223{letter-spacing:-6.177600pt;}
.ls15_c00223{letter-spacing:-5.943000pt;}
.ls14_c00223{letter-spacing:-5.791533pt;}
.ls1d_c00223{letter-spacing:-5.497800pt;}
.lsf_c00223{letter-spacing:-5.285000pt;}
.ls1f_c00223{letter-spacing:-4.732800pt;}
.ls28_c00223{letter-spacing:-4.720000pt;}
.ls2b_c00223{letter-spacing:-4.708333pt;}
.ls10_c00223{letter-spacing:-4.619300pt;}
.ls23_c00223{letter-spacing:-4.578887pt;}
.ls17_c00223{letter-spacing:-4.569600pt;}
.ls11_c00223{letter-spacing:-4.375000pt;}
.ls8_c00223{letter-spacing:-4.118400pt;}
.ls9_c00223{letter-spacing:-4.077333pt;}
.ls12_c00223{letter-spacing:-3.961300pt;}
.ls29_c00223{letter-spacing:-3.810393pt;}
.lsb_c00223{letter-spacing:-3.769800pt;}
.ls4_c00223{letter-spacing:-3.304000pt;}
.ls19_c00223{letter-spacing:-2.964800pt;}
.ls1b_c00223{letter-spacing:-2.842000pt;}
.ls20_c00223{letter-spacing:-2.807800pt;}
.ls1_c00223{letter-spacing:-2.639000pt;}
.ls3_c00223{letter-spacing:-1.981700pt;}
.ls18_c00223{letter-spacing:-1.979600pt;}
.ls1e_c00223{letter-spacing:-1.483720pt;}
.ls24_c00223{letter-spacing:-1.356753pt;}
.ls5_c00223{letter-spacing:-1.323700pt;}
.lsc_c00223{letter-spacing:-0.875000pt;}
.ls1c_c00223{letter-spacing:-0.755040pt;}
.ls6_c00223{letter-spacing:-0.714400pt;}
.ls2_c00223{letter-spacing:-0.658000pt;}
.lse_c00223{letter-spacing:0.000000pt;}
.ls25_c00223{letter-spacing:1.168200pt;}
.ls26_c00223{letter-spacing:1.997333pt;}
.lsa_c00223{letter-spacing:3.401007pt;}
.ls2a_c00223{letter-spacing:4.164600pt;}
.ls21_c00223{letter-spacing:6.095093pt;}
.ls0_c00223{letter-spacing:7.453333pt;}
.lsd_c00223{letter-spacing:14.150933pt;}
.ws0_c00223{word-spacing:0.000000pt;}
._1a_c00223{margin-left:-19.905675pt;}
._23_c00223{margin-left:-12.641828pt;}
._22_c00223{margin-left:-5.449685pt;}
._1c_c00223{margin-left:-3.520075pt;}
._c_c00223{margin-left:-2.005777pt;}
._21_c00223{width:0.896000pt;}
._e_c00223{width:1.831081pt;}
._1_c00223{width:3.567425pt;}
._f_c00223{width:4.644619pt;}
._d_c00223{width:6.228679pt;}
._0_c00223{width:7.798000pt;}
._10_c00223{width:8.692204pt;}
._2_c00223{width:9.666498pt;}
._3_c00223{width:10.577396pt;}
._19_c00223{width:11.542075pt;}
._18_c00223{width:12.961596pt;}
._5_c00223{width:14.251511pt;}
._b_c00223{width:15.822747pt;}
._9_c00223{width:16.980732pt;}
._6_c00223{width:18.346432pt;}
._8_c00223{width:19.533104pt;}
._12_c00223{width:20.696332pt;}
._17_c00223{width:21.641676pt;}
._7_c00223{width:22.588762pt;}
._16_c00223{width:24.970572pt;}
._a_c00223{width:26.102525pt;}
._1b_c00223{width:27.054835pt;}
._4_c00223{width:28.309006pt;}
._1d_c00223{width:29.887808pt;}
._13_c00223{width:30.911723pt;}
._1e_c00223{width:32.711361pt;}
._11_c00223{width:33.607211pt;}
._14_c00223{width:35.353632pt;}
._15_c00223{width:37.392675pt;}
._20_c00223{width:38.499665pt;}
._1f_c00223{width:46.773126pt;}
.fs9_c00223{font-size:38.666667pt;}
.fs1_c00223{font-size:62.666667pt;}
.fsa_c00223{font-size:64.666667pt;}
.fsc_c00223{font-size:65.333333pt;}
.fsd_c00223{font-size:66.000000pt;}
.fs7_c00223{font-size:66.666667pt;}
.fs4_c00223{font-size:67.333333pt;}
.fse_c00223{font-size:68.000000pt;}
.fs5_c00223{font-size:68.666667pt;}
.fs2_c00223{font-size:69.333333pt;}
.fs0_c00223{font-size:70.000000pt;}
.fs10_c00223{font-size:70.666667pt;}
.fs8_c00223{font-size:71.333333pt;}
.fs6_c00223{font-size:72.666667pt;}
.fs3_c00223{font-size:73.333333pt;}
.fsb_c00223{font-size:74.666667pt;}
.fsf_c00223{font-size:75.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y29_c00223{bottom:212.480000pt;}
.y27_c00223{bottom:238.719053pt;}
.y28_c00223{bottom:238.719720pt;}
.y26_c00223{bottom:265.598973pt;}
.y24_c00223{bottom:291.519453pt;}
.y25_c00223{bottom:291.520000pt;}
.y23_c00223{bottom:317.759027pt;}
.y22_c00223{bottom:370.559973pt;}
.y21_c00223{bottom:370.561627pt;}
.y20_c00223{bottom:397.121373pt;}
.y1f_c00223{bottom:424.319867pt;}
.y1e_c00223{bottom:424.320013pt;}
.y1d_c00223{bottom:450.879760pt;}
.y1b_c00223{bottom:476.800253pt;}
.y1c_c00223{bottom:476.800787pt;}
.y1a_c00223{bottom:503.039840pt;}
.y19_c00223{bottom:529.599587pt;}
.y17_c00223{bottom:555.840107pt;}
.y18_c00223{bottom:555.840773pt;}
.y15_c00223{bottom:582.399533pt;}
.y16_c00223{bottom:582.399867pt;}
.y14_c00223{bottom:635.520920pt;}
.y12_c00223{bottom:661.760787pt;}
.y13_c00223{bottom:662.080120pt;}
.y11_c00223{bottom:688.319827pt;}
.y10_c00223{bottom:688.320733pt;}
.yf_c00223{bottom:714.880493pt;}
.ye_c00223{bottom:741.760413pt;}
.yd_c00223{bottom:768.000000pt;}
.yc_c00223{bottom:768.000880pt;}
.yb_c00223{bottom:794.560627pt;}
.y9_c00223{bottom:820.800173pt;}
.ya_c00223{bottom:820.800213pt;}
.y8_c00223{bottom:847.680093pt;}
.y7_c00223{bottom:847.680253pt;}
.y6_c00223{bottom:873.919840pt;}
.y4_c00223{bottom:900.479853pt;}
.y5_c00223{bottom:900.480547pt;}
.y3_c00223{bottom:926.400880pt;}
.y2_c00223{bottom:953.280760pt;}
.y1_c00223{bottom:1006.079587pt;}
.hd_c00223{height:40.328125pt;}
.h19_c00223{height:64.775391pt;}
.h2_c00223{height:65.359375pt;}
.ha_c00223{height:65.429688pt;}
.h15_c00223{height:66.051107pt;}
.h5_c00223{height:66.083984pt;}
.h13_c00223{height:66.515625pt;}
.he_c00223{height:67.445312pt;}
.h10_c00223{height:67.859375pt;}
.h17_c00223{height:68.046875pt;}
.h12_c00223{height:68.140625pt;}
.h14_c00223{height:68.531250pt;}
.h1_c00223{height:68.701172pt;}
.h7_c00223{height:69.179688pt;}
.h6_c00223{height:69.203125pt;}
.h1a_c00223{height:69.355469pt;}
.h3_c00223{height:69.875000pt;}
.hb_c00223{height:70.009766pt;}
.hc_c00223{height:70.497396pt;}
.h9_c00223{height:71.318359pt;}
.h11_c00223{height:71.815104pt;}
.h8_c00223{height:71.972656pt;}
.h4_c00223{height:72.473958pt;}
.hf_c00223{height:73.791667pt;}
.h16_c00223{height:73.935547pt;}
.h18_c00223{height:74.450521pt;}
.h0_c00223{height:1122.666667pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:120.319333pt;}
.x24_c00223{left:121.599613pt;}
.x3b_c00223{left:139.839867pt;}
.x33_c00223{left:151.038533pt;}
.x2a_c00223{left:177.279720pt;}
.x34_c00223{left:178.879333pt;}
.x2_c00223{left:187.519067pt;}
.x15_c00223{left:195.518533pt;}
.x16_c00223{left:223.999467pt;}
.x2f_c00223{left:224.958920pt;}
.x17_c00223{left:241.599587pt;}
.x30_c00223{left:252.159733pt;}
.x18_c00223{left:269.119587pt;}
.x19_c00223{left:282.559587pt;}
.x3_c00223{left:287.359867pt;}
.xe_c00223{left:293.438920pt;}
.x11_c00223{left:295.038533pt;}
.x1a_c00223{left:299.519453pt;}
.x12_c00223{left:308.159200pt;}
.xa_c00223{left:317.119587pt;}
.x4_c00223{left:319.678693pt;}
.x25_c00223{left:322.558533pt;}
.xf_c00223{left:326.399453pt;}
.xb_c00223{left:330.559587pt;}
.x26_c00223{left:335.679200pt;}
.x1b_c00223{left:338.559067pt;}
.x1c_c00223{left:362.559040pt;}
.x37_c00223{left:375.358933pt;}
.x5_c00223{left:377.919480pt;}
.x2b_c00223{left:387.199173pt;}
.x38_c00223{left:388.798787pt;}
.x1d_c00223{left:411.518520pt;}
.x2c_c00223{left:414.399867pt;}
.x35_c00223{left:427.199707pt;}
.x1e_c00223{left:432.319333pt;}
.x36_c00223{left:444.479040pt;}
.x1f_c00223{left:449.279333pt;}
.x31_c00223{left:450.559573pt;}
.x13_c00223{left:466.879307pt;}
.x32_c00223{left:469.759320pt;}
.x14_c00223{left:480.319333pt;}
.x6_c00223{left:487.999467pt;}
.x10_c00223{left:508.158693pt;}
.x3c_c00223{left:509.438920pt;}
.x20_c00223{left:512.318813pt;}
.x7_c00223{left:518.718787pt;}
.x3d_c00223{left:522.559573pt;}
.x21_c00223{left:532.798787pt;}
.x2d_c00223{left:538.879307pt;}
.x2e_c00223{left:552.959467pt;}
.x8_c00223{left:567.999067pt;}
.x22_c00223{left:598.079587pt;}
.x39_c00223{left:601.278773pt;}
.x27_c00223{left:621.758787pt;}
.x3a_c00223{left:623.039067pt;}
.x23_c00223{left:630.079067pt;}
.xc_c00223{left:632.958907pt;}
.xd_c00223{left:645.758787pt;}
.x28_c00223{left:663.039587pt;}
.x9_c00223{left:675.839320pt;}
.x29_c00223{left:677.438920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dec50501180dd4ec0b77838b.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_a754eba6b4b3252c0384796a.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_e7e4c40800f8233fef5b2feb.woff2')format("woff");}.ff3_c00224{font-family:ff3_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:ff4_c00224;src:url('chunks/assets/font_9cfe331def12d9a61a32f63a.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00224{transform:matrix(0.132022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132022,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.me_c00224{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_c00224{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m15_c00224{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m11_c00224{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m3_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m14_c00224{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m8_c00224{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_c00224{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m13_c00224{transform:matrix(0.271845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271845,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls17_c00224{letter-spacing:-32.667450px;}
.ls1f_c00224{letter-spacing:-21.184800px;}
.ls18_c00224{letter-spacing:-12.390375px;}
.ls10_c00224{letter-spacing:-9.087750px;}
.ls1d_c00224{letter-spacing:-7.598250px;}
.lsf_c00224{letter-spacing:-7.576538px;}
.lsd_c00224{letter-spacing:-7.500375px;}
.lsc_c00224{letter-spacing:-6.811875px;}
.ls1e_c00224{letter-spacing:-6.509250px;}
.ls1a_c00224{letter-spacing:-6.057900px;}
.ls14_c00224{letter-spacing:-5.942408px;}
.ls7_c00224{letter-spacing:-5.300663px;}
.ls9_c00224{letter-spacing:-4.543088px;}
.lse_c00224{letter-spacing:-4.455000px;}
.ls13_c00224{letter-spacing:-4.410975px;}
.ls12_c00224{letter-spacing:-4.208250px;}
.lsa_c00224{letter-spacing:-3.787875px;}
.ls4_c00224{letter-spacing:-3.031875px;}
.ls3_c00224{letter-spacing:-2.267213px;}
.ls5_c00224{letter-spacing:-1.512000px;}
.ls8_c00224{letter-spacing:-0.756000px;}
.ls6_c00224{letter-spacing:0.000000px;}
.ls1c_c00224{letter-spacing:0.687525px;}
.ls0_c00224{letter-spacing:0.756000px;}
.ls11_c00224{letter-spacing:2.761200px;}
.ls20_c00224{letter-spacing:4.023900px;}
.ls15_c00224{letter-spacing:4.070565px;}
.lsb_c00224{letter-spacing:6.856980px;}
.ls2_c00224{letter-spacing:7.598250px;}
.ls16_c00224{letter-spacing:11.400000px;}
.ls19_c00224{letter-spacing:14.115750px;}
.ls1b_c00224{letter-spacing:14.702325px;}
.ls1_c00224{letter-spacing:27.134250px;}
.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;}
._22_c00224{margin-left:-74.711392px;}
._1b_c00224{margin-left:-36.267000px;}
._23_c00224{margin-left:-30.780489px;}
._11_c00224{margin-left:-17.190943px;}
._10_c00224{margin-left:-11.746047px;}
._d_c00224{margin-left:-9.898996px;}
._17_c00224{margin-left:-8.368278px;}
._16_c00224{margin-left:-7.103553px;}
._e_c00224{margin-left:-5.773223px;}
._5_c00224{margin-left:-4.494323px;}
._7_c00224{margin-left:-2.188281px;}
._24_c00224{margin-left:-1.152415px;}
._6_c00224{width:2.133943px;}
._4_c00224{width:3.873531px;}
._2_c00224{width:4.953920px;}
._1c_c00224{width:6.268924px;}
._0_c00224{width:7.290069px;}
._3_c00224{width:8.607860px;}
._1a_c00224{width:9.607924px;}
._12_c00224{width:11.103750px;}
._1_c00224{width:12.584856px;}
._15_c00224{width:14.013078px;}
._18_c00224{width:15.222133px;}
._f_c00224{width:17.151084px;}
._1d_c00224{width:18.618014px;}
._14_c00224{width:19.851300px;}
._8_c00224{width:20.939807px;}
._b_c00224{width:22.419822px;}
._a_c00224{width:23.821390px;}
._c_c00224{width:24.985012px;}
._9_c00224{width:26.147484px;}
._1e_c00224{width:27.463214px;}
._1f_c00224{width:30.177061px;}
._19_c00224{width:32.112251px;}
._13_c00224{width:34.242499px;}
._21_c00224{width:37.020678px;}
._20_c00224{width:42.070431px;}
.fc0_c00224{color:transparent;}
.fsa_c00224{font-size:57.000000px;}
.fsb_c00224{font-size:66.750000px;}
.fsc_c00224{font-size:71.250000px;}
.fs6_c00224{font-size:75.000000px;}
.fs9_c00224{font-size:76.500000px;}
.fs7_c00224{font-size:77.250000px;}
.fs1_c00224{font-size:78.000000px;}
.fs0_c00224{font-size:78.750000px;}
.fsd_c00224{font-size:79.500000px;}
.fs8_c00224{font-size:81.750000px;}
.fs4_c00224{font-size:82.500000px;}
.fse_c00224{font-size:84.000000px;}
.fs3_c00224{font-size:84.750000px;}
.fs5_c00224{font-size:101.250000px;}
.fs2_c00224{font-size:115.500000px;}
.y0_c00224{bottom:0.000000px;}
.y27_c00224{bottom:227.161035px;}
.y26_c00224{bottom:256.680570px;}
.y25_c00224{bottom:286.560285px;}
.y24_c00224{bottom:286.560465px;}
.y23_c00224{bottom:316.080000px;}
.y22_c00224{bottom:346.140150px;}
.y21_c00224{bottom:375.478635px;}
.y20_c00224{bottom:375.479160px;}
.y1f_c00224{bottom:405.358890px;}
.y1e_c00224{bottom:434.520030px;}
.y1d_c00224{bottom:494.639670px;}
.y1c_c00224{bottom:524.519400px;}
.y1b_c00224{bottom:554.038920px;}
.y1a_c00224{bottom:554.039820px;}
.y18_c00224{bottom:583.918755px;}
.y19_c00224{bottom:583.919535px;}
.y17_c00224{bottom:613.079910px;}
.y15_c00224{bottom:643.319235px;}
.y16_c00224{bottom:643.319820px;}
.y14_c00224{bottom:672.478275px;}
.y13_c00224{bottom:732.239820px;}
.y12_c00224{bottom:753.839535px;}
.y11_c00224{bottom:753.840915px;}
.y10_c00224{bottom:775.440195px;}
.ye_c00224{bottom:796.318380px;}
.yf_c00224{bottom:796.318815px;}
.yd_c00224{bottom:817.919490px;}
.yc_c00224{bottom:839.878965px;}
.yb_c00224{bottom:898.200915px;}
.ya_c00224{bottom:928.080645px;}
.y9_c00224{bottom:957.960360px;}
.y8_c00224{bottom:987.840090px;}
.y7_c00224{bottom:1018.079955px;}
.y5_c00224{bottom:1047.598920px;}
.y6_c00224{bottom:1047.599670px;}
.y3_c00224{bottom:1077.477810px;}
.y4_c00224{bottom:1077.478635px;}
.y2_c00224{bottom:1106.999160px;}
.y1_c00224{bottom:1136.878875px;}
.hb_c00224{height:57.445312px;}
.hc_c00224{height:65.967773px;}
.h7_c00224{height:73.608398px;}
.he_c00224{height:74.311523px;}
.h12_c00224{height:75.080566px;}
.h8_c00224{height:75.816650px;}
.h2_c00224{height:76.552734px;}
.ha_c00224{height:77.097656px;}
.h1_c00224{height:77.288818px;}
.hd_c00224{height:78.222656px;}
.h10_c00224{height:80.121094px;}
.h9_c00224{height:80.233154px;}
.h5_c00224{height:80.969238px;}
.hf_c00224{height:81.533203px;}
.h11_c00224{height:83.015625px;}
.h4_c00224{height:83.177490px;}
.h6_c00224{height:105.600586px;}
.h3_c00224{height:120.462891px;}
.h0_c00224{height:1263.000000px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x4_c00224{left:136.798215px;}
.x1_c00224{left:137.878950px;}
.x17_c00224{left:138.958350px;}
.x18_c00224{left:144.719565px;}
.xc_c00224{left:190.801710px;}
.x9_c00224{left:192.599100px;}
.xa_c00224{left:206.998950px;}
.x19_c00224{left:212.399250px;}
.xb_c00224{left:224.279250px;}
.x1a_c00224{left:227.519100px;}
.x1b_c00224{left:246.958350px;}
.x1c_c00224{left:294.478635px;}
.x1d_c00224{left:317.159385px;}
.x7_c00224{left:323.639100px;}
.xd_c00224{left:341.998950px;}
.x8_c00224{left:368.998950px;}
.x1e_c00224{left:379.799535px;}
.x2_c00224{left:461.519670px;}
.x3_c00224{left:491.039385px;}
.x13_c00224{left:549.719565px;}
.x15_c00224{left:552.598530px;}
.x1f_c00224{left:566.639100px;}
.x14_c00224{left:573.838950px;}
.x16_c00224{left:600.838950px;}
.x20_c00224{left:660.598530px;}
.xf_c00224{left:672.119385px;}
.x11_c00224{left:678.239820px;}
.x10_c00224{left:698.039985px;}
.x12_c00224{left:704.878920px;}
.x22_c00224{left:711.719520px;}
.x23_c00224{left:737.279250px;}
.xe_c00224{left:753.478635px;}
.x21_c00224{left:756.718545px;}
.x6_c00224{left:762.838950px;}
.x5_c00224{left:771.479190px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls17_c00224{letter-spacing:-29.037733pt;}
.ls1f_c00224{letter-spacing:-18.830933pt;}
.ls18_c00224{letter-spacing:-11.013667pt;}
.ls10_c00224{letter-spacing:-8.078000pt;}
.ls1d_c00224{letter-spacing:-6.754000pt;}
.lsf_c00224{letter-spacing:-6.734700pt;}
.lsd_c00224{letter-spacing:-6.667000pt;}
.lsc_c00224{letter-spacing:-6.055000pt;}
.ls1e_c00224{letter-spacing:-5.786000pt;}
.ls1a_c00224{letter-spacing:-5.384800pt;}
.ls14_c00224{letter-spacing:-5.282140pt;}
.ls7_c00224{letter-spacing:-4.711700pt;}
.ls9_c00224{letter-spacing:-4.038300pt;}
.lse_c00224{letter-spacing:-3.960000pt;}
.ls13_c00224{letter-spacing:-3.920867pt;}
.ls12_c00224{letter-spacing:-3.740667pt;}
.lsa_c00224{letter-spacing:-3.367000pt;}
.ls4_c00224{letter-spacing:-2.695000pt;}
.ls3_c00224{letter-spacing:-2.015300pt;}
.ls5_c00224{letter-spacing:-1.344000pt;}
.ls8_c00224{letter-spacing:-0.672000pt;}
.ls6_c00224{letter-spacing:0.000000pt;}
.ls1c_c00224{letter-spacing:0.611133pt;}
.ls0_c00224{letter-spacing:0.672000pt;}
.ls11_c00224{letter-spacing:2.454400pt;}
.ls20_c00224{letter-spacing:3.576800pt;}
.ls15_c00224{letter-spacing:3.618280pt;}
.lsb_c00224{letter-spacing:6.095093pt;}
.ls2_c00224{letter-spacing:6.754000pt;}
.ls16_c00224{letter-spacing:10.133333pt;}
.ls19_c00224{letter-spacing:12.547333pt;}
.ls1b_c00224{letter-spacing:13.068733pt;}
.ls1_c00224{letter-spacing:24.119333pt;}
.ws0_c00224{word-spacing:0.000000pt;}
._22_c00224{margin-left:-66.410126pt;}
._1b_c00224{margin-left:-32.237333pt;}
._23_c00224{margin-left:-27.360435pt;}
._11_c00224{margin-left:-15.280838pt;}
._10_c00224{margin-left:-10.440931pt;}
._d_c00224{margin-left:-8.799108pt;}
._17_c00224{margin-left:-7.438469pt;}
._16_c00224{margin-left:-6.314269pt;}
._e_c00224{margin-left:-5.131754pt;}
._5_c00224{margin-left:-3.994954pt;}
._7_c00224{margin-left:-1.945138pt;}
._24_c00224{margin-left:-1.024369pt;}
._6_c00224{width:1.896838pt;}
._4_c00224{width:3.443138pt;}
._2_c00224{width:4.403485pt;}
._1c_c00224{width:5.572377pt;}
._0_c00224{width:6.480062pt;}
._3_c00224{width:7.651431pt;}
._1a_c00224{width:8.540377pt;}
._12_c00224{width:9.870000pt;}
._1_c00224{width:11.186538pt;}
._15_c00224{width:12.456069pt;}
._18_c00224{width:13.530785pt;}
._f_c00224{width:15.245408pt;}
._1d_c00224{width:16.549346pt;}
._14_c00224{width:17.645600pt;}
._8_c00224{width:18.613162pt;}
._b_c00224{width:19.928731pt;}
._a_c00224{width:21.174569pt;}
._c_c00224{width:22.208900pt;}
._9_c00224{width:23.242208pt;}
._1e_c00224{width:24.411746pt;}
._1f_c00224{width:26.824054pt;}
._19_c00224{width:28.544223pt;}
._13_c00224{width:30.437777pt;}
._21_c00224{width:32.907269pt;}
._20_c00224{width:37.395938pt;}
.fsa_c00224{font-size:50.666667pt;}
.fsb_c00224{font-size:59.333333pt;}
.fsc_c00224{font-size:63.333333pt;}
.fs6_c00224{font-size:66.666667pt;}
.fs9_c00224{font-size:68.000000pt;}
.fs7_c00224{font-size:68.666667pt;}
.fs1_c00224{font-size:69.333333pt;}
.fs0_c00224{font-size:70.000000pt;}
.fsd_c00224{font-size:70.666667pt;}
.fs8_c00224{font-size:72.666667pt;}
.fs4_c00224{font-size:73.333333pt;}
.fse_c00224{font-size:74.666667pt;}
.fs3_c00224{font-size:75.333333pt;}
.fs5_c00224{font-size:90.000000pt;}
.fs2_c00224{font-size:102.666667pt;}
.y0_c00224{bottom:0.000000pt;}
.y27_c00224{bottom:201.920920pt;}
.y26_c00224{bottom:228.160507pt;}
.y25_c00224{bottom:254.720253pt;}
.y24_c00224{bottom:254.720413pt;}
.y23_c00224{bottom:280.960000pt;}
.y22_c00224{bottom:307.680133pt;}
.y21_c00224{bottom:333.758787pt;}
.y20_c00224{bottom:333.759253pt;}
.y1f_c00224{bottom:360.319013pt;}
.y1e_c00224{bottom:386.240027pt;}
.y1d_c00224{bottom:439.679707pt;}
.y1c_c00224{bottom:466.239467pt;}
.y1b_c00224{bottom:492.479040pt;}
.y1a_c00224{bottom:492.479840pt;}
.y18_c00224{bottom:519.038893pt;}
.y19_c00224{bottom:519.039587pt;}
.y17_c00224{bottom:544.959920pt;}
.y15_c00224{bottom:571.839320pt;}
.y16_c00224{bottom:571.839840pt;}
.y14_c00224{bottom:597.758467pt;}
.y13_c00224{bottom:650.879840pt;}
.y12_c00224{bottom:670.079587pt;}
.y11_c00224{bottom:670.080813pt;}
.y10_c00224{bottom:689.280173pt;}
.ye_c00224{bottom:707.838560pt;}
.yf_c00224{bottom:707.838947pt;}
.yd_c00224{bottom:727.039547pt;}
.yc_c00224{bottom:746.559080pt;}
.yb_c00224{bottom:798.400813pt;}
.ya_c00224{bottom:824.960573pt;}
.y9_c00224{bottom:851.520320pt;}
.y8_c00224{bottom:878.080080pt;}
.y7_c00224{bottom:904.959960pt;}
.y5_c00224{bottom:931.199040pt;}
.y6_c00224{bottom:931.199707pt;}
.y3_c00224{bottom:957.758053pt;}
.y4_c00224{bottom:957.758787pt;}
.y2_c00224{bottom:983.999253pt;}
.y1_c00224{bottom:1010.559000pt;}
.hb_c00224{height:51.062500pt;}
.hc_c00224{height:58.638021pt;}
.h7_c00224{height:65.429688pt;}
.he_c00224{height:66.054688pt;}
.h12_c00224{height:66.738281pt;}
.h8_c00224{height:67.392578pt;}
.h2_c00224{height:68.046875pt;}
.ha_c00224{height:68.531250pt;}
.h1_c00224{height:68.701172pt;}
.hd_c00224{height:69.531250pt;}
.h10_c00224{height:71.218750pt;}
.h9_c00224{height:71.318359pt;}
.h5_c00224{height:71.972656pt;}
.hf_c00224{height:72.473958pt;}
.h11_c00224{height:73.791667pt;}
.h4_c00224{height:73.935547pt;}
.h6_c00224{height:93.867188pt;}
.h3_c00224{height:107.078125pt;}
.h0_c00224{height:1122.666667pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x4_c00224{left:121.598413pt;}
.x1_c00224{left:122.559067pt;}
.x17_c00224{left:123.518533pt;}
.x18_c00224{left:128.639613pt;}
.xc_c00224{left:169.601520pt;}
.x9_c00224{left:171.199200pt;}
.xa_c00224{left:183.999067pt;}
.x19_c00224{left:188.799333pt;}
.xb_c00224{left:199.359333pt;}
.x1a_c00224{left:202.239200pt;}
.x1b_c00224{left:219.518533pt;}
.x1c_c00224{left:261.758787pt;}
.x1d_c00224{left:281.919453pt;}
.x7_c00224{left:287.679200pt;}
.xd_c00224{left:303.999067pt;}
.x8_c00224{left:327.999067pt;}
.x1e_c00224{left:337.599587pt;}
.x2_c00224{left:410.239707pt;}
.x3_c00224{left:436.479453pt;}
.x13_c00224{left:488.639613pt;}
.x15_c00224{left:491.198693pt;}
.x1f_c00224{left:503.679200pt;}
.x14_c00224{left:510.079067pt;}
.x16_c00224{left:534.079067pt;}
.x20_c00224{left:587.198693pt;}
.xf_c00224{left:597.439453pt;}
.x11_c00224{left:602.879840pt;}
.x10_c00224{left:620.479987pt;}
.x12_c00224{left:626.559040pt;}
.x22_c00224{left:632.639573pt;}
.x23_c00224{left:655.359333pt;}
.xe_c00224{left:669.758787pt;}
.x21_c00224{left:672.638707pt;}
.x6_c00224{left:678.079067pt;}
.x5_c00224{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_834cf0c5690c69d418127bd4.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_8ecdf425aafdcb8bc3385263.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_cbb13411d48dc4ed674bd9ea.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_a8247e34dcfdf64c786198a1.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_9e5d961956ce617bf0948bf2.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e_c00225{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m30_c00225{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00225{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m1c_c00225{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m25_c00225{transform:matrix(0.289633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289633,0.000000,0.000000,0.250000,0,0);}
.m2d_c00225{transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m2a_c00225{transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);}
.m27_c00225{transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);}
.m26_c00225{transform:matrix(0.320946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320946,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m24_c00225{transform:matrix(0.363971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363971,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379699,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{transform:matrix(0.387931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387931,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m23_c00225{transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);}
.m28_c00225{transform:matrix(0.424419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424419,0.000000,0.000000,0.250000,0,0);}
.m2b_c00225{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m29_c00225{transform:matrix(0.504717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504717,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls13_c00225{letter-spacing:-16.095750px;}
.ls21_c00225{letter-spacing:-15.510450px;}
.ls27_c00225{letter-spacing:-13.825350px;}
.lsb_c00225{letter-spacing:-12.004200px;}
.ls20_c00225{letter-spacing:-11.882588px;}
.lsd_c00225{letter-spacing:-10.931250px;}
.ls39_c00225{letter-spacing:-10.191900px;}
.ls8_c00225{letter-spacing:-7.426125px;}
.ls14_c00225{letter-spacing:-7.232490px;}
.ls23_c00225{letter-spacing:-6.685875px;}
.ls1f_c00225{letter-spacing:-6.331500px;}
.ls11_c00225{letter-spacing:-5.945625px;}
.lsf_c00225{letter-spacing:-5.872950px;}
.ls1b_c00225{letter-spacing:-5.741663px;}
.ls24_c00225{letter-spacing:-5.484375px;}
.ls28_c00225{letter-spacing:-5.465925px;}
.ls1d_c00225{letter-spacing:-5.203125px;}
.ls1e_c00225{letter-spacing:-5.200200px;}
.lsc_c00225{letter-spacing:-5.196713px;}
.ls10_c00225{letter-spacing:-4.456463px;}
.ls2d_c00225{letter-spacing:-4.053000px;}
.ls7_c00225{letter-spacing:-3.717000px;}
.ls15_c00225{letter-spacing:-3.680850px;}
.ls31_c00225{letter-spacing:-3.556800px;}
.ls2a_c00225{letter-spacing:-3.528360px;}
.ls18_c00225{letter-spacing:-3.283875px;}
.ls6_c00225{letter-spacing:-2.968875px;}
.ls35_c00225{letter-spacing:-2.650950px;}
.ls22_c00225{letter-spacing:-2.362500px;}
.ls5_c00225{letter-spacing:-2.229413px;}
.ls37_c00225{letter-spacing:-1.856723px;}
.ls29_c00225{letter-spacing:-1.700850px;}
.ls19_c00225{letter-spacing:-1.638000px;}
.ls1c_c00225{letter-spacing:-1.560000px;}
.lsa_c00225{letter-spacing:-1.489163px;}
.ls25_c00225{letter-spacing:-1.448115px;}
.ls33_c00225{letter-spacing:-1.171050px;}
.ls2e_c00225{letter-spacing:-1.133640px;}
.ls1a_c00225{letter-spacing:-0.819788px;}
.ls9_c00225{letter-spacing:-0.740250px;}
.ls12_c00225{letter-spacing:-0.680850px;}
.ls26_c00225{letter-spacing:-0.630750px;}
.lse_c00225{letter-spacing:0.000000px;}
.ls32_c00225{letter-spacing:0.515100px;}
.ls36_c00225{letter-spacing:0.589050px;}
.ls2f_c00225{letter-spacing:0.676545px;}
.ls17_c00225{letter-spacing:0.819788px;}
.ls0_c00225{letter-spacing:1.489163px;}
.ls2b_c00225{letter-spacing:2.266950px;}
.ls30_c00225{letter-spacing:2.286360px;}
.ls16_c00225{letter-spacing:2.427158px;}
.ls2_c00225{letter-spacing:3.283875px;}
.ls3_c00225{letter-spacing:4.102088px;}
.ls2c_c00225{letter-spacing:4.166250px;}
.ls4_c00225{letter-spacing:4.456463px;}
.ls1_c00225{letter-spacing:4.921875px;}
.ls34_c00225{letter-spacing:7.060950px;}
.ls38_c00225{letter-spacing:11.473245px;}
.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;}
._1b_c00225{margin-left:-41.005332px;}
._e_c00225{margin-left:-18.656202px;}
._1f_c00225{margin-left:-12.395131px;}
._1e_c00225{margin-left:-10.256697px;}
._f_c00225{margin-left:-7.042048px;}
._b_c00225{margin-left:-5.704813px;}
._9_c00225{margin-left:-3.767192px;}
._7_c00225{margin-left:-1.847000px;}
._8_c00225{width:1.440427px;}
._3_c00225{width:3.053717px;}
._1_c00225{width:4.171937px;}
._4_c00225{width:5.418000px;}
._0_c00225{width:6.487217px;}
._2_c00225{width:8.584642px;}
._d_c00225{width:9.702475px;}
._c_c00225{width:11.699635px;}
._19_c00225{width:12.979753px;}
._5_c00225{width:14.489822px;}
._a_c00225{width:15.707936px;}
._1c_c00225{width:17.387406px;}
._6_c00225{width:19.593327px;}
._1a_c00225{width:20.924805px;}
._12_c00225{width:22.524283px;}
._13_c00225{width:23.741075px;}
._10_c00225{width:25.585934px;}
._1d_c00225{width:27.207233px;}
._14_c00225{width:28.349019px;}
._17_c00225{width:29.555440px;}
._15_c00225{width:32.053226px;}
._16_c00225{width:34.170249px;}
._18_c00225{width:37.553958px;}
._11_c00225{width:38.892738px;}
.fc0_c00225{color:transparent;}
.fs12_c00225{font-size:25.500000px;}
.fs15_c00225{font-size:30.000000px;}
.fs1a_c00225{font-size:32.250000px;}
.fs16_c00225{font-size:34.500000px;}
.fs13_c00225{font-size:36.000000px;}
.fs14_c00225{font-size:37.500000px;}
.fs11_c00225{font-size:38.250000px;}
.fs1b_c00225{font-size:39.750000px;}
.fs1c_c00225{font-size:40.500000px;}
.fsf_c00225{font-size:43.500000px;}
.fs17_c00225{font-size:51.000000px;}
.fs19_c00225{font-size:55.500000px;}
.fs1d_c00225{font-size:58.500000px;}
.fs18_c00225{font-size:59.560800px;}
.fs5_c00225{font-size:69.750000px;}
.fs7_c00225{font-size:76.500000px;}
.fsc_c00225{font-size:78.000000px;}
.fs0_c00225{font-size:78.750000px;}
.fs2_c00225{font-size:79.500000px;}
.fs9_c00225{font-size:80.250000px;}
.fsa_c00225{font-size:81.000000px;}
.fsb_c00225{font-size:81.750000px;}
.fs8_c00225{font-size:82.500000px;}
.fsd_c00225{font-size:83.250000px;}
.fs3_c00225{font-size:84.000000px;}
.fs1_c00225{font-size:85.500000px;}
.fse_c00225{font-size:87.750000px;}
.fs10_c00225{font-size:99.750000px;}
.fs4_c00225{font-size:101.250000px;}
.fs6_c00225{font-size:115.500000px;}
.y0_c00225{bottom:0.000000px;}
.y2e_c00225{bottom:185.758665px;}
.y2d_c00225{bottom:214.919820px;}
.y2c_c00225{bottom:244.799535px;}
.y2b_c00225{bottom:244.799715px;}
.y2a_c00225{bottom:273.960870px;}
.y28_c00225{bottom:303.839430px;}
.y29_c00225{bottom:303.840585px;}
.y27_c00225{bottom:362.520105px;}
.y26_c00225{bottom:392.399820px;}
.y25_c00225{bottom:422.280435px;}
.y24_c00225{bottom:429.121035px;}
.y23_c00225{bottom:451.800150px;}
.y22_c00225{bottom:451.800480px;}
.y20_c00225{bottom:482.400120px;}
.y21_c00225{bottom:482.400885px;}
.y1e_c00225{bottom:512.278425px;}
.y1f_c00225{bottom:512.279850px;}
.y1d_c00225{bottom:541.439580px;}
.y1b_c00225{bottom:570.599970px;}
.y1c_c00225{bottom:570.600720px;}
.y1a_c00225{bottom:600.479685px;}
.y19_c00225{bottom:600.479940px;}
.y18_c00225{bottom:630.001275px;}
.y17_c00225{bottom:660.241200px;}
.y15_c00225{bottom:689.759970px;}
.y16_c00225{bottom:689.760720px;}
.y14_c00225{bottom:719.639700px;}
.y13_c00225{bottom:749.520270px;}
.y12_c00225{bottom:779.402190px;}
.y11_c00225{bottom:839.161635px;}
.y10_c00225{bottom:868.681155px;}
.yf_c00225{bottom:898.200690px;}
.yd_c00225{bottom:928.079880px;}
.ye_c00225{bottom:928.080420px;}
.yc_c00225{bottom:958.140750px;}
.yb_c00225{bottom:958.141500px;}
.ya_c00225{bottom:987.840090px;}
.y9_c00225{bottom:1018.079955px;}
.y8_c00225{bottom:1018.080135px;}
.y7_c00225{bottom:1047.599670px;}
.y6_c00225{bottom:1047.599700px;}
.y4_c00225{bottom:1077.120810px;}
.y5_c00225{bottom:1077.121035px;}
.y2_c00225{bottom:1106.279805px;}
.y3_c00225{bottom:1106.279850px;}
.y1_c00225{bottom:1136.519715px;}
.h16_c00225{height:26.595703px;}
.h19_c00225{height:31.289062px;}
.h20_c00225{height:33.635742px;}
.h1b_c00225{height:35.332031px;}
.h1a_c00225{height:35.982422px;}
.h1f_c00225{height:37.540283px;}
.h17_c00225{height:37.546875px;}
.h21_c00225{height:39.012451px;}
.h18_c00225{height:39.111328px;}
.h22_c00225{height:39.748535px;}
.h15_c00225{height:39.893555px;}
.h13_c00225{height:43.839844px;}
.h1c_c00225{height:50.053711px;}
.h1e_c00225{height:54.470215px;}
.h23_c00225{height:57.414551px;}
.h1d_c00225{height:58.455668px;}
.h6_c00225{height:72.747070px;}
.h8_c00225{height:75.080566px;}
.h10_c00225{height:76.552734px;}
.h1_c00225{height:77.288818px;}
.hd_c00225{height:78.024902px;}
.h3_c00225{height:78.568359px;}
.hb_c00225{height:78.760986px;}
.hf_c00225{height:79.365234px;}
.hc_c00225{height:79.497070px;}
.he_c00225{height:80.233154px;}
.ha_c00225{height:80.969238px;}
.h9_c00225{height:81.533203px;}
.h11_c00225{height:81.705322px;}
.h2_c00225{height:83.913574px;}
.h12_c00225{height:86.121826px;}
.h4_c00225{height:87.609375px;}
.h14_c00225{height:104.036133px;}
.h5_c00225{height:105.600586px;}
.h7_c00225{height:120.462891px;}
.h0_c00225{height:1263.000000px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x20_c00225{left:138.236985px;}
.x11_c00225{left:139.318380px;}
.x1_c00225{left:140.398665px;}
.x45_c00225{left:194.398635px;}
.x4_c00225{left:203.038950px;}
.x25_c00225{left:205.558635px;}
.x46_c00225{left:208.080000px;}
.x1b_c00225{left:213.119385px;}
.x1e_c00225{left:214.198785px;}
.x3a_c00225{left:215.639100px;}
.x5_c00225{left:222.118785px;}
.x26_c00225{left:226.439685px;}
.x1f_c00225{left:235.080000px;}
.x2e_c00225{left:239.399250px;}
.x2f_c00225{left:258.838515px;}
.x3b_c00225{left:260.998950px;}
.x12_c00225{left:273.958350px;}
.x17_c00225{left:279.358635px;}
.xb_c00225{left:282.598500px;}
.x13_c00225{left:293.758500px;}
.x30_c00225{left:300.958350px;}
.x18_c00225{left:307.798950px;}
.x31_c00225{left:324.359250px;}
.x3f_c00225{left:325.799535px;}
.xc_c00225{left:327.599100px;}
.x19_c00225{left:345.238785px;}
.x40_c00225{left:347.399235px;}
.x2c_c00225{left:384.118785px;}
.x21_c00225{left:386.279250px;}
.x1a_c00225{left:388.798920px;}
.x3d_c00225{left:390.959385px;}
.xd_c00225{left:392.759085px;}
.xe_c00225{left:398.879565px;}
.x22_c00225{left:400.319820px;}
.x3e_c00225{left:404.639100px;}
.x2d_c00225{left:405.718500px;}
.xf_c00225{left:411.118785px;}
.x32_c00225{left:428.399235px;}
.x41_c00225{left:469.798920px;}
.x1c_c00225{left:472.318770px;}
.x33_c00225{left:475.919535px;}
.x42_c00225{left:485.279850px;}
.x1d_c00225{left:494.999400px;}
.x34_c00225{left:551.159820px;}
.x2_c00225{left:558.719100px;}
.x43_c00225{left:572.759535px;}
.x3_c00225{left:582.479235px;}
.x35_c00225{left:593.279850px;}
.x44_c00225{left:594.359250px;}
.x28_c00225{left:601.559100px;}
.x36_c00225{left:643.319820px;}
.x29_c00225{left:645.119385px;}
.x6_c00225{left:649.799520px;}
.x3c_c00225{left:651.599070px;}
.x7_c00225{left:658.078770px;}
.x8_c00225{left:664.199385px;}
.x9_c00225{left:670.319820px;}
.x37_c00225{left:675.359250px;}
.xa_c00225{left:679.319235px;}
.x47_c00225{left:689.399820px;}
.x27_c00225{left:690.479235px;}
.x38_c00225{left:694.798560px;}
.x14_c00225{left:698.039985px;}
.x10_c00225{left:700.198785px;}
.x48_c00225{left:702.718545px;}
.x2a_c00225{left:707.759535px;}
.x15_c00225{left:712.078770px;}
.x23_c00225{left:718.558635px;}
.x2b_c00225{left:721.798560px;}
.x24_c00225{left:758.519670px;}
.x39_c00225{left:762.118785px;}
.x16_c00225{left:770.399865px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls13_c00225{letter-spacing:-14.307333pt;}
.ls21_c00225{letter-spacing:-13.787067pt;}
.ls27_c00225{letter-spacing:-12.289200pt;}
.lsb_c00225{letter-spacing:-10.670400pt;}
.ls20_c00225{letter-spacing:-10.562300pt;}
.lsd_c00225{letter-spacing:-9.716667pt;}
.ls39_c00225{letter-spacing:-9.059467pt;}
.ls8_c00225{letter-spacing:-6.601000pt;}
.ls14_c00225{letter-spacing:-6.428880pt;}
.ls23_c00225{letter-spacing:-5.943000pt;}
.ls1f_c00225{letter-spacing:-5.628000pt;}
.ls11_c00225{letter-spacing:-5.285000pt;}
.lsf_c00225{letter-spacing:-5.220400pt;}
.ls1b_c00225{letter-spacing:-5.103700pt;}
.ls24_c00225{letter-spacing:-4.875000pt;}
.ls28_c00225{letter-spacing:-4.858600pt;}
.ls1d_c00225{letter-spacing:-4.625000pt;}
.ls1e_c00225{letter-spacing:-4.622400pt;}
.lsc_c00225{letter-spacing:-4.619300pt;}
.ls10_c00225{letter-spacing:-3.961300pt;}
.ls2d_c00225{letter-spacing:-3.602667pt;}
.ls7_c00225{letter-spacing:-3.304000pt;}
.ls15_c00225{letter-spacing:-3.271867pt;}
.ls31_c00225{letter-spacing:-3.161600pt;}
.ls2a_c00225{letter-spacing:-3.136320pt;}
.ls18_c00225{letter-spacing:-2.919000pt;}
.ls6_c00225{letter-spacing:-2.639000pt;}
.ls35_c00225{letter-spacing:-2.356400pt;}
.ls22_c00225{letter-spacing:-2.100000pt;}
.ls5_c00225{letter-spacing:-1.981700pt;}
.ls37_c00225{letter-spacing:-1.650420pt;}
.ls29_c00225{letter-spacing:-1.511867pt;}
.ls19_c00225{letter-spacing:-1.456000pt;}
.ls1c_c00225{letter-spacing:-1.386667pt;}
.lsa_c00225{letter-spacing:-1.323700pt;}
.ls25_c00225{letter-spacing:-1.287213pt;}
.ls33_c00225{letter-spacing:-1.040933pt;}
.ls2e_c00225{letter-spacing:-1.007680pt;}
.ls1a_c00225{letter-spacing:-0.728700pt;}
.ls9_c00225{letter-spacing:-0.658000pt;}
.ls12_c00225{letter-spacing:-0.605200pt;}
.ls26_c00225{letter-spacing:-0.560667pt;}
.lse_c00225{letter-spacing:0.000000pt;}
.ls32_c00225{letter-spacing:0.457867pt;}
.ls36_c00225{letter-spacing:0.523600pt;}
.ls2f_c00225{letter-spacing:0.601373pt;}
.ls17_c00225{letter-spacing:0.728700pt;}
.ls0_c00225{letter-spacing:1.323700pt;}
.ls2b_c00225{letter-spacing:2.015067pt;}
.ls30_c00225{letter-spacing:2.032320pt;}
.ls16_c00225{letter-spacing:2.157473pt;}
.ls2_c00225{letter-spacing:2.919000pt;}
.ls3_c00225{letter-spacing:3.646300pt;}
.ls2c_c00225{letter-spacing:3.703333pt;}
.ls4_c00225{letter-spacing:3.961300pt;}
.ls1_c00225{letter-spacing:4.375000pt;}
.ls34_c00225{letter-spacing:6.276400pt;}
.ls38_c00225{letter-spacing:10.198440pt;}
.ws0_c00225{word-spacing:0.000000pt;}
._1b_c00225{margin-left:-36.449184pt;}
._e_c00225{margin-left:-16.583291pt;}
._1f_c00225{margin-left:-11.017894pt;}
._1e_c00225{margin-left:-9.117064pt;}
._f_c00225{margin-left:-6.259598pt;}
._b_c00225{margin-left:-5.070945pt;}
._9_c00225{margin-left:-3.348615pt;}
._7_c00225{margin-left:-1.641777pt;}
._8_c00225{width:1.280379pt;}
._3_c00225{width:2.714415pt;}
._1_c00225{width:3.708389pt;}
._4_c00225{width:4.816000pt;}
._0_c00225{width:5.766415pt;}
._2_c00225{width:7.630792pt;}
._d_c00225{width:8.624423pt;}
._c_c00225{width:10.399675pt;}
._19_c00225{width:11.537558pt;}
._5_c00225{width:12.879842pt;}
._a_c00225{width:13.962609pt;}
._1c_c00225{width:15.455472pt;}
._6_c00225{width:17.416291pt;}
._1a_c00225{width:18.599827pt;}
._12_c00225{width:20.021585pt;}
._13_c00225{width:21.103177pt;}
._10_c00225{width:22.743053pt;}
._1d_c00225{width:24.184208pt;}
._14_c00225{width:25.199128pt;}
._17_c00225{width:26.271502pt;}
._15_c00225{width:28.491757pt;}
._16_c00225{width:30.373555pt;}
._18_c00225{width:33.381296pt;}
._11_c00225{width:34.571323pt;}
.fs12_c00225{font-size:22.666667pt;}
.fs15_c00225{font-size:26.666667pt;}
.fs1a_c00225{font-size:28.666667pt;}
.fs16_c00225{font-size:30.666667pt;}
.fs13_c00225{font-size:32.000000pt;}
.fs14_c00225{font-size:33.333333pt;}
.fs11_c00225{font-size:34.000000pt;}
.fs1b_c00225{font-size:35.333333pt;}
.fs1c_c00225{font-size:36.000000pt;}
.fsf_c00225{font-size:38.666667pt;}
.fs17_c00225{font-size:45.333333pt;}
.fs19_c00225{font-size:49.333333pt;}
.fs1d_c00225{font-size:52.000000pt;}
.fs18_c00225{font-size:52.942933pt;}
.fs5_c00225{font-size:62.000000pt;}
.fs7_c00225{font-size:68.000000pt;}
.fsc_c00225{font-size:69.333333pt;}
.fs0_c00225{font-size:70.000000pt;}
.fs2_c00225{font-size:70.666667pt;}
.fs9_c00225{font-size:71.333333pt;}
.fsa_c00225{font-size:72.000000pt;}
.fsb_c00225{font-size:72.666667pt;}
.fs8_c00225{font-size:73.333333pt;}
.fsd_c00225{font-size:74.000000pt;}
.fs3_c00225{font-size:74.666667pt;}
.fs1_c00225{font-size:76.000000pt;}
.fse_c00225{font-size:78.000000pt;}
.fs10_c00225{font-size:88.666667pt;}
.fs4_c00225{font-size:90.000000pt;}
.fs6_c00225{font-size:102.666667pt;}
.y0_c00225{bottom:0.000000pt;}
.y2e_c00225{bottom:165.118813pt;}
.y2d_c00225{bottom:191.039840pt;}
.y2c_c00225{bottom:217.599587pt;}
.y2b_c00225{bottom:217.599747pt;}
.y2a_c00225{bottom:243.520773pt;}
.y28_c00225{bottom:270.079493pt;}
.y29_c00225{bottom:270.080520pt;}
.y27_c00225{bottom:322.240093pt;}
.y26_c00225{bottom:348.799840pt;}
.y25_c00225{bottom:375.360387pt;}
.y24_c00225{bottom:381.440920pt;}
.y23_c00225{bottom:401.600133pt;}
.y22_c00225{bottom:401.600427pt;}
.y20_c00225{bottom:428.800107pt;}
.y21_c00225{bottom:428.800787pt;}
.y1e_c00225{bottom:455.358600pt;}
.y1f_c00225{bottom:455.359867pt;}
.y1d_c00225{bottom:481.279627pt;}
.y1b_c00225{bottom:507.199973pt;}
.y1c_c00225{bottom:507.200640pt;}
.y1a_c00225{bottom:533.759720pt;}
.y19_c00225{bottom:533.759947pt;}
.y18_c00225{bottom:560.001133pt;}
.y17_c00225{bottom:586.881067pt;}
.y15_c00225{bottom:613.119973pt;}
.y16_c00225{bottom:613.120640pt;}
.y14_c00225{bottom:639.679733pt;}
.y13_c00225{bottom:666.240240pt;}
.y12_c00225{bottom:692.801947pt;}
.y11_c00225{bottom:745.921453pt;}
.y10_c00225{bottom:772.161027pt;}
.yf_c00225{bottom:798.400613pt;}
.yd_c00225{bottom:824.959893pt;}
.ye_c00225{bottom:824.960373pt;}
.yc_c00225{bottom:851.680667pt;}
.yb_c00225{bottom:851.681333pt;}
.ya_c00225{bottom:878.080080pt;}
.y9_c00225{bottom:904.959960pt;}
.y8_c00225{bottom:904.960120pt;}
.y7_c00225{bottom:931.199707pt;}
.y6_c00225{bottom:931.199733pt;}
.y4_c00225{bottom:957.440720pt;}
.y5_c00225{bottom:957.440920pt;}
.y2_c00225{bottom:983.359827pt;}
.y3_c00225{bottom:983.359867pt;}
.y1_c00225{bottom:1010.239747pt;}
.h16_c00225{height:23.640625pt;}
.h19_c00225{height:27.812500pt;}
.h20_c00225{height:29.898438pt;}
.h1b_c00225{height:31.406250pt;}
.h1a_c00225{height:31.984375pt;}
.h1f_c00225{height:33.369141pt;}
.h17_c00225{height:33.375000pt;}
.h21_c00225{height:34.677734pt;}
.h18_c00225{height:34.765625pt;}
.h22_c00225{height:35.332031pt;}
.h15_c00225{height:35.460938pt;}
.h13_c00225{height:38.968750pt;}
.h1c_c00225{height:44.492188pt;}
.h1e_c00225{height:48.417969pt;}
.h23_c00225{height:51.035156pt;}
.h1d_c00225{height:51.960594pt;}
.h6_c00225{height:64.664062pt;}
.h8_c00225{height:66.738281pt;}
.h10_c00225{height:68.046875pt;}
.h1_c00225{height:68.701172pt;}
.hd_c00225{height:69.355469pt;}
.h3_c00225{height:69.838542pt;}
.hb_c00225{height:70.009766pt;}
.hf_c00225{height:70.546875pt;}
.hc_c00225{height:70.664062pt;}
.he_c00225{height:71.318359pt;}
.ha_c00225{height:71.972656pt;}
.h9_c00225{height:72.473958pt;}
.h11_c00225{height:72.626953pt;}
.h2_c00225{height:74.589844pt;}
.h12_c00225{height:76.552734pt;}
.h4_c00225{height:77.875000pt;}
.h14_c00225{height:92.476562pt;}
.h5_c00225{height:93.867188pt;}
.h7_c00225{height:107.078125pt;}
.h0_c00225{height:1122.666667pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x20_c00225{left:122.877320pt;}
.x11_c00225{left:123.838560pt;}
.x1_c00225{left:124.798813pt;}
.x45_c00225{left:172.798787pt;}
.x4_c00225{left:180.479067pt;}
.x25_c00225{left:182.718787pt;}
.x46_c00225{left:184.960000pt;}
.x1b_c00225{left:189.439453pt;}
.x1e_c00225{left:190.398920pt;}
.x3a_c00225{left:191.679200pt;}
.x5_c00225{left:197.438920pt;}
.x26_c00225{left:201.279720pt;}
.x1f_c00225{left:208.960000pt;}
.x2e_c00225{left:212.799333pt;}
.x2f_c00225{left:230.078680pt;}
.x3b_c00225{left:231.999067pt;}
.x12_c00225{left:243.518533pt;}
.x17_c00225{left:248.318787pt;}
.xb_c00225{left:251.198667pt;}
.x13_c00225{left:261.118667pt;}
.x30_c00225{left:267.518533pt;}
.x18_c00225{left:273.599067pt;}
.x31_c00225{left:288.319333pt;}
.x3f_c00225{left:289.599587pt;}
.xc_c00225{left:291.199200pt;}
.x19_c00225{left:306.878920pt;}
.x40_c00225{left:308.799320pt;}
.x2c_c00225{left:341.438920pt;}
.x21_c00225{left:343.359333pt;}
.x1a_c00225{left:345.599040pt;}
.x3d_c00225{left:347.519453pt;}
.xd_c00225{left:349.119187pt;}
.xe_c00225{left:354.559613pt;}
.x22_c00225{left:355.839840pt;}
.x3e_c00225{left:359.679200pt;}
.x2d_c00225{left:360.638667pt;}
.xf_c00225{left:365.438920pt;}
.x32_c00225{left:380.799320pt;}
.x41_c00225{left:417.599040pt;}
.x1c_c00225{left:419.838907pt;}
.x33_c00225{left:423.039587pt;}
.x42_c00225{left:431.359867pt;}
.x1d_c00225{left:439.999467pt;}
.x34_c00225{left:489.919840pt;}
.x2_c00225{left:496.639200pt;}
.x43_c00225{left:509.119587pt;}
.x3_c00225{left:517.759320pt;}
.x35_c00225{left:527.359867pt;}
.x44_c00225{left:528.319333pt;}
.x28_c00225{left:534.719200pt;}
.x36_c00225{left:571.839840pt;}
.x29_c00225{left:573.439453pt;}
.x6_c00225{left:577.599573pt;}
.x3c_c00225{left:579.199173pt;}
.x7_c00225{left:584.958907pt;}
.x8_c00225{left:590.399453pt;}
.x9_c00225{left:595.839840pt;}
.x37_c00225{left:600.319333pt;}
.xa_c00225{left:603.839320pt;}
.x47_c00225{left:612.799840pt;}
.x27_c00225{left:613.759320pt;}
.x38_c00225{left:617.598720pt;}
.x14_c00225{left:620.479987pt;}
.x10_c00225{left:622.398920pt;}
.x48_c00225{left:624.638707pt;}
.x2a_c00225{left:629.119587pt;}
.x15_c00225{left:632.958907pt;}
.x23_c00225{left:638.718787pt;}
.x2b_c00225{left:641.598720pt;}
.x24_c00225{left:674.239707pt;}
.x39_c00225{left:677.438920pt;}
.x16_c00225{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_036b9e8ac1bd82b4e5ec3d3c.woff2')format("woff");}.ff1_c00226{font-family:ff1_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:ff2_c00226;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.364746;font-style:normal;font-weight:normal;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_20554e16a1b1c7e36624232c.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_77bcec38b88136e2ce9d432c.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_97df66e18c7b6d661405faf7.woff2')format("woff");}.ff5_c00226{font-family:ff5_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:ff6_c00226;src:url('chunks/assets/font_401b139913a9f6693cffbf9b.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2c_c00226{transform:matrix(0.168317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168317,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00226{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m29_c00226{transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m27_c00226{transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);}
.m1a_c00226{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m20_c00226{transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m22_c00226{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{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_c00226{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m25_c00226{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m24_c00226{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1d_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1b_c00226{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m21_c00226{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m2a_c00226{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m28_c00226{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m18_c00226{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m1e_c00226{transform:matrix(1.673913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.673913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.673913,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.lsa_c00226{letter-spacing:-18.224250px;}
.ls2b_c00226{letter-spacing:-16.845300px;}
.lsf_c00226{letter-spacing:-14.082750px;}
.ls2f_c00226{letter-spacing:-13.209150px;}
.ls1e_c00226{letter-spacing:-13.149045px;}
.ls21_c00226{letter-spacing:-11.247173px;}
.ls16_c00226{letter-spacing:-8.991900px;}
.ls1d_c00226{letter-spacing:-8.914500px;}
.ls8_c00226{letter-spacing:-8.175038px;}
.ls30_c00226{letter-spacing:-7.426125px;}
.ls13_c00226{letter-spacing:-7.290945px;}
.ls2a_c00226{letter-spacing:-6.686745px;}
.lse_c00226{letter-spacing:-6.685875px;}
.ls11_c00226{letter-spacing:-5.945625px;}
.ls12_c00226{letter-spacing:-5.203125px;}
.lsc_c00226{letter-spacing:-5.196713px;}
.ls20_c00226{letter-spacing:-5.109375px;}
.ls27_c00226{letter-spacing:-4.635000px;}
.ls5_c00226{letter-spacing:-4.456463px;}
.ls28_c00226{letter-spacing:-4.453800px;}
.ls9_c00226{letter-spacing:-4.418663px;}
.ls14_c00226{letter-spacing:-4.410975px;}
.ls18_c00226{letter-spacing:-4.046625px;}
.ls19_c00226{letter-spacing:-3.940028px;}
.ls4_c00226{letter-spacing:-3.717000px;}
.ls6_c00226{letter-spacing:-3.683475px;}
.ls1a_c00226{letter-spacing:-3.142800px;}
.ls1f_c00226{letter-spacing:-2.971800px;}
.ls2_c00226{letter-spacing:-2.968875px;}
.ls15_c00226{letter-spacing:-2.538975px;}
.ls29_c00226{letter-spacing:-2.410200px;}
.ls1_c00226{letter-spacing:-2.229413px;}
.ls25_c00226{letter-spacing:-1.637100px;}
.ls17_c00226{letter-spacing:-1.622400px;}
.ls10_c00226{letter-spacing:-1.560038px;}
.ls3_c00226{letter-spacing:-1.489163px;}
.ls24_c00226{letter-spacing:-1.483200px;}
.ls2e_c00226{letter-spacing:-1.474980px;}
.ls23_c00226{letter-spacing:-0.831900px;}
.lsb_c00226{letter-spacing:-0.740250px;}
.ls7_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:1.489163px;}
.ls22_c00226{letter-spacing:1.764900px;}
.ls1c_c00226{letter-spacing:2.444250px;}
.lsd_c00226{letter-spacing:4.587000px;}
.ls1b_c00226{letter-spacing:5.189625px;}
.ls2d_c00226{letter-spacing:5.239050px;}
.ls26_c00226{letter-spacing:5.741663px;}
.ls31_c00226{letter-spacing:6.681150px;}
.ls2c_c00226{letter-spacing:18.615293px;}
.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;}
._1e_c00226{margin-left:-33.199950px;}
._1d_c00226{margin-left:-11.187388px;}
._19_c00226{margin-left:-5.754144px;}
._11_c00226{margin-left:-4.677809px;}
._12_c00226{margin-left:-3.383902px;}
._10_c00226{margin-left:-2.216575px;}
._1a_c00226{margin-left:-1.131474px;}
._e_c00226{width:1.031120px;}
._c_c00226{width:2.575690px;}
._d_c00226{width:3.750402px;}
._17_c00226{width:5.120028px;}
._f_c00226{width:6.979404px;}
._4_c00226{width:8.391050px;}
._2_c00226{width:10.019214px;}
._1_c00226{width:11.379108px;}
._0_c00226{width:12.750086px;}
._3_c00226{width:14.093011px;}
._b_c00226{width:15.205912px;}
._18_c00226{width:16.284683px;}
._13_c00226{width:17.400763px;}
._1c_c00226{width:18.561880px;}
._14_c00226{width:19.590073px;}
._a_c00226{width:21.741463px;}
._15_c00226{width:23.465702px;}
._1b_c00226{width:25.119452px;}
._6_c00226{width:26.765565px;}
._5_c00226{width:28.747301px;}
._8_c00226{width:31.025256px;}
._7_c00226{width:32.862405px;}
._16_c00226{width:38.405900px;}
._9_c00226{width:42.309611px;}
.fc0_c00226{color:transparent;}
.fsf_c00226{font-size:17.250000px;}
.fs10_c00226{font-size:70.500000px;}
.fs8_c00226{font-size:72.750000px;}
.fs11_c00226{font-size:73.500000px;}
.fsc_c00226{font-size:74.250000px;}
.fsb_c00226{font-size:75.000000px;}
.fs13_c00226{font-size:75.750000px;}
.fs12_c00226{font-size:76.500000px;}
.fs7_c00226{font-size:77.250000px;}
.fs6_c00226{font-size:78.000000px;}
.fs0_c00226{font-size:78.750000px;}
.fs5_c00226{font-size:79.500000px;}
.fs1_c00226{font-size:80.250000px;}
.fsa_c00226{font-size:81.000000px;}
.fs9_c00226{font-size:81.750000px;}
.fs2_c00226{font-size:82.500000px;}
.fs4_c00226{font-size:83.250000px;}
.fs3_c00226{font-size:84.750000px;}
.fse_c00226{font-size:85.500000px;}
.fsd_c00226{font-size:101.250000px;}
.y0_c00226{bottom:0.000000px;}
.y2f_c00226{bottom:212.760150px;}
.y2e_c00226{bottom:212.760885px;}
.y2d_c00226{bottom:234.360165px;}
.y2c_c00226{bottom:255.238785px;}
.y2b_c00226{bottom:276.479685px;}
.y2a_c00226{bottom:335.519100px;}
.y29_c00226{bottom:335.519190px;}
.y27_c00226{bottom:365.758395px;}
.y28_c00226{bottom:365.759100px;}
.y26_c00226{bottom:394.919535px;}
.y25_c00226{bottom:424.439250px;}
.y24_c00226{bottom:453.958920px;}
.y23_c00226{bottom:453.959295px;}
.y22_c00226{bottom:484.559685px;}
.y21_c00226{bottom:491.398635px;}
.y20_c00226{bottom:514.079505px;}
.y1f_c00226{bottom:544.319415px;}
.y1e_c00226{bottom:573.838950px;}
.y1c_c00226{bottom:604.438800px;}
.y1d_c00226{bottom:604.439670px;}
.y1b_c00226{bottom:632.519070px;}
.y1a_c00226{bottom:632.520105px;}
.y19_c00226{bottom:662.399820px;}
.y17_c00226{bottom:721.439160px;}
.y18_c00226{bottom:721.439205px;}
.y16_c00226{bottom:751.679070px;}
.y14_c00226{bottom:781.558935px;}
.y15_c00226{bottom:781.559685px;}
.y12_c00226{bottom:811.438065px;}
.y13_c00226{bottom:811.438665px;}
.y11_c00226{bottom:841.680090px;}
.y10_c00226{bottom:841.681635px;}
.yf_c00226{bottom:870.840690px;}
.ye_c00226{bottom:900.720405px;}
.yc_c00226{bottom:930.599460px;}
.yd_c00226{bottom:930.600135px;}
.yb_c00226{bottom:960.479190px;}
.ya_c00226{bottom:960.480075px;}
.y9_c00226{bottom:990.359805px;}
.y8_c00226{bottom:1020.238770px;}
.y7_c00226{bottom:1020.238785px;}
.y5_c00226{bottom:1049.759370px;}
.y6_c00226{bottom:1049.760135px;}
.y3_c00226{bottom:1079.638410px;}
.y4_c00226{bottom:1079.639100px;}
.y2_c00226{bottom:1108.799565px;}
.y1_c00226{bottom:1139.039340px;}
.h14_c00226{height:17.991211px;}
.h10_c00226{height:72.872314px;}
.h16_c00226{height:73.529297px;}
.hf_c00226{height:73.608398px;}
.h1b_c00226{height:75.080566px;}
.h9_c00226{height:75.816650px;}
.ha_c00226{height:75.875977px;}
.h8_c00226{height:76.552734px;}
.h1a_c00226{height:76.658203px;}
.h1_c00226{height:77.288818px;}
.h19_c00226{height:77.853516px;}
.h7_c00226{height:78.024902px;}
.hb_c00226{height:78.609375px;}
.h2_c00226{height:78.760986px;}
.h1d_c00226{height:79.004883px;}
.h1c_c00226{height:79.309570px;}
.h18_c00226{height:79.365234px;}
.h15_c00226{height:80.121094px;}
.h13_c00226{height:80.233154px;}
.h17_c00226{height:80.876953px;}
.h3_c00226{height:80.969238px;}
.h4_c00226{height:81.533203px;}
.he_c00226{height:81.632812px;}
.h6_c00226{height:81.705322px;}
.hc_c00226{height:82.388672px;}
.h5_c00226{height:83.177490px;}
.h12_c00226{height:84.498047px;}
.hd_c00226{height:85.412109px;}
.h11_c00226{height:105.600586px;}
.h0_c00226{height:1263.000000px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x32_c00226{left:98.998950px;}
.x1_c00226{left:137.519685px;}
.x36_c00226{left:138.599100px;}
.x2b_c00226{left:169.559100px;}
.x2a_c00226{left:179.998950px;}
.x2c_c00226{left:190.079400px;}
.x4a_c00226{left:192.955395px;}
.x46_c00226{left:194.039400px;}
.x37_c00226{left:203.399850px;}
.x47_c00226{left:214.918950px;}
.x24_c00226{left:218.158785px;}
.x33_c00226{left:223.559100px;}
.x48_c00226{left:225.358635px;}
.xb_c00226{left:233.998950px;}
.x44_c00226{left:235.080000px;}
.x34_c00226{left:238.679100px;}
.xc_c00226{left:249.118785px;}
.x45_c00226{left:264.238785px;}
.x9_c00226{left:275.759535px;}
.x38_c00226{left:280.439685px;}
.x16_c00226{left:290.518635px;}
.xa_c00226{left:295.559685px;}
.x39_c00226{left:300.239850px;}
.x1d_c00226{left:304.199850px;}
.x2d_c00226{left:307.798950px;}
.x17_c00226{left:312.479235px;}
.x30_c00226{left:314.278800px;}
.x3a_c00226{left:324.000000px;}
.x2e_c00226{left:328.678500px;}
.x4b_c00226{left:336.239250px;}
.x31_c00226{left:338.038950px;}
.x25_c00226{left:358.199850px;}
.x20_c00226{left:382.319235px;}
.x18_c00226{left:393.838530px;}
.x21_c00226{left:399.958920px;}
.x26_c00226{left:408.239820px;}
.x19_c00226{left:410.398635px;}
.x49_c00226{left:417.959385px;}
.x1a_c00226{left:432.000000px;}
.x27_c00226{left:434.519670px;}
.x3b_c00226{left:438.838950px;}
.x3c_c00226{left:462.599070px;}
.x22_c00226{left:470.519070px;}
.x23_c00226{left:487.438665px;}
.x1e_c00226{left:495.719565px;}
.x28_c00226{left:496.798920px;}
.x1f_c00226{left:519.838950px;}
.x42_c00226{left:521.279250px;}
.x3d_c00226{left:525.959385px;}
.x14_c00226{left:533.518620px;}
.x43_c00226{left:537.478635px;}
.x15_c00226{left:551.519070px;}
.x11_c00226{left:572.039385px;}
.x12_c00226{left:595.079400px;}
.x3e_c00226{left:598.319235px;}
.x29_c00226{left:603.719520px;}
.xe_c00226{left:607.318770px;}
.xf_c00226{left:620.639100px;}
.x3f_c00226{left:627.479685px;}
.x13_c00226{left:629.638545px;}
.x5_c00226{left:661.318770px;}
.x1b_c00226{left:664.199385px;}
.x40_c00226{left:668.518620px;}
.x2_c00226{left:673.918950px;}
.x6_c00226{left:688.679670px;}
.x1c_c00226{left:690.479235px;}
.x3_c00226{left:694.798560px;}
.x41_c00226{left:719.998950px;}
.x10_c00226{left:731.519670px;}
.x7_c00226{left:744.119985px;}
.x2f_c00226{left:758.878920px;}
.x8_c00226{left:760.319235px;}
.xd_c00226{left:762.118785px;}
.x4_c00226{left:767.878320px;}
.x35_c00226{left:768.959385px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.lsa_c00226{letter-spacing:-16.199333pt;}
.ls2b_c00226{letter-spacing:-14.973600pt;}
.lsf_c00226{letter-spacing:-12.518000pt;}
.ls2f_c00226{letter-spacing:-11.741467pt;}
.ls1e_c00226{letter-spacing:-11.688040pt;}
.ls21_c00226{letter-spacing:-9.997487pt;}
.ls16_c00226{letter-spacing:-7.992800pt;}
.ls1d_c00226{letter-spacing:-7.924000pt;}
.ls8_c00226{letter-spacing:-7.266700pt;}
.ls30_c00226{letter-spacing:-6.601000pt;}
.ls13_c00226{letter-spacing:-6.480840pt;}
.ls2a_c00226{letter-spacing:-5.943773pt;}
.lse_c00226{letter-spacing:-5.943000pt;}
.ls11_c00226{letter-spacing:-5.285000pt;}
.ls12_c00226{letter-spacing:-4.625000pt;}
.lsc_c00226{letter-spacing:-4.619300pt;}
.ls20_c00226{letter-spacing:-4.541667pt;}
.ls27_c00226{letter-spacing:-4.120000pt;}
.ls5_c00226{letter-spacing:-3.961300pt;}
.ls28_c00226{letter-spacing:-3.958933pt;}
.ls9_c00226{letter-spacing:-3.927700pt;}
.ls14_c00226{letter-spacing:-3.920867pt;}
.ls18_c00226{letter-spacing:-3.597000pt;}
.ls19_c00226{letter-spacing:-3.502247pt;}
.ls4_c00226{letter-spacing:-3.304000pt;}
.ls6_c00226{letter-spacing:-3.274200pt;}
.ls1a_c00226{letter-spacing:-2.793600pt;}
.ls1f_c00226{letter-spacing:-2.641600pt;}
.ls2_c00226{letter-spacing:-2.639000pt;}
.ls15_c00226{letter-spacing:-2.256867pt;}
.ls29_c00226{letter-spacing:-2.142400pt;}
.ls1_c00226{letter-spacing:-1.981700pt;}
.ls25_c00226{letter-spacing:-1.455200pt;}
.ls17_c00226{letter-spacing:-1.442133pt;}
.ls10_c00226{letter-spacing:-1.386700pt;}
.ls3_c00226{letter-spacing:-1.323700pt;}
.ls24_c00226{letter-spacing:-1.318400pt;}
.ls2e_c00226{letter-spacing:-1.311093pt;}
.ls23_c00226{letter-spacing:-0.739467pt;}
.lsb_c00226{letter-spacing:-0.658000pt;}
.ls7_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:1.323700pt;}
.ls22_c00226{letter-spacing:1.568800pt;}
.ls1c_c00226{letter-spacing:2.172667pt;}
.lsd_c00226{letter-spacing:4.077333pt;}
.ls1b_c00226{letter-spacing:4.613000pt;}
.ls2d_c00226{letter-spacing:4.656933pt;}
.ls26_c00226{letter-spacing:5.103700pt;}
.ls31_c00226{letter-spacing:5.938800pt;}
.ls2c_c00226{letter-spacing:16.546927pt;}
.ws0_c00226{word-spacing:0.000000pt;}
._1e_c00226{margin-left:-29.511067pt;}
._1d_c00226{margin-left:-9.944345pt;}
._19_c00226{margin-left:-5.114794pt;}
._11_c00226{margin-left:-4.158053pt;}
._12_c00226{margin-left:-3.007913pt;}
._10_c00226{margin-left:-1.970289pt;}
._1a_c00226{margin-left:-1.005755pt;}
._e_c00226{width:0.916551pt;}
._c_c00226{width:2.289502pt;}
._d_c00226{width:3.333691pt;}
._17_c00226{width:4.551136pt;}
._f_c00226{width:6.203915pt;}
._4_c00226{width:7.458711pt;}
._2_c00226{width:8.905968pt;}
._1_c00226{width:10.114762pt;}
._0_c00226{width:11.333409pt;}
._3_c00226{width:12.527121pt;}
._b_c00226{width:13.516366pt;}
._18_c00226{width:14.475274pt;}
._13_c00226{width:15.467345pt;}
._1c_c00226{width:16.499449pt;}
._14_c00226{width:17.413398pt;}
._a_c00226{width:19.325745pt;}
._15_c00226{width:20.858402pt;}
._1b_c00226{width:22.328402pt;}
._6_c00226{width:23.791613pt;}
._5_c00226{width:25.553157pt;}
._8_c00226{width:27.578006pt;}
._7_c00226{width:29.211026pt;}
._16_c00226{width:34.138577pt;}
._9_c00226{width:37.608543pt;}
.fsf_c00226{font-size:15.333333pt;}
.fs10_c00226{font-size:62.666667pt;}
.fs8_c00226{font-size:64.666667pt;}
.fs11_c00226{font-size:65.333333pt;}
.fsc_c00226{font-size:66.000000pt;}
.fsb_c00226{font-size:66.666667pt;}
.fs13_c00226{font-size:67.333333pt;}
.fs12_c00226{font-size:68.000000pt;}
.fs7_c00226{font-size:68.666667pt;}
.fs6_c00226{font-size:69.333333pt;}
.fs0_c00226{font-size:70.000000pt;}
.fs5_c00226{font-size:70.666667pt;}
.fs1_c00226{font-size:71.333333pt;}
.fsa_c00226{font-size:72.000000pt;}
.fs9_c00226{font-size:72.666667pt;}
.fs2_c00226{font-size:73.333333pt;}
.fs4_c00226{font-size:74.000000pt;}
.fs3_c00226{font-size:75.333333pt;}
.fse_c00226{font-size:76.000000pt;}
.fsd_c00226{font-size:90.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y2f_c00226{bottom:189.120133pt;}
.y2e_c00226{bottom:189.120787pt;}
.y2d_c00226{bottom:208.320147pt;}
.y2c_c00226{bottom:226.878920pt;}
.y2b_c00226{bottom:245.759720pt;}
.y2a_c00226{bottom:298.239200pt;}
.y29_c00226{bottom:298.239280pt;}
.y27_c00226{bottom:325.118573pt;}
.y28_c00226{bottom:325.119200pt;}
.y26_c00226{bottom:351.039587pt;}
.y25_c00226{bottom:377.279333pt;}
.y24_c00226{bottom:403.519040pt;}
.y23_c00226{bottom:403.519373pt;}
.y22_c00226{bottom:430.719720pt;}
.y21_c00226{bottom:436.798787pt;}
.y20_c00226{bottom:456.959560pt;}
.y1f_c00226{bottom:483.839480pt;}
.y1e_c00226{bottom:510.079067pt;}
.y1c_c00226{bottom:537.278933pt;}
.y1d_c00226{bottom:537.279707pt;}
.y1b_c00226{bottom:562.239173pt;}
.y1a_c00226{bottom:562.240093pt;}
.y19_c00226{bottom:588.799840pt;}
.y17_c00226{bottom:641.279253pt;}
.y18_c00226{bottom:641.279293pt;}
.y16_c00226{bottom:668.159173pt;}
.y14_c00226{bottom:694.719053pt;}
.y15_c00226{bottom:694.719720pt;}
.y12_c00226{bottom:721.278280pt;}
.y13_c00226{bottom:721.278813pt;}
.y11_c00226{bottom:748.160080pt;}
.y10_c00226{bottom:748.161453pt;}
.yf_c00226{bottom:774.080613pt;}
.ye_c00226{bottom:800.640360pt;}
.yc_c00226{bottom:827.199520pt;}
.yd_c00226{bottom:827.200120pt;}
.yb_c00226{bottom:853.759280pt;}
.ya_c00226{bottom:853.760067pt;}
.y9_c00226{bottom:880.319827pt;}
.y8_c00226{bottom:906.878907pt;}
.y7_c00226{bottom:906.878920pt;}
.y5_c00226{bottom:933.119440pt;}
.y6_c00226{bottom:933.120120pt;}
.y3_c00226{bottom:959.678587pt;}
.y4_c00226{bottom:959.679200pt;}
.y2_c00226{bottom:985.599613pt;}
.y1_c00226{bottom:1012.479413pt;}
.h14_c00226{height:15.992187pt;}
.h10_c00226{height:64.775391pt;}
.h16_c00226{height:65.359375pt;}
.hf_c00226{height:65.429688pt;}
.h1b_c00226{height:66.738281pt;}
.h9_c00226{height:67.392578pt;}
.ha_c00226{height:67.445312pt;}
.h8_c00226{height:68.046875pt;}
.h1a_c00226{height:68.140625pt;}
.h1_c00226{height:68.701172pt;}
.h19_c00226{height:69.203125pt;}
.h7_c00226{height:69.355469pt;}
.hb_c00226{height:69.875000pt;}
.h2_c00226{height:70.009766pt;}
.h1d_c00226{height:70.226562pt;}
.h1c_c00226{height:70.497396pt;}
.h18_c00226{height:70.546875pt;}
.h15_c00226{height:71.218750pt;}
.h13_c00226{height:71.318359pt;}
.h17_c00226{height:71.890625pt;}
.h3_c00226{height:71.972656pt;}
.h4_c00226{height:72.473958pt;}
.he_c00226{height:72.562500pt;}
.h6_c00226{height:72.626953pt;}
.hc_c00226{height:73.234375pt;}
.h5_c00226{height:73.935547pt;}
.h12_c00226{height:75.109375pt;}
.hd_c00226{height:75.921875pt;}
.h11_c00226{height:93.867188pt;}
.h0_c00226{height:1122.666667pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x32_c00226{left:87.999067pt;}
.x1_c00226{left:122.239720pt;}
.x36_c00226{left:123.199200pt;}
.x2b_c00226{left:150.719200pt;}
.x2a_c00226{left:159.999067pt;}
.x2c_c00226{left:168.959467pt;}
.x4a_c00226{left:171.515907pt;}
.x46_c00226{left:172.479467pt;}
.x37_c00226{left:180.799867pt;}
.x47_c00226{left:191.039067pt;}
.x24_c00226{left:193.918920pt;}
.x33_c00226{left:198.719200pt;}
.x48_c00226{left:200.318787pt;}
.xb_c00226{left:207.999067pt;}
.x44_c00226{left:208.960000pt;}
.x34_c00226{left:212.159200pt;}
.xc_c00226{left:221.438920pt;}
.x45_c00226{left:234.878920pt;}
.x9_c00226{left:245.119587pt;}
.x38_c00226{left:249.279720pt;}
.x16_c00226{left:258.238787pt;}
.xa_c00226{left:262.719720pt;}
.x39_c00226{left:266.879867pt;}
.x1d_c00226{left:270.399867pt;}
.x2d_c00226{left:273.599067pt;}
.x17_c00226{left:277.759320pt;}
.x30_c00226{left:279.358933pt;}
.x3a_c00226{left:288.000000pt;}
.x2e_c00226{left:292.158667pt;}
.x4b_c00226{left:298.879333pt;}
.x31_c00226{left:300.479067pt;}
.x25_c00226{left:318.399867pt;}
.x20_c00226{left:339.839320pt;}
.x18_c00226{left:350.078693pt;}
.x21_c00226{left:355.519040pt;}
.x26_c00226{left:362.879840pt;}
.x19_c00226{left:364.798787pt;}
.x49_c00226{left:371.519453pt;}
.x1a_c00226{left:384.000000pt;}
.x27_c00226{left:386.239707pt;}
.x3b_c00226{left:390.079067pt;}
.x3c_c00226{left:411.199173pt;}
.x22_c00226{left:418.239173pt;}
.x23_c00226{left:433.278813pt;}
.x1e_c00226{left:440.639613pt;}
.x28_c00226{left:441.599040pt;}
.x1f_c00226{left:462.079067pt;}
.x42_c00226{left:463.359333pt;}
.x3d_c00226{left:467.519453pt;}
.x14_c00226{left:474.238773pt;}
.x43_c00226{left:477.758787pt;}
.x15_c00226{left:490.239173pt;}
.x11_c00226{left:508.479453pt;}
.x12_c00226{left:528.959467pt;}
.x3e_c00226{left:531.839320pt;}
.x29_c00226{left:536.639573pt;}
.xe_c00226{left:539.838907pt;}
.xf_c00226{left:551.679200pt;}
.x3f_c00226{left:557.759720pt;}
.x13_c00226{left:559.678707pt;}
.x5_c00226{left:587.838907pt;}
.x1b_c00226{left:590.399453pt;}
.x40_c00226{left:594.238773pt;}
.x2_c00226{left:599.039067pt;}
.x6_c00226{left:612.159707pt;}
.x1c_c00226{left:613.759320pt;}
.x3_c00226{left:617.598720pt;}
.x41_c00226{left:639.999067pt;}
.x10_c00226{left:650.239707pt;}
.x7_c00226{left:661.439987pt;}
.x2f_c00226{left:674.559040pt;}
.x8_c00226{left:675.839320pt;}
.xd_c00226{left:677.438920pt;}
.x4_c00226{left:682.558507pt;}
.x35_c00226{left:683.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f0900e2b1ba58b0dbe5d78.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_809bd3c4245ad5bbc5a199dc.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_9e70d89f05775bfbe5c71963.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_2246ec7b19327505e4d82f4b.woff2')format("woff");}.ff5_c00227{font-family:ff5_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;}
@font-face{font-family:ff6_c00227;src:url('chunks/assets/font_226a1d12bf183c829a127970.woff2')format("woff");}.ff6_c00227{font-family:ff6_c00227;line-height:1.364746;font-style:normal;font-weight: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_c00227;src:url('chunks/assets/font_951e44e7f9880987a4482fef.woff2')format("woff");}.ff7_c00227{font-family:ff7_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2f_c00227{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m32_c00227{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m33_c00227{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m3b_c00227{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m27_c00227{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m37_c00227{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.m35_c00227{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m28_c00227{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m13_c00227{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m26_c00227{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m16_c00227{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m2a_c00227{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263441,0.000000,0.000000,0.250000,0,0);}
.m39_c00227{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m3a_c00227{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);}
.m22_c00227{transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.334158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334158,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);}
.m20_c00227{transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.389423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389423,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438776,0.000000,0.000000,0.250000,0,0);}
.m2d_c00227{transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.577778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577778,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{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_c00227{vertical-align:0.000000px;}
.v1_c00227{vertical-align:1.440720px;}
.ls20_c00227{letter-spacing:-27.895800px;}
.ls1e_c00227{letter-spacing:-27.501375px;}
.ls2f_c00227{letter-spacing:-18.577125px;}
.ls3a_c00227{letter-spacing:-14.594850px;}
.ls28_c00227{letter-spacing:-14.112000px;}
.ls37_c00227{letter-spacing:-13.149045px;}
.ls8_c00227{letter-spacing:-10.576500px;}
.ls2b_c00227{letter-spacing:-10.402875px;}
.lsb_c00227{letter-spacing:-8.976375px;}
.ls39_c00227{letter-spacing:-8.914500px;}
.ls1a_c00227{letter-spacing:-8.175038px;}
.ls35_c00227{letter-spacing:-7.426125px;}
.ls18_c00227{letter-spacing:-6.813225px;}
.ls2d_c00227{letter-spacing:-6.685875px;}
.ls38_c00227{letter-spacing:-6.603120px;}
.ls16_c00227{letter-spacing:-5.945625px;}
.ls2c_c00227{letter-spacing:-5.842125px;}
.lsf_c00227{letter-spacing:-5.736128px;}
.ls2e_c00227{letter-spacing:-5.626125px;}
.ls25_c00227{letter-spacing:-5.457675px;}
.ls1b_c00227{letter-spacing:-5.196713px;}
.ls19_c00227{letter-spacing:-5.151600px;}
.ls34_c00227{letter-spacing:-4.456463px;}
.ls32_c00227{letter-spacing:-4.453800px;}
.lsc_c00227{letter-spacing:-4.381650px;}
.ls33_c00227{letter-spacing:-4.334498px;}
.ls15_c00227{letter-spacing:-3.717000px;}
.ls9_c00227{letter-spacing:-3.651375px;}
.ls31_c00227{letter-spacing:-3.643575px;}
.ls7_c00227{letter-spacing:-3.189075px;}
.ls14_c00227{letter-spacing:-2.968875px;}
.ls6_c00227{letter-spacing:-2.921903px;}
.ls12_c00227{letter-spacing:-2.714400px;}
.ls1c_c00227{letter-spacing:-2.406690px;}
.ls17_c00227{letter-spacing:-2.229413px;}
.ls5_c00227{letter-spacing:-2.190825px;}
.ls22_c00227{letter-spacing:-1.769700px;}
.ls26_c00227{letter-spacing:-1.708508px;}
.ls41_c00227{letter-spacing:-1.658475px;}
.ls3e_c00227{letter-spacing:-1.525665px;}
.ls1_c00227{letter-spacing:-1.489163px;}
.ls11_c00227{letter-spacing:-1.361520px;}
.ls40_c00227{letter-spacing:-1.038375px;}
.ls21_c00227{letter-spacing:-0.931095px;}
.ls36_c00227{letter-spacing:-0.845985px;}
.lsd_c00227{letter-spacing:-0.794205px;}
.ls3b_c00227{letter-spacing:-0.779100px;}
.ls42_c00227{letter-spacing:-0.763568px;}
.ls3f_c00227{letter-spacing:-0.750750px;}
.ls13_c00227{letter-spacing:-0.740250px;}
.ls44_c00227{letter-spacing:-0.704550px;}
.ls24_c00227{letter-spacing:-0.470475px;}
.ls2_c00227{letter-spacing:0.000000px;}
.ls1d_c00227{letter-spacing:0.665640px;}
.ls3c_c00227{letter-spacing:0.741780px;}
.lsa_c00227{letter-spacing:0.810525px;}
.ls3d_c00227{letter-spacing:0.892800px;}
.ls1f_c00227{letter-spacing:0.963300px;}
.ls43_c00227{letter-spacing:1.421550px;}
.ls0_c00227{letter-spacing:1.489163px;}
.ls45_c00227{letter-spacing:1.714080px;}
.ls3_c00227{letter-spacing:1.747680px;}
.ls27_c00227{letter-spacing:2.752673px;}
.lse_c00227{letter-spacing:2.845800px;}
.ls2a_c00227{letter-spacing:3.412200px;}
.ls30_c00227{letter-spacing:4.401000px;}
.ls10_c00227{letter-spacing:4.789125px;}
.ls29_c00227{letter-spacing:5.124000px;}
.ls4_c00227{letter-spacing:5.675955px;}
.ls23_c00227{letter-spacing:22.085100px;}
.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;}
._5_c00227{margin-left:-34.904140px;}
._19_c00227{margin-left:-32.452310px;}
._0_c00227{margin-left:-14.669642px;}
._12_c00227{margin-left:-6.653513px;}
._1c_c00227{margin-left:-4.930166px;}
._13_c00227{margin-left:-3.924573px;}
._1_c00227{margin-left:-1.991914px;}
._10_c00227{width:1.026335px;}
._a_c00227{width:2.086325px;}
._2_c00227{width:3.763715px;}
._17_c00227{width:4.813452px;}
._4_c00227{width:6.183539px;}
._9_c00227{width:7.888818px;}
._3_c00227{width:9.132860px;}
._16_c00227{width:10.192731px;}
._8_c00227{width:11.715236px;}
._1a_c00227{width:12.752806px;}
._6_c00227{width:13.804370px;}
._15_c00227{width:14.918222px;}
._7_c00227{width:17.017905px;}
._1b_c00227{width:18.328468px;}
._14_c00227{width:20.052053px;}
._1e_c00227{width:21.194775px;}
._b_c00227{width:22.671976px;}
._1f_c00227{width:23.864162px;}
._c_c00227{width:25.352047px;}
._e_c00227{width:27.402207px;}
._11_c00227{width:28.556533px;}
._f_c00227{width:29.592645px;}
._d_c00227{width:31.444905px;}
._1d_c00227{width:37.301364px;}
._18_c00227{width:93.130446px;}
.fc0_c00227{color:transparent;}
.fs14_c00227{font-size:25.500000px;}
.fs19_c00227{font-size:33.750000px;}
.fs17_c00227{font-size:35.250000px;}
.fse_c00227{font-size:36.000000px;}
.fs16_c00227{font-size:36.750000px;}
.fs10_c00227{font-size:38.250000px;}
.fsd_c00227{font-size:39.000000px;}
.fs15_c00227{font-size:39.750000px;}
.fs12_c00227{font-size:40.500000px;}
.fsf_c00227{font-size:41.250000px;}
.fs22_c00227{font-size:42.000000px;}
.fs24_c00227{font-size:45.750000px;}
.fs1f_c00227{font-size:46.500000px;}
.fs23_c00227{font-size:47.250000px;}
.fs2_c00227{font-size:48.000000px;}
.fs21_c00227{font-size:48.750000px;}
.fs1d_c00227{font-size:50.250000px;}
.fs18_c00227{font-size:52.500000px;}
.fs13_c00227{font-size:55.500000px;}
.fs11_c00227{font-size:57.000000px;}
.fs20_c00227{font-size:57.750000px;}
.fsa_c00227{font-size:65.250000px;}
.fs9_c00227{font-size:69.750000px;}
.fs3_c00227{font-size:70.500000px;}
.fsc_c00227{font-size:72.000000px;}
.fs1c_c00227{font-size:73.500000px;}
.fsb_c00227{font-size:74.250000px;}
.fs5_c00227{font-size:75.750000px;}
.fs1b_c00227{font-size:77.250000px;}
.fs1a_c00227{font-size:78.000000px;}
.fs0_c00227{font-size:78.750000px;}
.fs8_c00227{font-size:79.500000px;}
.fs4_c00227{font-size:80.250000px;}
.fs7_c00227{font-size:81.000000px;}
.fs6_c00227{font-size:82.500000px;}
.fs1e_c00227{font-size:85.500000px;}
.fs1_c00227{font-size:115.500000px;}
.y0_c00227{bottom:0.000000px;}
.y2c_c00227{bottom:128.518665px;}
.y2b_c00227{bottom:168.838950px;}
.y2a_c00227{bottom:240.478635px;}
.y29_c00227{bottom:240.478980px;}
.y28_c00227{bottom:270.358710px;}
.y27_c00227{bottom:299.878230px;}
.y26_c00227{bottom:329.039385px;}
.y25_c00227{bottom:358.920000px;}
.y24_c00227{bottom:358.920180px;}
.y22_c00227{bottom:388.439055px;}
.y23_c00227{bottom:388.439715px;}
.y21_c00227{bottom:418.318770px;}
.y20_c00227{bottom:448.199340px;}
.y1f_c00227{bottom:478.439250px;}
.y1e_c00227{bottom:487.438665px;}
.y1d_c00227{bottom:507.958185px;}
.y1c_c00227{bottom:567.359250px;}
.y1b_c00227{bottom:567.360285px;}
.y1a_c00227{bottom:597.240000px;}
.y18_c00227{bottom:626.758845px;}
.y19_c00227{bottom:626.759535px;}
.y17_c00227{bottom:655.920000px;}
.y16_c00227{bottom:655.920135px;}
.y15_c00227{bottom:685.439670px;}
.y14_c00227{bottom:685.439760px;}
.y13_c00227{bottom:715.679670px;}
.y12_c00227{bottom:745.199385px;}
.y11_c00227{bottom:752.039985px;}
.y10_c00227{bottom:775.439550px;}
.yf_c00227{bottom:805.679460px;}
.ye_c00227{bottom:835.198995px;}
.yd_c00227{bottom:894.239865px;}
.yc_c00227{bottom:894.239955px;}
.ya_c00227{bottom:923.759445px;}
.yb_c00227{bottom:923.759490px;}
.y9_c00227{bottom:953.999355px;}
.y8_c00227{bottom:953.999535px;}
.y6_c00227{bottom:983.517720px;}
.y7_c00227{bottom:983.519070px;}
.y4_c00227{bottom:1013.759040px;}
.y5_c00227{bottom:1014.119940px;}
.y3_c00227{bottom:1043.278755px;}
.y2_c00227{bottom:1073.879520px;}
.y1_c00227{bottom:1132.918950px;}
.h1a_c00227{height:26.595703px;}
.h21_c00227{height:33.123779px;}
.h20_c00227{height:34.595947px;}
.h1c_c00227{height:36.068115px;}
.h1d_c00227{height:36.764648px;}
.h14_c00227{height:37.546875px;}
.h1e_c00227{height:37.801758px;}
.h13_c00227{height:39.304688px;}
.h16_c00227{height:39.893555px;}
.h15_c00227{height:40.766602px;}
.h18_c00227{height:40.816406px;}
.h1b_c00227{height:41.458008px;}
.h2b_c00227{height:42.240234px;}
.h2d_c00227{height:43.804688px;}
.h2f_c00227{height:46.107422px;}
.h29_c00227{height:46.863281px;}
.h2e_c00227{height:47.619141px;}
.h2c_c00227{height:48.178711px;}
.h30_c00227{height:48.375000px;}
.h28_c00227{height:48.498047px;}
.h3_c00227{height:50.062500px;}
.h1f_c00227{height:51.525879px;}
.h25_c00227{height:52.409180px;}
.h19_c00227{height:55.933594px;}
.h17_c00227{height:56.332031px;}
.h2a_c00227{height:60.231445px;}
.hc_c00227{height:68.053711px;}
.hb_c00227{height:68.455811px;}
.h4_c00227{height:69.191895px;}
.he_c00227{height:70.664062px;}
.hd_c00227{height:72.872314px;}
.h8_c00227{height:74.344482px;}
.h27_c00227{height:75.093750px;}
.h23_c00227{height:75.816650px;}
.h22_c00227{height:76.552734px;}
.h24_c00227{height:76.658203px;}
.h1_c00227{height:77.288818px;}
.ha_c00227{height:78.024902px;}
.h12_c00227{height:78.722338px;}
.h11_c00227{height:78.729538px;}
.h5_c00227{height:78.760986px;}
.h6_c00227{height:79.004883px;}
.h9_c00227{height:79.497070px;}
.h10_c00227{height:80.876953px;}
.hf_c00227{height:80.969238px;}
.h7_c00227{height:81.533203px;}
.h26_c00227{height:84.498047px;}
.h2_c00227{height:120.462891px;}
.h0_c00227{height:1263.000000px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x3d_c00227{left:100.798515px;}
.x2c_c00227{left:138.599100px;}
.x4_c00227{left:139.678500px;}
.x40_c00227{left:141.118815px;}
.x5_c00227{left:164.878950px;}
.x52_c00227{left:170.999400px;}
.x1e_c00227{left:177.120000px;}
.x41_c00227{left:185.758500px;}
.x53_c00227{left:188.279850px;}
.x1_c00227{left:193.678500px;}
.x1f_c00227{left:203.038950px;}
.x18_c00227{left:208.798515px;}
.x42_c00227{left:210.238785px;}
.x20_c00227{left:213.119385px;}
.x19_c00227{left:225.719535px;}
.x16_c00227{left:235.080000px;}
.x29_c00227{left:238.319850px;}
.x2a_c00227{left:246.958350px;}
.x17_c00227{left:249.479685px;}
.x54_c00227{left:253.439685px;}
.x47_c00227{left:258.838515px;}
.x6_c00227{left:265.679100px;}
.x2_c00227{left:275.039385px;}
.x55_c00227{left:280.439685px;}
.x3_c00227{left:281.519100px;}
.x21_c00227{left:289.439235px;}
.x56_c00227{left:293.758500px;}
.x31_c00227{left:299.878950px;}
.x3b_c00227{left:312.838515px;}
.x1a_c00227{left:322.559685px;}
.x32_c00227{left:325.438635px;}
.x3c_c00227{left:327.958350px;}
.x57_c00227{left:331.559100px;}
.x1b_c00227{left:336.598530px;}
.x7_c00227{left:347.399235px;}
.x8_c00227{left:366.838515px;}
.x58_c00227{left:371.518635px;}
.x22_c00227{left:388.439715px;}
.x43_c00227{left:391.679670px;}
.x59_c00227{left:407.878920px;}
.x23_c00227{left:416.519070px;}
.x44_c00227{left:420.838530px;}
.x1c_c00227{left:438.118785px;}
.x9_c00227{left:442.439670px;}
.x1d_c00227{left:451.080000px;}
.xa_c00227{left:460.079400px;}
.x24_c00227{left:461.878920px;}
.x14_c00227{left:463.678530px;}
.x5a_c00227{left:470.159820px;}
.x2d_c00227{left:471.239220px;}
.x15_c00227{left:483.119385px;}
.x2e_c00227{left:488.878920px;}
.x25_c00227{left:494.999400px;}
.xb_c00227{left:511.198785px;}
.x4a_c00227{left:513.718500px;}
.x39_c00227{left:520.918350px;}
.x45_c00227{left:525.598530px;}
.x4b_c00227{left:529.199385px;}
.xc_c00227{left:533.879520px;}
.x3a_c00227{left:534.958920px;}
.x33_c00227{left:540.000000px;}
.x46_c00227{left:544.319235px;}
.x34_c00227{left:554.759085px;}
.x26_c00227{left:558.719100px;}
.xd_c00227{left:564.478635px;}
.x4c_c00227{left:573.838950px;}
.x27_c00227{left:581.399820px;}
.x50_c00227{left:601.199850px;}
.xe_c00227{left:602.999400px;}
.x4d_c00227{left:606.959385px;}
.x51_c00227{left:616.319820px;}
.xf_c00227{left:624.958335px;}
.x4f_c00227{left:629.638545px;}
.x2f_c00227{left:631.078770px;}
.x35_c00227{left:635.399820px;}
.x30_c00227{left:645.119385px;}
.x28_c00227{left:659.159820px;}
.x36_c00227{left:661.318770px;}
.x10_c00227{left:685.439670px;}
.x48_c00227{left:696.599670px;}
.x2b_c00227{left:698.039985px;}
.x11_c00227{left:707.398635px;}
.x49_c00227{left:718.558635px;}
.x12_c00227{left:726.839535px;}
.x37_c00227{left:733.678530px;}
.x13_c00227{left:742.318770px;}
.x3e_c00227{left:751.319820px;}
.x38_c00227{left:752.758530px;}
.x4e_c00227{left:756.000000px;}
.x3f_c00227{left:765.719520px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.v1_c00227{vertical-align:1.280640pt;}
.ls20_c00227{letter-spacing:-24.796267pt;}
.ls1e_c00227{letter-spacing:-24.445667pt;}
.ls2f_c00227{letter-spacing:-16.513000pt;}
.ls3a_c00227{letter-spacing:-12.973200pt;}
.ls28_c00227{letter-spacing:-12.544000pt;}
.ls37_c00227{letter-spacing:-11.688040pt;}
.ls8_c00227{letter-spacing:-9.401333pt;}
.ls2b_c00227{letter-spacing:-9.247000pt;}
.lsb_c00227{letter-spacing:-7.979000pt;}
.ls39_c00227{letter-spacing:-7.924000pt;}
.ls1a_c00227{letter-spacing:-7.266700pt;}
.ls35_c00227{letter-spacing:-6.601000pt;}
.ls18_c00227{letter-spacing:-6.056200pt;}
.ls2d_c00227{letter-spacing:-5.943000pt;}
.ls38_c00227{letter-spacing:-5.869440pt;}
.ls16_c00227{letter-spacing:-5.285000pt;}
.ls2c_c00227{letter-spacing:-5.193000pt;}
.lsf_c00227{letter-spacing:-5.098780pt;}
.ls2e_c00227{letter-spacing:-5.001000pt;}
.ls25_c00227{letter-spacing:-4.851267pt;}
.ls1b_c00227{letter-spacing:-4.619300pt;}
.ls19_c00227{letter-spacing:-4.579200pt;}
.ls34_c00227{letter-spacing:-3.961300pt;}
.ls32_c00227{letter-spacing:-3.958933pt;}
.lsc_c00227{letter-spacing:-3.894800pt;}
.ls33_c00227{letter-spacing:-3.852887pt;}
.ls15_c00227{letter-spacing:-3.304000pt;}
.ls9_c00227{letter-spacing:-3.245667pt;}
.ls31_c00227{letter-spacing:-3.238733pt;}
.ls7_c00227{letter-spacing:-2.834733pt;}
.ls14_c00227{letter-spacing:-2.639000pt;}
.ls6_c00227{letter-spacing:-2.597247pt;}
.ls12_c00227{letter-spacing:-2.412800pt;}
.ls1c_c00227{letter-spacing:-2.139280pt;}
.ls17_c00227{letter-spacing:-1.981700pt;}
.ls5_c00227{letter-spacing:-1.947400pt;}
.ls22_c00227{letter-spacing:-1.573067pt;}
.ls26_c00227{letter-spacing:-1.518673pt;}
.ls41_c00227{letter-spacing:-1.474200pt;}
.ls3e_c00227{letter-spacing:-1.356147pt;}
.ls1_c00227{letter-spacing:-1.323700pt;}
.ls11_c00227{letter-spacing:-1.210240pt;}
.ls40_c00227{letter-spacing:-0.923000pt;}
.ls21_c00227{letter-spacing:-0.827640pt;}
.ls36_c00227{letter-spacing:-0.751987pt;}
.lsd_c00227{letter-spacing:-0.705960pt;}
.ls3b_c00227{letter-spacing:-0.692533pt;}
.ls42_c00227{letter-spacing:-0.678727pt;}
.ls3f_c00227{letter-spacing:-0.667333pt;}
.ls13_c00227{letter-spacing:-0.658000pt;}
.ls44_c00227{letter-spacing:-0.626267pt;}
.ls24_c00227{letter-spacing:-0.418200pt;}
.ls2_c00227{letter-spacing:0.000000pt;}
.ls1d_c00227{letter-spacing:0.591680pt;}
.ls3c_c00227{letter-spacing:0.659360pt;}
.lsa_c00227{letter-spacing:0.720467pt;}
.ls3d_c00227{letter-spacing:0.793600pt;}
.ls1f_c00227{letter-spacing:0.856267pt;}
.ls43_c00227{letter-spacing:1.263600pt;}
.ls0_c00227{letter-spacing:1.323700pt;}
.ls45_c00227{letter-spacing:1.523627pt;}
.ls3_c00227{letter-spacing:1.553493pt;}
.ls27_c00227{letter-spacing:2.446820pt;}
.lse_c00227{letter-spacing:2.529600pt;}
.ls2a_c00227{letter-spacing:3.033067pt;}
.ls30_c00227{letter-spacing:3.912000pt;}
.ls10_c00227{letter-spacing:4.257000pt;}
.ls29_c00227{letter-spacing:4.554667pt;}
.ls4_c00227{letter-spacing:5.045293pt;}
.ls23_c00227{letter-spacing:19.631200pt;}
.ws0_c00227{word-spacing:0.000000pt;}
._5_c00227{margin-left:-31.025902pt;}
._19_c00227{margin-left:-28.846498pt;}
._0_c00227{margin-left:-13.039681pt;}
._12_c00227{margin-left:-5.914234pt;}
._1c_c00227{margin-left:-4.382370pt;}
._13_c00227{margin-left:-3.488509pt;}
._1_c00227{margin-left:-1.770590pt;}
._10_c00227{width:0.912298pt;}
._a_c00227{width:1.854511pt;}
._2_c00227{width:3.345525pt;}
._17_c00227{width:4.278624pt;}
._4_c00227{width:5.496479pt;}
._9_c00227{width:7.012283pt;}
._3_c00227{width:8.118098pt;}
._16_c00227{width:9.060206pt;}
._8_c00227{width:10.413543pt;}
._1a_c00227{width:11.335828pt;}
._6_c00227{width:12.270551pt;}
._15_c00227{width:13.260642pt;}
._7_c00227{width:15.127026pt;}
._1b_c00227{width:16.291972pt;}
._14_c00227{width:17.824047pt;}
._1e_c00227{width:18.839800pt;}
._b_c00227{width:20.152868pt;}
._1f_c00227{width:21.212589pt;}
._c_c00227{width:22.535153pt;}
._e_c00227{width:24.357517pt;}
._11_c00227{width:25.383585pt;}
._f_c00227{width:26.304574pt;}
._d_c00227{width:27.951026pt;}
._1d_c00227{width:33.156768pt;}
._18_c00227{width:82.782619pt;}
.fs14_c00227{font-size:22.666667pt;}
.fs19_c00227{font-size:30.000000pt;}
.fs17_c00227{font-size:31.333333pt;}
.fse_c00227{font-size:32.000000pt;}
.fs16_c00227{font-size:32.666667pt;}
.fs10_c00227{font-size:34.000000pt;}
.fsd_c00227{font-size:34.666667pt;}
.fs15_c00227{font-size:35.333333pt;}
.fs12_c00227{font-size:36.000000pt;}
.fsf_c00227{font-size:36.666667pt;}
.fs22_c00227{font-size:37.333333pt;}
.fs24_c00227{font-size:40.666667pt;}
.fs1f_c00227{font-size:41.333333pt;}
.fs23_c00227{font-size:42.000000pt;}
.fs2_c00227{font-size:42.666667pt;}
.fs21_c00227{font-size:43.333333pt;}
.fs1d_c00227{font-size:44.666667pt;}
.fs18_c00227{font-size:46.666667pt;}
.fs13_c00227{font-size:49.333333pt;}
.fs11_c00227{font-size:50.666667pt;}
.fs20_c00227{font-size:51.333333pt;}
.fsa_c00227{font-size:58.000000pt;}
.fs9_c00227{font-size:62.000000pt;}
.fs3_c00227{font-size:62.666667pt;}
.fsc_c00227{font-size:64.000000pt;}
.fs1c_c00227{font-size:65.333333pt;}
.fsb_c00227{font-size:66.000000pt;}
.fs5_c00227{font-size:67.333333pt;}
.fs1b_c00227{font-size:68.666667pt;}
.fs1a_c00227{font-size:69.333333pt;}
.fs0_c00227{font-size:70.000000pt;}
.fs8_c00227{font-size:70.666667pt;}
.fs4_c00227{font-size:71.333333pt;}
.fs7_c00227{font-size:72.000000pt;}
.fs6_c00227{font-size:73.333333pt;}
.fs1e_c00227{font-size:76.000000pt;}
.fs1_c00227{font-size:102.666667pt;}
.y0_c00227{bottom:0.000000pt;}
.y2c_c00227{bottom:114.238813pt;}
.y2b_c00227{bottom:150.079067pt;}
.y2a_c00227{bottom:213.758787pt;}
.y29_c00227{bottom:213.759093pt;}
.y28_c00227{bottom:240.318853pt;}
.y27_c00227{bottom:266.558427pt;}
.y26_c00227{bottom:292.479453pt;}
.y25_c00227{bottom:319.040000pt;}
.y24_c00227{bottom:319.040160pt;}
.y22_c00227{bottom:345.279160pt;}
.y23_c00227{bottom:345.279747pt;}
.y21_c00227{bottom:371.838907pt;}
.y20_c00227{bottom:398.399413pt;}
.y1f_c00227{bottom:425.279333pt;}
.y1e_c00227{bottom:433.278813pt;}
.y1d_c00227{bottom:451.518387pt;}
.y1c_c00227{bottom:504.319333pt;}
.y1b_c00227{bottom:504.320253pt;}
.y1a_c00227{bottom:530.880000pt;}
.y18_c00227{bottom:557.118973pt;}
.y19_c00227{bottom:557.119587pt;}
.y17_c00227{bottom:583.040000pt;}
.y16_c00227{bottom:583.040120pt;}
.y15_c00227{bottom:609.279707pt;}
.y14_c00227{bottom:609.279787pt;}
.y13_c00227{bottom:636.159707pt;}
.y12_c00227{bottom:662.399453pt;}
.y11_c00227{bottom:668.479987pt;}
.y10_c00227{bottom:689.279600pt;}
.yf_c00227{bottom:716.159520pt;}
.ye_c00227{bottom:742.399107pt;}
.yd_c00227{bottom:794.879880pt;}
.yc_c00227{bottom:794.879960pt;}
.ya_c00227{bottom:821.119507pt;}
.yb_c00227{bottom:821.119547pt;}
.y9_c00227{bottom:847.999427pt;}
.y8_c00227{bottom:847.999587pt;}
.y6_c00227{bottom:874.237973pt;}
.y7_c00227{bottom:874.239173pt;}
.y4_c00227{bottom:901.119147pt;}
.y5_c00227{bottom:901.439947pt;}
.y3_c00227{bottom:927.358893pt;}
.y2_c00227{bottom:954.559573pt;}
.y1_c00227{bottom:1007.039067pt;}
.h1a_c00227{height:23.640625pt;}
.h21_c00227{height:29.443359pt;}
.h20_c00227{height:30.751953pt;}
.h1c_c00227{height:32.060547pt;}
.h1d_c00227{height:32.679688pt;}
.h14_c00227{height:33.375000pt;}
.h1e_c00227{height:33.601562pt;}
.h13_c00227{height:34.937500pt;}
.h16_c00227{height:35.460938pt;}
.h15_c00227{height:36.236979pt;}
.h18_c00227{height:36.281250pt;}
.h1b_c00227{height:36.851562pt;}
.h2b_c00227{height:37.546875pt;}
.h2d_c00227{height:38.937500pt;}
.h2f_c00227{height:40.984375pt;}
.h29_c00227{height:41.656250pt;}
.h2e_c00227{height:42.328125pt;}
.h2c_c00227{height:42.825521pt;}
.h30_c00227{height:43.000000pt;}
.h28_c00227{height:43.109375pt;}
.h3_c00227{height:44.500000pt;}
.h1f_c00227{height:45.800781pt;}
.h25_c00227{height:46.585938pt;}
.h19_c00227{height:49.718750pt;}
.h17_c00227{height:50.072917pt;}
.h2a_c00227{height:53.539062pt;}
.hc_c00227{height:60.492188pt;}
.hb_c00227{height:60.849609pt;}
.h4_c00227{height:61.503906pt;}
.he_c00227{height:62.812500pt;}
.hd_c00227{height:64.775391pt;}
.h8_c00227{height:66.083984pt;}
.h27_c00227{height:66.750000pt;}
.h23_c00227{height:67.392578pt;}
.h22_c00227{height:68.046875pt;}
.h24_c00227{height:68.140625pt;}
.h1_c00227{height:68.701172pt;}
.ha_c00227{height:69.355469pt;}
.h12_c00227{height:69.975412pt;}
.h11_c00227{height:69.981812pt;}
.h5_c00227{height:70.009766pt;}
.h6_c00227{height:70.226562pt;}
.h9_c00227{height:70.664062pt;}
.h10_c00227{height:71.890625pt;}
.hf_c00227{height:71.972656pt;}
.h7_c00227{height:72.473958pt;}
.h26_c00227{height:75.109375pt;}
.h2_c00227{height:107.078125pt;}
.h0_c00227{height:1122.666667pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x3d_c00227{left:89.598680pt;}
.x2c_c00227{left:123.199200pt;}
.x4_c00227{left:124.158667pt;}
.x40_c00227{left:125.438947pt;}
.x5_c00227{left:146.559067pt;}
.x52_c00227{left:151.999467pt;}
.x1e_c00227{left:157.440000pt;}
.x41_c00227{left:165.118667pt;}
.x53_c00227{left:167.359867pt;}
.x1_c00227{left:172.158667pt;}
.x1f_c00227{left:180.479067pt;}
.x18_c00227{left:185.598680pt;}
.x42_c00227{left:186.878920pt;}
.x20_c00227{left:189.439453pt;}
.x19_c00227{left:200.639587pt;}
.x16_c00227{left:208.960000pt;}
.x29_c00227{left:211.839867pt;}
.x2a_c00227{left:219.518533pt;}
.x17_c00227{left:221.759720pt;}
.x54_c00227{left:225.279720pt;}
.x47_c00227{left:230.078680pt;}
.x6_c00227{left:236.159200pt;}
.x2_c00227{left:244.479453pt;}
.x55_c00227{left:249.279720pt;}
.x3_c00227{left:250.239200pt;}
.x21_c00227{left:257.279320pt;}
.x56_c00227{left:261.118667pt;}
.x31_c00227{left:266.559067pt;}
.x3b_c00227{left:278.078680pt;}
.x1a_c00227{left:286.719720pt;}
.x32_c00227{left:289.278787pt;}
.x3c_c00227{left:291.518533pt;}
.x57_c00227{left:294.719200pt;}
.x1b_c00227{left:299.198693pt;}
.x7_c00227{left:308.799320pt;}
.x8_c00227{left:326.078680pt;}
.x58_c00227{left:330.238787pt;}
.x22_c00227{left:345.279747pt;}
.x43_c00227{left:348.159707pt;}
.x59_c00227{left:362.559040pt;}
.x23_c00227{left:370.239173pt;}
.x44_c00227{left:374.078693pt;}
.x1c_c00227{left:389.438920pt;}
.x9_c00227{left:393.279707pt;}
.x1d_c00227{left:400.960000pt;}
.xa_c00227{left:408.959467pt;}
.x24_c00227{left:410.559040pt;}
.x14_c00227{left:412.158693pt;}
.x5a_c00227{left:417.919840pt;}
.x2d_c00227{left:418.879307pt;}
.x15_c00227{left:429.439453pt;}
.x2e_c00227{left:434.559040pt;}
.x25_c00227{left:439.999467pt;}
.xb_c00227{left:454.398920pt;}
.x4a_c00227{left:456.638667pt;}
.x39_c00227{left:463.038533pt;}
.x45_c00227{left:467.198693pt;}
.x4b_c00227{left:470.399453pt;}
.xc_c00227{left:474.559573pt;}
.x3a_c00227{left:475.519040pt;}
.x33_c00227{left:480.000000pt;}
.x46_c00227{left:483.839320pt;}
.x34_c00227{left:493.119187pt;}
.x26_c00227{left:496.639200pt;}
.xd_c00227{left:501.758787pt;}
.x4c_c00227{left:510.079067pt;}
.x27_c00227{left:516.799840pt;}
.x50_c00227{left:534.399867pt;}
.xe_c00227{left:535.999467pt;}
.x4d_c00227{left:539.519453pt;}
.x51_c00227{left:547.839840pt;}
.xf_c00227{left:555.518520pt;}
.x4f_c00227{left:559.678707pt;}
.x2f_c00227{left:560.958907pt;}
.x35_c00227{left:564.799840pt;}
.x30_c00227{left:573.439453pt;}
.x28_c00227{left:585.919840pt;}
.x36_c00227{left:587.838907pt;}
.x10_c00227{left:609.279707pt;}
.x48_c00227{left:619.199707pt;}
.x2b_c00227{left:620.479987pt;}
.x11_c00227{left:628.798787pt;}
.x49_c00227{left:638.718787pt;}
.x12_c00227{left:646.079587pt;}
.x37_c00227{left:652.158693pt;}
.x13_c00227{left:659.838907pt;}
.x3e_c00227{left:667.839840pt;}
.x38_c00227{left:669.118693pt;}
.x4e_c00227{left:672.000000pt;}
.x3f_c00227{left:680.639573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_128f8180665de4e827854184.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.364746;font-style:normal;font-weight:normal;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_4c2b145a296779bd2b30d6dd.woff2')format("woff");}.ff3_c00228{font-family:ff3_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:ff4_c00228;src:url('chunks/assets/font_9dc5b7ff0111192df977e093.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_0c498a534a7704d6c51f9fd1.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00228;src:url('chunks/assets/font_adee09cdb202d71e3cf85000.woff2')format("woff");}.ff6_c00228{font-family:ff6_c00228;line-height:1.364746;font-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_c00228{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1d_c00228{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{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_c00228{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m17_c00228{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls15_c00228{letter-spacing:-18.268380px;}
.ls5_c00228{letter-spacing:-16.681050px;}
.ls27_c00228{letter-spacing:-16.095750px;}
.ls23_c00228{letter-spacing:-15.510450px;}
.ls20_c00228{letter-spacing:-12.799500px;}
.ls28_c00228{letter-spacing:-12.687675px;}
.ls19_c00228{letter-spacing:-12.226305px;}
.ls1f_c00228{letter-spacing:-9.850050px;}
.ls25_c00228{letter-spacing:-8.914500px;}
.lsf_c00228{letter-spacing:-8.415000px;}
.ls1d_c00228{letter-spacing:-7.426125px;}
.ls21_c00228{letter-spacing:-7.035750px;}
.ls26_c00228{letter-spacing:-7.028100px;}
.ls1a_c00228{letter-spacing:-6.685875px;}
.ls8_c00228{letter-spacing:-5.945625px;}
.ls17_c00228{letter-spacing:-5.676300px;}
.ls1e_c00228{letter-spacing:-5.346450px;}
.ls10_c00228{letter-spacing:-5.252625px;}
.ls1b_c00228{letter-spacing:-5.196713px;}
.ls6_c00228{letter-spacing:-4.456463px;}
.ls16_c00228{letter-spacing:-4.376580px;}
.ls13_c00228{letter-spacing:-4.053705px;}
.ls9_c00228{letter-spacing:-3.717000px;}
.ls11_c00228{letter-spacing:-3.243600px;}
.ls22_c00228{letter-spacing:-3.121200px;}
.ls3_c00228{letter-spacing:-2.968875px;}
.lsb_c00228{letter-spacing:-2.862000px;}
.ls24_c00228{letter-spacing:-2.417925px;}
.ls2_c00228{letter-spacing:-2.229413px;}
.lsc_c00228{letter-spacing:-1.650000px;}
.ls4_c00228{letter-spacing:-1.496250px;}
.ls7_c00228{letter-spacing:-1.489163px;}
.ls12_c00228{letter-spacing:-0.810105px;}
.ls1_c00228{letter-spacing:-0.740250px;}
.lsd_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.740250px;}
.ls1c_c00228{letter-spacing:1.806000px;}
.ls18_c00228{letter-spacing:3.037125px;}
.ls14_c00228{letter-spacing:3.870450px;}
.lsa_c00228{letter-spacing:4.725000px;}
.lse_c00228{letter-spacing:9.067500px;}
.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;}
._11_c00228{margin-left:-36.266932px;}
._18_c00228{margin-left:-15.158409px;}
._1d_c00228{margin-left:-12.514475px;}
._13_c00228{margin-left:-11.204135px;}
._14_c00228{margin-left:-7.646239px;}
._8_c00228{margin-left:-5.435503px;}
._17_c00228{margin-left:-3.605680px;}
._0_c00228{margin-left:-1.945214px;}
._5_c00228{width:1.904754px;}
._3_c00228{width:3.155037px;}
._1_c00228{width:4.444591px;}
._6_c00228{width:5.514016px;}
._2_c00228{width:6.927697px;}
._9_c00228{width:8.099735px;}
._a_c00228{width:9.414771px;}
._7_c00228{width:10.590011px;}
._b_c00228{width:11.638893px;}
._15_c00228{width:12.675957px;}
._4_c00228{width:13.745070px;}
._c_c00228{width:15.366428px;}
._1e_c00228{width:16.555753px;}
._f_c00228{width:17.797975px;}
._e_c00228{width:19.577280px;}
._12_c00228{width:21.549566px;}
._d_c00228{width:22.652779px;}
._10_c00228{width:24.683118px;}
._1c_c00228{width:26.130201px;}
._19_c00228{width:27.699971px;}
._16_c00228{width:29.384537px;}
._1b_c00228{width:31.324016px;}
._1a_c00228{width:34.477448px;}
.fc0_c00228{color:transparent;}
.fs7_c00228{font-size:66.750000px;}
.fs5_c00228{font-size:70.500000px;}
.fs4_c00228{font-size:73.500000px;}
.fs3_c00228{font-size:75.000000px;}
.fse_c00228{font-size:76.500000px;}
.fsf_c00228{font-size:77.250000px;}
.fs6_c00228{font-size:78.000000px;}
.fs0_c00228{font-size:78.750000px;}
.fs2_c00228{font-size:79.500000px;}
.fs8_c00228{font-size:80.250000px;}
.fsd_c00228{font-size:81.750000px;}
.fs9_c00228{font-size:82.500000px;}
.fsc_c00228{font-size:84.000000px;}
.fs1_c00228{font-size:85.500000px;}
.fsa_c00228{font-size:101.250000px;}
.fsb_c00228{font-size:115.500000px;}
.y0_c00228{bottom:0.000000px;}
.y27_c00228{bottom:197.638830px;}
.y26_c00228{bottom:227.518545px;}
.y25_c00228{bottom:256.679700px;}
.y24_c00228{bottom:256.679790px;}
.y23_c00228{bottom:286.919700px;}
.y22_c00228{bottom:316.439235px;}
.y21_c00228{bottom:316.439595px;}
.y20_c00228{bottom:375.120270px;}
.y1f_c00228{bottom:405.000000px;}
.y1d_c00228{bottom:434.878530px;}
.y1e_c00228{bottom:434.878920px;}
.y1c_c00228{bottom:465.478935px;}
.y1a_c00228{bottom:495.358635px;}
.y1b_c00228{bottom:495.358665px;}
.y19_c00228{bottom:524.879970px;}
.y18_c00228{bottom:524.880480px;}
.y17_c00228{bottom:554.400015px;}
.y15_c00228{bottom:583.918860px;}
.y16_c00228{bottom:583.919535px;}
.y14_c00228{bottom:613.080000px;}
.y13_c00228{bottom:613.080990px;}
.y12_c00228{bottom:643.679280px;}
.y11_c00228{bottom:702.720150px;}
.y10_c00228{bottom:732.599070px;}
.yf_c00228{bottom:791.640585px;}
.ye_c00228{bottom:813.239865px;}
.yd_c00228{bottom:813.240255px;}
.yc_c00228{bottom:834.839535px;}
.ya_c00228{bottom:894.959385px;}
.yb_c00228{bottom:894.960015px;}
.y9_c00228{bottom:924.478905px;}
.y8_c00228{bottom:954.358635px;}
.y6_c00228{bottom:983.879310px;}
.y7_c00228{bottom:983.879970px;}
.y5_c00228{bottom:1013.759040px;}
.y4_c00228{bottom:1043.278755px;}
.y3_c00228{bottom:1074.599670px;}
.y2_c00228{bottom:1102.679025px;}
.y1_c00228{bottom:1132.918950px;}
.hb_c00228{height:67.271484px;}
.h8_c00228{height:71.050781px;}
.hc_c00228{height:76.552734px;}
.h6_c00228{height:76.658203px;}
.h9_c00228{height:77.085938px;}
.h14_c00228{height:77.097656px;}
.h1_c00228{height:77.288818px;}
.h15_c00228{height:77.853516px;}
.h4_c00228{height:78.024902px;}
.h5_c00228{height:78.222656px;}
.he_c00228{height:78.568359px;}
.ha_c00228{height:78.609375px;}
.hd_c00228{height:78.760986px;}
.h3_c00228{height:79.365234px;}
.h7_c00228{height:80.121094px;}
.hf_c00228{height:80.969238px;}
.h16_c00228{height:81.533203px;}
.h13_c00228{height:82.388672px;}
.h12_c00228{height:82.441406px;}
.h2_c00228{height:84.498047px;}
.h10_c00228{height:105.600586px;}
.h11_c00228{height:120.462891px;}
.h0_c00228{height:1263.000000px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:140.039400px;}
.x13_c00228{left:141.479715px;}
.x16_c00228{left:154.439250px;}
.x29_c00228{left:166.678500px;}
.x25_c00228{left:194.040270px;}
.x1d_c00228{left:195.118785px;}
.x1b_c00228{left:203.399850px;}
.x1e_c00228{left:209.879535px;}
.x1c_c00228{left:218.878950px;}
.x36_c00228{left:225.358635px;}
.x6_c00228{left:227.519100px;}
.x3d_c00228{left:238.679100px;}
.x3e_c00228{left:256.679700px;}
.x26_c00228{left:261.359850px;}
.x7_c00228{left:271.438635px;}
.x27_c00228{left:275.398635px;}
.x2c_c00228{left:289.798515px;}
.x2d_c00228{left:304.559100px;}
.x8_c00228{left:311.759100px;}
.x2_c00228{left:320.040000px;}
.x3b_c00228{left:326.158785px;}
.x9_c00228{left:327.958350px;}
.x3_c00228{left:338.759100px;}
.x3c_c00228{left:350.639100px;}
.xa_c00228{left:373.679100px;}
.xb_c00228{left:388.439715px;}
.x17_c00228{left:390.959385px;}
.xc_c00228{left:406.799565px;}
.x18_c00228{left:411.118785px;}
.x19_c00228{left:447.838530px;}
.x1a_c00228{left:462.599070px;}
.xd_c00228{left:473.399820px;}
.x30_c00228{left:479.518620px;}
.x34_c00228{left:502.199385px;}
.x38_c00228{left:510.478635px;}
.x28_c00228{left:514.079400px;}
.x35_c00228{left:519.118785px;}
.x39_c00228{left:524.519070px;}
.x4_c00228{left:525.598530px;}
.x5_c00228{left:545.759535px;}
.x31_c00228{left:551.159820px;}
.x1f_c00228{left:601.199850px;}
.x20_c00228{left:613.080000px;}
.xe_c00228{left:625.678530px;}
.x14_c00228{left:629.999400px;}
.x2e_c00228{left:637.558635px;}
.xf_c00228{left:648.718545px;}
.x2f_c00228{left:661.318770px;}
.x37_c00228{left:672.119385px;}
.x21_c00228{left:673.198785px;}
.x15_c00228{left:675.359250px;}
.x10_c00228{left:680.398635px;}
.x3f_c00228{left:686.159820px;}
.x22_c00228{left:698.758530px;}
.x2a_c00228{left:700.559685px;}
.x40_c00228{left:704.519670px;}
.x32_c00228{left:717.479235px;}
.x33_c00228{left:732.958335px;}
.x11_c00228{left:735.479685px;}
.x23_c00228{left:748.798560px;}
.x2b_c00228{left:754.918950px;}
.x24_c00228{left:760.678530px;}
.x12_c00228{left:761.759535px;}
.x3a_c00228{left:765.358605px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls15_c00228{letter-spacing:-16.238560pt;}
.ls5_c00228{letter-spacing:-14.827600pt;}
.ls27_c00228{letter-spacing:-14.307333pt;}
.ls23_c00228{letter-spacing:-13.787067pt;}
.ls20_c00228{letter-spacing:-11.377333pt;}
.ls28_c00228{letter-spacing:-11.277933pt;}
.ls19_c00228{letter-spacing:-10.867827pt;}
.ls1f_c00228{letter-spacing:-8.755600pt;}
.ls25_c00228{letter-spacing:-7.924000pt;}
.lsf_c00228{letter-spacing:-7.480000pt;}
.ls1d_c00228{letter-spacing:-6.601000pt;}
.ls21_c00228{letter-spacing:-6.254000pt;}
.ls26_c00228{letter-spacing:-6.247200pt;}
.ls1a_c00228{letter-spacing:-5.943000pt;}
.ls8_c00228{letter-spacing:-5.285000pt;}
.ls17_c00228{letter-spacing:-5.045600pt;}
.ls1e_c00228{letter-spacing:-4.752400pt;}
.ls10_c00228{letter-spacing:-4.669000pt;}
.ls1b_c00228{letter-spacing:-4.619300pt;}
.ls6_c00228{letter-spacing:-3.961300pt;}
.ls16_c00228{letter-spacing:-3.890293pt;}
.ls13_c00228{letter-spacing:-3.603293pt;}
.ls9_c00228{letter-spacing:-3.304000pt;}
.ls11_c00228{letter-spacing:-2.883200pt;}
.ls22_c00228{letter-spacing:-2.774400pt;}
.ls3_c00228{letter-spacing:-2.639000pt;}
.lsb_c00228{letter-spacing:-2.544000pt;}
.ls24_c00228{letter-spacing:-2.149267pt;}
.ls2_c00228{letter-spacing:-1.981700pt;}
.lsc_c00228{letter-spacing:-1.466667pt;}
.ls4_c00228{letter-spacing:-1.330000pt;}
.ls7_c00228{letter-spacing:-1.323700pt;}
.ls12_c00228{letter-spacing:-0.720093pt;}
.ls1_c00228{letter-spacing:-0.658000pt;}
.lsd_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.658000pt;}
.ls1c_c00228{letter-spacing:1.605333pt;}
.ls18_c00228{letter-spacing:2.699667pt;}
.ls14_c00228{letter-spacing:3.440400pt;}
.lsa_c00228{letter-spacing:4.200000pt;}
.lse_c00228{letter-spacing:8.060000pt;}
.ws0_c00228{word-spacing:0.000000pt;}
._11_c00228{margin-left:-32.237272pt;}
._18_c00228{margin-left:-13.474142pt;}
._1d_c00228{margin-left:-11.123977pt;}
._13_c00228{margin-left:-9.959231pt;}
._14_c00228{margin-left:-6.796657pt;}
._8_c00228{margin-left:-4.831558pt;}
._17_c00228{margin-left:-3.205049pt;}
._0_c00228{margin-left:-1.729079pt;}
._5_c00228{width:1.693115pt;}
._3_c00228{width:2.804477pt;}
._1_c00228{width:3.950747pt;}
._6_c00228{width:4.901347pt;}
._2_c00228{width:6.157953pt;}
._9_c00228{width:7.199764pt;}
._a_c00228{width:8.368685pt;}
._7_c00228{width:9.413343pt;}
._b_c00228{width:10.345683pt;}
._15_c00228{width:11.267517pt;}
._4_c00228{width:12.217840pt;}
._c_c00228{width:13.659047pt;}
._1e_c00228{width:14.716225pt;}
._f_c00228{width:15.820423pt;}
._e_c00228{width:17.402026pt;}
._12_c00228{width:19.155170pt;}
._d_c00228{width:20.135804pt;}
._10_c00228{width:21.940549pt;}
._1c_c00228{width:23.226845pt;}
._19_c00228{width:24.622196pt;}
._16_c00228{width:26.119589pt;}
._1b_c00228{width:27.843570pt;}
._1a_c00228{width:30.646621pt;}
.fs7_c00228{font-size:59.333333pt;}
.fs5_c00228{font-size:62.666667pt;}
.fs4_c00228{font-size:65.333333pt;}
.fs3_c00228{font-size:66.666667pt;}
.fse_c00228{font-size:68.000000pt;}
.fsf_c00228{font-size:68.666667pt;}
.fs6_c00228{font-size:69.333333pt;}
.fs0_c00228{font-size:70.000000pt;}
.fs2_c00228{font-size:70.666667pt;}
.fs8_c00228{font-size:71.333333pt;}
.fsd_c00228{font-size:72.666667pt;}
.fs9_c00228{font-size:73.333333pt;}
.fsc_c00228{font-size:74.666667pt;}
.fs1_c00228{font-size:76.000000pt;}
.fsa_c00228{font-size:90.000000pt;}
.fsb_c00228{font-size:102.666667pt;}
.y0_c00228{bottom:0.000000pt;}
.y27_c00228{bottom:175.678960pt;}
.y26_c00228{bottom:202.238707pt;}
.y25_c00228{bottom:228.159733pt;}
.y24_c00228{bottom:228.159813pt;}
.y23_c00228{bottom:255.039733pt;}
.y22_c00228{bottom:281.279320pt;}
.y21_c00228{bottom:281.279640pt;}
.y20_c00228{bottom:333.440240pt;}
.y1f_c00228{bottom:360.000000pt;}
.y1d_c00228{bottom:386.558693pt;}
.y1e_c00228{bottom:386.559040pt;}
.y1c_c00228{bottom:413.759053pt;}
.y1a_c00228{bottom:440.318787pt;}
.y1b_c00228{bottom:440.318813pt;}
.y19_c00228{bottom:466.559973pt;}
.y18_c00228{bottom:466.560427pt;}
.y17_c00228{bottom:492.800013pt;}
.y15_c00228{bottom:519.038987pt;}
.y16_c00228{bottom:519.039587pt;}
.y14_c00228{bottom:544.960000pt;}
.y13_c00228{bottom:544.960880pt;}
.y12_c00228{bottom:572.159360pt;}
.y11_c00228{bottom:624.640133pt;}
.y10_c00228{bottom:651.199173pt;}
.yf_c00228{bottom:703.680520pt;}
.ye_c00228{bottom:722.879880pt;}
.yd_c00228{bottom:722.880227pt;}
.yc_c00228{bottom:742.079587pt;}
.ya_c00228{bottom:795.519453pt;}
.yb_c00228{bottom:795.520013pt;}
.y9_c00228{bottom:821.759027pt;}
.y8_c00228{bottom:848.318787pt;}
.y6_c00228{bottom:874.559387pt;}
.y7_c00228{bottom:874.559973pt;}
.y5_c00228{bottom:901.119147pt;}
.y4_c00228{bottom:927.358893pt;}
.y3_c00228{bottom:955.199707pt;}
.y2_c00228{bottom:980.159133pt;}
.y1_c00228{bottom:1007.039067pt;}
.hb_c00228{height:59.796875pt;}
.h8_c00228{height:63.156250pt;}
.hc_c00228{height:68.046875pt;}
.h6_c00228{height:68.140625pt;}
.h9_c00228{height:68.520833pt;}
.h14_c00228{height:68.531250pt;}
.h1_c00228{height:68.701172pt;}
.h15_c00228{height:69.203125pt;}
.h4_c00228{height:69.355469pt;}
.h5_c00228{height:69.531250pt;}
.he_c00228{height:69.838542pt;}
.ha_c00228{height:69.875000pt;}
.hd_c00228{height:70.009766pt;}
.h3_c00228{height:70.546875pt;}
.h7_c00228{height:71.218750pt;}
.hf_c00228{height:71.972656pt;}
.h16_c00228{height:72.473958pt;}
.h13_c00228{height:73.234375pt;}
.h12_c00228{height:73.281250pt;}
.h2_c00228{height:75.109375pt;}
.h10_c00228{height:93.867188pt;}
.h11_c00228{height:107.078125pt;}
.h0_c00228{height:1122.666667pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:124.479467pt;}
.x13_c00228{left:125.759747pt;}
.x16_c00228{left:137.279333pt;}
.x29_c00228{left:148.158667pt;}
.x25_c00228{left:172.480240pt;}
.x1d_c00228{left:173.438920pt;}
.x1b_c00228{left:180.799867pt;}
.x1e_c00228{left:186.559587pt;}
.x1c_c00228{left:194.559067pt;}
.x36_c00228{left:200.318787pt;}
.x6_c00228{left:202.239200pt;}
.x3d_c00228{left:212.159200pt;}
.x3e_c00228{left:228.159733pt;}
.x26_c00228{left:232.319867pt;}
.x7_c00228{left:241.278787pt;}
.x27_c00228{left:244.798787pt;}
.x2c_c00228{left:257.598680pt;}
.x2d_c00228{left:270.719200pt;}
.x8_c00228{left:277.119200pt;}
.x2_c00228{left:284.480000pt;}
.x3b_c00228{left:289.918920pt;}
.x9_c00228{left:291.518533pt;}
.x3_c00228{left:301.119200pt;}
.x3c_c00228{left:311.679200pt;}
.xa_c00228{left:332.159200pt;}
.xb_c00228{left:345.279747pt;}
.x17_c00228{left:347.519453pt;}
.xc_c00228{left:361.599613pt;}
.x18_c00228{left:365.438920pt;}
.x19_c00228{left:398.078693pt;}
.x1a_c00228{left:411.199173pt;}
.xd_c00228{left:420.799840pt;}
.x30_c00228{left:426.238773pt;}
.x34_c00228{left:446.399453pt;}
.x38_c00228{left:453.758787pt;}
.x28_c00228{left:456.959467pt;}
.x35_c00228{left:461.438920pt;}
.x39_c00228{left:466.239173pt;}
.x4_c00228{left:467.198693pt;}
.x5_c00228{left:485.119587pt;}
.x31_c00228{left:489.919840pt;}
.x1f_c00228{left:534.399867pt;}
.x20_c00228{left:544.960000pt;}
.xe_c00228{left:556.158693pt;}
.x14_c00228{left:559.999467pt;}
.x2e_c00228{left:566.718787pt;}
.xf_c00228{left:576.638707pt;}
.x2f_c00228{left:587.838907pt;}
.x37_c00228{left:597.439453pt;}
.x21_c00228{left:598.398920pt;}
.x15_c00228{left:600.319333pt;}
.x10_c00228{left:604.798787pt;}
.x3f_c00228{left:609.919840pt;}
.x22_c00228{left:621.118693pt;}
.x2a_c00228{left:622.719720pt;}
.x40_c00228{left:626.239707pt;}
.x32_c00228{left:637.759320pt;}
.x33_c00228{left:651.518520pt;}
.x11_c00228{left:653.759720pt;}
.x23_c00228{left:665.598720pt;}
.x2b_c00228{left:671.039067pt;}
.x24_c00228{left:676.158693pt;}
.x12_c00228{left:677.119587pt;}
.x3a_c00228{left:680.318760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1688ad62d755e9db24529e2b.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_f3c2ce0f94da786d864b8e4b.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.364746;font-style:normal;font-weight:normal;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_1f6f45e5220d0de094695b9d.woff2')format("woff");}.ff3_c00229{font-family:ff3_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:ff4_c00229;src:url('chunks/assets/font_d8695d78c967406128f27313.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.364746;font-style:normal;font-weight:normal;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00229{font-family:ff5_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:ff6_c00229;src:url('chunks/assets/font_34e9e3b2ce336dfc6ee212cd.woff2')format("woff");}.ff6_c00229{font-family:ff6_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;}
.m21_c00229{transform:matrix(0.152514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152514,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m23_c00229{transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183036,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m24_c00229{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00229{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.mb_c00229{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m1b_c00229{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m13_c00229{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m1d_c00229{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m12_c00229{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1e_c00229{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m16_c00229{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m11_c00229{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m19_c00229{transform:matrix(0.782609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782609,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.913043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.913043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.913043,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls16_c00229{letter-spacing:-12.771000px;}
.ls1a_c00229{letter-spacing:-12.456990px;}
.lsf_c00229{letter-spacing:-11.343750px;}
.ls25_c00229{letter-spacing:-10.593983px;}
.ls27_c00229{letter-spacing:-10.500083px;}
.ls1c_c00229{letter-spacing:-10.402875px;}
.ls1f_c00229{letter-spacing:-10.035900px;}
.ls9_c00229{letter-spacing:-9.850050px;}
.ls14_c00229{letter-spacing:-8.914500px;}
.ls15_c00229{letter-spacing:-7.426125px;}
.ls30_c00229{letter-spacing:-6.751350px;}
.lse_c00229{letter-spacing:-6.685875px;}
.ls2f_c00229{letter-spacing:-6.144600px;}
.ls19_c00229{letter-spacing:-5.945625px;}
.ls26_c00229{letter-spacing:-5.544150px;}
.ls20_c00229{letter-spacing:-5.203125px;}
.lsa_c00229{letter-spacing:-5.196713px;}
.ls31_c00229{letter-spacing:-5.119800px;}
.ls23_c00229{letter-spacing:-4.625100px;}
.ls12_c00229{letter-spacing:-4.596075px;}
.ls7_c00229{letter-spacing:-4.456463px;}
.ls24_c00229{letter-spacing:-3.785250px;}
.ls8_c00229{letter-spacing:-3.717000px;}
.ls10_c00229{letter-spacing:-3.059100px;}
.ls1d_c00229{letter-spacing:-3.028950px;}
.ls5_c00229{letter-spacing:-2.968875px;}
.ls2b_c00229{letter-spacing:-2.898023px;}
.ls2a_c00229{letter-spacing:-2.365275px;}
.ls22_c00229{letter-spacing:-2.340675px;}
.ls6_c00229{letter-spacing:-2.229413px;}
.ls2e_c00229{letter-spacing:-1.587600px;}
.ls29_c00229{letter-spacing:-1.578375px;}
.ls11_c00229{letter-spacing:-1.529550px;}
.ls1b_c00229{letter-spacing:-1.514873px;}
.lsb_c00229{letter-spacing:-1.489163px;}
.ls1e_c00229{letter-spacing:-0.808500px;}
.ls28_c00229{letter-spacing:-0.786900px;}
.ls2d_c00229{letter-spacing:-0.775125px;}
.lsd_c00229{letter-spacing:-0.740250px;}
.lsc_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.740250px;}
.ls2_c00229{letter-spacing:0.786900px;}
.ls1_c00229{letter-spacing:1.578375px;}
.ls21_c00229{letter-spacing:1.581750px;}
.ls18_c00229{letter-spacing:1.669200px;}
.ls13_c00229{letter-spacing:3.229875px;}
.ls4_c00229{letter-spacing:4.735125px;}
.ls17_c00229{letter-spacing:6.856980px;}
.ls3_c00229{letter-spacing:9.465217px;}
.ls2c_c00229{letter-spacing:17.148150px;}
.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;}
._1b_c00229{margin-left:-20.038844px;}
._1d_c00229{margin-left:-13.487804px;}
._10_c00229{margin-left:-7.064410px;}
._13_c00229{margin-left:-5.275106px;}
._1c_c00229{margin-left:-4.235517px;}
._12_c00229{margin-left:-3.121917px;}
._c_c00229{margin-left:-1.909108px;}
._7_c00229{width:1.515165px;}
._d_c00229{width:3.100492px;}
._1_c00229{width:4.703515px;}
._a_c00229{width:5.992414px;}
._0_c00229{width:7.321670px;}
._2_c00229{width:8.594106px;}
._5_c00229{width:9.978130px;}
._4_c00229{width:11.324547px;}
._6_c00229{width:12.849221px;}
._8_c00229{width:14.657500px;}
._15_c00229{width:16.630395px;}
._e_c00229{width:18.559458px;}
._3_c00229{width:19.800202px;}
._11_c00229{width:20.991882px;}
._9_c00229{width:22.514952px;}
._1a_c00229{width:23.610246px;}
._14_c00229{width:24.654054px;}
._18_c00229{width:25.660346px;}
._17_c00229{width:28.256704px;}
._f_c00229{width:30.956566px;}
._19_c00229{width:32.473083px;}
._b_c00229{width:33.561092px;}
._16_c00229{width:36.791495px;}
.fc0_c00229{color:transparent;}
.fsc_c00229{font-size:17.250000px;}
.fs10_c00229{font-size:39.750000px;}
.fs12_c00229{font-size:40.500000px;}
.fs13_c00229{font-size:42.000000px;}
.fsf_c00229{font-size:42.750000px;}
.fs11_c00229{font-size:43.039740px;}
.fse_c00229{font-size:45.750000px;}
.fsd_c00229{font-size:48.750000px;}
.fsa_c00229{font-size:71.250000px;}
.fs3_c00229{font-size:74.250000px;}
.fs5_c00229{font-size:76.500000px;}
.fs8_c00229{font-size:77.250000px;}
.fs6_c00229{font-size:78.000000px;}
.fs0_c00229{font-size:78.750000px;}
.fs1_c00229{font-size:79.500000px;}
.fs4_c00229{font-size:80.250000px;}
.fs7_c00229{font-size:81.000000px;}
.fsb_c00229{font-size:81.750000px;}
.fs2_c00229{font-size:82.500000px;}
.fs9_c00229{font-size:83.250000px;}
.y0_c00229{bottom:0.000000px;}
.y29_c00229{bottom:131.040000px;}
.y28_c00229{bottom:171.360300px;}
.y27_c00229{bottom:211.319850px;}
.y26_c00229{bottom:239.760150px;}
.y25_c00229{bottom:272.519685px;}
.y24_c00229{bottom:272.520975px;}
.y23_c00229{bottom:302.040510px;}
.y22_c00229{bottom:331.920225px;}
.y21_c00229{bottom:361.799955px;}
.y20_c00229{bottom:391.679670px;}
.y1f_c00229{bottom:421.560285px;}
.y1d_c00229{bottom:450.720060px;}
.y1e_c00229{bottom:450.720750px;}
.y1c_c00229{bottom:480.959970px;}
.y1b_c00229{bottom:510.479505px;}
.y1a_c00229{bottom:569.880570px;}
.y19_c00229{bottom:569.881455px;}
.y18_c00229{bottom:628.920225px;}
.y17_c00229{bottom:658.799955px;}
.y16_c00229{bottom:688.679670px;}
.y15_c00229{bottom:688.679970px;}
.y14_c00229{bottom:718.559685px;}
.y13_c00229{bottom:777.960750px;}
.y11_c00229{bottom:807.480240px;}
.y12_c00229{bottom:807.480285px;}
.y10_c00229{bottom:837.720150px;}
.yf_c00229{bottom:867.959880px;}
.yd_c00229{bottom:898.199115px;}
.ye_c00229{bottom:898.199805px;}
.yc_c00229{bottom:927.360255px;}
.yb_c00229{bottom:927.360450px;}
.ya_c00229{bottom:956.879970px;}
.y9_c00229{bottom:986.400675px;}
.y8_c00229{bottom:1016.280390px;}
.y7_c00229{bottom:1016.281290px;}
.y5_c00229{bottom:1046.160255px;}
.y6_c00229{bottom:1046.161005px;}
.y4_c00229{bottom:1076.039985px;}
.y2_c00229{bottom:1105.919835px;}
.y3_c00229{bottom:1105.920600px;}
.y1_c00229{bottom:1135.799565px;}
.h11_c00229{height:17.991211px;}
.h1a_c00229{height:40.025391px;}
.h16_c00229{height:41.458008px;}
.h19_c00229{height:41.507812px;}
.h18_c00229{height:42.240234px;}
.h17_c00229{height:42.535368px;}
.h15_c00229{height:44.586914px;}
.h13_c00229{height:44.901123px;}
.h14_c00229{height:46.107422px;}
.h12_c00229{height:47.845459px;}
.he_c00229{height:69.927979px;}
.h4_c00229{height:74.830078px;}
.h6_c00229{height:75.080566px;}
.ha_c00229{height:75.816650px;}
.h7_c00229{height:76.552734px;}
.h1_c00229{height:77.288818px;}
.hf_c00229{height:77.853516px;}
.h2_c00229{height:78.024902px;}
.h5_c00229{height:78.760986px;}
.hc_c00229{height:79.497070px;}
.h9_c00229{height:80.050781px;}
.h10_c00229{height:80.791992px;}
.h8_c00229{height:80.969238px;}
.h3_c00229{height:81.533203px;}
.hd_c00229{height:81.705322px;}
.hb_c00229{height:83.144531px;}
.h0_c00229{height:1263.000000px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x10_c00229{left:138.598005px;}
.x1_c00229{left:139.678500px;}
.x11_c00229{left:152.639700px;}
.x1b_c00229{left:167.398665px;}
.x2b_c00229{left:170.999400px;}
.x2c_c00229{left:187.559685px;}
.x2d_c00229{left:217.438635px;}
.x1f_c00229{left:221.039400px;}
.x15_c00229{left:243.359250px;}
.x20_c00229{left:246.958350px;}
.x16_c00229{left:258.479235px;}
.x6_c00229{left:276.118785px;}
.x18_c00229{left:279.719535px;}
.x7_c00229{left:298.438635px;}
.xe_c00229{left:299.878950px;}
.x29_c00229{left:320.758500px;}
.xf_c00229{left:325.438635px;}
.x1c_c00229{left:333.358635px;}
.x31_c00229{left:348.478635px;}
.x32_c00229{left:375.119385px;}
.xa_c00229{left:380.519685px;}
.x19_c00229{left:382.319235px;}
.x2a_c00229{left:383.398635px;}
.x1a_c00229{left:395.278800px;}
.xb_c00229{left:399.958920px;}
.x22_c00229{left:435.958335px;}
.x33_c00229{left:464.039385px;}
.x12_c00229{left:491.039385px;}
.x2_c00229{left:505.080000px;}
.x23_c00229{left:516.599070px;}
.x34_c00229{left:518.039385px;}
.x3_c00229{left:531.359850px;}
.x28_c00229{left:544.319235px;}
.x8_c00229{left:567.000000px;}
.xc_c00229{left:574.918350px;}
.x9_c00229{left:581.399820px;}
.xd_c00229{left:596.878920px;}
.x24_c00229{left:614.879520px;}
.x13_c00229{left:645.119385px;}
.x25_c00229{left:646.559685px;}
.x35_c00229{left:651.958335px;}
.x1d_c00229{left:660.959385px;}
.x26_c00229{left:664.558635px;}
.x4_c00229{left:665.639700px;}
.x1e_c00229{left:675.718545px;}
.x36_c00229{left:678.958335px;}
.x5_c00229{left:687.959385px;}
.x14_c00229{left:689.759085px;}
.x2e_c00229{left:692.278800px;}
.x17_c00229{left:717.838530px;}
.x2f_c00229{left:724.319820px;}
.x37_c00229{left:731.158770px;}
.x38_c00229{left:753.478635px;}
.x27_c00229{left:757.799520px;}
.x30_c00229{left:761.398635px;}
.x21_c00229{left:764.999355px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls16_c00229{letter-spacing:-11.352000pt;}
.ls1a_c00229{letter-spacing:-11.072880pt;}
.lsf_c00229{letter-spacing:-10.083333pt;}
.ls25_c00229{letter-spacing:-9.416873pt;}
.ls27_c00229{letter-spacing:-9.333407pt;}
.ls1c_c00229{letter-spacing:-9.247000pt;}
.ls1f_c00229{letter-spacing:-8.920800pt;}
.ls9_c00229{letter-spacing:-8.755600pt;}
.ls14_c00229{letter-spacing:-7.924000pt;}
.ls15_c00229{letter-spacing:-6.601000pt;}
.ls30_c00229{letter-spacing:-6.001200pt;}
.lse_c00229{letter-spacing:-5.943000pt;}
.ls2f_c00229{letter-spacing:-5.461867pt;}
.ls19_c00229{letter-spacing:-5.285000pt;}
.ls26_c00229{letter-spacing:-4.928133pt;}
.ls20_c00229{letter-spacing:-4.625000pt;}
.lsa_c00229{letter-spacing:-4.619300pt;}
.ls31_c00229{letter-spacing:-4.550933pt;}
.ls23_c00229{letter-spacing:-4.111200pt;}
.ls12_c00229{letter-spacing:-4.085400pt;}
.ls7_c00229{letter-spacing:-3.961300pt;}
.ls24_c00229{letter-spacing:-3.364667pt;}
.ls8_c00229{letter-spacing:-3.304000pt;}
.ls10_c00229{letter-spacing:-2.719200pt;}
.ls1d_c00229{letter-spacing:-2.692400pt;}
.ls5_c00229{letter-spacing:-2.639000pt;}
.ls2b_c00229{letter-spacing:-2.576020pt;}
.ls2a_c00229{letter-spacing:-2.102467pt;}
.ls22_c00229{letter-spacing:-2.080600pt;}
.ls6_c00229{letter-spacing:-1.981700pt;}
.ls2e_c00229{letter-spacing:-1.411200pt;}
.ls29_c00229{letter-spacing:-1.403000pt;}
.ls11_c00229{letter-spacing:-1.359600pt;}
.ls1b_c00229{letter-spacing:-1.346553pt;}
.lsb_c00229{letter-spacing:-1.323700pt;}
.ls1e_c00229{letter-spacing:-0.718667pt;}
.ls28_c00229{letter-spacing:-0.699467pt;}
.ls2d_c00229{letter-spacing:-0.689000pt;}
.lsd_c00229{letter-spacing:-0.658000pt;}
.lsc_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.658000pt;}
.ls2_c00229{letter-spacing:0.699467pt;}
.ls1_c00229{letter-spacing:1.403000pt;}
.ls21_c00229{letter-spacing:1.406000pt;}
.ls18_c00229{letter-spacing:1.483733pt;}
.ls13_c00229{letter-spacing:2.871000pt;}
.ls4_c00229{letter-spacing:4.209000pt;}
.ls17_c00229{letter-spacing:6.095093pt;}
.ls3_c00229{letter-spacing:8.413527pt;}
.ls2c_c00229{letter-spacing:15.242800pt;}
.ws0_c00229{word-spacing:0.000000pt;}
._1b_c00229{margin-left:-17.812306pt;}
._1d_c00229{margin-left:-11.989160pt;}
._10_c00229{margin-left:-6.279475pt;}
._13_c00229{margin-left:-4.688983pt;}
._1c_c00229{margin-left:-3.764904pt;}
._12_c00229{margin-left:-2.775038pt;}
._c_c00229{margin-left:-1.696985pt;}
._7_c00229{width:1.346813pt;}
._d_c00229{width:2.755992pt;}
._1_c00229{width:4.180902pt;}
._a_c00229{width:5.326591pt;}
._0_c00229{width:6.508151pt;}
._2_c00229{width:7.639206pt;}
._5_c00229{width:8.869449pt;}
._4_c00229{width:10.066264pt;}
._6_c00229{width:11.421530pt;}
._8_c00229{width:13.028889pt;}
._15_c00229{width:14.782574pt;}
._e_c00229{width:16.497296pt;}
._3_c00229{width:17.600179pt;}
._11_c00229{width:18.659451pt;}
._9_c00229{width:20.013291pt;}
._1a_c00229{width:20.986885pt;}
._14_c00229{width:21.914715pt;}
._18_c00229{width:22.809196pt;}
._17_c00229{width:25.117070pt;}
._f_c00229{width:27.516947pt;}
._19_c00229{width:28.864962pt;}
._b_c00229{width:29.832082pt;}
._16_c00229{width:32.703551pt;}
.fsc_c00229{font-size:15.333333pt;}
.fs10_c00229{font-size:35.333333pt;}
.fs12_c00229{font-size:36.000000pt;}
.fs13_c00229{font-size:37.333333pt;}
.fsf_c00229{font-size:38.000000pt;}
.fs11_c00229{font-size:38.257547pt;}
.fse_c00229{font-size:40.666667pt;}
.fsd_c00229{font-size:43.333333pt;}
.fsa_c00229{font-size:63.333333pt;}
.fs3_c00229{font-size:66.000000pt;}
.fs5_c00229{font-size:68.000000pt;}
.fs8_c00229{font-size:68.666667pt;}
.fs6_c00229{font-size:69.333333pt;}
.fs0_c00229{font-size:70.000000pt;}
.fs1_c00229{font-size:70.666667pt;}
.fs4_c00229{font-size:71.333333pt;}
.fs7_c00229{font-size:72.000000pt;}
.fsb_c00229{font-size:72.666667pt;}
.fs2_c00229{font-size:73.333333pt;}
.fs9_c00229{font-size:74.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y29_c00229{bottom:116.480000pt;}
.y28_c00229{bottom:152.320267pt;}
.y27_c00229{bottom:187.839867pt;}
.y26_c00229{bottom:213.120133pt;}
.y25_c00229{bottom:242.239720pt;}
.y24_c00229{bottom:242.240867pt;}
.y23_c00229{bottom:268.480453pt;}
.y22_c00229{bottom:295.040200pt;}
.y21_c00229{bottom:321.599960pt;}
.y20_c00229{bottom:348.159707pt;}
.y1f_c00229{bottom:374.720253pt;}
.y1d_c00229{bottom:400.640053pt;}
.y1e_c00229{bottom:400.640667pt;}
.y1c_c00229{bottom:427.519973pt;}
.y1b_c00229{bottom:453.759560pt;}
.y1a_c00229{bottom:506.560507pt;}
.y19_c00229{bottom:506.561293pt;}
.y18_c00229{bottom:559.040200pt;}
.y17_c00229{bottom:585.599960pt;}
.y16_c00229{bottom:612.159707pt;}
.y15_c00229{bottom:612.159973pt;}
.y14_c00229{bottom:638.719720pt;}
.y13_c00229{bottom:691.520667pt;}
.y11_c00229{bottom:717.760213pt;}
.y12_c00229{bottom:717.760253pt;}
.y10_c00229{bottom:744.640133pt;}
.yf_c00229{bottom:771.519893pt;}
.yd_c00229{bottom:798.399213pt;}
.ye_c00229{bottom:798.399827pt;}
.yc_c00229{bottom:824.320227pt;}
.yb_c00229{bottom:824.320400pt;}
.ya_c00229{bottom:850.559973pt;}
.y9_c00229{bottom:876.800600pt;}
.y8_c00229{bottom:903.360347pt;}
.y7_c00229{bottom:903.361147pt;}
.y5_c00229{bottom:929.920227pt;}
.y6_c00229{bottom:929.920893pt;}
.y4_c00229{bottom:956.479987pt;}
.y2_c00229{bottom:983.039853pt;}
.y3_c00229{bottom:983.040533pt;}
.y1_c00229{bottom:1009.599613pt;}
.h11_c00229{height:15.992187pt;}
.h1a_c00229{height:35.578125pt;}
.h16_c00229{height:36.851562pt;}
.h19_c00229{height:36.895833pt;}
.h18_c00229{height:37.546875pt;}
.h17_c00229{height:37.809216pt;}
.h15_c00229{height:39.632812pt;}
.h13_c00229{height:39.912109pt;}
.h14_c00229{height:40.984375pt;}
.h12_c00229{height:42.529297pt;}
.he_c00229{height:62.158203pt;}
.h4_c00229{height:66.515625pt;}
.h6_c00229{height:66.738281pt;}
.ha_c00229{height:67.392578pt;}
.h7_c00229{height:68.046875pt;}
.h1_c00229{height:68.701172pt;}
.hf_c00229{height:69.203125pt;}
.h2_c00229{height:69.355469pt;}
.h5_c00229{height:70.009766pt;}
.hc_c00229{height:70.664062pt;}
.h9_c00229{height:71.156250pt;}
.h10_c00229{height:71.815104pt;}
.h8_c00229{height:71.972656pt;}
.h3_c00229{height:72.473958pt;}
.hd_c00229{height:72.626953pt;}
.hb_c00229{height:73.906250pt;}
.h0_c00229{height:1122.666667pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x10_c00229{left:123.198227pt;}
.x1_c00229{left:124.158667pt;}
.x11_c00229{left:135.679733pt;}
.x1b_c00229{left:148.798813pt;}
.x2b_c00229{left:151.999467pt;}
.x2c_c00229{left:166.719720pt;}
.x2d_c00229{left:193.278787pt;}
.x1f_c00229{left:196.479467pt;}
.x15_c00229{left:216.319333pt;}
.x20_c00229{left:219.518533pt;}
.x16_c00229{left:229.759320pt;}
.x6_c00229{left:245.438920pt;}
.x18_c00229{left:248.639587pt;}
.x7_c00229{left:265.278787pt;}
.xe_c00229{left:266.559067pt;}
.x29_c00229{left:285.118667pt;}
.xf_c00229{left:289.278787pt;}
.x1c_c00229{left:296.318787pt;}
.x31_c00229{left:309.758787pt;}
.x32_c00229{left:333.439453pt;}
.xa_c00229{left:338.239720pt;}
.x19_c00229{left:339.839320pt;}
.x2a_c00229{left:340.798787pt;}
.x1a_c00229{left:351.358933pt;}
.xb_c00229{left:355.519040pt;}
.x22_c00229{left:387.518520pt;}
.x33_c00229{left:412.479453pt;}
.x12_c00229{left:436.479453pt;}
.x2_c00229{left:448.960000pt;}
.x23_c00229{left:459.199173pt;}
.x34_c00229{left:460.479453pt;}
.x3_c00229{left:472.319867pt;}
.x28_c00229{left:483.839320pt;}
.x8_c00229{left:504.000000pt;}
.xc_c00229{left:511.038533pt;}
.x9_c00229{left:516.799840pt;}
.xd_c00229{left:530.559040pt;}
.x24_c00229{left:546.559573pt;}
.x13_c00229{left:573.439453pt;}
.x25_c00229{left:574.719720pt;}
.x35_c00229{left:579.518520pt;}
.x1d_c00229{left:587.519453pt;}
.x26_c00229{left:590.718787pt;}
.x4_c00229{left:591.679733pt;}
.x1e_c00229{left:600.638707pt;}
.x36_c00229{left:603.518520pt;}
.x5_c00229{left:611.519453pt;}
.x14_c00229{left:613.119187pt;}
.x2e_c00229{left:615.358933pt;}
.x17_c00229{left:638.078693pt;}
.x2f_c00229{left:643.839840pt;}
.x37_c00229{left:649.918907pt;}
.x38_c00229{left:669.758787pt;}
.x27_c00229{left:673.599573pt;}
.x30_c00229{left:676.798787pt;}
.x21_c00229{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc75e5b416e37df205ed3a92.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_447ef929ea3a000369e24b18.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_dac225b23277c69a8aca2787.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_b328403169ddc69675ea87b2.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00230;src:url('chunks/assets/font_5e3545bd4c07013ed4fdef75.woff2')format("woff");}.ff6_c00230{font-family:ff6_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00230;src:url('chunks/assets/font_4ec77e49058dd331100a1fd8.woff2')format("woff");}.ff7_c00230{font-family:ff7_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;}
.m12_c00230{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m14_c00230{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204167,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2c_c00230{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{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_c00230{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m13_c00230{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.m19_c00230{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293333,0.000000,0.000000,0.250000,0,0);}
.m18_c00230{transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.353659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353659,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{transform:matrix(0.372093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372093,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{transform:matrix(0.386905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386905,0.000000,0.000000,0.250000,0,0);}
.m1b_c00230{transform:matrix(0.388298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388298,0.000000,0.000000,0.250000,0,0);}
.m1c_c00230{transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.425676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425676,0.000000,0.000000,0.250000,0,0);}
.m23_c00230{transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{transform:matrix(0.452703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452703,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.m27_c00230{transform:matrix(0.635714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635714,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls35_c00230{letter-spacing:-13.209150px;}
.ls1e_c00230{letter-spacing:-12.226305px;}
.ls2e_c00230{letter-spacing:-10.402875px;}
.ls36_c00230{letter-spacing:-6.685875px;}
.lsf_c00230{letter-spacing:-6.400208px;}
.ls15_c00230{letter-spacing:-6.172125px;}
.ls9_c00230{letter-spacing:-5.945625px;}
.ls17_c00230{letter-spacing:-5.394683px;}
.ls1f_c00230{letter-spacing:-5.296875px;}
.ls4_c00230{letter-spacing:-5.196713px;}
.ls16_c00230{letter-spacing:-4.626233px;}
.ls7_c00230{letter-spacing:-4.456463px;}
.ls2b_c00230{letter-spacing:-4.362750px;}
.ls10_c00230{letter-spacing:-4.334498px;}
.lse_c00230{letter-spacing:-3.787875px;}
.ls8_c00230{letter-spacing:-3.717000px;}
.ls18_c00230{letter-spacing:-3.310125px;}
.ls13_c00230{letter-spacing:-3.081975px;}
.ls5_c00230{letter-spacing:-2.968875px;}
.ls31_c00230{letter-spacing:-2.359875px;}
.ls12_c00230{letter-spacing:-2.314343px;}
.lsd_c00230{letter-spacing:-2.245620px;}
.ls6_c00230{letter-spacing:-2.229413px;}
.ls32_c00230{letter-spacing:-2.124150px;}
.ls24_c00230{letter-spacing:-2.025000px;}
.ls28_c00230{letter-spacing:-1.548030px;}
.lsc_c00230{letter-spacing:-1.489163px;}
.ls33_c00230{letter-spacing:-1.321178px;}
.ls14_c00230{letter-spacing:-0.768450px;}
.lsa_c00230{letter-spacing:-0.740250px;}
.lsb_c00230{letter-spacing:0.000000px;}
.ls2d_c00230{letter-spacing:0.423000px;}
.ls1_c00230{letter-spacing:0.768450px;}
.ls19_c00230{letter-spacing:0.771150px;}
.ls1d_c00230{letter-spacing:0.835200px;}
.ls27_c00230{letter-spacing:1.435500px;}
.ls2a_c00230{letter-spacing:1.512848px;}
.ls34_c00230{letter-spacing:2.486400px;}
.ls1c_c00230{letter-spacing:2.512800px;}
.ls1a_c00230{letter-spacing:2.604098px;}
.ls1b_c00230{letter-spacing:3.588780px;}
.ls2c_c00230{letter-spacing:4.051125px;}
.ls0_c00230{letter-spacing:5.196713px;}
.ls20_c00230{letter-spacing:5.433900px;}
.ls25_c00230{letter-spacing:6.987075px;}
.ls11_c00230{letter-spacing:7.210500px;}
.ls23_c00230{letter-spacing:7.761450px;}
.ls2_c00230{letter-spacing:8.539808px;}
.ls29_c00230{letter-spacing:8.754900px;}
.ls22_c00230{letter-spacing:9.183300px;}
.ls21_c00230{letter-spacing:10.093425px;}
.ls2f_c00230{letter-spacing:10.961100px;}
.ls3_c00230{letter-spacing:12.420975px;}
.ls26_c00230{letter-spacing:55.103400px;}
.ls30_c00230{letter-spacing:57.375000px;}
.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;}
._15_c00230{margin-left:-32.630672px;}
._19_c00230{margin-left:-7.636358px;}
._18_c00230{margin-left:-6.085934px;}
._17_c00230{margin-left:-4.797569px;}
._2_c00230{margin-left:-3.227665px;}
._1_c00230{margin-left:-2.181880px;}
._13_c00230{margin-left:-1.115977px;}
._5_c00230{width:1.029872px;}
._e_c00230{width:2.936127px;}
._3_c00230{width:4.511142px;}
._4_c00230{width:6.404069px;}
._0_c00230{width:8.384602px;}
._6_c00230{width:9.402661px;}
._10_c00230{width:10.695216px;}
._a_c00230{width:12.258908px;}
._b_c00230{width:13.663942px;}
._11_c00230{width:15.104577px;}
._9_c00230{width:16.726738px;}
._8_c00230{width:18.924591px;}
._f_c00230{width:20.038012px;}
._7_c00230{width:22.159983px;}
._12_c00230{width:24.152506px;}
._1a_c00230{width:25.329521px;}
._14_c00230{width:26.389066px;}
._d_c00230{width:27.601667px;}
._c_c00230{width:30.075011px;}
._16_c00230{width:214.151682px;}
.fc0_c00230{color:transparent;}
.fs1a_c00230{font-size:25.500000px;}
.fs1b_c00230{font-size:26.250000px;}
.fs10_c00230{font-size:27.000000px;}
.fs1c_c00230{font-size:27.750000px;}
.fs19_c00230{font-size:28.500000px;}
.fs17_c00230{font-size:29.250000px;}
.fsf_c00230{font-size:30.000000px;}
.fs18_c00230{font-size:30.750000px;}
.fs16_c00230{font-size:31.500000px;}
.fs15_c00230{font-size:32.250000px;}
.fs14_c00230{font-size:33.000000px;}
.fs13_c00230{font-size:34.500000px;}
.fs12_c00230{font-size:35.250000px;}
.fsa_c00230{font-size:38.250000px;}
.fse_c00230{font-size:42.000000px;}
.fsc_c00230{font-size:44.250000px;}
.fsd_c00230{font-size:45.000000px;}
.fs8_c00230{font-size:72.000000px;}
.fs6_c00230{font-size:72.750000px;}
.fs7_c00230{font-size:75.000000px;}
.fs5_c00230{font-size:77.250000px;}
.fs2_c00230{font-size:78.000000px;}
.fs0_c00230{font-size:78.750000px;}
.fs9_c00230{font-size:79.500000px;}
.fs1_c00230{font-size:80.250000px;}
.fs4_c00230{font-size:81.750000px;}
.fs3_c00230{font-size:82.500000px;}
.fsb_c00230{font-size:84.750000px;}
.fs11_c00230{font-size:225.000000px;}
.y0_c00230{bottom:0.000000px;}
.y29_c00230{bottom:186.118695px;}
.y2a_c00230{bottom:186.119415px;}
.y27_c00230{bottom:215.279070px;}
.y28_c00230{bottom:215.279850px;}
.y25_c00230{bottom:245.157990px;}
.y26_c00230{bottom:245.158785px;}
.y24_c00230{bottom:304.919535px;}
.y23_c00230{bottom:334.439070px;}
.y22_c00230{bottom:364.318800px;}
.y21_c00230{bottom:393.840135px;}
.y20_c00230{bottom:423.359850px;}
.y1f_c00230{bottom:429.119385px;}
.y1e_c00230{bottom:452.879520px;}
.y1d_c00230{bottom:452.880345px;}
.y1c_c00230{bottom:483.478635px;}
.y1b_c00230{bottom:490.680135px;}
.y1a_c00230{bottom:513.000000px;}
.y19_c00230{bottom:513.000135px;}
.y17_c00230{bottom:542.518935px;}
.y18_c00230{bottom:542.519670px;}
.y16_c00230{bottom:571.680090px;}
.y15_c00230{bottom:601.920000px;}
.y14_c00230{bottom:661.679670px;}
.y13_c00230{bottom:720.359850px;}
.y12_c00230{bottom:750.238770px;}
.y11_c00230{bottom:780.119700px;}
.y10_c00230{bottom:810.359625px;}
.yf_c00230{bottom:840.960015px;}
.ye_c00230{bottom:900.718830px;}
.yd_c00230{bottom:929.879970px;}
.yc_c00230{bottom:929.880015px;}
.yb_c00230{bottom:960.119940px;}
.ya_c00230{bottom:960.120030px;}
.y9_c00230{bottom:989.639550px;}
.y8_c00230{bottom:1019.879475px;}
.y7_c00230{bottom:1050.119385px;}
.y6_c00230{bottom:1050.120270px;}
.y5_c00230{bottom:1080.000000px;}
.y4_c00230{bottom:1080.000180px;}
.y2_c00230{bottom:1109.518860px;}
.y3_c00230{bottom:1109.519715px;}
.y1_c00230{bottom:1139.398590px;}
.h1d_c00230{height:25.026855px;}
.h1e_c00230{height:25.762939px;}
.h1f_c00230{height:26.595703px;}
.h20_c00230{height:27.235107px;}
.h1c_c00230{height:27.971191px;}
.h12_c00230{height:28.160156px;}
.h1a_c00230{height:29.443359px;}
.h1b_c00230{height:30.164429px;}
.h19_c00230{height:30.506836px;}
.h18_c00230{height:30.915527px;}
.h11_c00230{height:31.289062px;}
.h17_c00230{height:31.651611px;}
.h16_c00230{height:32.387695px;}
.h15_c00230{height:35.982422px;}
.h14_c00230{height:36.764648px;}
.hc_c00230{height:39.893555px;}
.h10_c00230{height:43.804688px;}
.hf_c00230{height:45.351562px;}
.he_c00230{height:46.151367px;}
.h8_c00230{height:71.400146px;}
.h9_c00230{height:73.608398px;}
.ha_c00230{height:75.093750px;}
.h6_c00230{height:75.816650px;}
.h3_c00230{height:76.552734px;}
.h1_c00230{height:77.288818px;}
.hb_c00230{height:78.568359px;}
.h2_c00230{height:78.760986px;}
.h21_c00230{height:79.309570px;}
.h5_c00230{height:80.233154px;}
.h4_c00230{height:80.969238px;}
.h7_c00230{height:83.144531px;}
.hd_c00230{height:83.177490px;}
.h13_c00230{height:234.667969px;}
.h0_c00230{height:1263.000000px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x20_c00230{left:99.359850px;}
.x8_c00230{left:137.519625px;}
.x1_c00230{left:138.599100px;}
.xf_c00230{left:167.398665px;}
.x32_c00230{left:186.839565px;}
.x10_c00230{left:212.399250px;}
.x16_c00230{left:219.239850px;}
.x26_c00230{left:230.038950px;}
.x35_c00230{left:232.199385px;}
.x6_c00230{left:239.399250px;}
.x36_c00230{left:245.878950px;}
.x27_c00230{left:256.679700px;}
.x4_c00230{left:257.759100px;}
.x7_c00230{left:258.838515px;}
.x5_c00230{left:283.679700px;}
.x17_c00230{left:303.479685px;}
.x21_c00230{left:304.918350px;}
.x18_c00230{left:319.319850px;}
.x33_c00230{left:321.478635px;}
.x39_c00230{left:335.159850px;}
.x28_c00230{left:344.159385px;}
.x29_c00230{left:355.678530px;}
.x2_c00230{left:363.598530px;}
.x1e_c00230{left:366.120000px;}
.x2a_c00230{left:376.198785px;}
.x3_c00230{left:381.239850px;}
.x1f_c00230{left:384.479685px;}
.x2b_c00230{left:434.519670px;}
.xb_c00230{left:445.679670px;}
.x2c_c00230{left:448.919535px;}
.x34_c00230{left:451.798515px;}
.xc_c00230{left:471.598530px;}
.x9_c00230{left:502.558635px;}
.xa_c00230{left:518.039385px;}
.x11_c00230{left:565.559685px;}
.x12_c00230{left:583.919535px;}
.x2d_c00230{left:589.319820px;}
.x37_c00230{left:590.399235px;}
.x19_c00230{left:592.918950px;}
.x38_c00230{left:604.439670px;}
.x1a_c00230{left:617.399235px;}
.x2e_c00230{left:620.279850px;}
.x3a_c00230{left:622.799520px;}
.x13_c00230{left:628.918350px;}
.x1b_c00230{left:632.519070px;}
.x2f_c00230{left:639.359850px;}
.x3b_c00230{left:641.879520px;}
.x1c_c00230{left:649.079355px;}
.x3e_c00230{left:654.118785px;}
.x1d_c00230{left:665.998950px;}
.xd_c00230{left:670.679070px;}
.x22_c00230{left:678.958335px;}
.x30_c00230{left:688.318770px;}
.x3c_c00230{left:690.479235px;}
.xe_c00230{left:691.558635px;}
.x23_c00230{left:693.359850px;}
.x3d_c00230{left:709.559100px;}
.x14_c00230{left:740.159820px;}
.x24_c00230{left:750.958920px;}
.x31_c00230{left:761.039385px;}
.x15_c00230{left:762.838950px;}
.x25_c00230{left:764.999355px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls35_c00230{letter-spacing:-11.741467pt;}
.ls1e_c00230{letter-spacing:-10.867827pt;}
.ls2e_c00230{letter-spacing:-9.247000pt;}
.ls36_c00230{letter-spacing:-5.943000pt;}
.lsf_c00230{letter-spacing:-5.689073pt;}
.ls15_c00230{letter-spacing:-5.486333pt;}
.ls9_c00230{letter-spacing:-5.285000pt;}
.ls17_c00230{letter-spacing:-4.795273pt;}
.ls1f_c00230{letter-spacing:-4.708333pt;}
.ls4_c00230{letter-spacing:-4.619300pt;}
.ls16_c00230{letter-spacing:-4.112207pt;}
.ls7_c00230{letter-spacing:-3.961300pt;}
.ls2b_c00230{letter-spacing:-3.878000pt;}
.ls10_c00230{letter-spacing:-3.852887pt;}
.lse_c00230{letter-spacing:-3.367000pt;}
.ls8_c00230{letter-spacing:-3.304000pt;}
.ls18_c00230{letter-spacing:-2.942333pt;}
.ls13_c00230{letter-spacing:-2.739533pt;}
.ls5_c00230{letter-spacing:-2.639000pt;}
.ls31_c00230{letter-spacing:-2.097667pt;}
.ls12_c00230{letter-spacing:-2.057193pt;}
.lsd_c00230{letter-spacing:-1.996107pt;}
.ls6_c00230{letter-spacing:-1.981700pt;}
.ls32_c00230{letter-spacing:-1.888133pt;}
.ls24_c00230{letter-spacing:-1.800000pt;}
.ls28_c00230{letter-spacing:-1.376027pt;}
.lsc_c00230{letter-spacing:-1.323700pt;}
.ls33_c00230{letter-spacing:-1.174380pt;}
.ls14_c00230{letter-spacing:-0.683067pt;}
.lsa_c00230{letter-spacing:-0.658000pt;}
.lsb_c00230{letter-spacing:0.000000pt;}
.ls2d_c00230{letter-spacing:0.376000pt;}
.ls1_c00230{letter-spacing:0.683067pt;}
.ls19_c00230{letter-spacing:0.685467pt;}
.ls1d_c00230{letter-spacing:0.742400pt;}
.ls27_c00230{letter-spacing:1.276000pt;}
.ls2a_c00230{letter-spacing:1.344753pt;}
.ls34_c00230{letter-spacing:2.210133pt;}
.ls1c_c00230{letter-spacing:2.233600pt;}
.ls1a_c00230{letter-spacing:2.314753pt;}
.ls1b_c00230{letter-spacing:3.190027pt;}
.ls2c_c00230{letter-spacing:3.601000pt;}
.ls0_c00230{letter-spacing:4.619300pt;}
.ls20_c00230{letter-spacing:4.830133pt;}
.ls25_c00230{letter-spacing:6.210733pt;}
.ls11_c00230{letter-spacing:6.409333pt;}
.ls23_c00230{letter-spacing:6.899067pt;}
.ls2_c00230{letter-spacing:7.590940pt;}
.ls29_c00230{letter-spacing:7.782133pt;}
.ls22_c00230{letter-spacing:8.162933pt;}
.ls21_c00230{letter-spacing:8.971933pt;}
.ls2f_c00230{letter-spacing:9.743200pt;}
.ls3_c00230{letter-spacing:11.040867pt;}
.ls26_c00230{letter-spacing:48.980800pt;}
.ls30_c00230{letter-spacing:51.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
._15_c00230{margin-left:-29.005042pt;}
._19_c00230{margin-left:-6.787874pt;}
._18_c00230{margin-left:-5.409719pt;}
._17_c00230{margin-left:-4.264506pt;}
._2_c00230{margin-left:-2.869036pt;}
._1_c00230{margin-left:-1.939449pt;}
._13_c00230{margin-left:-0.991979pt;}
._5_c00230{width:0.915442pt;}
._e_c00230{width:2.609891pt;}
._3_c00230{width:4.009904pt;}
._4_c00230{width:5.692506pt;}
._0_c00230{width:7.452979pt;}
._6_c00230{width:8.357921pt;}
._10_c00230{width:9.506858pt;}
._a_c00230{width:10.896808pt;}
._b_c00230{width:12.145726pt;}
._11_c00230{width:13.426291pt;}
._9_c00230{width:14.868211pt;}
._8_c00230{width:16.821858pt;}
._f_c00230{width:17.811566pt;}
._7_c00230{width:19.697762pt;}
._12_c00230{width:21.468894pt;}
._1a_c00230{width:22.515130pt;}
._14_c00230{width:23.456947pt;}
._d_c00230{width:24.534815pt;}
._c_c00230{width:26.733343pt;}
._16_c00230{width:190.357051pt;}
.fs1a_c00230{font-size:22.666667pt;}
.fs1b_c00230{font-size:23.333333pt;}
.fs10_c00230{font-size:24.000000pt;}
.fs1c_c00230{font-size:24.666667pt;}
.fs19_c00230{font-size:25.333333pt;}
.fs17_c00230{font-size:26.000000pt;}
.fsf_c00230{font-size:26.666667pt;}
.fs18_c00230{font-size:27.333333pt;}
.fs16_c00230{font-size:28.000000pt;}
.fs15_c00230{font-size:28.666667pt;}
.fs14_c00230{font-size:29.333333pt;}
.fs13_c00230{font-size:30.666667pt;}
.fs12_c00230{font-size:31.333333pt;}
.fsa_c00230{font-size:34.000000pt;}
.fse_c00230{font-size:37.333333pt;}
.fsc_c00230{font-size:39.333333pt;}
.fsd_c00230{font-size:40.000000pt;}
.fs8_c00230{font-size:64.000000pt;}
.fs6_c00230{font-size:64.666667pt;}
.fs7_c00230{font-size:66.666667pt;}
.fs5_c00230{font-size:68.666667pt;}
.fs2_c00230{font-size:69.333333pt;}
.fs0_c00230{font-size:70.000000pt;}
.fs9_c00230{font-size:70.666667pt;}
.fs1_c00230{font-size:71.333333pt;}
.fs4_c00230{font-size:72.666667pt;}
.fs3_c00230{font-size:73.333333pt;}
.fsb_c00230{font-size:75.333333pt;}
.fs11_c00230{font-size:200.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y29_c00230{bottom:165.438840pt;}
.y2a_c00230{bottom:165.439480pt;}
.y27_c00230{bottom:191.359173pt;}
.y28_c00230{bottom:191.359867pt;}
.y25_c00230{bottom:217.918213pt;}
.y26_c00230{bottom:217.918920pt;}
.y24_c00230{bottom:271.039587pt;}
.y23_c00230{bottom:297.279173pt;}
.y22_c00230{bottom:323.838933pt;}
.y21_c00230{bottom:350.080120pt;}
.y20_c00230{bottom:376.319867pt;}
.y1f_c00230{bottom:381.439453pt;}
.y1e_c00230{bottom:402.559573pt;}
.y1d_c00230{bottom:402.560307pt;}
.y1c_c00230{bottom:429.758787pt;}
.y1b_c00230{bottom:436.160120pt;}
.y1a_c00230{bottom:456.000000pt;}
.y19_c00230{bottom:456.000120pt;}
.y17_c00230{bottom:482.239053pt;}
.y18_c00230{bottom:482.239707pt;}
.y16_c00230{bottom:508.160080pt;}
.y15_c00230{bottom:535.040000pt;}
.y14_c00230{bottom:588.159707pt;}
.y13_c00230{bottom:640.319867pt;}
.y12_c00230{bottom:666.878907pt;}
.y11_c00230{bottom:693.439733pt;}
.y10_c00230{bottom:720.319667pt;}
.yf_c00230{bottom:747.520013pt;}
.ye_c00230{bottom:800.638960pt;}
.yd_c00230{bottom:826.559973pt;}
.yc_c00230{bottom:826.560013pt;}
.yb_c00230{bottom:853.439947pt;}
.ya_c00230{bottom:853.440027pt;}
.y9_c00230{bottom:879.679600pt;}
.y8_c00230{bottom:906.559533pt;}
.y7_c00230{bottom:933.439453pt;}
.y6_c00230{bottom:933.440240pt;}
.y5_c00230{bottom:960.000000pt;}
.y4_c00230{bottom:960.000160pt;}
.y2_c00230{bottom:986.238987pt;}
.y3_c00230{bottom:986.239747pt;}
.y1_c00230{bottom:1012.798747pt;}
.h1d_c00230{height:22.246094pt;}
.h1e_c00230{height:22.900391pt;}
.h1f_c00230{height:23.640625pt;}
.h20_c00230{height:24.208984pt;}
.h1c_c00230{height:24.863281pt;}
.h12_c00230{height:25.031250pt;}
.h1a_c00230{height:26.171875pt;}
.h1b_c00230{height:26.812826pt;}
.h19_c00230{height:27.117188pt;}
.h18_c00230{height:27.480469pt;}
.h11_c00230{height:27.812500pt;}
.h17_c00230{height:28.134766pt;}
.h16_c00230{height:28.789062pt;}
.h15_c00230{height:31.984375pt;}
.h14_c00230{height:32.679688pt;}
.hc_c00230{height:35.460938pt;}
.h10_c00230{height:38.937500pt;}
.hf_c00230{height:40.312500pt;}
.he_c00230{height:41.023438pt;}
.h8_c00230{height:63.466797pt;}
.h9_c00230{height:65.429688pt;}
.ha_c00230{height:66.750000pt;}
.h6_c00230{height:67.392578pt;}
.h3_c00230{height:68.046875pt;}
.h1_c00230{height:68.701172pt;}
.hb_c00230{height:69.838542pt;}
.h2_c00230{height:70.009766pt;}
.h21_c00230{height:70.497396pt;}
.h5_c00230{height:71.318359pt;}
.h4_c00230{height:71.972656pt;}
.h7_c00230{height:73.906250pt;}
.hd_c00230{height:73.935547pt;}
.h13_c00230{height:208.593750pt;}
.h0_c00230{height:1122.666667pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x20_c00230{left:88.319867pt;}
.x8_c00230{left:122.239667pt;}
.x1_c00230{left:123.199200pt;}
.xf_c00230{left:148.798813pt;}
.x32_c00230{left:166.079613pt;}
.x10_c00230{left:188.799333pt;}
.x16_c00230{left:194.879867pt;}
.x26_c00230{left:204.479067pt;}
.x35_c00230{left:206.399453pt;}
.x6_c00230{left:212.799333pt;}
.x36_c00230{left:218.559067pt;}
.x27_c00230{left:228.159733pt;}
.x4_c00230{left:229.119200pt;}
.x7_c00230{left:230.078680pt;}
.x5_c00230{left:252.159733pt;}
.x17_c00230{left:269.759720pt;}
.x21_c00230{left:271.038533pt;}
.x18_c00230{left:283.839867pt;}
.x33_c00230{left:285.758787pt;}
.x39_c00230{left:297.919867pt;}
.x28_c00230{left:305.919453pt;}
.x29_c00230{left:316.158693pt;}
.x2_c00230{left:323.198693pt;}
.x1e_c00230{left:325.440000pt;}
.x2a_c00230{left:334.398920pt;}
.x3_c00230{left:338.879867pt;}
.x1f_c00230{left:341.759720pt;}
.x2b_c00230{left:386.239707pt;}
.xb_c00230{left:396.159707pt;}
.x2c_c00230{left:399.039587pt;}
.x34_c00230{left:401.598680pt;}
.xc_c00230{left:419.198693pt;}
.x9_c00230{left:446.718787pt;}
.xa_c00230{left:460.479453pt;}
.x11_c00230{left:502.719720pt;}
.x12_c00230{left:519.039587pt;}
.x2d_c00230{left:523.839840pt;}
.x37_c00230{left:524.799320pt;}
.x19_c00230{left:527.039067pt;}
.x38_c00230{left:537.279707pt;}
.x1a_c00230{left:548.799320pt;}
.x2e_c00230{left:551.359867pt;}
.x3a_c00230{left:553.599573pt;}
.x13_c00230{left:559.038533pt;}
.x1b_c00230{left:562.239173pt;}
.x2f_c00230{left:568.319867pt;}
.x3b_c00230{left:570.559573pt;}
.x1c_c00230{left:576.959427pt;}
.x3e_c00230{left:581.438920pt;}
.x1d_c00230{left:591.999067pt;}
.xd_c00230{left:596.159173pt;}
.x22_c00230{left:603.518520pt;}
.x30_c00230{left:611.838907pt;}
.x3c_c00230{left:613.759320pt;}
.xe_c00230{left:614.718787pt;}
.x23_c00230{left:616.319867pt;}
.x3d_c00230{left:630.719200pt;}
.x14_c00230{left:657.919840pt;}
.x24_c00230{left:667.519040pt;}
.x31_c00230{left:676.479453pt;}
.x15_c00230{left:678.079067pt;}
.x25_c00230{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91cdd89a93107571a9c20d7a.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_401b139913a9f6693cffbf9b.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_016d757409764d88981564aa.woff2')format("woff");}.ff3_c00231{font-family:ff3_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:ff4_c00231;src:url('chunks/assets/font_28651d18d0e0d48b7b43ef82.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_5385e03a86cc4f7ef1b266be.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.364746;font-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_c00231{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(1.467391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.467391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.467391,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls19_c00231{letter-spacing:-10.402875px;}
.ls1e_c00231{letter-spacing:-10.366575px;}
.ls1f_c00231{letter-spacing:-8.914500px;}
.lse_c00231{letter-spacing:-8.175038px;}
.ls16_c00231{letter-spacing:-8.029500px;}
.ls1c_c00231{letter-spacing:-6.952500px;}
.ls18_c00231{letter-spacing:-6.000300px;}
.ls8_c00231{letter-spacing:-5.945625px;}
.lsc_c00231{letter-spacing:-5.196713px;}
.ls13_c00231{letter-spacing:-4.545450px;}
.lsa_c00231{letter-spacing:-4.456463px;}
.ls1a_c00231{letter-spacing:-4.334498px;}
.ls15_c00231{letter-spacing:-3.900000px;}
.ls5_c00231{letter-spacing:-3.717000px;}
.ls20_c00231{letter-spacing:-3.715725px;}
.ls1b_c00231{letter-spacing:-3.278213px;}
.ls7_c00231{letter-spacing:-2.968875px;}
.ls14_c00231{letter-spacing:-2.335575px;}
.ls1d_c00231{letter-spacing:-2.317500px;}
.ls4_c00231{letter-spacing:-2.229413px;}
.ls12_c00231{letter-spacing:-1.565550px;}
.ls10_c00231{letter-spacing:-1.498650px;}
.ls9_c00231{letter-spacing:-1.489163px;}
.ls17_c00231{letter-spacing:-0.833033px;}
.ls11_c00231{letter-spacing:-0.779100px;}
.ls6_c00231{letter-spacing:-0.740250px;}
.lsb_c00231{letter-spacing:0.000000px;}
.ls0_c00231{letter-spacing:1.489163px;}
.ls1_c00231{letter-spacing:1.565550px;}
.lsd_c00231{letter-spacing:1.709400px;}
.lsf_c00231{letter-spacing:3.795825px;}
.ls3_c00231{letter-spacing:11.142338px;}
.ls2_c00231{letter-spacing:22.401728px;}
.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;}
._21_c00231{margin-left:-124.519307px;}
._1f_c00231{margin-left:-95.599903px;}
._1e_c00231{margin-left:-22.850550px;}
._e_c00231{margin-left:-7.632197px;}
._f_c00231{margin-left:-6.092501px;}
._d_c00231{margin-left:-4.722236px;}
._8_c00231{margin-left:-2.995100px;}
._c_c00231{margin-left:-1.386475px;}
._a_c00231{width:1.031818px;}
._5_c00231{width:2.442795px;}
._0_c00231{width:3.947321px;}
._3_c00231{width:5.890589px;}
._2_c00231{width:7.708525px;}
._1_c00231{width:9.844047px;}
._9_c00231{width:11.110258px;}
._6_c00231{width:12.115034px;}
._b_c00231{width:13.260594px;}
._4_c00231{width:15.890680px;}
._7_c00231{width:17.677027px;}
._16_c00231{width:18.914130px;}
._1b_c00231{width:19.925355px;}
._17_c00231{width:21.189337px;}
._1d_c00231{width:22.231303px;}
._18_c00231{width:23.918381px;}
._19_c00231{width:24.963393px;}
._20_c00231{width:26.635676px;}
._1a_c00231{width:27.881333px;}
._1c_c00231{width:29.724410px;}
._11_c00231{width:30.998303px;}
._14_c00231{width:32.721383px;}
._10_c00231{width:34.525189px;}
._12_c00231{width:35.677242px;}
._13_c00231{width:36.932457px;}
._15_c00231{width:39.496854px;}
.fc0_c00231{color:transparent;}
.fsc_c00231{font-size:17.250000px;}
.fse_c00231{font-size:50.250000px;}
.fsd_c00231{font-size:71.250000px;}
.fs4_c00231{font-size:72.750000px;}
.fs5_c00231{font-size:73.500000px;}
.fsb_c00231{font-size:77.250000px;}
.fs1_c00231{font-size:78.000000px;}
.fs0_c00231{font-size:78.750000px;}
.fs7_c00231{font-size:79.500000px;}
.fs9_c00231{font-size:80.250000px;}
.fs8_c00231{font-size:81.750000px;}
.fs2_c00231{font-size:82.500000px;}
.fs6_c00231{font-size:83.250000px;}
.fsa_c00231{font-size:84.750000px;}
.fs3_c00231{font-size:115.500000px;}
.y0_c00231{bottom:0.000000px;}
.y29_c00231{bottom:246.239850px;}
.y28_c00231{bottom:246.240120px;}
.y27_c00231{bottom:275.759655px;}
.y26_c00231{bottom:305.639370px;}
.y25_c00231{bottom:335.519100px;}
.y24_c00231{bottom:335.519415px;}
.y23_c00231{bottom:365.038950px;}
.y22_c00231{bottom:394.560285px;}
.y21_c00231{bottom:429.119385px;}
.y20_c00231{bottom:484.198785px;}
.y1f_c00231{bottom:513.359250px;}
.y1e_c00231{bottom:513.360285px;}
.y1d_c00231{bottom:543.240000px;}
.y1b_c00231{bottom:572.758755px;}
.y1c_c00231{bottom:572.759535px;}
.y1a_c00231{bottom:602.819640px;}
.y19_c00231{bottom:632.159820px;}
.y18_c00231{bottom:632.159910px;}
.y16_c00231{bottom:662.398335px;}
.y17_c00231{bottom:662.399820px;}
.y15_c00231{bottom:691.559490px;}
.y14_c00231{bottom:721.439205px;}
.y13_c00231{bottom:751.679070px;}
.y11_c00231{bottom:781.558935px;}
.y12_c00231{bottom:781.559685px;}
.yf_c00231{bottom:811.438065px;}
.y10_c00231{bottom:811.438665px;}
.yd_c00231{bottom:841.679535px;}
.ye_c00231{bottom:841.680090px;}
.yc_c00231{bottom:871.559265px;}
.yb_c00231{bottom:901.078785px;}
.ya_c00231{bottom:930.600135px;}
.y9_c00231{bottom:930.601365px;}
.y8_c00231{bottom:990.719190px;}
.y7_c00231{bottom:1020.959100px;}
.y5_c00231{bottom:1050.478140px;}
.y6_c00231{bottom:1050.478635px;}
.y4_c00231{bottom:1080.720150px;}
.y3_c00231{bottom:1080.720435px;}
.y2_c00231{bottom:1110.239955px;}
.y1_c00231{bottom:1139.759490px;}
.hf_c00231{height:17.991211px;}
.h12_c00231{height:49.661133px;}
.h5_c00231{height:71.400146px;}
.h6_c00231{height:74.074219px;}
.h10_c00231{height:74.311523px;}
.he_c00231{height:75.816650px;}
.h2_c00231{height:76.552734px;}
.h1_c00231{height:77.288818px;}
.h11_c00231{height:77.853516px;}
.h9_c00231{height:78.609375px;}
.hc_c00231{height:78.760986px;}
.ha_c00231{height:80.121094px;}
.h3_c00231{height:80.969238px;}
.h7_c00231{height:81.705322px;}
.hb_c00231{height:82.388672px;}
.h8_c00231{height:83.144531px;}
.hd_c00231{height:83.177490px;}
.h4_c00231{height:120.462891px;}
.h0_c00231{height:1263.000000px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x2a_c00231{left:104.399250px;}
.x23_c00231{left:142.561155px;}
.x6_c00231{left:143.638875px;}
.x1_c00231{left:145.078815px;}
.x12_c00231{left:157.679100px;}
.x2b_c00231{left:182.159415px;}
.x2_c00231{left:206.998950px;}
.x13_c00231{left:212.758500px;}
.x3_c00231{left:222.479685px;}
.x14_c00231{left:271.079385px;}
.x9_c00231{left:273.239850px;}
.xa_c00231{left:294.478635px;}
.xf_c00231{left:390.959385px;}
.x10_c00231{left:406.799565px;}
.x24_c00231{left:409.319235px;}
.x2c_c00231{left:420.479235px;}
.x25_c00231{left:424.080000px;}
.xd_c00231{left:436.678530px;}
.x11_c00231{left:446.399820px;}
.xe_c00231{left:460.079400px;}
.x15_c00231{left:532.798515px;}
.x30_c00231{left:558.719100px;}
.xb_c00231{left:561.958920px;}
.x16_c00231{left:563.039985px;}
.x26_c00231{left:564.119385px;}
.x1d_c00231{left:569.519670px;}
.x31_c00231{left:574.199850px;}
.xc_c00231{left:578.159820px;}
.x27_c00231{left:579.239220px;}
.x1e_c00231{left:585.719100px;}
.x17_c00231{left:588.958920px;}
.x1b_c00231{left:594.718500px;}
.x28_c00231{left:604.078770px;}
.x1c_c00231{left:608.399820px;}
.x29_c00231{left:629.279250px;}
.x2e_c00231{left:632.159820px;}
.x1f_c00231{left:641.879520px;}
.x2f_c00231{left:645.119385px;}
.x20_c00231{left:658.078770px;}
.x18_c00231{left:674.639100px;}
.x21_c00231{left:694.439250px;}
.x7_c00231{left:706.678530px;}
.x22_c00231{left:715.318770px;}
.x8_c00231{left:720.719100px;}
.x19_c00231{left:737.638545px;}
.x4_c00231{left:744.838530px;}
.x5_c00231{left:758.878920px;}
.x1a_c00231{left:762.838950px;}
.x2d_c00231{left:764.999355px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls19_c00231{letter-spacing:-9.247000pt;}
.ls1e_c00231{letter-spacing:-9.214733pt;}
.ls1f_c00231{letter-spacing:-7.924000pt;}
.lse_c00231{letter-spacing:-7.266700pt;}
.ls16_c00231{letter-spacing:-7.137333pt;}
.ls1c_c00231{letter-spacing:-6.180000pt;}
.ls18_c00231{letter-spacing:-5.333600pt;}
.ls8_c00231{letter-spacing:-5.285000pt;}
.lsc_c00231{letter-spacing:-4.619300pt;}
.ls13_c00231{letter-spacing:-4.040400pt;}
.lsa_c00231{letter-spacing:-3.961300pt;}
.ls1a_c00231{letter-spacing:-3.852887pt;}
.ls15_c00231{letter-spacing:-3.466667pt;}
.ls5_c00231{letter-spacing:-3.304000pt;}
.ls20_c00231{letter-spacing:-3.302867pt;}
.ls1b_c00231{letter-spacing:-2.913967pt;}
.ls7_c00231{letter-spacing:-2.639000pt;}
.ls14_c00231{letter-spacing:-2.076067pt;}
.ls1d_c00231{letter-spacing:-2.060000pt;}
.ls4_c00231{letter-spacing:-1.981700pt;}
.ls12_c00231{letter-spacing:-1.391600pt;}
.ls10_c00231{letter-spacing:-1.332133pt;}
.ls9_c00231{letter-spacing:-1.323700pt;}
.ls17_c00231{letter-spacing:-0.740473pt;}
.ls11_c00231{letter-spacing:-0.692533pt;}
.ls6_c00231{letter-spacing:-0.658000pt;}
.lsb_c00231{letter-spacing:0.000000pt;}
.ls0_c00231{letter-spacing:1.323700pt;}
.ls1_c00231{letter-spacing:1.391600pt;}
.lsd_c00231{letter-spacing:1.519467pt;}
.lsf_c00231{letter-spacing:3.374067pt;}
.ls3_c00231{letter-spacing:9.904300pt;}
.ls2_c00231{letter-spacing:19.912647pt;}
.ws0_c00231{word-spacing:0.000000pt;}
._21_c00231{margin-left:-110.683828pt;}
._1f_c00231{margin-left:-84.977692pt;}
._1e_c00231{margin-left:-20.311600pt;}
._e_c00231{margin-left:-6.784175pt;}
._f_c00231{margin-left:-5.415557pt;}
._d_c00231{margin-left:-4.197543pt;}
._8_c00231{margin-left:-2.662311pt;}
._c_c00231{margin-left:-1.232423pt;}
._a_c00231{width:0.917172pt;}
._5_c00231{width:2.171374pt;}
._0_c00231{width:3.508730pt;}
._3_c00231{width:5.236079pt;}
._2_c00231{width:6.852023pt;}
._1_c00231{width:8.750264pt;}
._9_c00231{width:9.875785pt;}
._6_c00231{width:10.768919pt;}
._b_c00231{width:11.787194pt;}
._4_c00231{width:14.125049pt;}
._7_c00231{width:15.712913pt;}
._16_c00231{width:16.812560pt;}
._1b_c00231{width:17.711426pt;}
._17_c00231{width:18.834966pt;}
._1d_c00231{width:19.761158pt;}
._18_c00231{width:21.260783pt;}
._19_c00231{width:22.189683pt;}
._20_c00231{width:23.676157pt;}
._1a_c00231{width:24.783408pt;}
._1c_c00231{width:26.421698pt;}
._11_c00231{width:27.554047pt;}
._14_c00231{width:29.085674pt;}
._10_c00231{width:30.689057pt;}
._12_c00231{width:31.713104pt;}
._13_c00231{width:32.828851pt;}
._15_c00231{width:35.108315pt;}
.fsc_c00231{font-size:15.333333pt;}
.fse_c00231{font-size:44.666667pt;}
.fsd_c00231{font-size:63.333333pt;}
.fs4_c00231{font-size:64.666667pt;}
.fs5_c00231{font-size:65.333333pt;}
.fsb_c00231{font-size:68.666667pt;}
.fs1_c00231{font-size:69.333333pt;}
.fs0_c00231{font-size:70.000000pt;}
.fs7_c00231{font-size:70.666667pt;}
.fs9_c00231{font-size:71.333333pt;}
.fs8_c00231{font-size:72.666667pt;}
.fs2_c00231{font-size:73.333333pt;}
.fs6_c00231{font-size:74.000000pt;}
.fsa_c00231{font-size:75.333333pt;}
.fs3_c00231{font-size:102.666667pt;}
.y0_c00231{bottom:0.000000pt;}
.y29_c00231{bottom:218.879867pt;}
.y28_c00231{bottom:218.880107pt;}
.y27_c00231{bottom:245.119693pt;}
.y26_c00231{bottom:271.679440pt;}
.y25_c00231{bottom:298.239200pt;}
.y24_c00231{bottom:298.239480pt;}
.y23_c00231{bottom:324.479067pt;}
.y22_c00231{bottom:350.720253pt;}
.y21_c00231{bottom:381.439453pt;}
.y20_c00231{bottom:430.398920pt;}
.y1f_c00231{bottom:456.319333pt;}
.y1e_c00231{bottom:456.320253pt;}
.y1d_c00231{bottom:482.880000pt;}
.y1b_c00231{bottom:509.118893pt;}
.y1c_c00231{bottom:509.119587pt;}
.y1a_c00231{bottom:535.839680pt;}
.y19_c00231{bottom:561.919840pt;}
.y18_c00231{bottom:561.919920pt;}
.y16_c00231{bottom:588.798520pt;}
.y17_c00231{bottom:588.799840pt;}
.y15_c00231{bottom:614.719547pt;}
.y14_c00231{bottom:641.279293pt;}
.y13_c00231{bottom:668.159173pt;}
.y11_c00231{bottom:694.719053pt;}
.y12_c00231{bottom:694.719720pt;}
.yf_c00231{bottom:721.278280pt;}
.y10_c00231{bottom:721.278813pt;}
.yd_c00231{bottom:748.159587pt;}
.ye_c00231{bottom:748.160080pt;}
.yc_c00231{bottom:774.719347pt;}
.yb_c00231{bottom:800.958920pt;}
.ya_c00231{bottom:827.200120pt;}
.y9_c00231{bottom:827.201213pt;}
.y8_c00231{bottom:880.639280pt;}
.y7_c00231{bottom:907.519200pt;}
.y5_c00231{bottom:933.758347pt;}
.y6_c00231{bottom:933.758787pt;}
.y4_c00231{bottom:960.640133pt;}
.y3_c00231{bottom:960.640387pt;}
.y2_c00231{bottom:986.879960pt;}
.y1_c00231{bottom:1013.119547pt;}
.hf_c00231{height:15.992187pt;}
.h12_c00231{height:44.143229pt;}
.h5_c00231{height:63.466797pt;}
.h6_c00231{height:65.843750pt;}
.h10_c00231{height:66.054688pt;}
.he_c00231{height:67.392578pt;}
.h2_c00231{height:68.046875pt;}
.h1_c00231{height:68.701172pt;}
.h11_c00231{height:69.203125pt;}
.h9_c00231{height:69.875000pt;}
.hc_c00231{height:70.009766pt;}
.ha_c00231{height:71.218750pt;}
.h3_c00231{height:71.972656pt;}
.h7_c00231{height:72.626953pt;}
.hb_c00231{height:73.234375pt;}
.h8_c00231{height:73.906250pt;}
.hd_c00231{height:73.935547pt;}
.h4_c00231{height:107.078125pt;}
.h0_c00231{height:1122.666667pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x2a_c00231{left:92.799333pt;}
.x23_c00231{left:126.721027pt;}
.x6_c00231{left:127.679000pt;}
.x1_c00231{left:128.958947pt;}
.x12_c00231{left:140.159200pt;}
.x2b_c00231{left:161.919480pt;}
.x2_c00231{left:183.999067pt;}
.x13_c00231{left:189.118667pt;}
.x3_c00231{left:197.759720pt;}
.x14_c00231{left:240.959453pt;}
.x9_c00231{left:242.879867pt;}
.xa_c00231{left:261.758787pt;}
.xf_c00231{left:347.519453pt;}
.x10_c00231{left:361.599613pt;}
.x24_c00231{left:363.839320pt;}
.x2c_c00231{left:373.759320pt;}
.x25_c00231{left:376.960000pt;}
.xd_c00231{left:388.158693pt;}
.x11_c00231{left:396.799840pt;}
.xe_c00231{left:408.959467pt;}
.x15_c00231{left:473.598680pt;}
.x30_c00231{left:496.639200pt;}
.xb_c00231{left:499.519040pt;}
.x16_c00231{left:500.479987pt;}
.x26_c00231{left:501.439453pt;}
.x1d_c00231{left:506.239707pt;}
.x31_c00231{left:510.399867pt;}
.xc_c00231{left:513.919840pt;}
.x27_c00231{left:514.879307pt;}
.x1e_c00231{left:520.639200pt;}
.x17_c00231{left:523.519040pt;}
.x1b_c00231{left:528.638667pt;}
.x28_c00231{left:536.958907pt;}
.x1c_c00231{left:540.799840pt;}
.x29_c00231{left:559.359333pt;}
.x2e_c00231{left:561.919840pt;}
.x1f_c00231{left:570.559573pt;}
.x2f_c00231{left:573.439453pt;}
.x20_c00231{left:584.958907pt;}
.x18_c00231{left:599.679200pt;}
.x21_c00231{left:617.279333pt;}
.x7_c00231{left:628.158693pt;}
.x22_c00231{left:635.838907pt;}
.x8_c00231{left:640.639200pt;}
.x19_c00231{left:655.678707pt;}
.x4_c00231{left:662.078693pt;}
.x5_c00231{left:674.559040pt;}
.x1a_c00231{left:678.079067pt;}
.x2d_c00231{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16d7c68d705e500e12469057.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_f3bd43b7a453ab716424b555.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.364746;font-style:normal;font-weight:normal;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_8f1933900785b449b7f90da3.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_2917c9d065dd90a27ff9b279.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_00b257b9c7978989bf4395a3.woff2')format("woff");}.ff5_c00232{font-family:ff5_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:ff6_c00232;src:url('chunks/assets/font_d6299d8518d45e2a4bb47093.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.432129;font-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_c00232{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m17_c00232{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m14_c00232{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.me_c00232{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.208763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208763,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);}
.m13_c00232{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.md_c00232{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m11_c00232{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.mb_c00232{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);}
.m12_c00232{transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307432,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m15_c00232{transform:matrix(0.465517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465517,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls11_c00232{letter-spacing:-13.262528px;}
.lsb_c00232{letter-spacing:-8.331750px;}
.ls10_c00232{letter-spacing:-7.576538px;}
.ls14_c00232{letter-spacing:-7.500375px;}
.ls13_c00232{letter-spacing:-6.811875px;}
.ls1d_c00232{letter-spacing:-6.572700px;}
.ls18_c00232{letter-spacing:-6.171225px;}
.ls1e_c00232{letter-spacing:-6.055875px;}
.lsd_c00232{letter-spacing:-6.000300px;}
.lsa_c00232{letter-spacing:-5.300663px;}
.lse_c00232{letter-spacing:-4.543088px;}
.ls1c_c00232{letter-spacing:-4.432650px;}
.lsf_c00232{letter-spacing:-4.330463px;}
.ls5_c00232{letter-spacing:-3.787875px;}
.ls15_c00232{letter-spacing:-3.719625px;}
.ls16_c00232{letter-spacing:-3.683475px;}
.lsc_c00232{letter-spacing:-3.080025px;}
.ls6_c00232{letter-spacing:-3.031875px;}
.ls9_c00232{letter-spacing:-2.267213px;}
.ls19_c00232{letter-spacing:-1.831500px;}
.ls12_c00232{letter-spacing:-1.792200px;}
.ls17_c00232{letter-spacing:-1.526963px;}
.ls8_c00232{letter-spacing:-1.512000px;}
.ls7_c00232{letter-spacing:-0.756000px;}
.ls4_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:0.756000px;}
.ls1b_c00232{letter-spacing:0.934065px;}
.ls2_c00232{letter-spacing:1.512000px;}
.ls1_c00232{letter-spacing:2.267213px;}
.ls3_c00232{letter-spacing:4.543088px;}
.ls1a_c00232{letter-spacing:6.418500px;}
.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;}
._1d_c00232{margin-left:-48.330329px;}
._1_c00232{margin-left:-36.643223px;}
._e_c00232{margin-left:-16.666408px;}
._1c_c00232{margin-left:-12.999081px;}
._1a_c00232{margin-left:-9.221201px;}
._b_c00232{margin-left:-6.566660px;}
._1b_c00232{margin-left:-5.433871px;}
._c_c00232{margin-left:-3.798415px;}
._a_c00232{margin-left:-1.740799px;}
._3_c00232{width:1.204693px;}
._d_c00232{width:2.250493px;}
._9_c00232{width:3.691376px;}
._7_c00232{width:5.575439px;}
._6_c00232{width:7.009416px;}
._4_c00232{width:8.585204px;}
._5_c00232{width:10.054921px;}
._14_c00232{width:11.138642px;}
._0_c00232{width:13.025189px;}
._15_c00232{width:14.029918px;}
._2_c00232{width:15.474314px;}
._11_c00232{width:17.490617px;}
._16_c00232{width:19.817680px;}
._f_c00232{width:21.657038px;}
._12_c00232{width:23.392627px;}
._8_c00232{width:24.798799px;}
._17_c00232{width:26.547049px;}
._13_c00232{width:27.830795px;}
._10_c00232{width:28.924814px;}
._18_c00232{width:32.056702px;}
._19_c00232{width:37.717494px;}
.fc0_c00232{color:transparent;}
.fse_c00232{font-size:43.500000px;}
.fsb_c00232{font-size:55.500000px;}
.fsa_c00232{font-size:66.000000px;}
.fsc_c00232{font-size:71.250000px;}
.fs6_c00232{font-size:72.000000px;}
.fs7_c00232{font-size:72.750000px;}
.fsd_c00232{font-size:76.500000px;}
.fs0_c00232{font-size:78.750000px;}
.fs9_c00232{font-size:80.250000px;}
.fs8_c00232{font-size:81.750000px;}
.fs2_c00232{font-size:82.500000px;}
.fs1_c00232{font-size:84.750000px;}
.fs5_c00232{font-size:87.000000px;}
.fs3_c00232{font-size:87.750000px;}
.fs4_c00232{font-size:101.250000px;}
.y0_c00232{bottom:0.000000px;}
.y24_c00232{bottom:185.039640px;}
.y23_c00232{bottom:214.559160px;}
.y22_c00232{bottom:273.239850px;}
.y21_c00232{bottom:303.479235px;}
.y20_c00232{bottom:362.880300px;}
.y1f_c00232{bottom:392.399820px;}
.y1e_c00232{bottom:422.278800px;}
.y1d_c00232{bottom:451.439250px;}
.y1c_c00232{bottom:451.439580px;}
.y1a_c00232{bottom:482.039355px;}
.y1b_c00232{bottom:482.039985px;}
.y19_c00232{bottom:511.558890px;}
.y18_c00232{bottom:541.438620px;}
.y17_c00232{bottom:541.439625px;}
.y16_c00232{bottom:570.960960px;}
.y15_c00232{bottom:601.200870px;}
.y14_c00232{bottom:630.720405px;}
.y13_c00232{bottom:660.600135px;}
.y12_c00232{bottom:660.600450px;}
.y10_c00232{bottom:690.119220px;}
.y11_c00232{bottom:690.119985px;}
.yf_c00232{bottom:719.998950px;}
.yd_c00232{bottom:779.039220px;}
.ye_c00232{bottom:779.039985px;}
.yc_c00232{bottom:808.918950px;}
.yb_c00232{bottom:808.919310px;}
.ya_c00232{bottom:839.519715px;}
.y9_c00232{bottom:869.039295px;}
.y8_c00232{bottom:899.279205px;}
.y7_c00232{bottom:899.280000px;}
.y6_c00232{bottom:929.159730px;}
.y5_c00232{bottom:959.039445px;}
.y4_c00232{bottom:988.919175px;}
.y3_c00232{bottom:1018.438710px;}
.y2_c00232{bottom:1077.839760px;}
.y1_c00232{bottom:1138.680090px;}
.h11_c00232{height:43.839844px;}
.he_c00232{height:54.470215px;}
.hc_c00232{height:64.775391px;}
.hf_c00232{height:74.311523px;}
.h8_c00232{height:75.093750px;}
.h9_c00232{height:75.875977px;}
.h1_c00232{height:77.288818px;}
.hb_c00232{height:78.760986px;}
.hd_c00232{height:79.365234px;}
.h10_c00232{height:79.787109px;}
.ha_c00232{height:80.233154px;}
.h3_c00232{height:80.969238px;}
.h2_c00232{height:83.177490px;}
.h6_c00232{height:83.756836px;}
.h7_c00232{height:85.980469px;}
.h4_c00232{height:86.721680px;}
.h5_c00232{height:105.600586px;}
.h0_c00232{height:1263.000000px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x4_c00232{left:140.038605px;}
.x1_c00232{left:141.479715px;}
.x28_c00232{left:155.879565px;}
.x11_c00232{left:163.438665px;}
.x12_c00232{left:174.959400px;}
.x1c_c00232{left:208.439250px;}
.x13_c00232{left:224.279250px;}
.xa_c00232{left:238.679100px;}
.x7_c00232{left:247.678500px;}
.x16_c00232{left:256.679700px;}
.x14_c00232{left:260.639700px;}
.xf_c00232{left:267.839535px;}
.x17_c00232{left:277.918350px;}
.x15_c00232{left:286.558635px;}
.x10_c00232{left:291.599700px;}
.x1d_c00232{left:313.199385px;}
.x1e_c00232{left:366.838515px;}
.x1f_c00232{left:425.518665px;}
.x20_c00232{left:457.559685px;}
.x8_c00232{left:515.878920px;}
.x21_c00232{left:520.199850px;}
.xd_c00232{left:532.439250px;}
.x9_c00232{left:543.599070px;}
.x18_c00232{left:549.358665px;}
.x22_c00232{left:558.719100px;}
.xe_c00232{left:561.238770px;}
.x5_c00232{left:585.719100px;}
.x19_c00232{left:588.958920px;}
.x26_c00232{left:597.599070px;}
.x6_c00232{left:599.759535px;}
.x2_c00232{left:612.359850px;}
.x27_c00232{left:619.198785px;}
.x3_c00232{left:627.479685px;}
.x23_c00232{left:648.718545px;}
.x1a_c00232{left:663.838530px;}
.x1b_c00232{left:683.279250px;}
.xb_c00232{left:701.279850px;}
.x24_c00232{left:708.838950px;}
.xc_c00232{left:725.399235px;}
.x25_c00232{left:766.078770px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls11_c00232{letter-spacing:-11.788913pt;}
.lsb_c00232{letter-spacing:-7.406000pt;}
.ls10_c00232{letter-spacing:-6.734700pt;}
.ls14_c00232{letter-spacing:-6.667000pt;}
.ls13_c00232{letter-spacing:-6.055000pt;}
.ls1d_c00232{letter-spacing:-5.842400pt;}
.ls18_c00232{letter-spacing:-5.485533pt;}
.ls1e_c00232{letter-spacing:-5.383000pt;}
.lsd_c00232{letter-spacing:-5.333600pt;}
.lsa_c00232{letter-spacing:-4.711700pt;}
.lse_c00232{letter-spacing:-4.038300pt;}
.ls1c_c00232{letter-spacing:-3.940133pt;}
.lsf_c00232{letter-spacing:-3.849300pt;}
.ls5_c00232{letter-spacing:-3.367000pt;}
.ls15_c00232{letter-spacing:-3.306333pt;}
.ls16_c00232{letter-spacing:-3.274200pt;}
.lsc_c00232{letter-spacing:-2.737800pt;}
.ls6_c00232{letter-spacing:-2.695000pt;}
.ls9_c00232{letter-spacing:-2.015300pt;}
.ls19_c00232{letter-spacing:-1.628000pt;}
.ls12_c00232{letter-spacing:-1.593067pt;}
.ls17_c00232{letter-spacing:-1.357300pt;}
.ls8_c00232{letter-spacing:-1.344000pt;}
.ls7_c00232{letter-spacing:-0.672000pt;}
.ls4_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.672000pt;}
.ls1b_c00232{letter-spacing:0.830280pt;}
.ls2_c00232{letter-spacing:1.344000pt;}
.ls1_c00232{letter-spacing:2.015300pt;}
.ls3_c00232{letter-spacing:4.038300pt;}
.ls1a_c00232{letter-spacing:5.705333pt;}
.ws0_c00232{word-spacing:0.000000pt;}
._1d_c00232{margin-left:-42.960292pt;}
._1_c00232{margin-left:-32.571754pt;}
._e_c00232{margin-left:-14.814585pt;}
._1c_c00232{margin-left:-11.554738pt;}
._1a_c00232{margin-left:-8.196623pt;}
._b_c00232{margin-left:-5.837031pt;}
._1b_c00232{margin-left:-4.830108pt;}
._c_c00232{margin-left:-3.376369pt;}
._a_c00232{margin-left:-1.547377pt;}
._3_c00232{width:1.070838pt;}
._d_c00232{width:2.000438pt;}
._9_c00232{width:3.281223pt;}
._7_c00232{width:4.955946pt;}
._6_c00232{width:6.230592pt;}
._4_c00232{width:7.631292pt;}
._5_c00232{width:8.937708pt;}
._14_c00232{width:9.901015pt;}
._0_c00232{width:11.577946pt;}
._15_c00232{width:12.471038pt;}
._2_c00232{width:13.754946pt;}
._11_c00232{width:15.547215pt;}
._16_c00232{width:17.615715pt;}
._f_c00232{width:19.250700pt;}
._12_c00232{width:20.793446pt;}
._8_c00232{width:22.043377pt;}
._17_c00232{width:23.597377pt;}
._13_c00232{width:24.738485pt;}
._10_c00232{width:25.710946pt;}
._18_c00232{width:28.494846pt;}
._19_c00232{width:33.526662pt;}
.fse_c00232{font-size:38.666667pt;}
.fsb_c00232{font-size:49.333333pt;}
.fsa_c00232{font-size:58.666667pt;}
.fsc_c00232{font-size:63.333333pt;}
.fs6_c00232{font-size:64.000000pt;}
.fs7_c00232{font-size:64.666667pt;}
.fsd_c00232{font-size:68.000000pt;}
.fs0_c00232{font-size:70.000000pt;}
.fs9_c00232{font-size:71.333333pt;}
.fs8_c00232{font-size:72.666667pt;}
.fs2_c00232{font-size:73.333333pt;}
.fs1_c00232{font-size:75.333333pt;}
.fs5_c00232{font-size:77.333333pt;}
.fs3_c00232{font-size:78.000000pt;}
.fs4_c00232{font-size:90.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y24_c00232{bottom:164.479680pt;}
.y23_c00232{bottom:190.719253pt;}
.y22_c00232{bottom:242.879867pt;}
.y21_c00232{bottom:269.759320pt;}
.y20_c00232{bottom:322.560267pt;}
.y1f_c00232{bottom:348.799840pt;}
.y1e_c00232{bottom:375.358933pt;}
.y1d_c00232{bottom:401.279333pt;}
.y1c_c00232{bottom:401.279627pt;}
.y1a_c00232{bottom:428.479427pt;}
.y1b_c00232{bottom:428.479987pt;}
.y19_c00232{bottom:454.719013pt;}
.y18_c00232{bottom:481.278773pt;}
.y17_c00232{bottom:481.279667pt;}
.y16_c00232{bottom:507.520853pt;}
.y15_c00232{bottom:534.400773pt;}
.y14_c00232{bottom:560.640360pt;}
.y13_c00232{bottom:587.200120pt;}
.y12_c00232{bottom:587.200400pt;}
.y10_c00232{bottom:613.439307pt;}
.y11_c00232{bottom:613.439987pt;}
.yf_c00232{bottom:639.999067pt;}
.yd_c00232{bottom:692.479307pt;}
.ye_c00232{bottom:692.479987pt;}
.yc_c00232{bottom:719.039067pt;}
.yb_c00232{bottom:719.039387pt;}
.ya_c00232{bottom:746.239747pt;}
.y9_c00232{bottom:772.479373pt;}
.y8_c00232{bottom:799.359293pt;}
.y7_c00232{bottom:799.360000pt;}
.y6_c00232{bottom:825.919760pt;}
.y5_c00232{bottom:852.479507pt;}
.y4_c00232{bottom:879.039267pt;}
.y3_c00232{bottom:905.278853pt;}
.y2_c00232{bottom:958.079787pt;}
.y1_c00232{bottom:1012.160080pt;}
.h11_c00232{height:38.968750pt;}
.he_c00232{height:48.417969pt;}
.hc_c00232{height:57.578125pt;}
.hf_c00232{height:66.054688pt;}
.h8_c00232{height:66.750000pt;}
.h9_c00232{height:67.445312pt;}
.h1_c00232{height:68.701172pt;}
.hb_c00232{height:70.009766pt;}
.hd_c00232{height:70.546875pt;}
.h10_c00232{height:70.921875pt;}
.ha_c00232{height:71.318359pt;}
.h3_c00232{height:71.972656pt;}
.h2_c00232{height:73.935547pt;}
.h6_c00232{height:74.450521pt;}
.h7_c00232{height:76.427083pt;}
.h4_c00232{height:77.085938pt;}
.h5_c00232{height:93.867188pt;}
.h0_c00232{height:1122.666667pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x4_c00232{left:124.478760pt;}
.x1_c00232{left:125.759747pt;}
.x28_c00232{left:138.559613pt;}
.x11_c00232{left:145.278813pt;}
.x12_c00232{left:155.519467pt;}
.x1c_c00232{left:185.279333pt;}
.x13_c00232{left:199.359333pt;}
.xa_c00232{left:212.159200pt;}
.x7_c00232{left:220.158667pt;}
.x16_c00232{left:228.159733pt;}
.x14_c00232{left:231.679733pt;}
.xf_c00232{left:238.079587pt;}
.x17_c00232{left:247.038533pt;}
.x15_c00232{left:254.718787pt;}
.x10_c00232{left:259.199733pt;}
.x1d_c00232{left:278.399453pt;}
.x1e_c00232{left:326.078680pt;}
.x1f_c00232{left:378.238813pt;}
.x20_c00232{left:406.719720pt;}
.x8_c00232{left:458.559040pt;}
.x21_c00232{left:462.399867pt;}
.xd_c00232{left:473.279333pt;}
.x9_c00232{left:483.199173pt;}
.x18_c00232{left:488.318813pt;}
.x22_c00232{left:496.639200pt;}
.xe_c00232{left:498.878907pt;}
.x5_c00232{left:520.639200pt;}
.x19_c00232{left:523.519040pt;}
.x26_c00232{left:531.199173pt;}
.x6_c00232{left:533.119587pt;}
.x2_c00232{left:544.319867pt;}
.x27_c00232{left:550.398920pt;}
.x3_c00232{left:557.759720pt;}
.x23_c00232{left:576.638707pt;}
.x1a_c00232{left:590.078693pt;}
.x1b_c00232{left:607.359333pt;}
.xb_c00232{left:623.359867pt;}
.x24_c00232{left:630.079067pt;}
.xc_c00232{left:644.799320pt;}
.x25_c00232{left:680.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62f9619995e2215577036ac0.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_e94c3fd147f4572b669a233d.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.364746;font-style:normal;font-weight:normal;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_f0351792e9161ddbf218a8a0.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_c1b4e105609fd1b6f34ec716.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_daedebdb1568ecbc3c8fe635.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_24caee8a051a6848244cb0e9.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00233;src:url('chunks/assets/font_c5f39b0c5ec82f6f1b4ef0b0.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c00233{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);}
.m2d_c00233{transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.197619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197619,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{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);}
.m2c_c00233{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m28_c00233{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m25_c00233{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m24_c00233{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262963,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m23_c00233{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275862,0.000000,0.000000,0.250000,0,0);}
.m2e_c00233{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.335106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335106,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(0.339623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339623,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345745,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);}
.m21_c00233{transform:matrix(0.371951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371951,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.385870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385870,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.399038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399038,0.000000,0.000000,0.250000,0,0);}
.m1d_c00233{transform:matrix(0.439024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439024,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{transform:matrix(0.446721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446721,0.000000,0.000000,0.250000,0,0);}
.m22_c00233{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.506944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506944,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.548611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548611,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.560606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560606,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.lsc_c00233{letter-spacing:-19.481175px;}
.ls36_c00233{letter-spacing:-18.496800px;}
.lsf_c00233{letter-spacing:-8.175038px;}
.ls14_c00233{letter-spacing:-7.426125px;}
.ls37_c00233{letter-spacing:-7.275728px;}
.ls16_c00233{letter-spacing:-7.128000px;}
.ls32_c00233{letter-spacing:-6.685875px;}
.ls31_c00233{letter-spacing:-6.575250px;}
.ls10_c00233{letter-spacing:-5.945625px;}
.ls7_c00233{letter-spacing:-5.734800px;}
.ls13_c00233{letter-spacing:-5.196713px;}
.ls30_c00233{letter-spacing:-5.109375px;}
.ls6_c00233{letter-spacing:-4.456463px;}
.ls22_c00233{letter-spacing:-4.419450px;}
.ls34_c00233{letter-spacing:-4.336800px;}
.ls17_c00233{letter-spacing:-4.249575px;}
.lsb_c00233{letter-spacing:-3.818588px;}
.ls2_c00233{letter-spacing:-3.717000px;}
.ls4_c00233{letter-spacing:-3.649050px;}
.lsd_c00233{letter-spacing:-3.055500px;}
.ls3_c00233{letter-spacing:-2.968875px;}
.lse_c00233{letter-spacing:-2.842875px;}
.ls20_c00233{letter-spacing:-2.834325px;}
.ls9_c00233{letter-spacing:-2.291625px;}
.ls35_c00233{letter-spacing:-2.267213px;}
.ls1_c00233{letter-spacing:-2.229413px;}
.ls2a_c00233{letter-spacing:-2.134050px;}
.ls2f_c00233{letter-spacing:-1.924650px;}
.lsa_c00233{letter-spacing:-1.526963px;}
.ls12_c00233{letter-spacing:-1.489163px;}
.ls8_c00233{letter-spacing:-0.740250px;}
.ls1e_c00233{letter-spacing:-0.364650px;}
.ls1d_c00233{letter-spacing:-0.342900px;}
.ls5_c00233{letter-spacing:0.000000px;}
.ls25_c00233{letter-spacing:0.560475px;}
.ls29_c00233{letter-spacing:0.563288px;}
.ls1c_c00233{letter-spacing:0.668002px;}
.ls2c_c00233{letter-spacing:0.740250px;}
.ls24_c00233{letter-spacing:0.972900px;}
.ls2b_c00233{letter-spacing:1.040400px;}
.ls26_c00233{letter-spacing:1.095150px;}
.ls15_c00233{letter-spacing:1.359375px;}
.ls11_c00233{letter-spacing:3.300750px;}
.ls1b_c00233{letter-spacing:3.542333px;}
.ls2d_c00233{letter-spacing:3.998400px;}
.ls23_c00233{letter-spacing:4.338923px;}
.ls1a_c00233{letter-spacing:4.968750px;}
.ls18_c00233{letter-spacing:5.639790px;}
.ls0_c00233{letter-spacing:7.083900px;}
.ls33_c00233{letter-spacing:10.671750px;}
.ls1f_c00233{letter-spacing:12.295800px;}
.ls19_c00233{letter-spacing:12.748725px;}
.ls21_c00233{letter-spacing:13.645275px;}
.ls27_c00233{letter-spacing:17.898615px;}
.ls28_c00233{letter-spacing:20.046600px;}
.ls2e_c00233{letter-spacing:22.179975px;}
.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;}
._17_c00233{margin-left:-27.701615px;}
._0_c00233{margin-left:-10.560524px;}
._18_c00233{margin-left:-6.357146px;}
._5_c00233{margin-left:-4.669429px;}
._7_c00233{margin-left:-3.420231px;}
._1_c00233{margin-left:-1.731356px;}
._c_c00233{width:1.790730px;}
._6_c00233{width:2.914954px;}
._4_c00233{width:3.992343px;}
._3_c00233{width:5.959102px;}
._11_c00233{width:7.136563px;}
._2_c00233{width:8.176746px;}
._a_c00233{width:10.002855px;}
._12_c00233{width:11.352065px;}
._b_c00233{width:12.452782px;}
._9_c00233{width:14.573846px;}
._f_c00233{width:15.729272px;}
._13_c00233{width:17.616167px;}
._e_c00233{width:18.769186px;}
._8_c00233{width:20.759481px;}
._16_c00233{width:22.043135px;}
._d_c00233{width:23.963402px;}
._14_c00233{width:25.651505px;}
._10_c00233{width:27.838155px;}
._15_c00233{width:32.642276px;}
._19_c00233{width:1124.570356px;}
.fc0_c00233{color:transparent;}
.fs8_c00233{font-size:21.750000px;}
.fse_c00233{font-size:24.750000px;}
.fs10_c00233{font-size:25.500000px;}
.fsf_c00233{font-size:27.000000px;}
.fs1c_c00233{font-size:29.250000px;}
.fs18_c00233{font-size:30.750000px;}
.fs16_c00233{font-size:31.500000px;}
.fs17_c00233{font-size:33.750000px;}
.fs14_c00233{font-size:34.500000px;}
.fs12_c00233{font-size:35.250000px;}
.fs15_c00233{font-size:36.750000px;}
.fsa_c00233{font-size:38.250000px;}
.fsb_c00233{font-size:39.000000px;}
.fsd_c00233{font-size:39.750000px;}
.fs11_c00233{font-size:40.500000px;}
.fs1b_c00233{font-size:45.750000px;}
.fs1a_c00233{font-size:48.000000px;}
.fs19_c00233{font-size:51.000000px;}
.fs13_c00233{font-size:51.750000px;}
.fsc_c00233{font-size:54.000000px;}
.fs3_c00233{font-size:69.750000px;}
.fs23_c00233{font-size:72.750000px;}
.fs5_c00233{font-size:75.000000px;}
.fs1e_c00233{font-size:76.500000px;}
.fs7_c00233{font-size:78.000000px;}
.fs0_c00233{font-size:78.750000px;}
.fs1_c00233{font-size:79.500000px;}
.fs4_c00233{font-size:80.250000px;}
.fs2_c00233{font-size:81.000000px;}
.fs1d_c00233{font-size:81.750000px;}
.fs6_c00233{font-size:82.500000px;}
.fs1f_c00233{font-size:84.000000px;}
.fs22_c00233{font-size:85.500000px;}
.fs21_c00233{font-size:86.250000px;}
.fs9_c00233{font-size:101.250000px;}
.fs20_c00233{font-size:104.250000px;}
.y0_c00233{bottom:0.000000px;}
.y22_c00233{bottom:239.040000px;}
.y2b_c00233{bottom:291.599100px;}
.y2c_c00233{bottom:291.599700px;}
.y2a_c00233{bottom:322.559685px;}
.y29_c00233{bottom:322.559745px;}
.y28_c00233{bottom:354.599100px;}
.y27_c00233{bottom:354.600075px;}
.y26_c00233{bottom:386.279250px;}
.y25_c00233{bottom:386.279415px;}
.y24_c00233{bottom:418.318770px;}
.y23_c00233{bottom:450.719970px;}
.y21_c00233{bottom:503.999565px;}
.y20_c00233{bottom:524.879970px;}
.y1f_c00233{bottom:626.399535px;}
.y1e_c00233{bottom:656.279250px;}
.y1d_c00233{bottom:656.280105px;}
.y1c_c00233{bottom:686.159820px;}
.y1b_c00233{bottom:686.159910px;}
.y1a_c00233{bottom:716.399820px;}
.y17_c00233{bottom:744.299520px;}
.y18_c00233{bottom:745.378920px;}
.y13_c00233{bottom:745.560285px;}
.y14_c00233{bottom:745.739820px;}
.y15_c00233{bottom:745.919535px;}
.y16_c00233{bottom:746.099070px;}
.y19_c00233{bottom:746.278800px;}
.y12_c00233{bottom:752.039985px;}
.y11_c00233{bottom:775.440105px;}
.y10_c00233{bottom:805.319820px;}
.yf_c00233{bottom:805.319955px;}
.ye_c00233{bottom:835.559880px;}
.yc_c00233{bottom:865.079265px;}
.yd_c00233{bottom:865.079400px;}
.yb_c00233{bottom:895.319190px;}
.ya_c00233{bottom:895.319550px;}
.y9_c00233{bottom:924.839085px;}
.y8_c00233{bottom:954.358605px;}
.y7_c00233{bottom:954.359505px;}
.y6_c00233{bottom:984.239220px;}
.y5_c00233{bottom:984.239280px;}
.y4_c00233{bottom:1014.479190px;}
.y3_c00233{bottom:1073.518620px;}
.y2_c00233{bottom:1103.039220px;}
.y1_c00233{bottom:1132.918950px;}
.ha_c00233{height:22.684570px;}
.h10_c00233{height:25.813477px;}
.h12_c00233{height:26.595703px;}
.h11_c00233{height:28.160156px;}
.h1a_c00233{height:30.179443px;}
.h1e_c00233{height:30.506836px;}
.h1f_c00233{height:30.915527px;}
.h18_c00233{height:32.853516px;}
.h19_c00233{height:33.123779px;}
.h16_c00233{height:33.859863px;}
.h14_c00233{height:34.595947px;}
.h17_c00233{height:36.068115px;}
.hd_c00233{height:39.304688px;}
.hc_c00233{height:39.893555px;}
.hf_c00233{height:41.458008px;}
.h13_c00233{height:42.240234px;}
.h1d_c00233{height:44.901123px;}
.h1c_c00233{height:47.109375px;}
.h1b_c00233{height:50.053711px;}
.h15_c00233{height:50.789795px;}
.he_c00233{height:56.320312px;}
.h4_c00233{height:68.455811px;}
.h7_c00233{height:73.608398px;}
.h29_c00233{height:75.875977px;}
.h9_c00233{height:76.552734px;}
.h1_c00233{height:77.288818px;}
.h6_c00233{height:77.827148px;}
.h2_c00233{height:78.024902px;}
.h22_c00233{height:78.609375px;}
.h5_c00233{height:78.760986px;}
.h23_c00233{height:79.365234px;}
.h3_c00233{height:79.497070px;}
.h21_c00233{height:79.787109px;}
.h24_c00233{height:80.121094px;}
.h20_c00233{height:80.233154px;}
.h8_c00233{height:80.969238px;}
.h28_c00233{height:84.498047px;}
.h25_c00233{height:84.656250px;}
.h27_c00233{height:89.956055px;}
.hb_c00233{height:105.600586px;}
.h26_c00233{height:108.729492px;}
.h0_c00233{height:1263.000000px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.xd_c00233{left:137.880540px;}
.x1_c00233{left:138.958350px;}
.x2b_c00233{left:188.639100px;}
.x1a_c00233{left:205.199385px;}
.x2c_c00233{left:222.479685px;}
.x1b_c00233{left:229.679700px;}
.x2e_c00233{left:270.718500px;}
.x32_c00233{left:272.157990px;}
.x1c_c00233{left:279.358635px;}
.x12_c00233{left:283.318800px;}
.x13_c00233{left:298.799535px;}
.x33_c00233{left:304.559100px;}
.x1d_c00233{left:307.439685px;}
.x2_c00233{left:313.919535px;}
.x37_c00233{left:320.758500px;}
.x16_c00233{left:322.198785px;}
.x2f_c00233{left:329.039385px;}
.x1e_c00233{left:330.118785px;}
.x3_c00233{left:331.559100px;}
.x38_c00233{left:332.999385px;}
.x17_c00233{left:335.519100px;}
.x36_c00233{left:343.439235px;}
.x1f_c00233{left:345.599700px;}
.x27_c00233{left:348.478635px;}
.x6_c00233{left:351.359235px;}
.x34_c00233{left:363.598530px;}
.x35_c00233{left:375.478635px;}
.x29_c00233{left:378.000000px;}
.x20_c00233{left:387.719565px;}
.x2a_c00233{left:398.879565px;}
.x9_c00233{left:441.719565px;}
.x30_c00233{left:443.878320px;}
.xa_c00233{left:455.399235px;}
.x28_c00233{left:473.759085px;}
.x31_c00233{left:506.879520px;}
.x7_c00233{left:516.239820px;}
.x21_c00233{left:527.399820px;}
.x8_c00233{left:531.359850px;}
.x2d_c00233{left:547.199850px;}
.xb_c00233{left:555.479235px;}
.x4_c00233{left:581.399820px;}
.xc_c00233{left:595.438620px;}
.x22_c00233{left:604.078770px;}
.x5_c00233{left:613.080000px;}
.x10_c00233{left:618.478635px;}
.x14_c00233{left:624.599070px;}
.x3a_c00233{left:627.838950px;}
.x11_c00233{left:632.519070px;}
.x39_c00233{left:635.038920px;}
.x15_c00233{left:638.639700px;}
.x23_c00233{left:662.759085px;}
.x24_c00233{left:676.438620px;}
.xe_c00233{left:683.638545px;}
.xf_c00233{left:700.198785px;}
.x25_c00233{left:721.798560px;}
.x18_c00233{left:722.879520px;}
.x19_c00233{left:736.918350px;}
.x26_c00233{left:744.838530px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.lsc_c00233{letter-spacing:-17.316600pt;}
.ls36_c00233{letter-spacing:-16.441600pt;}
.lsf_c00233{letter-spacing:-7.266700pt;}
.ls14_c00233{letter-spacing:-6.601000pt;}
.ls37_c00233{letter-spacing:-6.467313pt;}
.ls16_c00233{letter-spacing:-6.336000pt;}
.ls32_c00233{letter-spacing:-5.943000pt;}
.ls31_c00233{letter-spacing:-5.844667pt;}
.ls10_c00233{letter-spacing:-5.285000pt;}
.ls7_c00233{letter-spacing:-5.097600pt;}
.ls13_c00233{letter-spacing:-4.619300pt;}
.ls30_c00233{letter-spacing:-4.541667pt;}
.ls6_c00233{letter-spacing:-3.961300pt;}
.ls22_c00233{letter-spacing:-3.928400pt;}
.ls34_c00233{letter-spacing:-3.854933pt;}
.ls17_c00233{letter-spacing:-3.777400pt;}
.lsb_c00233{letter-spacing:-3.394300pt;}
.ls2_c00233{letter-spacing:-3.304000pt;}
.ls4_c00233{letter-spacing:-3.243600pt;}
.lsd_c00233{letter-spacing:-2.716000pt;}
.ls3_c00233{letter-spacing:-2.639000pt;}
.lse_c00233{letter-spacing:-2.527000pt;}
.ls20_c00233{letter-spacing:-2.519400pt;}
.ls9_c00233{letter-spacing:-2.037000pt;}
.ls35_c00233{letter-spacing:-2.015300pt;}
.ls1_c00233{letter-spacing:-1.981700pt;}
.ls2a_c00233{letter-spacing:-1.896933pt;}
.ls2f_c00233{letter-spacing:-1.710800pt;}
.lsa_c00233{letter-spacing:-1.357300pt;}
.ls12_c00233{letter-spacing:-1.323700pt;}
.ls8_c00233{letter-spacing:-0.658000pt;}
.ls1e_c00233{letter-spacing:-0.324133pt;}
.ls1d_c00233{letter-spacing:-0.304800pt;}
.ls5_c00233{letter-spacing:0.000000pt;}
.ls25_c00233{letter-spacing:0.498200pt;}
.ls29_c00233{letter-spacing:0.500700pt;}
.ls1c_c00233{letter-spacing:0.593780pt;}
.ls2c_c00233{letter-spacing:0.658000pt;}
.ls24_c00233{letter-spacing:0.864800pt;}
.ls2b_c00233{letter-spacing:0.924800pt;}
.ls26_c00233{letter-spacing:0.973467pt;}
.ls15_c00233{letter-spacing:1.208333pt;}
.ls11_c00233{letter-spacing:2.934000pt;}
.ls1b_c00233{letter-spacing:3.148740pt;}
.ls2d_c00233{letter-spacing:3.554133pt;}
.ls23_c00233{letter-spacing:3.856820pt;}
.ls1a_c00233{letter-spacing:4.416667pt;}
.ls18_c00233{letter-spacing:5.013147pt;}
.ls0_c00233{letter-spacing:6.296800pt;}
.ls33_c00233{letter-spacing:9.486000pt;}
.ls1f_c00233{letter-spacing:10.929600pt;}
.ls19_c00233{letter-spacing:11.332200pt;}
.ls21_c00233{letter-spacing:12.129133pt;}
.ls27_c00233{letter-spacing:15.909880pt;}
.ls28_c00233{letter-spacing:17.819200pt;}
.ls2e_c00233{letter-spacing:19.715533pt;}
.ws0_c00233{word-spacing:0.000000pt;}
._17_c00233{margin-left:-24.623658pt;}
._0_c00233{margin-left:-9.387132pt;}
._18_c00233{margin-left:-5.650796pt;}
._5_c00233{margin-left:-4.150604pt;}
._7_c00233{margin-left:-3.040206pt;}
._1_c00233{margin-left:-1.538983pt;}
._c_c00233{width:1.591760pt;}
._6_c00233{width:2.591070pt;}
._4_c00233{width:3.548749pt;}
._3_c00233{width:5.296979pt;}
._11_c00233{width:6.343611pt;}
._2_c00233{width:7.268219pt;}
._a_c00233{width:8.891426pt;}
._12_c00233{width:10.090725pt;}
._b_c00233{width:11.069140pt;}
._9_c00233{width:12.954530pt;}
._f_c00233{width:13.981575pt;}
._13_c00233{width:15.658815pt;}
._e_c00233{width:16.683721pt;}
._8_c00233{width:18.452872pt;}
._16_c00233{width:19.593898pt;}
._d_c00233{width:21.300802pt;}
._14_c00233{width:22.801338pt;}
._10_c00233{width:24.745026pt;}
._15_c00233{width:29.015357pt;}
._19_c00233{width:999.618094pt;}
.fs8_c00233{font-size:19.333333pt;}
.fse_c00233{font-size:22.000000pt;}
.fs10_c00233{font-size:22.666667pt;}
.fsf_c00233{font-size:24.000000pt;}
.fs1c_c00233{font-size:26.000000pt;}
.fs18_c00233{font-size:27.333333pt;}
.fs16_c00233{font-size:28.000000pt;}
.fs17_c00233{font-size:30.000000pt;}
.fs14_c00233{font-size:30.666667pt;}
.fs12_c00233{font-size:31.333333pt;}
.fs15_c00233{font-size:32.666667pt;}
.fsa_c00233{font-size:34.000000pt;}
.fsb_c00233{font-size:34.666667pt;}
.fsd_c00233{font-size:35.333333pt;}
.fs11_c00233{font-size:36.000000pt;}
.fs1b_c00233{font-size:40.666667pt;}
.fs1a_c00233{font-size:42.666667pt;}
.fs19_c00233{font-size:45.333333pt;}
.fs13_c00233{font-size:46.000000pt;}
.fsc_c00233{font-size:48.000000pt;}
.fs3_c00233{font-size:62.000000pt;}
.fs23_c00233{font-size:64.666667pt;}
.fs5_c00233{font-size:66.666667pt;}
.fs1e_c00233{font-size:68.000000pt;}
.fs7_c00233{font-size:69.333333pt;}
.fs0_c00233{font-size:70.000000pt;}
.fs1_c00233{font-size:70.666667pt;}
.fs4_c00233{font-size:71.333333pt;}
.fs2_c00233{font-size:72.000000pt;}
.fs1d_c00233{font-size:72.666667pt;}
.fs6_c00233{font-size:73.333333pt;}
.fs1f_c00233{font-size:74.666667pt;}
.fs22_c00233{font-size:76.000000pt;}
.fs21_c00233{font-size:76.666667pt;}
.fs9_c00233{font-size:90.000000pt;}
.fs20_c00233{font-size:92.666667pt;}
.y0_c00233{bottom:0.000000pt;}
.y22_c00233{bottom:212.480000pt;}
.y2b_c00233{bottom:259.199200pt;}
.y2c_c00233{bottom:259.199733pt;}
.y2a_c00233{bottom:286.719720pt;}
.y29_c00233{bottom:286.719773pt;}
.y28_c00233{bottom:315.199200pt;}
.y27_c00233{bottom:315.200067pt;}
.y26_c00233{bottom:343.359333pt;}
.y25_c00233{bottom:343.359480pt;}
.y24_c00233{bottom:371.838907pt;}
.y23_c00233{bottom:400.639973pt;}
.y21_c00233{bottom:447.999613pt;}
.y20_c00233{bottom:466.559973pt;}
.y1f_c00233{bottom:556.799587pt;}
.y1e_c00233{bottom:583.359333pt;}
.y1d_c00233{bottom:583.360093pt;}
.y1c_c00233{bottom:609.919840pt;}
.y1b_c00233{bottom:609.919920pt;}
.y1a_c00233{bottom:636.799840pt;}
.y17_c00233{bottom:661.599573pt;}
.y18_c00233{bottom:662.559040pt;}
.y13_c00233{bottom:662.720253pt;}
.y14_c00233{bottom:662.879840pt;}
.y15_c00233{bottom:663.039587pt;}
.y16_c00233{bottom:663.199173pt;}
.y19_c00233{bottom:663.358933pt;}
.y12_c00233{bottom:668.479987pt;}
.y11_c00233{bottom:689.280093pt;}
.y10_c00233{bottom:715.839840pt;}
.yf_c00233{bottom:715.839960pt;}
.ye_c00233{bottom:742.719893pt;}
.yc_c00233{bottom:768.959347pt;}
.yd_c00233{bottom:768.959467pt;}
.yb_c00233{bottom:795.839280pt;}
.ya_c00233{bottom:795.839600pt;}
.y9_c00233{bottom:822.079187pt;}
.y8_c00233{bottom:848.318760pt;}
.y7_c00233{bottom:848.319560pt;}
.y6_c00233{bottom:874.879307pt;}
.y5_c00233{bottom:874.879360pt;}
.y4_c00233{bottom:901.759280pt;}
.y3_c00233{bottom:954.238773pt;}
.y2_c00233{bottom:980.479307pt;}
.y1_c00233{bottom:1007.039067pt;}
.ha_c00233{height:20.164062pt;}
.h10_c00233{height:22.945312pt;}
.h12_c00233{height:23.640625pt;}
.h11_c00233{height:25.031250pt;}
.h1a_c00233{height:26.826172pt;}
.h1e_c00233{height:27.117188pt;}
.h1f_c00233{height:27.480469pt;}
.h18_c00233{height:29.203125pt;}
.h19_c00233{height:29.443359pt;}
.h16_c00233{height:30.097656pt;}
.h14_c00233{height:30.751953pt;}
.h17_c00233{height:32.060547pt;}
.hd_c00233{height:34.937500pt;}
.hc_c00233{height:35.460938pt;}
.hf_c00233{height:36.851562pt;}
.h13_c00233{height:37.546875pt;}
.h1d_c00233{height:39.912109pt;}
.h1c_c00233{height:41.875000pt;}
.h1b_c00233{height:44.492188pt;}
.h15_c00233{height:45.146484pt;}
.he_c00233{height:50.062500pt;}
.h4_c00233{height:60.849609pt;}
.h7_c00233{height:65.429688pt;}
.h29_c00233{height:67.445312pt;}
.h9_c00233{height:68.046875pt;}
.h1_c00233{height:68.701172pt;}
.h6_c00233{height:69.179688pt;}
.h2_c00233{height:69.355469pt;}
.h22_c00233{height:69.875000pt;}
.h5_c00233{height:70.009766pt;}
.h23_c00233{height:70.546875pt;}
.h3_c00233{height:70.664062pt;}
.h21_c00233{height:70.921875pt;}
.h24_c00233{height:71.218750pt;}
.h20_c00233{height:71.318359pt;}
.h8_c00233{height:71.972656pt;}
.h28_c00233{height:75.109375pt;}
.h25_c00233{height:75.250000pt;}
.h27_c00233{height:79.960938pt;}
.hb_c00233{height:93.867188pt;}
.h26_c00233{height:96.648438pt;}
.h0_c00233{height:1122.666667pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.xd_c00233{left:122.560480pt;}
.x1_c00233{left:123.518533pt;}
.x2b_c00233{left:167.679200pt;}
.x1a_c00233{left:182.399453pt;}
.x2c_c00233{left:197.759720pt;}
.x1b_c00233{left:204.159733pt;}
.x2e_c00233{left:240.638667pt;}
.x32_c00233{left:241.918213pt;}
.x1c_c00233{left:248.318787pt;}
.x12_c00233{left:251.838933pt;}
.x13_c00233{left:265.599587pt;}
.x33_c00233{left:270.719200pt;}
.x1d_c00233{left:273.279720pt;}
.x2_c00233{left:279.039587pt;}
.x37_c00233{left:285.118667pt;}
.x16_c00233{left:286.398920pt;}
.x2f_c00233{left:292.479453pt;}
.x1e_c00233{left:293.438920pt;}
.x3_c00233{left:294.719200pt;}
.x38_c00233{left:295.999453pt;}
.x17_c00233{left:298.239200pt;}
.x36_c00233{left:305.279320pt;}
.x1f_c00233{left:307.199733pt;}
.x27_c00233{left:309.758787pt;}
.x6_c00233{left:312.319320pt;}
.x34_c00233{left:323.198693pt;}
.x35_c00233{left:333.758787pt;}
.x29_c00233{left:336.000000pt;}
.x20_c00233{left:344.639613pt;}
.x2a_c00233{left:354.559613pt;}
.x9_c00233{left:392.639613pt;}
.x30_c00233{left:394.558507pt;}
.xa_c00233{left:404.799320pt;}
.x28_c00233{left:421.119187pt;}
.x31_c00233{left:450.559573pt;}
.x7_c00233{left:458.879840pt;}
.x21_c00233{left:468.799840pt;}
.x8_c00233{left:472.319867pt;}
.x2d_c00233{left:486.399867pt;}
.xb_c00233{left:493.759320pt;}
.x4_c00233{left:516.799840pt;}
.xc_c00233{left:529.278773pt;}
.x22_c00233{left:536.958907pt;}
.x5_c00233{left:544.960000pt;}
.x10_c00233{left:549.758787pt;}
.x14_c00233{left:555.199173pt;}
.x3a_c00233{left:558.079067pt;}
.x11_c00233{left:562.239173pt;}
.x39_c00233{left:564.479040pt;}
.x15_c00233{left:567.679733pt;}
.x23_c00233{left:589.119187pt;}
.x24_c00233{left:601.278773pt;}
.xe_c00233{left:607.678707pt;}
.xf_c00233{left:622.398920pt;}
.x25_c00233{left:641.598720pt;}
.x18_c00233{left:642.559573pt;}
.x19_c00233{left:655.038533pt;}
.x26_c00233{left:662.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e50f9f583f262165cbd2656b.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_1de09db6c31d9020854dbc65.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_9c2ecaf914db6b1079664d1a.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_ced0bca3a995f6e5f779bccb.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_41c70fce67ccd1bb0adb10b8.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00234;src:url('chunks/assets/font_12c9ebf4ba0223e18130a895.woff2')format("woff");}.ff7_c00234{font-family:ff7_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c00234{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m20_c00234{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m21_c00234{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m1a_c00234{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m1d_c00234{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m1b_c00234{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);}
.m14_c00234{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m16_c00234{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m12_c00234{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m18_c00234{transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);}
.m11_c00234{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,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);}
.m10_c00234{transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.382075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382075,0.000000,0.000000,0.250000,0,0);}
.m13_c00234{transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454082,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.460938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460938,0.000000,0.000000,0.250000,0,0);}
.m17_c00234{transform:matrix(0.472973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472973,0.000000,0.000000,0.250000,0,0);}
.m1e_c00234{transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.lsb_c00234{letter-spacing:-16.095750px;}
.ls20_c00234{letter-spacing:-11.142338px;}
.ls10_c00234{letter-spacing:-8.914500px;}
.ls26_c00234{letter-spacing:-8.175038px;}
.ls14_c00234{letter-spacing:-7.426125px;}
.lsd_c00234{letter-spacing:-6.685875px;}
.ls6_c00234{letter-spacing:-5.945625px;}
.ls11_c00234{letter-spacing:-5.196713px;}
.lse_c00234{letter-spacing:-5.151248px;}
.ls9_c00234{letter-spacing:-4.456463px;}
.lsa_c00234{letter-spacing:-4.135950px;}
.ls12_c00234{letter-spacing:-3.719625px;}
.ls7_c00234{letter-spacing:-3.717000px;}
.ls13_c00234{letter-spacing:-3.606458px;}
.lsf_c00234{letter-spacing:-3.081975px;}
.ls4_c00234{letter-spacing:-2.968875px;}
.ls27_c00234{letter-spacing:-2.833050px;}
.ls3_c00234{letter-spacing:-2.229413px;}
.ls28_c00234{letter-spacing:-2.187135px;}
.ls8_c00234{letter-spacing:-1.489163px;}
.ls17_c00234{letter-spacing:-0.981825px;}
.ls15_c00234{letter-spacing:-0.780300px;}
.ls5_c00234{letter-spacing:-0.740250px;}
.ls29_c00234{letter-spacing:-0.734400px;}
.lsc_c00234{letter-spacing:0.000000px;}
.ls21_c00234{letter-spacing:0.761475px;}
.ls16_c00234{letter-spacing:0.813840px;}
.ls25_c00234{letter-spacing:0.827243px;}
.ls1c_c00234{letter-spacing:1.103325px;}
.ls1e_c00234{letter-spacing:1.442483px;}
.ls2a_c00234{letter-spacing:1.823310px;}
.ls18_c00234{letter-spacing:4.287000px;}
.ls2_c00234{letter-spacing:5.358000px;}
.ls1_c00234{letter-spacing:5.892000px;}
.ls1d_c00234{letter-spacing:6.314400px;}
.ls0_c00234{letter-spacing:6.963000px;}
.ls1b_c00234{letter-spacing:8.037000px;}
.ls24_c00234{letter-spacing:8.045700px;}
.ls19_c00234{letter-spacing:8.361000px;}
.ls22_c00234{letter-spacing:9.749025px;}
.ls1f_c00234{letter-spacing:10.125000px;}
.ls23_c00234{letter-spacing:14.271825px;}
.ls1a_c00234{letter-spacing:14.463000px;}
.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;}
._19_c00234{margin-left:-11.092621px;}
._8_c00234{margin-left:-9.827198px;}
._18_c00234{margin-left:-7.442767px;}
._16_c00234{margin-left:-6.368765px;}
._1a_c00234{margin-left:-5.355520px;}
._7_c00234{margin-left:-3.869953px;}
._5_c00234{margin-left:-2.186189px;}
._b_c00234{width:1.483813px;}
._6_c00234{width:2.890392px;}
._9_c00234{width:4.182071px;}
._17_c00234{width:5.290054px;}
._13_c00234{width:6.503457px;}
._f_c00234{width:7.558960px;}
._a_c00234{width:9.384266px;}
._1b_c00234{width:10.398507px;}
._e_c00234{width:11.415243px;}
._10_c00234{width:12.512305px;}
._c_c00234{width:13.616291px;}
._12_c00234{width:14.745759px;}
._d_c00234{width:16.707407px;}
._11_c00234{width:18.720628px;}
._2_c00234{width:20.328733px;}
._0_c00234{width:21.580992px;}
._14_c00234{width:22.834840px;}
._3_c00234{width:24.411133px;}
._15_c00234{width:25.440752px;}
._1_c00234{width:26.512302px;}
._4_c00234{width:30.094743px;}
.fc0_c00234{color:transparent;}
.fs9_c00234{font-size:24.000000px;}
.fs12_c00234{font-size:27.750000px;}
.fs11_c00234{font-size:29.250000px;}
.fsb_c00234{font-size:30.000000px;}
.fse_c00234{font-size:30.750000px;}
.fsf_c00234{font-size:33.750000px;}
.fsc_c00234{font-size:35.250000px;}
.fsd_c00234{font-size:36.000000px;}
.fs14_c00234{font-size:36.750000px;}
.fs8_c00234{font-size:38.250000px;}
.fs13_c00234{font-size:39.000000px;}
.fsa_c00234{font-size:39.750000px;}
.fs16_c00234{font-size:45.000000px;}
.fs10_c00234{font-size:53.250000px;}
.fs1_c00234{font-size:75.750000px;}
.fs15_c00234{font-size:76.500000px;}
.fs6_c00234{font-size:78.000000px;}
.fs0_c00234{font-size:78.750000px;}
.fs7_c00234{font-size:79.500000px;}
.fs3_c00234{font-size:80.250000px;}
.fs18_c00234{font-size:81.000000px;}
.fs4_c00234{font-size:81.750000px;}
.fs2_c00234{font-size:82.500000px;}
.fs5_c00234{font-size:84.750000px;}
.fs17_c00234{font-size:104.250000px;}
.y0_c00234{bottom:0.000000px;}
.y32_c00234{bottom:210.598875px;}
.y33_c00234{bottom:210.599700px;}
.y31_c00234{bottom:240.838785px;}
.y30_c00234{bottom:269.999925px;}
.y2f_c00234{bottom:300.239850px;}
.y2e_c00234{bottom:329.759535px;}
.y2d_c00234{bottom:329.760630px;}
.y2c_c00234{bottom:359.281980px;}
.y2b_c00234{bottom:388.801500px;}
.y2a_c00234{bottom:448.921140px;}
.y29_c00234{bottom:479.161050px;}
.y28_c00234{bottom:489.600720px;}
.y27_c00234{bottom:508.319820px;}
.y25_c00234{bottom:537.838845px;}
.y26_c00234{bottom:537.839535px;}
.y24_c00234{bottom:567.000000px;}
.y23_c00234{bottom:567.000030px;}
.y22_c00234{bottom:597.239940px;}
.y21_c00234{bottom:656.641005px;}
.y1f_c00234{bottom:686.520105px;}
.y20_c00234{bottom:686.520720px;}
.y1e_c00234{bottom:716.399820px;}
.y18_c00234{bottom:745.921185px;}
.y19_c00234{bottom:746.100720px;}
.y1a_c00234{bottom:746.459970px;}
.y1b_c00234{bottom:746.639700px;}
.y1c_c00234{bottom:746.820870px;}
.y1d_c00234{bottom:747.000600px;}
.y17_c00234{bottom:751.680750px;}
.y16_c00234{bottom:752.039985px;}
.y15_c00234{bottom:752.400885px;}
.y13_c00234{bottom:776.160255px;}
.y14_c00234{bottom:776.161005px;}
.y12_c00234{bottom:806.039985px;}
.y10_c00234{bottom:836.279160px;}
.y11_c00234{bottom:836.279850px;}
.ye_c00234{bottom:865.440165px;}
.yf_c00234{bottom:865.440315px;}
.yd_c00234{bottom:895.680090px;}
.yb_c00234{bottom:925.560660px;}
.yc_c00234{bottom:925.560705px;}
.ya_c00234{bottom:955.800570px;}
.y9_c00234{bottom:955.801740px;}
.y8_c00234{bottom:985.321260px;}
.y7_c00234{bottom:1015.200990px;}
.y6_c00234{bottom:1015.201170px;}
.y4_c00234{bottom:1044.720660px;}
.y5_c00234{bottom:1044.720705px;}
.y3_c00234{bottom:1074.960570px;}
.y2_c00234{bottom:1104.481185px;}
.y1_c00234{bottom:1134.360900px;}
.hb_c00234{height:25.031250px;}
.h14_c00234{height:27.235107px;}
.h13_c00234{height:28.707275px;}
.hd_c00234{height:31.289062px;}
.h10_c00234{height:32.071289px;}
.h11_c00234{height:33.123779px;}
.hf_c00234{height:35.332031px;}
.he_c00234{height:35.525391px;}
.h16_c00234{height:36.068115px;}
.h15_c00234{height:38.276367px;}
.ha_c00234{height:39.893555px;}
.hc_c00234{height:41.458008px;}
.h19_c00234{height:46.933594px;}
.h12_c00234{height:53.666016px;}
.h2_c00234{height:74.344482px;}
.h18_c00234{height:75.080566px;}
.h8_c00234{height:76.552734px;}
.h1_c00234{height:77.288818px;}
.h17_c00234{height:77.986084px;}
.h9_c00234{height:78.024902px;}
.h4_c00234{height:78.760986px;}
.h1b_c00234{height:79.497070px;}
.h6_c00234{height:80.233154px;}
.h5_c00234{height:80.969238px;}
.h3_c00234{height:81.533203px;}
.h7_c00234{height:83.177490px;}
.h1a_c00234{height:108.729492px;}
.h0_c00234{height:1263.000000px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x2f_c00234{left:97.558665px;}
.x1_c00234{left:136.438665px;}
.x33_c00234{left:137.880540px;}
.x17_c00234{left:151.919565px;}
.x1c_c00234{left:163.079400px;}
.x2_c00234{left:180.719100px;}
.xa_c00234{left:182.518665px;}
.xb_c00234{left:198.719535px;}
.xf_c00234{left:202.679700px;}
.x34_c00234{left:213.478635px;}
.x10_c00234{left:220.319250px;}
.x1d_c00234{left:225.358635px;}
.x27_c00234{left:245.878950px;}
.x11_c00234{left:254.519100px;}
.x1e_c00234{left:255.959400px;}
.x28_c00234{left:263.159385px;}
.x25_c00234{left:267.478635px;}
.x35_c00234{left:277.199850px;}
.x26_c00234{left:280.798950px;}
.x12_c00234{left:288.719100px;}
.x22_c00234{left:290.518635px;}
.x36_c00234{left:292.319850px;}
.x29_c00234{left:365.399850px;}
.x2a_c00234{left:381.239850px;}
.x5_c00234{left:383.398635px;}
.x6_c00234{left:399.599670px;}
.x1f_c00234{left:412.918350px;}
.x13_c00234{left:421.199385px;}
.x31_c00234{left:436.678530px;}
.x14_c00234{left:450.359850px;}
.x20_c00234{left:459.718500px;}
.x32_c00234{left:460.799565px;}
.xc_c00234{left:480.599670px;}
.x18_c00234{left:508.319820px;}
.x19_c00234{left:521.999400px;}
.xd_c00234{left:541.079400px;}
.x21_c00234{left:561.959085px;}
.x23_c00234{left:563.039985px;}
.x1a_c00234{left:566.279850px;}
.x1b_c00234{left:579.959385px;}
.x8_c00234{left:610.558635px;}
.x2b_c00234{left:628.918350px;}
.x9_c00234{left:633.239220px;}
.x2c_c00234{left:662.038920px;}
.x3_c00234{left:676.438620px;}
.x4_c00234{left:695.879520px;}
.x15_c00234{left:700.918950px;}
.x24_c00234{left:707.759535px;}
.x16_c00234{left:713.878320px;}
.x7_c00234{left:718.558635px;}
.x2d_c00234{left:743.759085px;}
.x2e_c00234{left:762.838950px;}
.xe_c00234{left:766.439670px;}
.x30_c00234{left:770.759130px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.lsb_c00234{letter-spacing:-14.307333pt;}
.ls20_c00234{letter-spacing:-9.904300pt;}
.ls10_c00234{letter-spacing:-7.924000pt;}
.ls26_c00234{letter-spacing:-7.266700pt;}
.ls14_c00234{letter-spacing:-6.601000pt;}
.lsd_c00234{letter-spacing:-5.943000pt;}
.ls6_c00234{letter-spacing:-5.285000pt;}
.ls11_c00234{letter-spacing:-4.619300pt;}
.lse_c00234{letter-spacing:-4.578887pt;}
.ls9_c00234{letter-spacing:-3.961300pt;}
.lsa_c00234{letter-spacing:-3.676400pt;}
.ls12_c00234{letter-spacing:-3.306333pt;}
.ls7_c00234{letter-spacing:-3.304000pt;}
.ls13_c00234{letter-spacing:-3.205740pt;}
.lsf_c00234{letter-spacing:-2.739533pt;}
.ls4_c00234{letter-spacing:-2.639000pt;}
.ls27_c00234{letter-spacing:-2.518267pt;}
.ls3_c00234{letter-spacing:-1.981700pt;}
.ls28_c00234{letter-spacing:-1.944120pt;}
.ls8_c00234{letter-spacing:-1.323700pt;}
.ls17_c00234{letter-spacing:-0.872733pt;}
.ls15_c00234{letter-spacing:-0.693600pt;}
.ls5_c00234{letter-spacing:-0.658000pt;}
.ls29_c00234{letter-spacing:-0.652800pt;}
.lsc_c00234{letter-spacing:0.000000pt;}
.ls21_c00234{letter-spacing:0.676867pt;}
.ls16_c00234{letter-spacing:0.723413pt;}
.ls25_c00234{letter-spacing:0.735327pt;}
.ls1c_c00234{letter-spacing:0.980733pt;}
.ls1e_c00234{letter-spacing:1.282207pt;}
.ls2a_c00234{letter-spacing:1.620720pt;}
.ls18_c00234{letter-spacing:3.810667pt;}
.ls2_c00234{letter-spacing:4.762667pt;}
.ls1_c00234{letter-spacing:5.237333pt;}
.ls1d_c00234{letter-spacing:5.612800pt;}
.ls0_c00234{letter-spacing:6.189333pt;}
.ls1b_c00234{letter-spacing:7.144000pt;}
.ls24_c00234{letter-spacing:7.151733pt;}
.ls19_c00234{letter-spacing:7.432000pt;}
.ls22_c00234{letter-spacing:8.665800pt;}
.ls1f_c00234{letter-spacing:9.000000pt;}
.ls23_c00234{letter-spacing:12.686067pt;}
.ls1a_c00234{letter-spacing:12.856000pt;}
.ws0_c00234{word-spacing:0.000000pt;}
._19_c00234{margin-left:-9.860108pt;}
._8_c00234{margin-left:-8.735287pt;}
._18_c00234{margin-left:-6.615792pt;}
._16_c00234{margin-left:-5.661125pt;}
._1a_c00234{margin-left:-4.760462pt;}
._7_c00234{margin-left:-3.439958pt;}
._5_c00234{margin-left:-1.943279pt;}
._b_c00234{width:1.318945pt;}
._6_c00234{width:2.569238pt;}
._9_c00234{width:3.717396pt;}
._17_c00234{width:4.702270pt;}
._13_c00234{width:5.780851pt;}
._f_c00234{width:6.719075pt;}
._a_c00234{width:8.341570pt;}
._1b_c00234{width:9.243117pt;}
._e_c00234{width:10.146883pt;}
._10_c00234{width:11.122049pt;}
._c_c00234{width:12.103370pt;}
._12_c00234{width:13.107342pt;}
._d_c00234{width:14.851028pt;}
._11_c00234{width:16.640558pt;}
._2_c00234{width:18.069985pt;}
._0_c00234{width:19.183104pt;}
._14_c00234{width:20.297636pt;}
._3_c00234{width:21.698785pt;}
._15_c00234{width:22.614002pt;}
._1_c00234{width:23.566491pt;}
._4_c00234{width:26.750883pt;}
.fs9_c00234{font-size:21.333333pt;}
.fs12_c00234{font-size:24.666667pt;}
.fs11_c00234{font-size:26.000000pt;}
.fsb_c00234{font-size:26.666667pt;}
.fse_c00234{font-size:27.333333pt;}
.fsf_c00234{font-size:30.000000pt;}
.fsc_c00234{font-size:31.333333pt;}
.fsd_c00234{font-size:32.000000pt;}
.fs14_c00234{font-size:32.666667pt;}
.fs8_c00234{font-size:34.000000pt;}
.fs13_c00234{font-size:34.666667pt;}
.fsa_c00234{font-size:35.333333pt;}
.fs16_c00234{font-size:40.000000pt;}
.fs10_c00234{font-size:47.333333pt;}
.fs1_c00234{font-size:67.333333pt;}
.fs15_c00234{font-size:68.000000pt;}
.fs6_c00234{font-size:69.333333pt;}
.fs0_c00234{font-size:70.000000pt;}
.fs7_c00234{font-size:70.666667pt;}
.fs3_c00234{font-size:71.333333pt;}
.fs18_c00234{font-size:72.000000pt;}
.fs4_c00234{font-size:72.666667pt;}
.fs2_c00234{font-size:73.333333pt;}
.fs5_c00234{font-size:75.333333pt;}
.fs17_c00234{font-size:92.666667pt;}
.y0_c00234{bottom:0.000000pt;}
.y32_c00234{bottom:187.199000pt;}
.y33_c00234{bottom:187.199733pt;}
.y31_c00234{bottom:214.078920pt;}
.y30_c00234{bottom:239.999933pt;}
.y2f_c00234{bottom:266.879867pt;}
.y2e_c00234{bottom:293.119587pt;}
.y2d_c00234{bottom:293.120560pt;}
.y2c_c00234{bottom:319.361760pt;}
.y2b_c00234{bottom:345.601333pt;}
.y2a_c00234{bottom:399.041013pt;}
.y29_c00234{bottom:425.920933pt;}
.y28_c00234{bottom:435.200640pt;}
.y27_c00234{bottom:451.839840pt;}
.y25_c00234{bottom:478.078973pt;}
.y26_c00234{bottom:478.079587pt;}
.y24_c00234{bottom:504.000000pt;}
.y23_c00234{bottom:504.000027pt;}
.y22_c00234{bottom:530.879947pt;}
.y21_c00234{bottom:583.680893pt;}
.y1f_c00234{bottom:610.240093pt;}
.y20_c00234{bottom:610.240640pt;}
.y1e_c00234{bottom:636.799840pt;}
.y18_c00234{bottom:663.041053pt;}
.y19_c00234{bottom:663.200640pt;}
.y1a_c00234{bottom:663.519973pt;}
.y1b_c00234{bottom:663.679733pt;}
.y1c_c00234{bottom:663.840773pt;}
.y1d_c00234{bottom:664.000533pt;}
.y17_c00234{bottom:668.160667pt;}
.y16_c00234{bottom:668.479987pt;}
.y15_c00234{bottom:668.800787pt;}
.y13_c00234{bottom:689.920227pt;}
.y14_c00234{bottom:689.920893pt;}
.y12_c00234{bottom:716.479987pt;}
.y10_c00234{bottom:743.359253pt;}
.y11_c00234{bottom:743.359867pt;}
.ye_c00234{bottom:769.280147pt;}
.yf_c00234{bottom:769.280280pt;}
.yd_c00234{bottom:796.160080pt;}
.yb_c00234{bottom:822.720587pt;}
.yc_c00234{bottom:822.720627pt;}
.ya_c00234{bottom:849.600507pt;}
.y9_c00234{bottom:849.601547pt;}
.y8_c00234{bottom:875.841120pt;}
.y7_c00234{bottom:902.400880pt;}
.y6_c00234{bottom:902.401040pt;}
.y4_c00234{bottom:928.640587pt;}
.y5_c00234{bottom:928.640627pt;}
.y3_c00234{bottom:955.520507pt;}
.y2_c00234{bottom:981.761053pt;}
.y1_c00234{bottom:1008.320800pt;}
.hb_c00234{height:22.250000pt;}
.h14_c00234{height:24.208984pt;}
.h13_c00234{height:25.517578pt;}
.hd_c00234{height:27.812500pt;}
.h10_c00234{height:28.507812pt;}
.h11_c00234{height:29.443359pt;}
.hf_c00234{height:31.406250pt;}
.he_c00234{height:31.578125pt;}
.h16_c00234{height:32.060547pt;}
.h15_c00234{height:34.023438pt;}
.ha_c00234{height:35.460938pt;}
.hc_c00234{height:36.851562pt;}
.h19_c00234{height:41.718750pt;}
.h12_c00234{height:47.703125pt;}
.h2_c00234{height:66.083984pt;}
.h18_c00234{height:66.738281pt;}
.h8_c00234{height:68.046875pt;}
.h1_c00234{height:68.701172pt;}
.h17_c00234{height:69.320964pt;}
.h9_c00234{height:69.355469pt;}
.h4_c00234{height:70.009766pt;}
.h1b_c00234{height:70.664062pt;}
.h6_c00234{height:71.318359pt;}
.h5_c00234{height:71.972656pt;}
.h3_c00234{height:72.473958pt;}
.h7_c00234{height:73.935547pt;}
.h1a_c00234{height:96.648438pt;}
.h0_c00234{height:1122.666667pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x2f_c00234{left:86.718813pt;}
.x1_c00234{left:121.278813pt;}
.x33_c00234{left:122.560480pt;}
.x17_c00234{left:135.039613pt;}
.x1c_c00234{left:144.959467pt;}
.x2_c00234{left:160.639200pt;}
.xa_c00234{left:162.238813pt;}
.xb_c00234{left:176.639587pt;}
.xf_c00234{left:180.159733pt;}
.x34_c00234{left:189.758787pt;}
.x10_c00234{left:195.839333pt;}
.x1d_c00234{left:200.318787pt;}
.x27_c00234{left:218.559067pt;}
.x11_c00234{left:226.239200pt;}
.x1e_c00234{left:227.519467pt;}
.x28_c00234{left:233.919453pt;}
.x25_c00234{left:237.758787pt;}
.x35_c00234{left:246.399867pt;}
.x26_c00234{left:249.599067pt;}
.x12_c00234{left:256.639200pt;}
.x22_c00234{left:258.238787pt;}
.x36_c00234{left:259.839867pt;}
.x29_c00234{left:324.799867pt;}
.x2a_c00234{left:338.879867pt;}
.x5_c00234{left:340.798787pt;}
.x6_c00234{left:355.199707pt;}
.x1f_c00234{left:367.038533pt;}
.x13_c00234{left:374.399453pt;}
.x31_c00234{left:388.158693pt;}
.x14_c00234{left:400.319867pt;}
.x20_c00234{left:408.638667pt;}
.x32_c00234{left:409.599613pt;}
.xc_c00234{left:427.199707pt;}
.x18_c00234{left:451.839840pt;}
.x19_c00234{left:463.999467pt;}
.xd_c00234{left:480.959467pt;}
.x21_c00234{left:499.519187pt;}
.x23_c00234{left:500.479987pt;}
.x1a_c00234{left:503.359867pt;}
.x1b_c00234{left:515.519453pt;}
.x8_c00234{left:542.718787pt;}
.x2b_c00234{left:559.038533pt;}
.x9_c00234{left:562.879307pt;}
.x2c_c00234{left:588.479040pt;}
.x3_c00234{left:601.278773pt;}
.x4_c00234{left:618.559573pt;}
.x15_c00234{left:623.039067pt;}
.x24_c00234{left:629.119587pt;}
.x16_c00234{left:634.558507pt;}
.x7_c00234{left:638.718787pt;}
.x2d_c00234{left:661.119187pt;}
.x2e_c00234{left:678.079067pt;}
.xe_c00234{left:681.279707pt;}
.x30_c00234{left:685.119227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44da0f11a06f5e6e81503366.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_4e7f158cc93d5e9d0a9d28dd.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.432129;font-style:normal;font-weight:normal;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_3360c150c233a6ba579e7d7d.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.364746;font-style:normal;font-weight:normal;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_792966fac024ad60bcc13e25.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;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_8a8b443f4f51dc4da9a8cee6.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.432129;font-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_c00235{transform:matrix(0.023902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023902,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{transform:matrix(0.029730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029730,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.085271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085271,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.146302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146302,0.000000,0.000000,0.250000,0,0);}
.m15_c00235{transform:matrix(0.146834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146834,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{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);}
.m11_c00235{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{transform:matrix(0.172078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172078,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{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_c00235{transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.913043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.913043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.913043,0.000000,0.000000,0.250000,0,0);}
.m13_c00235{transform:matrix(0.989130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.989130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.989130,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{transform:matrix(1.076087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.076087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.076087,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls15_c00235{letter-spacing:-15.749700px;}
.ls14_c00235{letter-spacing:-11.700000px;}
.ls17_c00235{letter-spacing:-10.986600px;}
.ls12_c00235{letter-spacing:-9.207000px;}
.lsb_c00235{letter-spacing:-8.806500px;}
.ls11_c00235{letter-spacing:-8.008500px;}
.ls16_c00235{letter-spacing:-4.044383px;}
.lsa_c00235{letter-spacing:-2.022525px;}
.lsc_c00235{letter-spacing:-1.338383px;}
.lse_c00235{letter-spacing:-1.001700px;}
.ls1a_c00235{letter-spacing:-0.189750px;}
.lsd_c00235{letter-spacing:0.000000px;}
.lsf_c00235{letter-spacing:0.901125px;}
.ls1_c00235{letter-spacing:1.014600px;}
.ls9_c00235{letter-spacing:1.087425px;}
.ls19_c00235{letter-spacing:1.134600px;}
.ls7_c00235{letter-spacing:2.022525px;}
.ls2_c00235{letter-spacing:3.037125px;}
.ls13_c00235{letter-spacing:3.268073px;}
.ls3_c00235{letter-spacing:4.044383px;}
.ls18_c00235{letter-spacing:4.998000px;}
.ls6_c00235{letter-spacing:5.060318px;}
.ls5_c00235{letter-spacing:6.067575px;}
.ls8_c00235{letter-spacing:6.252000px;}
.ls10_c00235{letter-spacing:7.081508px;}
.ls0_c00235{letter-spacing:8.090100px;}
.ls4_c00235{letter-spacing:11.127225px;}
.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;}
._5_c00235{margin-left:-48.801491px;}
._0_c00235{margin-left:-39.631943px;}
._12_c00235{margin-left:-4.806162px;}
._c_c00235{margin-left:-2.816445px;}
._d_c00235{width:2.675441px;}
._9_c00235{width:5.975723px;}
._4_c00235{width:7.932610px;}
._e_c00235{width:10.519881px;}
._a_c00235{width:11.775489px;}
._2_c00235{width:13.697545px;}
._f_c00235{width:15.325881px;}
._1_c00235{width:19.577370px;}
._10_c00235{width:27.579097px;}
._3_c00235{width:40.911500px;}
._7_c00235{width:42.586176px;}
._6_c00235{width:45.042698px;}
._b_c00235{width:48.460338px;}
._8_c00235{width:65.021054px;}
._11_c00235{width:104.724277px;}
._13_c00235{width:138.863600px;}
.fc0_c00235{color:transparent;}
.fse_c00235{font-size:17.250000px;}
.fs7_c00235{font-size:57.750000px;}
.fs8_c00235{font-size:58.500000px;}
.fsd_c00235{font-size:60.000000px;}
.fs1_c00235{font-size:60.750000px;}
.fs4_c00235{font-size:63.000000px;}
.fs5_c00235{font-size:66.000000px;}
.fs0_c00235{font-size:66.750000px;}
.fs3_c00235{font-size:68.250000px;}
.fs9_c00235{font-size:70.500000px;}
.fs2_c00235{font-size:71.250000px;}
.fs6_c00235{font-size:85.426200px;}
.fsb_c00235{font-size:96.750000px;}
.fsa_c00235{font-size:277.500000px;}
.fsc_c00235{font-size:290.250000px;}
.y0_c00235{bottom:0.000000px;}
.y16_c00235{bottom:197.640150px;}
.y15_c00235{bottom:236.879535px;}
.y14_c00235{bottom:244.440285px;}
.y13_c00235{bottom:244.441560px;}
.ye_c00235{bottom:267.480285px;}
.yd_c00235{bottom:337.680270px;}
.yb_c00235{bottom:384.120435px;}
.y12_c00235{bottom:395.640195px;}
.y11_c00235{bottom:407.520015px;}
.yc_c00235{bottom:418.679670px;}
.yf_c00235{bottom:419.041260px;}
.y10_c00235{bottom:419.399820px;}
.ya_c00235{bottom:478.080000px;}
.y9_c00235{bottom:501.480885px;}
.y8_c00235{bottom:501.481455px;}
.y7_c00235{bottom:559.080000px;}
.y6_c00235{bottom:815.400240px;}
.y4_c00235{bottom:838.798515px;}
.y5_c00235{bottom:838.799565px;}
.y3_c00235{bottom:908.638965px;}
.y2_c00235{bottom:1177.199340px;}
.y1_c00235{bottom:1177.919490px;}
.h10_c00235{height:17.991211px;}
.h9_c00235{height:60.231445px;}
.ha_c00235{height:61.013672px;}
.h5_c00235{height:61.831055px;}
.hf_c00235{height:62.578125px;}
.h2_c00235{height:63.360352px;}
.h7_c00235{height:64.775391px;}
.h1_c00235{height:65.511475px;}
.h6_c00235{height:67.271484px;}
.h4_c00235{height:67.450195px;}
.hb_c00235{height:69.673828px;}
.h3_c00235{height:70.415039px;}
.h8_c00235{height:83.841144px;}
.hd_c00235{height:100.907227px;}
.hc_c00235{height:272.351074px;}
.he_c00235{height:284.864502px;}
.h0_c00235{height:1263.000000px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.xd_c00235{left:164.520465px;}
.x8_c00235{left:165.598830px;}
.x13_c00235{left:167.039400px;}
.x1d_c00235{left:168.479685px;}
.x1_c00235{left:170.999400px;}
.x15_c00235{left:172.078815px;}
.x14_c00235{left:177.479250px;}
.xe_c00235{left:199.439685px;}
.x9_c00235{left:205.199385px;}
.x2_c00235{left:211.319850px;}
.xa_c00235{left:228.239250px;}
.x3_c00235{left:234.719100px;}
.x1f_c00235{left:235.798515px;}
.xf_c00235{left:251.279250px;}
.x1e_c00235{left:256.679700px;}
.x10_c00235{left:280.439685px;}
.x19_c00235{left:282.959400px;}
.x16_c00235{left:287.278890px;}
.x11_c00235{left:303.479685px;}
.xb_c00235{left:332.638530px;}
.x1a_c00235{left:345.599700px;}
.x17_c00235{left:357.838950px;}
.x18_c00235{left:361.439685px;}
.xc_c00235{left:366.479235px;}
.x1b_c00235{left:391.318770px;}
.x4_c00235{left:481.679070px;}
.x5_c00235{left:515.878920px;}
.x1c_c00235{left:518.039385px;}
.x12_c00235{left:550.798920px;}
.x6_c00235{left:584.998950px;}
.x7_c00235{left:602.279250px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls15_c00235{letter-spacing:-13.999733pt;}
.ls14_c00235{letter-spacing:-10.400000pt;}
.ls17_c00235{letter-spacing:-9.765867pt;}
.ls12_c00235{letter-spacing:-8.184000pt;}
.lsb_c00235{letter-spacing:-7.828000pt;}
.ls11_c00235{letter-spacing:-7.118667pt;}
.ls16_c00235{letter-spacing:-3.595007pt;}
.lsa_c00235{letter-spacing:-1.797800pt;}
.lsc_c00235{letter-spacing:-1.189673pt;}
.lse_c00235{letter-spacing:-0.890400pt;}
.ls1a_c00235{letter-spacing:-0.168667pt;}
.lsd_c00235{letter-spacing:0.000000pt;}
.lsf_c00235{letter-spacing:0.801000pt;}
.ls1_c00235{letter-spacing:0.901867pt;}
.ls9_c00235{letter-spacing:0.966600pt;}
.ls19_c00235{letter-spacing:1.008533pt;}
.ls7_c00235{letter-spacing:1.797800pt;}
.ls2_c00235{letter-spacing:2.699667pt;}
.ls13_c00235{letter-spacing:2.904953pt;}
.ls3_c00235{letter-spacing:3.595007pt;}
.ls18_c00235{letter-spacing:4.442667pt;}
.ls6_c00235{letter-spacing:4.498060pt;}
.ls5_c00235{letter-spacing:5.393400pt;}
.ls8_c00235{letter-spacing:5.557333pt;}
.ls10_c00235{letter-spacing:6.294673pt;}
.ls0_c00235{letter-spacing:7.191200pt;}
.ls4_c00235{letter-spacing:9.890867pt;}
.ws0_c00235{word-spacing:0.000000pt;}
._5_c00235{margin-left:-43.379103pt;}
._0_c00235{margin-left:-35.228394pt;}
._12_c00235{margin-left:-4.272144pt;}
._c_c00235{margin-left:-2.503507pt;}
._d_c00235{width:2.378170pt;}
._9_c00235{width:5.311754pt;}
._4_c00235{width:7.051209pt;}
._e_c00235{width:9.351005pt;}
._a_c00235{width:10.467101pt;}
._2_c00235{width:12.175596pt;}
._f_c00235{width:13.623005pt;}
._1_c00235{width:17.402107pt;}
._10_c00235{width:24.514753pt;}
._3_c00235{width:36.365778pt;}
._7_c00235{width:37.854379pt;}
._6_c00235{width:40.037954pt;}
._b_c00235{width:43.075856pt;}
._8_c00235{width:57.796492pt;}
._11_c00235{width:93.088246pt;}
._13_c00235{width:123.434311pt;}
.fse_c00235{font-size:15.333333pt;}
.fs7_c00235{font-size:51.333333pt;}
.fs8_c00235{font-size:52.000000pt;}
.fsd_c00235{font-size:53.333333pt;}
.fs1_c00235{font-size:54.000000pt;}
.fs4_c00235{font-size:56.000000pt;}
.fs5_c00235{font-size:58.666667pt;}
.fs0_c00235{font-size:59.333333pt;}
.fs3_c00235{font-size:60.666667pt;}
.fs9_c00235{font-size:62.666667pt;}
.fs2_c00235{font-size:63.333333pt;}
.fs6_c00235{font-size:75.934400pt;}
.fsb_c00235{font-size:86.000000pt;}
.fsa_c00235{font-size:246.666667pt;}
.fsc_c00235{font-size:258.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y16_c00235{bottom:175.680133pt;}
.y15_c00235{bottom:210.559587pt;}
.y14_c00235{bottom:217.280253pt;}
.y13_c00235{bottom:217.281387pt;}
.ye_c00235{bottom:237.760253pt;}
.yd_c00235{bottom:300.160240pt;}
.yb_c00235{bottom:341.440387pt;}
.y12_c00235{bottom:351.680173pt;}
.y11_c00235{bottom:362.240013pt;}
.yc_c00235{bottom:372.159707pt;}
.yf_c00235{bottom:372.481120pt;}
.y10_c00235{bottom:372.799840pt;}
.ya_c00235{bottom:424.960000pt;}
.y9_c00235{bottom:445.760787pt;}
.y8_c00235{bottom:445.761293pt;}
.y7_c00235{bottom:496.960000pt;}
.y6_c00235{bottom:724.800213pt;}
.y4_c00235{bottom:745.598680pt;}
.y5_c00235{bottom:745.599613pt;}
.y3_c00235{bottom:807.679080pt;}
.y2_c00235{bottom:1046.399413pt;}
.y1_c00235{bottom:1047.039547pt;}
.h10_c00235{height:15.992187pt;}
.h9_c00235{height:53.539062pt;}
.ha_c00235{height:54.234375pt;}
.h5_c00235{height:54.960938pt;}
.hf_c00235{height:55.625000pt;}
.h2_c00235{height:56.320312pt;}
.h7_c00235{height:57.578125pt;}
.h1_c00235{height:58.232422pt;}
.h6_c00235{height:59.796875pt;}
.h4_c00235{height:59.955729pt;}
.hb_c00235{height:61.932292pt;}
.h3_c00235{height:62.591146pt;}
.h8_c00235{height:74.525461pt;}
.hd_c00235{height:89.695312pt;}
.hc_c00235{height:242.089844pt;}
.he_c00235{height:253.212891pt;}
.h0_c00235{height:1122.666667pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.xd_c00235{left:146.240413pt;}
.x8_c00235{left:147.198960pt;}
.x13_c00235{left:148.479467pt;}
.x1d_c00235{left:149.759720pt;}
.x1_c00235{left:151.999467pt;}
.x15_c00235{left:152.958947pt;}
.x14_c00235{left:157.759333pt;}
.xe_c00235{left:177.279720pt;}
.x9_c00235{left:182.399453pt;}
.x2_c00235{left:187.839867pt;}
.xa_c00235{left:202.879333pt;}
.x3_c00235{left:208.639200pt;}
.x1f_c00235{left:209.598680pt;}
.xf_c00235{left:223.359333pt;}
.x1e_c00235{left:228.159733pt;}
.x10_c00235{left:249.279720pt;}
.x19_c00235{left:251.519467pt;}
.x16_c00235{left:255.359013pt;}
.x11_c00235{left:269.759720pt;}
.xb_c00235{left:295.678693pt;}
.x1a_c00235{left:307.199733pt;}
.x17_c00235{left:318.079067pt;}
.x18_c00235{left:321.279720pt;}
.xc_c00235{left:325.759320pt;}
.x1b_c00235{left:347.838907pt;}
.x4_c00235{left:428.159173pt;}
.x5_c00235{left:458.559040pt;}
.x1c_c00235{left:460.479453pt;}
.x12_c00235{left:489.599040pt;}
.x6_c00235{left:519.999067pt;}
.x7_c00235{left:535.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42d19e2587fd4d7368cc7ade.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_c7fe587013d9d087c3d228c7.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_0bd9f8d3babd1c1cecf6a358.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_ee2712c82e46d6f559190ace.woff2')format("woff");}.ff4_c00236{font-family:ff4_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;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_c7cd069ab93fba83d152a599.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00236;src:url('chunks/assets/font_acfe763d4b1de15ba4690fd4.woff2')format("woff");}.ff6_c00236{font-family:ff6_c00236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00236{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.191038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191038,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00236{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m13_c00236{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m22_c00236{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m24_c00236{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00236{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m23_c00236{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m12_c00236{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m19_c00236{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00236{transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);}
.m17_c00236{transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.395833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395833,0.000000,0.000000,0.250000,0,0);}
.m1d_c00236{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);}
.m1c_c00236{transform:matrix(0.403226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403226,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.405172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405172,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls21_c00236{letter-spacing:-24.046875px;}
.ls1a_c00236{letter-spacing:-21.719093px;}
.ls1e_c00236{letter-spacing:-21.070575px;}
.ls1d_c00236{letter-spacing:-9.850050px;}
.lsc_c00236{letter-spacing:-8.175038px;}
.ls20_c00236{letter-spacing:-7.200000px;}
.ls10_c00236{letter-spacing:-6.685875px;}
.ls1b_c00236{letter-spacing:-6.569100px;}
.ls13_c00236{letter-spacing:-6.000750px;}
.lsa_c00236{letter-spacing:-5.945625px;}
.ls22_c00236{letter-spacing:-5.331600px;}
.ls11_c00236{letter-spacing:-5.216790px;}
.lsb_c00236{letter-spacing:-5.196713px;}
.lse_c00236{letter-spacing:-4.456463px;}
.lsf_c00236{letter-spacing:-4.410975px;}
.ls19_c00236{letter-spacing:-4.334498px;}
.ls27_c00236{letter-spacing:-3.790800px;}
.ls2a_c00236{letter-spacing:-3.751800px;}
.ls4_c00236{letter-spacing:-3.717000px;}
.ls6_c00236{letter-spacing:-2.968875px;}
.ls14_c00236{letter-spacing:-2.386020px;}
.ls16_c00236{letter-spacing:-2.267213px;}
.ls3_c00236{letter-spacing:-2.229413px;}
.ls2c_c00236{letter-spacing:-2.224028px;}
.lsd_c00236{letter-spacing:-1.699500px;}
.ls28_c00236{letter-spacing:-1.693920px;}
.ls2b_c00236{letter-spacing:-1.609500px;}
.ls5_c00236{letter-spacing:-1.489163px;}
.ls2e_c00236{letter-spacing:-1.487363px;}
.ls1c_c00236{letter-spacing:-1.391250px;}
.ls8_c00236{letter-spacing:-0.740250px;}
.ls25_c00236{letter-spacing:-0.468750px;}
.ls24_c00236{letter-spacing:-0.465000px;}
.ls7_c00236{letter-spacing:0.000000px;}
.ls18_c00236{letter-spacing:0.740625px;}
.ls17_c00236{letter-spacing:0.759000px;}
.ls2_c00236{letter-spacing:1.489163px;}
.ls23_c00236{letter-spacing:1.850925px;}
.ls1f_c00236{letter-spacing:2.667600px;}
.ls9_c00236{letter-spacing:2.730510px;}
.ls15_c00236{letter-spacing:2.971800px;}
.ls2d_c00236{letter-spacing:3.524513px;}
.ls1_c00236{letter-spacing:3.717000px;}
.ls12_c00236{letter-spacing:4.069800px;}
.ls0_c00236{letter-spacing:7.125000px;}
.ls29_c00236{letter-spacing:7.516800px;}
.ls26_c00236{letter-spacing:14.048843px;}
.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;}
._1e_c00236{margin-left:-33.311280px;}
._1d_c00236{margin-left:-14.460461px;}
._1f_c00236{margin-left:-12.840722px;}
._11_c00236{margin-left:-5.510970px;}
._10_c00236{margin-left:-4.336896px;}
._14_c00236{margin-left:-3.241721px;}
._f_c00236{margin-left:-1.294249px;}
._d_c00236{width:1.840417px;}
._3_c00236{width:3.351496px;}
._2_c00236{width:4.418172px;}
._8_c00236{width:5.584980px;}
._1_c00236{width:6.859155px;}
._18_c00236{width:7.964121px;}
._0_c00236{width:8.977247px;}
._4_c00236{width:10.098558px;}
._6_c00236{width:11.261339px;}
._5_c00236{width:12.608544px;}
._e_c00236{width:14.023027px;}
._a_c00236{width:15.121813px;}
._c_c00236{width:16.430251px;}
._7_c00236{width:17.578471px;}
._9_c00236{width:19.843633px;}
._19_c00236{width:21.162814px;}
._b_c00236{width:22.244617px;}
._13_c00236{width:25.202080px;}
._12_c00236{width:27.419175px;}
._16_c00236{width:28.704167px;}
._17_c00236{width:30.473427px;}
._1a_c00236{width:32.215525px;}
._1c_c00236{width:33.360357px;}
._1b_c00236{width:37.328867px;}
._15_c00236{width:50.199981px;}
.fc0_c00236{color:transparent;}
.fsf_c00236{font-size:21.750000px;}
.fs10_c00236{font-size:23.250000px;}
.fsd_c00236{font-size:36.000000px;}
.fs11_c00236{font-size:37.500000px;}
.fs12_c00236{font-size:38.250000px;}
.fs13_c00236{font-size:48.000000px;}
.fs7_c00236{font-size:51.000000px;}
.fs9_c00236{font-size:57.000000px;}
.fsb_c00236{font-size:59.250000px;}
.fsa_c00236{font-size:69.000000px;}
.fs6_c00236{font-size:77.250000px;}
.fs3_c00236{font-size:78.000000px;}
.fs0_c00236{font-size:78.750000px;}
.fs8_c00236{font-size:79.500000px;}
.fs4_c00236{font-size:80.250000px;}
.fs2_c00236{font-size:81.000000px;}
.fs15_c00236{font-size:81.750000px;}
.fs5_c00236{font-size:82.500000px;}
.fsc_c00236{font-size:83.250000px;}
.fs1_c00236{font-size:84.750000px;}
.fse_c00236{font-size:101.250000px;}
.fs16_c00236{font-size:108.750000px;}
.fs14_c00236{font-size:111.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2b_c00236{bottom:184.678395px;}
.y2a_c00236{bottom:213.839535px;}
.y29_c00236{bottom:213.840435px;}
.y28_c00236{bottom:243.720150px;}
.y27_c00236{bottom:243.720315px;}
.y26_c00236{bottom:273.239850px;}
.y25_c00236{bottom:303.118785px;}
.y24_c00236{bottom:303.119655px;}
.y23_c00236{bottom:332.999385px;}
.y22_c00236{bottom:333.000270px;}
.y21_c00236{bottom:362.880000px;}
.y20_c00236{bottom:421.919535px;}
.y1f_c00236{bottom:429.119385px;}
.y1e_c00236{bottom:451.439250px;}
.y1d_c00236{bottom:451.440105px;}
.y1c_c00236{bottom:481.319820px;}
.y1a_c00236{bottom:511.559595px;}
.y1b_c00236{bottom:511.559685px;}
.y19_c00236{bottom:541.799520px;}
.y18_c00236{bottom:571.321065px;}
.y17_c00236{bottom:601.200780px;}
.y16_c00236{bottom:630.720315px;}
.y15_c00236{bottom:689.759085px;}
.y13_c00236{bottom:749.518620px;}
.y14_c00236{bottom:750.599670px;}
.y12_c00236{bottom:779.400120px;}
.y11_c00236{bottom:809.279850px;}
.yf_c00236{bottom:839.519070px;}
.y10_c00236{bottom:839.519715px;}
.ye_c00236{bottom:869.038605px;}
.yd_c00236{bottom:928.439670px;}
.yc_c00236{bottom:958.679715px;}
.yb_c00236{bottom:958.680705px;}
.ya_c00236{bottom:988.560420px;}
.y8_c00236{bottom:1018.079205px;}
.y9_c00236{bottom:1018.079955px;}
.y7_c00236{bottom:1047.958920px;}
.y6_c00236{bottom:1047.959820px;}
.y5_c00236{bottom:1077.839535px;}
.y4_c00236{bottom:1077.840435px;}
.y3_c00236{bottom:1107.720150px;}
.y2_c00236{bottom:1107.720240px;}
.y1_c00236{bottom:1137.239775px;}
.h15_c00236{height:22.684570px;}
.h16_c00236{height:24.249023px;}
.h13_c00236{height:37.546875px;}
.h17_c00236{height:39.111328px;}
.h18_c00236{height:39.893555px;}
.h19_c00236{height:50.062500px;}
.h9_c00236{height:53.191406px;}
.hb_c00236{height:56.332031px;}
.hf_c00236{height:61.795898px;}
.he_c00236{height:69.539062px;}
.h7_c00236{height:75.816650px;}
.h4_c00236{height:76.552734px;}
.h1_c00236{height:77.288818px;}
.h11_c00236{height:78.024902px;}
.hd_c00236{height:78.609375px;}
.h5_c00236{height:78.760986px;}
.hc_c00236{height:79.365234px;}
.h3_c00236{height:79.497070px;}
.ha_c00236{height:80.121094px;}
.h1b_c00236{height:80.233154px;}
.h8_c00236{height:80.969238px;}
.h6_c00236{height:81.533203px;}
.h10_c00236{height:82.274414px;}
.h2_c00236{height:83.177490px;}
.h12_c00236{height:86.827148px;}
.h14_c00236{height:105.600586px;}
.h1c_c00236{height:113.422852px;}
.h1a_c00236{height:115.769531px;}
.h0_c00236{height:1263.000000px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:138.599100px;}
.x24_c00236{left:140.039400px;}
.x10_c00236{left:153.719100px;}
.x1b_c00236{left:168.838950px;}
.x11_c00236{left:176.759100px;}
.x12_c00236{left:203.759100px;}
.x2c_c00236{left:213.478635px;}
.x25_c00236{left:216.000000px;}
.x2d_c00236{left:231.120000px;}
.xd_c00236{left:245.878950px;}
.xe_c00236{left:260.639700px;}
.x8_c00236{left:266.758500px;}
.x33_c00236{left:281.159850px;}
.x9_c00236{left:283.679700px;}
.x26_c00236{left:287.278800px;}
.x34_c00236{left:297.718500px;}
.x1c_c00236{left:302.039385px;}
.x1d_c00236{left:326.878950px;}
.x13_c00236{left:357.479685px;}
.x27_c00236{left:362.519100px;}
.x23_c00236{left:364.318800px;}
.x14_c00236{left:380.519685px;}
.x28_c00236{left:385.559100px;}
.x15_c00236{left:399.599670px;}
.x2e_c00236{left:404.639100px;}
.x35_c00236{left:405.718500px;}
.x2_c00236{left:412.559100px;}
.x2f_c00236{left:425.518665px;}
.x3_c00236{left:428.399235px;}
.x16_c00236{left:431.639100px;}
.x29_c00236{left:453.238770px;}
.x19_c00236{left:473.759085px;}
.x4_c00236{left:475.558635px;}
.x1a_c00236{left:488.519670px;}
.x5_c00236{left:513.000000px;}
.x17_c00236{left:569.878920px;}
.x2a_c00236{left:581.399820px;}
.x1e_c00236{left:583.558635px;}
.x31_c00236{left:608.399820px;}
.x1f_c00236{left:613.080000px;}
.x2b_c00236{left:615.599670px;}
.x6_c00236{left:616.679070px;}
.x36_c00236{left:625.678530px;}
.x7_c00236{left:632.159820px;}
.x32_c00236{left:634.318770px;}
.x37_c00236{left:640.439250px;}
.x20_c00236{left:654.479685px;}
.x18_c00236{left:655.559100px;}
.xa_c00236{left:657.719520px;}
.x21_c00236{left:678.599070px;}
.xb_c00236{left:684.719520px;}
.x22_c00236{left:692.998950px;}
.x30_c00236{left:754.198785px;}
.xc_c00236{left:758.878920px;}
.xf_c00236{left:769.318815px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls21_c00236{letter-spacing:-21.375000pt;}
.ls1a_c00236{letter-spacing:-19.305860pt;}
.ls1e_c00236{letter-spacing:-18.729400pt;}
.ls1d_c00236{letter-spacing:-8.755600pt;}
.lsc_c00236{letter-spacing:-7.266700pt;}
.ls20_c00236{letter-spacing:-6.400000pt;}
.ls10_c00236{letter-spacing:-5.943000pt;}
.ls1b_c00236{letter-spacing:-5.839200pt;}
.ls13_c00236{letter-spacing:-5.334000pt;}
.lsa_c00236{letter-spacing:-5.285000pt;}
.ls22_c00236{letter-spacing:-4.739200pt;}
.ls11_c00236{letter-spacing:-4.637147pt;}
.lsb_c00236{letter-spacing:-4.619300pt;}
.lse_c00236{letter-spacing:-3.961300pt;}
.lsf_c00236{letter-spacing:-3.920867pt;}
.ls19_c00236{letter-spacing:-3.852887pt;}
.ls27_c00236{letter-spacing:-3.369600pt;}
.ls2a_c00236{letter-spacing:-3.334933pt;}
.ls4_c00236{letter-spacing:-3.304000pt;}
.ls6_c00236{letter-spacing:-2.639000pt;}
.ls14_c00236{letter-spacing:-2.120907pt;}
.ls16_c00236{letter-spacing:-2.015300pt;}
.ls3_c00236{letter-spacing:-1.981700pt;}
.ls2c_c00236{letter-spacing:-1.976913pt;}
.lsd_c00236{letter-spacing:-1.510667pt;}
.ls28_c00236{letter-spacing:-1.505707pt;}
.ls2b_c00236{letter-spacing:-1.430667pt;}
.ls5_c00236{letter-spacing:-1.323700pt;}
.ls2e_c00236{letter-spacing:-1.322100pt;}
.ls1c_c00236{letter-spacing:-1.236667pt;}
.ls8_c00236{letter-spacing:-0.658000pt;}
.ls25_c00236{letter-spacing:-0.416667pt;}
.ls24_c00236{letter-spacing:-0.413333pt;}
.ls7_c00236{letter-spacing:0.000000pt;}
.ls18_c00236{letter-spacing:0.658333pt;}
.ls17_c00236{letter-spacing:0.674667pt;}
.ls2_c00236{letter-spacing:1.323700pt;}
.ls23_c00236{letter-spacing:1.645267pt;}
.ls1f_c00236{letter-spacing:2.371200pt;}
.ls9_c00236{letter-spacing:2.427120pt;}
.ls15_c00236{letter-spacing:2.641600pt;}
.ls2d_c00236{letter-spacing:3.132900pt;}
.ls1_c00236{letter-spacing:3.304000pt;}
.ls12_c00236{letter-spacing:3.617600pt;}
.ls0_c00236{letter-spacing:6.333333pt;}
.ls29_c00236{letter-spacing:6.681600pt;}
.ls26_c00236{letter-spacing:12.487860pt;}
.ws0_c00236{word-spacing:0.000000pt;}
._1e_c00236{margin-left:-29.610027pt;}
._1d_c00236{margin-left:-12.853743pt;}
._1f_c00236{margin-left:-11.413975pt;}
._11_c00236{margin-left:-4.898640pt;}
._10_c00236{margin-left:-3.855019pt;}
._14_c00236{margin-left:-2.881530pt;}
._f_c00236{margin-left:-1.150443pt;}
._d_c00236{width:1.635926pt;}
._3_c00236{width:2.979108pt;}
._2_c00236{width:3.927264pt;}
._8_c00236{width:4.964426pt;}
._1_c00236{width:6.097026pt;}
._18_c00236{width:7.079219pt;}
._0_c00236{width:7.979775pt;}
._4_c00236{width:8.976496pt;}
._6_c00236{width:10.010079pt;}
._5_c00236{width:11.207594pt;}
._e_c00236{width:12.464913pt;}
._a_c00236{width:13.441611pt;}
._c_c00236{width:14.604668pt;}
._7_c00236{width:15.625308pt;}
._9_c00236{width:17.638785pt;}
._19_c00236{width:18.811391pt;}
._b_c00236{width:19.772992pt;}
._13_c00236{width:22.401849pt;}
._12_c00236{width:24.372600pt;}
._16_c00236{width:25.514815pt;}
._17_c00236{width:27.087491pt;}
._1a_c00236{width:28.636023pt;}
._1c_c00236{width:29.653651pt;}
._1b_c00236{width:33.181215pt;}
._15_c00236{width:44.622206pt;}
.fsf_c00236{font-size:19.333333pt;}
.fs10_c00236{font-size:20.666667pt;}
.fsd_c00236{font-size:32.000000pt;}
.fs11_c00236{font-size:33.333333pt;}
.fs12_c00236{font-size:34.000000pt;}
.fs13_c00236{font-size:42.666667pt;}
.fs7_c00236{font-size:45.333333pt;}
.fs9_c00236{font-size:50.666667pt;}
.fsb_c00236{font-size:52.666667pt;}
.fsa_c00236{font-size:61.333333pt;}
.fs6_c00236{font-size:68.666667pt;}
.fs3_c00236{font-size:69.333333pt;}
.fs0_c00236{font-size:70.000000pt;}
.fs8_c00236{font-size:70.666667pt;}
.fs4_c00236{font-size:71.333333pt;}
.fs2_c00236{font-size:72.000000pt;}
.fs15_c00236{font-size:72.666667pt;}
.fs5_c00236{font-size:73.333333pt;}
.fsc_c00236{font-size:74.000000pt;}
.fs1_c00236{font-size:75.333333pt;}
.fse_c00236{font-size:90.000000pt;}
.fs16_c00236{font-size:96.666667pt;}
.fs14_c00236{font-size:98.666667pt;}
.y0_c00236{bottom:0.000000pt;}
.y2b_c00236{bottom:164.158573pt;}
.y2a_c00236{bottom:190.079587pt;}
.y29_c00236{bottom:190.080387pt;}
.y28_c00236{bottom:216.640133pt;}
.y27_c00236{bottom:216.640280pt;}
.y26_c00236{bottom:242.879867pt;}
.y25_c00236{bottom:269.438920pt;}
.y24_c00236{bottom:269.439693pt;}
.y23_c00236{bottom:295.999453pt;}
.y22_c00236{bottom:296.000240pt;}
.y21_c00236{bottom:322.560000pt;}
.y20_c00236{bottom:375.039587pt;}
.y1f_c00236{bottom:381.439453pt;}
.y1e_c00236{bottom:401.279333pt;}
.y1d_c00236{bottom:401.280093pt;}
.y1c_c00236{bottom:427.839840pt;}
.y1a_c00236{bottom:454.719640pt;}
.y1b_c00236{bottom:454.719720pt;}
.y19_c00236{bottom:481.599573pt;}
.y18_c00236{bottom:507.840947pt;}
.y17_c00236{bottom:534.400693pt;}
.y16_c00236{bottom:560.640280pt;}
.y15_c00236{bottom:613.119187pt;}
.y13_c00236{bottom:666.238773pt;}
.y14_c00236{bottom:667.199707pt;}
.y12_c00236{bottom:692.800107pt;}
.y11_c00236{bottom:719.359867pt;}
.yf_c00236{bottom:746.239173pt;}
.y10_c00236{bottom:746.239747pt;}
.ye_c00236{bottom:772.478760pt;}
.yd_c00236{bottom:825.279707pt;}
.yc_c00236{bottom:852.159747pt;}
.yb_c00236{bottom:852.160627pt;}
.ya_c00236{bottom:878.720373pt;}
.y8_c00236{bottom:904.959293pt;}
.y9_c00236{bottom:904.959960pt;}
.y7_c00236{bottom:931.519040pt;}
.y6_c00236{bottom:931.519840pt;}
.y5_c00236{bottom:958.079587pt;}
.y4_c00236{bottom:958.080387pt;}
.y3_c00236{bottom:984.640133pt;}
.y2_c00236{bottom:984.640213pt;}
.y1_c00236{bottom:1010.879800pt;}
.h15_c00236{height:20.164062pt;}
.h16_c00236{height:21.554687pt;}
.h13_c00236{height:33.375000pt;}
.h17_c00236{height:34.765625pt;}
.h18_c00236{height:35.460938pt;}
.h19_c00236{height:44.500000pt;}
.h9_c00236{height:47.281250pt;}
.hb_c00236{height:50.072917pt;}
.hf_c00236{height:54.929688pt;}
.he_c00236{height:61.812500pt;}
.h7_c00236{height:67.392578pt;}
.h4_c00236{height:68.046875pt;}
.h1_c00236{height:68.701172pt;}
.h11_c00236{height:69.355469pt;}
.hd_c00236{height:69.875000pt;}
.h5_c00236{height:70.009766pt;}
.hc_c00236{height:70.546875pt;}
.h3_c00236{height:70.664062pt;}
.ha_c00236{height:71.218750pt;}
.h1b_c00236{height:71.318359pt;}
.h8_c00236{height:71.972656pt;}
.h6_c00236{height:72.473958pt;}
.h10_c00236{height:73.132813pt;}
.h2_c00236{height:73.935547pt;}
.h12_c00236{height:77.179688pt;}
.h14_c00236{height:93.867188pt;}
.h1c_c00236{height:100.820312pt;}
.h1a_c00236{height:102.906250pt;}
.h0_c00236{height:1122.666667pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:123.199200pt;}
.x24_c00236{left:124.479467pt;}
.x10_c00236{left:136.639200pt;}
.x1b_c00236{left:150.079067pt;}
.x11_c00236{left:157.119200pt;}
.x12_c00236{left:181.119200pt;}
.x2c_c00236{left:189.758787pt;}
.x25_c00236{left:192.000000pt;}
.x2d_c00236{left:205.440000pt;}
.xd_c00236{left:218.559067pt;}
.xe_c00236{left:231.679733pt;}
.x8_c00236{left:237.118667pt;}
.x33_c00236{left:249.919867pt;}
.x9_c00236{left:252.159733pt;}
.x26_c00236{left:255.358933pt;}
.x34_c00236{left:264.638667pt;}
.x1c_c00236{left:268.479453pt;}
.x1d_c00236{left:290.559067pt;}
.x13_c00236{left:317.759720pt;}
.x27_c00236{left:322.239200pt;}
.x23_c00236{left:323.838933pt;}
.x14_c00236{left:338.239720pt;}
.x28_c00236{left:342.719200pt;}
.x15_c00236{left:355.199707pt;}
.x2e_c00236{left:359.679200pt;}
.x35_c00236{left:360.638667pt;}
.x2_c00236{left:366.719200pt;}
.x2f_c00236{left:378.238813pt;}
.x3_c00236{left:380.799320pt;}
.x16_c00236{left:383.679200pt;}
.x29_c00236{left:402.878907pt;}
.x19_c00236{left:421.119187pt;}
.x4_c00236{left:422.718787pt;}
.x1a_c00236{left:434.239707pt;}
.x5_c00236{left:456.000000pt;}
.x17_c00236{left:506.559040pt;}
.x2a_c00236{left:516.799840pt;}
.x1e_c00236{left:518.718787pt;}
.x31_c00236{left:540.799840pt;}
.x1f_c00236{left:544.960000pt;}
.x2b_c00236{left:547.199707pt;}
.x6_c00236{left:548.159173pt;}
.x36_c00236{left:556.158693pt;}
.x7_c00236{left:561.919840pt;}
.x32_c00236{left:563.838907pt;}
.x37_c00236{left:569.279333pt;}
.x20_c00236{left:581.759720pt;}
.x18_c00236{left:582.719200pt;}
.xa_c00236{left:584.639573pt;}
.x21_c00236{left:603.199173pt;}
.xb_c00236{left:608.639573pt;}
.x22_c00236{left:615.999067pt;}
.x30_c00236{left:670.398920pt;}
.xc_c00236{left:674.559040pt;}
.xf_c00236{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e735eb76e5bb553654b06307.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_acbe848ddc21de73b496f271.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_9ab12f57a867767945855d11.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_29b3ac78514c03f982af9953.woff2')format("woff");}.ff4_c00237{font-family:ff4_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:ff5_c00237;src:url('chunks/assets/font_60aef20f0626e84474edb41d.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00237;src:url('chunks/assets/font_d4f06ac3d853b6ca69e31372.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00237;src:url('chunks/assets/font_5046f07ac7c1ab64d455c9f5.woff2')format("woff");}.ff7_c00237{font-family:ff7_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c00237{transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.179012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179012,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203540,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m37_c00237{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220109,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m31_c00237{transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226563,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244949,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m32_c00237{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275568,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.282738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282738,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m34_c00237{transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls1f_c00237{letter-spacing:-33.157530px;}
.ls16_c00237{letter-spacing:-18.577125px;}
.ls1c_c00237{letter-spacing:-9.654750px;}
.ls12_c00237{letter-spacing:-9.441338px;}
.lsd_c00237{letter-spacing:-8.914500px;}
.ls11_c00237{letter-spacing:-8.591625px;}
.ls26_c00237{letter-spacing:-8.175038px;}
.lse_c00237{letter-spacing:-7.655175px;}
.ls1a_c00237{letter-spacing:-7.426125px;}
.ls3f_c00237{letter-spacing:-6.683250px;}
.ls2d_c00237{letter-spacing:-6.093750px;}
.ls15_c00237{letter-spacing:-6.055875px;}
.ls5_c00237{letter-spacing:-5.945625px;}
.ls1b_c00237{letter-spacing:-5.615303px;}
.lsf_c00237{letter-spacing:-5.536800px;}
.ls10_c00237{letter-spacing:-5.452110px;}
.ls21_c00237{letter-spacing:-5.346450px;}
.ls8_c00237{letter-spacing:-5.196713px;}
.ls3d_c00237{letter-spacing:-4.977600px;}
.ls29_c00237{letter-spacing:-4.800480px;}
.ls3_c00237{letter-spacing:-4.456463px;}
.ls38_c00237{letter-spacing:-4.085400px;}
.ls1d_c00237{letter-spacing:-3.785025px;}
.ls6_c00237{letter-spacing:-3.717000px;}
.ls3e_c00237{letter-spacing:-3.663248px;}
.ls24_c00237{letter-spacing:-3.514875px;}
.ls3a_c00237{letter-spacing:-3.254400px;}
.ls41_c00237{letter-spacing:-2.999708px;}
.ls22_c00237{letter-spacing:-2.973300px;}
.ls7_c00237{letter-spacing:-2.968875px;}
.ls27_c00237{letter-spacing:-2.492400px;}
.ls30_c00237{letter-spacing:-2.362200px;}
.ls36_c00237{letter-spacing:-2.326500px;}
.ls34_c00237{letter-spacing:-2.325000px;}
.ls2e_c00237{letter-spacing:-2.324100px;}
.ls3c_c00237{letter-spacing:-2.285280px;}
.ls2_c00237{letter-spacing:-2.229413px;}
.ls33_c00237{letter-spacing:-1.829542px;}
.ls40_c00237{letter-spacing:-1.633733px;}
.ls2f_c00237{letter-spacing:-1.576815px;}
.ls28_c00237{letter-spacing:-1.551383px;}
.ls2b_c00237{letter-spacing:-1.547985px;}
.ls42_c00237{letter-spacing:-1.498575px;}
.ls4_c00237{letter-spacing:-1.489163px;}
.ls1e_c00237{letter-spacing:-0.932400px;}
.ls23_c00237{letter-spacing:-0.922928px;}
.ls17_c00237{letter-spacing:-0.857588px;}
.ls2a_c00237{letter-spacing:-0.777750px;}
.ls39_c00237{letter-spacing:-0.776085px;}
.ls9_c00237{letter-spacing:-0.740250px;}
.lsa_c00237{letter-spacing:0.000000px;}
.ls3b_c00237{letter-spacing:0.776085px;}
.ls2c_c00237{letter-spacing:1.547985px;}
.ls37_c00237{letter-spacing:1.576815px;}
.ls20_c00237{letter-spacing:2.180843px;}
.ls31_c00237{letter-spacing:2.325000px;}
.ls25_c00237{letter-spacing:2.393700px;}
.ls0_c00237{letter-spacing:2.968875px;}
.ls32_c00237{letter-spacing:3.642165px;}
.lsb_c00237{letter-spacing:4.181700px;}
.ls35_c00237{letter-spacing:6.198450px;}
.lsc_c00237{letter-spacing:7.114500px;}
.ls14_c00237{letter-spacing:8.489003px;}
.ls19_c00237{letter-spacing:11.203110px;}
.ls18_c00237{letter-spacing:11.923890px;}
.ls1_c00237{letter-spacing:17.823450px;}
.ls13_c00237{letter-spacing:39.803400px;}
.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;}
._18_c00237{margin-left:-32.731350px;}
._17_c00237{margin-left:-4.848311px;}
._a_c00237{margin-left:-3.149614px;}
._0_c00237{margin-left:-1.745917px;}
._3_c00237{width:1.467321px;}
._1_c00237{width:2.681660px;}
._4_c00237{width:4.456358px;}
._2_c00237{width:6.095250px;}
._9_c00237{width:7.130634px;}
._8_c00237{width:8.245883px;}
._5_c00237{width:9.903407px;}
._7_c00237{width:11.583650px;}
._6_c00237{width:12.923321px;}
._11_c00237{width:14.933749px;}
._16_c00237{width:16.113617px;}
._b_c00237{width:17.493020px;}
._14_c00237{width:19.058822px;}
._12_c00237{width:20.813268px;}
._10_c00237{width:22.620447px;}
._13_c00237{width:23.906999px;}
._f_c00237{width:26.031496px;}
._d_c00237{width:27.176343px;}
._c_c00237{width:28.940298px;}
._e_c00237{width:30.164979px;}
._15_c00237{width:39.772628px;}
.fc0_c00237{color:transparent;}
.fs20_c00237{font-size:39.750000px;}
.fs16_c00237{font-size:40.500000px;}
.fs1e_c00237{font-size:42.750000px;}
.fs1a_c00237{font-size:43.500000px;}
.fs1f_c00237{font-size:44.250000px;}
.fs18_c00237{font-size:45.000000px;}
.fs15_c00237{font-size:45.750000px;}
.fs14_c00237{font-size:46.500000px;}
.fs1b_c00237{font-size:47.250000px;}
.fs17_c00237{font-size:48.000000px;}
.fs19_c00237{font-size:48.750000px;}
.fs1d_c00237{font-size:51.000000px;}
.fs13_c00237{font-size:54.750000px;}
.fsb_c00237{font-size:60.750000px;}
.fs10_c00237{font-size:63.000000px;}
.fs1c_c00237{font-size:66.000000px;}
.fsd_c00237{font-size:69.000000px;}
.fsa_c00237{font-size:71.250000px;}
.fs8_c00237{font-size:72.000000px;}
.fs2_c00237{font-size:72.750000px;}
.fs7_c00237{font-size:74.250000px;}
.fs11_c00237{font-size:75.750000px;}
.fs4_c00237{font-size:76.500000px;}
.fsc_c00237{font-size:77.250000px;}
.fs5_c00237{font-size:78.000000px;}
.fs0_c00237{font-size:78.750000px;}
.fs3_c00237{font-size:79.500000px;}
.fs6_c00237{font-size:80.250000px;}
.fs9_c00237{font-size:81.000000px;}
.fse_c00237{font-size:81.750000px;}
.fs1_c00237{font-size:82.500000px;}
.fsf_c00237{font-size:83.250000px;}
.fs12_c00237{font-size:84.750000px;}
.y0_c00237{bottom:0.000000px;}
.y2b_c00237{bottom:170.280900px;}
.y2a_c00237{bottom:208.080000px;}
.y29_c00237{bottom:221.759535px;}
.y28_c00237{bottom:237.960600px;}
.y27_c00237{bottom:300.960870px;}
.y25_c00237{bottom:330.840045px;}
.y26_c00237{bottom:330.840585px;}
.y24_c00237{bottom:360.001185px;}
.y23_c00237{bottom:389.520720px;}
.y20_c00237{bottom:419.760720px;}
.y21_c00237{bottom:420.480885px;}
.y22_c00237{bottom:420.840135px;}
.y1f_c00237{bottom:450.000600px;}
.y1e_c00237{bottom:480.240375px;}
.y1d_c00237{bottom:510.480285px;}
.y1c_c00237{bottom:510.481185px;}
.y1b_c00237{bottom:540.360900px;}
.y1a_c00237{bottom:540.361455px;}
.y19_c00237{bottom:569.520495px;}
.y18_c00237{bottom:599.041830px;}
.y17_c00237{bottom:628.561365px;}
.y16_c00237{bottom:687.600135px;}
.y15_c00237{bottom:717.840135px;}
.y14_c00237{bottom:748.800105px;}
.y12_c00237{bottom:777.960525px;}
.y13_c00237{bottom:777.960570px;}
.y11_c00237{bottom:808.200435px;}
.y10_c00237{bottom:808.200630px;}
.ye_c00237{bottom:837.719745px;}
.yf_c00237{bottom:837.720150px;}
.yd_c00237{bottom:866.880885px;}
.yc_c00237{bottom:896.760615px;}
.yb_c00237{bottom:926.640330px;}
.ya_c00237{bottom:956.520060px;}
.y9_c00237{bottom:986.399775px;}
.y8_c00237{bottom:986.400675px;}
.y7_c00237{bottom:1016.280390px;}
.y6_c00237{bottom:1045.800105px;}
.y5_c00237{bottom:1045.801005px;}
.y3_c00237{bottom:1075.679925px;}
.y4_c00237{bottom:1075.680720px;}
.y2_c00237{bottom:1105.919835px;}
.y1_c00237{bottom:1135.799565px;}
.h29_c00237{height:41.458008px;}
.h1b_c00237{height:42.240234px;}
.h26_c00237{height:44.586914px;}
.h28_c00237{height:44.595703px;}
.h21_c00237{height:45.213867px;}
.h1e_c00237{height:45.351562px;}
.h20_c00237{height:45.369141px;}
.h1a_c00237{height:46.107422px;}
.h1d_c00237{height:46.863281px;}
.h23_c00237{height:46.933594px;}
.h22_c00237{height:47.619141px;}
.h27_c00237{height:47.715820px;}
.h1f_c00237{height:48.178711px;}
.h1c_c00237{height:48.375000px;}
.h19_c00237{height:48.498047px;}
.h25_c00237{height:50.402344px;}
.h18_c00237{height:57.102539px;}
.hd_c00237{height:60.038086px;}
.h13_c00237{height:62.261719px;}
.h24_c00237{height:68.835938px;}
.hf_c00237{height:71.964844px;}
.hc_c00237{height:74.311523px;}
.h5_c00237{height:75.080566px;}
.h9_c00237{height:75.093750px;}
.h10_c00237{height:75.816650px;}
.h3_c00237{height:75.875977px;}
.h6_c00237{height:76.552734px;}
.h1_c00237{height:77.288818px;}
.h8_c00237{height:77.440430px;}
.he_c00237{height:77.853516px;}
.h4_c00237{height:78.024902px;}
.h7_c00237{height:78.760986px;}
.h14_c00237{height:79.004883px;}
.hb_c00237{height:79.365234px;}
.ha_c00237{height:79.497070px;}
.h11_c00237{height:80.233154px;}
.h17_c00237{height:80.569336px;}
.h2_c00237{height:80.969238px;}
.h15_c00237{height:82.388672px;}
.h12_c00237{height:83.900391px;}
.h16_c00237{height:85.412109px;}
.h0_c00237{height:1263.000000px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:135.718500px;}
.x23_c00237{left:137.519790px;}
.x1e_c00237{left:150.838515px;}
.x24_c00237{left:152.278800px;}
.x27_c00237{left:160.559685px;}
.x34_c00237{left:168.479685px;}
.x55_c00237{left:182.518665px;}
.x35_c00237{left:185.399250px;}
.x47_c00237{left:191.878950px;}
.x56_c00237{left:194.039400px;}
.xa_c00237{left:202.679700px;}
.x36_c00237{left:208.080000px;}
.x2_c00237{left:213.119385px;}
.xb_c00237{left:216.000000px;}
.x58_c00237{left:221.039400px;}
.x37_c00237{left:222.118785px;}
.x3_c00237{left:228.598500px;}
.x59_c00237{left:235.080000px;}
.x38_c00237{left:238.319850px;}
.x48_c00237{left:240.478635px;}
.x57_c00237{left:247.319250px;}
.x49_c00237{left:250.559100px;}
.x14_c00237{left:253.439685px;}
.x39_c00237{left:266.399250px;}
.x4a_c00237{left:283.679700px;}
.x5a_c00237{left:290.879535px;}
.x3a_c00237{left:292.679100px;}
.x3b_c00237{left:302.039385px;}
.x5b_c00237{left:318.238785px;}
.x28_c00237{left:320.040000px;}
.x15_c00237{left:321.839535px;}
.x4b_c00237{left:329.039385px;}
.x3c_c00237{left:332.638530px;}
.x29_c00237{left:344.518635px;}
.x16_c00237{left:347.399235px;}
.x4c_c00237{left:348.478635px;}
.x25_c00237{left:352.799535px;}
.x5c_c00237{left:361.439685px;}
.x8_c00237{left:364.679700px;}
.x26_c00237{left:367.558635px;}
.x17_c00237{left:369.359850px;}
.x2a_c00237{left:372.958950px;}
.x33_c00237{left:376.559685px;}
.x9_c00237{left:383.039385px;}
.x3d_c00237{left:388.439715px;}
.x18_c00237{left:398.159415px;}
.x4d_c00237{left:416.878320px;}
.x2b_c00237{left:427.319820px;}
.x4e_c00237{left:429.839535px;}
.x2c_c00237{left:444.598530px;}
.x19_c00237{left:455.399235px;}
.x3e_c00237{left:465.838950px;}
.x4_c00237{left:473.759085px;}
.x1a_c00237{left:484.198785px;}
.x3f_c00237{left:493.199850px;}
.x40_c00237{left:512.279850px;}
.x4f_c00237{left:518.039385px;}
.x5_c00237{left:525.598530px;}
.x2d_c00237{left:530.278800px;}
.xe_c00237{left:531.719100px;}
.x50_c00237{left:533.159415px;}
.x41_c00237{left:545.398635px;}
.xf_c00237{left:546.479685px;}
.x2e_c00237{left:555.119985px;}
.xc_c00237{left:556.558635px;}
.x51_c00237{left:566.279850px;}
.xd_c00237{left:570.599070px;}
.x42_c00237{left:601.918350px;}
.x2f_c00237{left:605.159820px;}
.x1b_c00237{left:621.718545px;}
.x10_c00237{left:628.199850px;}
.x30_c00237{left:634.318770px;}
.x43_c00237{left:641.518620px;}
.x11_c00237{left:643.319820px;}
.x1f_c00237{left:650.158770px;}
.x20_c00237{left:668.159370px;}
.x44_c00237{left:669.958920px;}
.x45_c00237{left:678.239820px;}
.x31_c00237{left:687.239220px;}
.x1c_c00237{left:689.399820px;}
.x21_c00237{left:692.278800px;}
.x46_c00237{left:716.399820px;}
.x52_c00237{left:718.919535px;}
.x22_c00237{left:723.599670px;}
.x53_c00237{left:733.678530px;}
.x1d_c00237{left:736.559100px;}
.x32_c00237{left:740.159820px;}
.x12_c00237{left:741.239220px;}
.x6_c00237{left:742.318770px;}
.x7_c00237{left:756.359250px;}
.x13_c00237{left:759.239820px;}
.x54_c00237{left:766.439670px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls1f_c00237{letter-spacing:-29.473360pt;}
.ls16_c00237{letter-spacing:-16.513000pt;}
.ls1c_c00237{letter-spacing:-8.582000pt;}
.ls12_c00237{letter-spacing:-8.392300pt;}
.lsd_c00237{letter-spacing:-7.924000pt;}
.ls11_c00237{letter-spacing:-7.637000pt;}
.ls26_c00237{letter-spacing:-7.266700pt;}
.lse_c00237{letter-spacing:-6.804600pt;}
.ls1a_c00237{letter-spacing:-6.601000pt;}
.ls3f_c00237{letter-spacing:-5.940667pt;}
.ls2d_c00237{letter-spacing:-5.416667pt;}
.ls15_c00237{letter-spacing:-5.383000pt;}
.ls5_c00237{letter-spacing:-5.285000pt;}
.ls1b_c00237{letter-spacing:-4.991380pt;}
.lsf_c00237{letter-spacing:-4.921600pt;}
.ls10_c00237{letter-spacing:-4.846320pt;}
.ls21_c00237{letter-spacing:-4.752400pt;}
.ls8_c00237{letter-spacing:-4.619300pt;}
.ls3d_c00237{letter-spacing:-4.424533pt;}
.ls29_c00237{letter-spacing:-4.267093pt;}
.ls3_c00237{letter-spacing:-3.961300pt;}
.ls38_c00237{letter-spacing:-3.631467pt;}
.ls1d_c00237{letter-spacing:-3.364467pt;}
.ls6_c00237{letter-spacing:-3.304000pt;}
.ls3e_c00237{letter-spacing:-3.256220pt;}
.ls24_c00237{letter-spacing:-3.124333pt;}
.ls3a_c00237{letter-spacing:-2.892800pt;}
.ls41_c00237{letter-spacing:-2.666407pt;}
.ls22_c00237{letter-spacing:-2.642933pt;}
.ls7_c00237{letter-spacing:-2.639000pt;}
.ls27_c00237{letter-spacing:-2.215467pt;}
.ls30_c00237{letter-spacing:-2.099733pt;}
.ls36_c00237{letter-spacing:-2.068000pt;}
.ls34_c00237{letter-spacing:-2.066667pt;}
.ls2e_c00237{letter-spacing:-2.065867pt;}
.ls3c_c00237{letter-spacing:-2.031360pt;}
.ls2_c00237{letter-spacing:-1.981700pt;}
.ls33_c00237{letter-spacing:-1.626260pt;}
.ls40_c00237{letter-spacing:-1.452207pt;}
.ls2f_c00237{letter-spacing:-1.401613pt;}
.ls28_c00237{letter-spacing:-1.379007pt;}
.ls2b_c00237{letter-spacing:-1.375987pt;}
.ls42_c00237{letter-spacing:-1.332067pt;}
.ls4_c00237{letter-spacing:-1.323700pt;}
.ls1e_c00237{letter-spacing:-0.828800pt;}
.ls23_c00237{letter-spacing:-0.820380pt;}
.ls17_c00237{letter-spacing:-0.762300pt;}
.ls2a_c00237{letter-spacing:-0.691333pt;}
.ls39_c00237{letter-spacing:-0.689853pt;}
.ls9_c00237{letter-spacing:-0.658000pt;}
.lsa_c00237{letter-spacing:0.000000pt;}
.ls3b_c00237{letter-spacing:0.689853pt;}
.ls2c_c00237{letter-spacing:1.375987pt;}
.ls37_c00237{letter-spacing:1.401613pt;}
.ls20_c00237{letter-spacing:1.938527pt;}
.ls31_c00237{letter-spacing:2.066667pt;}
.ls25_c00237{letter-spacing:2.127733pt;}
.ls0_c00237{letter-spacing:2.639000pt;}
.ls32_c00237{letter-spacing:3.237480pt;}
.lsb_c00237{letter-spacing:3.717067pt;}
.ls35_c00237{letter-spacing:5.509733pt;}
.lsc_c00237{letter-spacing:6.324000pt;}
.ls14_c00237{letter-spacing:7.545780pt;}
.ls19_c00237{letter-spacing:9.958320pt;}
.ls18_c00237{letter-spacing:10.599013pt;}
.ls1_c00237{letter-spacing:15.843067pt;}
.ls13_c00237{letter-spacing:35.380800pt;}
.ws0_c00237{word-spacing:0.000000pt;}
._18_c00237{margin-left:-29.094533pt;}
._17_c00237{margin-left:-4.309609pt;}
._a_c00237{margin-left:-2.799657pt;}
._0_c00237{margin-left:-1.551926pt;}
._3_c00237{width:1.304285pt;}
._1_c00237{width:2.383698pt;}
._4_c00237{width:3.961208pt;}
._2_c00237{width:5.418000pt;}
._9_c00237{width:6.338342pt;}
._8_c00237{width:7.329674pt;}
._5_c00237{width:8.803028pt;}
._7_c00237{width:10.296577pt;}
._6_c00237{width:11.487396pt;}
._11_c00237{width:13.274443pt;}
._16_c00237{width:14.323215pt;}
._b_c00237{width:15.549351pt;}
._14_c00237{width:16.941175pt;}
._12_c00237{width:18.500683pt;}
._10_c00237{width:20.107064pt;}
._13_c00237{width:21.250666pt;}
._f_c00237{width:23.139108pt;}
._d_c00237{width:24.156749pt;}
._c_c00237{width:25.724709pt;}
._e_c00237{width:26.813315pt;}
._15_c00237{width:35.353447pt;}
.fs20_c00237{font-size:35.333333pt;}
.fs16_c00237{font-size:36.000000pt;}
.fs1e_c00237{font-size:38.000000pt;}
.fs1a_c00237{font-size:38.666667pt;}
.fs1f_c00237{font-size:39.333333pt;}
.fs18_c00237{font-size:40.000000pt;}
.fs15_c00237{font-size:40.666667pt;}
.fs14_c00237{font-size:41.333333pt;}
.fs1b_c00237{font-size:42.000000pt;}
.fs17_c00237{font-size:42.666667pt;}
.fs19_c00237{font-size:43.333333pt;}
.fs1d_c00237{font-size:45.333333pt;}
.fs13_c00237{font-size:48.666667pt;}
.fsb_c00237{font-size:54.000000pt;}
.fs10_c00237{font-size:56.000000pt;}
.fs1c_c00237{font-size:58.666667pt;}
.fsd_c00237{font-size:61.333333pt;}
.fsa_c00237{font-size:63.333333pt;}
.fs8_c00237{font-size:64.000000pt;}
.fs2_c00237{font-size:64.666667pt;}
.fs7_c00237{font-size:66.000000pt;}
.fs11_c00237{font-size:67.333333pt;}
.fs4_c00237{font-size:68.000000pt;}
.fsc_c00237{font-size:68.666667pt;}
.fs5_c00237{font-size:69.333333pt;}
.fs0_c00237{font-size:70.000000pt;}
.fs3_c00237{font-size:70.666667pt;}
.fs6_c00237{font-size:71.333333pt;}
.fs9_c00237{font-size:72.000000pt;}
.fse_c00237{font-size:72.666667pt;}
.fs1_c00237{font-size:73.333333pt;}
.fsf_c00237{font-size:74.000000pt;}
.fs12_c00237{font-size:75.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y2b_c00237{bottom:151.360800pt;}
.y2a_c00237{bottom:184.960000pt;}
.y29_c00237{bottom:197.119587pt;}
.y28_c00237{bottom:211.520533pt;}
.y27_c00237{bottom:267.520773pt;}
.y25_c00237{bottom:294.080040pt;}
.y26_c00237{bottom:294.080520pt;}
.y24_c00237{bottom:320.001053pt;}
.y23_c00237{bottom:346.240640pt;}
.y20_c00237{bottom:373.120640pt;}
.y21_c00237{bottom:373.760787pt;}
.y22_c00237{bottom:374.080120pt;}
.y1f_c00237{bottom:400.000533pt;}
.y1e_c00237{bottom:426.880333pt;}
.y1d_c00237{bottom:453.760253pt;}
.y1c_c00237{bottom:453.761053pt;}
.y1b_c00237{bottom:480.320800pt;}
.y1a_c00237{bottom:480.321293pt;}
.y19_c00237{bottom:506.240440pt;}
.y18_c00237{bottom:532.481627pt;}
.y17_c00237{bottom:558.721213pt;}
.y16_c00237{bottom:611.200120pt;}
.y15_c00237{bottom:638.080120pt;}
.y14_c00237{bottom:665.600093pt;}
.y12_c00237{bottom:691.520467pt;}
.y13_c00237{bottom:691.520507pt;}
.y11_c00237{bottom:718.400387pt;}
.y10_c00237{bottom:718.400560pt;}
.ye_c00237{bottom:744.639773pt;}
.yf_c00237{bottom:744.640133pt;}
.yd_c00237{bottom:770.560787pt;}
.yc_c00237{bottom:797.120547pt;}
.yb_c00237{bottom:823.680293pt;}
.ya_c00237{bottom:850.240053pt;}
.y9_c00237{bottom:876.799800pt;}
.y8_c00237{bottom:876.800600pt;}
.y7_c00237{bottom:903.360347pt;}
.y6_c00237{bottom:929.600093pt;}
.y5_c00237{bottom:929.600893pt;}
.y3_c00237{bottom:956.159933pt;}
.y4_c00237{bottom:956.160640pt;}
.y2_c00237{bottom:983.039853pt;}
.y1_c00237{bottom:1009.599613pt;}
.h29_c00237{height:36.851562pt;}
.h1b_c00237{height:37.546875pt;}
.h26_c00237{height:39.632812pt;}
.h28_c00237{height:39.640625pt;}
.h21_c00237{height:40.190104pt;}
.h1e_c00237{height:40.312500pt;}
.h20_c00237{height:40.328125pt;}
.h1a_c00237{height:40.984375pt;}
.h1d_c00237{height:41.656250pt;}
.h23_c00237{height:41.718750pt;}
.h22_c00237{height:42.328125pt;}
.h27_c00237{height:42.414062pt;}
.h1f_c00237{height:42.825521pt;}
.h1c_c00237{height:43.000000pt;}
.h19_c00237{height:43.109375pt;}
.h25_c00237{height:44.802083pt;}
.h18_c00237{height:50.757812pt;}
.hd_c00237{height:53.367188pt;}
.h13_c00237{height:55.343750pt;}
.h24_c00237{height:61.187500pt;}
.hf_c00237{height:63.968750pt;}
.hc_c00237{height:66.054688pt;}
.h5_c00237{height:66.738281pt;}
.h9_c00237{height:66.750000pt;}
.h10_c00237{height:67.392578pt;}
.h3_c00237{height:67.445312pt;}
.h6_c00237{height:68.046875pt;}
.h1_c00237{height:68.701172pt;}
.h8_c00237{height:68.835938pt;}
.he_c00237{height:69.203125pt;}
.h4_c00237{height:69.355469pt;}
.h7_c00237{height:70.009766pt;}
.h14_c00237{height:70.226562pt;}
.hb_c00237{height:70.546875pt;}
.ha_c00237{height:70.664062pt;}
.h11_c00237{height:71.318359pt;}
.h17_c00237{height:71.617188pt;}
.h2_c00237{height:71.972656pt;}
.h15_c00237{height:73.234375pt;}
.h12_c00237{height:74.578125pt;}
.h16_c00237{height:75.921875pt;}
.h0_c00237{height:1122.666667pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:120.638667pt;}
.x23_c00237{left:122.239813pt;}
.x1e_c00237{left:134.078680pt;}
.x24_c00237{left:135.358933pt;}
.x27_c00237{left:142.719720pt;}
.x34_c00237{left:149.759720pt;}
.x55_c00237{left:162.238813pt;}
.x35_c00237{left:164.799333pt;}
.x47_c00237{left:170.559067pt;}
.x56_c00237{left:172.479467pt;}
.xa_c00237{left:180.159733pt;}
.x36_c00237{left:184.960000pt;}
.x2_c00237{left:189.439453pt;}
.xb_c00237{left:192.000000pt;}
.x58_c00237{left:196.479467pt;}
.x37_c00237{left:197.438920pt;}
.x3_c00237{left:203.198667pt;}
.x59_c00237{left:208.960000pt;}
.x38_c00237{left:211.839867pt;}
.x48_c00237{left:213.758787pt;}
.x57_c00237{left:219.839333pt;}
.x49_c00237{left:222.719200pt;}
.x14_c00237{left:225.279720pt;}
.x39_c00237{left:236.799333pt;}
.x4a_c00237{left:252.159733pt;}
.x5a_c00237{left:258.559587pt;}
.x3a_c00237{left:260.159200pt;}
.x3b_c00237{left:268.479453pt;}
.x5b_c00237{left:282.878920pt;}
.x28_c00237{left:284.480000pt;}
.x15_c00237{left:286.079587pt;}
.x4b_c00237{left:292.479453pt;}
.x3c_c00237{left:295.678693pt;}
.x29_c00237{left:306.238787pt;}
.x16_c00237{left:308.799320pt;}
.x4c_c00237{left:309.758787pt;}
.x25_c00237{left:313.599587pt;}
.x5c_c00237{left:321.279720pt;}
.x8_c00237{left:324.159733pt;}
.x26_c00237{left:326.718787pt;}
.x17_c00237{left:328.319867pt;}
.x2a_c00237{left:331.519067pt;}
.x33_c00237{left:334.719720pt;}
.x9_c00237{left:340.479453pt;}
.x3d_c00237{left:345.279747pt;}
.x18_c00237{left:353.919480pt;}
.x4d_c00237{left:370.558507pt;}
.x2b_c00237{left:379.839840pt;}
.x4e_c00237{left:382.079587pt;}
.x2c_c00237{left:395.198693pt;}
.x19_c00237{left:404.799320pt;}
.x3e_c00237{left:414.079067pt;}
.x4_c00237{left:421.119187pt;}
.x1a_c00237{left:430.398920pt;}
.x3f_c00237{left:438.399867pt;}
.x40_c00237{left:455.359867pt;}
.x4f_c00237{left:460.479453pt;}
.x5_c00237{left:467.198693pt;}
.x2d_c00237{left:471.358933pt;}
.xe_c00237{left:472.639200pt;}
.x50_c00237{left:473.919480pt;}
.x41_c00237{left:484.798787pt;}
.xf_c00237{left:485.759720pt;}
.x2e_c00237{left:493.439987pt;}
.xc_c00237{left:494.718787pt;}
.x51_c00237{left:503.359867pt;}
.xd_c00237{left:507.199173pt;}
.x42_c00237{left:535.038533pt;}
.x2f_c00237{left:537.919840pt;}
.x1b_c00237{left:552.638707pt;}
.x10_c00237{left:558.399867pt;}
.x30_c00237{left:563.838907pt;}
.x43_c00237{left:570.238773pt;}
.x11_c00237{left:571.839840pt;}
.x1f_c00237{left:577.918907pt;}
.x20_c00237{left:593.919440pt;}
.x44_c00237{left:595.519040pt;}
.x45_c00237{left:602.879840pt;}
.x31_c00237{left:610.879307pt;}
.x1c_c00237{left:612.799840pt;}
.x21_c00237{left:615.358933pt;}
.x46_c00237{left:636.799840pt;}
.x52_c00237{left:639.039587pt;}
.x22_c00237{left:643.199707pt;}
.x53_c00237{left:652.158693pt;}
.x1d_c00237{left:654.719200pt;}
.x32_c00237{left:657.919840pt;}
.x12_c00237{left:658.879307pt;}
.x6_c00237{left:659.838907pt;}
.x7_c00237{left:672.319333pt;}
.x13_c00237{left:674.879840pt;}
.x54_c00237{left:681.279707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab77a65bc78993aec78f0b4.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_32187e6beb9a2d92244f4e5c.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;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_d3c0b8612aeb4e9d3aa0357e.woff2')format("woff");}.ff3_c00238{font-family:ff3_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:ff4_c00238;src:url('chunks/assets/font_8edb175f9c27b682645b7a55.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_59cd466c67c379b648c24dfc.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_e83353aa020ea1e95b306e84.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:1.364746;font-style:normal;font-weight: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_c00238;src:url('chunks/assets/font_68abb753683c1d5643da2466.woff2')format("woff");}.ff7_c00238{font-family:ff7_c00238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00238;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c00238{font-family:ff8_c00238;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c00238{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1e_c00238{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00238{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m15_c00238{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m16_c00238{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m20_c00238{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m10_c00238{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_c00238{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m23_c00238{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m22_c00238{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m12_c00238{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m25_c00238{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.md_c00238{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{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_c00238{transform:matrix(0.388060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388060,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.430556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430556,0.000000,0.000000,0.250000,0,0);}
.m21_c00238{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.628788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628788,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls1a_c00238{letter-spacing:-15.189525px;}
.ls22_c00238{letter-spacing:-14.082750px;}
.ls2e_c00238{letter-spacing:-12.687675px;}
.ls8_c00238{letter-spacing:-8.914500px;}
.ls5_c00238{letter-spacing:-8.665800px;}
.ls29_c00238{letter-spacing:-8.175038px;}
.ls21_c00238{letter-spacing:-7.426125px;}
.ls1d_c00238{letter-spacing:-7.004250px;}
.ls28_c00238{letter-spacing:-6.685875px;}
.lsf_c00238{letter-spacing:-6.000300px;}
.ls11_c00238{letter-spacing:-5.945625px;}
.ls12_c00238{letter-spacing:-5.778968px;}
.lsa_c00238{letter-spacing:-5.196713px;}
.ls27_c00238{letter-spacing:-4.626233px;}
.ls1f_c00238{letter-spacing:-4.592700px;}
.ls3_c00238{letter-spacing:-4.499820px;}
.ls9_c00238{letter-spacing:-4.456463px;}
.ls1b_c00238{letter-spacing:-4.128300px;}
.ls20_c00238{letter-spacing:-3.829275px;}
.lsd_c00238{letter-spacing:-3.717000px;}
.ls2d_c00238{letter-spacing:-3.289500px;}
.ls2b_c00238{letter-spacing:-3.080025px;}
.lsb_c00238{letter-spacing:-2.968875px;}
.ls23_c00238{letter-spacing:-2.251800px;}
.lse_c00238{letter-spacing:-2.229413px;}
.ls6_c00238{letter-spacing:-1.725300px;}
.ls1e_c00238{letter-spacing:-1.632000px;}
.ls4_c00238{letter-spacing:-1.526400px;}
.ls26_c00238{letter-spacing:-1.496250px;}
.lsc_c00238{letter-spacing:-1.489163px;}
.ls7_c00238{letter-spacing:-0.786713px;}
.ls2a_c00238{letter-spacing:-0.786555px;}
.ls18_c00238{letter-spacing:-0.771150px;}
.ls10_c00238{letter-spacing:-0.740250px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls2c_c00238{letter-spacing:0.717600px;}
.ls0_c00238{letter-spacing:0.740250px;}
.ls15_c00238{letter-spacing:1.199700px;}
.ls16_c00238{letter-spacing:1.934625px;}
.ls24_c00238{letter-spacing:2.685375px;}
.ls25_c00238{letter-spacing:3.252225px;}
.ls14_c00238{letter-spacing:3.920400px;}
.ls17_c00238{letter-spacing:4.416225px;}
.ls2_c00238{letter-spacing:4.819500px;}
.ls19_c00238{letter-spacing:8.002410px;}
.ls13_c00238{letter-spacing:11.804400px;}
.ls1c_c00238{letter-spacing:14.037765px;}
.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;}
._a_c00238{margin-left:-6.062205px;}
._b_c00238{margin-left:-4.135281px;}
._9_c00238{margin-left:-1.796555px;}
._3_c00238{width:1.500113px;}
._c_c00238{width:3.118069px;}
._13_c00238{width:4.239261px;}
._2_c00238{width:5.429857px;}
._16_c00238{width:7.046060px;}
._1_c00238{width:8.627612px;}
._10_c00238{width:10.093269px;}
._12_c00238{width:11.104894px;}
._d_c00238{width:13.207118px;}
._14_c00238{width:14.348488px;}
._15_c00238{width:16.009949px;}
._11_c00238{width:17.133147px;}
._0_c00238{width:18.167476px;}
._f_c00238{width:19.599434px;}
._e_c00238{width:20.806136px;}
._17_c00238{width:22.321063px;}
._5_c00238{width:23.696336px;}
._1a_c00238{width:24.756177px;}
._18_c00238{width:25.830149px;}
._7_c00238{width:27.371019px;}
._19_c00238{width:28.723141px;}
._1b_c00238{width:32.216803px;}
._8_c00238{width:34.506616px;}
._4_c00238{width:35.650511px;}
._6_c00238{width:41.254495px;}
.fc0_c00238{color:transparent;}
.fsc_c00238{font-size:30.000000px;}
.fsa_c00238{font-size:36.000000px;}
.fsb_c00238{font-size:40.500000px;}
.fs14_c00238{font-size:45.000000px;}
.fsd_c00238{font-size:50.250000px;}
.fse_c00238{font-size:51.000000px;}
.fs11_c00238{font-size:63.750000px;}
.fs12_c00238{font-size:69.750000px;}
.fs10_c00238{font-size:73.500000px;}
.fs0_c00238{font-size:74.250000px;}
.fs7_c00238{font-size:75.750000px;}
.fs16_c00238{font-size:76.500000px;}
.fs13_c00238{font-size:77.250000px;}
.fs2_c00238{font-size:78.000000px;}
.fs1_c00238{font-size:78.750000px;}
.fs3_c00238{font-size:79.500000px;}
.fs8_c00238{font-size:80.250000px;}
.fs4_c00238{font-size:81.000000px;}
.fs9_c00238{font-size:81.750000px;}
.fs5_c00238{font-size:82.500000px;}
.fs6_c00238{font-size:84.750000px;}
.fsf_c00238{font-size:87.750000px;}
.fs15_c00238{font-size:115.500000px;}
.y0_c00238{bottom:0.000000px;}
.y2b_c00238{bottom:185.040165px;}
.y2a_c00238{bottom:214.559685px;}
.y29_c00238{bottom:214.561275px;}
.y28_c00238{bottom:244.440990px;}
.y27_c00238{bottom:273.239850px;}
.y26_c00238{bottom:273.240900px;}
.y25_c00238{bottom:303.120615px;}
.y24_c00238{bottom:332.640150px;}
.y23_c00238{bottom:362.878620px;}
.y22_c00238{bottom:422.279685px;}
.y21_c00238{bottom:452.159415px;}
.y20_c00238{bottom:452.160255px;}
.y1f_c00238{bottom:482.039985px;}
.y1e_c00238{bottom:491.400285px;}
.y1d_c00238{bottom:511.919790px;}
.y1c_c00238{bottom:541.799520px;}
.y1b_c00238{bottom:570.959970px;}
.y1a_c00238{bottom:570.960255px;}
.y19_c00238{bottom:600.839970px;}
.y18_c00238{bottom:630.359505px;}
.y17_c00238{bottom:660.239220px;}
.y16_c00238{bottom:660.240255px;}
.y15_c00238{bottom:690.119985px;}
.y14_c00238{bottom:690.120165px;}
.y13_c00238{bottom:719.639700px;}
.y12_c00238{bottom:749.159370px;}
.y11_c00238{bottom:757.440255px;}
.y10_c00238{bottom:779.400120px;}
.yf_c00238{bottom:809.279850px;}
.ye_c00238{bottom:809.279895px;}
.yd_c00238{bottom:839.519805px;}
.yb_c00238{bottom:869.038605px;}
.yc_c00238{bottom:869.039340px;}
.ya_c00238{bottom:928.439670px;}
.y9_c00238{bottom:928.439805px;}
.y8_c00238{bottom:958.679715px;}
.y7_c00238{bottom:958.680525px;}
.y5_c00238{bottom:988.559925px;}
.y6_c00238{bottom:988.560240px;}
.y4_c00238{bottom:1018.079460px;}
.y2_c00238{bottom:1047.419430px;}
.y3_c00238{bottom:1047.419955px;}
.y1_c00238{bottom:1077.480285px;}
.h10_c00238{height:31.289062px;}
.he_c00238{height:37.546875px;}
.hf_c00238{height:42.240234px;}
.h1d_c00238{height:46.933594px;}
.h11_c00238{height:49.661133px;}
.h13_c00238{height:50.028809px;}
.h17_c00238{height:63.002930px;}
.h1a_c00238{height:72.747070px;}
.h12_c00238{height:74.307495px;}
.hb_c00238{height:74.344482px;}
.h1c_c00238{height:75.816650px;}
.h19_c00238{height:76.514648px;}
.h5_c00238{height:76.552734px;}
.h15_c00238{height:76.658203px;}
.h7_c00238{height:77.288818px;}
.h1_c00238{height:77.440430px;}
.ha_c00238{height:78.005038px;}
.h3_c00238{height:78.609375px;}
.hc_c00238{height:78.760986px;}
.h2_c00238{height:79.365234px;}
.h6_c00238{height:79.457520px;}
.h18_c00238{height:79.497070px;}
.h1f_c00238{height:79.787109px;}
.h4_c00238{height:80.121094px;}
.hd_c00238{height:80.233154px;}
.h8_c00238{height:80.969238px;}
.h1b_c00238{height:81.533203px;}
.h16_c00238{height:83.144531px;}
.h9_c00238{height:83.177490px;}
.h14_c00238{height:86.721680px;}
.h1e_c00238{height:120.462891px;}
.h0_c00238{height:1263.000000px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x2a_c00238{left:103.319850px;}
.x1_c00238{left:141.479715px;}
.x2b_c00238{left:142.559100px;}
.x30_c00238{left:164.158785px;}
.x2_c00238{left:166.319250px;}
.x15_c00238{left:186.119415px;}
.xf_c00238{left:200.159850px;}
.x10_c00238{left:215.639100px;}
.x16_c00238{left:217.438635px;}
.x11_c00238{left:227.159850px;}
.x2e_c00238{left:239.399250px;}
.x12_c00238{left:242.639100px;}
.x1a_c00238{left:253.798950px;}
.x2f_c00238{left:254.878350px;}
.x3_c00238{left:263.518635px;}
.x2c_c00238{left:287.639700px;}
.x4_c00238{left:290.518635px;}
.x17_c00238{left:291.958950px;}
.x2d_c00238{left:301.319250px;}
.x25_c00238{left:304.199850px;}
.x18_c00238{left:324.000000px;}
.x26_c00238{left:330.479685px;}
.x19_c00238{left:332.999385px;}
.x5_c00238{left:345.599700px;}
.x6_c00238{left:372.238785px;}
.x35_c00238{left:374.758500px;}
.x23_c00238{left:379.799535px;}
.x1b_c00238{left:383.398635px;}
.x36_c00238{left:404.639100px;}
.x1c_c00238{left:418.679670px;}
.x7_c00238{left:424.798515px;}
.x1d_c00238{left:474.838530px;}
.x31_c00238{left:480.599670px;}
.x28_c00238{left:485.639100px;}
.x8_c00238{left:499.679670px;}
.x32_c00238{left:502.919535px;}
.x29_c00238{left:510.839535px;}
.x37_c00238{left:512.639100px;}
.x1e_c00238{left:530.998950px;}
.x38_c00238{left:547.559100px;}
.x9_c00238{left:552.239220px;}
.x1f_c00238{left:556.919535px;}
.xa_c00238{left:566.279850px;}
.x24_c00238{left:586.439250px;}
.x39_c00238{left:590.039985px;}
.x20_c00238{left:591.478635px;}
.xb_c00238{left:623.158770px;}
.x13_c00238{left:638.639700px;}
.xc_c00238{left:649.079355px;}
.x14_c00238{left:653.759535px;}
.x21_c00238{left:663.479235px;}
.xd_c00238{left:687.598530px;}
.x3a_c00238{left:701.639100px;}
.xe_c00238{left:703.799520px;}
.x33_c00238{left:705.958335px;}
.x34_c00238{left:722.879520px;}
.x3b_c00238{left:726.478635px;}
.x22_c00238{left:745.919535px;}
.x27_c00238{left:756.359250px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls1a_c00238{letter-spacing:-13.501800pt;}
.ls22_c00238{letter-spacing:-12.518000pt;}
.ls2e_c00238{letter-spacing:-11.277933pt;}
.ls8_c00238{letter-spacing:-7.924000pt;}
.ls5_c00238{letter-spacing:-7.702933pt;}
.ls29_c00238{letter-spacing:-7.266700pt;}
.ls21_c00238{letter-spacing:-6.601000pt;}
.ls1d_c00238{letter-spacing:-6.226000pt;}
.ls28_c00238{letter-spacing:-5.943000pt;}
.lsf_c00238{letter-spacing:-5.333600pt;}
.ls11_c00238{letter-spacing:-5.285000pt;}
.ls12_c00238{letter-spacing:-5.136860pt;}
.lsa_c00238{letter-spacing:-4.619300pt;}
.ls27_c00238{letter-spacing:-4.112207pt;}
.ls1f_c00238{letter-spacing:-4.082400pt;}
.ls3_c00238{letter-spacing:-3.999840pt;}
.ls9_c00238{letter-spacing:-3.961300pt;}
.ls1b_c00238{letter-spacing:-3.669600pt;}
.ls20_c00238{letter-spacing:-3.403800pt;}
.lsd_c00238{letter-spacing:-3.304000pt;}
.ls2d_c00238{letter-spacing:-2.924000pt;}
.ls2b_c00238{letter-spacing:-2.737800pt;}
.lsb_c00238{letter-spacing:-2.639000pt;}
.ls23_c00238{letter-spacing:-2.001600pt;}
.lse_c00238{letter-spacing:-1.981700pt;}
.ls6_c00238{letter-spacing:-1.533600pt;}
.ls1e_c00238{letter-spacing:-1.450667pt;}
.ls4_c00238{letter-spacing:-1.356800pt;}
.ls26_c00238{letter-spacing:-1.330000pt;}
.lsc_c00238{letter-spacing:-1.323700pt;}
.ls7_c00238{letter-spacing:-0.699300pt;}
.ls2a_c00238{letter-spacing:-0.699160pt;}
.ls18_c00238{letter-spacing:-0.685467pt;}
.ls10_c00238{letter-spacing:-0.658000pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls2c_c00238{letter-spacing:0.637867pt;}
.ls0_c00238{letter-spacing:0.658000pt;}
.ls15_c00238{letter-spacing:1.066400pt;}
.ls16_c00238{letter-spacing:1.719667pt;}
.ls24_c00238{letter-spacing:2.387000pt;}
.ls25_c00238{letter-spacing:2.890867pt;}
.ls14_c00238{letter-spacing:3.484800pt;}
.ls17_c00238{letter-spacing:3.925533pt;}
.ls2_c00238{letter-spacing:4.284000pt;}
.ls19_c00238{letter-spacing:7.113253pt;}
.ls13_c00238{letter-spacing:10.492800pt;}
.ls1c_c00238{letter-spacing:12.478013pt;}
.ws0_c00238{word-spacing:0.000000pt;}
._a_c00238{margin-left:-5.388626pt;}
._b_c00238{margin-left:-3.675806pt;}
._9_c00238{margin-left:-1.596938pt;}
._3_c00238{width:1.333434pt;}
._c_c00238{width:2.771617pt;}
._13_c00238{width:3.768232pt;}
._2_c00238{width:4.826540pt;}
._16_c00238{width:6.263164pt;}
._1_c00238{width:7.668989pt;}
._10_c00238{width:8.971794pt;}
._12_c00238{width:9.871017pt;}
._d_c00238{width:11.739660pt;}
._14_c00238{width:12.754211pt;}
._15_c00238{width:14.231066pt;}
._11_c00238{width:15.229464pt;}
._0_c00238{width:16.148868pt;}
._f_c00238{width:17.421719pt;}
._e_c00238{width:18.494343pt;}
._17_c00238{width:19.840945pt;}
._5_c00238{width:21.063409pt;}
._1a_c00238{width:22.005491pt;}
._18_c00238{width:22.960132pt;}
._7_c00238{width:24.329794pt;}
._19_c00238{width:25.531681pt;}
._1b_c00238{width:28.637158pt;}
._8_c00238{width:30.672547pt;}
._4_c00238{width:31.689343pt;}
._6_c00238{width:36.670662pt;}
.fsc_c00238{font-size:26.666667pt;}
.fsa_c00238{font-size:32.000000pt;}
.fsb_c00238{font-size:36.000000pt;}
.fs14_c00238{font-size:40.000000pt;}
.fsd_c00238{font-size:44.666667pt;}
.fse_c00238{font-size:45.333333pt;}
.fs11_c00238{font-size:56.666667pt;}
.fs12_c00238{font-size:62.000000pt;}
.fs10_c00238{font-size:65.333333pt;}
.fs0_c00238{font-size:66.000000pt;}
.fs7_c00238{font-size:67.333333pt;}
.fs16_c00238{font-size:68.000000pt;}
.fs13_c00238{font-size:68.666667pt;}
.fs2_c00238{font-size:69.333333pt;}
.fs1_c00238{font-size:70.000000pt;}
.fs3_c00238{font-size:70.666667pt;}
.fs8_c00238{font-size:71.333333pt;}
.fs4_c00238{font-size:72.000000pt;}
.fs9_c00238{font-size:72.666667pt;}
.fs5_c00238{font-size:73.333333pt;}
.fs6_c00238{font-size:75.333333pt;}
.fsf_c00238{font-size:78.000000pt;}
.fs15_c00238{font-size:102.666667pt;}
.y0_c00238{bottom:0.000000pt;}
.y2b_c00238{bottom:164.480147pt;}
.y2a_c00238{bottom:190.719720pt;}
.y29_c00238{bottom:190.721133pt;}
.y28_c00238{bottom:217.280880pt;}
.y27_c00238{bottom:242.879867pt;}
.y26_c00238{bottom:242.880800pt;}
.y25_c00238{bottom:269.440547pt;}
.y24_c00238{bottom:295.680133pt;}
.y23_c00238{bottom:322.558773pt;}
.y22_c00238{bottom:375.359720pt;}
.y21_c00238{bottom:401.919480pt;}
.y20_c00238{bottom:401.920227pt;}
.y1f_c00238{bottom:428.479987pt;}
.y1e_c00238{bottom:436.800253pt;}
.y1d_c00238{bottom:455.039813pt;}
.y1c_c00238{bottom:481.599573pt;}
.y1b_c00238{bottom:507.519973pt;}
.y1a_c00238{bottom:507.520227pt;}
.y19_c00238{bottom:534.079973pt;}
.y18_c00238{bottom:560.319560pt;}
.y17_c00238{bottom:586.879307pt;}
.y16_c00238{bottom:586.880227pt;}
.y15_c00238{bottom:613.439987pt;}
.y14_c00238{bottom:613.440147pt;}
.y13_c00238{bottom:639.679733pt;}
.y12_c00238{bottom:665.919440pt;}
.y11_c00238{bottom:673.280227pt;}
.y10_c00238{bottom:692.800107pt;}
.yf_c00238{bottom:719.359867pt;}
.ye_c00238{bottom:719.359907pt;}
.yd_c00238{bottom:746.239827pt;}
.yb_c00238{bottom:772.478760pt;}
.yc_c00238{bottom:772.479413pt;}
.ya_c00238{bottom:825.279707pt;}
.y9_c00238{bottom:825.279827pt;}
.y8_c00238{bottom:852.159747pt;}
.y7_c00238{bottom:852.160467pt;}
.y5_c00238{bottom:878.719933pt;}
.y6_c00238{bottom:878.720213pt;}
.y4_c00238{bottom:904.959520pt;}
.y2_c00238{bottom:931.039493pt;}
.y3_c00238{bottom:931.039960pt;}
.y1_c00238{bottom:957.760253pt;}
.h10_c00238{height:27.812500pt;}
.he_c00238{height:33.375000pt;}
.hf_c00238{height:37.546875pt;}
.h1d_c00238{height:41.718750pt;}
.h11_c00238{height:44.143229pt;}
.h13_c00238{height:44.470052pt;}
.h17_c00238{height:56.002604pt;}
.h1a_c00238{height:64.664062pt;}
.h12_c00238{height:66.051107pt;}
.hb_c00238{height:66.083984pt;}
.h1c_c00238{height:67.392578pt;}
.h19_c00238{height:68.013021pt;}
.h5_c00238{height:68.046875pt;}
.h15_c00238{height:68.140625pt;}
.h7_c00238{height:68.701172pt;}
.h1_c00238{height:68.835938pt;}
.ha_c00238{height:69.337812pt;}
.h3_c00238{height:69.875000pt;}
.hc_c00238{height:70.009766pt;}
.h2_c00238{height:70.546875pt;}
.h6_c00238{height:70.628906pt;}
.h18_c00238{height:70.664062pt;}
.h1f_c00238{height:70.921875pt;}
.h4_c00238{height:71.218750pt;}
.hd_c00238{height:71.318359pt;}
.h8_c00238{height:71.972656pt;}
.h1b_c00238{height:72.473958pt;}
.h16_c00238{height:73.906250pt;}
.h9_c00238{height:73.935547pt;}
.h14_c00238{height:77.085938pt;}
.h1e_c00238{height:107.078125pt;}
.h0_c00238{height:1122.666667pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x2a_c00238{left:91.839867pt;}
.x1_c00238{left:125.759747pt;}
.x2b_c00238{left:126.719200pt;}
.x30_c00238{left:145.918920pt;}
.x2_c00238{left:147.839333pt;}
.x15_c00238{left:165.439480pt;}
.xf_c00238{left:177.919867pt;}
.x10_c00238{left:191.679200pt;}
.x16_c00238{left:193.278787pt;}
.x11_c00238{left:201.919867pt;}
.x2e_c00238{left:212.799333pt;}
.x12_c00238{left:215.679200pt;}
.x1a_c00238{left:225.599067pt;}
.x2f_c00238{left:226.558533pt;}
.x3_c00238{left:234.238787pt;}
.x2c_c00238{left:255.679733pt;}
.x4_c00238{left:258.238787pt;}
.x17_c00238{left:259.519067pt;}
.x2d_c00238{left:267.839333pt;}
.x25_c00238{left:270.399867pt;}
.x18_c00238{left:288.000000pt;}
.x26_c00238{left:293.759720pt;}
.x19_c00238{left:295.999453pt;}
.x5_c00238{left:307.199733pt;}
.x6_c00238{left:330.878920pt;}
.x35_c00238{left:333.118667pt;}
.x23_c00238{left:337.599587pt;}
.x1b_c00238{left:340.798787pt;}
.x36_c00238{left:359.679200pt;}
.x1c_c00238{left:372.159707pt;}
.x7_c00238{left:377.598680pt;}
.x1d_c00238{left:422.078693pt;}
.x31_c00238{left:427.199707pt;}
.x28_c00238{left:431.679200pt;}
.x8_c00238{left:444.159707pt;}
.x32_c00238{left:447.039587pt;}
.x29_c00238{left:454.079587pt;}
.x37_c00238{left:455.679200pt;}
.x1e_c00238{left:471.999067pt;}
.x38_c00238{left:486.719200pt;}
.x9_c00238{left:490.879307pt;}
.x1f_c00238{left:495.039587pt;}
.xa_c00238{left:503.359867pt;}
.x24_c00238{left:521.279333pt;}
.x39_c00238{left:524.479987pt;}
.x20_c00238{left:525.758787pt;}
.xb_c00238{left:553.918907pt;}
.x13_c00238{left:567.679733pt;}
.xc_c00238{left:576.959427pt;}
.x14_c00238{left:581.119587pt;}
.x21_c00238{left:589.759320pt;}
.xd_c00238{left:611.198693pt;}
.x3a_c00238{left:623.679200pt;}
.xe_c00238{left:625.599573pt;}
.x33_c00238{left:627.518520pt;}
.x34_c00238{left:642.559573pt;}
.x3b_c00238{left:645.758787pt;}
.x22_c00238{left:663.039587pt;}
.x27_c00238{left:672.319333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9037768e7ad41884816f855.woff2')format("woff");}.ff1_c00239{font-family:ff1_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:ff2_c00239;src:url('chunks/assets/font_4b0386073df858f0800fdbce.woff2')format("woff");}.ff2_c00239{font-family:ff2_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:ff3_c00239;src:url('chunks/assets/font_b8c04030565ca83c53a10af5.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_9e76e9b3b4a256d1d9bbeb54.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_b7e1a6e9d7c5e2d0856a7250.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.432129;font-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_c00239{transform:matrix(0.181624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181624,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m13_c00239{transform:matrix(0.195876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195876,0.000000,0.000000,0.250000,0,0);}
.m20_c00239{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1b_c00239{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00239{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00239{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m12_c00239{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m3_c00239{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m1d_c00239{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.me_c00239{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m19_c00239{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1c_c00239{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00239{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.mf_c00239{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m17_c00239{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.347938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347938,0.000000,0.000000,0.250000,0,0);}
.m10_c00239{transform:matrix(0.514045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514045,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:1.440780px;}
.ls16_c00239{letter-spacing:-18.863347px;}
.ls18_c00239{letter-spacing:-13.400550px;}
.lse_c00239{letter-spacing:-10.700100px;}
.ls24_c00239{letter-spacing:-8.914500px;}
.ls1f_c00239{letter-spacing:-8.625000px;}
.ls11_c00239{letter-spacing:-8.175038px;}
.lsb_c00239{letter-spacing:-7.496850px;}
.ls14_c00239{letter-spacing:-7.426125px;}
.ls15_c00239{letter-spacing:-7.295775px;}
.ls12_c00239{letter-spacing:-6.685875px;}
.ls22_c00239{letter-spacing:-6.000300px;}
.ls10_c00239{letter-spacing:-5.945625px;}
.ls13_c00239{letter-spacing:-5.196713px;}
.ls7_c00239{letter-spacing:-4.456463px;}
.ls5_c00239{letter-spacing:-3.717000px;}
.lsf_c00239{letter-spacing:-3.685500px;}
.ls21_c00239{letter-spacing:-3.028950px;}
.ls2_c00239{letter-spacing:-2.968875px;}
.ls17_c00239{letter-spacing:-2.566463px;}
.ls1b_c00239{letter-spacing:-2.407500px;}
.ls0_c00239{letter-spacing:-2.229413px;}
.ls20_c00239{letter-spacing:-1.772663px;}
.lsa_c00239{letter-spacing:-1.606800px;}
.ls3_c00239{letter-spacing:-1.489163px;}
.lsc_c00239{letter-spacing:-1.354050px;}
.ls19_c00239{letter-spacing:-0.865755px;}
.ls1c_c00239{letter-spacing:-0.840068px;}
.ls9_c00239{letter-spacing:-0.804173px;}
.lsd_c00239{letter-spacing:-0.749700px;}
.ls6_c00239{letter-spacing:-0.740250px;}
.ls1_c00239{letter-spacing:0.000000px;}
.ls1e_c00239{letter-spacing:1.035450px;}
.ls23_c00239{letter-spacing:2.229413px;}
.ls8_c00239{letter-spacing:3.396600px;}
.ls4_c00239{letter-spacing:5.183400px;}
.ls1d_c00239{letter-spacing:5.589000px;}
.ls1a_c00239{letter-spacing:14.691600px;}
.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;}
._6_c00239{margin-left:-15.253310px;}
._7_c00239{margin-left:-13.364380px;}
._5_c00239{margin-left:-7.517029px;}
._b_c00239{margin-left:-5.065319px;}
._19_c00239{margin-left:-4.043545px;}
._4_c00239{margin-left:-2.795774px;}
._e_c00239{margin-left:-1.284026px;}
._a_c00239{width:1.657153px;}
._9_c00239{width:3.598459px;}
._f_c00239{width:4.678121px;}
._8_c00239{width:6.166452px;}
._10_c00239{width:7.599197px;}
._3_c00239{width:9.134703px;}
._1_c00239{width:10.554224px;}
._12_c00239{width:12.173487px;}
._21_c00239{width:13.190922px;}
._18_c00239{width:14.369854px;}
._0_c00239{width:15.529173px;}
._24_c00239{width:16.977623px;}
._2_c00239{width:18.228456px;}
._15_c00239{width:19.748702px;}
._11_c00239{width:20.903474px;}
._13_c00239{width:22.947318px;}
._14_c00239{width:24.482929px;}
._17_c00239{width:25.948437px;}
._c_c00239{width:27.490764px;}
._22_c00239{width:29.413244px;}
._16_c00239{width:30.775338px;}
._23_c00239{width:32.135126px;}
._d_c00239{width:33.177167px;}
._1c_c00239{width:34.695659px;}
._1e_c00239{width:36.329856px;}
._1d_c00239{width:37.330695px;}
._20_c00239{width:38.667795px;}
._1a_c00239{width:41.583372px;}
._1b_c00239{width:45.273375px;}
._1f_c00239{width:47.681745px;}
.fc0_c00239{color:transparent;}
.fsd_c00239{font-size:60.000000px;}
.fs1_c00239{font-size:60.750000px;}
.fsb_c00239{font-size:66.750000px;}
.fs10_c00239{font-size:69.000000px;}
.fsc_c00239{font-size:72.750000px;}
.fs7_c00239{font-size:74.250000px;}
.fse_c00239{font-size:75.750000px;}
.fs4_c00239{font-size:76.500000px;}
.fs5_c00239{font-size:77.250000px;}
.fs12_c00239{font-size:78.000000px;}
.fs0_c00239{font-size:78.750000px;}
.fs2_c00239{font-size:79.500000px;}
.fs3_c00239{font-size:80.250000px;}
.fs6_c00239{font-size:81.000000px;}
.fs9_c00239{font-size:81.750000px;}
.fs8_c00239{font-size:82.500000px;}
.fs11_c00239{font-size:84.750000px;}
.fsf_c00239{font-size:87.750000px;}
.fsa_c00239{font-size:96.000000px;}
.y0_c00239{bottom:0.000000px;}
.y2c_c00239{bottom:179.999820px;}
.y2d_c00239{bottom:180.000600px;}
.y2a_c00239{bottom:209.879355px;}
.y2b_c00239{bottom:209.879535px;}
.y29_c00239{bottom:240.121380px;}
.y28_c00239{bottom:269.640900px;}
.y26_c00239{bottom:299.159745px;}
.y27_c00239{bottom:299.160435px;}
.y24_c00239{bottom:328.319340px;}
.y25_c00239{bottom:328.320900px;}
.y23_c00239{bottom:358.199070px;}
.y22_c00239{bottom:387.360210px;}
.y21_c00239{bottom:417.600135px;}
.y20_c00239{bottom:417.601155px;}
.y1e_c00239{bottom:447.480120px;}
.y1f_c00239{bottom:447.480885px;}
.y1d_c00239{bottom:477.359850px;}
.y1c_c00239{bottom:477.361500px;}
.y1b_c00239{bottom:507.241215px;}
.y1a_c00239{bottom:566.279985px;}
.y19_c00239{bottom:595.799520px;}
.y18_c00239{bottom:595.800405px;}
.y17_c00239{bottom:625.680135px;}
.y15_c00239{bottom:655.559940px;}
.y16_c00239{bottom:655.560750px;}
.y14_c00239{bottom:685.439670px;}
.y13_c00239{bottom:685.440555px;}
.y12_c00239{bottom:715.320285px;}
.y11_c00239{bottom:750.960570px;}
.y10_c00239{bottom:775.079820px;}
.yf_c00239{bottom:804.599355px;}
.yd_c00239{bottom:864.360150px;}
.ye_c00239{bottom:864.360900px;}
.yc_c00239{bottom:894.239865px;}
.yb_c00239{bottom:894.240855px;}
.ya_c00239{bottom:924.120570px;}
.y9_c00239{bottom:953.640105px;}
.y8_c00239{bottom:983.520720px;}
.y7_c00239{bottom:983.520765px;}
.y6_c00239{bottom:1013.760675px;}
.y5_c00239{bottom:1013.760870px;}
.y4_c00239{bottom:1043.280390px;}
.y3_c00239{bottom:1073.879520px;}
.y2_c00239{bottom:1102.319820px;}
.y1_c00239{bottom:1131.839535px;}
.h11_c00239{height:59.296875px;}
.h2_c00239{height:59.622803px;}
.he_c00239{height:69.618164px;}
.h16_c00239{height:71.964844px;}
.h8_c00239{height:72.872314px;}
.hf_c00239{height:75.875977px;}
.h13_c00239{height:76.341797px;}
.h1a_c00239{height:76.552734px;}
.h5_c00239{height:77.097656px;}
.h1_c00239{height:77.288818px;}
.h6_c00239{height:77.853516px;}
.h17_c00239{height:78.024902px;}
.hd_c00239{height:78.729598px;}
.h4_c00239{height:78.760986px;}
.h10_c00239{height:79.365234px;}
.h9_c00239{height:79.497070px;}
.h7_c00239{height:80.050781px;}
.h3_c00239{height:80.121094px;}
.hb_c00239{height:80.233154px;}
.h12_c00239{height:80.876953px;}
.ha_c00239{height:80.969238px;}
.h14_c00239{height:81.632812px;}
.h18_c00239{height:83.177490px;}
.h19_c00239{height:86.121826px;}
.h15_c00239{height:86.721680px;}
.hc_c00239{height:100.125000px;}
.h0_c00239{height:1263.000000px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:135.718500px;}
.x2b_c00239{left:137.160870px;}
.x16_c00239{left:149.759100px;}
.x7_c00239{left:184.679100px;}
.x2_c00239{left:190.438665px;}
.x3_c00239{left:206.998950px;}
.x14_c00239{left:216.718500px;}
.x31_c00239{left:225.358635px;}
.x15_c00239{left:231.479235px;}
.x27_c00239{left:240.119385px;}
.x35_c00239{left:244.799535px;}
.x1d_c00239{left:245.878950px;}
.x32_c00239{left:248.039385px;}
.x10_c00239{left:252.719535px;}
.x11_c00239{left:267.478635px;}
.x1e_c00239{left:273.958350px;}
.x4_c00239{left:309.959385px;}
.x8_c00239{left:337.679700px;}
.x1f_c00239{left:344.159385px;}
.x5_c00239{left:353.878950px;}
.x20_c00239{left:358.918350px;}
.x33_c00239{left:375.119385px;}
.x2e_c00239{left:378.718530px;}
.x34_c00239{left:390.239220px;}
.xe_c00239{left:396.359850px;}
.x36_c00239{left:397.798515px;}
.x9_c00239{left:401.399235px;}
.x28_c00239{left:404.279850px;}
.x17_c00239{left:412.199850px;}
.x29_c00239{left:421.199385px;}
.x18_c00239{left:427.679070px;}
.xf_c00239{left:449.278800px;}
.x21_c00239{left:468.358665px;}
.xa_c00239{left:482.399235px;}
.xb_c00239{left:501.479235px;}
.x22_c00239{left:509.039985px;}
.x23_c00239{left:572.039385px;}
.xc_c00239{left:578.159820px;}
.x39_c00239{left:579.959385px;}
.x1b_c00239{left:581.038920px;}
.x1c_c00239{left:596.519670px;}
.x3a_c00239{left:599.398635px;}
.x2c_c00239{left:604.439670px;}
.x2d_c00239{left:619.559685px;}
.x3b_c00239{left:635.038920px;}
.x3c_c00239{left:648.718545px;}
.x2f_c00239{left:660.239220px;}
.x24_c00239{left:662.759085px;}
.x30_c00239{left:676.079355px;}
.xd_c00239{left:686.878320px;}
.x25_c00239{left:688.318770px;}
.x12_c00239{left:690.838530px;}
.x19_c00239{left:694.798560px;}
.x1a_c00239{left:703.079355px;}
.x13_c00239{left:705.599070px;}
.x3d_c00239{left:740.878320px;}
.x37_c00239{left:747.359850px;}
.x3e_c00239{left:754.559685px;}
.x26_c00239{left:758.878920px;}
.x38_c00239{left:763.559100px;}
.x6_c00239{left:766.078770px;}
.x2a_c00239{left:767.878320px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:1.280693pt;}
.ls16_c00239{letter-spacing:-16.767420pt;}
.ls18_c00239{letter-spacing:-11.911600pt;}
.lse_c00239{letter-spacing:-9.511200pt;}
.ls24_c00239{letter-spacing:-7.924000pt;}
.ls1f_c00239{letter-spacing:-7.666667pt;}
.ls11_c00239{letter-spacing:-7.266700pt;}
.lsb_c00239{letter-spacing:-6.663867pt;}
.ls14_c00239{letter-spacing:-6.601000pt;}
.ls15_c00239{letter-spacing:-6.485133pt;}
.ls12_c00239{letter-spacing:-5.943000pt;}
.ls22_c00239{letter-spacing:-5.333600pt;}
.ls10_c00239{letter-spacing:-5.285000pt;}
.ls13_c00239{letter-spacing:-4.619300pt;}
.ls7_c00239{letter-spacing:-3.961300pt;}
.ls5_c00239{letter-spacing:-3.304000pt;}
.lsf_c00239{letter-spacing:-3.276000pt;}
.ls21_c00239{letter-spacing:-2.692400pt;}
.ls2_c00239{letter-spacing:-2.639000pt;}
.ls17_c00239{letter-spacing:-2.281300pt;}
.ls1b_c00239{letter-spacing:-2.140000pt;}
.ls0_c00239{letter-spacing:-1.981700pt;}
.ls20_c00239{letter-spacing:-1.575700pt;}
.lsa_c00239{letter-spacing:-1.428267pt;}
.ls3_c00239{letter-spacing:-1.323700pt;}
.lsc_c00239{letter-spacing:-1.203600pt;}
.ls19_c00239{letter-spacing:-0.769560pt;}
.ls1c_c00239{letter-spacing:-0.746727pt;}
.ls9_c00239{letter-spacing:-0.714820pt;}
.lsd_c00239{letter-spacing:-0.666400pt;}
.ls6_c00239{letter-spacing:-0.658000pt;}
.ls1_c00239{letter-spacing:0.000000pt;}
.ls1e_c00239{letter-spacing:0.920400pt;}
.ls23_c00239{letter-spacing:1.981700pt;}
.ls8_c00239{letter-spacing:3.019200pt;}
.ls4_c00239{letter-spacing:4.607467pt;}
.ls1d_c00239{letter-spacing:4.968000pt;}
.ls1a_c00239{letter-spacing:13.059200pt;}
.ws0_c00239{word-spacing:0.000000pt;}
._6_c00239{margin-left:-13.558498pt;}
._7_c00239{margin-left:-11.879449pt;}
._5_c00239{margin-left:-6.681804pt;}
._b_c00239{margin-left:-4.502506pt;}
._19_c00239{margin-left:-3.594262pt;}
._4_c00239{margin-left:-2.485132pt;}
._e_c00239{margin-left:-1.141357pt;}
._a_c00239{width:1.473025pt;}
._9_c00239{width:3.198630pt;}
._f_c00239{width:4.158330pt;}
._8_c00239{width:5.481291pt;}
._10_c00239{width:6.754842pt;}
._3_c00239{width:8.119736pt;}
._1_c00239{width:9.381532pt;}
._12_c00239{width:10.820877pt;}
._21_c00239{width:11.725264pt;}
._18_c00239{width:12.773204pt;}
._0_c00239{width:13.803709pt;}
._24_c00239{width:15.091221pt;}
._2_c00239{width:16.203072pt;}
._15_c00239{width:17.554402pt;}
._11_c00239{width:18.580866pt;}
._13_c00239{width:20.397616pt;}
._14_c00239{width:21.762604pt;}
._17_c00239{width:23.065277pt;}
._c_c00239{width:24.436235pt;}
._22_c00239{width:26.145106pt;}
._16_c00239{width:27.355856pt;}
._23_c00239{width:28.564557pt;}
._d_c00239{width:29.490815pt;}
._1c_c00239{width:30.840586pt;}
._1e_c00239{width:32.293206pt;}
._1d_c00239{width:33.182840pt;}
._20_c00239{width:34.371374pt;}
._1a_c00239{width:36.962997pt;}
._1b_c00239{width:40.243000pt;}
._1f_c00239{width:42.383774pt;}
.fsd_c00239{font-size:53.333333pt;}
.fs1_c00239{font-size:54.000000pt;}
.fsb_c00239{font-size:59.333333pt;}
.fs10_c00239{font-size:61.333333pt;}
.fsc_c00239{font-size:64.666667pt;}
.fs7_c00239{font-size:66.000000pt;}
.fse_c00239{font-size:67.333333pt;}
.fs4_c00239{font-size:68.000000pt;}
.fs5_c00239{font-size:68.666667pt;}
.fs12_c00239{font-size:69.333333pt;}
.fs0_c00239{font-size:70.000000pt;}
.fs2_c00239{font-size:70.666667pt;}
.fs3_c00239{font-size:71.333333pt;}
.fs6_c00239{font-size:72.000000pt;}
.fs9_c00239{font-size:72.666667pt;}
.fs8_c00239{font-size:73.333333pt;}
.fs11_c00239{font-size:75.333333pt;}
.fsf_c00239{font-size:78.000000pt;}
.fsa_c00239{font-size:85.333333pt;}
.y0_c00239{bottom:0.000000pt;}
.y2c_c00239{bottom:159.999840pt;}
.y2d_c00239{bottom:160.000533pt;}
.y2a_c00239{bottom:186.559427pt;}
.y2b_c00239{bottom:186.559587pt;}
.y29_c00239{bottom:213.441227pt;}
.y28_c00239{bottom:239.680800pt;}
.y26_c00239{bottom:265.919773pt;}
.y27_c00239{bottom:265.920387pt;}
.y24_c00239{bottom:291.839413pt;}
.y25_c00239{bottom:291.840800pt;}
.y23_c00239{bottom:318.399173pt;}
.y22_c00239{bottom:344.320187pt;}
.y21_c00239{bottom:371.200120pt;}
.y20_c00239{bottom:371.201027pt;}
.y1e_c00239{bottom:397.760107pt;}
.y1f_c00239{bottom:397.760787pt;}
.y1d_c00239{bottom:424.319867pt;}
.y1c_c00239{bottom:424.321333pt;}
.y1b_c00239{bottom:450.881080pt;}
.y1a_c00239{bottom:503.359987pt;}
.y19_c00239{bottom:529.599573pt;}
.y18_c00239{bottom:529.600360pt;}
.y17_c00239{bottom:556.160120pt;}
.y15_c00239{bottom:582.719947pt;}
.y16_c00239{bottom:582.720667pt;}
.y14_c00239{bottom:609.279707pt;}
.y13_c00239{bottom:609.280493pt;}
.y12_c00239{bottom:635.840253pt;}
.y11_c00239{bottom:667.520507pt;}
.y10_c00239{bottom:688.959840pt;}
.yf_c00239{bottom:715.199427pt;}
.yd_c00239{bottom:768.320133pt;}
.ye_c00239{bottom:768.320800pt;}
.yc_c00239{bottom:794.879880pt;}
.yb_c00239{bottom:794.880760pt;}
.ya_c00239{bottom:821.440507pt;}
.y9_c00239{bottom:847.680093pt;}
.y8_c00239{bottom:874.240640pt;}
.y7_c00239{bottom:874.240680pt;}
.y6_c00239{bottom:901.120600pt;}
.y5_c00239{bottom:901.120773pt;}
.y4_c00239{bottom:927.360347pt;}
.y3_c00239{bottom:954.559573pt;}
.y2_c00239{bottom:979.839840pt;}
.y1_c00239{bottom:1006.079587pt;}
.h11_c00239{height:52.708333pt;}
.h2_c00239{height:52.998047pt;}
.he_c00239{height:61.882812pt;}
.h16_c00239{height:63.968750pt;}
.h8_c00239{height:64.775391pt;}
.hf_c00239{height:67.445312pt;}
.h13_c00239{height:67.859375pt;}
.h1a_c00239{height:68.046875pt;}
.h5_c00239{height:68.531250pt;}
.h1_c00239{height:68.701172pt;}
.h6_c00239{height:69.203125pt;}
.h17_c00239{height:69.355469pt;}
.hd_c00239{height:69.981865pt;}
.h4_c00239{height:70.009766pt;}
.h10_c00239{height:70.546875pt;}
.h9_c00239{height:70.664062pt;}
.h7_c00239{height:71.156250pt;}
.h3_c00239{height:71.218750pt;}
.hb_c00239{height:71.318359pt;}
.h12_c00239{height:71.890625pt;}
.ha_c00239{height:71.972656pt;}
.h14_c00239{height:72.562500pt;}
.h18_c00239{height:73.935547pt;}
.h19_c00239{height:76.552734pt;}
.h15_c00239{height:77.085938pt;}
.hc_c00239{height:89.000000pt;}
.h0_c00239{height:1122.666667pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:120.638667pt;}
.x2b_c00239{left:121.920773pt;}
.x16_c00239{left:133.119200pt;}
.x7_c00239{left:164.159200pt;}
.x2_c00239{left:169.278813pt;}
.x3_c00239{left:183.999067pt;}
.x14_c00239{left:192.638667pt;}
.x31_c00239{left:200.318787pt;}
.x15_c00239{left:205.759320pt;}
.x27_c00239{left:213.439453pt;}
.x35_c00239{left:217.599587pt;}
.x1d_c00239{left:218.559067pt;}
.x32_c00239{left:220.479453pt;}
.x10_c00239{left:224.639587pt;}
.x11_c00239{left:237.758787pt;}
.x1e_c00239{left:243.518533pt;}
.x4_c00239{left:275.519453pt;}
.x8_c00239{left:300.159733pt;}
.x1f_c00239{left:305.919453pt;}
.x5_c00239{left:314.559067pt;}
.x20_c00239{left:319.038533pt;}
.x33_c00239{left:333.439453pt;}
.x2e_c00239{left:336.638693pt;}
.x34_c00239{left:346.879307pt;}
.xe_c00239{left:352.319867pt;}
.x36_c00239{left:353.598680pt;}
.x9_c00239{left:356.799320pt;}
.x28_c00239{left:359.359867pt;}
.x17_c00239{left:366.399867pt;}
.x29_c00239{left:374.399453pt;}
.x18_c00239{left:380.159173pt;}
.xf_c00239{left:399.358933pt;}
.x21_c00239{left:416.318813pt;}
.xa_c00239{left:428.799320pt;}
.xb_c00239{left:445.759320pt;}
.x22_c00239{left:452.479987pt;}
.x23_c00239{left:508.479453pt;}
.xc_c00239{left:513.919840pt;}
.x39_c00239{left:515.519453pt;}
.x1b_c00239{left:516.479040pt;}
.x1c_c00239{left:530.239707pt;}
.x3a_c00239{left:532.798787pt;}
.x2c_c00239{left:537.279707pt;}
.x2d_c00239{left:550.719720pt;}
.x3b_c00239{left:564.479040pt;}
.x3c_c00239{left:576.638707pt;}
.x2f_c00239{left:586.879307pt;}
.x24_c00239{left:589.119187pt;}
.x30_c00239{left:600.959427pt;}
.xd_c00239{left:610.558507pt;}
.x25_c00239{left:611.838907pt;}
.x12_c00239{left:614.078693pt;}
.x19_c00239{left:617.598720pt;}
.x1a_c00239{left:624.959427pt;}
.x13_c00239{left:627.199173pt;}
.x3d_c00239{left:658.558507pt;}
.x37_c00239{left:664.319867pt;}
.x3e_c00239{left:670.719720pt;}
.x26_c00239{left:674.559040pt;}
.x38_c00239{left:678.719200pt;}
.x6_c00239{left:680.958907pt;}
.x2a_c00239{left:682.558507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d479f55cf9e1490e577fe0f0.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_0fcdaa129d561de44584d1c9.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_5b6c5067e6ff1d7ff7fecabf.woff2')format("woff");}.ff4_c00240{font-family:ff4_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;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_ad918e706f55996e180a8b6c.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00240;src:url('chunks/assets/font_7f774ddde9d63ab4e633b2e9.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00240{transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m22_c00240{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m17_c00240{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m15_c00240{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{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);}
.m24_c00240{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00240{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00240{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m23_c00240{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m21_c00240{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.mf_c00240{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m10_c00240{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00240{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m5_c00240{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1b_c00240{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m14_c00240{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.mb_c00240{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m20_c00240{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.md_c00240{transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);}
.mc_c00240{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.me_c00240{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{transform:matrix(0.318452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318452,0.000000,0.000000,0.250000,0,0);}
.m1d_c00240{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m19_c00240{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_c00240{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);}
.m1a_c00240{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00240{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00240{transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls18_c00240{letter-spacing:-30.541800px;}
.ls1d_c00240{letter-spacing:-20.658225px;}
.ls1b_c00240{letter-spacing:-17.968650px;}
.ls1a_c00240{letter-spacing:-14.539500px;}
.ls17_c00240{letter-spacing:-14.371650px;}
.lsb_c00240{letter-spacing:-12.226305px;}
.ls1f_c00240{letter-spacing:-11.372213px;}
.ls27_c00240{letter-spacing:-9.850050px;}
.ls15_c00240{letter-spacing:-8.175038px;}
.ls1c_c00240{letter-spacing:-8.044208px;}
.ls21_c00240{letter-spacing:-7.789163px;}
.ls20_c00240{letter-spacing:-7.567575px;}
.ls11_c00240{letter-spacing:-7.520700px;}
.ls14_c00240{letter-spacing:-7.426125px;}
.ls10_c00240{letter-spacing:-6.685875px;}
.ls36_c00240{letter-spacing:-6.196500px;}
.lsc_c00240{letter-spacing:-5.945625px;}
.lsd_c00240{letter-spacing:-5.676300px;}
.ls13_c00240{letter-spacing:-5.623800px;}
.ls30_c00240{letter-spacing:-5.250150px;}
.lsf_c00240{letter-spacing:-5.196713px;}
.ls37_c00240{letter-spacing:-4.819500px;}
.ls25_c00240{letter-spacing:-4.456463px;}
.ls26_c00240{letter-spacing:-4.412948px;}
.ls38_c00240{letter-spacing:-4.131000px;}
.ls8_c00240{letter-spacing:-3.717000px;}
.ls12_c00240{letter-spacing:-3.646125px;}
.ls39_c00240{letter-spacing:-3.441825px;}
.ls6_c00240{letter-spacing:-2.968875px;}
.ls33_c00240{letter-spacing:-2.754000px;}
.ls7_c00240{letter-spacing:-2.229413px;}
.ls32_c00240{letter-spacing:-2.064825px;}
.ls3e_c00240{letter-spacing:-1.497600px;}
.ls9_c00240{letter-spacing:-1.489163px;}
.ls35_c00240{letter-spacing:-1.377000px;}
.ls1e_c00240{letter-spacing:-1.256198px;}
.ls22_c00240{letter-spacing:-0.866250px;}
.ls3a_c00240{letter-spacing:-0.796500px;}
.lsa_c00240{letter-spacing:-0.740250px;}
.ls34_c00240{letter-spacing:-0.687825px;}
.ls2e_c00240{letter-spacing:-0.652500px;}
.ls2d_c00240{letter-spacing:-0.517500px;}
.lse_c00240{letter-spacing:0.000000px;}
.ls2f_c00240{letter-spacing:0.546000px;}
.ls3f_c00240{letter-spacing:0.740250px;}
.ls31_c00240{letter-spacing:1.443750px;}
.ls3d_c00240{letter-spacing:1.489163px;}
.ls16_c00240{letter-spacing:2.821328px;}
.ls28_c00240{letter-spacing:2.942730px;}
.ls3_c00240{letter-spacing:3.857625px;}
.ls3c_c00240{letter-spacing:4.831050px;}
.ls29_c00240{letter-spacing:5.784750px;}
.ls2a_c00240{letter-spacing:5.894797px;}
.ls2c_c00240{letter-spacing:6.000000px;}
.ls2_c00240{letter-spacing:6.750000px;}
.ls0_c00240{letter-spacing:8.677125px;}
.ls1_c00240{letter-spacing:9.642712px;}
.ls5_c00240{letter-spacing:12.399750px;}
.ls2b_c00240{letter-spacing:13.499662px;}
.ls4_c00240{letter-spacing:13.776750px;}
.ls24_c00240{letter-spacing:19.900125px;}
.ls23_c00240{letter-spacing:20.366745px;}
.ls3b_c00240{letter-spacing:20.662425px;}
.ls19_c00240{letter-spacing:26.250000px;}
.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;}
._1b_c00240{margin-left:-82.336280px;}
._1a_c00240{margin-left:-24.687720px;}
._19_c00240{margin-left:-20.779381px;}
._1c_c00240{margin-left:-6.921605px;}
._f_c00240{margin-left:-5.227588px;}
._10_c00240{margin-left:-3.787310px;}
._d_c00240{margin-left:-2.656951px;}
._c_c00240{margin-left:-1.169081px;}
._3_c00240{width:1.435434px;}
._8_c00240{width:2.701392px;}
._1_c00240{width:3.938644px;}
._4_c00240{width:5.349012px;}
._2_c00240{width:7.311982px;}
._5_c00240{width:8.785023px;}
._0_c00240{width:10.198660px;}
._6_c00240{width:11.425332px;}
._1d_c00240{width:12.443748px;}
._7_c00240{width:13.493946px;}
._9_c00240{width:15.358895px;}
._1e_c00240{width:16.743023px;}
._e_c00240{width:18.807803px;}
._a_c00240{width:20.349416px;}
._b_c00240{width:21.482851px;}
._14_c00240{width:22.519320px;}
._11_c00240{width:24.478399px;}
._13_c00240{width:25.639425px;}
._15_c00240{width:26.687393px;}
._12_c00240{width:29.914302px;}
._17_c00240{width:79.457683px;}
._18_c00240{width:188.605144px;}
._16_c00240{width:664.147624px;}
.fc0_c00240{color:transparent;}
.fs11_c00240{font-size:15.000000px;}
.fs10_c00240{font-size:30.000000px;}
.fse_c00240{font-size:33.750000px;}
.fs13_c00240{font-size:37.500000px;}
.fsf_c00240{font-size:42.750000px;}
.fs8_c00240{font-size:44.250000px;}
.fs12_c00240{font-size:48.750000px;}
.fs6_c00240{font-size:60.000000px;}
.fsd_c00240{font-size:63.000000px;}
.fs14_c00240{font-size:67.500000px;}
.fs9_c00240{font-size:69.750000px;}
.fsb_c00240{font-size:70.500000px;}
.fsa_c00240{font-size:71.250000px;}
.fs3_c00240{font-size:78.000000px;}
.fs0_c00240{font-size:78.750000px;}
.fs1_c00240{font-size:79.500000px;}
.fs2_c00240{font-size:80.250000px;}
.fs7_c00240{font-size:81.000000px;}
.fs5_c00240{font-size:81.750000px;}
.fsc_c00240{font-size:82.500000px;}
.fs4_c00240{font-size:84.750000px;}
.y0_c00240{bottom:0.000000px;}
.y2c_c00240{bottom:183.238785px;}
.y2b_c00240{bottom:183.238815px;}
.y2a_c00240{bottom:212.760150px;}
.y29_c00240{bottom:212.760315px;}
.y28_c00240{bottom:242.279850px;}
.y27_c00240{bottom:242.280000px;}
.y25_c00240{bottom:271.799010px;}
.y26_c00240{bottom:271.799535px;}
.y24_c00240{bottom:301.318545px;}
.y23_c00240{bottom:330.479685px;}
.y22_c00240{bottom:330.479775px;}
.y21_c00240{bottom:360.719700px;}
.y20_c00240{bottom:390.239220px;}
.y1f_c00240{bottom:420.840135px;}
.y1e_c00240{bottom:429.119385px;}
.y1d_c00240{bottom:450.359850px;}
.y1c_c00240{bottom:509.759370px;}
.y1b_c00240{bottom:539.639100px;}
.y1a_c00240{bottom:539.640570px;}
.y19_c00240{bottom:569.160090px;}
.y18_c00240{bottom:599.039820px;}
.y17_c00240{bottom:628.559355px;}
.y16_c00240{bottom:658.439070px;}
.y15_c00240{bottom:688.318800px;}
.y14_c00240{bottom:717.840135px;}
.y13_c00240{bottom:752.039985px;}
.y12_c00240{bottom:807.119385px;}
.y11_c00240{bottom:837.359295px;}
.y10_c00240{bottom:867.239025px;}
.yf_c00240{bottom:897.118740px;}
.ye_c00240{bottom:897.119640px;}
.yd_c00240{bottom:926.999355px;}
.yc_c00240{bottom:927.000255px;}
.yb_c00240{bottom:956.879970px;}
.ya_c00240{bottom:956.880255px;}
.y9_c00240{bottom:986.399775px;}
.y8_c00240{bottom:986.399970px;}
.y7_c00240{bottom:1015.919490px;}
.y6_c00240{bottom:1015.919685px;}
.y5_c00240{bottom:1045.439205px;}
.y4_c00240{bottom:1045.440105px;}
.y3_c00240{bottom:1075.319820px;}
.y2_c00240{bottom:1075.319955px;}
.y1_c00240{bottom:1135.079400px;}
.h16_c00240{height:14.824219px;}
.h15_c00240{height:31.289062px;}
.h13_c00240{height:33.354492px;}
.h18_c00240{height:37.060547px;}
.h14_c00240{height:42.249023px;}
.hb_c00240{height:43.731445px;}
.h17_c00240{height:48.178711px;}
.ha_c00240{height:59.296875px;}
.h8_c00240{height:60.468750px;}
.h12_c00240{height:65.707031px;}
.h19_c00240{height:68.027344px;}
.hc_c00240{height:72.747070px;}
.h10_c00240{height:73.529297px;}
.hd_c00240{height:74.311523px;}
.h5_c00240{height:76.552734px;}
.h1_c00240{height:77.288818px;}
.h3_c00240{height:78.024902px;}
.h2_c00240{height:78.568359px;}
.h4_c00240{height:78.760986px;}
.hf_c00240{height:79.365234px;}
.h9_c00240{height:80.050781px;}
.h7_c00240{height:80.791992px;}
.he_c00240{height:80.876953px;}
.h11_c00240{height:80.969238px;}
.h6_c00240{height:83.177490px;}
.h0_c00240{height:1263.000000px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x14_c00240{left:138.959010px;}
.x1_c00240{left:140.039400px;}
.xe_c00240{left:165.958350px;}
.x24_c00240{left:168.118815px;}
.x27_c00240{left:174.239250px;}
.x8_c00240{left:191.519685px;}
.xf_c00240{left:198.358635px;}
.x28_c00240{left:201.239250px;}
.x9_c00240{left:206.278800px;}
.x15_c00240{left:222.118785px;}
.x3b_c00240{left:229.679700px;}
.x3c_c00240{left:242.639100px;}
.x16_c00240{left:287.998950px;}
.x17_c00240{left:301.319250px;}
.x18_c00240{left:327.599100px;}
.x12_c00240{left:342.719100px;}
.x13_c00240{left:362.519100px;}
.x38_c00240{left:364.679700px;}
.x39_c00240{left:379.799535px;}
.x19_c00240{left:387.358665px;}
.x1a_c00240{left:407.158770px;}
.x10_c00240{left:458.279850px;}
.x1b_c00240{left:460.079400px;}
.x32_c00240{left:469.078770px;}
.x11_c00240{left:471.598530px;}
.x1c_c00240{left:486.359250px;}
.x33_c00240{left:493.918350px;}
.x1d_c00240{left:509.039985px;}
.x34_c00240{left:566.279850px;}
.x29_c00240{left:573.479685px;}
.xa_c00240{left:574.918350px;}
.x22_c00240{left:578.159820px;}
.x1e_c00240{left:586.439250px;}
.x2a_c00240{left:594.359250px;}
.xb_c00240{left:595.799520px;}
.x2b_c00240{left:612.719100px;}
.x3a_c00240{left:618.119385px;}
.x6_c00240{left:624.239820px;}
.x23_c00240{left:626.398635px;}
.x1f_c00240{left:629.638545px;}
.x7_c00240{left:639.359850px;}
.x25_c00240{left:648.359250px;}
.x36_c00240{left:652.678530px;}
.x2c_c00240{left:655.918350px;}
.x2d_c00240{left:662.399820px;}
.x26_c00240{left:665.639700px;}
.x35_c00240{left:674.639100px;}
.x2_c00240{left:676.438620px;}
.x20_c00240{left:686.159820px;}
.x2e_c00240{left:691.919535px;}
.x4_c00240{left:694.439250px;}
.x3_c00240{left:696.958920px;}
.x37_c00240{left:713.159820px;}
.x31_c00240{left:715.318770px;}
.x2f_c00240{left:716.759085px;}
.x5_c00240{left:727.198785px;}
.x21_c00240{left:729.718545px;}
.xc_c00240{left:737.999355px;}
.x30_c00240{left:746.639700px;}
.xd_c00240{left:771.120030px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls18_c00240{letter-spacing:-27.148267pt;}
.ls1d_c00240{letter-spacing:-18.362867pt;}
.ls1b_c00240{letter-spacing:-15.972133pt;}
.ls1a_c00240{letter-spacing:-12.924000pt;}
.ls17_c00240{letter-spacing:-12.774800pt;}
.lsb_c00240{letter-spacing:-10.867827pt;}
.ls1f_c00240{letter-spacing:-10.108633pt;}
.ls27_c00240{letter-spacing:-8.755600pt;}
.ls15_c00240{letter-spacing:-7.266700pt;}
.ls1c_c00240{letter-spacing:-7.150407pt;}
.ls21_c00240{letter-spacing:-6.923700pt;}
.ls20_c00240{letter-spacing:-6.726733pt;}
.ls11_c00240{letter-spacing:-6.685067pt;}
.ls14_c00240{letter-spacing:-6.601000pt;}
.ls10_c00240{letter-spacing:-5.943000pt;}
.ls36_c00240{letter-spacing:-5.508000pt;}
.lsc_c00240{letter-spacing:-5.285000pt;}
.lsd_c00240{letter-spacing:-5.045600pt;}
.ls13_c00240{letter-spacing:-4.998933pt;}
.ls30_c00240{letter-spacing:-4.666800pt;}
.lsf_c00240{letter-spacing:-4.619300pt;}
.ls37_c00240{letter-spacing:-4.284000pt;}
.ls25_c00240{letter-spacing:-3.961300pt;}
.ls26_c00240{letter-spacing:-3.922620pt;}
.ls38_c00240{letter-spacing:-3.672000pt;}
.ls8_c00240{letter-spacing:-3.304000pt;}
.ls12_c00240{letter-spacing:-3.241000pt;}
.ls39_c00240{letter-spacing:-3.059400pt;}
.ls6_c00240{letter-spacing:-2.639000pt;}
.ls33_c00240{letter-spacing:-2.448000pt;}
.ls7_c00240{letter-spacing:-1.981700pt;}
.ls32_c00240{letter-spacing:-1.835400pt;}
.ls3e_c00240{letter-spacing:-1.331200pt;}
.ls9_c00240{letter-spacing:-1.323700pt;}
.ls35_c00240{letter-spacing:-1.224000pt;}
.ls1e_c00240{letter-spacing:-1.116620pt;}
.ls22_c00240{letter-spacing:-0.770000pt;}
.ls3a_c00240{letter-spacing:-0.708000pt;}
.lsa_c00240{letter-spacing:-0.658000pt;}
.ls34_c00240{letter-spacing:-0.611400pt;}
.ls2e_c00240{letter-spacing:-0.580000pt;}
.ls2d_c00240{letter-spacing:-0.460000pt;}
.lse_c00240{letter-spacing:0.000000pt;}
.ls2f_c00240{letter-spacing:0.485333pt;}
.ls3f_c00240{letter-spacing:0.658000pt;}
.ls31_c00240{letter-spacing:1.283333pt;}
.ls3d_c00240{letter-spacing:1.323700pt;}
.ls16_c00240{letter-spacing:2.507847pt;}
.ls28_c00240{letter-spacing:2.615760pt;}
.ls3_c00240{letter-spacing:3.429000pt;}
.ls3c_c00240{letter-spacing:4.294267pt;}
.ls29_c00240{letter-spacing:5.142000pt;}
.ls2a_c00240{letter-spacing:5.239820pt;}
.ls2c_c00240{letter-spacing:5.333333pt;}
.ls2_c00240{letter-spacing:6.000000pt;}
.ls0_c00240{letter-spacing:7.713000pt;}
.ls1_c00240{letter-spacing:8.571300pt;}
.ls5_c00240{letter-spacing:11.022000pt;}
.ls2b_c00240{letter-spacing:11.999700pt;}
.ls4_c00240{letter-spacing:12.246000pt;}
.ls24_c00240{letter-spacing:17.689000pt;}
.ls23_c00240{letter-spacing:18.103773pt;}
.ls3b_c00240{letter-spacing:18.366600pt;}
.ls19_c00240{letter-spacing:23.333333pt;}
.ws0_c00240{word-spacing:0.000000pt;}
._1b_c00240{margin-left:-73.187804pt;}
._1a_c00240{margin-left:-21.944640pt;}
._19_c00240{margin-left:-18.470561pt;}
._1c_c00240{margin-left:-6.152538pt;}
._f_c00240{margin-left:-4.646745pt;}
._10_c00240{margin-left:-3.366498pt;}
._d_c00240{margin-left:-2.361734pt;}
._c_c00240{margin-left:-1.039183pt;}
._3_c00240{width:1.275942pt;}
._8_c00240{width:2.401238pt;}
._1_c00240{width:3.501017pt;}
._4_c00240{width:4.754677pt;}
._2_c00240{width:6.499540pt;}
._5_c00240{width:7.808909pt;}
._0_c00240{width:9.065475pt;}
._6_c00240{width:10.155851pt;}
._1d_c00240{width:11.061109pt;}
._7_c00240{width:11.994619pt;}
._9_c00240{width:13.652351pt;}
._1e_c00240{width:14.882687pt;}
._e_c00240{width:16.718047pt;}
._a_c00240{width:18.088370pt;}
._b_c00240{width:19.095868pt;}
._14_c00240{width:20.017174pt;}
._11_c00240{width:21.758577pt;}
._13_c00240{width:22.790600pt;}
._15_c00240{width:23.722127pt;}
._12_c00240{width:26.590491pt;}
._17_c00240{width:70.629051pt;}
._18_c00240{width:167.649017pt;}
._16_c00240{width:590.353443pt;}
.fs11_c00240{font-size:13.333333pt;}
.fs10_c00240{font-size:26.666667pt;}
.fse_c00240{font-size:30.000000pt;}
.fs13_c00240{font-size:33.333333pt;}
.fsf_c00240{font-size:38.000000pt;}
.fs8_c00240{font-size:39.333333pt;}
.fs12_c00240{font-size:43.333333pt;}
.fs6_c00240{font-size:53.333333pt;}
.fsd_c00240{font-size:56.000000pt;}
.fs14_c00240{font-size:60.000000pt;}
.fs9_c00240{font-size:62.000000pt;}
.fsb_c00240{font-size:62.666667pt;}
.fsa_c00240{font-size:63.333333pt;}
.fs3_c00240{font-size:69.333333pt;}
.fs0_c00240{font-size:70.000000pt;}
.fs1_c00240{font-size:70.666667pt;}
.fs2_c00240{font-size:71.333333pt;}
.fs7_c00240{font-size:72.000000pt;}
.fs5_c00240{font-size:72.666667pt;}
.fsc_c00240{font-size:73.333333pt;}
.fs4_c00240{font-size:75.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.y2c_c00240{bottom:162.878920pt;}
.y2b_c00240{bottom:162.878947pt;}
.y2a_c00240{bottom:189.120133pt;}
.y29_c00240{bottom:189.120280pt;}
.y28_c00240{bottom:215.359867pt;}
.y27_c00240{bottom:215.360000pt;}
.y25_c00240{bottom:241.599120pt;}
.y26_c00240{bottom:241.599587pt;}
.y24_c00240{bottom:267.838707pt;}
.y23_c00240{bottom:293.759720pt;}
.y22_c00240{bottom:293.759800pt;}
.y21_c00240{bottom:320.639733pt;}
.y20_c00240{bottom:346.879307pt;}
.y1f_c00240{bottom:374.080120pt;}
.y1e_c00240{bottom:381.439453pt;}
.y1d_c00240{bottom:400.319867pt;}
.y1c_c00240{bottom:453.119440pt;}
.y1b_c00240{bottom:479.679200pt;}
.y1a_c00240{bottom:479.680507pt;}
.y19_c00240{bottom:505.920080pt;}
.y18_c00240{bottom:532.479840pt;}
.y17_c00240{bottom:558.719427pt;}
.y16_c00240{bottom:585.279173pt;}
.y15_c00240{bottom:611.838933pt;}
.y14_c00240{bottom:638.080120pt;}
.y13_c00240{bottom:668.479987pt;}
.y12_c00240{bottom:717.439453pt;}
.y11_c00240{bottom:744.319373pt;}
.y10_c00240{bottom:770.879133pt;}
.yf_c00240{bottom:797.438880pt;}
.ye_c00240{bottom:797.439680pt;}
.yd_c00240{bottom:823.999427pt;}
.yc_c00240{bottom:824.000227pt;}
.yb_c00240{bottom:850.559973pt;}
.ya_c00240{bottom:850.560227pt;}
.y9_c00240{bottom:876.799800pt;}
.y8_c00240{bottom:876.799973pt;}
.y7_c00240{bottom:903.039547pt;}
.y6_c00240{bottom:903.039720pt;}
.y5_c00240{bottom:929.279293pt;}
.y4_c00240{bottom:929.280093pt;}
.y3_c00240{bottom:955.839840pt;}
.y2_c00240{bottom:955.839960pt;}
.y1_c00240{bottom:1008.959467pt;}
.h16_c00240{height:13.177083pt;}
.h15_c00240{height:27.812500pt;}
.h13_c00240{height:29.648437pt;}
.h18_c00240{height:32.942708pt;}
.h14_c00240{height:37.554687pt;}
.hb_c00240{height:38.872396pt;}
.h17_c00240{height:42.825521pt;}
.ha_c00240{height:52.708333pt;}
.h8_c00240{height:53.750000pt;}
.h12_c00240{height:58.406250pt;}
.h19_c00240{height:60.468750pt;}
.hc_c00240{height:64.664062pt;}
.h10_c00240{height:65.359375pt;}
.hd_c00240{height:66.054688pt;}
.h5_c00240{height:68.046875pt;}
.h1_c00240{height:68.701172pt;}
.h3_c00240{height:69.355469pt;}
.h2_c00240{height:69.838542pt;}
.h4_c00240{height:70.009766pt;}
.hf_c00240{height:70.546875pt;}
.h9_c00240{height:71.156250pt;}
.h7_c00240{height:71.815104pt;}
.he_c00240{height:71.890625pt;}
.h11_c00240{height:71.972656pt;}
.h6_c00240{height:73.935547pt;}
.h0_c00240{height:1122.666667pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x14_c00240{left:123.519120pt;}
.x1_c00240{left:124.479467pt;}
.xe_c00240{left:147.518533pt;}
.x24_c00240{left:149.438947pt;}
.x27_c00240{left:154.879333pt;}
.x8_c00240{left:170.239720pt;}
.xf_c00240{left:176.318787pt;}
.x28_c00240{left:178.879333pt;}
.x9_c00240{left:183.358933pt;}
.x15_c00240{left:197.438920pt;}
.x3b_c00240{left:204.159733pt;}
.x3c_c00240{left:215.679200pt;}
.x16_c00240{left:255.999067pt;}
.x17_c00240{left:267.839333pt;}
.x18_c00240{left:291.199200pt;}
.x12_c00240{left:304.639200pt;}
.x13_c00240{left:322.239200pt;}
.x38_c00240{left:324.159733pt;}
.x39_c00240{left:337.599587pt;}
.x19_c00240{left:344.318813pt;}
.x1a_c00240{left:361.918907pt;}
.x10_c00240{left:407.359867pt;}
.x1b_c00240{left:408.959467pt;}
.x32_c00240{left:416.958907pt;}
.x11_c00240{left:419.198693pt;}
.x1c_c00240{left:432.319333pt;}
.x33_c00240{left:439.038533pt;}
.x1d_c00240{left:452.479987pt;}
.x34_c00240{left:503.359867pt;}
.x29_c00240{left:509.759720pt;}
.xa_c00240{left:511.038533pt;}
.x22_c00240{left:513.919840pt;}
.x1e_c00240{left:521.279333pt;}
.x2a_c00240{left:528.319333pt;}
.xb_c00240{left:529.599573pt;}
.x2b_c00240{left:544.639200pt;}
.x3a_c00240{left:549.439453pt;}
.x6_c00240{left:554.879840pt;}
.x23_c00240{left:556.798787pt;}
.x1f_c00240{left:559.678707pt;}
.x7_c00240{left:568.319867pt;}
.x25_c00240{left:576.319333pt;}
.x36_c00240{left:580.158693pt;}
.x2c_c00240{left:583.038533pt;}
.x2d_c00240{left:588.799840pt;}
.x26_c00240{left:591.679733pt;}
.x35_c00240{left:599.679200pt;}
.x2_c00240{left:601.278773pt;}
.x20_c00240{left:609.919840pt;}
.x2e_c00240{left:615.039587pt;}
.x4_c00240{left:617.279333pt;}
.x3_c00240{left:619.519040pt;}
.x37_c00240{left:633.919840pt;}
.x31_c00240{left:635.838907pt;}
.x2f_c00240{left:637.119187pt;}
.x5_c00240{left:646.398920pt;}
.x21_c00240{left:648.638707pt;}
.xc_c00240{left:655.999427pt;}
.x30_c00240{left:663.679733pt;}
.xd_c00240{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2224e882dc890d300eba5397.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_f6779d8fe360dab9cc895ac1.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.364746;font-style:normal;font-weight:normal;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_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_3f93f64ec67cfae4f82b3e20.woff2')format("woff");}.ff4_c00241{font-family:ff4_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;}
.m8_c00241{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m11_c00241{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00241{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mc_c00241{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00241{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c00241{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.me_c00241{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.m16_c00241{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m15_c00241{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m10_c00241{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,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);}
.m0_c00241{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m13_c00241{transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);}
.md_c00241{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls1c_c00241{letter-spacing:-17.420288px;}
.ls10_c00241{letter-spacing:-15.584250px;}
.lsc_c00241{letter-spacing:-14.668500px;}
.ls18_c00241{letter-spacing:-8.914500px;}
.ls1d_c00241{letter-spacing:-8.175038px;}
.ls12_c00241{letter-spacing:-7.426125px;}
.ls11_c00241{letter-spacing:-6.685875px;}
.lsf_c00241{letter-spacing:-6.000300px;}
.lsb_c00241{letter-spacing:-5.945625px;}
.ls15_c00241{letter-spacing:-5.247533px;}
.ls9_c00241{letter-spacing:-5.196713px;}
.ls1e_c00241{letter-spacing:-4.817700px;}
.lsd_c00241{letter-spacing:-4.796003px;}
.lse_c00241{letter-spacing:-4.456463px;}
.ls14_c00241{letter-spacing:-4.397250px;}
.lsa_c00241{letter-spacing:-3.717000px;}
.ls13_c00241{letter-spacing:-3.028950px;}
.ls6_c00241{letter-spacing:-2.968875px;}
.ls4_c00241{letter-spacing:-2.229413px;}
.ls17_c00241{letter-spacing:-1.596000px;}
.ls7_c00241{letter-spacing:-1.489163px;}
.ls1b_c00241{letter-spacing:-0.842400px;}
.ls8_c00241{letter-spacing:-0.740250px;}
.ls1a_c00241{letter-spacing:-0.680850px;}
.ls5_c00241{letter-spacing:0.000000px;}
.ls1f_c00241{letter-spacing:0.796365px;}
.ls2_c00241{letter-spacing:1.489163px;}
.ls16_c00241{letter-spacing:1.823310px;}
.ls3_c00241{letter-spacing:2.229413px;}
.ls19_c00241{letter-spacing:3.604028px;}
.ls0_c00241{letter-spacing:13.371750px;}
.ls1_c00241{letter-spacing:39.375000px;}
.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;}
._1d_c00241{margin-left:-100.571892px;}
._1c_c00241{margin-left:-58.046476px;}
._18_c00241{margin-left:-22.254750px;}
._22_c00241{margin-left:-15.903236px;}
._1b_c00241{margin-left:-12.954464px;}
._17_c00241{margin-left:-8.457334px;}
._c_c00241{margin-left:-6.141296px;}
._b_c00241{margin-left:-4.854997px;}
._6_c00241{margin-left:-2.989365px;}
._8_c00241{margin-left:-1.095190px;}
._3_c00241{width:2.123293px;}
._1_c00241{width:3.698783px;}
._1a_c00241{width:4.729160px;}
._2_c00241{width:5.752673px;}
._4_c00241{width:7.094588px;}
._7_c00241{width:8.612947px;}
._5_c00241{width:10.052720px;}
._a_c00241{width:11.336107px;}
._0_c00241{width:12.756074px;}
._13_c00241{width:14.159815px;}
._12_c00241{width:15.899209px;}
._14_c00241{width:17.198391px;}
._19_c00241{width:18.370934px;}
._9_c00241{width:19.660071px;}
._11_c00241{width:20.732721px;}
._d_c00241{width:22.684695px;}
._e_c00241{width:24.309159px;}
._16_c00241{width:25.822155px;}
._f_c00241{width:26.940018px;}
._1f_c00241{width:28.455525px;}
._10_c00241{width:29.970066px;}
._15_c00241{width:32.505608px;}
._21_c00241{width:34.583122px;}
._20_c00241{width:38.778862px;}
._1e_c00241{width:142.311369px;}
.fc0_c00241{color:transparent;}
.fs3_c00241{font-size:74.250000px;}
.fsc_c00241{font-size:75.750000px;}
.fsa_c00241{font-size:76.500000px;}
.fsb_c00241{font-size:78.000000px;}
.fs0_c00241{font-size:78.750000px;}
.fs6_c00241{font-size:79.500000px;}
.fs2_c00241{font-size:80.250000px;}
.fs8_c00241{font-size:81.000000px;}
.fs7_c00241{font-size:81.750000px;}
.fs1_c00241{font-size:82.500000px;}
.fs9_c00241{font-size:84.000000px;}
.fs4_c00241{font-size:84.750000px;}
.fs5_c00241{font-size:115.500000px;}
.y0_c00241{bottom:0.000000px;}
.y2f_c00241{bottom:186.839565px;}
.y2e_c00241{bottom:186.839655px;}
.y2d_c00241{bottom:216.719370px;}
.y2c_c00241{bottom:246.599100px;}
.y2b_c00241{bottom:246.599790px;}
.y2a_c00241{bottom:275.398635px;}
.y29_c00241{bottom:305.640150px;}
.y28_c00241{bottom:305.640315px;}
.y27_c00241{bottom:335.159850px;}
.y26_c00241{bottom:335.160165px;}
.y25_c00241{bottom:364.679700px;}
.y24_c00241{bottom:364.679850px;}
.y23_c00241{bottom:394.199385px;}
.y22_c00241{bottom:424.080000px;}
.y21_c00241{bottom:424.080090px;}
.y20_c00241{bottom:483.839535px;}
.y1f_c00241{bottom:514.079400px;}
.y1e_c00241{bottom:514.079550px;}
.y1d_c00241{bottom:543.599070px;}
.y1c_c00241{bottom:543.599265px;}
.y1b_c00241{bottom:573.118785px;}
.y19_c00241{bottom:602.998665px;}
.y1a_c00241{bottom:602.999400px;}
.y18_c00241{bottom:632.159820px;}
.y17_c00241{bottom:632.159910px;}
.y16_c00241{bottom:662.399820px;}
.y15_c00241{bottom:662.400015px;}
.y14_c00241{bottom:691.919535px;}
.y13_c00241{bottom:691.921050px;}
.y12_c00241{bottom:721.800780px;}
.y11_c00241{bottom:780.839535px;}
.y10_c00241{bottom:810.720150px;}
.yf_c00241{bottom:810.720885px;}
.ye_c00241{bottom:841.319190px;}
.yd_c00241{bottom:841.320030px;}
.yc_c00241{bottom:871.559940px;}
.ya_c00241{bottom:901.438980px;}
.yb_c00241{bottom:901.439670px;}
.y8_c00241{bottom:930.599460px;}
.y9_c00241{bottom:930.600135px;}
.y6_c00241{bottom:960.478635px;}
.y7_c00241{bottom:960.479190px;}
.y5_c00241{bottom:1019.879700px;}
.y4_c00241{bottom:1049.759415px;}
.y3_c00241{bottom:1079.639145px;}
.y2_c00241{bottom:1109.158680px;}
.y1_c00241{bottom:1139.398590px;}
.h5_c00241{height:72.872314px;}
.hf_c00241{height:74.344482px;}
.hc_c00241{height:75.080566px;}
.he_c00241{height:76.552734px;}
.h1_c00241{height:77.288818px;}
.h8_c00241{height:78.024902px;}
.hd_c00241{height:78.609375px;}
.h3_c00241{height:78.760986px;}
.ha_c00241{height:79.497070px;}
.h9_c00241{height:80.233154px;}
.h2_c00241{height:80.969238px;}
.h4_c00241{height:81.533203px;}
.hb_c00241{height:82.441406px;}
.h6_c00241{height:83.177490px;}
.h7_c00241{height:120.462891px;}
.h0_c00241{height:1263.000000px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.xb_c00241{left:139.320435px;}
.x6_c00241{left:140.398335px;}
.x1_c00241{left:142.199850px;}
.x28_c00241{left:154.439250px;}
.x34_c00241{left:158.399250px;}
.x19_c00241{left:165.239850px;}
.x2_c00241{left:195.118785px;}
.x23_c00241{left:203.399850px;}
.x3_c00241{left:209.159385px;}
.x1a_c00241{left:231.838515px;}
.x1e_c00241{left:253.439685px;}
.x24_c00241{left:254.519100px;}
.x10_c00241{left:262.439250px;}
.x1f_c00241{left:271.079385px;}
.x36_c00241{left:277.559100px;}
.x11_c00241{left:287.278800px;}
.x37_c00241{left:292.679100px;}
.x21_c00241{left:306.358635px;}
.x22_c00241{left:337.679700px;}
.x9_c00241{left:341.998950px;}
.x26_c00241{left:346.679100px;}
.x27_c00241{left:360.719535px;}
.xe_c00241{left:376.559685px;}
.xa_c00241{left:383.039385px;}
.x12_c00241{left:395.998950px;}
.xf_c00241{left:411.479685px;}
.x32_c00241{left:430.559685px;}
.x33_c00241{left:445.679670px;}
.x29_c00241{left:467.638500px;}
.x2a_c00241{left:490.678530px;}
.x1b_c00241{left:505.798515px;}
.x2c_c00241{left:507.958920px;}
.xc_c00241{left:509.758530px;}
.x2e_c00241{left:519.838950px;}
.x2d_c00241{left:523.078770px;}
.x1c_c00241{left:525.239220px;}
.x2f_c00241{left:538.918950px;}
.xd_c00241{left:544.678530px;}
.x25_c00241{left:607.679670px;}
.x7_c00241{left:616.319820px;}
.x13_c00241{left:622.799520px;}
.x8_c00241{left:629.999400px;}
.x30_c00241{left:638.278800px;}
.x16_c00241{left:639.359850px;}
.x14_c00241{left:647.279850px;}
.x31_c00241{left:676.079355px;}
.x4_c00241{left:696.238770px;}
.x17_c00241{left:700.918950px;}
.x5_c00241{left:710.999400px;}
.x35_c00241{left:717.479235px;}
.x1d_c00241{left:723.599670px;}
.x18_c00241{left:749.159370px;}
.x15_c00241{left:756.359250px;}
.x20_c00241{left:761.398635px;}
.x2b_c00241{left:770.038965px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls1c_c00241{letter-spacing:-15.484700pt;}
.ls10_c00241{letter-spacing:-13.852667pt;}
.lsc_c00241{letter-spacing:-13.038667pt;}
.ls18_c00241{letter-spacing:-7.924000pt;}
.ls1d_c00241{letter-spacing:-7.266700pt;}
.ls12_c00241{letter-spacing:-6.601000pt;}
.ls11_c00241{letter-spacing:-5.943000pt;}
.lsf_c00241{letter-spacing:-5.333600pt;}
.lsb_c00241{letter-spacing:-5.285000pt;}
.ls15_c00241{letter-spacing:-4.664473pt;}
.ls9_c00241{letter-spacing:-4.619300pt;}
.ls1e_c00241{letter-spacing:-4.282400pt;}
.lsd_c00241{letter-spacing:-4.263113pt;}
.lse_c00241{letter-spacing:-3.961300pt;}
.ls14_c00241{letter-spacing:-3.908667pt;}
.lsa_c00241{letter-spacing:-3.304000pt;}
.ls13_c00241{letter-spacing:-2.692400pt;}
.ls6_c00241{letter-spacing:-2.639000pt;}
.ls4_c00241{letter-spacing:-1.981700pt;}
.ls17_c00241{letter-spacing:-1.418667pt;}
.ls7_c00241{letter-spacing:-1.323700pt;}
.ls1b_c00241{letter-spacing:-0.748800pt;}
.ls8_c00241{letter-spacing:-0.658000pt;}
.ls1a_c00241{letter-spacing:-0.605200pt;}
.ls5_c00241{letter-spacing:0.000000pt;}
.ls1f_c00241{letter-spacing:0.707880pt;}
.ls2_c00241{letter-spacing:1.323700pt;}
.ls16_c00241{letter-spacing:1.620720pt;}
.ls3_c00241{letter-spacing:1.981700pt;}
.ls19_c00241{letter-spacing:3.203580pt;}
.ls0_c00241{letter-spacing:11.886000pt;}
.ls1_c00241{letter-spacing:35.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
._1d_c00241{margin-left:-89.397238pt;}
._1c_c00241{margin-left:-51.596868pt;}
._18_c00241{margin-left:-19.782000pt;}
._22_c00241{margin-left:-14.136209pt;}
._1b_c00241{margin-left:-11.515079pt;}
._17_c00241{margin-left:-7.517630pt;}
._c_c00241{margin-left:-5.458930pt;}
._b_c00241{margin-left:-4.315553pt;}
._6_c00241{margin-left:-2.657213pt;}
._8_c00241{margin-left:-0.973502pt;}
._3_c00241{width:1.887372pt;}
._1_c00241{width:3.287808pt;}
._1a_c00241{width:4.203698pt;}
._2_c00241{width:5.113487pt;}
._4_c00241{width:6.306300pt;}
._7_c00241{width:7.655953pt;}
._5_c00241{width:8.935751pt;}
._a_c00241{width:10.076540pt;}
._0_c00241{width:11.338732pt;}
._13_c00241{width:12.586502pt;}
._12_c00241{width:14.132630pt;}
._14_c00241{width:15.287458pt;}
._19_c00241{width:16.329719pt;}
._9_c00241{width:17.475619pt;}
._11_c00241{width:18.429085pt;}
._d_c00241{width:20.164174pt;}
._e_c00241{width:21.608142pt;}
._16_c00241{width:22.953026pt;}
._f_c00241{width:23.946683pt;}
._1f_c00241{width:25.293800pt;}
._10_c00241{width:26.640058pt;}
._15_c00241{width:28.893874pt;}
._21_c00241{width:30.740553pt;}
._20_c00241{width:34.470100pt;}
._1e_c00241{width:126.498994pt;}
.fs3_c00241{font-size:66.000000pt;}
.fsc_c00241{font-size:67.333333pt;}
.fsa_c00241{font-size:68.000000pt;}
.fsb_c00241{font-size:69.333333pt;}
.fs0_c00241{font-size:70.000000pt;}
.fs6_c00241{font-size:70.666667pt;}
.fs2_c00241{font-size:71.333333pt;}
.fs8_c00241{font-size:72.000000pt;}
.fs7_c00241{font-size:72.666667pt;}
.fs1_c00241{font-size:73.333333pt;}
.fs9_c00241{font-size:74.666667pt;}
.fs4_c00241{font-size:75.333333pt;}
.fs5_c00241{font-size:102.666667pt;}
.y0_c00241{bottom:0.000000pt;}
.y2f_c00241{bottom:166.079613pt;}
.y2e_c00241{bottom:166.079693pt;}
.y2d_c00241{bottom:192.639440pt;}
.y2c_c00241{bottom:219.199200pt;}
.y2b_c00241{bottom:219.199813pt;}
.y2a_c00241{bottom:244.798787pt;}
.y29_c00241{bottom:271.680133pt;}
.y28_c00241{bottom:271.680280pt;}
.y27_c00241{bottom:297.919867pt;}
.y26_c00241{bottom:297.920147pt;}
.y25_c00241{bottom:324.159733pt;}
.y24_c00241{bottom:324.159867pt;}
.y23_c00241{bottom:350.399453pt;}
.y22_c00241{bottom:376.960000pt;}
.y21_c00241{bottom:376.960080pt;}
.y20_c00241{bottom:430.079587pt;}
.y1f_c00241{bottom:456.959467pt;}
.y1e_c00241{bottom:456.959600pt;}
.y1d_c00241{bottom:483.199173pt;}
.y1c_c00241{bottom:483.199347pt;}
.y1b_c00241{bottom:509.438920pt;}
.y19_c00241{bottom:535.998813pt;}
.y1a_c00241{bottom:535.999467pt;}
.y18_c00241{bottom:561.919840pt;}
.y17_c00241{bottom:561.919920pt;}
.y16_c00241{bottom:588.799840pt;}
.y15_c00241{bottom:588.800013pt;}
.y14_c00241{bottom:615.039587pt;}
.y13_c00241{bottom:615.040933pt;}
.y12_c00241{bottom:641.600693pt;}
.y11_c00241{bottom:694.079587pt;}
.y10_c00241{bottom:720.640133pt;}
.yf_c00241{bottom:720.640787pt;}
.ye_c00241{bottom:747.839280pt;}
.yd_c00241{bottom:747.840027pt;}
.yc_c00241{bottom:774.719947pt;}
.ya_c00241{bottom:801.279093pt;}
.yb_c00241{bottom:801.279707pt;}
.y8_c00241{bottom:827.199520pt;}
.y9_c00241{bottom:827.200120pt;}
.y6_c00241{bottom:853.758787pt;}
.y7_c00241{bottom:853.759280pt;}
.y5_c00241{bottom:906.559733pt;}
.y4_c00241{bottom:933.119480pt;}
.y3_c00241{bottom:959.679240pt;}
.y2_c00241{bottom:985.918827pt;}
.y1_c00241{bottom:1012.798747pt;}
.h5_c00241{height:64.775391pt;}
.hf_c00241{height:66.083984pt;}
.hc_c00241{height:66.738281pt;}
.he_c00241{height:68.046875pt;}
.h1_c00241{height:68.701172pt;}
.h8_c00241{height:69.355469pt;}
.hd_c00241{height:69.875000pt;}
.h3_c00241{height:70.009766pt;}
.ha_c00241{height:70.664062pt;}
.h9_c00241{height:71.318359pt;}
.h2_c00241{height:71.972656pt;}
.h4_c00241{height:72.473958pt;}
.hb_c00241{height:73.281250pt;}
.h6_c00241{height:73.935547pt;}
.h7_c00241{height:107.078125pt;}
.h0_c00241{height:1122.666667pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.xb_c00241{left:123.840387pt;}
.x6_c00241{left:124.798520pt;}
.x1_c00241{left:126.399867pt;}
.x28_c00241{left:137.279333pt;}
.x34_c00241{left:140.799333pt;}
.x19_c00241{left:146.879867pt;}
.x2_c00241{left:173.438920pt;}
.x23_c00241{left:180.799867pt;}
.x3_c00241{left:185.919453pt;}
.x1a_c00241{left:206.078680pt;}
.x1e_c00241{left:225.279720pt;}
.x24_c00241{left:226.239200pt;}
.x10_c00241{left:233.279333pt;}
.x1f_c00241{left:240.959453pt;}
.x36_c00241{left:246.719200pt;}
.x11_c00241{left:255.358933pt;}
.x37_c00241{left:260.159200pt;}
.x21_c00241{left:272.318787pt;}
.x22_c00241{left:300.159733pt;}
.x9_c00241{left:303.999067pt;}
.x26_c00241{left:308.159200pt;}
.x27_c00241{left:320.639587pt;}
.xe_c00241{left:334.719720pt;}
.xa_c00241{left:340.479453pt;}
.x12_c00241{left:351.999067pt;}
.xf_c00241{left:365.759720pt;}
.x32_c00241{left:382.719720pt;}
.x33_c00241{left:396.159707pt;}
.x29_c00241{left:415.678667pt;}
.x2a_c00241{left:436.158693pt;}
.x1b_c00241{left:449.598680pt;}
.x2c_c00241{left:451.519040pt;}
.xc_c00241{left:453.118693pt;}
.x2e_c00241{left:462.079067pt;}
.x2d_c00241{left:464.958907pt;}
.x1c_c00241{left:466.879307pt;}
.x2f_c00241{left:479.039067pt;}
.xd_c00241{left:484.158693pt;}
.x25_c00241{left:540.159707pt;}
.x7_c00241{left:547.839840pt;}
.x13_c00241{left:553.599573pt;}
.x8_c00241{left:559.999467pt;}
.x30_c00241{left:567.358933pt;}
.x16_c00241{left:568.319867pt;}
.x14_c00241{left:575.359867pt;}
.x31_c00241{left:600.959427pt;}
.x4_c00241{left:618.878907pt;}
.x17_c00241{left:623.039067pt;}
.x5_c00241{left:631.999467pt;}
.x35_c00241{left:637.759320pt;}
.x1d_c00241{left:643.199707pt;}
.x18_c00241{left:665.919440pt;}
.x15_c00241{left:672.319333pt;}
.x20_c00241{left:676.798787pt;}
.x2b_c00241{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ff303266b694a46e56381e4.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_5165f602e6f976306798dd0f.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_5d9b7f4cae2f8faae76bcc4c.woff2')format("woff");}.ff3_c00242{font-family:ff3_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:ff4_c00242;src:url('chunks/assets/font_1466de0b4a11fd62ca74c378.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_2b6454250f1f960664b6e96c.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00242{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m1b_c00242{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00242{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);}
.m9_c00242{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m0_c00242{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{transform:matrix(0.334112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334112,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:1.440780px;}
.ls11_c00242{letter-spacing:-18.577125px;}
.ls1e_c00242{letter-spacing:-14.701800px;}
.ls18_c00242{letter-spacing:-10.665225px;}
.ls1a_c00242{letter-spacing:-9.400650px;}
.ls12_c00242{letter-spacing:-6.685875px;}
.ls16_c00242{letter-spacing:-6.172125px;}
.lse_c00242{letter-spacing:-5.945625px;}
.lsd_c00242{letter-spacing:-5.676300px;}
.ls10_c00242{letter-spacing:-5.670810px;}
.ls21_c00242{letter-spacing:-5.295698px;}
.ls9_c00242{letter-spacing:-5.196713px;}
.ls1b_c00242{letter-spacing:-4.911300px;}
.lsb_c00242{letter-spacing:-4.456463px;}
.ls1c_c00242{letter-spacing:-3.972375px;}
.ls6_c00242{letter-spacing:-3.717000px;}
.ls1d_c00242{letter-spacing:-3.274200px;}
.ls14_c00242{letter-spacing:-3.230100px;}
.lsa_c00242{letter-spacing:-3.171900px;}
.ls4_c00242{letter-spacing:-2.968875px;}
.ls20_c00242{letter-spacing:-2.454848px;}
.ls24_c00242{letter-spacing:-2.400750px;}
.ls13_c00242{letter-spacing:-2.252250px;}
.ls5_c00242{letter-spacing:-2.229413px;}
.ls19_c00242{letter-spacing:-1.637100px;}
.ls7_c00242{letter-spacing:-1.489163px;}
.lsf_c00242{letter-spacing:-0.750750px;}
.ls3_c00242{letter-spacing:-0.740250px;}
.lsc_c00242{letter-spacing:-0.717600px;}
.ls8_c00242{letter-spacing:0.000000px;}
.ls22_c00242{letter-spacing:0.663000px;}
.ls17_c00242{letter-spacing:0.801698px;}
.ls1f_c00242{letter-spacing:2.454848px;}
.ls0_c00242{letter-spacing:3.717000px;}
.ls23_c00242{letter-spacing:4.485000px;}
.ls15_c00242{letter-spacing:8.002500px;}
.ls1_c00242{letter-spacing:9.654750px;}
.ls2_c00242{letter-spacing:35.658000px;}
.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;}
._17_c00242{margin-left:-111.234286px;}
._18_c00242{margin-left:-69.881130px;}
._14_c00242{margin-left:-45.368010px;}
._3_c00242{margin-left:-42.273475px;}
._1e_c00242{margin-left:-15.141783px;}
._11_c00242{margin-left:-12.917080px;}
._13_c00242{margin-left:-6.518123px;}
._f_c00242{margin-left:-4.733202px;}
._12_c00242{margin-left:-3.328896px;}
._4_c00242{margin-left:-1.886909px;}
._8_c00242{width:1.297785px;}
._7_c00242{width:2.737231px;}
._6_c00242{width:4.757362px;}
._2_c00242{width:5.793266px;}
._1_c00242{width:7.082181px;}
._5_c00242{width:9.083590px;}
._10_c00242{width:10.622290px;}
._a_c00242{width:11.663142px;}
._9_c00242{width:13.475239px;}
._1f_c00242{width:14.844598px;}
._0_c00242{width:16.036115px;}
._1b_c00242{width:17.815999px;}
._c_c00242{width:19.782654px;}
._b_c00242{width:21.409614px;}
._e_c00242{width:23.599993px;}
._1c_c00242{width:24.979470px;}
._19_c00242{width:26.998799px;}
._1d_c00242{width:28.717436px;}
._d_c00242{width:30.637361px;}
._1a_c00242{width:32.682721px;}
._15_c00242{width:175.022440px;}
._16_c00242{width:284.381673px;}
.fc0_c00242{color:transparent;}
.fsa_c00242{font-size:72.750000px;}
.fsc_c00242{font-size:73.500000px;}
.fsd_c00242{font-size:75.000000px;}
.fs5_c00242{font-size:78.000000px;}
.fs0_c00242{font-size:78.750000px;}
.fs6_c00242{font-size:79.500000px;}
.fs1_c00242{font-size:80.250000px;}
.fs8_c00242{font-size:81.000000px;}
.fs2_c00242{font-size:81.750000px;}
.fs7_c00242{font-size:82.500000px;}
.fs9_c00242{font-size:83.250000px;}
.fs3_c00242{font-size:84.750000px;}
.fsb_c00242{font-size:86.250000px;}
.fs4_c00242{font-size:115.500000px;}
.y0_c00242{bottom:0.000000px;}
.y2c_c00242{bottom:176.400015px;}
.y2b_c00242{bottom:205.919535px;}
.y2a_c00242{bottom:205.920345px;}
.y28_c00242{bottom:236.517885px;}
.y29_c00242{bottom:236.518635px;}
.y27_c00242{bottom:266.039220px;}
.y26_c00242{bottom:295.918950px;}
.y24_c00242{bottom:325.438110px;}
.y25_c00242{bottom:325.438635px;}
.y23_c00242{bottom:384.118785px;}
.y22_c00242{bottom:384.119070px;}
.y21_c00242{bottom:405.720150px;}
.y20_c00242{bottom:426.958920px;}
.y1f_c00242{bottom:447.840135px;}
.y1e_c00242{bottom:509.040165px;}
.y1c_c00242{bottom:538.559100px;}
.y1d_c00242{bottom:538.559685px;}
.y1b_c00242{bottom:568.078635px;}
.y1a_c00242{bottom:598.318545px;}
.y19_c00242{bottom:627.479685px;}
.y18_c00242{bottom:627.479880px;}
.y17_c00242{bottom:657.359595px;}
.y16_c00242{bottom:687.239325px;}
.y15_c00242{bottom:717.479235px;}
.y14_c00242{bottom:717.479415px;}
.y12_c00242{bottom:746.998860px;}
.y13_c00242{bottom:746.998950px;}
.y10_c00242{bottom:777.238725px;}
.y11_c00242{bottom:777.238770px;}
.yf_c00242{bottom:807.478635px;}
.ye_c00242{bottom:807.479535px;}
.yd_c00242{bottom:837.359250px;}
.yc_c00242{bottom:837.360150px;}
.ya_c00242{bottom:867.238695px;}
.yb_c00242{bottom:867.239865px;}
.y9_c00242{bottom:897.118425px;}
.y8_c00242{bottom:926.819115px;}
.y7_c00242{bottom:956.879970px;}
.y6_c00242{bottom:956.880210px;}
.y5_c00242{bottom:986.759925px;}
.y4_c00242{bottom:1016.639655px;}
.y3_c00242{bottom:1016.640630px;}
.y2_c00242{bottom:1076.760270px;}
.y1_c00242{bottom:1136.519715px;}
.hd_c00242{height:71.400146px;}
.h13_c00242{height:75.875977px;}
.h7_c00242{height:76.552734px;}
.h11_c00242{height:76.658203px;}
.h1_c00242{height:77.288818px;}
.h8_c00242{height:78.024902px;}
.h12_c00242{height:78.222656px;}
.hb_c00242{height:78.729598px;}
.h2_c00242{height:78.760986px;}
.h3_c00242{height:80.233154px;}
.hf_c00242{height:80.876953px;}
.h9_c00242{height:80.969238px;}
.ha_c00242{height:81.632812px;}
.hc_c00242{height:81.705322px;}
.h6_c00242{height:82.133789px;}
.he_c00242{height:82.388672px;}
.h4_c00242{height:83.177490px;}
.h10_c00242{height:85.239258px;}
.h5_c00242{height:120.462891px;}
.h0_c00242{height:1263.000000px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x4_c00242{left:141.118245px;}
.x1_c00242{left:142.199850px;}
.x20_c00242{left:195.838950px;}
.x1d_c00242{left:197.279250px;}
.x9_c00242{left:201.598500px;}
.x5_c00242{left:204.838515px;}
.xa_c00242{left:207.359850px;}
.x1e_c00242{left:217.799535px;}
.xb_c00242{left:219.599100px;}
.x21_c00242{left:221.039400px;}
.x1f_c00242{left:226.439685px;}
.x6_c00242{left:233.278800px;}
.x2e_c00242{left:235.080000px;}
.x22_c00242{left:259.199385px;}
.x13_c00242{left:268.918950px;}
.x7_c00242{left:280.439685px;}
.x1c_c00242{left:281.878350px;}
.x14_c00242{left:283.318800px;}
.x8_c00242{left:295.198785px;}
.x15_c00242{left:305.999385px;}
.xe_c00242{left:329.759535px;}
.x16_c00242{left:343.439235px;}
.xf_c00242{left:362.519100px;}
.x23_c00242{left:366.838515px;}
.x24_c00242{left:387.358665px;}
.x25_c00242{left:439.199850px;}
.x26_c00242{left:464.039385px;}
.xc_c00242{left:482.399235px;}
.x10_c00242{left:483.839535px;}
.x27_c00242{left:486.359250px;}
.x36_c00242{left:502.199385px;}
.x11_c00242{left:504.719100px;}
.x17_c00242{left:509.399235px;}
.xd_c00242{left:510.839535px;}
.x12_c00242{left:514.799520px;}
.x18_c00242{left:528.838530px;}
.x2f_c00242{left:550.078770px;}
.x28_c00242{left:561.958920px;}
.x30_c00242{left:581.399820px;}
.x29_c00242{left:595.438620px;}
.x31_c00242{left:626.039385px;}
.x19_c00242{left:637.199385px;}
.x2a_c00242{left:641.159370px;}
.x1a_c00242{left:648.000000px;}
.x1b_c00242{left:662.399820px;}
.x32_c00242{left:666.719100px;}
.x2b_c00242{left:682.199850px;}
.x34_c00242{left:698.758530px;}
.x35_c00242{left:712.798920px;}
.x2_c00242{left:749.518620px;}
.x33_c00242{left:752.039985px;}
.x2c_c00242{left:754.198785px;}
.x3_c00242{left:763.559100px;}
.x2d_c00242{left:770.399865px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:1.280693pt;}
.ls11_c00242{letter-spacing:-16.513000pt;}
.ls1e_c00242{letter-spacing:-13.068267pt;}
.ls18_c00242{letter-spacing:-9.480200pt;}
.ls1a_c00242{letter-spacing:-8.356133pt;}
.ls12_c00242{letter-spacing:-5.943000pt;}
.ls16_c00242{letter-spacing:-5.486333pt;}
.lse_c00242{letter-spacing:-5.285000pt;}
.lsd_c00242{letter-spacing:-5.045600pt;}
.ls10_c00242{letter-spacing:-5.040720pt;}
.ls21_c00242{letter-spacing:-4.707287pt;}
.ls9_c00242{letter-spacing:-4.619300pt;}
.ls1b_c00242{letter-spacing:-4.365600pt;}
.lsb_c00242{letter-spacing:-3.961300pt;}
.ls1c_c00242{letter-spacing:-3.531000pt;}
.ls6_c00242{letter-spacing:-3.304000pt;}
.ls1d_c00242{letter-spacing:-2.910400pt;}
.ls14_c00242{letter-spacing:-2.871200pt;}
.lsa_c00242{letter-spacing:-2.819467pt;}
.ls4_c00242{letter-spacing:-2.639000pt;}
.ls20_c00242{letter-spacing:-2.182087pt;}
.ls24_c00242{letter-spacing:-2.134000pt;}
.ls13_c00242{letter-spacing:-2.002000pt;}
.ls5_c00242{letter-spacing:-1.981700pt;}
.ls19_c00242{letter-spacing:-1.455200pt;}
.ls7_c00242{letter-spacing:-1.323700pt;}
.lsf_c00242{letter-spacing:-0.667333pt;}
.ls3_c00242{letter-spacing:-0.658000pt;}
.lsc_c00242{letter-spacing:-0.637867pt;}
.ls8_c00242{letter-spacing:0.000000pt;}
.ls22_c00242{letter-spacing:0.589333pt;}
.ls17_c00242{letter-spacing:0.712620pt;}
.ls1f_c00242{letter-spacing:2.182087pt;}
.ls0_c00242{letter-spacing:3.304000pt;}
.ls23_c00242{letter-spacing:3.986667pt;}
.ls15_c00242{letter-spacing:7.113333pt;}
.ls1_c00242{letter-spacing:8.582000pt;}
.ls2_c00242{letter-spacing:31.696000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
._17_c00242{margin-left:-98.874921pt;}
._18_c00242{margin-left:-62.116560pt;}
._14_c00242{margin-left:-40.327120pt;}
._3_c00242{margin-left:-37.576423pt;}
._1e_c00242{margin-left:-13.459362pt;}
._11_c00242{margin-left:-11.481849pt;}
._13_c00242{margin-left:-5.793887pt;}
._f_c00242{margin-left:-4.207291pt;}
._12_c00242{margin-left:-2.959019pt;}
._4_c00242{margin-left:-1.677253pt;}
._8_c00242{width:1.153587pt;}
._7_c00242{width:2.433094pt;}
._6_c00242{width:4.228766pt;}
._2_c00242{width:5.149570pt;}
._1_c00242{width:6.295272pt;}
._5_c00242{width:8.074302pt;}
._10_c00242{width:9.442036pt;}
._a_c00242{width:10.367238pt;}
._9_c00242{width:11.977991pt;}
._1f_c00242{width:13.195198pt;}
._0_c00242{width:14.254325pt;}
._1b_c00242{width:15.836443pt;}
._c_c00242{width:17.584581pt;}
._b_c00242{width:19.030768pt;}
._e_c00242{width:20.977772pt;}
._1c_c00242{width:22.203974pt;}
._19_c00242{width:23.998932pt;}
._1d_c00242{width:25.526609pt;}
._d_c00242{width:27.233209pt;}
._1a_c00242{width:29.051308pt;}
._15_c00242{width:155.575502pt;}
._16_c00242{width:252.783709pt;}
.fsa_c00242{font-size:64.666667pt;}
.fsc_c00242{font-size:65.333333pt;}
.fsd_c00242{font-size:66.666667pt;}
.fs5_c00242{font-size:69.333333pt;}
.fs0_c00242{font-size:70.000000pt;}
.fs6_c00242{font-size:70.666667pt;}
.fs1_c00242{font-size:71.333333pt;}
.fs8_c00242{font-size:72.000000pt;}
.fs2_c00242{font-size:72.666667pt;}
.fs7_c00242{font-size:73.333333pt;}
.fs9_c00242{font-size:74.000000pt;}
.fs3_c00242{font-size:75.333333pt;}
.fsb_c00242{font-size:76.666667pt;}
.fs4_c00242{font-size:102.666667pt;}
.y0_c00242{bottom:0.000000pt;}
.y2c_c00242{bottom:156.800013pt;}
.y2b_c00242{bottom:183.039587pt;}
.y2a_c00242{bottom:183.040307pt;}
.y28_c00242{bottom:210.238120pt;}
.y29_c00242{bottom:210.238787pt;}
.y27_c00242{bottom:236.479307pt;}
.y26_c00242{bottom:263.039067pt;}
.y24_c00242{bottom:289.278320pt;}
.y25_c00242{bottom:289.278787pt;}
.y23_c00242{bottom:341.438920pt;}
.y22_c00242{bottom:341.439173pt;}
.y21_c00242{bottom:360.640133pt;}
.y20_c00242{bottom:379.519040pt;}
.y1f_c00242{bottom:398.080120pt;}
.y1e_c00242{bottom:452.480147pt;}
.y1c_c00242{bottom:478.719200pt;}
.y1d_c00242{bottom:478.719720pt;}
.y1b_c00242{bottom:504.958787pt;}
.y1a_c00242{bottom:531.838707pt;}
.y19_c00242{bottom:557.759720pt;}
.y18_c00242{bottom:557.759893pt;}
.y17_c00242{bottom:584.319640pt;}
.y16_c00242{bottom:610.879400pt;}
.y15_c00242{bottom:637.759320pt;}
.y14_c00242{bottom:637.759480pt;}
.y12_c00242{bottom:663.998987pt;}
.y13_c00242{bottom:663.999067pt;}
.y10_c00242{bottom:690.878867pt;}
.y11_c00242{bottom:690.878907pt;}
.yf_c00242{bottom:717.758787pt;}
.ye_c00242{bottom:717.759587pt;}
.yd_c00242{bottom:744.319333pt;}
.yc_c00242{bottom:744.320133pt;}
.ya_c00242{bottom:770.878840pt;}
.yb_c00242{bottom:770.879880pt;}
.y9_c00242{bottom:797.438600pt;}
.y8_c00242{bottom:823.839213pt;}
.y7_c00242{bottom:850.559973pt;}
.y6_c00242{bottom:850.560187pt;}
.y5_c00242{bottom:877.119933pt;}
.y4_c00242{bottom:903.679693pt;}
.y3_c00242{bottom:903.680560pt;}
.y2_c00242{bottom:957.120240pt;}
.y1_c00242{bottom:1010.239747pt;}
.hd_c00242{height:63.466797pt;}
.h13_c00242{height:67.445312pt;}
.h7_c00242{height:68.046875pt;}
.h11_c00242{height:68.140625pt;}
.h1_c00242{height:68.701172pt;}
.h8_c00242{height:69.355469pt;}
.h12_c00242{height:69.531250pt;}
.hb_c00242{height:69.981865pt;}
.h2_c00242{height:70.009766pt;}
.h3_c00242{height:71.318359pt;}
.hf_c00242{height:71.890625pt;}
.h9_c00242{height:71.972656pt;}
.ha_c00242{height:72.562500pt;}
.hc_c00242{height:72.626953pt;}
.h6_c00242{height:73.007812pt;}
.he_c00242{height:73.234375pt;}
.h4_c00242{height:73.935547pt;}
.h10_c00242{height:75.768229pt;}
.h5_c00242{height:107.078125pt;}
.h0_c00242{height:1122.666667pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x4_c00242{left:125.438440pt;}
.x1_c00242{left:126.399867pt;}
.x20_c00242{left:174.079067pt;}
.x1d_c00242{left:175.359333pt;}
.x9_c00242{left:179.198667pt;}
.x5_c00242{left:182.078680pt;}
.xa_c00242{left:184.319867pt;}
.x1e_c00242{left:193.599587pt;}
.xb_c00242{left:195.199200pt;}
.x21_c00242{left:196.479467pt;}
.x1f_c00242{left:201.279720pt;}
.x6_c00242{left:207.358933pt;}
.x2e_c00242{left:208.960000pt;}
.x22_c00242{left:230.399453pt;}
.x13_c00242{left:239.039067pt;}
.x7_c00242{left:249.279720pt;}
.x1c_c00242{left:250.558533pt;}
.x14_c00242{left:251.838933pt;}
.x8_c00242{left:262.398920pt;}
.x15_c00242{left:271.999453pt;}
.xe_c00242{left:293.119587pt;}
.x16_c00242{left:305.279320pt;}
.xf_c00242{left:322.239200pt;}
.x23_c00242{left:326.078680pt;}
.x24_c00242{left:344.318813pt;}
.x25_c00242{left:390.399867pt;}
.x26_c00242{left:412.479453pt;}
.xc_c00242{left:428.799320pt;}
.x10_c00242{left:430.079587pt;}
.x27_c00242{left:432.319333pt;}
.x36_c00242{left:446.399453pt;}
.x11_c00242{left:448.639200pt;}
.x17_c00242{left:452.799320pt;}
.xd_c00242{left:454.079587pt;}
.x12_c00242{left:457.599573pt;}
.x18_c00242{left:470.078693pt;}
.x2f_c00242{left:488.958907pt;}
.x28_c00242{left:499.519040pt;}
.x30_c00242{left:516.799840pt;}
.x29_c00242{left:529.278773pt;}
.x31_c00242{left:556.479453pt;}
.x19_c00242{left:566.399453pt;}
.x2a_c00242{left:569.919440pt;}
.x1a_c00242{left:576.000000pt;}
.x1b_c00242{left:588.799840pt;}
.x32_c00242{left:592.639200pt;}
.x2b_c00242{left:606.399867pt;}
.x34_c00242{left:621.118693pt;}
.x35_c00242{left:633.599040pt;}
.x2_c00242{left:666.238773pt;}
.x33_c00242{left:668.479987pt;}
.x2c_c00242{left:670.398920pt;}
.x3_c00242{left:678.719200pt;}
.x2d_c00242{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b81eee95b2c565dd3fba5e5c.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_5d20d7a922bf5eae39483121.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_8fb662e324bf6709f02bd919.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00243{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.v1_c00243{vertical-align:1.433520px;}
.lsa_c00243{letter-spacing:-7.426125px;}
.ls9_c00243{letter-spacing:-6.685875px;}
.lse_c00243{letter-spacing:-6.000300px;}
.ls7_c00243{letter-spacing:-5.945625px;}
.ls3_c00243{letter-spacing:-5.196713px;}
.lsb_c00243{letter-spacing:-4.456463px;}
.ls6_c00243{letter-spacing:-3.717000px;}
.ls4_c00243{letter-spacing:-2.968875px;}
.lsc_c00243{letter-spacing:-2.358675px;}
.lsf_c00243{letter-spacing:-2.252250px;}
.ls1_c00243{letter-spacing:-2.229413px;}
.ls5_c00243{letter-spacing:-1.489163px;}
.ls2_c00243{letter-spacing:-0.740250px;}
.ls8_c00243{letter-spacing:0.000000px;}
.lsd_c00243{letter-spacing:1.799280px;}
.ls0_c00243{letter-spacing:7.426125px;}
.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;}
._17_c00243{margin-left:-6.617258px;}
._6_c00243{margin-left:-5.579571px;}
._3_c00243{margin-left:-4.245517px;}
._16_c00243{margin-left:-3.033985px;}
._7_c00243{margin-left:-1.415955px;}
._18_c00243{width:1.000392px;}
._1_c00243{width:2.039937px;}
._0_c00243{width:3.938644px;}
._2_c00243{width:5.878123px;}
._4_c00243{width:7.082136px;}
._b_c00243{width:8.914961px;}
._5_c00243{width:10.050402px;}
._a_c00243{width:11.331144px;}
._9_c00243{width:12.838642px;}
._19_c00243{width:13.891173px;}
._d_c00243{width:15.080016px;}
._f_c00243{width:16.217745px;}
._1a_c00243{width:17.446216px;}
._8_c00243{width:19.331372px;}
._e_c00243{width:21.319022px;}
._c_c00243{width:22.711470px;}
._11_c00243{width:24.730145px;}
._10_c00243{width:26.440654px;}
._15_c00243{width:28.871488px;}
._13_c00243{width:31.886856px;}
._14_c00243{width:33.352467px;}
._1e_c00243{width:34.867068px;}
._1b_c00243{width:38.887939px;}
._1c_c00243{width:41.406215px;}
._12_c00243{width:42.682530px;}
._1f_c00243{width:48.344625px;}
._1d_c00243{width:49.517614px;}
.fc0_c00243{color:transparent;}
.fs4_c00243{font-size:72.000000px;}
.fs0_c00243{font-size:78.750000px;}
.fs3_c00243{font-size:80.250000px;}
.fs2_c00243{font-size:82.500000px;}
.fs1_c00243{font-size:84.750000px;}
.fs6_c00243{font-size:96.000000px;}
.fs7_c00243{font-size:101.250000px;}
.fs5_c00243{font-size:115.500000px;}
.y0_c00243{bottom:0.000000px;}
.y25_c00243{bottom:181.799535px;}
.y24_c00243{bottom:203.038350px;}
.y22_c00243{bottom:224.278800px;}
.y23_c00243{bottom:224.279250px;}
.y21_c00243{bottom:245.519685px;}
.y20_c00243{bottom:305.277930px;}
.y1f_c00243{bottom:334.439070px;}
.y1e_c00243{bottom:364.318800px;}
.y1d_c00243{bottom:393.840135px;}
.y1c_c00243{bottom:393.840270px;}
.y1b_c00243{bottom:453.599715px;}
.y1a_c00243{bottom:513.719355px;}
.y19_c00243{bottom:543.599070px;}
.y18_c00243{bottom:543.599280px;}
.y17_c00243{bottom:573.118815px;}
.y16_c00243{bottom:602.640150px;}
.y15_c00243{bottom:602.640285px;}
.y14_c00243{bottom:632.159820px;}
.y13_c00243{bottom:632.160090px;}
.y12_c00243{bottom:662.039820px;}
.y11_c00243{bottom:691.919535px;}
.y10_c00243{bottom:691.921185px;}
.yf_c00243{bottom:722.702460px;}
.ye_c00243{bottom:781.920540px;}
.yd_c00243{bottom:812.160465px;}
.yc_c00243{bottom:842.040180px;}
.yb_c00243{bottom:871.919910px;}
.ya_c00243{bottom:902.159820px;}
.y9_c00243{bottom:902.161125px;}
.y8_c00243{bottom:931.680660px;}
.y7_c00243{bottom:961.560375px;}
.y6_c00243{bottom:991.079910px;}
.y4_c00243{bottom:1021.318605px;}
.y5_c00243{bottom:1021.319820px;}
.y3_c00243{bottom:1051.558530px;}
.y2_c00243{bottom:1081.438245px;}
.y1_c00243{bottom:1141.199805px;}
.h6_c00243{height:75.093750px;}
.h1_c00243{height:77.288818px;}
.h4_c00243{height:78.722338px;}
.h5_c00243{height:78.760986px;}
.h3_c00243{height:80.969238px;}
.h2_c00243{height:83.177490px;}
.h8_c00243{height:100.125000px;}
.h9_c00243{height:105.600586px;}
.h7_c00243{height:120.462891px;}
.h0_c00243{height:1263.000000px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:143.281740px;}
.x1_c00243{left:144.358665px;}
.x1d_c00243{left:198.717630px;}
.x12_c00243{left:199.798950px;}
.x13_c00243{left:214.559685px;}
.xd_c00243{left:217.438635px;}
.x14_c00243{left:221.039400px;}
.x15_c00243{left:232.919535px;}
.x7_c00243{left:254.878350px;}
.xe_c00243{left:264.599700px;}
.x8_c00243{left:293.399250px;}
.x5_c00243{left:301.319250px;}
.x6_c00243{left:317.518635px;}
.x3_c00243{left:336.598530px;}
.x4_c00243{left:352.799535px;}
.x1a_c00243{left:546.479685px;}
.x1b_c00243{left:552.598530px;}
.x1c_c00243{left:561.958920px;}
.xf_c00243{left:592.559685px;}
.x10_c00243{left:607.679670px;}
.x9_c00243{left:659.519070px;}
.xa_c00243{left:673.559685px;}
.x16_c00243{left:676.438620px;}
.xb_c00243{left:682.199850px;}
.x17_c00243{left:689.038920px;}
.xc_c00243{left:696.599670px;}
.x18_c00243{left:701.279850px;}
.x19_c00243{left:717.479235px;}
.x11_c00243{left:771.838530px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.v1_c00243{vertical-align:1.274240pt;}
.lsa_c00243{letter-spacing:-6.601000pt;}
.ls9_c00243{letter-spacing:-5.943000pt;}
.lse_c00243{letter-spacing:-5.333600pt;}
.ls7_c00243{letter-spacing:-5.285000pt;}
.ls3_c00243{letter-spacing:-4.619300pt;}
.lsb_c00243{letter-spacing:-3.961300pt;}
.ls6_c00243{letter-spacing:-3.304000pt;}
.ls4_c00243{letter-spacing:-2.639000pt;}
.lsc_c00243{letter-spacing:-2.096600pt;}
.lsf_c00243{letter-spacing:-2.002000pt;}
.ls1_c00243{letter-spacing:-1.981700pt;}
.ls5_c00243{letter-spacing:-1.323700pt;}
.ls2_c00243{letter-spacing:-0.658000pt;}
.ls8_c00243{letter-spacing:0.000000pt;}
.lsd_c00243{letter-spacing:1.599360pt;}
.ls0_c00243{letter-spacing:6.601000pt;}
.ws0_c00243{word-spacing:0.000000pt;}
._17_c00243{margin-left:-5.882008pt;}
._6_c00243{margin-left:-4.959619pt;}
._3_c00243{margin-left:-3.773792pt;}
._16_c00243{margin-left:-2.696875pt;}
._7_c00243{margin-left:-1.258626pt;}
._18_c00243{width:0.889238pt;}
._1_c00243{width:1.813277pt;}
._0_c00243{width:3.501017pt;}
._2_c00243{width:5.224998pt;}
._4_c00243{width:6.295232pt;}
._b_c00243{width:7.924409pt;}
._5_c00243{width:8.933691pt;}
._a_c00243{width:10.072128pt;}
._9_c00243{width:11.412126pt;}
._19_c00243{width:12.347709pt;}
._d_c00243{width:13.404458pt;}
._f_c00243{width:14.415774pt;}
._1a_c00243{width:15.507747pt;}
._8_c00243{width:17.183442pt;}
._e_c00243{width:18.950242pt;}
._c_c00243{width:20.187974pt;}
._11_c00243{width:21.982351pt;}
._10_c00243{width:23.502804pt;}
._15_c00243{width:25.663545pt;}
._13_c00243{width:28.343872pt;}
._14_c00243{width:29.646638pt;}
._1e_c00243{width:30.992949pt;}
._1b_c00243{width:34.567057pt;}
._1c_c00243{width:36.805525pt;}
._12_c00243{width:37.940026pt;}
._1f_c00243{width:42.973000pt;}
._1d_c00243{width:44.015657pt;}
.fs4_c00243{font-size:64.000000pt;}
.fs0_c00243{font-size:70.000000pt;}
.fs3_c00243{font-size:71.333333pt;}
.fs2_c00243{font-size:73.333333pt;}
.fs1_c00243{font-size:75.333333pt;}
.fs6_c00243{font-size:85.333333pt;}
.fs7_c00243{font-size:90.000000pt;}
.fs5_c00243{font-size:102.666667pt;}
.y0_c00243{bottom:0.000000pt;}
.y25_c00243{bottom:161.599587pt;}
.y24_c00243{bottom:180.478533pt;}
.y22_c00243{bottom:199.358933pt;}
.y23_c00243{bottom:199.359333pt;}
.y21_c00243{bottom:218.239720pt;}
.y20_c00243{bottom:271.358160pt;}
.y1f_c00243{bottom:297.279173pt;}
.y1e_c00243{bottom:323.838933pt;}
.y1d_c00243{bottom:350.080120pt;}
.y1c_c00243{bottom:350.080240pt;}
.y1b_c00243{bottom:403.199747pt;}
.y1a_c00243{bottom:456.639427pt;}
.y19_c00243{bottom:483.199173pt;}
.y18_c00243{bottom:483.199360pt;}
.y17_c00243{bottom:509.438947pt;}
.y16_c00243{bottom:535.680133pt;}
.y15_c00243{bottom:535.680253pt;}
.y14_c00243{bottom:561.919840pt;}
.y13_c00243{bottom:561.920080pt;}
.y12_c00243{bottom:588.479840pt;}
.y11_c00243{bottom:615.039587pt;}
.y10_c00243{bottom:615.041053pt;}
.yf_c00243{bottom:642.402187pt;}
.ye_c00243{bottom:695.040480pt;}
.yd_c00243{bottom:721.920413pt;}
.yc_c00243{bottom:748.480160pt;}
.yb_c00243{bottom:775.039920pt;}
.ya_c00243{bottom:801.919840pt;}
.y9_c00243{bottom:801.921000pt;}
.y8_c00243{bottom:828.160587pt;}
.y7_c00243{bottom:854.720333pt;}
.y6_c00243{bottom:880.959920pt;}
.y4_c00243{bottom:907.838760pt;}
.y5_c00243{bottom:907.839840pt;}
.y3_c00243{bottom:934.718693pt;}
.y2_c00243{bottom:961.278440pt;}
.y1_c00243{bottom:1014.399827pt;}
.h6_c00243{height:66.750000pt;}
.h1_c00243{height:68.701172pt;}
.h4_c00243{height:69.975412pt;}
.h5_c00243{height:70.009766pt;}
.h3_c00243{height:71.972656pt;}
.h2_c00243{height:73.935547pt;}
.h8_c00243{height:89.000000pt;}
.h9_c00243{height:93.867188pt;}
.h7_c00243{height:107.078125pt;}
.h0_c00243{height:1122.666667pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:127.361547pt;}
.x1_c00243{left:128.318813pt;}
.x1d_c00243{left:176.637893pt;}
.x12_c00243{left:177.599067pt;}
.x13_c00243{left:190.719720pt;}
.xd_c00243{left:193.278787pt;}
.x14_c00243{left:196.479467pt;}
.x15_c00243{left:207.039587pt;}
.x7_c00243{left:226.558533pt;}
.xe_c00243{left:235.199733pt;}
.x8_c00243{left:260.799333pt;}
.x5_c00243{left:267.839333pt;}
.x6_c00243{left:282.238787pt;}
.x3_c00243{left:299.198693pt;}
.x4_c00243{left:313.599587pt;}
.x1a_c00243{left:485.759720pt;}
.x1b_c00243{left:491.198693pt;}
.x1c_c00243{left:499.519040pt;}
.xf_c00243{left:526.719720pt;}
.x10_c00243{left:540.159707pt;}
.x9_c00243{left:586.239173pt;}
.xa_c00243{left:598.719720pt;}
.x16_c00243{left:601.278773pt;}
.xb_c00243{left:606.399867pt;}
.x17_c00243{left:612.479040pt;}
.xc_c00243{left:619.199707pt;}
.x18_c00243{left:623.359867pt;}
.x19_c00243{left:637.759320pt;}
.x11_c00243{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e60a5041a107143a8938c666.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_9ca15e08b94ab74a7d87942e.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.432129;font-style:normal;font-weight:normal;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_37b0363bdab4e363c369115d.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_f4f3fdec5d218c004356d89f.woff2')format("woff");}.ff4_c00244{font-family:ff4_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;}
.m1_c00244{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m16_c00244{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00244{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c00244{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m17_c00244{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{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_c00244{transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.lsb_c00244{letter-spacing:-8.889323px;}
.ls14_c00244{letter-spacing:-8.797680px;}
.lse_c00244{letter-spacing:-8.175038px;}
.ls12_c00244{letter-spacing:-7.004250px;}
.lsc_c00244{letter-spacing:-6.685875px;}
.ls3_c00244{letter-spacing:-5.945625px;}
.ls15_c00244{letter-spacing:-5.203125px;}
.ls7_c00244{letter-spacing:-5.196713px;}
.lsa_c00244{letter-spacing:-4.456463px;}
.ls13_c00244{letter-spacing:-4.289220px;}
.ls9_c00244{letter-spacing:-3.717000px;}
.ls10_c00244{letter-spacing:-3.375000px;}
.ls4_c00244{letter-spacing:-2.968875px;}
.ls16_c00244{letter-spacing:-2.272905px;}
.ls2_c00244{letter-spacing:-2.229413px;}
.ls17_c00244{letter-spacing:-2.144483px;}
.ls6_c00244{letter-spacing:-1.489163px;}
.lsd_c00244{letter-spacing:-1.334580px;}
.ls8_c00244{letter-spacing:-0.740250px;}
.ls5_c00244{letter-spacing:0.000000px;}
.ls1_c00244{letter-spacing:1.489163px;}
.ls0_c00244{letter-spacing:2.229413px;}
.ls11_c00244{letter-spacing:5.481000px;}
.lsf_c00244{letter-spacing:14.860913px;}
.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;}
._15_c00244{margin-left:-12.946084px;}
._1c_c00244{margin-left:-9.944699px;}
._1d_c00244{margin-left:-8.111369px;}
._10_c00244{margin-left:-5.597342px;}
._11_c00244{margin-left:-4.415780px;}
._6_c00244{margin-left:-3.152303px;}
._8_c00244{margin-left:-1.860342px;}
._1e_c00244{width:1.241070px;}
._5_c00244{width:2.280630px;}
._a_c00244{width:4.316926px;}
._16_c00244{width:5.609050px;}
._9_c00244{width:7.148672px;}
._17_c00244{width:8.223224px;}
._7_c00244{width:9.395410px;}
._d_c00244{width:10.720029px;}
._19_c00244{width:11.874638px;}
._e_c00244{width:13.234918px;}
._c_c00244{width:14.933630px;}
._1a_c00244{width:16.052058px;}
._18_c00244{width:17.451490px;}
._14_c00244{width:18.551479px;}
._4_c00244{width:19.762803px;}
._3_c00244{width:21.102816px;}
._0_c00244{width:22.416767px;}
._2_c00244{width:24.416051px;}
._b_c00244{width:25.693495px;}
._12_c00244{width:27.169315px;}
._f_c00244{width:28.609786px;}
._13_c00244{width:29.641857px;}
._1_c00244{width:30.791577px;}
._1f_c00244{width:31.851463px;}
._1b_c00244{width:33.761685px;}
._20_c00244{width:34.916769px;}
._22_c00244{width:36.918594px;}
._21_c00244{width:39.497701px;}
._23_c00244{width:40.956582px;}
.fc0_c00244{color:transparent;}
.fsc_c00244{font-size:62.250000px;}
.fs9_c00244{font-size:72.000000px;}
.fsa_c00244{font-size:72.750000px;}
.fsd_c00244{font-size:75.000000px;}
.fs10_c00244{font-size:75.750000px;}
.fs8_c00244{font-size:76.500000px;}
.fsb_c00244{font-size:78.000000px;}
.fs0_c00244{font-size:78.750000px;}
.fsf_c00244{font-size:79.500000px;}
.fs3_c00244{font-size:80.250000px;}
.fs4_c00244{font-size:82.500000px;}
.fse_c00244{font-size:83.250000px;}
.fs2_c00244{font-size:84.750000px;}
.fs1_c00244{font-size:87.000000px;}
.fs7_c00244{font-size:96.000000px;}
.fs6_c00244{font-size:115.500000px;}
.fs5_c00244{font-size:129.750000px;}
.y0_c00244{bottom:0.000000px;}
.y2f_c00244{bottom:200.159850px;}
.y2e_c00244{bottom:200.161740px;}
.y2d_c00244{bottom:230.041470px;}
.y2c_c00244{bottom:259.921185px;}
.y2a_c00244{bottom:289.079295px;}
.y2b_c00244{bottom:289.080000px;}
.y28_c00244{bottom:318.240375px;}
.y29_c00244{bottom:318.240435px;}
.y27_c00244{bottom:348.480285px;}
.y25_c00244{bottom:377.640405px;}
.y26_c00244{bottom:377.640750px;}
.y24_c00244{bottom:407.880315px;}
.y23_c00244{bottom:437.760045px;}
.y22_c00244{bottom:468.360450px;}
.y21_c00244{bottom:497.879970px;}
.y20_c00244{bottom:497.880300px;}
.y1f_c00244{bottom:527.399820px;}
.y1e_c00244{bottom:557.280435px;}
.y1d_c00244{bottom:557.280780px;}
.y1c_c00244{bottom:586.800315px;}
.y1b_c00244{bottom:616.680045px;}
.y1a_c00244{bottom:646.559760px;}
.y19_c00244{bottom:706.321305px;}
.y18_c00244{bottom:727.920600px;}
.y16_c00244{bottom:748.800105px;}
.y15_c00244{bottom:748.800585px;}
.y17_c00244{bottom:749.161005px;}
.y14_c00244{bottom:770.399865px;}
.y13_c00244{bottom:770.400195px;}
.y12_c00244{bottom:792.001275px;}
.y11_c00244{bottom:851.760720px;}
.y10_c00244{bottom:881.640450px;}
.yf_c00244{bottom:911.880360px;}
.yd_c00244{bottom:971.999520px;}
.ye_c00244{bottom:972.000000px;}
.yc_c00244{bottom:993.240420px;}
.ya_c00244{bottom:1014.118950px;}
.yb_c00244{bottom:1014.119940px;}
.y9_c00244{bottom:1035.359865px;}
.y8_c00244{bottom:1056.600765px;}
.y6_c00244{bottom:1077.839055px;}
.y7_c00244{bottom:1077.839535px;}
.y4_c00244{bottom:1099.079385px;}
.y5_c00244{bottom:1099.079955px;}
.y2_c00244{bottom:1120.319565px;}
.y3_c00244{bottom:1120.320285px;}
.y1_c00244{bottom:1142.280855px;}
.hd_c00244{height:61.520508px;}
.ha_c00244{height:70.664062px;}
.h13_c00244{height:74.344482px;}
.h9_c00244{height:75.080566px;}
.h10_c00244{height:75.093750px;}
.hb_c00244{height:75.875977px;}
.hc_c00244{height:76.552734px;}
.h1_c00244{height:77.288818px;}
.h12_c00244{height:78.024902px;}
.he_c00244{height:78.222656px;}
.h4_c00244{height:78.760986px;}
.h5_c00244{height:80.969238px;}
.h11_c00244{height:81.705322px;}
.hf_c00244{height:83.144531px;}
.h3_c00244{height:83.177490px;}
.h2_c00244{height:85.385742px;}
.h8_c00244{height:100.125000px;}
.h7_c00244{height:120.462891px;}
.h6_c00244{height:135.325195px;}
.h0_c00244{height:1263.000000px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x1a_c00244{left:142.558965px;}
.x35_c00244{left:155.518665px;}
.x1_c00244{left:197.279250px;}
.x1b_c00244{left:198.357300px;}
.x17_c00244{left:216.000000px;}
.x1c_c00244{left:252.358635px;}
.xe_c00244{left:263.159385px;}
.x1d_c00244{left:266.040000px;}
.x29_c00244{left:267.119385px;}
.xf_c00244{left:269.279850px;}
.xa_c00244{left:279.719535px;}
.x2a_c00244{left:282.598500px;}
.x10_c00244{left:283.679700px;}
.xb_c00244{left:285.838515px;}
.xc_c00244{left:295.559685px;}
.x18_c00244{left:296.639100px;}
.x11_c00244{left:301.678500px;}
.xd_c00244{left:309.239250px;}
.x20_c00244{left:322.918950px;}
.x19_c00244{left:327.599100px;}
.x2b_c00244{left:345.599700px;}
.x2c_c00244{left:362.159850px;}
.x6_c00244{left:375.478635px;}
.x30_c00244{left:385.559100px;}
.x7_c00244{left:388.798920px;}
.x21_c00244{left:406.799565px;}
.x2_c00244{left:412.918350px;}
.x3_c00244{left:431.639100px;}
.x3c_c00244{left:436.678530px;}
.x2f_c00244{left:452.159415px;}
.x2d_c00244{left:476.998950px;}
.x8_c00244{left:480.599670px;}
.x4_c00244{left:488.158770px;}
.x9_c00244{left:493.918350px;}
.x2e_c00244{left:501.119985px;}
.x5_c00244{left:506.879520px;}
.x15_c00244{left:515.519670px;}
.x22_c00244{left:526.679670px;}
.x16_c00244{left:534.599670px;}
.x23_c00244{left:545.039385px;}
.x24_c00244{left:580.679670px;}
.x3a_c00244{left:583.919535px;}
.x3b_c00244{left:606.239220px;}
.x13_c00244{left:617.039985px;}
.x31_c00244{left:621.359250px;}
.x14_c00244{left:636.119985px;}
.x25_c00244{left:648.718545px;}
.x32_c00244{left:653.039385px;}
.x1e_c00244{left:654.118785px;}
.x38_c00244{left:663.479235px;}
.x1f_c00244{left:668.159370px;}
.x39_c00244{left:677.878920px;}
.x26_c00244{left:694.798560px;}
.x33_c00244{left:702.718545px;}
.x36_c00244{left:711.719520px;}
.x27_c00244{left:713.159820px;}
.x34_c00244{left:717.479235px;}
.x37_c00244{left:731.878920px;}
.x28_c00244{left:767.878320px;}
.x12_c00244{left:775.798560px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.lsb_c00244{letter-spacing:-7.901620pt;}
.ls14_c00244{letter-spacing:-7.820160pt;}
.lse_c00244{letter-spacing:-7.266700pt;}
.ls12_c00244{letter-spacing:-6.226000pt;}
.lsc_c00244{letter-spacing:-5.943000pt;}
.ls3_c00244{letter-spacing:-5.285000pt;}
.ls15_c00244{letter-spacing:-4.625000pt;}
.ls7_c00244{letter-spacing:-4.619300pt;}
.lsa_c00244{letter-spacing:-3.961300pt;}
.ls13_c00244{letter-spacing:-3.812640pt;}
.ls9_c00244{letter-spacing:-3.304000pt;}
.ls10_c00244{letter-spacing:-3.000000pt;}
.ls4_c00244{letter-spacing:-2.639000pt;}
.ls16_c00244{letter-spacing:-2.020360pt;}
.ls2_c00244{letter-spacing:-1.981700pt;}
.ls17_c00244{letter-spacing:-1.906207pt;}
.ls6_c00244{letter-spacing:-1.323700pt;}
.lsd_c00244{letter-spacing:-1.186293pt;}
.ls8_c00244{letter-spacing:-0.658000pt;}
.ls5_c00244{letter-spacing:0.000000pt;}
.ls1_c00244{letter-spacing:1.323700pt;}
.ls0_c00244{letter-spacing:1.981700pt;}
.ls11_c00244{letter-spacing:4.872000pt;}
.lsf_c00244{letter-spacing:13.209700pt;}
.ws0_c00244{word-spacing:0.000000pt;}
._15_c00244{margin-left:-11.507630pt;}
._1c_c00244{margin-left:-8.839732pt;}
._1d_c00244{margin-left:-7.210106pt;}
._10_c00244{margin-left:-4.975415pt;}
._11_c00244{margin-left:-3.925138pt;}
._6_c00244{margin-left:-2.802047pt;}
._8_c00244{margin-left:-1.653638pt;}
._1e_c00244{width:1.103174pt;}
._5_c00244{width:2.027226pt;}
._a_c00244{width:3.837268pt;}
._16_c00244{width:4.985823pt;}
._9_c00244{width:6.354375pt;}
._17_c00244{width:7.309532pt;}
._7_c00244{width:8.351475pt;}
._d_c00244{width:9.528915pt;}
._19_c00244{width:10.555234pt;}
._e_c00244{width:11.764372pt;}
._c_c00244{width:13.274338pt;}
._1a_c00244{width:14.268496pt;}
._18_c00244{width:15.512436pt;}
._14_c00244{width:16.490204pt;}
._4_c00244{width:17.566936pt;}
._3_c00244{width:18.758058pt;}
._0_c00244{width:19.926015pt;}
._2_c00244{width:21.703157pt;}
._b_c00244{width:22.838662pt;}
._12_c00244{width:24.150502pt;}
._f_c00244{width:25.430921pt;}
._13_c00244{width:26.348317pt;}
._1_c00244{width:27.370291pt;}
._1f_c00244{width:28.312411pt;}
._1b_c00244{width:30.010387pt;}
._20_c00244{width:31.037128pt;}
._22_c00244{width:32.816528pt;}
._21_c00244{width:35.109068pt;}
._23_c00244{width:36.405851pt;}
.fsc_c00244{font-size:55.333333pt;}
.fs9_c00244{font-size:64.000000pt;}
.fsa_c00244{font-size:64.666667pt;}
.fsd_c00244{font-size:66.666667pt;}
.fs10_c00244{font-size:67.333333pt;}
.fs8_c00244{font-size:68.000000pt;}
.fsb_c00244{font-size:69.333333pt;}
.fs0_c00244{font-size:70.000000pt;}
.fsf_c00244{font-size:70.666667pt;}
.fs3_c00244{font-size:71.333333pt;}
.fs4_c00244{font-size:73.333333pt;}
.fse_c00244{font-size:74.000000pt;}
.fs2_c00244{font-size:75.333333pt;}
.fs1_c00244{font-size:77.333333pt;}
.fs7_c00244{font-size:85.333333pt;}
.fs6_c00244{font-size:102.666667pt;}
.fs5_c00244{font-size:115.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y2f_c00244{bottom:177.919867pt;}
.y2e_c00244{bottom:177.921547pt;}
.y2d_c00244{bottom:204.481307pt;}
.y2c_c00244{bottom:231.041053pt;}
.y2a_c00244{bottom:256.959373pt;}
.y2b_c00244{bottom:256.960000pt;}
.y28_c00244{bottom:282.880333pt;}
.y29_c00244{bottom:282.880387pt;}
.y27_c00244{bottom:309.760253pt;}
.y25_c00244{bottom:335.680360pt;}
.y26_c00244{bottom:335.680667pt;}
.y24_c00244{bottom:362.560280pt;}
.y23_c00244{bottom:389.120040pt;}
.y22_c00244{bottom:416.320400pt;}
.y21_c00244{bottom:442.559973pt;}
.y20_c00244{bottom:442.560267pt;}
.y1f_c00244{bottom:468.799840pt;}
.y1e_c00244{bottom:495.360387pt;}
.y1d_c00244{bottom:495.360693pt;}
.y1c_c00244{bottom:521.600280pt;}
.y1b_c00244{bottom:548.160040pt;}
.y1a_c00244{bottom:574.719787pt;}
.y19_c00244{bottom:627.841160pt;}
.y18_c00244{bottom:647.040533pt;}
.y16_c00244{bottom:665.600093pt;}
.y15_c00244{bottom:665.600520pt;}
.y17_c00244{bottom:665.920893pt;}
.y14_c00244{bottom:684.799880pt;}
.y13_c00244{bottom:684.800173pt;}
.y12_c00244{bottom:704.001133pt;}
.y11_c00244{bottom:757.120640pt;}
.y10_c00244{bottom:783.680400pt;}
.yf_c00244{bottom:810.560320pt;}
.yd_c00244{bottom:863.999573pt;}
.ye_c00244{bottom:864.000000pt;}
.yc_c00244{bottom:882.880373pt;}
.ya_c00244{bottom:901.439067pt;}
.yb_c00244{bottom:901.439947pt;}
.y9_c00244{bottom:920.319880pt;}
.y8_c00244{bottom:939.200680pt;}
.y6_c00244{bottom:958.079160pt;}
.y7_c00244{bottom:958.079587pt;}
.y4_c00244{bottom:976.959453pt;}
.y5_c00244{bottom:976.959960pt;}
.y2_c00244{bottom:995.839613pt;}
.y3_c00244{bottom:995.840253pt;}
.y1_c00244{bottom:1015.360760pt;}
.hd_c00244{height:54.684896pt;}
.ha_c00244{height:62.812500pt;}
.h13_c00244{height:66.083984pt;}
.h9_c00244{height:66.738281pt;}
.h10_c00244{height:66.750000pt;}
.hb_c00244{height:67.445312pt;}
.hc_c00244{height:68.046875pt;}
.h1_c00244{height:68.701172pt;}
.h12_c00244{height:69.355469pt;}
.he_c00244{height:69.531250pt;}
.h4_c00244{height:70.009766pt;}
.h5_c00244{height:71.972656pt;}
.h11_c00244{height:72.626953pt;}
.hf_c00244{height:73.906250pt;}
.h3_c00244{height:73.935547pt;}
.h2_c00244{height:75.898438pt;}
.h8_c00244{height:89.000000pt;}
.h7_c00244{height:107.078125pt;}
.h6_c00244{height:120.289062pt;}
.h0_c00244{height:1122.666667pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x1a_c00244{left:126.719080pt;}
.x35_c00244{left:138.238813pt;}
.x1_c00244{left:175.359333pt;}
.x1b_c00244{left:176.317600pt;}
.x17_c00244{left:192.000000pt;}
.x1c_c00244{left:224.318787pt;}
.xe_c00244{left:233.919453pt;}
.x1d_c00244{left:236.480000pt;}
.x29_c00244{left:237.439453pt;}
.xf_c00244{left:239.359867pt;}
.xa_c00244{left:248.639587pt;}
.x2a_c00244{left:251.198667pt;}
.x10_c00244{left:252.159733pt;}
.xb_c00244{left:254.078680pt;}
.xc_c00244{left:262.719720pt;}
.x18_c00244{left:263.679200pt;}
.x11_c00244{left:268.158667pt;}
.xd_c00244{left:274.879333pt;}
.x20_c00244{left:287.039067pt;}
.x19_c00244{left:291.199200pt;}
.x2b_c00244{left:307.199733pt;}
.x2c_c00244{left:321.919867pt;}
.x6_c00244{left:333.758787pt;}
.x30_c00244{left:342.719200pt;}
.x7_c00244{left:345.599040pt;}
.x21_c00244{left:361.599613pt;}
.x2_c00244{left:367.038533pt;}
.x3_c00244{left:383.679200pt;}
.x3c_c00244{left:388.158693pt;}
.x2f_c00244{left:401.919480pt;}
.x2d_c00244{left:423.999067pt;}
.x8_c00244{left:427.199707pt;}
.x4_c00244{left:433.918907pt;}
.x9_c00244{left:439.038533pt;}
.x2e_c00244{left:445.439987pt;}
.x5_c00244{left:450.559573pt;}
.x15_c00244{left:458.239707pt;}
.x22_c00244{left:468.159707pt;}
.x16_c00244{left:475.199707pt;}
.x23_c00244{left:484.479453pt;}
.x24_c00244{left:516.159707pt;}
.x3a_c00244{left:519.039587pt;}
.x3b_c00244{left:538.879307pt;}
.x13_c00244{left:548.479987pt;}
.x31_c00244{left:552.319333pt;}
.x14_c00244{left:565.439987pt;}
.x25_c00244{left:576.638707pt;}
.x32_c00244{left:580.479453pt;}
.x1e_c00244{left:581.438920pt;}
.x38_c00244{left:589.759320pt;}
.x1f_c00244{left:593.919440pt;}
.x39_c00244{left:602.559040pt;}
.x26_c00244{left:617.598720pt;}
.x33_c00244{left:624.638707pt;}
.x36_c00244{left:632.639573pt;}
.x27_c00244{left:633.919840pt;}
.x34_c00244{left:637.759320pt;}
.x37_c00244{left:650.559040pt;}
.x28_c00244{left:682.558507pt;}
.x12_c00244{left:689.598720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d8385f136cc7455da11f062.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_76f041394773c9b62d2bf04a.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;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_dd7e8bdac0bc5305e9e4ea89.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_6033f9b3e8c7f9668b095d9c.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff5_c00245{font-family:ff5_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;}
.m1f_c00245{transform:matrix(0.105882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105882,0.000000,0.000000,0.250000,0,0);}
.m23_c00245{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m29_c00245{transform:matrix(0.111702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111702,0.000000,0.000000,0.250000,0,0);}
.m20_c00245{transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);}
.m24_c00245{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m2b_c00245{transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);}
.m28_c00245{transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134615,0.000000,0.000000,0.250000,0,0);}
.m26_c00245{transform:matrix(0.141566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141566,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144231,0.000000,0.000000,0.250000,0,0);}
.m1e_c00245{transform:matrix(0.145570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145570,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m16_c00245{transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);}
.m15_c00245{transform:matrix(0.159836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159836,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);}
.m1d_c00245{transform:matrix(0.162338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162338,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m25_c00245{transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.174051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174051,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m9_c00245{transform:matrix(0.177966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177966,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m13_c00245{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.m22_c00245{transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189815,0.000000,0.000000,0.250000,0,0);}
.m17_c00245{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m19_c00245{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.215789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215789,0.000000,0.000000,0.250000,0,0);}
.m1b_c00245{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);}
.m1a_c00245{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{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_c00245{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.md_c00245{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.m27_c00245{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m2a_c00245{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_c00245{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);}
.m1c_c00245{transform:matrix(0.309524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309524,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls12_c00245{letter-spacing:-16.022273px;}
.ls22_c00245{letter-spacing:-11.752350px;}
.lsf_c00245{letter-spacing:-7.181100px;}
.ls1d_c00245{letter-spacing:-7.028775px;}
.ls15_c00245{letter-spacing:-6.867668px;}
.ls23_c00245{letter-spacing:-5.854643px;}
.ls18_c00245{letter-spacing:-3.511050px;}
.ls14_c00245{letter-spacing:-1.738500px;}
.ls16_c00245{letter-spacing:-1.168125px;}
.ls10_c00245{letter-spacing:-1.050000px;}
.ls11_c00245{letter-spacing:0.000000px;}
.lse_c00245{letter-spacing:1.073250px;}
.lsd_c00245{letter-spacing:1.078350px;}
.ls4_c00245{letter-spacing:1.168125px;}
.ls7_c00245{letter-spacing:2.342925px;}
.ls8_c00245{letter-spacing:3.511050px;}
.ls19_c00245{letter-spacing:3.672000px;}
.ls5_c00245{letter-spacing:4.686518px;}
.ls1c_c00245{letter-spacing:4.896000px;}
.ls9_c00245{letter-spacing:5.854643px;}
.lsc_c00245{letter-spacing:6.120600px;}
.ls21_c00245{letter-spacing:6.623400px;}
.ls1_c00245{letter-spacing:7.028775px;}
.ls20_c00245{letter-spacing:7.350000px;}
.ls0_c00245{letter-spacing:8.196900px;}
.ls1a_c00245{letter-spacing:8.854875px;}
.lsa_c00245{letter-spacing:9.371700px;}
.ls1e_c00245{letter-spacing:10.502100px;}
.ls6_c00245{letter-spacing:10.539825px;}
.ls1f_c00245{letter-spacing:11.025000px;}
.ls17_c00245{letter-spacing:11.707950px;}
.ls24_c00245{letter-spacing:12.714975px;}
.ls3_c00245{letter-spacing:12.882083px;}
.ls1b_c00245{letter-spacing:12.900000px;}
.ls13_c00245{letter-spacing:15.225675px;}
.lsb_c00245{letter-spacing:16.394468px;}
.ls2_c00245{letter-spacing:18.736725px;}
.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;}
._e_c00245{margin-left:-48.687942px;}
._14_c00245{margin-left:-25.217482px;}
._3_c00245{margin-left:-17.662120px;}
._5_c00245{margin-left:-8.133523px;}
._4_c00245{margin-left:-5.710123px;}
._11_c00245{margin-left:-4.477332px;}
._15_c00245{margin-left:-2.676488px;}
._0_c00245{width:3.405889px;}
._c_c00245{width:6.822037px;}
._1_c00245{width:9.539020px;}
._12_c00245{width:10.973513px;}
._2_c00245{width:12.094959px;}
._6_c00245{width:14.322302px;}
._d_c00245{width:15.472603px;}
._7_c00245{width:17.715872px;}
._10_c00245{width:19.117200px;}
._13_c00245{width:21.039577px;}
._9_c00245{width:22.415259px;}
._8_c00245{width:24.671081px;}
._a_c00245{width:27.087572px;}
._b_c00245{width:31.352358px;}
._19_c00245{width:39.856823px;}
._16_c00245{width:41.285179px;}
._18_c00245{width:42.960886px;}
._f_c00245{width:196.482317px;}
._17_c00245{width:304.944534px;}
.fc0_c00245{color:transparent;}
.fs12_c00245{font-size:26.250000px;}
.fs4_c00245{font-size:31.500000px;}
.fsd_c00245{font-size:33.750000px;}
.fs9_c00245{font-size:35.250000px;}
.fs7_c00245{font-size:37.500000px;}
.fsb_c00245{font-size:39.000000px;}
.fsc_c00245{font-size:40.500000px;}
.fsa_c00245{font-size:41.250000px;}
.fs6_c00245{font-size:44.250000px;}
.fs10_c00245{font-size:45.750000px;}
.fs8_c00245{font-size:47.250000px;}
.fs11_c00245{font-size:56.250000px;}
.fs13_c00245{font-size:57.750000px;}
.fs2_c00245{font-size:59.250000px;}
.fs1_c00245{font-size:60.000000px;}
.fs18_c00245{font-size:60.750000px;}
.fsf_c00245{font-size:62.250000px;}
.fs16_c00245{font-size:63.000000px;}
.fs14_c00245{font-size:63.750000px;}
.fs15_c00245{font-size:64.500000px;}
.fs0_c00245{font-size:66.750000px;}
.fs3_c00245{font-size:67.500000px;}
.fs5_c00245{font-size:69.750000px;}
.fs17_c00245{font-size:70.500000px;}
.fse_c00245{font-size:71.250000px;}
.y0_c00245{bottom:0.000000px;}
.y66_c00245{bottom:315.720750px;}
.y65_c00245{bottom:373.319850px;}
.y33_c00245{bottom:374.039595px;}
.y19_c00245{bottom:374.040000px;}
.y32_c00245{bottom:397.799220px;}
.y4d_c00245{bottom:397.800150px;}
.y64_c00245{bottom:403.200435px;}
.y18_c00245{bottom:403.920600px;}
.y4c_c00245{bottom:420.840015px;}
.y31_c00245{bottom:421.200045px;}
.y17_c00245{bottom:421.201035px;}
.y4a_c00245{bottom:444.240045px;}
.y4b_c00245{bottom:444.240870px;}
.y30_c00245{bottom:444.599370px;}
.y63_c00245{bottom:450.000600px;}
.y16_c00245{bottom:450.720750px;}
.y62_c00245{bottom:468.001050px;}
.y49_c00245{bottom:468.360240px;}
.y2f_c00245{bottom:468.719565px;}
.y15_c00245{bottom:475.201035px;}
.y48_c00245{bottom:491.759535px;}
.y61_c00245{bottom:497.520720px;}
.y2e_c00245{bottom:498.240870px;}
.y14_c00245{bottom:498.600135px;}
.y47_c00245{bottom:514.800090px;}
.y60_c00245{bottom:520.560750px;}
.y2d_c00245{bottom:521.280900px;}
.y13_c00245{bottom:521.640240px;}
.y5f_c00245{bottom:537.480285px;}
.y46_c00245{bottom:538.200945px;}
.y2c_c00245{bottom:538.559685px;}
.y12_c00245{bottom:544.680135px;}
.y45_c00245{bottom:561.960570px;}
.y5e_c00245{bottom:567.360900px;}
.y2b_c00245{bottom:568.081050px;}
.y11_c00245{bottom:568.440315px;}
.y5d_c00245{bottom:584.639700px;}
.y44_c00245{bottom:585.359865px;}
.y2a_c00245{bottom:585.720750px;}
.y29_c00245{bottom:585.721485px;}
.y10_c00245{bottom:592.200735px;}
.y43_c00245{bottom:608.760720px;}
.y28_c00245{bottom:609.120810px;}
.y5c_c00245{bottom:614.520270px;}
.yf_c00245{bottom:615.599670px;}
.y27_c00245{bottom:632.880435px;}
.y5b_c00245{bottom:637.921185px;}
.y42_c00245{bottom:638.639700px;}
.ye_c00245{bottom:639.359850px;}
.y5a_c00245{bottom:655.199850px;}
.y41_c00245{bottom:655.920495px;}
.y26_c00245{bottom:656.281290px;}
.yd_c00245{bottom:656.640180px;}
.y40_c00245{bottom:679.321335px;}
.y25_c00245{bottom:680.040900px;}
.yc_c00245{bottom:680.041035px;}
.y59_c00245{bottom:685.080420px;}
.y3f_c00245{bottom:703.080960px;}
.y24_c00245{bottom:703.440210px;}
.y58_c00245{bottom:708.120435px;}
.yb_c00245{bottom:709.199850px;}
.y57_c00245{bottom:725.760135px;}
.y3e_c00245{bottom:726.480285px;}
.y23_c00245{bottom:726.839535px;}
.ya_c00245{bottom:732.960180px;}
.y22_c00245{bottom:750.960570px;}
.y56_c00245{bottom:755.279850px;}
.y3d_c00245{bottom:756.000000px;}
.y9_c00245{bottom:756.720105px;}
.y55_c00245{bottom:772.921140px;}
.y3c_c00245{bottom:773.639760px;}
.y8_c00245{bottom:774.000555px;}
.y21_c00245{bottom:774.002475px;}
.y54_c00245{bottom:796.320285px;}
.y3b_c00245{bottom:797.040615px;}
.y20_c00245{bottom:797.401800px;}
.y7_c00245{bottom:803.879520px;}
.y1f_c00245{bottom:821.161425px;}
.y53_c00245{bottom:826.200990px;}
.y3a_c00245{bottom:826.921140px;}
.y6_c00245{bottom:827.639655px;}
.y1e_c00245{bottom:844.921050px;}
.y52_c00245{bottom:849.961035px;}
.y39_c00245{bottom:850.679715px;}
.y5_c00245{bottom:851.399865px;}
.y51_c00245{bottom:867.239865px;}
.y38_c00245{bottom:867.959970px;}
.y1d_c00245{bottom:868.321890px;}
.y4_c00245{bottom:868.680090px;}
.y37_c00245{bottom:891.719580px;}
.y1c_c00245{bottom:892.081515px;}
.y50_c00245{bottom:896.759490px;}
.y3_c00245{bottom:898.560705px;}
.y4f_c00245{bottom:914.039985px;}
.y35_c00245{bottom:914.759805px;}
.y36_c00245{bottom:914.760135px;}
.y1b_c00245{bottom:915.480840px;}
.y2_c00245{bottom:915.840270px;}
.y4e_c00245{bottom:960.840090px;}
.y34_c00245{bottom:961.920270px;}
.y1a_c00245{bottom:962.280990px;}
.y1_c00245{bottom:1021.680720px;}
.h13_c00245{height:27.377930px;}
.h5_c00245{height:31.130859px;}
.he_c00245{height:33.354492px;}
.ha_c00245{height:36.764648px;}
.h8_c00245{height:39.111328px;}
.h17_c00245{height:40.025391px;}
.hc_c00245{height:40.675781px;}
.hb_c00245{height:40.766602px;}
.hd_c00245{height:42.240234px;}
.h7_c00245{height:43.731445px;}
.h11_c00245{height:45.213867px;}
.h9_c00245{height:46.696289px;}
.h12_c00245{height:55.206299px;}
.h14_c00245{height:60.231445px;}
.h10_c00245{height:61.094971px;}
.h3_c00245{height:61.795898px;}
.h18_c00245{height:61.831055px;}
.h15_c00245{height:62.567139px;}
.h2_c00245{height:62.578125px;}
.h16_c00245{height:63.303223px;}
.h1b_c00245{height:63.360352px;}
.h19_c00245{height:64.924805px;}
.h1_c00245{height:65.511475px;}
.h4_c00245{height:66.247559px;}
.h6_c00245{height:68.455811px;}
.h1a_c00245{height:69.673828px;}
.hf_c00245{height:69.927979px;}
.h0_c00245{height:1263.000000px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:172.439715px;}
.x2e_c00245{left:176.759100px;}
.xa_c00245{left:184.319565px;}
.xc_c00245{left:195.118785px;}
.xb_c00245{left:196.199850px;}
.xd_c00245{left:200.519100px;}
.x2_c00245{left:213.478635px;}
.x3_c00245{left:237.238785px;}
.xe_c00245{left:265.319565px;}
.xf_c00245{left:266.399145px;}
.x10_c00245{left:271.799535px;}
.x11_c00245{left:276.838950px;}
.x12_c00245{left:282.598500px;}
.x4_c00245{left:306.719535px;}
.x5_c00245{left:347.399235px;}
.x6_c00245{left:364.679700px;}
.x7_c00245{left:393.838530px;}
.x1e_c00245{left:427.319820px;}
.x13_c00245{left:428.399625px;}
.x1c_c00245{left:429.479775px;}
.x1b_c00245{left:440.279250px;}
.x17_c00245{left:446.399820px;}
.x1d_c00245{left:486.000000px;}
.x18_c00245{left:492.479685px;}
.x14_c00245{left:510.119385px;}
.x1f_c00245{left:514.799520px;}
.x15_c00245{left:521.638500px;}
.x20_c00245{left:526.318770px;}
.x19_c00245{left:527.399820px;}
.x16_c00245{left:532.798515px;}
.x1a_c00245{left:562.679070px;}
.x8_c00245{left:585.719100px;}
.x9_c00245{left:609.119985px;}
.x29_c00245{left:631.439670px;}
.x21_c00245{left:632.878320px;}
.x24_c00245{left:644.399235px;}
.x2c_c00245{left:678.958335px;}
.x2b_c00245{left:683.999400px;}
.x22_c00245{left:685.078770px;}
.x27_c00245{left:695.879520px;}
.x25_c00245{left:696.958920px;}
.x2d_c00245{left:702.359250px;}
.x2a_c00245{left:707.398635px;}
.x23_c00245{left:708.479685px;}
.x26_c00245{left:713.878320px;}
.x28_c00245{left:719.639700px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls12_c00245{letter-spacing:-14.242020pt;}
.ls22_c00245{letter-spacing:-10.446533pt;}
.lsf_c00245{letter-spacing:-6.383200pt;}
.ls1d_c00245{letter-spacing:-6.247800pt;}
.ls15_c00245{letter-spacing:-6.104593pt;}
.ls23_c00245{letter-spacing:-5.204127pt;}
.ls18_c00245{letter-spacing:-3.120933pt;}
.ls14_c00245{letter-spacing:-1.545333pt;}
.ls16_c00245{letter-spacing:-1.038333pt;}
.ls10_c00245{letter-spacing:-0.933333pt;}
.ls11_c00245{letter-spacing:0.000000pt;}
.lse_c00245{letter-spacing:0.954000pt;}
.lsd_c00245{letter-spacing:0.958533pt;}
.ls4_c00245{letter-spacing:1.038333pt;}
.ls7_c00245{letter-spacing:2.082600pt;}
.ls8_c00245{letter-spacing:3.120933pt;}
.ls19_c00245{letter-spacing:3.264000pt;}
.ls5_c00245{letter-spacing:4.165793pt;}
.ls1c_c00245{letter-spacing:4.352000pt;}
.ls9_c00245{letter-spacing:5.204127pt;}
.lsc_c00245{letter-spacing:5.440533pt;}
.ls21_c00245{letter-spacing:5.887467pt;}
.ls1_c00245{letter-spacing:6.247800pt;}
.ls20_c00245{letter-spacing:6.533333pt;}
.ls0_c00245{letter-spacing:7.286133pt;}
.ls1a_c00245{letter-spacing:7.871000pt;}
.lsa_c00245{letter-spacing:8.330400pt;}
.ls1e_c00245{letter-spacing:9.335200pt;}
.ls6_c00245{letter-spacing:9.368733pt;}
.ls1f_c00245{letter-spacing:9.800000pt;}
.ls17_c00245{letter-spacing:10.407067pt;}
.ls24_c00245{letter-spacing:11.302200pt;}
.ls3_c00245{letter-spacing:11.450740pt;}
.ls1b_c00245{letter-spacing:11.466667pt;}
.ls13_c00245{letter-spacing:13.533933pt;}
.lsb_c00245{letter-spacing:14.572860pt;}
.ls2_c00245{letter-spacing:16.654867pt;}
.ws0_c00245{word-spacing:0.000000pt;}
._e_c00245{margin-left:-43.278171pt;}
._14_c00245{margin-left:-22.415540pt;}
._3_c00245{margin-left:-15.699662pt;}
._5_c00245{margin-left:-7.229798pt;}
._4_c00245{margin-left:-5.075665pt;}
._11_c00245{margin-left:-3.979851pt;}
._15_c00245{margin-left:-2.379100pt;}
._0_c00245{width:3.027457pt;}
._c_c00245{width:6.064033pt;}
._1_c00245{width:8.479129pt;}
._12_c00245{width:9.754233pt;}
._2_c00245{width:10.751075pt;}
._6_c00245{width:12.730935pt;}
._d_c00245{width:13.753425pt;}
._7_c00245{width:15.747441pt;}
._10_c00245{width:16.993067pt;}
._13_c00245{width:18.701846pt;}
._9_c00245{width:19.924675pt;}
._8_c00245{width:21.929850pt;}
._a_c00245{width:24.077841pt;}
._b_c00245{width:27.868763pt;}
._19_c00245{width:35.428287pt;}
._16_c00245{width:36.697937pt;}
._18_c00245{width:38.187454pt;}
._f_c00245{width:174.650949pt;}
._17_c00245{width:271.061808pt;}
.fs12_c00245{font-size:23.333333pt;}
.fs4_c00245{font-size:28.000000pt;}
.fsd_c00245{font-size:30.000000pt;}
.fs9_c00245{font-size:31.333333pt;}
.fs7_c00245{font-size:33.333333pt;}
.fsb_c00245{font-size:34.666667pt;}
.fsc_c00245{font-size:36.000000pt;}
.fsa_c00245{font-size:36.666667pt;}
.fs6_c00245{font-size:39.333333pt;}
.fs10_c00245{font-size:40.666667pt;}
.fs8_c00245{font-size:42.000000pt;}
.fs11_c00245{font-size:50.000000pt;}
.fs13_c00245{font-size:51.333333pt;}
.fs2_c00245{font-size:52.666667pt;}
.fs1_c00245{font-size:53.333333pt;}
.fs18_c00245{font-size:54.000000pt;}
.fsf_c00245{font-size:55.333333pt;}
.fs16_c00245{font-size:56.000000pt;}
.fs14_c00245{font-size:56.666667pt;}
.fs15_c00245{font-size:57.333333pt;}
.fs0_c00245{font-size:59.333333pt;}
.fs3_c00245{font-size:60.000000pt;}
.fs5_c00245{font-size:62.000000pt;}
.fs17_c00245{font-size:62.666667pt;}
.fse_c00245{font-size:63.333333pt;}
.y0_c00245{bottom:0.000000pt;}
.y66_c00245{bottom:280.640667pt;}
.y65_c00245{bottom:331.839867pt;}
.y33_c00245{bottom:332.479640pt;}
.y19_c00245{bottom:332.480000pt;}
.y32_c00245{bottom:353.599307pt;}
.y4d_c00245{bottom:353.600133pt;}
.y64_c00245{bottom:358.400387pt;}
.y18_c00245{bottom:359.040533pt;}
.y4c_c00245{bottom:374.080013pt;}
.y31_c00245{bottom:374.400040pt;}
.y17_c00245{bottom:374.400920pt;}
.y4a_c00245{bottom:394.880040pt;}
.y4b_c00245{bottom:394.880773pt;}
.y30_c00245{bottom:395.199440pt;}
.y63_c00245{bottom:400.000533pt;}
.y16_c00245{bottom:400.640667pt;}
.y62_c00245{bottom:416.000933pt;}
.y49_c00245{bottom:416.320213pt;}
.y2f_c00245{bottom:416.639613pt;}
.y15_c00245{bottom:422.400920pt;}
.y48_c00245{bottom:437.119587pt;}
.y61_c00245{bottom:442.240640pt;}
.y2e_c00245{bottom:442.880773pt;}
.y14_c00245{bottom:443.200120pt;}
.y47_c00245{bottom:457.600080pt;}
.y60_c00245{bottom:462.720667pt;}
.y2d_c00245{bottom:463.360800pt;}
.y13_c00245{bottom:463.680213pt;}
.y5f_c00245{bottom:477.760253pt;}
.y46_c00245{bottom:478.400840pt;}
.y2c_c00245{bottom:478.719720pt;}
.y12_c00245{bottom:484.160120pt;}
.y45_c00245{bottom:499.520507pt;}
.y5e_c00245{bottom:504.320800pt;}
.y2b_c00245{bottom:504.960933pt;}
.y11_c00245{bottom:505.280280pt;}
.y5d_c00245{bottom:519.679733pt;}
.y44_c00245{bottom:520.319880pt;}
.y2a_c00245{bottom:520.640667pt;}
.y29_c00245{bottom:520.641320pt;}
.y10_c00245{bottom:526.400653pt;}
.y43_c00245{bottom:541.120640pt;}
.y28_c00245{bottom:541.440720pt;}
.y5c_c00245{bottom:546.240240pt;}
.yf_c00245{bottom:547.199707pt;}
.y27_c00245{bottom:562.560387pt;}
.y5b_c00245{bottom:567.041053pt;}
.y42_c00245{bottom:567.679733pt;}
.ye_c00245{bottom:568.319867pt;}
.y5a_c00245{bottom:582.399867pt;}
.y41_c00245{bottom:583.040440pt;}
.y26_c00245{bottom:583.361147pt;}
.yd_c00245{bottom:583.680160pt;}
.y40_c00245{bottom:603.841187pt;}
.y25_c00245{bottom:604.480800pt;}
.yc_c00245{bottom:604.480920pt;}
.y59_c00245{bottom:608.960373pt;}
.y3f_c00245{bottom:624.960853pt;}
.y24_c00245{bottom:625.280187pt;}
.y58_c00245{bottom:629.440387pt;}
.yb_c00245{bottom:630.399867pt;}
.y57_c00245{bottom:645.120120pt;}
.y3e_c00245{bottom:645.760253pt;}
.y23_c00245{bottom:646.079587pt;}
.ya_c00245{bottom:651.520160pt;}
.y22_c00245{bottom:667.520507pt;}
.y56_c00245{bottom:671.359867pt;}
.y3d_c00245{bottom:672.000000pt;}
.y9_c00245{bottom:672.640093pt;}
.y55_c00245{bottom:687.041013pt;}
.y3c_c00245{bottom:687.679787pt;}
.y8_c00245{bottom:688.000493pt;}
.y21_c00245{bottom:688.002200pt;}
.y54_c00245{bottom:707.840253pt;}
.y3b_c00245{bottom:708.480547pt;}
.y20_c00245{bottom:708.801600pt;}
.y7_c00245{bottom:714.559573pt;}
.y1f_c00245{bottom:729.921267pt;}
.y53_c00245{bottom:734.400880pt;}
.y3a_c00245{bottom:735.041013pt;}
.y6_c00245{bottom:735.679693pt;}
.y1e_c00245{bottom:751.040933pt;}
.y52_c00245{bottom:755.520920pt;}
.y39_c00245{bottom:756.159747pt;}
.y5_c00245{bottom:756.799880pt;}
.y51_c00245{bottom:770.879880pt;}
.y38_c00245{bottom:771.519973pt;}
.y1d_c00245{bottom:771.841680pt;}
.y4_c00245{bottom:772.160080pt;}
.y37_c00245{bottom:792.639627pt;}
.y1c_c00245{bottom:792.961347pt;}
.y50_c00245{bottom:797.119547pt;}
.y3_c00245{bottom:798.720627pt;}
.y4f_c00245{bottom:812.479987pt;}
.y35_c00245{bottom:813.119827pt;}
.y36_c00245{bottom:813.120120pt;}
.y1b_c00245{bottom:813.760747pt;}
.y2_c00245{bottom:814.080240pt;}
.y4e_c00245{bottom:854.080080pt;}
.y34_c00245{bottom:855.040240pt;}
.y1a_c00245{bottom:855.360880pt;}
.y1_c00245{bottom:908.160640pt;}
.h13_c00245{height:24.335938pt;}
.h5_c00245{height:27.671875pt;}
.he_c00245{height:29.648437pt;}
.ha_c00245{height:32.679688pt;}
.h8_c00245{height:34.765625pt;}
.h17_c00245{height:35.578125pt;}
.hc_c00245{height:36.156250pt;}
.hb_c00245{height:36.236979pt;}
.hd_c00245{height:37.546875pt;}
.h7_c00245{height:38.872396pt;}
.h11_c00245{height:40.190104pt;}
.h9_c00245{height:41.507812pt;}
.h12_c00245{height:49.072266pt;}
.h14_c00245{height:53.539062pt;}
.h10_c00245{height:54.306641pt;}
.h3_c00245{height:54.929688pt;}
.h18_c00245{height:54.960938pt;}
.h15_c00245{height:55.615234pt;}
.h2_c00245{height:55.625000pt;}
.h16_c00245{height:56.269531pt;}
.h1b_c00245{height:56.320312pt;}
.h19_c00245{height:57.710938pt;}
.h1_c00245{height:58.232422pt;}
.h4_c00245{height:58.886719pt;}
.h6_c00245{height:60.849609pt;}
.h1a_c00245{height:61.932292pt;}
.hf_c00245{height:62.158203pt;}
.h0_c00245{height:1122.666667pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:153.279747pt;}
.x2e_c00245{left:157.119200pt;}
.xa_c00245{left:163.839613pt;}
.xc_c00245{left:173.438920pt;}
.xb_c00245{left:174.399867pt;}
.xd_c00245{left:178.239200pt;}
.x2_c00245{left:189.758787pt;}
.x3_c00245{left:210.878920pt;}
.xe_c00245{left:235.839613pt;}
.xf_c00245{left:236.799240pt;}
.x10_c00245{left:241.599587pt;}
.x11_c00245{left:246.079067pt;}
.x12_c00245{left:251.198667pt;}
.x4_c00245{left:272.639587pt;}
.x5_c00245{left:308.799320pt;}
.x6_c00245{left:324.159733pt;}
.x7_c00245{left:350.078693pt;}
.x1e_c00245{left:379.839840pt;}
.x13_c00245{left:380.799667pt;}
.x1c_c00245{left:381.759800pt;}
.x1b_c00245{left:391.359333pt;}
.x17_c00245{left:396.799840pt;}
.x1d_c00245{left:432.000000pt;}
.x18_c00245{left:437.759720pt;}
.x14_c00245{left:453.439453pt;}
.x1f_c00245{left:457.599573pt;}
.x15_c00245{left:463.678667pt;}
.x20_c00245{left:467.838907pt;}
.x19_c00245{left:468.799840pt;}
.x16_c00245{left:473.598680pt;}
.x1a_c00245{left:500.159173pt;}
.x8_c00245{left:520.639200pt;}
.x9_c00245{left:541.439987pt;}
.x29_c00245{left:561.279707pt;}
.x21_c00245{left:562.558507pt;}
.x24_c00245{left:572.799320pt;}
.x2c_c00245{left:603.518520pt;}
.x2b_c00245{left:607.999467pt;}
.x22_c00245{left:608.958907pt;}
.x27_c00245{left:618.559573pt;}
.x25_c00245{left:619.519040pt;}
.x2d_c00245{left:624.319333pt;}
.x2a_c00245{left:628.798787pt;}
.x23_c00245{left:629.759720pt;}
.x26_c00245{left:634.558507pt;}
.x28_c00245{left:639.679733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_562ac96a6431ac9ca854438d.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_94803ee02c6965bc79e1bd12.woff2')format("woff");}.ff2_c00246{font-family:ff2_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:ff3_c00246;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.364746;font-style:normal;font-weight:normal;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_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.364746;font-style:normal;font-weight:normal;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_86516d428d9711165a7bcf21.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;}
@font-face{font-family:ff6_c00246;src:url('chunks/assets/font_5144fc4768f8696d9bd4fa9f.woff2')format("woff");}.ff6_c00246{font-family:ff6_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:ff7_c00246;src:url('chunks/assets/font_c52227e98f086c4044f7bb52.woff2')format("woff");}.ff7_c00246{font-family:ff7_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;}
.m6_c00246{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m10_c00246{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.md_c00246{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mf_c00246{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.me_c00246{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00246{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m11_c00246{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m17_c00246{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m13_c00246{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m14_c00246{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00246{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m19_c00246{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m12_c00246{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.mb_c00246{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.m9_c00246{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m18_c00246{transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);}
.m16_c00246{transform:matrix(0.476190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476190,0.000000,0.000000,0.250000,0,0);}
.m15_c00246{transform:matrix(0.564433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564433,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls10_c00246{letter-spacing:-18.577125px;}
.lsd_c00246{letter-spacing:-14.594850px;}
.ls17_c00246{letter-spacing:-14.082750px;}
.ls8_c00246{letter-spacing:-12.687675px;}
.ls25_c00246{letter-spacing:-10.576500px;}
.ls6_c00246{letter-spacing:-10.351500px;}
.ls19_c00246{letter-spacing:-9.819600px;}
.ls18_c00246{letter-spacing:-8.175038px;}
.lse_c00246{letter-spacing:-7.804500px;}
.ls24_c00246{letter-spacing:-7.426125px;}
.ls15_c00246{letter-spacing:-7.120500px;}
.ls12_c00246{letter-spacing:-6.497498px;}
.ls7_c00246{letter-spacing:-5.945625px;}
.ls26_c00246{letter-spacing:-5.577000px;}
.ls9_c00246{letter-spacing:-5.196713px;}
.ls20_c00246{letter-spacing:-4.855950px;}
.lsc_c00246{letter-spacing:-4.456463px;}
.ls1a_c00246{letter-spacing:-4.334498px;}
.ls21_c00246{letter-spacing:-4.325325px;}
.ls1_c00246{letter-spacing:-3.717000px;}
.ls1d_c00246{letter-spacing:-3.652050px;}
.ls16_c00246{letter-spacing:-3.643380px;}
.lsb_c00246{letter-spacing:-2.997150px;}
.ls2_c00246{letter-spacing:-2.968875px;}
.ls3_c00246{letter-spacing:-2.229413px;}
.ls13_c00246{letter-spacing:-2.163000px;}
.ls1e_c00246{letter-spacing:-1.967963px;}
.ls1b_c00246{letter-spacing:-1.599675px;}
.ls4_c00246{letter-spacing:-1.489163px;}
.ls1f_c00246{letter-spacing:-0.866550px;}
.ls5_c00246{letter-spacing:-0.740250px;}
.lsa_c00246{letter-spacing:0.000000px;}
.ls1c_c00246{letter-spacing:0.740250px;}
.ls0_c00246{letter-spacing:2.968875px;}
.ls23_c00246{letter-spacing:3.570345px;}
.lsf_c00246{letter-spacing:5.945625px;}
.ls11_c00246{letter-spacing:11.142338px;}
.ls22_c00246{letter-spacing:14.112000px;}
.ls14_c00246{letter-spacing:23.667975px;}
.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;}
._12_c00246{margin-left:-23.551198px;}
._16_c00246{margin-left:-10.121946px;}
._f_c00246{margin-left:-8.084995px;}
._e_c00246{margin-left:-5.779552px;}
._8_c00246{margin-left:-3.809568px;}
._7_c00246{margin-left:-1.566560px;}
._d_c00246{width:1.103585px;}
._9_c00246{width:3.075485px;}
._b_c00246{width:4.078032px;}
._5_c00246{width:5.830591px;}
._c_c00246{width:7.174274px;}
._6_c00246{width:8.711771px;}
._13_c00246{width:10.286280px;}
._3_c00246{width:11.922364px;}
._a_c00246{width:13.413547px;}
._4_c00246{width:14.650293px;}
._2_c00246{width:15.999652px;}
._10_c00246{width:17.148793px;}
._1_c00246{width:18.222661px;}
._11_c00246{width:19.643058px;}
._0_c00246{width:21.081286px;}
._15_c00246{width:23.474424px;}
._17_c00246{width:29.972131px;}
._18_c00246{width:31.660650px;}
._14_c00246{width:49.029304px;}
.fc0_c00246{color:transparent;}
.fs7_c00246{font-size:70.500000px;}
.fsb_c00246{font-size:72.750000px;}
.fsd_c00246{font-size:74.250000px;}
.fse_c00246{font-size:75.750000px;}
.fs1_c00246{font-size:77.250000px;}
.fs8_c00246{font-size:78.000000px;}
.fs0_c00246{font-size:78.750000px;}
.fs3_c00246{font-size:79.500000px;}
.fsa_c00246{font-size:80.250000px;}
.fsc_c00246{font-size:81.750000px;}
.fs2_c00246{font-size:82.500000px;}
.fs6_c00246{font-size:83.250000px;}
.fs5_c00246{font-size:84.000000px;}
.fs9_c00246{font-size:84.750000px;}
.fs4_c00246{font-size:85.500000px;}
.y0_c00246{bottom:0.000000px;}
.y2b_c00246{bottom:182.161050px;}
.y2a_c00246{bottom:182.161155px;}
.y29_c00246{bottom:211.680675px;}
.y27_c00246{bottom:241.919820px;}
.y28_c00246{bottom:241.920600px;}
.y26_c00246{bottom:271.799535px;}
.y24_c00246{bottom:331.199070px;}
.y25_c00246{bottom:331.199850px;}
.y22_c00246{bottom:390.599850px;}
.y23_c00246{bottom:390.600135px;}
.y21_c00246{bottom:426.960570px;}
.y20_c00246{bottom:426.961650px;}
.y1f_c00246{bottom:449.639700px;}
.y1e_c00246{bottom:449.640015px;}
.y1d_c00246{bottom:480.240420px;}
.y1c_c00246{bottom:480.241395px;}
.y1b_c00246{bottom:509.760930px;}
.y1a_c00246{bottom:540.000840px;}
.y18_c00246{bottom:569.880525px;}
.y19_c00246{bottom:569.880570px;}
.y16_c00246{bottom:600.119745px;}
.y17_c00246{bottom:600.120435px;}
.y15_c00246{bottom:629.280900px;}
.y14_c00246{bottom:659.520720px;}
.y13_c00246{bottom:659.521530px;}
.y12_c00246{bottom:718.560285px;}
.y11_c00246{bottom:748.800105px;}
.yf_c00246{bottom:778.319775px;}
.y10_c00246{bottom:778.319820px;}
.ye_c00246{bottom:808.559685px;}
.yd_c00246{bottom:808.560885px;}
.yc_c00246{bottom:838.800795px;}
.yb_c00246{bottom:868.680525px;}
.ya_c00246{bottom:898.920435px;}
.y9_c00246{bottom:957.961305px;}
.y8_c00246{bottom:987.480840px;}
.y7_c00246{bottom:987.481665px;}
.y6_c00246{bottom:1018.079955px;}
.y5_c00246{bottom:1018.080135px;}
.y4_c00246{bottom:1047.599670px;}
.y3_c00246{bottom:1077.480285px;}
.y2_c00246{bottom:1077.480465px;}
.y1_c00246{bottom:1107.000000px;}
.h9_c00246{height:73.529297px;}
.h12_c00246{height:74.830078px;}
.he_c00246{height:75.816650px;}
.hf_c00246{height:75.875977px;}
.h13_c00246{height:76.341797px;}
.hd_c00246{height:76.552734px;}
.h1_c00246{height:77.288818px;}
.h2_c00246{height:77.853516px;}
.h5_c00246{height:78.024902px;}
.ha_c00246{height:78.609375px;}
.hc_c00246{height:78.760986px;}
.h10_c00246{height:79.365234px;}
.h11_c00246{height:80.233154px;}
.h4_c00246{height:80.969238px;}
.h3_c00246{height:81.533203px;}
.h8_c00246{height:81.664673px;}
.h7_c00246{height:83.015625px;}
.hb_c00246{height:83.177490px;}
.h6_c00246{height:84.498047px;}
.h0_c00246{height:1263.000000px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x19_c00246{left:142.200255px;}
.xb_c00246{left:143.278650px;}
.x1_c00246{left:144.358665px;}
.x4_c00246{left:165.239850px;}
.x34_c00246{left:167.039400px;}
.x20_c00246{left:187.918950px;}
.x21_c00246{left:201.598500px;}
.xf_c00246{left:221.039400px;}
.x32_c00246{left:224.279250px;}
.x10_c00246{left:234.719100px;}
.x33_c00246{left:250.199850px;}
.x28_c00246{left:254.519100px;}
.x7_c00246{left:281.878350px;}
.x8_c00246{left:309.598530px;}
.x29_c00246{left:338.038950px;}
.x17_c00246{left:340.919535px;}
.x18_c00246{left:356.039385px;}
.x2a_c00246{left:370.080000px;}
.x31_c00246{left:372.958950px;}
.x22_c00246{left:381.958350px;}
.x1c_c00246{left:393.838530px;}
.x1d_c00246{left:405.718500px;}
.x1a_c00246{left:410.039385px;}
.x23_c00246{left:411.118785px;}
.x1b_c00246{left:424.439250px;}
.x2b_c00246{left:455.399235px;}
.x2_c00246{left:457.918950px;}
.x24_c00246{left:483.478635px;}
.x3_c00246{left:494.638500px;}
.x11_c00246{left:507.238770px;}
.x2c_c00246{left:517.678530px;}
.x1e_c00246{left:523.078770px;}
.x1f_c00246{left:542.158770px;}
.x12_c00246{left:561.958920px;}
.x25_c00246{left:576.358665px;}
.x13_c00246{left:580.318770px;}
.x37_c00246{left:602.999400px;}
.x2d_c00246{left:604.439670px;}
.x2e_c00246{left:623.519670px;}
.x5_c00246{left:626.398635px;}
.x26_c00246{left:628.918350px;}
.x6_c00246{left:641.879520px;}
.x35_c00246{left:649.438620px;}
.x14_c00246{left:654.479685px;}
.xc_c00246{left:658.439670px;}
.x27_c00246{left:671.399235px;}
.x36_c00246{left:673.198785px;}
.x15_c00246{left:677.519670px;}
.xd_c00246{left:678.599070px;}
.x16_c00246{left:707.759535px;}
.x2f_c00246{left:724.319820px;}
.x9_c00246{left:735.479685px;}
.xa_c00246{left:749.879520px;}
.x30_c00246{left:754.198785px;}
.xe_c00246{left:770.399865px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls10_c00246{letter-spacing:-16.513000pt;}
.lsd_c00246{letter-spacing:-12.973200pt;}
.ls17_c00246{letter-spacing:-12.518000pt;}
.ls8_c00246{letter-spacing:-11.277933pt;}
.ls25_c00246{letter-spacing:-9.401333pt;}
.ls6_c00246{letter-spacing:-9.201333pt;}
.ls19_c00246{letter-spacing:-8.728533pt;}
.ls18_c00246{letter-spacing:-7.266700pt;}
.lse_c00246{letter-spacing:-6.937333pt;}
.ls24_c00246{letter-spacing:-6.601000pt;}
.ls15_c00246{letter-spacing:-6.329333pt;}
.ls12_c00246{letter-spacing:-5.775553pt;}
.ls7_c00246{letter-spacing:-5.285000pt;}
.ls26_c00246{letter-spacing:-4.957333pt;}
.ls9_c00246{letter-spacing:-4.619300pt;}
.ls20_c00246{letter-spacing:-4.316400pt;}
.lsc_c00246{letter-spacing:-3.961300pt;}
.ls1a_c00246{letter-spacing:-3.852887pt;}
.ls21_c00246{letter-spacing:-3.844733pt;}
.ls1_c00246{letter-spacing:-3.304000pt;}
.ls1d_c00246{letter-spacing:-3.246267pt;}
.ls16_c00246{letter-spacing:-3.238560pt;}
.lsb_c00246{letter-spacing:-2.664133pt;}
.ls2_c00246{letter-spacing:-2.639000pt;}
.ls3_c00246{letter-spacing:-1.981700pt;}
.ls13_c00246{letter-spacing:-1.922667pt;}
.ls1e_c00246{letter-spacing:-1.749300pt;}
.ls1b_c00246{letter-spacing:-1.421933pt;}
.ls4_c00246{letter-spacing:-1.323700pt;}
.ls1f_c00246{letter-spacing:-0.770267pt;}
.ls5_c00246{letter-spacing:-0.658000pt;}
.lsa_c00246{letter-spacing:0.000000pt;}
.ls1c_c00246{letter-spacing:0.658000pt;}
.ls0_c00246{letter-spacing:2.639000pt;}
.ls23_c00246{letter-spacing:3.173640pt;}
.lsf_c00246{letter-spacing:5.285000pt;}
.ls11_c00246{letter-spacing:9.904300pt;}
.ls22_c00246{letter-spacing:12.544000pt;}
.ls14_c00246{letter-spacing:21.038200pt;}
.ws0_c00246{word-spacing:0.000000pt;}
._12_c00246{margin-left:-20.934398pt;}
._16_c00246{margin-left:-8.997285pt;}
._f_c00246{margin-left:-7.186662pt;}
._e_c00246{margin-left:-5.137379pt;}
._8_c00246{margin-left:-3.386283pt;}
._7_c00246{margin-left:-1.392498pt;}
._d_c00246{width:0.980964pt;}
._9_c00246{width:2.733764pt;}
._b_c00246{width:3.624917pt;}
._5_c00246{width:5.182747pt;}
._c_c00246{width:6.377132pt;}
._6_c00246{width:7.743796pt;}
._13_c00246{width:9.143360pt;}
._3_c00246{width:10.597657pt;}
._a_c00246{width:11.923153pt;}
._4_c00246{width:13.022483pt;}
._2_c00246{width:14.221913pt;}
._10_c00246{width:15.243372pt;}
._1_c00246{width:16.197921pt;}
._11_c00246{width:17.460496pt;}
._0_c00246{width:18.738921pt;}
._15_c00246{width:20.866155pt;}
._17_c00246{width:26.641894pt;}
._18_c00246{width:28.142800pt;}
._14_c00246{width:43.581604pt;}
.fs7_c00246{font-size:62.666667pt;}
.fsb_c00246{font-size:64.666667pt;}
.fsd_c00246{font-size:66.000000pt;}
.fse_c00246{font-size:67.333333pt;}
.fs1_c00246{font-size:68.666667pt;}
.fs8_c00246{font-size:69.333333pt;}
.fs0_c00246{font-size:70.000000pt;}
.fs3_c00246{font-size:70.666667pt;}
.fsa_c00246{font-size:71.333333pt;}
.fsc_c00246{font-size:72.666667pt;}
.fs2_c00246{font-size:73.333333pt;}
.fs6_c00246{font-size:74.000000pt;}
.fs5_c00246{font-size:74.666667pt;}
.fs9_c00246{font-size:75.333333pt;}
.fs4_c00246{font-size:76.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y2b_c00246{bottom:161.920933pt;}
.y2a_c00246{bottom:161.921027pt;}
.y29_c00246{bottom:188.160600pt;}
.y27_c00246{bottom:215.039840pt;}
.y28_c00246{bottom:215.040533pt;}
.y26_c00246{bottom:241.599587pt;}
.y24_c00246{bottom:294.399173pt;}
.y25_c00246{bottom:294.399867pt;}
.y22_c00246{bottom:347.199867pt;}
.y23_c00246{bottom:347.200120pt;}
.y21_c00246{bottom:379.520507pt;}
.y20_c00246{bottom:379.521467pt;}
.y1f_c00246{bottom:399.679733pt;}
.y1e_c00246{bottom:399.680013pt;}
.y1d_c00246{bottom:426.880373pt;}
.y1c_c00246{bottom:426.881240pt;}
.y1b_c00246{bottom:453.120827pt;}
.y1a_c00246{bottom:480.000747pt;}
.y18_c00246{bottom:506.560467pt;}
.y19_c00246{bottom:506.560507pt;}
.y16_c00246{bottom:533.439773pt;}
.y17_c00246{bottom:533.440387pt;}
.y15_c00246{bottom:559.360800pt;}
.y14_c00246{bottom:586.240640pt;}
.y13_c00246{bottom:586.241360pt;}
.y12_c00246{bottom:638.720253pt;}
.y11_c00246{bottom:665.600093pt;}
.yf_c00246{bottom:691.839800pt;}
.y10_c00246{bottom:691.839840pt;}
.ye_c00246{bottom:718.719720pt;}
.yd_c00246{bottom:718.720787pt;}
.yc_c00246{bottom:745.600707pt;}
.yb_c00246{bottom:772.160467pt;}
.ya_c00246{bottom:799.040387pt;}
.y9_c00246{bottom:851.521160pt;}
.y8_c00246{bottom:877.760747pt;}
.y7_c00246{bottom:877.761480pt;}
.y6_c00246{bottom:904.959960pt;}
.y5_c00246{bottom:904.960120pt;}
.y4_c00246{bottom:931.199707pt;}
.y3_c00246{bottom:957.760253pt;}
.y2_c00246{bottom:957.760413pt;}
.y1_c00246{bottom:984.000000pt;}
.h9_c00246{height:65.359375pt;}
.h12_c00246{height:66.515625pt;}
.he_c00246{height:67.392578pt;}
.hf_c00246{height:67.445312pt;}
.h13_c00246{height:67.859375pt;}
.hd_c00246{height:68.046875pt;}
.h1_c00246{height:68.701172pt;}
.h2_c00246{height:69.203125pt;}
.h5_c00246{height:69.355469pt;}
.ha_c00246{height:69.875000pt;}
.hc_c00246{height:70.009766pt;}
.h10_c00246{height:70.546875pt;}
.h11_c00246{height:71.318359pt;}
.h4_c00246{height:71.972656pt;}
.h3_c00246{height:72.473958pt;}
.h8_c00246{height:72.590820pt;}
.h7_c00246{height:73.791667pt;}
.hb_c00246{height:73.935547pt;}
.h6_c00246{height:75.109375pt;}
.h0_c00246{height:1122.666667pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x19_c00246{left:126.400227pt;}
.xb_c00246{left:127.358800pt;}
.x1_c00246{left:128.318813pt;}
.x4_c00246{left:146.879867pt;}
.x34_c00246{left:148.479467pt;}
.x20_c00246{left:167.039067pt;}
.x21_c00246{left:179.198667pt;}
.xf_c00246{left:196.479467pt;}
.x32_c00246{left:199.359333pt;}
.x10_c00246{left:208.639200pt;}
.x33_c00246{left:222.399867pt;}
.x28_c00246{left:226.239200pt;}
.x7_c00246{left:250.558533pt;}
.x8_c00246{left:275.198693pt;}
.x29_c00246{left:300.479067pt;}
.x17_c00246{left:303.039587pt;}
.x18_c00246{left:316.479453pt;}
.x2a_c00246{left:328.960000pt;}
.x31_c00246{left:331.519067pt;}
.x22_c00246{left:339.518533pt;}
.x1c_c00246{left:350.078693pt;}
.x1d_c00246{left:360.638667pt;}
.x1a_c00246{left:364.479453pt;}
.x23_c00246{left:365.438920pt;}
.x1b_c00246{left:377.279333pt;}
.x2b_c00246{left:404.799320pt;}
.x2_c00246{left:407.039067pt;}
.x24_c00246{left:429.758787pt;}
.x3_c00246{left:439.678667pt;}
.x11_c00246{left:450.878907pt;}
.x2c_c00246{left:460.158693pt;}
.x1e_c00246{left:464.958907pt;}
.x1f_c00246{left:481.918907pt;}
.x12_c00246{left:499.519040pt;}
.x25_c00246{left:512.318813pt;}
.x13_c00246{left:515.838907pt;}
.x37_c00246{left:535.999467pt;}
.x2d_c00246{left:537.279707pt;}
.x2e_c00246{left:554.239707pt;}
.x5_c00246{left:556.798787pt;}
.x26_c00246{left:559.038533pt;}
.x6_c00246{left:570.559573pt;}
.x35_c00246{left:577.278773pt;}
.x14_c00246{left:581.759720pt;}
.xc_c00246{left:585.279707pt;}
.x27_c00246{left:596.799320pt;}
.x36_c00246{left:598.398920pt;}
.x15_c00246{left:602.239707pt;}
.xd_c00246{left:603.199173pt;}
.x16_c00246{left:629.119587pt;}
.x2f_c00246{left:643.839840pt;}
.x9_c00246{left:653.759720pt;}
.xa_c00246{left:666.559573pt;}
.x30_c00246{left:670.398920pt;}
.xe_c00246{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f4b1576d9085b212c7fff53.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_07cda142bed2c93a3b712f30.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_d72d5eaa5e8723eba4ac7649.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_e772ae9916ca4586d2e82a8f.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_4110fd5ab8854002d251a893.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00247;src:url('chunks/assets/font_0af3582d248664eb9786766c.woff2')format("woff");}.ff6_c00247{font-family:ff6_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00247{transform:matrix(0.168803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168803,0.000000,0.000000,0.250000,0,0);}
.m32_c00247{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180180,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m34_c00247{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{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_c00247{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);}
.m1f_c00247{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m18_c00247{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m2b_c00247{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m31_c00247{transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m22_c00247{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.242138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242138,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m2f_c00247{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m30_c00247{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m28_c00247{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m2a_c00247{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00247{transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);}
.m26_c00247{transform:matrix(0.429487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429487,0.000000,0.000000,0.250000,0,0);}
.m24_c00247{transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449519,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls37_c00247{letter-spacing:-14.734500px;}
.ls35_c00247{letter-spacing:-14.594850px;}
.ls24_c00247{letter-spacing:-14.082750px;}
.ls1_c00247{letter-spacing:-9.754725px;}
.ls25_c00247{letter-spacing:-9.365625px;}
.ls20_c00247{letter-spacing:-9.281250px;}
.ls9_c00247{letter-spacing:-8.914500px;}
.ls11_c00247{letter-spacing:-8.681850px;}
.ls7_c00247{letter-spacing:-8.175038px;}
.ls2c_c00247{letter-spacing:-7.941300px;}
.ls32_c00247{letter-spacing:-7.567328px;}
.ls29_c00247{letter-spacing:-7.043400px;}
.ls36_c00247{letter-spacing:-6.685875px;}
.ls2a_c00247{letter-spacing:-6.545565px;}
.ls12_c00247{letter-spacing:-6.000750px;}
.lsa_c00247{letter-spacing:-5.945625px;}
.ls1f_c00247{letter-spacing:-5.784450px;}
.ls1c_c00247{letter-spacing:-5.783400px;}
.lsf_c00247{letter-spacing:-5.440050px;}
.ls16_c00247{letter-spacing:-5.431725px;}
.lse_c00247{letter-spacing:-5.425875px;}
.lsc_c00247{letter-spacing:-5.196713px;}
.ls21_c00247{letter-spacing:-4.921875px;}
.ls2d_c00247{letter-spacing:-4.765950px;}
.ls1a_c00247{letter-spacing:-4.668675px;}
.lsb_c00247{letter-spacing:-4.456463px;}
.ls31_c00247{letter-spacing:-3.822000px;}
.ls2_c00247{letter-spacing:-3.717000px;}
.ls18_c00247{letter-spacing:-3.685500px;}
.ls10_c00247{letter-spacing:-3.555075px;}
.ls13_c00247{letter-spacing:-3.344250px;}
.ls2e_c00247{letter-spacing:-3.241875px;}
.ls33_c00247{letter-spacing:-3.169650px;}
.ls4_c00247{letter-spacing:-2.968875px;}
.ls1b_c00247{letter-spacing:-2.447550px;}
.ls30_c00247{letter-spacing:-2.441115px;}
.ls22_c00247{letter-spacing:-2.293553px;}
.ls6_c00247{letter-spacing:-2.252250px;}
.ls0_c00247{letter-spacing:-2.229413px;}
.ls2b_c00247{letter-spacing:-2.122808px;}
.ls3_c00247{letter-spacing:-1.489163px;}
.lsd_c00247{letter-spacing:-1.334580px;}
.ls28_c00247{letter-spacing:-1.248780px;}
.ls19_c00247{letter-spacing:-0.890400px;}
.ls8_c00247{letter-spacing:-0.740250px;}
.ls5_c00247{letter-spacing:0.000000px;}
.ls34_c00247{letter-spacing:0.740250px;}
.ls15_c00247{letter-spacing:0.779625px;}
.ls14_c00247{letter-spacing:0.787950px;}
.ls1e_c00247{letter-spacing:1.114425px;}
.ls26_c00247{letter-spacing:1.575000px;}
.ls1d_c00247{letter-spacing:2.582250px;}
.ls17_c00247{letter-spacing:3.830333px;}
.ls23_c00247{letter-spacing:4.102800px;}
.ls27_c00247{letter-spacing:4.753800px;}
.ls2f_c00247{letter-spacing:5.280000px;}
.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;}
._17_c00247{margin-left:-13.914442px;}
._15_c00247{margin-left:-9.131627px;}
._f_c00247{margin-left:-5.355669px;}
._8_c00247{margin-left:-2.982901px;}
._7_c00247{margin-left:-1.642472px;}
._10_c00247{width:1.002889px;}
._3_c00247{width:2.089535px;}
._1_c00247{width:3.389341px;}
._5_c00247{width:5.215078px;}
._0_c00247{width:6.992584px;}
._2_c00247{width:8.788084px;}
._9_c00247{width:10.898941px;}
._b_c00247{width:12.048185px;}
._4_c00247{width:13.119067px;}
._13_c00247{width:14.349052px;}
._a_c00247{width:15.357988px;}
._11_c00247{width:16.908710px;}
._14_c00247{width:18.098459px;}
._e_c00247{width:19.423212px;}
._12_c00247{width:21.001421px;}
._6_c00247{width:22.881778px;}
._d_c00247{width:23.944294px;}
._16_c00247{width:25.418048px;}
._c_c00247{width:27.058262px;}
.fc0_c00247{color:transparent;}
.fs12_c00247{font-size:39.000000px;}
.fs13_c00247{font-size:58.500000px;}
.fs17_c00247{font-size:66.000000px;}
.fs14_c00247{font-size:66.750000px;}
.fs15_c00247{font-size:71.250000px;}
.fs8_c00247{font-size:73.500000px;}
.fsa_c00247{font-size:74.250000px;}
.fs16_c00247{font-size:75.000000px;}
.fs9_c00247{font-size:76.500000px;}
.fsf_c00247{font-size:77.250000px;}
.fs4_c00247{font-size:78.000000px;}
.fs0_c00247{font-size:78.750000px;}
.fs10_c00247{font-size:79.500000px;}
.fs6_c00247{font-size:80.250000px;}
.fsd_c00247{font-size:81.000000px;}
.fs7_c00247{font-size:81.750000px;}
.fs3_c00247{font-size:82.500000px;}
.fsc_c00247{font-size:83.250000px;}
.fse_c00247{font-size:84.000000px;}
.fs1_c00247{font-size:84.750000px;}
.fs11_c00247{font-size:85.500000px;}
.fsb_c00247{font-size:87.750000px;}
.fs2_c00247{font-size:115.500000px;}
.fs5_c00247{font-size:119.250000px;}
.y0_c00247{bottom:0.000000px;}
.y2b_c00247{bottom:185.760150px;}
.y2a_c00247{bottom:215.640900px;}
.y29_c00247{bottom:245.160435px;}
.y27_c00247{bottom:275.398980px;}
.y28_c00247{bottom:275.400285px;}
.y26_c00247{bottom:304.560120px;}
.y25_c00247{bottom:334.079655px;}
.y24_c00247{bottom:363.959385px;}
.y23_c00247{bottom:393.840135px;}
.y22_c00247{bottom:423.359850px;}
.y21_c00247{bottom:423.720750px;}
.y20_c00247{bottom:453.599670px;}
.y1f_c00247{bottom:453.600570px;}
.y1d_c00247{bottom:483.480240px;}
.y1e_c00247{bottom:483.480285px;}
.y1c_c00247{bottom:513.720150px;}
.y1b_c00247{bottom:572.759535px;}
.y1a_c00247{bottom:572.760345px;}
.y19_c00247{bottom:603.000255px;}
.y17_c00247{bottom:632.879430px;}
.y18_c00247{bottom:632.879970px;}
.y16_c00247{bottom:662.040570px;}
.y15_c00247{bottom:691.919535px;}
.y14_c00247{bottom:691.919565px;}
.y13_c00247{bottom:721.440900px;}
.y12_c00247{bottom:752.039985px;}
.y10_c00247{bottom:781.559115px;}
.y11_c00247{bottom:781.559685px;}
.yf_c00247{bottom:812.519715px;}
.ye_c00247{bottom:812.519805px;}
.yd_c00247{bottom:842.039340px;}
.yc_c00247{bottom:842.039355px;}
.yb_c00247{bottom:871.560705px;}
.ya_c00247{bottom:930.959385px;}
.y9_c00247{bottom:952.560705px;}
.y8_c00247{bottom:952.561680px;}
.y7_c00247{bottom:973.440315px;}
.y6_c00247{bottom:1016.639655px;}
.y5_c00247{bottom:1016.639790px;}
.y4_c00247{bottom:1038.240870px;}
.y3_c00247{bottom:1059.841020px;}
.y2_c00247{bottom:1081.440315px;}
.y1_c00247{bottom:1141.199805px;}
.h19_c00247{height:39.304688px;}
.h1a_c00247{height:61.013672px;}
.h20_c00247{height:66.515625px;}
.h1d_c00247{height:67.271484px;}
.h9_c00247{height:72.136230px;}
.h1e_c00247{height:74.311523px;}
.hb_c00247{height:74.830078px;}
.ha_c00247{height:75.080566px;}
.h14_c00247{height:75.816650px;}
.h5_c00247{height:76.552734px;}
.h12_c00247{height:76.658203px;}
.h18_c00247{height:77.085938px;}
.h1c_c00247{height:77.097656px;}
.h1_c00247{height:77.288818px;}
.h1b_c00247{height:77.853516px;}
.h15_c00247{height:78.024902px;}
.h1f_c00247{height:78.222656px;}
.h21_c00247{height:78.609375px;}
.h7_c00247{height:78.760986px;}
.h11_c00247{height:79.497070px;}
.h8_c00247{height:80.233154px;}
.h4_c00247{height:80.969238px;}
.h13_c00247{height:81.533203px;}
.he_c00247{height:81.632812px;}
.h16_c00247{height:82.274414px;}
.h10_c00247{height:83.144531px;}
.h2_c00247{height:83.177490px;}
.h22_c00247{height:83.756836px;}
.hd_c00247{height:83.900391px;}
.h17_c00247{height:83.913574px;}
.h23_c00247{height:84.498047px;}
.hf_c00247{height:84.656250px;}
.hc_c00247{height:86.721680px;}
.h3_c00247{height:120.462891px;}
.h6_c00247{height:124.374023px;}
.h0_c00247{height:1263.000000px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x19_c00247{left:143.638500px;}
.x1_c00247{left:145.078815px;}
.x24_c00247{left:162.000000px;}
.x5b_c00247{left:164.878950px;}
.x3c_c00247{left:166.319250px;}
.x1a_c00247{left:171.358665px;}
.x3d_c00247{left:192.239850px;}
.x56_c00247{left:195.118785px;}
.xa_c00247{left:198.718260px;}
.x6_c00247{left:200.878350px;}
.x25_c00247{left:203.759100px;}
.x48_c00247{left:212.758500px;}
.x7_c00247{left:214.918950px;}
.xb_c00247{left:216.718500px;}
.x57_c00247{left:218.158785px;}
.x1d_c00247{left:220.319250px;}
.x8_c00247{left:221.398635px;}
.x37_c00247{left:223.918350px;}
.x26_c00247{left:226.798950px;}
.x9_c00247{left:231.838515px;}
.x13_c00247{left:232.919535px;}
.x1e_c00247{left:233.998950px;}
.x49_c00247{left:249.118785px;}
.x27_c00247{left:252.719535px;}
.x3e_c00247{left:264.238785px;}
.x33_c00247{left:280.078785px;}
.x3f_c00247{left:285.120000px;}
.x2_c00247{left:291.599700px;}
.x34_c00247{left:295.918950px;}
.x10_c00247{left:298.438635px;}
.x28_c00247{left:302.398635px;}
.x3_c00247{left:313.919535px;}
.x35_c00247{left:316.798515px;}
.x29_c00247{left:321.839535px;}
.x42_c00247{left:325.438635px;}
.x11_c00247{left:329.398635px;}
.x4a_c00247{left:339.120000px;}
.x43_c00247{left:341.998950px;}
.x14_c00247{left:348.119385px;}
.x1f_c00247{left:354.958350px;}
.x38_c00247{left:363.598530px;}
.x20_c00247{left:369.359850px;}
.x15_c00247{left:371.879535px;}
.x12_c00247{left:381.958350px;}
.x39_c00247{left:384.118785px;}
.x1b_c00247{left:397.798515px;}
.x2a_c00247{left:399.958920px;}
.x53_c00247{left:407.158770px;}
.xc_c00247{left:408.239820px;}
.x1c_c00247{left:413.638500px;}
.x4b_c00247{left:424.080000px;}
.xd_c00247{left:425.879520px;}
.x2b_c00247{left:428.758530px;}
.x17_c00247{left:441.358665px;}
.x54_c00247{left:444.959385px;}
.x4c_c00247{left:449.278800px;}
.x59_c00247{left:462.958335px;}
.x18_c00247{left:465.838950px;}
.x4d_c00247{left:470.878320px;}
.x5a_c00247{left:478.439250px;}
.x2c_c00247{left:487.079400px;}
.x46_c00247{left:507.958920px;}
.x4e_c00247{left:523.439670px;}
.x47_c00247{left:534.599670px;}
.x21_c00247{left:537.478635px;}
.xe_c00247{left:542.158770px;}
.x22_c00247{left:551.878320px;}
.xf_c00247{left:560.159415px;}
.x40_c00247{left:572.398635px;}
.x2d_c00247{left:575.279250px;}
.x31_c00247{left:585.359850px;}
.x41_c00247{left:606.239220px;}
.x32_c00247{left:609.119985px;}
.x4f_c00247{left:611.278800px;}
.x4_c00247{left:622.079400px;}
.x50_c00247{left:628.559100px;}
.x44_c00247{left:632.519070px;}
.x2e_c00247{left:633.959385px;}
.x5_c00247{left:636.119985px;}
.x45_c00247{left:648.718545px;}
.x3a_c00247{left:675.000000px;}
.x2f_c00247{left:677.878920px;}
.x3b_c00247{left:689.038920px;}
.x51_c00247{left:698.399235px;}
.x30_c00247{left:710.999400px;}
.x36_c00247{left:725.758530px;}
.x52_c00247{left:756.718545px;}
.x55_c00247{left:760.678530px;}
.x23_c00247{left:765.719520px;}
.x58_c00247{left:771.838530px;}
.x16_c00247{left:781.198785px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls37_c00247{letter-spacing:-13.097333pt;}
.ls35_c00247{letter-spacing:-12.973200pt;}
.ls24_c00247{letter-spacing:-12.518000pt;}
.ls1_c00247{letter-spacing:-8.670867pt;}
.ls25_c00247{letter-spacing:-8.325000pt;}
.ls20_c00247{letter-spacing:-8.250000pt;}
.ls9_c00247{letter-spacing:-7.924000pt;}
.ls11_c00247{letter-spacing:-7.717200pt;}
.ls7_c00247{letter-spacing:-7.266700pt;}
.ls2c_c00247{letter-spacing:-7.058933pt;}
.ls32_c00247{letter-spacing:-6.726513pt;}
.ls29_c00247{letter-spacing:-6.260800pt;}
.ls36_c00247{letter-spacing:-5.943000pt;}
.ls2a_c00247{letter-spacing:-5.818280pt;}
.ls12_c00247{letter-spacing:-5.334000pt;}
.lsa_c00247{letter-spacing:-5.285000pt;}
.ls1f_c00247{letter-spacing:-5.141733pt;}
.ls1c_c00247{letter-spacing:-5.140800pt;}
.lsf_c00247{letter-spacing:-4.835600pt;}
.ls16_c00247{letter-spacing:-4.828200pt;}
.lse_c00247{letter-spacing:-4.823000pt;}
.lsc_c00247{letter-spacing:-4.619300pt;}
.ls21_c00247{letter-spacing:-4.375000pt;}
.ls2d_c00247{letter-spacing:-4.236400pt;}
.ls1a_c00247{letter-spacing:-4.149933pt;}
.lsb_c00247{letter-spacing:-3.961300pt;}
.ls31_c00247{letter-spacing:-3.397333pt;}
.ls2_c00247{letter-spacing:-3.304000pt;}
.ls18_c00247{letter-spacing:-3.276000pt;}
.ls10_c00247{letter-spacing:-3.160067pt;}
.ls13_c00247{letter-spacing:-2.972667pt;}
.ls2e_c00247{letter-spacing:-2.881667pt;}
.ls33_c00247{letter-spacing:-2.817467pt;}
.ls4_c00247{letter-spacing:-2.639000pt;}
.ls1b_c00247{letter-spacing:-2.175600pt;}
.ls30_c00247{letter-spacing:-2.169880pt;}
.ls22_c00247{letter-spacing:-2.038713pt;}
.ls6_c00247{letter-spacing:-2.002000pt;}
.ls0_c00247{letter-spacing:-1.981700pt;}
.ls2b_c00247{letter-spacing:-1.886940pt;}
.ls3_c00247{letter-spacing:-1.323700pt;}
.lsd_c00247{letter-spacing:-1.186293pt;}
.ls28_c00247{letter-spacing:-1.110027pt;}
.ls19_c00247{letter-spacing:-0.791467pt;}
.ls8_c00247{letter-spacing:-0.658000pt;}
.ls5_c00247{letter-spacing:0.000000pt;}
.ls34_c00247{letter-spacing:0.658000pt;}
.ls15_c00247{letter-spacing:0.693000pt;}
.ls14_c00247{letter-spacing:0.700400pt;}
.ls1e_c00247{letter-spacing:0.990600pt;}
.ls26_c00247{letter-spacing:1.400000pt;}
.ls1d_c00247{letter-spacing:2.295333pt;}
.ls17_c00247{letter-spacing:3.404740pt;}
.ls23_c00247{letter-spacing:3.646933pt;}
.ls27_c00247{letter-spacing:4.225600pt;}
.ls2f_c00247{letter-spacing:4.693333pt;}
.ws0_c00247{word-spacing:0.000000pt;}
._17_c00247{margin-left:-12.368392pt;}
._15_c00247{margin-left:-8.117002pt;}
._f_c00247{margin-left:-4.760594pt;}
._8_c00247{margin-left:-2.651468pt;}
._7_c00247{margin-left:-1.459975pt;}
._10_c00247{width:0.891457pt;}
._3_c00247{width:1.857364pt;}
._1_c00247{width:3.012747pt;}
._5_c00247{width:4.635625pt;}
._0_c00247{width:6.215630pt;}
._2_c00247{width:7.811630pt;}
._9_c00247{width:9.687947pt;}
._b_c00247{width:10.709498pt;}
._4_c00247{width:11.661392pt;}
._13_c00247{width:12.754713pt;}
._a_c00247{width:13.651545pt;}
._11_c00247{width:15.029964pt;}
._14_c00247{width:16.087519pt;}
._e_c00247{width:17.265077pt;}
._12_c00247{width:18.667930pt;}
._6_c00247{width:20.339358pt;}
._d_c00247{width:21.283817pt;}
._16_c00247{width:22.593821pt;}
._c_c00247{width:24.051789pt;}
.fs12_c00247{font-size:34.666667pt;}
.fs13_c00247{font-size:52.000000pt;}
.fs17_c00247{font-size:58.666667pt;}
.fs14_c00247{font-size:59.333333pt;}
.fs15_c00247{font-size:63.333333pt;}
.fs8_c00247{font-size:65.333333pt;}
.fsa_c00247{font-size:66.000000pt;}
.fs16_c00247{font-size:66.666667pt;}
.fs9_c00247{font-size:68.000000pt;}
.fsf_c00247{font-size:68.666667pt;}
.fs4_c00247{font-size:69.333333pt;}
.fs0_c00247{font-size:70.000000pt;}
.fs10_c00247{font-size:70.666667pt;}
.fs6_c00247{font-size:71.333333pt;}
.fsd_c00247{font-size:72.000000pt;}
.fs7_c00247{font-size:72.666667pt;}
.fs3_c00247{font-size:73.333333pt;}
.fsc_c00247{font-size:74.000000pt;}
.fse_c00247{font-size:74.666667pt;}
.fs1_c00247{font-size:75.333333pt;}
.fs11_c00247{font-size:76.000000pt;}
.fsb_c00247{font-size:78.000000pt;}
.fs2_c00247{font-size:102.666667pt;}
.fs5_c00247{font-size:106.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y2b_c00247{bottom:165.120133pt;}
.y2a_c00247{bottom:191.680800pt;}
.y29_c00247{bottom:217.920387pt;}
.y27_c00247{bottom:244.799093pt;}
.y28_c00247{bottom:244.800253pt;}
.y26_c00247{bottom:270.720107pt;}
.y25_c00247{bottom:296.959693pt;}
.y24_c00247{bottom:323.519453pt;}
.y23_c00247{bottom:350.080120pt;}
.y22_c00247{bottom:376.319867pt;}
.y21_c00247{bottom:376.640667pt;}
.y20_c00247{bottom:403.199707pt;}
.y1f_c00247{bottom:403.200507pt;}
.y1d_c00247{bottom:429.760213pt;}
.y1e_c00247{bottom:429.760253pt;}
.y1c_c00247{bottom:456.640133pt;}
.y1b_c00247{bottom:509.119587pt;}
.y1a_c00247{bottom:509.120307pt;}
.y19_c00247{bottom:536.000227pt;}
.y17_c00247{bottom:562.559493pt;}
.y18_c00247{bottom:562.559973pt;}
.y16_c00247{bottom:588.480507pt;}
.y15_c00247{bottom:615.039587pt;}
.y14_c00247{bottom:615.039613pt;}
.y13_c00247{bottom:641.280800pt;}
.y12_c00247{bottom:668.479987pt;}
.y10_c00247{bottom:694.719213pt;}
.y11_c00247{bottom:694.719720pt;}
.yf_c00247{bottom:722.239747pt;}
.ye_c00247{bottom:722.239827pt;}
.yd_c00247{bottom:748.479413pt;}
.yc_c00247{bottom:748.479427pt;}
.yb_c00247{bottom:774.720627pt;}
.ya_c00247{bottom:827.519453pt;}
.y9_c00247{bottom:846.720627pt;}
.y8_c00247{bottom:846.721493pt;}
.y7_c00247{bottom:865.280280pt;}
.y6_c00247{bottom:903.679693pt;}
.y5_c00247{bottom:903.679813pt;}
.y4_c00247{bottom:922.880773pt;}
.y3_c00247{bottom:942.080907pt;}
.y2_c00247{bottom:961.280280pt;}
.y1_c00247{bottom:1014.399827pt;}
.h19_c00247{height:34.937500pt;}
.h1a_c00247{height:54.234375pt;}
.h20_c00247{height:59.125000pt;}
.h1d_c00247{height:59.796875pt;}
.h9_c00247{height:64.121094pt;}
.h1e_c00247{height:66.054688pt;}
.hb_c00247{height:66.515625pt;}
.ha_c00247{height:66.738281pt;}
.h14_c00247{height:67.392578pt;}
.h5_c00247{height:68.046875pt;}
.h12_c00247{height:68.140625pt;}
.h18_c00247{height:68.520833pt;}
.h1c_c00247{height:68.531250pt;}
.h1_c00247{height:68.701172pt;}
.h1b_c00247{height:69.203125pt;}
.h15_c00247{height:69.355469pt;}
.h1f_c00247{height:69.531250pt;}
.h21_c00247{height:69.875000pt;}
.h7_c00247{height:70.009766pt;}
.h11_c00247{height:70.664062pt;}
.h8_c00247{height:71.318359pt;}
.h4_c00247{height:71.972656pt;}
.h13_c00247{height:72.473958pt;}
.he_c00247{height:72.562500pt;}
.h16_c00247{height:73.132813pt;}
.h10_c00247{height:73.906250pt;}
.h2_c00247{height:73.935547pt;}
.h22_c00247{height:74.450521pt;}
.hd_c00247{height:74.578125pt;}
.h17_c00247{height:74.589844pt;}
.h23_c00247{height:75.109375pt;}
.hf_c00247{height:75.250000pt;}
.hc_c00247{height:77.085938pt;}
.h3_c00247{height:107.078125pt;}
.h6_c00247{height:110.554688pt;}
.h0_c00247{height:1122.666667pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x19_c00247{left:127.678667pt;}
.x1_c00247{left:128.958947pt;}
.x24_c00247{left:144.000000pt;}
.x5b_c00247{left:146.559067pt;}
.x3c_c00247{left:147.839333pt;}
.x1a_c00247{left:152.318813pt;}
.x3d_c00247{left:170.879867pt;}
.x56_c00247{left:173.438920pt;}
.xa_c00247{left:176.638453pt;}
.x6_c00247{left:178.558533pt;}
.x25_c00247{left:181.119200pt;}
.x48_c00247{left:189.118667pt;}
.x7_c00247{left:191.039067pt;}
.xb_c00247{left:192.638667pt;}
.x57_c00247{left:193.918920pt;}
.x1d_c00247{left:195.839333pt;}
.x8_c00247{left:196.798787pt;}
.x37_c00247{left:199.038533pt;}
.x26_c00247{left:201.599067pt;}
.x9_c00247{left:206.078680pt;}
.x13_c00247{left:207.039587pt;}
.x1e_c00247{left:207.999067pt;}
.x49_c00247{left:221.438920pt;}
.x27_c00247{left:224.639587pt;}
.x3e_c00247{left:234.878920pt;}
.x33_c00247{left:248.958920pt;}
.x3f_c00247{left:253.440000pt;}
.x2_c00247{left:259.199733pt;}
.x34_c00247{left:263.039067pt;}
.x10_c00247{left:265.278787pt;}
.x28_c00247{left:268.798787pt;}
.x3_c00247{left:279.039587pt;}
.x35_c00247{left:281.598680pt;}
.x29_c00247{left:286.079587pt;}
.x42_c00247{left:289.278787pt;}
.x11_c00247{left:292.798787pt;}
.x4a_c00247{left:301.440000pt;}
.x43_c00247{left:303.999067pt;}
.x14_c00247{left:309.439453pt;}
.x1f_c00247{left:315.518533pt;}
.x38_c00247{left:323.198693pt;}
.x20_c00247{left:328.319867pt;}
.x15_c00247{left:330.559587pt;}
.x12_c00247{left:339.518533pt;}
.x39_c00247{left:341.438920pt;}
.x1b_c00247{left:353.598680pt;}
.x2a_c00247{left:355.519040pt;}
.x53_c00247{left:361.918907pt;}
.xc_c00247{left:362.879840pt;}
.x1c_c00247{left:367.678667pt;}
.x4b_c00247{left:376.960000pt;}
.xd_c00247{left:378.559573pt;}
.x2b_c00247{left:381.118693pt;}
.x17_c00247{left:392.318813pt;}
.x54_c00247{left:395.519453pt;}
.x4c_c00247{left:399.358933pt;}
.x59_c00247{left:411.518520pt;}
.x18_c00247{left:414.079067pt;}
.x4d_c00247{left:418.558507pt;}
.x5a_c00247{left:425.279333pt;}
.x2c_c00247{left:432.959467pt;}
.x46_c00247{left:451.519040pt;}
.x4e_c00247{left:465.279707pt;}
.x47_c00247{left:475.199707pt;}
.x21_c00247{left:477.758787pt;}
.xe_c00247{left:481.918907pt;}
.x22_c00247{left:490.558507pt;}
.xf_c00247{left:497.919480pt;}
.x40_c00247{left:508.798787pt;}
.x2d_c00247{left:511.359333pt;}
.x31_c00247{left:520.319867pt;}
.x41_c00247{left:538.879307pt;}
.x32_c00247{left:541.439987pt;}
.x4f_c00247{left:543.358933pt;}
.x4_c00247{left:552.959467pt;}
.x50_c00247{left:558.719200pt;}
.x44_c00247{left:562.239173pt;}
.x2e_c00247{left:563.519453pt;}
.x5_c00247{left:565.439987pt;}
.x45_c00247{left:576.638707pt;}
.x3a_c00247{left:600.000000pt;}
.x2f_c00247{left:602.559040pt;}
.x3b_c00247{left:612.479040pt;}
.x51_c00247{left:620.799320pt;}
.x30_c00247{left:631.999467pt;}
.x36_c00247{left:645.118693pt;}
.x52_c00247{left:672.638707pt;}
.x55_c00247{left:676.158693pt;}
.x23_c00247{left:680.639573pt;}
.x58_c00247{left:686.078693pt;}
.x16_c00247{left:694.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb6d9a5c47d08322ceca7fe4.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_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_203707e2d9e7725e3971a015.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_17f6cb3d5d8fd7d95a5fe7d5.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00248;src:url('chunks/assets/font_d84800c0065ab4c953c83c02.woff2')format("woff");}.ff6_c00248{font-family:ff6_c00248;line-height:1.311035;font-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_c00248{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00248{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m26_c00248{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(0.221983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221983,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.me_c00248{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1d_c00248{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.md_c00248{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m1a_c00248{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m13_c00248{transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);}
.m14_c00248{transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);}
.m21_c00248{transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{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);}
.m23_c00248{transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383333,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.397541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397541,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);}
.m15_c00248{transform:matrix(0.493056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493056,0.000000,0.000000,0.250000,0,0);}
.m18_c00248{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.586207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586207,0.000000,0.000000,0.250000,0,0);}
.m16_c00248{transform:matrix(0.657407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657407,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls12_c00248{letter-spacing:-17.739300px;}
.lse_c00248{letter-spacing:-14.594850px;}
.ls10_c00248{letter-spacing:-11.610900px;}
.ls11_c00248{letter-spacing:-8.914500px;}
.ls16_c00248{letter-spacing:-8.175038px;}
.lsc_c00248{letter-spacing:-7.553700px;}
.ls9_c00248{letter-spacing:-6.685875px;}
.ls17_c00248{letter-spacing:-5.945625px;}
.ls13_c00248{letter-spacing:-5.343818px;}
.ls3_c00248{letter-spacing:-5.196713px;}
.ls15_c00248{letter-spacing:-5.109375px;}
.lsd_c00248{letter-spacing:-4.456463px;}
.ls7_c00248{letter-spacing:-3.753750px;}
.ls5_c00248{letter-spacing:-3.717000px;}
.ls1f_c00248{letter-spacing:-3.136928px;}
.lsa_c00248{letter-spacing:-3.003000px;}
.ls1_c00248{letter-spacing:-2.968875px;}
.lsf_c00248{letter-spacing:-2.921903px;}
.ls2_c00248{letter-spacing:-2.229413px;}
.ls30_c00248{letter-spacing:-1.999200px;}
.ls6_c00248{letter-spacing:-1.489163px;}
.ls2f_c00248{letter-spacing:-1.413675px;}
.ls1a_c00248{letter-spacing:-0.959175px;}
.lsb_c00248{letter-spacing:-0.854700px;}
.ls4_c00248{letter-spacing:-0.740250px;}
.ls2c_c00248{letter-spacing:-0.526162px;}
.ls8_c00248{letter-spacing:0.000000px;}
.ls23_c00248{letter-spacing:0.705600px;}
.ls24_c00248{letter-spacing:0.721110px;}
.ls1e_c00248{letter-spacing:0.761400px;}
.ls27_c00248{letter-spacing:1.086750px;}
.ls1c_c00248{letter-spacing:1.098570px;}
.ls2d_c00248{letter-spacing:1.465200px;}
.ls2a_c00248{letter-spacing:1.571130px;}
.ls21_c00248{letter-spacing:1.587870px;}
.ls31_c00248{letter-spacing:1.660875px;}
.ls14_c00248{letter-spacing:2.394450px;}
.ls2b_c00248{letter-spacing:2.562000px;}
.ls0_c00248{letter-spacing:2.933700px;}
.ls1b_c00248{letter-spacing:4.050405px;}
.ls22_c00248{letter-spacing:5.250000px;}
.ls29_c00248{letter-spacing:6.498450px;}
.ls19_c00248{letter-spacing:10.980825px;}
.ls25_c00248{letter-spacing:13.530000px;}
.ls1d_c00248{letter-spacing:14.700420px;}
.ls20_c00248{letter-spacing:16.799580px;}
.ls26_c00248{letter-spacing:17.023200px;}
.ls18_c00248{letter-spacing:18.900000px;}
.ls28_c00248{letter-spacing:28.385325px;}
.ls2e_c00248{letter-spacing:31.974750px;}
.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;}
._f_c00248{margin-left:-44.634067px;}
._3_c00248{margin-left:-10.566660px;}
._5_c00248{margin-left:-6.986804px;}
._1a_c00248{margin-left:-5.267974px;}
._1_c00248{margin-left:-4.169396px;}
._e_c00248{margin-left:-2.515438px;}
._10_c00248{margin-left:-1.338631px;}
._0_c00248{width:1.141310px;}
._6_c00248{width:2.799102px;}
._2_c00248{width:3.938585px;}
._d_c00248{width:5.434879px;}
._4_c00248{width:6.594421px;}
._a_c00248{width:7.798404px;}
._8_c00248{width:9.324297px;}
._7_c00248{width:11.324666px;}
._9_c00248{width:13.468003px;}
._12_c00248{width:14.484606px;}
._11_c00248{width:15.856015px;}
._c_c00248{width:18.259020px;}
._b_c00248{width:19.671928px;}
._18_c00248{width:20.861960px;}
._17_c00248{width:21.884387px;}
._1b_c00248{width:23.325943px;}
._14_c00248{width:24.987642px;}
._1c_c00248{width:26.499078px;}
._15_c00248{width:27.499322px;}
._13_c00248{width:31.667307px;}
._16_c00248{width:38.778862px;}
._19_c00248{width:46.582653px;}
.fc0_c00248{color:transparent;}
.fs12_c00248{font-size:20.250000px;}
.fse_c00248{font-size:21.750000px;}
.fs13_c00248{font-size:24.000000px;}
.fs11_c00248{font-size:27.000000px;}
.fs15_c00248{font-size:30.000000px;}
.fsd_c00248{font-size:30.750000px;}
.fs16_c00248{font-size:31.500000px;}
.fs10_c00248{font-size:33.000000px;}
.fs18_c00248{font-size:33.750000px;}
.fs14_c00248{font-size:39.000000px;}
.fsf_c00248{font-size:40.500000px;}
.fsc_c00248{font-size:42.000000px;}
.fs19_c00248{font-size:45.750000px;}
.fs1a_c00248{font-size:51.000000px;}
.fs17_c00248{font-size:52.500000px;}
.fsa_c00248{font-size:76.500000px;}
.fs1b_c00248{font-size:77.250000px;}
.fs3_c00248{font-size:78.000000px;}
.fs0_c00248{font-size:78.750000px;}
.fs2_c00248{font-size:80.250000px;}
.fsb_c00248{font-size:81.750000px;}
.fs6_c00248{font-size:82.500000px;}
.fs9_c00248{font-size:83.250000px;}
.fs7_c00248{font-size:84.750000px;}
.fs5_c00248{font-size:85.500000px;}
.fs8_c00248{font-size:87.000000px;}
.fs1_c00248{font-size:115.500000px;}
.fs4_c00248{font-size:129.750000px;}
.y0_c00248{bottom:0.000000px;}
.y30_c00248{bottom:185.760150px;}
.y2f_c00248{bottom:185.760315px;}
.y2e_c00248{bottom:215.279850px;}
.y2d_c00248{bottom:215.283120px;}
.y2c_c00248{bottom:244.802655px;}
.y2b_c00248{bottom:274.682370px;}
.y2a_c00248{bottom:304.201905px;}
.y29_c00248{bottom:333.721440px;}
.y28_c00248{bottom:363.601155px;}
.y27_c00248{bottom:393.480885px;}
.y26_c00248{bottom:423.359850px;}
.y25_c00248{bottom:429.121035px;}
.y24_c00248{bottom:453.240420px;}
.y23_c00248{bottom:453.240645px;}
.y22_c00248{bottom:483.838950px;}
.y21_c00248{bottom:513.000090px;}
.y20_c00248{bottom:543.240000px;}
.y1f_c00248{bottom:572.759535px;}
.y1e_c00248{bottom:572.759790px;}
.y1d_c00248{bottom:632.160855px;}
.y1c_c00248{bottom:662.040570px;}
.y1b_c00248{bottom:662.040750px;}
.y19_c00248{bottom:691.560195px;}
.y1a_c00248{bottom:691.560285px;}
.y18_c00248{bottom:721.800105px;}
.y17_c00248{bottom:721.800915px;}
.y16_c00248{bottom:752.040825px;}
.y15_c00248{bottom:781.920540px;}
.y14_c00248{bottom:812.160465px;}
.y13_c00248{bottom:812.162820px;}
.y12_c00248{bottom:842.042535px;}
.y11_c00248{bottom:871.201590px;}
.y10_c00248{bottom:901.081305px;}
.yf_c00248{bottom:930.961035px;}
.ye_c00248{bottom:930.961950px;}
.yd_c00248{bottom:961.560240px;}
.yc_c00248{bottom:961.561140px;}
.ya_c00248{bottom:991.440105px;}
.yb_c00248{bottom:991.440855px;}
.y9_c00248{bottom:1021.319820px;}
.y8_c00248{bottom:1021.320000px;}
.y7_c00248{bottom:1050.839535px;}
.y6_c00248{bottom:1050.840435px;}
.y5_c00248{bottom:1080.720150px;}
.y4_c00248{bottom:1080.720960px;}
.y2_c00248{bottom:1110.599925px;}
.y3_c00248{bottom:1110.600675px;}
.y1_c00248{bottom:1140.479640px;}
.h14_c00248{height:21.120117px;}
.h10_c00248{height:22.684570px;}
.h15_c00248{height:25.031250px;}
.h13_c00248{height:28.160156px;}
.h17_c00248{height:30.234375px;}
.h18_c00248{height:30.990234px;}
.h19_c00248{height:31.746094px;}
.hf_c00248{height:32.071289px;}
.h1a_c00248{height:33.257812px;}
.h1c_c00248{height:34.013672px;}
.h12_c00248{height:34.417969px;}
.h16_c00248{height:40.675781px;}
.h11_c00248{height:42.240234px;}
.he_c00248{height:43.804688px;}
.h1d_c00248{height:46.107422px;}
.h1e_c00248{height:51.398438px;}
.h1b_c00248{height:52.910156px;}
.hc_c00248{height:75.080566px;}
.h1f_c00248{height:75.816650px;}
.h4_c00248{height:76.552734px;}
.h1_c00248{height:77.288818px;}
.h3_c00248{height:78.760986px;}
.hd_c00248{height:80.233154px;}
.h8_c00248{height:80.969238px;}
.hb_c00248{height:81.705322px;}
.h5_c00248{height:82.133789px;}
.h9_c00248{height:83.177490px;}
.h7_c00248{height:84.498047px;}
.ha_c00248{height:85.980469px;}
.h2_c00248{height:120.462891px;}
.h6_c00248{height:135.325195px;}
.h0_c00248{height:1263.000000px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x29_c00248{left:142.201830px;}
.x16_c00248{left:143.277990px;}
.x1_c00248{left:144.358665px;}
.x3c_c00248{left:222.118785px;}
.x2f_c00248{left:229.679700px;}
.x3d_c00248{left:236.159385px;}
.x7_c00248{left:237.599700px;}
.x5_c00248{left:248.398635px;}
.x2a_c00248{left:257.759100px;}
.x27_c00248{left:262.080000px;}
.x6_c00248{left:263.159385px;}
.x2b_c00248{left:280.798950px;}
.x28_c00248{left:284.399850px;}
.x30_c00248{left:314.998950px;}
.x3b_c00248{left:316.080000px;}
.x17_c00248{left:335.159850px;}
.x31_c00248{left:340.558635px;}
.x18_c00248{left:354.958350px;}
.xf_c00248{left:361.439685px;}
.x8_c00248{left:366.479235px;}
.x10_c00248{left:367.919535px;}
.x11_c00248{left:375.839535px;}
.x2d_c00248{left:379.799535px;}
.x12_c00248{left:384.479685px;}
.x32_c00248{left:389.878320px;}
.x9_c00248{left:395.998950px;}
.x2e_c00248{left:397.080000px;}
.xd_c00248{left:405.000000px;}
.xe_c00248{left:415.439670px;}
.x24_c00248{left:438.838950px;}
.x1b_c00248{left:441.358665px;}
.x25_c00248{left:452.879520px;}
.x33_c00248{left:462.239820px;}
.x1f_c00248{left:466.559100px;}
.x2c_c00248{left:478.080000px;}
.x1c_c00248{left:481.319820px;}
.x34_c00248{left:520.918350px;}
.x20_c00248{left:554.399820px;}
.x21_c00248{left:569.519670px;}
.x35_c00248{left:576.358665px;}
.x19_c00248{left:588.238770px;}
.x1a_c00248{left:607.679670px;}
.x22_c00248{left:643.319820px;}
.x36_c00248{left:645.119385px;}
.x26_c00248{left:650.519670px;}
.x23_c00248{left:658.439670px;}
.x2_c00248{left:660.959385px;}
.x1d_c00248{left:668.159370px;}
.x37_c00248{left:677.519670px;}
.x3_c00248{left:681.838950px;}
.x1e_c00248{left:689.038920px;}
.x4_c00248{left:692.998950px;}
.x38_c00248{left:698.399235px;}
.x13_c00248{left:709.199850px;}
.x3e_c00248{left:714.239220px;}
.x14_c00248{left:717.479235px;}
.xa_c00248{left:728.279850px;}
.x15_c00248{left:730.079355px;}
.x39_c00248{left:731.519670px;}
.xb_c00248{left:742.679670px;}
.xc_c00248{left:757.799520px;}
.x3a_c00248{left:772.558590px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls12_c00248{letter-spacing:-15.768267pt;}
.lse_c00248{letter-spacing:-12.973200pt;}
.ls10_c00248{letter-spacing:-10.320800pt;}
.ls11_c00248{letter-spacing:-7.924000pt;}
.ls16_c00248{letter-spacing:-7.266700pt;}
.lsc_c00248{letter-spacing:-6.714400pt;}
.ls9_c00248{letter-spacing:-5.943000pt;}
.ls17_c00248{letter-spacing:-5.285000pt;}
.ls13_c00248{letter-spacing:-4.750060pt;}
.ls3_c00248{letter-spacing:-4.619300pt;}
.ls15_c00248{letter-spacing:-4.541667pt;}
.lsd_c00248{letter-spacing:-3.961300pt;}
.ls7_c00248{letter-spacing:-3.336667pt;}
.ls5_c00248{letter-spacing:-3.304000pt;}
.ls1f_c00248{letter-spacing:-2.788380pt;}
.lsa_c00248{letter-spacing:-2.669333pt;}
.ls1_c00248{letter-spacing:-2.639000pt;}
.lsf_c00248{letter-spacing:-2.597247pt;}
.ls2_c00248{letter-spacing:-1.981700pt;}
.ls30_c00248{letter-spacing:-1.777067pt;}
.ls6_c00248{letter-spacing:-1.323700pt;}
.ls2f_c00248{letter-spacing:-1.256600pt;}
.ls1a_c00248{letter-spacing:-0.852600pt;}
.lsb_c00248{letter-spacing:-0.759733pt;}
.ls4_c00248{letter-spacing:-0.658000pt;}
.ls2c_c00248{letter-spacing:-0.467700pt;}
.ls8_c00248{letter-spacing:0.000000pt;}
.ls23_c00248{letter-spacing:0.627200pt;}
.ls24_c00248{letter-spacing:0.640987pt;}
.ls1e_c00248{letter-spacing:0.676800pt;}
.ls27_c00248{letter-spacing:0.966000pt;}
.ls1c_c00248{letter-spacing:0.976507pt;}
.ls2d_c00248{letter-spacing:1.302400pt;}
.ls2a_c00248{letter-spacing:1.396560pt;}
.ls21_c00248{letter-spacing:1.411440pt;}
.ls31_c00248{letter-spacing:1.476333pt;}
.ls14_c00248{letter-spacing:2.128400pt;}
.ls2b_c00248{letter-spacing:2.277333pt;}
.ls0_c00248{letter-spacing:2.607733pt;}
.ls1b_c00248{letter-spacing:3.600360pt;}
.ls22_c00248{letter-spacing:4.666667pt;}
.ls29_c00248{letter-spacing:5.776400pt;}
.ls19_c00248{letter-spacing:9.760733pt;}
.ls25_c00248{letter-spacing:12.026667pt;}
.ls1d_c00248{letter-spacing:13.067040pt;}
.ls20_c00248{letter-spacing:14.932960pt;}
.ls26_c00248{letter-spacing:15.131733pt;}
.ls18_c00248{letter-spacing:16.800000pt;}
.ls28_c00248{letter-spacing:25.231400pt;}
.ls2e_c00248{letter-spacing:28.422000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
._f_c00248{margin-left:-39.674727pt;}
._3_c00248{margin-left:-9.392587pt;}
._5_c00248{margin-left:-6.210492pt;}
._1a_c00248{margin-left:-4.682643pt;}
._1_c00248{margin-left:-3.706130pt;}
._e_c00248{margin-left:-2.235945pt;}
._10_c00248{margin-left:-1.189894pt;}
._0_c00248{width:1.014498pt;}
._6_c00248{width:2.488091pt;}
._2_c00248{width:3.500964pt;}
._d_c00248{width:4.831004pt;}
._4_c00248{width:5.861708pt;}
._a_c00248{width:6.931915pt;}
._8_c00248{width:8.288264pt;}
._7_c00248{width:10.066370pt;}
._9_c00248{width:11.971558pt;}
._12_c00248{width:12.875206pt;}
._11_c00248{width:14.094236pt;}
._c_c00248{width:16.230240pt;}
._b_c00248{width:17.486158pt;}
._18_c00248{width:18.543964pt;}
._17_c00248{width:19.452789pt;}
._1b_c00248{width:20.734172pt;}
._14_c00248{width:22.211238pt;}
._1c_c00248{width:23.554736pt;}
._15_c00248{width:24.443842pt;}
._13_c00248{width:28.148717pt;}
._16_c00248{width:34.470100pt;}
._19_c00248{width:41.406803pt;}
.fs12_c00248{font-size:18.000000pt;}
.fse_c00248{font-size:19.333333pt;}
.fs13_c00248{font-size:21.333333pt;}
.fs11_c00248{font-size:24.000000pt;}
.fs15_c00248{font-size:26.666667pt;}
.fsd_c00248{font-size:27.333333pt;}
.fs16_c00248{font-size:28.000000pt;}
.fs10_c00248{font-size:29.333333pt;}
.fs18_c00248{font-size:30.000000pt;}
.fs14_c00248{font-size:34.666667pt;}
.fsf_c00248{font-size:36.000000pt;}
.fsc_c00248{font-size:37.333333pt;}
.fs19_c00248{font-size:40.666667pt;}
.fs1a_c00248{font-size:45.333333pt;}
.fs17_c00248{font-size:46.666667pt;}
.fsa_c00248{font-size:68.000000pt;}
.fs1b_c00248{font-size:68.666667pt;}
.fs3_c00248{font-size:69.333333pt;}
.fs0_c00248{font-size:70.000000pt;}
.fs2_c00248{font-size:71.333333pt;}
.fsb_c00248{font-size:72.666667pt;}
.fs6_c00248{font-size:73.333333pt;}
.fs9_c00248{font-size:74.000000pt;}
.fs7_c00248{font-size:75.333333pt;}
.fs5_c00248{font-size:76.000000pt;}
.fs8_c00248{font-size:77.333333pt;}
.fs1_c00248{font-size:102.666667pt;}
.fs4_c00248{font-size:115.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y30_c00248{bottom:165.120133pt;}
.y2f_c00248{bottom:165.120280pt;}
.y2e_c00248{bottom:191.359867pt;}
.y2d_c00248{bottom:191.362773pt;}
.y2c_c00248{bottom:217.602360pt;}
.y2b_c00248{bottom:244.162107pt;}
.y2a_c00248{bottom:270.401693pt;}
.y29_c00248{bottom:296.641280pt;}
.y28_c00248{bottom:323.201027pt;}
.y27_c00248{bottom:349.760787pt;}
.y26_c00248{bottom:376.319867pt;}
.y25_c00248{bottom:381.440920pt;}
.y24_c00248{bottom:402.880373pt;}
.y23_c00248{bottom:402.880573pt;}
.y22_c00248{bottom:430.079067pt;}
.y21_c00248{bottom:456.000080pt;}
.y20_c00248{bottom:482.880000pt;}
.y1f_c00248{bottom:509.119587pt;}
.y1e_c00248{bottom:509.119813pt;}
.y1d_c00248{bottom:561.920760pt;}
.y1c_c00248{bottom:588.480507pt;}
.y1b_c00248{bottom:588.480667pt;}
.y19_c00248{bottom:614.720173pt;}
.y1a_c00248{bottom:614.720253pt;}
.y18_c00248{bottom:641.600093pt;}
.y17_c00248{bottom:641.600813pt;}
.y16_c00248{bottom:668.480733pt;}
.y15_c00248{bottom:695.040480pt;}
.y14_c00248{bottom:721.920413pt;}
.y13_c00248{bottom:721.922507pt;}
.y12_c00248{bottom:748.482253pt;}
.y11_c00248{bottom:774.401413pt;}
.y10_c00248{bottom:800.961160pt;}
.yf_c00248{bottom:827.520920pt;}
.ye_c00248{bottom:827.521733pt;}
.yd_c00248{bottom:854.720213pt;}
.yc_c00248{bottom:854.721013pt;}
.ya_c00248{bottom:881.280093pt;}
.yb_c00248{bottom:881.280760pt;}
.y9_c00248{bottom:907.839840pt;}
.y8_c00248{bottom:907.840000pt;}
.y7_c00248{bottom:934.079587pt;}
.y6_c00248{bottom:934.080387pt;}
.y5_c00248{bottom:960.640133pt;}
.y4_c00248{bottom:960.640853pt;}
.y2_c00248{bottom:987.199933pt;}
.y3_c00248{bottom:987.200600pt;}
.y1_c00248{bottom:1013.759680pt;}
.h14_c00248{height:18.773437pt;}
.h10_c00248{height:20.164062pt;}
.h15_c00248{height:22.250000pt;}
.h13_c00248{height:25.031250pt;}
.h17_c00248{height:26.875000pt;}
.h18_c00248{height:27.546875pt;}
.h19_c00248{height:28.218750pt;}
.hf_c00248{height:28.507812pt;}
.h1a_c00248{height:29.562500pt;}
.h1c_c00248{height:30.234375pt;}
.h12_c00248{height:30.593750pt;}
.h16_c00248{height:36.156250pt;}
.h11_c00248{height:37.546875pt;}
.he_c00248{height:38.937500pt;}
.h1d_c00248{height:40.984375pt;}
.h1e_c00248{height:45.687500pt;}
.h1b_c00248{height:47.031250pt;}
.hc_c00248{height:66.738281pt;}
.h1f_c00248{height:67.392578pt;}
.h4_c00248{height:68.046875pt;}
.h1_c00248{height:68.701172pt;}
.h3_c00248{height:70.009766pt;}
.hd_c00248{height:71.318359pt;}
.h8_c00248{height:71.972656pt;}
.hb_c00248{height:72.626953pt;}
.h5_c00248{height:73.007812pt;}
.h9_c00248{height:73.935547pt;}
.h7_c00248{height:75.109375pt;}
.ha_c00248{height:76.427083pt;}
.h2_c00248{height:107.078125pt;}
.h6_c00248{height:120.289062pt;}
.h0_c00248{height:1122.666667pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x29_c00248{left:126.401627pt;}
.x16_c00248{left:127.358213pt;}
.x1_c00248{left:128.318813pt;}
.x3c_c00248{left:197.438920pt;}
.x2f_c00248{left:204.159733pt;}
.x3d_c00248{left:209.919453pt;}
.x7_c00248{left:211.199733pt;}
.x5_c00248{left:220.798787pt;}
.x2a_c00248{left:229.119200pt;}
.x27_c00248{left:232.960000pt;}
.x6_c00248{left:233.919453pt;}
.x2b_c00248{left:249.599067pt;}
.x28_c00248{left:252.799867pt;}
.x30_c00248{left:279.999067pt;}
.x3b_c00248{left:280.960000pt;}
.x17_c00248{left:297.919867pt;}
.x31_c00248{left:302.718787pt;}
.x18_c00248{left:315.518533pt;}
.xf_c00248{left:321.279720pt;}
.x8_c00248{left:325.759320pt;}
.x10_c00248{left:327.039587pt;}
.x11_c00248{left:334.079587pt;}
.x2d_c00248{left:337.599587pt;}
.x12_c00248{left:341.759720pt;}
.x32_c00248{left:346.558507pt;}
.x9_c00248{left:351.999067pt;}
.x2e_c00248{left:352.960000pt;}
.xd_c00248{left:360.000000pt;}
.xe_c00248{left:369.279707pt;}
.x24_c00248{left:390.079067pt;}
.x1b_c00248{left:392.318813pt;}
.x25_c00248{left:402.559573pt;}
.x33_c00248{left:410.879840pt;}
.x1f_c00248{left:414.719200pt;}
.x2c_c00248{left:424.960000pt;}
.x1c_c00248{left:427.839840pt;}
.x34_c00248{left:463.038533pt;}
.x20_c00248{left:492.799840pt;}
.x21_c00248{left:506.239707pt;}
.x35_c00248{left:512.318813pt;}
.x19_c00248{left:522.878907pt;}
.x1a_c00248{left:540.159707pt;}
.x22_c00248{left:571.839840pt;}
.x36_c00248{left:573.439453pt;}
.x26_c00248{left:578.239707pt;}
.x23_c00248{left:585.279707pt;}
.x2_c00248{left:587.519453pt;}
.x1d_c00248{left:593.919440pt;}
.x37_c00248{left:602.239707pt;}
.x3_c00248{left:606.079067pt;}
.x1e_c00248{left:612.479040pt;}
.x4_c00248{left:615.999067pt;}
.x38_c00248{left:620.799320pt;}
.x13_c00248{left:630.399867pt;}
.x3e_c00248{left:634.879307pt;}
.x14_c00248{left:637.759320pt;}
.xa_c00248{left:647.359867pt;}
.x15_c00248{left:648.959427pt;}
.x39_c00248{left:650.239707pt;}
.xb_c00248{left:660.159707pt;}
.xc_c00248{left:673.599573pt;}
.x3a_c00248{left:686.718747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e1926b00801f4f6c997ca26.woff2')format("woff");}.ff1_c00249{font-family:ff1_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:ff2_c00249;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_2b705a75804d6d7e11265902.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_1ed60982f64de5f34fdc6fd5.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00249{transform:matrix(0.141791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141791,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.162651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162651,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.188889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188889,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.336449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336449,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.lse_c00249{letter-spacing:-10.062053px;}
.ls15_c00249{letter-spacing:-9.153000px;}
.ls14_c00249{letter-spacing:-6.864750px;}
.ls11_c00249{letter-spacing:-4.575825px;}
.ls12_c00249{letter-spacing:-3.429000px;}
.ls18_c00249{letter-spacing:-2.288925px;}
.lsf_c00249{letter-spacing:-2.079675px;}
.lsc_c00249{letter-spacing:-1.984500px;}
.ls13_c00249{letter-spacing:-1.147500px;}
.lsb_c00249{letter-spacing:0.000000px;}
.ls3_c00249{letter-spacing:1.147500px;}
.ls6_c00249{letter-spacing:2.288925px;}
.ls16_c00249{letter-spacing:3.353250px;}
.ls7_c00249{letter-spacing:3.429000px;}
.lsa_c00249{letter-spacing:4.502250px;}
.ls2_c00249{letter-spacing:4.575825px;}
.ls0_c00249{letter-spacing:5.717250px;}
.ls17_c00249{letter-spacing:5.764973px;}
.lsd_c00249{letter-spacing:5.953500px;}
.ls4_c00249{letter-spacing:6.864750px;}
.ls1_c00249{letter-spacing:8.006175px;}
.ls10_c00249{letter-spacing:9.153000px;}
.ls5_c00249{letter-spacing:11.440575px;}
.ls8_c00249{letter-spacing:19.446750px;}
.ls9_c00249{letter-spacing:24.023250px;}
.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;}
._a_c00249{width:3.080608px;}
._0_c00249{width:8.639840px;}
._1_c00249{width:12.933318px;}
._15_c00249{width:15.963498px;}
._c_c00249{width:17.749663px;}
._2_c00249{width:18.890298px;}
._11_c00249{width:24.651275px;}
._e_c00249{width:25.926498px;}
._b_c00249{width:26.981008px;}
._5_c00249{width:28.437498px;}
._7_c00249{width:31.508680px;}
._10_c00249{width:33.729819px;}
._4_c00249{width:39.241983px;}
._9_c00249{width:44.617683px;}
._12_c00249{width:445.939093px;}
._14_c00249{width:503.544119px;}
._3_c00249{width:514.666403px;}
._6_c00249{width:516.651864px;}
._d_c00249{width:539.208339px;}
._8_c00249{width:596.436864px;}
._13_c00249{width:620.587953px;}
._f_c00249{width:668.378685px;}
.fc0_c00249{color:transparent;}
.fs6_c00249{font-size:50.250000px;}
.fs4_c00249{font-size:59.250000px;}
.fs7_c00249{font-size:62.250000px;}
.fs5_c00249{font-size:63.750000px;}
.fs1_c00249{font-size:65.250000px;}
.fs0_c00249{font-size:67.500000px;}
.fs3_c00249{font-size:72.750000px;}
.fs2_c00249{font-size:80.250000px;}
.y0_c00249{bottom:0.000000px;}
.y8_c00249{bottom:552.600135px;}
.y7_c00249{bottom:575.999400px;}
.y6_c00249{bottom:576.000600px;}
.y5_c00249{bottom:622.980540px;}
.yc_c00249{bottom:623.697810px;}
.y4_c00249{bottom:646.381170px;}
.yb_c00249{bottom:646.917945px;}
.y3_c00249{bottom:669.420525px;}
.ya_c00249{bottom:670.139610px;}
.y2_c00249{bottom:693.180615px;}
.y9_c00249{bottom:693.718920px;}
.y1_c00249{bottom:1116.719520px;}
.h7_c00249{height:52.409180px;}
.h5_c00249{height:61.795898px;}
.h8_c00249{height:62.736328px;}
.h6_c00249{height:64.248047px;}
.h2_c00249{height:65.759766px;}
.h1_c00249{height:68.027344px;}
.h4_c00249{height:71.897461px;}
.h3_c00249{height:83.698242px;}
.h0_c00249{height:1263.000000px;}
.w0_c00249{width:892.500000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:206.639700px;}
.x2_c00249{left:247.678500px;}
.x3_c00249{left:270.718500px;}
.xb_c00249{left:306.358635px;}
.xc_c00249{left:335.159850px;}
.xd_c00249{left:347.040000px;}
.x4_c00249{left:381.239850px;}
.x5_c00249{left:404.639100px;}
.xe_c00249{left:429.119610px;}
.x6_c00249{left:531.719100px;}
.xf_c00249{left:532.797480px;}
.x7_c00249{left:566.639100px;}
.x8_c00249{left:596.158770px;}
.x9_c00249{left:631.078770px;}
.xa_c00249{left:654.479685px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.lse_c00249{letter-spacing:-8.944047pt;}
.ls15_c00249{letter-spacing:-8.136000pt;}
.ls14_c00249{letter-spacing:-6.102000pt;}
.ls11_c00249{letter-spacing:-4.067400pt;}
.ls12_c00249{letter-spacing:-3.048000pt;}
.ls18_c00249{letter-spacing:-2.034600pt;}
.lsf_c00249{letter-spacing:-1.848600pt;}
.lsc_c00249{letter-spacing:-1.764000pt;}
.ls13_c00249{letter-spacing:-1.020000pt;}
.lsb_c00249{letter-spacing:0.000000pt;}
.ls3_c00249{letter-spacing:1.020000pt;}
.ls6_c00249{letter-spacing:2.034600pt;}
.ls16_c00249{letter-spacing:2.980667pt;}
.ls7_c00249{letter-spacing:3.048000pt;}
.lsa_c00249{letter-spacing:4.002000pt;}
.ls2_c00249{letter-spacing:4.067400pt;}
.ls0_c00249{letter-spacing:5.082000pt;}
.ls17_c00249{letter-spacing:5.124420pt;}
.lsd_c00249{letter-spacing:5.292000pt;}
.ls4_c00249{letter-spacing:6.102000pt;}
.ls1_c00249{letter-spacing:7.116600pt;}
.ls10_c00249{letter-spacing:8.136000pt;}
.ls5_c00249{letter-spacing:10.169400pt;}
.ls8_c00249{letter-spacing:17.286000pt;}
.ls9_c00249{letter-spacing:21.354000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
._a_c00249{width:2.738319pt;}
._0_c00249{width:7.679858pt;}
._1_c00249{width:11.496282pt;}
._15_c00249{width:14.189776pt;}
._c_c00249{width:15.777478pt;}
._2_c00249{width:16.791376pt;}
._11_c00249{width:21.912244pt;}
._e_c00249{width:23.045776pt;}
._b_c00249{width:23.983119pt;}
._5_c00249{width:25.277776pt;}
._7_c00249{width:28.007715pt;}
._10_c00249{width:29.982061pt;}
._4_c00249{width:34.881763pt;}
._9_c00249{width:39.660163pt;}
._12_c00249{width:396.390305pt;}
._14_c00249{width:447.594773pt;}
._3_c00249{width:457.481247pt;}
._6_c00249{width:459.246102pt;}
._d_c00249{width:479.296302pt;}
._8_c00249{width:530.166102pt;}
._13_c00249{width:551.633736pt;}
._f_c00249{width:594.114386pt;}
.fs6_c00249{font-size:44.666667pt;}
.fs4_c00249{font-size:52.666667pt;}
.fs7_c00249{font-size:55.333333pt;}
.fs5_c00249{font-size:56.666667pt;}
.fs1_c00249{font-size:58.000000pt;}
.fs0_c00249{font-size:60.000000pt;}
.fs3_c00249{font-size:64.666667pt;}
.fs2_c00249{font-size:71.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y8_c00249{bottom:491.200120pt;}
.y7_c00249{bottom:511.999467pt;}
.y6_c00249{bottom:512.000533pt;}
.y5_c00249{bottom:553.760480pt;}
.yc_c00249{bottom:554.398053pt;}
.y4_c00249{bottom:574.561040pt;}
.yb_c00249{bottom:575.038173pt;}
.y3_c00249{bottom:595.040467pt;}
.ya_c00249{bottom:595.679653pt;}
.y2_c00249{bottom:616.160547pt;}
.y9_c00249{bottom:616.639040pt;}
.y1_c00249{bottom:992.639573pt;}
.h7_c00249{height:46.585938pt;}
.h5_c00249{height:54.929688pt;}
.h8_c00249{height:55.765625pt;}
.h6_c00249{height:57.109375pt;}
.h2_c00249{height:58.453125pt;}
.h1_c00249{height:60.468750pt;}
.h4_c00249{height:63.908854pt;}
.h3_c00249{height:74.398438pt;}
.h0_c00249{height:1122.666667pt;}
.w0_c00249{width:793.333333pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:183.679733pt;}
.x2_c00249{left:220.158667pt;}
.x3_c00249{left:240.638667pt;}
.xb_c00249{left:272.318787pt;}
.xc_c00249{left:297.919867pt;}
.xd_c00249{left:308.480000pt;}
.x4_c00249{left:338.879867pt;}
.x5_c00249{left:359.679200pt;}
.xe_c00249{left:381.439653pt;}
.x6_c00249{left:472.639200pt;}
.xf_c00249{left:473.597760pt;}
.x7_c00249{left:503.679200pt;}
.x8_c00249{left:529.918907pt;}
.x9_c00249{left:560.958907pt;}
.xa_c00249{left:581.759720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27d37b6f905db1fb03cb419a.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_4a0a4ff36ec181ffb7976dd4.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_c5f599a9fc839d1ae39d935a.woff2')format("woff");}.ff3_c00250{font-family:ff3_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:ff4_c00250;src:url('chunks/assets/font_66a8eeaa4c5ac8ec3836e79d.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_0b09e4bcd4e35fe72cf043c4.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_207289975970a27a55decea5.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00250{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m23_c00250{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.340625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340625,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m22_c00250{transform:matrix(0.483010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483010,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{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);}
.v0_c00250{vertical-align:0.000000px;}
.ls1a_c00250{letter-spacing:-15.280980px;}
.ls14_c00250{letter-spacing:-13.698675px;}
.ls1f_c00250{letter-spacing:-12.631500px;}
.ls29_c00250{letter-spacing:-11.142338px;}
.ls2b_c00250{letter-spacing:-10.114440px;}
.ls21_c00250{letter-spacing:-9.661500px;}
.ls16_c00250{letter-spacing:-9.562778px;}
.ls10_c00250{letter-spacing:-8.914500px;}
.lsa_c00250{letter-spacing:-8.175038px;}
.ls1e_c00250{letter-spacing:-6.687150px;}
.ls20_c00250{letter-spacing:-6.165338px;}
.lse_c00250{letter-spacing:-5.945625px;}
.lsd_c00250{letter-spacing:-5.196713px;}
.ls15_c00250{letter-spacing:-5.152575px;}
.lsc_c00250{letter-spacing:-5.109375px;}
.ls22_c00250{letter-spacing:-5.085600px;}
.ls28_c00250{letter-spacing:-4.631288px;}
.lsb_c00250{letter-spacing:-4.456463px;}
.ls13_c00250{letter-spacing:-4.410975px;}
.ls4_c00250{letter-spacing:-3.717000px;}
.ls23_c00250{letter-spacing:-3.299400px;}
.ls12_c00250{letter-spacing:-3.293055px;}
.ls8_c00250{letter-spacing:-2.968875px;}
.ls3_c00250{letter-spacing:-2.229413px;}
.ls9_c00250{letter-spacing:-1.489163px;}
.ls1b_c00250{letter-spacing:-1.253175px;}
.ls2a_c00250{letter-spacing:-1.167248px;}
.ls2c_c00250{letter-spacing:-0.899250px;}
.ls18_c00250{letter-spacing:-0.826800px;}
.ls19_c00250{letter-spacing:-0.803400px;}
.ls2d_c00250{letter-spacing:-0.779220px;}
.ls5_c00250{letter-spacing:-0.740250px;}
.ls7_c00250{letter-spacing:0.000000px;}
.ls6_c00250{letter-spacing:0.740250px;}
.ls0_c00250{letter-spacing:0.803400px;}
.ls1_c00250{letter-spacing:1.489163px;}
.ls11_c00250{letter-spacing:2.206650px;}
.ls17_c00250{letter-spacing:2.410200px;}
.ls26_c00250{letter-spacing:2.444445px;}
.lsf_c00250{letter-spacing:2.464875px;}
.ls2_c00250{letter-spacing:2.596620px;}
.ls2e_c00250{letter-spacing:3.705075px;}
.ls1d_c00250{letter-spacing:3.772440px;}
.ls25_c00250{letter-spacing:4.200000px;}
.ls1c_c00250{letter-spacing:4.381500px;}
.ls27_c00250{letter-spacing:7.318508px;}
.ls24_c00250{letter-spacing:28.001220px;}
.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;}
._1c_c00250{margin-left:-5.400645px;}
._d_c00250{margin-left:-3.888972px;}
._b_c00250{margin-left:-2.336186px;}
._c_c00250{margin-left:-1.046275px;}
._e_c00250{width:1.103644px;}
._5_c00250{width:2.436391px;}
._1b_c00250{width:3.560763px;}
._2_c00250{width:4.694065px;}
._6_c00250{width:5.743772px;}
._1_c00250{width:6.874608px;}
._3_c00250{width:8.049929px;}
._0_c00250{width:9.704927px;}
._7_c00250{width:11.615268px;}
._8_c00250{width:13.679024px;}
._9_c00250{width:15.580806px;}
._f_c00250{width:16.971249px;}
._15_c00250{width:18.260416px;}
._12_c00250{width:19.743249px;}
._a_c00250{width:21.609490px;}
._14_c00250{width:22.838867px;}
._4_c00250{width:24.328564px;}
._13_c00250{width:26.496403px;}
._11_c00250{width:27.938212px;}
._18_c00250{width:32.203282px;}
._17_c00250{width:33.720334px;}
._16_c00250{width:35.274101px;}
._1a_c00250{width:37.754964px;}
._10_c00250{width:40.997250px;}
._19_c00250{width:60.826441px;}
.fc0_c00250{color:transparent;}
.fs9_c00250{font-size:34.500000px;}
.fs8_c00250{font-size:36.750000px;}
.fse_c00250{font-size:52.500000px;}
.fsc_c00250{font-size:60.000000px;}
.fs6_c00250{font-size:70.500000px;}
.fs7_c00250{font-size:77.250000px;}
.fs0_c00250{font-size:78.000000px;}
.fs1_c00250{font-size:78.750000px;}
.fs3_c00250{font-size:80.250000px;}
.fs4_c00250{font-size:81.750000px;}
.fs5_c00250{font-size:82.500000px;}
.fs10_c00250{font-size:83.250000px;}
.fsb_c00250{font-size:84.000000px;}
.fsa_c00250{font-size:84.750000px;}
.fsf_c00250{font-size:85.500000px;}
.fs2_c00250{font-size:87.000000px;}
.fsd_c00250{font-size:101.250000px;}
.y0_c00250{bottom:0.000000px;}
.y2b_c00250{bottom:184.679745px;}
.y2a_c00250{bottom:213.838785px;}
.y29_c00250{bottom:243.360120px;}
.y27_c00250{bottom:273.238155px;}
.y28_c00250{bottom:273.239850px;}
.y26_c00250{bottom:332.999700px;}
.y25_c00250{bottom:362.879430px;}
.y24_c00250{bottom:392.040570px;}
.y23_c00250{bottom:421.201035px;}
.y22_c00250{bottom:421.560285px;}
.y21_c00250{bottom:432.000000px;}
.y1f_c00250{bottom:451.438755px;}
.y20_c00250{bottom:451.440900px;}
.y1e_c00250{bottom:482.399340px;}
.y1d_c00250{bottom:512.639265px;}
.y1c_c00250{bottom:542.518980px;}
.y1b_c00250{bottom:571.680135px;}
.y1a_c00250{bottom:571.681020px;}
.y19_c00250{bottom:601.560750px;}
.y18_c00250{bottom:601.560885px;}
.y17_c00250{bottom:631.080420px;}
.y15_c00250{bottom:690.480840px;}
.y16_c00250{bottom:690.480885px;}
.y14_c00250{bottom:720.720750px;}
.y13_c00250{bottom:747.000600px;}
.y12_c00250{bottom:751.319820px;}
.y10_c00250{bottom:780.120990px;}
.y11_c00250{bottom:780.121035px;}
.ye_c00250{bottom:810.360150px;}
.yf_c00250{bottom:810.360900px;}
.yd_c00250{bottom:840.239865px;}
.yc_c00250{bottom:840.240585px;}
.yb_c00250{bottom:870.120300px;}
.ya_c00250{bottom:900.360210px;}
.y9_c00250{bottom:930.600135px;}
.y8_c00250{bottom:930.600540px;}
.y7_c00250{bottom:960.480270px;}
.y6_c00250{bottom:989.999790px;}
.y5_c00250{bottom:1019.879520px;}
.y4_c00250{bottom:1019.879535px;}
.y3_c00250{bottom:1049.400885px;}
.y2_c00250{bottom:1079.280600px;}
.y1_c00250{bottom:1139.400240px;}
.he_c00250{height:35.982422px;}
.hd_c00250{height:36.319336px;}
.h15_c00250{height:54.755859px;}
.h14_c00250{height:60.468750px;}
.h12_c00250{height:62.578125px;}
.h8_c00250{height:69.191895px;}
.h7_c00250{height:71.050781px;}
.h18_c00250{height:75.816650px;}
.h11_c00250{height:76.552734px;}
.h2_c00250{height:77.288818px;}
.h9_c00250{height:77.853516px;}
.hc_c00250{height:78.609375px;}
.h4_c00250{height:78.760986px;}
.ha_c00250{height:79.309570px;}
.hb_c00250{height:79.365234px;}
.h5_c00250{height:80.233154px;}
.h6_c00250{height:80.969238px;}
.h1_c00250{height:81.351562px;}
.h1a_c00250{height:82.388672px;}
.h10_c00250{height:82.441406px;}
.hf_c00250{height:83.177490px;}
.h17_c00250{height:83.900391px;}
.h19_c00250{height:84.656250px;}
.h3_c00250{height:85.385742px;}
.h16_c00250{height:86.167969px;}
.h13_c00250{height:105.600586px;}
.h0_c00250{height:1263.000000px;}
.w0_c00250{width:892.500000px;}
.x0_c00250{left:0.000000px;}
.x38_c00250{left:137.875050px;}
.x21_c00250{left:140.039400px;}
.x8_c00250{left:141.117570px;}
.x1_c00250{left:142.199850px;}
.x1c_c00250{left:167.398665px;}
.x22_c00250{left:174.598500px;}
.x9_c00250{left:187.918950px;}
.xa_c00250{left:201.598500px;}
.x2_c00250{left:209.159385px;}
.x2d_c00250{left:224.279250px;}
.x13_c00250{left:226.078785px;}
.x2e_c00250{left:248.398635px;}
.x2b_c00250{left:251.999400px;}
.x14_c00250{left:258.838515px;}
.x2c_c00250{left:267.478635px;}
.x27_c00250{left:282.959400px;}
.x25_c00250{left:295.198785px;}
.xb_c00250{left:302.398635px;}
.x28_c00250{left:309.598530px;}
.x26_c00250{left:316.080000px;}
.x15_c00250{left:323.279850px;}
.xc_c00250{left:335.878350px;}
.x16_c00250{left:343.798515px;}
.x2f_c00250{left:362.519100px;}
.x17_c00250{left:408.958335px;}
.x18_c00250{left:422.639700px;}
.x35_c00250{left:426.238770px;}
.x29_c00250{left:433.799565px;}
.xf_c00250{left:439.559100px;}
.x1f_c00250{left:444.598530px;}
.x2a_c00250{left:449.278800px;}
.x30_c00250{left:451.439250px;}
.x10_c00250{left:457.198785px;}
.xd_c00250{left:466.199850px;}
.x20_c00250{left:469.078770px;}
.x3_c00250{left:474.119985px;}
.xe_c00250{left:482.399235px;}
.x4_c00250{left:488.519670px;}
.x5_c00250{left:490.678530px;}
.x31_c00250{left:492.838950px;}
.x6_c00250{left:507.238770px;}
.x19_c00250{left:509.758530px;}
.x7_c00250{left:529.558635px;}
.x32_c00250{left:557.639700px;}
.x23_c00250{left:597.958335px;}
.x1a_c00250{left:600.118785px;}
.x36_c00250{left:619.559685px;}
.x24_c00250{left:624.599070px;}
.x37_c00250{left:642.958920px;}
.x1b_c00250{left:646.198785px;}
.x33_c00250{left:661.318770px;}
.x1d_c00250{left:669.599670px;}
.x11_c00250{left:684.358605px;}
.x34_c00250{left:685.439670px;}
.x1e_c00250{left:687.239220px;}
.x12_c00250{left:699.119385px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls1a_c00250{letter-spacing:-13.583093pt;}
.ls14_c00250{letter-spacing:-12.176600pt;}
.ls1f_c00250{letter-spacing:-11.228000pt;}
.ls29_c00250{letter-spacing:-9.904300pt;}
.ls2b_c00250{letter-spacing:-8.990613pt;}
.ls21_c00250{letter-spacing:-8.588000pt;}
.ls16_c00250{letter-spacing:-8.500247pt;}
.ls10_c00250{letter-spacing:-7.924000pt;}
.lsa_c00250{letter-spacing:-7.266700pt;}
.ls1e_c00250{letter-spacing:-5.944133pt;}
.ls20_c00250{letter-spacing:-5.480300pt;}
.lse_c00250{letter-spacing:-5.285000pt;}
.lsd_c00250{letter-spacing:-4.619300pt;}
.ls15_c00250{letter-spacing:-4.580067pt;}
.lsc_c00250{letter-spacing:-4.541667pt;}
.ls22_c00250{letter-spacing:-4.520533pt;}
.ls28_c00250{letter-spacing:-4.116700pt;}
.lsb_c00250{letter-spacing:-3.961300pt;}
.ls13_c00250{letter-spacing:-3.920867pt;}
.ls4_c00250{letter-spacing:-3.304000pt;}
.ls23_c00250{letter-spacing:-2.932800pt;}
.ls12_c00250{letter-spacing:-2.927160pt;}
.ls8_c00250{letter-spacing:-2.639000pt;}
.ls3_c00250{letter-spacing:-1.981700pt;}
.ls9_c00250{letter-spacing:-1.323700pt;}
.ls1b_c00250{letter-spacing:-1.113933pt;}
.ls2a_c00250{letter-spacing:-1.037553pt;}
.ls2c_c00250{letter-spacing:-0.799333pt;}
.ls18_c00250{letter-spacing:-0.734933pt;}
.ls19_c00250{letter-spacing:-0.714133pt;}
.ls2d_c00250{letter-spacing:-0.692640pt;}
.ls5_c00250{letter-spacing:-0.658000pt;}
.ls7_c00250{letter-spacing:0.000000pt;}
.ls6_c00250{letter-spacing:0.658000pt;}
.ls0_c00250{letter-spacing:0.714133pt;}
.ls1_c00250{letter-spacing:1.323700pt;}
.ls11_c00250{letter-spacing:1.961467pt;}
.ls17_c00250{letter-spacing:2.142400pt;}
.ls26_c00250{letter-spacing:2.172840pt;}
.lsf_c00250{letter-spacing:2.191000pt;}
.ls2_c00250{letter-spacing:2.308107pt;}
.ls2e_c00250{letter-spacing:3.293400pt;}
.ls1d_c00250{letter-spacing:3.353280pt;}
.ls25_c00250{letter-spacing:3.733333pt;}
.ls1c_c00250{letter-spacing:3.894667pt;}
.ls27_c00250{letter-spacing:6.505340pt;}
.ls24_c00250{letter-spacing:24.889973pt;}
.ws0_c00250{word-spacing:0.000000pt;}
._1c_c00250{margin-left:-4.800574pt;}
._d_c00250{margin-left:-3.456864pt;}
._b_c00250{margin-left:-2.076609pt;}
._c_c00250{margin-left:-0.930023pt;}
._e_c00250{width:0.981017pt;}
._5_c00250{width:2.165681pt;}
._1b_c00250{width:3.165123pt;}
._2_c00250{width:4.172502pt;}
._6_c00250{width:5.105575pt;}
._1_c00250{width:6.110762pt;}
._3_c00250{width:7.155492pt;}
._0_c00250{width:8.626602pt;}
._7_c00250{width:10.324683pt;}
._8_c00250{width:12.159132pt;}
._9_c00250{width:13.849606pt;}
._f_c00250{width:15.085555pt;}
._15_c00250{width:16.231481pt;}
._12_c00250{width:17.549555pt;}
._a_c00250{width:19.208436pt;}
._14_c00250{width:20.301215pt;}
._4_c00250{width:21.625391pt;}
._13_c00250{width:23.552358pt;}
._11_c00250{width:24.833966pt;}
._18_c00250{width:28.625140pt;}
._17_c00250{width:29.973630pt;}
._16_c00250{width:31.354757pt;}
._1a_c00250{width:33.559968pt;}
._10_c00250{width:36.442000pt;}
._19_c00250{width:54.067947pt;}
.fs9_c00250{font-size:30.666667pt;}
.fs8_c00250{font-size:32.666667pt;}
.fse_c00250{font-size:46.666667pt;}
.fsc_c00250{font-size:53.333333pt;}
.fs6_c00250{font-size:62.666667pt;}
.fs7_c00250{font-size:68.666667pt;}
.fs0_c00250{font-size:69.333333pt;}
.fs1_c00250{font-size:70.000000pt;}
.fs3_c00250{font-size:71.333333pt;}
.fs4_c00250{font-size:72.666667pt;}
.fs5_c00250{font-size:73.333333pt;}
.fs10_c00250{font-size:74.000000pt;}
.fsb_c00250{font-size:74.666667pt;}
.fsa_c00250{font-size:75.333333pt;}
.fsf_c00250{font-size:76.000000pt;}
.fs2_c00250{font-size:77.333333pt;}
.fsd_c00250{font-size:90.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y2b_c00250{bottom:164.159773pt;}
.y2a_c00250{bottom:190.078920pt;}
.y29_c00250{bottom:216.320107pt;}
.y27_c00250{bottom:242.878360pt;}
.y28_c00250{bottom:242.879867pt;}
.y26_c00250{bottom:295.999733pt;}
.y25_c00250{bottom:322.559493pt;}
.y24_c00250{bottom:348.480507pt;}
.y23_c00250{bottom:374.400920pt;}
.y22_c00250{bottom:374.720253pt;}
.y21_c00250{bottom:384.000000pt;}
.y1f_c00250{bottom:401.278893pt;}
.y20_c00250{bottom:401.280800pt;}
.y1e_c00250{bottom:428.799413pt;}
.y1d_c00250{bottom:455.679347pt;}
.y1c_c00250{bottom:482.239093pt;}
.y1b_c00250{bottom:508.160120pt;}
.y1a_c00250{bottom:508.160907pt;}
.y19_c00250{bottom:534.720667pt;}
.y18_c00250{bottom:534.720787pt;}
.y17_c00250{bottom:560.960373pt;}
.y15_c00250{bottom:613.760747pt;}
.y16_c00250{bottom:613.760787pt;}
.y14_c00250{bottom:640.640667pt;}
.y13_c00250{bottom:664.000533pt;}
.y12_c00250{bottom:667.839840pt;}
.y10_c00250{bottom:693.440880pt;}
.y11_c00250{bottom:693.440920pt;}
.ye_c00250{bottom:720.320133pt;}
.yf_c00250{bottom:720.320800pt;}
.yd_c00250{bottom:746.879880pt;}
.yc_c00250{bottom:746.880520pt;}
.yb_c00250{bottom:773.440267pt;}
.ya_c00250{bottom:800.320187pt;}
.y9_c00250{bottom:827.200120pt;}
.y8_c00250{bottom:827.200480pt;}
.y7_c00250{bottom:853.760240pt;}
.y6_c00250{bottom:879.999813pt;}
.y5_c00250{bottom:906.559573pt;}
.y4_c00250{bottom:906.559587pt;}
.y3_c00250{bottom:932.800787pt;}
.y2_c00250{bottom:959.360533pt;}
.y1_c00250{bottom:1012.800213pt;}
.he_c00250{height:31.984375pt;}
.hd_c00250{height:32.283854pt;}
.h15_c00250{height:48.671875pt;}
.h14_c00250{height:53.750000pt;}
.h12_c00250{height:55.625000pt;}
.h8_c00250{height:61.503906pt;}
.h7_c00250{height:63.156250pt;}
.h18_c00250{height:67.392578pt;}
.h11_c00250{height:68.046875pt;}
.h2_c00250{height:68.701172pt;}
.h9_c00250{height:69.203125pt;}
.hc_c00250{height:69.875000pt;}
.h4_c00250{height:70.009766pt;}
.ha_c00250{height:70.497396pt;}
.hb_c00250{height:70.546875pt;}
.h5_c00250{height:71.318359pt;}
.h6_c00250{height:71.972656pt;}
.h1_c00250{height:72.312500pt;}
.h1a_c00250{height:73.234375pt;}
.h10_c00250{height:73.281250pt;}
.hf_c00250{height:73.935547pt;}
.h17_c00250{height:74.578125pt;}
.h19_c00250{height:75.250000pt;}
.h3_c00250{height:75.898438pt;}
.h16_c00250{height:76.593750pt;}
.h13_c00250{height:93.867188pt;}
.h0_c00250{height:1122.666667pt;}
.w0_c00250{width:793.333333pt;}
.x0_c00250{left:0.000000pt;}
.x38_c00250{left:122.555600pt;}
.x21_c00250{left:124.479467pt;}
.x8_c00250{left:125.437840pt;}
.x1_c00250{left:126.399867pt;}
.x1c_c00250{left:148.798813pt;}
.x22_c00250{left:155.198667pt;}
.x9_c00250{left:167.039067pt;}
.xa_c00250{left:179.198667pt;}
.x2_c00250{left:185.919453pt;}
.x2d_c00250{left:199.359333pt;}
.x13_c00250{left:200.958920pt;}
.x2e_c00250{left:220.798787pt;}
.x2b_c00250{left:223.999467pt;}
.x14_c00250{left:230.078680pt;}
.x2c_c00250{left:237.758787pt;}
.x27_c00250{left:251.519467pt;}
.x25_c00250{left:262.398920pt;}
.xb_c00250{left:268.798787pt;}
.x28_c00250{left:275.198693pt;}
.x26_c00250{left:280.960000pt;}
.x15_c00250{left:287.359867pt;}
.xc_c00250{left:298.558533pt;}
.x16_c00250{left:305.598680pt;}
.x2f_c00250{left:322.239200pt;}
.x17_c00250{left:363.518520pt;}
.x18_c00250{left:375.679733pt;}
.x35_c00250{left:378.878907pt;}
.x29_c00250{left:385.599613pt;}
.xf_c00250{left:390.719200pt;}
.x1f_c00250{left:395.198693pt;}
.x2a_c00250{left:399.358933pt;}
.x30_c00250{left:401.279333pt;}
.x10_c00250{left:406.398920pt;}
.xd_c00250{left:414.399867pt;}
.x20_c00250{left:416.958907pt;}
.x3_c00250{left:421.439987pt;}
.xe_c00250{left:428.799320pt;}
.x4_c00250{left:434.239707pt;}
.x5_c00250{left:436.158693pt;}
.x31_c00250{left:438.079067pt;}
.x6_c00250{left:450.878907pt;}
.x19_c00250{left:453.118693pt;}
.x7_c00250{left:470.718787pt;}
.x32_c00250{left:495.679733pt;}
.x23_c00250{left:531.518520pt;}
.x1a_c00250{left:533.438920pt;}
.x36_c00250{left:550.719720pt;}
.x24_c00250{left:555.199173pt;}
.x37_c00250{left:571.519040pt;}
.x1b_c00250{left:574.398920pt;}
.x33_c00250{left:587.838907pt;}
.x1d_c00250{left:595.199707pt;}
.x11_c00250{left:608.318760pt;}
.x34_c00250{left:609.279707pt;}
.x1e_c00250{left:610.879307pt;}
.x12_c00250{left:621.439453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9e1b3111cf75f4d84e1f423.woff2')format("woff");}.ff1_c00251{font-family:ff1_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:ff2_c00251;src:url('chunks/assets/font_0456d583aec4307fff52794f.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_b254b99dae0022870b8c8af9.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.364746;font-style:normal;font-weight:normal;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_41ec6f49112e1c267e65cb2c.woff2')format("woff");}.ff4_c00251{font-family:ff4_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:ff5_c00251;src:url('chunks/assets/font_3148b773cb6f98b4fe488bec.woff2')format("woff");}.ff5_c00251{font-family:ff5_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;}
.mb_c00251{transform:matrix(0.176768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176768,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m16_c00251{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m1a_c00251{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.261261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261261,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m18_c00251{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m14_c00251{transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{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_c00251{vertical-align:0.000000px;}
.ls15_c00251{letter-spacing:-19.096800px;}
.ls26_c00251{letter-spacing:-13.053150px;}
.ls1c_c00251{letter-spacing:-11.147640px;}
.ls11_c00251{letter-spacing:-10.402875px;}
.ls28_c00251{letter-spacing:-8.914500px;}
.ls13_c00251{letter-spacing:-8.175038px;}
.ls8_c00251{letter-spacing:-7.426125px;}
.ls22_c00251{letter-spacing:-7.176150px;}
.ls9_c00251{letter-spacing:-6.685875px;}
.ls18_c00251{letter-spacing:-6.362483px;}
.ls12_c00251{letter-spacing:-5.945625px;}
.lsf_c00251{letter-spacing:-5.196713px;}
.ls27_c00251{letter-spacing:-5.054963px;}
.ls17_c00251{letter-spacing:-4.766850px;}
.ls1b_c00251{letter-spacing:-4.722300px;}
.ls10_c00251{letter-spacing:-4.456463px;}
.ls1f_c00251{letter-spacing:-3.749625px;}
.lsb_c00251{letter-spacing:-3.717000px;}
.ls25_c00251{letter-spacing:-3.543750px;}
.ls6_c00251{letter-spacing:-2.968875px;}
.ls21_c00251{letter-spacing:-2.429393px;}
.ls1e_c00251{letter-spacing:-2.344253px;}
.ls14_c00251{letter-spacing:-2.313450px;}
.ls7_c00251{letter-spacing:-2.229413px;}
.lsa_c00251{letter-spacing:-1.489163px;}
.ls20_c00251{letter-spacing:-1.215000px;}
.ls16_c00251{letter-spacing:-0.849600px;}
.ls19_c00251{letter-spacing:-0.834750px;}
.lse_c00251{letter-spacing:-0.761400px;}
.lsc_c00251{letter-spacing:-0.740250px;}
.lsd_c00251{letter-spacing:0.000000px;}
.ls2_c00251{letter-spacing:0.606893px;}
.ls1d_c00251{letter-spacing:0.803400px;}
.ls3_c00251{letter-spacing:1.822500px;}
.ls0_c00251{letter-spacing:2.968875px;}
.ls23_c00251{letter-spacing:4.828200px;}
.ls5_c00251{letter-spacing:5.677875px;}
.ls24_c00251{letter-spacing:5.945625px;}
.ls1_c00251{letter-spacing:8.914500px;}
.ls4_c00251{letter-spacing:9.930375px;}
.ls1a_c00251{letter-spacing:13.911300px;}
.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;}
._19_c00251{margin-left:-165.965128px;}
._12_c00251{margin-left:-54.589441px;}
._5_c00251{margin-left:-47.163791px;}
._11_c00251{margin-left:-11.030646px;}
._18_c00251{margin-left:-7.224956px;}
._e_c00251{margin-left:-6.220596px;}
._c_c00251{margin-left:-4.320611px;}
._2_c00251{margin-left:-2.324655px;}
._d_c00251{margin-left:-1.253670px;}
._10_c00251{width:1.709024px;}
._7_c00251{width:2.915295px;}
._3_c00251{width:4.527932px;}
._1_c00251{width:6.698044px;}
._14_c00251{width:7.995354px;}
._0_c00251{width:9.024245px;}
._b_c00251{width:10.896489px;}
._8_c00251{width:11.912215px;}
._9_c00251{width:13.583751px;}
._4_c00251{width:15.002261px;}
._15_c00251{width:16.616072px;}
._16_c00251{width:17.811853px;}
._6_c00251{width:18.965169px;}
._1a_c00251{width:20.108723px;}
._a_c00251{width:21.306154px;}
._17_c00251{width:22.407778px;}
._f_c00251{width:24.936648px;}
._13_c00251{width:28.263761px;}
.fc0_c00251{color:transparent;}
.fsd_c00251{font-size:32.250000px;}
.fse_c00251{font-size:33.750000px;}
.fsc_c00251{font-size:37.500000px;}
.fsf_c00251{font-size:60.750000px;}
.fs9_c00251{font-size:61.500000px;}
.fs8_c00251{font-size:72.000000px;}
.fs7_c00251{font-size:74.250000px;}
.fsb_c00251{font-size:78.000000px;}
.fs0_c00251{font-size:78.750000px;}
.fs5_c00251{font-size:79.500000px;}
.fs4_c00251{font-size:80.250000px;}
.fs2_c00251{font-size:81.000000px;}
.fs6_c00251{font-size:81.750000px;}
.fs3_c00251{font-size:82.500000px;}
.fs10_c00251{font-size:83.250000px;}
.fsa_c00251{font-size:84.000000px;}
.fs1_c00251{font-size:84.750000px;}
.y0_c00251{bottom:0.000000px;}
.y28_c00251{bottom:183.958950px;}
.y27_c00251{bottom:213.480285px;}
.y26_c00251{bottom:213.480465px;}
.y25_c00251{bottom:243.000000px;}
.y24_c00251{bottom:243.000510px;}
.y23_c00251{bottom:272.520030px;}
.y22_c00251{bottom:302.399760px;}
.y21_c00251{bottom:362.519400px;}
.y20_c00251{bottom:392.038920px;}
.y1f_c00251{bottom:421.919535px;}
.y1e_c00251{bottom:429.480285px;}
.y1c_c00251{bottom:481.678350px;}
.y1d_c00251{bottom:481.679070px;}
.y1b_c00251{bottom:510.839490px;}
.y1a_c00251{bottom:541.079400px;}
.y19_c00251{bottom:541.080255px;}
.y17_c00251{bottom:570.958440px;}
.y18_c00251{bottom:570.959970px;}
.y16_c00251{bottom:600.838170px;}
.y15_c00251{bottom:629.999310px;}
.y14_c00251{bottom:660.239220px;}
.y13_c00251{bottom:660.239820px;}
.y12_c00251{bottom:690.119550px;}
.y11_c00251{bottom:719.999265px;}
.y10_c00251{bottom:750.599670px;}
.ye_c00251{bottom:779.398710px;}
.yf_c00251{bottom:779.399235px;}
.yd_c00251{bottom:809.999100px;}
.yc_c00251{bottom:840.239025px;}
.yb_c00251{bottom:870.118740px;}
.ya_c00251{bottom:870.119175px;}
.y9_c00251{bottom:929.520240px;}
.y8_c00251{bottom:959.399970px;}
.y6_c00251{bottom:988.919445px;}
.y7_c00251{bottom:988.919490px;}
.y5_c00251{bottom:1019.159370px;}
.y4_c00251{bottom:1048.679070px;}
.y3_c00251{bottom:1048.680720px;}
.y2_c00251{bottom:1078.560450px;}
.y1_c00251{bottom:1138.680090px;}
.h10_c00251{height:33.635742px;}
.h11_c00251{height:35.200195px;}
.hf_c00251{height:39.111328px;}
.h12_c00251{height:61.224609px;}
.hb_c00251{height:61.980469px;}
.hc_c00251{height:72.872314px;}
.h9_c00251{height:75.093750px;}
.he_c00251{height:76.552734px;}
.h1_c00251{height:77.288818px;}
.h8_c00251{height:77.440430px;}
.h15_c00251{height:78.609375px;}
.h5_c00251{height:78.760986px;}
.h14_c00251{height:79.365234px;}
.h3_c00251{height:79.497070px;}
.h6_c00251{height:80.121094px;}
.h7_c00251{height:80.791992px;}
.ha_c00251{height:80.876953px;}
.h4_c00251{height:80.969238px;}
.h16_c00251{height:81.533203px;}
.h13_c00251{height:81.705322px;}
.hd_c00251{height:83.015625px;}
.h2_c00251{height:83.177490px;}
.h0_c00251{height:1263.000000px;}
.w0_c00251{width:892.500000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:135.718500px;}
.x16_c00251{left:136.798755px;}
.x26_c00251{left:137.877390px;}
.x1f_c00251{left:139.678500px;}
.x1d_c00251{left:178.199415px;}
.xb_c00251{left:179.998950px;}
.x4_c00251{left:194.759535px;}
.x19_c00251{left:222.838950px;}
.xc_c00251{left:230.038950px;}
.x1a_c00251{left:236.879535px;}
.xd_c00251{left:243.359250px;}
.x1e_c00251{left:265.319850px;}
.x9_c00251{left:271.079385px;}
.x17_c00251{left:272.519685px;}
.x5_c00251{left:280.798950px;}
.x27_c00251{left:284.759100px;}
.xa_c00251{left:286.919535px;}
.xe_c00251{left:289.439235px;}
.x6_c00251{left:298.438635px;}
.x28_c00251{left:300.958350px;}
.x18_c00251{left:308.519100px;}
.xf_c00251{left:311.399850px;}
.x20_c00251{left:330.118785px;}
.x10_c00251{left:338.038950px;}
.x21_c00251{left:354.958350px;}
.x22_c00251{left:389.519070px;}
.x11_c00251{left:406.079400px;}
.x23_c00251{left:456.119385px;}
.x12_c00251{left:489.958335px;}
.x13_c00251{left:503.998950px;}
.x24_c00251{left:553.679670px;}
.x25_c00251{left:574.559100px;}
.x2_c00251{left:606.239220px;}
.x3_c00251{left:623.519670px;}
.x29_c00251{left:665.998950px;}
.x2a_c00251{left:681.479685px;}
.x14_c00251{left:687.239220px;}
.x2b_c00251{left:697.319820px;}
.x15_c00251{left:709.559100px;}
.x7_c00251{left:714.598530px;}
.x2c_c00251{left:718.199385px;}
.x8_c00251{left:732.239820px;}
.x1b_c00251{left:750.599670px;}
.x1c_c00251{left:766.078770px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls15_c00251{letter-spacing:-16.974933pt;}
.ls26_c00251{letter-spacing:-11.602800pt;}
.ls1c_c00251{letter-spacing:-9.909013pt;}
.ls11_c00251{letter-spacing:-9.247000pt;}
.ls28_c00251{letter-spacing:-7.924000pt;}
.ls13_c00251{letter-spacing:-7.266700pt;}
.ls8_c00251{letter-spacing:-6.601000pt;}
.ls22_c00251{letter-spacing:-6.378800pt;}
.ls9_c00251{letter-spacing:-5.943000pt;}
.ls18_c00251{letter-spacing:-5.655540pt;}
.ls12_c00251{letter-spacing:-5.285000pt;}
.lsf_c00251{letter-spacing:-4.619300pt;}
.ls27_c00251{letter-spacing:-4.493300pt;}
.ls17_c00251{letter-spacing:-4.237200pt;}
.ls1b_c00251{letter-spacing:-4.197600pt;}
.ls10_c00251{letter-spacing:-3.961300pt;}
.ls1f_c00251{letter-spacing:-3.333000pt;}
.lsb_c00251{letter-spacing:-3.304000pt;}
.ls25_c00251{letter-spacing:-3.150000pt;}
.ls6_c00251{letter-spacing:-2.639000pt;}
.ls21_c00251{letter-spacing:-2.159460pt;}
.ls1e_c00251{letter-spacing:-2.083780pt;}
.ls14_c00251{letter-spacing:-2.056400pt;}
.ls7_c00251{letter-spacing:-1.981700pt;}
.lsa_c00251{letter-spacing:-1.323700pt;}
.ls20_c00251{letter-spacing:-1.080000pt;}
.ls16_c00251{letter-spacing:-0.755200pt;}
.ls19_c00251{letter-spacing:-0.742000pt;}
.lse_c00251{letter-spacing:-0.676800pt;}
.lsc_c00251{letter-spacing:-0.658000pt;}
.lsd_c00251{letter-spacing:0.000000pt;}
.ls2_c00251{letter-spacing:0.539460pt;}
.ls1d_c00251{letter-spacing:0.714133pt;}
.ls3_c00251{letter-spacing:1.620000pt;}
.ls0_c00251{letter-spacing:2.639000pt;}
.ls23_c00251{letter-spacing:4.291733pt;}
.ls5_c00251{letter-spacing:5.047000pt;}
.ls24_c00251{letter-spacing:5.285000pt;}
.ls1_c00251{letter-spacing:7.924000pt;}
.ls4_c00251{letter-spacing:8.827000pt;}
.ls1a_c00251{letter-spacing:12.365600pt;}
.ws0_c00251{word-spacing:0.000000pt;}
._19_c00251{margin-left:-147.524559pt;}
._12_c00251{margin-left:-48.523947pt;}
._5_c00251{margin-left:-41.923370pt;}
._11_c00251{margin-left:-9.805019pt;}
._18_c00251{margin-left:-6.422183pt;}
._e_c00251{margin-left:-5.529419pt;}
._c_c00251{margin-left:-3.840543pt;}
._2_c00251{margin-left:-2.066360pt;}
._d_c00251{margin-left:-1.114374pt;}
._10_c00251{width:1.519132pt;}
._7_c00251{width:2.591374pt;}
._3_c00251{width:4.024828pt;}
._1_c00251{width:5.953817pt;}
._14_c00251{width:7.106981pt;}
._0_c00251{width:8.021551pt;}
._b_c00251{width:9.685768pt;}
._8_c00251{width:10.588636pt;}
._9_c00251{width:12.074445pt;}
._4_c00251{width:13.335343pt;}
._15_c00251{width:14.769842pt;}
._16_c00251{width:15.832758pt;}
._6_c00251{width:16.857928pt;}
._1a_c00251{width:17.874421pt;}
._a_c00251{width:18.938804pt;}
._17_c00251{width:19.918025pt;}
._f_c00251{width:22.165909pt;}
._13_c00251{width:25.123343pt;}
.fsd_c00251{font-size:28.666667pt;}
.fse_c00251{font-size:30.000000pt;}
.fsc_c00251{font-size:33.333333pt;}
.fsf_c00251{font-size:54.000000pt;}
.fs9_c00251{font-size:54.666667pt;}
.fs8_c00251{font-size:64.000000pt;}
.fs7_c00251{font-size:66.000000pt;}
.fsb_c00251{font-size:69.333333pt;}
.fs0_c00251{font-size:70.000000pt;}
.fs5_c00251{font-size:70.666667pt;}
.fs4_c00251{font-size:71.333333pt;}
.fs2_c00251{font-size:72.000000pt;}
.fs6_c00251{font-size:72.666667pt;}
.fs3_c00251{font-size:73.333333pt;}
.fs10_c00251{font-size:74.000000pt;}
.fsa_c00251{font-size:74.666667pt;}
.fs1_c00251{font-size:75.333333pt;}
.y0_c00251{bottom:0.000000pt;}
.y28_c00251{bottom:163.519067pt;}
.y27_c00251{bottom:189.760253pt;}
.y26_c00251{bottom:189.760413pt;}
.y25_c00251{bottom:216.000000pt;}
.y24_c00251{bottom:216.000453pt;}
.y23_c00251{bottom:242.240027pt;}
.y22_c00251{bottom:268.799787pt;}
.y21_c00251{bottom:322.239467pt;}
.y20_c00251{bottom:348.479040pt;}
.y1f_c00251{bottom:375.039587pt;}
.y1e_c00251{bottom:381.760253pt;}
.y1c_c00251{bottom:428.158533pt;}
.y1d_c00251{bottom:428.159173pt;}
.y1b_c00251{bottom:454.079547pt;}
.y1a_c00251{bottom:480.959467pt;}
.y19_c00251{bottom:480.960227pt;}
.y17_c00251{bottom:507.518613pt;}
.y18_c00251{bottom:507.519973pt;}
.y16_c00251{bottom:534.078373pt;}
.y15_c00251{bottom:559.999387pt;}
.y14_c00251{bottom:586.879307pt;}
.y13_c00251{bottom:586.879840pt;}
.y12_c00251{bottom:613.439600pt;}
.y11_c00251{bottom:639.999347pt;}
.y10_c00251{bottom:667.199707pt;}
.ye_c00251{bottom:692.798853pt;}
.yf_c00251{bottom:692.799320pt;}
.yd_c00251{bottom:719.999200pt;}
.yc_c00251{bottom:746.879133pt;}
.yb_c00251{bottom:773.438880pt;}
.ya_c00251{bottom:773.439267pt;}
.y9_c00251{bottom:826.240213pt;}
.y8_c00251{bottom:852.799973pt;}
.y6_c00251{bottom:879.039507pt;}
.y7_c00251{bottom:879.039547pt;}
.y5_c00251{bottom:905.919440pt;}
.y4_c00251{bottom:932.159173pt;}
.y3_c00251{bottom:932.160640pt;}
.y2_c00251{bottom:958.720400pt;}
.y1_c00251{bottom:1012.160080pt;}
.h10_c00251{height:29.898438pt;}
.h11_c00251{height:31.289062pt;}
.hf_c00251{height:34.765625pt;}
.h12_c00251{height:54.421875pt;}
.hb_c00251{height:55.093750pt;}
.hc_c00251{height:64.775391pt;}
.h9_c00251{height:66.750000pt;}
.he_c00251{height:68.046875pt;}
.h1_c00251{height:68.701172pt;}
.h8_c00251{height:68.835938pt;}
.h15_c00251{height:69.875000pt;}
.h5_c00251{height:70.009766pt;}
.h14_c00251{height:70.546875pt;}
.h3_c00251{height:70.664062pt;}
.h6_c00251{height:71.218750pt;}
.h7_c00251{height:71.815104pt;}
.ha_c00251{height:71.890625pt;}
.h4_c00251{height:71.972656pt;}
.h16_c00251{height:72.473958pt;}
.h13_c00251{height:72.626953pt;}
.hd_c00251{height:73.791667pt;}
.h2_c00251{height:73.935547pt;}
.h0_c00251{height:1122.666667pt;}
.w0_c00251{width:793.333333pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:120.638667pt;}
.x16_c00251{left:121.598893pt;}
.x26_c00251{left:122.557680pt;}
.x1f_c00251{left:124.158667pt;}
.x1d_c00251{left:158.399480pt;}
.xb_c00251{left:159.999067pt;}
.x4_c00251{left:173.119587pt;}
.x19_c00251{left:198.079067pt;}
.xc_c00251{left:204.479067pt;}
.x1a_c00251{left:210.559587pt;}
.xd_c00251{left:216.319333pt;}
.x1e_c00251{left:235.839867pt;}
.x9_c00251{left:240.959453pt;}
.x17_c00251{left:242.239720pt;}
.x5_c00251{left:249.599067pt;}
.x27_c00251{left:253.119200pt;}
.xa_c00251{left:255.039587pt;}
.xe_c00251{left:257.279320pt;}
.x6_c00251{left:265.278787pt;}
.x28_c00251{left:267.518533pt;}
.x18_c00251{left:274.239200pt;}
.xf_c00251{left:276.799867pt;}
.x20_c00251{left:293.438920pt;}
.x10_c00251{left:300.479067pt;}
.x21_c00251{left:315.518533pt;}
.x22_c00251{left:346.239173pt;}
.x11_c00251{left:360.959467pt;}
.x23_c00251{left:405.439453pt;}
.x12_c00251{left:435.518520pt;}
.x13_c00251{left:447.999067pt;}
.x24_c00251{left:492.159707pt;}
.x25_c00251{left:510.719200pt;}
.x2_c00251{left:538.879307pt;}
.x3_c00251{left:554.239707pt;}
.x29_c00251{left:591.999067pt;}
.x2a_c00251{left:605.759720pt;}
.x14_c00251{left:610.879307pt;}
.x2b_c00251{left:619.839840pt;}
.x15_c00251{left:630.719200pt;}
.x7_c00251{left:635.198693pt;}
.x2c_c00251{left:638.399453pt;}
.x8_c00251{left:650.879840pt;}
.x1b_c00251{left:667.199707pt;}
.x1c_c00251{left:680.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2931a76340f761172a8014c.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.364746;font-style:normal;font-weight:normal;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_fea1682fea3b37ae3c43de24.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.364746;font-style:normal;font-weight:normal;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_14765ba1598536fc6a254b23.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_e2e076c9e769a50bfc203acd.woff2')format("woff");}.ff5_c00252{font-family:ff5_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:ff6_c00252;src:url('chunks/assets/font_3a733907bbf8d75fa48310a0.woff2')format("woff");}.ff6_c00252{font-family:ff6_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;}
.m1_c00252{transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168860,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{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_c00252{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269565,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.293339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293339,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.683673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683673,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls1e_c00252{letter-spacing:-26.972325px;}
.ls13_c00252{letter-spacing:-14.594850px;}
.ls1d_c00252{letter-spacing:-12.228975px;}
.lsd_c00252{letter-spacing:-10.961100px;}
.ls14_c00252{letter-spacing:-10.693515px;}
.ls4_c00252{letter-spacing:-9.994950px;}
.ls10_c00252{letter-spacing:-9.594750px;}
.ls16_c00252{letter-spacing:-9.256800px;}
.ls5_c00252{letter-spacing:-8.681850px;}
.lse_c00252{letter-spacing:-8.175038px;}
.ls25_c00252{letter-spacing:-7.426125px;}
.ls12_c00252{letter-spacing:-6.687150px;}
.lsa_c00252{letter-spacing:-6.685875px;}
.ls17_c00252{letter-spacing:-6.197655px;}
.lsf_c00252{letter-spacing:-6.109718px;}
.ls23_c00252{letter-spacing:-5.945625px;}
.ls1b_c00252{letter-spacing:-5.543250px;}
.ls21_c00252{letter-spacing:-5.247533px;}
.lsb_c00252{letter-spacing:-5.203125px;}
.ls9_c00252{letter-spacing:-5.196713px;}
.ls18_c00252{letter-spacing:-4.766850px;}
.ls11_c00252{letter-spacing:-4.456463px;}
.ls1a_c00252{letter-spacing:-4.128300px;}
.ls8_c00252{letter-spacing:-3.719625px;}
.ls6_c00252{letter-spacing:-3.717000px;}
.ls3_c00252{letter-spacing:-2.968875px;}
.ls24_c00252{letter-spacing:-2.274300px;}
.ls1_c00252{letter-spacing:-2.229413px;}
.ls15_c00252{letter-spacing:-2.087250px;}
.ls7_c00252{letter-spacing:-1.489163px;}
.ls1c_c00252{letter-spacing:-0.831750px;}
.ls2_c00252{letter-spacing:-0.740250px;}
.lsc_c00252{letter-spacing:0.000000px;}
.ls19_c00252{letter-spacing:0.738000px;}
.ls20_c00252{letter-spacing:1.489163px;}
.ls22_c00252{letter-spacing:1.591200px;}
.ls1f_c00252{letter-spacing:9.817200px;}
.ls0_c00252{letter-spacing:11.882588px;}
.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;}
._24_c00252{margin-left:-59.552949px;}
._28_c00252{margin-left:-14.870481px;}
._21_c00252{margin-left:-8.444303px;}
._1f_c00252{margin-left:-5.938850px;}
._22_c00252{margin-left:-4.228206px;}
._20_c00252{margin-left:-2.187155px;}
._1d_c00252{margin-left:-1.090212px;}
._0_c00252{width:1.615475px;}
._1c_c00252{width:2.685687px;}
._1e_c00252{width:3.957173px;}
._c_c00252{width:5.631368px;}
._a_c00252{width:6.720168px;}
._1_c00252{width:8.231485px;}
._23_c00252{width:9.447533px;}
._b_c00252{width:10.618724px;}
._11_c00252{width:12.156192px;}
._f_c00252{width:13.868142px;}
._e_c00252{width:14.957210px;}
._2_c00252{width:16.365067px;}
._d_c00252{width:18.923298px;}
._10_c00252{width:20.004045px;}
._29_c00252{width:21.080543px;}
._9_c00252{width:22.746388px;}
._6_c00252{width:24.293810px;}
._8_c00252{width:25.351928px;}
._5_c00252{width:26.378783px;}
._4_c00252{width:28.112383px;}
._7_c00252{width:29.264035px;}
._25_c00252{width:30.356134px;}
._3_c00252{width:32.363783px;}
._26_c00252{width:33.553800px;}
._1b_c00252{width:35.854964px;}
._27_c00252{width:42.252317px;}
._12_c00252{width:44.175570px;}
._1a_c00252{width:45.431440px;}
._18_c00252{width:46.462351px;}
._16_c00252{width:47.587971px;}
._17_c00252{width:49.893801px;}
._14_c00252{width:51.513614px;}
._15_c00252{width:58.061840px;}
._19_c00252{width:59.261485px;}
._13_c00252{width:61.351792px;}
.fc0_c00252{color:transparent;}
.fsb_c00252{font-size:60.000000px;}
.fs11_c00252{font-size:69.750000px;}
.fsa_c00252{font-size:70.500000px;}
.fse_c00252{font-size:71.250000px;}
.fs7_c00252{font-size:73.500000px;}
.fsd_c00252{font-size:74.250000px;}
.fs10_c00252{font-size:74.534340px;}
.fsf_c00252{font-size:75.000000px;}
.fs4_c00252{font-size:78.000000px;}
.fs0_c00252{font-size:78.750000px;}
.fs6_c00252{font-size:80.250000px;}
.fsc_c00252{font-size:81.000000px;}
.fs2_c00252{font-size:81.750000px;}
.fs5_c00252{font-size:82.500000px;}
.fs3_c00252{font-size:83.250000px;}
.fs9_c00252{font-size:84.000000px;}
.fs12_c00252{font-size:84.750000px;}
.fs1_c00252{font-size:85.500000px;}
.fs8_c00252{font-size:86.250000px;}
.y0_c00252{bottom:0.000000px;}
.y25_c00252{bottom:185.759370px;}
.y26_c00252{bottom:185.760150px;}
.y24_c00252{bottom:215.639100px;}
.y22_c00252{bottom:246.059490px;}
.y23_c00252{bottom:246.060285px;}
.y21_c00252{bottom:275.397885px;}
.y20_c00252{bottom:334.798950px;}
.y1f_c00252{bottom:334.799970px;}
.y1e_c00252{bottom:364.679700px;}
.y1d_c00252{bottom:364.679850px;}
.y1c_c00252{bottom:394.199385px;}
.y1b_c00252{bottom:425.159415px;}
.y1a_c00252{bottom:454.319820px;}
.y19_c00252{bottom:454.319955px;}
.y18_c00252{bottom:484.918260px;}
.y17_c00252{bottom:514.437795px;}
.y16_c00252{bottom:573.838845px;}
.y15_c00252{bottom:604.078770px;}
.y14_c00252{bottom:663.840315px;}
.y13_c00252{bottom:693.359850px;}
.y12_c00252{bottom:723.238770px;}
.y11_c00252{bottom:723.239610px;}
.y10_c00252{bottom:753.119340px;}
.yf_c00252{bottom:783.359250px;}
.yd_c00252{bottom:813.239730px;}
.ye_c00252{bottom:813.239865px;}
.yc_c00252{bottom:843.479640px;}
.yb_c00252{bottom:843.479835px;}
.ya_c00252{bottom:872.999355px;}
.y9_c00252{bottom:932.759925px;}
.y7_c00252{bottom:962.638575px;}
.y8_c00252{bottom:962.639655px;}
.y6_c00252{bottom:992.518290px;}
.y5_c00252{bottom:1022.760315px;}
.y3_c00252{bottom:1052.279085px;}
.y4_c00252{bottom:1052.279850px;}
.y2_c00252{bottom:1082.158815px;}
.y1_c00252{bottom:1142.279205px;}
.he_c00252{height:59.296875px;}
.h14_c00252{height:68.932617px;}
.hc_c00252{height:73.529297px;}
.h11_c00252{height:74.311523px;}
.h5_c00252{height:76.552734px;}
.h9_c00252{height:76.658203px;}
.h1_c00252{height:77.288818px;}
.h10_c00252{height:77.440430px;}
.h13_c00252{height:77.736987px;}
.h12_c00252{height:78.222656px;}
.h8_c00252{height:78.760986px;}
.h3_c00252{height:80.233154px;}
.hd_c00252{height:80.876953px;}
.h6_c00252{height:80.969238px;}
.h7_c00252{height:81.533203px;}
.hf_c00252{height:81.632812px;}
.h4_c00252{height:81.705322px;}
.hb_c00252{height:83.015625px;}
.h15_c00252{height:83.177490px;}
.h2_c00252{height:84.498047px;}
.ha_c00252{height:84.649658px;}
.h0_c00252{height:1263.000000px;}
.w0_c00252{width:892.500000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:136.438665px;}
.x32_c00252{left:137.520015px;}
.x2f_c00252{left:138.598785px;}
.x1a_c00252{left:168.118815px;}
.x27_c00252{left:185.399250px;}
.x10_c00252{left:189.718500px;}
.x4_c00252{left:190.799565px;}
.x28_c00252{left:206.998950px;}
.x17_c00252{left:216.359250px;}
.x5_c00252{left:221.759535px;}
.x11_c00252{left:226.798950px;}
.x1b_c00252{left:242.279850px;}
.x29_c00252{left:244.438635px;}
.x1c_c00252{left:268.918950px;}
.x2a_c00252{left:270.718500px;}
.xa_c00252{left:294.478635px;}
.xb_c00252{left:314.998950px;}
.x1d_c00252{left:316.080000px;}
.x2b_c00252{left:330.118785px;}
.x14_c00252{left:337.679700px;}
.x15_c00252{left:352.799535px;}
.x18_c00252{left:354.239850px;}
.x33_c00252{left:361.078785px;}
.x2_c00252{left:371.159385px;}
.x19_c00252{left:373.319850px;}
.x34_c00252{left:377.279850px;}
.x3_c00252{left:392.038920px;}
.x1e_c00252{left:407.158770px;}
.x30_c00252{left:424.798515px;}
.x1f_c00252{left:430.559685px;}
.xc_c00252{left:432.359250px;}
.xd_c00252{left:446.759085px;}
.x26_c00252{left:447.838530px;}
.x12_c00252{left:472.318770px;}
.xe_c00252{left:473.759085px;}
.x20_c00252{left:481.679070px;}
.x13_c00252{left:485.639100px;}
.x2c_c00252{left:496.078770px;}
.xf_c00252{left:505.798515px;}
.x6_c00252{left:522.358665px;}
.x31_c00252{left:524.159820px;}
.x2d_c00252{left:568.079400px;}
.x21_c00252{left:572.759535px;}
.x7_c00252{left:578.159820px;}
.x2e_c00252{left:583.199385px;}
.x8_c00252{left:596.519670px;}
.x9_c00252{left:627.479685px;}
.x22_c00252{left:636.479235px;}
.x23_c00252{left:655.918350px;}
.x24_c00252{left:690.838530px;}
.x25_c00252{left:708.118785px;}
.x16_c00252{left:770.399865px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls1e_c00252{letter-spacing:-23.975400pt;}
.ls13_c00252{letter-spacing:-12.973200pt;}
.ls1d_c00252{letter-spacing:-10.870200pt;}
.lsd_c00252{letter-spacing:-9.743200pt;}
.ls14_c00252{letter-spacing:-9.505347pt;}
.ls4_c00252{letter-spacing:-8.884400pt;}
.ls10_c00252{letter-spacing:-8.528667pt;}
.ls16_c00252{letter-spacing:-8.228267pt;}
.ls5_c00252{letter-spacing:-7.717200pt;}
.lse_c00252{letter-spacing:-7.266700pt;}
.ls25_c00252{letter-spacing:-6.601000pt;}
.ls12_c00252{letter-spacing:-5.944133pt;}
.lsa_c00252{letter-spacing:-5.943000pt;}
.ls17_c00252{letter-spacing:-5.509027pt;}
.lsf_c00252{letter-spacing:-5.430860pt;}
.ls23_c00252{letter-spacing:-5.285000pt;}
.ls1b_c00252{letter-spacing:-4.927333pt;}
.ls21_c00252{letter-spacing:-4.664473pt;}
.lsb_c00252{letter-spacing:-4.625000pt;}
.ls9_c00252{letter-spacing:-4.619300pt;}
.ls18_c00252{letter-spacing:-4.237200pt;}
.ls11_c00252{letter-spacing:-3.961300pt;}
.ls1a_c00252{letter-spacing:-3.669600pt;}
.ls8_c00252{letter-spacing:-3.306333pt;}
.ls6_c00252{letter-spacing:-3.304000pt;}
.ls3_c00252{letter-spacing:-2.639000pt;}
.ls24_c00252{letter-spacing:-2.021600pt;}
.ls1_c00252{letter-spacing:-1.981700pt;}
.ls15_c00252{letter-spacing:-1.855333pt;}
.ls7_c00252{letter-spacing:-1.323700pt;}
.ls1c_c00252{letter-spacing:-0.739333pt;}
.ls2_c00252{letter-spacing:-0.658000pt;}
.lsc_c00252{letter-spacing:0.000000pt;}
.ls19_c00252{letter-spacing:0.656000pt;}
.ls20_c00252{letter-spacing:1.323700pt;}
.ls22_c00252{letter-spacing:1.414400pt;}
.ls1f_c00252{letter-spacing:8.726400pt;}
.ls0_c00252{letter-spacing:10.562300pt;}
.ws0_c00252{word-spacing:0.000000pt;}
._24_c00252{margin-left:-52.935955pt;}
._28_c00252{margin-left:-13.218206pt;}
._21_c00252{margin-left:-7.506047pt;}
._1f_c00252{margin-left:-5.278977pt;}
._22_c00252{margin-left:-3.758406pt;}
._20_c00252{margin-left:-1.944138pt;}
._1d_c00252{margin-left:-0.969077pt;}
._0_c00252{width:1.435977pt;}
._1c_c00252{width:2.387277pt;}
._1e_c00252{width:3.517487pt;}
._c_c00252{width:5.005660pt;}
._a_c00252{width:5.973483pt;}
._1_c00252{width:7.316875pt;}
._23_c00252{width:8.397808pt;}
._b_c00252{width:9.438866pt;}
._11_c00252{width:10.805504pt;}
._f_c00252{width:12.327238pt;}
._e_c00252{width:13.295298pt;}
._2_c00252{width:14.546726pt;}
._d_c00252{width:16.820709pt;}
._10_c00252{width:17.781374pt;}
._29_c00252{width:18.738260pt;}
._9_c00252{width:20.219011pt;}
._6_c00252{width:21.594498pt;}
._8_c00252{width:22.535047pt;}
._5_c00252{width:23.447808pt;}
._4_c00252{width:24.988785pt;}
._7_c00252{width:26.012475pt;}
._25_c00252{width:26.983230pt;}
._3_c00252{width:28.767808pt;}
._26_c00252{width:29.825600pt;}
._1b_c00252{width:31.871079pt;}
._27_c00252{width:37.557615pt;}
._12_c00252{width:39.267174pt;}
._1a_c00252{width:40.383502pt;}
._18_c00252{width:41.299868pt;}
._16_c00252{width:42.300419pt;}
._17_c00252{width:44.350045pt;}
._14_c00252{width:45.789879pt;}
._15_c00252{width:51.610525pt;}
._19_c00252{width:52.676875pt;}
._13_c00252{width:54.534926pt;}
.fsb_c00252{font-size:53.333333pt;}
.fs11_c00252{font-size:62.000000pt;}
.fsa_c00252{font-size:62.666667pt;}
.fse_c00252{font-size:63.333333pt;}
.fs7_c00252{font-size:65.333333pt;}
.fsd_c00252{font-size:66.000000pt;}
.fs10_c00252{font-size:66.252747pt;}
.fsf_c00252{font-size:66.666667pt;}
.fs4_c00252{font-size:69.333333pt;}
.fs0_c00252{font-size:70.000000pt;}
.fs6_c00252{font-size:71.333333pt;}
.fsc_c00252{font-size:72.000000pt;}
.fs2_c00252{font-size:72.666667pt;}
.fs5_c00252{font-size:73.333333pt;}
.fs3_c00252{font-size:74.000000pt;}
.fs9_c00252{font-size:74.666667pt;}
.fs12_c00252{font-size:75.333333pt;}
.fs1_c00252{font-size:76.000000pt;}
.fs8_c00252{font-size:76.666667pt;}
.y0_c00252{bottom:0.000000pt;}
.y25_c00252{bottom:165.119440pt;}
.y26_c00252{bottom:165.120133pt;}
.y24_c00252{bottom:191.679200pt;}
.y22_c00252{bottom:218.719547pt;}
.y23_c00252{bottom:218.720253pt;}
.y21_c00252{bottom:244.798120pt;}
.y20_c00252{bottom:297.599067pt;}
.y1f_c00252{bottom:297.599973pt;}
.y1e_c00252{bottom:324.159733pt;}
.y1d_c00252{bottom:324.159867pt;}
.y1c_c00252{bottom:350.399453pt;}
.y1b_c00252{bottom:377.919480pt;}
.y1a_c00252{bottom:403.839840pt;}
.y19_c00252{bottom:403.839960pt;}
.y18_c00252{bottom:431.038453pt;}
.y17_c00252{bottom:457.278040pt;}
.y16_c00252{bottom:510.078973pt;}
.y15_c00252{bottom:536.958907pt;}
.y14_c00252{bottom:590.080280pt;}
.y13_c00252{bottom:616.319867pt;}
.y12_c00252{bottom:642.878907pt;}
.y11_c00252{bottom:642.879653pt;}
.y10_c00252{bottom:669.439413pt;}
.yf_c00252{bottom:696.319333pt;}
.yd_c00252{bottom:722.879760pt;}
.ye_c00252{bottom:722.879880pt;}
.yc_c00252{bottom:749.759680pt;}
.yb_c00252{bottom:749.759853pt;}
.ya_c00252{bottom:775.999427pt;}
.y9_c00252{bottom:829.119933pt;}
.y7_c00252{bottom:855.678733pt;}
.y8_c00252{bottom:855.679693pt;}
.y6_c00252{bottom:882.238480pt;}
.y5_c00252{bottom:909.120280pt;}
.y3_c00252{bottom:935.359187pt;}
.y4_c00252{bottom:935.359867pt;}
.y2_c00252{bottom:961.918947pt;}
.y1_c00252{bottom:1015.359293pt;}
.he_c00252{height:52.708333pt;}
.h14_c00252{height:61.273438pt;}
.hc_c00252{height:65.359375pt;}
.h11_c00252{height:66.054688pt;}
.h5_c00252{height:68.046875pt;}
.h9_c00252{height:68.140625pt;}
.h1_c00252{height:68.701172pt;}
.h10_c00252{height:68.835938pt;}
.h13_c00252{height:69.099544pt;}
.h12_c00252{height:69.531250pt;}
.h8_c00252{height:70.009766pt;}
.h3_c00252{height:71.318359pt;}
.hd_c00252{height:71.890625pt;}
.h6_c00252{height:71.972656pt;}
.h7_c00252{height:72.473958pt;}
.hf_c00252{height:72.562500pt;}
.h4_c00252{height:72.626953pt;}
.hb_c00252{height:73.791667pt;}
.h15_c00252{height:73.935547pt;}
.h2_c00252{height:75.109375pt;}
.ha_c00252{height:75.244141pt;}
.h0_c00252{height:1122.666667pt;}
.w0_c00252{width:793.333333pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:121.278813pt;}
.x32_c00252{left:122.240013pt;}
.x2f_c00252{left:123.198920pt;}
.x1a_c00252{left:149.438947pt;}
.x27_c00252{left:164.799333pt;}
.x10_c00252{left:168.638667pt;}
.x4_c00252{left:169.599613pt;}
.x28_c00252{left:183.999067pt;}
.x17_c00252{left:192.319333pt;}
.x5_c00252{left:197.119587pt;}
.x11_c00252{left:201.599067pt;}
.x1b_c00252{left:215.359867pt;}
.x29_c00252{left:217.278787pt;}
.x1c_c00252{left:239.039067pt;}
.x2a_c00252{left:240.638667pt;}
.xa_c00252{left:261.758787pt;}
.xb_c00252{left:279.999067pt;}
.x1d_c00252{left:280.960000pt;}
.x2b_c00252{left:293.438920pt;}
.x14_c00252{left:300.159733pt;}
.x15_c00252{left:313.599587pt;}
.x18_c00252{left:314.879867pt;}
.x33_c00252{left:320.958920pt;}
.x2_c00252{left:329.919453pt;}
.x19_c00252{left:331.839867pt;}
.x34_c00252{left:335.359867pt;}
.x3_c00252{left:348.479040pt;}
.x1e_c00252{left:361.918907pt;}
.x30_c00252{left:377.598680pt;}
.x1f_c00252{left:382.719720pt;}
.xc_c00252{left:384.319333pt;}
.xd_c00252{left:397.119187pt;}
.x26_c00252{left:398.078693pt;}
.x12_c00252{left:419.838907pt;}
.xe_c00252{left:421.119187pt;}
.x20_c00252{left:428.159173pt;}
.x13_c00252{left:431.679200pt;}
.x2c_c00252{left:440.958907pt;}
.xf_c00252{left:449.598680pt;}
.x6_c00252{left:464.318813pt;}
.x31_c00252{left:465.919840pt;}
.x2d_c00252{left:504.959467pt;}
.x21_c00252{left:509.119587pt;}
.x7_c00252{left:513.919840pt;}
.x2e_c00252{left:518.399453pt;}
.x8_c00252{left:530.239707pt;}
.x9_c00252{left:557.759720pt;}
.x22_c00252{left:565.759320pt;}
.x23_c00252{left:583.038533pt;}
.x24_c00252{left:614.078693pt;}
.x25_c00252{left:629.438920pt;}
.x16_c00252{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab64727af8f8a1c48566f01c.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.364746;font-style:normal;font-weight:normal;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_64b43d9f2cb874fe14dc8deb.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_85b45bdded0a5360c80994bb.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_82eb33c03d3ba72d3492cf1a.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.364746;font-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_c00253{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{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_c00253{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls17_c00253{letter-spacing:-15.679388px;}
.lse_c00253{letter-spacing:-14.594850px;}
.lsb_c00253{letter-spacing:-12.687675px;}
.lsd_c00253{letter-spacing:-10.576500px;}
.ls2_c00253{letter-spacing:-8.175038px;}
.ls14_c00253{letter-spacing:-8.092800px;}
.lsc_c00253{letter-spacing:-7.426125px;}
.ls13_c00253{letter-spacing:-6.916350px;}
.ls8_c00253{letter-spacing:-5.945625px;}
.ls9_c00253{letter-spacing:-5.196713px;}
.ls4_c00253{letter-spacing:-3.717000px;}
.ls5_c00253{letter-spacing:-2.968875px;}
.ls15_c00253{letter-spacing:-2.785118px;}
.ls11_c00253{letter-spacing:-2.496750px;}
.lsf_c00253{letter-spacing:-2.433375px;}
.ls1_c00253{letter-spacing:-2.229413px;}
.ls12_c00253{letter-spacing:-1.665000px;}
.ls3_c00253{letter-spacing:-1.489163px;}
.ls6_c00253{letter-spacing:-0.740250px;}
.ls7_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.928125px;}
.ls16_c00253{letter-spacing:2.785118px;}
.lsa_c00253{letter-spacing:4.181700px;}
.ls10_c00253{letter-spacing:6.791048px;}
.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;}
._18_c00253{margin-left:-15.159883px;}
._14_c00253{margin-left:-10.510094px;}
._15_c00253{margin-left:-8.953712px;}
._d_c00253{margin-left:-7.475470px;}
._b_c00253{margin-left:-4.433833px;}
._4_c00253{margin-left:-3.193981px;}
._e_c00253{margin-left:-1.731356px;}
._c_c00253{width:1.417767px;}
._13_c00253{width:3.289893px;}
._1_c00253{width:4.453833px;}
._3_c00253{width:6.274978px;}
._2_c00253{width:7.625333px;}
._5_c00253{width:9.433834px;}
._11_c00253{width:10.802658px;}
._9_c00253{width:12.193472px;}
._6_c00253{width:14.112059px;}
._a_c00253{width:15.169196px;}
._f_c00253{width:17.872580px;}
._16_c00253{width:19.354908px;}
._0_c00253{width:20.926000px;}
._17_c00253{width:22.434597px;}
._8_c00253{width:23.847803px;}
._7_c00253{width:25.484094px;}
._10_c00253{width:28.717495px;}
._12_c00253{width:33.375142px;}
._19_c00253{width:37.131322px;}
.fc0_c00253{color:transparent;}
.fsa_c00253{font-size:72.000000px;}
.fs7_c00253{font-size:73.500000px;}
.fs9_c00253{font-size:74.250000px;}
.fs6_c00253{font-size:75.000000px;}
.fs8_c00253{font-size:76.500000px;}
.fs5_c00253{font-size:77.250000px;}
.fs0_c00253{font-size:78.750000px;}
.fs3_c00253{font-size:79.500000px;}
.fs1_c00253{font-size:80.250000px;}
.fs2_c00253{font-size:82.500000px;}
.fs4_c00253{font-size:85.500000px;}
.fsb_c00253{font-size:86.250000px;}
.y0_c00253{bottom:0.000000px;}
.y21_c00253{bottom:484.198785px;}
.y20_c00253{bottom:513.721635px;}
.y1f_c00253{bottom:544.319940px;}
.y1e_c00253{bottom:573.118785px;}
.y1d_c00253{bottom:573.119685px;}
.y1c_c00253{bottom:602.999400px;}
.y1b_c00253{bottom:602.999535px;}
.y1a_c00253{bottom:632.519070px;}
.y19_c00253{bottom:632.520105px;}
.y17_c00253{bottom:662.398980px;}
.y18_c00253{bottom:662.399820px;}
.y16_c00253{bottom:692.278695px;}
.y15_c00253{bottom:722.518620px;}
.y14_c00253{bottom:752.399235px;}
.y13_c00253{bottom:752.400120px;}
.y11_c00253{bottom:782.278215px;}
.y12_c00253{bottom:782.279850px;}
.y10_c00253{bottom:812.518140px;}
.yf_c00253{bottom:871.919190px;}
.ye_c00253{bottom:901.798920px;}
.yd_c00253{bottom:901.799055px;}
.yb_c00253{bottom:932.038140px;}
.yc_c00253{bottom:932.038965px;}
.ya_c00253{bottom:961.559490px;}
.y9_c00253{bottom:991.439205px;}
.y8_c00253{bottom:991.440105px;}
.y7_c00253{bottom:1021.319820px;}
.y6_c00253{bottom:1051.559685px;}
.y5_c00253{bottom:1051.559745px;}
.y4_c00253{bottom:1081.799655px;}
.y3_c00253{bottom:1111.319190px;}
.y2_c00253{bottom:1111.320075px;}
.y1_c00253{bottom:1141.199805px;}
.he_c00253{height:74.830078px;}
.hb_c00253{height:75.080566px;}
.hd_c00253{height:75.093750px;}
.h8_c00253{height:75.816650px;}
.ha_c00253{height:76.658203px;}
.h1_c00253{height:77.288818px;}
.hc_c00253{height:77.440430px;}
.h4_c00253{height:78.024902px;}
.h9_c00253{height:78.222656px;}
.h2_c00253{height:78.760986px;}
.h7_c00253{height:79.365234px;}
.h3_c00253{height:80.969238px;}
.h5_c00253{height:81.533203px;}
.h6_c00253{height:84.498047px;}
.hf_c00253{height:85.239258px;}
.h0_c00253{height:1263.000000px;}
.w0_c00253{width:892.500000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:139.678500px;}
.x4_c00253{left:141.117120px;}
.x9_c00253{left:159.478665px;}
.x23_c00253{left:183.238785px;}
.x2_c00253{left:190.799565px;}
.x24_c00253{left:195.118785px;}
.x3_c00253{left:208.080000px;}
.xe_c00253{left:217.079385px;}
.x5_c00253{left:234.719100px;}
.x6_c00253{left:248.039385px;}
.xf_c00253{left:255.959400px;}
.x12_c00253{left:273.958350px;}
.x1b_c00253{left:280.439685px;}
.x13_c00253{left:290.879535px;}
.x1c_c00253{left:299.158785px;}
.x7_c00253{left:307.439685px;}
.x8_c00253{left:331.918350px;}
.x14_c00253{left:335.519100px;}
.x21_c00253{left:417.959385px;}
.x1d_c00253{left:421.199385px;}
.x22_c00253{left:432.718500px;}
.xa_c00253{left:452.159415px;}
.xb_c00253{left:466.199850px;}
.x18_c00253{left:472.679670px;}
.x1e_c00253{left:485.279850px;}
.x19_c00253{left:491.759535px;}
.x1f_c00253{left:530.278800px;}
.x25_c00253{left:532.798515px;}
.x15_c00253{left:536.039985px;}
.x26_c00253{left:547.559100px;}
.x20_c00253{left:554.399820px;}
.x2f_c00253{left:558.719100px;}
.x10_c00253{left:580.679670px;}
.x27_c00253{left:591.478635px;}
.x11_c00253{left:601.918350px;}
.xc_c00253{left:611.278800px;}
.xd_c00253{left:627.838950px;}
.x28_c00253{left:632.159820px;}
.x29_c00253{left:648.359250px;}
.x16_c00253{left:660.239220px;}
.x2a_c00253{left:675.359250px;}
.x17_c00253{left:686.878320px;}
.x2b_c00253{left:688.318770px;}
.x2c_c00253{left:708.838950px;}
.x2d_c00253{left:749.518620px;}
.x2e_c00253{left:764.999355px;}
.x1a_c00253{left:767.159820px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls17_c00253{letter-spacing:-13.937233pt;}
.lse_c00253{letter-spacing:-12.973200pt;}
.lsb_c00253{letter-spacing:-11.277933pt;}
.lsd_c00253{letter-spacing:-9.401333pt;}
.ls2_c00253{letter-spacing:-7.266700pt;}
.ls14_c00253{letter-spacing:-7.193600pt;}
.lsc_c00253{letter-spacing:-6.601000pt;}
.ls13_c00253{letter-spacing:-6.147867pt;}
.ls8_c00253{letter-spacing:-5.285000pt;}
.ls9_c00253{letter-spacing:-4.619300pt;}
.ls4_c00253{letter-spacing:-3.304000pt;}
.ls5_c00253{letter-spacing:-2.639000pt;}
.ls15_c00253{letter-spacing:-2.475660pt;}
.ls11_c00253{letter-spacing:-2.219333pt;}
.lsf_c00253{letter-spacing:-2.163000pt;}
.ls1_c00253{letter-spacing:-1.981700pt;}
.ls12_c00253{letter-spacing:-1.480000pt;}
.ls3_c00253{letter-spacing:-1.323700pt;}
.ls6_c00253{letter-spacing:-0.658000pt;}
.ls7_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.825000pt;}
.ls16_c00253{letter-spacing:2.475660pt;}
.lsa_c00253{letter-spacing:3.717067pt;}
.ls10_c00253{letter-spacing:6.036487pt;}
.ws0_c00253{word-spacing:0.000000pt;}
._18_c00253{margin-left:-13.475452pt;}
._14_c00253{margin-left:-9.342306pt;}
._15_c00253{margin-left:-7.958855pt;}
._d_c00253{margin-left:-6.644862pt;}
._b_c00253{margin-left:-3.941185pt;}
._4_c00253{margin-left:-2.839094pt;}
._e_c00253{margin-left:-1.538983pt;}
._c_c00253{width:1.260238pt;}
._13_c00253{width:2.924349pt;}
._1_c00253{width:3.958962pt;}
._3_c00253{width:5.577758pt;}
._2_c00253{width:6.778074pt;}
._5_c00253{width:8.385630pt;}
._11_c00253{width:9.602362pt;}
._9_c00253{width:10.838642pt;}
._6_c00253{width:12.544053pt;}
._a_c00253{width:13.483730pt;}
._f_c00253{width:15.886738pt;}
._16_c00253{width:17.204362pt;}
._0_c00253{width:18.600889pt;}
._17_c00253{width:19.941864pt;}
._8_c00253{width:21.198047pt;}
._7_c00253{width:22.652528pt;}
._10_c00253{width:25.526662pt;}
._12_c00253{width:29.666792pt;}
._19_c00253{width:33.005620pt;}
.fsa_c00253{font-size:64.000000pt;}
.fs7_c00253{font-size:65.333333pt;}
.fs9_c00253{font-size:66.000000pt;}
.fs6_c00253{font-size:66.666667pt;}
.fs8_c00253{font-size:68.000000pt;}
.fs5_c00253{font-size:68.666667pt;}
.fs0_c00253{font-size:70.000000pt;}
.fs3_c00253{font-size:70.666667pt;}
.fs1_c00253{font-size:71.333333pt;}
.fs2_c00253{font-size:73.333333pt;}
.fs4_c00253{font-size:76.000000pt;}
.fsb_c00253{font-size:76.666667pt;}
.y0_c00253{bottom:0.000000pt;}
.y21_c00253{bottom:430.398920pt;}
.y20_c00253{bottom:456.641453pt;}
.y1f_c00253{bottom:483.839947pt;}
.y1e_c00253{bottom:509.438920pt;}
.y1d_c00253{bottom:509.439720pt;}
.y1c_c00253{bottom:535.999467pt;}
.y1b_c00253{bottom:535.999587pt;}
.y1a_c00253{bottom:562.239173pt;}
.y19_c00253{bottom:562.240093pt;}
.y17_c00253{bottom:588.799093pt;}
.y18_c00253{bottom:588.799840pt;}
.y16_c00253{bottom:615.358840pt;}
.y15_c00253{bottom:642.238773pt;}
.y14_c00253{bottom:668.799320pt;}
.y13_c00253{bottom:668.800107pt;}
.y11_c00253{bottom:695.358413pt;}
.y12_c00253{bottom:695.359867pt;}
.y10_c00253{bottom:722.238347pt;}
.yf_c00253{bottom:775.039280pt;}
.ye_c00253{bottom:801.599040pt;}
.yd_c00253{bottom:801.599160pt;}
.yb_c00253{bottom:828.478347pt;}
.yc_c00253{bottom:828.479080pt;}
.ya_c00253{bottom:854.719547pt;}
.y9_c00253{bottom:881.279293pt;}
.y8_c00253{bottom:881.280093pt;}
.y7_c00253{bottom:907.839840pt;}
.y6_c00253{bottom:934.719720pt;}
.y5_c00253{bottom:934.719773pt;}
.y4_c00253{bottom:961.599693pt;}
.y3_c00253{bottom:987.839280pt;}
.y2_c00253{bottom:987.840067pt;}
.y1_c00253{bottom:1014.399827pt;}
.he_c00253{height:66.515625pt;}
.hb_c00253{height:66.738281pt;}
.hd_c00253{height:66.750000pt;}
.h8_c00253{height:67.392578pt;}
.ha_c00253{height:68.140625pt;}
.h1_c00253{height:68.701172pt;}
.hc_c00253{height:68.835938pt;}
.h4_c00253{height:69.355469pt;}
.h9_c00253{height:69.531250pt;}
.h2_c00253{height:70.009766pt;}
.h7_c00253{height:70.546875pt;}
.h3_c00253{height:71.972656pt;}
.h5_c00253{height:72.473958pt;}
.h6_c00253{height:75.109375pt;}
.hf_c00253{height:75.768229pt;}
.h0_c00253{height:1122.666667pt;}
.w0_c00253{width:793.333333pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:124.158667pt;}
.x4_c00253{left:125.437440pt;}
.x9_c00253{left:141.758813pt;}
.x23_c00253{left:162.878920pt;}
.x2_c00253{left:169.599613pt;}
.x24_c00253{left:173.438920pt;}
.x3_c00253{left:184.960000pt;}
.xe_c00253{left:192.959453pt;}
.x5_c00253{left:208.639200pt;}
.x6_c00253{left:220.479453pt;}
.xf_c00253{left:227.519467pt;}
.x12_c00253{left:243.518533pt;}
.x1b_c00253{left:249.279720pt;}
.x13_c00253{left:258.559587pt;}
.x1c_c00253{left:265.918920pt;}
.x7_c00253{left:273.279720pt;}
.x8_c00253{left:295.038533pt;}
.x14_c00253{left:298.239200pt;}
.x21_c00253{left:371.519453pt;}
.x1d_c00253{left:374.399453pt;}
.x22_c00253{left:384.638667pt;}
.xa_c00253{left:401.919480pt;}
.xb_c00253{left:414.399867pt;}
.x18_c00253{left:420.159707pt;}
.x1e_c00253{left:431.359867pt;}
.x19_c00253{left:437.119587pt;}
.x1f_c00253{left:471.358933pt;}
.x25_c00253{left:473.598680pt;}
.x15_c00253{left:476.479987pt;}
.x26_c00253{left:486.719200pt;}
.x20_c00253{left:492.799840pt;}
.x2f_c00253{left:496.639200pt;}
.x10_c00253{left:516.159707pt;}
.x27_c00253{left:525.758787pt;}
.x11_c00253{left:535.038533pt;}
.xc_c00253{left:543.358933pt;}
.xd_c00253{left:558.079067pt;}
.x28_c00253{left:561.919840pt;}
.x29_c00253{left:576.319333pt;}
.x16_c00253{left:586.879307pt;}
.x2a_c00253{left:600.319333pt;}
.x17_c00253{left:610.558507pt;}
.x2b_c00253{left:611.838907pt;}
.x2c_c00253{left:630.079067pt;}
.x2d_c00253{left:666.238773pt;}
.x2e_c00253{left:679.999427pt;}
.x1a_c00253{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd29a1999d8757dc6eac7005.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_96b87af5e53604ce5e5ecd06.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_57caf9a807a708c5220616dc.woff2')format("woff");}.ff3_c00254{font-family:ff3_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:ff4_c00254;src:url('chunks/assets/font_66884a79e7fbb38d734dd161.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_370dbdb2d2c8ccf834a90b64.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_3a3788c576f320159c99cae1.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:1.281250;font-style:normal;font-weight: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_c00254;src:url('chunks/assets/font_83f01906f3665f6db4ba9cea.woff2')format("woff");}.ff7_c00254{font-family:ff7_c00254;line-height:1.364746;font-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_c00254{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00254{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m22_c00254{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m20_c00254{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234649,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.m1b_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m24_c00254{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m16_c00254{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m18_c00254{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324405,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{transform:matrix(0.350962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350962,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls13_c00254{letter-spacing:-14.898713px;}
.ls29_c00254{letter-spacing:-14.001600px;}
.ls1e_c00254{letter-spacing:-12.631500px;}
.ls1c_c00254{letter-spacing:-11.560500px;}
.ls30_c00254{letter-spacing:-8.501700px;}
.ls14_c00254{letter-spacing:-8.175038px;}
.ls15_c00254{letter-spacing:-7.426125px;}
.ls1_c00254{letter-spacing:-7.191405px;}
.ls1f_c00254{letter-spacing:-6.685875px;}
.ls10_c00254{letter-spacing:-6.635078px;}
.ls26_c00254{letter-spacing:-6.357000px;}
.ls8_c00254{letter-spacing:-5.945625px;}
.lsf_c00254{letter-spacing:-5.196713px;}
.lsc_c00254{letter-spacing:-5.109375px;}
.ls2c_c00254{letter-spacing:-4.567725px;}
.ls11_c00254{letter-spacing:-4.456463px;}
.ls1d_c00254{letter-spacing:-4.322535px;}
.ls5_c00254{letter-spacing:-3.963533px;}
.ls1b_c00254{letter-spacing:-3.740100px;}
.lse_c00254{letter-spacing:-3.717000px;}
.ls18_c00254{letter-spacing:-3.573315px;}
.ls21_c00254{letter-spacing:-3.557550px;}
.ls0_c00254{letter-spacing:-3.354000px;}
.ls2d_c00254{letter-spacing:-3.050400px;}
.ls7_c00254{letter-spacing:-2.968875px;}
.ls12_c00254{letter-spacing:-2.833050px;}
.ls16_c00254{letter-spacing:-2.542020px;}
.ls3_c00254{letter-spacing:-2.466225px;}
.ls22_c00254{letter-spacing:-2.287335px;}
.ls2b_c00254{letter-spacing:-2.250600px;}
.lsa_c00254{letter-spacing:-2.229413px;}
.ls20_c00254{letter-spacing:-2.184000px;}
.ls19_c00254{letter-spacing:-1.669185px;}
.ls2_c00254{letter-spacing:-1.643303px;}
.ls27_c00254{letter-spacing:-1.525665px;}
.ls24_c00254{letter-spacing:-1.500518px;}
.ls9_c00254{letter-spacing:-1.489163px;}
.ls23_c00254{letter-spacing:-1.038375px;}
.ls2a_c00254{letter-spacing:-0.930000px;}
.ls2e_c00254{letter-spacing:-0.832350px;}
.ls4_c00254{letter-spacing:-0.822075px;}
.ls31_c00254{letter-spacing:-0.799500px;}
.ls1a_c00254{letter-spacing:-0.779220px;}
.ls25_c00254{letter-spacing:-0.762600px;}
.lsb_c00254{letter-spacing:-0.740250px;}
.ls17_c00254{letter-spacing:-0.579150px;}
.ls6_c00254{letter-spacing:0.000000px;}
.lsd_c00254{letter-spacing:1.629975px;}
.ls2f_c00254{letter-spacing:2.524800px;}
.ls28_c00254{letter-spacing:5.338665px;}
.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;}
._12_c00254{margin-left:-30.556082px;}
._17_c00254{margin-left:-17.116937px;}
._10_c00254{margin-left:-10.706107px;}
._11_c00254{margin-left:-9.621883px;}
._1b_c00254{margin-left:-7.905698px;}
._14_c00254{margin-left:-6.421926px;}
._e_c00254{margin-left:-4.604631px;}
._d_c00254{margin-left:-2.836578px;}
._f_c00254{margin-left:-1.476604px;}
._13_c00254{width:1.370927px;}
._0_c00254{width:2.580958px;}
._16_c00254{width:3.701732px;}
._3_c00254{width:5.031976px;}
._2_c00254{width:6.286566px;}
._1_c00254{width:8.398972px;}
._4_c00254{width:9.415083px;}
._c_c00254{width:10.634742px;}
._15_c00254{width:11.812708px;}
._a_c00254{width:13.214456px;}
._b_c00254{width:15.344041px;}
._9_c00254{width:17.439247px;}
._18_c00254{width:20.246922px;}
._7_c00254{width:21.452228px;}
._6_c00254{width:24.012688px;}
._5_c00254{width:26.694824px;}
._1a_c00254{width:28.032147px;}
._8_c00254{width:33.641851px;}
._19_c00254{width:373.867943px;}
.fc0_c00254{color:transparent;}
.fse_c00254{font-size:39.000000px;}
.fsa_c00254{font-size:40.500000px;}
.fs18_c00254{font-size:43.500000px;}
.fs14_c00254{font-size:44.250000px;}
.fs16_c00254{font-size:45.000000px;}
.fs19_c00254{font-size:45.750000px;}
.fs12_c00254{font-size:46.500000px;}
.fs10_c00254{font-size:48.000000px;}
.fs13_c00254{font-size:48.750000px;}
.fs15_c00254{font-size:50.250000px;}
.fs17_c00254{font-size:51.000000px;}
.fs11_c00254{font-size:55.500000px;}
.fsf_c00254{font-size:63.000000px;}
.fsb_c00254{font-size:69.000000px;}
.fsd_c00254{font-size:73.500000px;}
.fs8_c00254{font-size:75.750000px;}
.fsc_c00254{font-size:76.500000px;}
.fs4_c00254{font-size:77.250000px;}
.fs0_c00254{font-size:78.000000px;}
.fs5_c00254{font-size:78.750000px;}
.fs7_c00254{font-size:80.250000px;}
.fs6_c00254{font-size:81.750000px;}
.fs9_c00254{font-size:82.500000px;}
.fs3_c00254{font-size:83.250000px;}
.fs2_c00254{font-size:84.750000px;}
.fs1_c00254{font-size:85.500000px;}
.y0_c00254{bottom:0.000000px;}
.y20_c00254{bottom:173.159850px;}
.y1f_c00254{bottom:213.121050px;}
.y1e_c00254{bottom:290.879535px;}
.y1d_c00254{bottom:363.240780px;}
.y1c_c00254{bottom:392.760315px;}
.y1b_c00254{bottom:429.121035px;}
.y1a_c00254{bottom:452.520315px;}
.y19_c00254{bottom:452.520720px;}
.y18_c00254{bottom:483.121125px;}
.y17_c00254{bottom:513.000840px;}
.y16_c00254{bottom:542.880570px;}
.y15_c00254{bottom:572.759700px;}
.y14_c00254{bottom:602.281035px;}
.y13_c00254{bottom:631.800570px;}
.y12_c00254{bottom:631.801545px;}
.y11_c00254{bottom:662.041470px;}
.y10_c00254{bottom:691.921185px;}
.yf_c00254{bottom:751.680720px;}
.ye_c00254{bottom:781.560450px;}
.yd_c00254{bottom:811.800360px;}
.yc_c00254{bottom:841.680090px;}
.yb_c00254{bottom:841.680930px;}
.ya_c00254{bottom:871.920840px;}
.y8_c00254{bottom:901.800270px;}
.y9_c00254{bottom:901.800570px;}
.y7_c00254{bottom:931.319805px;}
.y6_c00254{bottom:962.280390px;}
.y4_c00254{bottom:992.160465px;}
.y5_c00254{bottom:992.161005px;}
.y3_c00254{bottom:1021.680000px;}
.y2_c00254{bottom:1081.081050px;}
.y1_c00254{bottom:1140.120390px;}
.h12_c00254{height:38.542969px;}
.he_c00254{height:40.816406px;}
.h20_c00254{height:42.692871px;}
.h18_c00254{height:44.595703px;}
.h22_c00254{height:44.901123px;}
.h1d_c00254{height:45.351562px;}
.h1b_c00254{height:45.955078px;}
.h16_c00254{height:46.863281px;}
.h14_c00254{height:47.109375px;}
.h21_c00254{height:47.845459px;}
.h17_c00254{height:48.178711px;}
.h1a_c00254{height:48.375000px;}
.h19_c00254{height:49.130859px;}
.h1c_c00254{height:49.661133px;}
.h1e_c00254{height:50.053711px;}
.h1f_c00254{height:50.402344px;}
.h15_c00254{height:54.443115px;}
.h13_c00254{height:63.492188px;}
.hf_c00254{height:71.964844px;}
.ha_c00254{height:74.344482px;}
.h5_c00254{height:75.816650px;}
.h11_c00254{height:76.658203px;}
.h10_c00254{height:77.097656px;}
.h6_c00254{height:77.288818px;}
.hd_c00254{height:78.609375px;}
.h9_c00254{height:78.760986px;}
.hb_c00254{height:79.365234px;}
.h7_c00254{height:80.233154px;}
.hc_c00254{height:80.969238px;}
.h1_c00254{height:81.351562px;}
.h8_c00254{height:83.177490px;}
.h4_c00254{height:83.900391px;}
.h3_c00254{height:85.412109px;}
.h2_c00254{height:86.167969px;}
.h0_c00254{height:1263.000000px;}
.w0_c00254{width:892.500000px;}
.x0_c00254{left:0.000000px;}
.xb_c00254{left:136.802850px;}
.x1_c00254{left:137.878950px;}
.x13_c00254{left:155.159415px;}
.x10_c00254{left:162.718500px;}
.x21_c00254{left:169.199850px;}
.x8_c00254{left:182.518665px;}
.x22_c00254{left:186.478665px;}
.x2_c00254{left:189.359250px;}
.x5_c00254{left:205.199385px;}
.x3_c00254{left:216.718500px;}
.x31_c00254{left:227.519100px;}
.xe_c00254{left:228.598500px;}
.x1a_c00254{left:230.759100px;}
.x30_c00254{left:237.599700px;}
.x23_c00254{left:257.759100px;}
.xf_c00254{left:276.118785px;}
.x24_c00254{left:285.838515px;}
.x1b_c00254{left:304.559100px;}
.x1c_c00254{left:318.958950px;}
.x9_c00254{left:328.319250px;}
.x25_c00254{left:341.278800px;}
.xa_c00254{left:348.119385px;}
.x26_c00254{left:381.958350px;}
.x11_c00254{left:399.238770px;}
.x27_c00254{left:404.639100px;}
.x12_c00254{left:413.279250px;}
.x1d_c00254{left:421.919535px;}
.x1e_c00254{left:449.278800px;}
.x4_c00254{left:458.279850px;}
.x28_c00254{left:466.918350px;}
.xc_c00254{left:468.358665px;}
.x14_c00254{left:473.399820px;}
.xd_c00254{left:482.399235px;}
.x15_c00254{left:489.599070px;}
.x29_c00254{left:511.559685px;}
.x18_c00254{left:536.758530px;}
.x6_c00254{left:545.759535px;}
.x19_c00254{left:551.878320px;}
.x7_c00254{left:565.918950px;}
.x2a_c00254{left:573.479685px;}
.x1f_c00254{left:584.639700px;}
.x2b_c00254{left:593.279850px;}
.x2c_c00254{left:628.199850px;}
.x2d_c00254{left:637.558635px;}
.x20_c00254{left:659.519070px;}
.x2e_c00254{left:680.759535px;}
.x2f_c00254{left:732.599070px;}
.x16_c00254{left:751.319820px;}
.x17_c00254{left:767.159820px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls13_c00254{letter-spacing:-13.243300pt;}
.ls29_c00254{letter-spacing:-12.445867pt;}
.ls1e_c00254{letter-spacing:-11.228000pt;}
.ls1c_c00254{letter-spacing:-10.276000pt;}
.ls30_c00254{letter-spacing:-7.557067pt;}
.ls14_c00254{letter-spacing:-7.266700pt;}
.ls15_c00254{letter-spacing:-6.601000pt;}
.ls1_c00254{letter-spacing:-6.392360pt;}
.ls1f_c00254{letter-spacing:-5.943000pt;}
.ls10_c00254{letter-spacing:-5.897847pt;}
.ls26_c00254{letter-spacing:-5.650667pt;}
.ls8_c00254{letter-spacing:-5.285000pt;}
.lsf_c00254{letter-spacing:-4.619300pt;}
.lsc_c00254{letter-spacing:-4.541667pt;}
.ls2c_c00254{letter-spacing:-4.060200pt;}
.ls11_c00254{letter-spacing:-3.961300pt;}
.ls1d_c00254{letter-spacing:-3.842253pt;}
.ls5_c00254{letter-spacing:-3.523140pt;}
.ls1b_c00254{letter-spacing:-3.324533pt;}
.lse_c00254{letter-spacing:-3.304000pt;}
.ls18_c00254{letter-spacing:-3.176280pt;}
.ls21_c00254{letter-spacing:-3.162267pt;}
.ls0_c00254{letter-spacing:-2.981333pt;}
.ls2d_c00254{letter-spacing:-2.711467pt;}
.ls7_c00254{letter-spacing:-2.639000pt;}
.ls12_c00254{letter-spacing:-2.518267pt;}
.ls16_c00254{letter-spacing:-2.259573pt;}
.ls3_c00254{letter-spacing:-2.192200pt;}
.ls22_c00254{letter-spacing:-2.033187pt;}
.ls2b_c00254{letter-spacing:-2.000533pt;}
.lsa_c00254{letter-spacing:-1.981700pt;}
.ls20_c00254{letter-spacing:-1.941333pt;}
.ls19_c00254{letter-spacing:-1.483720pt;}
.ls2_c00254{letter-spacing:-1.460713pt;}
.ls27_c00254{letter-spacing:-1.356147pt;}
.ls24_c00254{letter-spacing:-1.333793pt;}
.ls9_c00254{letter-spacing:-1.323700pt;}
.ls23_c00254{letter-spacing:-0.923000pt;}
.ls2a_c00254{letter-spacing:-0.826667pt;}
.ls2e_c00254{letter-spacing:-0.739867pt;}
.ls4_c00254{letter-spacing:-0.730733pt;}
.ls31_c00254{letter-spacing:-0.710667pt;}
.ls1a_c00254{letter-spacing:-0.692640pt;}
.ls25_c00254{letter-spacing:-0.677867pt;}
.lsb_c00254{letter-spacing:-0.658000pt;}
.ls17_c00254{letter-spacing:-0.514800pt;}
.ls6_c00254{letter-spacing:0.000000pt;}
.lsd_c00254{letter-spacing:1.448867pt;}
.ls2f_c00254{letter-spacing:2.244267pt;}
.ls28_c00254{letter-spacing:4.745480pt;}
.ws0_c00254{word-spacing:0.000000pt;}
._12_c00254{margin-left:-27.160962pt;}
._17_c00254{margin-left:-15.215055pt;}
._10_c00254{margin-left:-9.516540pt;}
._11_c00254{margin-left:-8.552785pt;}
._1b_c00254{margin-left:-7.027287pt;}
._14_c00254{margin-left:-5.708379pt;}
._e_c00254{margin-left:-4.093006pt;}
._d_c00254{margin-left:-2.521403pt;}
._f_c00254{margin-left:-1.312537pt;}
._13_c00254{width:1.218601pt;}
._0_c00254{width:2.294185pt;}
._16_c00254{width:3.290429pt;}
._3_c00254{width:4.472868pt;}
._2_c00254{width:5.588058pt;}
._1_c00254{width:7.465753pt;}
._4_c00254{width:8.368962pt;}
._c_c00254{width:9.453104pt;}
._15_c00254{width:10.500185pt;}
._a_c00254{width:11.746183pt;}
._b_c00254{width:13.639147pt;}
._9_c00254{width:15.501553pt;}
._18_c00254{width:17.997264pt;}
._7_c00254{width:19.068647pt;}
._6_c00254{width:21.344611pt;}
._5_c00254{width:23.728732pt;}
._1a_c00254{width:24.917464pt;}
._8_c00254{width:29.903868pt;}
._19_c00254{width:332.327060pt;}
.fse_c00254{font-size:34.666667pt;}
.fsa_c00254{font-size:36.000000pt;}
.fs18_c00254{font-size:38.666667pt;}
.fs14_c00254{font-size:39.333333pt;}
.fs16_c00254{font-size:40.000000pt;}
.fs19_c00254{font-size:40.666667pt;}
.fs12_c00254{font-size:41.333333pt;}
.fs10_c00254{font-size:42.666667pt;}
.fs13_c00254{font-size:43.333333pt;}
.fs15_c00254{font-size:44.666667pt;}
.fs17_c00254{font-size:45.333333pt;}
.fs11_c00254{font-size:49.333333pt;}
.fsf_c00254{font-size:56.000000pt;}
.fsb_c00254{font-size:61.333333pt;}
.fsd_c00254{font-size:65.333333pt;}
.fs8_c00254{font-size:67.333333pt;}
.fsc_c00254{font-size:68.000000pt;}
.fs4_c00254{font-size:68.666667pt;}
.fs0_c00254{font-size:69.333333pt;}
.fs5_c00254{font-size:70.000000pt;}
.fs7_c00254{font-size:71.333333pt;}
.fs6_c00254{font-size:72.666667pt;}
.fs9_c00254{font-size:73.333333pt;}
.fs3_c00254{font-size:74.000000pt;}
.fs2_c00254{font-size:75.333333pt;}
.fs1_c00254{font-size:76.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y20_c00254{bottom:153.919867pt;}
.y1f_c00254{bottom:189.440933pt;}
.y1e_c00254{bottom:258.559587pt;}
.y1d_c00254{bottom:322.880693pt;}
.y1c_c00254{bottom:349.120280pt;}
.y1b_c00254{bottom:381.440920pt;}
.y1a_c00254{bottom:402.240280pt;}
.y19_c00254{bottom:402.240640pt;}
.y18_c00254{bottom:429.441000pt;}
.y17_c00254{bottom:456.000747pt;}
.y16_c00254{bottom:482.560507pt;}
.y15_c00254{bottom:509.119733pt;}
.y14_c00254{bottom:535.360920pt;}
.y13_c00254{bottom:561.600507pt;}
.y12_c00254{bottom:561.601373pt;}
.y11_c00254{bottom:588.481307pt;}
.y10_c00254{bottom:615.041053pt;}
.yf_c00254{bottom:668.160640pt;}
.ye_c00254{bottom:694.720400pt;}
.yd_c00254{bottom:721.600320pt;}
.yc_c00254{bottom:748.160080pt;}
.yb_c00254{bottom:748.160827pt;}
.ya_c00254{bottom:775.040747pt;}
.y8_c00254{bottom:801.600240pt;}
.y9_c00254{bottom:801.600507pt;}
.y7_c00254{bottom:827.839827pt;}
.y6_c00254{bottom:855.360347pt;}
.y4_c00254{bottom:881.920413pt;}
.y5_c00254{bottom:881.920893pt;}
.y3_c00254{bottom:908.160000pt;}
.y2_c00254{bottom:960.960933pt;}
.y1_c00254{bottom:1013.440347pt;}
.h12_c00254{height:34.260417pt;}
.he_c00254{height:36.281250pt;}
.h20_c00254{height:37.949219pt;}
.h18_c00254{height:39.640625pt;}
.h22_c00254{height:39.912109pt;}
.h1d_c00254{height:40.312500pt;}
.h1b_c00254{height:40.848958pt;}
.h16_c00254{height:41.656250pt;}
.h14_c00254{height:41.875000pt;}
.h21_c00254{height:42.529297pt;}
.h17_c00254{height:42.825521pt;}
.h1a_c00254{height:43.000000pt;}
.h19_c00254{height:43.671875pt;}
.h1c_c00254{height:44.143229pt;}
.h1e_c00254{height:44.492188pt;}
.h1f_c00254{height:44.802083pt;}
.h15_c00254{height:48.393880pt;}
.h13_c00254{height:56.437500pt;}
.hf_c00254{height:63.968750pt;}
.ha_c00254{height:66.083984pt;}
.h5_c00254{height:67.392578pt;}
.h11_c00254{height:68.140625pt;}
.h10_c00254{height:68.531250pt;}
.h6_c00254{height:68.701172pt;}
.hd_c00254{height:69.875000pt;}
.h9_c00254{height:70.009766pt;}
.hb_c00254{height:70.546875pt;}
.h7_c00254{height:71.318359pt;}
.hc_c00254{height:71.972656pt;}
.h1_c00254{height:72.312500pt;}
.h8_c00254{height:73.935547pt;}
.h4_c00254{height:74.578125pt;}
.h3_c00254{height:75.921875pt;}
.h2_c00254{height:76.593750pt;}
.h0_c00254{height:1122.666667pt;}
.w0_c00254{width:793.333333pt;}
.x0_c00254{left:0.000000pt;}
.xb_c00254{left:121.602533pt;}
.x1_c00254{left:122.559067pt;}
.x13_c00254{left:137.919480pt;}
.x10_c00254{left:144.638667pt;}
.x21_c00254{left:150.399867pt;}
.x8_c00254{left:162.238813pt;}
.x22_c00254{left:165.758813pt;}
.x2_c00254{left:168.319333pt;}
.x5_c00254{left:182.399453pt;}
.x3_c00254{left:192.638667pt;}
.x31_c00254{left:202.239200pt;}
.xe_c00254{left:203.198667pt;}
.x1a_c00254{left:205.119200pt;}
.x30_c00254{left:211.199733pt;}
.x23_c00254{left:229.119200pt;}
.xf_c00254{left:245.438920pt;}
.x24_c00254{left:254.078680pt;}
.x1b_c00254{left:270.719200pt;}
.x1c_c00254{left:283.519067pt;}
.x9_c00254{left:291.839333pt;}
.x25_c00254{left:303.358933pt;}
.xa_c00254{left:309.439453pt;}
.x26_c00254{left:339.518533pt;}
.x11_c00254{left:354.878907pt;}
.x27_c00254{left:359.679200pt;}
.x12_c00254{left:367.359333pt;}
.x1d_c00254{left:375.039587pt;}
.x1e_c00254{left:399.358933pt;}
.x4_c00254{left:407.359867pt;}
.x28_c00254{left:415.038533pt;}
.xc_c00254{left:416.318813pt;}
.x14_c00254{left:420.799840pt;}
.xd_c00254{left:428.799320pt;}
.x15_c00254{left:435.199173pt;}
.x29_c00254{left:454.719720pt;}
.x18_c00254{left:477.118693pt;}
.x6_c00254{left:485.119587pt;}
.x19_c00254{left:490.558507pt;}
.x7_c00254{left:503.039067pt;}
.x2a_c00254{left:509.759720pt;}
.x1f_c00254{left:519.679733pt;}
.x2b_c00254{left:527.359867pt;}
.x2c_c00254{left:558.399867pt;}
.x2d_c00254{left:566.718787pt;}
.x20_c00254{left:586.239173pt;}
.x2e_c00254{left:605.119587pt;}
.x2f_c00254{left:651.199173pt;}
.x16_c00254{left:667.839840pt;}
.x17_c00254{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10f677cd322180a4c94c8062.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_7b87d35ad99865e454ba8c51.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_ae6e46a0c5b5226aac8a4f71.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_a5eac836a23deca7949d00dd.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_a85e1cd0386d23d651de18de.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00255;src:url('chunks/assets/font_52f78548255aefa8bc606f0a.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00255;src:url('chunks/assets/font_3670397e924bfcb9eaa13478.woff2')format("woff");}.ff7_c00255{font-family:ff7_c00255;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00255;src:url('chunks/assets/font_f48ab02fbd1501e1aa83e83a.woff2')format("woff");}.ff8_c00255{font-family:ff8_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;}
.m5_c00255{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196759,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{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);}
.m14_c00255{transform:matrix(0.204009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204009,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m1f_c00255{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m1c_c00255{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.282828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282828,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{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);}
.m16_c00255{transform:matrix(0.389535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389535,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.449115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449115,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls5_c00255{letter-spacing:-18.306000px;}
.ls17_c00255{letter-spacing:-13.340700px;}
.ls19_c00255{letter-spacing:-13.274250px;}
.ls1a_c00255{letter-spacing:-8.681850px;}
.ls1f_c00255{letter-spacing:-8.558100px;}
.ls10_c00255{letter-spacing:-7.576538px;}
.ls23_c00255{letter-spacing:-6.055875px;}
.lse_c00255{letter-spacing:-5.836950px;}
.ls13_c00255{letter-spacing:-5.824478px;}
.ls1b_c00255{letter-spacing:-5.484375px;}
.ls9_c00255{letter-spacing:-5.300663px;}
.ls11_c00255{letter-spacing:-5.299350px;}
.lsd_c00255{letter-spacing:-5.109375px;}
.lsb_c00255{letter-spacing:-4.543088px;}
.ls1c_c00255{letter-spacing:-4.034948px;}
.lsc_c00255{letter-spacing:-3.787875px;}
.lsa_c00255{letter-spacing:-3.031875px;}
.lsf_c00255{letter-spacing:-3.000375px;}
.ls7_c00255{letter-spacing:-2.267213px;}
.ls1d_c00255{letter-spacing:-1.925003px;}
.ls6_c00255{letter-spacing:-1.512000px;}
.ls4_c00255{letter-spacing:-0.756000px;}
.ls22_c00255{letter-spacing:-0.733200px;}
.ls8_c00255{letter-spacing:0.000000px;}
.ls3_c00255{letter-spacing:0.756000px;}
.ls1_c00255{letter-spacing:1.512000px;}
.ls16_c00255{letter-spacing:1.591200px;}
.ls12_c00255{letter-spacing:1.606800px;}
.ls0_c00255{letter-spacing:2.267213px;}
.ls18_c00255{letter-spacing:2.386020px;}
.ls1e_c00255{letter-spacing:4.440225px;}
.ls2_c00255{letter-spacing:4.543088px;}
.ls21_c00255{letter-spacing:5.405205px;}
.ls20_c00255{letter-spacing:9.104400px;}
.ls15_c00255{letter-spacing:29.369790px;}
.ls14_c00255{letter-spacing:38.250000px;}
.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;}
._19_c00255{margin-left:-8.866523px;}
._18_c00255{margin-left:-6.902983px;}
._8_c00255{margin-left:-5.402311px;}
._d_c00255{margin-left:-4.110144px;}
._a_c00255{margin-left:-3.055803px;}
._9_c00255{margin-left:-1.421559px;}
._c_c00255{width:1.293014px;}
._2_c00255{width:2.661871px;}
._0_c00255{width:4.662606px;}
._e_c00255{width:5.874750px;}
._3_c00255{width:7.032557px;}
._4_c00255{width:9.021842px;}
._6_c00255{width:10.772758px;}
._5_c00255{width:12.446862px;}
._b_c00255{width:13.959225px;}
._7_c00255{width:15.167129px;}
._1_c00255{width:16.311185px;}
._f_c00255{width:17.936524px;}
._17_c00255{width:19.615656px;}
._14_c00255{width:21.270193px;}
._11_c00255{width:23.539889px;}
._10_c00255{width:26.773849px;}
._12_c00255{width:31.335352px;}
._13_c00255{width:32.903749px;}
._15_c00255{width:34.705973px;}
._16_c00255{width:37.562296px;}
.fc0_c00255{color:transparent;}
.fsf_c00255{font-size:32.250000px;}
.fse_c00255{font-size:34.500000px;}
.fs8_c00255{font-size:50.250000px;}
.fs10_c00255{font-size:54.750000px;}
.fs14_c00255{font-size:64.500000px;}
.fs12_c00255{font-size:74.250000px;}
.fsb_c00255{font-size:75.000000px;}
.fs9_c00255{font-size:76.500000px;}
.fs6_c00255{font-size:77.250000px;}
.fs4_c00255{font-size:78.000000px;}
.fs0_c00255{font-size:78.750000px;}
.fs13_c00255{font-size:79.500000px;}
.fs7_c00255{font-size:80.250000px;}
.fsa_c00255{font-size:81.000000px;}
.fs3_c00255{font-size:81.750000px;}
.fs5_c00255{font-size:82.500000px;}
.fs11_c00255{font-size:83.250000px;}
.fs1_c00255{font-size:84.750000px;}
.fs2_c00255{font-size:87.000000px;}
.fsc_c00255{font-size:87.750000px;}
.fsd_c00255{font-size:159.000000px;}
.y0_c00255{bottom:0.000000px;}
.y23_c00255{bottom:300.961035px;}
.y22_c00255{bottom:330.480555px;}
.y21_c00255{bottom:360.360285px;}
.y20_c00255{bottom:360.360450px;}
.y1f_c00255{bottom:389.879970px;}
.y1d_c00255{bottom:419.399820px;}
.y1e_c00255{bottom:419.760720px;}
.y1c_c00255{bottom:429.121035px;}
.y1a_c00255{bottom:449.639070px;}
.y1b_c00255{bottom:449.639700px;}
.y19_c00255{bottom:480.599670px;}
.y18_c00255{bottom:540.361215px;}
.y17_c00255{bottom:569.880750px;}
.y16_c00255{bottom:599.400285px;}
.y15_c00255{bottom:599.400690px;}
.y14_c00255{bottom:628.920225px;}
.y13_c00255{bottom:659.160135px;}
.y11_c00255{bottom:688.679175px;}
.y12_c00255{bottom:688.679670px;}
.y10_c00255{bottom:718.921185px;}
.yf_c00255{bottom:748.440900px;}
.ye_c00255{bottom:778.319820px;}
.yd_c00255{bottom:838.799565px;}
.yc_c00255{bottom:838.801440px;}
.yb_c00255{bottom:868.681155px;}
.ya_c00255{bottom:898.560885px;}
.y8_c00255{bottom:928.080375px;}
.y9_c00255{bottom:928.080420px;}
.y6_c00255{bottom:958.320240px;}
.y7_c00255{bottom:958.320285px;}
.y5_c00255{bottom:988.199955px;}
.y4_c00255{bottom:1018.079685px;}
.y3_c00255{bottom:1047.959400px;}
.y2_c00255{bottom:1077.839130px;}
.y1_c00255{bottom:1137.600675px;}
.h13_c00255{height:33.635742px;}
.h12_c00255{height:34.095703px;}
.h9_c00255{height:52.409180px;}
.h14_c00255{height:53.707397px;}
.h19_c00255{height:63.744141px;}
.h1a_c00255{height:75.816650px;}
.h5_c00255{height:76.552734px;}
.ha_c00255{height:77.097656px;}
.h1_c00255{height:77.288818px;}
.h17_c00255{height:77.440430px;}
.h7_c00255{height:77.853516px;}
.hf_c00255{height:78.222656px;}
.hd_c00255{height:78.609375px;}
.h8_c00255{height:78.760986px;}
.hc_c00255{height:79.365234px;}
.hb_c00255{height:80.050781px;}
.h18_c00255{height:80.121094px;}
.h4_c00255{height:80.233154px;}
.h6_c00255{height:80.969238px;}
.he_c00255{height:81.533203px;}
.h16_c00255{height:81.632812px;}
.h2_c00255{height:83.177490px;}
.h15_c00255{height:83.900391px;}
.h3_c00255{height:85.385742px;}
.h10_c00255{height:86.121826px;}
.h11_c00255{height:165.832031px;}
.h0_c00255{height:1263.000000px;}
.w0_c00255{width:892.500000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:142.559100px;}
.x19_c00255{left:144.001005px;}
.xe_c00255{left:167.039400px;}
.x2_c00255{left:209.518635px;}
.x21_c00255{left:218.878950px;}
.xf_c00255{left:224.999400px;}
.x22_c00255{left:230.399850px;}
.x24_c00255{left:233.278800px;}
.x3_c00255{left:235.080000px;}
.xa_c00255{left:239.758500px;}
.x23_c00255{left:245.878950px;}
.x2e_c00255{left:248.039385px;}
.xb_c00255{left:263.518635px;}
.x25_c00255{left:277.199850px;}
.x1a_c00255{left:285.120000px;}
.x6_c00255{left:287.998950px;}
.x2f_c00255{left:291.238785px;}
.x10_c00255{left:292.319850px;}
.x17_c00255{left:294.478635px;}
.x1b_c00255{left:305.638500px;}
.x7_c00255{left:307.798950px;}
.x1e_c00255{left:309.959385px;}
.x18_c00255{left:338.759100px;}
.x26_c00255{left:361.798950px;}
.x8_c00255{left:368.639700px;}
.x4_c00255{left:396.719100px;}
.x9_c00255{left:397.798515px;}
.x5_c00255{left:411.838950px;}
.x27_c00255{left:419.038920px;}
.x28_c00255{left:440.279250px;}
.x30_c00255{left:469.798920px;}
.xc_c00255{left:478.439250px;}
.xd_c00255{left:493.559100px;}
.x31_c00255{left:494.638500px;}
.x29_c00255{left:500.399820px;}
.x2a_c00255{left:527.759085px;}
.x15_c00255{left:594.718500px;}
.x11_c00255{left:607.318770px;}
.x16_c00255{left:617.758530px;}
.x12_c00255{left:639.359850px;}
.x13_c00255{left:672.119385px;}
.x2b_c00255{left:675.359250px;}
.x2c_c00255{left:696.599670px;}
.x1c_c00255{left:707.759535px;}
.x14_c00255{left:711.719520px;}
.x1d_c00255{left:726.119385px;}
.x1f_c00255{left:728.279850px;}
.x2d_c00255{left:759.599070px;}
.x20_c00255{left:768.239220px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls5_c00255{letter-spacing:-16.272000pt;}
.ls17_c00255{letter-spacing:-11.858400pt;}
.ls19_c00255{letter-spacing:-11.799333pt;}
.ls1a_c00255{letter-spacing:-7.717200pt;}
.ls1f_c00255{letter-spacing:-7.607200pt;}
.ls10_c00255{letter-spacing:-6.734700pt;}
.ls23_c00255{letter-spacing:-5.383000pt;}
.lse_c00255{letter-spacing:-5.188400pt;}
.ls13_c00255{letter-spacing:-5.177313pt;}
.ls1b_c00255{letter-spacing:-4.875000pt;}
.ls9_c00255{letter-spacing:-4.711700pt;}
.ls11_c00255{letter-spacing:-4.710533pt;}
.lsd_c00255{letter-spacing:-4.541667pt;}
.lsb_c00255{letter-spacing:-4.038300pt;}
.ls1c_c00255{letter-spacing:-3.586620pt;}
.lsc_c00255{letter-spacing:-3.367000pt;}
.lsa_c00255{letter-spacing:-2.695000pt;}
.lsf_c00255{letter-spacing:-2.667000pt;}
.ls7_c00255{letter-spacing:-2.015300pt;}
.ls1d_c00255{letter-spacing:-1.711113pt;}
.ls6_c00255{letter-spacing:-1.344000pt;}
.ls4_c00255{letter-spacing:-0.672000pt;}
.ls22_c00255{letter-spacing:-0.651733pt;}
.ls8_c00255{letter-spacing:0.000000pt;}
.ls3_c00255{letter-spacing:0.672000pt;}
.ls1_c00255{letter-spacing:1.344000pt;}
.ls16_c00255{letter-spacing:1.414400pt;}
.ls12_c00255{letter-spacing:1.428267pt;}
.ls0_c00255{letter-spacing:2.015300pt;}
.ls18_c00255{letter-spacing:2.120907pt;}
.ls1e_c00255{letter-spacing:3.946867pt;}
.ls2_c00255{letter-spacing:4.038300pt;}
.ls21_c00255{letter-spacing:4.804627pt;}
.ls20_c00255{letter-spacing:8.092800pt;}
.ls15_c00255{letter-spacing:26.106480pt;}
.ls14_c00255{letter-spacing:34.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
._19_c00255{margin-left:-7.881354pt;}
._18_c00255{margin-left:-6.135985pt;}
._8_c00255{margin-left:-4.802054pt;}
._d_c00255{margin-left:-3.653462pt;}
._a_c00255{margin-left:-2.716269pt;}
._9_c00255{margin-left:-1.263608pt;}
._c_c00255{width:1.149346pt;}
._2_c00255{width:2.366108pt;}
._0_c00255{width:4.144538pt;}
._e_c00255{width:5.222000pt;}
._3_c00255{width:6.251162pt;}
._4_c00255{width:8.019415pt;}
._6_c00255{width:9.575785pt;}
._5_c00255{width:11.063877pt;}
._b_c00255{width:12.408200pt;}
._7_c00255{width:13.481892pt;}
._1_c00255{width:14.498831pt;}
._f_c00255{width:15.943577pt;}
._17_c00255{width:17.436138pt;}
._14_c00255{width:18.906838pt;}
._11_c00255{width:20.924346pt;}
._10_c00255{width:23.798977pt;}
._12_c00255{width:27.853646pt;}
._13_c00255{width:29.247777pt;}
._15_c00255{width:30.849754pt;}
._16_c00255{width:33.388708pt;}
.fsf_c00255{font-size:28.666667pt;}
.fse_c00255{font-size:30.666667pt;}
.fs8_c00255{font-size:44.666667pt;}
.fs10_c00255{font-size:48.666667pt;}
.fs14_c00255{font-size:57.333333pt;}
.fs12_c00255{font-size:66.000000pt;}
.fsb_c00255{font-size:66.666667pt;}
.fs9_c00255{font-size:68.000000pt;}
.fs6_c00255{font-size:68.666667pt;}
.fs4_c00255{font-size:69.333333pt;}
.fs0_c00255{font-size:70.000000pt;}
.fs13_c00255{font-size:70.666667pt;}
.fs7_c00255{font-size:71.333333pt;}
.fsa_c00255{font-size:72.000000pt;}
.fs3_c00255{font-size:72.666667pt;}
.fs5_c00255{font-size:73.333333pt;}
.fs11_c00255{font-size:74.000000pt;}
.fs1_c00255{font-size:75.333333pt;}
.fs2_c00255{font-size:77.333333pt;}
.fsc_c00255{font-size:78.000000pt;}
.fsd_c00255{font-size:141.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y23_c00255{bottom:267.520920pt;}
.y22_c00255{bottom:293.760493pt;}
.y21_c00255{bottom:320.320253pt;}
.y20_c00255{bottom:320.320400pt;}
.y1f_c00255{bottom:346.559973pt;}
.y1d_c00255{bottom:372.799840pt;}
.y1e_c00255{bottom:373.120640pt;}
.y1c_c00255{bottom:381.440920pt;}
.y1a_c00255{bottom:399.679173pt;}
.y1b_c00255{bottom:399.679733pt;}
.y19_c00255{bottom:427.199707pt;}
.y18_c00255{bottom:480.321080pt;}
.y17_c00255{bottom:506.560667pt;}
.y16_c00255{bottom:532.800253pt;}
.y15_c00255{bottom:532.800613pt;}
.y14_c00255{bottom:559.040200pt;}
.y13_c00255{bottom:585.920120pt;}
.y11_c00255{bottom:612.159267pt;}
.y12_c00255{bottom:612.159707pt;}
.y10_c00255{bottom:639.041053pt;}
.yf_c00255{bottom:665.280800pt;}
.ye_c00255{bottom:691.839840pt;}
.yd_c00255{bottom:745.599613pt;}
.yc_c00255{bottom:745.601280pt;}
.yb_c00255{bottom:772.161027pt;}
.ya_c00255{bottom:798.720787pt;}
.y8_c00255{bottom:824.960333pt;}
.y9_c00255{bottom:824.960373pt;}
.y6_c00255{bottom:851.840213pt;}
.y7_c00255{bottom:851.840253pt;}
.y5_c00255{bottom:878.399960pt;}
.y4_c00255{bottom:904.959720pt;}
.y3_c00255{bottom:931.519467pt;}
.y2_c00255{bottom:958.079227pt;}
.y1_c00255{bottom:1011.200600pt;}
.h13_c00255{height:29.898438pt;}
.h12_c00255{height:30.307292pt;}
.h9_c00255{height:46.585938pt;}
.h14_c00255{height:47.739909pt;}
.h19_c00255{height:56.661458pt;}
.h1a_c00255{height:67.392578pt;}
.h5_c00255{height:68.046875pt;}
.ha_c00255{height:68.531250pt;}
.h1_c00255{height:68.701172pt;}
.h17_c00255{height:68.835938pt;}
.h7_c00255{height:69.203125pt;}
.hf_c00255{height:69.531250pt;}
.hd_c00255{height:69.875000pt;}
.h8_c00255{height:70.009766pt;}
.hc_c00255{height:70.546875pt;}
.hb_c00255{height:71.156250pt;}
.h18_c00255{height:71.218750pt;}
.h4_c00255{height:71.318359pt;}
.h6_c00255{height:71.972656pt;}
.he_c00255{height:72.473958pt;}
.h16_c00255{height:72.562500pt;}
.h2_c00255{height:73.935547pt;}
.h15_c00255{height:74.578125pt;}
.h3_c00255{height:75.898438pt;}
.h10_c00255{height:76.552734pt;}
.h11_c00255{height:147.406250pt;}
.h0_c00255{height:1122.666667pt;}
.w0_c00255{width:793.333333pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:126.719200pt;}
.x19_c00255{left:128.000893pt;}
.xe_c00255{left:148.479467pt;}
.x2_c00255{left:186.238787pt;}
.x21_c00255{left:194.559067pt;}
.xf_c00255{left:199.999467pt;}
.x22_c00255{left:204.799867pt;}
.x24_c00255{left:207.358933pt;}
.x3_c00255{left:208.960000pt;}
.xa_c00255{left:213.118667pt;}
.x23_c00255{left:218.559067pt;}
.x2e_c00255{left:220.479453pt;}
.xb_c00255{left:234.238787pt;}
.x25_c00255{left:246.399867pt;}
.x1a_c00255{left:253.440000pt;}
.x6_c00255{left:255.999067pt;}
.x2f_c00255{left:258.878920pt;}
.x10_c00255{left:259.839867pt;}
.x17_c00255{left:261.758787pt;}
.x1b_c00255{left:271.678667pt;}
.x7_c00255{left:273.599067pt;}
.x1e_c00255{left:275.519453pt;}
.x18_c00255{left:301.119200pt;}
.x26_c00255{left:321.599067pt;}
.x8_c00255{left:327.679733pt;}
.x4_c00255{left:352.639200pt;}
.x9_c00255{left:353.598680pt;}
.x5_c00255{left:366.079067pt;}
.x27_c00255{left:372.479040pt;}
.x28_c00255{left:391.359333pt;}
.x30_c00255{left:417.599040pt;}
.xc_c00255{left:425.279333pt;}
.xd_c00255{left:438.719200pt;}
.x31_c00255{left:439.678667pt;}
.x29_c00255{left:444.799840pt;}
.x2a_c00255{left:469.119187pt;}
.x15_c00255{left:528.638667pt;}
.x11_c00255{left:539.838907pt;}
.x16_c00255{left:549.118693pt;}
.x12_c00255{left:568.319867pt;}
.x13_c00255{left:597.439453pt;}
.x2b_c00255{left:600.319333pt;}
.x2c_c00255{left:619.199707pt;}
.x1c_c00255{left:629.119587pt;}
.x14_c00255{left:632.639573pt;}
.x1d_c00255{left:645.439453pt;}
.x1f_c00255{left:647.359867pt;}
.x2d_c00255{left:675.199173pt;}
.x20_c00255{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd653dc0511aaaa15c6363b9.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_78e94dcd271e5d3157b07392.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.364746;font-style:normal;font-weight:normal;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_6ed9bc961837a8cab029866d.woff2')format("woff");}.ff3_c00256{font-family:ff3_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:ff4_c00256;src:url('chunks/assets/font_bc1cdcadd0bb26ae0381ab71.woff2')format("woff");}.ff4_c00256{font-family:ff4_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:ff5_c00256;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff5_c00256{font-family:ff5_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;}
.mc_c00256{transform:matrix(0.045886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045886,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.058544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058544,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.091270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091270,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.148438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148438,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.lsd_c00256{letter-spacing:-14.877375px;}
.ls10_c00256{letter-spacing:-14.383845px;}
.ls14_c00256{letter-spacing:-8.950500px;}
.ls17_c00256{letter-spacing:-4.475888px;}
.ls12_c00256{letter-spacing:-3.353250px;}
.lse_c00256{letter-spacing:0.000000px;}
.ls6_c00256{letter-spacing:1.115625px;}
.ls5_c00256{letter-spacing:2.237625px;}
.ls18_c00256{letter-spacing:2.673000px;}
.ls8_c00256{letter-spacing:3.353250px;}
.lsf_c00256{letter-spacing:3.692498px;}
.ls11_c00256{letter-spacing:3.787200px;}
.ls13_c00256{letter-spacing:4.448400px;}
.ls4_c00256{letter-spacing:4.475888px;}
.ls3_c00256{letter-spacing:5.591513px;}
.ls16_c00256{letter-spacing:6.456450px;}
.ls0_c00256{letter-spacing:6.712875px;}
.lsc_c00256{letter-spacing:7.828500px;}
.ls1_c00256{letter-spacing:8.950500px;}
.ls7_c00256{letter-spacing:10.066125px;}
.lsb_c00256{letter-spacing:11.181750px;}
.ls2_c00256{letter-spacing:12.303113px;}
.ls15_c00256{letter-spacing:12.900000px;}
.lsa_c00256{letter-spacing:13.418738px;}
.ls9_c00256{letter-spacing:15.657638px;}
.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;}
._14_c00256{margin-left:-40.227939px;}
._1f_c00256{margin-left:-31.579659px;}
._6_c00256{margin-left:-20.255164px;}
._12_c00256{margin-left:-14.695896px;}
._3_c00256{margin-left:-6.411058px;}
._1b_c00256{width:4.265345px;}
._0_c00256{width:6.808522px;}
._4_c00256{width:9.216192px;}
._19_c00256{width:10.673696px;}
._2_c00256{width:13.259664px;}
._1_c00256{width:14.770361px;}
._1a_c00256{width:16.900013px;}
._d_c00256{width:19.265742px;}
._1d_c00256{width:21.547008px;}
._18_c00256{width:23.338629px;}
._1e_c00256{width:24.496664px;}
._1c_c00256{width:37.644867px;}
._20_c00256{width:66.631433px;}
._17_c00256{width:73.726495px;}
._7_c00256{width:112.435584px;}
._21_c00256{width:120.592609px;}
._f_c00256{width:170.804995px;}
._10_c00256{width:175.102505px;}
._b_c00256{width:182.699168px;}
._8_c00256{width:190.854795px;}
._c_c00256{width:193.003505px;}
._a_c00256{width:209.392870px;}
._15_c00256{width:285.872153px;}
._16_c00256{width:288.020047px;}
._5_c00256{width:292.518385px;}
._13_c00256{width:420.705666px;}
._e_c00256{width:449.135414px;}
._11_c00256{width:458.974813px;}
._9_c00256{width:465.797461px;}
.fc0_c00256{color:transparent;}
.fs9_c00256{font-size:27.750000px;}
.fs7_c00256{font-size:48.000000px;}
.fs2_c00256{font-size:58.500000px;}
.fs0_c00256{font-size:63.750000px;}
.fsa_c00256{font-size:64.500000px;}
.fs3_c00256{font-size:65.250000px;}
.fs5_c00256{font-size:66.000000px;}
.fsb_c00256{font-size:68.250000px;}
.fs1_c00256{font-size:72.750000px;}
.fs6_c00256{font-size:94.500000px;}
.fs8_c00256{font-size:118.500000px;}
.fs4_c00256{font-size:121.500000px;}
.y0_c00256{bottom:0.000000px;}
.y1c_c00256{bottom:537.478365px;}
.y1a_c00256{bottom:560.879520px;}
.y19_c00256{bottom:560.879610px;}
.y18_c00256{bottom:572.759535px;}
.y17_c00256{bottom:572.760060px;}
.y16_c00256{bottom:584.819940px;}
.y14_c00256{bottom:596.519400px;}
.y15_c00256{bottom:596.519670px;}
.y13_c00256{bottom:608.038920px;}
.y1b_c00256{bottom:666.718845px;}
.y1e_c00256{bottom:666.719100px;}
.y1d_c00256{bottom:671.039985px;}
.y12_c00256{bottom:689.759085px;}
.y11_c00256{bottom:702.359250px;}
.y10_c00256{bottom:702.359295px;}
.yf_c00256{bottom:772.919490px;}
.ye_c00256{bottom:796.318815px;}
.yd_c00256{bottom:820.439670px;}
.yc_c00256{bottom:867.419490px;}
.yb_c00256{bottom:867.599595px;}
.ya_c00256{bottom:890.819085px;}
.y9_c00256{bottom:916.559685px;}
.y7_c00256{bottom:916.737630px;}
.y8_c00256{bottom:916.739220px;}
.y6_c00256{bottom:938.159475px;}
.y5_c00256{bottom:961.378965px;}
.y4_c00256{bottom:961.557750px;}
.y3_c00256{bottom:985.139100px;}
.y2_c00256{bottom:985.318815px;}
.y1_c00256{bottom:1080.000000px;}
.ha_c00256{height:28.942383px;}
.h8_c00256{height:47.109375px;}
.h3_c00256{height:57.414551px;}
.h1_c00256{height:62.567139px;}
.hb_c00256{height:63.303223px;}
.h6_c00256{height:64.775391px;}
.h4_c00256{height:65.759766px;}
.hc_c00256{height:66.983643px;}
.h2_c00256{height:71.897461px;}
.h7_c00256{height:92.746582px;}
.h9_c00256{height:123.591797px;}
.h5_c00256{height:126.720703px;}
.h0_c00256{height:1263.000000px;}
.w0_c00256{width:892.500000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:330.479685px;}
.x5_c00256{left:335.519100px;}
.xb_c00256{left:336.597675px;}
.xf_c00256{left:342.719100px;}
.x10_c00256{left:348.839535px;}
.x13_c00256{left:419.399820px;}
.x19_c00256{left:435.238695px;}
.x8_c00256{left:446.759085px;}
.x9_c00256{left:452.518620px;}
.xc_c00256{left:457.918950px;}
.x2_c00256{left:481.319820px;}
.x3_c00256{left:503.998950px;}
.x6_c00256{left:509.758530px;}
.x4_c00256{left:515.878920px;}
.x11_c00256{left:523.798920px;}
.x16_c00256{left:528.838530px;}
.x7_c00256{left:540.000000px;}
.xa_c00256{left:551.519070px;}
.xd_c00256{left:562.319820px;}
.x12_c00256{left:576.358665px;}
.x17_c00256{left:586.439250px;}
.x14_c00256{left:592.198785px;}
.xe_c00256{left:604.078770px;}
.x18_c00256{left:610.199385px;}
.x15_c00256{left:615.958920px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.lsd_c00256{letter-spacing:-13.224333pt;}
.ls10_c00256{letter-spacing:-12.785640pt;}
.ls14_c00256{letter-spacing:-7.956000pt;}
.ls17_c00256{letter-spacing:-3.978567pt;}
.ls12_c00256{letter-spacing:-2.980667pt;}
.lse_c00256{letter-spacing:0.000000pt;}
.ls6_c00256{letter-spacing:0.991667pt;}
.ls5_c00256{letter-spacing:1.989000pt;}
.ls18_c00256{letter-spacing:2.376000pt;}
.ls8_c00256{letter-spacing:2.980667pt;}
.lsf_c00256{letter-spacing:3.282220pt;}
.ls11_c00256{letter-spacing:3.366400pt;}
.ls13_c00256{letter-spacing:3.954133pt;}
.ls4_c00256{letter-spacing:3.978567pt;}
.ls3_c00256{letter-spacing:4.970233pt;}
.ls16_c00256{letter-spacing:5.739067pt;}
.ls0_c00256{letter-spacing:5.967000pt;}
.lsc_c00256{letter-spacing:6.958667pt;}
.ls1_c00256{letter-spacing:7.956000pt;}
.ls7_c00256{letter-spacing:8.947667pt;}
.lsb_c00256{letter-spacing:9.939333pt;}
.ls2_c00256{letter-spacing:10.936100pt;}
.ls15_c00256{letter-spacing:11.466667pt;}
.lsa_c00256{letter-spacing:11.927767pt;}
.ls9_c00256{letter-spacing:13.917900pt;}
.ws0_c00256{word-spacing:0.000000pt;}
._14_c00256{margin-left:-35.758168pt;}
._1f_c00256{margin-left:-28.070808pt;}
._6_c00256{margin-left:-18.004591pt;}
._12_c00256{margin-left:-13.063019pt;}
._3_c00256{margin-left:-5.698718pt;}
._1b_c00256{width:3.791418pt;}
._0_c00256{width:6.052020pt;}
._4_c00256{width:8.192171pt;}
._19_c00256{width:9.487730pt;}
._2_c00256{width:11.786368pt;}
._1_c00256{width:13.129209pt;}
._1a_c00256{width:15.022234pt;}
._d_c00256{width:17.125104pt;}
._1d_c00256{width:19.152896pt;}
._18_c00256{width:20.745448pt;}
._1e_c00256{width:21.774813pt;}
._1c_c00256{width:33.462104pt;}
._20_c00256{width:59.227940pt;}
._17_c00256{width:65.534662pt;}
._7_c00256{width:99.942742pt;}
._21_c00256{width:107.193430pt;}
._f_c00256{width:151.826662pt;}
._10_c00256{width:155.646671pt;}
._b_c00256{width:162.399260pt;}
._8_c00256{width:169.648706pt;}
._c_c00256{width:171.558671pt;}
._a_c00256{width:186.126995pt;}
._15_c00256{width:254.108580pt;}
._16_c00256{width:256.017820pt;}
._5_c00256{width:260.016342pt;}
._13_c00256{width:373.960592pt;}
._e_c00256{width:399.231480pt;}
._11_c00256{width:407.977612pt;}
._9_c00256{width:414.042188pt;}
.fs9_c00256{font-size:24.666667pt;}
.fs7_c00256{font-size:42.666667pt;}
.fs2_c00256{font-size:52.000000pt;}
.fs0_c00256{font-size:56.666667pt;}
.fsa_c00256{font-size:57.333333pt;}
.fs3_c00256{font-size:58.000000pt;}
.fs5_c00256{font-size:58.666667pt;}
.fsb_c00256{font-size:60.666667pt;}
.fs1_c00256{font-size:64.666667pt;}
.fs6_c00256{font-size:84.000000pt;}
.fs8_c00256{font-size:105.333333pt;}
.fs4_c00256{font-size:108.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y1c_c00256{bottom:477.758547pt;}
.y1a_c00256{bottom:498.559573pt;}
.y19_c00256{bottom:498.559653pt;}
.y18_c00256{bottom:509.119587pt;}
.y17_c00256{bottom:509.120053pt;}
.y16_c00256{bottom:519.839947pt;}
.y14_c00256{bottom:530.239467pt;}
.y15_c00256{bottom:530.239707pt;}
.y13_c00256{bottom:540.479040pt;}
.y1b_c00256{bottom:592.638973pt;}
.y1e_c00256{bottom:592.639200pt;}
.y1d_c00256{bottom:596.479987pt;}
.y12_c00256{bottom:613.119187pt;}
.y11_c00256{bottom:624.319333pt;}
.y10_c00256{bottom:624.319373pt;}
.yf_c00256{bottom:687.039547pt;}
.ye_c00256{bottom:707.838947pt;}
.yd_c00256{bottom:729.279707pt;}
.yc_c00256{bottom:771.039547pt;}
.yb_c00256{bottom:771.199640pt;}
.ya_c00256{bottom:791.839187pt;}
.y9_c00256{bottom:814.719720pt;}
.y7_c00256{bottom:814.877893pt;}
.y8_c00256{bottom:814.879307pt;}
.y6_c00256{bottom:833.919533pt;}
.y5_c00256{bottom:854.559080pt;}
.y4_c00256{bottom:854.718000pt;}
.y3_c00256{bottom:875.679200pt;}
.y2_c00256{bottom:875.838947pt;}
.y1_c00256{bottom:960.000000pt;}
.ha_c00256{height:25.726562pt;}
.h8_c00256{height:41.875000pt;}
.h3_c00256{height:51.035156pt;}
.h1_c00256{height:55.615234pt;}
.hb_c00256{height:56.269531pt;}
.h6_c00256{height:57.578125pt;}
.h4_c00256{height:58.453125pt;}
.hc_c00256{height:59.541016pt;}
.h2_c00256{height:63.908854pt;}
.h7_c00256{height:82.441406pt;}
.h9_c00256{height:109.859375pt;}
.h5_c00256{height:112.640625pt;}
.h0_c00256{height:1122.666667pt;}
.w0_c00256{width:793.333333pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:293.759720pt;}
.x5_c00256{left:298.239200pt;}
.xb_c00256{left:299.197933pt;}
.xf_c00256{left:304.639200pt;}
.x10_c00256{left:310.079587pt;}
.x13_c00256{left:372.799840pt;}
.x19_c00256{left:386.878840pt;}
.x8_c00256{left:397.119187pt;}
.x9_c00256{left:402.238773pt;}
.xc_c00256{left:407.039067pt;}
.x2_c00256{left:427.839840pt;}
.x3_c00256{left:447.999067pt;}
.x6_c00256{left:453.118693pt;}
.x4_c00256{left:458.559040pt;}
.x11_c00256{left:465.599040pt;}
.x16_c00256{left:470.078693pt;}
.x7_c00256{left:480.000000pt;}
.xa_c00256{left:490.239173pt;}
.xd_c00256{left:499.839840pt;}
.x12_c00256{left:512.318813pt;}
.x17_c00256{left:521.279333pt;}
.x14_c00256{left:526.398920pt;}
.xe_c00256{left:536.958907pt;}
.x18_c00256{left:542.399453pt;}
.x15_c00256{left:547.519040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4b8f020346dc41070ff365a.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.311035;font-style:normal;font-weight:normal;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_1b36cb79e6b97cc281deaac1.woff2')format("woff");}.ff2_c00257{font-family:ff2_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:ff3_c00257;src:url('chunks/assets/font_ce297b42bd252bb7dde34957.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00257{transform:matrix(0.054025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054025,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.088636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088636,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102941,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{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);}
.mf_c00257{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_c00257{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.325843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325843,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls13_c00257{letter-spacing:-5.890500px;}
.ls8_c00257{letter-spacing:-4.629623px;}
.ls4_c00257{letter-spacing:-3.860025px;}
.lsb_c00257{letter-spacing:-3.678413px;}
.ls7_c00257{letter-spacing:-3.195075px;}
.lsa_c00257{letter-spacing:-3.089625px;}
.ls5_c00257{letter-spacing:-2.973300px;}
.lsd_c00257{letter-spacing:-2.945250px;}
.ls11_c00257{letter-spacing:-2.601300px;}
.ls0_c00257{letter-spacing:-2.310398px;}
.lsc_c00257{letter-spacing:-2.205000px;}
.ls3_c00257{letter-spacing:-1.560038px;}
.ls2_c00257{letter-spacing:-1.540800px;}
.ls6_c00257{letter-spacing:-1.531710px;}
.ls1_c00257{letter-spacing:-1.515510px;}
.lse_c00257{letter-spacing:-1.473413px;}
.ls9_c00257{letter-spacing:0.000000px;}
.ls10_c00257{letter-spacing:0.719100px;}
.lsf_c00257{letter-spacing:0.724620px;}
.ls15_c00257{letter-spacing:1.456035px;}
.ls12_c00257{letter-spacing:2.945250px;}
.ls14_c00257{letter-spacing:5.753850px;}
.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;}
._2_c00257{width:2.150331px;}
._5_c00257{width:3.559824px;}
._3_c00257{width:4.861153px;}
._1_c00257{width:6.641367px;}
._6_c00257{width:8.913911px;}
._4_c00257{width:10.204178px;}
._0_c00257{width:12.045402px;}
.fc0_c00257{color:transparent;}
.fs9_c00257{font-size:22.500000px;}
.fsa_c00257{font-size:38.250000px;}
.fsc_c00257{font-size:66.750000px;}
.fsb_c00257{font-size:69.000000px;}
.fse_c00257{font-size:73.500000px;}
.fs6_c00257{font-size:75.000000px;}
.fs8_c00257{font-size:76.500000px;}
.fs7_c00257{font-size:78.000000px;}
.fs2_c00257{font-size:78.750000px;}
.fs3_c00257{font-size:79.500000px;}
.fs0_c00257{font-size:80.250000px;}
.fs1_c00257{font-size:81.000000px;}
.fsd_c00257{font-size:82.500000px;}
.fs4_c00257{font-size:84.750000px;}
.fs5_c00257{font-size:177.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1b_c00257{bottom:518.759535px;}
.y11_c00257{bottom:578.519070px;}
.y10_c00257{bottom:578.519400px;}
.yf_c00257{bottom:608.038920px;}
.ye_c00257{bottom:608.038950px;}
.yd_c00257{bottom:637.560285px;}
.y22_c00257{bottom:739.439670px;}
.y23_c00257{bottom:752.039985px;}
.y1a_c00257{bottom:753.478635px;}
.ya_c00257{bottom:791.639655px;}
.y19_c00257{bottom:791.999745px;}
.y21_c00257{bottom:792.358200px;}
.y18_c00257{bottom:832.319820px;}
.y9_c00257{bottom:832.319910px;}
.y20_c00257{bottom:832.678305px;}
.y17_c00257{bottom:843.479640px;}
.y16_c00257{bottom:854.278755px;}
.y15_c00257{bottom:872.998530px;}
.y8_c00257{bottom:873.000180px;}
.y1f_c00257{bottom:873.718755px;}
.y7_c00257{bottom:912.959790px;}
.y14_c00257{bottom:913.318635px;}
.y1e_c00257{bottom:913.678350px;}
.y6_c00257{bottom:954.000255px;}
.y13_c00257{bottom:954.357285px;}
.y1d_c00257{bottom:954.358605px;}
.yb_c00257{bottom:993.958335px;}
.yc_c00257{bottom:993.958920px;}
.y12_c00257{bottom:994.318980px;}
.y1c_c00257{bottom:994.319820px;}
.y5_c00257{bottom:1004.760390px;}
.y4_c00257{bottom:1034.640105px;}
.y2_c00257{bottom:1104.839340px;}
.y3_c00257{bottom:1104.839535px;}
.y1_c00257{bottom:1135.079400px;}
.hb_c00257{height:23.466797px;}
.hc_c00257{height:39.893555px;}
.hd_c00257{height:67.719727px;}
.he_c00257{height:69.618164px;}
.h10_c00257{height:74.074219px;}
.ha_c00257{height:75.080566px;}
.h9_c00257{height:76.552734px;}
.h6_c00257{height:77.288818px;}
.h8_c00257{height:78.222656px;}
.h3_c00257{height:79.365234px;}
.h4_c00257{height:80.121094px;}
.h1_c00257{height:80.876953px;}
.h2_c00257{height:81.632812px;}
.hf_c00257{height:83.144531px;}
.h5_c00257{height:85.412109px;}
.h7_c00257{height:184.605469px;}
.h0_c00257{height:1263.000000px;}
.w0_c00257{width:892.500000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:217.799535px;}
.xe_c00257{left:219.599100px;}
.x2_c00257{left:276.479685px;}
.x8_c00257{left:302.398635px;}
.x3_c00257{left:305.999385px;}
.xf_c00257{left:325.800000px;}
.x9_c00257{left:326.878950px;}
.xa_c00257{left:395.278800px;}
.x10_c00257{left:407.878920px;}
.x4_c00257{left:409.319235px;}
.xb_c00257{left:419.399820px;}
.x5_c00257{left:433.079400px;}
.x11_c00257{left:456.478635px;}
.x19_c00257{left:515.519670px;}
.x16_c00257{left:525.960165px;}
.xc_c00257{left:533.159415px;}
.x6_c00257{left:534.238770px;}
.xd_c00257{left:548.279250px;}
.x17_c00257{left:559.799715px;}
.x18_c00257{left:573.480330px;}
.x1a_c00257{left:575.279250px;}
.x7_c00257{left:584.639700px;}
.x14_c00257{left:591.119385px;}
.x12_c00257{left:595.438620px;}
.x1e_c00257{left:608.399820px;}
.x15_c00257{left:618.839535px;}
.x13_c00257{left:627.118785px;}
.x1b_c00257{left:656.638545px;}
.x1c_c00257{left:672.119385px;}
.x1d_c00257{left:673.559715px;}
.x1f_c00257{left:681.118785px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls13_c00257{letter-spacing:-5.236000pt;}
.ls8_c00257{letter-spacing:-4.115220pt;}
.ls4_c00257{letter-spacing:-3.431133pt;}
.lsb_c00257{letter-spacing:-3.269700pt;}
.ls7_c00257{letter-spacing:-2.840067pt;}
.lsa_c00257{letter-spacing:-2.746333pt;}
.ls5_c00257{letter-spacing:-2.642933pt;}
.lsd_c00257{letter-spacing:-2.618000pt;}
.ls11_c00257{letter-spacing:-2.312267pt;}
.ls0_c00257{letter-spacing:-2.053687pt;}
.lsc_c00257{letter-spacing:-1.960000pt;}
.ls3_c00257{letter-spacing:-1.386700pt;}
.ls2_c00257{letter-spacing:-1.369600pt;}
.ls6_c00257{letter-spacing:-1.361520pt;}
.ls1_c00257{letter-spacing:-1.347120pt;}
.lse_c00257{letter-spacing:-1.309700pt;}
.ls9_c00257{letter-spacing:0.000000pt;}
.ls10_c00257{letter-spacing:0.639200pt;}
.lsf_c00257{letter-spacing:0.644107pt;}
.ls15_c00257{letter-spacing:1.294253pt;}
.ls12_c00257{letter-spacing:2.618000pt;}
.ls14_c00257{letter-spacing:5.114533pt;}
.ws0_c00257{word-spacing:0.000000pt;}
._2_c00257{width:1.911406pt;}
._5_c00257{width:3.164288pt;}
._3_c00257{width:4.321025pt;}
._1_c00257{width:5.903437pt;}
._6_c00257{width:7.923477pt;}
._4_c00257{width:9.070381pt;}
._0_c00257{width:10.707024pt;}
.fs9_c00257{font-size:20.000000pt;}
.fsa_c00257{font-size:34.000000pt;}
.fsc_c00257{font-size:59.333333pt;}
.fsb_c00257{font-size:61.333333pt;}
.fse_c00257{font-size:65.333333pt;}
.fs6_c00257{font-size:66.666667pt;}
.fs8_c00257{font-size:68.000000pt;}
.fs7_c00257{font-size:69.333333pt;}
.fs2_c00257{font-size:70.000000pt;}
.fs3_c00257{font-size:70.666667pt;}
.fs0_c00257{font-size:71.333333pt;}
.fs1_c00257{font-size:72.000000pt;}
.fsd_c00257{font-size:73.333333pt;}
.fs4_c00257{font-size:75.333333pt;}
.fs5_c00257{font-size:157.333333pt;}
.y0_c00257{bottom:0.000000pt;}
.y1b_c00257{bottom:461.119587pt;}
.y11_c00257{bottom:514.239173pt;}
.y10_c00257{bottom:514.239467pt;}
.yf_c00257{bottom:540.479040pt;}
.ye_c00257{bottom:540.479067pt;}
.yd_c00257{bottom:566.720253pt;}
.y22_c00257{bottom:657.279707pt;}
.y23_c00257{bottom:668.479987pt;}
.y1a_c00257{bottom:669.758787pt;}
.ya_c00257{bottom:703.679693pt;}
.y19_c00257{bottom:703.999773pt;}
.y21_c00257{bottom:704.318400pt;}
.y18_c00257{bottom:739.839840pt;}
.y9_c00257{bottom:739.839920pt;}
.y20_c00257{bottom:740.158493pt;}
.y17_c00257{bottom:749.759680pt;}
.y16_c00257{bottom:759.358893pt;}
.y15_c00257{bottom:775.998693pt;}
.y8_c00257{bottom:776.000160pt;}
.y1f_c00257{bottom:776.638893pt;}
.y7_c00257{bottom:811.519813pt;}
.y14_c00257{bottom:811.838787pt;}
.y1e_c00257{bottom:812.158533pt;}
.y6_c00257{bottom:848.000227pt;}
.y13_c00257{bottom:848.317587pt;}
.y1d_c00257{bottom:848.318760pt;}
.yb_c00257{bottom:883.518520pt;}
.yc_c00257{bottom:883.519040pt;}
.y12_c00257{bottom:883.839093pt;}
.y1c_c00257{bottom:883.839840pt;}
.y5_c00257{bottom:893.120347pt;}
.y4_c00257{bottom:919.680093pt;}
.y2_c00257{bottom:982.079413pt;}
.y3_c00257{bottom:982.079587pt;}
.y1_c00257{bottom:1008.959467pt;}
.hb_c00257{height:20.859375pt;}
.hc_c00257{height:35.460938pt;}
.hd_c00257{height:60.195312pt;}
.he_c00257{height:61.882812pt;}
.h10_c00257{height:65.843750pt;}
.ha_c00257{height:66.738281pt;}
.h9_c00257{height:68.046875pt;}
.h6_c00257{height:68.701172pt;}
.h8_c00257{height:69.531250pt;}
.h3_c00257{height:70.546875pt;}
.h4_c00257{height:71.218750pt;}
.h1_c00257{height:71.890625pt;}
.h2_c00257{height:72.562500pt;}
.hf_c00257{height:73.906250pt;}
.h5_c00257{height:75.921875pt;}
.h7_c00257{height:164.093750pt;}
.h0_c00257{height:1122.666667pt;}
.w0_c00257{width:793.333333pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:193.599587pt;}
.xe_c00257{left:195.199200pt;}
.x2_c00257{left:245.759720pt;}
.x8_c00257{left:268.798787pt;}
.x3_c00257{left:271.999453pt;}
.xf_c00257{left:289.600000pt;}
.x9_c00257{left:290.559067pt;}
.xa_c00257{left:351.358933pt;}
.x10_c00257{left:362.559040pt;}
.x4_c00257{left:363.839320pt;}
.xb_c00257{left:372.799840pt;}
.x5_c00257{left:384.959467pt;}
.x11_c00257{left:405.758787pt;}
.x19_c00257{left:458.239707pt;}
.x16_c00257{left:467.520147pt;}
.xc_c00257{left:473.919480pt;}
.x6_c00257{left:474.878907pt;}
.xd_c00257{left:487.359333pt;}
.x17_c00257{left:497.599747pt;}
.x18_c00257{left:509.760293pt;}
.x1a_c00257{left:511.359333pt;}
.x7_c00257{left:519.679733pt;}
.x14_c00257{left:525.439453pt;}
.x12_c00257{left:529.278773pt;}
.x1e_c00257{left:540.799840pt;}
.x15_c00257{left:550.079587pt;}
.x13_c00257{left:557.438920pt;}
.x1b_c00257{left:583.678707pt;}
.x1c_c00257{left:597.439453pt;}
.x1d_c00257{left:598.719747pt;}
.x1f_c00257{left:605.438920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad28e8e208864c0a3fc87572.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_ecda949ecd3acfdb53c98ba5.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_f9f63df42859be9e9958449e.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_92e7ddebf5d3569d3c498610.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_733ef5987d1115218a549ba0.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_d3cad5d7c8d8eea1f06db2ba.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00258{transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);}
.m26_c00258{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{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_c00258{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m18_c00258{transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198795,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{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_c00258{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.207103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207103,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m28_c00258{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m1a_c00258{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m22_c00258{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m2f_c00258{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00258{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m15_c00258{transform:matrix(0.334677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334677,0.000000,0.000000,0.250000,0,0);}
.m1e_c00258{transform:matrix(0.418919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418919,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);}
.m1f_c00258{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);}
.m20_c00258{transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.560345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560345,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls23_c00258{letter-spacing:-16.976198px;}
.ls32_c00258{letter-spacing:-15.528000px;}
.ls1f_c00258{letter-spacing:-14.594850px;}
.lse_c00258{letter-spacing:-12.920250px;}
.ls39_c00258{letter-spacing:-9.376875px;}
.ls1c_c00258{letter-spacing:-8.325900px;}
.ls19_c00258{letter-spacing:-8.175038px;}
.ls17_c00258{letter-spacing:-7.426125px;}
.ls18_c00258{letter-spacing:-6.685875px;}
.ls2c_c00258{letter-spacing:-6.409200px;}
.ls13_c00258{letter-spacing:-5.945625px;}
.ls11_c00258{letter-spacing:-5.779800px;}
.ls1a_c00258{letter-spacing:-5.613300px;}
.ls2f_c00258{letter-spacing:-5.402775px;}
.ls28_c00258{letter-spacing:-5.369625px;}
.ls12_c00258{letter-spacing:-5.296875px;}
.ls14_c00258{letter-spacing:-5.196713px;}
.lsf_c00258{letter-spacing:-4.456463px;}
.ls30_c00258{letter-spacing:-4.419855px;}
.ls22_c00258{letter-spacing:-4.226475px;}
.ls1b_c00258{letter-spacing:-3.862493px;}
.ls10_c00258{letter-spacing:-3.717000px;}
.ls2d_c00258{letter-spacing:-3.514875px;}
.ls16_c00258{letter-spacing:-3.148200px;}
.ls33_c00258{letter-spacing:-3.096000px;}
.ls35_c00258{letter-spacing:-2.999310px;}
.ls9_c00258{letter-spacing:-2.968875px;}
.lsd_c00258{letter-spacing:-2.913750px;}
.ls37_c00258{letter-spacing:-2.406450px;}
.ls8_c00258{letter-spacing:-2.229413px;}
.ls27_c00258{letter-spacing:-1.725172px;}
.ls3a_c00258{letter-spacing:-1.633733px;}
.ls38_c00258{letter-spacing:-1.622888px;}
.ls1d_c00258{letter-spacing:-1.548750px;}
.lsb_c00258{letter-spacing:-1.489163px;}
.lsc_c00258{letter-spacing:-1.460550px;}
.ls36_c00258{letter-spacing:-1.409648px;}
.lsa_c00258{letter-spacing:-0.740250px;}
.ls1e_c00258{letter-spacing:-0.682125px;}
.ls2b_c00258{letter-spacing:-0.670118px;}
.ls7_c00258{letter-spacing:0.000000px;}
.ls2a_c00258{letter-spacing:0.380625px;}
.ls26_c00258{letter-spacing:0.680850px;}
.ls15_c00258{letter-spacing:0.771728px;}
.ls1_c00258{letter-spacing:1.489163px;}
.ls6_c00258{letter-spacing:2.040000px;}
.ls0_c00258{letter-spacing:2.968875px;}
.ls29_c00258{letter-spacing:3.429000px;}
.ls3_c00258{letter-spacing:3.454335px;}
.ls2e_c00258{letter-spacing:3.502980px;}
.ls24_c00258{letter-spacing:4.405725px;}
.ls34_c00258{letter-spacing:5.079750px;}
.ls4_c00258{letter-spacing:6.216150px;}
.ls21_c00258{letter-spacing:7.281900px;}
.ls5_c00258{letter-spacing:7.595535px;}
.ls2_c00258{letter-spacing:8.287185px;}
.ls31_c00258{letter-spacing:11.731200px;}
.ls20_c00258{letter-spacing:12.428385px;}
.ls25_c00258{letter-spacing:17.524575px;}
.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;}
._5_c00258{margin-left:-32.294781px;}
._1d_c00258{margin-left:-25.594426px;}
._16_c00258{margin-left:-18.457172px;}
._15_c00258{margin-left:-7.709060px;}
._13_c00258{margin-left:-5.233250px;}
._14_c00258{margin-left:-4.196142px;}
._f_c00258{margin-left:-2.742134px;}
._e_c00258{margin-left:-1.055428px;}
._1b_c00258{width:1.015444px;}
._3_c00258{width:2.271878px;}
._2_c00258{width:4.254045px;}
._10_c00258{width:5.425608px;}
._4_c00258{width:6.916241px;}
._0_c00258{width:7.953631px;}
._1_c00258{width:9.781552px;}
._11_c00258{width:11.037823px;}
._b_c00258{width:12.053104px;}
._c_c00258{width:13.466057px;}
._6_c00258{width:15.227457px;}
._9_c00258{width:16.496580px;}
._d_c00258{width:17.758184px;}
._a_c00258{width:19.166546px;}
._7_c00258{width:21.383864px;}
._17_c00258{width:23.272973px;}
._8_c00258{width:24.502513px;}
._1c_c00258{width:25.914248px;}
._19_c00258{width:28.587454px;}
._1a_c00258{width:30.755694px;}
._18_c00258{width:32.751189px;}
._12_c00258{width:38.265561px;}
.fc0_c00258{color:transparent;}
.fs13_c00258{font-size:17.250000px;}
.fs17_c00258{font-size:21.750000px;}
.fs12_c00258{font-size:25.500000px;}
.fs16_c00258{font-size:26.250000px;}
.fs15_c00258{font-size:27.000000px;}
.fs14_c00258{font-size:27.750000px;}
.fs1f_c00258{font-size:35.250000px;}
.fsc_c00258{font-size:43.500000px;}
.fs20_c00258{font-size:45.750000px;}
.fsd_c00258{font-size:46.500000px;}
.fs1c_c00258{font-size:46.996200px;}
.fs1b_c00258{font-size:48.000000px;}
.fs1d_c00258{font-size:48.750000px;}
.fs1a_c00258{font-size:49.500000px;}
.fs1e_c00258{font-size:51.000000px;}
.fs19_c00258{font-size:52.500000px;}
.fs11_c00258{font-size:53.250000px;}
.fs21_c00258{font-size:56.250000px;}
.fsf_c00258{font-size:60.000000px;}
.fs10_c00258{font-size:62.250000px;}
.fs9_c00258{font-size:75.750000px;}
.fs5_c00258{font-size:76.500000px;}
.fs6_c00258{font-size:77.250000px;}
.fs18_c00258{font-size:78.000000px;}
.fs0_c00258{font-size:78.750000px;}
.fs7_c00258{font-size:79.500000px;}
.fs1_c00258{font-size:80.250000px;}
.fse_c00258{font-size:81.750000px;}
.fs2_c00258{font-size:82.500000px;}
.fs4_c00258{font-size:84.750000px;}
.fs3_c00258{font-size:85.500000px;}
.fsa_c00258{font-size:87.000000px;}
.fsb_c00258{font-size:88.500000px;}
.fs8_c00258{font-size:115.500000px;}
.y0_c00258{bottom:0.000000px;}
.y33_c00258{bottom:172.439715px;}
.y32_c00258{bottom:286.560285px;}
.y31_c00258{bottom:315.719100px;}
.y30_c00258{bottom:344.879535px;}
.y2f_c00258{bottom:345.599700px;}
.y2e_c00258{bottom:348.839535px;}
.y2c_c00258{bottom:374.760090px;}
.y2d_c00258{bottom:374.760135px;}
.y2a_c00258{bottom:404.999160px;}
.y2b_c00258{bottom:405.000000px;}
.y29_c00258{bottom:465.118785px;}
.y28_c00258{bottom:465.119070px;}
.y26_c00258{bottom:486.720135px;}
.y27_c00258{bottom:486.720150px;}
.y25_c00258{bottom:507.958920px;}
.y24_c00258{bottom:507.959730px;}
.y23_c00258{bottom:528.840135px;}
.y22_c00258{bottom:528.840390px;}
.y20_c00258{bottom:550.439235px;}
.y21_c00258{bottom:550.439670px;}
.y1f_c00258{bottom:571.680135px;}
.y1e_c00258{bottom:571.681065px;}
.y1d_c00258{bottom:592.559685px;}
.y1c_c00258{bottom:592.560075px;}
.y1b_c00258{bottom:614.159370px;}
.y1a_c00258{bottom:614.159805px;}
.y19_c00258{bottom:635.759085px;}
.y18_c00258{bottom:635.761065px;}
.y17_c00258{bottom:656.641485px;}
.y16_c00258{bottom:678.240765px;}
.y15_c00258{bottom:699.119385px;}
.y14_c00258{bottom:699.119820px;}
.y12_c00258{bottom:720.718695px;}
.y13_c00258{bottom:720.719100px;}
.y11_c00258{bottom:780.480240px;}
.yf_c00258{bottom:810.720105px;}
.y10_c00258{bottom:810.720150px;}
.yd_c00258{bottom:840.959205px;}
.ye_c00258{bottom:840.960015px;}
.yc_c00258{bottom:870.838920px;}
.yb_c00258{bottom:900.360255px;}
.ya_c00258{bottom:900.360450px;}
.y9_c00258{bottom:929.879970px;}
.y8_c00258{bottom:929.880210px;}
.y7_c00258{bottom:960.120120px;}
.y6_c00258{bottom:989.639655px;}
.y5_c00258{bottom:989.640465px;}
.y4_c00258{bottom:1020.238770px;}
.y2_c00258{bottom:1079.638620px;}
.y3_c00258{bottom:1079.639100px;}
.y1_c00258{bottom:1140.118740px;}
.h16_c00258{height:17.991211px;}
.h1a_c00258{height:22.684570px;}
.h19_c00258{height:25.762939px;}
.h18_c00258{height:26.499023px;}
.h15_c00258{height:26.595703px;}
.h17_c00258{height:27.235107px;}
.h24_c00258{height:34.836914px;}
.hd_c00258{height:45.369141px;}
.h1f_c00258{height:47.437500px;}
.h25_c00258{height:47.715820px;}
.h21_c00258{height:48.178711px;}
.h1e_c00258{height:48.375000px;}
.he_c00258{height:48.498047px;}
.h1d_c00258{height:48.919922px;}
.h20_c00258{height:49.015568px;}
.h23_c00258{height:49.130859px;}
.h22_c00258{height:50.402344px;}
.h1c_c00258{height:51.884766px;}
.h14_c00258{height:55.538086px;}
.h26_c00258{height:55.590820px;}
.h10_c00258{height:59.296875px;}
.h11_c00258{height:61.520508px;}
.h7_c00258{height:75.816650px;}
.ha_c00258{height:76.341797px;}
.h1b_c00258{height:76.552734px;}
.h6_c00258{height:77.097656px;}
.h1_c00258{height:77.288818px;}
.h2_c00258{height:78.760986px;}
.h8_c00258{height:80.121094px;}
.hf_c00258{height:80.791992px;}
.h13_c00258{height:80.876953px;}
.h3_c00258{height:80.969238px;}
.h12_c00258{height:81.533203px;}
.h5_c00258{height:83.177490px;}
.h4_c00258{height:84.498047px;}
.hb_c00258{height:85.980469px;}
.hc_c00258{height:87.462891px;}
.h9_c00258{height:120.462891px;}
.h0_c00258{height:1263.000000px;}
.w0_c00258{width:892.500000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:133.559685px;}
.x31_c00258{left:135.000000px;}
.x3c_c00258{left:149.759100px;}
.x42_c00258{left:150.838515px;}
.x5_c00258{left:162.718500px;}
.x43_c00258{left:166.319250px;}
.x9_c00258{left:173.159850px;}
.x44_c00258{left:183.238785px;}
.xa_c00258{left:188.279850px;}
.x12_c00258{left:189.718230px;}
.x45_c00258{left:202.679700px;}
.x39_c00258{left:208.798515px;}
.x46_c00258{left:228.598500px;}
.x17_c00258{left:243.000000px;}
.x10_c00258{left:249.118785px;}
.x3a_c00258{left:269.639100px;}
.x18_c00258{left:271.079385px;}
.x15_c00258{left:281.519100px;}
.x16_c00258{left:294.839535px;}
.x3b_c00258{left:297.718500px;}
.x11_c00258{left:303.118785px;}
.x3d_c00258{left:317.879535px;}
.x47_c00258{left:330.118785px;}
.x29_c00258{left:338.759100px;}
.x48_c00258{left:339.838515px;}
.x1b_c00258{left:343.439235px;}
.x3e_c00258{left:344.879535px;}
.xb_c00258{left:352.799535px;}
.x1c_c00258{left:357.118785px;}
.x49_c00258{left:358.559100px;}
.x19_c00258{left:360.719535px;}
.x2f_c00258{left:361.798950px;}
.xc_c00258{left:373.319850px;}
.x1a_c00258{left:374.758500px;}
.x23_c00258{left:377.279850px;}
.x30_c00258{left:382.319235px;}
.x24_c00258{left:390.598530px;}
.x2a_c00258{left:395.998950px;}
.x4a_c00258{left:397.080000px;}
.x4b_c00258{left:421.919535px;}
.x32_c00258{left:453.958920px;}
.x27_c00258{left:457.559685px;}
.x28_c00258{left:471.598530px;}
.xd_c00258{left:479.518620px;}
.x4c_c00258{left:483.839535px;}
.x2d_c00258{left:488.158770px;}
.x2b_c00258{left:494.999400px;}
.x6_c00258{left:496.078770px;}
.x2e_c00258{left:502.199385px;}
.x1d_c00258{left:510.839535px;}
.x7_c00258{left:514.079400px;}
.x1e_c00258{left:527.759085px;}
.x33_c00258{left:533.518620px;}
.x8_c00258{left:537.839535px;}
.xe_c00258{left:562.319820px;}
.x25_c00258{left:574.918350px;}
.x3f_c00258{left:578.159820px;}
.xf_c00258{left:580.318770px;}
.x2c_c00258{left:594.359250px;}
.x34_c00258{left:595.799520px;}
.x21_c00258{left:608.399820px;}
.x35_c00258{left:609.479235px;}
.x26_c00258{left:619.198785px;}
.x22_c00258{left:626.398635px;}
.x13_c00258{left:628.918350px;}
.x36_c00258{left:637.199385px;}
.x40_c00258{left:638.998950px;}
.x14_c00258{left:644.399235px;}
.x41_c00258{left:662.399820px;}
.x1f_c00258{left:679.319235px;}
.x37_c00258{left:690.119985px;}
.x20_c00258{left:694.439250px;}
.x2_c00258{left:700.198785px;}
.x3_c00258{left:724.679070px;}
.x4_c00258{left:739.798920px;}
.x38_c00258{left:759.958335px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls23_c00258{letter-spacing:-15.089953pt;}
.ls32_c00258{letter-spacing:-13.802667pt;}
.ls1f_c00258{letter-spacing:-12.973200pt;}
.lse_c00258{letter-spacing:-11.484667pt;}
.ls39_c00258{letter-spacing:-8.335000pt;}
.ls1c_c00258{letter-spacing:-7.400800pt;}
.ls19_c00258{letter-spacing:-7.266700pt;}
.ls17_c00258{letter-spacing:-6.601000pt;}
.ls18_c00258{letter-spacing:-5.943000pt;}
.ls2c_c00258{letter-spacing:-5.697067pt;}
.ls13_c00258{letter-spacing:-5.285000pt;}
.ls11_c00258{letter-spacing:-5.137600pt;}
.ls1a_c00258{letter-spacing:-4.989600pt;}
.ls2f_c00258{letter-spacing:-4.802467pt;}
.ls28_c00258{letter-spacing:-4.773000pt;}
.ls12_c00258{letter-spacing:-4.708333pt;}
.ls14_c00258{letter-spacing:-4.619300pt;}
.lsf_c00258{letter-spacing:-3.961300pt;}
.ls30_c00258{letter-spacing:-3.928760pt;}
.ls22_c00258{letter-spacing:-3.756867pt;}
.ls1b_c00258{letter-spacing:-3.433327pt;}
.ls10_c00258{letter-spacing:-3.304000pt;}
.ls2d_c00258{letter-spacing:-3.124333pt;}
.ls16_c00258{letter-spacing:-2.798400pt;}
.ls33_c00258{letter-spacing:-2.752000pt;}
.ls35_c00258{letter-spacing:-2.666053pt;}
.ls9_c00258{letter-spacing:-2.639000pt;}
.lsd_c00258{letter-spacing:-2.590000pt;}
.ls37_c00258{letter-spacing:-2.139067pt;}
.ls8_c00258{letter-spacing:-1.981700pt;}
.ls27_c00258{letter-spacing:-1.533487pt;}
.ls3a_c00258{letter-spacing:-1.452207pt;}
.ls38_c00258{letter-spacing:-1.442567pt;}
.ls1d_c00258{letter-spacing:-1.376667pt;}
.lsb_c00258{letter-spacing:-1.323700pt;}
.lsc_c00258{letter-spacing:-1.298267pt;}
.ls36_c00258{letter-spacing:-1.253020pt;}
.lsa_c00258{letter-spacing:-0.658000pt;}
.ls1e_c00258{letter-spacing:-0.606333pt;}
.ls2b_c00258{letter-spacing:-0.595660pt;}
.ls7_c00258{letter-spacing:0.000000pt;}
.ls2a_c00258{letter-spacing:0.338333pt;}
.ls26_c00258{letter-spacing:0.605200pt;}
.ls15_c00258{letter-spacing:0.685980pt;}
.ls1_c00258{letter-spacing:1.323700pt;}
.ls6_c00258{letter-spacing:1.813333pt;}
.ls0_c00258{letter-spacing:2.639000pt;}
.ls29_c00258{letter-spacing:3.048000pt;}
.ls3_c00258{letter-spacing:3.070520pt;}
.ls2e_c00258{letter-spacing:3.113760pt;}
.ls24_c00258{letter-spacing:3.916200pt;}
.ls34_c00258{letter-spacing:4.515333pt;}
.ls4_c00258{letter-spacing:5.525467pt;}
.ls21_c00258{letter-spacing:6.472800pt;}
.ls5_c00258{letter-spacing:6.751587pt;}
.ls2_c00258{letter-spacing:7.366387pt;}
.ls31_c00258{letter-spacing:10.427733pt;}
.ls20_c00258{letter-spacing:11.047453pt;}
.ls25_c00258{letter-spacing:15.577400pt;}
.ws0_c00258{word-spacing:0.000000pt;}
._5_c00258{margin-left:-28.706472pt;}
._1d_c00258{margin-left:-22.750601pt;}
._16_c00258{margin-left:-16.406375pt;}
._15_c00258{margin-left:-6.852498pt;}
._13_c00258{margin-left:-4.651777pt;}
._14_c00258{margin-left:-3.729904pt;}
._f_c00258{margin-left:-2.437453pt;}
._e_c00258{margin-left:-0.938158pt;}
._1b_c00258{width:0.902617pt;}
._3_c00258{width:2.019447pt;}
._2_c00258{width:3.781374pt;}
._10_c00258{width:4.822762pt;}
._4_c00258{width:6.147770pt;}
._0_c00258{width:7.069894pt;}
._1_c00258{width:8.694713pt;}
._11_c00258{width:9.811398pt;}
._b_c00258{width:10.713870pt;}
._c_c00258{width:11.969828pt;}
._6_c00258{width:13.535517pt;}
._9_c00258{width:14.663626pt;}
._d_c00258{width:15.785053pt;}
._a_c00258{width:17.036930pt;}
._7_c00258{width:19.007879pt;}
._17_c00258{width:20.687087pt;}
._8_c00258{width:21.780011pt;}
._1c_c00258{width:23.034887pt;}
._19_c00258{width:25.411070pt;}
._1a_c00258{width:27.338394pt;}
._18_c00258{width:29.112168pt;}
._12_c00258{width:34.013832pt;}
.fs13_c00258{font-size:15.333333pt;}
.fs17_c00258{font-size:19.333333pt;}
.fs12_c00258{font-size:22.666667pt;}
.fs16_c00258{font-size:23.333333pt;}
.fs15_c00258{font-size:24.000000pt;}
.fs14_c00258{font-size:24.666667pt;}
.fs1f_c00258{font-size:31.333333pt;}
.fsc_c00258{font-size:38.666667pt;}
.fs20_c00258{font-size:40.666667pt;}
.fsd_c00258{font-size:41.333333pt;}
.fs1c_c00258{font-size:41.774400pt;}
.fs1b_c00258{font-size:42.666667pt;}
.fs1d_c00258{font-size:43.333333pt;}
.fs1a_c00258{font-size:44.000000pt;}
.fs1e_c00258{font-size:45.333333pt;}
.fs19_c00258{font-size:46.666667pt;}
.fs11_c00258{font-size:47.333333pt;}
.fs21_c00258{font-size:50.000000pt;}
.fsf_c00258{font-size:53.333333pt;}
.fs10_c00258{font-size:55.333333pt;}
.fs9_c00258{font-size:67.333333pt;}
.fs5_c00258{font-size:68.000000pt;}
.fs6_c00258{font-size:68.666667pt;}
.fs18_c00258{font-size:69.333333pt;}
.fs0_c00258{font-size:70.000000pt;}
.fs7_c00258{font-size:70.666667pt;}
.fs1_c00258{font-size:71.333333pt;}
.fse_c00258{font-size:72.666667pt;}
.fs2_c00258{font-size:73.333333pt;}
.fs4_c00258{font-size:75.333333pt;}
.fs3_c00258{font-size:76.000000pt;}
.fsa_c00258{font-size:77.333333pt;}
.fsb_c00258{font-size:78.666667pt;}
.fs8_c00258{font-size:102.666667pt;}
.y0_c00258{bottom:0.000000pt;}
.y33_c00258{bottom:153.279747pt;}
.y32_c00258{bottom:254.720253pt;}
.y31_c00258{bottom:280.639200pt;}
.y30_c00258{bottom:306.559587pt;}
.y2f_c00258{bottom:307.199733pt;}
.y2e_c00258{bottom:310.079587pt;}
.y2c_c00258{bottom:333.120080pt;}
.y2d_c00258{bottom:333.120120pt;}
.y2a_c00258{bottom:359.999253pt;}
.y2b_c00258{bottom:360.000000pt;}
.y29_c00258{bottom:413.438920pt;}
.y28_c00258{bottom:413.439173pt;}
.y26_c00258{bottom:432.640120pt;}
.y27_c00258{bottom:432.640133pt;}
.y25_c00258{bottom:451.519040pt;}
.y24_c00258{bottom:451.519760pt;}
.y23_c00258{bottom:470.080120pt;}
.y22_c00258{bottom:470.080347pt;}
.y20_c00258{bottom:489.279320pt;}
.y21_c00258{bottom:489.279707pt;}
.y1f_c00258{bottom:508.160120pt;}
.y1e_c00258{bottom:508.160947pt;}
.y1d_c00258{bottom:526.719720pt;}
.y1c_c00258{bottom:526.720067pt;}
.y1b_c00258{bottom:545.919440pt;}
.y1a_c00258{bottom:545.919827pt;}
.y19_c00258{bottom:565.119187pt;}
.y18_c00258{bottom:565.120947pt;}
.y17_c00258{bottom:583.681320pt;}
.y16_c00258{bottom:602.880680pt;}
.y15_c00258{bottom:621.439453pt;}
.y14_c00258{bottom:621.439840pt;}
.y12_c00258{bottom:640.638840pt;}
.y13_c00258{bottom:640.639200pt;}
.y11_c00258{bottom:693.760213pt;}
.yf_c00258{bottom:720.640093pt;}
.y10_c00258{bottom:720.640133pt;}
.yd_c00258{bottom:747.519293pt;}
.ye_c00258{bottom:747.520013pt;}
.yc_c00258{bottom:774.079040pt;}
.yb_c00258{bottom:800.320227pt;}
.ya_c00258{bottom:800.320400pt;}
.y9_c00258{bottom:826.559973pt;}
.y8_c00258{bottom:826.560187pt;}
.y7_c00258{bottom:853.440107pt;}
.y6_c00258{bottom:879.679693pt;}
.y5_c00258{bottom:879.680413pt;}
.y4_c00258{bottom:906.878907pt;}
.y2_c00258{bottom:959.678773pt;}
.y3_c00258{bottom:959.679200pt;}
.y1_c00258{bottom:1013.438880pt;}
.h16_c00258{height:15.992187pt;}
.h1a_c00258{height:20.164062pt;}
.h19_c00258{height:22.900391pt;}
.h18_c00258{height:23.554688pt;}
.h15_c00258{height:23.640625pt;}
.h17_c00258{height:24.208984pt;}
.h24_c00258{height:30.966146pt;}
.hd_c00258{height:40.328125pt;}
.h1f_c00258{height:42.166667pt;}
.h25_c00258{height:42.414062pt;}
.h21_c00258{height:42.825521pt;}
.h1e_c00258{height:43.000000pt;}
.he_c00258{height:43.109375pt;}
.h1d_c00258{height:43.484375pt;}
.h20_c00258{height:43.569394pt;}
.h23_c00258{height:43.671875pt;}
.h22_c00258{height:44.802083pt;}
.h1c_c00258{height:46.119792pt;}
.h14_c00258{height:49.367188pt;}
.h26_c00258{height:49.414063pt;}
.h10_c00258{height:52.708333pt;}
.h11_c00258{height:54.684896pt;}
.h7_c00258{height:67.392578pt;}
.ha_c00258{height:67.859375pt;}
.h1b_c00258{height:68.046875pt;}
.h6_c00258{height:68.531250pt;}
.h1_c00258{height:68.701172pt;}
.h2_c00258{height:70.009766pt;}
.h8_c00258{height:71.218750pt;}
.hf_c00258{height:71.815104pt;}
.h13_c00258{height:71.890625pt;}
.h3_c00258{height:71.972656pt;}
.h12_c00258{height:72.473958pt;}
.h5_c00258{height:73.935547pt;}
.h4_c00258{height:75.109375pt;}
.hb_c00258{height:76.427083pt;}
.hc_c00258{height:77.744792pt;}
.h9_c00258{height:107.078125pt;}
.h0_c00258{height:1122.666667pt;}
.w0_c00258{width:793.333333pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:118.719720pt;}
.x31_c00258{left:120.000000pt;}
.x3c_c00258{left:133.119200pt;}
.x42_c00258{left:134.078680pt;}
.x5_c00258{left:144.638667pt;}
.x43_c00258{left:147.839333pt;}
.x9_c00258{left:153.919867pt;}
.x44_c00258{left:162.878920pt;}
.xa_c00258{left:167.359867pt;}
.x12_c00258{left:168.638427pt;}
.x45_c00258{left:180.159733pt;}
.x39_c00258{left:185.598680pt;}
.x46_c00258{left:203.198667pt;}
.x17_c00258{left:216.000000pt;}
.x10_c00258{left:221.438920pt;}
.x3a_c00258{left:239.679200pt;}
.x18_c00258{left:240.959453pt;}
.x15_c00258{left:250.239200pt;}
.x16_c00258{left:262.079587pt;}
.x3b_c00258{left:264.638667pt;}
.x11_c00258{left:269.438920pt;}
.x3d_c00258{left:282.559587pt;}
.x47_c00258{left:293.438920pt;}
.x29_c00258{left:301.119200pt;}
.x48_c00258{left:302.078680pt;}
.x1b_c00258{left:305.279320pt;}
.x3e_c00258{left:306.559587pt;}
.xb_c00258{left:313.599587pt;}
.x1c_c00258{left:317.438920pt;}
.x49_c00258{left:318.719200pt;}
.x19_c00258{left:320.639587pt;}
.x2f_c00258{left:321.599067pt;}
.xc_c00258{left:331.839867pt;}
.x1a_c00258{left:333.118667pt;}
.x23_c00258{left:335.359867pt;}
.x30_c00258{left:339.839320pt;}
.x24_c00258{left:347.198693pt;}
.x2a_c00258{left:351.999067pt;}
.x4a_c00258{left:352.960000pt;}
.x4b_c00258{left:375.039587pt;}
.x32_c00258{left:403.519040pt;}
.x27_c00258{left:406.719720pt;}
.x28_c00258{left:419.198693pt;}
.xd_c00258{left:426.238773pt;}
.x4c_c00258{left:430.079587pt;}
.x2d_c00258{left:433.918907pt;}
.x2b_c00258{left:439.999467pt;}
.x6_c00258{left:440.958907pt;}
.x2e_c00258{left:446.399453pt;}
.x1d_c00258{left:454.079587pt;}
.x7_c00258{left:456.959467pt;}
.x1e_c00258{left:469.119187pt;}
.x33_c00258{left:474.238773pt;}
.x8_c00258{left:478.079587pt;}
.xe_c00258{left:499.839840pt;}
.x25_c00258{left:511.038533pt;}
.x3f_c00258{left:513.919840pt;}
.xf_c00258{left:515.838907pt;}
.x2c_c00258{left:528.319333pt;}
.x34_c00258{left:529.599573pt;}
.x21_c00258{left:540.799840pt;}
.x35_c00258{left:541.759320pt;}
.x26_c00258{left:550.398920pt;}
.x22_c00258{left:556.798787pt;}
.x13_c00258{left:559.038533pt;}
.x36_c00258{left:566.399453pt;}
.x40_c00258{left:567.999067pt;}
.x14_c00258{left:572.799320pt;}
.x41_c00258{left:588.799840pt;}
.x1f_c00258{left:603.839320pt;}
.x37_c00258{left:613.439987pt;}
.x20_c00258{left:617.279333pt;}
.x2_c00258{left:622.398920pt;}
.x3_c00258{left:644.159173pt;}
.x4_c00258{left:657.599040pt;}
.x38_c00258{left:675.518520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f143e374ebd1577ad0aaeab3.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_a778322688630444bc66357f.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;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_87dc484a0b732e7c70f46ffc.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_7f33f909e8d718683964af78.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00259{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls1f_c00259{letter-spacing:-10.599750px;}
.ls1c_c00259{letter-spacing:-9.273000px;}
.ls1b_c00259{letter-spacing:-9.087750px;}
.ls15_c00259{letter-spacing:-7.356083px;}
.ls11_c00259{letter-spacing:-6.924225px;}
.ls1e_c00259{letter-spacing:-6.811875px;}
.ls20_c00259{letter-spacing:-6.476850px;}
.ls1a_c00259{letter-spacing:-6.213900px;}
.ls19_c00259{letter-spacing:-6.212700px;}
.lsc_c00259{letter-spacing:-6.055875px;}
.lsb_c00259{letter-spacing:-6.000300px;}
.ls12_c00259{letter-spacing:-5.552775px;}
.ls1d_c00259{letter-spacing:-5.476380px;}
.lsa_c00259{letter-spacing:-5.300663px;}
.lsf_c00259{letter-spacing:-5.044118px;}
.lsd_c00259{letter-spacing:-4.543088px;}
.ls10_c00259{letter-spacing:-3.894000px;}
.ls8_c00259{letter-spacing:-3.787875px;}
.ls16_c00259{letter-spacing:-3.118500px;}
.ls9_c00259{letter-spacing:-3.031875px;}
.ls17_c00259{letter-spacing:-2.385000px;}
.ls7_c00259{letter-spacing:-2.267213px;}
.lse_c00259{letter-spacing:-2.190083px;}
.ls14_c00259{letter-spacing:-1.590000px;}
.ls3_c00259{letter-spacing:-1.512000px;}
.ls6_c00259{letter-spacing:-0.756000px;}
.ls5_c00259{letter-spacing:0.000000px;}
.ls0_c00259{letter-spacing:0.756000px;}
.ls18_c00259{letter-spacing:1.334580px;}
.ls4_c00259{letter-spacing:2.267213px;}
.ls13_c00259{letter-spacing:3.031875px;}
.ls2_c00259{letter-spacing:4.543088px;}
.ls1_c00259{letter-spacing:9.087750px;}
.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;}
._1b_c00259{margin-left:-39.732060px;}
._23_c00259{margin-left:-36.266932px;}
._1a_c00259{margin-left:-18.283206px;}
._1c_c00259{margin-left:-10.720359px;}
._22_c00259{margin-left:-9.053282px;}
._1e_c00259{margin-left:-7.586048px;}
._1_c00259{margin-left:-6.166064px;}
._2_c00259{margin-left:-3.976936px;}
._15_c00259{margin-left:-2.583242px;}
._0_c00259{margin-left:-1.063670px;}
._a_c00259{width:1.024598px;}
._3_c00259{width:2.070640px;}
._14_c00259{width:3.500377px;}
._7_c00259{width:4.657578px;}
._4_c00259{width:5.976519px;}
._5_c00259{width:7.876393px;}
._8_c00259{width:9.607924px;}
._6_c00259{width:11.421234px;}
._13_c00259{width:13.294636px;}
._12_c00259{width:14.517805px;}
._9_c00259{width:15.596195px;}
._18_c00259{width:16.631758px;}
._f_c00259{width:17.923500px;}
._17_c00259{width:19.524912px;}
._c_c00259{width:20.797633px;}
._10_c00259{width:22.557271px;}
._11_c00259{width:23.633299px;}
._e_c00259{width:24.673163px;}
._d_c00259{width:25.712117px;}
._20_c00259{width:27.468000px;}
._19_c00259{width:29.340736px;}
._16_c00259{width:31.597953px;}
._21_c00259{width:33.777753px;}
._1f_c00259{width:34.926049px;}
._1d_c00259{width:39.637783px;}
._b_c00259{width:45.846433px;}
.fc0_c00259{color:transparent;}
.fs7_c00259{font-size:75.750000px;}
.fsc_c00259{font-size:76.500000px;}
.fs8_c00259{font-size:78.000000px;}
.fs0_c00259{font-size:78.750000px;}
.fs6_c00259{font-size:79.500000px;}
.fs3_c00259{font-size:81.750000px;}
.fs4_c00259{font-size:82.500000px;}
.fs1_c00259{font-size:83.250000px;}
.fsb_c00259{font-size:84.000000px;}
.fs2_c00259{font-size:84.750000px;}
.fsa_c00259{font-size:87.750000px;}
.fs9_c00259{font-size:96.000000px;}
.fs5_c00259{font-size:115.500000px;}
.y0_c00259{bottom:0.000000px;}
.y31_c00259{bottom:249.479685px;}
.y30_c00259{bottom:249.479970px;}
.y2f_c00259{bottom:270.720885px;}
.y2e_c00259{bottom:291.599490px;}
.y2d_c00259{bottom:312.840405px;}
.y2c_c00259{bottom:334.439685px;}
.y2b_c00259{bottom:394.198980px;}
.y2a_c00259{bottom:453.960525px;}
.y29_c00259{bottom:484.200435px;}
.y28_c00259{bottom:484.200630px;}
.y26_c00259{bottom:513.719715px;}
.y27_c00259{bottom:513.720150px;}
.y25_c00259{bottom:574.199850px;}
.y24_c00259{bottom:574.200240px;}
.y23_c00259{bottom:595.799520px;}
.y22_c00259{bottom:595.800015px;}
.y21_c00259{bottom:617.040915px;}
.y1f_c00259{bottom:637.919445px;}
.y20_c00259{bottom:637.919535px;}
.y1e_c00259{bottom:658.439670px;}
.y1d_c00259{bottom:658.440360px;}
.y1c_c00259{bottom:701.640750px;}
.y1b_c00259{bottom:701.641140px;}
.y1a_c00259{bottom:723.240420px;}
.y19_c00259{bottom:744.480885px;}
.y18_c00259{bottom:744.481140px;}
.y17_c00259{bottom:766.080420px;}
.y16_c00259{bottom:808.921485px;}
.y14_c00259{bottom:829.799715px;}
.y15_c00259{bottom:829.800105px;}
.y13_c00259{bottom:851.040615px;}
.y12_c00259{bottom:851.040825px;}
.y11_c00259{bottom:872.640105px;}
.y10_c00259{bottom:872.640585px;}
.yf_c00259{bottom:894.239865px;}
.ye_c00259{bottom:894.240255px;}
.yc_c00259{bottom:915.838215px;}
.yd_c00259{bottom:915.839535px;}
.yb_c00259{bottom:937.799490px;}
.ya_c00259{bottom:959.040420px;}
.y9_c00259{bottom:980.279205px;}
.y8_c00259{bottom:980.279550px;}
.y7_c00259{bottom:1001.520465px;}
.y5_c00259{bottom:1022.400165px;}
.y6_c00259{bottom:1022.400885px;}
.y4_c00259{bottom:1082.519805px;}
.y2_c00259{bottom:1112.039295px;}
.y3_c00259{bottom:1112.039340px;}
.y1_c00259{bottom:1142.279205px;}
.hb_c00259{height:74.862305px;}
.h12_c00259{height:75.080566px;}
.hd_c00259{height:76.552734px;}
.h1_c00259{height:77.288818px;}
.hc_c00259{height:79.365234px;}
.ha_c00259{height:80.121094px;}
.h4_c00259{height:80.233154px;}
.h6_c00259{height:80.969238px;}
.h10_c00259{height:81.533203px;}
.h2_c00259{height:81.705322px;}
.h8_c00259{height:82.133789px;}
.h7_c00259{height:82.274414px;}
.h3_c00259{height:83.177490px;}
.h5_c00259{height:83.900391px;}
.hf_c00259{height:86.121826px;}
.h11_c00259{height:87.609375px;}
.he_c00259{height:100.125000px;}
.h9_c00259{height:120.462891px;}
.h0_c00259{height:1263.000000px;}
.w0_c00259{width:892.500000px;}
.x0_c00259{left:0.000000px;}
.x4_c00259{left:144.001530px;}
.x1_c00259{left:145.078815px;}
.x6_c00259{left:146.158815px;}
.x29_c00259{left:197.639190px;}
.xa_c00259{left:198.717825px;}
.x7_c00259{left:199.797495px;}
.x16_c00259{left:207.719100px;}
.x1d_c00259{left:218.878950px;}
.x30_c00259{left:220.678500px;}
.x31_c00259{left:230.038950px;}
.x2d_c00259{left:261.719100px;}
.x21_c00259{left:267.839535px;}
.x17_c00259{left:272.158785px;}
.x11_c00259{left:273.958350px;}
.x18_c00259{left:277.918350px;}
.x22_c00259{left:283.318800px;}
.x2_c00259{left:284.399850px;}
.x5_c00259{left:287.278800px;}
.x19_c00259{left:293.758500px;}
.x1f_c00259{left:297.718500px;}
.x3_c00259{left:301.678500px;}
.x33_c00259{left:313.558635px;}
.x23_c00259{left:319.319850px;}
.x14_c00259{left:323.279850px;}
.x34_c00259{left:327.239850px;}
.x20_c00259{left:328.678500px;}
.x24_c00259{left:338.759100px;}
.x2c_c00259{left:354.958350px;}
.x8_c00259{left:362.878350px;}
.xf_c00259{left:370.080000px;}
.x35_c00259{left:384.838950px;}
.x9_c00259{left:387.358665px;}
.x12_c00259{left:389.519070px;}
.x10_c00259{left:418.679670px;}
.x13_c00259{left:425.159415px;}
.xd_c00259{left:494.999400px;}
.x32_c00259{left:499.679670px;}
.xe_c00259{left:513.000000px;}
.x2a_c00259{left:542.519670px;}
.x15_c00259{left:554.759085px;}
.x2b_c00259{left:573.118785px;}
.x36_c00259{left:583.199385px;}
.x2e_c00259{left:605.159820px;}
.x37_c00259{left:614.159370px;}
.x1a_c00259{left:619.559685px;}
.x2f_c00259{left:621.000000px;}
.x27_c00259{left:629.999400px;}
.x28_c00259{left:655.918350px;}
.x1e_c00259{left:683.279250px;}
.x1b_c00259{left:686.878320px;}
.x25_c00259{left:705.239820px;}
.x26_c00259{left:718.919535px;}
.x1c_c00259{left:723.958920px;}
.xb_c00259{left:758.158770px;}
.xc_c00259{left:779.399235px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls1f_c00259{letter-spacing:-9.422000pt;}
.ls1c_c00259{letter-spacing:-8.242667pt;}
.ls1b_c00259{letter-spacing:-8.078000pt;}
.ls15_c00259{letter-spacing:-6.538740pt;}
.ls11_c00259{letter-spacing:-6.154867pt;}
.ls1e_c00259{letter-spacing:-6.055000pt;}
.ls20_c00259{letter-spacing:-5.757200pt;}
.ls1a_c00259{letter-spacing:-5.523467pt;}
.ls19_c00259{letter-spacing:-5.522400pt;}
.lsc_c00259{letter-spacing:-5.383000pt;}
.lsb_c00259{letter-spacing:-5.333600pt;}
.ls12_c00259{letter-spacing:-4.935800pt;}
.ls1d_c00259{letter-spacing:-4.867893pt;}
.lsa_c00259{letter-spacing:-4.711700pt;}
.lsf_c00259{letter-spacing:-4.483660pt;}
.lsd_c00259{letter-spacing:-4.038300pt;}
.ls10_c00259{letter-spacing:-3.461333pt;}
.ls8_c00259{letter-spacing:-3.367000pt;}
.ls16_c00259{letter-spacing:-2.772000pt;}
.ls9_c00259{letter-spacing:-2.695000pt;}
.ls17_c00259{letter-spacing:-2.120000pt;}
.ls7_c00259{letter-spacing:-2.015300pt;}
.lse_c00259{letter-spacing:-1.946740pt;}
.ls14_c00259{letter-spacing:-1.413333pt;}
.ls3_c00259{letter-spacing:-1.344000pt;}
.ls6_c00259{letter-spacing:-0.672000pt;}
.ls5_c00259{letter-spacing:0.000000pt;}
.ls0_c00259{letter-spacing:0.672000pt;}
.ls18_c00259{letter-spacing:1.186293pt;}
.ls4_c00259{letter-spacing:2.015300pt;}
.ls13_c00259{letter-spacing:2.695000pt;}
.ls2_c00259{letter-spacing:4.038300pt;}
.ls1_c00259{letter-spacing:8.078000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
._1b_c00259{margin-left:-35.317387pt;}
._23_c00259{margin-left:-32.237272pt;}
._1a_c00259{margin-left:-16.251738pt;}
._1c_c00259{margin-left:-9.529208pt;}
._22_c00259{margin-left:-8.047362pt;}
._1e_c00259{margin-left:-6.743154pt;}
._1_c00259{margin-left:-5.480946pt;}
._2_c00259{margin-left:-3.535054pt;}
._15_c00259{margin-left:-2.296215pt;}
._0_c00259{margin-left:-0.945485pt;}
._a_c00259{width:0.910754pt;}
._3_c00259{width:1.840569pt;}
._14_c00259{width:3.111446pt;}
._7_c00259{width:4.140069pt;}
._4_c00259{width:5.312462pt;}
._5_c00259{width:7.001238pt;}
._8_c00259{width:8.540377pt;}
._6_c00259{width:10.152208pt;}
._13_c00259{width:11.817454pt;}
._12_c00259{width:12.904715pt;}
._9_c00259{width:13.863285pt;}
._18_c00259{width:14.783785pt;}
._f_c00259{width:15.932000pt;}
._17_c00259{width:17.355477pt;}
._c_c00259{width:18.486785pt;}
._10_c00259{width:20.050908pt;}
._11_c00259{width:21.007377pt;}
._e_c00259{width:21.931700pt;}
._d_c00259{width:22.855215pt;}
._20_c00259{width:24.416000pt;}
._19_c00259{width:26.080654pt;}
._16_c00259{width:28.087069pt;}
._21_c00259{width:30.024669pt;}
._1f_c00259{width:31.045377pt;}
._1d_c00259{width:35.233585pt;}
._b_c00259{width:40.752385pt;}
.fs7_c00259{font-size:67.333333pt;}
.fsc_c00259{font-size:68.000000pt;}
.fs8_c00259{font-size:69.333333pt;}
.fs0_c00259{font-size:70.000000pt;}
.fs6_c00259{font-size:70.666667pt;}
.fs3_c00259{font-size:72.666667pt;}
.fs4_c00259{font-size:73.333333pt;}
.fs1_c00259{font-size:74.000000pt;}
.fsb_c00259{font-size:74.666667pt;}
.fs2_c00259{font-size:75.333333pt;}
.fsa_c00259{font-size:78.000000pt;}
.fs9_c00259{font-size:85.333333pt;}
.fs5_c00259{font-size:102.666667pt;}
.y0_c00259{bottom:0.000000pt;}
.y31_c00259{bottom:221.759720pt;}
.y30_c00259{bottom:221.759973pt;}
.y2f_c00259{bottom:240.640787pt;}
.y2e_c00259{bottom:259.199547pt;}
.y2d_c00259{bottom:278.080360pt;}
.y2c_c00259{bottom:297.279720pt;}
.y2b_c00259{bottom:350.399093pt;}
.y2a_c00259{bottom:403.520467pt;}
.y29_c00259{bottom:430.400387pt;}
.y28_c00259{bottom:430.400560pt;}
.y26_c00259{bottom:456.639747pt;}
.y27_c00259{bottom:456.640133pt;}
.y25_c00259{bottom:510.399867pt;}
.y24_c00259{bottom:510.400213pt;}
.y23_c00259{bottom:529.599573pt;}
.y22_c00259{bottom:529.600013pt;}
.y21_c00259{bottom:548.480813pt;}
.y1f_c00259{bottom:567.039507pt;}
.y20_c00259{bottom:567.039587pt;}
.y1e_c00259{bottom:585.279707pt;}
.y1d_c00259{bottom:585.280320pt;}
.y1c_c00259{bottom:623.680667pt;}
.y1b_c00259{bottom:623.681013pt;}
.y1a_c00259{bottom:642.880373pt;}
.y19_c00259{bottom:661.760787pt;}
.y18_c00259{bottom:661.761013pt;}
.y17_c00259{bottom:680.960373pt;}
.y16_c00259{bottom:719.041320pt;}
.y14_c00259{bottom:737.599747pt;}
.y15_c00259{bottom:737.600093pt;}
.y13_c00259{bottom:756.480547pt;}
.y12_c00259{bottom:756.480733pt;}
.y11_c00259{bottom:775.680093pt;}
.y10_c00259{bottom:775.680520pt;}
.yf_c00259{bottom:794.879880pt;}
.ye_c00259{bottom:794.880227pt;}
.yc_c00259{bottom:814.078413pt;}
.yd_c00259{bottom:814.079587pt;}
.yb_c00259{bottom:833.599547pt;}
.ya_c00259{bottom:852.480373pt;}
.y9_c00259{bottom:871.359293pt;}
.y8_c00259{bottom:871.359600pt;}
.y7_c00259{bottom:890.240413pt;}
.y5_c00259{bottom:908.800147pt;}
.y6_c00259{bottom:908.800787pt;}
.y4_c00259{bottom:962.239827pt;}
.y2_c00259{bottom:988.479373pt;}
.y3_c00259{bottom:988.479413pt;}
.y1_c00259{bottom:1015.359293pt;}
.hb_c00259{height:66.544271pt;}
.h12_c00259{height:66.738281pt;}
.hd_c00259{height:68.046875pt;}
.h1_c00259{height:68.701172pt;}
.hc_c00259{height:70.546875pt;}
.ha_c00259{height:71.218750pt;}
.h4_c00259{height:71.318359pt;}
.h6_c00259{height:71.972656pt;}
.h10_c00259{height:72.473958pt;}
.h2_c00259{height:72.626953pt;}
.h8_c00259{height:73.007812pt;}
.h7_c00259{height:73.132813pt;}
.h3_c00259{height:73.935547pt;}
.h5_c00259{height:74.578125pt;}
.hf_c00259{height:76.552734pt;}
.h11_c00259{height:77.875000pt;}
.he_c00259{height:89.000000pt;}
.h9_c00259{height:107.078125pt;}
.h0_c00259{height:1122.666667pt;}
.w0_c00259{width:793.333333pt;}
.x0_c00259{left:0.000000pt;}
.x4_c00259{left:128.001360pt;}
.x1_c00259{left:128.958947pt;}
.x6_c00259{left:129.918947pt;}
.x29_c00259{left:175.679280pt;}
.xa_c00259{left:176.638067pt;}
.x7_c00259{left:177.597773pt;}
.x16_c00259{left:184.639200pt;}
.x1d_c00259{left:194.559067pt;}
.x30_c00259{left:196.158667pt;}
.x31_c00259{left:204.479067pt;}
.x2d_c00259{left:232.639200pt;}
.x21_c00259{left:238.079587pt;}
.x17_c00259{left:241.918920pt;}
.x11_c00259{left:243.518533pt;}
.x18_c00259{left:247.038533pt;}
.x22_c00259{left:251.838933pt;}
.x2_c00259{left:252.799867pt;}
.x5_c00259{left:255.358933pt;}
.x19_c00259{left:261.118667pt;}
.x1f_c00259{left:264.638667pt;}
.x3_c00259{left:268.158667pt;}
.x33_c00259{left:278.718787pt;}
.x23_c00259{left:283.839867pt;}
.x14_c00259{left:287.359867pt;}
.x34_c00259{left:290.879867pt;}
.x20_c00259{left:292.158667pt;}
.x24_c00259{left:301.119200pt;}
.x2c_c00259{left:315.518533pt;}
.x8_c00259{left:322.558533pt;}
.xf_c00259{left:328.960000pt;}
.x35_c00259{left:342.079067pt;}
.x9_c00259{left:344.318813pt;}
.x12_c00259{left:346.239173pt;}
.x10_c00259{left:372.159707pt;}
.x13_c00259{left:377.919480pt;}
.xd_c00259{left:439.999467pt;}
.x32_c00259{left:444.159707pt;}
.xe_c00259{left:456.000000pt;}
.x2a_c00259{left:482.239707pt;}
.x15_c00259{left:493.119187pt;}
.x2b_c00259{left:509.438920pt;}
.x36_c00259{left:518.399453pt;}
.x2e_c00259{left:537.919840pt;}
.x37_c00259{left:545.919440pt;}
.x1a_c00259{left:550.719720pt;}
.x2f_c00259{left:552.000000pt;}
.x27_c00259{left:559.999467pt;}
.x28_c00259{left:583.038533pt;}
.x1e_c00259{left:607.359333pt;}
.x1b_c00259{left:610.558507pt;}
.x25_c00259{left:626.879840pt;}
.x26_c00259{left:639.039587pt;}
.x1c_c00259{left:643.519040pt;}
.xb_c00259{left:673.918907pt;}
.xc_c00259{left:692.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddc579aa3962f428b740c897.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_401b139913a9f6693cffbf9b.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_00c8796de850eff0ac07fc92.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_5f5b7b56a9899ed2c6c4d366.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_13af1b34e69ee208020a86e7.woff2')format("woff");}.ff5_c00260{font-family:ff5_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:ff6_c00260;src:url('chunks/assets/font_36c8becd4c83e2e1051702ea.woff2')format("woff");}.ff6_c00260{font-family:ff6_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;}
.m1c_c00260{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00260{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_c00260{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.me_c00260{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.305263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305263,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.403302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403302,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls10_c00260{letter-spacing:-11.121000px;}
.ls2_c00260{letter-spacing:-10.100025px;}
.lsd_c00260{letter-spacing:-8.914500px;}
.ls1e_c00260{letter-spacing:-8.357250px;}
.lsf_c00260{letter-spacing:-8.151000px;}
.lse_c00260{letter-spacing:-7.426125px;}
.ls1a_c00260{letter-spacing:-6.820800px;}
.lsc_c00260{letter-spacing:-6.685875px;}
.ls1d_c00260{letter-spacing:-6.171225px;}
.ls1c_c00260{letter-spacing:-6.106500px;}
.ls1b_c00260{letter-spacing:-5.945625px;}
.ls4_c00260{letter-spacing:-5.196713px;}
.ls13_c00260{letter-spacing:-5.036700px;}
.ls7_c00260{letter-spacing:-4.696500px;}
.ls9_c00260{letter-spacing:-4.456463px;}
.lsb_c00260{letter-spacing:-3.717000px;}
.ls18_c00260{letter-spacing:-3.450600px;}
.ls1f_c00260{letter-spacing:-3.001350px;}
.ls1_c00260{letter-spacing:-2.968875px;}
.ls3_c00260{letter-spacing:-2.229413px;}
.ls12_c00260{letter-spacing:-1.584150px;}
.ls5_c00260{letter-spacing:-1.489163px;}
.ls16_c00260{letter-spacing:-0.898425px;}
.ls11_c00260{letter-spacing:-0.870000px;}
.ls15_c00260{letter-spacing:-0.801698px;}
.lsa_c00260{letter-spacing:-0.740250px;}
.ls19_c00260{letter-spacing:-0.707625px;}
.ls8_c00260{letter-spacing:0.000000px;}
.ls6_c00260{letter-spacing:3.118500px;}
.ls14_c00260{letter-spacing:4.296375px;}
.ls17_c00260{letter-spacing:5.111850px;}
.ls0_c00260{letter-spacing:6.685875px;}
.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;}
._c_c00260{margin-left:-37.872536px;}
._7_c00260{margin-left:-17.450733px;}
._6_c00260{margin-left:-7.414595px;}
._15_c00260{margin-left:-5.528740px;}
._1_c00260{margin-left:-3.924573px;}
._8_c00260{margin-left:-2.614173px;}
._5_c00260{margin-left:-1.331871px;}
._9_c00260{width:1.420189px;}
._2_c00260{width:2.616967px;}
._17_c00260{width:3.732379px;}
._0_c00260{width:4.801610px;}
._4_c00260{width:6.850864px;}
._b_c00260{width:7.906114px;}
._3_c00260{width:10.052660px;}
._e_c00260{width:11.794298px;}
._a_c00260{width:13.293639px;}
._11_c00260{width:15.161307px;}
._d_c00260{width:16.855472px;}
._1d_c00260{width:18.096661px;}
._12_c00260{width:19.448843px;}
._10_c00260{width:21.113291px;}
._f_c00260{width:22.842017px;}
._19_c00260{width:24.202446px;}
._18_c00260{width:25.637612px;}
._1a_c00260{width:26.952767px;}
._1b_c00260{width:28.353923px;}
._16_c00260{width:30.778828px;}
._14_c00260{width:31.877108px;}
._13_c00260{width:33.504143px;}
._1c_c00260{width:37.037433px;}
.fc0_c00260{color:transparent;}
.fsf_c00260{font-size:60.000000px;}
.fs3_c00260{font-size:69.750000px;}
.fsb_c00260{font-size:71.250000px;}
.fs7_c00260{font-size:75.000000px;}
.fs2_c00260{font-size:75.750000px;}
.fsc_c00260{font-size:76.500000px;}
.fsa_c00260{font-size:77.250000px;}
.fs9_c00260{font-size:78.000000px;}
.fs0_c00260{font-size:78.750000px;}
.fsd_c00260{font-size:79.500000px;}
.fs5_c00260{font-size:80.250000px;}
.fse_c00260{font-size:81.000000px;}
.fs6_c00260{font-size:82.500000px;}
.fs10_c00260{font-size:83.250000px;}
.fs12_c00260{font-size:86.250000px;}
.fs11_c00260{font-size:87.000000px;}
.fs1_c00260{font-size:87.750000px;}
.fs8_c00260{font-size:88.500000px;}
.fs4_c00260{font-size:115.500000px;}
.y0_c00260{bottom:0.000000px;}
.y2f_c00260{bottom:178.559595px;}
.y2d_c00260{bottom:207.720675px;}
.y2e_c00260{bottom:207.720750px;}
.y2b_c00260{bottom:237.959820px;}
.y2c_c00260{bottom:237.960600px;}
.y2a_c00260{bottom:267.839535px;}
.y29_c00260{bottom:297.720150px;}
.y28_c00260{bottom:297.721365px;}
.y27_c00260{bottom:327.240900px;}
.y26_c00260{bottom:357.120615px;}
.y25_c00260{bottom:386.640150px;}
.y23_c00260{bottom:416.520465px;}
.y24_c00260{bottom:416.520720px;}
.y22_c00260{bottom:446.040000px;}
.y20_c00260{bottom:476.999055px;}
.y21_c00260{bottom:477.000600px;}
.y1f_c00260{bottom:506.878785px;}
.y1d_c00260{bottom:566.279340px;}
.y1e_c00260{bottom:566.279850px;}
.y1c_c00260{bottom:596.159070px;}
.y1b_c00260{bottom:626.038785px;}
.y1a_c00260{bottom:655.560120px;}
.y19_c00260{bottom:685.439850px;}
.y18_c00260{bottom:714.959385px;}
.y17_c00260{bottom:750.960570px;}
.y16_c00260{bottom:750.960795px;}
.y15_c00260{bottom:805.319820px;}
.y13_c00260{bottom:826.918695px;}
.y14_c00260{bottom:826.919490px;}
.y12_c00260{bottom:848.879970px;}
.y11_c00260{bottom:848.880360px;}
.yf_c00260{bottom:870.479250px;}
.y10_c00260{bottom:870.479640px;}
.ye_c00260{bottom:891.720150px;}
.yd_c00260{bottom:891.721050px;}
.yc_c00260{bottom:912.599670px;}
.yb_c00260{bottom:934.199340px;}
.ya_c00260{bottom:934.200855px;}
.y9_c00260{bottom:955.801935px;}
.y8_c00260{bottom:976.680570px;}
.y7_c00260{bottom:998.279850px;}
.y6_c00260{bottom:1019.879520px;}
.y5_c00260{bottom:1079.279850px;}
.y4_c00260{bottom:1079.280735px;}
.y2_c00260{bottom:1109.160330px;}
.y3_c00260{bottom:1109.160465px;}
.y1_c00260{bottom:1139.400240px;}
.h14_c00260{height:59.296875px;}
.h4_c00260{height:68.455811px;}
.he_c00260{height:71.806641px;}
.h3_c00260{height:74.344482px;}
.h10_c00260{height:75.080566px;}
.hc_c00260{height:76.552734px;}
.h1_c00260{height:77.288818px;}
.h12_c00260{height:77.986084px;}
.ha_c00260{height:78.222656px;}
.h6_c00260{height:78.760986px;}
.hd_c00260{height:80.569336px;}
.hf_c00260{height:80.876953px;}
.h7_c00260{height:80.969238px;}
.h8_c00260{height:81.533203px;}
.h13_c00260{height:81.632812px;}
.h15_c00260{height:81.705322px;}
.h9_c00260{height:82.133789px;}
.h11_c00260{height:83.144531px;}
.h17_c00260{height:84.649658px;}
.h16_c00260{height:85.980469px;}
.h2_c00260{height:86.121826px;}
.hb_c00260{height:87.462891px;}
.h5_c00260{height:120.462891px;}
.h0_c00260{height:1263.000000px;}
.w0_c00260{width:892.500000px;}
.x0_c00260{left:0.000000px;}
.x1c_c00260{left:138.240480px;}
.x1_c00260{left:139.319250px;}
.x2d_c00260{left:140.397360px;}
.xd_c00260{left:193.319250px;}
.x9_c00260{left:194.759535px;}
.x2_c00260{left:201.959400px;}
.x11_c00260{left:208.798515px;}
.xa_c00260{left:215.639100px;}
.x1d_c00260{left:219.599100px;}
.x3_c00260{left:223.918350px;}
.xb_c00260{left:227.159850px;}
.x12_c00260{left:232.919535px;}
.x28_c00260{left:252.719535px;}
.x6_c00260{left:263.879535px;}
.x29_c00260{left:267.839535px;}
.x13_c00260{left:269.639100px;}
.x14_c00260{left:275.759535px;}
.x15_c00260{left:284.759100px;}
.x7_c00260{left:288.359850px;}
.x26_c00260{left:297.359250px;}
.x8_c00260{left:303.118785px;}
.x1e_c00260{left:324.718500px;}
.x27_c00260{left:327.958350px;}
.x4_c00260{left:339.479235px;}
.x5_c00260{left:364.318800px;}
.x1f_c00260{left:369.359850px;}
.x16_c00260{left:436.319235px;}
.x17_c00260{left:450.359850px;}
.x20_c00260{left:469.439670px;}
.x18_c00260{left:489.958335px;}
.xf_c00260{left:511.559685px;}
.x2f_c00260{left:527.038920px;}
.x10_c00260{left:530.998950px;}
.x19_c00260{left:550.078770px;}
.x30_c00260{left:551.519070px;}
.x21_c00260{left:556.558635px;}
.x22_c00260{left:575.999400px;}
.x23_c00260{left:637.199385px;}
.x1a_c00260{left:656.999400px;}
.x2a_c00260{left:678.599070px;}
.x2b_c00260{left:697.679070px;}
.x24_c00260{left:715.679670px;}
.x25_c00260{left:730.438620px;}
.x2c_c00260{left:734.398635px;}
.x1b_c00260{left:759.239820px;}
.x2e_c00260{left:768.239220px;}
.xc_c00260{left:772.919490px;}
.xe_c00260{left:773.998905px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls10_c00260{letter-spacing:-9.885333pt;}
.ls2_c00260{letter-spacing:-8.977800pt;}
.lsd_c00260{letter-spacing:-7.924000pt;}
.ls1e_c00260{letter-spacing:-7.428667pt;}
.lsf_c00260{letter-spacing:-7.245333pt;}
.lse_c00260{letter-spacing:-6.601000pt;}
.ls1a_c00260{letter-spacing:-6.062933pt;}
.lsc_c00260{letter-spacing:-5.943000pt;}
.ls1d_c00260{letter-spacing:-5.485533pt;}
.ls1c_c00260{letter-spacing:-5.428000pt;}
.ls1b_c00260{letter-spacing:-5.285000pt;}
.ls4_c00260{letter-spacing:-4.619300pt;}
.ls13_c00260{letter-spacing:-4.477067pt;}
.ls7_c00260{letter-spacing:-4.174667pt;}
.ls9_c00260{letter-spacing:-3.961300pt;}
.lsb_c00260{letter-spacing:-3.304000pt;}
.ls18_c00260{letter-spacing:-3.067200pt;}
.ls1f_c00260{letter-spacing:-2.667867pt;}
.ls1_c00260{letter-spacing:-2.639000pt;}
.ls3_c00260{letter-spacing:-1.981700pt;}
.ls12_c00260{letter-spacing:-1.408133pt;}
.ls5_c00260{letter-spacing:-1.323700pt;}
.ls16_c00260{letter-spacing:-0.798600pt;}
.ls11_c00260{letter-spacing:-0.773333pt;}
.ls15_c00260{letter-spacing:-0.712620pt;}
.lsa_c00260{letter-spacing:-0.658000pt;}
.ls19_c00260{letter-spacing:-0.629000pt;}
.ls8_c00260{letter-spacing:0.000000pt;}
.ls6_c00260{letter-spacing:2.772000pt;}
.ls14_c00260{letter-spacing:3.819000pt;}
.ls17_c00260{letter-spacing:4.543867pt;}
.ls0_c00260{letter-spacing:5.943000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
._c_c00260{margin-left:-33.664476pt;}
._7_c00260{margin-left:-15.511762pt;}
._6_c00260{margin-left:-6.590751pt;}
._15_c00260{margin-left:-4.914436pt;}
._1_c00260{margin-left:-3.488509pt;}
._8_c00260{margin-left:-2.323709pt;}
._5_c00260{margin-left:-1.183885pt;}
._9_c00260{width:1.262391pt;}
._2_c00260{width:2.326192pt;}
._17_c00260{width:3.317670pt;}
._0_c00260{width:4.268098pt;}
._4_c00260{width:6.089657pt;}
._b_c00260{width:7.027657pt;}
._3_c00260{width:8.935698pt;}
._e_c00260{width:10.483821pt;}
._a_c00260{width:11.816568pt;}
._11_c00260{width:13.476717pt;}
._d_c00260{width:14.982642pt;}
._1d_c00260{width:16.085921pt;}
._12_c00260{width:17.287860pt;}
._10_c00260{width:18.767370pt;}
._f_c00260{width:20.304015pt;}
._19_c00260{width:21.513285pt;}
._18_c00260{width:22.788989pt;}
._1a_c00260{width:23.958015pt;}
._1b_c00260{width:25.203487pt;}
._16_c00260{width:27.358958pt;}
._14_c00260{width:28.335208pt;}
._13_c00260{width:29.781460pt;}
._1c_c00260{width:32.922162pt;}
.fsf_c00260{font-size:53.333333pt;}
.fs3_c00260{font-size:62.000000pt;}
.fsb_c00260{font-size:63.333333pt;}
.fs7_c00260{font-size:66.666667pt;}
.fs2_c00260{font-size:67.333333pt;}
.fsc_c00260{font-size:68.000000pt;}
.fsa_c00260{font-size:68.666667pt;}
.fs9_c00260{font-size:69.333333pt;}
.fs0_c00260{font-size:70.000000pt;}
.fsd_c00260{font-size:70.666667pt;}
.fs5_c00260{font-size:71.333333pt;}
.fse_c00260{font-size:72.000000pt;}
.fs6_c00260{font-size:73.333333pt;}
.fs10_c00260{font-size:74.000000pt;}
.fs12_c00260{font-size:76.666667pt;}
.fs11_c00260{font-size:77.333333pt;}
.fs1_c00260{font-size:78.000000pt;}
.fs8_c00260{font-size:78.666667pt;}
.fs4_c00260{font-size:102.666667pt;}
.y0_c00260{bottom:0.000000pt;}
.y2f_c00260{bottom:158.719640pt;}
.y2d_c00260{bottom:184.640600pt;}
.y2e_c00260{bottom:184.640667pt;}
.y2b_c00260{bottom:211.519840pt;}
.y2c_c00260{bottom:211.520533pt;}
.y2a_c00260{bottom:238.079587pt;}
.y29_c00260{bottom:264.640133pt;}
.y28_c00260{bottom:264.641213pt;}
.y27_c00260{bottom:290.880800pt;}
.y26_c00260{bottom:317.440547pt;}
.y25_c00260{bottom:343.680133pt;}
.y23_c00260{bottom:370.240413pt;}
.y24_c00260{bottom:370.240640pt;}
.y22_c00260{bottom:396.480000pt;}
.y20_c00260{bottom:423.999160pt;}
.y21_c00260{bottom:424.000533pt;}
.y1f_c00260{bottom:450.558920pt;}
.y1d_c00260{bottom:503.359413pt;}
.y1e_c00260{bottom:503.359867pt;}
.y1c_c00260{bottom:529.919173pt;}
.y1b_c00260{bottom:556.478920pt;}
.y1a_c00260{bottom:582.720107pt;}
.y19_c00260{bottom:609.279867pt;}
.y18_c00260{bottom:635.519453pt;}
.y17_c00260{bottom:667.520507pt;}
.y16_c00260{bottom:667.520707pt;}
.y15_c00260{bottom:715.839840pt;}
.y13_c00260{bottom:735.038840pt;}
.y14_c00260{bottom:735.039547pt;}
.y12_c00260{bottom:754.559973pt;}
.y11_c00260{bottom:754.560320pt;}
.yf_c00260{bottom:773.759333pt;}
.y10_c00260{bottom:773.759680pt;}
.ye_c00260{bottom:792.640133pt;}
.yd_c00260{bottom:792.640933pt;}
.yc_c00260{bottom:811.199707pt;}
.yb_c00260{bottom:830.399413pt;}
.ya_c00260{bottom:830.400760pt;}
.y9_c00260{bottom:849.601720pt;}
.y8_c00260{bottom:868.160507pt;}
.y7_c00260{bottom:887.359867pt;}
.y6_c00260{bottom:906.559573pt;}
.y5_c00260{bottom:959.359867pt;}
.y4_c00260{bottom:959.360653pt;}
.y2_c00260{bottom:985.920293pt;}
.y3_c00260{bottom:985.920413pt;}
.y1_c00260{bottom:1012.800213pt;}
.h14_c00260{height:52.708333pt;}
.h4_c00260{height:60.849609pt;}
.he_c00260{height:63.828125pt;}
.h3_c00260{height:66.083984pt;}
.h10_c00260{height:66.738281pt;}
.hc_c00260{height:68.046875pt;}
.h1_c00260{height:68.701172pt;}
.h12_c00260{height:69.320964pt;}
.ha_c00260{height:69.531250pt;}
.h6_c00260{height:70.009766pt;}
.hd_c00260{height:71.617188pt;}
.hf_c00260{height:71.890625pt;}
.h7_c00260{height:71.972656pt;}
.h8_c00260{height:72.473958pt;}
.h13_c00260{height:72.562500pt;}
.h15_c00260{height:72.626953pt;}
.h9_c00260{height:73.007812pt;}
.h11_c00260{height:73.906250pt;}
.h17_c00260{height:75.244141pt;}
.h16_c00260{height:76.427083pt;}
.h2_c00260{height:76.552734pt;}
.hb_c00260{height:77.744792pt;}
.h5_c00260{height:107.078125pt;}
.h0_c00260{height:1122.666667pt;}
.w0_c00260{width:793.333333pt;}
.x0_c00260{left:0.000000pt;}
.x1c_c00260{left:122.880427pt;}
.x1_c00260{left:123.839333pt;}
.x2d_c00260{left:124.797653pt;}
.xd_c00260{left:171.839333pt;}
.x9_c00260{left:173.119587pt;}
.x2_c00260{left:179.519467pt;}
.x11_c00260{left:185.598680pt;}
.xa_c00260{left:191.679200pt;}
.x1d_c00260{left:195.199200pt;}
.x3_c00260{left:199.038533pt;}
.xb_c00260{left:201.919867pt;}
.x12_c00260{left:207.039587pt;}
.x28_c00260{left:224.639587pt;}
.x6_c00260{left:234.559587pt;}
.x29_c00260{left:238.079587pt;}
.x13_c00260{left:239.679200pt;}
.x14_c00260{left:245.119587pt;}
.x15_c00260{left:253.119200pt;}
.x7_c00260{left:256.319867pt;}
.x26_c00260{left:264.319333pt;}
.x8_c00260{left:269.438920pt;}
.x1e_c00260{left:288.638667pt;}
.x27_c00260{left:291.518533pt;}
.x4_c00260{left:301.759320pt;}
.x5_c00260{left:323.838933pt;}
.x1f_c00260{left:328.319867pt;}
.x16_c00260{left:387.839320pt;}
.x17_c00260{left:400.319867pt;}
.x20_c00260{left:417.279707pt;}
.x18_c00260{left:435.518520pt;}
.xf_c00260{left:454.719720pt;}
.x2f_c00260{left:468.479040pt;}
.x10_c00260{left:471.999067pt;}
.x19_c00260{left:488.958907pt;}
.x30_c00260{left:490.239173pt;}
.x21_c00260{left:494.718787pt;}
.x22_c00260{left:511.999467pt;}
.x23_c00260{left:566.399453pt;}
.x1a_c00260{left:583.999467pt;}
.x2a_c00260{left:603.199173pt;}
.x2b_c00260{left:620.159173pt;}
.x24_c00260{left:636.159707pt;}
.x25_c00260{left:649.278773pt;}
.x2c_c00260{left:652.798787pt;}
.x1b_c00260{left:674.879840pt;}
.x2e_c00260{left:682.879307pt;}
.xc_c00260{left:687.039547pt;}
.xe_c00260{left:687.999027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aef11e1e51bd9b1d9f05b063.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_b523b2610558e5bc18fbf7ea.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_612d51a57def3fc6ad88586f.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_cc31f2bf2b5bc2ee947e0eae.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00261;src:url('chunks/assets/font_1b2efd8f116dd9898e275529.woff2')format("woff");}.ff6_c00261{font-family:ff6_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;}
.me_c00261{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m17_c00261{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m15_c00261{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m16_c00261{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m13_c00261{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m14_c00261{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m12_c00261{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299213,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.v1_c00261{vertical-align:2.165340px;}
.ls14_c00261{letter-spacing:-15.526500px;}
.ls12_c00261{letter-spacing:-14.594850px;}
.ls13_c00261{letter-spacing:-14.210775px;}
.ls15_c00261{letter-spacing:-12.238125px;}
.ls9_c00261{letter-spacing:-11.630850px;}
.ls18_c00261{letter-spacing:-10.660155px;}
.ls16_c00261{letter-spacing:-10.576500px;}
.ls6_c00261{letter-spacing:-8.914500px;}
.ls11_c00261{letter-spacing:-6.896100px;}
.ls10_c00261{letter-spacing:-6.685875px;}
.lsd_c00261{letter-spacing:-6.051443px;}
.ls8_c00261{letter-spacing:-5.945625px;}
.lsa_c00261{letter-spacing:-5.196713px;}
.lse_c00261{letter-spacing:-4.456463px;}
.lsf_c00261{letter-spacing:-4.378500px;}
.lsc_c00261{letter-spacing:-3.748478px;}
.lsb_c00261{letter-spacing:-3.717000px;}
.ls1a_c00261{letter-spacing:-3.454913px;}
.ls1_c00261{letter-spacing:-2.968875px;}
.ls2_c00261{letter-spacing:-2.229413px;}
.ls4_c00261{letter-spacing:-1.489163px;}
.ls1c_c00261{letter-spacing:-1.381538px;}
.ls7_c00261{letter-spacing:-0.842625px;}
.ls1e_c00261{letter-spacing:-0.834300px;}
.ls3_c00261{letter-spacing:-0.740250px;}
.ls17_c00261{letter-spacing:-0.658125px;}
.ls5_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:1.489163px;}
.ls1d_c00261{letter-spacing:2.346300px;}
.ls19_c00261{letter-spacing:2.361150px;}
.ls1b_c00261{letter-spacing:2.398275px;}
.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;}
._1d_c00261{margin-left:-31.792500px;}
._1c_c00261{margin-left:-21.844879px;}
._1f_c00261{margin-left:-7.854867px;}
._8_c00261{margin-left:-5.118438px;}
._4_c00261{margin-left:-4.116783px;}
._9_c00261{margin-left:-2.510728px;}
._2_c00261{margin-left:-1.392865px;}
._3_c00261{width:2.045687px;}
._0_c00261{width:3.181619px;}
._1_c00261{width:4.807643px;}
._1e_c00261{width:5.874453px;}
._11_c00261{width:6.914309px;}
._6_c00261{width:7.994492px;}
._a_c00261{width:9.395410px;}
._12_c00261{width:10.743996px;}
._7_c00261{width:11.946375px;}
._13_c00261{width:13.235839px;}
._1b_c00261{width:14.253319px;}
._f_c00261{width:15.754190px;}
._5_c00261{width:18.116690px;}
._14_c00261{width:20.038279px;}
._15_c00261{width:21.709889px;}
._20_c00261{width:23.188205px;}
._b_c00261{width:24.410360px;}
._d_c00261{width:25.672559px;}
._10_c00261{width:26.855295px;}
._c_c00261{width:28.415199px;}
._16_c00261{width:30.552697px;}
._e_c00261{width:32.216803px;}
._19_c00261{width:34.676730px;}
._17_c00261{width:35.705428px;}
._18_c00261{width:37.054193px;}
._1a_c00261{width:43.789413px;}
.fc0_c00261{color:transparent;}
.fsa_c00261{font-size:69.750000px;}
.fsb_c00261{font-size:71.250000px;}
.fs9_c00261{font-size:74.250000px;}
.fsc_c00261{font-size:77.250000px;}
.fs0_c00261{font-size:78.750000px;}
.fs3_c00261{font-size:79.500000px;}
.fs2_c00261{font-size:80.250000px;}
.fs1_c00261{font-size:82.500000px;}
.fs5_c00261{font-size:83.250000px;}
.fs4_c00261{font-size:84.750000px;}
.fs7_c00261{font-size:85.500000px;}
.fs6_c00261{font-size:95.250000px;}
.fs8_c00261{font-size:101.250000px;}
.y0_c00261{bottom:0.000000px;}
.y2b_c00261{bottom:235.800315px;}
.y2a_c00261{bottom:265.319850px;}
.y29_c00261{bottom:265.320000px;}
.y28_c00261{bottom:294.839535px;}
.y27_c00261{bottom:294.840015px;}
.y26_c00261{bottom:324.719745px;}
.y25_c00261{bottom:385.199865px;}
.y24_c00261{bottom:406.438665px;}
.y23_c00261{bottom:428.399235px;}
.y22_c00261{bottom:449.639070px;}
.y21_c00261{bottom:470.880000px;}
.y1f_c00261{bottom:492.118350px;}
.y20_c00261{bottom:492.118785px;}
.y1e_c00261{bottom:513.359250px;}
.y1d_c00261{bottom:572.398635px;}
.y1c_c00261{bottom:572.399670px;}
.y1b_c00261{bottom:602.279385px;}
.y1a_c00261{bottom:631.798920px;}
.y19_c00261{bottom:631.799955px;}
.y18_c00261{bottom:661.679670px;}
.y16_c00261{bottom:691.919445px;}
.y17_c00261{bottom:691.919535px;}
.y15_c00261{bottom:722.159370px;}
.y14_c00261{bottom:722.159460px;}
.y13_c00261{bottom:781.560510px;}
.y12_c00261{bottom:812.158815px;}
.y11_c00261{bottom:812.160480px;}
.y10_c00261{bottom:842.398590px;}
.ye_c00261{bottom:871.919880px;}
.yf_c00261{bottom:871.919955px;}
.yd_c00261{bottom:901.978635px;}
.yc_c00261{bottom:901.979055px;}
.ya_c00261{bottom:931.679580px;}
.yb_c00261{bottom:931.679715px;}
.y9_c00261{bottom:961.919490px;}
.y8_c00261{bottom:961.919625px;}
.y7_c00261{bottom:991.799355px;}
.y6_c00261{bottom:1021.679070px;}
.y5_c00261{bottom:1021.680015px;}
.y4_c00261{bottom:1051.559745px;}
.y2_c00261{bottom:1111.319145px;}
.y3_c00261{bottom:1111.319190px;}
.y1_c00261{bottom:1141.559055px;}
.hf_c00261{height:68.455811px;}
.h10_c00261{height:71.806641px;}
.he_c00261{height:72.872314px;}
.h11_c00261{height:74.830078px;}
.h1_c00261{height:77.288818px;}
.h12_c00261{height:77.853516px;}
.h4_c00261{height:78.568359px;}
.h5_c00261{height:78.721802px;}
.h3_c00261{height:78.760986px;}
.h8_c00261{height:79.454158px;}
.h13_c00261{height:80.121094px;}
.h2_c00261{height:80.969238px;}
.hc_c00261{height:81.533203px;}
.h7_c00261{height:81.705322px;}
.hb_c00261{height:82.274414px;}
.h6_c00261{height:83.177490px;}
.ha_c00261{height:84.498047px;}
.h9_c00261{height:99.342773px;}
.hd_c00261{height:105.600586px;}
.h0_c00261{height:1263.000000px;}
.w0_c00261{width:892.500000px;}
.x0_c00261{left:0.000000px;}
.x12_c00261{left:140.037165px;}
.x1_c00261{left:141.118815px;}
.x17_c00261{left:168.118815px;}
.x2a_c00261{left:195.115455px;}
.x26_c00261{left:196.559100px;}
.x27_c00261{left:211.319850px;}
.x28_c00261{left:228.959400px;}
.x23_c00261{left:237.958950px;}
.x2d_c00261{left:244.799535px;}
.x24_c00261{left:253.439685px;}
.x2e_c00261{left:258.838515px;}
.x29_c00261{left:264.599700px;}
.x25_c00261{left:274.319250px;}
.x1d_c00261{left:291.238785px;}
.x1e_c00261{left:311.759100px;}
.x8_c00261{left:352.079385px;}
.x2f_c00261{left:359.638530px;}
.x9_c00261{left:371.159385px;}
.x30_c00261{left:383.039385px;}
.x15_c00261{left:384.118785px;}
.x35_c00261{left:393.838530px;}
.x16_c00261{left:399.599670px;}
.x36_c00261{left:407.878920px;}
.x18_c00261{left:410.039385px;}
.x10_c00261{left:412.559100px;}
.x11_c00261{left:428.039985px;}
.x1b_c00261{left:437.759535px;}
.x39_c00261{left:439.918350px;}
.x3a_c00261{left:456.119385px;}
.x1c_c00261{left:457.559685px;}
.x2_c00261{left:460.438665px;}
.x31_c00261{left:465.479685px;}
.x3_c00261{left:474.119985px;}
.x32_c00261{left:489.239820px;}
.x6_c00261{left:540.718500px;}
.x22_c00261{left:552.239220px;}
.x13_c00261{left:554.399820px;}
.x7_c00261{left:561.599670px;}
.x33_c00261{left:574.199850px;}
.x14_c00261{left:579.598530px;}
.x34_c00261{left:590.399235px;}
.x4_c00261{left:606.239220px;}
.xa_c00261{left:609.479235px;}
.x19_c00261{left:615.238770px;}
.x37_c00261{left:624.958335px;}
.x5_c00261{left:632.159820px;}
.x1a_c00261{left:635.399820px;}
.x38_c00261{left:639.719100px;}
.xb_c00261{left:672.119385px;}
.x2b_c00261{left:709.559100px;}
.x1f_c00261{left:711.358605px;}
.xe_c00261{left:712.798920px;}
.x2c_c00261{left:723.238770px;}
.x20_c00261{left:727.918950px;}
.xf_c00261{left:729.359250px;}
.xc_c00261{left:749.159370px;}
.xd_c00261{left:768.959385px;}
.x21_c00261{left:774.719055px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.v1_c00261{vertical-align:1.924747pt;}
.ls14_c00261{letter-spacing:-13.801333pt;}
.ls12_c00261{letter-spacing:-12.973200pt;}
.ls13_c00261{letter-spacing:-12.631800pt;}
.ls15_c00261{letter-spacing:-10.878333pt;}
.ls9_c00261{letter-spacing:-10.338533pt;}
.ls18_c00261{letter-spacing:-9.475693pt;}
.ls16_c00261{letter-spacing:-9.401333pt;}
.ls6_c00261{letter-spacing:-7.924000pt;}
.ls11_c00261{letter-spacing:-6.129867pt;}
.ls10_c00261{letter-spacing:-5.943000pt;}
.lsd_c00261{letter-spacing:-5.379060pt;}
.ls8_c00261{letter-spacing:-5.285000pt;}
.lsa_c00261{letter-spacing:-4.619300pt;}
.lse_c00261{letter-spacing:-3.961300pt;}
.lsf_c00261{letter-spacing:-3.892000pt;}
.lsc_c00261{letter-spacing:-3.331980pt;}
.lsb_c00261{letter-spacing:-3.304000pt;}
.ls1a_c00261{letter-spacing:-3.071033pt;}
.ls1_c00261{letter-spacing:-2.639000pt;}
.ls2_c00261{letter-spacing:-1.981700pt;}
.ls4_c00261{letter-spacing:-1.323700pt;}
.ls1c_c00261{letter-spacing:-1.228033pt;}
.ls7_c00261{letter-spacing:-0.749000pt;}
.ls1e_c00261{letter-spacing:-0.741600pt;}
.ls3_c00261{letter-spacing:-0.658000pt;}
.ls17_c00261{letter-spacing:-0.585000pt;}
.ls5_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:1.323700pt;}
.ls1d_c00261{letter-spacing:2.085600pt;}
.ls19_c00261{letter-spacing:2.098800pt;}
.ls1b_c00261{letter-spacing:2.131800pt;}
.ws0_c00261{word-spacing:0.000000pt;}
._1d_c00261{margin-left:-28.260000pt;}
._1c_c00261{margin-left:-19.417670pt;}
._1f_c00261{margin-left:-6.982104pt;}
._8_c00261{margin-left:-4.549723pt;}
._4_c00261{margin-left:-3.659362pt;}
._9_c00261{margin-left:-2.231758pt;}
._2_c00261{margin-left:-1.238102pt;}
._3_c00261{width:1.818389pt;}
._0_c00261{width:2.828106pt;}
._1_c00261{width:4.273460pt;}
._1e_c00261{width:5.221736pt;}
._11_c00261{width:6.146053pt;}
._6_c00261{width:7.106215pt;}
._a_c00261{width:8.351475pt;}
._12_c00261{width:9.550219pt;}
._7_c00261{width:10.619000pt;}
._13_c00261{width:11.765191pt;}
._1b_c00261{width:12.669617pt;}
._f_c00261{width:14.003725pt;}
._5_c00261{width:16.103725pt;}
._14_c00261{width:17.811804pt;}
._15_c00261{width:19.297679pt;}
._20_c00261{width:20.611738pt;}
._b_c00261{width:21.698098pt;}
._d_c00261{width:22.820053pt;}
._10_c00261{width:23.871374pt;}
._c_c00261{width:25.257955pt;}
._16_c00261{width:27.157953pt;}
._e_c00261{width:28.637158pt;}
._19_c00261{width:30.823760pt;}
._17_c00261{width:31.738158pt;}
._18_c00261{width:32.937060pt;}
._1a_c00261{width:38.923923pt;}
.fsa_c00261{font-size:62.000000pt;}
.fsb_c00261{font-size:63.333333pt;}
.fs9_c00261{font-size:66.000000pt;}
.fsc_c00261{font-size:68.666667pt;}
.fs0_c00261{font-size:70.000000pt;}
.fs3_c00261{font-size:70.666667pt;}
.fs2_c00261{font-size:71.333333pt;}
.fs1_c00261{font-size:73.333333pt;}
.fs5_c00261{font-size:74.000000pt;}
.fs4_c00261{font-size:75.333333pt;}
.fs7_c00261{font-size:76.000000pt;}
.fs6_c00261{font-size:84.666667pt;}
.fs8_c00261{font-size:90.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y2b_c00261{bottom:209.600280pt;}
.y2a_c00261{bottom:235.839867pt;}
.y29_c00261{bottom:235.840000pt;}
.y28_c00261{bottom:262.079587pt;}
.y27_c00261{bottom:262.080013pt;}
.y26_c00261{bottom:288.639773pt;}
.y25_c00261{bottom:342.399880pt;}
.y24_c00261{bottom:361.278813pt;}
.y23_c00261{bottom:380.799320pt;}
.y22_c00261{bottom:399.679173pt;}
.y21_c00261{bottom:418.560000pt;}
.y1f_c00261{bottom:437.438533pt;}
.y20_c00261{bottom:437.438920pt;}
.y1e_c00261{bottom:456.319333pt;}
.y1d_c00261{bottom:508.798787pt;}
.y1c_c00261{bottom:508.799707pt;}
.y1b_c00261{bottom:535.359453pt;}
.y1a_c00261{bottom:561.599040pt;}
.y19_c00261{bottom:561.599960pt;}
.y18_c00261{bottom:588.159707pt;}
.y16_c00261{bottom:615.039507pt;}
.y17_c00261{bottom:615.039587pt;}
.y15_c00261{bottom:641.919440pt;}
.y14_c00261{bottom:641.919520pt;}
.y13_c00261{bottom:694.720453pt;}
.y12_c00261{bottom:721.918947pt;}
.y11_c00261{bottom:721.920427pt;}
.y10_c00261{bottom:748.798747pt;}
.ye_c00261{bottom:775.039893pt;}
.yf_c00261{bottom:775.039960pt;}
.yd_c00261{bottom:801.758787pt;}
.yc_c00261{bottom:801.759160pt;}
.ya_c00261{bottom:828.159627pt;}
.yb_c00261{bottom:828.159747pt;}
.y9_c00261{bottom:855.039547pt;}
.y8_c00261{bottom:855.039667pt;}
.y7_c00261{bottom:881.599427pt;}
.y6_c00261{bottom:908.159173pt;}
.y5_c00261{bottom:908.160013pt;}
.y4_c00261{bottom:934.719773pt;}
.y2_c00261{bottom:987.839240pt;}
.y3_c00261{bottom:987.839280pt;}
.y1_c00261{bottom:1014.719160pt;}
.hf_c00261{height:60.849609pt;}
.h10_c00261{height:63.828125pt;}
.he_c00261{height:64.775391pt;}
.h11_c00261{height:66.515625pt;}
.h1_c00261{height:68.701172pt;}
.h12_c00261{height:69.203125pt;}
.h4_c00261{height:69.838542pt;}
.h5_c00261{height:69.974935pt;}
.h3_c00261{height:70.009766pt;}
.h8_c00261{height:70.625919pt;}
.h13_c00261{height:71.218750pt;}
.h2_c00261{height:71.972656pt;}
.hc_c00261{height:72.473958pt;}
.h7_c00261{height:72.626953pt;}
.hb_c00261{height:73.132813pt;}
.h6_c00261{height:73.935547pt;}
.ha_c00261{height:75.109375pt;}
.h9_c00261{height:88.304688pt;}
.hd_c00261{height:93.867188pt;}
.h0_c00261{height:1122.666667pt;}
.w0_c00261{width:793.333333pt;}
.x0_c00261{left:0.000000pt;}
.x12_c00261{left:124.477480pt;}
.x1_c00261{left:125.438947pt;}
.x17_c00261{left:149.438947pt;}
.x2a_c00261{left:173.435960pt;}
.x26_c00261{left:174.719200pt;}
.x27_c00261{left:187.839867pt;}
.x28_c00261{left:203.519467pt;}
.x23_c00261{left:211.519067pt;}
.x2d_c00261{left:217.599587pt;}
.x24_c00261{left:225.279720pt;}
.x2e_c00261{left:230.078680pt;}
.x29_c00261{left:235.199733pt;}
.x25_c00261{left:243.839333pt;}
.x1d_c00261{left:258.878920pt;}
.x1e_c00261{left:277.119200pt;}
.x8_c00261{left:312.959453pt;}
.x2f_c00261{left:319.678693pt;}
.x9_c00261{left:329.919453pt;}
.x30_c00261{left:340.479453pt;}
.x15_c00261{left:341.438920pt;}
.x35_c00261{left:350.078693pt;}
.x16_c00261{left:355.199707pt;}
.x36_c00261{left:362.559040pt;}
.x18_c00261{left:364.479453pt;}
.x10_c00261{left:366.719200pt;}
.x11_c00261{left:380.479987pt;}
.x1b_c00261{left:389.119587pt;}
.x39_c00261{left:391.038533pt;}
.x3a_c00261{left:405.439453pt;}
.x1c_c00261{left:406.719720pt;}
.x2_c00261{left:409.278813pt;}
.x31_c00261{left:413.759720pt;}
.x3_c00261{left:421.439987pt;}
.x32_c00261{left:434.879840pt;}
.x6_c00261{left:480.638667pt;}
.x22_c00261{left:490.879307pt;}
.x13_c00261{left:492.799840pt;}
.x7_c00261{left:499.199707pt;}
.x33_c00261{left:510.399867pt;}
.x14_c00261{left:515.198693pt;}
.x34_c00261{left:524.799320pt;}
.x4_c00261{left:538.879307pt;}
.xa_c00261{left:541.759320pt;}
.x19_c00261{left:546.878907pt;}
.x37_c00261{left:555.518520pt;}
.x5_c00261{left:561.919840pt;}
.x1a_c00261{left:564.799840pt;}
.x38_c00261{left:568.639200pt;}
.xb_c00261{left:597.439453pt;}
.x2b_c00261{left:630.719200pt;}
.x1f_c00261{left:632.318760pt;}
.xe_c00261{left:633.599040pt;}
.x2c_c00261{left:642.878907pt;}
.x20_c00261{left:647.039067pt;}
.xf_c00261{left:648.319333pt;}
.xc_c00261{left:665.919440pt;}
.xd_c00261{left:683.519453pt;}
.x21_c00261{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60d76b3c029aeff2cdd33269.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_d8c50af5b96adb3fdb6f821c.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_91fca07e75c87329da5326d8.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_f52d5c8d79cbe75a204496cf.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_4b690b2e28ca45aea2c6406b.woff2')format("woff");}.ff5_c00262{font-family:ff5_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:ff6_c00262;src:url('chunks/assets/font_39cfb69fa5ff944f4367c1e7.woff2')format("woff");}.ff6_c00262{font-family:ff6_c00262;line-height:1.432129;font-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_c00262{transform:matrix(0.152655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152655,0.000000,0.000000,0.250000,0,0);}
.m4_c00262{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00262{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1e_c00262{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m13_c00262{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1a_c00262{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.me_c00262{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m10_c00262{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m18_c00262{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m1d_c00262{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m1c_c00262{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.mc_c00262{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1b_c00262{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m17_c00262{transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m16_c00262{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00262{transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);}
.mf_c00262{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m15_c00262{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m1f_c00262{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m14_c00262{transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);}
.m8_c00262{transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls1a_c00262{letter-spacing:-8.914500px;}
.ls2a_c00262{letter-spacing:-8.175038px;}
.lsf_c00262{letter-spacing:-7.553700px;}
.lsa_c00262{letter-spacing:-7.426125px;}
.ls11_c00262{letter-spacing:-7.374098px;}
.ls13_c00262{letter-spacing:-6.876900px;}
.ls20_c00262{letter-spacing:-6.746850px;}
.ls2_c00262{letter-spacing:-6.685875px;}
.ls1c_c00262{letter-spacing:-5.956800px;}
.lsd_c00262{letter-spacing:-5.945625px;}
.ls1e_c00262{letter-spacing:-5.203125px;}
.lsb_c00262{letter-spacing:-5.196713px;}
.ls1f_c00262{letter-spacing:-4.712400px;}
.ls9_c00262{letter-spacing:-4.456463px;}
.ls28_c00262{letter-spacing:-3.967500px;}
.ls5_c00262{letter-spacing:-3.717000px;}
.ls1d_c00262{letter-spacing:-3.573315px;}
.ls21_c00262{letter-spacing:-3.244500px;}
.ls19_c00262{letter-spacing:-3.113700px;}
.ls3_c00262{letter-spacing:-2.968875px;}
.ls26_c00262{letter-spacing:-2.362500px;}
.ls1b_c00262{letter-spacing:-2.335275px;}
.ls27_c00262{letter-spacing:-2.249655px;}
.ls4_c00262{letter-spacing:-2.229413px;}
.ls24_c00262{letter-spacing:-1.661400px;}
.ls18_c00262{letter-spacing:-1.496250px;}
.ls6_c00262{letter-spacing:-1.489163px;}
.ls22_c00262{letter-spacing:-0.749325px;}
.ls7_c00262{letter-spacing:-0.740250px;}
.ls17_c00262{letter-spacing:-0.735075px;}
.ls15_c00262{letter-spacing:-0.719100px;}
.ls29_c00262{letter-spacing:-0.714225px;}
.lse_c00262{letter-spacing:-0.586500px;}
.ls8_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.740250px;}
.ls14_c00262{letter-spacing:0.902400px;}
.lsc_c00262{letter-spacing:1.556048px;}
.ls12_c00262{letter-spacing:1.599675px;}
.ls23_c00262{letter-spacing:1.732500px;}
.ls10_c00262{letter-spacing:2.410200px;}
.ls16_c00262{letter-spacing:2.455200px;}
.ls25_c00262{letter-spacing:3.786750px;}
.ls2b_c00262{letter-spacing:4.102800px;}
.ls1_c00262{letter-spacing:5.196713px;}
.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;}
._12_c00262{margin-left:-39.732060px;}
._1c_c00262{margin-left:-16.074673px;}
._a_c00262{margin-left:-12.946084px;}
._b_c00262{margin-left:-10.969905px;}
._13_c00262{margin-left:-7.003401px;}
._11_c00262{margin-left:-5.903561px;}
._3_c00262{margin-left:-4.346435px;}
._1_c00262{margin-left:-1.925036px;}
._e_c00262{width:1.097106px;}
._2_c00262{width:2.890392px;}
._7_c00262{width:4.214507px;}
._6_c00262{width:5.326472px;}
._0_c00262{width:7.276559px;}
._c_c00262{width:8.921439px;}
._4_c00262{width:10.043077px;}
._d_c00262{width:11.175472px;}
._5_c00262{width:12.280216px;}
._10_c00262{width:13.505536px;}
._8_c00262{width:15.170207px;}
._9_c00262{width:16.263940px;}
._17_c00262{width:17.585677px;}
._14_c00262{width:18.763391px;}
._16_c00262{width:20.189776px;}
._1d_c00262{width:21.998322px;}
._f_c00262{width:23.321426px;}
._1a_c00262{width:24.512126px;}
._19_c00262{width:26.117675px;}
._15_c00262{width:27.814351px;}
._18_c00262{width:30.753524px;}
._1b_c00262{width:33.962557px;}
.fc0_c00262{color:transparent;}
.fs5_c00262{font-size:69.000000px;}
.fs7_c00262{font-size:70.500000px;}
.fsb_c00262{font-size:72.000000px;}
.fsc_c00262{font-size:74.250000px;}
.fsa_c00262{font-size:76.500000px;}
.fs2_c00262{font-size:77.250000px;}
.fs8_c00262{font-size:78.000000px;}
.fs0_c00262{font-size:78.750000px;}
.fs3_c00262{font-size:80.250000px;}
.fs9_c00262{font-size:81.000000px;}
.fs4_c00262{font-size:82.500000px;}
.fse_c00262{font-size:83.250000px;}
.fs1_c00262{font-size:84.750000px;}
.fsd_c00262{font-size:102.000000px;}
.fs6_c00262{font-size:115.500000px;}
.y0_c00262{bottom:0.000000px;}
.y2d_c00262{bottom:233.999820px;}
.y2c_c00262{bottom:263.879535px;}
.y2b_c00262{bottom:263.879730px;}
.y29_c00262{bottom:293.398635px;}
.y2a_c00262{bottom:293.399250px;}
.y28_c00262{bottom:322.559790px;}
.y27_c00262{bottom:382.319235px;}
.y26_c00262{bottom:382.319670px;}
.y25_c00262{bottom:403.918950px;}
.y24_c00262{bottom:425.879520px;}
.y23_c00262{bottom:447.479235px;}
.y22_c00262{bottom:469.078770px;}
.y20_c00262{bottom:490.318800px;}
.y21_c00262{bottom:490.319235px;}
.y1e_c00262{bottom:511.559265px;}
.y1f_c00262{bottom:511.559685px;}
.y1d_c00262{bottom:532.800150px;}
.y1b_c00262{bottom:554.037420px;}
.y1c_c00262{bottom:554.038920px;}
.y1a_c00262{bottom:575.278320px;}
.y19_c00262{bottom:596.519235px;}
.y18_c00262{bottom:617.760135px;}
.y17_c00262{bottom:617.760750px;}
.y16_c00262{bottom:638.999565px;}
.y15_c00262{bottom:659.879970px;}
.y13_c00262{bottom:719.639610px;}
.y14_c00262{bottom:719.639700px;}
.y12_c00262{bottom:749.879520px;}
.y11_c00262{bottom:810.359250px;}
.y10_c00262{bottom:810.360240px;}
.yf_c00262{bottom:839.879775px;}
.yd_c00262{bottom:869.759445px;}
.ye_c00262{bottom:869.759490px;}
.yc_c00262{bottom:899.999355px;}
.yb_c00262{bottom:900.001350px;}
.ya_c00262{bottom:929.520885px;}
.y9_c00262{bottom:959.400600px;}
.y8_c00262{bottom:989.998905px;}
.y7_c00262{bottom:989.999400px;}
.y6_c00262{bottom:1049.760960px;}
.y5_c00262{bottom:1080.359250px;}
.y4_c00262{bottom:1080.359430px;}
.y3_c00262{bottom:1109.878965px;}
.y2_c00262{bottom:1109.879775px;}
.y1_c00262{bottom:1139.759490px;}
.h10_c00262{height:70.664062px;}
.h7_c00262{height:71.964844px;}
.h11_c00262{height:72.872314px;}
.h9_c00262{height:73.529297px;}
.hf_c00262{height:75.080566px;}
.h3_c00262{height:75.816650px;}
.ha_c00262{height:76.552734px;}
.h17_c00262{height:77.097656px;}
.h1_c00262{height:77.288818px;}
.h15_c00262{height:77.853516px;}
.h16_c00262{height:78.609375px;}
.h6_c00262{height:78.721802px;}
.h4_c00262{height:78.760986px;}
.h14_c00262{height:79.365234px;}
.he_c00262{height:80.876953px;}
.h5_c00262{height:80.969238px;}
.hd_c00262{height:81.632812px;}
.h13_c00262{height:81.705322px;}
.hc_c00262{height:83.144531px;}
.h2_c00262{height:83.177490px;}
.hb_c00262{height:83.756836px;}
.h12_c00262{height:106.382812px;}
.h8_c00262{height:120.462891px;}
.h0_c00262{height:1263.000000px;}
.w0_c00262{width:892.500000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:135.718500px;}
.x44_c00262{left:137.158650px;}
.x4a_c00262{left:138.240510px;}
.xa_c00262{left:158.040000px;}
.x18_c00262{left:163.079400px;}
.x23_c00262{left:182.159415px;}
.x37_c00262{left:189.718500px;}
.x2c_c00262{left:190.800000px;}
.x29_c00262{left:191.878950px;}
.x2a_c00262{left:206.639700px;}
.x19_c00262{left:209.159385px;}
.xb_c00262{left:220.319250px;}
.x2b_c00262{left:225.358635px;}
.x8_c00262{left:226.798950px;}
.x1a_c00262{left:233.639700px;}
.x9_c00262{left:240.839535px;}
.x38_c00262{left:250.199850px;}
.x24_c00262{left:255.239250px;}
.x16_c00262{left:258.120000px;}
.x1b_c00262{left:280.439685px;}
.x17_c00262{left:284.399850px;}
.x42_c00262{left:291.238785px;}
.xc_c00262{left:316.080000px;}
.x43_c00262{left:322.198785px;}
.x39_c00262{left:329.039385px;}
.x2d_c00262{left:338.399850px;}
.x1c_c00262{left:348.839535px;}
.x25_c00262{left:352.079385px;}
.x2e_c00262{left:353.158785px;}
.x26_c00262{left:367.919535px;}
.xd_c00262{left:374.040000px;}
.x3a_c00262{left:383.398635px;}
.xe_c00262{left:422.639700px;}
.xf_c00262{left:443.878320px;}
.x3b_c00262{left:450.359850px;}
.x10_c00262{left:461.519670px;}
.x35_c00262{left:469.798920px;}
.x1d_c00262{left:478.439250px;}
.x36_c00262{left:493.918350px;}
.x4_c00262{left:498.959385px;}
.x3c_c00262{left:515.158770px;}
.x1e_c00262{left:516.599070px;}
.x13_c00262{left:531.359850px;}
.x5_c00262{left:539.639100px;}
.x14_c00262{left:552.598530px;}
.x30_c00262{left:556.919535px;}
.x45_c00262{left:564.839535px;}
.x3d_c00262{left:566.279850px;}
.x15_c00262{left:568.079400px;}
.x31_c00262{left:572.039385px;}
.x1f_c00262{left:573.118785px;}
.x46_c00262{left:582.479235px;}
.x20_c00262{left:590.039985px;}
.x3e_c00262{left:592.198785px;}
.x27_c00262{left:596.519670px;}
.x6_c00262{left:606.598530px;}
.x48_c00262{left:618.119385px;}
.x7_c00262{left:622.799520px;}
.x3f_c00262{left:641.879520px;}
.x49_c00262{left:643.319820px;}
.x28_c00262{left:654.838950px;}
.x32_c00262{left:663.838530px;}
.x2_c00262{left:667.080000px;}
.x21_c00262{left:670.679070px;}
.x3_c00262{left:681.118785px;}
.x22_c00262{left:692.639700px;}
.x33_c00262{left:702.718545px;}
.x40_c00262{left:706.319235px;}
.x47_c00262{left:724.679070px;}
.x11_c00262{left:726.839535px;}
.x12_c00262{left:741.959385px;}
.x34_c00262{left:763.918350px;}
.x2f_c00262{left:769.679715px;}
.x41_c00262{left:771.120030px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls1a_c00262{letter-spacing:-7.924000pt;}
.ls2a_c00262{letter-spacing:-7.266700pt;}
.lsf_c00262{letter-spacing:-6.714400pt;}
.lsa_c00262{letter-spacing:-6.601000pt;}
.ls11_c00262{letter-spacing:-6.554753pt;}
.ls13_c00262{letter-spacing:-6.112800pt;}
.ls20_c00262{letter-spacing:-5.997200pt;}
.ls2_c00262{letter-spacing:-5.943000pt;}
.ls1c_c00262{letter-spacing:-5.294933pt;}
.lsd_c00262{letter-spacing:-5.285000pt;}
.ls1e_c00262{letter-spacing:-4.625000pt;}
.lsb_c00262{letter-spacing:-4.619300pt;}
.ls1f_c00262{letter-spacing:-4.188800pt;}
.ls9_c00262{letter-spacing:-3.961300pt;}
.ls28_c00262{letter-spacing:-3.526667pt;}
.ls5_c00262{letter-spacing:-3.304000pt;}
.ls1d_c00262{letter-spacing:-3.176280pt;}
.ls21_c00262{letter-spacing:-2.884000pt;}
.ls19_c00262{letter-spacing:-2.767733pt;}
.ls3_c00262{letter-spacing:-2.639000pt;}
.ls26_c00262{letter-spacing:-2.100000pt;}
.ls1b_c00262{letter-spacing:-2.075800pt;}
.ls27_c00262{letter-spacing:-1.999693pt;}
.ls4_c00262{letter-spacing:-1.981700pt;}
.ls24_c00262{letter-spacing:-1.476800pt;}
.ls18_c00262{letter-spacing:-1.330000pt;}
.ls6_c00262{letter-spacing:-1.323700pt;}
.ls22_c00262{letter-spacing:-0.666067pt;}
.ls7_c00262{letter-spacing:-0.658000pt;}
.ls17_c00262{letter-spacing:-0.653400pt;}
.ls15_c00262{letter-spacing:-0.639200pt;}
.ls29_c00262{letter-spacing:-0.634867pt;}
.lse_c00262{letter-spacing:-0.521333pt;}
.ls8_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.658000pt;}
.ls14_c00262{letter-spacing:0.802133pt;}
.lsc_c00262{letter-spacing:1.383153pt;}
.ls12_c00262{letter-spacing:1.421933pt;}
.ls23_c00262{letter-spacing:1.540000pt;}
.ls10_c00262{letter-spacing:2.142400pt;}
.ls16_c00262{letter-spacing:2.182400pt;}
.ls25_c00262{letter-spacing:3.366000pt;}
.ls2b_c00262{letter-spacing:3.646933pt;}
.ls1_c00262{letter-spacing:4.619300pt;}
.ws0_c00262{word-spacing:0.000000pt;}
._12_c00262{margin-left:-35.317387pt;}
._1c_c00262{margin-left:-14.288598pt;}
._a_c00262{margin-left:-11.507630pt;}
._b_c00262{margin-left:-9.751026pt;}
._13_c00262{margin-left:-6.225245pt;}
._11_c00262{margin-left:-5.247609pt;}
._3_c00262{margin-left:-3.863498pt;}
._1_c00262{margin-left:-1.711143pt;}
._e_c00262{width:0.975206pt;}
._2_c00262{width:2.569238pt;}
._7_c00262{width:3.746228pt;}
._6_c00262{width:4.734642pt;}
._0_c00262{width:6.468053pt;}
._c_c00262{width:7.930168pt;}
._4_c00262{width:8.927179pt;}
._d_c00262{width:9.933753pt;}
._5_c00262{width:10.915747pt;}
._10_c00262{width:12.004921pt;}
._8_c00262{width:13.484628pt;}
._9_c00262{width:14.456836pt;}
._17_c00262{width:15.631713pt;}
._14_c00262{width:16.678570pt;}
._16_c00262{width:17.946468pt;}
._1d_c00262{width:19.554064pt;}
._f_c00262{width:20.730157pt;}
._1a_c00262{width:21.788557pt;}
._19_c00262{width:23.215711pt;}
._15_c00262{width:24.723868pt;}
._18_c00262{width:27.336466pt;}
._1b_c00262{width:30.188940pt;}
.fs5_c00262{font-size:61.333333pt;}
.fs7_c00262{font-size:62.666667pt;}
.fsb_c00262{font-size:64.000000pt;}
.fsc_c00262{font-size:66.000000pt;}
.fsa_c00262{font-size:68.000000pt;}
.fs2_c00262{font-size:68.666667pt;}
.fs8_c00262{font-size:69.333333pt;}
.fs0_c00262{font-size:70.000000pt;}
.fs3_c00262{font-size:71.333333pt;}
.fs9_c00262{font-size:72.000000pt;}
.fs4_c00262{font-size:73.333333pt;}
.fse_c00262{font-size:74.000000pt;}
.fs1_c00262{font-size:75.333333pt;}
.fsd_c00262{font-size:90.666667pt;}
.fs6_c00262{font-size:102.666667pt;}
.y0_c00262{bottom:0.000000pt;}
.y2d_c00262{bottom:207.999840pt;}
.y2c_c00262{bottom:234.559587pt;}
.y2b_c00262{bottom:234.559760pt;}
.y29_c00262{bottom:260.798787pt;}
.y2a_c00262{bottom:260.799333pt;}
.y28_c00262{bottom:286.719813pt;}
.y27_c00262{bottom:339.839320pt;}
.y26_c00262{bottom:339.839707pt;}
.y25_c00262{bottom:359.039067pt;}
.y24_c00262{bottom:378.559573pt;}
.y23_c00262{bottom:397.759320pt;}
.y22_c00262{bottom:416.958907pt;}
.y20_c00262{bottom:435.838933pt;}
.y21_c00262{bottom:435.839320pt;}
.y1e_c00262{bottom:454.719347pt;}
.y1f_c00262{bottom:454.719720pt;}
.y1d_c00262{bottom:473.600133pt;}
.y1b_c00262{bottom:492.477707pt;}
.y1c_c00262{bottom:492.479040pt;}
.y1a_c00262{bottom:511.358507pt;}
.y19_c00262{bottom:530.239320pt;}
.y18_c00262{bottom:549.120120pt;}
.y17_c00262{bottom:549.120667pt;}
.y16_c00262{bottom:567.999613pt;}
.y15_c00262{bottom:586.559973pt;}
.y13_c00262{bottom:639.679653pt;}
.y14_c00262{bottom:639.679733pt;}
.y12_c00262{bottom:666.559573pt;}
.y11_c00262{bottom:720.319333pt;}
.y10_c00262{bottom:720.320213pt;}
.yf_c00262{bottom:746.559800pt;}
.yd_c00262{bottom:773.119507pt;}
.ye_c00262{bottom:773.119547pt;}
.yc_c00262{bottom:799.999427pt;}
.yb_c00262{bottom:800.001200pt;}
.ya_c00262{bottom:826.240787pt;}
.y9_c00262{bottom:852.800533pt;}
.y8_c00262{bottom:879.999027pt;}
.y7_c00262{bottom:879.999467pt;}
.y6_c00262{bottom:933.120853pt;}
.y5_c00262{bottom:960.319333pt;}
.y4_c00262{bottom:960.319493pt;}
.y3_c00262{bottom:986.559080pt;}
.y2_c00262{bottom:986.559800pt;}
.y1_c00262{bottom:1013.119547pt;}
.h10_c00262{height:62.812500pt;}
.h7_c00262{height:63.968750pt;}
.h11_c00262{height:64.775391pt;}
.h9_c00262{height:65.359375pt;}
.hf_c00262{height:66.738281pt;}
.h3_c00262{height:67.392578pt;}
.ha_c00262{height:68.046875pt;}
.h17_c00262{height:68.531250pt;}
.h1_c00262{height:68.701172pt;}
.h15_c00262{height:69.203125pt;}
.h16_c00262{height:69.875000pt;}
.h6_c00262{height:69.974935pt;}
.h4_c00262{height:70.009766pt;}
.h14_c00262{height:70.546875pt;}
.he_c00262{height:71.890625pt;}
.h5_c00262{height:71.972656pt;}
.hd_c00262{height:72.562500pt;}
.h13_c00262{height:72.626953pt;}
.hc_c00262{height:73.906250pt;}
.h2_c00262{height:73.935547pt;}
.hb_c00262{height:74.450521pt;}
.h12_c00262{height:94.562500pt;}
.h8_c00262{height:107.078125pt;}
.h0_c00262{height:1122.666667pt;}
.w0_c00262{width:793.333333pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:120.638667pt;}
.x44_c00262{left:121.918800pt;}
.x4a_c00262{left:122.880453pt;}
.xa_c00262{left:140.480000pt;}
.x18_c00262{left:144.959467pt;}
.x23_c00262{left:161.919480pt;}
.x37_c00262{left:168.638667pt;}
.x2c_c00262{left:169.600000pt;}
.x29_c00262{left:170.559067pt;}
.x2a_c00262{left:183.679733pt;}
.x19_c00262{left:185.919453pt;}
.xb_c00262{left:195.839333pt;}
.x2b_c00262{left:200.318787pt;}
.x8_c00262{left:201.599067pt;}
.x1a_c00262{left:207.679733pt;}
.x9_c00262{left:214.079587pt;}
.x38_c00262{left:222.399867pt;}
.x24_c00262{left:226.879333pt;}
.x16_c00262{left:229.440000pt;}
.x1b_c00262{left:249.279720pt;}
.x17_c00262{left:252.799867pt;}
.x42_c00262{left:258.878920pt;}
.xc_c00262{left:280.960000pt;}
.x43_c00262{left:286.398920pt;}
.x39_c00262{left:292.479453pt;}
.x2d_c00262{left:300.799867pt;}
.x1c_c00262{left:310.079587pt;}
.x25_c00262{left:312.959453pt;}
.x2e_c00262{left:313.918920pt;}
.x26_c00262{left:327.039587pt;}
.xd_c00262{left:332.480000pt;}
.x3a_c00262{left:340.798787pt;}
.xe_c00262{left:375.679733pt;}
.xf_c00262{left:394.558507pt;}
.x3b_c00262{left:400.319867pt;}
.x10_c00262{left:410.239707pt;}
.x35_c00262{left:417.599040pt;}
.x1d_c00262{left:425.279333pt;}
.x36_c00262{left:439.038533pt;}
.x4_c00262{left:443.519453pt;}
.x3c_c00262{left:457.918907pt;}
.x1e_c00262{left:459.199173pt;}
.x13_c00262{left:472.319867pt;}
.x5_c00262{left:479.679200pt;}
.x14_c00262{left:491.198693pt;}
.x30_c00262{left:495.039587pt;}
.x45_c00262{left:502.079587pt;}
.x3d_c00262{left:503.359867pt;}
.x15_c00262{left:504.959467pt;}
.x31_c00262{left:508.479453pt;}
.x1f_c00262{left:509.438920pt;}
.x46_c00262{left:517.759320pt;}
.x20_c00262{left:524.479987pt;}
.x3e_c00262{left:526.398920pt;}
.x27_c00262{left:530.239707pt;}
.x6_c00262{left:539.198693pt;}
.x48_c00262{left:549.439453pt;}
.x7_c00262{left:553.599573pt;}
.x3f_c00262{left:570.559573pt;}
.x49_c00262{left:571.839840pt;}
.x28_c00262{left:582.079067pt;}
.x32_c00262{left:590.078693pt;}
.x2_c00262{left:592.960000pt;}
.x21_c00262{left:596.159173pt;}
.x3_c00262{left:605.438920pt;}
.x22_c00262{left:615.679733pt;}
.x33_c00262{left:624.638707pt;}
.x40_c00262{left:627.839320pt;}
.x47_c00262{left:644.159173pt;}
.x11_c00262{left:646.079587pt;}
.x12_c00262{left:659.519453pt;}
.x34_c00262{left:679.038533pt;}
.x2f_c00262{left:684.159747pt;}
.x41_c00262{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_680f29c7ee78e9dacac34579.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_7248d4a09efebb99067b1247.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.364746;font-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_c00263{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls7_c00263{letter-spacing:-8.175038px;}
.ls6_c00263{letter-spacing:-7.426125px;}
.ls13_c00263{letter-spacing:-6.923475px;}
.ls11_c00263{letter-spacing:-6.335325px;}
.ls5_c00263{letter-spacing:-5.945625px;}
.ls8_c00263{letter-spacing:-5.196713px;}
.lsc_c00263{letter-spacing:-4.418663px;}
.ls15_c00263{letter-spacing:-4.340925px;}
.ls12_c00263{letter-spacing:-4.334498px;}
.lsb_c00263{letter-spacing:-3.958650px;}
.lsf_c00263{letter-spacing:-3.717000px;}
.ls2_c00263{letter-spacing:-2.968875px;}
.lse_c00263{letter-spacing:-2.271878px;}
.ls3_c00263{letter-spacing:-2.229413px;}
.ls4_c00263{letter-spacing:-1.501478px;}
.ls1_c00263{letter-spacing:-1.489163px;}
.ls14_c00263{letter-spacing:-1.380600px;}
.ls9_c00263{letter-spacing:-0.740250px;}
.lsd_c00263{letter-spacing:0.000000px;}
.lsa_c00263{letter-spacing:0.831668px;}
.ls10_c00263{letter-spacing:3.705075px;}
.ls0_c00263{letter-spacing:8.914500px;}
.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;}
._4_c00263{margin-left:-17.153592px;}
._e_c00263{margin-left:-3.370441px;}
._d_c00263{margin-left:-1.068103px;}
._12_c00263{width:1.103644px;}
._0_c00263{width:2.314997px;}
._2_c00263{width:3.541328px;}
._1_c00263{width:5.291762px;}
._3_c00263{width:7.950139px;}
._c_c00263{width:9.041674px;}
._6_c00263{width:10.205792px;}
._b_c00263{width:11.433802px;}
._7_c00263{width:13.947650px;}
._a_c00263{width:16.030127px;}
._f_c00263{width:18.223107px;}
._11_c00263{width:19.440983px;}
._5_c00263{width:21.608762px;}
._10_c00263{width:22.823696px;}
._9_c00263{width:24.723087px;}
._8_c00263{width:30.004805px;}
.fc0_c00263{color:transparent;}
.fs6_c00263{font-size:77.250000px;}
.fs8_c00263{font-size:78.000000px;}
.fs0_c00263{font-size:78.750000px;}
.fs1_c00263{font-size:80.250000px;}
.fs9_c00263{font-size:81.750000px;}
.fs5_c00263{font-size:82.500000px;}
.fs2_c00263{font-size:83.250000px;}
.fs4_c00263{font-size:84.750000px;}
.fs3_c00263{font-size:85.500000px;}
.fs7_c00263{font-size:87.750000px;}
.y0_c00263{bottom:0.000000px;}
.ya_c00263{bottom:962.280390px;}
.y9_c00263{bottom:992.159370px;}
.y8_c00263{bottom:992.159550px;}
.y7_c00263{bottom:1021.679070px;}
.y6_c00263{bottom:1051.559685px;}
.y5_c00263{bottom:1051.559745px;}
.y4_c00263{bottom:1082.158035px;}
.y2_c00263{bottom:1111.319145px;}
.y3_c00263{bottom:1111.319190px;}
.y1_c00263{bottom:1141.559055px;}
.h8_c00263{height:75.816650px;}
.ha_c00263{height:76.552734px;}
.h1_c00263{height:77.288818px;}
.h2_c00263{height:78.760986px;}
.hb_c00263{height:80.233154px;}
.h6_c00263{height:80.969238px;}
.h3_c00263{height:81.705322px;}
.h7_c00263{height:82.274414px;}
.h5_c00263{height:83.177490px;}
.h4_c00263{height:83.913574px;}
.h9_c00263{height:86.721680px;}
.h0_c00263{height:1263.000000px;}
.w0_c00263{width:892.500000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:140.398665px;}
.x2_c00263{left:170.279250px;}
.x14_c00263{left:228.959400px;}
.x3_c00263{left:232.199385px;}
.x15_c00263{left:260.639700px;}
.x4_c00263{left:266.758500px;}
.x5_c00263{left:327.239850px;}
.xd_c00263{left:329.759535px;}
.xe_c00263{left:346.679100px;}
.x6_c00263{left:366.120000px;}
.x7_c00263{left:425.879520px;}
.x8_c00263{left:453.238770px;}
.xf_c00263{left:488.878920px;}
.x10_c00263{left:538.918950px;}
.x9_c00263{left:587.518620px;}
.xa_c00263{left:604.078770px;}
.xb_c00263{left:651.239820px;}
.x11_c00263{left:700.918950px;}
.x12_c00263{left:714.959385px;}
.x13_c00263{left:740.159820px;}
.xc_c00263{left:764.999355px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls7_c00263{letter-spacing:-7.266700pt;}
.ls6_c00263{letter-spacing:-6.601000pt;}
.ls13_c00263{letter-spacing:-6.154200pt;}
.ls11_c00263{letter-spacing:-5.631400pt;}
.ls5_c00263{letter-spacing:-5.285000pt;}
.ls8_c00263{letter-spacing:-4.619300pt;}
.lsc_c00263{letter-spacing:-3.927700pt;}
.ls15_c00263{letter-spacing:-3.858600pt;}
.ls12_c00263{letter-spacing:-3.852887pt;}
.lsb_c00263{letter-spacing:-3.518800pt;}
.lsf_c00263{letter-spacing:-3.304000pt;}
.ls2_c00263{letter-spacing:-2.639000pt;}
.lse_c00263{letter-spacing:-2.019447pt;}
.ls3_c00263{letter-spacing:-1.981700pt;}
.ls4_c00263{letter-spacing:-1.334647pt;}
.ls1_c00263{letter-spacing:-1.323700pt;}
.ls14_c00263{letter-spacing:-1.227200pt;}
.ls9_c00263{letter-spacing:-0.658000pt;}
.lsd_c00263{letter-spacing:0.000000pt;}
.lsa_c00263{letter-spacing:0.739260pt;}
.ls10_c00263{letter-spacing:3.293400pt;}
.ls0_c00263{letter-spacing:7.924000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
._4_c00263{margin-left:-15.247638pt;}
._e_c00263{margin-left:-2.995947pt;}
._d_c00263{margin-left:-0.949425pt;}
._12_c00263{width:0.981017pt;}
._0_c00263{width:2.057775pt;}
._2_c00263{width:3.147847pt;}
._1_c00263{width:4.703789pt;}
._3_c00263{width:7.066791pt;}
._c_c00263{width:8.037043pt;}
._6_c00263{width:9.071815pt;}
._b_c00263{width:10.163379pt;}
._7_c00263{width:12.397911pt;}
._a_c00263{width:14.249002pt;}
._f_c00263{width:16.198317pt;}
._11_c00263{width:17.280874pt;}
._5_c00263{width:19.207789pt;}
._10_c00263{width:20.287730pt;}
._9_c00263{width:21.976077pt;}
._8_c00263{width:26.670938pt;}
.fs6_c00263{font-size:68.666667pt;}
.fs8_c00263{font-size:69.333333pt;}
.fs0_c00263{font-size:70.000000pt;}
.fs1_c00263{font-size:71.333333pt;}
.fs9_c00263{font-size:72.666667pt;}
.fs5_c00263{font-size:73.333333pt;}
.fs2_c00263{font-size:74.000000pt;}
.fs4_c00263{font-size:75.333333pt;}
.fs3_c00263{font-size:76.000000pt;}
.fs7_c00263{font-size:78.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.ya_c00263{bottom:855.360347pt;}
.y9_c00263{bottom:881.919440pt;}
.y8_c00263{bottom:881.919600pt;}
.y7_c00263{bottom:908.159173pt;}
.y6_c00263{bottom:934.719720pt;}
.y5_c00263{bottom:934.719773pt;}
.y4_c00263{bottom:961.918253pt;}
.y2_c00263{bottom:987.839240pt;}
.y3_c00263{bottom:987.839280pt;}
.y1_c00263{bottom:1014.719160pt;}
.h8_c00263{height:67.392578pt;}
.ha_c00263{height:68.046875pt;}
.h1_c00263{height:68.701172pt;}
.h2_c00263{height:70.009766pt;}
.hb_c00263{height:71.318359pt;}
.h6_c00263{height:71.972656pt;}
.h3_c00263{height:72.626953pt;}
.h7_c00263{height:73.132813pt;}
.h5_c00263{height:73.935547pt;}
.h4_c00263{height:74.589844pt;}
.h9_c00263{height:77.085938pt;}
.h0_c00263{height:1122.666667pt;}
.w0_c00263{width:793.333333pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:124.798813pt;}
.x2_c00263{left:151.359333pt;}
.x14_c00263{left:203.519467pt;}
.x3_c00263{left:206.399453pt;}
.x15_c00263{left:231.679733pt;}
.x4_c00263{left:237.118667pt;}
.x5_c00263{left:290.879867pt;}
.xd_c00263{left:293.119587pt;}
.xe_c00263{left:308.159200pt;}
.x6_c00263{left:325.440000pt;}
.x7_c00263{left:378.559573pt;}
.x8_c00263{left:402.878907pt;}
.xf_c00263{left:434.559040pt;}
.x10_c00263{left:479.039067pt;}
.x9_c00263{left:522.238773pt;}
.xa_c00263{left:536.958907pt;}
.xb_c00263{left:578.879840pt;}
.x11_c00263{left:623.039067pt;}
.x12_c00263{left:635.519453pt;}
.x13_c00263{left:657.919840pt;}
.xc_c00263{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6fc38a17f371c0c514c37b59.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.364746;font-style:normal;font-weight:normal;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_41a9d3f77c0ac01344d996e6.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_48b514c8086f5c6290f41db7.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_c37d8ec5aee1c37722e9f920.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00264{transform:matrix(0.023902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023902,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.028523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028523,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.033439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033439,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.036275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036275,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.037671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037671,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.043651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043651,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.050761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050761,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.052920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052920,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.060284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060284,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.085106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085106,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.098765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098765,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.099010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099010,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.112981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112981,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115385,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.123711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123711,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.128947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128947,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.131188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131188,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.131720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131720,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.134831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134831,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.140449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140449,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.149457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149457,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172222,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.179348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179348,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.180723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180723,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00264{vertical-align:-1.444200px;}
.v0_c00264{vertical-align:0.000000px;}
.ls8_c00264{letter-spacing:-14.634900px;}
.ls13_c00264{letter-spacing:-14.154750px;}
.ls10_c00264{letter-spacing:-9.967275px;}
.lsa_c00264{letter-spacing:-8.544375px;}
.lsd_c00264{letter-spacing:-3.767400px;}
.lsf_c00264{letter-spacing:-2.685375px;}
.lsb_c00264{letter-spacing:-1.422900px;}
.lsc_c00264{letter-spacing:-1.038953px;}
.ls9_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:1.422900px;}
.ls14_c00264{letter-spacing:1.453500px;}
.ls1_c00264{letter-spacing:2.845800px;}
.ls19_c00264{letter-spacing:3.717900px;}
.ls12_c00264{letter-spacing:4.268700px;}
.ls6_c00264{letter-spacing:4.957200px;}
.ls3_c00264{letter-spacing:5.691600px;}
.ls7_c00264{letter-spacing:6.197108px;}
.ls5_c00264{letter-spacing:7.441875px;}
.ls17_c00264{letter-spacing:8.343750px;}
.ls16_c00264{letter-spacing:8.544375px;}
.ls4_c00264{letter-spacing:8.681175px;}
.ls18_c00264{letter-spacing:9.093750px;}
.ls1a_c00264{letter-spacing:9.920475px;}
.lse_c00264{letter-spacing:21.351173px;}
.ls11_c00264{letter-spacing:24.195578px;}
.ls2_c00264{letter-spacing:41.278050px;}
.ls15_c00264{letter-spacing:1149.463725px;}
.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;}
._d_c00264{margin-left:-77.199585px;}
._9_c00264{margin-left:-4.191947px;}
._f_c00264{margin-left:-3.055449px;}
._0_c00264{margin-left:-1.367214px;}
._8_c00264{width:2.050479px;}
._a_c00264{width:4.184886px;}
._2_c00264{width:5.935981px;}
._1_c00264{width:7.295338px;}
._7_c00264{width:8.648772px;}
._3_c00264{width:10.239186px;}
._6_c00264{width:12.170777px;}
._4_c00264{width:14.012747px;}
._1f_c00264{width:16.747174px;}
._e_c00264{width:51.022267px;}
._c_c00264{width:53.288886px;}
._14_c00264{width:95.209149px;}
._15_c00264{width:97.511183px;}
._10_c00264{width:99.303388px;}
._13_c00264{width:100.677662px;}
._11_c00264{width:106.960515px;}
._5_c00264{width:140.079295px;}
._b_c00264{width:143.273105px;}
._12_c00264{width:237.254881px;}
._17_c00264{width:242.751471px;}
._1c_c00264{width:245.126324px;}
._18_c00264{width:249.889025px;}
._1d_c00264{width:251.442031px;}
._1b_c00264{width:253.839499px;}
._1e_c00264{width:256.243810px;}
._21_c00264{width:258.630764px;}
._19_c00264{width:260.133087px;}
._1a_c00264{width:264.911360px;}
._16_c00264{width:275.136824px;}
._20_c00264{width:278.854724px;}
._22_c00264{width:528.391040px;}
.fc0_c00264{color:transparent;}
.fs11_c00264{font-size:43.500000px;}
.fs5_c00264{font-size:60.000000px;}
.fsc_c00264{font-size:60.750000px;}
.fs4_c00264{font-size:62.250000px;}
.fs2_c00264{font-size:66.750000px;}
.fs6_c00264{font-size:67.500000px;}
.fs1_c00264{font-size:69.000000px;}
.fs0_c00264{font-size:69.750000px;}
.fs8_c00264{font-size:70.500000px;}
.fs7_c00264{font-size:71.250000px;}
.fs14_c00264{font-size:72.750000px;}
.fs3_c00264{font-size:75.750000px;}
.fs16_c00264{font-size:78.000000px;}
.fs9_c00264{font-size:100.500000px;}
.fsb_c00264{font-size:102.750000px;}
.fsd_c00264{font-size:105.750000px;}
.fs10_c00264{font-size:109.500000px;}
.fsa_c00264{font-size:111.750000px;}
.fse_c00264{font-size:117.750000px;}
.fs12_c00264{font-size:147.750000px;}
.fs15_c00264{font-size:189.000000px;}
.fs13_c00264{font-size:191.250000px;}
.fsf_c00264{font-size:290.250000px;}
.y0_c00264{bottom:0.000000px;}
.y22_c00264{bottom:209.159385px;}
.y1e_c00264{bottom:256.320300px;}
.y1d_c00264{bottom:279.719535px;}
.y1c_c00264{bottom:303.118785px;}
.y1b_c00264{bottom:326.519595px;}
.y1a_c00264{bottom:350.280435px;}
.y19_c00264{bottom:373.319850px;}
.y16_c00264{bottom:408.599070px;}
.y15_c00264{bottom:420.479235px;}
.y14_c00264{bottom:432.359250px;}
.y10_c00264{bottom:491.759100px;}
.yc_c00264{bottom:515.518530px;}
.yd_c00264{bottom:515.519670px;}
.ya_c00264{bottom:573.479250px;}
.y13_c00264{bottom:736.559100px;}
.yf_c00264{bottom:761.039385px;}
.yb_c00264{bottom:772.918815px;}
.ye_c00264{bottom:784.079955px;}
.y7_c00264{bottom:844.199775px;}
.y8_c00264{bottom:844.199805px;}
.y5_c00264{bottom:867.959535px;}
.y6_c00264{bottom:867.960015px;}
.y2_c00264{bottom:915.480285px;}
.y27_c00264{bottom:960.479190px;}
.y25_c00264{bottom:960.840090px;}
.y4_c00264{bottom:960.840495px;}
.y18_c00264{bottom:961.199340px;}
.y24_c00264{bottom:961.560240px;}
.y20_c00264{bottom:984.239220px;}
.y17_c00264{bottom:984.600135px;}
.y23_c00264{bottom:984.958920px;}
.y26_c00264{bottom:984.958950px;}
.y21_c00264{bottom:984.959385px;}
.y11_c00264{bottom:1007.638890px;}
.y1f_c00264{bottom:1007.999355px;}
.y12_c00264{bottom:1008.360255px;}
.y3_c00264{bottom:1020.241245px;}
.y9_c00264{bottom:1031.759355px;}
.y1_c00264{bottom:1090.798920px;}
.h13_c00264{height:45.369141px;}
.h6_c00264{height:59.296875px;}
.he_c00264{height:63.360352px;}
.h5_c00264{height:64.924805px;}
.h3_c00264{height:65.967773px;}
.h7_c00264{height:66.708984px;}
.h2_c00264{height:68.191406px;}
.h1_c00264{height:68.932617px;}
.h9_c00264{height:69.673828px;}
.h8_c00264{height:70.415039px;}
.h16_c00264{height:71.897461px;}
.h4_c00264{height:74.862305px;}
.h18_c00264{height:77.085938px;}
.ha_c00264{height:79.004883px;}
.hf_c00264{height:103.787842px;}
.hb_c00264{height:104.818359px;}
.hd_c00264{height:107.165039px;}
.h12_c00264{height:108.216797px;}
.hc_c00264{height:110.440430px;}
.h10_c00264{height:116.370117px;}
.h14_c00264{height:154.098633px;}
.h17_c00264{height:197.121094px;}
.h15_c00264{height:199.467773px;}
.h11_c00264{height:302.721680px;}
.h0_c00264{height:1263.000000px;}
.w0_c00264{width:892.500000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:184.679100px;}
.x1c_c00264{left:186.478665px;}
.x6_c00264{left:191.519685px;}
.x2b_c00264{left:197.638500px;}
.x31_c00264{left:199.078785px;}
.x7_c00264{left:202.679805px;}
.x1e_c00264{left:203.759100px;}
.xc_c00264{left:219.239850px;}
.x2_c00264{left:225.719535px;}
.xd_c00264{left:242.639100px;}
.x3_c00264{left:249.118785px;}
.xf_c00264{left:295.918950px;}
.x21_c00264{left:306.358635px;}
.x22_c00264{left:316.080000px;}
.x10_c00264{left:319.319850px;}
.x20_c00264{left:320.399235px;}
.x4_c00264{left:324.718500px;}
.x1d_c00264{left:326.878950px;}
.x8_c00264{left:330.118785px;}
.x29_c00264{left:331.199850px;}
.x5_c00264{left:342.719100px;}
.x2a_c00264{left:348.478635px;}
.x9_c00264{left:354.599100px;}
.x1b_c00264{left:365.759100px;}
.x12_c00264{left:367.558635px;}
.x30_c00264{left:371.159385px;}
.x13_c00264{left:383.398635px;}
.x23_c00264{left:385.918350px;}
.x14_c00264{left:408.239820px;}
.x32_c00264{left:412.559595px;}
.x33_c00264{left:418.318770px;}
.x11_c00264{left:423.358995px;}
.x15_c00264{left:424.439250px;}
.x2c_c00264{left:425.879055px;}
.x2d_c00264{left:446.399820px;}
.x16_c00264{left:449.278800px;}
.x34_c00264{left:452.518620px;}
.x24_c00264{left:461.519670px;}
.x17_c00264{left:464.398635px;}
.x18_c00264{left:489.599070px;}
.x36_c00264{left:493.558440px;}
.x37_c00264{left:499.318770px;}
.x19_c00264{left:505.798515px;}
.xe_c00264{left:510.119340px;}
.xa_c00264{left:521.999400px;}
.x35_c00264{left:528.479235px;}
.x3a_c00264{left:533.879520px;}
.x25_c00264{left:537.119385px;}
.xb_c00264{left:545.398635px;}
.x26_c00264{left:558.359850px;}
.x38_c00264{left:575.279250px;}
.x39_c00264{left:592.918950px;}
.x1f_c00264{left:613.439250px;}
.x3b_c00264{left:615.599670px;}
.x3c_c00264{left:633.959385px;}
.x27_c00264{left:656.999400px;}
.x28_c00264{left:686.159820px;}
.x1a_c00264{left:691.558845px;}
.x2e_c00264{left:696.958920px;}
.x2f_c00264{left:727.198785px;}
@media print{
.v1_c00264{vertical-align:-1.283733pt;}
.v0_c00264{vertical-align:0.000000pt;}
.ls8_c00264{letter-spacing:-13.008800pt;}
.ls13_c00264{letter-spacing:-12.582000pt;}
.ls10_c00264{letter-spacing:-8.859800pt;}
.lsa_c00264{letter-spacing:-7.595000pt;}
.lsd_c00264{letter-spacing:-3.348800pt;}
.lsf_c00264{letter-spacing:-2.387000pt;}
.lsb_c00264{letter-spacing:-1.264800pt;}
.lsc_c00264{letter-spacing:-0.923513pt;}
.ls9_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:1.264800pt;}
.ls14_c00264{letter-spacing:1.292000pt;}
.ls1_c00264{letter-spacing:2.529600pt;}
.ls19_c00264{letter-spacing:3.304800pt;}
.ls12_c00264{letter-spacing:3.794400pt;}
.ls6_c00264{letter-spacing:4.406400pt;}
.ls3_c00264{letter-spacing:5.059200pt;}
.ls7_c00264{letter-spacing:5.508540pt;}
.ls5_c00264{letter-spacing:6.615000pt;}
.ls17_c00264{letter-spacing:7.416667pt;}
.ls16_c00264{letter-spacing:7.595000pt;}
.ls4_c00264{letter-spacing:7.716600pt;}
.ls18_c00264{letter-spacing:8.083333pt;}
.ls1a_c00264{letter-spacing:8.818200pt;}
.lse_c00264{letter-spacing:18.978820pt;}
.ls11_c00264{letter-spacing:21.507180pt;}
.ls2_c00264{letter-spacing:36.691600pt;}
.ls15_c00264{letter-spacing:1021.745533pt;}
.ws0_c00264{word-spacing:0.000000pt;}
._d_c00264{margin-left:-68.621853pt;}
._9_c00264{margin-left:-3.726175pt;}
._f_c00264{margin-left:-2.715954pt;}
._0_c00264{margin-left:-1.215301pt;}
._8_c00264{width:1.822648pt;}
._a_c00264{width:3.719899pt;}
._2_c00264{width:5.276428pt;}
._1_c00264{width:6.484744pt;}
._7_c00264{width:7.687798pt;}
._3_c00264{width:9.101499pt;}
._6_c00264{width:10.818469pt;}
._4_c00264{width:12.455775pt;}
._1f_c00264{width:14.886377pt;}
._e_c00264{width:45.353127pt;}
._c_c00264{width:47.367899pt;}
._14_c00264{width:84.630354pt;}
._15_c00264{width:86.676607pt;}
._10_c00264{width:88.269678pt;}
._13_c00264{width:89.491256pt;}
._11_c00264{width:95.076013pt;}
._5_c00264{width:124.514929pt;}
._b_c00264{width:127.353871pt;}
._12_c00264{width:210.893228pt;}
._17_c00264{width:215.779085pt;}
._1c_c00264{width:217.890066pt;}
._18_c00264{width:222.123578pt;}
._1d_c00264{width:223.504027pt;}
._1b_c00264{width:225.635110pt;}
._1e_c00264{width:227.772276pt;}
._21_c00264{width:229.894013pt;}
._19_c00264{width:231.229411pt;}
._1a_c00264{width:235.476764pt;}
._16_c00264{width:244.566066pt;}
._20_c00264{width:247.870866pt;}
._22_c00264{width:469.680924pt;}
.fs11_c00264{font-size:38.666667pt;}
.fs5_c00264{font-size:53.333333pt;}
.fsc_c00264{font-size:54.000000pt;}
.fs4_c00264{font-size:55.333333pt;}
.fs2_c00264{font-size:59.333333pt;}
.fs6_c00264{font-size:60.000000pt;}
.fs1_c00264{font-size:61.333333pt;}
.fs0_c00264{font-size:62.000000pt;}
.fs8_c00264{font-size:62.666667pt;}
.fs7_c00264{font-size:63.333333pt;}
.fs14_c00264{font-size:64.666667pt;}
.fs3_c00264{font-size:67.333333pt;}
.fs16_c00264{font-size:69.333333pt;}
.fs9_c00264{font-size:89.333333pt;}
.fsb_c00264{font-size:91.333333pt;}
.fsd_c00264{font-size:94.000000pt;}
.fs10_c00264{font-size:97.333333pt;}
.fsa_c00264{font-size:99.333333pt;}
.fse_c00264{font-size:104.666667pt;}
.fs12_c00264{font-size:131.333333pt;}
.fs15_c00264{font-size:168.000000pt;}
.fs13_c00264{font-size:170.000000pt;}
.fsf_c00264{font-size:258.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y22_c00264{bottom:185.919453pt;}
.y1e_c00264{bottom:227.840267pt;}
.y1d_c00264{bottom:248.639587pt;}
.y1c_c00264{bottom:269.438920pt;}
.y1b_c00264{bottom:290.239640pt;}
.y1a_c00264{bottom:311.360387pt;}
.y19_c00264{bottom:331.839867pt;}
.y16_c00264{bottom:363.199173pt;}
.y15_c00264{bottom:373.759320pt;}
.y14_c00264{bottom:384.319333pt;}
.y10_c00264{bottom:437.119200pt;}
.yc_c00264{bottom:458.238693pt;}
.yd_c00264{bottom:458.239707pt;}
.ya_c00264{bottom:509.759333pt;}
.y13_c00264{bottom:654.719200pt;}
.yf_c00264{bottom:676.479453pt;}
.yb_c00264{bottom:687.038947pt;}
.ye_c00264{bottom:696.959960pt;}
.y7_c00264{bottom:750.399800pt;}
.y8_c00264{bottom:750.399827pt;}
.y5_c00264{bottom:771.519587pt;}
.y6_c00264{bottom:771.520013pt;}
.y2_c00264{bottom:813.760253pt;}
.y27_c00264{bottom:853.759280pt;}
.y25_c00264{bottom:854.080080pt;}
.y4_c00264{bottom:854.080440pt;}
.y18_c00264{bottom:854.399413pt;}
.y24_c00264{bottom:854.720213pt;}
.y20_c00264{bottom:874.879307pt;}
.y17_c00264{bottom:875.200120pt;}
.y23_c00264{bottom:875.519040pt;}
.y26_c00264{bottom:875.519067pt;}
.y21_c00264{bottom:875.519453pt;}
.y11_c00264{bottom:895.679013pt;}
.y1f_c00264{bottom:895.999427pt;}
.y12_c00264{bottom:896.320227pt;}
.y3_c00264{bottom:906.881107pt;}
.y9_c00264{bottom:917.119427pt;}
.y1_c00264{bottom:969.599040pt;}
.h13_c00264{height:40.328125pt;}
.h6_c00264{height:52.708333pt;}
.he_c00264{height:56.320312pt;}
.h5_c00264{height:57.710938pt;}
.h3_c00264{height:58.638021pt;}
.h7_c00264{height:59.296875pt;}
.h2_c00264{height:60.614583pt;}
.h1_c00264{height:61.273438pt;}
.h9_c00264{height:61.932292pt;}
.h8_c00264{height:62.591146pt;}
.h16_c00264{height:63.908854pt;}
.h4_c00264{height:66.544271pt;}
.h18_c00264{height:68.520833pt;}
.ha_c00264{height:70.226562pt;}
.hf_c00264{height:92.255859pt;}
.hb_c00264{height:93.171875pt;}
.hd_c00264{height:95.257812pt;}
.h12_c00264{height:96.192708pt;}
.hc_c00264{height:98.169271pt;}
.h10_c00264{height:103.440104pt;}
.h14_c00264{height:136.976562pt;}
.h17_c00264{height:175.218750pt;}
.h15_c00264{height:177.304688pt;}
.h11_c00264{height:269.085938pt;}
.h0_c00264{height:1122.666667pt;}
.w0_c00264{width:793.333333pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:164.159200pt;}
.x1c_c00264{left:165.758813pt;}
.x6_c00264{left:170.239720pt;}
.x2b_c00264{left:175.678667pt;}
.x31_c00264{left:176.958920pt;}
.x7_c00264{left:180.159827pt;}
.x1e_c00264{left:181.119200pt;}
.xc_c00264{left:194.879867pt;}
.x2_c00264{left:200.639587pt;}
.xd_c00264{left:215.679200pt;}
.x3_c00264{left:221.438920pt;}
.xf_c00264{left:263.039067pt;}
.x21_c00264{left:272.318787pt;}
.x22_c00264{left:280.960000pt;}
.x10_c00264{left:283.839867pt;}
.x20_c00264{left:284.799320pt;}
.x4_c00264{left:288.638667pt;}
.x1d_c00264{left:290.559067pt;}
.x8_c00264{left:293.438920pt;}
.x29_c00264{left:294.399867pt;}
.x5_c00264{left:304.639200pt;}
.x2a_c00264{left:309.758787pt;}
.x9_c00264{left:315.199200pt;}
.x1b_c00264{left:325.119200pt;}
.x12_c00264{left:326.718787pt;}
.x30_c00264{left:329.919453pt;}
.x13_c00264{left:340.798787pt;}
.x23_c00264{left:343.038533pt;}
.x14_c00264{left:362.879840pt;}
.x32_c00264{left:366.719640pt;}
.x33_c00264{left:371.838907pt;}
.x11_c00264{left:376.319107pt;}
.x15_c00264{left:377.279333pt;}
.x2c_c00264{left:378.559160pt;}
.x2d_c00264{left:396.799840pt;}
.x16_c00264{left:399.358933pt;}
.x34_c00264{left:402.238773pt;}
.x24_c00264{left:410.239707pt;}
.x17_c00264{left:412.798787pt;}
.x18_c00264{left:435.199173pt;}
.x36_c00264{left:438.718613pt;}
.x37_c00264{left:443.838907pt;}
.x19_c00264{left:449.598680pt;}
.xe_c00264{left:453.439413pt;}
.xa_c00264{left:463.999467pt;}
.x35_c00264{left:469.759320pt;}
.x3a_c00264{left:474.559573pt;}
.x25_c00264{left:477.439453pt;}
.xb_c00264{left:484.798787pt;}
.x26_c00264{left:496.319867pt;}
.x38_c00264{left:511.359333pt;}
.x39_c00264{left:527.039067pt;}
.x1f_c00264{left:545.279333pt;}
.x3b_c00264{left:547.199707pt;}
.x3c_c00264{left:563.519453pt;}
.x27_c00264{left:583.999467pt;}
.x28_c00264{left:609.919840pt;}
.x1a_c00264{left:614.718973pt;}
.x2e_c00264{left:619.519040pt;}
.x2f_c00264{left:646.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e85e91de1cbc8478630c88c.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_b9b1eaaf55a4bc137f442c7c.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;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_7e6de817a51859b89f214ecb.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_1768f5de389ee681b0a90fee.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00265{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m20_c00265{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m21_c00265{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{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);}
.m1c_c00265{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{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_c00265{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m12_c00265{transform:matrix(0.318966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318966,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls1c_c00265{letter-spacing:-34.686900px;}
.ls2b_c00265{letter-spacing:-33.984900px;}
.ls15_c00265{letter-spacing:-28.030275px;}
.lsd_c00265{letter-spacing:-18.224250px;}
.ls1a_c00265{letter-spacing:-17.102550px;}
.ls1d_c00265{letter-spacing:-16.776000px;}
.ls1e_c00265{letter-spacing:-15.270360px;}
.ls10_c00265{letter-spacing:-14.082750px;}
.ls22_c00265{letter-spacing:-12.687675px;}
.lsa_c00265{letter-spacing:-12.069750px;}
.ls14_c00265{letter-spacing:-11.896425px;}
.ls23_c00265{letter-spacing:-8.914500px;}
.ls12_c00265{letter-spacing:-8.175038px;}
.ls19_c00265{letter-spacing:-7.496850px;}
.ls25_c00265{letter-spacing:-6.685875px;}
.ls21_c00265{letter-spacing:-5.996925px;}
.lsc_c00265{letter-spacing:-5.945625px;}
.ls1b_c00265{letter-spacing:-5.594475px;}
.ls5_c00265{letter-spacing:-5.196713px;}
.ls13_c00265{letter-spacing:-5.109375px;}
.ls16_c00265{letter-spacing:-4.631288px;}
.ls7_c00265{letter-spacing:-4.456463px;}
.lsb_c00265{letter-spacing:-3.717000px;}
.ls2d_c00265{letter-spacing:-3.031875px;}
.ls4_c00265{letter-spacing:-2.968875px;}
.ls17_c00265{letter-spacing:-2.793503px;}
.ls2c_c00265{letter-spacing:-2.385000px;}
.ls11_c00265{letter-spacing:-2.290545px;}
.ls6_c00265{letter-spacing:-2.229413px;}
.ls26_c00265{letter-spacing:-2.226150px;}
.ls29_c00265{letter-spacing:-2.138850px;}
.ls1f_c00265{letter-spacing:-1.955123px;}
.ls2e_c00265{letter-spacing:-1.776750px;}
.ls9_c00265{letter-spacing:-1.489163px;}
.lsf_c00265{letter-spacing:-0.810105px;}
.ls8_c00265{letter-spacing:-0.740250px;}
.ls2a_c00265{letter-spacing:-0.735000px;}
.ls28_c00265{letter-spacing:-0.734400px;}
.lse_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.698175px;}
.ls2_c00265{letter-spacing:1.489163px;}
.ls20_c00265{letter-spacing:1.513200px;}
.ls24_c00265{letter-spacing:2.226750px;}
.ls1_c00265{letter-spacing:2.968875px;}
.ls3_c00265{letter-spacing:4.125000px;}
.ls27_c00265{letter-spacing:9.347535px;}
.ls18_c00265{letter-spacing:13.022100px;}
.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;}
._18_c00265{margin-left:-51.175872px;}
._15_c00265{margin-left:-29.050489px;}
._1a_c00265{margin-left:-21.923584px;}
._f_c00265{margin-left:-19.261938px;}
._19_c00265{margin-left:-15.957692px;}
._1c_c00265{margin-left:-8.470989px;}
._1b_c00265{margin-left:-7.424045px;}
._7_c00265{margin-left:-5.809774px;}
._5_c00265{margin-left:-4.204804px;}
._10_c00265{margin-left:-1.837386px;}
._16_c00265{width:1.774594px;}
._6_c00265{width:2.952055px;}
._1d_c00265{width:4.011451px;}
._0_c00265{width:5.040416px;}
._2_c00265{width:7.168880px;}
._8_c00265{width:8.565459px;}
._a_c00265{width:9.919840px;}
._9_c00265{width:10.982237px;}
._1_c00265{width:12.849221px;}
._12_c00265{width:14.572643px;}
._3_c00265{width:16.222084px;}
._14_c00265{width:18.201814px;}
._c_c00265{width:19.688986px;}
._11_c00265{width:20.971942px;}
._d_c00265{width:22.272268px;}
._4_c00265{width:23.813629px;}
._13_c00265{width:25.217474px;}
._b_c00265{width:26.435498px;}
._1e_c00265{width:28.921116px;}
._e_c00265{width:30.665012px;}
._1f_c00265{width:35.516225px;}
._17_c00265{width:38.494766px;}
.fc0_c00265{color:transparent;}
.fse_c00265{font-size:54.750000px;}
.fsc_c00265{font-size:60.000000px;}
.fs12_c00265{font-size:61.500000px;}
.fsa_c00265{font-size:72.750000px;}
.fs11_c00265{font-size:73.500000px;}
.fs10_c00265{font-size:75.000000px;}
.fs5_c00265{font-size:76.500000px;}
.fs6_c00265{font-size:77.250000px;}
.fsf_c00265{font-size:78.000000px;}
.fs1_c00265{font-size:78.750000px;}
.fs2_c00265{font-size:79.500000px;}
.fs9_c00265{font-size:80.250000px;}
.fs7_c00265{font-size:81.750000px;}
.fs0_c00265{font-size:82.500000px;}
.fs8_c00265{font-size:83.250000px;}
.fsd_c00265{font-size:84.000000px;}
.fs3_c00265{font-size:84.750000px;}
.fs4_c00265{font-size:85.500000px;}
.fs13_c00265{font-size:86.250000px;}
.fsb_c00265{font-size:87.000000px;}
.y0_c00265{bottom:0.000000px;}
.y2a_c00265{bottom:210.958425px;}
.y29_c00265{bottom:240.477945px;}
.y27_c00265{bottom:269.637885px;}
.y28_c00265{bottom:269.639100px;}
.y26_c00265{bottom:299.877795px;}
.y25_c00265{bottom:329.397330px;}
.y24_c00265{bottom:359.639355px;}
.y23_c00265{bottom:389.519070px;}
.y21_c00265{bottom:420.479115px;}
.y22_c00265{bottom:420.479235px;}
.y20_c00265{bottom:449.277975px;}
.y1f_c00265{bottom:479.517885px;}
.y1e_c00265{bottom:538.918950px;}
.y1d_c00265{bottom:538.919790px;}
.y1c_c00265{bottom:568.799520px;}
.y1b_c00265{bottom:568.800585px;}
.y1a_c00265{bottom:598.680315px;}
.y19_c00265{bottom:628.199850px;}
.y18_c00265{bottom:628.200960px;}
.y17_c00265{bottom:658.080690px;}
.y16_c00265{bottom:687.960405px;}
.y15_c00265{bottom:717.840135px;}
.y13_c00265{bottom:751.318845px;}
.y14_c00265{bottom:751.319820px;}
.y12_c00265{bottom:777.599670px;}
.y11_c00265{bottom:807.839535px;}
.y10_c00265{bottom:807.839670px;}
.yf_c00265{bottom:837.719400px;}
.ye_c00265{bottom:867.599115px;}
.yd_c00265{bottom:867.599220px;}
.yc_c00265{bottom:897.118740px;}
.yb_c00265{bottom:897.119640px;}
.ya_c00265{bottom:926.999355px;}
.y9_c00265{bottom:927.000255px;}
.y8_c00265{bottom:957.240165px;}
.y7_c00265{bottom:987.119895px;}
.y6_c00265{bottom:1017.359805px;}
.y5_c00265{bottom:1017.359940px;}
.y4_c00265{bottom:1047.239655px;}
.y3_c00265{bottom:1077.119385px;}
.y2_c00265{bottom:1077.119430px;}
.y1_c00265{bottom:1136.878875px;}
.h13_c00265{height:57.102539px;}
.h11_c00265{height:59.296875px;}
.h19_c00265{height:60.779297px;}
.h14_c00265{height:71.400146px;}
.h18_c00265{height:72.136230px;}
.h16_c00265{height:73.608398px;}
.h8_c00265{height:75.080566px;}
.h9_c00265{height:75.816650px;}
.hf_c00265{height:75.875977px;}
.h15_c00265{height:76.552734px;}
.h17_c00265{height:77.097656px;}
.h2_c00265{height:77.288818px;}
.h1a_c00265{height:78.609375px;}
.hc_c00265{height:79.365234px;}
.h5_c00265{height:80.121094px;}
.ha_c00265{height:80.233154px;}
.hd_c00265{height:80.876953px;}
.h4_c00265{height:80.969238px;}
.h3_c00265{height:81.533203px;}
.h12_c00265{height:83.015625px;}
.h1_c00265{height:83.144531px;}
.h6_c00265{height:83.177490px;}
.he_c00265{height:83.756836px;}
.hb_c00265{height:83.900391px;}
.h7_c00265{height:84.498047px;}
.h1b_c00265{height:85.239258px;}
.h10_c00265{height:85.980469px;}
.h0_c00265{height:1263.000000px;}
.w0_c00265{width:892.500000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:137.878950px;}
.x24_c00265{left:139.319250px;}
.x26_c00265{left:151.919565px;}
.x18_c00265{left:167.038170px;}
.x27_c00265{left:174.239250px;}
.x15_c00265{left:186.119415px;}
.x11_c00265{left:197.999400px;}
.x9_c00265{left:199.439685px;}
.x19_c00265{left:214.559685px;}
.x2_c00265{left:219.958350px;}
.xa_c00265{left:238.679100px;}
.x28_c00265{left:242.639100px;}
.x38_c00265{left:245.519685px;}
.x29_c00265{left:262.080000px;}
.x39_c00265{left:267.478635px;}
.x2d_c00265{left:287.998950px;}
.x1a_c00265{left:296.639100px;}
.x12_c00265{left:301.678500px;}
.x2b_c00265{left:307.439685px;}
.x2e_c00265{left:311.759100px;}
.x13_c00265{left:331.559100px;}
.x2c_c00265{left:334.798950px;}
.x1b_c00265{left:350.639100px;}
.x5_c00265{left:355.319250px;}
.x6_c00265{left:377.639100px;}
.x2f_c00265{left:409.319235px;}
.xd_c00265{left:420.479235px;}
.xe_c00265{left:438.118785px;}
.x1c_c00265{left:440.279250px;}
.x30_c00265{left:447.838530px;}
.x31_c00265{left:474.838530px;}
.x32_c00265{left:497.878320px;}
.x1d_c00265{left:510.119385px;}
.x16_c00265{left:530.639700px;}
.x1e_c00265{left:533.879520px;}
.x17_c00265{left:549.719565px;}
.x25_c00265{left:565.559685px;}
.x3_c00265{left:570.958335px;}
.xf_c00265{left:584.639700px;}
.x33_c00265{left:585.719100px;}
.xb_c00265{left:587.879520px;}
.x4_c00265{left:595.438620px;}
.xc_c00265{left:602.999400px;}
.x10_c00265{left:609.119985px;}
.x1f_c00265{left:611.639700px;}
.x34_c00265{left:616.319820px;}
.x20_c00265{left:645.119385px;}
.x35_c00265{left:650.878920px;}
.x7_c00265{left:660.239220px;}
.x8_c00265{left:676.438620px;}
.x36_c00265{left:677.878920px;}
.x21_c00265{left:695.879520px;}
.x2a_c00265{left:714.959385px;}
.x22_c00265{left:730.799520px;}
.x37_c00265{left:734.759535px;}
.x14_c00265{left:759.958335px;}
.x23_c00265{left:763.559100px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1c_c00265{letter-spacing:-30.832800pt;}
.ls2b_c00265{letter-spacing:-30.208800pt;}
.ls15_c00265{letter-spacing:-24.915800pt;}
.lsd_c00265{letter-spacing:-16.199333pt;}
.ls1a_c00265{letter-spacing:-15.202267pt;}
.ls1d_c00265{letter-spacing:-14.912000pt;}
.ls1e_c00265{letter-spacing:-13.573653pt;}
.ls10_c00265{letter-spacing:-12.518000pt;}
.ls22_c00265{letter-spacing:-11.277933pt;}
.lsa_c00265{letter-spacing:-10.728667pt;}
.ls14_c00265{letter-spacing:-10.574600pt;}
.ls23_c00265{letter-spacing:-7.924000pt;}
.ls12_c00265{letter-spacing:-7.266700pt;}
.ls19_c00265{letter-spacing:-6.663867pt;}
.ls25_c00265{letter-spacing:-5.943000pt;}
.ls21_c00265{letter-spacing:-5.330600pt;}
.lsc_c00265{letter-spacing:-5.285000pt;}
.ls1b_c00265{letter-spacing:-4.972867pt;}
.ls5_c00265{letter-spacing:-4.619300pt;}
.ls13_c00265{letter-spacing:-4.541667pt;}
.ls16_c00265{letter-spacing:-4.116700pt;}
.ls7_c00265{letter-spacing:-3.961300pt;}
.lsb_c00265{letter-spacing:-3.304000pt;}
.ls2d_c00265{letter-spacing:-2.695000pt;}
.ls4_c00265{letter-spacing:-2.639000pt;}
.ls17_c00265{letter-spacing:-2.483113pt;}
.ls2c_c00265{letter-spacing:-2.120000pt;}
.ls11_c00265{letter-spacing:-2.036040pt;}
.ls6_c00265{letter-spacing:-1.981700pt;}
.ls26_c00265{letter-spacing:-1.978800pt;}
.ls29_c00265{letter-spacing:-1.901200pt;}
.ls1f_c00265{letter-spacing:-1.737887pt;}
.ls2e_c00265{letter-spacing:-1.579333pt;}
.ls9_c00265{letter-spacing:-1.323700pt;}
.lsf_c00265{letter-spacing:-0.720093pt;}
.ls8_c00265{letter-spacing:-0.658000pt;}
.ls2a_c00265{letter-spacing:-0.653333pt;}
.ls28_c00265{letter-spacing:-0.652800pt;}
.lse_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.620600pt;}
.ls2_c00265{letter-spacing:1.323700pt;}
.ls20_c00265{letter-spacing:1.345067pt;}
.ls24_c00265{letter-spacing:1.979333pt;}
.ls1_c00265{letter-spacing:2.639000pt;}
.ls3_c00265{letter-spacing:3.666667pt;}
.ls27_c00265{letter-spacing:8.308920pt;}
.ls18_c00265{letter-spacing:11.575200pt;}
.ws0_c00265{word-spacing:0.000000pt;}
._18_c00265{margin-left:-45.489664pt;}
._15_c00265{margin-left:-25.822657pt;}
._1a_c00265{margin-left:-19.487630pt;}
._f_c00265{margin-left:-17.121723pt;}
._19_c00265{margin-left:-14.184615pt;}
._1c_c00265{margin-left:-7.529768pt;}
._1b_c00265{margin-left:-6.599151pt;}
._7_c00265{margin-left:-5.164243pt;}
._5_c00265{margin-left:-3.737604pt;}
._10_c00265{margin-left:-1.633232pt;}
._16_c00265{width:1.577417pt;}
._6_c00265{width:2.624049pt;}
._1d_c00265{width:3.565734pt;}
._0_c00265{width:4.480370pt;}
._2_c00265{width:6.372338pt;}
._8_c00265{width:7.613742pt;}
._a_c00265{width:8.817636pt;}
._9_c00265{width:9.761989pt;}
._1_c00265{width:11.421530pt;}
._12_c00265{width:12.953460pt;}
._3_c00265{width:14.419630pt;}
._14_c00265{width:16.179391pt;}
._c_c00265{width:17.501321pt;}
._11_c00265{width:18.641726pt;}
._d_c00265{width:19.797572pt;}
._4_c00265{width:21.167670pt;}
._13_c00265{width:22.415532pt;}
._b_c00265{width:23.498221pt;}
._1e_c00265{width:25.707658pt;}
._e_c00265{width:27.257789pt;}
._1f_c00265{width:31.569977pt;}
._17_c00265{width:34.217570pt;}
.fse_c00265{font-size:48.666667pt;}
.fsc_c00265{font-size:53.333333pt;}
.fs12_c00265{font-size:54.666667pt;}
.fsa_c00265{font-size:64.666667pt;}
.fs11_c00265{font-size:65.333333pt;}
.fs10_c00265{font-size:66.666667pt;}
.fs5_c00265{font-size:68.000000pt;}
.fs6_c00265{font-size:68.666667pt;}
.fsf_c00265{font-size:69.333333pt;}
.fs1_c00265{font-size:70.000000pt;}
.fs2_c00265{font-size:70.666667pt;}
.fs9_c00265{font-size:71.333333pt;}
.fs7_c00265{font-size:72.666667pt;}
.fs0_c00265{font-size:73.333333pt;}
.fs8_c00265{font-size:74.000000pt;}
.fsd_c00265{font-size:74.666667pt;}
.fs3_c00265{font-size:75.333333pt;}
.fs4_c00265{font-size:76.000000pt;}
.fs13_c00265{font-size:76.666667pt;}
.fsb_c00265{font-size:77.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y2a_c00265{bottom:187.518600pt;}
.y29_c00265{bottom:213.758173pt;}
.y27_c00265{bottom:239.678120pt;}
.y28_c00265{bottom:239.679200pt;}
.y26_c00265{bottom:266.558040pt;}
.y25_c00265{bottom:292.797627pt;}
.y24_c00265{bottom:319.679427pt;}
.y23_c00265{bottom:346.239173pt;}
.y21_c00265{bottom:373.759213pt;}
.y22_c00265{bottom:373.759320pt;}
.y20_c00265{bottom:399.358200pt;}
.y1f_c00265{bottom:426.238120pt;}
.y1e_c00265{bottom:479.039067pt;}
.y1d_c00265{bottom:479.039813pt;}
.y1c_c00265{bottom:505.599573pt;}
.y1b_c00265{bottom:505.600520pt;}
.y1a_c00265{bottom:532.160280pt;}
.y19_c00265{bottom:558.399867pt;}
.y18_c00265{bottom:558.400853pt;}
.y17_c00265{bottom:584.960613pt;}
.y16_c00265{bottom:611.520360pt;}
.y15_c00265{bottom:638.080120pt;}
.y13_c00265{bottom:667.838973pt;}
.y14_c00265{bottom:667.839840pt;}
.y12_c00265{bottom:691.199707pt;}
.y11_c00265{bottom:718.079587pt;}
.y10_c00265{bottom:718.079707pt;}
.yf_c00265{bottom:744.639467pt;}
.ye_c00265{bottom:771.199213pt;}
.yd_c00265{bottom:771.199307pt;}
.yc_c00265{bottom:797.438880pt;}
.yb_c00265{bottom:797.439680pt;}
.ya_c00265{bottom:823.999427pt;}
.y9_c00265{bottom:824.000227pt;}
.y8_c00265{bottom:850.880147pt;}
.y7_c00265{bottom:877.439907pt;}
.y6_c00265{bottom:904.319827pt;}
.y5_c00265{bottom:904.319947pt;}
.y4_c00265{bottom:930.879693pt;}
.y3_c00265{bottom:957.439453pt;}
.y2_c00265{bottom:957.439493pt;}
.y1_c00265{bottom:1010.559000pt;}
.h13_c00265{height:50.757812pt;}
.h11_c00265{height:52.708333pt;}
.h19_c00265{height:54.026042pt;}
.h14_c00265{height:63.466797pt;}
.h18_c00265{height:64.121094pt;}
.h16_c00265{height:65.429688pt;}
.h8_c00265{height:66.738281pt;}
.h9_c00265{height:67.392578pt;}
.hf_c00265{height:67.445312pt;}
.h15_c00265{height:68.046875pt;}
.h17_c00265{height:68.531250pt;}
.h2_c00265{height:68.701172pt;}
.h1a_c00265{height:69.875000pt;}
.hc_c00265{height:70.546875pt;}
.h5_c00265{height:71.218750pt;}
.ha_c00265{height:71.318359pt;}
.hd_c00265{height:71.890625pt;}
.h4_c00265{height:71.972656pt;}
.h3_c00265{height:72.473958pt;}
.h12_c00265{height:73.791667pt;}
.h1_c00265{height:73.906250pt;}
.h6_c00265{height:73.935547pt;}
.he_c00265{height:74.450521pt;}
.hb_c00265{height:74.578125pt;}
.h7_c00265{height:75.109375pt;}
.h1b_c00265{height:75.768229pt;}
.h10_c00265{height:76.427083pt;}
.h0_c00265{height:1122.666667pt;}
.w0_c00265{width:793.333333pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:122.559067pt;}
.x24_c00265{left:123.839333pt;}
.x26_c00265{left:135.039613pt;}
.x18_c00265{left:148.478373pt;}
.x27_c00265{left:154.879333pt;}
.x15_c00265{left:165.439480pt;}
.x11_c00265{left:175.999467pt;}
.x9_c00265{left:177.279720pt;}
.x19_c00265{left:190.719720pt;}
.x2_c00265{left:195.518533pt;}
.xa_c00265{left:212.159200pt;}
.x28_c00265{left:215.679200pt;}
.x38_c00265{left:218.239720pt;}
.x29_c00265{left:232.960000pt;}
.x39_c00265{left:237.758787pt;}
.x2d_c00265{left:255.999067pt;}
.x1a_c00265{left:263.679200pt;}
.x12_c00265{left:268.158667pt;}
.x2b_c00265{left:273.279720pt;}
.x2e_c00265{left:277.119200pt;}
.x13_c00265{left:294.719200pt;}
.x2c_c00265{left:297.599067pt;}
.x1b_c00265{left:311.679200pt;}
.x5_c00265{left:315.839333pt;}
.x6_c00265{left:335.679200pt;}
.x2f_c00265{left:363.839320pt;}
.xd_c00265{left:373.759320pt;}
.xe_c00265{left:389.438920pt;}
.x1c_c00265{left:391.359333pt;}
.x30_c00265{left:398.078693pt;}
.x31_c00265{left:422.078693pt;}
.x32_c00265{left:442.558507pt;}
.x1d_c00265{left:453.439453pt;}
.x16_c00265{left:471.679733pt;}
.x1e_c00265{left:474.559573pt;}
.x17_c00265{left:488.639613pt;}
.x25_c00265{left:502.719720pt;}
.x3_c00265{left:507.518520pt;}
.xf_c00265{left:519.679733pt;}
.x33_c00265{left:520.639200pt;}
.xb_c00265{left:522.559573pt;}
.x4_c00265{left:529.278773pt;}
.xc_c00265{left:535.999467pt;}
.x10_c00265{left:541.439987pt;}
.x1f_c00265{left:543.679733pt;}
.x34_c00265{left:547.839840pt;}
.x20_c00265{left:573.439453pt;}
.x35_c00265{left:578.559040pt;}
.x7_c00265{left:586.879307pt;}
.x8_c00265{left:601.278773pt;}
.x36_c00265{left:602.559040pt;}
.x21_c00265{left:618.559573pt;}
.x2a_c00265{left:635.519453pt;}
.x22_c00265{left:649.599573pt;}
.x37_c00265{left:653.119587pt;}
.x14_c00265{left:675.518520pt;}
.x23_c00265{left:678.719200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ab6eb86c3933a2b2a491bd0.woff2')format("woff");}.ff1_c00266{font-family:ff1_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:ff2_c00266;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.364746;font-style:normal;font-weight:normal;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_e4d9add4061bae2813c848bb.woff2')format("woff");}.ff3_c00266{font-family:ff3_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:ff4_c00266;src:url('chunks/assets/font_cd47644240bbe48dbb8c0234.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_93466c895c6556abea59ab06.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00266{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls16_c00266{letter-spacing:-16.095750px;}
.ls17_c00266{letter-spacing:-14.082750px;}
.ls15_c00266{letter-spacing:-13.570650px;}
.lsf_c00266{letter-spacing:-12.687675px;}
.ls13_c00266{letter-spacing:-8.914500px;}
.ls19_c00266{letter-spacing:-8.175038px;}
.ls1d_c00266{letter-spacing:-7.426125px;}
.lsb_c00266{letter-spacing:-7.028100px;}
.ls1a_c00266{letter-spacing:-6.685875px;}
.ls1c_c00266{letter-spacing:-6.572700px;}
.lse_c00266{letter-spacing:-5.945625px;}
.ls14_c00266{letter-spacing:-5.307975px;}
.ls9_c00266{letter-spacing:-5.196713px;}
.lsc_c00266{letter-spacing:-4.978575px;}
.ls6_c00266{letter-spacing:-4.541348px;}
.ls5_c00266{letter-spacing:-4.456463px;}
.ls8_c00266{letter-spacing:-3.717000px;}
.ls3_c00266{letter-spacing:-2.968875px;}
.ls1e_c00266{letter-spacing:-2.250645px;}
.ls4_c00266{letter-spacing:-2.229413px;}
.ls12_c00266{letter-spacing:-1.496250px;}
.ls7_c00266{letter-spacing:-1.489163px;}
.ls10_c00266{letter-spacing:-0.848318px;}
.lsd_c00266{letter-spacing:-0.740250px;}
.lsa_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.740250px;}
.ls18_c00266{letter-spacing:0.764235px;}
.ls2_c00266{letter-spacing:1.489163px;}
.ls1_c00266{letter-spacing:2.229413px;}
.ls1b_c00266{letter-spacing:3.480750px;}
.ls1f_c00266{letter-spacing:4.102800px;}
.ls11_c00266{letter-spacing:5.302650px;}
.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;}
._1b_c00266{margin-left:-22.868777px;}
._18_c00266{margin-left:-10.369102px;}
._c_c00266{margin-left:-7.084707px;}
._14_c00266{margin-left:-5.836787px;}
._13_c00266{margin-left:-4.035343px;}
._12_c00266{margin-left:-1.960964px;}
._16_c00266{width:1.023349px;}
._a_c00266{width:2.388042px;}
._11_c00266{width:3.527391px;}
._15_c00266{width:4.837196px;}
._f_c00266{width:5.966457px;}
._17_c00266{width:7.478070px;}
._d_c00266{width:8.794206px;}
._b_c00266{width:10.017624px;}
._10_c00266{width:11.368068px;}
._3_c00266{width:12.507714px;}
._1_c00266{width:14.729563px;}
._e_c00266{width:16.403417px;}
._0_c00266{width:17.874497px;}
._1c_c00266{width:19.245668px;}
._4_c00266{width:20.489814px;}
._19_c00266{width:22.265017px;}
._7_c00266{width:23.978677px;}
._2_c00266{width:25.520735px;}
._1a_c00266{width:26.680574px;}
._9_c00266{width:28.161832px;}
._5_c00266{width:30.044477px;}
._6_c00266{width:31.554828px;}
._8_c00266{width:33.809916px;}
.fc0_c00266{color:transparent;}
.fs7_c00266{font-size:69.750000px;}
.fs8_c00266{font-size:76.500000px;}
.fs9_c00266{font-size:78.000000px;}
.fs0_c00266{font-size:78.750000px;}
.fs6_c00266{font-size:79.500000px;}
.fs1_c00266{font-size:80.250000px;}
.fs4_c00266{font-size:81.750000px;}
.fs2_c00266{font-size:82.500000px;}
.fs5_c00266{font-size:83.250000px;}
.fs3_c00266{font-size:85.500000px;}
.y0_c00266{bottom:0.000000px;}
.y24_c00266{bottom:185.399415px;}
.y23_c00266{bottom:214.918950px;}
.y22_c00266{bottom:274.679715px;}
.y21_c00266{bottom:304.559445px;}
.y20_c00266{bottom:334.439160px;}
.y1f_c00266{bottom:364.318890px;}
.y1e_c00266{bottom:393.840225px;}
.y1d_c00266{bottom:453.599670px;}
.y1c_c00266{bottom:453.599835px;}
.y1b_c00266{bottom:513.719460px;}
.y1a_c00266{bottom:543.238995px;}
.y19_c00266{bottom:573.118725px;}
.y18_c00266{bottom:603.358635px;}
.y17_c00266{bottom:632.879970px;}
.y16_c00266{bottom:632.880060px;}
.y14_c00266{bottom:663.118875px;}
.y15_c00266{bottom:663.119985px;}
.y13_c00266{bottom:692.277930px;}
.y12_c00266{bottom:722.517840px;}
.y11_c00266{bottom:781.918905px;}
.y10_c00266{bottom:812.158815px;}
.yf_c00266{bottom:812.159565px;}
.ye_c00266{bottom:842.399490px;}
.yd_c00266{bottom:872.279205px;}
.yc_c00266{bottom:902.519070px;}
.yb_c00266{bottom:931.679715px;}
.ya_c00266{bottom:931.679760px;}
.y9_c00266{bottom:961.559490px;}
.y8_c00266{bottom:991.439205px;}
.y7_c00266{bottom:991.440015px;}
.y6_c00266{bottom:1021.319730px;}
.y5_c00266{bottom:1051.559640px;}
.y4_c00266{bottom:1081.799565px;}
.y3_c00266{bottom:1081.799610px;}
.y2_c00266{bottom:1111.498185px;}
.y1_c00266{bottom:1141.559055px;}
.h9_c00266{height:72.747070px;}
.hb_c00266{height:75.080566px;}
.he_c00266{height:76.552734px;}
.h1_c00266{height:77.288818px;}
.hd_c00266{height:78.024902px;}
.ha_c00266{height:78.568359px;}
.h2_c00266{height:78.760986px;}
.hc_c00266{height:79.787109px;}
.h8_c00266{height:80.121094px;}
.h5_c00266{height:80.233154px;}
.h3_c00266{height:80.969238px;}
.h6_c00266{height:81.533203px;}
.h7_c00266{height:81.705322px;}
.h4_c00266{height:84.498047px;}
.h0_c00266{height:1263.000000px;}
.w0_c00266{width:892.500000px;}
.x0_c00266{left:0.000000px;}
.xf_c00266{left:132.480120px;}
.x1_c00266{left:133.559685px;}
.x21_c00266{left:158.399250px;}
.x19_c00266{left:163.079400px;}
.x1f_c00266{left:199.078785px;}
.x1a_c00266{left:215.639100px;}
.x20_c00266{left:221.398635px;}
.x4_c00266{left:251.279250px;}
.x5_c00266{left:266.399250px;}
.x6_c00266{left:312.838515px;}
.x10_c00266{left:324.000000px;}
.x7_c00266{left:333.358635px;}
.x17_c00266{left:339.120000px;}
.x11_c00266{left:344.159385px;}
.x18_c00266{left:357.838950px;}
.xa_c00266{left:460.799565px;}
.x2_c00266{left:469.798920px;}
.xb_c00266{left:480.958920px;}
.x3_c00266{left:492.838950px;}
.x14_c00266{left:513.359250px;}
.x15_c00266{left:534.238770px;}
.x1d_c00266{left:602.999400px;}
.x1e_c00266{left:616.679070px;}
.x8_c00266{left:633.598530px;}
.x9_c00266{left:654.838950px;}
.xc_c00266{left:666.359850px;}
.xd_c00266{left:682.918350px;}
.x12_c00266{left:704.519670px;}
.x1b_c00266{left:709.918350px;}
.xe_c00266{left:716.399820px;}
.x1c_c00266{left:736.918350px;}
.x16_c00266{left:744.479235px;}
.x13_c00266{left:760.319235px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls16_c00266{letter-spacing:-14.307333pt;}
.ls17_c00266{letter-spacing:-12.518000pt;}
.ls15_c00266{letter-spacing:-12.062800pt;}
.lsf_c00266{letter-spacing:-11.277933pt;}
.ls13_c00266{letter-spacing:-7.924000pt;}
.ls19_c00266{letter-spacing:-7.266700pt;}
.ls1d_c00266{letter-spacing:-6.601000pt;}
.lsb_c00266{letter-spacing:-6.247200pt;}
.ls1a_c00266{letter-spacing:-5.943000pt;}
.ls1c_c00266{letter-spacing:-5.842400pt;}
.lse_c00266{letter-spacing:-5.285000pt;}
.ls14_c00266{letter-spacing:-4.718200pt;}
.ls9_c00266{letter-spacing:-4.619300pt;}
.lsc_c00266{letter-spacing:-4.425400pt;}
.ls6_c00266{letter-spacing:-4.036753pt;}
.ls5_c00266{letter-spacing:-3.961300pt;}
.ls8_c00266{letter-spacing:-3.304000pt;}
.ls3_c00266{letter-spacing:-2.639000pt;}
.ls1e_c00266{letter-spacing:-2.000573pt;}
.ls4_c00266{letter-spacing:-1.981700pt;}
.ls12_c00266{letter-spacing:-1.330000pt;}
.ls7_c00266{letter-spacing:-1.323700pt;}
.ls10_c00266{letter-spacing:-0.754060pt;}
.lsd_c00266{letter-spacing:-0.658000pt;}
.lsa_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.658000pt;}
.ls18_c00266{letter-spacing:0.679320pt;}
.ls2_c00266{letter-spacing:1.323700pt;}
.ls1_c00266{letter-spacing:1.981700pt;}
.ls1b_c00266{letter-spacing:3.094000pt;}
.ls1f_c00266{letter-spacing:3.646933pt;}
.ls11_c00266{letter-spacing:4.713467pt;}
.ws0_c00266{word-spacing:0.000000pt;}
._1b_c00266{margin-left:-20.327802pt;}
._18_c00266{margin-left:-9.216979pt;}
._c_c00266{margin-left:-6.297517pt;}
._14_c00266{margin-left:-5.188255pt;}
._13_c00266{margin-left:-3.586972pt;}
._12_c00266{margin-left:-1.743079pt;}
._16_c00266{width:0.909643pt;}
._a_c00266{width:2.122704pt;}
._11_c00266{width:3.135458pt;}
._15_c00266{width:4.299730pt;}
._f_c00266{width:5.303517pt;}
._17_c00266{width:6.647174pt;}
._d_c00266{width:7.817072pt;}
._b_c00266{width:8.904555pt;}
._10_c00266{width:10.104949pt;}
._3_c00266{width:11.117968pt;}
._1_c00266{width:13.092945pt;}
._e_c00266{width:14.580815pt;}
._0_c00266{width:15.888442pt;}
._1c_c00266{width:17.107260pt;}
._4_c00266{width:18.213168pt;}
._19_c00266{width:19.791126pt;}
._7_c00266{width:21.314379pt;}
._2_c00266{width:22.685098pt;}
._1a_c00266{width:23.716066pt;}
._9_c00266{width:25.032740pt;}
._5_c00266{width:26.706202pt;}
._6_c00266{width:28.048736pt;}
._8_c00266{width:30.053258pt;}
.fs7_c00266{font-size:62.000000pt;}
.fs8_c00266{font-size:68.000000pt;}
.fs9_c00266{font-size:69.333333pt;}
.fs0_c00266{font-size:70.000000pt;}
.fs6_c00266{font-size:70.666667pt;}
.fs1_c00266{font-size:71.333333pt;}
.fs4_c00266{font-size:72.666667pt;}
.fs2_c00266{font-size:73.333333pt;}
.fs5_c00266{font-size:74.000000pt;}
.fs3_c00266{font-size:76.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y24_c00266{bottom:164.799480pt;}
.y23_c00266{bottom:191.039067pt;}
.y22_c00266{bottom:244.159747pt;}
.y21_c00266{bottom:270.719507pt;}
.y20_c00266{bottom:297.279253pt;}
.y1f_c00266{bottom:323.839013pt;}
.y1e_c00266{bottom:350.080200pt;}
.y1d_c00266{bottom:403.199707pt;}
.y1c_c00266{bottom:403.199853pt;}
.y1b_c00266{bottom:456.639520pt;}
.y1a_c00266{bottom:482.879107pt;}
.y19_c00266{bottom:509.438867pt;}
.y18_c00266{bottom:536.318787pt;}
.y17_c00266{bottom:562.559973pt;}
.y16_c00266{bottom:562.560053pt;}
.y14_c00266{bottom:589.439000pt;}
.y15_c00266{bottom:589.439987pt;}
.y13_c00266{bottom:615.358160pt;}
.y12_c00266{bottom:642.238080pt;}
.y11_c00266{bottom:695.039027pt;}
.y10_c00266{bottom:721.918947pt;}
.yf_c00266{bottom:721.919613pt;}
.ye_c00266{bottom:748.799547pt;}
.yd_c00266{bottom:775.359293pt;}
.yc_c00266{bottom:802.239173pt;}
.yb_c00266{bottom:828.159747pt;}
.ya_c00266{bottom:828.159787pt;}
.y9_c00266{bottom:854.719547pt;}
.y8_c00266{bottom:881.279293pt;}
.y7_c00266{bottom:881.280013pt;}
.y6_c00266{bottom:907.839760pt;}
.y5_c00266{bottom:934.719680pt;}
.y4_c00266{bottom:961.599613pt;}
.y3_c00266{bottom:961.599653pt;}
.y2_c00266{bottom:987.998387pt;}
.y1_c00266{bottom:1014.719160pt;}
.h9_c00266{height:64.664062pt;}
.hb_c00266{height:66.738281pt;}
.he_c00266{height:68.046875pt;}
.h1_c00266{height:68.701172pt;}
.hd_c00266{height:69.355469pt;}
.ha_c00266{height:69.838542pt;}
.h2_c00266{height:70.009766pt;}
.hc_c00266{height:70.921875pt;}
.h8_c00266{height:71.218750pt;}
.h5_c00266{height:71.318359pt;}
.h3_c00266{height:71.972656pt;}
.h6_c00266{height:72.473958pt;}
.h7_c00266{height:72.626953pt;}
.h4_c00266{height:75.109375pt;}
.h0_c00266{height:1122.666667pt;}
.w0_c00266{width:793.333333pt;}
.x0_c00266{left:0.000000pt;}
.xf_c00266{left:117.760107pt;}
.x1_c00266{left:118.719720pt;}
.x21_c00266{left:140.799333pt;}
.x19_c00266{left:144.959467pt;}
.x1f_c00266{left:176.958920pt;}
.x1a_c00266{left:191.679200pt;}
.x20_c00266{left:196.798787pt;}
.x4_c00266{left:223.359333pt;}
.x5_c00266{left:236.799333pt;}
.x6_c00266{left:278.078680pt;}
.x10_c00266{left:288.000000pt;}
.x7_c00266{left:296.318787pt;}
.x17_c00266{left:301.440000pt;}
.x11_c00266{left:305.919453pt;}
.x18_c00266{left:318.079067pt;}
.xa_c00266{left:409.599613pt;}
.x2_c00266{left:417.599040pt;}
.xb_c00266{left:427.519040pt;}
.x3_c00266{left:438.079067pt;}
.x14_c00266{left:456.319333pt;}
.x15_c00266{left:474.878907pt;}
.x1d_c00266{left:535.999467pt;}
.x1e_c00266{left:548.159173pt;}
.x8_c00266{left:563.198693pt;}
.x9_c00266{left:582.079067pt;}
.xc_c00266{left:592.319867pt;}
.xd_c00266{left:607.038533pt;}
.x12_c00266{left:626.239707pt;}
.x1b_c00266{left:631.038533pt;}
.xe_c00266{left:636.799840pt;}
.x1c_c00266{left:655.038533pt;}
.x16_c00266{left:661.759320pt;}
.x13_c00266{left:675.839320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c999178a39f32a6355f7d80.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;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_90eebb3fa1064f7f56863190.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_171fb5f361b8394d2bbdc4a8.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00267;src:url('chunks/assets/font_83070e2c35f490271d2eb608.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00267;src:url('chunks/assets/font_94fe68d5e981138edae0bd69.woff2')format("woff");}.ff6_c00267{font-family:ff6_c00267;line-height:1.281250;font-style:normal;font-weight: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_c00267;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff7_c00267{font-family:ff7_c00267;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c00267{transform:matrix(0.123188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123188,0.000000,0.000000,0.250000,0,0);}
.m2a_c00267{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.m1c_c00267{transform:matrix(0.167969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167969,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m36_c00267{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m22_c00267{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191810,0.000000,0.000000,0.250000,0,0);}
.m29_c00267{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m13_c00267{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m12_c00267{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.214602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214602,0.000000,0.000000,0.250000,0,0);}
.m10_c00267{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m2c_c00267{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m2d_c00267{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m35_c00267{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m39_c00267{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m1e_c00267{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m19_c00267{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m37_c00267{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m33_c00267{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m18_c00267{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m15_c00267{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m27_c00267{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m31_c00267{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m23_c00267{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m38_c00267{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m20_c00267{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m16_c00267{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m2b_c00267{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00267{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1a_c00267{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m1f_c00267{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m24_c00267{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);}
.m1d_c00267{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.v1_c00267{vertical-align:1.440720px;}
.ls23_c00267{letter-spacing:-20.768400px;}
.ls19_c00267{letter-spacing:-18.224250px;}
.ls13_c00267{letter-spacing:-17.175600px;}
.lsc_c00267{letter-spacing:-15.279000px;}
.ls16_c00267{letter-spacing:-10.576500px;}
.ls29_c00267{letter-spacing:-7.620885px;}
.lse_c00267{letter-spacing:-7.500375px;}
.ls11_c00267{letter-spacing:-6.623663px;}
.ls2d_c00267{letter-spacing:-6.475200px;}
.lsd_c00267{letter-spacing:-5.890500px;}
.ls6_c00267{letter-spacing:-5.300400px;}
.lsf_c00267{letter-spacing:-5.150250px;}
.ls31_c00267{letter-spacing:-5.100510px;}
.ls2c_c00267{letter-spacing:-4.800480px;}
.ls44_c00267{letter-spacing:-4.650465px;}
.lsb_c00267{letter-spacing:-4.418663px;}
.ls47_c00267{letter-spacing:-3.747900px;}
.lsa_c00267{letter-spacing:-3.678413px;}
.ls17_c00267{letter-spacing:-3.450750px;}
.ls1a_c00267{letter-spacing:-3.152235px;}
.ls28_c00267{letter-spacing:-3.087525px;}
.ls32_c00267{letter-spacing:-3.047625px;}
.ls45_c00267{letter-spacing:-3.043418px;}
.ls4_c00267{letter-spacing:-2.945250px;}
.ls1c_c00267{letter-spacing:-2.758763px;}
.ls35_c00267{letter-spacing:-2.485350px;}
.ls3b_c00267{letter-spacing:-2.476500px;}
.ls36_c00267{letter-spacing:-2.466248px;}
.ls15_c00267{letter-spacing:-2.407500px;}
.ls20_c00267{letter-spacing:-2.293200px;}
.ls2f_c00267{letter-spacing:-2.287335px;}
.ls3f_c00267{letter-spacing:-2.252250px;}
.ls5_c00267{letter-spacing:-2.205000px;}
.ls2e_c00267{letter-spacing:-2.148300px;}
.ls25_c00267{letter-spacing:-2.120625px;}
.ls1f_c00267{letter-spacing:-1.624095px;}
.ls14_c00267{letter-spacing:-1.605000px;}
.ls1e_c00267{letter-spacing:-1.597920px;}
.ls40_c00267{letter-spacing:-1.550273px;}
.ls26_c00267{letter-spacing:-1.550250px;}
.ls43_c00267{letter-spacing:-1.547985px;}
.ls1d_c00267{letter-spacing:-1.525665px;}
.ls2b_c00267{letter-spacing:-1.502400px;}
.ls7_c00267{letter-spacing:-1.473413px;}
.ls3c_c00267{letter-spacing:-1.040400px;}
.ls39_c00267{letter-spacing:-0.915255px;}
.ls3d_c00267{letter-spacing:-0.808403px;}
.ls10_c00267{letter-spacing:-0.802950px;}
.ls27_c00267{letter-spacing:-0.776085px;}
.ls37_c00267{letter-spacing:-0.762600px;}
.ls38_c00267{letter-spacing:-0.760725px;}
.ls34_c00267{letter-spacing:-0.751275px;}
.ls48_c00267{letter-spacing:-0.736628px;}
.ls9_c00267{letter-spacing:-0.731588px;}
.ls3_c00267{letter-spacing:0.000000px;}
.ls41_c00267{letter-spacing:0.762600px;}
.ls1_c00267{letter-spacing:1.473413px;}
.ls21_c00267{letter-spacing:1.525665px;}
.ls2_c00267{letter-spacing:2.205000px;}
.ls42_c00267{letter-spacing:3.212107px;}
.ls24_c00267{letter-spacing:3.271050px;}
.ls2a_c00267{letter-spacing:3.879000px;}
.ls8_c00267{letter-spacing:3.907170px;}
.ls3e_c00267{letter-spacing:4.295025px;}
.ls12_c00267{letter-spacing:4.418663px;}
.ls18_c00267{letter-spacing:4.663328px;}
.ls33_c00267{letter-spacing:5.154975px;}
.ls0_c00267{letter-spacing:9.568912px;}
.ls46_c00267{letter-spacing:10.077015px;}
.ls1b_c00267{letter-spacing:19.817835px;}
.ls3a_c00267{letter-spacing:21.763597px;}
.ls22_c00267{letter-spacing:40.185600px;}
.ls30_c00267{letter-spacing:54.439125px;}
.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;}
._7_c00267{margin-left:-83.630704px;}
._c_c00267{margin-left:-46.889671px;}
._17_c00267{margin-left:-7.495602px;}
._1_c00267{margin-left:-5.039882px;}
._19_c00267{margin-left:-3.994296px;}
._3_c00267{margin-left:-2.583132px;}
._18_c00267{width:1.473081px;}
._15_c00267{width:2.704393px;}
._0_c00267{width:4.409617px;}
._2_c00267{width:5.670795px;}
._1d_c00267{width:7.552721px;}
._1c_c00267{width:8.568236px;}
._12_c00267{width:9.662375px;}
._13_c00267{width:10.847157px;}
._16_c00267{width:12.218821px;}
._10_c00267{width:13.588526px;}
._1e_c00267{width:15.228756px;}
._14_c00267{width:16.765146px;}
._f_c00267{width:18.672081px;}
._d_c00267{width:20.317765px;}
._1b_c00267{width:22.593566px;}
._e_c00267{width:24.419830px;}
._a_c00267{width:26.934818px;}
._6_c00267{width:28.318853px;}
._8_c00267{width:30.082588px;}
._b_c00267{width:31.440076px;}
._4_c00267{width:33.193316px;}
._9_c00267{width:35.199734px;}
._5_c00267{width:37.247823px;}
._1a_c00267{width:38.927494px;}
._11_c00267{width:41.704204px;}
._1f_c00267{width:105.618781px;}
.fc0_c00267{color:transparent;}
.fse_c00267{font-size:42.000000px;}
.fs15_c00267{font-size:42.750000px;}
.fs10_c00267{font-size:45.000000px;}
.fs16_c00267{font-size:45.750000px;}
.fsa_c00267{font-size:46.500000px;}
.fs13_c00267{font-size:47.250000px;}
.fsc_c00267{font-size:48.000000px;}
.fsb_c00267{font-size:48.750000px;}
.fsd_c00267{font-size:49.500000px;}
.fs14_c00267{font-size:51.000000px;}
.fs17_c00267{font-size:51.750000px;}
.fs11_c00267{font-size:52.500000px;}
.fs12_c00267{font-size:53.250000px;}
.fsf_c00267{font-size:54.000000px;}
.fs9_c00267{font-size:76.500000px;}
.fs7_c00267{font-size:78.000000px;}
.fs1_c00267{font-size:78.750000px;}
.fs5_c00267{font-size:79.500000px;}
.fs8_c00267{font-size:80.250000px;}
.fs6_c00267{font-size:81.750000px;}
.fs4_c00267{font-size:82.500000px;}
.fs2_c00267{font-size:84.000000px;}
.fs0_c00267{font-size:84.750000px;}
.fs3_c00267{font-size:87.000000px;}
.y0_c00267{bottom:0.000000px;}
.y22_c00267{bottom:175.320300px;}
.y21_c00267{bottom:190.799565px;}
.y20_c00267{bottom:230.040600px;}
.y1f_c00267{bottom:269.279850px;}
.y1e_c00267{bottom:308.159850px;}
.y1d_c00267{bottom:315.359850px;}
.y1b_c00267{bottom:516.959925px;}
.y1c_c00267{bottom:516.959970px;}
.y1a_c00267{bottom:547.199850px;}
.y19_c00267{bottom:547.199985px;}
.y18_c00267{bottom:576.719520px;}
.y17_c00267{bottom:606.600135px;}
.y16_c00267{bottom:606.600450px;}
.y15_c00267{bottom:636.119985px;}
.y14_c00267{bottom:636.120870px;}
.y12_c00267{bottom:665.999925px;}
.y13_c00267{bottom:666.000600px;}
.y11_c00267{bottom:695.519460px;}
.y10_c00267{bottom:725.759370px;}
.yf_c00267{bottom:755.639100px;}
.ye_c00267{bottom:815.399625px;}
.yd_c00267{bottom:875.519250px;}
.yb_c00267{bottom:905.578590px;}
.yc_c00267{bottom:905.940315px;}
.ya_c00267{bottom:934.918755px;}
.y8_c00267{bottom:994.319775px;}
.y9_c00267{bottom:994.319820px;}
.y7_c00267{bottom:1024.559685px;}
.y6_c00267{bottom:1024.560450px;}
.y5_c00267{bottom:1054.440165px;}
.y4_c00267{bottom:1084.680090px;}
.y3_c00267{bottom:1084.680225px;}
.y2_c00267{bottom:1114.559940px;}
.y1_c00267{bottom:1144.439670px;}
.h15_c00267{height:43.804688px;}
.h21_c00267{height:44.586914px;}
.h18_c00267{height:45.351562px;}
.h1c_c00267{height:45.637207px;}
.h25_c00267{height:45.955078px;}
.h23_c00267{height:46.107422px;}
.h1f_c00267{height:46.373291px;}
.h10_c00267{height:46.863281px;}
.h14_c00267{height:47.109375px;}
.h16_c00267{height:47.437500px;}
.h1d_c00267{height:47.619141px;}
.h22_c00267{height:47.715820px;}
.h19_c00267{height:47.845459px;}
.h11_c00267{height:48.178711px;}
.h12_c00267{height:48.375000px;}
.hf_c00267{height:48.498047px;}
.h24_c00267{height:49.130859px;}
.h20_c00267{height:49.280273px;}
.h13_c00267{height:49.886719px;}
.h1e_c00267{height:50.402344px;}
.h26_c00267{height:51.143555px;}
.h1a_c00267{height:51.884766px;}
.h1b_c00267{height:52.235962px;}
.h17_c00267{height:53.367188px;}
.hd_c00267{height:75.080566px;}
.h9_c00267{height:76.552734px;}
.h2_c00267{height:77.288818px;}
.h6_c00267{height:78.024902px;}
.h7_c00267{height:78.729538px;}
.he_c00267{height:78.760986px;}
.h8_c00267{height:80.233154px;}
.ha_c00267{height:80.876953px;}
.hb_c00267{height:80.969238px;}
.hc_c00267{height:81.533203px;}
.h3_c00267{height:82.441406px;}
.h5_c00267{height:83.144531px;}
.h1_c00267{height:83.177490px;}
.h4_c00267{height:85.385742px;}
.h0_c00267{height:1263.000000px;}
.w0_c00267{width:892.500000px;}
.x0_c00267{left:0.000000px;}
.xb_c00267{left:141.480270px;}
.x1_c00267{left:142.559100px;}
.x2_c00267{left:156.238785px;}
.x14_c00267{left:166.678500px;}
.x26_c00267{left:173.519100px;}
.xc_c00267{left:176.759100px;}
.x35_c00267{left:188.279850px;}
.x27_c00267{left:190.438665px;}
.x4f_c00267{left:195.118785px;}
.xd_c00267{left:198.719535px;}
.x18_c00267{left:200.878350px;}
.x50_c00267{left:204.120000px;}
.x3e_c00267{left:205.558635px;}
.x28_c00267{left:215.639100px;}
.x36_c00267{left:218.158785px;}
.x19_c00267{left:221.398635px;}
.x29_c00267{left:229.318800px;}
.x37_c00267{left:234.719100px;}
.x34_c00267{left:241.198785px;}
.x51_c00267{left:243.718500px;}
.x52_c00267{left:253.078785px;}
.x2a_c00267{left:266.758500px;}
.x38_c00267{left:268.198785px;}
.xe_c00267{left:269.639100px;}
.x39_c00267{left:277.918350px;}
.x1f_c00267{left:284.038950px;}
.x3_c00267{left:287.998950px;}
.x15_c00267{left:293.758500px;}
.x3f_c00267{left:297.000000px;}
.x3a_c00267{left:306.719535px;}
.xf_c00267{left:308.878350px;}
.x24_c00267{left:310.318800px;}
.x2b_c00267{left:312.120000px;}
.x40_c00267{left:318.599700px;}
.x4_c00267{left:319.679100px;}
.x3b_c00267{left:320.758500px;}
.x25_c00267{left:330.118785px;}
.x2c_c00267{left:331.918350px;}
.x53_c00267{left:339.838515px;}
.x10_c00267{left:349.198785px;}
.x41_c00267{left:353.519685px;}
.x11_c00267{left:364.318800px;}
.x42_c00267{left:367.199385px;}
.x3c_c00267{left:368.998950px;}
.x2d_c00267{left:375.119385px;}
.x43_c00267{left:379.079385px;}
.x16_c00267{left:390.239220px;}
.x54_c00267{left:393.838530px;}
.x55_c00267{left:404.639100px;}
.x17_c00267{left:405.718500px;}
.x44_c00267{left:411.838950px;}
.x2e_c00267{left:421.919535px;}
.x45_c00267{left:425.518665px;}
.x20_c00267{left:433.438665px;}
.x3d_c00267{left:440.999400px;}
.x21_c00267{left:448.199385px;}
.x2f_c00267{left:458.279850px;}
.x46_c00267{left:461.519670px;}
.x47_c00267{left:470.878320px;}
.x12_c00267{left:486.000000px;}
.x30_c00267{left:492.118785px;}
.x56_c00267{left:500.399820px;}
.x1a_c00267{left:503.639700px;}
.x22_c00267{left:506.879520px;}
.x13_c00267{left:507.958920px;}
.x31_c00267{left:511.918950px;}
.x23_c00267{left:527.399820px;}
.x1b_c00267{left:536.758530px;}
.x32_c00267{left:542.519670px;}
.x48_c00267{left:556.919535px;}
.x49_c00267{left:570.599070px;}
.x57_c00267{left:577.439670px;}
.x5_c00267{left:582.119985px;}
.x6_c00267{left:596.519670px;}
.x4a_c00267{left:614.159370px;}
.x33_c00267{left:615.238770px;}
.x1c_c00267{left:630.358605px;}
.x1d_c00267{left:645.119385px;}
.x4b_c00267{left:667.798560px;}
.x4c_c00267{left:686.878320px;}
.x9_c00267{left:694.798560px;}
.xa_c00267{left:724.319820px;}
.x7_c00267{left:729.359250px;}
.x4d_c00267{left:737.279250px;}
.x4e_c00267{left:747.359850px;}
.x1e_c00267{left:749.879520px;}
.x8_c00267{left:752.399235px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.v1_c00267{vertical-align:1.280640pt;}
.ls23_c00267{letter-spacing:-18.460800pt;}
.ls19_c00267{letter-spacing:-16.199333pt;}
.ls13_c00267{letter-spacing:-15.267200pt;}
.lsc_c00267{letter-spacing:-13.581333pt;}
.ls16_c00267{letter-spacing:-9.401333pt;}
.ls29_c00267{letter-spacing:-6.774120pt;}
.lse_c00267{letter-spacing:-6.667000pt;}
.ls11_c00267{letter-spacing:-5.887700pt;}
.ls2d_c00267{letter-spacing:-5.755733pt;}
.lsd_c00267{letter-spacing:-5.236000pt;}
.ls6_c00267{letter-spacing:-4.711467pt;}
.lsf_c00267{letter-spacing:-4.578000pt;}
.ls31_c00267{letter-spacing:-4.533787pt;}
.ls2c_c00267{letter-spacing:-4.267093pt;}
.ls44_c00267{letter-spacing:-4.133747pt;}
.lsb_c00267{letter-spacing:-3.927700pt;}
.ls47_c00267{letter-spacing:-3.331467pt;}
.lsa_c00267{letter-spacing:-3.269700pt;}
.ls17_c00267{letter-spacing:-3.067333pt;}
.ls1a_c00267{letter-spacing:-2.801987pt;}
.ls28_c00267{letter-spacing:-2.744467pt;}
.ls32_c00267{letter-spacing:-2.709000pt;}
.ls45_c00267{letter-spacing:-2.705260pt;}
.ls4_c00267{letter-spacing:-2.618000pt;}
.ls1c_c00267{letter-spacing:-2.452233pt;}
.ls35_c00267{letter-spacing:-2.209200pt;}
.ls3b_c00267{letter-spacing:-2.201333pt;}
.ls36_c00267{letter-spacing:-2.192220pt;}
.ls15_c00267{letter-spacing:-2.140000pt;}
.ls20_c00267{letter-spacing:-2.038400pt;}
.ls2f_c00267{letter-spacing:-2.033187pt;}
.ls3f_c00267{letter-spacing:-2.002000pt;}
.ls5_c00267{letter-spacing:-1.960000pt;}
.ls2e_c00267{letter-spacing:-1.909600pt;}
.ls25_c00267{letter-spacing:-1.885000pt;}
.ls1f_c00267{letter-spacing:-1.443640pt;}
.ls14_c00267{letter-spacing:-1.426667pt;}
.ls1e_c00267{letter-spacing:-1.420373pt;}
.ls40_c00267{letter-spacing:-1.378020pt;}
.ls26_c00267{letter-spacing:-1.378000pt;}
.ls43_c00267{letter-spacing:-1.375987pt;}
.ls1d_c00267{letter-spacing:-1.356147pt;}
.ls2b_c00267{letter-spacing:-1.335467pt;}
.ls7_c00267{letter-spacing:-1.309700pt;}
.ls3c_c00267{letter-spacing:-0.924800pt;}
.ls39_c00267{letter-spacing:-0.813560pt;}
.ls3d_c00267{letter-spacing:-0.718580pt;}
.ls10_c00267{letter-spacing:-0.713733pt;}
.ls27_c00267{letter-spacing:-0.689853pt;}
.ls37_c00267{letter-spacing:-0.677867pt;}
.ls38_c00267{letter-spacing:-0.676200pt;}
.ls34_c00267{letter-spacing:-0.667800pt;}
.ls48_c00267{letter-spacing:-0.654780pt;}
.ls9_c00267{letter-spacing:-0.650300pt;}
.ls3_c00267{letter-spacing:0.000000pt;}
.ls41_c00267{letter-spacing:0.677867pt;}
.ls1_c00267{letter-spacing:1.309700pt;}
.ls21_c00267{letter-spacing:1.356147pt;}
.ls2_c00267{letter-spacing:1.960000pt;}
.ls42_c00267{letter-spacing:2.855207pt;}
.ls24_c00267{letter-spacing:2.907600pt;}
.ls2a_c00267{letter-spacing:3.448000pt;}
.ls8_c00267{letter-spacing:3.473040pt;}
.ls3e_c00267{letter-spacing:3.817800pt;}
.ls12_c00267{letter-spacing:3.927700pt;}
.ls18_c00267{letter-spacing:4.145180pt;}
.ls33_c00267{letter-spacing:4.582200pt;}
.ls0_c00267{letter-spacing:8.505700pt;}
.ls46_c00267{letter-spacing:8.957347pt;}
.ls1b_c00267{letter-spacing:17.615853pt;}
.ls3a_c00267{letter-spacing:19.345420pt;}
.ls22_c00267{letter-spacing:35.720533pt;}
.ls30_c00267{letter-spacing:48.390333pt;}
.ws0_c00267{word-spacing:0.000000pt;}
._7_c00267{margin-left:-74.338404pt;}
._c_c00267{margin-left:-41.679707pt;}
._17_c00267{margin-left:-6.662757pt;}
._1_c00267{margin-left:-4.479895pt;}
._19_c00267{margin-left:-3.550485pt;}
._3_c00267{margin-left:-2.296118pt;}
._18_c00267{width:1.309406pt;}
._15_c00267{width:2.403905pt;}
._0_c00267{width:3.919660pt;}
._2_c00267{width:5.040707pt;}
._1d_c00267{width:6.713530pt;}
._1c_c00267{width:7.616209pt;}
._12_c00267{width:8.588778pt;}
._13_c00267{width:9.641918pt;}
._16_c00267{width:10.861174pt;}
._10_c00267{width:12.078690pt;}
._1e_c00267{width:13.536672pt;}
._14_c00267{width:14.902352pt;}
._f_c00267{width:16.597406pt;}
._d_c00267{width:18.060236pt;}
._1b_c00267{width:20.083170pt;}
._e_c00267{width:21.706516pt;}
._a_c00267{width:23.942061pt;}
._6_c00267{width:25.172314pt;}
._8_c00267{width:26.740079pt;}
._b_c00267{width:27.946735pt;}
._4_c00267{width:29.505170pt;}
._9_c00267{width:31.288652pt;}
._5_c00267{width:33.109176pt;}
._1a_c00267{width:34.602217pt;}
._11_c00267{width:37.070404pt;}
._1f_c00267{width:93.883361pt;}
.fse_c00267{font-size:37.333333pt;}
.fs15_c00267{font-size:38.000000pt;}
.fs10_c00267{font-size:40.000000pt;}
.fs16_c00267{font-size:40.666667pt;}
.fsa_c00267{font-size:41.333333pt;}
.fs13_c00267{font-size:42.000000pt;}
.fsc_c00267{font-size:42.666667pt;}
.fsb_c00267{font-size:43.333333pt;}
.fsd_c00267{font-size:44.000000pt;}
.fs14_c00267{font-size:45.333333pt;}
.fs17_c00267{font-size:46.000000pt;}
.fs11_c00267{font-size:46.666667pt;}
.fs12_c00267{font-size:47.333333pt;}
.fsf_c00267{font-size:48.000000pt;}
.fs9_c00267{font-size:68.000000pt;}
.fs7_c00267{font-size:69.333333pt;}
.fs1_c00267{font-size:70.000000pt;}
.fs5_c00267{font-size:70.666667pt;}
.fs8_c00267{font-size:71.333333pt;}
.fs6_c00267{font-size:72.666667pt;}
.fs4_c00267{font-size:73.333333pt;}
.fs2_c00267{font-size:74.666667pt;}
.fs0_c00267{font-size:75.333333pt;}
.fs3_c00267{font-size:77.333333pt;}
.y0_c00267{bottom:0.000000pt;}
.y22_c00267{bottom:155.840267pt;}
.y21_c00267{bottom:169.599613pt;}
.y20_c00267{bottom:204.480533pt;}
.y1f_c00267{bottom:239.359867pt;}
.y1e_c00267{bottom:273.919867pt;}
.y1d_c00267{bottom:280.319867pt;}
.y1b_c00267{bottom:459.519933pt;}
.y1c_c00267{bottom:459.519973pt;}
.y1a_c00267{bottom:486.399867pt;}
.y19_c00267{bottom:486.399987pt;}
.y18_c00267{bottom:512.639573pt;}
.y17_c00267{bottom:539.200120pt;}
.y16_c00267{bottom:539.200400pt;}
.y15_c00267{bottom:565.439987pt;}
.y14_c00267{bottom:565.440773pt;}
.y12_c00267{bottom:591.999933pt;}
.y13_c00267{bottom:592.000533pt;}
.y11_c00267{bottom:618.239520pt;}
.y10_c00267{bottom:645.119440pt;}
.yf_c00267{bottom:671.679200pt;}
.ye_c00267{bottom:724.799667pt;}
.yd_c00267{bottom:778.239333pt;}
.yb_c00267{bottom:804.958747pt;}
.yc_c00267{bottom:805.280280pt;}
.ya_c00267{bottom:831.038893pt;}
.y8_c00267{bottom:883.839800pt;}
.y9_c00267{bottom:883.839840pt;}
.y7_c00267{bottom:910.719720pt;}
.y6_c00267{bottom:910.720400pt;}
.y5_c00267{bottom:937.280147pt;}
.y4_c00267{bottom:964.160080pt;}
.y3_c00267{bottom:964.160200pt;}
.y2_c00267{bottom:990.719947pt;}
.y1_c00267{bottom:1017.279707pt;}
.h15_c00267{height:38.937500pt;}
.h21_c00267{height:39.632812pt;}
.h18_c00267{height:40.312500pt;}
.h1c_c00267{height:40.566406pt;}
.h25_c00267{height:40.848958pt;}
.h23_c00267{height:40.984375pt;}
.h1f_c00267{height:41.220703pt;}
.h10_c00267{height:41.656250pt;}
.h14_c00267{height:41.875000pt;}
.h16_c00267{height:42.166667pt;}
.h1d_c00267{height:42.328125pt;}
.h22_c00267{height:42.414062pt;}
.h19_c00267{height:42.529297pt;}
.h11_c00267{height:42.825521pt;}
.h12_c00267{height:43.000000pt;}
.hf_c00267{height:43.109375pt;}
.h24_c00267{height:43.671875pt;}
.h20_c00267{height:43.804688pt;}
.h13_c00267{height:44.343750pt;}
.h1e_c00267{height:44.802083pt;}
.h26_c00267{height:45.460938pt;}
.h1a_c00267{height:46.119792pt;}
.h1b_c00267{height:46.431966pt;}
.h17_c00267{height:47.437500pt;}
.hd_c00267{height:66.738281pt;}
.h9_c00267{height:68.046875pt;}
.h2_c00267{height:68.701172pt;}
.h6_c00267{height:69.355469pt;}
.h7_c00267{height:69.981812pt;}
.he_c00267{height:70.009766pt;}
.h8_c00267{height:71.318359pt;}
.ha_c00267{height:71.890625pt;}
.hb_c00267{height:71.972656pt;}
.hc_c00267{height:72.473958pt;}
.h3_c00267{height:73.281250pt;}
.h5_c00267{height:73.906250pt;}
.h1_c00267{height:73.935547pt;}
.h4_c00267{height:75.898438pt;}
.h0_c00267{height:1122.666667pt;}
.w0_c00267{width:793.333333pt;}
.x0_c00267{left:0.000000pt;}
.xb_c00267{left:125.760240pt;}
.x1_c00267{left:126.719200pt;}
.x2_c00267{left:138.878920pt;}
.x14_c00267{left:148.158667pt;}
.x26_c00267{left:154.239200pt;}
.xc_c00267{left:157.119200pt;}
.x35_c00267{left:167.359867pt;}
.x27_c00267{left:169.278813pt;}
.x4f_c00267{left:173.438920pt;}
.xd_c00267{left:176.639587pt;}
.x18_c00267{left:178.558533pt;}
.x50_c00267{left:181.440000pt;}
.x3e_c00267{left:182.718787pt;}
.x28_c00267{left:191.679200pt;}
.x36_c00267{left:193.918920pt;}
.x19_c00267{left:196.798787pt;}
.x29_c00267{left:203.838933pt;}
.x37_c00267{left:208.639200pt;}
.x34_c00267{left:214.398920pt;}
.x51_c00267{left:216.638667pt;}
.x52_c00267{left:224.958920pt;}
.x2a_c00267{left:237.118667pt;}
.x38_c00267{left:238.398920pt;}
.xe_c00267{left:239.679200pt;}
.x39_c00267{left:247.038533pt;}
.x1f_c00267{left:252.479067pt;}
.x3_c00267{left:255.999067pt;}
.x15_c00267{left:261.118667pt;}
.x3f_c00267{left:264.000000pt;}
.x3a_c00267{left:272.639587pt;}
.xf_c00267{left:274.558533pt;}
.x24_c00267{left:275.838933pt;}
.x2b_c00267{left:277.440000pt;}
.x40_c00267{left:283.199733pt;}
.x4_c00267{left:284.159200pt;}
.x3b_c00267{left:285.118667pt;}
.x25_c00267{left:293.438920pt;}
.x2c_c00267{left:295.038533pt;}
.x53_c00267{left:302.078680pt;}
.x10_c00267{left:310.398920pt;}
.x41_c00267{left:314.239720pt;}
.x11_c00267{left:323.838933pt;}
.x42_c00267{left:326.399453pt;}
.x3c_c00267{left:327.999067pt;}
.x2d_c00267{left:333.439453pt;}
.x43_c00267{left:336.959453pt;}
.x16_c00267{left:346.879307pt;}
.x54_c00267{left:350.078693pt;}
.x55_c00267{left:359.679200pt;}
.x17_c00267{left:360.638667pt;}
.x44_c00267{left:366.079067pt;}
.x2e_c00267{left:375.039587pt;}
.x45_c00267{left:378.238813pt;}
.x20_c00267{left:385.278813pt;}
.x3d_c00267{left:391.999467pt;}
.x21_c00267{left:398.399453pt;}
.x2f_c00267{left:407.359867pt;}
.x46_c00267{left:410.239707pt;}
.x47_c00267{left:418.558507pt;}
.x12_c00267{left:432.000000pt;}
.x30_c00267{left:437.438920pt;}
.x56_c00267{left:444.799840pt;}
.x1a_c00267{left:447.679733pt;}
.x22_c00267{left:450.559573pt;}
.x13_c00267{left:451.519040pt;}
.x31_c00267{left:455.039067pt;}
.x23_c00267{left:468.799840pt;}
.x1b_c00267{left:477.118693pt;}
.x32_c00267{left:482.239707pt;}
.x48_c00267{left:495.039587pt;}
.x49_c00267{left:507.199173pt;}
.x57_c00267{left:513.279707pt;}
.x5_c00267{left:517.439987pt;}
.x6_c00267{left:530.239707pt;}
.x4a_c00267{left:545.919440pt;}
.x33_c00267{left:546.878907pt;}
.x1c_c00267{left:560.318760pt;}
.x1d_c00267{left:573.439453pt;}
.x4b_c00267{left:593.598720pt;}
.x4c_c00267{left:610.558507pt;}
.x9_c00267{left:617.598720pt;}
.xa_c00267{left:643.839840pt;}
.x7_c00267{left:648.319333pt;}
.x4d_c00267{left:655.359333pt;}
.x4e_c00267{left:664.319867pt;}
.x1e_c00267{left:666.559573pt;}
.x8_c00267{left:668.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9179478fdf6833ae433eb04d.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_bd8ec1edd0e732b124809338.woff2')format("woff");}.ff2_c00268{font-family:ff2_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:ff3_c00268;src:url('chunks/assets/font_de339fc8236e87187c3c113e.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_7dcd20fadc075c00c156ce35.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_d96db9eeeb542aa29f63fd42.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00268;src:url('chunks/assets/font_ece2e96290c501d7495a0d06.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00268{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m29_c00268{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2a_c00268{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.m33_c00268{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2d_c00268{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mf_c00268{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207447,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m34_c00268{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m1d_c00268{transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);}
.m31_c00268{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m1c_c00268{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m30_c00268{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m3b_c00268{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{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);}
.ma_c00268{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m17_c00268{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m18_c00268{transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m3a_c00268{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{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);}
.m3d_c00268{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m2e_c00268{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m10_c00268{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m38_c00268{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m13_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m35_c00268{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m14_c00268{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);}
.m2b_c00268{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m23_c00268{transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263393,0.000000,0.000000,0.250000,0,0);}
.m11_c00268{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m27_c00268{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m36_c00268{transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);}
.m1f_c00268{transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);}
.m3c_c00268{transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);}
.m32_c00268{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m20_c00268{transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300725,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00268{transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319149,0.000000,0.000000,0.250000,0,0);}
.m12_c00268{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.371951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371951,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{transform:matrix(0.379310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379310,0.000000,0.000000,0.250000,0,0);}
.m28_c00268{transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);}
.m19_c00268{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);}
.m24_c00268{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m1a_c00268{transform:matrix(0.453704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453704,0.000000,0.000000,0.250000,0,0);}
.m25_c00268{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00268{transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471429,0.000000,0.000000,0.250000,0,0);}
.m26_c00268{transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472222,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls2d_c00268{letter-spacing:-14.594850px;}
.ls2b_c00268{letter-spacing:-13.149045px;}
.ls13_c00268{letter-spacing:-13.121693px;}
.ls10_c00268{letter-spacing:-8.914500px;}
.ls2c_c00268{letter-spacing:-7.426125px;}
.ls14_c00268{letter-spacing:-7.028100px;}
.ls1c_c00268{letter-spacing:-6.526800px;}
.lsa_c00268{letter-spacing:-6.115050px;}
.lsf_c00268{letter-spacing:-5.945625px;}
.ls7_c00268{letter-spacing:-5.196713px;}
.ls12_c00268{letter-spacing:-5.069925px;}
.lse_c00268{letter-spacing:-4.838445px;}
.ls1d_c00268{letter-spacing:-4.545000px;}
.ls2a_c00268{letter-spacing:-4.495433px;}
.ls9_c00268{letter-spacing:-4.456463px;}
.ls38_c00268{letter-spacing:-4.167450px;}
.ls34_c00268{letter-spacing:-4.113120px;}
.ls8_c00268{letter-spacing:-3.717000px;}
.ls2e_c00268{letter-spacing:-3.583125px;}
.ls24_c00268{letter-spacing:-3.530407px;}
.ls29_c00268{letter-spacing:-3.322425px;}
.ls5_c00268{letter-spacing:-2.968875px;}
.ls30_c00268{letter-spacing:-2.866988px;}
.ls39_c00268{letter-spacing:-2.778773px;}
.ls22_c00268{letter-spacing:-2.351175px;}
.ls6_c00268{letter-spacing:-2.229413px;}
.lsc_c00268{letter-spacing:-2.208180px;}
.ls3e_c00268{letter-spacing:-2.149875px;}
.ls35_c00268{letter-spacing:-1.989000px;}
.ls33_c00268{letter-spacing:-1.656000px;}
.ls3c_c00268{letter-spacing:-1.611143px;}
.ls31_c00268{letter-spacing:-1.547985px;}
.ls3b_c00268{letter-spacing:-1.526400px;}
.ls32_c00268{letter-spacing:-1.502400px;}
.ls4_c00268{letter-spacing:-1.489163px;}
.ls2f_c00268{letter-spacing:-1.455773px;}
.ls21_c00268{letter-spacing:-1.246658px;}
.ls27_c00268{letter-spacing:-1.190700px;}
.ls25_c00268{letter-spacing:-0.898830px;}
.lsd_c00268{letter-spacing:-0.740250px;}
.ls37_c00268{letter-spacing:-0.739200px;}
.ls1e_c00268{letter-spacing:-0.412695px;}
.lsb_c00268{letter-spacing:0.000000px;}
.ls28_c00268{letter-spacing:0.699090px;}
.ls20_c00268{letter-spacing:0.854250px;}
.ls1a_c00268{letter-spacing:1.199700px;}
.ls0_c00268{letter-spacing:1.489163px;}
.ls11_c00268{letter-spacing:1.560000px;}
.ls3a_c00268{letter-spacing:3.050400px;}
.ls3d_c00268{letter-spacing:3.105000px;}
.ls3_c00268{letter-spacing:3.370080px;}
.ls36_c00268{letter-spacing:5.154975px;}
.ls19_c00268{letter-spacing:5.155650px;}
.ls2_c00268{letter-spacing:7.828800px;}
.ls23_c00268{letter-spacing:8.999400px;}
.ls18_c00268{letter-spacing:12.000150px;}
.ls1f_c00268{letter-spacing:12.854250px;}
.ls26_c00268{letter-spacing:18.000900px;}
.ls1b_c00268{letter-spacing:21.692850px;}
.ls1_c00268{letter-spacing:45.937500px;}
.ls15_c00268{letter-spacing:77.647748px;}
.ls16_c00268{letter-spacing:97.526782px;}
.ls17_c00268{letter-spacing:105.186600px;}
.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;}
._1b_c00268{margin-left:-30.978556px;}
._1c_c00268{margin-left:-20.000583px;}
._1a_c00268{margin-left:-9.998516px;}
._10_c00268{margin-left:-5.977898px;}
._19_c00268{margin-left:-3.729543px;}
._f_c00268{margin-left:-2.548261px;}
._1_c00268{margin-left:-1.018594px;}
._2_c00268{width:1.078444px;}
._3_c00268{width:2.521441px;}
._e_c00268{width:3.898927px;}
._5_c00268{width:5.047058px;}
._0_c00268{width:6.851428px;}
._4_c00268{width:8.683480px;}
._6_c00268{width:9.998947px;}
._d_c00268{width:11.118564px;}
._11_c00268{width:12.122894px;}
._c_c00268{width:13.739988px;}
._14_c00268{width:15.124220px;}
._b_c00268{width:16.209707px;}
._13_c00268{width:17.276294px;}
._18_c00268{width:20.395462px;}
._7_c00268{width:21.421367px;}
._8_c00268{width:23.430800px;}
._12_c00268{width:24.813516px;}
._a_c00268{width:27.164159px;}
._9_c00268{width:28.369375px;}
._17_c00268{width:30.531598px;}
._16_c00268{width:32.019200px;}
._15_c00268{width:36.046401px;}
.fc0_c00268{color:transparent;}
.fs1b_c00268{font-size:21.000000px;}
.fs1c_c00268{font-size:23.250000px;}
.fs1a_c00268{font-size:27.000000px;}
.fsd_c00268{font-size:30.000000px;}
.fs18_c00268{font-size:30.750000px;}
.fse_c00268{font-size:35.250000px;}
.fsb_c00268{font-size:36.750000px;}
.fsc_c00268{font-size:40.500000px;}
.fs19_c00268{font-size:42.000000px;}
.fs12_c00268{font-size:43.500000px;}
.fs21_c00268{font-size:44.250000px;}
.fs11_c00268{font-size:45.000000px;}
.fs1f_c00268{font-size:46.500000px;}
.fs1e_c00268{font-size:47.250000px;}
.fsf_c00268{font-size:48.000000px;}
.fs1d_c00268{font-size:48.750000px;}
.fs13_c00268{font-size:50.250000px;}
.fs9_c00268{font-size:51.750000px;}
.fs15_c00268{font-size:52.500000px;}
.fs20_c00268{font-size:53.250000px;}
.fs17_c00268{font-size:60.000000px;}
.fs16_c00268{font-size:61.500000px;}
.fs14_c00268{font-size:65.250000px;}
.fs5_c00268{font-size:75.000000px;}
.fs2_c00268{font-size:78.000000px;}
.fs0_c00268{font-size:78.750000px;}
.fs1_c00268{font-size:80.250000px;}
.fs8_c00268{font-size:81.750000px;}
.fs4_c00268{font-size:82.500000px;}
.fs7_c00268{font-size:83.250000px;}
.fs10_c00268{font-size:84.000000px;}
.fs6_c00268{font-size:84.750000px;}
.fs3_c00268{font-size:85.500000px;}
.fsa_c00268{font-size:92.250000px;}
.y0_c00268{bottom:0.000000px;}
.y2c_c00268{bottom:174.961050px;}
.y2b_c00268{bottom:214.559685px;}
.y2a_c00268{bottom:275.761185px;}
.y29_c00268{bottom:306.000900px;}
.y28_c00268{bottom:335.159940px;}
.y27_c00268{bottom:365.399850px;}
.y26_c00268{bottom:365.400720px;}
.y25_c00268{bottom:395.280435px;}
.y23_c00268{bottom:425.881215px;}
.y24_c00268{bottom:426.240420px;}
.y22_c00268{bottom:430.559685px;}
.y21_c00268{bottom:432.720150px;}
.y20_c00268{bottom:433.440315px;}
.y1f_c00268{bottom:455.400885px;}
.y1e_c00268{bottom:455.400975px;}
.y1d_c00268{bottom:485.640885px;}
.y1c_c00268{bottom:515.160420px;}
.y1b_c00268{bottom:515.161305px;}
.y1a_c00268{bottom:545.041035px;}
.y19_c00268{bottom:545.041830px;}
.y18_c00268{bottom:574.561365px;}
.y17_c00268{bottom:633.600135px;}
.y16_c00268{bottom:663.480885px;}
.y15_c00268{bottom:663.481815px;}
.y14_c00268{bottom:723.601455px;}
.y13_c00268{bottom:783.360900px;}
.y12_c00268{bottom:783.360945px;}
.y11_c00268{bottom:813.240675px;}
.y10_c00268{bottom:843.120390px;}
.yf_c00268{bottom:843.120570px;}
.ye_c00268{bottom:872.640105px;}
.yd_c00268{bottom:872.640465px;}
.yb_c00268{bottom:903.240210px;}
.yc_c00268{bottom:903.240870px;}
.ya_c00268{bottom:933.119940px;}
.y9_c00268{bottom:933.121005px;}
.y8_c00268{bottom:963.000735px;}
.y7_c00268{bottom:992.520270px;}
.y6_c00268{bottom:992.521155px;}
.y4_c00268{bottom:1022.399670px;}
.y5_c00268{bottom:1022.400885px;}
.y3_c00268{bottom:1052.279385px;}
.y2_c00268{bottom:1082.519295px;}
.y1_c00268{bottom:1142.280855px;}
.h1e_c00268{height:21.902344px;}
.h1f_c00268{height:24.249023px;}
.h1d_c00268{height:26.683594px;}
.h1c_c00268{height:27.210938px;}
.h1b_c00268{height:28.160156px;}
.he_c00268{height:31.289062px;}
.h19_c00268{height:32.071289px;}
.hf_c00268{height:36.764648px;}
.hc_c00268{height:38.329102px;}
.hd_c00268{height:42.240234px;}
.h1a_c00268{height:43.804688px;}
.h2a_c00268{height:45.351562px;}
.h13_c00268{height:45.369141px;}
.h28_c00268{height:46.151367px;}
.h22_c00268{height:46.373291px;}
.h24_c00268{height:46.863281px;}
.h12_c00268{height:46.933594px;}
.h25_c00268{height:47.109375px;}
.h27_c00268{height:47.619141px;}
.h21_c00268{height:47.845459px;}
.h23_c00268{height:48.178711px;}
.h10_c00268{height:48.375000px;}
.h29_c00268{height:49.130859px;}
.h26_c00268{height:52.261963px;}
.h14_c00268{height:52.409180px;}
.ha_c00268{height:53.973633px;}
.h16_c00268{height:54.755859px;}
.h18_c00268{height:59.296875px;}
.h17_c00268{height:61.980469px;}
.h15_c00268{height:68.053711px;}
.h6_c00268{height:73.608398px;}
.h3_c00268{height:76.552734px;}
.h1_c00268{height:77.288818px;}
.h20_c00268{height:80.233154px;}
.h9_c00268{height:80.791992px;}
.h2_c00268{height:80.876953px;}
.h5_c00268{height:80.969238px;}
.h8_c00268{height:81.705322px;}
.h11_c00268{height:83.015625px;}
.h7_c00268{height:83.177490px;}
.h4_c00268{height:84.498047px;}
.hb_c00268{height:96.213867px;}
.h0_c00268{height:1263.000000px;}
.w0_c00268{width:892.500000px;}
.x0_c00268{left:0.000000px;}
.xf_c00268{left:140.759040px;}
.x1_c00268{left:141.838950px;}
.x15_c00268{left:143.279595px;}
.x20_c00268{left:147.959400px;}
.x2e_c00268{left:157.679100px;}
.x35_c00268{left:162.718500px;}
.x36_c00268{left:173.519100px;}
.x2f_c00268{left:177.838515px;}
.x37_c00268{left:190.438665px;}
.x1c_c00268{left:195.118785px;}
.x21_c00268{left:196.199850px;}
.x1d_c00268{left:209.159385px;}
.x38_c00268{left:210.238785px;}
.x39_c00268{left:224.279250px;}
.x6_c00268{left:258.479235px;}
.x22_c00268{left:264.238785px;}
.x30_c00268{left:265.319850px;}
.x3a_c00268{left:284.759100px;}
.x2_c00268{left:288.359850px;}
.x16_c00268{left:293.758500px;}
.x7_c00268{left:298.438635px;}
.x17_c00268{left:313.919535px;}
.x3_c00268{left:320.399235px;}
.x3b_c00268{left:327.958350px;}
.x31_c00268{left:343.080000px;}
.x3c_c00268{left:361.078785px;}
.x42_c00268{left:364.318800px;}
.x8_c00268{left:365.759100px;}
.x3d_c00268{left:370.439235px;}
.x43_c00268{left:374.040000px;}
.x9_c00268{left:381.239850px;}
.x3e_c00268{left:385.199850px;}
.x44_c00268{left:388.439715px;}
.x23_c00268{left:390.239220px;}
.x3f_c00268{left:398.518665px;}
.x45_c00268{left:402.119385px;}
.x12_c00268{left:461.519670px;}
.x24_c00268{left:469.798920px;}
.x13_c00268{left:478.439250px;}
.x25_c00268{left:492.118785px;}
.x1e_c00268{left:519.118785px;}
.x40_c00268{left:522.358665px;}
.x46_c00268{left:525.959385px;}
.x26_c00268{left:532.798515px;}
.x32_c00268{left:537.839535px;}
.x1f_c00268{left:539.279850px;}
.x41_c00268{left:541.438620px;}
.x1a_c00268{left:543.599070px;}
.x47_c00268{left:545.398635px;}
.x10_c00268{left:546.838950px;}
.x27_c00268{left:547.918350px;}
.xe_c00268{left:552.959385px;}
.x1b_c00268{left:556.919535px;}
.x4_c00268{left:564.119385px;}
.xa_c00268{left:568.799520px;}
.x11_c00268{left:579.959385px;}
.x28_c00268{left:588.958920px;}
.x5_c00268{left:596.519670px;}
.xb_c00268{left:607.679670px;}
.x29_c00268{left:616.679070px;}
.x2a_c00268{left:660.959385px;}
.xc_c00268{left:682.559100px;}
.x2b_c00268{left:687.598530px;}
.xd_c00268{left:699.119385px;}
.x33_c00268{left:705.239820px;}
.x2c_c00268{left:714.239220px;}
.x34_c00268{left:725.399235px;}
.x18_c00268{left:744.119985px;}
.x19_c00268{left:758.519670px;}
.x2d_c00268{left:762.838950px;}
.x14_c00268{left:770.038965px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls2d_c00268{letter-spacing:-12.973200pt;}
.ls2b_c00268{letter-spacing:-11.688040pt;}
.ls13_c00268{letter-spacing:-11.663727pt;}
.ls10_c00268{letter-spacing:-7.924000pt;}
.ls2c_c00268{letter-spacing:-6.601000pt;}
.ls14_c00268{letter-spacing:-6.247200pt;}
.ls1c_c00268{letter-spacing:-5.801600pt;}
.lsa_c00268{letter-spacing:-5.435600pt;}
.lsf_c00268{letter-spacing:-5.285000pt;}
.ls7_c00268{letter-spacing:-4.619300pt;}
.ls12_c00268{letter-spacing:-4.506600pt;}
.lse_c00268{letter-spacing:-4.300840pt;}
.ls1d_c00268{letter-spacing:-4.040000pt;}
.ls2a_c00268{letter-spacing:-3.995940pt;}
.ls9_c00268{letter-spacing:-3.961300pt;}
.ls38_c00268{letter-spacing:-3.704400pt;}
.ls34_c00268{letter-spacing:-3.656107pt;}
.ls8_c00268{letter-spacing:-3.304000pt;}
.ls2e_c00268{letter-spacing:-3.185000pt;}
.ls24_c00268{letter-spacing:-3.138140pt;}
.ls29_c00268{letter-spacing:-2.953267pt;}
.ls5_c00268{letter-spacing:-2.639000pt;}
.ls30_c00268{letter-spacing:-2.548433pt;}
.ls39_c00268{letter-spacing:-2.470020pt;}
.ls22_c00268{letter-spacing:-2.089933pt;}
.ls6_c00268{letter-spacing:-1.981700pt;}
.lsc_c00268{letter-spacing:-1.962827pt;}
.ls3e_c00268{letter-spacing:-1.911000pt;}
.ls35_c00268{letter-spacing:-1.768000pt;}
.ls33_c00268{letter-spacing:-1.472000pt;}
.ls3c_c00268{letter-spacing:-1.432127pt;}
.ls31_c00268{letter-spacing:-1.375987pt;}
.ls3b_c00268{letter-spacing:-1.356800pt;}
.ls32_c00268{letter-spacing:-1.335467pt;}
.ls4_c00268{letter-spacing:-1.323700pt;}
.ls2f_c00268{letter-spacing:-1.294020pt;}
.ls21_c00268{letter-spacing:-1.108140pt;}
.ls27_c00268{letter-spacing:-1.058400pt;}
.ls25_c00268{letter-spacing:-0.798960pt;}
.lsd_c00268{letter-spacing:-0.658000pt;}
.ls37_c00268{letter-spacing:-0.657067pt;}
.ls1e_c00268{letter-spacing:-0.366840pt;}
.lsb_c00268{letter-spacing:0.000000pt;}
.ls28_c00268{letter-spacing:0.621413pt;}
.ls20_c00268{letter-spacing:0.759333pt;}
.ls1a_c00268{letter-spacing:1.066400pt;}
.ls0_c00268{letter-spacing:1.323700pt;}
.ls11_c00268{letter-spacing:1.386667pt;}
.ls3a_c00268{letter-spacing:2.711467pt;}
.ls3d_c00268{letter-spacing:2.760000pt;}
.ls3_c00268{letter-spacing:2.995627pt;}
.ls36_c00268{letter-spacing:4.582200pt;}
.ls19_c00268{letter-spacing:4.582800pt;}
.ls2_c00268{letter-spacing:6.958933pt;}
.ls23_c00268{letter-spacing:7.999467pt;}
.ls18_c00268{letter-spacing:10.666800pt;}
.ls1f_c00268{letter-spacing:11.426000pt;}
.ls26_c00268{letter-spacing:16.000800pt;}
.ls1b_c00268{letter-spacing:19.282533pt;}
.ls1_c00268{letter-spacing:40.833333pt;}
.ls15_c00268{letter-spacing:69.020220pt;}
.ls16_c00268{letter-spacing:86.690473pt;}
.ls17_c00268{letter-spacing:93.499200pt;}
.ws0_c00268{word-spacing:0.000000pt;}
._1b_c00268{margin-left:-27.536494pt;}
._1c_c00268{margin-left:-17.778296pt;}
._1a_c00268{margin-left:-8.887570pt;}
._10_c00268{margin-left:-5.313687pt;}
._19_c00268{margin-left:-3.315149pt;}
._f_c00268{margin-left:-2.265121pt;}
._1_c00268{margin-left:-0.905417pt;}
._2_c00268{width:0.958617pt;}
._3_c00268{width:2.241281pt;}
._e_c00268{width:3.465713pt;}
._5_c00268{width:4.486274pt;}
._0_c00268{width:6.090158pt;}
._4_c00268{width:7.718649pt;}
._6_c00268{width:8.887953pt;}
._d_c00268{width:9.883168pt;}
._11_c00268{width:10.775906pt;}
._c_c00268{width:12.213323pt;}
._14_c00268{width:13.443751pt;}
._b_c00268{width:14.408628pt;}
._13_c00268{width:15.356706pt;}
._18_c00268{width:18.129300pt;}
._7_c00268{width:19.041215pt;}
._8_c00268{width:20.827377pt;}
._12_c00268{width:22.056458pt;}
._a_c00268{width:24.145919pt;}
._9_c00268{width:25.217223pt;}
._17_c00268{width:27.139198pt;}
._16_c00268{width:28.461511pt;}
._15_c00268{width:32.041245pt;}
.fs1b_c00268{font-size:18.666667pt;}
.fs1c_c00268{font-size:20.666667pt;}
.fs1a_c00268{font-size:24.000000pt;}
.fsd_c00268{font-size:26.666667pt;}
.fs18_c00268{font-size:27.333333pt;}
.fse_c00268{font-size:31.333333pt;}
.fsb_c00268{font-size:32.666667pt;}
.fsc_c00268{font-size:36.000000pt;}
.fs19_c00268{font-size:37.333333pt;}
.fs12_c00268{font-size:38.666667pt;}
.fs21_c00268{font-size:39.333333pt;}
.fs11_c00268{font-size:40.000000pt;}
.fs1f_c00268{font-size:41.333333pt;}
.fs1e_c00268{font-size:42.000000pt;}
.fsf_c00268{font-size:42.666667pt;}
.fs1d_c00268{font-size:43.333333pt;}
.fs13_c00268{font-size:44.666667pt;}
.fs9_c00268{font-size:46.000000pt;}
.fs15_c00268{font-size:46.666667pt;}
.fs20_c00268{font-size:47.333333pt;}
.fs17_c00268{font-size:53.333333pt;}
.fs16_c00268{font-size:54.666667pt;}
.fs14_c00268{font-size:58.000000pt;}
.fs5_c00268{font-size:66.666667pt;}
.fs2_c00268{font-size:69.333333pt;}
.fs0_c00268{font-size:70.000000pt;}
.fs1_c00268{font-size:71.333333pt;}
.fs8_c00268{font-size:72.666667pt;}
.fs4_c00268{font-size:73.333333pt;}
.fs7_c00268{font-size:74.000000pt;}
.fs10_c00268{font-size:74.666667pt;}
.fs6_c00268{font-size:75.333333pt;}
.fs3_c00268{font-size:76.000000pt;}
.fsa_c00268{font-size:82.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y2c_c00268{bottom:155.520933pt;}
.y2b_c00268{bottom:190.719720pt;}
.y2a_c00268{bottom:245.121053pt;}
.y29_c00268{bottom:272.000800pt;}
.y28_c00268{bottom:297.919947pt;}
.y27_c00268{bottom:324.799867pt;}
.y26_c00268{bottom:324.800640pt;}
.y25_c00268{bottom:351.360387pt;}
.y23_c00268{bottom:378.561080pt;}
.y24_c00268{bottom:378.880373pt;}
.y22_c00268{bottom:382.719720pt;}
.y21_c00268{bottom:384.640133pt;}
.y20_c00268{bottom:385.280280pt;}
.y1f_c00268{bottom:404.800787pt;}
.y1e_c00268{bottom:404.800867pt;}
.y1d_c00268{bottom:431.680787pt;}
.y1c_c00268{bottom:457.920373pt;}
.y1b_c00268{bottom:457.921160pt;}
.y1a_c00268{bottom:484.480920pt;}
.y19_c00268{bottom:484.481627pt;}
.y18_c00268{bottom:510.721213pt;}
.y17_c00268{bottom:563.200120pt;}
.y16_c00268{bottom:589.760787pt;}
.y15_c00268{bottom:589.761613pt;}
.y14_c00268{bottom:643.201293pt;}
.y13_c00268{bottom:696.320800pt;}
.y12_c00268{bottom:696.320840pt;}
.y11_c00268{bottom:722.880600pt;}
.y10_c00268{bottom:749.440347pt;}
.yf_c00268{bottom:749.440507pt;}
.ye_c00268{bottom:775.680093pt;}
.yd_c00268{bottom:775.680413pt;}
.yb_c00268{bottom:802.880187pt;}
.yc_c00268{bottom:802.880773pt;}
.ya_c00268{bottom:829.439947pt;}
.y9_c00268{bottom:829.440893pt;}
.y8_c00268{bottom:856.000653pt;}
.y7_c00268{bottom:882.240240pt;}
.y6_c00268{bottom:882.241027pt;}
.y4_c00268{bottom:908.799707pt;}
.y5_c00268{bottom:908.800787pt;}
.y3_c00268{bottom:935.359453pt;}
.y2_c00268{bottom:962.239373pt;}
.y1_c00268{bottom:1015.360760pt;}
.h1e_c00268{height:19.468750pt;}
.h1f_c00268{height:21.554687pt;}
.h1d_c00268{height:23.718750pt;}
.h1c_c00268{height:24.187500pt;}
.h1b_c00268{height:25.031250pt;}
.he_c00268{height:27.812500pt;}
.h19_c00268{height:28.507812pt;}
.hf_c00268{height:32.679688pt;}
.hc_c00268{height:34.070312pt;}
.hd_c00268{height:37.546875pt;}
.h1a_c00268{height:38.937500pt;}
.h2a_c00268{height:40.312500pt;}
.h13_c00268{height:40.328125pt;}
.h28_c00268{height:41.023438pt;}
.h22_c00268{height:41.220703pt;}
.h24_c00268{height:41.656250pt;}
.h12_c00268{height:41.718750pt;}
.h25_c00268{height:41.875000pt;}
.h27_c00268{height:42.328125pt;}
.h21_c00268{height:42.529297pt;}
.h23_c00268{height:42.825521pt;}
.h10_c00268{height:43.000000pt;}
.h29_c00268{height:43.671875pt;}
.h26_c00268{height:46.455078pt;}
.h14_c00268{height:46.585938pt;}
.ha_c00268{height:47.976562pt;}
.h16_c00268{height:48.671875pt;}
.h18_c00268{height:52.708333pt;}
.h17_c00268{height:55.093750pt;}
.h15_c00268{height:60.492188pt;}
.h6_c00268{height:65.429688pt;}
.h3_c00268{height:68.046875pt;}
.h1_c00268{height:68.701172pt;}
.h20_c00268{height:71.318359pt;}
.h9_c00268{height:71.815104pt;}
.h2_c00268{height:71.890625pt;}
.h5_c00268{height:71.972656pt;}
.h8_c00268{height:72.626953pt;}
.h11_c00268{height:73.791667pt;}
.h7_c00268{height:73.935547pt;}
.h4_c00268{height:75.109375pt;}
.hb_c00268{height:85.523438pt;}
.h0_c00268{height:1122.666667pt;}
.w0_c00268{width:793.333333pt;}
.x0_c00268{left:0.000000pt;}
.xf_c00268{left:125.119147pt;}
.x1_c00268{left:126.079067pt;}
.x15_c00268{left:127.359640pt;}
.x20_c00268{left:131.519467pt;}
.x2e_c00268{left:140.159200pt;}
.x35_c00268{left:144.638667pt;}
.x36_c00268{left:154.239200pt;}
.x2f_c00268{left:158.078680pt;}
.x37_c00268{left:169.278813pt;}
.x1c_c00268{left:173.438920pt;}
.x21_c00268{left:174.399867pt;}
.x1d_c00268{left:185.919453pt;}
.x38_c00268{left:186.878920pt;}
.x39_c00268{left:199.359333pt;}
.x6_c00268{left:229.759320pt;}
.x22_c00268{left:234.878920pt;}
.x30_c00268{left:235.839867pt;}
.x3a_c00268{left:253.119200pt;}
.x2_c00268{left:256.319867pt;}
.x16_c00268{left:261.118667pt;}
.x7_c00268{left:265.278787pt;}
.x17_c00268{left:279.039587pt;}
.x3_c00268{left:284.799320pt;}
.x3b_c00268{left:291.518533pt;}
.x31_c00268{left:304.960000pt;}
.x3c_c00268{left:320.958920pt;}
.x42_c00268{left:323.838933pt;}
.x8_c00268{left:325.119200pt;}
.x3d_c00268{left:329.279320pt;}
.x43_c00268{left:332.480000pt;}
.x9_c00268{left:338.879867pt;}
.x3e_c00268{left:342.399867pt;}
.x44_c00268{left:345.279747pt;}
.x23_c00268{left:346.879307pt;}
.x3f_c00268{left:354.238813pt;}
.x45_c00268{left:357.439453pt;}
.x12_c00268{left:410.239707pt;}
.x24_c00268{left:417.599040pt;}
.x13_c00268{left:425.279333pt;}
.x25_c00268{left:437.438920pt;}
.x1e_c00268{left:461.438920pt;}
.x40_c00268{left:464.318813pt;}
.x46_c00268{left:467.519453pt;}
.x26_c00268{left:473.598680pt;}
.x32_c00268{left:478.079587pt;}
.x1f_c00268{left:479.359867pt;}
.x41_c00268{left:481.278773pt;}
.x1a_c00268{left:483.199173pt;}
.x47_c00268{left:484.798787pt;}
.x10_c00268{left:486.079067pt;}
.x27_c00268{left:487.038533pt;}
.xe_c00268{left:491.519453pt;}
.x1b_c00268{left:495.039587pt;}
.x4_c00268{left:501.439453pt;}
.xa_c00268{left:505.599573pt;}
.x11_c00268{left:515.519453pt;}
.x28_c00268{left:523.519040pt;}
.x5_c00268{left:530.239707pt;}
.xb_c00268{left:540.159707pt;}
.x29_c00268{left:548.159173pt;}
.x2a_c00268{left:587.519453pt;}
.xc_c00268{left:606.719200pt;}
.x2b_c00268{left:611.198693pt;}
.xd_c00268{left:621.439453pt;}
.x33_c00268{left:626.879840pt;}
.x2c_c00268{left:634.879307pt;}
.x34_c00268{left:644.799320pt;}
.x18_c00268{left:661.439987pt;}
.x19_c00268{left:674.239707pt;}
.x2d_c00268{left:678.079067pt;}
.x14_c00268{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3070e2024f58a7759ae7264b.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_8e25f712d3bc4ddcb923ff1f.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_45dbb9b5b7bfe9446fac321f.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00269;src:url('chunks/assets/font_baf7384050abc6f88399dcf2.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_f8fba6ce19ccff4024ad1d14.woff2')format("woff");}.ff6_c00269{font-family:ff6_c00269;line-height:1.281250;font-style:normal;font-weight: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_c00269;src:url('chunks/assets/font_2022f2202897ee071e1c770a.woff2')format("woff");}.ff7_c00269{font-family:ff7_c00269;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17_c00269{transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m44_c00269{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m28_c00269{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m1a_c00269{transform:matrix(0.178261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178261,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m5c_c00269{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m2d_c00269{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m2e_c00269{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m19_c00269{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m45_c00269{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_c00269{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m59_c00269{transform:matrix(0.214436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214436,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.215426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215426,0.000000,0.000000,0.250000,0,0);}
.m5e_c00269{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m3f_c00269{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m4c_c00269{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m30_c00269{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{transform:matrix(0.221053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221053,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m42_c00269{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m4b_c00269{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m5d_c00269{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m3c_c00269{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m2c_c00269{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m2b_c00269{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m5b_c00269{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m5f_c00269{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m54_c00269{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m29_c00269{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m35_c00269{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m33_c00269{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m43_c00269{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m4e_c00269{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m2a_c00269{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m3b_c00269{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m4f_c00269{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m38_c00269{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m46_c00269{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m48_c00269{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m56_c00269{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m27_c00269{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m31_c00269{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.m51_c00269{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m4a_c00269{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m36_c00269{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.m53_c00269{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m24_c00269{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m40_c00269{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m41_c00269{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.m57_c00269{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m58_c00269{transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);}
.m3e_c00269{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273077,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279661,0.000000,0.000000,0.250000,0,0);}
.m37_c00269{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m52_c00269{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);}
.m50_c00269{transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);}
.m2f_c00269{transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338462,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m55_c00269{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m1e_c00269{transform:matrix(0.420732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420732,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441176,0.000000,0.000000,0.250000,0,0);}
.m5a_c00269{transform:matrix(0.475610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475610,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls2c_c00269{letter-spacing:-22.522875px;}
.ls1f_c00269{letter-spacing:-19.799550px;}
.ls20_c00269{letter-spacing:-14.722875px;}
.ls14_c00269{letter-spacing:-14.082750px;}
.ls29_c00269{letter-spacing:-13.056600px;}
.lse_c00269{letter-spacing:-10.961100px;}
.ls2a_c00269{letter-spacing:-9.333750px;}
.ls11_c00269{letter-spacing:-8.835750px;}
.ls44_c00269{letter-spacing:-8.509545px;}
.ls37_c00269{letter-spacing:-8.501700px;}
.lsf_c00269{letter-spacing:-8.095500px;}
.ls2f_c00269{letter-spacing:-7.397325px;}
.ls22_c00269{letter-spacing:-7.363913px;}
.ls5c_c00269{letter-spacing:-7.342350px;}
.ls23_c00269{letter-spacing:-7.178325px;}
.ls63_c00269{letter-spacing:-6.883748px;}
.lsb_c00269{letter-spacing:-6.623663px;}
.ls12_c00269{letter-spacing:-6.572700px;}
.lsa_c00269{letter-spacing:-5.890500px;}
.ls1e_c00269{letter-spacing:-5.779800px;}
.ls50_c00269{letter-spacing:-5.314200px;}
.ls9_c00269{letter-spacing:-5.150250px;}
.ls16_c00269{letter-spacing:-5.103105px;}
.ls8_c00269{letter-spacing:-5.054963px;}
.ls2b_c00269{letter-spacing:-4.958678px;}
.ls33_c00269{letter-spacing:-4.736340px;}
.ls10_c00269{letter-spacing:-4.418663px;}
.ls40_c00269{letter-spacing:-4.343625px;}
.ls3b_c00269{letter-spacing:-4.078515px;}
.ls47_c00269{letter-spacing:-4.002075px;}
.ls36_c00269{letter-spacing:-3.875625px;}
.ls34_c00269{letter-spacing:-3.726000px;}
.ls7_c00269{letter-spacing:-3.678413px;}
.ls3d_c00269{letter-spacing:-3.201600px;}
.ls4f_c00269{letter-spacing:-3.112200px;}
.ls31_c00269{letter-spacing:-3.060750px;}
.ls19_c00269{letter-spacing:-3.052500px;}
.ls42_c00269{letter-spacing:-3.001478px;}
.ls3e_c00269{letter-spacing:-2.999250px;}
.ls39_c00269{letter-spacing:-2.999205px;}
.ls61_c00269{letter-spacing:-2.953215px;}
.ls5_c00269{letter-spacing:-2.945250px;}
.ls28_c00269{letter-spacing:-2.881200px;}
.ls49_c00269{letter-spacing:-2.751375px;}
.ls55_c00269{letter-spacing:-2.585400px;}
.ls1d_c00269{letter-spacing:-2.456550px;}
.ls32_c00269{letter-spacing:-2.431575px;}
.ls30_c00269{letter-spacing:-2.400750px;}
.ls51_c00269{letter-spacing:-2.400000px;}
.ls1b_c00269{letter-spacing:-2.386125px;}
.ls2d_c00269{letter-spacing:-2.381400px;}
.ls18_c00269{letter-spacing:-2.322600px;}
.ls35_c00269{letter-spacing:-2.248650px;}
.ls13_c00269{letter-spacing:-2.245620px;}
.ls3_c00269{letter-spacing:-2.205000px;}
.ls46_c00269{letter-spacing:-2.013375px;}
.ls65_c00269{letter-spacing:-1.640633px;}
.ls4a_c00269{letter-spacing:-1.632150px;}
.ls60_c00269{letter-spacing:-1.605825px;}
.ls3c_c00269{letter-spacing:-1.597920px;}
.ls5a_c00269{letter-spacing:-1.526625px;}
.ls57_c00269{letter-spacing:-1.525950px;}
.ls45_c00269{letter-spacing:-1.500525px;}
.ls4_c00269{letter-spacing:-1.473413px;}
.ls5b_c00269{letter-spacing:-1.448115px;}
.ls4c_c00269{letter-spacing:-1.409558px;}
.ls62_c00269{letter-spacing:-1.379655px;}
.ls64_c00269{letter-spacing:-0.960000px;}
.ls4e_c00269{letter-spacing:-0.841500px;}
.ls54_c00269{letter-spacing:-0.813750px;}
.ls67_c00269{letter-spacing:-0.805500px;}
.ls3f_c00269{letter-spacing:-0.803250px;}
.ls59_c00269{letter-spacing:-0.777750px;}
.ls52_c00269{letter-spacing:-0.763200px;}
.ls43_c00269{letter-spacing:-0.762600px;}
.ls38_c00269{letter-spacing:-0.748125px;}
.lsd_c00269{letter-spacing:-0.731588px;}
.ls53_c00269{letter-spacing:-0.687375px;}
.ls6_c00269{letter-spacing:0.000000px;}
.ls26_c00269{letter-spacing:0.600300px;}
.ls4d_c00269{letter-spacing:0.689858px;}
.ls3a_c00269{letter-spacing:0.728625px;}
.lsc_c00269{letter-spacing:0.826575px;}
.ls41_c00269{letter-spacing:1.313550px;}
.ls0_c00269{letter-spacing:1.473413px;}
.ls56_c00269{letter-spacing:1.668225px;}
.ls1c_c00269{letter-spacing:1.764900px;}
.ls2e_c00269{letter-spacing:2.190825px;}
.ls21_c00269{letter-spacing:2.277075px;}
.ls5e_c00269{letter-spacing:2.445900px;}
.ls15_c00269{letter-spacing:3.621375px;}
.ls4b_c00269{letter-spacing:4.078515px;}
.ls58_c00269{letter-spacing:4.501575px;}
.ls24_c00269{letter-spacing:4.901242px;}
.ls66_c00269{letter-spacing:5.193000px;}
.ls5d_c00269{letter-spacing:5.248493px;}
.ls1a_c00269{letter-spacing:5.302650px;}
.ls25_c00269{letter-spacing:6.614632px;}
.ls27_c00269{letter-spacing:8.095500px;}
.ls2_c00269{letter-spacing:8.156100px;}
.ls48_c00269{letter-spacing:9.000000px;}
.ls1_c00269{letter-spacing:13.245750px;}
.ls5f_c00269{letter-spacing:19.507050px;}
.ls17_c00269{letter-spacing:31.975695px;}
.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;}
._14_c00269{margin-left:-245.991331px;}
._1b_c00269{margin-left:-27.564939px;}
._12_c00269{margin-left:-25.024645px;}
._13_c00269{margin-left:-23.608028px;}
._16_c00269{margin-left:-6.104818px;}
._f_c00269{margin-left:-5.043282px;}
._d_c00269{margin-left:-3.790973px;}
._a_c00269{margin-left:-2.441073px;}
._e_c00269{margin-left:-1.052159px;}
._6_c00269{width:1.030234px;}
._1_c00269{width:2.239319px;}
._11_c00269{width:3.551286px;}
._5_c00269{width:4.659711px;}
._3_c00269{width:5.693316px;}
._0_c00269{width:7.465235px;}
._7_c00269{width:9.356560px;}
._10_c00269{width:10.363736px;}
._9_c00269{width:11.499134px;}
._2_c00269{width:13.230000px;}
._8_c00269{width:15.865667px;}
._15_c00269{width:17.519630px;}
._4_c00269{width:18.821338px;}
._1a_c00269{width:20.367216px;}
._17_c00269{width:21.498890px;}
._c_c00269{width:23.385791px;}
._b_c00269{width:24.578331px;}
._19_c00269{width:26.955198px;}
._18_c00269{width:33.234465px;}
._1c_c00269{width:46.756044px;}
.fc0_c00269{color:transparent;}
.fse_c00269{font-size:30.750000px;}
.fs27_c00269{font-size:34.500000px;}
.fsf_c00269{font-size:36.750000px;}
.fs25_c00269{font-size:40.500000px;}
.fs20_c00269{font-size:41.250000px;}
.fs24_c00269{font-size:42.000000px;}
.fs19_c00269{font-size:42.750000px;}
.fs26_c00269{font-size:43.500000px;}
.fs28_c00269{font-size:43.545060px;}
.fs21_c00269{font-size:44.250000px;}
.fs22_c00269{font-size:45.000000px;}
.fs23_c00269{font-size:45.750000px;}
.fs17_c00269{font-size:46.500000px;}
.fs1f_c00269{font-size:47.250000px;}
.fs1e_c00269{font-size:48.000000px;}
.fs1a_c00269{font-size:48.750000px;}
.fs1c_c00269{font-size:49.500000px;}
.fs1d_c00269{font-size:50.250000px;}
.fs1b_c00269{font-size:51.000000px;}
.fs29_c00269{font-size:53.250000px;}
.fs18_c00269{font-size:54.000000px;}
.fs14_c00269{font-size:63.750000px;}
.fs10_c00269{font-size:69.000000px;}
.fs11_c00269{font-size:70.500000px;}
.fs12_c00269{font-size:71.250000px;}
.fs2_c00269{font-size:72.000000px;}
.fsd_c00269{font-size:72.750000px;}
.fsa_c00269{font-size:73.500000px;}
.fs13_c00269{font-size:77.250000px;}
.fs3_c00269{font-size:78.000000px;}
.fs0_c00269{font-size:78.750000px;}
.fs9_c00269{font-size:79.500000px;}
.fs4_c00269{font-size:80.250000px;}
.fs15_c00269{font-size:81.000000px;}
.fs7_c00269{font-size:81.750000px;}
.fs1_c00269{font-size:82.500000px;}
.fs8_c00269{font-size:83.250000px;}
.fs5_c00269{font-size:84.750000px;}
.fs6_c00269{font-size:85.500000px;}
.fsc_c00269{font-size:86.250000px;}
.fs16_c00269{font-size:87.750000px;}
.fsb_c00269{font-size:103.500000px;}
.y0_c00269{bottom:0.000000px;}
.y29_c00269{bottom:172.798950px;}
.y28_c00269{bottom:189.000000px;}
.y27_c00269{bottom:226.078785px;}
.y26_c00269{bottom:240.839535px;}
.y25_c00269{bottom:256.320300px;}
.y24_c00269{bottom:335.159850px;}
.y23_c00269{bottom:365.399850px;}
.y22_c00269{bottom:394.199385px;}
.y21_c00269{bottom:424.800150px;}
.y20_c00269{bottom:433.799565px;}
.y1f_c00269{bottom:455.399730px;}
.y1e_c00269{bottom:486.000135px;}
.y1d_c00269{bottom:515.519670px;}
.y1c_c00269{bottom:515.520555px;}
.y1b_c00269{bottom:545.400285px;}
.y1a_c00269{bottom:574.559100px;}
.y19_c00269{bottom:574.560120px;}
.y18_c00269{bottom:604.439850px;}
.y17_c00269{bottom:633.959385px;}
.y16_c00269{bottom:694.080000px;}
.y15_c00269{bottom:724.319820px;}
.y14_c00269{bottom:724.320000px;}
.y13_c00269{bottom:753.839535px;}
.y11_c00269{bottom:783.719670px;}
.y12_c00269{bottom:783.720150px;}
.y10_c00269{bottom:844.199805px;}
.yf_c00269{bottom:844.199985px;}
.ye_c00269{bottom:873.719520px;}
.yd_c00269{bottom:873.720405px;}
.yc_c00269{bottom:903.600135px;}
.yb_c00269{bottom:903.600360px;}
.ya_c00269{bottom:933.480075px;}
.y9_c00269{bottom:963.359805px;}
.y8_c00269{bottom:963.360690px;}
.y7_c00269{bottom:993.240420px;}
.y6_c00269{bottom:1023.480285px;}
.y5_c00269{bottom:1023.480420px;}
.y4_c00269{bottom:1052.999955px;}
.y3_c00269{bottom:1083.239865px;}
.y2_c00269{bottom:1083.239910px;}
.y1_c00269{bottom:1142.999355px;}
.h12_c00269{height:30.990234px;}
.h3b_c00269{height:32.071289px;}
.h39_c00269{height:34.095703px;}
.h13_c00269{height:36.319336px;}
.h32_c00269{height:42.240234px;}
.h27_c00269{height:43.022461px;}
.h38_c00269{height:43.083984px;}
.h2a_c00269{height:43.428955px;}
.h30_c00269{height:43.804688px;}
.h36_c00269{height:43.839844px;}
.h1f_c00269{height:44.586914px;}
.h35_c00269{height:44.595703px;}
.h2d_c00269{height:44.901123px;}
.h2c_c00269{height:45.351562px;}
.h33_c00269{height:45.369141px;}
.h3a_c00269{height:45.416137px;}
.h34_c00269{height:46.107422px;}
.h2e_c00269{height:46.151367px;}
.h28_c00269{height:46.373291px;}
.h2b_c00269{height:46.696289px;}
.h1d_c00269{height:46.863281px;}
.h31_c00269{height:46.933594px;}
.h3c_c00269{height:47.437500px;}
.h26_c00269{height:47.619141px;}
.h20_c00269{height:47.845459px;}
.h25_c00269{height:48.375000px;}
.h22_c00269{height:48.581543px;}
.h29_c00269{height:48.919922px;}
.h24_c00269{height:49.130859px;}
.h23_c00269{height:49.317627px;}
.h37_c00269{height:49.661133px;}
.h2f_c00269{height:49.886719px;}
.h21_c00269{height:50.402344px;}
.h3d_c00269{height:52.625977px;}
.h1e_c00269{height:53.367188px;}
.h19_c00269{height:63.002930px;}
.h16_c00269{height:69.673828px;}
.h17_c00269{height:70.415039px;}
.h3_c00269{height:70.664062px;}
.h11_c00269{height:71.400146px;}
.h14_c00269{height:71.964844px;}
.h15_c00269{height:74.074219px;}
.h4_c00269{height:76.552734px;}
.hc_c00269{height:76.658203px;}
.h1_c00269{height:77.288818px;}
.h18_c00269{height:77.853516px;}
.hb_c00269{height:78.024902px;}
.h5_c00269{height:78.760986px;}
.he_c00269{height:79.365234px;}
.hd_c00269{height:80.121094px;}
.h8_c00269{height:80.233154px;}
.h1b_c00269{height:80.876953px;}
.h2_c00269{height:80.969238px;}
.h9_c00269{height:81.533203px;}
.h1a_c00269{height:81.632812px;}
.ha_c00269{height:81.705322px;}
.h6_c00269{height:83.177490px;}
.h7_c00269{height:84.498047px;}
.h10_c00269{height:85.239258px;}
.h1c_c00269{height:86.721680px;}
.hf_c00269{height:101.529053px;}
.h0_c00269{height:1263.000000px;}
.w0_c00269{width:892.500000px;}
.x0_c00269{left:0.000000px;}
.x8_c00269{left:142.915995px;}
.x1_c00269{left:143.999400px;}
.xa_c00269{left:156.599700px;}
.x35_c00269{left:162.718500px;}
.x54_c00269{left:164.158785px;}
.x48_c00269{left:173.519100px;}
.x7d_c00269{left:175.679700px;}
.x7e_c00269{left:185.040000px;}
.x1f_c00269{left:187.198785px;}
.x70_c00269{left:188.279850px;}
.x47_c00269{left:191.878950px;}
.x20_c00269{left:195.118785px;}
.x23_c00269{left:202.318800px;}
.x61_c00269{left:203.399850px;}
.x71_c00269{left:211.319850px;}
.x3d_c00269{left:213.119385px;}
.x55_c00269{left:214.918950px;}
.x16_c00269{left:227.519100px;}
.x3e_c00269{left:229.318800px;}
.x2f_c00269{left:234.719100px;}
.x62_c00269{left:239.040000px;}
.x17_c00269{left:241.918950px;}
.x72_c00269{left:246.239850px;}
.x1d_c00269{left:258.120000px;}
.xb_c00269{left:260.278800px;}
.xd_c00269{left:263.518635px;}
.x24_c00269{left:264.599700px;}
.x18_c00269{left:266.399250px;}
.x63_c00269{left:272.158785px;}
.x25_c00269{left:279.719535px;}
.xe_c00269{left:282.239250px;}
.x49_c00269{left:285.120000px;}
.x1e_c00269{left:291.238785px;}
.x73_c00269{left:292.679100px;}
.x26_c00269{left:303.118785px;}
.x64_c00269{left:309.239250px;}
.x36_c00269{left:317.518635px;}
.x21_c00269{left:319.319850px;}
.xc_c00269{left:321.119385px;}
.x4_c00269{left:327.239850px;}
.x22_c00269{left:334.798950px;}
.x37_c00269{left:342.359850px;}
.x5_c00269{left:345.599700px;}
.x44_c00269{left:346.679100px;}
.x65_c00269{left:349.198785px;}
.x74_c00269{left:352.799535px;}
.x66_c00269{left:358.559100px;}
.x4a_c00269{left:364.679700px;}
.x75_c00269{left:366.479235px;}
.x27_c00269{left:371.518635px;}
.x2_c00269{left:374.399235px;}
.x56_c00269{left:376.559685px;}
.x3_c00269{left:389.519070px;}
.x57_c00269{left:392.759085px;}
.x4b_c00269{left:398.159415px;}
.x67_c00269{left:415.078815px;}
.x4c_c00269{left:416.519070px;}
.x58_c00269{left:424.798515px;}
.x3a_c00269{left:431.279850px;}
.x28_c00269{left:435.958335px;}
.x19_c00269{left:448.558635px;}
.x32_c00269{left:449.998950px;}
.x68_c00269{left:458.639100px;}
.x76_c00269{left:462.599070px;}
.x29_c00269{left:464.039385px;}
.x1a_c00269{left:468.358665px;}
.x3f_c00269{left:472.318770px;}
.x3b_c00269{left:473.759085px;}
.x59_c00269{left:476.998950px;}
.xf_c00269{left:483.839535px;}
.x5a_c00269{left:487.438665px;}
.x12_c00269{left:491.398635px;}
.x4d_c00269{left:493.199850px;}
.x3c_c00269{left:495.719565px;}
.x77_c00269{left:497.519070px;}
.x10_c00269{left:503.278800px;}
.x46_c00269{left:506.879520px;}
.x13_c00269{left:509.758530px;}
.x2a_c00269{left:515.878920px;}
.x5b_c00269{left:524.519070px;}
.x69_c00269{left:527.399820px;}
.x2b_c00269{left:531.359850px;}
.x4e_c00269{left:536.039985px;}
.x40_c00269{left:541.438620px;}
.x6a_c00269{left:544.319235px;}
.x5c_c00269{left:552.959385px;}
.x11_c00269{left:554.399820px;}
.x6_c00269{left:555.838530px;}
.x14_c00269{left:558.359850px;}
.x41_c00269{left:565.559685px;}
.x5d_c00269{left:567.718500px;}
.x4f_c00269{left:570.239820px;}
.x7_c00269{left:578.159820px;}
.x15_c00269{left:580.318770px;}
.x6b_c00269{left:585.359850px;}
.x78_c00269{left:589.679070px;}
.x6c_c00269{left:595.079400px;}
.x33_c00269{left:609.479235px;}
.x42_c00269{left:615.238770px;}
.x50_c00269{left:619.198785px;}
.x79_c00269{left:620.639100px;}
.x5e_c00269{left:623.519670px;}
.x7a_c00269{left:633.959385px;}
.x34_c00269{left:641.518620px;}
.x6d_c00269{left:645.839535px;}
.x6e_c00269{left:659.159820px;}
.x1b_c00269{left:662.759085px;}
.x51_c00269{left:665.639700px;}
.x2c_c00269{left:667.798560px;}
.x52_c00269{left:674.279850px;}
.x30_c00269{left:683.279250px;}
.x5f_c00269{left:685.798920px;}
.x2d_c00269{left:688.679670px;}
.x1c_c00269{left:694.080000px;}
.x38_c00269{left:695.879520px;}
.x7b_c00269{left:702.718545px;}
.x31_c00269{left:705.239820px;}
.x6f_c00269{left:708.838950px;}
.x39_c00269{left:711.358605px;}
.x43_c00269{left:721.439205px;}
.x60_c00269{left:728.279850px;}
.x7c_c00269{left:730.438620px;}
.x53_c00269{left:731.878920px;}
.x9_c00269{left:735.479685px;}
.x45_c00269{left:752.039985px;}
.x2e_c00269{left:776.159370px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls2c_c00269{letter-spacing:-20.020333pt;}
.ls1f_c00269{letter-spacing:-17.599600pt;}
.ls20_c00269{letter-spacing:-13.087000pt;}
.ls14_c00269{letter-spacing:-12.518000pt;}
.ls29_c00269{letter-spacing:-11.605867pt;}
.lse_c00269{letter-spacing:-9.743200pt;}
.ls2a_c00269{letter-spacing:-8.296667pt;}
.ls11_c00269{letter-spacing:-7.854000pt;}
.ls44_c00269{letter-spacing:-7.564040pt;}
.ls37_c00269{letter-spacing:-7.557067pt;}
.lsf_c00269{letter-spacing:-7.196000pt;}
.ls2f_c00269{letter-spacing:-6.575400pt;}
.ls22_c00269{letter-spacing:-6.545700pt;}
.ls5c_c00269{letter-spacing:-6.526533pt;}
.ls23_c00269{letter-spacing:-6.380733pt;}
.ls63_c00269{letter-spacing:-6.118887pt;}
.lsb_c00269{letter-spacing:-5.887700pt;}
.ls12_c00269{letter-spacing:-5.842400pt;}
.lsa_c00269{letter-spacing:-5.236000pt;}
.ls1e_c00269{letter-spacing:-5.137600pt;}
.ls50_c00269{letter-spacing:-4.723733pt;}
.ls9_c00269{letter-spacing:-4.578000pt;}
.ls16_c00269{letter-spacing:-4.536093pt;}
.ls8_c00269{letter-spacing:-4.493300pt;}
.ls2b_c00269{letter-spacing:-4.407713pt;}
.ls33_c00269{letter-spacing:-4.210080pt;}
.ls10_c00269{letter-spacing:-3.927700pt;}
.ls40_c00269{letter-spacing:-3.861000pt;}
.ls3b_c00269{letter-spacing:-3.625347pt;}
.ls47_c00269{letter-spacing:-3.557400pt;}
.ls36_c00269{letter-spacing:-3.445000pt;}
.ls34_c00269{letter-spacing:-3.312000pt;}
.ls7_c00269{letter-spacing:-3.269700pt;}
.ls3d_c00269{letter-spacing:-2.845867pt;}
.ls4f_c00269{letter-spacing:-2.766400pt;}
.ls31_c00269{letter-spacing:-2.720667pt;}
.ls19_c00269{letter-spacing:-2.713333pt;}
.ls42_c00269{letter-spacing:-2.667980pt;}
.ls3e_c00269{letter-spacing:-2.666000pt;}
.ls39_c00269{letter-spacing:-2.665960pt;}
.ls61_c00269{letter-spacing:-2.625080pt;}
.ls5_c00269{letter-spacing:-2.618000pt;}
.ls28_c00269{letter-spacing:-2.561067pt;}
.ls49_c00269{letter-spacing:-2.445667pt;}
.ls55_c00269{letter-spacing:-2.298133pt;}
.ls1d_c00269{letter-spacing:-2.183600pt;}
.ls32_c00269{letter-spacing:-2.161400pt;}
.ls30_c00269{letter-spacing:-2.134000pt;}
.ls51_c00269{letter-spacing:-2.133333pt;}
.ls1b_c00269{letter-spacing:-2.121000pt;}
.ls2d_c00269{letter-spacing:-2.116800pt;}
.ls18_c00269{letter-spacing:-2.064533pt;}
.ls35_c00269{letter-spacing:-1.998800pt;}
.ls13_c00269{letter-spacing:-1.996107pt;}
.ls3_c00269{letter-spacing:-1.960000pt;}
.ls46_c00269{letter-spacing:-1.789667pt;}
.ls65_c00269{letter-spacing:-1.458340pt;}
.ls4a_c00269{letter-spacing:-1.450800pt;}
.ls60_c00269{letter-spacing:-1.427400pt;}
.ls3c_c00269{letter-spacing:-1.420373pt;}
.ls5a_c00269{letter-spacing:-1.357000pt;}
.ls57_c00269{letter-spacing:-1.356400pt;}
.ls45_c00269{letter-spacing:-1.333800pt;}
.ls4_c00269{letter-spacing:-1.309700pt;}
.ls5b_c00269{letter-spacing:-1.287213pt;}
.ls4c_c00269{letter-spacing:-1.252940pt;}
.ls62_c00269{letter-spacing:-1.226360pt;}
.ls64_c00269{letter-spacing:-0.853333pt;}
.ls4e_c00269{letter-spacing:-0.748000pt;}
.ls54_c00269{letter-spacing:-0.723333pt;}
.ls67_c00269{letter-spacing:-0.716000pt;}
.ls3f_c00269{letter-spacing:-0.714000pt;}
.ls59_c00269{letter-spacing:-0.691333pt;}
.ls52_c00269{letter-spacing:-0.678400pt;}
.ls43_c00269{letter-spacing:-0.677867pt;}
.ls38_c00269{letter-spacing:-0.665000pt;}
.lsd_c00269{letter-spacing:-0.650300pt;}
.ls53_c00269{letter-spacing:-0.611000pt;}
.ls6_c00269{letter-spacing:0.000000pt;}
.ls26_c00269{letter-spacing:0.533600pt;}
.ls4d_c00269{letter-spacing:0.613207pt;}
.ls3a_c00269{letter-spacing:0.647667pt;}
.lsc_c00269{letter-spacing:0.734733pt;}
.ls41_c00269{letter-spacing:1.167600pt;}
.ls0_c00269{letter-spacing:1.309700pt;}
.ls56_c00269{letter-spacing:1.482867pt;}
.ls1c_c00269{letter-spacing:1.568800pt;}
.ls2e_c00269{letter-spacing:1.947400pt;}
.ls21_c00269{letter-spacing:2.024067pt;}
.ls5e_c00269{letter-spacing:2.174133pt;}
.ls15_c00269{letter-spacing:3.219000pt;}
.ls4b_c00269{letter-spacing:3.625347pt;}
.ls58_c00269{letter-spacing:4.001400pt;}
.ls24_c00269{letter-spacing:4.356660pt;}
.ls66_c00269{letter-spacing:4.616000pt;}
.ls5d_c00269{letter-spacing:4.665327pt;}
.ls1a_c00269{letter-spacing:4.713467pt;}
.ls25_c00269{letter-spacing:5.879673pt;}
.ls27_c00269{letter-spacing:7.196000pt;}
.ls2_c00269{letter-spacing:7.249867pt;}
.ls48_c00269{letter-spacing:8.000000pt;}
.ls1_c00269{letter-spacing:11.774000pt;}
.ls5f_c00269{letter-spacing:17.339600pt;}
.ls17_c00269{letter-spacing:28.422840pt;}
.ws0_c00269{word-spacing:0.000000pt;}
._14_c00269{margin-left:-218.658961pt;}
._1b_c00269{margin-left:-24.502168pt;}
._12_c00269{margin-left:-22.244129pt;}
._13_c00269{margin-left:-20.984914pt;}
._16_c00269{margin-left:-5.426505pt;}
._f_c00269{margin-left:-4.482918pt;}
._d_c00269{margin-left:-3.369754pt;}
._a_c00269{margin-left:-2.169843pt;}
._e_c00269{margin-left:-0.935252pt;}
._6_c00269{width:0.915764pt;}
._1_c00269{width:1.990506pt;}
._11_c00269{width:3.156699pt;}
._5_c00269{width:4.141965pt;}
._3_c00269{width:5.060725pt;}
._0_c00269{width:6.635764pt;}
._7_c00269{width:8.316942pt;}
._10_c00269{width:9.212209pt;}
._9_c00269{width:10.221452pt;}
._2_c00269{width:11.760000pt;}
._8_c00269{width:14.102815pt;}
._15_c00269{width:15.573005pt;}
._4_c00269{width:16.730079pt;}
._1a_c00269{width:18.104192pt;}
._17_c00269{width:19.110124pt;}
._c_c00269{width:20.787370pt;}
._b_c00269{width:21.847406pt;}
._19_c00269{width:23.960176pt;}
._18_c00269{width:29.541747pt;}
._1c_c00269{width:41.560928pt;}
.fse_c00269{font-size:27.333333pt;}
.fs27_c00269{font-size:30.666667pt;}
.fsf_c00269{font-size:32.666667pt;}
.fs25_c00269{font-size:36.000000pt;}
.fs20_c00269{font-size:36.666667pt;}
.fs24_c00269{font-size:37.333333pt;}
.fs19_c00269{font-size:38.000000pt;}
.fs26_c00269{font-size:38.666667pt;}
.fs28_c00269{font-size:38.706720pt;}
.fs21_c00269{font-size:39.333333pt;}
.fs22_c00269{font-size:40.000000pt;}
.fs23_c00269{font-size:40.666667pt;}
.fs17_c00269{font-size:41.333333pt;}
.fs1f_c00269{font-size:42.000000pt;}
.fs1e_c00269{font-size:42.666667pt;}
.fs1a_c00269{font-size:43.333333pt;}
.fs1c_c00269{font-size:44.000000pt;}
.fs1d_c00269{font-size:44.666667pt;}
.fs1b_c00269{font-size:45.333333pt;}
.fs29_c00269{font-size:47.333333pt;}
.fs18_c00269{font-size:48.000000pt;}
.fs14_c00269{font-size:56.666667pt;}
.fs10_c00269{font-size:61.333333pt;}
.fs11_c00269{font-size:62.666667pt;}
.fs12_c00269{font-size:63.333333pt;}
.fs2_c00269{font-size:64.000000pt;}
.fsd_c00269{font-size:64.666667pt;}
.fsa_c00269{font-size:65.333333pt;}
.fs13_c00269{font-size:68.666667pt;}
.fs3_c00269{font-size:69.333333pt;}
.fs0_c00269{font-size:70.000000pt;}
.fs9_c00269{font-size:70.666667pt;}
.fs4_c00269{font-size:71.333333pt;}
.fs15_c00269{font-size:72.000000pt;}
.fs7_c00269{font-size:72.666667pt;}
.fs1_c00269{font-size:73.333333pt;}
.fs8_c00269{font-size:74.000000pt;}
.fs5_c00269{font-size:75.333333pt;}
.fs6_c00269{font-size:76.000000pt;}
.fsc_c00269{font-size:76.666667pt;}
.fs16_c00269{font-size:78.000000pt;}
.fsb_c00269{font-size:92.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y29_c00269{bottom:153.599067pt;}
.y28_c00269{bottom:168.000000pt;}
.y27_c00269{bottom:200.958920pt;}
.y26_c00269{bottom:214.079587pt;}
.y25_c00269{bottom:227.840267pt;}
.y24_c00269{bottom:297.919867pt;}
.y23_c00269{bottom:324.799867pt;}
.y22_c00269{bottom:350.399453pt;}
.y21_c00269{bottom:377.600133pt;}
.y20_c00269{bottom:385.599613pt;}
.y1f_c00269{bottom:404.799760pt;}
.y1e_c00269{bottom:432.000120pt;}
.y1d_c00269{bottom:458.239707pt;}
.y1c_c00269{bottom:458.240493pt;}
.y1b_c00269{bottom:484.800253pt;}
.y1a_c00269{bottom:510.719200pt;}
.y19_c00269{bottom:510.720107pt;}
.y18_c00269{bottom:537.279867pt;}
.y17_c00269{bottom:563.519453pt;}
.y16_c00269{bottom:616.960000pt;}
.y15_c00269{bottom:643.839840pt;}
.y14_c00269{bottom:643.840000pt;}
.y13_c00269{bottom:670.079587pt;}
.y11_c00269{bottom:696.639707pt;}
.y12_c00269{bottom:696.640133pt;}
.y10_c00269{bottom:750.399827pt;}
.yf_c00269{bottom:750.399987pt;}
.ye_c00269{bottom:776.639573pt;}
.yd_c00269{bottom:776.640360pt;}
.yc_c00269{bottom:803.200120pt;}
.yb_c00269{bottom:803.200320pt;}
.ya_c00269{bottom:829.760067pt;}
.y9_c00269{bottom:856.319827pt;}
.y8_c00269{bottom:856.320613pt;}
.y7_c00269{bottom:882.880373pt;}
.y6_c00269{bottom:909.760253pt;}
.y5_c00269{bottom:909.760373pt;}
.y4_c00269{bottom:935.999960pt;}
.y3_c00269{bottom:962.879880pt;}
.y2_c00269{bottom:962.879920pt;}
.y1_c00269{bottom:1015.999427pt;}
.h12_c00269{height:27.546875pt;}
.h3b_c00269{height:28.507812pt;}
.h39_c00269{height:30.307292pt;}
.h13_c00269{height:32.283854pt;}
.h32_c00269{height:37.546875pt;}
.h27_c00269{height:38.242188pt;}
.h38_c00269{height:38.296875pt;}
.h2a_c00269{height:38.603516pt;}
.h30_c00269{height:38.937500pt;}
.h36_c00269{height:38.968750pt;}
.h1f_c00269{height:39.632812pt;}
.h35_c00269{height:39.640625pt;}
.h2d_c00269{height:39.912109pt;}
.h2c_c00269{height:40.312500pt;}
.h33_c00269{height:40.328125pt;}
.h3a_c00269{height:40.369899pt;}
.h34_c00269{height:40.984375pt;}
.h2e_c00269{height:41.023438pt;}
.h28_c00269{height:41.220703pt;}
.h2b_c00269{height:41.507812pt;}
.h1d_c00269{height:41.656250pt;}
.h31_c00269{height:41.718750pt;}
.h3c_c00269{height:42.166667pt;}
.h26_c00269{height:42.328125pt;}
.h20_c00269{height:42.529297pt;}
.h25_c00269{height:43.000000pt;}
.h22_c00269{height:43.183594pt;}
.h29_c00269{height:43.484375pt;}
.h24_c00269{height:43.671875pt;}
.h23_c00269{height:43.837891pt;}
.h37_c00269{height:44.143229pt;}
.h2f_c00269{height:44.343750pt;}
.h21_c00269{height:44.802083pt;}
.h3d_c00269{height:46.778646pt;}
.h1e_c00269{height:47.437500pt;}
.h19_c00269{height:56.002604pt;}
.h16_c00269{height:61.932292pt;}
.h17_c00269{height:62.591146pt;}
.h3_c00269{height:62.812500pt;}
.h11_c00269{height:63.466797pt;}
.h14_c00269{height:63.968750pt;}
.h15_c00269{height:65.843750pt;}
.h4_c00269{height:68.046875pt;}
.hc_c00269{height:68.140625pt;}
.h1_c00269{height:68.701172pt;}
.h18_c00269{height:69.203125pt;}
.hb_c00269{height:69.355469pt;}
.h5_c00269{height:70.009766pt;}
.he_c00269{height:70.546875pt;}
.hd_c00269{height:71.218750pt;}
.h8_c00269{height:71.318359pt;}
.h1b_c00269{height:71.890625pt;}
.h2_c00269{height:71.972656pt;}
.h9_c00269{height:72.473958pt;}
.h1a_c00269{height:72.562500pt;}
.ha_c00269{height:72.626953pt;}
.h6_c00269{height:73.935547pt;}
.h7_c00269{height:75.109375pt;}
.h10_c00269{height:75.768229pt;}
.h1c_c00269{height:77.085938pt;}
.hf_c00269{height:90.248047pt;}
.h0_c00269{height:1122.666667pt;}
.w0_c00269{width:793.333333pt;}
.x0_c00269{left:0.000000pt;}
.x8_c00269{left:127.036440pt;}
.x1_c00269{left:127.999467pt;}
.xa_c00269{left:139.199733pt;}
.x35_c00269{left:144.638667pt;}
.x54_c00269{left:145.918920pt;}
.x48_c00269{left:154.239200pt;}
.x7d_c00269{left:156.159733pt;}
.x7e_c00269{left:164.480000pt;}
.x1f_c00269{left:166.398920pt;}
.x70_c00269{left:167.359867pt;}
.x47_c00269{left:170.559067pt;}
.x20_c00269{left:173.438920pt;}
.x23_c00269{left:179.838933pt;}
.x61_c00269{left:180.799867pt;}
.x71_c00269{left:187.839867pt;}
.x3d_c00269{left:189.439453pt;}
.x55_c00269{left:191.039067pt;}
.x16_c00269{left:202.239200pt;}
.x3e_c00269{left:203.838933pt;}
.x2f_c00269{left:208.639200pt;}
.x62_c00269{left:212.480000pt;}
.x17_c00269{left:215.039067pt;}
.x72_c00269{left:218.879867pt;}
.x1d_c00269{left:229.440000pt;}
.xb_c00269{left:231.358933pt;}
.xd_c00269{left:234.238787pt;}
.x24_c00269{left:235.199733pt;}
.x18_c00269{left:236.799333pt;}
.x63_c00269{left:241.918920pt;}
.x25_c00269{left:248.639587pt;}
.xe_c00269{left:250.879333pt;}
.x49_c00269{left:253.440000pt;}
.x1e_c00269{left:258.878920pt;}
.x73_c00269{left:260.159200pt;}
.x26_c00269{left:269.438920pt;}
.x64_c00269{left:274.879333pt;}
.x36_c00269{left:282.238787pt;}
.x21_c00269{left:283.839867pt;}
.xc_c00269{left:285.439453pt;}
.x4_c00269{left:290.879867pt;}
.x22_c00269{left:297.599067pt;}
.x37_c00269{left:304.319867pt;}
.x5_c00269{left:307.199733pt;}
.x44_c00269{left:308.159200pt;}
.x65_c00269{left:310.398920pt;}
.x74_c00269{left:313.599587pt;}
.x66_c00269{left:318.719200pt;}
.x4a_c00269{left:324.159733pt;}
.x75_c00269{left:325.759320pt;}
.x27_c00269{left:330.238787pt;}
.x2_c00269{left:332.799320pt;}
.x56_c00269{left:334.719720pt;}
.x3_c00269{left:346.239173pt;}
.x57_c00269{left:349.119187pt;}
.x4b_c00269{left:353.919480pt;}
.x67_c00269{left:368.958947pt;}
.x4c_c00269{left:370.239173pt;}
.x58_c00269{left:377.598680pt;}
.x3a_c00269{left:383.359867pt;}
.x28_c00269{left:387.518520pt;}
.x19_c00269{left:398.718787pt;}
.x32_c00269{left:399.999067pt;}
.x68_c00269{left:407.679200pt;}
.x76_c00269{left:411.199173pt;}
.x29_c00269{left:412.479453pt;}
.x1a_c00269{left:416.318813pt;}
.x3f_c00269{left:419.838907pt;}
.x3b_c00269{left:421.119187pt;}
.x59_c00269{left:423.999067pt;}
.xf_c00269{left:430.079587pt;}
.x5a_c00269{left:433.278813pt;}
.x12_c00269{left:436.798787pt;}
.x4d_c00269{left:438.399867pt;}
.x3c_c00269{left:440.639613pt;}
.x77_c00269{left:442.239173pt;}
.x10_c00269{left:447.358933pt;}
.x46_c00269{left:450.559573pt;}
.x13_c00269{left:453.118693pt;}
.x2a_c00269{left:458.559040pt;}
.x5b_c00269{left:466.239173pt;}
.x69_c00269{left:468.799840pt;}
.x2b_c00269{left:472.319867pt;}
.x4e_c00269{left:476.479987pt;}
.x40_c00269{left:481.278773pt;}
.x6a_c00269{left:483.839320pt;}
.x5c_c00269{left:491.519453pt;}
.x11_c00269{left:492.799840pt;}
.x6_c00269{left:494.078693pt;}
.x14_c00269{left:496.319867pt;}
.x41_c00269{left:502.719720pt;}
.x5d_c00269{left:504.638667pt;}
.x4f_c00269{left:506.879840pt;}
.x7_c00269{left:513.919840pt;}
.x15_c00269{left:515.838907pt;}
.x6b_c00269{left:520.319867pt;}
.x78_c00269{left:524.159173pt;}
.x6c_c00269{left:528.959467pt;}
.x33_c00269{left:541.759320pt;}
.x42_c00269{left:546.878907pt;}
.x50_c00269{left:550.398920pt;}
.x79_c00269{left:551.679200pt;}
.x5e_c00269{left:554.239707pt;}
.x7a_c00269{left:563.519453pt;}
.x34_c00269{left:570.238773pt;}
.x6d_c00269{left:574.079587pt;}
.x6e_c00269{left:585.919840pt;}
.x1b_c00269{left:589.119187pt;}
.x51_c00269{left:591.679733pt;}
.x2c_c00269{left:593.598720pt;}
.x52_c00269{left:599.359867pt;}
.x30_c00269{left:607.359333pt;}
.x5f_c00269{left:609.599040pt;}
.x2d_c00269{left:612.159707pt;}
.x1c_c00269{left:616.960000pt;}
.x38_c00269{left:618.559573pt;}
.x7b_c00269{left:624.638707pt;}
.x31_c00269{left:626.879840pt;}
.x6f_c00269{left:630.079067pt;}
.x39_c00269{left:632.318760pt;}
.x43_c00269{left:641.279293pt;}
.x60_c00269{left:647.359867pt;}
.x7c_c00269{left:649.278773pt;}
.x53_c00269{left:650.559040pt;}
.x9_c00269{left:653.759720pt;}
.x45_c00269{left:668.479987pt;}
.x2e_c00269{left:689.919440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a94233fdc230a98cd632a499.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_d56595550262597f42de249a.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_d135f96bc4cfd420b5e362c0.woff2')format("woff");}.ff4_c00270{font-family:ff4_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;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_292be45eed0568180eef151d.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00270;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00270;src:url('chunks/assets/font_cd566f7b3c2ca9af19ecb015.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00270{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193452,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{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);}
.m3_c00270{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c00270{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305233,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.396154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396154,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls16_c00270{letter-spacing:-13.209150px;}
.ls14_c00270{letter-spacing:-12.687675px;}
.ls15_c00270{letter-spacing:-8.175038px;}
.ls2_c00270{letter-spacing:-7.759148px;}
.ls21_c00270{letter-spacing:-7.426125px;}
.ls1c_c00270{letter-spacing:-6.769350px;}
.ls13_c00270{letter-spacing:-6.749550px;}
.ls12_c00270{letter-spacing:-6.533153px;}
.lsf_c00270{letter-spacing:-6.400800px;}
.ls9_c00270{letter-spacing:-5.945625px;}
.ls1a_c00270{letter-spacing:-5.537250px;}
.ls5_c00270{letter-spacing:-5.196713px;}
.ls11_c00270{letter-spacing:-5.063775px;}
.ls8_c00270{letter-spacing:-4.456463px;}
.lse_c00270{letter-spacing:-3.787500px;}
.ls6_c00270{letter-spacing:-3.717000px;}
.ls1d_c00270{letter-spacing:-3.654675px;}
.ls1b_c00270{letter-spacing:-3.483000px;}
.ls1_c00270{letter-spacing:-2.968875px;}
.ls10_c00270{letter-spacing:-2.457450px;}
.ls22_c00270{letter-spacing:-2.269800px;}
.ls0_c00270{letter-spacing:-2.229413px;}
.ls20_c00270{letter-spacing:-1.789545px;}
.ls19_c00270{letter-spacing:-1.764000px;}
.ls7_c00270{letter-spacing:-1.489163px;}
.lsb_c00270{letter-spacing:-1.468793px;}
.ls18_c00270{letter-spacing:-0.743108px;}
.ls4_c00270{letter-spacing:-0.740250px;}
.lsa_c00270{letter-spacing:-0.705600px;}
.ls3_c00270{letter-spacing:0.000000px;}
.ls1f_c00270{letter-spacing:2.186190px;}
.lsc_c00270{letter-spacing:2.202480px;}
.ls1e_c00270{letter-spacing:5.859150px;}
.lsd_c00270{letter-spacing:8.725500px;}
.ls17_c00270{letter-spacing:29.890800px;}
.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;}
._1a_c00270{margin-left:-10.329117px;}
._19_c00270{margin-left:-8.671534px;}
._1b_c00270{margin-left:-6.647600px;}
._9_c00270{margin-left:-3.813773px;}
._18_c00270{margin-left:-2.614678px;}
._d_c00270{margin-left:-1.601210px;}
._b_c00270{width:1.511465px;}
._0_c00270{width:2.667010px;}
._a_c00270{width:4.748833px;}
._c_c00270{width:6.449536px;}
._f_c00270{width:8.322835px;}
._1_c00270{width:9.387327px;}
._11_c00270{width:10.406456px;}
._10_c00270{width:11.420117px;}
._3_c00270{width:13.469281px;}
._4_c00270{width:15.438091px;}
._e_c00270{width:16.693990px;}
._5_c00270{width:18.777299px;}
._7_c00270{width:20.232643px;}
._13_c00270{width:21.272931px;}
._16_c00270{width:23.028744px;}
._8_c00270{width:24.134141px;}
._2_c00270{width:25.861678px;}
._12_c00270{width:27.087058px;}
._6_c00270{width:28.544958px;}
._14_c00270{width:30.432521px;}
._15_c00270{width:31.444756px;}
._17_c00270{width:37.201886px;}
.fc0_c00270{color:transparent;}
.fse_c00270{font-size:28.500000px;}
.fs15_c00270{font-size:48.750000px;}
.fs14_c00270{font-size:53.250000px;}
.fs10_c00270{font-size:60.000000px;}
.fs9_c00270{font-size:63.000000px;}
.fsa_c00270{font-size:64.500000px;}
.fs7_c00270{font-size:72.000000px;}
.fsc_c00270{font-size:72.750000px;}
.fs12_c00270{font-size:73.500000px;}
.fs8_c00270{font-size:75.750000px;}
.fsb_c00270{font-size:77.250000px;}
.fs16_c00270{font-size:78.000000px;}
.fs0_c00270{font-size:78.750000px;}
.fs4_c00270{font-size:79.500000px;}
.fs6_c00270{font-size:80.250000px;}
.fs11_c00270{font-size:81.000000px;}
.fsf_c00270{font-size:81.750000px;}
.fs3_c00270{font-size:82.500000px;}
.fs13_c00270{font-size:83.250000px;}
.fs2_c00270{font-size:84.750000px;}
.fsd_c00270{font-size:87.000000px;}
.fs1_c00270{font-size:92.250000px;}
.fs5_c00270{font-size:115.500000px;}
.y0_c00270{bottom:0.000000px;}
.y27_c00270{bottom:242.279850px;}
.y26_c00270{bottom:242.279940px;}
.y25_c00270{bottom:271.799475px;}
.y24_c00270{bottom:302.039385px;}
.y23_c00270{bottom:331.199940px;}
.y22_c00270{bottom:390.959385px;}
.y20_c00270{bottom:421.199385px;}
.y21_c00270{bottom:421.919535px;}
.y1f_c00270{bottom:429.480285px;}
.y1e_c00270{bottom:451.080000px;}
.y1d_c00270{bottom:481.319775px;}
.y1c_c00270{bottom:511.559685px;}
.y1b_c00270{bottom:511.560675px;}
.y1a_c00270{bottom:571.320120px;}
.y19_c00270{bottom:601.199850px;}
.y18_c00270{bottom:601.199985px;}
.y17_c00270{bottom:630.719520px;}
.y16_c00270{bottom:660.600135px;}
.y15_c00270{bottom:660.600405px;}
.y14_c00270{bottom:690.480120px;}
.y13_c00270{bottom:720.359850px;}
.y12_c00270{bottom:751.319820px;}
.y11_c00270{bottom:780.479535px;}
.y10_c00270{bottom:810.359250px;}
.yf_c00270{bottom:810.359430px;}
.ye_c00270{bottom:839.878965px;}
.yd_c00270{bottom:900.360255px;}
.yc_c00270{bottom:900.360450px;}
.ya_c00270{bottom:929.879490px;}
.yb_c00270{bottom:929.879970px;}
.y8_c00270{bottom:960.839865px;}
.y9_c00270{bottom:960.840090px;}
.y7_c00270{bottom:989.998905px;}
.y6_c00270{bottom:989.999970px;}
.y5_c00270{bottom:1019.879700px;}
.y4_c00270{bottom:1049.399235px;}
.y3_c00270{bottom:1049.400165px;}
.y2_c00270{bottom:1078.919700px;}
.y1_c00270{bottom:1139.039340px;}
.h15_c00270{height:29.724609px;}
.h1c_c00270{height:48.178711px;}
.h1b_c00270{height:55.538086px;}
.h17_c00270{height:60.468750px;}
.he_c00270{height:65.003906px;}
.hb_c00270{height:65.707031px;}
.h8_c00270{height:70.664062px;}
.ha_c00270{height:72.562500px;}
.h9_c00270{height:74.344482px;}
.hd_c00270{height:75.093750px;}
.h11_c00270{height:75.816650px;}
.hc_c00270{height:76.341797px;}
.h1d_c00270{height:76.552734px;}
.h19_c00270{height:76.658203px;}
.h1_c00270{height:77.288818px;}
.h5_c00270{height:78.024902px;}
.h7_c00270{height:78.760986px;}
.h10_c00270{height:79.309570px;}
.h12_c00270{height:80.121094px;}
.hf_c00270{height:80.876953px;}
.h4_c00270{height:80.969238px;}
.h13_c00270{height:81.533203px;}
.h18_c00270{height:81.632812px;}
.h16_c00270{height:82.388672px;}
.h3_c00270{height:83.177490px;}
.h1a_c00270{height:83.900391px;}
.h14_c00270{height:85.385742px;}
.h2_c00270{height:91.168945px;}
.h6_c00270{height:120.462891px;}
.h0_c00270{height:1263.000000px;}
.w0_c00270{width:892.500000px;}
.x0_c00270{left:0.000000px;}
.x20_c00270{left:136.075830px;}
.x10_c00270{left:137.520495px;}
.x7_c00270{left:138.596715px;}
.x1_c00270{left:140.039400px;}
.x13_c00270{left:168.838950px;}
.x25_c00270{left:189.001575px;}
.x35_c00270{left:190.436415px;}
.x28_c00270{left:191.518845px;}
.x29_c00270{left:206.998950px;}
.xf_c00270{left:211.319850px;}
.x14_c00270{left:212.399250px;}
.x2_c00270{left:248.039385px;}
.x15_c00270{left:272.519685px;}
.x2c_c00270{left:283.679700px;}
.x3_c00270{left:292.679100px;}
.x16_c00270{left:296.279850px;}
.x5_c00270{left:299.519685px;}
.x4_c00270{left:307.798950px;}
.x6_c00270{left:313.558635px;}
.x2d_c00270{left:321.478635px;}
.x36_c00270{left:347.399235px;}
.x2e_c00270{left:380.878950px;}
.x17_c00270{left:385.199850px;}
.x26_c00270{left:388.798920px;}
.x27_c00270{left:403.918950px;}
.x2f_c00270{left:408.958335px;}
.x18_c00270{left:459.718500px;}
.x21_c00270{left:464.039385px;}
.x30_c00270{left:471.959385px;}
.xa_c00270{left:474.838530px;}
.x22_c00270{left:484.918950px;}
.xb_c00270{left:490.678530px;}
.xc_c00270{left:492.479685px;}
.x19_c00270{left:524.159820px;}
.x31_c00270{left:544.678530px;}
.x1a_c00270{left:579.598530px;}
.x32_c00270{left:597.239820px;}
.x1b_c00270{left:605.878320px;}
.x8_c00270{left:631.439670px;}
.x9_c00270{left:658.078770px;}
.xd_c00270{left:672.119385px;}
.x23_c00270{left:677.878920px;}
.x33_c00270{left:682.199850px;}
.x1c_c00270{left:685.078770px;}
.xe_c00270{left:689.399820px;}
.x24_c00270{left:693.719100px;}
.x34_c00270{left:716.399820px;}
.x1d_c00270{left:722.518620px;}
.x1e_c00270{left:735.838950px;}
.x2a_c00270{left:740.159820px;}
.x11_c00270{left:756.359250px;}
.x2b_c00270{left:761.759535px;}
.x1f_c00270{left:764.999355px;}
.x12_c00270{left:771.479190px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls16_c00270{letter-spacing:-11.741467pt;}
.ls14_c00270{letter-spacing:-11.277933pt;}
.ls15_c00270{letter-spacing:-7.266700pt;}
.ls2_c00270{letter-spacing:-6.897020pt;}
.ls21_c00270{letter-spacing:-6.601000pt;}
.ls1c_c00270{letter-spacing:-6.017200pt;}
.ls13_c00270{letter-spacing:-5.999600pt;}
.ls12_c00270{letter-spacing:-5.807247pt;}
.lsf_c00270{letter-spacing:-5.689600pt;}
.ls9_c00270{letter-spacing:-5.285000pt;}
.ls1a_c00270{letter-spacing:-4.922000pt;}
.ls5_c00270{letter-spacing:-4.619300pt;}
.ls11_c00270{letter-spacing:-4.501133pt;}
.ls8_c00270{letter-spacing:-3.961300pt;}
.lse_c00270{letter-spacing:-3.366667pt;}
.ls6_c00270{letter-spacing:-3.304000pt;}
.ls1d_c00270{letter-spacing:-3.248600pt;}
.ls1b_c00270{letter-spacing:-3.096000pt;}
.ls1_c00270{letter-spacing:-2.639000pt;}
.ls10_c00270{letter-spacing:-2.184400pt;}
.ls22_c00270{letter-spacing:-2.017600pt;}
.ls0_c00270{letter-spacing:-1.981700pt;}
.ls20_c00270{letter-spacing:-1.590707pt;}
.ls19_c00270{letter-spacing:-1.568000pt;}
.ls7_c00270{letter-spacing:-1.323700pt;}
.lsb_c00270{letter-spacing:-1.305593pt;}
.ls18_c00270{letter-spacing:-0.660540pt;}
.ls4_c00270{letter-spacing:-0.658000pt;}
.lsa_c00270{letter-spacing:-0.627200pt;}
.ls3_c00270{letter-spacing:0.000000pt;}
.ls1f_c00270{letter-spacing:1.943280pt;}
.lsc_c00270{letter-spacing:1.957760pt;}
.ls1e_c00270{letter-spacing:5.208133pt;}
.lsd_c00270{letter-spacing:7.756000pt;}
.ls17_c00270{letter-spacing:26.569600pt;}
.ws0_c00270{word-spacing:0.000000pt;}
._1a_c00270{margin-left:-9.181438pt;}
._19_c00270{margin-left:-7.708030pt;}
._1b_c00270{margin-left:-5.908977pt;}
._9_c00270{margin-left:-3.390021pt;}
._18_c00270{margin-left:-2.324158pt;}
._d_c00270{margin-left:-1.423298pt;}
._b_c00270{width:1.343525pt;}
._0_c00270{width:2.370675pt;}
._a_c00270{width:4.221185pt;}
._c_c00270{width:5.732921pt;}
._f_c00270{width:7.398075pt;}
._1_c00270{width:8.344291pt;}
._11_c00270{width:9.250183pt;}
._10_c00270{width:10.151215pt;}
._3_c00270{width:11.972694pt;}
._4_c00270{width:13.722747pt;}
._e_c00270{width:14.839102pt;}
._5_c00270{width:16.690932pt;}
._7_c00270{width:17.984572pt;}
._13_c00270{width:18.909272pt;}
._16_c00270{width:20.469994pt;}
._8_c00270{width:21.452570pt;}
._2_c00270{width:22.988158pt;}
._12_c00270{width:24.077385pt;}
._6_c00270{width:25.373296pt;}
._14_c00270{width:27.051130pt;}
._15_c00270{width:27.950894pt;}
._17_c00270{width:33.068343pt;}
.fse_c00270{font-size:25.333333pt;}
.fs15_c00270{font-size:43.333333pt;}
.fs14_c00270{font-size:47.333333pt;}
.fs10_c00270{font-size:53.333333pt;}
.fs9_c00270{font-size:56.000000pt;}
.fsa_c00270{font-size:57.333333pt;}
.fs7_c00270{font-size:64.000000pt;}
.fsc_c00270{font-size:64.666667pt;}
.fs12_c00270{font-size:65.333333pt;}
.fs8_c00270{font-size:67.333333pt;}
.fsb_c00270{font-size:68.666667pt;}
.fs16_c00270{font-size:69.333333pt;}
.fs0_c00270{font-size:70.000000pt;}
.fs4_c00270{font-size:70.666667pt;}
.fs6_c00270{font-size:71.333333pt;}
.fs11_c00270{font-size:72.000000pt;}
.fsf_c00270{font-size:72.666667pt;}
.fs3_c00270{font-size:73.333333pt;}
.fs13_c00270{font-size:74.000000pt;}
.fs2_c00270{font-size:75.333333pt;}
.fsd_c00270{font-size:77.333333pt;}
.fs1_c00270{font-size:82.000000pt;}
.fs5_c00270{font-size:102.666667pt;}
.y0_c00270{bottom:0.000000pt;}
.y27_c00270{bottom:215.359867pt;}
.y26_c00270{bottom:215.359947pt;}
.y25_c00270{bottom:241.599533pt;}
.y24_c00270{bottom:268.479453pt;}
.y23_c00270{bottom:294.399947pt;}
.y22_c00270{bottom:347.519453pt;}
.y20_c00270{bottom:374.399453pt;}
.y21_c00270{bottom:375.039587pt;}
.y1f_c00270{bottom:381.760253pt;}
.y1e_c00270{bottom:400.960000pt;}
.y1d_c00270{bottom:427.839800pt;}
.y1c_c00270{bottom:454.719720pt;}
.y1b_c00270{bottom:454.720600pt;}
.y1a_c00270{bottom:507.840107pt;}
.y19_c00270{bottom:534.399867pt;}
.y18_c00270{bottom:534.399987pt;}
.y17_c00270{bottom:560.639573pt;}
.y16_c00270{bottom:587.200120pt;}
.y15_c00270{bottom:587.200360pt;}
.y14_c00270{bottom:613.760107pt;}
.y13_c00270{bottom:640.319867pt;}
.y12_c00270{bottom:667.839840pt;}
.y11_c00270{bottom:693.759587pt;}
.y10_c00270{bottom:720.319333pt;}
.yf_c00270{bottom:720.319493pt;}
.ye_c00270{bottom:746.559080pt;}
.yd_c00270{bottom:800.320227pt;}
.yc_c00270{bottom:800.320400pt;}
.ya_c00270{bottom:826.559547pt;}
.yb_c00270{bottom:826.559973pt;}
.y8_c00270{bottom:854.079880pt;}
.y9_c00270{bottom:854.080080pt;}
.y7_c00270{bottom:879.999027pt;}
.y6_c00270{bottom:879.999973pt;}
.y5_c00270{bottom:906.559733pt;}
.y4_c00270{bottom:932.799320pt;}
.y3_c00270{bottom:932.800147pt;}
.y2_c00270{bottom:959.039733pt;}
.y1_c00270{bottom:1012.479413pt;}
.h15_c00270{height:26.421875pt;}
.h1c_c00270{height:42.825521pt;}
.h1b_c00270{height:49.367188pt;}
.h17_c00270{height:53.750000pt;}
.he_c00270{height:57.781250pt;}
.hb_c00270{height:58.406250pt;}
.h8_c00270{height:62.812500pt;}
.ha_c00270{height:64.500000pt;}
.h9_c00270{height:66.083984pt;}
.hd_c00270{height:66.750000pt;}
.h11_c00270{height:67.392578pt;}
.hc_c00270{height:67.859375pt;}
.h1d_c00270{height:68.046875pt;}
.h19_c00270{height:68.140625pt;}
.h1_c00270{height:68.701172pt;}
.h5_c00270{height:69.355469pt;}
.h7_c00270{height:70.009766pt;}
.h10_c00270{height:70.497396pt;}
.h12_c00270{height:71.218750pt;}
.hf_c00270{height:71.890625pt;}
.h4_c00270{height:71.972656pt;}
.h13_c00270{height:72.473958pt;}
.h18_c00270{height:72.562500pt;}
.h16_c00270{height:73.234375pt;}
.h3_c00270{height:73.935547pt;}
.h1a_c00270{height:74.578125pt;}
.h14_c00270{height:75.898438pt;}
.h2_c00270{height:81.039063pt;}
.h6_c00270{height:107.078125pt;}
.h0_c00270{height:1122.666667pt;}
.w0_c00270{width:793.333333pt;}
.x0_c00270{left:0.000000pt;}
.x20_c00270{left:120.956293pt;}
.x10_c00270{left:122.240440pt;}
.x7_c00270{left:123.197080pt;}
.x1_c00270{left:124.479467pt;}
.x13_c00270{left:150.079067pt;}
.x25_c00270{left:168.001400pt;}
.x35_c00270{left:169.276813pt;}
.x28_c00270{left:170.238973pt;}
.x29_c00270{left:183.999067pt;}
.xf_c00270{left:187.839867pt;}
.x14_c00270{left:188.799333pt;}
.x2_c00270{left:220.479453pt;}
.x15_c00270{left:242.239720pt;}
.x2c_c00270{left:252.159733pt;}
.x3_c00270{left:260.159200pt;}
.x16_c00270{left:263.359867pt;}
.x5_c00270{left:266.239720pt;}
.x4_c00270{left:273.599067pt;}
.x6_c00270{left:278.718787pt;}
.x2d_c00270{left:285.758787pt;}
.x36_c00270{left:308.799320pt;}
.x2e_c00270{left:338.559067pt;}
.x17_c00270{left:342.399867pt;}
.x26_c00270{left:345.599040pt;}
.x27_c00270{left:359.039067pt;}
.x2f_c00270{left:363.518520pt;}
.x18_c00270{left:408.638667pt;}
.x21_c00270{left:412.479453pt;}
.x30_c00270{left:419.519453pt;}
.xa_c00270{left:422.078693pt;}
.x22_c00270{left:431.039067pt;}
.xb_c00270{left:436.158693pt;}
.xc_c00270{left:437.759720pt;}
.x19_c00270{left:465.919840pt;}
.x31_c00270{left:484.158693pt;}
.x1a_c00270{left:515.198693pt;}
.x32_c00270{left:530.879840pt;}
.x1b_c00270{left:538.558507pt;}
.x8_c00270{left:561.279707pt;}
.x9_c00270{left:584.958907pt;}
.xd_c00270{left:597.439453pt;}
.x23_c00270{left:602.559040pt;}
.x33_c00270{left:606.399867pt;}
.x1c_c00270{left:608.958907pt;}
.xe_c00270{left:612.799840pt;}
.x24_c00270{left:616.639200pt;}
.x34_c00270{left:636.799840pt;}
.x1d_c00270{left:642.238773pt;}
.x1e_c00270{left:654.079067pt;}
.x2a_c00270{left:657.919840pt;}
.x11_c00270{left:672.319333pt;}
.x2b_c00270{left:677.119587pt;}
.x1f_c00270{left:679.999427pt;}
.x12_c00270{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8e412dd147477f03e3cf4bd.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_4f7b366bd0e730aa27db2230.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_73c4a92a0131e580f079caaa.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.364746;font-style:normal;font-weight:normal;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_5b961cfabdd51fb79bdc9735.woff2')format("woff");}.ff4_c00271{font-family:ff4_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:ff5_c00271;src:url('chunks/assets/font_b6f7cd017211a5dfc75aa089.woff2')format("woff");}.ff5_c00271{font-family:ff5_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;}
.m5_c00271{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.372283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372283,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls5_c00271{letter-spacing:-6.623663px;}
.lsc_c00271{letter-spacing:-5.890500px;}
.ls9_c00271{letter-spacing:-5.151600px;}
.lsa_c00271{letter-spacing:-5.150250px;}
.ls10_c00271{letter-spacing:-4.753575px;}
.ls8_c00271{letter-spacing:-4.418663px;}
.ls6_c00271{letter-spacing:-3.678413px;}
.lsf_c00271{letter-spacing:-3.283800px;}
.ls2_c00271{letter-spacing:-3.159000px;}
.lsd_c00271{letter-spacing:-3.053250px;}
.ls1_c00271{letter-spacing:-2.945250px;}
.lse_c00271{letter-spacing:-2.353583px;}
.ls3_c00271{letter-spacing:-2.205000px;}
.ls11_c00271{letter-spacing:-1.569600px;}
.ls4_c00271{letter-spacing:-1.473413px;}
.ls12_c00271{letter-spacing:-0.784800px;}
.ls7_c00271{letter-spacing:-0.731588px;}
.lsb_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:10.300500px;}
.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;}
._12_c00271{margin-left:-30.931602px;}
._19_c00271{margin-left:-10.844037px;}
._1a_c00271{margin-left:-5.901784px;}
._6_c00271{margin-left:-4.014543px;}
._2_c00271{margin-left:-2.361970px;}
._5_c00271{width:1.045771px;}
._4_c00271{width:2.047971px;}
._0_c00271{width:3.622529px;}
._1_c00271{width:6.008757px;}
._3_c00271{width:7.245265px;}
._8_c00271{width:10.182743px;}
._7_c00271{width:11.283145px;}
._a_c00271{width:14.098141px;}
._c_c00271{width:15.246353px;}
._9_c00271{width:17.848813px;}
._d_c00271{width:19.485164px;}
._13_c00271{width:20.981730px;}
._b_c00271{width:23.763261px;}
._11_c00271{width:26.696191px;}
._17_c00271{width:28.958414px;}
._f_c00271{width:30.768383px;}
._e_c00271{width:32.160411px;}
._10_c00271{width:33.221865px;}
._16_c00271{width:34.757534px;}
._18_c00271{width:35.971410px;}
._15_c00271{width:39.853351px;}
._14_c00271{width:43.060824px;}
.fc0_c00271{color:transparent;}
.fs3_c00271{font-size:69.000000px;}
.fs7_c00271{font-size:78.000000px;}
.fs0_c00271{font-size:78.750000px;}
.fs2_c00271{font-size:79.500000px;}
.fs4_c00271{font-size:80.250000px;}
.fs8_c00271{font-size:81.750000px;}
.fsa_c00271{font-size:82.500000px;}
.fs9_c00271{font-size:83.250000px;}
.fs5_c00271{font-size:84.750000px;}
.fs6_c00271{font-size:86.250000px;}
.fs1_c00271{font-size:87.750000px;}
.y0_c00271{bottom:0.000000px;}
.yc_c00271{bottom:791.999355px;}
.yb_c00271{bottom:912.238770px;}
.y9_c00271{bottom:933.840090px;}
.ya_c00271{bottom:934.378965px;}
.y8_c00271{bottom:955.439670px;}
.y7_c00271{bottom:955.440555px;}
.y5_c00271{bottom:976.318890px;}
.y6_c00271{bottom:976.319190px;}
.y4_c00271{bottom:997.559805px;}
.y3_c00271{bottom:1019.159085px;}
.y2_c00271{bottom:1108.438065px;}
.y1_c00271{bottom:1138.680090px;}
.h4_c00271{height:71.964844px;}
.h8_c00271{height:76.552734px;}
.h1_c00271{height:77.288818px;}
.h3_c00271{height:78.024902px;}
.h5_c00271{height:78.760986px;}
.ha_c00271{height:81.351562px;}
.h9_c00271{height:82.388672px;}
.hc_c00271{height:83.144531px;}
.h6_c00271{height:83.177490px;}
.hb_c00271{height:83.900391px;}
.h7_c00271{height:85.239258px;}
.h2_c00271{height:86.121826px;}
.h0_c00271{height:1263.000000px;}
.w0_c00271{width:892.500000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:139.678500px;}
.x5_c00271{left:195.118980px;}
.x4_c00271{left:196.199910px;}
.x2_c00271{left:213.478635px;}
.xe_c00271{left:249.118785px;}
.xb_c00271{left:255.239250px;}
.x3_c00271{left:273.239850px;}
.xc_c00271{left:277.199850px;}
.x6_c00271{left:285.479235px;}
.xd_c00271{left:299.878950px;}
.xf_c00271{left:307.439685px;}
.x7_c00271{left:331.559100px;}
.x10_c00271{left:336.959385px;}
.x11_c00271{left:402.478635px;}
.x12_c00271{left:426.238770px;}
.x8_c00271{left:487.079400px;}
.x9_c00271{left:493.199850px;}
.x13_c00271{left:598.319235px;}
.xa_c00271{left:773.639655px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls5_c00271{letter-spacing:-5.887700pt;}
.lsc_c00271{letter-spacing:-5.236000pt;}
.ls9_c00271{letter-spacing:-4.579200pt;}
.lsa_c00271{letter-spacing:-4.578000pt;}
.ls10_c00271{letter-spacing:-4.225400pt;}
.ls8_c00271{letter-spacing:-3.927700pt;}
.ls6_c00271{letter-spacing:-3.269700pt;}
.lsf_c00271{letter-spacing:-2.918933pt;}
.ls2_c00271{letter-spacing:-2.808000pt;}
.lsd_c00271{letter-spacing:-2.714000pt;}
.ls1_c00271{letter-spacing:-2.618000pt;}
.lse_c00271{letter-spacing:-2.092073pt;}
.ls3_c00271{letter-spacing:-1.960000pt;}
.ls11_c00271{letter-spacing:-1.395200pt;}
.ls4_c00271{letter-spacing:-1.309700pt;}
.ls12_c00271{letter-spacing:-0.697600pt;}
.ls7_c00271{letter-spacing:-0.650300pt;}
.lsb_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:9.156000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
._12_c00271{margin-left:-27.494757pt;}
._19_c00271{margin-left:-9.639144pt;}
._1a_c00271{margin-left:-5.246030pt;}
._6_c00271{margin-left:-3.568482pt;}
._2_c00271{margin-left:-2.099529pt;}
._5_c00271{width:0.929574pt;}
._4_c00271{width:1.820419pt;}
._0_c00271{width:3.220026pt;}
._1_c00271{width:5.341118pt;}
._3_c00271{width:6.440236pt;}
._8_c00271{width:9.051327pt;}
._7_c00271{width:10.029463pt;}
._a_c00271{width:12.531681pt;}
._c_c00271{width:13.552314pt;}
._9_c00271{width:15.865611pt;}
._d_c00271{width:17.320146pt;}
._13_c00271{width:18.650427pt;}
._b_c00271{width:21.122899pt;}
._11_c00271{width:23.729948pt;}
._17_c00271{width:25.740812pt;}
._f_c00271{width:27.349674pt;}
._e_c00271{width:28.587032pt;}
._10_c00271{width:29.530547pt;}
._16_c00271{width:30.895586pt;}
._18_c00271{width:31.974587pt;}
._15_c00271{width:35.425201pt;}
._14_c00271{width:38.276288pt;}
.fs3_c00271{font-size:61.333333pt;}
.fs7_c00271{font-size:69.333333pt;}
.fs0_c00271{font-size:70.000000pt;}
.fs2_c00271{font-size:70.666667pt;}
.fs4_c00271{font-size:71.333333pt;}
.fs8_c00271{font-size:72.666667pt;}
.fsa_c00271{font-size:73.333333pt;}
.fs9_c00271{font-size:74.000000pt;}
.fs5_c00271{font-size:75.333333pt;}
.fs6_c00271{font-size:76.666667pt;}
.fs1_c00271{font-size:78.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.yc_c00271{bottom:703.999427pt;}
.yb_c00271{bottom:810.878907pt;}
.y9_c00271{bottom:830.080080pt;}
.ya_c00271{bottom:830.559080pt;}
.y8_c00271{bottom:849.279707pt;}
.y7_c00271{bottom:849.280493pt;}
.y5_c00271{bottom:867.839013pt;}
.y6_c00271{bottom:867.839280pt;}
.y4_c00271{bottom:886.719827pt;}
.y3_c00271{bottom:905.919187pt;}
.y2_c00271{bottom:985.278280pt;}
.y1_c00271{bottom:1012.160080pt;}
.h4_c00271{height:63.968750pt;}
.h8_c00271{height:68.046875pt;}
.h1_c00271{height:68.701172pt;}
.h3_c00271{height:69.355469pt;}
.h5_c00271{height:70.009766pt;}
.ha_c00271{height:72.312500pt;}
.h9_c00271{height:73.234375pt;}
.hc_c00271{height:73.906250pt;}
.h6_c00271{height:73.935547pt;}
.hb_c00271{height:74.578125pt;}
.h7_c00271{height:75.768229pt;}
.h2_c00271{height:76.552734pt;}
.h0_c00271{height:1122.666667pt;}
.w0_c00271{width:793.333333pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:124.158667pt;}
.x5_c00271{left:173.439093pt;}
.x4_c00271{left:174.399920pt;}
.x2_c00271{left:189.758787pt;}
.xe_c00271{left:221.438920pt;}
.xb_c00271{left:226.879333pt;}
.x3_c00271{left:242.879867pt;}
.xc_c00271{left:246.399867pt;}
.x6_c00271{left:253.759320pt;}
.xd_c00271{left:266.559067pt;}
.xf_c00271{left:273.279720pt;}
.x7_c00271{left:294.719200pt;}
.x10_c00271{left:299.519453pt;}
.x11_c00271{left:357.758787pt;}
.x12_c00271{left:378.878907pt;}
.x8_c00271{left:432.959467pt;}
.x9_c00271{left:438.399867pt;}
.x13_c00271{left:531.839320pt;}
.xa_c00271{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_beab987e1b10d3a1e000314d.woff2')format("woff");}.ff1_c00272{font-family:ff1_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:ff2_c00272;src:url('chunks/assets/font_3865ab35fbca484f436f613d.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_89a9073fa39d1bc477dd792e.woff2')format("woff");}.ff4_c00272{font-family:ff4_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:ff5_c00272;src:url('chunks/assets/font_18595c0122cda2013a7758ca.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00272;src:url('chunks/assets/font_adafce98dfabad0800cd6b38.woff2')format("woff");}.ff6_c00272{font-family:ff6_c00272;line-height:1.364746;font-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_c00272{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389175,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.400538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400538,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls17_c00272{letter-spacing:-30.474360px;}
.ls19_c00272{letter-spacing:-17.319623px;}
.ls14_c00272{letter-spacing:-16.095750px;}
.lsf_c00272{letter-spacing:-14.210775px;}
.ls1a_c00272{letter-spacing:-14.112000px;}
.ls18_c00272{letter-spacing:-14.083125px;}
.ls9_c00272{letter-spacing:-14.082750px;}
.lse_c00272{letter-spacing:-12.238125px;}
.ls1e_c00272{letter-spacing:-8.249850px;}
.ls12_c00272{letter-spacing:-8.175038px;}
.ls16_c00272{letter-spacing:-7.574580px;}
.ls1d_c00272{letter-spacing:-7.028100px;}
.ls1c_c00272{letter-spacing:-6.749550px;}
.ls13_c00272{letter-spacing:-6.685875px;}
.lsd_c00272{letter-spacing:-6.400208px;}
.ls15_c00272{letter-spacing:-6.374700px;}
.ls7_c00272{letter-spacing:-5.945625px;}
.ls10_c00272{letter-spacing:-5.577000px;}
.lsb_c00272{letter-spacing:-5.196713px;}
.lsa_c00272{letter-spacing:-4.456463px;}
.ls1b_c00272{letter-spacing:-4.003200px;}
.lsc_c00272{letter-spacing:-3.717000px;}
.ls6_c00272{letter-spacing:-2.968875px;}
.ls3_c00272{letter-spacing:-2.229413px;}
.ls4_c00272{letter-spacing:-1.612800px;}
.ls5_c00272{letter-spacing:-1.489163px;}
.ls8_c00272{letter-spacing:-0.740250px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls2_c00272{letter-spacing:2.129805px;}
.ls11_c00272{letter-spacing:4.181700px;}
.ls0_c00272{letter-spacing:13.371750px;}
.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;}
._1d_c00272{margin-left:-29.649108px;}
._1c_c00272{margin-left:-9.402928px;}
._a_c00272{margin-left:-6.442270px;}
._1e_c00272{margin-left:-4.481499px;}
._0_c00272{margin-left:-2.592911px;}
._8_c00272{margin-left:-1.218768px;}
._5_c00272{width:1.371914px;}
._1_c00272{width:2.843737px;}
._14_c00272{width:3.997097px;}
._4_c00272{width:5.040475px;}
._10_c00272{width:6.373297px;}
._2_c00272{width:7.684514px;}
._f_c00272{width:8.818663px;}
._9_c00272{width:10.016554px;}
._11_c00272{width:11.706054px;}
._6_c00272{width:12.722880px;}
._7_c00272{width:14.717409px;}
._b_c00272{width:17.055289px;}
._d_c00272{width:19.505067px;}
._13_c00272{width:22.200680px;}
._c_c00272{width:23.349553px;}
._1b_c00272{width:24.586255px;}
._12_c00272{width:26.319632px;}
._3_c00272{width:28.028121px;}
._e_c00272{width:29.443570px;}
._1f_c00272{width:32.287916px;}
._20_c00272{width:33.678626px;}
._21_c00272{width:36.083963px;}
._1a_c00272{width:45.519952px;}
._18_c00272{width:47.127447px;}
._19_c00272{width:50.432525px;}
._17_c00272{width:51.549631px;}
._15_c00272{width:52.674523px;}
._16_c00272{width:64.078756px;}
.fc0_c00272{color:transparent;}
.fsc_c00272{font-size:69.750000px;}
.fsd_c00272{font-size:72.000000px;}
.fsa_c00272{font-size:72.750000px;}
.fs7_c00272{font-size:78.000000px;}
.fs0_c00272{font-size:78.750000px;}
.fs1_c00272{font-size:79.500000px;}
.fs4_c00272{font-size:80.250000px;}
.fs9_c00272{font-size:81.000000px;}
.fs5_c00272{font-size:81.750000px;}
.fs3_c00272{font-size:82.500000px;}
.fs6_c00272{font-size:83.250000px;}
.fs2_c00272{font-size:84.000000px;}
.fse_c00272{font-size:85.500000px;}
.fs8_c00272{font-size:87.000000px;}
.fsb_c00272{font-size:108.750000px;}
.y0_c00272{bottom:0.000000px;}
.y2b_c00272{bottom:186.119415px;}
.y2a_c00272{bottom:186.119565px;}
.y29_c00272{bottom:215.639100px;}
.y28_c00272{bottom:215.640240px;}
.y27_c00272{bottom:245.519970px;}
.y26_c00272{bottom:275.039490px;}
.y25_c00272{bottom:334.798950px;}
.y24_c00272{bottom:364.679700px;}
.y23_c00272{bottom:364.680570px;}
.y22_c00272{bottom:394.560285px;}
.y20_c00272{bottom:424.439250px;}
.y21_c00272{bottom:424.800150px;}
.y1e_c00272{bottom:454.319025px;}
.y1f_c00272{bottom:454.319820px;}
.y1d_c00272{bottom:484.558935px;}
.y1c_c00272{bottom:514.438665px;}
.y1b_c00272{bottom:514.439460px;}
.y1a_c00272{bottom:544.319190px;}
.y19_c00272{bottom:574.559100px;}
.y18_c00272{bottom:574.560750px;}
.y17_c00272{bottom:604.440465px;}
.y16_c00272{bottom:663.479235px;}
.y15_c00272{bottom:663.479415px;}
.y14_c00272{bottom:692.998950px;}
.y13_c00272{bottom:723.238770px;}
.y12_c00272{bottom:723.238785px;}
.y11_c00272{bottom:752.760135px;}
.y10_c00272{bottom:752.760960px;}
.ye_c00272{bottom:783.359205px;}
.yf_c00272{bottom:783.359250px;}
.yd_c00272{bottom:813.599115px;}
.yc_c00272{bottom:873.000255px;}
.yb_c00272{bottom:902.879970px;}
.ya_c00272{bottom:902.880345px;}
.y8_c00272{bottom:932.398980px;}
.y9_c00272{bottom:932.399865px;}
.y7_c00272{bottom:962.638890px;}
.y5_c00272{bottom:992.518110px;}
.y6_c00272{bottom:992.518620px;}
.y4_c00272{bottom:1022.760135px;}
.y3_c00272{bottom:1022.760270px;}
.y2_c00272{bottom:1082.519715px;}
.y1_c00272{bottom:1143.358605px;}
.h12_c00272{height:72.747070px;}
.h13_c00272{height:75.093750px;}
.hf_c00272{height:75.875977px;}
.ha_c00272{height:76.552734px;}
.h1_c00272{height:77.288818px;}
.h9_c00272{height:78.024902px;}
.he_c00272{height:78.609375px;}
.h6_c00272{height:78.760986px;}
.hc_c00272{height:79.497070px;}
.h14_c00272{height:80.121094px;}
.h7_c00272{height:80.233154px;}
.h5_c00272{height:80.969238px;}
.h4_c00272{height:81.533203px;}
.hd_c00272{height:81.632812px;}
.h8_c00272{height:82.274414px;}
.h3_c00272{height:82.441406px;}
.h2_c00272{height:82.916016px;}
.h10_c00272{height:83.015625px;}
.h15_c00272{height:84.498047px;}
.hb_c00272{height:85.385742px;}
.h11_c00272{height:106.732178px;}
.h0_c00272{height:1263.000000px;}
.w0_c00272{width:892.500000px;}
.x0_c00272{left:0.000000px;}
.xb_c00272{left:141.120825px;}
.x1_c00272{left:142.199850px;}
.x11_c00272{left:168.118815px;}
.x2_c00272{left:183.599700px;}
.xc_c00272{left:187.559685px;}
.x2b_c00272{left:200.519100px;}
.x3_c00272{left:209.159385px;}
.x27_c00272{left:212.399250px;}
.x2c_c00272{left:213.839535px;}
.x28_c00272{left:226.439685px;}
.x3e_c00272{left:228.239250px;}
.x37_c00272{left:230.399850px;}
.x3f_c00272{left:244.079385px;}
.x38_c00272{left:258.120000px;}
.x7_c00272{left:260.998950px;}
.x2d_c00272{left:267.119385px;}
.x1f_c00272{left:271.799535px;}
.x8_c00272{left:277.918350px;}
.x2e_c00272{left:280.439685px;}
.x20_c00272{left:286.558635px;}
.x5_c00272{left:293.399250px;}
.x1c_c00272{left:298.799535px;}
.x6_c00272{left:313.558635px;}
.x1d_c00272{left:323.639100px;}
.x12_c00272{left:325.438635px;}
.x14_c00272{left:344.518635px;}
.x13_c00272{left:347.399235px;}
.x2f_c00272{left:354.239850px;}
.x15_c00272{left:366.838515px;}
.x30_c00272{left:376.198785px;}
.x25_c00272{left:406.799565px;}
.x31_c00272{left:422.639700px;}
.x21_c00272{left:430.559685px;}
.x26_c00272{left:432.718500px;}
.x32_c00272{left:435.958335px;}
.x22_c00272{left:445.318770px;}
.x3b_c00272{left:461.158770px;}
.x40_c00272{left:475.919535px;}
.x18_c00272{left:479.159415px;}
.x4_c00272{left:481.679070px;}
.x19_c00272{left:494.638500px;}
.x3c_c00272{left:502.199385px;}
.x16_c00272{left:505.080000px;}
.x41_c00272{left:513.718500px;}
.x17_c00272{left:521.638500px;}
.x33_c00272{left:529.558635px;}
.x34_c00272{left:555.479235px;}
.xf_c00272{left:575.999400px;}
.x10_c00272{left:596.519670px;}
.x9_c00272{left:610.199385px;}
.x35_c00272{left:617.758530px;}
.x29_c00272{left:625.678530px;}
.xa_c00272{left:627.479685px;}
.xd_c00272{left:635.399820px;}
.x2a_c00272{left:648.359250px;}
.xe_c00272{left:651.599070px;}
.x36_c00272{left:671.399235px;}
.x3d_c00272{left:700.918950px;}
.x39_c00272{left:704.878920px;}
.x1a_c00272{left:725.039985px;}
.x23_c00272{left:730.799520px;}
.x3a_c00272{left:732.599070px;}
.x1b_c00272{left:741.239220px;}
.x24_c00272{left:746.639700px;}
.x1e_c00272{left:770.038965px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls17_c00272{letter-spacing:-27.088320pt;}
.ls19_c00272{letter-spacing:-15.395220pt;}
.ls14_c00272{letter-spacing:-14.307333pt;}
.lsf_c00272{letter-spacing:-12.631800pt;}
.ls1a_c00272{letter-spacing:-12.544000pt;}
.ls18_c00272{letter-spacing:-12.518333pt;}
.ls9_c00272{letter-spacing:-12.518000pt;}
.lse_c00272{letter-spacing:-10.878333pt;}
.ls1e_c00272{letter-spacing:-7.333200pt;}
.ls12_c00272{letter-spacing:-7.266700pt;}
.ls16_c00272{letter-spacing:-6.732960pt;}
.ls1d_c00272{letter-spacing:-6.247200pt;}
.ls1c_c00272{letter-spacing:-5.999600pt;}
.ls13_c00272{letter-spacing:-5.943000pt;}
.lsd_c00272{letter-spacing:-5.689073pt;}
.ls15_c00272{letter-spacing:-5.666400pt;}
.ls7_c00272{letter-spacing:-5.285000pt;}
.ls10_c00272{letter-spacing:-4.957333pt;}
.lsb_c00272{letter-spacing:-4.619300pt;}
.lsa_c00272{letter-spacing:-3.961300pt;}
.ls1b_c00272{letter-spacing:-3.558400pt;}
.lsc_c00272{letter-spacing:-3.304000pt;}
.ls6_c00272{letter-spacing:-2.639000pt;}
.ls3_c00272{letter-spacing:-1.981700pt;}
.ls4_c00272{letter-spacing:-1.433600pt;}
.ls5_c00272{letter-spacing:-1.323700pt;}
.ls8_c00272{letter-spacing:-0.658000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls2_c00272{letter-spacing:1.893160pt;}
.ls11_c00272{letter-spacing:3.717067pt;}
.ls0_c00272{letter-spacing:11.886000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
._1d_c00272{margin-left:-26.354762pt;}
._1c_c00272{margin-left:-8.358158pt;}
._a_c00272{margin-left:-5.726462pt;}
._1e_c00272{margin-left:-3.983555pt;}
._0_c00272{margin-left:-2.304809pt;}
._8_c00272{margin-left:-1.083349pt;}
._5_c00272{width:1.219479pt;}
._1_c00272{width:2.527766pt;}
._14_c00272{width:3.552975pt;}
._4_c00272{width:4.480423pt;}
._10_c00272{width:5.665153pt;}
._2_c00272{width:6.830679pt;}
._f_c00272{width:7.838811pt;}
._9_c00272{width:8.903604pt;}
._11_c00272{width:10.405381pt;}
._6_c00272{width:11.309226pt;}
._7_c00272{width:13.082142pt;}
._b_c00272{width:15.160257pt;}
._d_c00272{width:17.337838pt;}
._13_c00272{width:19.733938pt;}
._c_c00272{width:20.755158pt;}
._1b_c00272{width:21.854449pt;}
._12_c00272{width:23.395228pt;}
._3_c00272{width:24.913885pt;}
._e_c00272{width:26.172062pt;}
._1f_c00272{width:28.700370pt;}
._20_c00272{width:29.936557pt;}
._21_c00272{width:32.074634pt;}
._1a_c00272{width:40.462179pt;}
._18_c00272{width:41.891064pt;}
._19_c00272{width:44.828911pt;}
._17_c00272{width:45.821894pt;}
._15_c00272{width:46.821798pt;}
._16_c00272{width:56.958894pt;}
.fsc_c00272{font-size:62.000000pt;}
.fsd_c00272{font-size:64.000000pt;}
.fsa_c00272{font-size:64.666667pt;}
.fs7_c00272{font-size:69.333333pt;}
.fs0_c00272{font-size:70.000000pt;}
.fs1_c00272{font-size:70.666667pt;}
.fs4_c00272{font-size:71.333333pt;}
.fs9_c00272{font-size:72.000000pt;}
.fs5_c00272{font-size:72.666667pt;}
.fs3_c00272{font-size:73.333333pt;}
.fs6_c00272{font-size:74.000000pt;}
.fs2_c00272{font-size:74.666667pt;}
.fse_c00272{font-size:76.000000pt;}
.fs8_c00272{font-size:77.333333pt;}
.fsb_c00272{font-size:96.666667pt;}
.y0_c00272{bottom:0.000000pt;}
.y2b_c00272{bottom:165.439480pt;}
.y2a_c00272{bottom:165.439613pt;}
.y29_c00272{bottom:191.679200pt;}
.y28_c00272{bottom:191.680213pt;}
.y27_c00272{bottom:218.239973pt;}
.y26_c00272{bottom:244.479547pt;}
.y25_c00272{bottom:297.599067pt;}
.y24_c00272{bottom:324.159733pt;}
.y23_c00272{bottom:324.160507pt;}
.y22_c00272{bottom:350.720253pt;}
.y20_c00272{bottom:377.279333pt;}
.y21_c00272{bottom:377.600133pt;}
.y1e_c00272{bottom:403.839133pt;}
.y1f_c00272{bottom:403.839840pt;}
.y1d_c00272{bottom:430.719053pt;}
.y1c_c00272{bottom:457.278813pt;}
.y1b_c00272{bottom:457.279520pt;}
.y1a_c00272{bottom:483.839280pt;}
.y19_c00272{bottom:510.719200pt;}
.y18_c00272{bottom:510.720667pt;}
.y17_c00272{bottom:537.280413pt;}
.y16_c00272{bottom:589.759320pt;}
.y15_c00272{bottom:589.759480pt;}
.y14_c00272{bottom:615.999067pt;}
.y13_c00272{bottom:642.878907pt;}
.y12_c00272{bottom:642.878920pt;}
.y11_c00272{bottom:669.120120pt;}
.y10_c00272{bottom:669.120853pt;}
.ye_c00272{bottom:696.319293pt;}
.yf_c00272{bottom:696.319333pt;}
.yd_c00272{bottom:723.199213pt;}
.yc_c00272{bottom:776.000227pt;}
.yb_c00272{bottom:802.559973pt;}
.ya_c00272{bottom:802.560307pt;}
.y8_c00272{bottom:828.799093pt;}
.y9_c00272{bottom:828.799880pt;}
.y7_c00272{bottom:855.679013pt;}
.y5_c00272{bottom:882.238320pt;}
.y6_c00272{bottom:882.238773pt;}
.y4_c00272{bottom:909.120120pt;}
.y3_c00272{bottom:909.120240pt;}
.y2_c00272{bottom:962.239747pt;}
.y1_c00272{bottom:1016.318760pt;}
.h12_c00272{height:64.664062pt;}
.h13_c00272{height:66.750000pt;}
.hf_c00272{height:67.445312pt;}
.ha_c00272{height:68.046875pt;}
.h1_c00272{height:68.701172pt;}
.h9_c00272{height:69.355469pt;}
.he_c00272{height:69.875000pt;}
.h6_c00272{height:70.009766pt;}
.hc_c00272{height:70.664062pt;}
.h14_c00272{height:71.218750pt;}
.h7_c00272{height:71.318359pt;}
.h5_c00272{height:71.972656pt;}
.h4_c00272{height:72.473958pt;}
.hd_c00272{height:72.562500pt;}
.h8_c00272{height:73.132813pt;}
.h3_c00272{height:73.281250pt;}
.h2_c00272{height:73.703125pt;}
.h10_c00272{height:73.791667pt;}
.h15_c00272{height:75.109375pt;}
.hb_c00272{height:75.898438pt;}
.h11_c00272{height:94.873047pt;}
.h0_c00272{height:1122.666667pt;}
.w0_c00272{width:793.333333pt;}
.x0_c00272{left:0.000000pt;}
.xb_c00272{left:125.440733pt;}
.x1_c00272{left:126.399867pt;}
.x11_c00272{left:149.438947pt;}
.x2_c00272{left:163.199733pt;}
.xc_c00272{left:166.719720pt;}
.x2b_c00272{left:178.239200pt;}
.x3_c00272{left:185.919453pt;}
.x27_c00272{left:188.799333pt;}
.x2c_c00272{left:190.079587pt;}
.x28_c00272{left:201.279720pt;}
.x3e_c00272{left:202.879333pt;}
.x37_c00272{left:204.799867pt;}
.x3f_c00272{left:216.959453pt;}
.x38_c00272{left:229.440000pt;}
.x7_c00272{left:231.999067pt;}
.x2d_c00272{left:237.439453pt;}
.x1f_c00272{left:241.599587pt;}
.x8_c00272{left:247.038533pt;}
.x2e_c00272{left:249.279720pt;}
.x20_c00272{left:254.718787pt;}
.x5_c00272{left:260.799333pt;}
.x1c_c00272{left:265.599587pt;}
.x6_c00272{left:278.718787pt;}
.x1d_c00272{left:287.679200pt;}
.x12_c00272{left:289.278787pt;}
.x14_c00272{left:306.238787pt;}
.x13_c00272{left:308.799320pt;}
.x2f_c00272{left:314.879867pt;}
.x15_c00272{left:326.078680pt;}
.x30_c00272{left:334.398920pt;}
.x25_c00272{left:361.599613pt;}
.x31_c00272{left:375.679733pt;}
.x21_c00272{left:382.719720pt;}
.x26_c00272{left:384.638667pt;}
.x32_c00272{left:387.518520pt;}
.x22_c00272{left:395.838907pt;}
.x3b_c00272{left:409.918907pt;}
.x40_c00272{left:423.039587pt;}
.x18_c00272{left:425.919480pt;}
.x4_c00272{left:428.159173pt;}
.x19_c00272{left:439.678667pt;}
.x3c_c00272{left:446.399453pt;}
.x16_c00272{left:448.960000pt;}
.x41_c00272{left:456.638667pt;}
.x17_c00272{left:463.678667pt;}
.x33_c00272{left:470.718787pt;}
.x34_c00272{left:493.759320pt;}
.xf_c00272{left:511.999467pt;}
.x10_c00272{left:530.239707pt;}
.x9_c00272{left:542.399453pt;}
.x35_c00272{left:549.118693pt;}
.x29_c00272{left:556.158693pt;}
.xa_c00272{left:557.759720pt;}
.xd_c00272{left:564.799840pt;}
.x2a_c00272{left:576.319333pt;}
.xe_c00272{left:579.199173pt;}
.x36_c00272{left:596.799320pt;}
.x3d_c00272{left:623.039067pt;}
.x39_c00272{left:626.559040pt;}
.x1a_c00272{left:644.479987pt;}
.x23_c00272{left:649.599573pt;}
.x3a_c00272{left:651.199173pt;}
.x1b_c00272{left:658.879307pt;}
.x24_c00272{left:663.679733pt;}
.x1e_c00272{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1804ee4ba91160c0c4137ca.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_ad1f5ee1ec5b422b0660465d.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.364746;font-style:normal;font-weight:normal;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_46ab44131570fda73eaaca42.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_ca62976487e810518a590d66.woff2')format("woff");}.ff4_c00273{font-family:ff4_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:ff5_c00273;src:url('chunks/assets/font_fb1e9f6577402c2315b52d4e.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00273;src:url('chunks/assets/font_ecfacf150345c1a5b258c249.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:1.281250;font-style:normal;font-weight: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_c00273;src:url('chunks/assets/font_f5bb43cacf7b958fd280bbef.woff2')format("woff");}.ff7_c00273{font-family:ff7_c00273;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00273;src:url('chunks/assets/font_573102e1d9e4586ebc0ec2a5.woff2')format("woff");}.ff8_c00273{font-family:ff8_c00273;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c00273{transform:matrix(0.135321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135321,0.000000,0.000000,0.250000,0,0);}
.m15_c00273{transform:matrix(0.164414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164414,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m1c_c00273{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m20_c00273{transform:matrix(0.189583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189583,0.000000,0.000000,0.250000,0,0);}
.m26_c00273{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.me_c00273{transform:matrix(0.193069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193069,0.000000,0.000000,0.250000,0,0);}
.m16_c00273{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m33_c00273{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m22_c00273{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m28_c00273{transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);}
.m2d_c00273{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m8_c00273{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m25_c00273{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m27_c00273{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m34_c00273{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m23_c00273{transform:matrix(0.216387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216387,0.000000,0.000000,0.250000,0,0);}
.md_c00273{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m2e_c00273{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m35_c00273{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m24_c00273{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m12_c00273{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m21_c00273{transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);}
.m1f_c00273{transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m31_c00273{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m37_c00273{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m1d_c00273{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m2a_c00273{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m1e_c00273{transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);}
.m17_c00273{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m36_c00273{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m14_c00273{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m7_c00273{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m30_c00273{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m0_c00273{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00273{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m11_c00273{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mc_c00273{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m29_c00273{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m10_c00273{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m38_c00273{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m2f_c00273{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.285377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285377,0.000000,0.000000,0.250000,0,0);}
.m2c_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);}
.m32_c00273{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.m1b_c00273{transform:matrix(0.376316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376316,0.000000,0.000000,0.250000,0,0);}
.m1a_c00273{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls12_c00273{letter-spacing:-33.729653px;}
.ls1b_c00273{letter-spacing:-22.810500px;}
.ls1f_c00273{letter-spacing:-16.242075px;}
.lsc_c00273{letter-spacing:-14.594850px;}
.lsd_c00273{letter-spacing:-13.490828px;}
.lsa_c00273{letter-spacing:-12.803018px;}
.lsf_c00273{letter-spacing:-8.175038px;}
.lsb_c00273{letter-spacing:-7.886400px;}
.ls21_c00273{letter-spacing:-7.426125px;}
.ls14_c00273{letter-spacing:-6.873225px;}
.ls33_c00273{letter-spacing:-6.748088px;}
.ls28_c00273{letter-spacing:-6.685875px;}
.ls22_c00273{letter-spacing:-6.318900px;}
.ls1a_c00273{letter-spacing:-6.160478px;}
.lse_c00273{letter-spacing:-5.945625px;}
.ls29_c00273{letter-spacing:-5.890500px;}
.ls5_c00273{letter-spacing:-5.196713px;}
.ls1d_c00273{letter-spacing:-5.151600px;}
.ls10_c00273{letter-spacing:-5.109375px;}
.ls2b_c00273{letter-spacing:-4.543073px;}
.ls7_c00273{letter-spacing:-4.456463px;}
.ls3_c00273{letter-spacing:-4.418663px;}
.ls13_c00273{letter-spacing:-3.813750px;}
.ls8_c00273{letter-spacing:-3.717000px;}
.ls2f_c00273{letter-spacing:-3.605250px;}
.ls27_c00273{letter-spacing:-3.400425px;}
.ls1c_c00273{letter-spacing:-3.118500px;}
.ls1e_c00273{letter-spacing:-2.993213px;}
.ls4_c00273{letter-spacing:-2.968875px;}
.ls34_c00273{letter-spacing:-2.855775px;}
.ls25_c00273{letter-spacing:-2.530215px;}
.ls23_c00273{letter-spacing:-2.478000px;}
.ls1_c00273{letter-spacing:-2.229413px;}
.ls16_c00273{letter-spacing:-2.144483px;}
.ls26_c00273{letter-spacing:-1.730558px;}
.ls2_c00273{letter-spacing:-1.489163px;}
.ls36_c00273{letter-spacing:-0.811980px;}
.ls20_c00273{letter-spacing:-0.809325px;}
.ls32_c00273{letter-spacing:-0.759000px;}
.ls6_c00273{letter-spacing:-0.740250px;}
.ls9_c00273{letter-spacing:0.000000px;}
.ls17_c00273{letter-spacing:0.691125px;}
.ls11_c00273{letter-spacing:0.819788px;}
.ls18_c00273{letter-spacing:1.468800px;}
.ls30_c00273{letter-spacing:1.716000px;}
.ls24_c00273{letter-spacing:1.980000px;}
.ls37_c00273{letter-spacing:2.034900px;}
.ls35_c00273{letter-spacing:3.240000px;}
.ls19_c00273{letter-spacing:3.377700px;}
.ls2a_c00273{letter-spacing:4.352400px;}
.ls0_c00273{letter-spacing:5.945625px;}
.ls2e_c00273{letter-spacing:6.000000px;}
.ls15_c00273{letter-spacing:7.771950px;}
.ls2c_c00273{letter-spacing:9.011100px;}
.ls31_c00273{letter-spacing:14.604975px;}
.ls2d_c00273{letter-spacing:223.204800px;}
.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;}
._18_c00273{margin-left:-36.266932px;}
._17_c00273{margin-left:-22.722540px;}
._15_c00273{margin-left:-16.529625px;}
._14_c00273{margin-left:-9.676503px;}
._c_c00273{margin-left:-7.633906px;}
._d_c00273{margin-left:-6.189676px;}
._b_c00273{margin-left:-4.433952px;}
._9_c00273{margin-left:-2.952887px;}
._11_c00273{margin-left:-1.192617px;}
._16_c00273{width:1.468539px;}
._2_c00273{width:2.519599px;}
._4_c00273{width:3.757712px;}
._1_c00273{width:4.887596px;}
._0_c00273{width:5.988551px;}
._a_c00273{width:7.073667px;}
._e_c00273{width:8.375464px;}
._12_c00273{width:9.855236px;}
._7_c00273{width:11.421038px;}
._3_c00273{width:12.462589px;}
._5_c00273{width:13.701014px;}
._f_c00273{width:15.707876px;}
._10_c00273{width:17.800635px;}
._19_c00273{width:19.505959px;}
._8_c00273{width:21.207746px;}
._6_c00273{width:23.270417px;}
._13_c00273{width:25.041133px;}
._1a_c00273{width:27.530317px;}
.fc0_c00273{color:transparent;}
.fs19_c00273{font-size:40.500000px;}
.fs16_c00273{font-size:48.000000px;}
.fs12_c00273{font-size:54.000000px;}
.fs18_c00273{font-size:57.750000px;}
.fs17_c00273{font-size:66.000000px;}
.fsa_c00273{font-size:71.250000px;}
.fsb_c00273{font-size:72.000000px;}
.fs14_c00273{font-size:73.500000px;}
.fsd_c00273{font-size:74.250000px;}
.fs9_c00273{font-size:75.750000px;}
.fs1b_c00273{font-size:76.500000px;}
.fs13_c00273{font-size:77.250000px;}
.fs1a_c00273{font-size:78.000000px;}
.fs0_c00273{font-size:78.750000px;}
.fs3_c00273{font-size:79.500000px;}
.fs5_c00273{font-size:80.250000px;}
.fsc_c00273{font-size:81.000000px;}
.fs7_c00273{font-size:81.750000px;}
.fs1_c00273{font-size:82.500000px;}
.fs2_c00273{font-size:83.250000px;}
.fs15_c00273{font-size:84.000000px;}
.fs6_c00273{font-size:84.750000px;}
.fs4_c00273{font-size:85.500000px;}
.fs11_c00273{font-size:87.000000px;}
.fsf_c00273{font-size:88.500000px;}
.fse_c00273{font-size:89.250000px;}
.fs10_c00273{font-size:90.000000px;}
.fs8_c00273{font-size:115.500000px;}
.y0_c00273{bottom:0.000000px;}
.y35_c00273{bottom:239.040000px;}
.y33_c00273{bottom:260.639100px;}
.y34_c00273{bottom:260.639700px;}
.y32_c00273{bottom:281.880000px;}
.y31_c00273{bottom:281.880915px;}
.y30_c00273{bottom:302.759535px;}
.y2f_c00273{bottom:302.760345px;}
.y2e_c00273{bottom:323.640750px;}
.y2d_c00273{bottom:340.921185px;}
.y2c_c00273{bottom:347.400900px;}
.y2a_c00273{bottom:366.119415px;}
.y2b_c00273{bottom:366.120000px;}
.y28_c00273{bottom:387.359820px;}
.y29_c00273{bottom:387.360300px;}
.y27_c00273{bottom:408.600720px;}
.y26_c00273{bottom:408.601155px;}
.y25_c00273{bottom:430.200435px;}
.y24_c00273{bottom:451.440900px;}
.y23_c00273{bottom:451.441065px;}
.y21_c00273{bottom:473.760525px;}
.y22_c00273{bottom:473.760720px;}
.y20_c00273{bottom:495.359820px;}
.y1f_c00273{bottom:516.600720px;}
.y1e_c00273{bottom:516.601665px;}
.y1d_c00273{bottom:537.480285px;}
.y1c_c00273{bottom:537.480720px;}
.y1b_c00273{bottom:559.080000px;}
.y19_c00273{bottom:579.960690px;}
.y1a_c00273{bottom:579.961035px;}
.y18_c00273{bottom:601.559970px;}
.y16_c00273{bottom:660.960405px;}
.y17_c00273{bottom:660.961035px;}
.y14_c00273{bottom:690.840090px;}
.y15_c00273{bottom:690.840135px;}
.y13_c00273{bottom:721.080000px;}
.y12_c00273{bottom:750.960570px;}
.y11_c00273{bottom:781.200435px;}
.y10_c00273{bottom:781.201335px;}
.ye_c00273{bottom:811.080345px;}
.yf_c00273{bottom:811.081050px;}
.yd_c00273{bottom:841.320255px;}
.yc_c00273{bottom:871.199985px;}
.yb_c00273{bottom:900.719520px;}
.ya_c00273{bottom:900.720405px;}
.y9_c00273{bottom:930.600135px;}
.y8_c00273{bottom:930.601110px;}
.y7_c00273{bottom:960.480840px;}
.y6_c00273{bottom:990.359805px;}
.y5_c00273{bottom:990.360300px;}
.y4_c00273{bottom:1020.960705px;}
.y3_c00273{bottom:1080.720150px;}
.y2_c00273{bottom:1080.720195px;}
.y1_c00273{bottom:1140.479640px;}
.h22_c00273{height:42.240234px;}
.h1f_c00273{height:50.062500px;}
.h1a_c00273{height:53.367188px;}
.h21_c00273{height:58.201172px;}
.h20_c00273{height:65.226562px;}
.he_c00273{height:69.927979px;}
.hf_c00273{height:70.664062px;}
.h14_c00273{height:74.311523px;}
.hd_c00273{height:74.344482px;}
.hc_c00273{height:74.862305px;}
.h25_c00273{height:75.080566px;}
.h23_c00273{height:76.552734px;}
.h1c_c00273{height:76.658203px;}
.h1_c00273{height:77.288818px;}
.h13_c00273{height:77.440430px;}
.h1b_c00273{height:77.853516px;}
.h4_c00273{height:78.024902px;}
.h24_c00273{height:78.609375px;}
.h6_c00273{height:78.760986px;}
.h12_c00273{height:79.365234px;}
.h10_c00273{height:79.497070px;}
.h8_c00273{height:80.233154px;}
.h1e_c00273{height:80.791992px;}
.h2_c00273{height:80.969238px;}
.h19_c00273{height:81.533203px;}
.h11_c00273{height:81.664673px;}
.ha_c00273{height:82.133789px;}
.h3_c00273{height:82.274414px;}
.h1d_c00273{height:82.441406px;}
.h7_c00273{height:83.177490px;}
.h5_c00273{height:84.498047px;}
.h18_c00273{height:85.385742px;}
.hb_c00273{height:85.412109px;}
.h16_c00273{height:86.857910px;}
.h15_c00273{height:87.593994px;}
.h17_c00273{height:88.330078px;}
.h9_c00273{height:120.462891px;}
.h0_c00273{height:1263.000000px;}
.w0_c00273{width:892.500000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:141.479715px;}
.x1a_c00273{left:160.559685px;}
.x24_c00273{left:163.079400px;}
.x5f_c00273{left:195.117300px;}
.x2f_c00273{left:196.202310px;}
.x2e_c00273{left:197.279520px;}
.x15_c00273{left:210.238785px;}
.x16_c00273{left:216.718500px;}
.x11_c00273{left:220.678500px;}
.x2_c00273{left:223.559100px;}
.x7_c00273{left:225.719535px;}
.x17_c00273{left:229.679700px;}
.x12_c00273{left:242.639100px;}
.x36_c00273{left:244.438635px;}
.x3_c00273{left:249.118785px;}
.x3c_c00273{left:254.878350px;}
.x25_c00273{left:258.479235px;}
.x8_c00273{left:262.080000px;}
.x51_c00273{left:268.918950px;}
.x4a_c00273{left:272.519685px;}
.x3d_c00273{left:275.039385px;}
.x1b_c00273{left:276.118785px;}
.x4b_c00273{left:284.759100px;}
.x26_c00273{left:297.000000px;}
.x45_c00273{left:298.799535px;}
.x47_c00273{left:306.358635px;}
.x46_c00273{left:314.278800px;}
.x3e_c00273{left:317.159385px;}
.x1c_c00273{left:321.478635px;}
.x60_c00273{left:325.438635px;}
.x50_c00273{left:336.598530px;}
.x61_c00273{left:337.679700px;}
.x3f_c00273{left:339.838515px;}
.x5b_c00273{left:354.599100px;}
.x1d_c00273{left:381.958350px;}
.x52_c00273{left:403.918950px;}
.x1e_c00273{left:405.000000px;}
.x4c_c00273{left:418.318770px;}
.x40_c00273{left:420.119985px;}
.x62_c00273{left:427.679070px;}
.x4d_c00273{left:432.718500px;}
.x48_c00273{left:447.838530px;}
.x4_c00273{left:452.879520px;}
.x27_c00273{left:461.158770px;}
.x37_c00273{left:464.398635px;}
.x5_c00273{left:469.439670px;}
.x5d_c00273{left:472.679670px;}
.x13_c00273{left:474.479235px;}
.x28_c00273{left:476.998950px;}
.x63_c00273{left:478.080000px;}
.x39_c00273{left:480.238770px;}
.x38_c00273{left:484.198785px;}
.x5e_c00273{left:487.438665px;}
.x53_c00273{left:489.599070px;}
.x2c_c00273{left:492.838950px;}
.x14_c00273{left:493.918350px;}
.x1f_c00273{left:497.159820px;}
.x54_c00273{left:517.678530px;}
.x2d_c00273{left:518.759535px;}
.x3a_c00273{left:546.118785px;}
.x20_c00273{left:556.199385px;}
.xf_c00273{left:559.439250px;}
.x10_c00273{left:574.918350px;}
.x9_c00273{left:581.038920px;}
.x5c_c00273{left:586.798515px;}
.x21_c00273{left:588.958920px;}
.x3b_c00273{left:590.039985px;}
.x2a_c00273{left:591.119385px;}
.x41_c00273{left:596.519670px;}
.xa_c00273{left:600.479685px;}
.xd_c00273{left:601.918350px;}
.x55_c00273{left:604.078770px;}
.x42_c00273{left:610.558635px;}
.xe_c00273{left:615.958920px;}
.x30_c00273{left:618.839535px;}
.x56_c00273{left:628.918350px;}
.x31_c00273{left:632.519070px;}
.x2b_c00273{left:642.958920px;}
.x64_c00273{left:648.359250px;}
.x49_c00273{left:662.759085px;}
.x18_c00273{left:666.719100px;}
.x22_c00273{left:677.519670px;}
.x19_c00273{left:680.759535px;}
.x43_c00273{left:688.679670px;}
.x23_c00273{left:691.558635px;}
.x57_c00273{left:694.080000px;}
.xb_c00273{left:703.438620px;}
.x4e_c00273{left:706.678530px;}
.x5a_c00273{left:713.159820px;}
.x34_c00273{left:714.239220px;}
.x29_c00273{left:718.919535px;}
.x4f_c00273{left:720.719100px;}
.x58_c00273{left:726.119385px;}
.xc_c00273{left:727.559685px;}
.x35_c00273{left:733.319235px;}
.x44_c00273{left:747.719100px;}
.x32_c00273{left:767.159820px;}
.x6_c00273{left:769.318815px;}
.x59_c00273{left:776.159370px;}
.x33_c00273{left:779.399235px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls12_c00273{letter-spacing:-29.981913pt;}
.ls1b_c00273{letter-spacing:-20.276000pt;}
.ls1f_c00273{letter-spacing:-14.437400pt;}
.lsc_c00273{letter-spacing:-12.973200pt;}
.lsd_c00273{letter-spacing:-11.991847pt;}
.lsa_c00273{letter-spacing:-11.380460pt;}
.lsf_c00273{letter-spacing:-7.266700pt;}
.lsb_c00273{letter-spacing:-7.010133pt;}
.ls21_c00273{letter-spacing:-6.601000pt;}
.ls14_c00273{letter-spacing:-6.109533pt;}
.ls33_c00273{letter-spacing:-5.998300pt;}
.ls28_c00273{letter-spacing:-5.943000pt;}
.ls22_c00273{letter-spacing:-5.616800pt;}
.ls1a_c00273{letter-spacing:-5.475980pt;}
.lse_c00273{letter-spacing:-5.285000pt;}
.ls29_c00273{letter-spacing:-5.236000pt;}
.ls5_c00273{letter-spacing:-4.619300pt;}
.ls1d_c00273{letter-spacing:-4.579200pt;}
.ls10_c00273{letter-spacing:-4.541667pt;}
.ls2b_c00273{letter-spacing:-4.038287pt;}
.ls7_c00273{letter-spacing:-3.961300pt;}
.ls3_c00273{letter-spacing:-3.927700pt;}
.ls13_c00273{letter-spacing:-3.390000pt;}
.ls8_c00273{letter-spacing:-3.304000pt;}
.ls2f_c00273{letter-spacing:-3.204667pt;}
.ls27_c00273{letter-spacing:-3.022600pt;}
.ls1c_c00273{letter-spacing:-2.772000pt;}
.ls1e_c00273{letter-spacing:-2.660633pt;}
.ls4_c00273{letter-spacing:-2.639000pt;}
.ls34_c00273{letter-spacing:-2.538467pt;}
.ls25_c00273{letter-spacing:-2.249080pt;}
.ls23_c00273{letter-spacing:-2.202667pt;}
.ls1_c00273{letter-spacing:-1.981700pt;}
.ls16_c00273{letter-spacing:-1.906207pt;}
.ls26_c00273{letter-spacing:-1.538273pt;}
.ls2_c00273{letter-spacing:-1.323700pt;}
.ls36_c00273{letter-spacing:-0.721760pt;}
.ls20_c00273{letter-spacing:-0.719400pt;}
.ls32_c00273{letter-spacing:-0.674667pt;}
.ls6_c00273{letter-spacing:-0.658000pt;}
.ls9_c00273{letter-spacing:0.000000pt;}
.ls17_c00273{letter-spacing:0.614333pt;}
.ls11_c00273{letter-spacing:0.728700pt;}
.ls18_c00273{letter-spacing:1.305600pt;}
.ls30_c00273{letter-spacing:1.525333pt;}
.ls24_c00273{letter-spacing:1.760000pt;}
.ls37_c00273{letter-spacing:1.808800pt;}
.ls35_c00273{letter-spacing:2.880000pt;}
.ls19_c00273{letter-spacing:3.002400pt;}
.ls2a_c00273{letter-spacing:3.868800pt;}
.ls0_c00273{letter-spacing:5.285000pt;}
.ls2e_c00273{letter-spacing:5.333333pt;}
.ls15_c00273{letter-spacing:6.908400pt;}
.ls2c_c00273{letter-spacing:8.009867pt;}
.ls31_c00273{letter-spacing:12.982200pt;}
.ls2d_c00273{letter-spacing:198.404267pt;}
.ws0_c00273{word-spacing:0.000000pt;}
._18_c00273{margin-left:-32.237272pt;}
._17_c00273{margin-left:-20.197813pt;}
._15_c00273{margin-left:-14.693000pt;}
._14_c00273{margin-left:-8.601336pt;}
._c_c00273{margin-left:-6.785694pt;}
._d_c00273{margin-left:-5.501934pt;}
._b_c00273{margin-left:-3.941291pt;}
._9_c00273{margin-left:-2.624789pt;}
._11_c00273{margin-left:-1.060104pt;}
._16_c00273{width:1.305368pt;}
._2_c00273{width:2.239643pt;}
._4_c00273{width:3.340189pt;}
._1_c00273{width:4.344530pt;}
._0_c00273{width:5.323157pt;}
._a_c00273{width:6.287704pt;}
._e_c00273{width:7.444857pt;}
._12_c00273{width:8.760209pt;}
._7_c00273{width:10.152034pt;}
._3_c00273{width:11.077857pt;}
._5_c00273{width:12.178679pt;}
._f_c00273{width:13.962557pt;}
._10_c00273{width:15.822787pt;}
._19_c00273{width:17.338630pt;}
._8_c00273{width:18.851330pt;}
._6_c00273{width:20.684815pt;}
._13_c00273{width:22.258785pt;}
._1a_c00273{width:24.471392pt;}
.fs19_c00273{font-size:36.000000pt;}
.fs16_c00273{font-size:42.666667pt;}
.fs12_c00273{font-size:48.000000pt;}
.fs18_c00273{font-size:51.333333pt;}
.fs17_c00273{font-size:58.666667pt;}
.fsa_c00273{font-size:63.333333pt;}
.fsb_c00273{font-size:64.000000pt;}
.fs14_c00273{font-size:65.333333pt;}
.fsd_c00273{font-size:66.000000pt;}
.fs9_c00273{font-size:67.333333pt;}
.fs1b_c00273{font-size:68.000000pt;}
.fs13_c00273{font-size:68.666667pt;}
.fs1a_c00273{font-size:69.333333pt;}
.fs0_c00273{font-size:70.000000pt;}
.fs3_c00273{font-size:70.666667pt;}
.fs5_c00273{font-size:71.333333pt;}
.fsc_c00273{font-size:72.000000pt;}
.fs7_c00273{font-size:72.666667pt;}
.fs1_c00273{font-size:73.333333pt;}
.fs2_c00273{font-size:74.000000pt;}
.fs15_c00273{font-size:74.666667pt;}
.fs6_c00273{font-size:75.333333pt;}
.fs4_c00273{font-size:76.000000pt;}
.fs11_c00273{font-size:77.333333pt;}
.fsf_c00273{font-size:78.666667pt;}
.fse_c00273{font-size:79.333333pt;}
.fs10_c00273{font-size:80.000000pt;}
.fs8_c00273{font-size:102.666667pt;}
.y0_c00273{bottom:0.000000pt;}
.y35_c00273{bottom:212.480000pt;}
.y33_c00273{bottom:231.679200pt;}
.y34_c00273{bottom:231.679733pt;}
.y32_c00273{bottom:250.560000pt;}
.y31_c00273{bottom:250.560813pt;}
.y30_c00273{bottom:269.119587pt;}
.y2f_c00273{bottom:269.120307pt;}
.y2e_c00273{bottom:287.680667pt;}
.y2d_c00273{bottom:303.041053pt;}
.y2c_c00273{bottom:308.800800pt;}
.y2a_c00273{bottom:325.439480pt;}
.y2b_c00273{bottom:325.440000pt;}
.y28_c00273{bottom:344.319840pt;}
.y29_c00273{bottom:344.320267pt;}
.y27_c00273{bottom:363.200640pt;}
.y26_c00273{bottom:363.201027pt;}
.y25_c00273{bottom:382.400387pt;}
.y24_c00273{bottom:401.280800pt;}
.y23_c00273{bottom:401.280947pt;}
.y21_c00273{bottom:421.120467pt;}
.y22_c00273{bottom:421.120640pt;}
.y20_c00273{bottom:440.319840pt;}
.y1f_c00273{bottom:459.200640pt;}
.y1e_c00273{bottom:459.201480pt;}
.y1d_c00273{bottom:477.760253pt;}
.y1c_c00273{bottom:477.760640pt;}
.y1b_c00273{bottom:496.960000pt;}
.y19_c00273{bottom:515.520613pt;}
.y1a_c00273{bottom:515.520920pt;}
.y18_c00273{bottom:534.719973pt;}
.y16_c00273{bottom:587.520360pt;}
.y17_c00273{bottom:587.520920pt;}
.y14_c00273{bottom:614.080080pt;}
.y15_c00273{bottom:614.080120pt;}
.y13_c00273{bottom:640.960000pt;}
.y12_c00273{bottom:667.520507pt;}
.y11_c00273{bottom:694.400387pt;}
.y10_c00273{bottom:694.401187pt;}
.ye_c00273{bottom:720.960307pt;}
.yf_c00273{bottom:720.960933pt;}
.yd_c00273{bottom:747.840227pt;}
.yc_c00273{bottom:774.399987pt;}
.yb_c00273{bottom:800.639573pt;}
.ya_c00273{bottom:800.640360pt;}
.y9_c00273{bottom:827.200120pt;}
.y8_c00273{bottom:827.200987pt;}
.y7_c00273{bottom:853.760747pt;}
.y6_c00273{bottom:880.319827pt;}
.y5_c00273{bottom:880.320267pt;}
.y4_c00273{bottom:907.520627pt;}
.y3_c00273{bottom:960.640133pt;}
.y2_c00273{bottom:960.640173pt;}
.y1_c00273{bottom:1013.759680pt;}
.h22_c00273{height:37.546875pt;}
.h1f_c00273{height:44.500000pt;}
.h1a_c00273{height:47.437500pt;}
.h21_c00273{height:51.734375pt;}
.h20_c00273{height:57.979167pt;}
.he_c00273{height:62.158203pt;}
.hf_c00273{height:62.812500pt;}
.h14_c00273{height:66.054688pt;}
.hd_c00273{height:66.083984pt;}
.hc_c00273{height:66.544271pt;}
.h25_c00273{height:66.738281pt;}
.h23_c00273{height:68.046875pt;}
.h1c_c00273{height:68.140625pt;}
.h1_c00273{height:68.701172pt;}
.h13_c00273{height:68.835938pt;}
.h1b_c00273{height:69.203125pt;}
.h4_c00273{height:69.355469pt;}
.h24_c00273{height:69.875000pt;}
.h6_c00273{height:70.009766pt;}
.h12_c00273{height:70.546875pt;}
.h10_c00273{height:70.664062pt;}
.h8_c00273{height:71.318359pt;}
.h1e_c00273{height:71.815104pt;}
.h2_c00273{height:71.972656pt;}
.h19_c00273{height:72.473958pt;}
.h11_c00273{height:72.590820pt;}
.ha_c00273{height:73.007812pt;}
.h3_c00273{height:73.132813pt;}
.h1d_c00273{height:73.281250pt;}
.h7_c00273{height:73.935547pt;}
.h5_c00273{height:75.109375pt;}
.h18_c00273{height:75.898438pt;}
.hb_c00273{height:75.921875pt;}
.h16_c00273{height:77.207031pt;}
.h15_c00273{height:77.861328pt;}
.h17_c00273{height:78.515625pt;}
.h9_c00273{height:107.078125pt;}
.h0_c00273{height:1122.666667pt;}
.w0_c00273{width:793.333333pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:125.759747pt;}
.x1a_c00273{left:142.719720pt;}
.x24_c00273{left:144.959467pt;}
.x5f_c00273{left:173.437600pt;}
.x2f_c00273{left:174.402053pt;}
.x2e_c00273{left:175.359573pt;}
.x15_c00273{left:186.878920pt;}
.x16_c00273{left:192.638667pt;}
.x11_c00273{left:196.158667pt;}
.x2_c00273{left:198.719200pt;}
.x7_c00273{left:200.639587pt;}
.x17_c00273{left:204.159733pt;}
.x12_c00273{left:215.679200pt;}
.x36_c00273{left:217.278787pt;}
.x3_c00273{left:221.438920pt;}
.x3c_c00273{left:226.558533pt;}
.x25_c00273{left:229.759320pt;}
.x8_c00273{left:232.960000pt;}
.x51_c00273{left:239.039067pt;}
.x4a_c00273{left:242.239720pt;}
.x3d_c00273{left:244.479453pt;}
.x1b_c00273{left:245.438920pt;}
.x4b_c00273{left:253.119200pt;}
.x26_c00273{left:264.000000pt;}
.x45_c00273{left:265.599587pt;}
.x47_c00273{left:272.318787pt;}
.x46_c00273{left:279.358933pt;}
.x3e_c00273{left:281.919453pt;}
.x1c_c00273{left:285.758787pt;}
.x60_c00273{left:289.278787pt;}
.x50_c00273{left:299.198693pt;}
.x61_c00273{left:300.159733pt;}
.x3f_c00273{left:302.078680pt;}
.x5b_c00273{left:315.199200pt;}
.x1d_c00273{left:339.518533pt;}
.x52_c00273{left:359.039067pt;}
.x1e_c00273{left:360.000000pt;}
.x4c_c00273{left:371.838907pt;}
.x40_c00273{left:373.439987pt;}
.x62_c00273{left:380.159173pt;}
.x4d_c00273{left:384.638667pt;}
.x48_c00273{left:398.078693pt;}
.x4_c00273{left:402.559573pt;}
.x27_c00273{left:409.918907pt;}
.x37_c00273{left:412.798787pt;}
.x5_c00273{left:417.279707pt;}
.x5d_c00273{left:420.159707pt;}
.x13_c00273{left:421.759320pt;}
.x28_c00273{left:423.999067pt;}
.x63_c00273{left:424.960000pt;}
.x39_c00273{left:426.878907pt;}
.x38_c00273{left:430.398920pt;}
.x5e_c00273{left:433.278813pt;}
.x53_c00273{left:435.199173pt;}
.x2c_c00273{left:438.079067pt;}
.x14_c00273{left:439.038533pt;}
.x1f_c00273{left:441.919840pt;}
.x54_c00273{left:460.158693pt;}
.x2d_c00273{left:461.119587pt;}
.x3a_c00273{left:485.438920pt;}
.x20_c00273{left:494.399453pt;}
.xf_c00273{left:497.279333pt;}
.x10_c00273{left:511.038533pt;}
.x9_c00273{left:516.479040pt;}
.x5c_c00273{left:521.598680pt;}
.x21_c00273{left:523.519040pt;}
.x3b_c00273{left:524.479987pt;}
.x2a_c00273{left:525.439453pt;}
.x41_c00273{left:530.239707pt;}
.xa_c00273{left:533.759720pt;}
.xd_c00273{left:535.038533pt;}
.x55_c00273{left:536.958907pt;}
.x42_c00273{left:542.718787pt;}
.xe_c00273{left:547.519040pt;}
.x30_c00273{left:550.079587pt;}
.x56_c00273{left:559.038533pt;}
.x31_c00273{left:562.239173pt;}
.x2b_c00273{left:571.519040pt;}
.x64_c00273{left:576.319333pt;}
.x49_c00273{left:589.119187pt;}
.x18_c00273{left:592.639200pt;}
.x22_c00273{left:602.239707pt;}
.x19_c00273{left:605.119587pt;}
.x43_c00273{left:612.159707pt;}
.x23_c00273{left:614.718787pt;}
.x57_c00273{left:616.960000pt;}
.xb_c00273{left:625.278773pt;}
.x4e_c00273{left:628.158693pt;}
.x5a_c00273{left:633.919840pt;}
.x34_c00273{left:634.879307pt;}
.x29_c00273{left:639.039587pt;}
.x4f_c00273{left:640.639200pt;}
.x58_c00273{left:645.439453pt;}
.xc_c00273{left:646.719720pt;}
.x35_c00273{left:651.839320pt;}
.x44_c00273{left:664.639200pt;}
.x32_c00273{left:681.919840pt;}
.x6_c00273{left:683.838947pt;}
.x59_c00273{left:689.919440pt;}
.x33_c00273{left:692.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36887797fba75342c1389ce5.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_168bd519405e1228d8d396e0.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_e765880f1375d5daf1298970.woff2')format("woff");}.ff3_c00274{font-family:ff3_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:ff4_c00274;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00274{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m22_c00274{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00274{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m21_c00274{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m1b_c00274{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m16_c00274{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.mc_c00274{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1c_c00274{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m12_c00274{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{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_c00274{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m1a_c00274{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.me_c00274{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m19_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00274{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273148,0.000000,0.000000,0.250000,0,0);}
.md_c00274{transform:matrix(0.302817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302817,0.000000,0.000000,0.250000,0,0);}
.mb_c00274{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.mf_c00274{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m14_c00274{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_c00274{vertical-align:0.000000px;}
.lsc_c00274{letter-spacing:-12.352500px;}
.ls1c_c00274{letter-spacing:-9.754725px;}
.ls1f_c00274{letter-spacing:-6.693300px;}
.lsa_c00274{letter-spacing:-6.685875px;}
.ls1_c00274{letter-spacing:-5.945625px;}
.ls18_c00274{letter-spacing:-5.247533px;}
.ls8_c00274{letter-spacing:-5.196713px;}
.ls17_c00274{letter-spacing:-5.158425px;}
.lsf_c00274{letter-spacing:-4.952250px;}
.ls1e_c00274{letter-spacing:-4.921875px;}
.ls9_c00274{letter-spacing:-4.456463px;}
.ls19_c00274{letter-spacing:-3.822000px;}
.ls6_c00274{letter-spacing:-3.717000px;}
.ls13_c00274{letter-spacing:-3.029400px;}
.ls4_c00274{letter-spacing:-2.968875px;}
.ls20_c00274{letter-spacing:-2.488500px;}
.ls2_c00274{letter-spacing:-2.229413px;}
.ls1b_c00274{letter-spacing:-1.590750px;}
.ls5_c00274{letter-spacing:-1.489163px;}
.lsb_c00274{letter-spacing:-1.467750px;}
.ls1a_c00274{letter-spacing:-0.818850px;}
.ls3_c00274{letter-spacing:-0.740250px;}
.ls14_c00274{letter-spacing:-0.374918px;}
.ls7_c00274{letter-spacing:0.000000px;}
.ls15_c00274{letter-spacing:1.560000px;}
.ls16_c00274{letter-spacing:2.464875px;}
.ls21_c00274{letter-spacing:3.502980px;}
.ls1d_c00274{letter-spacing:3.864840px;}
.ls0_c00274{letter-spacing:11.142338px;}
.lsd_c00274{letter-spacing:11.536200px;}
.lse_c00274{letter-spacing:12.960000px;}
.ls10_c00274{letter-spacing:16.748400px;}
.ls11_c00274{letter-spacing:18.720315px;}
.ls12_c00274{letter-spacing:22.722000px;}
.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;}
._18_c00274{margin-left:-54.379446px;}
._1a_c00274{margin-left:-11.763467px;}
._10_c00274{margin-left:-6.361128px;}
._12_c00274{margin-left:-4.411114px;}
._13_c00274{margin-left:-3.328361px;}
._9_c00274{margin-left:-1.881516px;}
._a_c00274{width:1.925675px;}
._14_c00274{width:3.044757px;}
._b_c00274{width:4.372943px;}
._c_c00274{width:5.582275px;}
._11_c00274{width:6.734061px;}
._4_c00274{width:8.040226px;}
._2_c00274{width:9.591512px;}
._d_c00274{width:10.890501px;}
._5_c00274{width:12.075035px;}
._7_c00274{width:13.158025px;}
._8_c00274{width:14.348369px;}
._1_c00274{width:15.711100px;}
._6_c00274{width:18.766244px;}
._3_c00274{width:20.254975px;}
._e_c00274{width:22.267380px;}
._f_c00274{width:23.507113px;}
._0_c00274{width:24.585185px;}
._16_c00274{width:26.159056px;}
._15_c00274{width:28.544958px;}
._17_c00274{width:30.612383px;}
._19_c00274{width:31.824168px;}
.fc0_c00274{color:transparent;}
.fse_c00274{font-size:14.250000px;}
.fs8_c00274{font-size:51.000000px;}
.fsd_c00274{font-size:52.500000px;}
.fs9_c00274{font-size:53.250000px;}
.fsa_c00274{font-size:74.250000px;}
.fsf_c00274{font-size:75.000000px;}
.fsb_c00274{font-size:76.500000px;}
.fs4_c00274{font-size:77.250000px;}
.fs2_c00274{font-size:78.000000px;}
.fs0_c00274{font-size:78.750000px;}
.fsc_c00274{font-size:79.500000px;}
.fs3_c00274{font-size:80.250000px;}
.fs7_c00274{font-size:81.000000px;}
.fs5_c00274{font-size:81.750000px;}
.fs6_c00274{font-size:82.500000px;}
.fs11_c00274{font-size:83.250000px;}
.fs10_c00274{font-size:84.000000px;}
.fs1_c00274{font-size:84.750000px;}
.y0_c00274{bottom:0.000000px;}
.y2b_c00274{bottom:181.079940px;}
.y2c_c00274{bottom:181.080000px;}
.y2a_c00274{bottom:211.319850px;}
.y29_c00274{bottom:211.320495px;}
.y28_c00274{bottom:270.359250px;}
.y27_c00274{bottom:270.359340px;}
.y26_c00274{bottom:300.239070px;}
.y25_c00274{bottom:330.118785px;}
.y24_c00274{bottom:359.999385px;}
.y23_c00274{bottom:389.159820px;}
.y22_c00274{bottom:389.159910px;}
.y21_c00274{bottom:419.399820px;}
.y1f_c00274{bottom:449.280300px;}
.y20_c00274{bottom:449.280435px;}
.y1e_c00274{bottom:480.238785px;}
.y1d_c00274{bottom:509.760135px;}
.y1c_c00274{bottom:509.761410px;}
.y1b_c00274{bottom:568.800180px;}
.y1a_c00274{bottom:627.838950px;}
.y19_c00274{bottom:658.439670px;}
.y18_c00274{bottom:658.439715px;}
.y17_c00274{bottom:688.679625px;}
.y16_c00274{bottom:718.919535px;}
.y15_c00274{bottom:748.439205px;}
.y14_c00274{bottom:748.800105px;}
.y12_c00274{bottom:778.319775px;}
.y13_c00274{bottom:778.319820px;}
.y11_c00274{bottom:808.559685px;}
.y10_c00274{bottom:808.560585px;}
.ye_c00274{bottom:838.440165px;}
.yf_c00274{bottom:838.440315px;}
.yd_c00274{bottom:868.680090px;}
.yc_c00274{bottom:868.680270px;}
.yb_c00274{bottom:898.199805px;}
.y9_c00274{bottom:928.077555px;}
.ya_c00274{bottom:928.078770px;}
.y8_c00274{bottom:958.319565px;}
.y7_c00274{bottom:1018.439205px;}
.y6_c00274{bottom:1018.439385px;}
.y5_c00274{bottom:1047.958920px;}
.y4_c00274{bottom:1047.960570px;}
.y3_c00274{bottom:1077.840300px;}
.y2_c00274{bottom:1107.720015px;}
.y1_c00274{bottom:1137.959925px;}
.h10_c00274{height:14.361328px;}
.h9_c00274{height:53.191406px;}
.hf_c00274{height:54.755859px;}
.hb_c00274{height:55.538086px;}
.h11_c00274{height:73.608398px;}
.h5_c00274{height:75.816650px;}
.h3_c00274{height:76.552734px;}
.h1_c00274{height:77.288818px;}
.hc_c00274{height:77.440430px;}
.h13_c00274{height:77.853516px;}
.h4_c00274{height:78.760986px;}
.h14_c00274{height:79.365234px;}
.h8_c00274{height:79.497070px;}
.hd_c00274{height:79.787109px;}
.he_c00274{height:80.121094px;}
.h6_c00274{height:80.233154px;}
.h7_c00274{height:80.969238px;}
.ha_c00274{height:81.632812px;}
.h15_c00274{height:81.705322px;}
.h12_c00274{height:82.441406px;}
.h2_c00274{height:83.177490px;}
.h0_c00274{height:1263.000000px;}
.w0_c00274{width:892.500000px;}
.x0_c00274{left:0.000000px;}
.x39_c00274{left:141.480510px;}
.x11_c00274{left:142.918380px;}
.x6_c00274{left:143.997375px;}
.x1_c00274{left:145.078815px;}
.xb_c00274{left:156.238785px;}
.x38_c00274{left:163.438665px;}
.x2e_c00274{left:196.559100px;}
.xf_c00274{left:218.878950px;}
.x4_c00274{left:226.798950px;}
.x23_c00274{left:235.080000px;}
.x10_c00274{left:237.238785px;}
.x5_c00274{left:244.799535px;}
.x1c_c00274{left:248.039385px;}
.x24_c00274{left:270.359250px;}
.x2a_c00274{left:310.679700px;}
.x2b_c00274{left:327.239850px;}
.xd_c00274{left:331.559100px;}
.x7_c00274{left:333.358635px;}
.x3a_c00274{left:341.998950px;}
.xe_c00274{left:346.679100px;}
.x8_c00274{left:348.478635px;}
.x3b_c00274{left:362.519100px;}
.x9_c00274{left:375.119385px;}
.x31_c00274{left:376.559685px;}
.xc_c00274{left:391.679670px;}
.x32_c00274{left:399.238770px;}
.xa_c00274{left:406.799565px;}
.x2f_c00274{left:432.718500px;}
.x30_c00274{left:456.839535px;}
.x3c_c00274{left:464.039385px;}
.x1d_c00274{left:465.479685px;}
.x2c_c00274{left:467.638500px;}
.x12_c00274{left:480.238770px;}
.x27_c00274{left:489.958335px;}
.x13_c00274{left:493.199850px;}
.x2d_c00274{left:517.678530px;}
.x3d_c00274{left:525.959385px;}
.x28_c00274{left:527.399820px;}
.x18_c00274{left:534.599670px;}
.x1e_c00274{left:541.799520px;}
.x29_c00274{left:543.599070px;}
.x37_c00274{left:544.678530px;}
.x25_c00274{left:546.838950px;}
.x14_c00274{left:558.359850px;}
.x19_c00274{left:564.478635px;}
.x1f_c00274{left:569.878920px;}
.x15_c00274{left:572.398635px;}
.x3e_c00274{left:583.558635px;}
.x3f_c00274{left:598.678530px;}
.x33_c00274{left:624.958335px;}
.x34_c00274{left:638.998950px;}
.x20_c00274{left:659.878320px;}
.x21_c00274{left:678.599070px;}
.x40_c00274{left:686.519070px;}
.x2_c00274{left:704.158770px;}
.x16_c00274{left:705.958335px;}
.x1a_c00274{left:717.838530px;}
.x17_c00274{left:719.639700px;}
.x3_c00274{left:720.719100px;}
.x22_c00274{left:725.039985px;}
.x1b_c00274{left:736.918350px;}
.x35_c00274{left:742.318770px;}
.x26_c00274{left:760.319235px;}
.x36_c00274{left:765.719520px;}
.x41_c00274{left:774.719055px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.lsc_c00274{letter-spacing:-10.980000pt;}
.ls1c_c00274{letter-spacing:-8.670867pt;}
.ls1f_c00274{letter-spacing:-5.949600pt;}
.lsa_c00274{letter-spacing:-5.943000pt;}
.ls1_c00274{letter-spacing:-5.285000pt;}
.ls18_c00274{letter-spacing:-4.664473pt;}
.ls8_c00274{letter-spacing:-4.619300pt;}
.ls17_c00274{letter-spacing:-4.585267pt;}
.lsf_c00274{letter-spacing:-4.402000pt;}
.ls1e_c00274{letter-spacing:-4.375000pt;}
.ls9_c00274{letter-spacing:-3.961300pt;}
.ls19_c00274{letter-spacing:-3.397333pt;}
.ls6_c00274{letter-spacing:-3.304000pt;}
.ls13_c00274{letter-spacing:-2.692800pt;}
.ls4_c00274{letter-spacing:-2.639000pt;}
.ls20_c00274{letter-spacing:-2.212000pt;}
.ls2_c00274{letter-spacing:-1.981700pt;}
.ls1b_c00274{letter-spacing:-1.414000pt;}
.ls5_c00274{letter-spacing:-1.323700pt;}
.lsb_c00274{letter-spacing:-1.304667pt;}
.ls1a_c00274{letter-spacing:-0.727867pt;}
.ls3_c00274{letter-spacing:-0.658000pt;}
.ls14_c00274{letter-spacing:-0.333260pt;}
.ls7_c00274{letter-spacing:0.000000pt;}
.ls15_c00274{letter-spacing:1.386667pt;}
.ls16_c00274{letter-spacing:2.191000pt;}
.ls21_c00274{letter-spacing:3.113760pt;}
.ls1d_c00274{letter-spacing:3.435413pt;}
.ls0_c00274{letter-spacing:9.904300pt;}
.lsd_c00274{letter-spacing:10.254400pt;}
.lse_c00274{letter-spacing:11.520000pt;}
.ls10_c00274{letter-spacing:14.887467pt;}
.ls11_c00274{letter-spacing:16.640280pt;}
.ls12_c00274{letter-spacing:20.197333pt;}
.ws0_c00274{word-spacing:0.000000pt;}
._18_c00274{margin-left:-48.337285pt;}
._1a_c00274{margin-left:-10.456415pt;}
._10_c00274{margin-left:-5.654336pt;}
._12_c00274{margin-left:-3.920991pt;}
._13_c00274{margin-left:-2.958543pt;}
._9_c00274{margin-left:-1.672458pt;}
._a_c00274{width:1.711711pt;}
._14_c00274{width:2.706451pt;}
._b_c00274{width:3.887060pt;}
._c_c00274{width:4.962023pt;}
._11_c00274{width:5.985832pt;}
._4_c00274{width:7.146868pt;}
._2_c00274{width:8.525789pt;}
._d_c00274{width:9.680445pt;}
._5_c00274{width:10.733364pt;}
._7_c00274{width:11.696023pt;}
._8_c00274{width:12.754106pt;}
._1_c00274{width:13.965423pt;}
._6_c00274{width:16.681106pt;}
._3_c00274{width:18.004423pt;}
._e_c00274{width:19.793226pt;}
._f_c00274{width:20.895211pt;}
._0_c00274{width:21.853498pt;}
._16_c00274{width:23.252494pt;}
._15_c00274{width:25.373296pt;}
._17_c00274{width:27.211008pt;}
._19_c00274{width:28.288149pt;}
.fse_c00274{font-size:12.666667pt;}
.fs8_c00274{font-size:45.333333pt;}
.fsd_c00274{font-size:46.666667pt;}
.fs9_c00274{font-size:47.333333pt;}
.fsa_c00274{font-size:66.000000pt;}
.fsf_c00274{font-size:66.666667pt;}
.fsb_c00274{font-size:68.000000pt;}
.fs4_c00274{font-size:68.666667pt;}
.fs2_c00274{font-size:69.333333pt;}
.fs0_c00274{font-size:70.000000pt;}
.fsc_c00274{font-size:70.666667pt;}
.fs3_c00274{font-size:71.333333pt;}
.fs7_c00274{font-size:72.000000pt;}
.fs5_c00274{font-size:72.666667pt;}
.fs6_c00274{font-size:73.333333pt;}
.fs11_c00274{font-size:74.000000pt;}
.fs10_c00274{font-size:74.666667pt;}
.fs1_c00274{font-size:75.333333pt;}
.y0_c00274{bottom:0.000000pt;}
.y2b_c00274{bottom:160.959947pt;}
.y2c_c00274{bottom:160.960000pt;}
.y2a_c00274{bottom:187.839867pt;}
.y29_c00274{bottom:187.840440pt;}
.y28_c00274{bottom:240.319333pt;}
.y27_c00274{bottom:240.319413pt;}
.y26_c00274{bottom:266.879173pt;}
.y25_c00274{bottom:293.438920pt;}
.y24_c00274{bottom:319.999453pt;}
.y23_c00274{bottom:345.919840pt;}
.y22_c00274{bottom:345.919920pt;}
.y21_c00274{bottom:372.799840pt;}
.y1f_c00274{bottom:399.360267pt;}
.y20_c00274{bottom:399.360387pt;}
.y1e_c00274{bottom:426.878920pt;}
.y1d_c00274{bottom:453.120120pt;}
.y1c_c00274{bottom:453.121253pt;}
.y1b_c00274{bottom:505.600160pt;}
.y1a_c00274{bottom:558.079067pt;}
.y19_c00274{bottom:585.279707pt;}
.y18_c00274{bottom:585.279747pt;}
.y17_c00274{bottom:612.159667pt;}
.y16_c00274{bottom:639.039587pt;}
.y15_c00274{bottom:665.279293pt;}
.y14_c00274{bottom:665.600093pt;}
.y12_c00274{bottom:691.839800pt;}
.y13_c00274{bottom:691.839840pt;}
.y11_c00274{bottom:718.719720pt;}
.y10_c00274{bottom:718.720520pt;}
.ye_c00274{bottom:745.280147pt;}
.yf_c00274{bottom:745.280280pt;}
.yd_c00274{bottom:772.160080pt;}
.yc_c00274{bottom:772.160240pt;}
.yb_c00274{bottom:798.399827pt;}
.y9_c00274{bottom:824.957827pt;}
.ya_c00274{bottom:824.958907pt;}
.y8_c00274{bottom:851.839613pt;}
.y7_c00274{bottom:905.279293pt;}
.y6_c00274{bottom:905.279453pt;}
.y5_c00274{bottom:931.519040pt;}
.y4_c00274{bottom:931.520507pt;}
.y3_c00274{bottom:958.080267pt;}
.y2_c00274{bottom:984.640013pt;}
.y1_c00274{bottom:1011.519933pt;}
.h10_c00274{height:12.765625pt;}
.h9_c00274{height:47.281250pt;}
.hf_c00274{height:48.671875pt;}
.hb_c00274{height:49.367188pt;}
.h11_c00274{height:65.429688pt;}
.h5_c00274{height:67.392578pt;}
.h3_c00274{height:68.046875pt;}
.h1_c00274{height:68.701172pt;}
.hc_c00274{height:68.835938pt;}
.h13_c00274{height:69.203125pt;}
.h4_c00274{height:70.009766pt;}
.h14_c00274{height:70.546875pt;}
.h8_c00274{height:70.664062pt;}
.hd_c00274{height:70.921875pt;}
.he_c00274{height:71.218750pt;}
.h6_c00274{height:71.318359pt;}
.h7_c00274{height:71.972656pt;}
.ha_c00274{height:72.562500pt;}
.h15_c00274{height:72.626953pt;}
.h12_c00274{height:73.281250pt;}
.h2_c00274{height:73.935547pt;}
.h0_c00274{height:1122.666667pt;}
.w0_c00274{width:793.333333pt;}
.x0_c00274{left:0.000000pt;}
.x39_c00274{left:125.760453pt;}
.x11_c00274{left:127.038560pt;}
.x6_c00274{left:127.997667pt;}
.x1_c00274{left:128.958947pt;}
.xb_c00274{left:138.878920pt;}
.x38_c00274{left:145.278813pt;}
.x2e_c00274{left:174.719200pt;}
.xf_c00274{left:194.559067pt;}
.x4_c00274{left:201.599067pt;}
.x23_c00274{left:208.960000pt;}
.x10_c00274{left:210.878920pt;}
.x5_c00274{left:217.599587pt;}
.x1c_c00274{left:220.479453pt;}
.x24_c00274{left:240.319333pt;}
.x2a_c00274{left:276.159733pt;}
.x2b_c00274{left:290.879867pt;}
.xd_c00274{left:294.719200pt;}
.x7_c00274{left:296.318787pt;}
.x3a_c00274{left:303.999067pt;}
.xe_c00274{left:308.159200pt;}
.x8_c00274{left:309.758787pt;}
.x3b_c00274{left:322.239200pt;}
.x9_c00274{left:333.439453pt;}
.x31_c00274{left:334.719720pt;}
.xc_c00274{left:348.159707pt;}
.x32_c00274{left:354.878907pt;}
.xa_c00274{left:361.599613pt;}
.x2f_c00274{left:384.638667pt;}
.x30_c00274{left:406.079587pt;}
.x3c_c00274{left:412.479453pt;}
.x1d_c00274{left:413.759720pt;}
.x2c_c00274{left:415.678667pt;}
.x12_c00274{left:426.878907pt;}
.x27_c00274{left:435.518520pt;}
.x13_c00274{left:438.399867pt;}
.x2d_c00274{left:460.158693pt;}
.x3d_c00274{left:467.519453pt;}
.x28_c00274{left:468.799840pt;}
.x18_c00274{left:475.199707pt;}
.x1e_c00274{left:481.599573pt;}
.x29_c00274{left:483.199173pt;}
.x37_c00274{left:484.158693pt;}
.x25_c00274{left:486.079067pt;}
.x14_c00274{left:496.319867pt;}
.x19_c00274{left:501.758787pt;}
.x1f_c00274{left:506.559040pt;}
.x15_c00274{left:508.798787pt;}
.x3e_c00274{left:518.718787pt;}
.x3f_c00274{left:532.158693pt;}
.x33_c00274{left:555.518520pt;}
.x34_c00274{left:567.999067pt;}
.x20_c00274{left:586.558507pt;}
.x21_c00274{left:603.199173pt;}
.x40_c00274{left:610.239173pt;}
.x2_c00274{left:625.918907pt;}
.x16_c00274{left:627.518520pt;}
.x1a_c00274{left:638.078693pt;}
.x17_c00274{left:639.679733pt;}
.x3_c00274{left:640.639200pt;}
.x22_c00274{left:644.479987pt;}
.x1b_c00274{left:655.038533pt;}
.x35_c00274{left:659.838907pt;}
.x26_c00274{left:675.839320pt;}
.x36_c00274{left:680.639573pt;}
.x41_c00274{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48e7d12d31fd001939246862.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_ba6f3ebf593c1a8270158e08.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_b7982efd01a3e2cebeaf255d.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_f1c8a25374f7bb9d5c79aeaa.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_6fac35b99bc1caed7102ce6b.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00275;src:url('chunks/assets/font_a491b10968240f3965f9fd3c.woff2')format("woff");}.ff6_c00275{font-family:ff6_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00275;src:url('chunks/assets/font_91be43a15740be6769bea698.woff2')format("woff");}.ff7_c00275{font-family:ff7_c00275;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00275{transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00275{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m18_c00275{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.me_c00275{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m21_c00275{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1c_c00275{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.md_c00275{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m16_c00275{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.mf_c00275{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m1a_c00275{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1d_c00275{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1e_c00275{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m15_c00275{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m22_c00275{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m19_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1b_c00275{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m13_c00275{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m12_c00275{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m14_c00275{transform:matrix(0.280928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280928,0.000000,0.000000,0.250000,0,0);}
.m20_c00275{transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323718,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls13_c00275{letter-spacing:-15.081000px;}
.ls11_c00275{letter-spacing:-10.165785px;}
.ls1_c00275{letter-spacing:-10.128825px;}
.lsc_c00275{letter-spacing:-8.175038px;}
.ls6_c00275{letter-spacing:-7.426125px;}
.ls21_c00275{letter-spacing:-6.872250px;}
.ls26_c00275{letter-spacing:-6.057675px;}
.ls1a_c00275{letter-spacing:-5.945625px;}
.ls1d_c00275{letter-spacing:-5.394683px;}
.ls20_c00275{letter-spacing:-5.352675px;}
.lsa_c00275{letter-spacing:-5.296875px;}
.ls25_c00275{letter-spacing:-5.247533px;}
.ls9_c00275{letter-spacing:-5.196713px;}
.lsb_c00275{letter-spacing:-5.109375px;}
.ls7_c00275{letter-spacing:-4.456463px;}
.ls5_c00275{letter-spacing:-3.717000px;}
.ls3_c00275{letter-spacing:-2.968875px;}
.ls15_c00275{letter-spacing:-2.764125px;}
.ls18_c00275{letter-spacing:-2.335275px;}
.ls1c_c00275{letter-spacing:-2.245620px;}
.ls0_c00275{letter-spacing:-2.229413px;}
.ls1e_c00275{letter-spacing:-2.210100px;}
.ls22_c00275{letter-spacing:-1.793400px;}
.ls23_c00275{letter-spacing:-1.736865px;}
.lsd_c00275{letter-spacing:-1.553250px;}
.ls2_c00275{letter-spacing:-1.489163px;}
.ls16_c00275{letter-spacing:-1.468793px;}
.ls14_c00275{letter-spacing:-1.014750px;}
.ls19_c00275{letter-spacing:-0.802463px;}
.ls4_c00275{letter-spacing:-0.740250px;}
.ls8_c00275{letter-spacing:0.000000px;}
.ls17_c00275{letter-spacing:0.757328px;}
.ls1f_c00275{letter-spacing:1.600500px;}
.ls24_c00275{letter-spacing:1.621800px;}
.lse_c00275{letter-spacing:2.386125px;}
.ls12_c00275{letter-spacing:4.657500px;}
.ls1b_c00275{letter-spacing:5.945625px;}
.lsf_c00275{letter-spacing:32.557425px;}
.ls10_c00275{letter-spacing:37.658355px;}
.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;}
._8_c00275{margin-left:-11.452033px;}
._1b_c00275{margin-left:-8.915198px;}
._4_c00275{margin-left:-5.520375px;}
._14_c00275{margin-left:-3.935851px;}
._11_c00275{margin-left:-2.735478px;}
._5_c00275{margin-left:-1.416356px;}
._9_c00275{width:1.373043px;}
._6_c00275{width:2.664380px;}
._10_c00275{width:3.796835px;}
._2_c00275{width:5.517938px;}
._a_c00275{width:6.611553px;}
._7_c00275{width:7.882340px;}
._0_c00275{width:9.218787px;}
._12_c00275{width:10.350915px;}
._1_c00275{width:11.951546px;}
._3_c00275{width:14.082446px;}
._c_c00275{width:15.366428px;}
._16_c00275{width:16.482836px;}
._e_c00275{width:18.364173px;}
._f_c00275{width:19.984566px;}
._b_c00275{width:21.604587px;}
._13_c00275{width:22.813964px;}
._d_c00275{width:24.381773px;}
._17_c00275{width:25.701325px;}
._15_c00275{width:28.689962px;}
._18_c00275{width:30.431333px;}
._1a_c00275{width:31.555630px;}
._19_c00275{width:33.152725px;}
.fc0_c00275{color:transparent;}
.fsc_c00275{font-size:58.500000px;}
.fs9_c00275{font-size:67.500000px;}
.fs8_c00275{font-size:71.250000px;}
.fsb_c00275{font-size:72.750000px;}
.fs7_c00275{font-size:73.500000px;}
.fsa_c00275{font-size:75.750000px;}
.fs2_c00275{font-size:78.000000px;}
.fs0_c00275{font-size:78.750000px;}
.fs6_c00275{font-size:79.500000px;}
.fs4_c00275{font-size:80.250000px;}
.fs1_c00275{font-size:81.750000px;}
.fs5_c00275{font-size:82.500000px;}
.fs3_c00275{font-size:84.750000px;}
.y0_c00275{bottom:0.000000px;}
.y2d_c00275{bottom:181.079220px;}
.y2b_c00275{bottom:210.958230px;}
.y2c_c00275{bottom:210.958950px;}
.y2a_c00275{bottom:240.119385px;}
.y29_c00275{bottom:240.120210px;}
.y28_c00275{bottom:270.360120px;}
.y26_c00275{bottom:300.239070px;}
.y27_c00275{bottom:300.239850px;}
.y25_c00275{bottom:330.118785px;}
.y24_c00275{bottom:389.519070px;}
.y23_c00275{bottom:420.479235px;}
.y22_c00275{bottom:420.481245px;}
.y21_c00275{bottom:449.282205px;}
.y20_c00275{bottom:479.880495px;}
.y1f_c00275{bottom:540.000135px;}
.y1e_c00275{bottom:569.519670px;}
.y1d_c00275{bottom:569.519850px;}
.y1c_c00275{bottom:599.039385px;}
.y1b_c00275{bottom:629.279250px;}
.y1a_c00275{bottom:629.280105px;}
.y19_c00275{bottom:659.159820px;}
.y18_c00275{bottom:659.159865px;}
.y17_c00275{bottom:689.399775px;}
.y16_c00275{bottom:719.639700px;}
.y15_c00275{bottom:749.159370px;}
.y14_c00275{bottom:808.918905px;}
.y13_c00275{bottom:839.158815px;}
.y12_c00275{bottom:839.159610px;}
.y11_c00275{bottom:869.039340px;}
.y10_c00275{bottom:869.040225px;}
.ye_c00275{bottom:898.919655px;}
.yf_c00275{bottom:898.919955px;}
.yd_c00275{bottom:928.799370px;}
.yc_c00275{bottom:959.399775px;}
.yb_c00275{bottom:959.399970px;}
.ya_c00275{bottom:988.919490px;}
.y9_c00275{bottom:988.920390px;}
.y8_c00275{bottom:1018.800105px;}
.y7_c00275{bottom:1018.800300px;}
.y5_c00275{bottom:1048.319775px;}
.y6_c00275{bottom:1048.319820px;}
.y4_c00275{bottom:1078.559685px;}
.y3_c00275{bottom:1078.560450px;}
.y2_c00275{bottom:1108.440165px;}
.y1_c00275{bottom:1138.680090px;}
.h16_c00275{height:58.957031px;}
.hc_c00275{height:70.400391px;}
.hf_c00275{height:71.400146px;}
.hb_c00275{height:74.311523px;}
.he_c00275{height:74.344482px;}
.h14_c00275{height:75.875977px;}
.h3_c00275{height:76.552734px;}
.ha_c00275{height:76.658203px;}
.h11_c00275{height:77.250366px;}
.h1_c00275{height:77.288818px;}
.h13_c00275{height:78.024902px;}
.h10_c00275{height:78.721802px;}
.h5_c00275{height:78.760986px;}
.h7_c00275{height:79.365234px;}
.h9_c00275{height:80.121094px;}
.h2_c00275{height:80.233154px;}
.h8_c00275{height:80.876953px;}
.h6_c00275{height:80.969238px;}
.hd_c00275{height:81.533203px;}
.h12_c00275{height:82.388672px;}
.h15_c00275{height:83.144531px;}
.h4_c00275{height:83.177490px;}
.h0_c00275{height:1263.000000px;}
.w0_c00275{width:892.500000px;}
.x0_c00275{left:0.000000px;}
.x6_c00275{left:140.039730px;}
.x1_c00275{left:141.118815px;}
.x3b_c00275{left:142.198455px;}
.x36_c00275{left:171.358665px;}
.x19_c00275{left:195.118785px;}
.x2_c00275{left:196.918350px;}
.x11_c00275{left:202.679700px;}
.x3c_c00275{left:211.319850px;}
.x12_c00275{left:221.759535px;}
.x3_c00275{left:224.279250px;}
.x3d_c00275{left:227.878350px;}
.x2b_c00275{left:262.798515px;}
.x4_c00275{left:264.238785px;}
.x5_c00275{left:282.239250px;}
.x1a_c00275{left:289.439235px;}
.x3e_c00275{left:293.040000px;}
.xd_c00275{left:307.078785px;}
.x3f_c00275{left:309.598530px;}
.x25_c00275{left:311.399850px;}
.xe_c00275{left:321.839535px;}
.x15_c00275{left:331.918350px;}
.x16_c00275{left:345.599700px;}
.x1b_c00275{left:362.519100px;}
.x26_c00275{left:372.238785px;}
.x37_c00275{left:376.559685px;}
.x2d_c00275{left:381.958350px;}
.x27_c00275{left:387.719565px;}
.x1c_c00275{left:394.558635px;}
.x2e_c00275{left:401.399235px;}
.x28_c00275{left:403.559685px;}
.x2c_c00275{left:406.799565px;}
.x1d_c00275{left:425.159415px;}
.x1e_c00275{left:440.279250px;}
.x38_c00275{left:462.599070px;}
.x1f_c00275{left:473.038920px;}
.x39_c00275{left:478.080000px;}
.x3a_c00275{left:498.239220px;}
.x2f_c00275{left:499.318770px;}
.x9_c00275{left:513.000000px;}
.x30_c00275{left:521.999400px;}
.xa_c00275{left:528.479235px;}
.x31_c00275{left:566.279850px;}
.x13_c00275{left:576.358665px;}
.x20_c00275{left:580.679670px;}
.x14_c00275{left:591.119385px;}
.x32_c00275{left:610.919535px;}
.x21_c00275{left:612.719100px;}
.x40_c00275{left:627.479685px;}
.x17_c00275{left:628.918350px;}
.x33_c00275{left:634.318770px;}
.xf_c00275{left:640.439250px;}
.x18_c00275{left:644.039985px;}
.x10_c00275{left:655.199850px;}
.x29_c00275{left:667.080000px;}
.x22_c00275{left:679.319235px;}
.x2a_c00275{left:682.199850px;}
.xb_c00275{left:694.798560px;}
.x34_c00275{left:699.478635px;}
.xc_c00275{left:714.598530px;}
.x35_c00275{left:722.879520px;}
.x41_c00275{left:740.159820px;}
.x7_c00275{left:742.318770px;}
.x23_c00275{left:756.718545px;}
.x8_c00275{left:765.719520px;}
.x24_c00275{left:770.759130px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls13_c00275{letter-spacing:-13.405333pt;}
.ls11_c00275{letter-spacing:-9.036253pt;}
.ls1_c00275{letter-spacing:-9.003400pt;}
.lsc_c00275{letter-spacing:-7.266700pt;}
.ls6_c00275{letter-spacing:-6.601000pt;}
.ls21_c00275{letter-spacing:-6.108667pt;}
.ls26_c00275{letter-spacing:-5.384600pt;}
.ls1a_c00275{letter-spacing:-5.285000pt;}
.ls1d_c00275{letter-spacing:-4.795273pt;}
.ls20_c00275{letter-spacing:-4.757933pt;}
.lsa_c00275{letter-spacing:-4.708333pt;}
.ls25_c00275{letter-spacing:-4.664473pt;}
.ls9_c00275{letter-spacing:-4.619300pt;}
.lsb_c00275{letter-spacing:-4.541667pt;}
.ls7_c00275{letter-spacing:-3.961300pt;}
.ls5_c00275{letter-spacing:-3.304000pt;}
.ls3_c00275{letter-spacing:-2.639000pt;}
.ls15_c00275{letter-spacing:-2.457000pt;}
.ls18_c00275{letter-spacing:-2.075800pt;}
.ls1c_c00275{letter-spacing:-1.996107pt;}
.ls0_c00275{letter-spacing:-1.981700pt;}
.ls1e_c00275{letter-spacing:-1.964533pt;}
.ls22_c00275{letter-spacing:-1.594133pt;}
.ls23_c00275{letter-spacing:-1.543880pt;}
.lsd_c00275{letter-spacing:-1.380667pt;}
.ls2_c00275{letter-spacing:-1.323700pt;}
.ls16_c00275{letter-spacing:-1.305593pt;}
.ls14_c00275{letter-spacing:-0.902000pt;}
.ls19_c00275{letter-spacing:-0.713300pt;}
.ls4_c00275{letter-spacing:-0.658000pt;}
.ls8_c00275{letter-spacing:0.000000pt;}
.ls17_c00275{letter-spacing:0.673180pt;}
.ls1f_c00275{letter-spacing:1.422667pt;}
.ls24_c00275{letter-spacing:1.441600pt;}
.lse_c00275{letter-spacing:2.121000pt;}
.ls12_c00275{letter-spacing:4.140000pt;}
.ls1b_c00275{letter-spacing:5.285000pt;}
.lsf_c00275{letter-spacing:28.939933pt;}
.ls10_c00275{letter-spacing:33.474093pt;}
.ws0_c00275{word-spacing:0.000000pt;}
._8_c00275{margin-left:-10.179585pt;}
._1b_c00275{margin-left:-7.924621pt;}
._4_c00275{margin-left:-4.907000pt;}
._14_c00275{margin-left:-3.498534pt;}
._11_c00275{margin-left:-2.431536pt;}
._5_c00275{margin-left:-1.258983pt;}
._9_c00275{width:1.220483pt;}
._6_c00275{width:2.368338pt;}
._10_c00275{width:3.374964pt;}
._2_c00275{width:4.904834pt;}
._a_c00275{width:5.876936pt;}
._7_c00275{width:7.006525pt;}
._0_c00275{width:8.194477pt;}
._12_c00275{width:9.200813pt;}
._1_c00275{width:10.623596pt;}
._3_c00275{width:12.517730pt;}
._c_c00275{width:13.659047pt;}
._16_c00275{width:14.651409pt;}
._e_c00275{width:16.323709pt;}
._f_c00275{width:17.764058pt;}
._b_c00275{width:19.204077pt;}
._13_c00275{width:20.279079pt;}
._d_c00275{width:21.672687pt;}
._17_c00275{width:22.845623pt;}
._15_c00275{width:25.502189pt;}
._18_c00275{width:27.050074pt;}
._1a_c00275{width:28.049449pt;}
._19_c00275{width:29.469089pt;}
.fsc_c00275{font-size:52.000000pt;}
.fs9_c00275{font-size:60.000000pt;}
.fs8_c00275{font-size:63.333333pt;}
.fsb_c00275{font-size:64.666667pt;}
.fs7_c00275{font-size:65.333333pt;}
.fsa_c00275{font-size:67.333333pt;}
.fs2_c00275{font-size:69.333333pt;}
.fs0_c00275{font-size:70.000000pt;}
.fs6_c00275{font-size:70.666667pt;}
.fs4_c00275{font-size:71.333333pt;}
.fs1_c00275{font-size:72.666667pt;}
.fs5_c00275{font-size:73.333333pt;}
.fs3_c00275{font-size:75.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y2d_c00275{bottom:160.959307pt;}
.y2b_c00275{bottom:187.518427pt;}
.y2c_c00275{bottom:187.519067pt;}
.y2a_c00275{bottom:213.439453pt;}
.y29_c00275{bottom:213.440187pt;}
.y28_c00275{bottom:240.320107pt;}
.y26_c00275{bottom:266.879173pt;}
.y27_c00275{bottom:266.879867pt;}
.y25_c00275{bottom:293.438920pt;}
.y24_c00275{bottom:346.239173pt;}
.y23_c00275{bottom:373.759320pt;}
.y22_c00275{bottom:373.761107pt;}
.y21_c00275{bottom:399.361960pt;}
.y20_c00275{bottom:426.560440pt;}
.y1f_c00275{bottom:480.000120pt;}
.y1e_c00275{bottom:506.239707pt;}
.y1d_c00275{bottom:506.239867pt;}
.y1c_c00275{bottom:532.479453pt;}
.y1b_c00275{bottom:559.359333pt;}
.y1a_c00275{bottom:559.360093pt;}
.y19_c00275{bottom:585.919840pt;}
.y18_c00275{bottom:585.919880pt;}
.y17_c00275{bottom:612.799800pt;}
.y16_c00275{bottom:639.679733pt;}
.y15_c00275{bottom:665.919440pt;}
.y14_c00275{bottom:719.039027pt;}
.y13_c00275{bottom:745.918947pt;}
.y12_c00275{bottom:745.919653pt;}
.y11_c00275{bottom:772.479413pt;}
.y10_c00275{bottom:772.480200pt;}
.ye_c00275{bottom:799.039693pt;}
.yf_c00275{bottom:799.039960pt;}
.yd_c00275{bottom:825.599440pt;}
.yc_c00275{bottom:852.799800pt;}
.yb_c00275{bottom:852.799973pt;}
.ya_c00275{bottom:879.039547pt;}
.y9_c00275{bottom:879.040347pt;}
.y8_c00275{bottom:905.600093pt;}
.y7_c00275{bottom:905.600267pt;}
.y5_c00275{bottom:931.839800pt;}
.y6_c00275{bottom:931.839840pt;}
.y4_c00275{bottom:958.719720pt;}
.y3_c00275{bottom:958.720400pt;}
.y2_c00275{bottom:985.280147pt;}
.y1_c00275{bottom:1012.160080pt;}
.h16_c00275{height:52.406250pt;}
.hc_c00275{height:62.578125pt;}
.hf_c00275{height:63.466797pt;}
.hb_c00275{height:66.054688pt;}
.he_c00275{height:66.083984pt;}
.h14_c00275{height:67.445312pt;}
.h3_c00275{height:68.046875pt;}
.ha_c00275{height:68.140625pt;}
.h11_c00275{height:68.666992pt;}
.h1_c00275{height:68.701172pt;}
.h13_c00275{height:69.355469pt;}
.h10_c00275{height:69.974935pt;}
.h5_c00275{height:70.009766pt;}
.h7_c00275{height:70.546875pt;}
.h9_c00275{height:71.218750pt;}
.h2_c00275{height:71.318359pt;}
.h8_c00275{height:71.890625pt;}
.h6_c00275{height:71.972656pt;}
.hd_c00275{height:72.473958pt;}
.h12_c00275{height:73.234375pt;}
.h15_c00275{height:73.906250pt;}
.h4_c00275{height:73.935547pt;}
.h0_c00275{height:1122.666667pt;}
.w0_c00275{width:793.333333pt;}
.x0_c00275{left:0.000000pt;}
.x6_c00275{left:124.479760pt;}
.x1_c00275{left:125.438947pt;}
.x3b_c00275{left:126.398627pt;}
.x36_c00275{left:152.318813pt;}
.x19_c00275{left:173.438920pt;}
.x2_c00275{left:175.038533pt;}
.x11_c00275{left:180.159733pt;}
.x3c_c00275{left:187.839867pt;}
.x12_c00275{left:197.119587pt;}
.x3_c00275{left:199.359333pt;}
.x3d_c00275{left:202.558533pt;}
.x2b_c00275{left:233.598680pt;}
.x4_c00275{left:234.878920pt;}
.x5_c00275{left:250.879333pt;}
.x1a_c00275{left:257.279320pt;}
.x3e_c00275{left:260.480000pt;}
.xd_c00275{left:272.958920pt;}
.x3f_c00275{left:275.198693pt;}
.x25_c00275{left:276.799867pt;}
.xe_c00275{left:286.079587pt;}
.x15_c00275{left:295.038533pt;}
.x16_c00275{left:307.199733pt;}
.x1b_c00275{left:322.239200pt;}
.x26_c00275{left:330.878920pt;}
.x37_c00275{left:334.719720pt;}
.x2d_c00275{left:339.518533pt;}
.x27_c00275{left:344.639613pt;}
.x1c_c00275{left:350.718787pt;}
.x2e_c00275{left:356.799320pt;}
.x28_c00275{left:358.719720pt;}
.x2c_c00275{left:361.599613pt;}
.x1d_c00275{left:377.919480pt;}
.x1e_c00275{left:391.359333pt;}
.x38_c00275{left:411.199173pt;}
.x1f_c00275{left:420.479040pt;}
.x39_c00275{left:424.960000pt;}
.x3a_c00275{left:442.879307pt;}
.x2f_c00275{left:443.838907pt;}
.x9_c00275{left:456.000000pt;}
.x30_c00275{left:463.999467pt;}
.xa_c00275{left:469.759320pt;}
.x31_c00275{left:503.359867pt;}
.x13_c00275{left:512.318813pt;}
.x20_c00275{left:516.159707pt;}
.x14_c00275{left:525.439453pt;}
.x32_c00275{left:543.039587pt;}
.x21_c00275{left:544.639200pt;}
.x40_c00275{left:557.759720pt;}
.x17_c00275{left:559.038533pt;}
.x33_c00275{left:563.838907pt;}
.xf_c00275{left:569.279333pt;}
.x18_c00275{left:572.479987pt;}
.x10_c00275{left:582.399867pt;}
.x29_c00275{left:592.960000pt;}
.x22_c00275{left:603.839320pt;}
.x2a_c00275{left:606.399867pt;}
.xb_c00275{left:617.598720pt;}
.x34_c00275{left:621.758787pt;}
.xc_c00275{left:635.198693pt;}
.x35_c00275{left:642.559573pt;}
.x41_c00275{left:657.919840pt;}
.x7_c00275{left:659.838907pt;}
.x23_c00275{left:672.638707pt;}
.x8_c00275{left:680.639573pt;}
.x24_c00275{left:685.119227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5fee3b9528657dd2b72dcadb.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_05201903f03787652c9a4028.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.311035;font-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_c00276{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.212112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212112,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m16_c00276{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m14_c00276{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{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);}
.m8_c00276{transform:matrix(0.576087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576087,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls1f_c00276{letter-spacing:-18.886950px;}
.lse_c00276{letter-spacing:-16.681050px;}
.ls23_c00276{letter-spacing:-14.866500px;}
.ls24_c00276{letter-spacing:-14.594850px;}
.ls13_c00276{letter-spacing:-12.803018px;}
.lsd_c00276{letter-spacing:-12.687675px;}
.ls20_c00276{letter-spacing:-10.214100px;}
.ls12_c00276{letter-spacing:-8.914500px;}
.lsa_c00276{letter-spacing:-8.175038px;}
.ls10_c00276{letter-spacing:-7.426125px;}
.ls1c_c00276{letter-spacing:-7.283925px;}
.ls9_c00276{letter-spacing:-7.028100px;}
.ls15_c00276{letter-spacing:-7.002158px;}
.ls22_c00276{letter-spacing:-6.685875px;}
.ls7_c00276{letter-spacing:-5.945625px;}
.lsc_c00276{letter-spacing:-5.577000px;}
.ls1e_c00276{letter-spacing:-5.252625px;}
.ls14_c00276{letter-spacing:-5.199600px;}
.ls8_c00276{letter-spacing:-5.196713px;}
.lsf_c00276{letter-spacing:-4.456463px;}
.ls21_c00276{letter-spacing:-4.410975px;}
.ls11_c00276{letter-spacing:-4.334498px;}
.ls1d_c00276{letter-spacing:-3.749288px;}
.ls4_c00276{letter-spacing:-3.717000px;}
.ls19_c00276{letter-spacing:-3.335400px;}
.ls17_c00276{letter-spacing:-3.283875px;}
.ls16_c00276{letter-spacing:-3.204600px;}
.ls6_c00276{letter-spacing:-2.968875px;}
.ls2_c00276{letter-spacing:-2.229413px;}
.ls18_c00276{letter-spacing:-1.667700px;}
.ls3_c00276{letter-spacing:-1.489163px;}
.ls1a_c00276{letter-spacing:-0.833033px;}
.ls5_c00276{letter-spacing:-0.740250px;}
.lsb_c00276{letter-spacing:0.000000px;}
.ls1b_c00276{letter-spacing:0.849420px;}
.ls0_c00276{letter-spacing:2.229413px;}
.ls1_c00276{letter-spacing:5.196713px;}
.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;}
._7_c00276{margin-left:-16.358307px;}
._1a_c00276{margin-left:-9.655760px;}
._b_c00276{margin-left:-6.884637px;}
._c_c00276{margin-left:-5.664354px;}
._5_c00276{margin-left:-4.301860px;}
._14_c00276{margin-left:-2.915503px;}
._a_c00276{margin-left:-1.231784px;}
._1_c00276{width:1.077835px;}
._0_c00276{width:2.995992px;}
._2_c00276{width:4.948130px;}
._6_c00276{width:6.094775px;}
._12_c00276{width:7.617443px;}
._4_c00276{width:9.199367px;}
._3_c00276{width:10.347334px;}
._8_c00276{width:11.496965px;}
._13_c00276{width:13.041000px;}
._e_c00276{width:14.320524px;}
._9_c00276{width:15.763685px;}
._1c_c00276{width:17.180293px;}
._10_c00276{width:18.596917px;}
._f_c00276{width:20.523766px;}
._d_c00276{width:22.900441px;}
._17_c00276{width:24.406126px;}
._11_c00276{width:25.502786px;}
._1b_c00276{width:27.485979px;}
._16_c00276{width:28.740184px;}
._19_c00276{width:31.066518px;}
._15_c00276{width:32.128306px;}
._18_c00276{width:33.158297px;}
.fc0_c00276{color:transparent;}
.fs6_c00276{font-size:34.500000px;}
.fs7_c00276{font-size:77.250000px;}
.fsa_c00276{font-size:78.000000px;}
.fs0_c00276{font-size:78.750000px;}
.fsd_c00276{font-size:79.500000px;}
.fs5_c00276{font-size:80.250000px;}
.fsb_c00276{font-size:80.947200px;}
.fsc_c00276{font-size:81.000000px;}
.fs3_c00276{font-size:81.750000px;}
.fs4_c00276{font-size:82.500000px;}
.fs8_c00276{font-size:83.250000px;}
.fs9_c00276{font-size:84.000000px;}
.fs2_c00276{font-size:84.750000px;}
.fs1_c00276{font-size:85.500000px;}
.y0_c00276{bottom:0.000000px;}
.y2a_c00276{bottom:187.559685px;}
.y29_c00276{bottom:187.559805px;}
.y28_c00276{bottom:217.439535px;}
.y27_c00276{bottom:247.319250px;}
.y26_c00276{bottom:247.319415px;}
.y25_c00276{bottom:276.838950px;}
.y24_c00276{bottom:336.239505px;}
.y23_c00276{bottom:366.119220px;}
.y22_c00276{bottom:395.998950px;}
.y21_c00276{bottom:426.599670px;}
.y1f_c00276{bottom:456.478140px;}
.y20_c00276{bottom:456.478635px;}
.y1d_c00276{bottom:486.719565px;}
.y1e_c00276{bottom:486.720150px;}
.y1c_c00276{bottom:516.599280px;}
.y1b_c00276{bottom:546.479010px;}
.y1a_c00276{bottom:575.640150px;}
.y19_c00276{bottom:635.400780px;}
.y18_c00276{bottom:665.820030px;}
.y16_c00276{bottom:695.518110px;}
.y17_c00276{bottom:695.518620px;}
.y15_c00276{bottom:725.760135px;}
.y12_c00276{bottom:754.918905px;}
.y13_c00276{bottom:754.918950px;}
.y14_c00276{bottom:755.279850px;}
.y10_c00276{bottom:785.158170px;}
.y11_c00276{bottom:785.158815px;}
.yf_c00276{bottom:815.398080px;}
.ye_c00276{bottom:845.640105px;}
.yd_c00276{bottom:875.519070px;}
.yc_c00276{bottom:875.519115px;}
.yb_c00276{bottom:905.759040px;}
.ya_c00276{bottom:905.759925px;}
.y9_c00276{bottom:935.639655px;}
.y8_c00276{bottom:935.640675px;}
.y7_c00276{bottom:965.880585px;}
.y6_c00276{bottom:995.400120px;}
.y5_c00276{bottom:1025.279850px;}
.y4_c00276{bottom:1025.280735px;}
.y3_c00276{bottom:1085.040180px;}
.y2_c00276{bottom:1114.919910px;}
.y1_c00276{bottom:1145.159820px;}
.h8_c00276{height:35.982422px;}
.h9_c00276{height:75.816650px;}
.h1_c00276{height:77.288818px;}
.h12_c00276{height:78.024902px;}
.hf_c00276{height:78.609375px;}
.h6_c00276{height:78.760986px;}
.he_c00276{height:79.365234px;}
.h4_c00276{height:80.233154px;}
.h5_c00276{height:80.969238px;}
.h7_c00276{height:81.533203px;}
.h10_c00276{height:81.579600px;}
.h11_c00276{height:81.632812px;}
.ha_c00276{height:82.274414px;}
.hd_c00276{height:82.388672px;}
.h3_c00276{height:83.177490px;}
.hc_c00276{height:83.900391px;}
.h2_c00276{height:84.498047px;}
.hb_c00276{height:84.656250px;}
.h0_c00276{height:1263.000000px;}
.w0_c00276{width:892.500000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:137.515830px;}
.x1_c00276{left:138.599100px;}
.x15_c00276{left:154.080000px;}
.x1c_c00276{left:162.718500px;}
.x34_c00276{left:164.878950px;}
.x10_c00276{left:172.798950px;}
.x21_c00276{left:183.238785px;}
.x22_c00276{left:205.199385px;}
.x23_c00276{left:223.559100px;}
.x11_c00276{left:238.679100px;}
.x12_c00276{left:257.759100px;}
.x35_c00276{left:272.878950px;}
.x24_c00276{left:282.959400px;}
.x9_c00276{left:286.558635px;}
.x13_c00276{left:289.080000px;}
.x2d_c00276{left:293.040000px;}
.x36_c00276{left:294.478635px;}
.xa_c00276{left:303.118785px;}
.x7_c00276{left:320.399235px;}
.x14_c00276{left:325.799535px;}
.x5_c00276{left:332.279250px;}
.x8_c00276{left:335.519100px;}
.x6_c00276{left:347.399235px;}
.x37_c00276{left:381.958350px;}
.x2e_c00276{left:384.118785px;}
.x18_c00276{left:391.318770px;}
.x25_c00276{left:399.238770px;}
.x38_c00276{left:401.399235px;}
.x19_c00276{left:406.438665px;}
.x26_c00276{left:412.559100px;}
.x27_c00276{left:430.918950px;}
.xb_c00276{left:433.438665px;}
.xc_c00276{left:450.359850px;}
.xe_c00276{left:469.439670px;}
.x1f_c00276{left:473.759085px;}
.xf_c00276{left:484.198785px;}
.x20_c00276{left:488.519670px;}
.x28_c00276{left:501.479235px;}
.x2f_c00276{left:503.998950px;}
.x30_c00276{left:518.759535px;}
.x29_c00276{left:528.119985px;}
.x1d_c00276{left:544.319235px;}
.x1e_c00276{left:558.719100px;}
.x3_c00276{left:570.599070px;}
.x39_c00276{left:574.918350px;}
.x4_c00276{left:591.119385px;}
.x16_c00276{left:593.279850px;}
.x17_c00276{left:610.558635px;}
.x2a_c00276{left:655.918350px;}
.x1a_c00276{left:668.879520px;}
.x2b_c00276{left:675.359250px;}
.x31_c00276{left:680.398635px;}
.x1b_c00276{left:688.679670px;}
.x32_c00276{left:695.159370px;}
.x33_c00276{left:719.998950px;}
.x2c_c00276{left:755.279850px;}
.xd_c00276{left:765.719520px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls1f_c00276{letter-spacing:-16.788400pt;}
.lse_c00276{letter-spacing:-14.827600pt;}
.ls23_c00276{letter-spacing:-13.214667pt;}
.ls24_c00276{letter-spacing:-12.973200pt;}
.ls13_c00276{letter-spacing:-11.380460pt;}
.lsd_c00276{letter-spacing:-11.277933pt;}
.ls20_c00276{letter-spacing:-9.079200pt;}
.ls12_c00276{letter-spacing:-7.924000pt;}
.lsa_c00276{letter-spacing:-7.266700pt;}
.ls10_c00276{letter-spacing:-6.601000pt;}
.ls1c_c00276{letter-spacing:-6.474600pt;}
.ls9_c00276{letter-spacing:-6.247200pt;}
.ls15_c00276{letter-spacing:-6.224140pt;}
.ls22_c00276{letter-spacing:-5.943000pt;}
.ls7_c00276{letter-spacing:-5.285000pt;}
.lsc_c00276{letter-spacing:-4.957333pt;}
.ls1e_c00276{letter-spacing:-4.669000pt;}
.ls14_c00276{letter-spacing:-4.621867pt;}
.ls8_c00276{letter-spacing:-4.619300pt;}
.lsf_c00276{letter-spacing:-3.961300pt;}
.ls21_c00276{letter-spacing:-3.920867pt;}
.ls11_c00276{letter-spacing:-3.852887pt;}
.ls1d_c00276{letter-spacing:-3.332700pt;}
.ls4_c00276{letter-spacing:-3.304000pt;}
.ls19_c00276{letter-spacing:-2.964800pt;}
.ls17_c00276{letter-spacing:-2.919000pt;}
.ls16_c00276{letter-spacing:-2.848533pt;}
.ls6_c00276{letter-spacing:-2.639000pt;}
.ls2_c00276{letter-spacing:-1.981700pt;}
.ls18_c00276{letter-spacing:-1.482400pt;}
.ls3_c00276{letter-spacing:-1.323700pt;}
.ls1a_c00276{letter-spacing:-0.740473pt;}
.ls5_c00276{letter-spacing:-0.658000pt;}
.lsb_c00276{letter-spacing:0.000000pt;}
.ls1b_c00276{letter-spacing:0.755040pt;}
.ls0_c00276{letter-spacing:1.981700pt;}
.ls1_c00276{letter-spacing:4.619300pt;}
.ws0_c00276{word-spacing:0.000000pt;}
._7_c00276{margin-left:-14.540717pt;}
._1a_c00276{margin-left:-8.582898pt;}
._b_c00276{margin-left:-6.119677pt;}
._c_c00276{margin-left:-5.034981pt;}
._5_c00276{margin-left:-3.823875pt;}
._14_c00276{margin-left:-2.591558pt;}
._a_c00276{margin-left:-1.094919pt;}
._1_c00276{width:0.958075pt;}
._0_c00276{width:2.663104pt;}
._2_c00276{width:4.398338pt;}
._6_c00276{width:5.417577pt;}
._12_c00276{width:6.771060pt;}
._4_c00276{width:8.177215pt;}
._3_c00276{width:9.197630pt;}
._8_c00276{width:10.219525pt;}
._13_c00276{width:11.592000pt;}
._e_c00276{width:12.729355pt;}
._9_c00276{width:14.012164pt;}
._1c_c00276{width:15.271372pt;}
._10_c00276{width:16.530592pt;}
._f_c00276{width:18.243347pt;}
._d_c00276{width:20.355947pt;}
._17_c00276{width:21.694334pt;}
._11_c00276{width:22.669143pt;}
._1b_c00276{width:24.431981pt;}
._16_c00276{width:25.546830pt;}
._19_c00276{width:27.614683pt;}
._15_c00276{width:28.558494pt;}
._18_c00276{width:29.474042pt;}
.fs6_c00276{font-size:30.666667pt;}
.fs7_c00276{font-size:68.666667pt;}
.fsa_c00276{font-size:69.333333pt;}
.fs0_c00276{font-size:70.000000pt;}
.fsd_c00276{font-size:70.666667pt;}
.fs5_c00276{font-size:71.333333pt;}
.fsb_c00276{font-size:71.953067pt;}
.fsc_c00276{font-size:72.000000pt;}
.fs3_c00276{font-size:72.666667pt;}
.fs4_c00276{font-size:73.333333pt;}
.fs8_c00276{font-size:74.000000pt;}
.fs9_c00276{font-size:74.666667pt;}
.fs2_c00276{font-size:75.333333pt;}
.fs1_c00276{font-size:76.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y2a_c00276{bottom:166.719720pt;}
.y29_c00276{bottom:166.719827pt;}
.y28_c00276{bottom:193.279587pt;}
.y27_c00276{bottom:219.839333pt;}
.y26_c00276{bottom:219.839480pt;}
.y25_c00276{bottom:246.079067pt;}
.y24_c00276{bottom:298.879560pt;}
.y23_c00276{bottom:325.439307pt;}
.y22_c00276{bottom:351.999067pt;}
.y21_c00276{bottom:379.199707pt;}
.y1f_c00276{bottom:405.758347pt;}
.y20_c00276{bottom:405.758787pt;}
.y1d_c00276{bottom:432.639613pt;}
.y1e_c00276{bottom:432.640133pt;}
.y1c_c00276{bottom:459.199360pt;}
.y1b_c00276{bottom:485.759120pt;}
.y1a_c00276{bottom:511.680133pt;}
.y19_c00276{bottom:564.800693pt;}
.y18_c00276{bottom:591.840027pt;}
.y16_c00276{bottom:618.238320pt;}
.y17_c00276{bottom:618.238773pt;}
.y15_c00276{bottom:645.120120pt;}
.y12_c00276{bottom:671.039027pt;}
.y13_c00276{bottom:671.039067pt;}
.y14_c00276{bottom:671.359867pt;}
.y10_c00276{bottom:697.918373pt;}
.y11_c00276{bottom:697.918947pt;}
.yf_c00276{bottom:724.798293pt;}
.ye_c00276{bottom:751.680093pt;}
.yd_c00276{bottom:778.239173pt;}
.yc_c00276{bottom:778.239213pt;}
.yb_c00276{bottom:805.119147pt;}
.ya_c00276{bottom:805.119933pt;}
.y9_c00276{bottom:831.679693pt;}
.y8_c00276{bottom:831.680600pt;}
.y7_c00276{bottom:858.560520pt;}
.y6_c00276{bottom:884.800107pt;}
.y5_c00276{bottom:911.359867pt;}
.y4_c00276{bottom:911.360653pt;}
.y3_c00276{bottom:964.480160pt;}
.y2_c00276{bottom:991.039920pt;}
.y1_c00276{bottom:1017.919840pt;}
.h8_c00276{height:31.984375pt;}
.h9_c00276{height:67.392578pt;}
.h1_c00276{height:68.701172pt;}
.h12_c00276{height:69.355469pt;}
.hf_c00276{height:69.875000pt;}
.h6_c00276{height:70.009766pt;}
.he_c00276{height:70.546875pt;}
.h4_c00276{height:71.318359pt;}
.h5_c00276{height:71.972656pt;}
.h7_c00276{height:72.473958pt;}
.h10_c00276{height:72.515200pt;}
.h11_c00276{height:72.562500pt;}
.ha_c00276{height:73.132813pt;}
.hd_c00276{height:73.234375pt;}
.h3_c00276{height:73.935547pt;}
.hc_c00276{height:74.578125pt;}
.h2_c00276{height:75.109375pt;}
.hb_c00276{height:75.250000pt;}
.h0_c00276{height:1122.666667pt;}
.w0_c00276{width:793.333333pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:122.236293pt;}
.x1_c00276{left:123.199200pt;}
.x15_c00276{left:136.960000pt;}
.x1c_c00276{left:144.638667pt;}
.x34_c00276{left:146.559067pt;}
.x10_c00276{left:153.599067pt;}
.x21_c00276{left:162.878920pt;}
.x22_c00276{left:182.399453pt;}
.x23_c00276{left:198.719200pt;}
.x11_c00276{left:212.159200pt;}
.x12_c00276{left:229.119200pt;}
.x35_c00276{left:242.559067pt;}
.x24_c00276{left:251.519467pt;}
.x9_c00276{left:254.718787pt;}
.x13_c00276{left:256.960000pt;}
.x2d_c00276{left:260.480000pt;}
.x36_c00276{left:261.758787pt;}
.xa_c00276{left:269.438920pt;}
.x7_c00276{left:284.799320pt;}
.x14_c00276{left:289.599587pt;}
.x5_c00276{left:295.359333pt;}
.x8_c00276{left:298.239200pt;}
.x6_c00276{left:308.799320pt;}
.x37_c00276{left:339.518533pt;}
.x2e_c00276{left:341.438920pt;}
.x18_c00276{left:347.838907pt;}
.x25_c00276{left:354.878907pt;}
.x38_c00276{left:356.799320pt;}
.x19_c00276{left:361.278813pt;}
.x26_c00276{left:366.719200pt;}
.x27_c00276{left:383.039067pt;}
.xb_c00276{left:385.278813pt;}
.xc_c00276{left:400.319867pt;}
.xe_c00276{left:417.279707pt;}
.x1f_c00276{left:421.119187pt;}
.xf_c00276{left:430.398920pt;}
.x20_c00276{left:434.239707pt;}
.x28_c00276{left:445.759320pt;}
.x2f_c00276{left:447.999067pt;}
.x30_c00276{left:461.119587pt;}
.x29_c00276{left:469.439987pt;}
.x1d_c00276{left:483.839320pt;}
.x1e_c00276{left:496.639200pt;}
.x3_c00276{left:507.199173pt;}
.x39_c00276{left:511.038533pt;}
.x4_c00276{left:525.439453pt;}
.x16_c00276{left:527.359867pt;}
.x17_c00276{left:542.718787pt;}
.x2a_c00276{left:583.038533pt;}
.x1a_c00276{left:594.559573pt;}
.x2b_c00276{left:600.319333pt;}
.x31_c00276{left:604.798787pt;}
.x1b_c00276{left:612.159707pt;}
.x32_c00276{left:617.919440pt;}
.x33_c00276{left:639.999067pt;}
.x2c_c00276{left:671.359867pt;}
.xd_c00276{left:680.639573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73fdca59b0891ab3e74b5fc8.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_c75a738899824d108a7eaed3.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_fe123b0b74b269d2d8f642f5.woff2')format("woff");}.ff3_c00277{font-family:ff3_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;}
.m4_c00277{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.lsd_c00277{letter-spacing:-14.963213px;}
.lsb_c00277{letter-spacing:-8.914500px;}
.lse_c00277{letter-spacing:-8.175038px;}
.ls13_c00277{letter-spacing:-7.609650px;}
.ls12_c00277{letter-spacing:-7.005158px;}
.lsf_c00277{letter-spacing:-6.693300px;}
.ls8_c00277{letter-spacing:-5.945625px;}
.lsa_c00277{letter-spacing:-5.203125px;}
.ls3_c00277{letter-spacing:-5.196713px;}
.ls10_c00277{letter-spacing:-4.719503px;}
.lsc_c00277{letter-spacing:-4.456463px;}
.ls11_c00277{letter-spacing:-3.913950px;}
.ls7_c00277{letter-spacing:-3.717000px;}
.ls2_c00277{letter-spacing:-2.968875px;}
.ls1_c00277{letter-spacing:-2.229413px;}
.ls4_c00277{letter-spacing:-1.664040px;}
.ls5_c00277{letter-spacing:-1.489163px;}
.ls15_c00277{letter-spacing:-0.771750px;}
.ls9_c00277{letter-spacing:-0.740250px;}
.ls6_c00277{letter-spacing:0.000000px;}
.ls14_c00277{letter-spacing:1.605900px;}
.ls0_c00277{letter-spacing:2.968875px;}
.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;}
._11_c00277{margin-left:-10.976012px;}
._5_c00277{margin-left:-6.000631px;}
._15_c00277{margin-left:-2.225817px;}
._b_c00277{width:1.420591px;}
._14_c00277{width:2.949381px;}
._a_c00277{width:4.228192px;}
._3_c00277{width:5.380467px;}
._6_c00277{width:6.481675px;}
._0_c00277{width:7.640072px;}
._2_c00277{width:8.757000px;}
._7_c00277{width:9.889588px;}
._4_c00277{width:11.323864px;}
._1_c00277{width:12.489483px;}
._9_c00277{width:14.300881px;}
._13_c00277{width:16.133468px;}
._f_c00277{width:18.203984px;}
._8_c00277{width:19.728584px;}
._d_c00277{width:21.574647px;}
._e_c00277{width:25.041861px;}
._c_c00277{width:27.173624px;}
._10_c00277{width:28.768727px;}
._12_c00277{width:30.058281px;}
.fc0_c00277{color:transparent;}
.fs5_c00277{font-size:71.250000px;}
.fs6_c00277{font-size:72.750000px;}
.fs0_c00277{font-size:78.750000px;}
.fs8_c00277{font-size:79.500000px;}
.fs2_c00277{font-size:80.250000px;}
.fs7_c00277{font-size:81.750000px;}
.fs4_c00277{font-size:82.500000px;}
.fs3_c00277{font-size:83.250000px;}
.fs1_c00277{font-size:84.000000px;}
.y0_c00277{bottom:0.000000px;}
.y11_c00277{bottom:754.559685px;}
.y10_c00277{bottom:783.720150px;}
.yf_c00277{bottom:813.599880px;}
.ye_c00277{bottom:843.839790px;}
.yd_c00277{bottom:873.719520px;}
.yc_c00277{bottom:873.721320px;}
.yb_c00277{bottom:904.319625px;}
.ya_c00277{bottom:934.199340px;}
.y9_c00277{bottom:934.201485px;}
.y8_c00277{bottom:964.081215px;}
.y7_c00277{bottom:993.600750px;}
.y6_c00277{bottom:1023.120270px;}
.y4_c00277{bottom:1052.999520px;}
.y5_c00277{bottom:1053.000000px;}
.y2_c00277{bottom:1113.479595px;}
.y3_c00277{bottom:1113.479640px;}
.y1_c00277{bottom:1143.719520px;}
.h6_c00277{height:74.311523px;}
.h8_c00277{height:75.875977px;}
.h1_c00277{height:77.288818px;}
.ha_c00277{height:78.024902px;}
.h3_c00277{height:78.760986px;}
.h7_c00277{height:80.876953px;}
.h5_c00277{height:80.969238px;}
.h4_c00277{height:81.705322px;}
.h9_c00277{height:82.388672px;}
.h2_c00277{height:82.441406px;}
.h0_c00277{height:1263.000000px;}
.w0_c00277{width:892.500000px;}
.x0_c00277{left:0.000000px;}
.x8_c00277{left:137.877735px;}
.x1_c00277{left:138.958350px;}
.x11_c00277{left:235.439250px;}
.xd_c00277{left:295.198785px;}
.x4_c00277{left:300.958350px;}
.x12_c00277{left:309.959385px;}
.x5_c00277{left:316.080000px;}
.xe_c00277{left:318.958950px;}
.x13_c00277{left:332.999385px;}
.x14_c00277{left:352.799535px;}
.x2_c00277{left:362.878350px;}
.x3_c00277{left:402.839535px;}
.x15_c00277{left:412.918350px;}
.x16_c00277{left:435.599070px;}
.x6_c00277{left:440.999400px;}
.x7_c00277{left:462.599070px;}
.xb_c00277{left:509.758530px;}
.xc_c00277{left:537.119385px;}
.xf_c00277{left:702.359250px;}
.x10_c00277{left:720.359850px;}
.x9_c00277{left:745.919535px;}
.xa_c00277{left:762.838950px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.lsd_c00277{letter-spacing:-13.300633pt;}
.lsb_c00277{letter-spacing:-7.924000pt;}
.lse_c00277{letter-spacing:-7.266700pt;}
.ls13_c00277{letter-spacing:-6.764133pt;}
.ls12_c00277{letter-spacing:-6.226807pt;}
.lsf_c00277{letter-spacing:-5.949600pt;}
.ls8_c00277{letter-spacing:-5.285000pt;}
.lsa_c00277{letter-spacing:-4.625000pt;}
.ls3_c00277{letter-spacing:-4.619300pt;}
.ls10_c00277{letter-spacing:-4.195113pt;}
.lsc_c00277{letter-spacing:-3.961300pt;}
.ls11_c00277{letter-spacing:-3.479067pt;}
.ls7_c00277{letter-spacing:-3.304000pt;}
.ls2_c00277{letter-spacing:-2.639000pt;}
.ls1_c00277{letter-spacing:-1.981700pt;}
.ls4_c00277{letter-spacing:-1.479147pt;}
.ls5_c00277{letter-spacing:-1.323700pt;}
.ls15_c00277{letter-spacing:-0.686000pt;}
.ls9_c00277{letter-spacing:-0.658000pt;}
.ls6_c00277{letter-spacing:0.000000pt;}
.ls14_c00277{letter-spacing:1.427467pt;}
.ls0_c00277{letter-spacing:2.639000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
._11_c00277{margin-left:-9.756455pt;}
._5_c00277{margin-left:-5.333894pt;}
._15_c00277{margin-left:-1.978504pt;}
._b_c00277{width:1.262747pt;}
._14_c00277{width:2.621672pt;}
._a_c00277{width:3.758392pt;}
._3_c00277{width:4.782638pt;}
._6_c00277{width:5.761489pt;}
._0_c00277{width:6.791175pt;}
._2_c00277{width:7.784000pt;}
._7_c00277{width:8.790745pt;}
._4_c00277{width:10.065657pt;}
._1_c00277{width:11.101762pt;}
._9_c00277{width:12.711894pt;}
._13_c00277{width:14.340860pt;}
._f_c00277{width:16.181319pt;}
._8_c00277{width:17.536519pt;}
._d_c00277{width:19.177464pt;}
._e_c00277{width:22.259432pt;}
._c_c00277{width:24.154332pt;}
._10_c00277{width:25.572202pt;}
._12_c00277{width:26.718472pt;}
.fs5_c00277{font-size:63.333333pt;}
.fs6_c00277{font-size:64.666667pt;}
.fs0_c00277{font-size:70.000000pt;}
.fs8_c00277{font-size:70.666667pt;}
.fs2_c00277{font-size:71.333333pt;}
.fs7_c00277{font-size:72.666667pt;}
.fs4_c00277{font-size:73.333333pt;}
.fs3_c00277{font-size:74.000000pt;}
.fs1_c00277{font-size:74.666667pt;}
.y0_c00277{bottom:0.000000pt;}
.y11_c00277{bottom:670.719720pt;}
.y10_c00277{bottom:696.640133pt;}
.yf_c00277{bottom:723.199893pt;}
.ye_c00277{bottom:750.079813pt;}
.yd_c00277{bottom:776.639573pt;}
.yc_c00277{bottom:776.641173pt;}
.yb_c00277{bottom:803.839667pt;}
.ya_c00277{bottom:830.399413pt;}
.y9_c00277{bottom:830.401320pt;}
.y8_c00277{bottom:856.961080pt;}
.y7_c00277{bottom:883.200667pt;}
.y6_c00277{bottom:909.440240pt;}
.y4_c00277{bottom:935.999573pt;}
.y5_c00277{bottom:936.000000pt;}
.y2_c00277{bottom:989.759640pt;}
.y3_c00277{bottom:989.759680pt;}
.y1_c00277{bottom:1016.639573pt;}
.h6_c00277{height:66.054688pt;}
.h8_c00277{height:67.445312pt;}
.h1_c00277{height:68.701172pt;}
.ha_c00277{height:69.355469pt;}
.h3_c00277{height:70.009766pt;}
.h7_c00277{height:71.890625pt;}
.h5_c00277{height:71.972656pt;}
.h4_c00277{height:72.626953pt;}
.h9_c00277{height:73.234375pt;}
.h2_c00277{height:73.281250pt;}
.h0_c00277{height:1122.666667pt;}
.w0_c00277{width:793.333333pt;}
.x0_c00277{left:0.000000pt;}
.x8_c00277{left:122.557987pt;}
.x1_c00277{left:123.518533pt;}
.x11_c00277{left:209.279333pt;}
.xd_c00277{left:262.398920pt;}
.x4_c00277{left:267.518533pt;}
.x12_c00277{left:275.519453pt;}
.x5_c00277{left:280.960000pt;}
.xe_c00277{left:283.519067pt;}
.x13_c00277{left:295.999453pt;}
.x14_c00277{left:313.599587pt;}
.x2_c00277{left:322.558533pt;}
.x3_c00277{left:358.079587pt;}
.x15_c00277{left:367.038533pt;}
.x16_c00277{left:387.199173pt;}
.x6_c00277{left:391.999467pt;}
.x7_c00277{left:411.199173pt;}
.xb_c00277{left:453.118693pt;}
.xc_c00277{left:477.439453pt;}
.xf_c00277{left:624.319333pt;}
.x10_c00277{left:640.319867pt;}
.x9_c00277{left:663.039587pt;}
.xa_c00277{left:678.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1dd80df3b25130432d770e17.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_6be9b1280af54340feed1feb.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_86cd315f8ec5ec974c5efbd5.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_90d3546b786bb8370b9df903.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_8a2f59069e7c434bd4ba2007.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_b88ab0b49f59b75207b356c0.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00278;src:url('chunks/assets/font_f8a65824eb9b3c7a26efa94b.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:1.364746;font-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_c00278{transform:matrix(0.168142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168142,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m2c_c00278{transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203390,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m2a_c00278{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.294393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294393,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls18_c00278{letter-spacing:-16.729650px;}
.ls7_c00278{letter-spacing:-14.935275px;}
.ls12_c00278{letter-spacing:-8.914500px;}
.ls2_c00278{letter-spacing:-8.866500px;}
.ls15_c00278{letter-spacing:-8.175038px;}
.ls17_c00278{letter-spacing:-6.940575px;}
.ls21_c00278{letter-spacing:-6.687150px;}
.ls24_c00278{letter-spacing:-6.685875px;}
.lsa_c00278{letter-spacing:-5.945625px;}
.ls16_c00278{letter-spacing:-5.784450px;}
.ls35_c00278{letter-spacing:-5.331150px;}
.ls19_c00278{letter-spacing:-5.295675px;}
.ls1e_c00278{letter-spacing:-5.247533px;}
.ls13_c00278{letter-spacing:-5.203125px;}
.ls11_c00278{letter-spacing:-5.196713px;}
.ls14_c00278{letter-spacing:-5.015625px;}
.ls2b_c00278{letter-spacing:-4.643625px;}
.ls10_c00278{letter-spacing:-4.456463px;}
.ls2e_c00278{letter-spacing:-3.811680px;}
.lse_c00278{letter-spacing:-3.717000px;}
.ls1a_c00278{letter-spacing:-3.654000px;}
.ls36_c00278{letter-spacing:-3.101550px;}
.ls2f_c00278{letter-spacing:-3.101393px;}
.ls30_c00278{letter-spacing:-3.048480px;}
.ls1b_c00278{letter-spacing:-2.969258px;}
.ls9_c00278{letter-spacing:-2.968875px;}
.ls4_c00278{letter-spacing:-2.447550px;}
.ls32_c00278{letter-spacing:-2.324228px;}
.ls23_c00278{letter-spacing:-2.314343px;}
.ls2d_c00278{letter-spacing:-2.285280px;}
.lsc_c00278{letter-spacing:-2.229413px;}
.ls3_c00278{letter-spacing:-1.632533px;}
.ls33_c00278{letter-spacing:-1.627680px;}
.ls29_c00278{letter-spacing:-1.526400px;}
.ls1d_c00278{letter-spacing:-1.501650px;}
.ls2c_c00278{letter-spacing:-1.501058px;}
.lsb_c00278{letter-spacing:-1.489163px;}
.ls27_c00278{letter-spacing:-0.880515px;}
.ls1f_c00278{letter-spacing:-0.825390px;}
.ls6_c00278{letter-spacing:-0.792000px;}
.ls22_c00278{letter-spacing:-0.779220px;}
.ls31_c00278{letter-spacing:-0.774000px;}
.ls1_c00278{letter-spacing:-0.773393px;}
.ls34_c00278{letter-spacing:-0.763200px;}
.lsf_c00278{letter-spacing:-0.740250px;}
.ls5_c00278{letter-spacing:0.000000px;}
.ls20_c00278{letter-spacing:0.773393px;}
.ls0_c00278{letter-spacing:1.489163px;}
.ls8_c00278{letter-spacing:3.067050px;}
.ls2a_c00278{letter-spacing:3.631185px;}
.ls28_c00278{letter-spacing:3.772440px;}
.ls1c_c00278{letter-spacing:4.035150px;}
.lsd_c00278{letter-spacing:4.181700px;}
.ls25_c00278{letter-spacing:7.238400px;}
.ls26_c00278{letter-spacing:8.915775px;}
.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;}
._19_c00278{margin-left:-44.765920px;}
._1a_c00278{margin-left:-8.499650px;}
._b_c00278{margin-left:-6.816970px;}
._8_c00278{margin-left:-5.428490px;}
._9_c00278{margin-left:-4.351517px;}
._a_c00278{margin-left:-2.359409px;}
._12_c00278{margin-left:-1.122935px;}
._7_c00278{width:1.531869px;}
._0_c00278{width:3.592058px;}
._3_c00278{width:4.933621px;}
._1_c00278{width:6.409009px;}
._4_c00278{width:8.135217px;}
._2_c00278{width:9.767086px;}
._6_c00278{width:11.139801px;}
._c_c00278{width:12.165879px;}
._11_c00278{width:13.734539px;}
._5_c00278{width:14.947404px;}
._10_c00278{width:15.969797px;}
._13_c00278{width:16.998357px;}
._17_c00278{width:18.035758px;}
._d_c00278{width:19.648110px;}
._e_c00278{width:21.506833px;}
._18_c00278{width:24.469274px;}
._15_c00278{width:25.637672px;}
._14_c00278{width:27.210577px;}
._f_c00278{width:32.952368px;}
._16_c00278{width:322.968138px;}
.fc0_c00278{color:transparent;}
.fs5_c00278{font-size:17.250000px;}
.fs18_c00278{font-size:43.500000px;}
.fs1b_c00278{font-size:44.250000px;}
.fs16_c00278{font-size:45.000000px;}
.fs15_c00278{font-size:45.750000px;}
.fs14_c00278{font-size:46.500000px;}
.fs17_c00278{font-size:47.250000px;}
.fs13_c00278{font-size:48.000000px;}
.fs1a_c00278{font-size:49.500000px;}
.fs19_c00278{font-size:52.500000px;}
.fsd_c00278{font-size:53.250000px;}
.fsb_c00278{font-size:60.000000px;}
.fs10_c00278{font-size:72.750000px;}
.fs8_c00278{font-size:73.500000px;}
.fsc_c00278{font-size:74.250000px;}
.fs11_c00278{font-size:76.500000px;}
.fsf_c00278{font-size:78.000000px;}
.fs4_c00278{font-size:78.750000px;}
.fs6_c00278{font-size:79.500000px;}
.fs7_c00278{font-size:80.250000px;}
.fse_c00278{font-size:81.000000px;}
.fs9_c00278{font-size:81.750000px;}
.fs2_c00278{font-size:82.500000px;}
.fs0_c00278{font-size:83.250000px;}
.fs12_c00278{font-size:84.000000px;}
.fsa_c00278{font-size:84.750000px;}
.fs1_c00278{font-size:86.250000px;}
.fs3_c00278{font-size:92.250000px;}
.y0_c00278{bottom:0.000000px;}
.y23_c00278{bottom:169.560750px;}
.y22_c00278{bottom:169.561365px;}
.y21_c00278{bottom:185.760150px;}
.y20_c00278{bottom:332.280120px;}
.y1f_c00278{bottom:362.159850px;}
.y1e_c00278{bottom:392.399820px;}
.y1d_c00278{bottom:423.000600px;}
.y1c_c00278{bottom:423.001485px;}
.y1a_c00278{bottom:452.880885px;}
.y1b_c00278{bottom:452.881215px;}
.y19_c00278{bottom:483.120810px;}
.y18_c00278{bottom:512.279850px;}
.y17_c00278{bottom:512.280690px;}
.y15_c00278{bottom:542.157945px;}
.y16_c00278{bottom:542.160420px;}
.y14_c00278{bottom:572.218830px;}
.y13_c00278{bottom:602.279685px;}
.y12_c00278{bottom:632.159415px;}
.y11_c00278{bottom:662.039130px;}
.y10_c00278{bottom:691.200285px;}
.yf_c00278{bottom:721.080000px;}
.ye_c00278{bottom:751.319820px;}
.yd_c00278{bottom:781.920600px;}
.yc_c00278{bottom:781.921485px;}
.yb_c00278{bottom:811.801215px;}
.ya_c00278{bottom:871.560660px;}
.y9_c00278{bottom:901.800570px;}
.y8_c00278{bottom:901.801455px;}
.y7_c00278{bottom:931.681185px;}
.y6_c00278{bottom:931.681590px;}
.y5_c00278{bottom:961.921515px;}
.y4_c00278{bottom:991.441035px;}
.y3_c00278{bottom:1020.960570px;}
.y2_c00278{bottom:1081.081050px;}
.y1_c00278{bottom:1140.840540px;}
.h6_c00278{height:17.991211px;}
.h1e_c00278{height:45.351562px;}
.h20_c00278{height:45.369141px;}
.h1d_c00278{height:46.107422px;}
.h23_c00278{height:46.151367px;}
.h1c_c00278{height:46.863281px;}
.h1f_c00278{height:47.619141px;}
.h1b_c00278{height:48.375000px;}
.h24_c00278{height:48.498047px;}
.h22_c00278{height:49.886719px;}
.h1a_c00278{height:50.062500px;}
.h21_c00278{height:51.884766px;}
.h11_c00278{height:55.538086px;}
.hf_c00278{height:62.578125px;}
.h15_c00278{height:71.400146px;}
.h14_c00278{height:76.552734px;}
.hc_c00278{height:76.658203px;}
.h5_c00278{height:77.288818px;}
.h10_c00278{height:77.440430px;}
.h7_c00278{height:78.024902px;}
.h17_c00278{height:78.609375px;}
.ha_c00278{height:78.760986px;}
.h18_c00278{height:79.787109px;}
.h16_c00278{height:80.121094px;}
.h13_c00278{height:80.233154px;}
.h8_c00278{height:80.969238px;}
.h12_c00278{height:81.632812px;}
.h9_c00278{height:81.705322px;}
.hd_c00278{height:82.388672px;}
.h19_c00278{height:82.441406px;}
.h3_c00278{height:83.144531px;}
.he_c00278{height:83.756836px;}
.h1_c00278{height:83.900391px;}
.hb_c00278{height:84.607544px;}
.h2_c00278{height:86.923828px;}
.h4_c00278{height:91.168945px;}
.h0_c00278{height:1263.000000px;}
.w0_c00278{width:892.500000px;}
.x0_c00278{left:0.000000px;}
.x1e_c00278{left:137.157555px;}
.x9_c00278{left:138.242955px;}
.x1_c00278{left:139.319250px;}
.x10_c00278{left:151.919565px;}
.x39_c00278{left:163.799565px;}
.x8_c00278{left:165.958350px;}
.x2c_c00278{left:168.118815px;}
.x2d_c00278{left:183.958950px;}
.x2_c00278{left:191.158785px;}
.x3a_c00278{left:197.279250px;}
.x6_c00278{left:200.519100px;}
.x7_c00278{left:206.278800px;}
.x3_c00278{left:218.519685px;}
.x3b_c00278{left:220.678500px;}
.x11_c00278{left:246.599100px;}
.x3c_c00278{left:260.278800px;}
.x2e_c00278{left:261.359850px;}
.x12_c00278{left:268.198785px;}
.x13_c00278{left:286.558635px;}
.x2f_c00278{left:311.038950px;}
.x3d_c00278{left:313.558635px;}
.x14_c00278{left:337.318800px;}
.x30_c00278{left:355.678530px;}
.x15_c00278{left:362.519100px;}
.x1c_c00278{left:387.719565px;}
.xe_c00278{left:393.479235px;}
.x21_c00278{left:399.599670px;}
.x31_c00278{left:404.279850px;}
.xf_c00278{left:413.279250px;}
.x1d_c00278{left:415.078815px;}
.x16_c00278{left:424.080000px;}
.x25_c00278{left:432.718500px;}
.x22_c00278{left:440.279250px;}
.x4_c00278{left:445.318770px;}
.x26_c00278{left:446.399820px;}
.xc_c00278{left:448.199385px;}
.x32_c00278{left:455.039985px;}
.xd_c00278{left:470.878320px;}
.x27_c00278{left:478.080000px;}
.x5_c00278{left:486.718500px;}
.x17_c00278{left:490.678530px;}
.x33_c00278{left:510.839535px;}
.x18_c00278{left:518.039385px;}
.x34_c00278{left:526.318770px;}
.x28_c00278{left:543.239820px;}
.x35_c00278{left:560.879520px;}
.x19_c00278{left:618.839535px;}
.x23_c00278{left:670.679070px;}
.x29_c00278{left:673.918950px;}
.x36_c00278{left:684.719520px;}
.x1a_c00278{left:690.119985px;}
.x24_c00278{left:692.278800px;}
.xa_c00278{left:700.559685px;}
.x1b_c00278{left:708.838950px;}
.x2a_c00278{left:709.918350px;}
.xb_c00278{left:717.838530px;}
.x37_c00278{left:719.998950px;}
.x38_c00278{left:727.918950px;}
.x1f_c00278{left:742.679670px;}
.x20_c00278{left:760.319235px;}
.x2b_c00278{left:761.759535px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls18_c00278{letter-spacing:-14.870800pt;}
.ls7_c00278{letter-spacing:-13.275800pt;}
.ls12_c00278{letter-spacing:-7.924000pt;}
.ls2_c00278{letter-spacing:-7.881333pt;}
.ls15_c00278{letter-spacing:-7.266700pt;}
.ls17_c00278{letter-spacing:-6.169400pt;}
.ls21_c00278{letter-spacing:-5.944133pt;}
.ls24_c00278{letter-spacing:-5.943000pt;}
.lsa_c00278{letter-spacing:-5.285000pt;}
.ls16_c00278{letter-spacing:-5.141733pt;}
.ls35_c00278{letter-spacing:-4.738800pt;}
.ls19_c00278{letter-spacing:-4.707267pt;}
.ls1e_c00278{letter-spacing:-4.664473pt;}
.ls13_c00278{letter-spacing:-4.625000pt;}
.ls11_c00278{letter-spacing:-4.619300pt;}
.ls14_c00278{letter-spacing:-4.458333pt;}
.ls2b_c00278{letter-spacing:-4.127667pt;}
.ls10_c00278{letter-spacing:-3.961300pt;}
.ls2e_c00278{letter-spacing:-3.388160pt;}
.lse_c00278{letter-spacing:-3.304000pt;}
.ls1a_c00278{letter-spacing:-3.248000pt;}
.ls36_c00278{letter-spacing:-2.756933pt;}
.ls2f_c00278{letter-spacing:-2.756793pt;}
.ls30_c00278{letter-spacing:-2.709760pt;}
.ls1b_c00278{letter-spacing:-2.639340pt;}
.ls9_c00278{letter-spacing:-2.639000pt;}
.ls4_c00278{letter-spacing:-2.175600pt;}
.ls32_c00278{letter-spacing:-2.065980pt;}
.ls23_c00278{letter-spacing:-2.057193pt;}
.ls2d_c00278{letter-spacing:-2.031360pt;}
.lsc_c00278{letter-spacing:-1.981700pt;}
.ls3_c00278{letter-spacing:-1.451140pt;}
.ls33_c00278{letter-spacing:-1.446827pt;}
.ls29_c00278{letter-spacing:-1.356800pt;}
.ls1d_c00278{letter-spacing:-1.334800pt;}
.ls2c_c00278{letter-spacing:-1.334273pt;}
.lsb_c00278{letter-spacing:-1.323700pt;}
.ls27_c00278{letter-spacing:-0.782680pt;}
.ls1f_c00278{letter-spacing:-0.733680pt;}
.ls6_c00278{letter-spacing:-0.704000pt;}
.ls22_c00278{letter-spacing:-0.692640pt;}
.ls31_c00278{letter-spacing:-0.688000pt;}
.ls1_c00278{letter-spacing:-0.687460pt;}
.ls34_c00278{letter-spacing:-0.678400pt;}
.lsf_c00278{letter-spacing:-0.658000pt;}
.ls5_c00278{letter-spacing:0.000000pt;}
.ls20_c00278{letter-spacing:0.687460pt;}
.ls0_c00278{letter-spacing:1.323700pt;}
.ls8_c00278{letter-spacing:2.726267pt;}
.ls2a_c00278{letter-spacing:3.227720pt;}
.ls28_c00278{letter-spacing:3.353280pt;}
.ls1c_c00278{letter-spacing:3.586800pt;}
.lsd_c00278{letter-spacing:3.717067pt;}
.ls25_c00278{letter-spacing:6.434133pt;}
.ls26_c00278{letter-spacing:7.925133pt;}
.ws0_c00278{word-spacing:0.000000pt;}
._19_c00278{margin-left:-39.791929pt;}
._1a_c00278{margin-left:-7.555244pt;}
._b_c00278{margin-left:-6.059529pt;}
._8_c00278{margin-left:-4.825325pt;}
._9_c00278{margin-left:-3.868015pt;}
._a_c00278{margin-left:-2.097253pt;}
._12_c00278{margin-left:-0.998164pt;}
._7_c00278{width:1.361661pt;}
._0_c00278{width:3.192940pt;}
._3_c00278{width:4.385440pt;}
._1_c00278{width:5.696897pt;}
._4_c00278{width:7.231304pt;}
._2_c00278{width:8.681854pt;}
._6_c00278{width:9.902046pt;}
._c_c00278{width:10.814115pt;}
._11_c00278{width:12.208480pt;}
._5_c00278{width:13.286581pt;}
._10_c00278{width:14.195375pt;}
._13_c00278{width:15.109651pt;}
._17_c00278{width:16.031784pt;}
._d_c00278{width:17.464987pt;}
._e_c00278{width:19.117185pt;}
._18_c00278{width:21.750466pt;}
._15_c00278{width:22.789042pt;}
._14_c00278{width:24.187179pt;}
._f_c00278{width:29.290994pt;}
._16_c00278{width:287.082789pt;}
.fs5_c00278{font-size:15.333333pt;}
.fs18_c00278{font-size:38.666667pt;}
.fs1b_c00278{font-size:39.333333pt;}
.fs16_c00278{font-size:40.000000pt;}
.fs15_c00278{font-size:40.666667pt;}
.fs14_c00278{font-size:41.333333pt;}
.fs17_c00278{font-size:42.000000pt;}
.fs13_c00278{font-size:42.666667pt;}
.fs1a_c00278{font-size:44.000000pt;}
.fs19_c00278{font-size:46.666667pt;}
.fsd_c00278{font-size:47.333333pt;}
.fsb_c00278{font-size:53.333333pt;}
.fs10_c00278{font-size:64.666667pt;}
.fs8_c00278{font-size:65.333333pt;}
.fsc_c00278{font-size:66.000000pt;}
.fs11_c00278{font-size:68.000000pt;}
.fsf_c00278{font-size:69.333333pt;}
.fs4_c00278{font-size:70.000000pt;}
.fs6_c00278{font-size:70.666667pt;}
.fs7_c00278{font-size:71.333333pt;}
.fse_c00278{font-size:72.000000pt;}
.fs9_c00278{font-size:72.666667pt;}
.fs2_c00278{font-size:73.333333pt;}
.fs0_c00278{font-size:74.000000pt;}
.fs12_c00278{font-size:74.666667pt;}
.fsa_c00278{font-size:75.333333pt;}
.fs1_c00278{font-size:76.666667pt;}
.fs3_c00278{font-size:82.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y23_c00278{bottom:150.720667pt;}
.y22_c00278{bottom:150.721213pt;}
.y21_c00278{bottom:165.120133pt;}
.y20_c00278{bottom:295.360107pt;}
.y1f_c00278{bottom:321.919867pt;}
.y1e_c00278{bottom:348.799840pt;}
.y1d_c00278{bottom:376.000533pt;}
.y1c_c00278{bottom:376.001320pt;}
.y1a_c00278{bottom:402.560787pt;}
.y1b_c00278{bottom:402.561080pt;}
.y19_c00278{bottom:429.440720pt;}
.y18_c00278{bottom:455.359867pt;}
.y17_c00278{bottom:455.360613pt;}
.y15_c00278{bottom:481.918173pt;}
.y16_c00278{bottom:481.920373pt;}
.y14_c00278{bottom:508.638960pt;}
.y13_c00278{bottom:535.359720pt;}
.y12_c00278{bottom:561.919480pt;}
.y11_c00278{bottom:588.479227pt;}
.y10_c00278{bottom:614.400253pt;}
.yf_c00278{bottom:640.960000pt;}
.ye_c00278{bottom:667.839840pt;}
.yd_c00278{bottom:695.040533pt;}
.yc_c00278{bottom:695.041320pt;}
.yb_c00278{bottom:721.601080pt;}
.ya_c00278{bottom:774.720587pt;}
.y9_c00278{bottom:801.600507pt;}
.y8_c00278{bottom:801.601293pt;}
.y7_c00278{bottom:828.161053pt;}
.y6_c00278{bottom:828.161413pt;}
.y5_c00278{bottom:855.041347pt;}
.y4_c00278{bottom:881.280920pt;}
.y3_c00278{bottom:907.520507pt;}
.y2_c00278{bottom:960.960933pt;}
.y1_c00278{bottom:1014.080480pt;}
.h6_c00278{height:15.992187pt;}
.h1e_c00278{height:40.312500pt;}
.h20_c00278{height:40.328125pt;}
.h1d_c00278{height:40.984375pt;}
.h23_c00278{height:41.023438pt;}
.h1c_c00278{height:41.656250pt;}
.h1f_c00278{height:42.328125pt;}
.h1b_c00278{height:43.000000pt;}
.h24_c00278{height:43.109375pt;}
.h22_c00278{height:44.343750pt;}
.h1a_c00278{height:44.500000pt;}
.h21_c00278{height:46.119792pt;}
.h11_c00278{height:49.367188pt;}
.hf_c00278{height:55.625000pt;}
.h15_c00278{height:63.466797pt;}
.h14_c00278{height:68.046875pt;}
.hc_c00278{height:68.140625pt;}
.h5_c00278{height:68.701172pt;}
.h10_c00278{height:68.835938pt;}
.h7_c00278{height:69.355469pt;}
.h17_c00278{height:69.875000pt;}
.ha_c00278{height:70.009766pt;}
.h18_c00278{height:70.921875pt;}
.h16_c00278{height:71.218750pt;}
.h13_c00278{height:71.318359pt;}
.h8_c00278{height:71.972656pt;}
.h12_c00278{height:72.562500pt;}
.h9_c00278{height:72.626953pt;}
.hd_c00278{height:73.234375pt;}
.h19_c00278{height:73.281250pt;}
.h3_c00278{height:73.906250pt;}
.he_c00278{height:74.450521pt;}
.h1_c00278{height:74.578125pt;}
.hb_c00278{height:75.206706pt;}
.h2_c00278{height:77.265625pt;}
.h4_c00278{height:81.039063pt;}
.h0_c00278{height:1122.666667pt;}
.w0_c00278{width:793.333333pt;}
.x0_c00278{left:0.000000pt;}
.x1e_c00278{left:121.917827pt;}
.x9_c00278{left:122.882627pt;}
.x1_c00278{left:123.839333pt;}
.x10_c00278{left:135.039613pt;}
.x39_c00278{left:145.599613pt;}
.x8_c00278{left:147.518533pt;}
.x2c_c00278{left:149.438947pt;}
.x2d_c00278{left:163.519067pt;}
.x2_c00278{left:169.918920pt;}
.x3a_c00278{left:175.359333pt;}
.x6_c00278{left:178.239200pt;}
.x7_c00278{left:183.358933pt;}
.x3_c00278{left:194.239720pt;}
.x3b_c00278{left:196.158667pt;}
.x11_c00278{left:219.199200pt;}
.x3c_c00278{left:231.358933pt;}
.x2e_c00278{left:232.319867pt;}
.x12_c00278{left:238.398920pt;}
.x13_c00278{left:254.718787pt;}
.x2f_c00278{left:276.479067pt;}
.x3d_c00278{left:278.718787pt;}
.x14_c00278{left:299.838933pt;}
.x30_c00278{left:316.158693pt;}
.x15_c00278{left:322.239200pt;}
.x1c_c00278{left:344.639613pt;}
.xe_c00278{left:349.759320pt;}
.x21_c00278{left:355.199707pt;}
.x31_c00278{left:359.359867pt;}
.xf_c00278{left:367.359333pt;}
.x1d_c00278{left:368.958947pt;}
.x16_c00278{left:376.960000pt;}
.x25_c00278{left:384.638667pt;}
.x22_c00278{left:391.359333pt;}
.x4_c00278{left:395.838907pt;}
.x26_c00278{left:396.799840pt;}
.xc_c00278{left:398.399453pt;}
.x32_c00278{left:404.479987pt;}
.xd_c00278{left:418.558507pt;}
.x27_c00278{left:424.960000pt;}
.x5_c00278{left:432.638667pt;}
.x17_c00278{left:436.158693pt;}
.x33_c00278{left:454.079587pt;}
.x18_c00278{left:460.479453pt;}
.x34_c00278{left:467.838907pt;}
.x28_c00278{left:482.879840pt;}
.x35_c00278{left:498.559573pt;}
.x19_c00278{left:550.079587pt;}
.x23_c00278{left:596.159173pt;}
.x29_c00278{left:599.039067pt;}
.x36_c00278{left:608.639573pt;}
.x1a_c00278{left:613.439987pt;}
.x24_c00278{left:615.358933pt;}
.xa_c00278{left:622.719720pt;}
.x1b_c00278{left:630.079067pt;}
.x2a_c00278{left:631.038533pt;}
.xb_c00278{left:638.078693pt;}
.x37_c00278{left:639.999067pt;}
.x38_c00278{left:647.039067pt;}
.x1f_c00278{left:660.159707pt;}
.x20_c00278{left:675.839320pt;}
.x2b_c00278{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dd9742d85a6526644f3c307.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_0db8dcdb65c34af6239b2e55.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_72fd61f7a29293b4e2c4ab3e.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_096a533af811aaf4980ef756.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_c8b63e7f9de55ae681b5bdf6.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_580da2a4d04f74eb445f1b53.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:1.432129;font-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_c00279{transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m26_c00279{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m19_c00279{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m13_c00279{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m17_c00279{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);}
.m25_c00279{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m22_c00279{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m21_c00279{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m18_c00279{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1c_c00279{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1a_c00279{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m8_c00279{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m11_c00279{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m9_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m1d_c00279{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m23_c00279{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1e_c00279{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m20_c00279{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);}
.v0_c00279{vertical-align:0.000000px;}
.ls19_c00279{letter-spacing:-13.068300px;}
.ls1c_c00279{letter-spacing:-12.637350px;}
.ls1b_c00279{letter-spacing:-8.918925px;}
.ls21_c00279{letter-spacing:-8.786400px;}
.ls2_c00279{letter-spacing:-8.761500px;}
.ls8_c00279{letter-spacing:-8.175038px;}
.ls13_c00279{letter-spacing:-7.426125px;}
.lse_c00279{letter-spacing:-6.685875px;}
.ls17_c00279{letter-spacing:-6.635078px;}
.ls14_c00279{letter-spacing:-6.517275px;}
.ls15_c00279{letter-spacing:-5.945625px;}
.ls1a_c00279{letter-spacing:-5.725425px;}
.ls4_c00279{letter-spacing:-5.387850px;}
.lsf_c00279{letter-spacing:-5.296875px;}
.ls5_c00279{letter-spacing:-5.196713px;}
.lsd_c00279{letter-spacing:-5.063775px;}
.ls12_c00279{letter-spacing:-5.056200px;}
.ls27_c00279{letter-spacing:-4.921875px;}
.ls28_c00279{letter-spacing:-4.834800px;}
.ls20_c00279{letter-spacing:-4.672890px;}
.lsc_c00279{letter-spacing:-4.456463px;}
.lsa_c00279{letter-spacing:-3.717000px;}
.ls1f_c00279{letter-spacing:-3.303518px;}
.ls16_c00279{letter-spacing:-3.110250px;}
.ls6_c00279{letter-spacing:-2.968875px;}
.ls18_c00279{letter-spacing:-2.271308px;}
.ls3_c00279{letter-spacing:-2.229413px;}
.ls26_c00279{letter-spacing:-1.575900px;}
.ls11_c00279{letter-spacing:-1.497878px;}
.ls9_c00279{letter-spacing:-1.489163px;}
.ls23_c00279{letter-spacing:-1.459380px;}
.ls24_c00279{letter-spacing:-0.787050px;}
.ls22_c00279{letter-spacing:-0.778425px;}
.ls10_c00279{letter-spacing:-0.772650px;}
.lsb_c00279{letter-spacing:-0.740250px;}
.ls7_c00279{letter-spacing:0.000000px;}
.ls1_c00279{letter-spacing:1.489163px;}
.ls1d_c00279{letter-spacing:6.450000px;}
.ls25_c00279{letter-spacing:6.522300px;}
.ls1e_c00279{letter-spacing:11.018700px;}
.ls0_c00279{letter-spacing:14.112000px;}
.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;}
._14_c00279{margin-left:-22.386768px;}
._16_c00279{margin-left:-16.179470px;}
._f_c00279{margin-left:-10.827887px;}
._17_c00279{margin-left:-6.717226px;}
._13_c00279{margin-left:-5.190754px;}
._b_c00279{margin-left:-4.011213px;}
._10_c00279{margin-left:-2.087767px;}
._c_c00279{width:1.096898px;}
._d_c00279{width:2.447803px;}
._5_c00279{width:4.255650px;}
._12_c00279{width:6.047004px;}
._7_c00279{width:7.447670px;}
._e_c00279{width:8.552636px;}
._6_c00279{width:9.707691px;}
._11_c00279{width:11.420696px;}
._8_c00279{width:13.273833px;}
._0_c00279{width:14.883720px;}
._3_c00279{width:16.256942px;}
._19_c00279{width:17.350794px;}
._1e_c00279{width:18.767091px;}
._9_c00279{width:20.642559px;}
._15_c00279{width:22.113892px;}
._4_c00279{width:23.286880px;}
._1_c00279{width:25.748457px;}
._2_c00279{width:27.541802px;}
._a_c00279{width:28.810034px;}
._20_c00279{width:30.091489px;}
._18_c00279{width:31.932456px;}
._1f_c00279{width:35.568923px;}
._1a_c00279{width:36.681869px;}
._1b_c00279{width:38.307804px;}
._1c_c00279{width:39.646405px;}
._1d_c00279{width:42.169927px;}
.fc0_c00279{color:transparent;}
.fs11_c00279{font-size:30.000000px;}
.fsc_c00279{font-size:72.750000px;}
.fsb_c00279{font-size:73.500000px;}
.fsa_c00279{font-size:74.250000px;}
.fse_c00279{font-size:75.000000px;}
.fs7_c00279{font-size:76.500000px;}
.fs8_c00279{font-size:77.250000px;}
.fs4_c00279{font-size:78.000000px;}
.fs1_c00279{font-size:78.750000px;}
.fs9_c00279{font-size:79.500000px;}
.fs5_c00279{font-size:80.250000px;}
.fsf_c00279{font-size:81.000000px;}
.fsd_c00279{font-size:81.750000px;}
.fs0_c00279{font-size:82.500000px;}
.fs10_c00279{font-size:84.000000px;}
.fs6_c00279{font-size:84.750000px;}
.fs3_c00279{font-size:87.000000px;}
.fs2_c00279{font-size:87.750000px;}
.fs12_c00279{font-size:115.500000px;}
.y0_c00279{bottom:0.000000px;}
.y36_c00279{bottom:185.040000px;}
.y35_c00279{bottom:185.040090px;}
.y34_c00279{bottom:214.919820px;}
.y33_c00279{bottom:244.799535px;}
.y32_c00279{bottom:244.800345px;}
.y31_c00279{bottom:275.398635px;}
.y30_c00279{bottom:275.399235px;}
.y2f_c00279{bottom:335.160765px;}
.y2e_c00279{bottom:356.039385px;}
.y2d_c00279{bottom:356.039820px;}
.y2c_c00279{bottom:377.639100px;}
.y2b_c00279{bottom:377.639895px;}
.y2a_c00279{bottom:398.520315px;}
.y28_c00279{bottom:419.758275px;}
.y29_c00279{bottom:419.759085px;}
.y26_c00279{bottom:441.358665px;}
.y27_c00279{bottom:441.719565px;}
.y25_c00279{bottom:462.959970px;}
.y24_c00279{bottom:462.960405px;}
.y23_c00279{bottom:484.559685px;}
.y21_c00279{bottom:544.679370px;}
.y22_c00279{bottom:544.680135px;}
.y1f_c00279{bottom:574.558320px;}
.y20_c00279{bottom:574.559100px;}
.y1e_c00279{bottom:604.798230px;}
.y1d_c00279{bottom:633.959385px;}
.y1c_c00279{bottom:633.959475px;}
.y1a_c00279{bottom:664.198785px;}
.y1b_c00279{bottom:664.199385px;}
.y19_c00279{bottom:723.958230px;}
.y18_c00279{bottom:753.119385px;}
.y16_c00279{bottom:783.719265px;}
.y17_c00279{bottom:783.720150px;}
.y15_c00279{bottom:813.959175px;}
.y14_c00279{bottom:843.838905px;}
.y13_c00279{bottom:843.839790px;}
.y12_c00279{bottom:873.719520px;}
.y11_c00279{bottom:873.720405px;}
.y10_c00279{bottom:903.600135px;}
.yf_c00279{bottom:903.600180px;}
.yd_c00279{bottom:933.840045px;}
.ye_c00279{bottom:933.840090px;}
.yb_c00279{bottom:964.079205px;}
.yc_c00279{bottom:964.079955px;}
.ya_c00279{bottom:993.958920px;}
.y9_c00279{bottom:993.958950px;}
.y7_c00279{bottom:1023.479535px;}
.y8_c00279{bottom:1023.480285px;}
.y5_c00279{bottom:1053.359115px;}
.y6_c00279{bottom:1053.359250px;}
.y4_c00279{bottom:1083.599025px;}
.y3_c00279{bottom:1083.599580px;}
.y2_c00279{bottom:1113.119115px;}
.y1_c00279{bottom:1143.719520px;}
.h14_c00279{height:31.289062px;}
.h8_c00279{height:75.080566px;}
.h9_c00279{height:75.816650px;}
.he_c00279{height:75.875977px;}
.h5_c00279{height:76.552734px;}
.hd_c00279{height:76.658203px;}
.h2_c00279{height:77.288818px;}
.hb_c00279{height:77.440430px;}
.ha_c00279{height:78.024902px;}
.h10_c00279{height:78.222656px;}
.h6_c00279{height:78.760986px;}
.h16_c00279{height:79.787109px;}
.h11_c00279{height:80.121094px;}
.hc_c00279{height:80.569336px;}
.h1_c00279{height:80.969238px;}
.h12_c00279{height:81.632812px;}
.hf_c00279{height:82.388672px;}
.h13_c00279{height:83.015625px;}
.h7_c00279{height:83.177490px;}
.h4_c00279{height:85.385742px;}
.h3_c00279{height:86.121826px;}
.h15_c00279{height:120.462891px;}
.h0_c00279{height:1263.000000px;}
.w0_c00279{width:892.500000px;}
.x0_c00279{left:0.000000px;}
.x22_c00279{left:140.759565px;}
.x1_c00279{left:141.838950px;}
.x1a_c00279{left:142.918305px;}
.x2_c00279{left:171.358665px;}
.x23_c00279{left:182.159415px;}
.x3a_c00279{left:195.123750px;}
.x24_c00279{left:197.279250px;}
.xf_c00279{left:206.998950px;}
.x38_c00279{left:217.799535px;}
.x3_c00279{left:219.599100px;}
.x25_c00279{left:224.999400px;}
.x39_c00279{left:229.318800px;}
.x36_c00279{left:239.040000px;}
.x10_c00279{left:241.918950px;}
.x4_c00279{left:243.718500px;}
.x37_c00279{left:254.878350px;}
.x26_c00279{left:273.958350px;}
.x27_c00279{left:298.079385px;}
.x28_c00279{left:326.158785px;}
.x3f_c00279{left:358.918350px;}
.x3c_c00279{left:372.958950px;}
.x40_c00279{left:374.399235px;}
.x43_c00279{left:377.639100px;}
.x7_c00279{left:386.638500px;}
.x3d_c00279{left:395.278800px;}
.x44_c00279{left:397.439250px;}
.x1e_c00279{left:398.518665px;}
.x29_c00279{left:405.000000px;}
.x8_c00279{left:406.079400px;}
.x1f_c00279{left:412.199850px;}
.x32_c00279{left:413.999400px;}
.x41_c00279{left:422.278800px;}
.x33_c00279{left:427.679070px;}
.x47_c00279{left:433.438665px;}
.x42_c00279{left:443.159820px;}
.x2a_c00279{left:444.598530px;}
.x48_c00279{left:447.479235px;}
.x34_c00279{left:470.519070px;}
.x2b_c00279{left:478.080000px;}
.x20_c00279{left:496.798920px;}
.x21_c00279{left:511.918950px;}
.x35_c00279{left:514.438665px;}
.x5_c00279{left:527.038920px;}
.x13_c00279{left:530.278800px;}
.x49_c00279{left:531.359850px;}
.x30_c00279{left:533.159415px;}
.x6_c00279{left:545.759535px;}
.x45_c00279{left:552.959385px;}
.x2c_c00279{left:554.399820px;}
.x19_c00279{left:560.879520px;}
.x31_c00279{left:569.878920px;}
.x14_c00279{left:571.678530px;}
.x15_c00279{left:574.559100px;}
.x46_c00279{left:576.719520px;}
.x2d_c00279{left:579.239220px;}
.x4a_c00279{left:583.558635px;}
.x11_c00279{left:588.958920px;}
.x16_c00279{left:590.399235px;}
.x17_c00279{left:596.158770px;}
.x2e_c00279{left:606.959385px;}
.x4b_c00279{left:609.479235px;}
.x18_c00279{left:615.238770px;}
.x9_c00279{left:623.878920px;}
.x4c_c00279{left:624.958335px;}
.x12_c00279{left:632.519070px;}
.x1b_c00279{left:651.239820px;}
.x2f_c00279{left:661.679670px;}
.xa_c00279{left:668.879520px;}
.xb_c00279{left:688.318770px;}
.xd_c00279{left:707.398635px;}
.xc_c00279{left:708.838950px;}
.x1c_c00279{left:723.599670px;}
.xe_c00279{left:729.000000px;}
.x1d_c00279{left:744.119985px;}
.x3e_c00279{left:757.799520px;}
.x3b_c00279{left:776.159370px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls19_c00279{letter-spacing:-11.616267pt;}
.ls1c_c00279{letter-spacing:-11.233200pt;}
.ls1b_c00279{letter-spacing:-7.927933pt;}
.ls21_c00279{letter-spacing:-7.810133pt;}
.ls2_c00279{letter-spacing:-7.788000pt;}
.ls8_c00279{letter-spacing:-7.266700pt;}
.ls13_c00279{letter-spacing:-6.601000pt;}
.lse_c00279{letter-spacing:-5.943000pt;}
.ls17_c00279{letter-spacing:-5.897847pt;}
.ls14_c00279{letter-spacing:-5.793133pt;}
.ls15_c00279{letter-spacing:-5.285000pt;}
.ls1a_c00279{letter-spacing:-5.089267pt;}
.ls4_c00279{letter-spacing:-4.789200pt;}
.lsf_c00279{letter-spacing:-4.708333pt;}
.ls5_c00279{letter-spacing:-4.619300pt;}
.lsd_c00279{letter-spacing:-4.501133pt;}
.ls12_c00279{letter-spacing:-4.494400pt;}
.ls27_c00279{letter-spacing:-4.375000pt;}
.ls28_c00279{letter-spacing:-4.297600pt;}
.ls20_c00279{letter-spacing:-4.153680pt;}
.lsc_c00279{letter-spacing:-3.961300pt;}
.lsa_c00279{letter-spacing:-3.304000pt;}
.ls1f_c00279{letter-spacing:-2.936460pt;}
.ls16_c00279{letter-spacing:-2.764667pt;}
.ls6_c00279{letter-spacing:-2.639000pt;}
.ls18_c00279{letter-spacing:-2.018940pt;}
.ls3_c00279{letter-spacing:-1.981700pt;}
.ls26_c00279{letter-spacing:-1.400800pt;}
.ls11_c00279{letter-spacing:-1.331447pt;}
.ls9_c00279{letter-spacing:-1.323700pt;}
.ls23_c00279{letter-spacing:-1.297227pt;}
.ls24_c00279{letter-spacing:-0.699600pt;}
.ls22_c00279{letter-spacing:-0.691933pt;}
.ls10_c00279{letter-spacing:-0.686800pt;}
.lsb_c00279{letter-spacing:-0.658000pt;}
.ls7_c00279{letter-spacing:0.000000pt;}
.ls1_c00279{letter-spacing:1.323700pt;}
.ls1d_c00279{letter-spacing:5.733333pt;}
.ls25_c00279{letter-spacing:5.797600pt;}
.ls1e_c00279{letter-spacing:9.794400pt;}
.ls0_c00279{letter-spacing:12.544000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
._14_c00279{margin-left:-19.899349pt;}
._16_c00279{margin-left:-14.381751pt;}
._f_c00279{margin-left:-9.624789pt;}
._17_c00279{margin-left:-5.970868pt;}
._13_c00279{margin-left:-4.614004pt;}
._b_c00279{margin-left:-3.565523pt;}
._10_c00279{margin-left:-1.855792pt;}
._c_c00279{width:0.975021pt;}
._d_c00279{width:2.175825pt;}
._5_c00279{width:3.782800pt;}
._12_c00279{width:5.375115pt;}
._7_c00279{width:6.620151pt;}
._e_c00279{width:7.602343pt;}
._6_c00279{width:8.629058pt;}
._11_c00279{width:10.151730pt;}
._8_c00279{width:11.798962pt;}
._0_c00279{width:13.229974pt;}
._3_c00279{width:14.450615pt;}
._19_c00279{width:15.422928pt;}
._1e_c00279{width:16.681858pt;}
._9_c00279{width:18.348942pt;}
._15_c00279{width:19.656792pt;}
._4_c00279{width:20.699449pt;}
._1_c00279{width:22.887517pt;}
._2_c00279{width:24.481602pt;}
._a_c00279{width:25.608919pt;}
._20_c00279{width:26.747991pt;}
._18_c00279{width:28.384406pt;}
._1f_c00279{width:31.616821pt;}
._1a_c00279{width:32.606106pt;}
._1b_c00279{width:34.051381pt;}
._1c_c00279{width:35.241249pt;}
._1d_c00279{width:37.484379pt;}
.fs11_c00279{font-size:26.666667pt;}
.fsc_c00279{font-size:64.666667pt;}
.fsb_c00279{font-size:65.333333pt;}
.fsa_c00279{font-size:66.000000pt;}
.fse_c00279{font-size:66.666667pt;}
.fs7_c00279{font-size:68.000000pt;}
.fs8_c00279{font-size:68.666667pt;}
.fs4_c00279{font-size:69.333333pt;}
.fs1_c00279{font-size:70.000000pt;}
.fs9_c00279{font-size:70.666667pt;}
.fs5_c00279{font-size:71.333333pt;}
.fsf_c00279{font-size:72.000000pt;}
.fsd_c00279{font-size:72.666667pt;}
.fs0_c00279{font-size:73.333333pt;}
.fs10_c00279{font-size:74.666667pt;}
.fs6_c00279{font-size:75.333333pt;}
.fs3_c00279{font-size:77.333333pt;}
.fs2_c00279{font-size:78.000000pt;}
.fs12_c00279{font-size:102.666667pt;}
.y0_c00279{bottom:0.000000pt;}
.y36_c00279{bottom:164.480000pt;}
.y35_c00279{bottom:164.480080pt;}
.y34_c00279{bottom:191.039840pt;}
.y33_c00279{bottom:217.599587pt;}
.y32_c00279{bottom:217.600307pt;}
.y31_c00279{bottom:244.798787pt;}
.y30_c00279{bottom:244.799320pt;}
.y2f_c00279{bottom:297.920680pt;}
.y2e_c00279{bottom:316.479453pt;}
.y2d_c00279{bottom:316.479840pt;}
.y2c_c00279{bottom:335.679200pt;}
.y2b_c00279{bottom:335.679907pt;}
.y2a_c00279{bottom:354.240280pt;}
.y28_c00279{bottom:373.118467pt;}
.y29_c00279{bottom:373.119187pt;}
.y26_c00279{bottom:392.318813pt;}
.y27_c00279{bottom:392.639613pt;}
.y25_c00279{bottom:411.519973pt;}
.y24_c00279{bottom:411.520360pt;}
.y23_c00279{bottom:430.719720pt;}
.y21_c00279{bottom:484.159440pt;}
.y22_c00279{bottom:484.160120pt;}
.y1f_c00279{bottom:510.718507pt;}
.y20_c00279{bottom:510.719200pt;}
.y1e_c00279{bottom:537.598427pt;}
.y1d_c00279{bottom:563.519453pt;}
.y1c_c00279{bottom:563.519533pt;}
.y1a_c00279{bottom:590.398920pt;}
.y1b_c00279{bottom:590.399453pt;}
.y19_c00279{bottom:643.518427pt;}
.y18_c00279{bottom:669.439453pt;}
.y16_c00279{bottom:696.639347pt;}
.y17_c00279{bottom:696.640133pt;}
.y15_c00279{bottom:723.519267pt;}
.y14_c00279{bottom:750.079027pt;}
.y13_c00279{bottom:750.079813pt;}
.y12_c00279{bottom:776.639573pt;}
.y11_c00279{bottom:776.640360pt;}
.y10_c00279{bottom:803.200120pt;}
.yf_c00279{bottom:803.200160pt;}
.yd_c00279{bottom:830.080040pt;}
.ye_c00279{bottom:830.080080pt;}
.yb_c00279{bottom:856.959293pt;}
.yc_c00279{bottom:856.959960pt;}
.ya_c00279{bottom:883.519040pt;}
.y9_c00279{bottom:883.519067pt;}
.y7_c00279{bottom:909.759587pt;}
.y8_c00279{bottom:909.760253pt;}
.y5_c00279{bottom:936.319213pt;}
.y6_c00279{bottom:936.319333pt;}
.y4_c00279{bottom:963.199133pt;}
.y3_c00279{bottom:963.199627pt;}
.y2_c00279{bottom:989.439213pt;}
.y1_c00279{bottom:1016.639573pt;}
.h14_c00279{height:27.812500pt;}
.h8_c00279{height:66.738281pt;}
.h9_c00279{height:67.392578pt;}
.he_c00279{height:67.445312pt;}
.h5_c00279{height:68.046875pt;}
.hd_c00279{height:68.140625pt;}
.h2_c00279{height:68.701172pt;}
.hb_c00279{height:68.835938pt;}
.ha_c00279{height:69.355469pt;}
.h10_c00279{height:69.531250pt;}
.h6_c00279{height:70.009766pt;}
.h16_c00279{height:70.921875pt;}
.h11_c00279{height:71.218750pt;}
.hc_c00279{height:71.617188pt;}
.h1_c00279{height:71.972656pt;}
.h12_c00279{height:72.562500pt;}
.hf_c00279{height:73.234375pt;}
.h13_c00279{height:73.791667pt;}
.h7_c00279{height:73.935547pt;}
.h4_c00279{height:75.898438pt;}
.h3_c00279{height:76.552734pt;}
.h15_c00279{height:107.078125pt;}
.h0_c00279{height:1122.666667pt;}
.w0_c00279{width:793.333333pt;}
.x0_c00279{left:0.000000pt;}
.x22_c00279{left:125.119613pt;}
.x1_c00279{left:126.079067pt;}
.x1a_c00279{left:127.038493pt;}
.x2_c00279{left:152.318813pt;}
.x23_c00279{left:161.919480pt;}
.x3a_c00279{left:173.443333pt;}
.x24_c00279{left:175.359333pt;}
.xf_c00279{left:183.999067pt;}
.x38_c00279{left:193.599587pt;}
.x3_c00279{left:195.199200pt;}
.x25_c00279{left:199.999467pt;}
.x39_c00279{left:203.838933pt;}
.x36_c00279{left:212.480000pt;}
.x10_c00279{left:215.039067pt;}
.x4_c00279{left:216.638667pt;}
.x37_c00279{left:226.558533pt;}
.x26_c00279{left:243.518533pt;}
.x27_c00279{left:264.959453pt;}
.x28_c00279{left:289.918920pt;}
.x3f_c00279{left:319.038533pt;}
.x3c_c00279{left:331.519067pt;}
.x40_c00279{left:332.799320pt;}
.x43_c00279{left:335.679200pt;}
.x7_c00279{left:343.678667pt;}
.x3d_c00279{left:351.358933pt;}
.x44_c00279{left:353.279333pt;}
.x1e_c00279{left:354.238813pt;}
.x29_c00279{left:360.000000pt;}
.x8_c00279{left:360.959467pt;}
.x1f_c00279{left:366.399867pt;}
.x32_c00279{left:367.999467pt;}
.x41_c00279{left:375.358933pt;}
.x33_c00279{left:380.159173pt;}
.x47_c00279{left:385.278813pt;}
.x42_c00279{left:393.919840pt;}
.x2a_c00279{left:395.198693pt;}
.x48_c00279{left:397.759320pt;}
.x34_c00279{left:418.239173pt;}
.x2b_c00279{left:424.960000pt;}
.x20_c00279{left:441.599040pt;}
.x21_c00279{left:455.039067pt;}
.x35_c00279{left:457.278813pt;}
.x5_c00279{left:468.479040pt;}
.x13_c00279{left:471.358933pt;}
.x49_c00279{left:472.319867pt;}
.x30_c00279{left:473.919480pt;}
.x6_c00279{left:485.119587pt;}
.x45_c00279{left:491.519453pt;}
.x2c_c00279{left:492.799840pt;}
.x19_c00279{left:498.559573pt;}
.x31_c00279{left:506.559040pt;}
.x14_c00279{left:508.158693pt;}
.x15_c00279{left:510.719200pt;}
.x46_c00279{left:512.639573pt;}
.x2d_c00279{left:514.879307pt;}
.x4a_c00279{left:518.718787pt;}
.x11_c00279{left:523.519040pt;}
.x16_c00279{left:524.799320pt;}
.x17_c00279{left:529.918907pt;}
.x2e_c00279{left:539.519453pt;}
.x4b_c00279{left:541.759320pt;}
.x18_c00279{left:546.878907pt;}
.x9_c00279{left:554.559040pt;}
.x4c_c00279{left:555.518520pt;}
.x12_c00279{left:562.239173pt;}
.x1b_c00279{left:578.879840pt;}
.x2f_c00279{left:588.159707pt;}
.xa_c00279{left:594.559573pt;}
.xb_c00279{left:611.838907pt;}
.xd_c00279{left:628.798787pt;}
.xc_c00279{left:630.079067pt;}
.x1c_c00279{left:643.199707pt;}
.xe_c00279{left:648.000000pt;}
.x1d_c00279{left:661.439987pt;}
.x3e_c00279{left:673.599573pt;}
.x3b_c00279{left:689.919440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdcd62c5fd8e84fd2a7b964a.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_c19e9e5e59d248367c31009d.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_d3956f9f6194932a6bc8b324.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_db44b456338efbd7622d556e.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_c2e7679da0d8542e5ce1b026.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00280;src:url('chunks/assets/font_c40fe0d40d3a816103a51001.woff2')format("woff");}.ff7_c00280{font-family:ff7_c00280;line-height:1.364746;font-style:normal;font-weight: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_c00280;src:url('chunks/assets/font_3be4258b34ec2e15cf501de2.woff2')format("woff");}.ff8_c00280{font-family:ff8_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;}
.md_c00280{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.193478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193478,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{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_c00280{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292969,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.648649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648649,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls32_c00280{letter-spacing:-17.015400px;}
.ls1f_c00280{letter-spacing:-12.600000px;}
.ls36_c00280{letter-spacing:-12.052058px;}
.ls16_c00280{letter-spacing:-11.721600px;}
.ls27_c00280{letter-spacing:-10.961100px;}
.ls3c_c00280{letter-spacing:-9.608400px;}
.ls10_c00280{letter-spacing:-9.568912px;}
.lse_c00280{letter-spacing:-8.924175px;}
.lsc_c00280{letter-spacing:-8.835750px;}
.ls33_c00280{letter-spacing:-8.419200px;}
.ls21_c00280{letter-spacing:-7.650765px;}
.ls1b_c00280{letter-spacing:-7.363913px;}
.ls13_c00280{letter-spacing:-7.144950px;}
.ls31_c00280{letter-spacing:-7.041600px;}
.ls12_c00280{letter-spacing:-6.781500px;}
.ls1a_c00280{letter-spacing:-6.623663px;}
.ls29_c00280{letter-spacing:-6.572700px;}
.ls23_c00280{letter-spacing:-6.300000px;}
.ls15_c00280{letter-spacing:-6.168825px;}
.ls3d_c00280{letter-spacing:-5.188320px;}
.lsf_c00280{letter-spacing:-5.150250px;}
.ls19_c00280{letter-spacing:-4.847250px;}
.ls38_c00280{letter-spacing:-4.650465px;}
.lsd_c00280{letter-spacing:-4.418663px;}
.ls2f_c00280{letter-spacing:-4.137600px;}
.ls3a_c00280{letter-spacing:-3.929250px;}
.ls2d_c00280{letter-spacing:-3.873450px;}
.ls1c_c00280{letter-spacing:-3.786750px;}
.ls5_c00280{letter-spacing:-3.678413px;}
.ls11_c00280{letter-spacing:-3.347280px;}
.ls6_c00280{letter-spacing:-3.295125px;}
.ls26_c00280{letter-spacing:-3.114675px;}
.ls40_c00280{letter-spacing:-3.105000px;}
.ls1d_c00280{letter-spacing:-3.058440px;}
.lsa_c00280{letter-spacing:-3.028950px;}
.ls2_c00280{letter-spacing:-2.945250px;}
.ls2c_c00280{letter-spacing:-2.400000px;}
.ls2e_c00280{letter-spacing:-2.325000px;}
.ls28_c00280{letter-spacing:-2.288805px;}
.ls37_c00280{letter-spacing:-2.285280px;}
.ls17_c00280{letter-spacing:-2.268000px;}
.ls3b_c00280{letter-spacing:-2.218125px;}
.ls1_c00280{letter-spacing:-2.205000px;}
.ls24_c00280{letter-spacing:-1.731600px;}
.ls39_c00280{letter-spacing:-1.547985px;}
.ls25_c00280{letter-spacing:-1.489163px;}
.ls4_c00280{letter-spacing:-1.473413px;}
.ls3f_c00280{letter-spacing:-1.040400px;}
.ls2b_c00280{letter-spacing:-1.023750px;}
.ls22_c00280{letter-spacing:-0.873923px;}
.ls14_c00280{letter-spacing:-0.809325px;}
.ls2a_c00280{letter-spacing:-0.805500px;}
.ls20_c00280{letter-spacing:-0.786713px;}
.ls30_c00280{letter-spacing:-0.776085px;}
.ls42_c00280{letter-spacing:-0.771705px;}
.ls9_c00280{letter-spacing:-0.731588px;}
.ls7_c00280{letter-spacing:0.000000px;}
.lsb_c00280{letter-spacing:0.787178px;}
.ls3e_c00280{letter-spacing:0.866250px;}
.ls34_c00280{letter-spacing:1.076400px;}
.ls0_c00280{letter-spacing:1.473413px;}
.ls41_c00280{letter-spacing:1.684800px;}
.ls1e_c00280{letter-spacing:2.754000px;}
.ls3_c00280{letter-spacing:2.821328px;}
.ls8_c00280{letter-spacing:3.252225px;}
.ls18_c00280{letter-spacing:15.797250px;}
.ls35_c00280{letter-spacing:22.822950px;}
.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;}
._19_c00280{margin-left:-57.345632px;}
._1c_c00280{margin-left:-15.142315px;}
._1b_c00280{margin-left:-12.444848px;}
._16_c00280{margin-left:-5.457743px;}
._15_c00280{margin-left:-3.771065px;}
._9_c00280{margin-left:-1.464838px;}
._b_c00280{width:1.103059px;}
._1f_c00280{width:2.130847px;}
._4_c00280{width:3.156344px;}
._0_c00280{width:4.488868px;}
._14_c00280{width:5.606941px;}
._2_c00280{width:6.630897px;}
._c_c00280{width:8.420163px;}
._3_c00280{width:9.994700px;}
._1_c00280{width:11.220506px;}
._a_c00280{width:12.830141px;}
._7_c00280{width:14.531090px;}
._8_c00280{width:16.539023px;}
._6_c00280{width:18.821839px;}
._10_c00280{width:21.050302px;}
._f_c00280{width:23.182197px;}
._5_c00280{width:25.309926px;}
._11_c00280{width:26.971728px;}
._12_c00280{width:28.137316px;}
._d_c00280{width:30.105816px;}
._18_c00280{width:32.252107px;}
._1a_c00280{width:33.684908px;}
._17_c00280{width:35.697669px;}
._13_c00280{width:38.713117px;}
._e_c00280{width:48.968597px;}
._1d_c00280{width:78.808200px;}
._1e_c00280{width:122.427001px;}
.fc0_c00280{color:transparent;}
.fs10_c00280{font-size:27.750000px;}
.fs1a_c00280{font-size:42.750000px;}
.fs14_c00280{font-size:45.000000px;}
.fs17_c00280{font-size:46.500000px;}
.fs1b_c00280{font-size:47.250000px;}
.fs16_c00280{font-size:48.000000px;}
.fs1c_c00280{font-size:48.750000px;}
.fs1e_c00280{font-size:49.500000px;}
.fs1d_c00280{font-size:51.000000px;}
.fs18_c00280{font-size:51.750000px;}
.fs19_c00280{font-size:53.250000px;}
.fs15_c00280{font-size:56.250000px;}
.fs9_c00280{font-size:72.000000px;}
.fs12_c00280{font-size:72.750000px;}
.fs2_c00280{font-size:75.750000px;}
.fs3_c00280{font-size:76.500000px;}
.fs4_c00280{font-size:77.250000px;}
.fs7_c00280{font-size:78.000000px;}
.fs0_c00280{font-size:78.750000px;}
.fs5_c00280{font-size:79.500000px;}
.fs8_c00280{font-size:80.250000px;}
.fsc_c00280{font-size:81.000000px;}
.fsa_c00280{font-size:81.750000px;}
.fs6_c00280{font-size:82.500000px;}
.fsb_c00280{font-size:83.250000px;}
.fs11_c00280{font-size:84.000000px;}
.fs1_c00280{font-size:84.750000px;}
.fs13_c00280{font-size:85.500000px;}
.fsf_c00280{font-size:86.250000px;}
.fse_c00280{font-size:90.000000px;}
.fsd_c00280{font-size:101.250000px;}
.y0_c00280{bottom:0.000000px;}
.y22_c00280{bottom:171.721200px;}
.y21_c00280{bottom:212.040000px;}
.y20_c00280{bottom:251.640150px;}
.y1f_c00280{bottom:331.920000px;}
.y1e_c00280{bottom:361.441335px;}
.y1d_c00280{bottom:428.760135px;}
.y1c_c00280{bottom:451.800150px;}
.y1b_c00280{bottom:451.800240px;}
.y1a_c00280{bottom:483.121035px;}
.y19_c00280{bottom:493.920000px;}
.y18_c00280{bottom:513.000480px;}
.y17_c00280{bottom:542.161635px;}
.y16_c00280{bottom:571.681155px;}
.y15_c00280{bottom:601.560885px;}
.y13_c00280{bottom:631.080375px;}
.y14_c00280{bottom:631.080420px;}
.y12_c00280{bottom:661.320285px;}
.y11_c00280{bottom:661.321410px;}
.y10_c00280{bottom:721.080855px;}
.yf_c00280{bottom:750.960570px;}
.ye_c00280{bottom:780.841140px;}
.yc_c00280{bottom:811.081005px;}
.yd_c00280{bottom:811.081050px;}
.yb_c00280{bottom:841.320930px;}
.ya_c00280{bottom:871.560840px;}
.y9_c00280{bottom:901.800750px;}
.y8_c00280{bottom:931.320285px;}
.y7_c00280{bottom:961.560240px;}
.y6_c00280{bottom:961.560420px;}
.y4_c00280{bottom:991.079910px;}
.y5_c00280{bottom:991.079955px;}
.y3_c00280{bottom:1021.319820px;}
.y2_c00280{bottom:1081.081050px;}
.y1_c00280{bottom:1140.120390px;}
.h12_c00280{height:28.942383px;}
.h21_c00280{height:44.586914px;}
.h1d_c00280{height:46.863281px;}
.h1a_c00280{height:46.933594px;}
.h1f_c00280{height:47.437500px;}
.h22_c00280{height:47.619141px;}
.h24_c00280{height:47.845459px;}
.h1c_c00280{height:48.375000px;}
.h23_c00280{height:49.130859px;}
.h26_c00280{height:49.886719px;}
.h25_c00280{height:50.402344px;}
.h1e_c00280{height:51.143555px;}
.h20_c00280{height:52.625977px;}
.h1b_c00280{height:55.590820px;}
.h4_c00280{height:75.080566px;}
.ha_c00280{height:75.093750px;}
.h5_c00280{height:75.816650px;}
.h15_c00280{height:75.875977px;}
.h17_c00280{height:77.250366px;}
.h1_c00280{height:77.288818px;}
.h6_c00280{height:78.024902px;}
.h8_c00280{height:78.609375px;}
.h9_c00280{height:78.760986px;}
.h3_c00280{height:79.004883px;}
.h14_c00280{height:79.365234px;}
.he_c00280{height:79.497070px;}
.h18_c00280{height:80.233154px;}
.h16_c00280{height:80.876953px;}
.h7_c00280{height:80.969238px;}
.hb_c00280{height:81.533203px;}
.hd_c00280{height:81.705322px;}
.hc_c00280{height:82.388672px;}
.h13_c00280{height:82.441406px;}
.h2_c00280{height:83.177490px;}
.h19_c00280{height:84.498047px;}
.h11_c00280{height:85.239258px;}
.h10_c00280{height:93.867188px;}
.hf_c00280{height:105.600586px;}
.h0_c00280{height:1263.000000px;}
.w0_c00280{width:892.500000px;}
.x0_c00280{left:0.000000px;}
.x26_c00280{left:96.479250px;}
.x1_c00280{left:136.079400px;}
.x25_c00280{left:137.875425px;}
.x11_c00280{left:150.838515px;}
.x8_c00280{left:160.918950px;}
.x30_c00280{left:163.079400px;}
.x37_c00280{left:169.199850px;}
.x38_c00280{left:183.958950px;}
.x3d_c00280{left:186.478665px;}
.x39_c00280{left:199.439685px;}
.x6_c00280{left:203.038950px;}
.x48_c00280{left:208.080000px;}
.x3e_c00280{left:209.159385px;}
.x1a_c00280{left:225.358635px;}
.x7_c00280{left:228.598500px;}
.x2a_c00280{left:230.399850px;}
.x1b_c00280{left:240.478635px;}
.x31_c00280{left:241.559685px;}
.x16_c00280{left:258.838515px;}
.x3f_c00280{left:260.998950px;}
.x32_c00280{left:262.080000px;}
.x40_c00280{left:279.719535px;}
.x17_c00280{left:281.878350px;}
.x49_c00280{left:284.759100px;}
.x23_c00280{left:288.359850px;}
.x4a_c00280{left:294.119385px;}
.xd_c00280{left:299.878950px;}
.x3a_c00280{left:307.078785px;}
.x3b_c00280{left:320.399235px;}
.x1c_c00280{left:327.958350px;}
.x34_c00280{left:330.118785px;}
.x24_c00280{left:332.279250px;}
.xe_c00280{left:335.519100px;}
.x3c_c00280{left:344.159385px;}
.x2b_c00280{left:345.238785px;}
.x35_c00280{left:350.639100px;}
.x1d_c00280{left:358.199850px;}
.x2c_c00280{left:360.358635px;}
.x2_c00280{left:364.679700px;}
.x4b_c00280{left:374.399235px;}
.x2d_c00280{left:379.438635px;}
.x41_c00280{left:380.878950px;}
.x3_c00280{left:385.918350px;}
.x4c_c00280{left:388.078815px;}
.x42_c00280{left:394.199385px;}
.x12_c00280{left:411.118785px;}
.x4d_c00280{left:416.519070px;}
.x1e_c00280{left:419.399820px;}
.x13_c00280{left:425.159415px;}
.x43_c00280{left:435.958335px;}
.x27_c00280{left:438.118785px;}
.x29_c00280{left:442.798920px;}
.x4e_c00280{left:449.998950px;}
.x2e_c00280{left:460.799565px;}
.x20_c00280{left:464.039385px;}
.x21_c00280{left:470.159820px;}
.x28_c00280{left:471.598530px;}
.xf_c00280{left:474.838530px;}
.x22_c00280{left:481.679070px;}
.x4f_c00280{left:486.000000px;}
.x2f_c00280{left:488.519670px;}
.x10_c00280{left:494.638500px;}
.x1f_c00280{left:514.438665px;}
.x44_c00280{left:525.598530px;}
.x50_c00280{left:529.558635px;}
.x45_c00280{left:535.319820px;}
.x51_c00280{left:543.599070px;}
.x52_c00280{left:580.679670px;}
.xb_c00280{left:597.958335px;}
.x18_c00280{left:600.838950px;}
.x53_c00280{left:614.159370px;}
.xc_c00280{left:616.679070px;}
.x19_c00280{left:618.478635px;}
.x4_c00280{left:627.838950px;}
.x9_c00280{left:636.838530px;}
.x46_c00280{left:644.758530px;}
.x14_c00280{left:647.639100px;}
.x47_c00280{left:659.519070px;}
.x5_c00280{left:664.919535px;}
.xa_c00280{left:687.598530px;}
.x15_c00280{left:699.478635px;}
.x33_c00280{left:701.279850px;}
.x36_c00280{left:771.479190px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls32_c00280{letter-spacing:-15.124800pt;}
.ls1f_c00280{letter-spacing:-11.200000pt;}
.ls36_c00280{letter-spacing:-10.712940pt;}
.ls16_c00280{letter-spacing:-10.419200pt;}
.ls27_c00280{letter-spacing:-9.743200pt;}
.ls3c_c00280{letter-spacing:-8.540800pt;}
.ls10_c00280{letter-spacing:-8.505700pt;}
.lse_c00280{letter-spacing:-7.932600pt;}
.lsc_c00280{letter-spacing:-7.854000pt;}
.ls33_c00280{letter-spacing:-7.483733pt;}
.ls21_c00280{letter-spacing:-6.800680pt;}
.ls1b_c00280{letter-spacing:-6.545700pt;}
.ls13_c00280{letter-spacing:-6.351067pt;}
.ls31_c00280{letter-spacing:-6.259200pt;}
.ls12_c00280{letter-spacing:-6.028000pt;}
.ls1a_c00280{letter-spacing:-5.887700pt;}
.ls29_c00280{letter-spacing:-5.842400pt;}
.ls23_c00280{letter-spacing:-5.600000pt;}
.ls15_c00280{letter-spacing:-5.483400pt;}
.ls3d_c00280{letter-spacing:-4.611840pt;}
.lsf_c00280{letter-spacing:-4.578000pt;}
.ls19_c00280{letter-spacing:-4.308667pt;}
.ls38_c00280{letter-spacing:-4.133747pt;}
.lsd_c00280{letter-spacing:-3.927700pt;}
.ls2f_c00280{letter-spacing:-3.677867pt;}
.ls3a_c00280{letter-spacing:-3.492667pt;}
.ls2d_c00280{letter-spacing:-3.443067pt;}
.ls1c_c00280{letter-spacing:-3.366000pt;}
.ls5_c00280{letter-spacing:-3.269700pt;}
.ls11_c00280{letter-spacing:-2.975360pt;}
.ls6_c00280{letter-spacing:-2.929000pt;}
.ls26_c00280{letter-spacing:-2.768600pt;}
.ls40_c00280{letter-spacing:-2.760000pt;}
.ls1d_c00280{letter-spacing:-2.718613pt;}
.lsa_c00280{letter-spacing:-2.692400pt;}
.ls2_c00280{letter-spacing:-2.618000pt;}
.ls2c_c00280{letter-spacing:-2.133333pt;}
.ls2e_c00280{letter-spacing:-2.066667pt;}
.ls28_c00280{letter-spacing:-2.034493pt;}
.ls37_c00280{letter-spacing:-2.031360pt;}
.ls17_c00280{letter-spacing:-2.016000pt;}
.ls3b_c00280{letter-spacing:-1.971667pt;}
.ls1_c00280{letter-spacing:-1.960000pt;}
.ls24_c00280{letter-spacing:-1.539200pt;}
.ls39_c00280{letter-spacing:-1.375987pt;}
.ls25_c00280{letter-spacing:-1.323700pt;}
.ls4_c00280{letter-spacing:-1.309700pt;}
.ls3f_c00280{letter-spacing:-0.924800pt;}
.ls2b_c00280{letter-spacing:-0.910000pt;}
.ls22_c00280{letter-spacing:-0.776820pt;}
.ls14_c00280{letter-spacing:-0.719400pt;}
.ls2a_c00280{letter-spacing:-0.716000pt;}
.ls20_c00280{letter-spacing:-0.699300pt;}
.ls30_c00280{letter-spacing:-0.689853pt;}
.ls42_c00280{letter-spacing:-0.685960pt;}
.ls9_c00280{letter-spacing:-0.650300pt;}
.ls7_c00280{letter-spacing:0.000000pt;}
.lsb_c00280{letter-spacing:0.699713pt;}
.ls3e_c00280{letter-spacing:0.770000pt;}
.ls34_c00280{letter-spacing:0.956800pt;}
.ls0_c00280{letter-spacing:1.309700pt;}
.ls41_c00280{letter-spacing:1.497600pt;}
.ls1e_c00280{letter-spacing:2.448000pt;}
.ls3_c00280{letter-spacing:2.507847pt;}
.ls8_c00280{letter-spacing:2.890867pt;}
.ls18_c00280{letter-spacing:14.042000pt;}
.ls35_c00280{letter-spacing:20.287067pt;}
.ws0_c00280{word-spacing:0.000000pt;}
._19_c00280{margin-left:-50.973895pt;}
._1c_c00280{margin-left:-13.459836pt;}
._1b_c00280{margin-left:-11.062087pt;}
._16_c00280{margin-left:-4.851327pt;}
._15_c00280{margin-left:-3.352058pt;}
._9_c00280{margin-left:-1.302079pt;}
._b_c00280{width:0.980497pt;}
._1f_c00280{width:1.894086pt;}
._4_c00280{width:2.805639pt;}
._0_c00280{width:3.990105pt;}
._14_c00280{width:4.983948pt;}
._2_c00280{width:5.894131pt;}
._c_c00280{width:7.484590pt;}
._3_c00280{width:8.884178pt;}
._1_c00280{width:9.973783pt;}
._a_c00280{width:11.404570pt;}
._7_c00280{width:12.916524pt;}
._8_c00280{width:14.701354pt;}
._6_c00280{width:16.730523pt;}
._10_c00280{width:18.711379pt;}
._f_c00280{width:20.606397pt;}
._5_c00280{width:22.497712pt;}
._11_c00280{width:23.974869pt;}
._12_c00280{width:25.010948pt;}
._d_c00280{width:26.760725pt;}
._18_c00280{width:28.668539pt;}
._1a_c00280{width:29.942140pt;}
._17_c00280{width:31.731262pt;}
._13_c00280{width:34.411660pt;}
._e_c00280{width:43.527642pt;}
._1d_c00280{width:70.051733pt;}
._1e_c00280{width:108.824001pt;}
.fs10_c00280{font-size:24.666667pt;}
.fs1a_c00280{font-size:38.000000pt;}
.fs14_c00280{font-size:40.000000pt;}
.fs17_c00280{font-size:41.333333pt;}
.fs1b_c00280{font-size:42.000000pt;}
.fs16_c00280{font-size:42.666667pt;}
.fs1c_c00280{font-size:43.333333pt;}
.fs1e_c00280{font-size:44.000000pt;}
.fs1d_c00280{font-size:45.333333pt;}
.fs18_c00280{font-size:46.000000pt;}
.fs19_c00280{font-size:47.333333pt;}
.fs15_c00280{font-size:50.000000pt;}
.fs9_c00280{font-size:64.000000pt;}
.fs12_c00280{font-size:64.666667pt;}
.fs2_c00280{font-size:67.333333pt;}
.fs3_c00280{font-size:68.000000pt;}
.fs4_c00280{font-size:68.666667pt;}
.fs7_c00280{font-size:69.333333pt;}
.fs0_c00280{font-size:70.000000pt;}
.fs5_c00280{font-size:70.666667pt;}
.fs8_c00280{font-size:71.333333pt;}
.fsc_c00280{font-size:72.000000pt;}
.fsa_c00280{font-size:72.666667pt;}
.fs6_c00280{font-size:73.333333pt;}
.fsb_c00280{font-size:74.000000pt;}
.fs11_c00280{font-size:74.666667pt;}
.fs1_c00280{font-size:75.333333pt;}
.fs13_c00280{font-size:76.000000pt;}
.fsf_c00280{font-size:76.666667pt;}
.fse_c00280{font-size:80.000000pt;}
.fsd_c00280{font-size:90.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y22_c00280{bottom:152.641067pt;}
.y21_c00280{bottom:188.480000pt;}
.y20_c00280{bottom:223.680133pt;}
.y1f_c00280{bottom:295.040000pt;}
.y1e_c00280{bottom:321.281187pt;}
.y1d_c00280{bottom:381.120120pt;}
.y1c_c00280{bottom:401.600133pt;}
.y1b_c00280{bottom:401.600213pt;}
.y1a_c00280{bottom:429.440920pt;}
.y19_c00280{bottom:439.040000pt;}
.y18_c00280{bottom:456.000427pt;}
.y17_c00280{bottom:481.921453pt;}
.y16_c00280{bottom:508.161027pt;}
.y15_c00280{bottom:534.720787pt;}
.y13_c00280{bottom:560.960333pt;}
.y14_c00280{bottom:560.960373pt;}
.y12_c00280{bottom:587.840253pt;}
.y11_c00280{bottom:587.841253pt;}
.y10_c00280{bottom:640.960760pt;}
.yf_c00280{bottom:667.520507pt;}
.ye_c00280{bottom:694.081013pt;}
.yc_c00280{bottom:720.960893pt;}
.yd_c00280{bottom:720.960933pt;}
.yb_c00280{bottom:747.840827pt;}
.ya_c00280{bottom:774.720747pt;}
.y9_c00280{bottom:801.600667pt;}
.y8_c00280{bottom:827.840253pt;}
.y7_c00280{bottom:854.720213pt;}
.y6_c00280{bottom:854.720373pt;}
.y4_c00280{bottom:880.959920pt;}
.y5_c00280{bottom:880.959960pt;}
.y3_c00280{bottom:907.839840pt;}
.y2_c00280{bottom:960.960933pt;}
.y1_c00280{bottom:1013.440347pt;}
.h12_c00280{height:25.726562pt;}
.h21_c00280{height:39.632812pt;}
.h1d_c00280{height:41.656250pt;}
.h1a_c00280{height:41.718750pt;}
.h1f_c00280{height:42.166667pt;}
.h22_c00280{height:42.328125pt;}
.h24_c00280{height:42.529297pt;}
.h1c_c00280{height:43.000000pt;}
.h23_c00280{height:43.671875pt;}
.h26_c00280{height:44.343750pt;}
.h25_c00280{height:44.802083pt;}
.h1e_c00280{height:45.460938pt;}
.h20_c00280{height:46.778646pt;}
.h1b_c00280{height:49.414063pt;}
.h4_c00280{height:66.738281pt;}
.ha_c00280{height:66.750000pt;}
.h5_c00280{height:67.392578pt;}
.h15_c00280{height:67.445312pt;}
.h17_c00280{height:68.666992pt;}
.h1_c00280{height:68.701172pt;}
.h6_c00280{height:69.355469pt;}
.h8_c00280{height:69.875000pt;}
.h9_c00280{height:70.009766pt;}
.h3_c00280{height:70.226562pt;}
.h14_c00280{height:70.546875pt;}
.he_c00280{height:70.664062pt;}
.h18_c00280{height:71.318359pt;}
.h16_c00280{height:71.890625pt;}
.h7_c00280{height:71.972656pt;}
.hb_c00280{height:72.473958pt;}
.hd_c00280{height:72.626953pt;}
.hc_c00280{height:73.234375pt;}
.h13_c00280{height:73.281250pt;}
.h2_c00280{height:73.935547pt;}
.h19_c00280{height:75.109375pt;}
.h11_c00280{height:75.768229pt;}
.h10_c00280{height:83.437500pt;}
.hf_c00280{height:93.867188pt;}
.h0_c00280{height:1122.666667pt;}
.w0_c00280{width:793.333333pt;}
.x0_c00280{left:0.000000pt;}
.x26_c00280{left:85.759333pt;}
.x1_c00280{left:120.959467pt;}
.x25_c00280{left:122.555933pt;}
.x11_c00280{left:134.078680pt;}
.x8_c00280{left:143.039067pt;}
.x30_c00280{left:144.959467pt;}
.x37_c00280{left:150.399867pt;}
.x38_c00280{left:163.519067pt;}
.x3d_c00280{left:165.758813pt;}
.x39_c00280{left:177.279720pt;}
.x6_c00280{left:180.479067pt;}
.x48_c00280{left:184.960000pt;}
.x3e_c00280{left:185.919453pt;}
.x1a_c00280{left:200.318787pt;}
.x7_c00280{left:203.198667pt;}
.x2a_c00280{left:204.799867pt;}
.x1b_c00280{left:213.758787pt;}
.x31_c00280{left:214.719720pt;}
.x16_c00280{left:230.078680pt;}
.x3f_c00280{left:231.999067pt;}
.x32_c00280{left:232.960000pt;}
.x40_c00280{left:248.639587pt;}
.x17_c00280{left:250.558533pt;}
.x49_c00280{left:253.119200pt;}
.x23_c00280{left:256.319867pt;}
.x4a_c00280{left:261.439453pt;}
.xd_c00280{left:266.559067pt;}
.x3a_c00280{left:272.958920pt;}
.x3b_c00280{left:284.799320pt;}
.x1c_c00280{left:291.518533pt;}
.x34_c00280{left:293.438920pt;}
.x24_c00280{left:295.359333pt;}
.xe_c00280{left:298.239200pt;}
.x3c_c00280{left:305.919453pt;}
.x2b_c00280{left:306.878920pt;}
.x35_c00280{left:311.679200pt;}
.x1d_c00280{left:318.399867pt;}
.x2c_c00280{left:320.318787pt;}
.x2_c00280{left:324.159733pt;}
.x4b_c00280{left:332.799320pt;}
.x2d_c00280{left:337.278787pt;}
.x41_c00280{left:338.559067pt;}
.x3_c00280{left:343.038533pt;}
.x4c_c00280{left:344.958947pt;}
.x42_c00280{left:350.399453pt;}
.x12_c00280{left:365.438920pt;}
.x4d_c00280{left:370.239173pt;}
.x1e_c00280{left:372.799840pt;}
.x13_c00280{left:377.919480pt;}
.x43_c00280{left:387.518520pt;}
.x27_c00280{left:389.438920pt;}
.x29_c00280{left:393.599040pt;}
.x4e_c00280{left:399.999067pt;}
.x2e_c00280{left:409.599613pt;}
.x20_c00280{left:412.479453pt;}
.x21_c00280{left:417.919840pt;}
.x28_c00280{left:419.198693pt;}
.xf_c00280{left:422.078693pt;}
.x22_c00280{left:428.159173pt;}
.x4f_c00280{left:432.000000pt;}
.x2f_c00280{left:434.239707pt;}
.x10_c00280{left:439.678667pt;}
.x1f_c00280{left:457.278813pt;}
.x44_c00280{left:467.198693pt;}
.x50_c00280{left:470.718787pt;}
.x45_c00280{left:475.839840pt;}
.x51_c00280{left:483.199173pt;}
.x52_c00280{left:516.159707pt;}
.xb_c00280{left:531.518520pt;}
.x18_c00280{left:534.079067pt;}
.x53_c00280{left:545.919440pt;}
.xc_c00280{left:548.159173pt;}
.x19_c00280{left:549.758787pt;}
.x4_c00280{left:558.079067pt;}
.x9_c00280{left:566.078693pt;}
.x46_c00280{left:573.118693pt;}
.x14_c00280{left:575.679200pt;}
.x47_c00280{left:586.239173pt;}
.x5_c00280{left:591.039587pt;}
.xa_c00280{left:611.198693pt;}
.x15_c00280{left:621.758787pt;}
.x33_c00280{left:623.359867pt;}
.x36_c00280{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0147eb94dc99075ad98f6dcf.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_89cbfcdaa1ea11f1d5112e99.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_12f7261df2a118606ed76883.woff2')format("woff");}.ff3_c00281{font-family:ff3_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:ff4_c00281;src:url('chunks/assets/font_90db858311a88859faa41d65.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_daa879220f2db3becd640c63.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.364746;font-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_c00281{transform:matrix(0.054104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054104,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{transform:matrix(0.054924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054924,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069030,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.117347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117347,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);}
.m17_c00281{transform:matrix(0.145062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145062,0.000000,0.000000,0.250000,0,0);}
.m19_c00281{transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147436,0.000000,0.000000,0.250000,0,0);}
.m20_c00281{transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.148734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148734,0.000000,0.000000,0.250000,0,0);}
.m1a_c00281{transform:matrix(0.155882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155882,0.000000,0.000000,0.250000,0,0);}
.m1b_c00281{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.m1f_c00281{transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);}
.m1c_c00281{transform:matrix(0.165663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165663,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.175287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175287,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.182353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182353,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m7_c00281{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);}
.m9_c00281{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m21_c00281{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{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);}
.ma_c00281{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.me_c00281{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);}
.mf_c00281{transform:matrix(0.618750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618750,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls1d_c00281{letter-spacing:-8.914500px;}
.ls14_c00281{letter-spacing:-8.250825px;}
.ls18_c00281{letter-spacing:-6.685875px;}
.ls1c_c00281{letter-spacing:-6.000300px;}
.ls17_c00281{letter-spacing:-5.945625px;}
.ls28_c00281{letter-spacing:-5.399625px;}
.ls24_c00281{letter-spacing:-5.350500px;}
.ls1e_c00281{letter-spacing:-5.343818px;}
.ls35_c00281{letter-spacing:-5.247900px;}
.ls19_c00281{letter-spacing:-5.196713px;}
.ls20_c00281{letter-spacing:-4.456463px;}
.ls29_c00281{letter-spacing:-4.321613px;}
.ls22_c00281{letter-spacing:-3.908055px;}
.ls15_c00281{letter-spacing:-3.717000px;}
.ls2b_c00281{letter-spacing:-3.238500px;}
.ls11_c00281{letter-spacing:-2.968875px;}
.ls13_c00281{letter-spacing:-2.229413px;}
.ls10_c00281{letter-spacing:-1.489163px;}
.ls36_c00281{letter-spacing:-1.083750px;}
.ls12_c00281{letter-spacing:-0.740250px;}
.ls1a_c00281{letter-spacing:0.000000px;}
.ls21_c00281{letter-spacing:0.993863px;}
.ls6_c00281{letter-spacing:1.070100px;}
.lsa_c00281{letter-spacing:1.083750px;}
.ls30_c00281{letter-spacing:1.269450px;}
.ls0_c00281{letter-spacing:1.489163px;}
.ls9_c00281{letter-spacing:2.161763px;}
.ls33_c00281{letter-spacing:2.266523px;}
.ls31_c00281{letter-spacing:2.403375px;}
.ls34_c00281{letter-spacing:2.524050px;}
.ls2c_c00281{letter-spacing:3.197250px;}
.ls5_c00281{letter-spacing:3.209648px;}
.lsd_c00281{letter-spacing:3.238500px;}
.ls4_c00281{letter-spacing:4.280400px;}
.lsf_c00281{letter-spacing:4.321613px;}
.ls16_c00281{letter-spacing:4.323375px;}
.ls2e_c00281{letter-spacing:4.792200px;}
.ls37_c00281{letter-spacing:5.060475px;}
.ls23_c00281{letter-spacing:5.350500px;}
.lsc_c00281{letter-spacing:5.399625px;}
.lsb_c00281{letter-spacing:6.483375px;}
.ls38_c00281{letter-spacing:6.525653px;}
.ls1b_c00281{letter-spacing:6.533175px;}
.ls32_c00281{letter-spacing:6.879600px;}
.ls27_c00281{letter-spacing:7.561388px;}
.ls3_c00281{letter-spacing:8.554275px;}
.ls26_c00281{letter-spacing:8.644500px;}
.ls2d_c00281{letter-spacing:9.045675px;}
.ls8_c00281{letter-spacing:9.625028px;}
.ls1f_c00281{letter-spacing:9.654750px;}
.ls2a_c00281{letter-spacing:9.721875px;}
.ls2f_c00281{letter-spacing:9.890100px;}
.ls7_c00281{letter-spacing:10.693823px;}
.ls25_c00281{letter-spacing:10.804988px;}
.ls1_c00281{letter-spacing:11.142338px;}
.ls2_c00281{letter-spacing:12.834675px;}
.lse_c00281{letter-spacing:14.044763px;}
.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;}
._1a_c00281{margin-left:-21.101380px;}
._10_c00281{margin-left:-19.304730px;}
._18_c00281{margin-left:-10.743701px;}
._f_c00281{margin-left:-7.865268px;}
._14_c00281{margin-left:-6.343363px;}
._8_c00281{margin-left:-4.242857px;}
._5_c00281{margin-left:-2.657634px;}
._1_c00281{margin-left:-1.033928px;}
._7_c00281{width:1.000660px;}
._4_c00281{width:2.027426px;}
._0_c00281{width:3.523022px;}
._2_c00281{width:5.519870px;}
._3_c00281{width:7.243574px;}
._9_c00281{width:9.224567px;}
._6_c00281{width:10.354971px;}
._b_c00281{width:12.467210px;}
._1b_c00281{width:13.955307px;}
._d_c00281{width:15.537286px;}
._a_c00281{width:17.009673px;}
._19_c00281{width:18.149949px;}
._c_c00281{width:21.409614px;}
._e_c00281{width:22.787457px;}
._17_c00281{width:26.925800px;}
._13_c00281{width:27.927257px;}
._11_c00281{width:29.172871px;}
._16_c00281{width:30.255577px;}
._15_c00281{width:41.052587px;}
._12_c00281{width:43.195158px;}
.fc0_c00281{color:transparent;}
.fsa_c00281{font-size:30.000000px;}
.fsf_c00281{font-size:58.500000px;}
.fs11_c00281{font-size:59.250000px;}
.fse_c00281{font-size:60.750000px;}
.fs10_c00281{font-size:62.250000px;}
.fs12_c00281{font-size:63.000000px;}
.fs8_c00281{font-size:63.750000px;}
.fs9_c00281{font-size:64.500000px;}
.fs7_c00281{font-size:65.250000px;}
.fs6_c00281{font-size:72.750000px;}
.fsd_c00281{font-size:73.500000px;}
.fs3_c00281{font-size:75.000000px;}
.fs0_c00281{font-size:78.750000px;}
.fs2_c00281{font-size:80.250000px;}
.fs1_c00281{font-size:82.500000px;}
.fs5_c00281{font-size:83.250000px;}
.fs4_c00281{font-size:84.750000px;}
.fsc_c00281{font-size:99.000000px;}
.fsb_c00281{font-size:100.500000px;}
.fs13_c00281{font-size:104.250000px;}
.y0_c00281{bottom:0.000000px;}
.y3c_c00281{bottom:68.760495px;}
.y34_c00281{bottom:92.159850px;}
.y33_c00281{bottom:104.760150px;}
.y31_c00281{bottom:116.278935px;}
.y32_c00281{bottom:116.279250px;}
.y30_c00281{bottom:127.800150px;}
.y28_c00281{bottom:139.680150px;}
.y27_c00281{bottom:139.680915px;}
.y1f_c00281{bottom:151.562235px;}
.y1e_c00281{bottom:163.440465px;}
.y26_c00281{bottom:210.599550px;}
.y49_c00281{bottom:210.600750px;}
.y3b_c00281{bottom:210.601005px;}
.y5e_c00281{bottom:210.601770px;}
.y25_c00281{bottom:245.878695px;}
.y48_c00281{bottom:245.879880px;}
.y3a_c00281{bottom:245.880105px;}
.y5d_c00281{bottom:245.880915px;}
.y24_c00281{bottom:269.279850px;}
.y47_c00281{bottom:269.281035px;}
.y39_c00281{bottom:269.281260px;}
.y5c_c00281{bottom:269.640525px;}
.y46_c00281{bottom:292.320330px;}
.y38_c00281{bottom:292.320555px;}
.y23_c00281{bottom:292.322250px;}
.y5b_c00281{bottom:292.679805px;}
.y37_c00281{bottom:315.359850px;}
.y22_c00281{bottom:315.361545px;}
.y5a_c00281{bottom:315.719100px;}
.y45_c00281{bottom:315.719760px;}
.y59_c00281{bottom:339.120000px;}
.y21_c00281{bottom:339.121140px;}
.y36_c00281{bottom:343.800135px;}
.y35_c00281{bottom:362.518800px;}
.y44_c00281{bottom:362.520120px;}
.y20_c00281{bottom:362.520585px;}
.y5f_c00281{bottom:362.521155px;}
.y58_c00281{bottom:362.523030px;}
.y2f_c00281{bottom:385.922085px;}
.y43_c00281{bottom:386.279730px;}
.y1d_c00281{bottom:386.280210px;}
.y50_c00281{bottom:386.281200px;}
.y57_c00281{bottom:386.282640px;}
.y42_c00281{bottom:409.680885px;}
.y1c_c00281{bottom:409.681350px;}
.y2e_c00281{bottom:409.681680px;}
.y4f_c00281{bottom:409.682355px;}
.y56_c00281{bottom:409.683795px;}
.y41_c00281{bottom:433.080315px;}
.y1b_c00281{bottom:433.080810px;}
.y2d_c00281{bottom:433.081140px;}
.y4e_c00281{bottom:433.081785px;}
.y55_c00281{bottom:433.083255px;}
.y40_c00281{bottom:456.839925px;}
.y1a_c00281{bottom:456.840405px;}
.y2c_c00281{bottom:456.840750px;}
.y4d_c00281{bottom:456.841395px;}
.y54_c00281{bottom:456.842850px;}
.y3f_c00281{bottom:479.519070px;}
.y19_c00281{bottom:479.879700px;}
.y2b_c00281{bottom:479.880045px;}
.y4c_c00281{bottom:479.880690px;}
.y53_c00281{bottom:479.882145px;}
.y2a_c00281{bottom:502.919340px;}
.y4b_c00281{bottom:502.919970px;}
.y3e_c00281{bottom:502.920225px;}
.y52_c00281{bottom:502.921440px;}
.y18_c00281{bottom:503.279130px;}
.y17_c00281{bottom:526.318425px;}
.y29_c00281{bottom:526.318770px;}
.y4a_c00281{bottom:526.319415px;}
.y3d_c00281{bottom:526.319670px;}
.y51_c00281{bottom:526.320870px;}
.y16_c00281{bottom:573.118785px;}
.y15_c00281{bottom:591.839535px;}
.y14_c00281{bottom:690.839280px;}
.y13_c00281{bottom:714.600135px;}
.y12_c00281{bottom:779.759370px;}
.y10_c00281{bottom:809.639055px;}
.y11_c00281{bottom:809.639100px;}
.ye_c00281{bottom:839.878830px;}
.yf_c00281{bottom:839.878965px;}
.yd_c00281{bottom:870.118740px;}
.yc_c00281{bottom:870.118770px;}
.ya_c00281{bottom:899.640060px;}
.yb_c00281{bottom:899.640105px;}
.y8_c00281{bottom:929.879190px;}
.y9_c00281{bottom:929.879970px;}
.y7_c00281{bottom:959.758920px;}
.y6_c00281{bottom:1019.159985px;}
.y5_c00281{bottom:1049.039700px;}
.y4_c00281{bottom:1079.279610px;}
.y2_c00281{bottom:1108.438065px;}
.y3_c00281{bottom:1108.438665px;}
.y1_c00281{bottom:1138.680090px;}
.hc_c00281{height:31.289062px;}
.h12_c00281{height:61.013672px;}
.h14_c00281{height:61.795898px;}
.hd_c00281{height:62.567139px;}
.h11_c00281{height:63.360352px;}
.ha_c00281{height:64.248047px;}
.h13_c00281{height:64.924805px;}
.hb_c00281{height:65.003906px;}
.h15_c00281{height:65.707031px;}
.h9_c00281{height:65.759766px;}
.h10_c00281{height:72.638672px;}
.h8_c00281{height:75.875977px;}
.h1_c00281{height:77.288818px;}
.h4_c00281{height:78.222656px;}
.h3_c00281{height:78.760986px;}
.h2_c00281{height:80.969238px;}
.h7_c00281{height:81.705322px;}
.h5_c00281{height:83.144531px;}
.h6_c00281{height:83.177490px;}
.hf_c00281{height:103.253906px;}
.he_c00281{height:104.818359px;}
.h16_c00281{height:108.729492px;}
.h0_c00281{height:1263.000000px;}
.w0_c00281{width:892.500000px;}
.x0_c00281{left:0.000000px;}
.x6_c00281{left:138.239280px;}
.x1_c00281{left:139.319250px;}
.x16_c00281{left:194.039400px;}
.x17_c00281{left:213.839535px;}
.x14_c00281{left:288.359850px;}
.x2_c00281{left:299.158785px;}
.x15_c00281{left:305.638500px;}
.x18_c00281{left:314.278800px;}
.x26_c00281{left:315.718275px;}
.x21_c00281{left:320.399235px;}
.x3_c00281{left:324.718500px;}
.x27_c00281{left:326.878950px;}
.x29_c00281{left:332.279250px;}
.x9_c00281{left:335.519100px;}
.x19_c00281{left:354.958350px;}
.x2a_c00281{left:356.039385px;}
.x2d_c00281{left:367.558635px;}
.x1a_c00281{left:384.118785px;}
.xa_c00281{left:392.038920px;}
.x1d_c00281{left:397.798515px;}
.xb_c00281{left:408.239820px;}
.x22_c00281{left:419.759085px;}
.x2b_c00281{left:426.238770px;}
.xc_c00281{left:428.758530px;}
.x28_c00281{left:431.279850px;}
.x32_c00281{left:442.439670px;}
.x1b_c00281{left:447.838530px;}
.x1e_c00281{left:455.758530px;}
.xd_c00281{left:464.039385px;}
.x2e_c00281{left:467.279250px;}
.x1c_c00281{left:471.959385px;}
.x23_c00281{left:477.719100px;}
.x11_c00281{left:482.758530px;}
.xe_c00281{left:484.559685px;}
.x33_c00281{left:488.880090px;}
.x2c_c00281{left:506.879520px;}
.x1f_c00281{left:513.718500px;}
.x12_c00281{left:520.199850px;}
.x2f_c00281{left:524.159820px;}
.x34_c00281{left:525.239610px;}
.x7_c00281{left:526.679670px;}
.x24_c00281{left:535.679070px;}
.x8_c00281{left:541.438620px;}
.x30_c00281{left:547.918350px;}
.x4_c00281{left:565.198785px;}
.x20_c00281{left:572.039385px;}
.x5_c00281{left:583.558635px;}
.x31_c00281{left:588.599670px;}
.x25_c00281{left:594.000000px;}
.x13_c00281{left:602.279250px;}
.x35_c00281{left:605.878605px;}
.xf_c00281{left:677.158770px;}
.x10_c00281{left:698.758530px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls1d_c00281{letter-spacing:-7.924000pt;}
.ls14_c00281{letter-spacing:-7.334067pt;}
.ls18_c00281{letter-spacing:-5.943000pt;}
.ls1c_c00281{letter-spacing:-5.333600pt;}
.ls17_c00281{letter-spacing:-5.285000pt;}
.ls28_c00281{letter-spacing:-4.799667pt;}
.ls24_c00281{letter-spacing:-4.756000pt;}
.ls1e_c00281{letter-spacing:-4.750060pt;}
.ls35_c00281{letter-spacing:-4.664800pt;}
.ls19_c00281{letter-spacing:-4.619300pt;}
.ls20_c00281{letter-spacing:-3.961300pt;}
.ls29_c00281{letter-spacing:-3.841433pt;}
.ls22_c00281{letter-spacing:-3.473827pt;}
.ls15_c00281{letter-spacing:-3.304000pt;}
.ls2b_c00281{letter-spacing:-2.878667pt;}
.ls11_c00281{letter-spacing:-2.639000pt;}
.ls13_c00281{letter-spacing:-1.981700pt;}
.ls10_c00281{letter-spacing:-1.323700pt;}
.ls36_c00281{letter-spacing:-0.963333pt;}
.ls12_c00281{letter-spacing:-0.658000pt;}
.ls1a_c00281{letter-spacing:0.000000pt;}
.ls21_c00281{letter-spacing:0.883433pt;}
.ls6_c00281{letter-spacing:0.951200pt;}
.lsa_c00281{letter-spacing:0.963333pt;}
.ls30_c00281{letter-spacing:1.128400pt;}
.ls0_c00281{letter-spacing:1.323700pt;}
.ls9_c00281{letter-spacing:1.921567pt;}
.ls33_c00281{letter-spacing:2.014687pt;}
.ls31_c00281{letter-spacing:2.136333pt;}
.ls34_c00281{letter-spacing:2.243600pt;}
.ls2c_c00281{letter-spacing:2.842000pt;}
.ls5_c00281{letter-spacing:2.853020pt;}
.lsd_c00281{letter-spacing:2.878667pt;}
.ls4_c00281{letter-spacing:3.804800pt;}
.lsf_c00281{letter-spacing:3.841433pt;}
.ls16_c00281{letter-spacing:3.843000pt;}
.ls2e_c00281{letter-spacing:4.259733pt;}
.ls37_c00281{letter-spacing:4.498200pt;}
.ls23_c00281{letter-spacing:4.756000pt;}
.lsc_c00281{letter-spacing:4.799667pt;}
.lsb_c00281{letter-spacing:5.763000pt;}
.ls38_c00281{letter-spacing:5.800580pt;}
.ls1b_c00281{letter-spacing:5.807267pt;}
.ls32_c00281{letter-spacing:6.115200pt;}
.ls27_c00281{letter-spacing:6.721233pt;}
.ls3_c00281{letter-spacing:7.603800pt;}
.ls26_c00281{letter-spacing:7.684000pt;}
.ls2d_c00281{letter-spacing:8.040600pt;}
.ls8_c00281{letter-spacing:8.555580pt;}
.ls1f_c00281{letter-spacing:8.582000pt;}
.ls2a_c00281{letter-spacing:8.641667pt;}
.ls2f_c00281{letter-spacing:8.791200pt;}
.ls7_c00281{letter-spacing:9.505620pt;}
.ls25_c00281{letter-spacing:9.604433pt;}
.ls1_c00281{letter-spacing:9.904300pt;}
.ls2_c00281{letter-spacing:11.408600pt;}
.lse_c00281{letter-spacing:12.484233pt;}
.ws0_c00281{word-spacing:0.000000pt;}
._1a_c00281{margin-left:-18.756782pt;}
._10_c00281{margin-left:-17.159760pt;}
._18_c00281{margin-left:-9.549956pt;}
._f_c00281{margin-left:-6.991349pt;}
._14_c00281{margin-left:-5.638545pt;}
._8_c00281{margin-left:-3.771428pt;}
._5_c00281{margin-left:-2.362342pt;}
._1_c00281{margin-left:-0.919047pt;}
._7_c00281{width:0.889475pt;}
._4_c00281{width:1.802157pt;}
._0_c00281{width:3.131575pt;}
._2_c00281{width:4.906551pt;}
._3_c00281{width:6.438732pt;}
._9_c00281{width:8.199615pt;}
._6_c00281{width:9.204419pt;}
._b_c00281{width:11.081964pt;}
._1b_c00281{width:12.404718pt;}
._d_c00281{width:13.810921pt;}
._a_c00281{width:15.119709pt;}
._19_c00281{width:16.133288pt;}
._c_c00281{width:19.030768pt;}
._e_c00281{width:20.255517pt;}
._17_c00281{width:23.934044pt;}
._13_c00281{width:24.824228pt;}
._11_c00281{width:25.931441pt;}
._16_c00281{width:26.893846pt;}
._15_c00281{width:36.491188pt;}
._12_c00281{width:38.395696pt;}
.fsa_c00281{font-size:26.666667pt;}
.fsf_c00281{font-size:52.000000pt;}
.fs11_c00281{font-size:52.666667pt;}
.fse_c00281{font-size:54.000000pt;}
.fs10_c00281{font-size:55.333333pt;}
.fs12_c00281{font-size:56.000000pt;}
.fs8_c00281{font-size:56.666667pt;}
.fs9_c00281{font-size:57.333333pt;}
.fs7_c00281{font-size:58.000000pt;}
.fs6_c00281{font-size:64.666667pt;}
.fsd_c00281{font-size:65.333333pt;}
.fs3_c00281{font-size:66.666667pt;}
.fs0_c00281{font-size:70.000000pt;}
.fs2_c00281{font-size:71.333333pt;}
.fs1_c00281{font-size:73.333333pt;}
.fs5_c00281{font-size:74.000000pt;}
.fs4_c00281{font-size:75.333333pt;}
.fsc_c00281{font-size:88.000000pt;}
.fsb_c00281{font-size:89.333333pt;}
.fs13_c00281{font-size:92.666667pt;}
.y0_c00281{bottom:0.000000pt;}
.y3c_c00281{bottom:61.120440pt;}
.y34_c00281{bottom:81.919867pt;}
.y33_c00281{bottom:93.120133pt;}
.y31_c00281{bottom:103.359053pt;}
.y32_c00281{bottom:103.359333pt;}
.y30_c00281{bottom:113.600133pt;}
.y28_c00281{bottom:124.160133pt;}
.y27_c00281{bottom:124.160813pt;}
.y1f_c00281{bottom:134.721987pt;}
.y1e_c00281{bottom:145.280413pt;}
.y26_c00281{bottom:187.199600pt;}
.y49_c00281{bottom:187.200667pt;}
.y3b_c00281{bottom:187.200893pt;}
.y5e_c00281{bottom:187.201573pt;}
.y25_c00281{bottom:218.558840pt;}
.y48_c00281{bottom:218.559893pt;}
.y3a_c00281{bottom:218.560093pt;}
.y5d_c00281{bottom:218.560813pt;}
.y24_c00281{bottom:239.359867pt;}
.y47_c00281{bottom:239.360920pt;}
.y39_c00281{bottom:239.361120pt;}
.y5c_c00281{bottom:239.680467pt;}
.y46_c00281{bottom:259.840293pt;}
.y38_c00281{bottom:259.840493pt;}
.y23_c00281{bottom:259.842000pt;}
.y5b_c00281{bottom:260.159827pt;}
.y37_c00281{bottom:280.319867pt;}
.y22_c00281{bottom:280.321373pt;}
.y5a_c00281{bottom:280.639200pt;}
.y45_c00281{bottom:280.639787pt;}
.y59_c00281{bottom:301.440000pt;}
.y21_c00281{bottom:301.441013pt;}
.y36_c00281{bottom:305.600120pt;}
.y35_c00281{bottom:322.238933pt;}
.y44_c00281{bottom:322.240107pt;}
.y20_c00281{bottom:322.240520pt;}
.y5f_c00281{bottom:322.241027pt;}
.y58_c00281{bottom:322.242693pt;}
.y2f_c00281{bottom:343.041853pt;}
.y43_c00281{bottom:343.359760pt;}
.y1d_c00281{bottom:343.360187pt;}
.y50_c00281{bottom:343.361067pt;}
.y57_c00281{bottom:343.362347pt;}
.y42_c00281{bottom:364.160787pt;}
.y1c_c00281{bottom:364.161200pt;}
.y2e_c00281{bottom:364.161493pt;}
.y4f_c00281{bottom:364.162093pt;}
.y56_c00281{bottom:364.163373pt;}
.y41_c00281{bottom:384.960280pt;}
.y1b_c00281{bottom:384.960720pt;}
.y2d_c00281{bottom:384.961013pt;}
.y4e_c00281{bottom:384.961587pt;}
.y55_c00281{bottom:384.962893pt;}
.y40_c00281{bottom:406.079933pt;}
.y1a_c00281{bottom:406.080360pt;}
.y2c_c00281{bottom:406.080667pt;}
.y4d_c00281{bottom:406.081240pt;}
.y54_c00281{bottom:406.082533pt;}
.y3f_c00281{bottom:426.239173pt;}
.y19_c00281{bottom:426.559733pt;}
.y2b_c00281{bottom:426.560040pt;}
.y4c_c00281{bottom:426.560613pt;}
.y53_c00281{bottom:426.561907pt;}
.y2a_c00281{bottom:447.039413pt;}
.y4b_c00281{bottom:447.039973pt;}
.y3e_c00281{bottom:447.040200pt;}
.y52_c00281{bottom:447.041280pt;}
.y18_c00281{bottom:447.359227pt;}
.y17_c00281{bottom:467.838600pt;}
.y29_c00281{bottom:467.838907pt;}
.y4a_c00281{bottom:467.839480pt;}
.y3d_c00281{bottom:467.839707pt;}
.y51_c00281{bottom:467.840773pt;}
.y16_c00281{bottom:509.438920pt;}
.y15_c00281{bottom:526.079587pt;}
.y14_c00281{bottom:614.079360pt;}
.y13_c00281{bottom:635.200120pt;}
.y12_c00281{bottom:693.119440pt;}
.y10_c00281{bottom:719.679160pt;}
.y11_c00281{bottom:719.679200pt;}
.ye_c00281{bottom:746.558960pt;}
.yf_c00281{bottom:746.559080pt;}
.yd_c00281{bottom:773.438880pt;}
.yc_c00281{bottom:773.438907pt;}
.ya_c00281{bottom:799.680053pt;}
.yb_c00281{bottom:799.680093pt;}
.y8_c00281{bottom:826.559280pt;}
.y9_c00281{bottom:826.559973pt;}
.y7_c00281{bottom:853.119040pt;}
.y6_c00281{bottom:905.919987pt;}
.y5_c00281{bottom:932.479733pt;}
.y4_c00281{bottom:959.359653pt;}
.y2_c00281{bottom:985.278280pt;}
.y3_c00281{bottom:985.278813pt;}
.y1_c00281{bottom:1012.160080pt;}
.hc_c00281{height:27.812500pt;}
.h12_c00281{height:54.234375pt;}
.h14_c00281{height:54.929688pt;}
.hd_c00281{height:55.615234pt;}
.h11_c00281{height:56.320312pt;}
.ha_c00281{height:57.109375pt;}
.h13_c00281{height:57.710938pt;}
.hb_c00281{height:57.781250pt;}
.h15_c00281{height:58.406250pt;}
.h9_c00281{height:58.453125pt;}
.h10_c00281{height:64.567708pt;}
.h8_c00281{height:67.445312pt;}
.h1_c00281{height:68.701172pt;}
.h4_c00281{height:69.531250pt;}
.h3_c00281{height:70.009766pt;}
.h2_c00281{height:71.972656pt;}
.h7_c00281{height:72.626953pt;}
.h5_c00281{height:73.906250pt;}
.h6_c00281{height:73.935547pt;}
.hf_c00281{height:91.781250pt;}
.he_c00281{height:93.171875pt;}
.h16_c00281{height:96.648438pt;}
.h0_c00281{height:1122.666667pt;}
.w0_c00281{width:793.333333pt;}
.x0_c00281{left:0.000000pt;}
.x6_c00281{left:122.879360pt;}
.x1_c00281{left:123.839333pt;}
.x16_c00281{left:172.479467pt;}
.x17_c00281{left:190.079587pt;}
.x14_c00281{left:256.319867pt;}
.x2_c00281{left:265.918920pt;}
.x15_c00281{left:271.678667pt;}
.x18_c00281{left:279.358933pt;}
.x26_c00281{left:280.638467pt;}
.x21_c00281{left:284.799320pt;}
.x3_c00281{left:288.638667pt;}
.x27_c00281{left:290.559067pt;}
.x29_c00281{left:295.359333pt;}
.x9_c00281{left:298.239200pt;}
.x19_c00281{left:315.518533pt;}
.x2a_c00281{left:316.479453pt;}
.x2d_c00281{left:326.718787pt;}
.x1a_c00281{left:341.438920pt;}
.xa_c00281{left:348.479040pt;}
.x1d_c00281{left:353.598680pt;}
.xb_c00281{left:362.879840pt;}
.x22_c00281{left:373.119187pt;}
.x2b_c00281{left:378.878907pt;}
.xc_c00281{left:381.118693pt;}
.x28_c00281{left:383.359867pt;}
.x32_c00281{left:393.279707pt;}
.x1b_c00281{left:398.078693pt;}
.x1e_c00281{left:405.118693pt;}
.xd_c00281{left:412.479453pt;}
.x2e_c00281{left:415.359333pt;}
.x1c_c00281{left:419.519453pt;}
.x23_c00281{left:424.639200pt;}
.x11_c00281{left:429.118693pt;}
.xe_c00281{left:430.719720pt;}
.x33_c00281{left:434.560080pt;}
.x2c_c00281{left:450.559573pt;}
.x1f_c00281{left:456.638667pt;}
.x12_c00281{left:462.399867pt;}
.x2f_c00281{left:465.919840pt;}
.x34_c00281{left:466.879653pt;}
.x7_c00281{left:468.159707pt;}
.x24_c00281{left:476.159173pt;}
.x8_c00281{left:481.278773pt;}
.x30_c00281{left:487.038533pt;}
.x4_c00281{left:502.398920pt;}
.x20_c00281{left:508.479453pt;}
.x5_c00281{left:518.718787pt;}
.x31_c00281{left:523.199707pt;}
.x25_c00281{left:528.000000pt;}
.x13_c00281{left:535.359333pt;}
.x35_c00281{left:538.558760pt;}
.xf_c00281{left:601.918907pt;}
.x10_c00281{left:621.118693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7098d175da260de9e8d7c59e.woff2')format("woff");}.ff1_c00282{font-family:ff1_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:ff2_c00282;src:url('chunks/assets/font_e814a96b6c2ed21661300b12.woff2')format("woff");}.ff2_c00282{font-family:ff2_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:ff3_c00282;src:url('chunks/assets/font_9ad256afcc53789581872cc0.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.432129;font-style:normal;font-weight:normal;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_0b96962795132cfb44503599.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_00dcaa0f76989444de655240.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00282;src:url('chunks/assets/font_0c55ed5348e34b046113b196.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:1.432129;font-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_c00282{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.049419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049419,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.059459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059459,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.115310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115310,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.134690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134690,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m1e_c00282{transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);}
.m1c_c00282{transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{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);}
.mc_c00282{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m1f_c00282{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.410377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410377,0.000000,0.000000,0.250000,0,0);}
.v3_c00282{vertical-align:-43.204740px;}
.v1_c00282{vertical-align:-41.761260px;}
.v0_c00282{vertical-align:0.000000px;}
.v2_c00282{vertical-align:5.763300px;}
.lse_c00282{letter-spacing:-5.351145px;}
.ls15_c00282{letter-spacing:-5.056200px;}
.lsf_c00282{letter-spacing:-4.586355px;}
.ls7_c00282{letter-spacing:-4.544910px;}
.ls6_c00282{letter-spacing:-3.860025px;}
.ls17_c00282{letter-spacing:-3.823950px;}
.ls11_c00282{letter-spacing:-3.200273px;}
.ls12_c00282{letter-spacing:-3.060750px;}
.ls13_c00282{letter-spacing:-2.968875px;}
.ls3_c00282{letter-spacing:-2.310398px;}
.lsa_c00282{letter-spacing:-2.288805px;}
.ls4_c00282{letter-spacing:-2.271878px;}
.ls5_c00282{letter-spacing:-1.540800px;}
.lsc_c00282{letter-spacing:-1.526400px;}
.ls9_c00282{letter-spacing:-0.809190px;}
.lsd_c00282{letter-spacing:-0.763200px;}
.ls8_c00282{letter-spacing:0.000000px;}
.ls1_c00282{letter-spacing:0.763200px;}
.ls14_c00282{letter-spacing:1.526400px;}
.ls2_c00282{letter-spacing:2.288805px;}
.ls10_c00282{letter-spacing:2.838945px;}
.ls0_c00282{letter-spacing:3.060750px;}
.lsb_c00282{letter-spacing:3.823950px;}
.ls16_c00282{letter-spacing:30.275048px;}
.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;}
._16_c00282{margin-left:-16.448795px;}
._0_c00282{margin-left:-2.888938px;}
._1_c00282{width:3.988487px;}
._3_c00282{width:5.047293px;}
._18_c00282{width:9.500497px;}
._2_c00282{width:11.460935px;}
._19_c00282{width:13.503903px;}
._f_c00282{width:132.192478px;}
._e_c00282{width:176.605458px;}
._c_c00282{width:186.499478px;}
._5_c00282{width:191.189305px;}
._15_c00282{width:194.584322px;}
._9_c00282{width:199.422203px;}
._4_c00282{width:207.463383px;}
._10_c00282{width:219.944822px;}
._17_c00282{width:231.035133px;}
._8_c00282{width:236.954703px;}
._b_c00282{width:239.887887px;}
._d_c00282{width:268.153439px;}
._6_c00282{width:274.202838px;}
._7_c00282{width:336.507417px;}
._14_c00282{width:389.462489px;}
._a_c00282{width:475.211617px;}
._11_c00282{width:638.980700px;}
._12_c00282{width:1109.017295px;}
._13_c00282{width:1891.439056px;}
.fc0_c00282{color:transparent;}
.fs12_c00282{font-size:22.500000px;}
.fs5_c00282{font-size:28.500000px;}
.fs9_c00282{font-size:34.500000px;}
.fsd_c00282{font-size:39.750000px;}
.fs8_c00282{font-size:72.750000px;}
.fs7_c00282{font-size:75.000000px;}
.fs3_c00282{font-size:77.250000px;}
.fsf_c00282{font-size:78.750000px;}
.fs2_c00282{font-size:79.500000px;}
.fs0_c00282{font-size:80.250000px;}
.fs1_c00282{font-size:81.000000px;}
.fse_c00282{font-size:81.750000px;}
.fsc_c00282{font-size:84.000000px;}
.fs10_c00282{font-size:85.500000px;}
.fs11_c00282{font-size:101.250000px;}
.fs6_c00282{font-size:138.750000px;}
.fsa_c00282{font-size:161.250000px;}
.fs4_c00282{font-size:177.000000px;}
.fsb_c00282{font-size:193.500000px;}
.y0_c00282{bottom:0.000000px;}
.y22_c00282{bottom:273.599370px;}
.y21_c00282{bottom:334.078995px;}
.y20_c00282{bottom:364.318800px;}
.y1f_c00282{bottom:364.319085px;}
.y1e_c00282{bottom:393.479550px;}
.y1d_c00282{bottom:463.680135px;}
.y1c_c00282{bottom:489.599070px;}
.y1a_c00282{bottom:493.559100px;}
.y1b_c00282{bottom:504.719100px;}
.y19_c00282{bottom:533.879520px;}
.y18_c00282{bottom:545.398635px;}
.y17_c00282{bottom:585.719100px;}
.y16_c00282{bottom:614.518620px;}
.y15_c00282{bottom:625.319235px;}
.y14_c00282{bottom:625.319250px;}
.y13_c00282{bottom:665.639700px;}
.y12_c00282{bottom:705.960480px;}
.y11_c00282{bottom:746.278800px;}
.y10_c00282{bottom:775.800105px;}
.yf_c00282{bottom:787.319730px;}
.yd_c00282{bottom:824.938080px;}
.ye_c00282{bottom:825.120030px;}
.yc_c00282{bottom:868.679100px;}
.yb_c00282{bottom:909.359205px;}
.ya_c00282{bottom:950.039340px;}
.y9_c00282{bottom:990.359805px;}
.y8_c00282{bottom:1000.799565px;}
.y7_c00282{bottom:1015.919490px;}
.y5_c00282{bottom:1020.599670px;}
.y4_c00282{bottom:1030.680090px;}
.y6_c00282{bottom:1031.039340px;}
.y2_c00282{bottom:1100.879175px;}
.y3_c00282{bottom:1100.879520px;}
.y1_c00282{bottom:1131.478635px;}
.h18_c00282{height:23.466797px;}
.h7_c00282{height:28.722656px;}
.hb_c00282{height:35.982422px;}
.h12_c00282{height:40.060547px;}
.h15_c00282{height:75.816650px;}
.ha_c00282{height:75.875977px;}
.h14_c00282{height:77.288818px;}
.h4_c00282{height:77.853516px;}
.h5_c00282{height:78.024902px;}
.h9_c00282{height:78.222656px;}
.hc_c00282{height:78.740582px;}
.h3_c00282{height:80.121094px;}
.h13_c00282{height:80.233154px;}
.h1_c00282{height:80.876953px;}
.h2_c00282{height:81.632812px;}
.h10_c00282{height:82.441406px;}
.h11_c00282{height:82.916016px;}
.h16_c00282{height:84.498047px;}
.he_c00282{height:89.544242px;}
.h17_c00282{height:105.600586px;}
.h8_c00282{height:144.711914px;}
.hd_c00282{height:168.178711px;}
.h6_c00282{height:184.605469px;}
.hf_c00282{height:201.814453px;}
.h0_c00282{height:1263.000000px;}
.w0_c00282{width:892.500000px;}
.x0_c00282{left:0.000000px;}
.x1e_c00282{left:218.880045px;}
.x1_c00282{left:219.958350px;}
.x9_c00282{left:221.398635px;}
.x19_c00282{left:246.239850px;}
.x2_c00282{left:278.638500px;}
.x3_c00282{left:308.159850px;}
.xa_c00282{left:313.199385px;}
.x15_c00282{left:314.998950px;}
.x16_c00282{left:375.119385px;}
.x1c_c00282{left:379.438635px;}
.xb_c00282{left:384.838950px;}
.x17_c00282{left:392.399820px;}
.x13_c00282{left:404.639100px;}
.x1b_c00282{left:409.319235px;}
.xe_c00282{left:410.398635px;}
.x4_c00282{left:435.239820px;}
.xf_c00282{left:453.238770px;}
.x5_c00282{left:455.399235px;}
.x14_c00282{left:464.039385px;}
.x1a_c00282{left:486.718500px;}
.x6_c00282{left:496.078770px;}
.xc_c00282{left:504.719100px;}
.x10_c00282{left:516.958335px;}
.x7_c00282{left:542.519670px;}
.x8_c00282{left:557.639700px;}
.x18_c00282{left:572.759535px;}
.xd_c00282{left:579.239220px;}
.x1f_c00282{left:592.559685px;}
.x11_c00282{left:600.118785px;}
.x20_c00282{left:620.279850px;}
.x12_c00282{left:648.000000px;}
.x1d_c00282{left:686.159820px;}
@media print{
.v3_c00282{vertical-align:-38.404213pt;}
.v1_c00282{vertical-align:-37.121120pt;}
.v0_c00282{vertical-align:0.000000pt;}
.v2_c00282{vertical-align:5.122933pt;}
.lse_c00282{letter-spacing:-4.756573pt;}
.ls15_c00282{letter-spacing:-4.494400pt;}
.lsf_c00282{letter-spacing:-4.076760pt;}
.ls7_c00282{letter-spacing:-4.039920pt;}
.ls6_c00282{letter-spacing:-3.431133pt;}
.ls17_c00282{letter-spacing:-3.399067pt;}
.ls11_c00282{letter-spacing:-2.844687pt;}
.ls12_c00282{letter-spacing:-2.720667pt;}
.ls13_c00282{letter-spacing:-2.639000pt;}
.ls3_c00282{letter-spacing:-2.053687pt;}
.lsa_c00282{letter-spacing:-2.034493pt;}
.ls4_c00282{letter-spacing:-2.019447pt;}
.ls5_c00282{letter-spacing:-1.369600pt;}
.lsc_c00282{letter-spacing:-1.356800pt;}
.ls9_c00282{letter-spacing:-0.719280pt;}
.lsd_c00282{letter-spacing:-0.678400pt;}
.ls8_c00282{letter-spacing:0.000000pt;}
.ls1_c00282{letter-spacing:0.678400pt;}
.ls14_c00282{letter-spacing:1.356800pt;}
.ls2_c00282{letter-spacing:2.034493pt;}
.ls10_c00282{letter-spacing:2.523507pt;}
.ls0_c00282{letter-spacing:2.720667pt;}
.lsb_c00282{letter-spacing:3.399067pt;}
.ls16_c00282{letter-spacing:26.911153pt;}
.ws0_c00282{word-spacing:0.000000pt;}
._16_c00282{margin-left:-14.621151pt;}
._0_c00282{margin-left:-2.567945pt;}
._1_c00282{width:3.545322pt;}
._3_c00282{width:4.486483pt;}
._18_c00282{width:8.444886pt;}
._2_c00282{width:10.187497pt;}
._19_c00282{width:12.003469pt;}
._f_c00282{width:117.504425pt;}
._e_c00282{width:156.982630pt;}
._c_c00282{width:165.777314pt;}
._5_c00282{width:169.946049pt;}
._15_c00282{width:172.963842pt;}
._9_c00282{width:177.264181pt;}
._4_c00282{width:184.411896pt;}
._10_c00282{width:195.506509pt;}
._17_c00282{width:205.364563pt;}
._8_c00282{width:210.626403pt;}
._b_c00282{width:213.233677pt;}
._d_c00282{width:238.358612pt;}
._6_c00282{width:243.735856pt;}
._7_c00282{width:299.117704pt;}
._14_c00282{width:346.188879pt;}
._a_c00282{width:422.410326pt;}
._11_c00282{width:567.982844pt;}
._12_c00282{width:985.793151pt;}
._13_c00282{width:1681.279161pt;}
.fs12_c00282{font-size:20.000000pt;}
.fs5_c00282{font-size:25.333333pt;}
.fs9_c00282{font-size:30.666667pt;}
.fsd_c00282{font-size:35.333333pt;}
.fs8_c00282{font-size:64.666667pt;}
.fs7_c00282{font-size:66.666667pt;}
.fs3_c00282{font-size:68.666667pt;}
.fsf_c00282{font-size:70.000000pt;}
.fs2_c00282{font-size:70.666667pt;}
.fs0_c00282{font-size:71.333333pt;}
.fs1_c00282{font-size:72.000000pt;}
.fse_c00282{font-size:72.666667pt;}
.fsc_c00282{font-size:74.666667pt;}
.fs10_c00282{font-size:76.000000pt;}
.fs11_c00282{font-size:90.000000pt;}
.fs6_c00282{font-size:123.333333pt;}
.fsa_c00282{font-size:143.333333pt;}
.fs4_c00282{font-size:157.333333pt;}
.fsb_c00282{font-size:172.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y22_c00282{bottom:243.199440pt;}
.y21_c00282{bottom:296.959107pt;}
.y20_c00282{bottom:323.838933pt;}
.y1f_c00282{bottom:323.839187pt;}
.y1e_c00282{bottom:349.759600pt;}
.y1d_c00282{bottom:412.160120pt;}
.y1c_c00282{bottom:435.199173pt;}
.y1a_c00282{bottom:438.719200pt;}
.y1b_c00282{bottom:448.639200pt;}
.y19_c00282{bottom:474.559573pt;}
.y18_c00282{bottom:484.798787pt;}
.y17_c00282{bottom:520.639200pt;}
.y16_c00282{bottom:546.238773pt;}
.y15_c00282{bottom:555.839320pt;}
.y14_c00282{bottom:555.839333pt;}
.y13_c00282{bottom:591.679733pt;}
.y12_c00282{bottom:627.520427pt;}
.y11_c00282{bottom:663.358933pt;}
.y10_c00282{bottom:689.600093pt;}
.yf_c00282{bottom:699.839760pt;}
.yd_c00282{bottom:733.278293pt;}
.ye_c00282{bottom:733.440027pt;}
.yc_c00282{bottom:772.159200pt;}
.yb_c00282{bottom:808.319293pt;}
.ya_c00282{bottom:844.479413pt;}
.y9_c00282{bottom:880.319827pt;}
.y8_c00282{bottom:889.599613pt;}
.y7_c00282{bottom:903.039547pt;}
.y5_c00282{bottom:907.199707pt;}
.y4_c00282{bottom:916.160080pt;}
.y6_c00282{bottom:916.479413pt;}
.y2_c00282{bottom:978.559267pt;}
.y3_c00282{bottom:978.559573pt;}
.y1_c00282{bottom:1005.758787pt;}
.h18_c00282{height:20.859375pt;}
.h7_c00282{height:25.531250pt;}
.hb_c00282{height:31.984375pt;}
.h12_c00282{height:35.609375pt;}
.h15_c00282{height:67.392578pt;}
.ha_c00282{height:67.445312pt;}
.h14_c00282{height:68.701172pt;}
.h4_c00282{height:69.203125pt;}
.h5_c00282{height:69.355469pt;}
.h9_c00282{height:69.531250pt;}
.hc_c00282{height:69.991629pt;}
.h3_c00282{height:71.218750pt;}
.h13_c00282{height:71.318359pt;}
.h1_c00282{height:71.890625pt;}
.h2_c00282{height:72.562500pt;}
.h10_c00282{height:73.281250pt;}
.h11_c00282{height:73.703125pt;}
.h16_c00282{height:75.109375pt;}
.he_c00282{height:79.594882pt;}
.h17_c00282{height:93.867188pt;}
.h8_c00282{height:128.632812pt;}
.hd_c00282{height:149.492188pt;}
.h6_c00282{height:164.093750pt;}
.hf_c00282{height:179.390625pt;}
.h0_c00282{height:1122.666667pt;}
.w0_c00282{width:793.333333pt;}
.x0_c00282{left:0.000000pt;}
.x1e_c00282{left:194.560040pt;}
.x1_c00282{left:195.518533pt;}
.x9_c00282{left:196.798787pt;}
.x19_c00282{left:218.879867pt;}
.x2_c00282{left:247.678667pt;}
.x3_c00282{left:273.919867pt;}
.xa_c00282{left:278.399453pt;}
.x15_c00282{left:279.999067pt;}
.x16_c00282{left:333.439453pt;}
.x1c_c00282{left:337.278787pt;}
.xb_c00282{left:342.079067pt;}
.x17_c00282{left:348.799840pt;}
.x13_c00282{left:359.679200pt;}
.x1b_c00282{left:363.839320pt;}
.xe_c00282{left:364.798787pt;}
.x4_c00282{left:386.879840pt;}
.xf_c00282{left:402.878907pt;}
.x5_c00282{left:404.799320pt;}
.x14_c00282{left:412.479453pt;}
.x1a_c00282{left:432.638667pt;}
.x6_c00282{left:440.958907pt;}
.xc_c00282{left:448.639200pt;}
.x10_c00282{left:459.518520pt;}
.x7_c00282{left:482.239707pt;}
.x8_c00282{left:495.679733pt;}
.x18_c00282{left:509.119587pt;}
.xd_c00282{left:514.879307pt;}
.x1f_c00282{left:526.719720pt;}
.x11_c00282{left:533.438920pt;}
.x20_c00282{left:551.359867pt;}
.x12_c00282{left:576.000000pt;}
.x1d_c00282{left:609.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cb2c7a507e5040c7e603b87.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_1c82b010ba3babc00dd65ba0.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_9d86cd373f2e2f51b717c094.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_d5c9c8c43ecefc1c893c9a47.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00283;src:url('chunks/assets/font_5d4421be4e11fe67bb6ade22.woff2')format("woff");}.ff7_c00283{font-family:ff7_c00283;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00283{transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{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);}
.m23_c00283{transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m27_c00283{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m1c_c00283{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.m20_c00283{transform:matrix(0.313218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313218,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls2b_c00283{letter-spacing:-19.146668px;}
.ls18_c00283{letter-spacing:-15.656775px;}
.ls22_c00283{letter-spacing:-13.495073px;}
.ls16_c00283{letter-spacing:-13.033703px;}
.ls29_c00283{letter-spacing:-12.573675px;}
.ls1d_c00283{letter-spacing:-12.508650px;}
.ls2f_c00283{letter-spacing:-11.196000px;}
.ls1a_c00283{letter-spacing:-10.961100px;}
.ls12_c00283{letter-spacing:-9.754725px;}
.ls1e_c00283{letter-spacing:-9.568912px;}
.lsb_c00283{letter-spacing:-8.835750px;}
.ls14_c00283{letter-spacing:-7.363913px;}
.ls27_c00283{letter-spacing:-7.098000px;}
.ls5_c00283{letter-spacing:-6.687150px;}
.ls9_c00283{letter-spacing:-6.623663px;}
.ls2d_c00283{letter-spacing:-6.503100px;}
.ls1f_c00283{letter-spacing:-5.890500px;}
.ls10_c00283{letter-spacing:-5.779800px;}
.ls2a_c00283{letter-spacing:-5.300400px;}
.lsf_c00283{letter-spacing:-5.150250px;}
.ls7_c00283{letter-spacing:-4.418663px;}
.ls26_c00283{letter-spacing:-3.932175px;}
.ls1c_c00283{letter-spacing:-3.853575px;}
.ls3_c00283{letter-spacing:-3.678413px;}
.ls8_c00283{letter-spacing:-3.660000px;}
.ls4_c00283{letter-spacing:-2.945250px;}
.ls28_c00283{letter-spacing:-2.374050px;}
.ls15_c00283{letter-spacing:-2.298450px;}
.ls6_c00283{letter-spacing:-2.205000px;}
.ls2c_c00283{letter-spacing:-1.789200px;}
.lse_c00283{letter-spacing:-1.473413px;}
.ls25_c00283{letter-spacing:-0.770400px;}
.lsa_c00283{letter-spacing:-0.731588px;}
.ls13_c00283{letter-spacing:0.000000px;}
.ls24_c00283{letter-spacing:0.668115px;}
.ls2_c00283{letter-spacing:0.731588px;}
.ls20_c00283{letter-spacing:0.768450px;}
.ls19_c00283{letter-spacing:0.818100px;}
.ls0_c00283{letter-spacing:1.473413px;}
.lsc_c00283{letter-spacing:1.782000px;}
.ls17_c00283{letter-spacing:1.831500px;}
.ls21_c00283{letter-spacing:1.838250px;}
.ls23_c00283{letter-spacing:1.870500px;}
.ls1_c00283{letter-spacing:2.205000px;}
.ls2e_c00283{letter-spacing:2.646555px;}
.lsd_c00283{letter-spacing:3.696840px;}
.ls1b_c00283{letter-spacing:3.772440px;}
.ls11_c00283{letter-spacing:31.043220px;}
.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;}
._8_c00283{margin-left:-15.802601px;}
._1c_c00283{margin-left:-12.721349px;}
._b_c00283{margin-left:-6.992021px;}
._11_c00283{margin-left:-5.748691px;}
._a_c00283{margin-left:-4.551779px;}
._7_c00283{margin-left:-3.024177px;}
._9_c00283{margin-left:-1.551772px;}
._15_c00283{width:1.369926px;}
._12_c00283{width:2.448786px;}
._14_c00283{width:3.762955px;}
._13_c00283{width:5.828898px;}
._18_c00283{width:6.946721px;}
._2_c00283{width:8.544861px;}
._5_c00283{width:10.249754px;}
._1_c00283{width:11.734015px;}
._0_c00283{width:12.943725px;}
._4_c00283{width:14.325229px;}
._1a_c00283{width:15.424498px;}
._3_c00283{width:17.089810px;}
._19_c00283{width:19.030740px;}
._1d_c00283{width:20.037687px;}
._10_c00283{width:21.132231px;}
._6_c00283{width:22.823803px;}
._c_c00283{width:24.856437px;}
._1b_c00283{width:26.792745px;}
._f_c00283{width:27.908588px;}
._e_c00283{width:30.791397px;}
._d_c00283{width:32.288295px;}
._16_c00283{width:37.228820px;}
._17_c00283{width:41.192462px;}
.fc0_c00283{color:transparent;}
.fsf_c00283{font-size:60.000000px;}
.fs10_c00283{font-size:65.250000px;}
.fs12_c00283{font-size:72.000000px;}
.fse_c00283{font-size:73.500000px;}
.fs2_c00283{font-size:75.000000px;}
.fs6_c00283{font-size:78.000000px;}
.fs0_c00283{font-size:78.750000px;}
.fs11_c00283{font-size:79.500000px;}
.fsb_c00283{font-size:80.250000px;}
.fs3_c00283{font-size:81.000000px;}
.fs1_c00283{font-size:81.750000px;}
.fs8_c00283{font-size:82.500000px;}
.fsa_c00283{font-size:83.250000px;}
.fs4_c00283{font-size:84.000000px;}
.fs7_c00283{font-size:84.750000px;}
.fs5_c00283{font-size:85.500000px;}
.fsc_c00283{font-size:87.000000px;}
.fsd_c00283{font-size:87.750000px;}
.fs9_c00283{font-size:115.500000px;}
.y0_c00283{bottom:0.000000px;}
.y32_c00283{bottom:135.360555px;}
.y31_c00283{bottom:186.839565px;}
.y30_c00283{bottom:216.360900px;}
.y2f_c00283{bottom:216.360990px;}
.y2e_c00283{bottom:246.600900px;}
.y2c_c00283{bottom:276.119655px;}
.y2d_c00283{bottom:276.120435px;}
.y2b_c00283{bottom:305.999385px;}
.y2a_c00283{bottom:306.001305px;}
.y29_c00283{bottom:335.881020px;}
.y27_c00283{bottom:365.759970px;}
.y28_c00283{bottom:365.760750px;}
.y26_c00283{bottom:395.639700px;}
.y25_c00283{bottom:425.520315px;}
.y24_c00283{bottom:425.521155px;}
.y23_c00283{bottom:455.400885px;}
.y22_c00283{bottom:455.402550px;}
.y21_c00283{bottom:486.000840px;}
.y20_c00283{bottom:515.880570px;}
.y1f_c00283{bottom:515.881785px;}
.y1e_c00283{bottom:545.401320px;}
.y1d_c00283{bottom:574.920840px;}
.y1c_c00283{bottom:604.800570px;}
.y1b_c00283{bottom:604.800750px;}
.y1a_c00283{bottom:634.320285px;}
.y18_c00283{bottom:664.200285px;}
.y19_c00283{bottom:664.201035px;}
.y17_c00283{bottom:694.080000px;}
.y16_c00283{bottom:754.559685px;}
.y14_c00283{bottom:784.078905px;}
.y15_c00283{bottom:784.079400px;}
.y12_c00283{bottom:814.320780px;}
.y13_c00283{bottom:814.320930px;}
.y10_c00283{bottom:844.559940px;}
.y11_c00283{bottom:844.560705px;}
.yf_c00283{bottom:874.439670px;}
.ye_c00283{bottom:874.439730px;}
.yd_c00283{bottom:904.679655px;}
.yb_c00283{bottom:934.200420px;}
.yc_c00283{bottom:934.200990px;}
.ya_c00283{bottom:964.080135px;}
.y9_c00283{bottom:993.599670px;}
.y8_c00283{bottom:993.600510px;}
.y7_c00283{bottom:1023.840435px;}
.y5_c00283{bottom:1053.720015px;}
.y6_c00283{bottom:1053.720150px;}
.y4_c00283{bottom:1083.959925px;}
.y2_c00283{bottom:1113.839790px;}
.y3_c00283{bottom:1113.840540px;}
.y1_c00283{bottom:1143.719520px;}
.h15_c00283{height:60.468750px;}
.h18_c00283{height:65.759766px;}
.h12_c00283{height:72.136230px;}
.h1b_c00283{height:75.093750px;}
.h7_c00283{height:76.552734px;}
.h16_c00283{height:76.658203px;}
.h1_c00283{height:77.288818px;}
.h1a_c00283{height:78.024902px;}
.h3_c00283{height:78.222656px;}
.he_c00283{height:78.760986px;}
.hd_c00283{height:79.309570px;}
.h4_c00283{height:79.497070px;}
.h2_c00283{height:80.233154px;}
.h9_c00283{height:80.969238px;}
.h17_c00283{height:81.632812px;}
.hc_c00283{height:81.705322px;}
.h14_c00283{height:82.388672px;}
.h5_c00283{height:82.441406px;}
.h13_c00283{height:83.015625px;}
.h8_c00283{height:83.177490px;}
.hb_c00283{height:83.756836px;}
.h10_c00283{height:83.913574px;}
.h6_c00283{height:84.498047px;}
.h19_c00283{height:84.656250px;}
.hf_c00283{height:85.385742px;}
.h11_c00283{height:86.721680px;}
.ha_c00283{height:120.462891px;}
.h0_c00283{height:1263.000000px;}
.w0_c00283{width:892.500000px;}
.x0_c00283{left:0.000000px;}
.x29_c00283{left:143.277720px;}
.x12_c00283{left:144.360810px;}
.x7_c00283{left:145.439715px;}
.x1_c00283{left:146.519100px;}
.x15_c00283{left:179.998950px;}
.x16_c00283{left:203.759100px;}
.x42_c00283{left:213.839535px;}
.x24_c00283{left:216.718500px;}
.x19_c00283{left:227.519100px;}
.x2a_c00283{left:230.399850px;}
.x25_c00283{left:235.798515px;}
.x3e_c00283{left:245.158785px;}
.x1a_c00283{left:252.358635px;}
.x43_c00283{left:259.558635px;}
.x2b_c00283{left:271.079385px;}
.x44_c00283{left:278.638500px;}
.x8_c00283{left:300.239850px;}
.x26_c00283{left:308.159850px;}
.x31_c00283{left:309.598530px;}
.x9_c00283{left:322.559685px;}
.x2_c00283{left:335.159850px;}
.x3_c00283{left:362.159850px;}
.x32_c00283{left:367.558635px;}
.x33_c00283{left:386.638500px;}
.xe_c00283{left:390.239220px;}
.x2c_c00283{left:402.119385px;}
.xf_c00283{left:412.559100px;}
.x2d_c00283{left:417.239220px;}
.x3f_c00283{left:426.238770px;}
.x13_c00283{left:430.559685px;}
.x34_c00283{left:435.599070px;}
.x2e_c00283{left:440.279250px;}
.x40_c00283{left:445.679670px;}
.x1e_c00283{left:460.079400px;}
.x1b_c00283{left:465.118785px;}
.x14_c00283{left:468.719565px;}
.x1f_c00283{left:483.839535px;}
.x1c_c00283{left:485.279850px;}
.x35_c00283{left:497.519070px;}
.x36_c00283{left:520.199850px;}
.x20_c00283{left:549.719565px;}
.x4_c00283{left:551.519070px;}
.x5_c00283{left:573.118785px;}
.xa_c00283{left:577.439670px;}
.x17_c00283{left:587.879520px;}
.xb_c00283{left:596.519670px;}
.x37_c00283{left:600.118785px;}
.x27_c00283{left:604.078770px;}
.x18_c00283{left:605.519070px;}
.xc_c00283{left:610.199385px;}
.x3c_c00283{left:619.918950px;}
.x28_c00283{left:622.799520px;}
.x2f_c00283{left:629.638545px;}
.x10_c00283{left:635.759085px;}
.xd_c00283{left:641.879520px;}
.x11_c00283{left:649.799520px;}
.x3d_c00283{left:652.678530px;}
.x1d_c00283{left:656.638545px;}
.x38_c00283{left:669.238770px;}
.x21_c00283{left:692.278800px;}
.x41_c00283{left:695.879520px;}
.x39_c00283{left:701.279850px;}
.x22_c00283{left:710.279250px;}
.x3a_c00283{left:724.319820px;}
.x30_c00283{left:734.759535px;}
.x3b_c00283{left:744.119985px;}
.x23_c00283{left:754.559685px;}
.x45_c00283{left:758.880615px;}
.x6_c00283{left:769.679715px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls2b_c00283{letter-spacing:-17.019260pt;}
.ls18_c00283{letter-spacing:-13.917133pt;}
.ls22_c00283{letter-spacing:-11.995620pt;}
.ls16_c00283{letter-spacing:-11.585513pt;}
.ls29_c00283{letter-spacing:-11.176600pt;}
.ls1d_c00283{letter-spacing:-11.118800pt;}
.ls2f_c00283{letter-spacing:-9.952000pt;}
.ls1a_c00283{letter-spacing:-9.743200pt;}
.ls12_c00283{letter-spacing:-8.670867pt;}
.ls1e_c00283{letter-spacing:-8.505700pt;}
.lsb_c00283{letter-spacing:-7.854000pt;}
.ls14_c00283{letter-spacing:-6.545700pt;}
.ls27_c00283{letter-spacing:-6.309333pt;}
.ls5_c00283{letter-spacing:-5.944133pt;}
.ls9_c00283{letter-spacing:-5.887700pt;}
.ls2d_c00283{letter-spacing:-5.780533pt;}
.ls1f_c00283{letter-spacing:-5.236000pt;}
.ls10_c00283{letter-spacing:-5.137600pt;}
.ls2a_c00283{letter-spacing:-4.711467pt;}
.lsf_c00283{letter-spacing:-4.578000pt;}
.ls7_c00283{letter-spacing:-3.927700pt;}
.ls26_c00283{letter-spacing:-3.495267pt;}
.ls1c_c00283{letter-spacing:-3.425400pt;}
.ls3_c00283{letter-spacing:-3.269700pt;}
.ls8_c00283{letter-spacing:-3.253333pt;}
.ls4_c00283{letter-spacing:-2.618000pt;}
.ls28_c00283{letter-spacing:-2.110267pt;}
.ls15_c00283{letter-spacing:-2.043067pt;}
.ls6_c00283{letter-spacing:-1.960000pt;}
.ls2c_c00283{letter-spacing:-1.590400pt;}
.lse_c00283{letter-spacing:-1.309700pt;}
.ls25_c00283{letter-spacing:-0.684800pt;}
.lsa_c00283{letter-spacing:-0.650300pt;}
.ls13_c00283{letter-spacing:0.000000pt;}
.ls24_c00283{letter-spacing:0.593880pt;}
.ls2_c00283{letter-spacing:0.650300pt;}
.ls20_c00283{letter-spacing:0.683067pt;}
.ls19_c00283{letter-spacing:0.727200pt;}
.ls0_c00283{letter-spacing:1.309700pt;}
.lsc_c00283{letter-spacing:1.584000pt;}
.ls17_c00283{letter-spacing:1.628000pt;}
.ls21_c00283{letter-spacing:1.634000pt;}
.ls23_c00283{letter-spacing:1.662667pt;}
.ls1_c00283{letter-spacing:1.960000pt;}
.ls2e_c00283{letter-spacing:2.352493pt;}
.lsd_c00283{letter-spacing:3.286080pt;}
.ls1b_c00283{letter-spacing:3.353280pt;}
.ls11_c00283{letter-spacing:27.593973pt;}
.ws0_c00283{word-spacing:0.000000pt;}
._8_c00283{margin-left:-14.046756pt;}
._1c_c00283{margin-left:-11.307865pt;}
._b_c00283{margin-left:-6.215130pt;}
._11_c00283{margin-left:-5.109948pt;}
._a_c00283{margin-left:-4.046026pt;}
._7_c00283{margin-left:-2.688157pt;}
._9_c00283{margin-left:-1.379353pt;}
._15_c00283{width:1.217712pt;}
._12_c00283{width:2.176699pt;}
._14_c00283{width:3.344849pt;}
._13_c00283{width:5.181243pt;}
._18_c00283{width:6.174864pt;}
._2_c00283{width:7.595432pt;}
._5_c00283{width:9.110893pt;}
._1_c00283{width:10.430236pt;}
._0_c00283{width:11.505534pt;}
._4_c00283{width:12.733536pt;}
._1a_c00283{width:13.710664pt;}
._3_c00283{width:15.190942pt;}
._19_c00283{width:16.916213pt;}
._1d_c00283{width:17.811278pt;}
._10_c00283{width:18.784206pt;}
._6_c00283{width:20.287825pt;}
._c_c00283{width:22.094610pt;}
._1b_c00283{width:23.815773pt;}
._f_c00283{width:24.807634pt;}
._e_c00283{width:27.370131pt;}
._d_c00283{width:28.700707pt;}
._16_c00283{width:33.092284pt;}
._17_c00283{width:36.615521pt;}
.fsf_c00283{font-size:53.333333pt;}
.fs10_c00283{font-size:58.000000pt;}
.fs12_c00283{font-size:64.000000pt;}
.fse_c00283{font-size:65.333333pt;}
.fs2_c00283{font-size:66.666667pt;}
.fs6_c00283{font-size:69.333333pt;}
.fs0_c00283{font-size:70.000000pt;}
.fs11_c00283{font-size:70.666667pt;}
.fsb_c00283{font-size:71.333333pt;}
.fs3_c00283{font-size:72.000000pt;}
.fs1_c00283{font-size:72.666667pt;}
.fs8_c00283{font-size:73.333333pt;}
.fsa_c00283{font-size:74.000000pt;}
.fs4_c00283{font-size:74.666667pt;}
.fs7_c00283{font-size:75.333333pt;}
.fs5_c00283{font-size:76.000000pt;}
.fsc_c00283{font-size:77.333333pt;}
.fsd_c00283{font-size:78.000000pt;}
.fs9_c00283{font-size:102.666667pt;}
.y0_c00283{bottom:0.000000pt;}
.y32_c00283{bottom:120.320493pt;}
.y31_c00283{bottom:166.079613pt;}
.y30_c00283{bottom:192.320800pt;}
.y2f_c00283{bottom:192.320880pt;}
.y2e_c00283{bottom:219.200800pt;}
.y2c_c00283{bottom:245.439693pt;}
.y2d_c00283{bottom:245.440387pt;}
.y2b_c00283{bottom:271.999453pt;}
.y2a_c00283{bottom:272.001160pt;}
.y29_c00283{bottom:298.560907pt;}
.y27_c00283{bottom:325.119973pt;}
.y28_c00283{bottom:325.120667pt;}
.y26_c00283{bottom:351.679733pt;}
.y25_c00283{bottom:378.240280pt;}
.y24_c00283{bottom:378.241027pt;}
.y23_c00283{bottom:404.800787pt;}
.y22_c00283{bottom:404.802267pt;}
.y21_c00283{bottom:432.000747pt;}
.y20_c00283{bottom:458.560507pt;}
.y1f_c00283{bottom:458.561587pt;}
.y1e_c00283{bottom:484.801173pt;}
.y1d_c00283{bottom:511.040747pt;}
.y1c_c00283{bottom:537.600507pt;}
.y1b_c00283{bottom:537.600667pt;}
.y1a_c00283{bottom:563.840253pt;}
.y18_c00283{bottom:590.400253pt;}
.y19_c00283{bottom:590.400920pt;}
.y17_c00283{bottom:616.960000pt;}
.y16_c00283{bottom:670.719720pt;}
.y14_c00283{bottom:696.959027pt;}
.y15_c00283{bottom:696.959467pt;}
.y12_c00283{bottom:723.840693pt;}
.y13_c00283{bottom:723.840827pt;}
.y10_c00283{bottom:750.719947pt;}
.y11_c00283{bottom:750.720627pt;}
.yf_c00283{bottom:777.279707pt;}
.ye_c00283{bottom:777.279760pt;}
.yd_c00283{bottom:804.159693pt;}
.yb_c00283{bottom:830.400373pt;}
.yc_c00283{bottom:830.400880pt;}
.ya_c00283{bottom:856.960120pt;}
.y9_c00283{bottom:883.199707pt;}
.y8_c00283{bottom:883.200453pt;}
.y7_c00283{bottom:910.080387pt;}
.y5_c00283{bottom:936.640013pt;}
.y6_c00283{bottom:936.640133pt;}
.y4_c00283{bottom:963.519933pt;}
.y2_c00283{bottom:990.079813pt;}
.y3_c00283{bottom:990.080480pt;}
.y1_c00283{bottom:1016.639573pt;}
.h15_c00283{height:53.750000pt;}
.h18_c00283{height:58.453125pt;}
.h12_c00283{height:64.121094pt;}
.h1b_c00283{height:66.750000pt;}
.h7_c00283{height:68.046875pt;}
.h16_c00283{height:68.140625pt;}
.h1_c00283{height:68.701172pt;}
.h1a_c00283{height:69.355469pt;}
.h3_c00283{height:69.531250pt;}
.he_c00283{height:70.009766pt;}
.hd_c00283{height:70.497396pt;}
.h4_c00283{height:70.664062pt;}
.h2_c00283{height:71.318359pt;}
.h9_c00283{height:71.972656pt;}
.h17_c00283{height:72.562500pt;}
.hc_c00283{height:72.626953pt;}
.h14_c00283{height:73.234375pt;}
.h5_c00283{height:73.281250pt;}
.h13_c00283{height:73.791667pt;}
.h8_c00283{height:73.935547pt;}
.hb_c00283{height:74.450521pt;}
.h10_c00283{height:74.589844pt;}
.h6_c00283{height:75.109375pt;}
.h19_c00283{height:75.250000pt;}
.hf_c00283{height:75.898438pt;}
.h11_c00283{height:77.085938pt;}
.ha_c00283{height:107.078125pt;}
.h0_c00283{height:1122.666667pt;}
.w0_c00283{width:793.333333pt;}
.x0_c00283{left:0.000000pt;}
.x29_c00283{left:127.357973pt;}
.x12_c00283{left:128.320720pt;}
.x7_c00283{left:129.279747pt;}
.x1_c00283{left:130.239200pt;}
.x15_c00283{left:159.999067pt;}
.x16_c00283{left:181.119200pt;}
.x42_c00283{left:190.079587pt;}
.x24_c00283{left:192.638667pt;}
.x19_c00283{left:202.239200pt;}
.x2a_c00283{left:204.799867pt;}
.x25_c00283{left:209.598680pt;}
.x3e_c00283{left:217.918920pt;}
.x1a_c00283{left:224.318787pt;}
.x43_c00283{left:230.718787pt;}
.x2b_c00283{left:240.959453pt;}
.x44_c00283{left:247.678667pt;}
.x8_c00283{left:266.879867pt;}
.x26_c00283{left:273.919867pt;}
.x31_c00283{left:275.198693pt;}
.x9_c00283{left:286.719720pt;}
.x2_c00283{left:297.919867pt;}
.x3_c00283{left:321.919867pt;}
.x32_c00283{left:326.718787pt;}
.x33_c00283{left:343.678667pt;}
.xe_c00283{left:346.879307pt;}
.x2c_c00283{left:357.439453pt;}
.xf_c00283{left:366.719200pt;}
.x2d_c00283{left:370.879307pt;}
.x3f_c00283{left:378.878907pt;}
.x13_c00283{left:382.719720pt;}
.x34_c00283{left:387.199173pt;}
.x2e_c00283{left:391.359333pt;}
.x40_c00283{left:396.159707pt;}
.x1e_c00283{left:408.959467pt;}
.x1b_c00283{left:413.438920pt;}
.x14_c00283{left:416.639613pt;}
.x1f_c00283{left:430.079587pt;}
.x1c_c00283{left:431.359867pt;}
.x35_c00283{left:442.239173pt;}
.x36_c00283{left:462.399867pt;}
.x20_c00283{left:488.639613pt;}
.x4_c00283{left:490.239173pt;}
.x5_c00283{left:509.438920pt;}
.xa_c00283{left:513.279707pt;}
.x17_c00283{left:522.559573pt;}
.xb_c00283{left:530.239707pt;}
.x37_c00283{left:533.438920pt;}
.x27_c00283{left:536.958907pt;}
.x18_c00283{left:538.239173pt;}
.xc_c00283{left:542.399453pt;}
.x3c_c00283{left:551.039067pt;}
.x28_c00283{left:553.599573pt;}
.x2f_c00283{left:559.678707pt;}
.x10_c00283{left:565.119187pt;}
.xd_c00283{left:570.559573pt;}
.x11_c00283{left:577.599573pt;}
.x3d_c00283{left:580.158693pt;}
.x1d_c00283{left:583.678707pt;}
.x38_c00283{left:594.878907pt;}
.x21_c00283{left:615.358933pt;}
.x41_c00283{left:618.559573pt;}
.x39_c00283{left:623.359867pt;}
.x22_c00283{left:631.359333pt;}
.x3a_c00283{left:643.839840pt;}
.x30_c00283{left:653.119587pt;}
.x3b_c00283{left:661.439987pt;}
.x23_c00283{left:670.719720pt;}
.x45_c00283{left:674.560547pt;}
.x6_c00283{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_834f767511d9c307cd815597.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_a0b25f8358037222ded45c4b.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_98aecd73c51f3411ca78bb8a.woff2')format("woff");}.ff4_c00284{font-family:ff4_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;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_2909b587262986ede2c87fa7.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00284{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);}
.m9_c00284{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00284{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.219008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219008,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{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_c00284{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m20_c00284{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522727,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls22_c00284{letter-spacing:-13.274250px;}
.lse_c00284{letter-spacing:-12.771000px;}
.ls18_c00284{letter-spacing:-12.572333px;}
.ls10_c00284{letter-spacing:-10.672650px;}
.lsf_c00284{letter-spacing:-8.835750px;}
.ls14_c00284{letter-spacing:-8.357250px;}
.ls5_c00284{letter-spacing:-8.250825px;}
.ls11_c00284{letter-spacing:-8.095500px;}
.ls1e_c00284{letter-spacing:-7.567575px;}
.ls12_c00284{letter-spacing:-7.499250px;}
.lsd_c00284{letter-spacing:-7.363913px;}
.ls17_c00284{letter-spacing:-6.623663px;}
.ls15_c00284{letter-spacing:-5.890500px;}
.lsb_c00284{letter-spacing:-5.296875px;}
.ls1d_c00284{letter-spacing:-5.272200px;}
.ls8_c00284{letter-spacing:-5.150250px;}
.ls1f_c00284{letter-spacing:-4.725000px;}
.ls13_c00284{letter-spacing:-4.626233px;}
.ls1_c00284{letter-spacing:-4.418663px;}
.lsc_c00284{letter-spacing:-4.341600px;}
.ls1b_c00284{letter-spacing:-4.283400px;}
.ls16_c00284{letter-spacing:-3.783510px;}
.ls4_c00284{letter-spacing:-3.678413px;}
.ls25_c00284{letter-spacing:-3.213000px;}
.ls0_c00284{letter-spacing:-2.945250px;}
.lsa_c00284{letter-spacing:-2.229413px;}
.ls2_c00284{letter-spacing:-2.205000px;}
.ls21_c00284{letter-spacing:-1.598325px;}
.ls1a_c00284{letter-spacing:-1.581750px;}
.ls6_c00284{letter-spacing:-1.473413px;}
.ls1c_c00284{letter-spacing:-0.846653px;}
.ls20_c00284{letter-spacing:-0.756000px;}
.ls24_c00284{letter-spacing:-0.734648px;}
.ls7_c00284{letter-spacing:-0.731588px;}
.ls9_c00284{letter-spacing:0.000000px;}
.ls19_c00284{letter-spacing:1.610250px;}
.ls3_c00284{letter-spacing:1.848000px;}
.ls23_c00284{letter-spacing:4.102800px;}
.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;}
._1e_c00284{margin-left:-8.667196px;}
._11_c00284{margin-left:-7.402529px;}
._14_c00284{margin-left:-5.330889px;}
._d_c00284{margin-left:-4.071714px;}
._f_c00284{margin-left:-2.737917px;}
._15_c00284{margin-left:-1.695245px;}
._16_c00284{width:1.177018px;}
._c_c00284{width:2.187866px;}
._5_c00284{width:3.933136px;}
._3_c00284{width:5.220639px;}
._0_c00284{width:6.662309px;}
._2_c00284{width:8.505147px;}
._13_c00284{width:9.546428px;}
._1_c00284{width:10.909149px;}
._17_c00284{width:12.005982px;}
._4_c00284{width:13.108313px;}
._e_c00284{width:14.653248px;}
._a_c00284{width:15.989996px;}
._10_c00284{width:17.705120px;}
._b_c00284{width:18.900059px;}
._12_c00284{width:20.424637px;}
._6_c00284{width:21.986764px;}
._18_c00284{width:23.297216px;}
._7_c00284{width:24.557429px;}
._9_c00284{width:25.782375px;}
._8_c00284{width:27.185089px;}
._1d_c00284{width:51.722470px;}
._1c_c00284{width:55.139867px;}
._1b_c00284{width:58.172110px;}
._19_c00284{width:60.637942px;}
._1a_c00284{width:63.862158px;}
.fc0_c00284{color:transparent;}
.fs6_c00284{font-size:75.000000px;}
.fs9_c00284{font-size:75.750000px;}
.fsb_c00284{font-size:77.250000px;}
.fsc_c00284{font-size:78.000000px;}
.fs0_c00284{font-size:78.750000px;}
.fsa_c00284{font-size:80.250000px;}
.fs4_c00284{font-size:81.000000px;}
.fs7_c00284{font-size:81.750000px;}
.fs2_c00284{font-size:82.500000px;}
.fs5_c00284{font-size:83.250000px;}
.fs1_c00284{font-size:84.000000px;}
.fs3_c00284{font-size:84.750000px;}
.fs8_c00284{font-size:90.750000px;}
.y0_c00284{bottom:0.000000px;}
.y26_c00284{bottom:246.239850px;}
.y25_c00284{bottom:275.759715px;}
.y24_c00284{bottom:305.279250px;}
.y23_c00284{bottom:334.800585px;}
.y22_c00284{bottom:334.801065px;}
.y21_c00284{bottom:364.320600px;}
.y20_c00284{bottom:393.840135px;}
.y1f_c00284{bottom:424.080000px;}
.y1d_c00284{bottom:453.599580px;}
.y1e_c00284{bottom:453.599670px;}
.y1c_c00284{bottom:483.839490px;}
.y1a_c00284{bottom:514.078875px;}
.y1b_c00284{bottom:514.079400px;}
.y19_c00284{bottom:573.119745px;}
.y18_c00284{bottom:603.359670px;}
.y17_c00284{bottom:632.518710px;}
.y16_c00284{bottom:662.760720px;}
.y15_c00284{bottom:692.280435px;}
.y14_c00284{bottom:692.281350px;}
.y12_c00284{bottom:782.638590px;}
.y13_c00284{bottom:782.639100px;}
.y11_c00284{bottom:812.880615px;}
.y10_c00284{bottom:842.759490px;}
.yf_c00284{bottom:842.759625px;}
.ye_c00284{bottom:872.279160px;}
.yd_c00284{bottom:902.519070px;}
.yc_c00284{bottom:902.519280px;}
.ya_c00284{bottom:932.040480px;}
.yb_c00284{bottom:932.040615px;}
.y8_c00284{bottom:962.279640px;}
.y9_c00284{bottom:962.280390px;}
.y6_c00284{bottom:992.159310px;}
.y7_c00284{bottom:992.159370px;}
.y5_c00284{bottom:1022.399235px;}
.y4_c00284{bottom:1022.399295px;}
.y3_c00284{bottom:1051.920645px;}
.y2_c00284{bottom:1111.680090px;}
.y1_c00284{bottom:1141.559055px;}
.h8_c00284{height:73.608398px;}
.he_c00284{height:74.344482px;}
.h14_c00284{height:75.816650px;}
.h13_c00284{height:76.552734px;}
.h1_c00284{height:77.288818px;}
.h11_c00284{height:77.853516px;}
.h15_c00284{height:78.760986px;}
.h12_c00284{height:79.004883px;}
.hf_c00284{height:79.365234px;}
.h5_c00284{height:79.497070px;}
.h9_c00284{height:80.233154px;}
.ha_c00284{height:80.791992px;}
.h10_c00284{height:80.876953px;}
.h3_c00284{height:80.969238px;}
.h6_c00284{height:81.533203px;}
.hc_c00284{height:81.705322px;}
.h7_c00284{height:82.274414px;}
.h2_c00284{height:82.441406px;}
.h4_c00284{height:83.177490px;}
.hb_c00284{height:85.412109px;}
.hd_c00284{height:89.066162px;}
.h0_c00284{height:1263.000000px;}
.w0_c00284{width:892.500000px;}
.x0_c00284{left:0.000000px;}
.x5_c00284{left:142.200135px;}
.x1_c00284{left:143.279250px;}
.x36_c00284{left:158.758500px;}
.x37_c00284{left:178.199415px;}
.x20_c00284{left:234.719100px;}
.x38_c00284{left:245.158785px;}
.x10_c00284{left:248.039385px;}
.x30_c00284{left:249.118785px;}
.x11_c00284{left:267.839535px;}
.x31_c00284{left:275.759535px;}
.x21_c00284{left:291.958950px;}
.x6_c00284{left:314.998950px;}
.x7_c00284{left:332.279250px;}
.x8_c00284{left:341.278800px;}
.x29_c00284{left:362.878350px;}
.x9_c00284{left:364.679700px;}
.xc_c00284{left:368.639700px;}
.x2a_c00284{left:383.398635px;}
.xd_c00284{left:385.918350px;}
.x2_c00284{left:394.558635px;}
.x22_c00284{left:413.999400px;}
.x3_c00284{left:419.038920px;}
.x23_c00284{left:431.279850px;}
.xe_c00284{left:446.759085px;}
.x24_c00284{left:452.518620px;}
.xa_c00284{left:463.319235px;}
.xf_c00284{left:474.838530px;}
.x2b_c00284{left:476.278800px;}
.x17_c00284{left:479.159415px;}
.xb_c00284{left:484.918950px;}
.x2c_c00284{left:496.798920px;}
.x25_c00284{left:499.318770px;}
.x18_c00284{left:500.759085px;}
.x2d_c00284{left:561.599670px;}
.x12_c00284{left:563.399235px;}
.x14_c00284{left:569.878920px;}
.x13_c00284{left:583.199385px;}
.x2e_c00284{left:586.080000px;}
.x15_c00284{left:590.758530px;}
.x19_c00284{left:592.918950px;}
.x1a_c00284{left:612.359850px;}
.x26_c00284{left:668.518620px;}
.x1e_c00284{left:675.359250px;}
.x1b_c00284{left:686.519070px;}
.x27_c00284{left:690.838530px;}
.x1f_c00284{left:694.798560px;}
.x32_c00284{left:696.238770px;}
.x2f_c00284{left:698.758530px;}
.x1c_c00284{left:703.079355px;}
.x33_c00284{left:727.918950px;}
.x34_c00284{left:752.399235px;}
.x28_c00284{left:759.958335px;}
.x1d_c00284{left:762.479685px;}
.x4_c00284{left:766.078770px;}
.x35_c00284{left:768.598575px;}
.x16_c00284{left:773.639655px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls22_c00284{letter-spacing:-11.799333pt;}
.lse_c00284{letter-spacing:-11.352000pt;}
.ls18_c00284{letter-spacing:-11.175407pt;}
.ls10_c00284{letter-spacing:-9.486800pt;}
.lsf_c00284{letter-spacing:-7.854000pt;}
.ls14_c00284{letter-spacing:-7.428667pt;}
.ls5_c00284{letter-spacing:-7.334067pt;}
.ls11_c00284{letter-spacing:-7.196000pt;}
.ls1e_c00284{letter-spacing:-6.726733pt;}
.ls12_c00284{letter-spacing:-6.666000pt;}
.lsd_c00284{letter-spacing:-6.545700pt;}
.ls17_c00284{letter-spacing:-5.887700pt;}
.ls15_c00284{letter-spacing:-5.236000pt;}
.lsb_c00284{letter-spacing:-4.708333pt;}
.ls1d_c00284{letter-spacing:-4.686400pt;}
.ls8_c00284{letter-spacing:-4.578000pt;}
.ls1f_c00284{letter-spacing:-4.200000pt;}
.ls13_c00284{letter-spacing:-4.112207pt;}
.ls1_c00284{letter-spacing:-3.927700pt;}
.lsc_c00284{letter-spacing:-3.859200pt;}
.ls1b_c00284{letter-spacing:-3.807467pt;}
.ls16_c00284{letter-spacing:-3.363120pt;}
.ls4_c00284{letter-spacing:-3.269700pt;}
.ls25_c00284{letter-spacing:-2.856000pt;}
.ls0_c00284{letter-spacing:-2.618000pt;}
.lsa_c00284{letter-spacing:-1.981700pt;}
.ls2_c00284{letter-spacing:-1.960000pt;}
.ls21_c00284{letter-spacing:-1.420733pt;}
.ls1a_c00284{letter-spacing:-1.406000pt;}
.ls6_c00284{letter-spacing:-1.309700pt;}
.ls1c_c00284{letter-spacing:-0.752580pt;}
.ls20_c00284{letter-spacing:-0.672000pt;}
.ls24_c00284{letter-spacing:-0.653020pt;}
.ls7_c00284{letter-spacing:-0.650300pt;}
.ls9_c00284{letter-spacing:0.000000pt;}
.ls19_c00284{letter-spacing:1.431333pt;}
.ls3_c00284{letter-spacing:1.642667pt;}
.ls23_c00284{letter-spacing:3.646933pt;}
.ws0_c00284{word-spacing:0.000000pt;}
._1e_c00284{margin-left:-7.704174pt;}
._11_c00284{margin-left:-6.580026pt;}
._14_c00284{margin-left:-4.738568pt;}
._d_c00284{margin-left:-3.619301pt;}
._f_c00284{margin-left:-2.433704pt;}
._15_c00284{margin-left:-1.506884pt;}
._16_c00284{width:1.046238pt;}
._c_c00284{width:1.944770pt;}
._5_c00284{width:3.496121pt;}
._3_c00284{width:4.640568pt;}
._0_c00284{width:5.922052pt;}
._2_c00284{width:7.560131pt;}
._13_c00284{width:8.485714pt;}
._1_c00284{width:9.697021pt;}
._17_c00284{width:10.671984pt;}
._4_c00284{width:11.651834pt;}
._e_c00284{width:13.025109pt;}
._a_c00284{width:14.213330pt;}
._10_c00284{width:15.737884pt;}
._b_c00284{width:16.800052pt;}
._12_c00284{width:18.155233pt;}
._6_c00284{width:19.543791pt;}
._18_c00284{width:20.708636pt;}
._7_c00284{width:21.828826pt;}
._9_c00284{width:22.917666pt;}
._8_c00284{width:24.164523pt;}
._1d_c00284{width:45.975529pt;}
._1c_c00284{width:49.013215pt;}
._1b_c00284{width:51.708542pt;}
._19_c00284{width:53.900393pt;}
._1a_c00284{width:56.766363pt;}
.fs6_c00284{font-size:66.666667pt;}
.fs9_c00284{font-size:67.333333pt;}
.fsb_c00284{font-size:68.666667pt;}
.fsc_c00284{font-size:69.333333pt;}
.fs0_c00284{font-size:70.000000pt;}
.fsa_c00284{font-size:71.333333pt;}
.fs4_c00284{font-size:72.000000pt;}
.fs7_c00284{font-size:72.666667pt;}
.fs2_c00284{font-size:73.333333pt;}
.fs5_c00284{font-size:74.000000pt;}
.fs1_c00284{font-size:74.666667pt;}
.fs3_c00284{font-size:75.333333pt;}
.fs8_c00284{font-size:80.666667pt;}
.y0_c00284{bottom:0.000000pt;}
.y26_c00284{bottom:218.879867pt;}
.y25_c00284{bottom:245.119747pt;}
.y24_c00284{bottom:271.359333pt;}
.y23_c00284{bottom:297.600520pt;}
.y22_c00284{bottom:297.600947pt;}
.y21_c00284{bottom:323.840533pt;}
.y20_c00284{bottom:350.080120pt;}
.y1f_c00284{bottom:376.960000pt;}
.y1d_c00284{bottom:403.199627pt;}
.y1e_c00284{bottom:403.199707pt;}
.y1c_c00284{bottom:430.079547pt;}
.y1a_c00284{bottom:456.959000pt;}
.y1b_c00284{bottom:456.959467pt;}
.y19_c00284{bottom:509.439773pt;}
.y18_c00284{bottom:536.319707pt;}
.y17_c00284{bottom:562.238853pt;}
.y16_c00284{bottom:589.120640pt;}
.y15_c00284{bottom:615.360387pt;}
.y14_c00284{bottom:615.361200pt;}
.y12_c00284{bottom:695.678747pt;}
.y13_c00284{bottom:695.679200pt;}
.y11_c00284{bottom:722.560547pt;}
.y10_c00284{bottom:749.119547pt;}
.yf_c00284{bottom:749.119667pt;}
.ye_c00284{bottom:775.359253pt;}
.yd_c00284{bottom:802.239173pt;}
.yc_c00284{bottom:802.239360pt;}
.ya_c00284{bottom:828.480427pt;}
.yb_c00284{bottom:828.480547pt;}
.y8_c00284{bottom:855.359680pt;}
.y9_c00284{bottom:855.360347pt;}
.y6_c00284{bottom:881.919387pt;}
.y7_c00284{bottom:881.919440pt;}
.y5_c00284{bottom:908.799320pt;}
.y4_c00284{bottom:908.799373pt;}
.y3_c00284{bottom:935.040573pt;}
.y2_c00284{bottom:988.160080pt;}
.y1_c00284{bottom:1014.719160pt;}
.h8_c00284{height:65.429688pt;}
.he_c00284{height:66.083984pt;}
.h14_c00284{height:67.392578pt;}
.h13_c00284{height:68.046875pt;}
.h1_c00284{height:68.701172pt;}
.h11_c00284{height:69.203125pt;}
.h15_c00284{height:70.009766pt;}
.h12_c00284{height:70.226562pt;}
.hf_c00284{height:70.546875pt;}
.h5_c00284{height:70.664062pt;}
.h9_c00284{height:71.318359pt;}
.ha_c00284{height:71.815104pt;}
.h10_c00284{height:71.890625pt;}
.h3_c00284{height:71.972656pt;}
.h6_c00284{height:72.473958pt;}
.hc_c00284{height:72.626953pt;}
.h7_c00284{height:73.132813pt;}
.h2_c00284{height:73.281250pt;}
.h4_c00284{height:73.935547pt;}
.hb_c00284{height:75.921875pt;}
.hd_c00284{height:79.169922pt;}
.h0_c00284{height:1122.666667pt;}
.w0_c00284{width:793.333333pt;}
.x0_c00284{left:0.000000pt;}
.x5_c00284{left:126.400120pt;}
.x1_c00284{left:127.359333pt;}
.x36_c00284{left:141.118667pt;}
.x37_c00284{left:158.399480pt;}
.x20_c00284{left:208.639200pt;}
.x38_c00284{left:217.918920pt;}
.x10_c00284{left:220.479453pt;}
.x30_c00284{left:221.438920pt;}
.x11_c00284{left:238.079587pt;}
.x31_c00284{left:245.119587pt;}
.x21_c00284{left:259.519067pt;}
.x6_c00284{left:279.999067pt;}
.x7_c00284{left:295.359333pt;}
.x8_c00284{left:303.358933pt;}
.x29_c00284{left:322.558533pt;}
.x9_c00284{left:324.159733pt;}
.xc_c00284{left:327.679733pt;}
.x2a_c00284{left:340.798787pt;}
.xd_c00284{left:343.038533pt;}
.x2_c00284{left:350.718787pt;}
.x22_c00284{left:367.999467pt;}
.x3_c00284{left:372.479040pt;}
.x23_c00284{left:383.359867pt;}
.xe_c00284{left:397.119187pt;}
.x24_c00284{left:402.238773pt;}
.xa_c00284{left:411.839320pt;}
.xf_c00284{left:422.078693pt;}
.x2b_c00284{left:423.358933pt;}
.x17_c00284{left:425.919480pt;}
.xb_c00284{left:431.039067pt;}
.x2c_c00284{left:441.599040pt;}
.x25_c00284{left:443.838907pt;}
.x18_c00284{left:445.119187pt;}
.x2d_c00284{left:499.199707pt;}
.x12_c00284{left:500.799320pt;}
.x14_c00284{left:506.559040pt;}
.x13_c00284{left:518.399453pt;}
.x2e_c00284{left:520.960000pt;}
.x15_c00284{left:525.118693pt;}
.x19_c00284{left:527.039067pt;}
.x1a_c00284{left:544.319867pt;}
.x26_c00284{left:594.238773pt;}
.x1e_c00284{left:600.319333pt;}
.x1b_c00284{left:610.239173pt;}
.x27_c00284{left:614.078693pt;}
.x1f_c00284{left:617.598720pt;}
.x32_c00284{left:618.878907pt;}
.x2f_c00284{left:621.118693pt;}
.x1c_c00284{left:624.959427pt;}
.x33_c00284{left:647.039067pt;}
.x34_c00284{left:668.799320pt;}
.x28_c00284{left:675.518520pt;}
.x1d_c00284{left:677.759720pt;}
.x4_c00284{left:680.958907pt;}
.x35_c00284{left:683.198733pt;}
.x16_c00284{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b08d613334cbf501da3b78d3.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_8ecdf425aafdcb8bc3385263.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.364746;font-style:normal;font-weight:normal;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_08dcc6c565e596dee1317b02.woff2')format("woff");}.ff3_c00285{font-family:ff3_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;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_ab62b3f771fbb18bf033dc67.woff2')format("woff");}.ff5_c00285{font-family:ff5_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;}
.mc_c00285{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177570,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m15_c00285{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{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_c00285{transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);}
.m1b_c00285{transform:matrix(0.280928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280928,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls4_c00285{letter-spacing:-15.270300px;}
.ls16_c00285{letter-spacing:-14.082750px;}
.ls13_c00285{letter-spacing:-12.687675px;}
.ls22_c00285{letter-spacing:-9.850050px;}
.ls14_c00285{letter-spacing:-9.582075px;}
.ls19_c00285{letter-spacing:-9.087750px;}
.ls25_c00285{letter-spacing:-8.450325px;}
.ls8_c00285{letter-spacing:-7.576538px;}
.ls10_c00285{letter-spacing:-7.499250px;}
.ls17_c00285{letter-spacing:-6.811875px;}
.ls1e_c00285{letter-spacing:-6.629925px;}
.lsf_c00285{letter-spacing:-6.057675px;}
.ls7_c00285{letter-spacing:-6.055875px;}
.lsd_c00285{letter-spacing:-5.300663px;}
.ls24_c00285{letter-spacing:-5.296875px;}
.ls1b_c00285{letter-spacing:-5.019450px;}
.ls15_c00285{letter-spacing:-4.543088px;}
.lse_c00285{letter-spacing:-4.422600px;}
.ls9_c00285{letter-spacing:-4.418663px;}
.lsc_c00285{letter-spacing:-4.336800px;}
.ls1a_c00285{letter-spacing:-4.208250px;}
.ls1c_c00285{letter-spacing:-3.860025px;}
.ls6_c00285{letter-spacing:-3.787875px;}
.lsb_c00285{letter-spacing:-3.649050px;}
.ls23_c00285{letter-spacing:-3.339225px;}
.ls3_c00285{letter-spacing:-3.031875px;}
.ls12_c00285{letter-spacing:-2.807550px;}
.ls1f_c00285{letter-spacing:-2.471693px;}
.ls1_c00285{letter-spacing:-2.267213px;}
.ls21_c00285{letter-spacing:-2.144483px;}
.ls1d_c00285{letter-spacing:-1.596000px;}
.ls2_c00285{letter-spacing:-1.512000px;}
.ls5_c00285{letter-spacing:-0.756000px;}
.ls11_c00285{letter-spacing:-0.735075px;}
.lsa_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:1.512000px;}
.ls18_c00285{letter-spacing:1.591200px;}
.ls20_c00285{letter-spacing:3.984450px;}
.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;}
._19_c00285{margin-left:-6.619543px;}
._13_c00285{margin-left:-5.275765px;}
._11_c00285{margin-left:-4.172963px;}
._12_c00285{margin-left:-2.353777px;}
._15_c00285{margin-left:-1.047920px;}
._6_c00285{width:1.055613px;}
._e_c00285{width:3.103477px;}
._16_c00285{width:4.709977px;}
._d_c00285{width:5.989846px;}
._17_c00285{width:7.012687px;}
._14_c00285{width:8.147657px;}
._10_c00285{width:9.859863px;}
._4_c00285{width:11.482537px;}
._5_c00285{width:12.591762px;}
._3_c00285{width:13.631807px;}
._18_c00285{width:14.867758px;}
._2_c00285{width:16.055913px;}
._f_c00285{width:17.821246px;}
._0_c00285{width:19.469181px;}
._8_c00285{width:20.531397px;}
._a_c00285{width:22.558301px;}
._1_c00285{width:24.728469px;}
._9_c00285{width:26.743258px;}
._b_c00285{width:28.549540px;}
._7_c00285{width:30.200140px;}
._c_c00285{width:31.739400px;}
.fc0_c00285{color:transparent;}
.fs7_c00285{font-size:72.750000px;}
.fs8_c00285{font-size:74.250000px;}
.fsc_c00285{font-size:75.000000px;}
.fsf_c00285{font-size:75.750000px;}
.fs9_c00285{font-size:76.500000px;}
.fs3_c00285{font-size:78.000000px;}
.fs0_c00285{font-size:78.750000px;}
.fs2_c00285{font-size:79.500000px;}
.fsd_c00285{font-size:80.250000px;}
.fs4_c00285{font-size:81.000000px;}
.fs5_c00285{font-size:81.750000px;}
.fs6_c00285{font-size:82.500000px;}
.fsb_c00285{font-size:83.250000px;}
.fse_c00285{font-size:84.000000px;}
.fsa_c00285{font-size:84.750000px;}
.fs1_c00285{font-size:85.500000px;}
.y0_c00285{bottom:0.000000px;}
.y2b_c00285{bottom:187.920705px;}
.y2a_c00285{bottom:217.440240px;}
.y28_c00285{bottom:247.679370px;}
.y29_c00285{bottom:247.680150px;}
.y27_c00285{bottom:277.559100px;}
.y26_c00285{bottom:277.559280px;}
.y25_c00285{bottom:307.439010px;}
.y24_c00285{bottom:336.600150px;}
.y23_c00285{bottom:336.600405px;}
.y22_c00285{bottom:366.840315px;}
.y21_c00285{bottom:396.359850px;}
.y20_c00285{bottom:396.360645px;}
.y1f_c00285{bottom:456.480285px;}
.y1e_c00285{bottom:487.080255px;}
.y1c_c00285{bottom:516.959925px;}
.y1d_c00285{bottom:516.959970px;}
.y1b_c00285{bottom:547.199850px;}
.y1a_c00285{bottom:576.719520px;}
.y19_c00285{bottom:576.719700px;}
.y18_c00285{bottom:606.239220px;}
.y17_c00285{bottom:606.239565px;}
.y15_c00285{bottom:665.279955px;}
.y16_c00285{bottom:665.280435px;}
.y14_c00285{bottom:695.159685px;}
.y13_c00285{bottom:725.760090px;}
.y12_c00285{bottom:756.000000px;}
.y11_c00285{bottom:785.879580px;}
.y10_c00285{bottom:845.639025px;}
.yf_c00285{bottom:875.518755px;}
.yd_c00285{bottom:905.759925px;}
.ye_c00285{bottom:905.760780px;}
.yc_c00285{bottom:935.639655px;}
.yb_c00285{bottom:935.640540px;}
.ya_c00285{bottom:965.520270px;}
.y9_c00285{bottom:965.521290px;}
.y8_c00285{bottom:995.040825px;}
.y7_c00285{bottom:1025.639115px;}
.y6_c00285{bottom:1055.160465px;}
.y5_c00285{bottom:1055.161215px;}
.y4_c00285{bottom:1084.859805px;}
.y3_c00285{bottom:1084.859985px;}
.y2_c00285{bottom:1114.920840px;}
.y1_c00285{bottom:1144.800570px;}
.h8_c00285{height:71.400146px;}
.he_c00285{height:73.608398px;}
.h13_c00285{height:74.344482px;}
.h9_c00285{height:74.830078px;}
.ha_c00285{height:75.080566px;}
.h4_c00285{height:76.552734px;}
.h1_c00285{height:77.288818px;}
.h3_c00285{height:78.024902px;}
.hf_c00285{height:78.760986px;}
.h14_c00285{height:79.309570px;}
.h5_c00285{height:79.497070px;}
.h6_c00285{height:80.233154px;}
.h11_c00285{height:80.969238px;}
.hc_c00285{height:81.533203px;}
.h12_c00285{height:81.664673px;}
.hd_c00285{height:81.705322px;}
.h10_c00285{height:82.441406px;}
.h7_c00285{height:83.144531px;}
.hb_c00285{height:83.177490px;}
.h2_c00285{height:84.498047px;}
.h0_c00285{height:1263.000000px;}
.w0_c00285{width:892.500000px;}
.x0_c00285{left:0.000000px;}
.x8_c00285{left:142.917270px;}
.x1_c00285{left:143.999400px;}
.x27_c00285{left:145.441380px;}
.xe_c00285{left:187.198785px;}
.x19_c00285{left:191.158785px;}
.xf_c00285{left:200.159850px;}
.x28_c00285{left:201.239250px;}
.x1a_c00285{left:212.399250px;}
.x4_c00285{left:217.079385px;}
.x1f_c00285{left:224.279250px;}
.x10_c00285{left:226.078785px;}
.x20_c00285{left:246.239850px;}
.x5_c00285{left:248.039385px;}
.x11_c00285{left:249.838950px;}
.x21_c00285{left:272.878950px;}
.x29_c00285{left:278.638500px;}
.x22_c00285{left:292.319850px;}
.x12_c00285{left:310.679700px;}
.x6_c00285{left:312.120000px;}
.x2f_c00285{left:313.558635px;}
.x1b_c00285{left:315.719100px;}
.x13_c00285{left:325.438635px;}
.x30_c00285{left:335.878350px;}
.x9_c00285{left:340.919535px;}
.x14_c00285{left:344.879535px;}
.xb_c00285{left:349.198785px;}
.x23_c00285{left:359.279250px;}
.xa_c00285{left:370.798515px;}
.x24_c00285{left:373.319850px;}
.xc_c00285{left:380.158785px;}
.x7_c00285{left:384.118785px;}
.x2_c00285{left:395.639700px;}
.x3_c00285{left:418.679670px;}
.x2a_c00285{left:424.439250px;}
.x15_c00285{left:425.879520px;}
.xd_c00285{left:440.999400px;}
.x16_c00285{left:448.199385px;}
.x31_c00285{left:477.359850px;}
.x25_c00285{left:483.478635px;}
.x32_c00285{left:496.798920px;}
.x26_c00285{left:502.558635px;}
.x2b_c00285{left:520.918350px;}
.x2c_c00285{left:549.358665px;}
.x1c_c00285{left:640.080000px;}
.x1d_c00285{left:667.798560px;}
.x2d_c00285{left:673.198785px;}
.x2e_c00285{left:694.798560px;}
.x17_c00285{left:749.518620px;}
.x18_c00285{left:763.918350px;}
.x1e_c00285{left:770.759130px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls4_c00285{letter-spacing:-13.573600pt;}
.ls16_c00285{letter-spacing:-12.518000pt;}
.ls13_c00285{letter-spacing:-11.277933pt;}
.ls22_c00285{letter-spacing:-8.755600pt;}
.ls14_c00285{letter-spacing:-8.517400pt;}
.ls19_c00285{letter-spacing:-8.078000pt;}
.ls25_c00285{letter-spacing:-7.511400pt;}
.ls8_c00285{letter-spacing:-6.734700pt;}
.ls10_c00285{letter-spacing:-6.666000pt;}
.ls17_c00285{letter-spacing:-6.055000pt;}
.ls1e_c00285{letter-spacing:-5.893267pt;}
.lsf_c00285{letter-spacing:-5.384600pt;}
.ls7_c00285{letter-spacing:-5.383000pt;}
.lsd_c00285{letter-spacing:-4.711700pt;}
.ls24_c00285{letter-spacing:-4.708333pt;}
.ls1b_c00285{letter-spacing:-4.461733pt;}
.ls15_c00285{letter-spacing:-4.038300pt;}
.lse_c00285{letter-spacing:-3.931200pt;}
.ls9_c00285{letter-spacing:-3.927700pt;}
.lsc_c00285{letter-spacing:-3.854933pt;}
.ls1a_c00285{letter-spacing:-3.740667pt;}
.ls1c_c00285{letter-spacing:-3.431133pt;}
.ls6_c00285{letter-spacing:-3.367000pt;}
.lsb_c00285{letter-spacing:-3.243600pt;}
.ls23_c00285{letter-spacing:-2.968200pt;}
.ls3_c00285{letter-spacing:-2.695000pt;}
.ls12_c00285{letter-spacing:-2.495600pt;}
.ls1f_c00285{letter-spacing:-2.197060pt;}
.ls1_c00285{letter-spacing:-2.015300pt;}
.ls21_c00285{letter-spacing:-1.906207pt;}
.ls1d_c00285{letter-spacing:-1.418667pt;}
.ls2_c00285{letter-spacing:-1.344000pt;}
.ls5_c00285{letter-spacing:-0.672000pt;}
.ls11_c00285{letter-spacing:-0.653400pt;}
.lsa_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:1.344000pt;}
.ls18_c00285{letter-spacing:1.414400pt;}
.ls20_c00285{letter-spacing:3.541733pt;}
.ws0_c00285{word-spacing:0.000000pt;}
._19_c00285{margin-left:-5.884038pt;}
._13_c00285{margin-left:-4.689569pt;}
._11_c00285{margin-left:-3.709300pt;}
._12_c00285{margin-left:-2.092246pt;}
._15_c00285{margin-left:-0.931485pt;}
._6_c00285{width:0.938323pt;}
._e_c00285{width:2.758646pt;}
._16_c00285{width:4.186646pt;}
._d_c00285{width:5.324308pt;}
._17_c00285{width:6.233500pt;}
._14_c00285{width:7.242362pt;}
._10_c00285{width:8.764323pt;}
._4_c00285{width:10.206700pt;}
._5_c00285{width:11.192677pt;}
._3_c00285{width:12.117162pt;}
._18_c00285{width:13.215785pt;}
._2_c00285{width:14.271923pt;}
._f_c00285{width:15.841108pt;}
._0_c00285{width:17.305938pt;}
._8_c00285{width:18.250131pt;}
._a_c00285{width:20.051823pt;}
._1_c00285{width:21.980862pt;}
._9_c00285{width:23.771785pt;}
._b_c00285{width:25.377369pt;}
._7_c00285{width:26.844569pt;}
._c_c00285{width:28.212800pt;}
.fs7_c00285{font-size:64.666667pt;}
.fs8_c00285{font-size:66.000000pt;}
.fsc_c00285{font-size:66.666667pt;}
.fsf_c00285{font-size:67.333333pt;}
.fs9_c00285{font-size:68.000000pt;}
.fs3_c00285{font-size:69.333333pt;}
.fs0_c00285{font-size:70.000000pt;}
.fs2_c00285{font-size:70.666667pt;}
.fsd_c00285{font-size:71.333333pt;}
.fs4_c00285{font-size:72.000000pt;}
.fs5_c00285{font-size:72.666667pt;}
.fs6_c00285{font-size:73.333333pt;}
.fsb_c00285{font-size:74.000000pt;}
.fse_c00285{font-size:74.666667pt;}
.fsa_c00285{font-size:75.333333pt;}
.fs1_c00285{font-size:76.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y2b_c00285{bottom:167.040627pt;}
.y2a_c00285{bottom:193.280213pt;}
.y28_c00285{bottom:220.159440pt;}
.y29_c00285{bottom:220.160133pt;}
.y27_c00285{bottom:246.719200pt;}
.y26_c00285{bottom:246.719360pt;}
.y25_c00285{bottom:273.279120pt;}
.y24_c00285{bottom:299.200133pt;}
.y23_c00285{bottom:299.200360pt;}
.y22_c00285{bottom:326.080280pt;}
.y21_c00285{bottom:352.319867pt;}
.y20_c00285{bottom:352.320573pt;}
.y1f_c00285{bottom:405.760253pt;}
.y1e_c00285{bottom:432.960227pt;}
.y1c_c00285{bottom:459.519933pt;}
.y1d_c00285{bottom:459.519973pt;}
.y1b_c00285{bottom:486.399867pt;}
.y1a_c00285{bottom:512.639573pt;}
.y19_c00285{bottom:512.639733pt;}
.y18_c00285{bottom:538.879307pt;}
.y17_c00285{bottom:538.879613pt;}
.y15_c00285{bottom:591.359960pt;}
.y16_c00285{bottom:591.360387pt;}
.y14_c00285{bottom:617.919720pt;}
.y13_c00285{bottom:645.120080pt;}
.y12_c00285{bottom:672.000000pt;}
.y11_c00285{bottom:698.559627pt;}
.y10_c00285{bottom:751.679133pt;}
.yf_c00285{bottom:778.238893pt;}
.yd_c00285{bottom:805.119933pt;}
.ye_c00285{bottom:805.120693pt;}
.yc_c00285{bottom:831.679693pt;}
.yb_c00285{bottom:831.680480pt;}
.ya_c00285{bottom:858.240240pt;}
.y9_c00285{bottom:858.241147pt;}
.y8_c00285{bottom:884.480733pt;}
.y7_c00285{bottom:911.679213pt;}
.y6_c00285{bottom:937.920413pt;}
.y5_c00285{bottom:937.921080pt;}
.y4_c00285{bottom:964.319827pt;}
.y3_c00285{bottom:964.319987pt;}
.y2_c00285{bottom:991.040747pt;}
.y1_c00285{bottom:1017.600507pt;}
.h8_c00285{height:63.466797pt;}
.he_c00285{height:65.429688pt;}
.h13_c00285{height:66.083984pt;}
.h9_c00285{height:66.515625pt;}
.ha_c00285{height:66.738281pt;}
.h4_c00285{height:68.046875pt;}
.h1_c00285{height:68.701172pt;}
.h3_c00285{height:69.355469pt;}
.hf_c00285{height:70.009766pt;}
.h14_c00285{height:70.497396pt;}
.h5_c00285{height:70.664062pt;}
.h6_c00285{height:71.318359pt;}
.h11_c00285{height:71.972656pt;}
.hc_c00285{height:72.473958pt;}
.h12_c00285{height:72.590820pt;}
.hd_c00285{height:72.626953pt;}
.h10_c00285{height:73.281250pt;}
.h7_c00285{height:73.906250pt;}
.hb_c00285{height:73.935547pt;}
.h2_c00285{height:75.109375pt;}
.h0_c00285{height:1122.666667pt;}
.w0_c00285{width:793.333333pt;}
.x0_c00285{left:0.000000pt;}
.x8_c00285{left:127.037573pt;}
.x1_c00285{left:127.999467pt;}
.x27_c00285{left:129.281227pt;}
.xe_c00285{left:166.398920pt;}
.x19_c00285{left:169.918920pt;}
.xf_c00285{left:177.919867pt;}
.x28_c00285{left:178.879333pt;}
.x1a_c00285{left:188.799333pt;}
.x4_c00285{left:192.959453pt;}
.x1f_c00285{left:199.359333pt;}
.x10_c00285{left:200.958920pt;}
.x20_c00285{left:218.879867pt;}
.x5_c00285{left:220.479453pt;}
.x11_c00285{left:222.079067pt;}
.x21_c00285{left:242.559067pt;}
.x29_c00285{left:247.678667pt;}
.x22_c00285{left:259.839867pt;}
.x12_c00285{left:276.159733pt;}
.x6_c00285{left:277.440000pt;}
.x2f_c00285{left:278.718787pt;}
.x1b_c00285{left:280.639200pt;}
.x13_c00285{left:289.278787pt;}
.x30_c00285{left:298.558533pt;}
.x9_c00285{left:303.039587pt;}
.x14_c00285{left:306.559587pt;}
.xb_c00285{left:310.398920pt;}
.x23_c00285{left:319.359333pt;}
.xa_c00285{left:329.598680pt;}
.x24_c00285{left:331.839867pt;}
.xc_c00285{left:337.918920pt;}
.x7_c00285{left:341.438920pt;}
.x2_c00285{left:351.679733pt;}
.x3_c00285{left:372.159707pt;}
.x2a_c00285{left:377.279333pt;}
.x15_c00285{left:378.559573pt;}
.xd_c00285{left:391.999467pt;}
.x16_c00285{left:398.399453pt;}
.x31_c00285{left:424.319867pt;}
.x25_c00285{left:429.758787pt;}
.x32_c00285{left:441.599040pt;}
.x26_c00285{left:446.718787pt;}
.x2b_c00285{left:463.038533pt;}
.x2c_c00285{left:488.318813pt;}
.x1c_c00285{left:568.960000pt;}
.x1d_c00285{left:593.598720pt;}
.x2d_c00285{left:598.398920pt;}
.x2e_c00285{left:617.598720pt;}
.x17_c00285{left:666.238773pt;}
.x18_c00285{left:679.038533pt;}
.x1e_c00285{left:685.119227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38d22c6c32943fc07bfec515.woff2')format("woff");}.ff1_c00286{font-family:ff1_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:ff2_c00286;src:url('chunks/assets/font_b4704206db2ed210cee90e88.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.364746;font-style:normal;font-weight:normal;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_dcb7f8a5611fe221a0a31c3c.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.364746;font-style:normal;font-weight:normal;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_7e615d078220792446830b74.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_3834bf088524da17f5f58d59.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00286;src:url('chunks/assets/font_e4cfcada94604544b7176826.woff2')format("woff");}.ff6_c00286{font-family:ff6_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:ff7_c00286;src:url('chunks/assets/font_c6ded61e651d7566304888e3.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00286{transform:matrix(0.127717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127717,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137821,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.138372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138372,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.138554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138554,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.141176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141176,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.144444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144444,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.147849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147849,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.151596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151596,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.158228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158228,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.200617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200617,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{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_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1a_c00286{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.565217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565217,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.756579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756579,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls9_c00286{letter-spacing:-15.136350px;}
.lse_c00286{letter-spacing:-14.082750px;}
.lsf_c00286{letter-spacing:-13.121693px;}
.ls15_c00286{letter-spacing:-12.937500px;}
.ls11_c00286{letter-spacing:-12.771000px;}
.ls27_c00286{letter-spacing:-9.294750px;}
.ls1a_c00286{letter-spacing:-8.879175px;}
.ls19_c00286{letter-spacing:-6.340275px;}
.ls24_c00286{letter-spacing:-5.285858px;}
.ls25_c00286{letter-spacing:-5.190750px;}
.ls6_c00286{letter-spacing:-5.150250px;}
.ls17_c00286{letter-spacing:-5.070128px;}
.ls16_c00286{letter-spacing:-4.949805px;}
.lsa_c00286{letter-spacing:-4.418663px;}
.ls7_c00286{letter-spacing:-3.927825px;}
.ls21_c00286{letter-spacing:-3.894075px;}
.ls1c_c00286{letter-spacing:-3.726450px;}
.lsb_c00286{letter-spacing:-3.678413px;}
.ls29_c00286{letter-spacing:-3.486600px;}
.ls5_c00286{letter-spacing:-2.945250px;}
.ls22_c00286{letter-spacing:-2.598750px;}
.ls18_c00286{letter-spacing:-2.539598px;}
.ls4_c00286{letter-spacing:-2.205000px;}
.ls10_c00286{letter-spacing:-1.496250px;}
.ls8_c00286{letter-spacing:-1.473413px;}
.ls1d_c00286{letter-spacing:-1.365000px;}
.ls2a_c00286{letter-spacing:-1.296000px;}
.ls12_c00286{letter-spacing:-0.731588px;}
.lsd_c00286{letter-spacing:0.000000px;}
.ls2e_c00286{letter-spacing:1.296000px;}
.ls23_c00286{letter-spacing:1.326000px;}
.ls1_c00286{letter-spacing:1.469700px;}
.lsc_c00286{letter-spacing:2.470950px;}
.ls2d_c00286{letter-spacing:2.598750px;}
.ls20_c00286{letter-spacing:2.658375px;}
.ls2_c00286{letter-spacing:2.939400px;}
.ls13_c00286{letter-spacing:3.127500px;}
.ls0_c00286{letter-spacing:4.402200px;}
.ls1f_c00286{letter-spacing:5.416373px;}
.ls14_c00286{letter-spacing:5.871900px;}
.ls2c_c00286{letter-spacing:6.426630px;}
.ls26_c00286{letter-spacing:6.666000px;}
.ls2b_c00286{letter-spacing:9.002700px;}
.ls28_c00286{letter-spacing:14.964300px;}
.ls3_c00286{letter-spacing:17.615010px;}
.ls1e_c00286{letter-spacing:19.085400px;}
.ls1b_c00286{letter-spacing:20.289578px;}
.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;}
._12_c00286{margin-left:-91.764847px;}
._c_c00286{margin-left:-25.357471px;}
._13_c00286{margin-left:-22.321513px;}
._14_c00286{margin-left:-9.126208px;}
._6_c00286{margin-left:-5.230207px;}
._d_c00286{margin-left:-2.401949px;}
._8_c00286{margin-left:-1.018326px;}
._7_c00286{width:1.789804px;}
._f_c00286{width:3.087118px;}
._5_c00286{width:4.207215px;}
._0_c00286{width:5.850757px;}
._4_c00286{width:7.135339px;}
._2_c00286{width:9.205507px;}
._3_c00286{width:10.268441px;}
._1_c00286{width:11.284949px;}
._9_c00286{width:12.304062px;}
._a_c00286{width:14.203335px;}
._11_c00286{width:16.215470px;}
._e_c00286{width:17.776738px;}
._10_c00286{width:19.149696px;}
._b_c00286{width:20.825114px;}
.fc0_c00286{color:transparent;}
.fs17_c00286{font-size:17.250000px;}
.fs14_c00286{font-size:28.500000px;}
.fsd_c00286{font-size:51.000000px;}
.fs13_c00286{font-size:58.500000px;}
.fs16_c00286{font-size:59.250000px;}
.fs12_c00286{font-size:60.000000px;}
.fs11_c00286{font-size:60.750000px;}
.fs18_c00286{font-size:61.500000px;}
.fse_c00286{font-size:62.250000px;}
.fs15_c00286{font-size:63.000000px;}
.fsf_c00286{font-size:63.750000px;}
.fs10_c00286{font-size:67.500000px;}
.fsb_c00286{font-size:68.250000px;}
.fs8_c00286{font-size:69.000000px;}
.fsa_c00286{font-size:69.750000px;}
.fs9_c00286{font-size:70.500000px;}
.fs7_c00286{font-size:75.000000px;}
.fs3_c00286{font-size:76.500000px;}
.fs0_c00286{font-size:78.750000px;}
.fs4_c00286{font-size:80.250000px;}
.fs5_c00286{font-size:81.000000px;}
.fs6_c00286{font-size:81.750000px;}
.fs1_c00286{font-size:82.500000px;}
.fs2_c00286{font-size:84.750000px;}
.fsc_c00286{font-size:161.250000px;}
.y0_c00286{bottom:0.000000px;}
.y27_c00286{bottom:329.039385px;}
.y23_c00286{bottom:353.160435px;}
.y22_c00286{bottom:363.959385px;}
.y21_c00286{bottom:376.200435px;}
.y20_c00286{bottom:387.719565px;}
.y1d_c00286{bottom:435.239820px;}
.y1c_c00286{bottom:457.560120px;}
.y1b_c00286{bottom:504.000570px;}
.y14_c00286{bottom:525.959385px;}
.y16_c00286{bottom:527.399460px;}
.y15_c00286{bottom:538.920600px;}
.y26_c00286{bottom:586.080000px;}
.y2b_c00286{bottom:586.439250px;}
.y1a_c00286{bottom:586.440030px;}
.y29_c00286{bottom:586.800150px;}
.y2d_c00286{bottom:586.800675px;}
.y28_c00286{bottom:609.840135px;}
.y25_c00286{bottom:610.199385px;}
.y2c_c00286{bottom:610.199505px;}
.y19_c00286{bottom:610.200090px;}
.y17_c00286{bottom:633.238635px;}
.y18_c00286{bottom:633.239220px;}
.y24_c00286{bottom:633.600135px;}
.y2a_c00286{bottom:633.959385px;}
.y2e_c00286{bottom:649.440255px;}
.y1f_c00286{bottom:680.400285px;}
.y1e_c00286{bottom:703.799520px;}
.y13_c00286{bottom:703.800315px;}
.y12_c00286{bottom:762.479685px;}
.y11_c00286{bottom:786.239865px;}
.y10_c00286{bottom:876.959385px;}
.yf_c00286{bottom:876.960360px;}
.yd_c00286{bottom:906.839340px;}
.ye_c00286{bottom:906.840090px;}
.yb_c00286{bottom:936.718545px;}
.yc_c00286{bottom:936.719055px;}
.y9_c00286{bottom:966.959865px;}
.ya_c00286{bottom:966.960570px;}
.y8_c00286{bottom:996.839580px;}
.y7_c00286{bottom:1056.599025px;}
.y6_c00286{bottom:1056.599055px;}
.y5_c00286{bottom:1086.120390px;}
.y4_c00286{bottom:1086.120570px;}
.y2_c00286{bottom:1115.640060px;}
.y3_c00286{bottom:1115.640105px;}
.y1_c00286{bottom:1145.879970px;}
.h1b_c00286{height:17.991211px;}
.h16_c00286{height:29.724609px;}
.hf_c00286{height:53.191406px;}
.h13_c00286{height:59.622803px;}
.h17_c00286{height:60.468750px;}
.h15_c00286{height:61.013672px;}
.h10_c00286{height:61.520508px;}
.h1a_c00286{height:61.795898px;}
.h14_c00286{height:62.578125px;}
.h11_c00286{height:63.002930px;}
.h18_c00286{height:63.360352px;}
.h1c_c00286{height:64.142578px;}
.h19_c00286{height:65.707031px;}
.h12_c00286{height:66.708984px;}
.hd_c00286{height:67.450195px;}
.ha_c00286{height:68.191406px;}
.hc_c00286{height:68.932617px;}
.hb_c00286{height:69.673828px;}
.h9_c00286{height:73.608398px;}
.h4_c00286{height:75.080566px;}
.h1_c00286{height:77.288818px;}
.h5_c00286{height:78.760986px;}
.h6_c00286{height:79.497070px;}
.h8_c00286{height:80.791992px;}
.h2_c00286{height:80.969238px;}
.h7_c00286{height:81.533203px;}
.h3_c00286{height:83.756836px;}
.he_c00286{height:168.178711px;}
.h0_c00286{height:1263.000000px;}
.w0_c00286{width:892.500000px;}
.x0_c00286{left:0.000000px;}
.xc_c00286{left:140.038725px;}
.x1_c00286{left:141.118815px;}
.x8_c00286{left:221.039400px;}
.x9_c00286{left:236.159385px;}
.x16_c00286{left:275.039385px;}
.x2f_c00286{left:276.118785px;}
.x1f_c00286{left:277.199850px;}
.x1e_c00286{left:281.159700px;}
.x20_c00286{left:282.239475px;}
.x17_c00286{left:316.080000px;}
.x21_c00286{left:322.918950px;}
.x22_c00286{left:334.439685px;}
.x18_c00286{left:339.479235px;}
.x2a_c00286{left:340.558635px;}
.x25_c00286{left:352.079385px;}
.x2b_c00286{left:353.158785px;}
.x2c_c00286{left:363.959385px;}
.x19_c00286{left:397.439250px;}
.x26_c00286{left:415.798920px;}
.x24_c00286{left:427.679070px;}
.x27_c00286{left:440.279250px;}
.x11_c00286{left:444.598530px;}
.x28_c00286{left:457.559685px;}
.x23_c00286{left:461.878920px;}
.x12_c00286{left:464.398635px;}
.xd_c00286{left:476.639700px;}
.x2_c00286{left:487.438665px;}
.xe_c00286{left:496.439670px;}
.x30_c00286{left:503.278800px;}
.x29_c00286{left:509.039985px;}
.x3_c00286{left:518.759535px;}
.xa_c00286{left:523.798920px;}
.x32_c00286{left:543.958335px;}
.x31_c00286{left:549.719565px;}
.xb_c00286{left:557.639700px;}
.x2e_c00286{left:567.000000px;}
.x1a_c00286{left:583.558635px;}
.xf_c00286{left:586.439250px;}
.x2d_c00286{left:596.158770px;}
.x1b_c00286{left:601.199850px;}
.x10_c00286{left:606.598530px;}
.x15_c00286{left:619.559685px;}
.x13_c00286{left:628.918350px;}
.x33_c00286{left:637.558635px;}
.x14_c00286{left:650.878920px;}
.x1c_c00286{left:653.759535px;}
.x6_c00286{left:665.639700px;}
.x36_c00286{left:683.638545px;}
.x35_c00286{left:689.759085px;}
.x34_c00286{left:691.919535px;}
.x1d_c00286{left:695.159370px;}
.x7_c00286{left:697.679070px;}
.x4_c00286{left:722.159370px;}
.x5_c00286{left:741.959385px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls9_c00286{letter-spacing:-13.454533pt;}
.lse_c00286{letter-spacing:-12.518000pt;}
.lsf_c00286{letter-spacing:-11.663727pt;}
.ls15_c00286{letter-spacing:-11.500000pt;}
.ls11_c00286{letter-spacing:-11.352000pt;}
.ls27_c00286{letter-spacing:-8.262000pt;}
.ls1a_c00286{letter-spacing:-7.892600pt;}
.ls19_c00286{letter-spacing:-5.635800pt;}
.ls24_c00286{letter-spacing:-4.698540pt;}
.ls25_c00286{letter-spacing:-4.614000pt;}
.ls6_c00286{letter-spacing:-4.578000pt;}
.ls17_c00286{letter-spacing:-4.506780pt;}
.ls16_c00286{letter-spacing:-4.399827pt;}
.lsa_c00286{letter-spacing:-3.927700pt;}
.ls7_c00286{letter-spacing:-3.491400pt;}
.ls21_c00286{letter-spacing:-3.461400pt;}
.ls1c_c00286{letter-spacing:-3.312400pt;}
.lsb_c00286{letter-spacing:-3.269700pt;}
.ls29_c00286{letter-spacing:-3.099200pt;}
.ls5_c00286{letter-spacing:-2.618000pt;}
.ls22_c00286{letter-spacing:-2.310000pt;}
.ls18_c00286{letter-spacing:-2.257420pt;}
.ls4_c00286{letter-spacing:-1.960000pt;}
.ls10_c00286{letter-spacing:-1.330000pt;}
.ls8_c00286{letter-spacing:-1.309700pt;}
.ls1d_c00286{letter-spacing:-1.213333pt;}
.ls2a_c00286{letter-spacing:-1.152000pt;}
.ls12_c00286{letter-spacing:-0.650300pt;}
.lsd_c00286{letter-spacing:0.000000pt;}
.ls2e_c00286{letter-spacing:1.152000pt;}
.ls23_c00286{letter-spacing:1.178667pt;}
.ls1_c00286{letter-spacing:1.306400pt;}
.lsc_c00286{letter-spacing:2.196400pt;}
.ls2d_c00286{letter-spacing:2.310000pt;}
.ls20_c00286{letter-spacing:2.363000pt;}
.ls2_c00286{letter-spacing:2.612800pt;}
.ls13_c00286{letter-spacing:2.780000pt;}
.ls0_c00286{letter-spacing:3.913067pt;}
.ls1f_c00286{letter-spacing:4.814553pt;}
.ls14_c00286{letter-spacing:5.219467pt;}
.ls2c_c00286{letter-spacing:5.712560pt;}
.ls26_c00286{letter-spacing:5.925333pt;}
.ls2b_c00286{letter-spacing:8.002400pt;}
.ls28_c00286{letter-spacing:13.301600pt;}
.ls3_c00286{letter-spacing:15.657787pt;}
.ls1e_c00286{letter-spacing:16.964800pt;}
.ls1b_c00286{letter-spacing:18.035180pt;}
.ws0_c00286{word-spacing:0.000000pt;}
._12_c00286{margin-left:-81.568753pt;}
._c_c00286{margin-left:-22.539974pt;}
._13_c00286{margin-left:-19.841345pt;}
._14_c00286{margin-left:-8.112185pt;}
._6_c00286{margin-left:-4.649073pt;}
._d_c00286{margin-left:-2.135065pt;}
._8_c00286{margin-left:-0.905179pt;}
._7_c00286{width:1.590936pt;}
._f_c00286{width:2.744105pt;}
._5_c00286{width:3.739747pt;}
._0_c00286{width:5.200673pt;}
._4_c00286{width:6.342523pt;}
._2_c00286{width:8.182673pt;}
._3_c00286{width:9.127503pt;}
._1_c00286{width:10.031065pt;}
._9_c00286{width:10.936944pt;}
._a_c00286{width:12.625187pt;}
._11_c00286{width:14.413751pt;}
._e_c00286{width:15.801545pt;}
._10_c00286{width:17.021952pt;}
._b_c00286{width:18.511212pt;}
.fs17_c00286{font-size:15.333333pt;}
.fs14_c00286{font-size:25.333333pt;}
.fsd_c00286{font-size:45.333333pt;}
.fs13_c00286{font-size:52.000000pt;}
.fs16_c00286{font-size:52.666667pt;}
.fs12_c00286{font-size:53.333333pt;}
.fs11_c00286{font-size:54.000000pt;}
.fs18_c00286{font-size:54.666667pt;}
.fse_c00286{font-size:55.333333pt;}
.fs15_c00286{font-size:56.000000pt;}
.fsf_c00286{font-size:56.666667pt;}
.fs10_c00286{font-size:60.000000pt;}
.fsb_c00286{font-size:60.666667pt;}
.fs8_c00286{font-size:61.333333pt;}
.fsa_c00286{font-size:62.000000pt;}
.fs9_c00286{font-size:62.666667pt;}
.fs7_c00286{font-size:66.666667pt;}
.fs3_c00286{font-size:68.000000pt;}
.fs0_c00286{font-size:70.000000pt;}
.fs4_c00286{font-size:71.333333pt;}
.fs5_c00286{font-size:72.000000pt;}
.fs6_c00286{font-size:72.666667pt;}
.fs1_c00286{font-size:73.333333pt;}
.fs2_c00286{font-size:75.333333pt;}
.fsc_c00286{font-size:143.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y27_c00286{bottom:292.479453pt;}
.y23_c00286{bottom:313.920387pt;}
.y22_c00286{bottom:323.519453pt;}
.y21_c00286{bottom:334.400387pt;}
.y20_c00286{bottom:344.639613pt;}
.y1d_c00286{bottom:386.879840pt;}
.y1c_c00286{bottom:406.720107pt;}
.y1b_c00286{bottom:448.000507pt;}
.y14_c00286{bottom:467.519453pt;}
.y16_c00286{bottom:468.799520pt;}
.y15_c00286{bottom:479.040533pt;}
.y26_c00286{bottom:520.960000pt;}
.y2b_c00286{bottom:521.279333pt;}
.y1a_c00286{bottom:521.280027pt;}
.y29_c00286{bottom:521.600133pt;}
.y2d_c00286{bottom:521.600600pt;}
.y28_c00286{bottom:542.080120pt;}
.y25_c00286{bottom:542.399453pt;}
.y2c_c00286{bottom:542.399560pt;}
.y19_c00286{bottom:542.400080pt;}
.y17_c00286{bottom:562.878787pt;}
.y18_c00286{bottom:562.879307pt;}
.y24_c00286{bottom:563.200120pt;}
.y2a_c00286{bottom:563.519453pt;}
.y2e_c00286{bottom:577.280227pt;}
.y1f_c00286{bottom:604.800253pt;}
.y1e_c00286{bottom:625.599573pt;}
.y13_c00286{bottom:625.600280pt;}
.y12_c00286{bottom:677.759720pt;}
.y11_c00286{bottom:698.879880pt;}
.y10_c00286{bottom:779.519453pt;}
.yf_c00286{bottom:779.520320pt;}
.yd_c00286{bottom:806.079413pt;}
.ye_c00286{bottom:806.080080pt;}
.yb_c00286{bottom:832.638707pt;}
.yc_c00286{bottom:832.639160pt;}
.y9_c00286{bottom:859.519880pt;}
.ya_c00286{bottom:859.520507pt;}
.y8_c00286{bottom:886.079627pt;}
.y7_c00286{bottom:939.199133pt;}
.y6_c00286{bottom:939.199160pt;}
.y5_c00286{bottom:965.440347pt;}
.y4_c00286{bottom:965.440507pt;}
.y2_c00286{bottom:991.680053pt;}
.y3_c00286{bottom:991.680093pt;}
.y1_c00286{bottom:1018.559973pt;}
.h1b_c00286{height:15.992187pt;}
.h16_c00286{height:26.421875pt;}
.hf_c00286{height:47.281250pt;}
.h13_c00286{height:52.998047pt;}
.h17_c00286{height:53.750000pt;}
.h15_c00286{height:54.234375pt;}
.h10_c00286{height:54.684896pt;}
.h1a_c00286{height:54.929688pt;}
.h14_c00286{height:55.625000pt;}
.h11_c00286{height:56.002604pt;}
.h18_c00286{height:56.320312pt;}
.h1c_c00286{height:57.015625pt;}
.h19_c00286{height:58.406250pt;}
.h12_c00286{height:59.296875pt;}
.hd_c00286{height:59.955729pt;}
.ha_c00286{height:60.614583pt;}
.hc_c00286{height:61.273438pt;}
.hb_c00286{height:61.932292pt;}
.h9_c00286{height:65.429688pt;}
.h4_c00286{height:66.738281pt;}
.h1_c00286{height:68.701172pt;}
.h5_c00286{height:70.009766pt;}
.h6_c00286{height:70.664062pt;}
.h8_c00286{height:71.815104pt;}
.h2_c00286{height:71.972656pt;}
.h7_c00286{height:72.473958pt;}
.h3_c00286{height:74.450521pt;}
.he_c00286{height:149.492188pt;}
.h0_c00286{height:1122.666667pt;}
.w0_c00286{width:793.333333pt;}
.x0_c00286{left:0.000000pt;}
.xc_c00286{left:124.478867pt;}
.x1_c00286{left:125.438947pt;}
.x8_c00286{left:196.479467pt;}
.x9_c00286{left:209.919453pt;}
.x16_c00286{left:244.479453pt;}
.x2f_c00286{left:245.438920pt;}
.x1f_c00286{left:246.399867pt;}
.x1e_c00286{left:249.919733pt;}
.x20_c00286{left:250.879533pt;}
.x17_c00286{left:280.960000pt;}
.x21_c00286{left:287.039067pt;}
.x22_c00286{left:297.279720pt;}
.x18_c00286{left:301.759320pt;}
.x2a_c00286{left:302.718787pt;}
.x25_c00286{left:312.959453pt;}
.x2b_c00286{left:313.918920pt;}
.x2c_c00286{left:323.519453pt;}
.x19_c00286{left:353.279333pt;}
.x26_c00286{left:369.599040pt;}
.x24_c00286{left:380.159173pt;}
.x27_c00286{left:391.359333pt;}
.x11_c00286{left:395.198693pt;}
.x28_c00286{left:406.719720pt;}
.x23_c00286{left:410.559040pt;}
.x12_c00286{left:412.798787pt;}
.xd_c00286{left:423.679733pt;}
.x2_c00286{left:433.278813pt;}
.xe_c00286{left:441.279707pt;}
.x30_c00286{left:447.358933pt;}
.x29_c00286{left:452.479987pt;}
.x3_c00286{left:461.119587pt;}
.xa_c00286{left:465.599040pt;}
.x32_c00286{left:483.518520pt;}
.x31_c00286{left:488.639613pt;}
.xb_c00286{left:495.679733pt;}
.x2e_c00286{left:504.000000pt;}
.x1a_c00286{left:518.718787pt;}
.xf_c00286{left:521.279333pt;}
.x2d_c00286{left:529.918907pt;}
.x1b_c00286{left:534.399867pt;}
.x10_c00286{left:539.198693pt;}
.x15_c00286{left:550.719720pt;}
.x13_c00286{left:559.038533pt;}
.x33_c00286{left:566.718787pt;}
.x14_c00286{left:578.559040pt;}
.x1c_c00286{left:581.119587pt;}
.x6_c00286{left:591.679733pt;}
.x36_c00286{left:607.678707pt;}
.x35_c00286{left:613.119187pt;}
.x34_c00286{left:615.039587pt;}
.x1d_c00286{left:617.919440pt;}
.x7_c00286{left:620.159173pt;}
.x4_c00286{left:641.919440pt;}
.x5_c00286{left:659.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f3a924b835b327ae53606a9.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_81e8723dca00912c7dcd2bc7.woff2')format("woff");}.ff2_c00287{font-family:ff2_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;}
.m2_c00287{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m9_c00287{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00287{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.lsb_c00287{letter-spacing:-8.175038px;}
.lsc_c00287{letter-spacing:-6.685875px;}
.ls4_c00287{letter-spacing:-5.196713px;}
.lsd_c00287{letter-spacing:-5.109375px;}
.lsa_c00287{letter-spacing:-4.456463px;}
.lse_c00287{letter-spacing:-3.748478px;}
.ls0_c00287{letter-spacing:-3.717000px;}
.ls11_c00287{letter-spacing:-3.113700px;}
.ls8_c00287{letter-spacing:-3.081975px;}
.ls1_c00287{letter-spacing:-2.968875px;}
.ls12_c00287{letter-spacing:-2.335275px;}
.ls2_c00287{letter-spacing:-2.229413px;}
.ls6_c00287{letter-spacing:-1.573703px;}
.ls10_c00287{letter-spacing:-1.556048px;}
.lsf_c00287{letter-spacing:-1.553250px;}
.ls3_c00287{letter-spacing:-1.489163px;}
.ls13_c00287{letter-spacing:-0.778425px;}
.ls5_c00287{letter-spacing:-0.740250px;}
.ls7_c00287{letter-spacing:0.000000px;}
.ls14_c00287{letter-spacing:0.842700px;}
.ls9_c00287{letter-spacing:6.856980px;}
.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;}
._11_c00287{margin-left:-7.210291px;}
._14_c00287{margin-left:-5.863844px;}
._10_c00287{margin-left:-4.834433px;}
._f_c00287{margin-left:-3.223772px;}
._3_c00287{margin-left:-1.036409px;}
._5_c00287{width:1.042026px;}
._4_c00287{width:2.456792px;}
._2_c00287{width:4.543994px;}
._8_c00287{width:5.588843px;}
._0_c00287{width:6.772916px;}
._7_c00287{width:7.985354px;}
._1_c00287{width:10.969726px;}
._13_c00287{width:12.587222px;}
._12_c00287{width:14.710307px;}
._6_c00287{width:17.887795px;}
._9_c00287{width:19.861671px;}
._d_c00287{width:20.952255px;}
._e_c00287{width:23.097628px;}
._b_c00287{width:24.869815px;}
._c_c00287{width:28.544958px;}
._a_c00287{width:36.973600px;}
.fc0_c00287{color:transparent;}
.fs4_c00287{font-size:78.000000px;}
.fs0_c00287{font-size:78.750000px;}
.fs5_c00287{font-size:79.500000px;}
.fs1_c00287{font-size:80.250000px;}
.fs3_c00287{font-size:81.750000px;}
.fs2_c00287{font-size:82.500000px;}
.y0_c00287{bottom:0.000000px;}
.ye_c00287{bottom:721.800105px;}
.yd_c00287{bottom:842.041305px;}
.yc_c00287{bottom:871.560840px;}
.yb_c00287{bottom:901.440555px;}
.ya_c00287{bottom:931.320285px;}
.y9_c00287{bottom:931.321260px;}
.y7_c00287{bottom:961.200420px;}
.y8_c00287{bottom:961.200990px;}
.y5_c00287{bottom:1020.599535px;}
.y6_c00287{bottom:1020.599670px;}
.y4_c00287{bottom:1080.361080px;}
.y2_c00287{bottom:1109.879775px;}
.y3_c00287{bottom:1109.880615px;}
.y1_c00287{bottom:1139.759490px;}
.h5_c00287{height:76.552734px;}
.h1_c00287{height:77.288818px;}
.h2_c00287{height:78.760986px;}
.h8_c00287{height:80.121094px;}
.h4_c00287{height:80.233154px;}
.h6_c00287{height:80.876953px;}
.h3_c00287{height:80.969238px;}
.h7_c00287{height:82.388672px;}
.h0_c00287{height:1263.000000px;}
.w0_c00287{width:892.500000px;}
.x0_c00287{left:0.000000px;}
.x11_c00287{left:140.397195px;}
.xb_c00287{left:141.480420px;}
.x2_c00287{left:142.563420px;}
.x1_c00287{left:143.638500px;}
.x9_c00287{left:213.839535px;}
.xa_c00287{left:239.758500px;}
.x12_c00287{left:248.759535px;}
.x13_c00287{left:307.078785px;}
.x14_c00287{left:336.239250px;}
.xc_c00287{left:392.399820px;}
.xe_c00287{left:405.718500px;}
.xd_c00287{left:416.878320px;}
.x3_c00287{left:439.199850px;}
.x4_c00287{left:470.159820px;}
.x5_c00287{left:538.918950px;}
.x6_c00287{left:555.479235px;}
.x15_c00287{left:596.519670px;}
.x7_c00287{left:628.918350px;}
.x8_c00287{left:659.878320px;}
.xf_c00287{left:719.639700px;}
.x10_c00287{left:734.039385px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.lsb_c00287{letter-spacing:-7.266700pt;}
.lsc_c00287{letter-spacing:-5.943000pt;}
.ls4_c00287{letter-spacing:-4.619300pt;}
.lsd_c00287{letter-spacing:-4.541667pt;}
.lsa_c00287{letter-spacing:-3.961300pt;}
.lse_c00287{letter-spacing:-3.331980pt;}
.ls0_c00287{letter-spacing:-3.304000pt;}
.ls11_c00287{letter-spacing:-2.767733pt;}
.ls8_c00287{letter-spacing:-2.739533pt;}
.ls1_c00287{letter-spacing:-2.639000pt;}
.ls12_c00287{letter-spacing:-2.075800pt;}
.ls2_c00287{letter-spacing:-1.981700pt;}
.ls6_c00287{letter-spacing:-1.398847pt;}
.ls10_c00287{letter-spacing:-1.383153pt;}
.lsf_c00287{letter-spacing:-1.380667pt;}
.ls3_c00287{letter-spacing:-1.323700pt;}
.ls13_c00287{letter-spacing:-0.691933pt;}
.ls5_c00287{letter-spacing:-0.658000pt;}
.ls7_c00287{letter-spacing:0.000000pt;}
.ls14_c00287{letter-spacing:0.749067pt;}
.ls9_c00287{letter-spacing:6.095093pt;}
.ws0_c00287{word-spacing:0.000000pt;}
._11_c00287{margin-left:-6.409147pt;}
._14_c00287{margin-left:-5.212306pt;}
._10_c00287{margin-left:-4.297274pt;}
._f_c00287{margin-left:-2.865575pt;}
._3_c00287{margin-left:-0.921253pt;}
._5_c00287{width:0.926245pt;}
._4_c00287{width:2.183815pt;}
._2_c00287{width:4.039106pt;}
._8_c00287{width:4.967860pt;}
._0_c00287{width:6.020370pt;}
._7_c00287{width:7.098092pt;}
._1_c00287{width:9.750868pt;}
._13_c00287{width:11.188642pt;}
._12_c00287{width:13.075828pt;}
._6_c00287{width:15.900262pt;}
._9_c00287{width:17.654819pt;}
._d_c00287{width:18.624226pt;}
._e_c00287{width:20.531225pt;}
._b_c00287{width:22.106502pt;}
._c_c00287{width:25.373296pt;}
._a_c00287{width:32.865423pt;}
.fs4_c00287{font-size:69.333333pt;}
.fs0_c00287{font-size:70.000000pt;}
.fs5_c00287{font-size:70.666667pt;}
.fs1_c00287{font-size:71.333333pt;}
.fs3_c00287{font-size:72.666667pt;}
.fs2_c00287{font-size:73.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.ye_c00287{bottom:641.600093pt;}
.yd_c00287{bottom:748.481160pt;}
.yc_c00287{bottom:774.720747pt;}
.yb_c00287{bottom:801.280493pt;}
.ya_c00287{bottom:827.840253pt;}
.y9_c00287{bottom:827.841120pt;}
.y7_c00287{bottom:854.400373pt;}
.y8_c00287{bottom:854.400880pt;}
.y5_c00287{bottom:907.199587pt;}
.y6_c00287{bottom:907.199707pt;}
.y4_c00287{bottom:960.320960pt;}
.y2_c00287{bottom:986.559800pt;}
.y3_c00287{bottom:986.560547pt;}
.y1_c00287{bottom:1013.119547pt;}
.h5_c00287{height:68.046875pt;}
.h1_c00287{height:68.701172pt;}
.h2_c00287{height:70.009766pt;}
.h8_c00287{height:71.218750pt;}
.h4_c00287{height:71.318359pt;}
.h6_c00287{height:71.890625pt;}
.h3_c00287{height:71.972656pt;}
.h7_c00287{height:73.234375pt;}
.h0_c00287{height:1122.666667pt;}
.w0_c00287{width:793.333333pt;}
.x0_c00287{left:0.000000pt;}
.x11_c00287{left:124.797507pt;}
.xb_c00287{left:125.760373pt;}
.x2_c00287{left:126.723040pt;}
.x1_c00287{left:127.678667pt;}
.x9_c00287{left:190.079587pt;}
.xa_c00287{left:213.118667pt;}
.x12_c00287{left:221.119587pt;}
.x13_c00287{left:272.958920pt;}
.x14_c00287{left:298.879333pt;}
.xc_c00287{left:348.799840pt;}
.xe_c00287{left:360.638667pt;}
.xd_c00287{left:370.558507pt;}
.x3_c00287{left:390.399867pt;}
.x4_c00287{left:417.919840pt;}
.x5_c00287{left:479.039067pt;}
.x6_c00287{left:493.759320pt;}
.x15_c00287{left:530.239707pt;}
.x7_c00287{left:559.038533pt;}
.x8_c00287{left:586.558507pt;}
.xf_c00287{left:639.679733pt;}
.x10_c00287{left:652.479453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f1def00cdc96c5bf03bb23c.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_d722af9f77cbcae15ab9c655.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_70065eadbc7e82cb9a8ad921.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_cb7594af3ca258fec11ebebf.woff2')format("woff");}.ff4_c00288{font-family:ff4_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;}
.m4_c00288{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.675258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675258,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls8_c00288{letter-spacing:-7.576538px;}
.lse_c00288{letter-spacing:-7.516800px;}
.lsd_c00288{letter-spacing:-6.811875px;}
.lsb_c00288{letter-spacing:-5.300663px;}
.lsc_c00288{letter-spacing:-4.543088px;}
.ls7_c00288{letter-spacing:-4.412948px;}
.ls9_c00288{letter-spacing:-3.787875px;}
.lsf_c00288{letter-spacing:-3.610800px;}
.ls2_c00288{letter-spacing:-3.031875px;}
.ls11_c00288{letter-spacing:-2.417925px;}
.ls1_c00288{letter-spacing:-2.267213px;}
.ls10_c00288{letter-spacing:-1.574895px;}
.ls3_c00288{letter-spacing:-1.512000px;}
.ls5_c00288{letter-spacing:-0.773393px;}
.ls4_c00288{letter-spacing:-0.756000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.ls6_c00288{letter-spacing:1.591200px;}
.lsa_c00288{letter-spacing:3.726810px;}
.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;}
._7_c00288{margin-left:-7.799158px;}
._c_c00288{margin-left:-6.244451px;}
._b_c00288{margin-left:-3.252920px;}
._9_c00288{margin-left:-1.748977px;}
._8_c00288{width:1.260485px;}
._6_c00288{width:2.620679px;}
._5_c00288{width:4.103723px;}
._4_c00288{width:5.152188px;}
._2_c00288{width:6.641654px;}
._1_c00288{width:8.740463px;}
._3_c00288{width:10.056617px;}
._d_c00288{width:11.088000px;}
._0_c00288{width:13.017254px;}
._12_c00288{width:14.263503px;}
._19_c00288{width:15.313664px;}
._a_c00288{width:16.469533px;}
._1a_c00288{width:17.997707px;}
._11_c00288{width:19.315921px;}
._13_c00288{width:20.852576px;}
._f_c00288{width:22.136201px;}
._e_c00288{width:23.349012px;}
._10_c00288{width:26.252161px;}
._1d_c00288{width:441.771447px;}
._1b_c00288{width:454.227880px;}
._17_c00288{width:512.213080px;}
._14_c00288{width:521.766848px;}
._18_c00288{width:573.331439px;}
._16_c00288{width:605.728887px;}
._15_c00288{width:630.923980px;}
._1e_c00288{width:691.055360px;}
._1c_c00288{width:702.909718px;}
.fc0_c00288{color:transparent;}
.fs5_c00288{font-size:72.750000px;}
.fs7_c00288{font-size:76.500000px;}
.fs9_c00288{font-size:77.250000px;}
.fs2_c00288{font-size:78.000000px;}
.fs0_c00288{font-size:78.750000px;}
.fs8_c00288{font-size:79.500000px;}
.fs3_c00288{font-size:80.250000px;}
.fs4_c00288{font-size:81.000000px;}
.fs1_c00288{font-size:83.250000px;}
.fsa_c00288{font-size:87.000000px;}
.fs6_c00288{font-size:103.500000px;}
.y0_c00288{bottom:0.000000px;}
.y22_c00288{bottom:213.480285px;}
.y21_c00288{bottom:213.480405px;}
.y20_c00288{bottom:243.360120px;}
.y1f_c00288{bottom:273.239850px;}
.y1d_c00288{bottom:303.119685px;}
.y1e_c00288{bottom:303.120435px;}
.y1c_c00288{bottom:332.999400px;}
.y1b_c00288{bottom:362.520750px;}
.y1a_c00288{bottom:392.040570px;}
.y19_c00288{bottom:392.041230px;}
.y18_c00288{bottom:451.080000px;}
.y17_c00288{bottom:451.080090px;}
.y16_c00288{bottom:481.320000px;}
.y15_c00288{bottom:510.839535px;}
.y14_c00288{bottom:510.839565px;}
.y13_c00288{bottom:540.360900px;}
.y12_c00288{bottom:540.360990px;}
.y11_c00288{bottom:569.880525px;}
.y10_c00288{bottom:600.120435px;}
.yf_c00288{bottom:659.881185px;}
.ye_c00288{bottom:689.760915px;}
.yd_c00288{bottom:719.280435px;}
.yc_c00288{bottom:749.879520px;}
.yb_c00288{bottom:779.039340px;}
.ya_c00288{bottom:809.279235px;}
.y9_c00288{bottom:868.320105px;}
.y8_c00288{bottom:898.560015px;}
.y7_c00288{bottom:928.439730px;}
.y6_c00288{bottom:958.679655px;}
.y5_c00288{bottom:988.200990px;}
.y3_c00288{bottom:1017.719895px;}
.y4_c00288{bottom:1017.720705px;}
.y2_c00288{bottom:1077.839535px;}
.y1_c00288{bottom:1137.239775px;}
.h9_c00288{height:75.080566px;}
.h7_c00288{height:75.875977px;}
.h3_c00288{height:76.552734px;}
.h1_c00288{height:77.288818px;}
.hb_c00288{height:77.853516px;}
.ha_c00288{height:78.024902px;}
.h4_c00288{height:78.760986px;}
.h6_c00288{height:79.457520px;}
.h5_c00288{height:79.497070px;}
.h2_c00288{height:81.705322px;}
.hc_c00288{height:85.385742px;}
.h8_c00288{height:107.947266px;}
.h0_c00288{height:1263.000000px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:138.239850px;}
.xc_c00288{left:139.321860px;}
.xb_c00288{left:157.319850px;}
.xf_c00288{left:162.359250px;}
.x13_c00288{left:192.958350px;}
.x10_c00288{left:204.479250px;}
.x14_c00288{left:207.719100px;}
.x3_c00288{left:219.239850px;}
.x4_c00288{left:243.359250px;}
.x11_c00288{left:311.759100px;}
.x15_c00288{left:348.840585px;}
.x8_c00288{left:352.796430px;}
.x12_c00288{left:375.839535px;}
.x6_c00288{left:526.679670px;}
.x9_c00288{left:547.559100px;}
.x7_c00288{left:548.999400px;}
.x17_c00288{left:553.679670px;}
.xa_c00288{left:554.759085px;}
.x16_c00288{left:561.599670px;}
.x2_c00288{left:629.999400px;}
.xd_c00288{left:644.399235px;}
.xe_c00288{left:667.080000px;}
.x5_c00288{left:741.959385px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls8_c00288{letter-spacing:-6.734700pt;}
.lse_c00288{letter-spacing:-6.681600pt;}
.lsd_c00288{letter-spacing:-6.055000pt;}
.lsb_c00288{letter-spacing:-4.711700pt;}
.lsc_c00288{letter-spacing:-4.038300pt;}
.ls7_c00288{letter-spacing:-3.922620pt;}
.ls9_c00288{letter-spacing:-3.367000pt;}
.lsf_c00288{letter-spacing:-3.209600pt;}
.ls2_c00288{letter-spacing:-2.695000pt;}
.ls11_c00288{letter-spacing:-2.149267pt;}
.ls1_c00288{letter-spacing:-2.015300pt;}
.ls10_c00288{letter-spacing:-1.399907pt;}
.ls3_c00288{letter-spacing:-1.344000pt;}
.ls5_c00288{letter-spacing:-0.687460pt;}
.ls4_c00288{letter-spacing:-0.672000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ls6_c00288{letter-spacing:1.414400pt;}
.lsa_c00288{letter-spacing:3.312720pt;}
.ws0_c00288{word-spacing:0.000000pt;}
._7_c00288{margin-left:-6.932585pt;}
._c_c00288{margin-left:-5.550623pt;}
._b_c00288{margin-left:-2.891485pt;}
._9_c00288{margin-left:-1.554646pt;}
._8_c00288{width:1.120431pt;}
._6_c00288{width:2.329492pt;}
._5_c00288{width:3.647754pt;}
._4_c00288{width:4.579723pt;}
._2_c00288{width:5.903692pt;}
._1_c00288{width:7.769300pt;}
._3_c00288{width:8.939215pt;}
._d_c00288{width:9.856000pt;}
._0_c00288{width:11.570892pt;}
._12_c00288{width:12.678669pt;}
._19_c00288{width:13.612146pt;}
._a_c00288{width:14.639585pt;}
._1a_c00288{width:15.997962pt;}
._11_c00288{width:17.169708pt;}
._13_c00288{width:18.535623pt;}
._f_c00288{width:19.676623pt;}
._e_c00288{width:20.754677pt;}
._10_c00288{width:23.335254pt;}
._1d_c00288{width:392.685731pt;}
._1b_c00288{width:403.758115pt;}
._17_c00288{width:455.300515pt;}
._14_c00288{width:463.792754pt;}
._18_c00288{width:509.627946pt;}
._16_c00288{width:538.425677pt;}
._15_c00288{width:560.821315pt;}
._1e_c00288{width:614.271431pt;}
._1c_c00288{width:624.808638pt;}
.fs5_c00288{font-size:64.666667pt;}
.fs7_c00288{font-size:68.000000pt;}
.fs9_c00288{font-size:68.666667pt;}
.fs2_c00288{font-size:69.333333pt;}
.fs0_c00288{font-size:70.000000pt;}
.fs8_c00288{font-size:70.666667pt;}
.fs3_c00288{font-size:71.333333pt;}
.fs4_c00288{font-size:72.000000pt;}
.fs1_c00288{font-size:74.000000pt;}
.fsa_c00288{font-size:77.333333pt;}
.fs6_c00288{font-size:92.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y22_c00288{bottom:189.760253pt;}
.y21_c00288{bottom:189.760360pt;}
.y20_c00288{bottom:216.320107pt;}
.y1f_c00288{bottom:242.879867pt;}
.y1d_c00288{bottom:269.439720pt;}
.y1e_c00288{bottom:269.440387pt;}
.y1c_c00288{bottom:295.999467pt;}
.y1b_c00288{bottom:322.240667pt;}
.y1a_c00288{bottom:348.480507pt;}
.y19_c00288{bottom:348.481093pt;}
.y18_c00288{bottom:400.960000pt;}
.y17_c00288{bottom:400.960080pt;}
.y16_c00288{bottom:427.840000pt;}
.y15_c00288{bottom:454.079587pt;}
.y14_c00288{bottom:454.079613pt;}
.y13_c00288{bottom:480.320800pt;}
.y12_c00288{bottom:480.320880pt;}
.y11_c00288{bottom:506.560467pt;}
.y10_c00288{bottom:533.440387pt;}
.yf_c00288{bottom:586.561053pt;}
.ye_c00288{bottom:613.120813pt;}
.yd_c00288{bottom:639.360387pt;}
.yc_c00288{bottom:666.559573pt;}
.yb_c00288{bottom:692.479413pt;}
.ya_c00288{bottom:719.359320pt;}
.y9_c00288{bottom:771.840093pt;}
.y8_c00288{bottom:798.720013pt;}
.y7_c00288{bottom:825.279760pt;}
.y6_c00288{bottom:852.159693pt;}
.y5_c00288{bottom:878.400880pt;}
.y3_c00288{bottom:904.639907pt;}
.y4_c00288{bottom:904.640627pt;}
.y2_c00288{bottom:958.079587pt;}
.y1_c00288{bottom:1010.879800pt;}
.h9_c00288{height:66.738281pt;}
.h7_c00288{height:67.445312pt;}
.h3_c00288{height:68.046875pt;}
.h1_c00288{height:68.701172pt;}
.hb_c00288{height:69.203125pt;}
.ha_c00288{height:69.355469pt;}
.h4_c00288{height:70.009766pt;}
.h6_c00288{height:70.628906pt;}
.h5_c00288{height:70.664062pt;}
.h2_c00288{height:72.626953pt;}
.hc_c00288{height:75.898438pt;}
.h8_c00288{height:95.953125pt;}
.h0_c00288{height:1122.666667pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:122.879867pt;}
.xc_c00288{left:123.841653pt;}
.xb_c00288{left:139.839867pt;}
.xf_c00288{left:144.319333pt;}
.x13_c00288{left:171.518533pt;}
.x10_c00288{left:181.759333pt;}
.x14_c00288{left:184.639200pt;}
.x3_c00288{left:194.879867pt;}
.x4_c00288{left:216.319333pt;}
.x11_c00288{left:277.119200pt;}
.x15_c00288{left:310.080520pt;}
.x8_c00288{left:313.596827pt;}
.x12_c00288{left:334.079587pt;}
.x6_c00288{left:468.159707pt;}
.x9_c00288{left:486.719200pt;}
.x7_c00288{left:487.999467pt;}
.x17_c00288{left:492.159707pt;}
.xa_c00288{left:493.119187pt;}
.x16_c00288{left:499.199707pt;}
.x2_c00288{left:559.999467pt;}
.xd_c00288{left:572.799320pt;}
.xe_c00288{left:592.960000pt;}
.x5_c00288{left:659.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9fc84cfbddfbde408c4a3b4d.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.364746;font-style:normal;font-weight:normal;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_b22a63c6f23c9cbf0f295c38.woff2')format("woff");}.ff2_c00289{font-family:ff2_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:ff3_c00289;src:url('chunks/assets/font_ae548a59a8ca7ce8c51bf284.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.432129;font-style:normal;font-weight:normal;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_10257f172096bddf098d0cdb.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_779e8950044eff43ac4062cc.woff2')format("woff");}.ff5_c00289{font-family:ff5_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;}
.m4_c00289{transform:matrix(0.028497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028497,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.045886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045886,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.046474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046474,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.047927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047927,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.059295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059295,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.122283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122283,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.126374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126374,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.127049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127049,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.129518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129518,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.131356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131356,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.136111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136111,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.137931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137931,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.143258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143258,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.147222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147222,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.155914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155914,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608696,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.836957,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls7_c00289{letter-spacing:-10.825200px;}
.ls8_c00289{letter-spacing:-8.899800px;}
.ls18_c00289{letter-spacing:-6.002955px;}
.ls11_c00289{letter-spacing:-5.945625px;}
.ls14_c00289{letter-spacing:-5.196713px;}
.ls16_c00289{letter-spacing:-4.456463px;}
.lsc_c00289{letter-spacing:-4.312500px;}
.ls12_c00289{letter-spacing:-3.717000px;}
.lsf_c00289{letter-spacing:-3.715575px;}
.lsd_c00289{letter-spacing:-2.968875px;}
.ls10_c00289{letter-spacing:-2.229413px;}
.ls13_c00289{letter-spacing:-2.186948px;}
.ls15_c00289{letter-spacing:-1.489163px;}
.lsb_c00289{letter-spacing:-1.481025px;}
.lse_c00289{letter-spacing:-0.740250px;}
.lsa_c00289{letter-spacing:0.000000px;}
.ls19_c00289{letter-spacing:1.377000px;}
.ls5_c00289{letter-spacing:1.481025px;}
.ls2_c00289{letter-spacing:2.968875px;}
.ls17_c00289{letter-spacing:3.570345px;}
.ls0_c00289{letter-spacing:4.449900px;}
.ls4_c00289{letter-spacing:5.938433px;}
.ls9_c00289{letter-spacing:6.422018px;}
.ls1_c00289{letter-spacing:10.388333px;}
.ls1a_c00289{letter-spacing:11.868675px;}
.ls6_c00289{letter-spacing:16.319258px;}
.ls3_c00289{letter-spacing:25.225200px;}
.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;}
._c_c00289{margin-left:-77.314520px;}
._9_c00289{margin-left:-29.900384px;}
._6_c00289{margin-left:-27.061422px;}
._3_c00289{margin-left:-23.880972px;}
._1_c00289{margin-left:-12.012059px;}
._19_c00289{margin-left:-5.404613px;}
._4_c00289{margin-left:-2.389937px;}
._1a_c00289{margin-left:-1.166540px;}
._2_c00289{width:1.078469px;}
._18_c00289{width:2.800191px;}
._d_c00289{width:4.621562px;}
._0_c00289{width:5.897275px;}
._17_c00289{width:7.041057px;}
._15_c00289{width:8.517481px;}
._8_c00289{width:9.984678px;}
._7_c00289{width:12.094197px;}
._16_c00289{width:13.700747px;}
._1b_c00289{width:17.865782px;}
._1e_c00289{width:20.488531px;}
._21_c00289{width:22.069524px;}
._20_c00289{width:23.236332px;}
._a_c00289{width:24.924544px;}
._1c_c00289{width:26.094555px;}
._b_c00289{width:28.631172px;}
._1d_c00289{width:31.207169px;}
._1f_c00289{width:32.665480px;}
._f_c00289{width:44.474300px;}
._11_c00289{width:46.596256px;}
._13_c00289{width:49.525637px;}
._14_c00289{width:51.033299px;}
._e_c00289{width:52.764045px;}
._10_c00289{width:60.220392px;}
._12_c00289{width:65.016565px;}
._5_c00289{width:185.530500px;}
.fc0_c00289{color:transparent;}
.fsa_c00289{font-size:17.250000px;}
.fs4_c00289{font-size:42.000000px;}
.fsf_c00289{font-size:43.500000px;}
.fs5_c00289{font-size:44.250000px;}
.fs6_c00289{font-size:45.750000px;}
.fse_c00289{font-size:58.500000px;}
.fsc_c00289{font-size:60.750000px;}
.fs15_c00289{font-size:62.250000px;}
.fsd_c00289{font-size:65.250000px;}
.fs2_c00289{font-size:66.750000px;}
.fs9_c00289{font-size:67.500000px;}
.fs0_c00289{font-size:68.250000px;}
.fsb_c00289{font-size:69.000000px;}
.fs1_c00289{font-size:69.750000px;}
.fs12_c00289{font-size:77.250000px;}
.fs10_c00289{font-size:78.750000px;}
.fs13_c00289{font-size:79.500000px;}
.fs11_c00289{font-size:80.250000px;}
.fs14_c00289{font-size:85.500000px;}
.fs8_c00289{font-size:117.000000px;}
.fs7_c00289{font-size:118.500000px;}
.fs3_c00289{font-size:144.750000px;}
.y0_c00289{bottom:0.000000px;}
.y21_c00289{bottom:214.558875px;}
.y20_c00289{bottom:244.438590px;}
.y1f_c00289{bottom:273.959925px;}
.y1e_c00289{bottom:304.199850px;}
.y1d_c00289{bottom:304.200255px;}
.y1c_c00289{bottom:333.719790px;}
.y1b_c00289{bottom:363.959700px;}
.y1a_c00289{bottom:393.479235px;}
.y19_c00289{bottom:517.317585px;}
.y17_c00289{bottom:540.718650px;}
.y16_c00289{bottom:552.599325px;}
.y15_c00289{bottom:564.478200px;}
.y14_c00289{bottom:576.358890px;}
.y13_c00289{bottom:587.879520px;}
.y22_c00289{bottom:634.318770px;}
.y18_c00289{bottom:634.678500px;}
.y12_c00289{bottom:786.599115px;}
.y11_c00289{bottom:786.599700px;}
.yf_c00289{bottom:810.358815px;}
.y10_c00289{bottom:810.359250px;}
.ye_c00289{bottom:833.760135px;}
.yd_c00289{bottom:834.119385px;}
.yc_c00289{bottom:857.159370px;}
.yb_c00289{bottom:880.199340px;}
.ya_c00289{bottom:880.560240px;}
.y9_c00289{bottom:903.600135px;}
.y8_c00289{bottom:903.959385px;}
.y7_c00289{bottom:919.438665px;}
.y6_c00289{bottom:974.519715px;}
.y5_c00289{bottom:992.879520px;}
.y3_c00289{bottom:1009.439160px;}
.y4_c00289{bottom:1009.439670px;}
.y2_c00289{bottom:1091.879970px;}
.y1_c00289{bottom:1115.279205px;}
.hb_c00289{height:17.991211px;}
.h5_c00289{height:43.804688px;}
.h10_c00289{height:45.369141px;}
.h7_c00289{height:46.107422px;}
.h6_c00289{height:46.151367px;}
.hf_c00289{height:61.013672px;}
.hd_c00289{height:63.360352px;}
.he_c00289{height:64.485352px;}
.h17_c00289{height:64.924805px;}
.h11_c00289{height:65.967773px;}
.ha_c00289{height:66.708984px;}
.h3_c00289{height:67.271484px;}
.h1_c00289{height:67.450195px;}
.hc_c00289{height:68.191406px;}
.h2_c00289{height:68.932617px;}
.h14_c00289{height:75.816650px;}
.h12_c00289{height:77.288818px;}
.h15_c00289{height:78.024902px;}
.h13_c00289{height:78.760986px;}
.h16_c00289{height:84.498047px;}
.h9_c00289{height:122.027344px;}
.h8_c00289{height:123.591797px;}
.h4_c00289{height:150.969727px;}
.h0_c00289{height:1263.000000px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x17_c00289{left:138.239850px;}
.x1c_c00289{left:140.038950px;}
.x18_c00289{left:156.238785px;}
.x19_c00289{left:200.519100px;}
.x1d_c00289{left:271.079385px;}
.x1e_c00289{left:293.758500px;}
.x16_c00289{left:298.438635px;}
.x1_c00289{left:299.878950px;}
.x5_c00289{left:300.957990px;}
.xc_c00289{left:304.559100px;}
.x2_c00289{left:340.199385px;}
.x3_c00289{left:363.598530px;}
.x6_c00289{left:381.958350px;}
.x7_c00289{left:387.358665px;}
.xd_c00289{left:415.439670px;}
.x13_c00289{left:426.958920px;}
.x8_c00289{left:440.279250px;}
.x9_c00289{left:450.359850px;}
.xe_c00289{left:479.159415px;}
.x12_c00289{left:484.559685px;}
.xa_c00289{left:497.519070px;}
.x14_c00289{left:500.759085px;}
.x15_c00289{left:530.639700px;}
.x20_c00289{left:536.039985px;}
.x1f_c00289{left:541.079400px;}
.xf_c00289{left:542.519670px;}
.xb_c00289{left:555.479235px;}
.x11_c00289{left:556.919535px;}
.x1a_c00289{left:573.118785px;}
.x4_c00289{left:577.078770px;}
.x10_c00289{left:600.838950px;}
.x1b_c00289{left:604.078770px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls7_c00289{letter-spacing:-9.622400pt;}
.ls8_c00289{letter-spacing:-7.910933pt;}
.ls18_c00289{letter-spacing:-5.335960pt;}
.ls11_c00289{letter-spacing:-5.285000pt;}
.ls14_c00289{letter-spacing:-4.619300pt;}
.ls16_c00289{letter-spacing:-3.961300pt;}
.lsc_c00289{letter-spacing:-3.833333pt;}
.ls12_c00289{letter-spacing:-3.304000pt;}
.lsf_c00289{letter-spacing:-3.302733pt;}
.lsd_c00289{letter-spacing:-2.639000pt;}
.ls10_c00289{letter-spacing:-1.981700pt;}
.ls13_c00289{letter-spacing:-1.943953pt;}
.ls15_c00289{letter-spacing:-1.323700pt;}
.lsb_c00289{letter-spacing:-1.316467pt;}
.lse_c00289{letter-spacing:-0.658000pt;}
.lsa_c00289{letter-spacing:0.000000pt;}
.ls19_c00289{letter-spacing:1.224000pt;}
.ls5_c00289{letter-spacing:1.316467pt;}
.ls2_c00289{letter-spacing:2.639000pt;}
.ls17_c00289{letter-spacing:3.173640pt;}
.ls0_c00289{letter-spacing:3.955467pt;}
.ls4_c00289{letter-spacing:5.278607pt;}
.ls9_c00289{letter-spacing:5.708460pt;}
.ls1_c00289{letter-spacing:9.234073pt;}
.ls1a_c00289{letter-spacing:10.549933pt;}
.ls6_c00289{letter-spacing:14.506007pt;}
.ls3_c00289{letter-spacing:22.422400pt;}
.ws0_c00289{word-spacing:0.000000pt;}
._c_c00289{margin-left:-68.724018pt;}
._9_c00289{margin-left:-26.578119pt;}
._6_c00289{margin-left:-24.054597pt;}
._3_c00289{margin-left:-21.227530pt;}
._1_c00289{margin-left:-10.677386pt;}
._19_c00289{margin-left:-4.804100pt;}
._4_c00289{margin-left:-2.124388pt;}
._1a_c00289{margin-left:-1.036925pt;}
._2_c00289{width:0.958639pt;}
._18_c00289{width:2.489059pt;}
._d_c00289{width:4.108055pt;}
._0_c00289{width:5.242022pt;}
._17_c00289{width:6.258717pt;}
._15_c00289{width:7.571094pt;}
._8_c00289{width:8.875270pt;}
._7_c00289{width:10.750397pt;}
._16_c00289{width:12.178442pt;}
._1b_c00289{width:15.880695pt;}
._1e_c00289{width:18.212027pt;}
._21_c00289{width:19.617355pt;}
._20_c00289{width:20.654517pt;}
._a_c00289{width:22.155150pt;}
._1c_c00289{width:23.195160pt;}
._b_c00289{width:25.449930pt;}
._1d_c00289{width:27.739706pt;}
._1f_c00289{width:29.035982pt;}
._f_c00289{width:39.532711pt;}
._11_c00289{width:41.418894pt;}
._13_c00289{width:44.022789pt;}
._14_c00289{width:45.362932pt;}
._e_c00289{width:46.901374pt;}
._10_c00289{width:53.529238pt;}
._12_c00289{width:57.792502pt;}
._5_c00289{width:164.916000pt;}
.fsa_c00289{font-size:15.333333pt;}
.fs4_c00289{font-size:37.333333pt;}
.fsf_c00289{font-size:38.666667pt;}
.fs5_c00289{font-size:39.333333pt;}
.fs6_c00289{font-size:40.666667pt;}
.fse_c00289{font-size:52.000000pt;}
.fsc_c00289{font-size:54.000000pt;}
.fs15_c00289{font-size:55.333333pt;}
.fsd_c00289{font-size:58.000000pt;}
.fs2_c00289{font-size:59.333333pt;}
.fs9_c00289{font-size:60.000000pt;}
.fs0_c00289{font-size:60.666667pt;}
.fsb_c00289{font-size:61.333333pt;}
.fs1_c00289{font-size:62.000000pt;}
.fs12_c00289{font-size:68.666667pt;}
.fs10_c00289{font-size:70.000000pt;}
.fs13_c00289{font-size:70.666667pt;}
.fs11_c00289{font-size:71.333333pt;}
.fs14_c00289{font-size:76.000000pt;}
.fs8_c00289{font-size:104.000000pt;}
.fs7_c00289{font-size:105.333333pt;}
.fs3_c00289{font-size:128.666667pt;}
.y0_c00289{bottom:0.000000pt;}
.y21_c00289{bottom:190.719000pt;}
.y20_c00289{bottom:217.278747pt;}
.y1f_c00289{bottom:243.519933pt;}
.y1e_c00289{bottom:270.399867pt;}
.y1d_c00289{bottom:270.400227pt;}
.y1c_c00289{bottom:296.639813pt;}
.y1b_c00289{bottom:323.519733pt;}
.y1a_c00289{bottom:349.759320pt;}
.y19_c00289{bottom:459.837853pt;}
.y17_c00289{bottom:480.638800pt;}
.y16_c00289{bottom:491.199400pt;}
.y15_c00289{bottom:501.758400pt;}
.y14_c00289{bottom:512.319013pt;}
.y13_c00289{bottom:522.559573pt;}
.y22_c00289{bottom:563.838907pt;}
.y18_c00289{bottom:564.158667pt;}
.y12_c00289{bottom:699.199213pt;}
.y11_c00289{bottom:699.199733pt;}
.yf_c00289{bottom:720.318947pt;}
.y10_c00289{bottom:720.319333pt;}
.ye_c00289{bottom:741.120120pt;}
.yd_c00289{bottom:741.439453pt;}
.yc_c00289{bottom:761.919440pt;}
.yb_c00289{bottom:782.399413pt;}
.ya_c00289{bottom:782.720213pt;}
.y9_c00289{bottom:803.200120pt;}
.y8_c00289{bottom:803.519453pt;}
.y7_c00289{bottom:817.278813pt;}
.y6_c00289{bottom:866.239747pt;}
.y5_c00289{bottom:882.559573pt;}
.y3_c00289{bottom:897.279253pt;}
.y4_c00289{bottom:897.279707pt;}
.y2_c00289{bottom:970.559973pt;}
.y1_c00289{bottom:991.359293pt;}
.hb_c00289{height:15.992187pt;}
.h5_c00289{height:38.937500pt;}
.h10_c00289{height:40.328125pt;}
.h7_c00289{height:40.984375pt;}
.h6_c00289{height:41.023438pt;}
.hf_c00289{height:54.234375pt;}
.hd_c00289{height:56.320312pt;}
.he_c00289{height:57.320313pt;}
.h17_c00289{height:57.710938pt;}
.h11_c00289{height:58.638021pt;}
.ha_c00289{height:59.296875pt;}
.h3_c00289{height:59.796875pt;}
.h1_c00289{height:59.955729pt;}
.hc_c00289{height:60.614583pt;}
.h2_c00289{height:61.273438pt;}
.h14_c00289{height:67.392578pt;}
.h12_c00289{height:68.701172pt;}
.h15_c00289{height:69.355469pt;}
.h13_c00289{height:70.009766pt;}
.h16_c00289{height:75.109375pt;}
.h9_c00289{height:108.468750pt;}
.h8_c00289{height:109.859375pt;}
.h4_c00289{height:134.195312pt;}
.h0_c00289{height:1122.666667pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x17_c00289{left:122.879867pt;}
.x1c_c00289{left:124.479067pt;}
.x18_c00289{left:138.878920pt;}
.x19_c00289{left:178.239200pt;}
.x1d_c00289{left:240.959453pt;}
.x1e_c00289{left:261.118667pt;}
.x16_c00289{left:265.278787pt;}
.x1_c00289{left:266.559067pt;}
.x5_c00289{left:267.518213pt;}
.xc_c00289{left:270.719200pt;}
.x2_c00289{left:302.399453pt;}
.x3_c00289{left:323.198693pt;}
.x6_c00289{left:339.518533pt;}
.x7_c00289{left:344.318813pt;}
.xd_c00289{left:369.279707pt;}
.x13_c00289{left:379.519040pt;}
.x8_c00289{left:391.359333pt;}
.x9_c00289{left:400.319867pt;}
.xe_c00289{left:425.919480pt;}
.x12_c00289{left:430.719720pt;}
.xa_c00289{left:442.239173pt;}
.x14_c00289{left:445.119187pt;}
.x15_c00289{left:471.679733pt;}
.x20_c00289{left:476.479987pt;}
.x1f_c00289{left:480.959467pt;}
.xf_c00289{left:482.239707pt;}
.xb_c00289{left:493.759320pt;}
.x11_c00289{left:495.039587pt;}
.x1a_c00289{left:509.438920pt;}
.x4_c00289{left:512.958907pt;}
.x10_c00289{left:534.079067pt;}
.x1b_c00289{left:536.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7c4ef5db447238d186d6427.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_ca3af34e374c98ed9295e5a7.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_9cddcaf5c80590b46a18314a.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_78fe7c3d9db94018597ed65a.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_a2b5f3121462e21a5cd9dbc6.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00290;src:url('chunks/assets/font_9c968fa66e7d77391155387c.woff2')format("woff");}.ff6_c00290{font-family:ff6_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;}
.m2_c00290{transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);}
.m14_c00290{transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);}
.mf_c00290{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m16_c00290{transform:matrix(0.207386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207386,0.000000,0.000000,0.250000,0,0);}
.m1f_c00290{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00290{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m1d_c00290{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00290{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m1b_c00290{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m10_c00290{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m17_c00290{transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00290{transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.357895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357895,0.000000,0.000000,0.250000,0,0);}
.m15_c00290{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m19_c00290{transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);}
.m18_c00290{transform:matrix(0.390449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390449,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.400568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400568,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.404321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404321,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.415541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415541,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls18_c00290{letter-spacing:-23.509200px;}
.ls1a_c00290{letter-spacing:-13.589700px;}
.ls1b_c00290{letter-spacing:-9.769200px;}
.ls21_c00290{letter-spacing:-9.344025px;}
.ls8_c00290{letter-spacing:-7.576538px;}
.lsc_c00290{letter-spacing:-7.200720px;}
.ls15_c00290{letter-spacing:-6.811875px;}
.ls16_c00290{letter-spacing:-6.055875px;}
.ls3_c00290{letter-spacing:-5.840100px;}
.ls1f_c00290{letter-spacing:-5.772300px;}
.lsa_c00290{letter-spacing:-5.300663px;}
.ls11_c00290{letter-spacing:-5.247533px;}
.ls5_c00290{letter-spacing:-5.054400px;}
.ls20_c00290{letter-spacing:-4.802400px;}
.lsf_c00290{letter-spacing:-4.634618px;}
.ls13_c00290{letter-spacing:-4.543088px;}
.ls9_c00290{letter-spacing:-3.787875px;}
.ls14_c00290{letter-spacing:-3.160500px;}
.ls7_c00290{letter-spacing:-3.031875px;}
.lsd_c00290{letter-spacing:-2.396880px;}
.ls0_c00290{letter-spacing:-2.267213px;}
.ls17_c00290{letter-spacing:-1.957200px;}
.ls1_c00290{letter-spacing:-1.512000px;}
.ls1e_c00290{letter-spacing:-0.798480px;}
.ls1c_c00290{letter-spacing:-0.792975px;}
.ls4_c00290{letter-spacing:-0.756000px;}
.ls2_c00290{letter-spacing:0.000000px;}
.lsb_c00290{letter-spacing:0.554445px;}
.ls6_c00290{letter-spacing:3.031875px;}
.ls12_c00290{letter-spacing:6.922913px;}
.ls10_c00290{letter-spacing:9.597600px;}
.lse_c00290{letter-spacing:11.196000px;}
.ls19_c00290{letter-spacing:11.527725px;}
.ls1d_c00290{letter-spacing:32.803200px;}
.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;}
._16_c00290{margin-left:-21.103425px;}
._a_c00290{margin-left:-14.289733px;}
._3_c00290{margin-left:-5.284610px;}
._2_c00290{margin-left:-3.782120px;}
._13_c00290{margin-left:-2.535508px;}
._7_c00290{margin-left:-1.135454px;}
._0_c00290{width:1.892423px;}
._1_c00290{width:3.542720px;}
._4_c00290{width:5.038425px;}
._14_c00290{width:6.134988px;}
._6_c00290{width:7.203384px;}
._11_c00290{width:8.806855px;}
._f_c00290{width:10.726113px;}
._b_c00290{width:11.993140px;}
._9_c00290{width:13.537670px;}
._d_c00290{width:14.616606px;}
._8_c00290{width:15.626665px;}
._15_c00290{width:16.998975px;}
._e_c00290{width:18.899213px;}
._10_c00290{width:20.355058px;}
._5_c00290{width:23.341197px;}
._17_c00290{width:25.439400px;}
._1a_c00290{width:27.880832px;}
._18_c00290{width:30.216557px;}
._c_c00290{width:33.825487px;}
._19_c00290{width:35.289147px;}
._12_c00290{width:73.570288px;}
.fc0_c00290{color:transparent;}
.fsd_c00290{font-size:31.500000px;}
.fse_c00290{font-size:40.500000px;}
.fs9_c00290{font-size:47.250000px;}
.fs15_c00290{font-size:53.250000px;}
.fs6_c00290{font-size:55.500000px;}
.fsa_c00290{font-size:60.750000px;}
.fs13_c00290{font-size:62.250000px;}
.fs7_c00290{font-size:66.000000px;}
.fs14_c00290{font-size:66.750000px;}
.fsc_c00290{font-size:71.250000px;}
.fs8_c00290{font-size:72.000000px;}
.fsb_c00290{font-size:72.750000px;}
.fs10_c00290{font-size:73.500000px;}
.fs12_c00290{font-size:74.250000px;}
.fs4_c00290{font-size:78.000000px;}
.fs0_c00290{font-size:78.750000px;}
.fs1_c00290{font-size:79.500000px;}
.fs17_c00290{font-size:80.250000px;}
.fs3_c00290{font-size:81.000000px;}
.fs5_c00290{font-size:81.750000px;}
.fs16_c00290{font-size:82.500000px;}
.fs11_c00290{font-size:84.000000px;}
.fsf_c00290{font-size:115.500000px;}
.fs2_c00290{font-size:132.000000px;}
.y0_c00290{bottom:0.000000px;}
.y2b_c00290{bottom:196.198635px;}
.y2c_c00290{bottom:196.199850px;}
.y2a_c00290{bottom:226.078350px;}
.y29_c00290{bottom:285.839910px;}
.y28_c00290{bottom:314.998950px;}
.y24_c00290{bottom:344.518635px;}
.y25_c00290{bottom:344.879535px;}
.y27_c00290{bottom:345.238785px;}
.y26_c00290{bottom:345.239610px;}
.y23_c00290{bottom:374.398110px;}
.y22_c00290{bottom:404.638020px;}
.y21_c00290{bottom:433.799175px;}
.y20_c00290{bottom:493.558620px;}
.y1f_c00290{bottom:514.799520px;}
.y1e_c00290{bottom:514.799955px;}
.y1c_c00290{bottom:536.398155px;}
.y1d_c00290{bottom:536.399235px;}
.y1b_c00290{bottom:557.639070px;}
.y1a_c00290{bottom:578.879970px;}
.y19_c00290{bottom:578.882220px;}
.y18_c00290{bottom:600.481515px;}
.y17_c00290{bottom:659.520285px;}
.y16_c00290{bottom:689.039820px;}
.y15_c00290{bottom:718.919535px;}
.y14_c00290{bottom:745.199385px;}
.y13_c00290{bottom:748.800105px;}
.y12_c00290{bottom:752.039985px;}
.y11_c00290{bottom:778.679625px;}
.y10_c00290{bottom:809.280030px;}
.yf_c00290{bottom:838.799565px;}
.ye_c00290{bottom:867.960015px;}
.yd_c00290{bottom:927.359685px;}
.y6_c00290{bottom:987.479145px;}
.yc_c00290{bottom:987.479325px;}
.y5_c00290{bottom:1017.719055px;}
.yb_c00290{bottom:1017.719235px;}
.ya_c00290{bottom:1047.238770px;}
.y4_c00290{bottom:1047.240030px;}
.y3_c00290{bottom:1077.119745px;}
.y9_c00290{bottom:1077.120465px;}
.y2_c00290{bottom:1106.639280px;}
.y8_c00290{bottom:1106.639985px;}
.y1_c00290{bottom:1136.158815px;}
.y7_c00290{bottom:1136.519715px;}
.hf_c00290{height:32.853516px;}
.h10_c00290{height:39.728760px;}
.ha_c00290{height:49.280273px;}
.h19_c00290{height:55.538086px;}
.he_c00290{height:55.933594px;}
.h7_c00290{height:57.884766px;}
.h16_c00290{height:61.520508px;}
.hb_c00290{height:63.360352px;}
.h8_c00290{height:65.226562px;}
.h17_c00290{height:69.618164px;}
.hd_c00290{height:74.311523px;}
.h9_c00290{height:75.093750px;}
.hc_c00290{height:75.875977px;}
.h5_c00290{height:76.552734px;}
.h12_c00290{height:76.658203px;}
.h1_c00290{height:77.288818px;}
.h15_c00290{height:77.440430px;}
.h2_c00290{height:77.986084px;}
.h1c_c00290{height:78.760986px;}
.h4_c00290{height:79.497070px;}
.h6_c00290{height:80.233154px;}
.h1b_c00290{height:80.791992px;}
.h1a_c00290{height:81.533203px;}
.h13_c00290{height:82.133789px;}
.h18_c00290{height:82.388672px;}
.h14_c00290{height:83.015625px;}
.h11_c00290{height:120.462891px;}
.h3_c00290{height:137.671875px;}
.h0_c00290{height:1263.000000px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x17_c00290{left:138.599100px;}
.xb_c00290{left:139.678755px;}
.xf_c00290{left:152.998950px;}
.xc_c00290{left:164.158785px;}
.x1c_c00290{left:193.317885px;}
.x1b_c00290{left:195.117735px;}
.x18_c00290{left:201.959400px;}
.x10_c00290{left:216.718500px;}
.xd_c00290{left:227.159850px;}
.x27_c00290{left:230.759100px;}
.x11_c00290{left:240.839535px;}
.xe_c00290{left:250.559100px;}
.x21_c00290{left:258.838515px;}
.x1_c00290{left:273.599100px;}
.x28_c00290{left:293.399250px;}
.x22_c00290{left:318.599700px;}
.x2_c00290{left:325.438635px;}
.x23_c00290{left:327.958350px;}
.x29_c00290{left:353.519685px;}
.x1d_c00290{left:355.319250px;}
.x1e_c00290{left:366.120000px;}
.x19_c00290{left:368.998950px;}
.x1a_c00290{left:389.519070px;}
.x32_c00290{left:407.878920px;}
.x2a_c00290{left:414.719565px;}
.x33_c00290{left:434.878920px;}
.x2b_c00290{left:436.319235px;}
.x12_c00290{left:441.358665px;}
.x2c_c00290{left:454.319820px;}
.x13_c00290{left:483.839535px;}
.x6_c00290{left:527.039340px;}
.x2d_c00290{left:530.998950px;}
.x7_c00290{left:534.238770px;}
.x3_c00290{left:538.559685px;}
.x5_c00290{left:541.438200px;}
.x9_c00290{left:543.239130px;}
.xa_c00290{left:553.679445px;}
.x4_c00290{left:558.719100px;}
.x8_c00290{left:560.159415px;}
.x34_c00290{left:567.000000px;}
.x36_c00290{left:584.998950px;}
.x1f_c00290{left:587.879520px;}
.x35_c00290{left:596.158770px;}
.x37_c00290{left:600.118785px;}
.x2e_c00290{left:602.279250px;}
.x20_c00290{left:606.598530px;}
.x14_c00290{left:650.158770px;}
.x2f_c00290{left:653.398635px;}
.x15_c00290{left:668.879520px;}
.x24_c00290{left:692.998950px;}
.x30_c00290{left:698.039985px;}
.x25_c00290{left:699.119385px;}
.x26_c00290{left:713.159820px;}
.x31_c00290{left:744.479235px;}
.x16_c00290{left:762.838950px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls18_c00290{letter-spacing:-20.897067pt;}
.ls1a_c00290{letter-spacing:-12.079733pt;}
.ls1b_c00290{letter-spacing:-8.683733pt;}
.ls21_c00290{letter-spacing:-8.305800pt;}
.ls8_c00290{letter-spacing:-6.734700pt;}
.lsc_c00290{letter-spacing:-6.400640pt;}
.ls15_c00290{letter-spacing:-6.055000pt;}
.ls16_c00290{letter-spacing:-5.383000pt;}
.ls3_c00290{letter-spacing:-5.191200pt;}
.ls1f_c00290{letter-spacing:-5.130933pt;}
.lsa_c00290{letter-spacing:-4.711700pt;}
.ls11_c00290{letter-spacing:-4.664473pt;}
.ls5_c00290{letter-spacing:-4.492800pt;}
.ls20_c00290{letter-spacing:-4.268800pt;}
.lsf_c00290{letter-spacing:-4.119660pt;}
.ls13_c00290{letter-spacing:-4.038300pt;}
.ls9_c00290{letter-spacing:-3.367000pt;}
.ls14_c00290{letter-spacing:-2.809333pt;}
.ls7_c00290{letter-spacing:-2.695000pt;}
.lsd_c00290{letter-spacing:-2.130560pt;}
.ls0_c00290{letter-spacing:-2.015300pt;}
.ls17_c00290{letter-spacing:-1.739733pt;}
.ls1_c00290{letter-spacing:-1.344000pt;}
.ls1e_c00290{letter-spacing:-0.709760pt;}
.ls1c_c00290{letter-spacing:-0.704867pt;}
.ls4_c00290{letter-spacing:-0.672000pt;}
.ls2_c00290{letter-spacing:0.000000pt;}
.lsb_c00290{letter-spacing:0.492840pt;}
.ls6_c00290{letter-spacing:2.695000pt;}
.ls12_c00290{letter-spacing:6.153700pt;}
.ls10_c00290{letter-spacing:8.531200pt;}
.lse_c00290{letter-spacing:9.952000pt;}
.ls19_c00290{letter-spacing:10.246867pt;}
.ls1d_c00290{letter-spacing:29.158400pt;}
.ws0_c00290{word-spacing:0.000000pt;}
._16_c00290{margin-left:-18.758600pt;}
._a_c00290{margin-left:-12.701985pt;}
._3_c00290{margin-left:-4.697431pt;}
._2_c00290{margin-left:-3.361885pt;}
._13_c00290{margin-left:-2.253785pt;}
._7_c00290{margin-left:-1.009292pt;}
._0_c00290{width:1.682154pt;}
._1_c00290{width:3.149085pt;}
._4_c00290{width:4.478600pt;}
._14_c00290{width:5.453323pt;}
._6_c00290{width:6.403008pt;}
._11_c00290{width:7.828315pt;}
._f_c00290{width:9.534323pt;}
._b_c00290{width:10.660569pt;}
._9_c00290{width:12.033485pt;}
._d_c00290{width:12.992538pt;}
._8_c00290{width:13.890369pt;}
._15_c00290{width:15.110200pt;}
._e_c00290{width:16.799300pt;}
._10_c00290{width:18.093385pt;}
._5_c00290{width:20.747731pt;}
._17_c00290{width:22.612800pt;}
._1a_c00290{width:24.782962pt;}
._18_c00290{width:26.859162pt;}
._c_c00290{width:30.067100pt;}
._19_c00290{width:31.368131pt;}
._12_c00290{width:65.395812pt;}
.fsd_c00290{font-size:28.000000pt;}
.fse_c00290{font-size:36.000000pt;}
.fs9_c00290{font-size:42.000000pt;}
.fs15_c00290{font-size:47.333333pt;}
.fs6_c00290{font-size:49.333333pt;}
.fsa_c00290{font-size:54.000000pt;}
.fs13_c00290{font-size:55.333333pt;}
.fs7_c00290{font-size:58.666667pt;}
.fs14_c00290{font-size:59.333333pt;}
.fsc_c00290{font-size:63.333333pt;}
.fs8_c00290{font-size:64.000000pt;}
.fsb_c00290{font-size:64.666667pt;}
.fs10_c00290{font-size:65.333333pt;}
.fs12_c00290{font-size:66.000000pt;}
.fs4_c00290{font-size:69.333333pt;}
.fs0_c00290{font-size:70.000000pt;}
.fs1_c00290{font-size:70.666667pt;}
.fs17_c00290{font-size:71.333333pt;}
.fs3_c00290{font-size:72.000000pt;}
.fs5_c00290{font-size:72.666667pt;}
.fs16_c00290{font-size:73.333333pt;}
.fs11_c00290{font-size:74.666667pt;}
.fsf_c00290{font-size:102.666667pt;}
.fs2_c00290{font-size:117.333333pt;}
.y0_c00290{bottom:0.000000pt;}
.y2b_c00290{bottom:174.398787pt;}
.y2c_c00290{bottom:174.399867pt;}
.y2a_c00290{bottom:200.958533pt;}
.y29_c00290{bottom:254.079920pt;}
.y28_c00290{bottom:279.999067pt;}
.y24_c00290{bottom:306.238787pt;}
.y25_c00290{bottom:306.559587pt;}
.y27_c00290{bottom:306.878920pt;}
.y26_c00290{bottom:306.879653pt;}
.y23_c00290{bottom:332.798320pt;}
.y22_c00290{bottom:359.678240pt;}
.y21_c00290{bottom:385.599267pt;}
.y20_c00290{bottom:438.718773pt;}
.y1f_c00290{bottom:457.599573pt;}
.y1e_c00290{bottom:457.599960pt;}
.y1c_c00290{bottom:476.798360pt;}
.y1d_c00290{bottom:476.799320pt;}
.y1b_c00290{bottom:495.679173pt;}
.y1a_c00290{bottom:514.559973pt;}
.y19_c00290{bottom:514.561973pt;}
.y18_c00290{bottom:533.761347pt;}
.y17_c00290{bottom:586.240253pt;}
.y16_c00290{bottom:612.479840pt;}
.y15_c00290{bottom:639.039587pt;}
.y14_c00290{bottom:662.399453pt;}
.y13_c00290{bottom:665.600093pt;}
.y12_c00290{bottom:668.479987pt;}
.y11_c00290{bottom:692.159667pt;}
.y10_c00290{bottom:719.360027pt;}
.yf_c00290{bottom:745.599613pt;}
.ye_c00290{bottom:771.520013pt;}
.yd_c00290{bottom:824.319720pt;}
.y6_c00290{bottom:877.759240pt;}
.yc_c00290{bottom:877.759400pt;}
.y5_c00290{bottom:904.639160pt;}
.yb_c00290{bottom:904.639320pt;}
.ya_c00290{bottom:930.878907pt;}
.y4_c00290{bottom:930.880027pt;}
.y3_c00290{bottom:957.439773pt;}
.y9_c00290{bottom:957.440413pt;}
.y2_c00290{bottom:983.679360pt;}
.y8_c00290{bottom:983.679987pt;}
.y1_c00290{bottom:1009.918947pt;}
.y7_c00290{bottom:1010.239747pt;}
.hf_c00290{height:29.203125pt;}
.h10_c00290{height:35.314453pt;}
.ha_c00290{height:43.804688pt;}
.h19_c00290{height:49.367188pt;}
.he_c00290{height:49.718750pt;}
.h7_c00290{height:51.453125pt;}
.h16_c00290{height:54.684896pt;}
.hb_c00290{height:56.320312pt;}
.h8_c00290{height:57.979167pt;}
.h17_c00290{height:61.882812pt;}
.hd_c00290{height:66.054688pt;}
.h9_c00290{height:66.750000pt;}
.hc_c00290{height:67.445312pt;}
.h5_c00290{height:68.046875pt;}
.h12_c00290{height:68.140625pt;}
.h1_c00290{height:68.701172pt;}
.h15_c00290{height:68.835938pt;}
.h2_c00290{height:69.320964pt;}
.h1c_c00290{height:70.009766pt;}
.h4_c00290{height:70.664062pt;}
.h6_c00290{height:71.318359pt;}
.h1b_c00290{height:71.815104pt;}
.h1a_c00290{height:72.473958pt;}
.h13_c00290{height:73.007812pt;}
.h18_c00290{height:73.234375pt;}
.h14_c00290{height:73.791667pt;}
.h11_c00290{height:107.078125pt;}
.h3_c00290{height:122.375000pt;}
.h0_c00290{height:1122.666667pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x17_c00290{left:123.199200pt;}
.xb_c00290{left:124.158893pt;}
.xf_c00290{left:135.999067pt;}
.xc_c00290{left:145.918920pt;}
.x1c_c00290{left:171.838120pt;}
.x1b_c00290{left:173.437987pt;}
.x18_c00290{left:179.519467pt;}
.x10_c00290{left:192.638667pt;}
.xd_c00290{left:201.919867pt;}
.x27_c00290{left:205.119200pt;}
.x11_c00290{left:214.079587pt;}
.xe_c00290{left:222.719200pt;}
.x21_c00290{left:230.078680pt;}
.x1_c00290{left:243.199200pt;}
.x28_c00290{left:260.799333pt;}
.x22_c00290{left:283.199733pt;}
.x2_c00290{left:289.278787pt;}
.x23_c00290{left:291.518533pt;}
.x29_c00290{left:314.239720pt;}
.x1d_c00290{left:315.839333pt;}
.x1e_c00290{left:325.440000pt;}
.x19_c00290{left:327.999067pt;}
.x1a_c00290{left:346.239173pt;}
.x32_c00290{left:362.559040pt;}
.x2a_c00290{left:368.639613pt;}
.x33_c00290{left:386.559040pt;}
.x2b_c00290{left:387.839320pt;}
.x12_c00290{left:392.318813pt;}
.x2c_c00290{left:403.839840pt;}
.x13_c00290{left:430.079587pt;}
.x6_c00290{left:468.479413pt;}
.x2d_c00290{left:471.999067pt;}
.x7_c00290{left:474.878907pt;}
.x3_c00290{left:478.719720pt;}
.x5_c00290{left:481.278400pt;}
.x9_c00290{left:482.879227pt;}
.xa_c00290{left:492.159507pt;}
.x4_c00290{left:496.639200pt;}
.x8_c00290{left:497.919480pt;}
.x34_c00290{left:504.000000pt;}
.x36_c00290{left:519.999067pt;}
.x1f_c00290{left:522.559573pt;}
.x35_c00290{left:529.918907pt;}
.x37_c00290{left:533.438920pt;}
.x2e_c00290{left:535.359333pt;}
.x20_c00290{left:539.198693pt;}
.x14_c00290{left:577.918907pt;}
.x2f_c00290{left:580.798787pt;}
.x15_c00290{left:594.559573pt;}
.x24_c00290{left:615.999067pt;}
.x30_c00290{left:620.479987pt;}
.x25_c00290{left:621.439453pt;}
.x26_c00290{left:633.919840pt;}
.x31_c00290{left:661.759320pt;}
.x16_c00290{left:678.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b033caa01ba7ef134c5a3917.woff2')format("woff");}.ff1_c00291{font-family:ff1_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;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_719989ffb3ce546ba1d3c623.woff2')format("woff");}.ff2_c00291{font-family:ff2_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:ff3_c00291;src:url('chunks/assets/font_db47494310074f39c739874e.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_5f0e1f988eedbba1fc4dd154.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_2d12113d670b18b4d3853235.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00291;src:url('chunks/assets/font_02690a3f3a3124c57a40698c.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00291{transform:matrix(0.024576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024576,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.029720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029720,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{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_c00291{transform:matrix(0.101562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101562,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.107639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107639,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107843,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108911,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.113889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113889,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.116071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116071,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.121212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121212,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.121287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121287,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{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);}
.me_c00291{transform:matrix(0.126289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126289,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131579,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.138298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138298,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.148876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148876,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.149390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149390,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160112,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.167722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167722,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{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);}
.m16_c00291{transform:matrix(0.175287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175287,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m4_c00291{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.496914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496914,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(2.423914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.423914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.423914,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls1f_c00291{letter-spacing:-11.554425px;}
.ls21_c00291{letter-spacing:-10.265483px;}
.ls24_c00291{letter-spacing:-9.471150px;}
.ls22_c00291{letter-spacing:-7.702950px;}
.ls23_c00291{letter-spacing:-6.422018px;}
.ls20_c00291{letter-spacing:-5.133075px;}
.ls10_c00291{letter-spacing:-5.075400px;}
.ls27_c00291{letter-spacing:-3.850808px;}
.ls1b_c00291{letter-spacing:-3.777383px;}
.ls18_c00291{letter-spacing:-3.709200px;}
.ls17_c00291{letter-spacing:-3.511050px;}
.ls12_c00291{letter-spacing:-3.049200px;}
.ls30_c00291{letter-spacing:-2.714250px;}
.ls2e_c00291{letter-spacing:-2.569875px;}
.ls2c_c00291{letter-spacing:-1.338383px;}
.ls26_c00291{letter-spacing:-1.281600px;}
.ls1c_c00291{letter-spacing:-1.254600px;}
.ls13_c00291{letter-spacing:-1.016400px;}
.lse_c00291{letter-spacing:0.000000px;}
.ls2_c00291{letter-spacing:1.016400px;}
.lsa_c00291{letter-spacing:1.168125px;}
.ls25_c00291{letter-spacing:1.281600px;}
.ls3_c00291{letter-spacing:2.033460px;}
.ls2b_c00291{letter-spacing:2.142600px;}
.ls29_c00291{letter-spacing:2.569875px;}
.ls8_c00291{letter-spacing:3.511050px;}
.ls2f_c00291{letter-spacing:3.850808px;}
.lsc_c00291{letter-spacing:4.058340px;}
.lsf_c00291{letter-spacing:4.474140px;}
.ls5_c00291{letter-spacing:5.075400px;}
.ls9_c00291{letter-spacing:5.854643px;}
.ls4_c00291{letter-spacing:6.091800px;}
.ls31_c00291{letter-spacing:6.422018px;}
.ls6_c00291{letter-spacing:7.028775px;}
.ls1a_c00291{letter-spacing:7.068600px;}
.ls0_c00291{letter-spacing:7.108200px;}
.ls15_c00291{letter-spacing:8.196900px;}
.ls1_c00291{letter-spacing:9.141000px;}
.ls16_c00291{letter-spacing:9.371700px;}
.lsd_c00291{letter-spacing:11.707950px;}
.ls1d_c00291{letter-spacing:12.882083px;}
.ls19_c00291{letter-spacing:14.050208px;}
.ls14_c00291{letter-spacing:16.249200px;}
.ls7_c00291{letter-spacing:16.394468px;}
.ls1e_c00291{letter-spacing:16.678733px;}
.lsb_c00291{letter-spacing:23.423243px;}
.ls11_c00291{letter-spacing:25.041825px;}
.ls2a_c00291{letter-spacing:225.922050px;}
.ls28_c00291{letter-spacing:236.194875px;}
.ls2d_c00291{letter-spacing:237.475808px;}
.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;}
._c_c00291{margin-left:-111.937244px;}
._0_c00291{margin-left:-38.207319px;}
._a_c00291{margin-left:-6.651872px;}
._2_c00291{margin-left:-5.590606px;}
._f_c00291{width:1.584244px;}
._5_c00291{width:2.993872px;}
._8_c00291{width:4.930180px;}
._6_c00291{width:6.962878px;}
._17_c00291{width:9.432354px;}
._16_c00291{width:12.622261px;}
._9_c00291{width:14.885859px;}
._15_c00291{width:16.963341px;}
._7_c00291{width:18.665338px;}
._3_c00291{width:20.340997px;}
._10_c00291{width:21.357143px;}
._4_c00291{width:22.400197px;}
._b_c00291{width:23.856028px;}
._18_c00291{width:27.534997px;}
._1_c00291{width:30.195487px;}
._d_c00291{width:36.115484px;}
._e_c00291{width:40.543394px;}
._12_c00291{width:136.370661px;}
._11_c00291{width:153.578297px;}
._13_c00291{width:178.262653px;}
._14_c00291{width:184.214853px;}
.fc0_c00291{color:transparent;}
.fse_c00291{font-size:43.500000px;}
.fs14_c00291{font-size:49.500000px;}
.fs1_c00291{font-size:51.750000px;}
.fs17_c00291{font-size:54.000000px;}
.fs7_c00291{font-size:57.000000px;}
.fs5_c00291{font-size:58.500000px;}
.fs19_c00291{font-size:59.250000px;}
.fs12_c00291{font-size:60.000000px;}
.fsb_c00291{font-size:60.750000px;}
.fs3_c00291{font-size:61.500000px;}
.fs8_c00291{font-size:63.000000px;}
.fs10_c00291{font-size:65.250000px;}
.fs0_c00291{font-size:66.000000px;}
.fs2_c00291{font-size:66.750000px;}
.fs16_c00291{font-size:67.500000px;}
.fs13_c00291{font-size:68.250000px;}
.fs18_c00291{font-size:70.500000px;}
.fs15_c00291{font-size:72.000000px;}
.fsa_c00291{font-size:72.750000px;}
.fs9_c00291{font-size:74.250000px;}
.fsf_c00291{font-size:75.000000px;}
.fs11_c00291{font-size:75.750000px;}
.fs6_c00291{font-size:76.500000px;}
.fsd_c00291{font-size:96.750000px;}
.fsc_c00291{font-size:107.250000px;}
.fs4_c00291{font-size:221.250000px;}
.y0_c00291{bottom:0.000000px;}
.y37_c00291{bottom:113.759565px;}
.y2e_c00291{bottom:440.279250px;}
.y2b_c00291{bottom:464.759535px;}
.y1e_c00291{bottom:522.360300px;}
.y64_c00291{bottom:568.798350px;}
.y6c_c00291{bottom:568.798620px;}
.y46_c00291{bottom:568.799040px;}
.y36_c00291{bottom:568.799520px;}
.y6d_c00291{bottom:569.159175px;}
.y2a_c00291{bottom:569.159805px;}
.y63_c00291{bottom:592.557975px;}
.y29_c00291{bottom:592.559115px;}
.y45_c00291{bottom:615.240420px;}
.y62_c00291{bottom:615.598530px;}
.y6b_c00291{bottom:615.598785px;}
.y28_c00291{bottom:615.599670px;}
.y12_c00291{bottom:639.000600px;}
.y16_c00291{bottom:662.760585px;}
.y27_c00291{bottom:662.760720px;}
.y2d_c00291{bottom:685.801095px;}
.y15_c00291{bottom:685.801110px;}
.y1d_c00291{bottom:709.560720px;}
.y14_c00291{bottom:709.560750px;}
.y10_c00291{bottom:753.839535px;}
.y11_c00291{bottom:756.359250px;}
.ye_c00291{bottom:768.238890px;}
.yf_c00291{bottom:768.239220px;}
.yd_c00291{bottom:780.118695px;}
.yb_c00291{bottom:828.001125px;}
.ya_c00291{bottom:851.399865px;}
.y2_c00291{bottom:898.199805px;}
.y53_c00291{bottom:944.279325px;}
.y4d_c00291{bottom:944.279550px;}
.y25_c00291{bottom:944.639310px;}
.y61_c00291{bottom:944.639370px;}
.y6a_c00291{bottom:944.639625px;}
.y3d_c00291{bottom:944.640450px;}
.y43_c00291{bottom:944.640960px;}
.y5d_c00291{bottom:944.641980px;}
.y57_c00291{bottom:944.998620px;}
.y34_c00291{bottom:944.999475px;}
.y1c_c00291{bottom:944.999700px;}
.y9_c00291{bottom:945.359250px;}
.y52_c00291{bottom:966.598755px;}
.y42_c00291{bottom:966.960390px;}
.y5c_c00291{bottom:966.961425px;}
.y33_c00291{bottom:967.318905px;}
.y24_c00291{bottom:967.319295px;}
.y60_c00291{bottom:967.679925px;}
.y4c_c00291{bottom:967.680405px;}
.y69_c00291{bottom:968.038950px;}
.y3c_c00291{bottom:968.039775px;}
.y56_c00291{bottom:968.397945px;}
.y1b_c00291{bottom:968.399025px;}
.y8_c00291{bottom:968.759325px;}
.y51_c00291{bottom:989.639310px;}
.y5b_c00291{bottom:990.001950px;}
.y32_c00291{bottom:990.719760px;}
.y23_c00291{bottom:990.720135px;}
.y5f_c00291{bottom:991.079250px;}
.y68_c00291{bottom:991.079505px;}
.y4b_c00291{bottom:991.079730px;}
.y41_c00291{bottom:991.080570px;}
.y55_c00291{bottom:991.440030px;}
.y3b_c00291{bottom:991.440630px;}
.y1a_c00291{bottom:991.799880px;}
.y7_c00291{bottom:992.158650px;}
.y40_c00291{bottom:1013.400015px;}
.y31_c00291{bottom:1013.760315px;}
.y22_c00291{bottom:1013.760675px;}
.y50_c00291{bottom:1014.119790px;}
.y5a_c00291{bottom:1014.120345px;}
.y67_c00291{bottom:1014.480360px;}
.y4a_c00291{bottom:1014.480555px;}
.y3a_c00291{bottom:1014.839955px;}
.y6_c00291{bottom:1015.199205px;}
.y66_c00291{bottom:1036.439460px;}
.y3f_c00291{bottom:1037.159610px;}
.y30_c00291{bottom:1037.519925px;}
.y4f_c00291{bottom:1037.520630px;}
.y49_c00291{bottom:1037.879880px;}
.y59_c00291{bottom:1037.879970px;}
.y54_c00291{bottom:1038.238650px;}
.y21_c00291{bottom:1038.239220px;}
.y39_c00291{bottom:1038.239250px;}
.y19_c00291{bottom:1038.600030px;}
.y5_c00291{bottom:1039.320900px;}
.y20_c00291{bottom:1060.560705px;}
.y4e_c00291{bottom:1060.919955px;}
.y48_c00291{bottom:1061.279205px;}
.y2f_c00291{bottom:1061.640105px;}
.y18_c00291{bottom:1061.999355px;}
.y4_c00291{bottom:1062.361455px;}
.y65_c00291{bottom:1076.399235px;}
.y5e_c00291{bottom:1083.959925px;}
.y47_c00291{bottom:1084.319190px;}
.y3e_c00291{bottom:1084.680090px;}
.y38_c00291{bottom:1085.038965px;}
.y1f_c00291{bottom:1085.039340px;}
.y17_c00291{bottom:1085.399985px;}
.y2c_c00291{bottom:1085.400240px;}
.y58_c00291{bottom:1107.720150px;}
.y44_c00291{bottom:1108.079400px;}
.y35_c00291{bottom:1108.440315px;}
.y26_c00291{bottom:1109.160465px;}
.y13_c00291{bottom:1109.519715px;}
.y3_c00291{bottom:1121.400210px;}
.yc_c00291{bottom:1131.839535px;}
.y1_c00291{bottom:1180.440855px;}
.h11_c00291{height:45.369141px;}
.h17_c00291{height:51.626953px;}
.h2_c00291{height:52.154297px;}
.h1c_c00291{height:53.973633px;}
.h1a_c00291{height:56.320312px;}
.ha_c00291{height:59.449219px;}
.h8_c00291{height:61.013672px;}
.h1d_c00291{height:61.795898px;}
.hb_c00291{height:61.831055px;}
.h15_c00291{height:62.578125px;}
.he_c00291{height:63.360352px;}
.h6_c00291{height:64.142578px;}
.h4_c00291{height:64.775391px;}
.h3_c00291{height:65.511475px;}
.h5_c00291{height:65.967773px;}
.h19_c00291{height:66.247559px;}
.h1_c00291{height:66.515625px;}
.h16_c00291{height:67.450195px;}
.h13_c00291{height:68.053711px;}
.h1b_c00291{height:69.673828px;}
.h18_c00291{height:71.156250px;}
.hd_c00291{height:71.897461px;}
.h14_c00291{height:74.862305px;}
.hc_c00291{height:77.440430px;}
.h12_c00291{height:78.222656px;}
.h9_c00291{height:79.787109px;}
.h10_c00291{height:100.907227px;}
.hf_c00291{height:105.993164px;}
.h7_c00291{height:230.756836px;}
.h0_c00291{height:1263.000000px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x2b_c00291{left:163.799565px;}
.x6_c00291{left:164.878950px;}
.x1_c00291{left:165.958350px;}
.xa_c00291{left:170.279250px;}
.x1d_c00291{left:171.719565px;}
.x8_c00291{left:182.519625px;}
.x7_c00291{left:183.959265px;}
.x11_c00291{left:187.918440px;}
.x9_c00291{left:194.759535px;}
.x2_c00291{left:206.998950px;}
.xb_c00291{left:211.319850px;}
.x12_c00291{left:223.199850px;}
.x2c_c00291{left:234.719100px;}
.x3_c00291{left:235.798515px;}
.x13_c00291{left:240.478635px;}
.xc_c00291{left:245.878950px;}
.x2d_c00291{left:274.678500px;}
.x2e_c00291{left:292.319850px;}
.x1e_c00291{left:308.519100px;}
.x14_c00291{left:311.759100px;}
.x2a_c00291{left:313.558635px;}
.x23_c00291{left:316.440465px;}
.xd_c00291{left:327.239850px;}
.x24_c00291{left:328.319250px;}
.x25_c00291{left:339.838920px;}
.x1f_c00291{left:344.879535px;}
.x22_c00291{left:346.319850px;}
.xe_c00291{left:351.000000px;}
.x15_c00291{left:352.079385px;}
.x26_c00291{left:362.878350px;}
.x16_c00291{left:367.558635px;}
.x27_c00291{left:369.359850px;}
.x28_c00291{left:380.158785px;}
.x17_c00291{left:392.759085px;}
.x2f_c00291{left:397.439250px;}
.x10_c00291{left:407.878950px;}
.x18_c00291{left:408.958335px;}
.x3d_c00291{left:420.479235px;}
.x29_c00291{left:426.599670px;}
.x19_c00291{left:433.438665px;}
.x30_c00291{left:443.878320px;}
.x1a_c00291{left:448.558635px;}
.x31_c00291{left:449.998530px;}
.x48_c00291{left:461.158680px;}
.x33_c00291{left:478.439385px;}
.x1b_c00291{left:489.599070px;}
.x34_c00291{left:495.719670px;}
.x4e_c00291{left:501.119505px;}
.x32_c00291{left:507.958920px;}
.x1c_c00291{left:514.079400px;}
.xf_c00291{left:524.519070px;}
.x20_c00291{left:529.199385px;}
.x35_c00291{left:530.639580px;}
.x4_c00291{left:536.039985px;}
.x21_c00291{left:541.799520px;}
.x5_c00291{left:559.080000px;}
.x38_c00291{left:571.318890px;}
.x37_c00291{left:582.838530px;}
.x36_c00291{left:588.238770px;}
.x3a_c00291{left:605.519070px;}
.x3c_c00291{left:612.360165px;}
.x3b_c00291{left:623.878920px;}
.x3e_c00291{left:640.439250px;}
.x40_c00291{left:652.678695px;}
.x41_c00291{left:658.439940px;}
.x3f_c00291{left:664.199385px;}
.x39_c00291{left:670.319820px;}
.x43_c00291{left:686.519070px;}
.x45_c00291{left:693.359760px;}
.x44_c00291{left:704.878920px;}
.x46_c00291{left:721.439205px;}
.x47_c00291{left:733.319295px;}
.x42_c00291{left:739.439670px;}
.x4a_c00291{left:754.918950px;}
.x4d_c00291{left:762.479025px;}
.x49_c00291{left:767.519070px;}
.x4c_c00291{left:768.598065px;}
.x4b_c00291{left:773.998530px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1f_c00291{letter-spacing:-10.270600pt;}
.ls21_c00291{letter-spacing:-9.124873pt;}
.ls24_c00291{letter-spacing:-8.418800pt;}
.ls22_c00291{letter-spacing:-6.847067pt;}
.ls23_c00291{letter-spacing:-5.708460pt;}
.ls20_c00291{letter-spacing:-4.562733pt;}
.ls10_c00291{letter-spacing:-4.511467pt;}
.ls27_c00291{letter-spacing:-3.422940pt;}
.ls1b_c00291{letter-spacing:-3.357673pt;}
.ls18_c00291{letter-spacing:-3.297067pt;}
.ls17_c00291{letter-spacing:-3.120933pt;}
.ls12_c00291{letter-spacing:-2.710400pt;}
.ls30_c00291{letter-spacing:-2.412667pt;}
.ls2e_c00291{letter-spacing:-2.284333pt;}
.ls2c_c00291{letter-spacing:-1.189673pt;}
.ls26_c00291{letter-spacing:-1.139200pt;}
.ls1c_c00291{letter-spacing:-1.115200pt;}
.ls13_c00291{letter-spacing:-0.903467pt;}
.lse_c00291{letter-spacing:0.000000pt;}
.ls2_c00291{letter-spacing:0.903467pt;}
.lsa_c00291{letter-spacing:1.038333pt;}
.ls25_c00291{letter-spacing:1.139200pt;}
.ls3_c00291{letter-spacing:1.807520pt;}
.ls2b_c00291{letter-spacing:1.904533pt;}
.ls29_c00291{letter-spacing:2.284333pt;}
.ls8_c00291{letter-spacing:3.120933pt;}
.ls2f_c00291{letter-spacing:3.422940pt;}
.lsc_c00291{letter-spacing:3.607413pt;}
.lsf_c00291{letter-spacing:3.977013pt;}
.ls5_c00291{letter-spacing:4.511467pt;}
.ls9_c00291{letter-spacing:5.204127pt;}
.ls4_c00291{letter-spacing:5.414933pt;}
.ls31_c00291{letter-spacing:5.708460pt;}
.ls6_c00291{letter-spacing:6.247800pt;}
.ls1a_c00291{letter-spacing:6.283200pt;}
.ls0_c00291{letter-spacing:6.318400pt;}
.ls15_c00291{letter-spacing:7.286133pt;}
.ls1_c00291{letter-spacing:8.125333pt;}
.ls16_c00291{letter-spacing:8.330400pt;}
.lsd_c00291{letter-spacing:10.407067pt;}
.ls1d_c00291{letter-spacing:11.450740pt;}
.ls19_c00291{letter-spacing:12.489073pt;}
.ls14_c00291{letter-spacing:14.443733pt;}
.ls7_c00291{letter-spacing:14.572860pt;}
.ls1e_c00291{letter-spacing:14.825540pt;}
.lsb_c00291{letter-spacing:20.820660pt;}
.ls11_c00291{letter-spacing:22.259400pt;}
.ls2a_c00291{letter-spacing:200.819600pt;}
.ls28_c00291{letter-spacing:209.951000pt;}
.ls2d_c00291{letter-spacing:211.089607pt;}
.ws0_c00291{word-spacing:0.000000pt;}
._c_c00291{margin-left:-99.499772pt;}
._0_c00291{margin-left:-33.962061pt;}
._a_c00291{margin-left:-5.912775pt;}
._2_c00291{margin-left:-4.969428pt;}
._f_c00291{width:1.408217pt;}
._5_c00291{width:2.661219pt;}
._8_c00291{width:4.382382pt;}
._6_c00291{width:6.189225pt;}
._17_c00291{width:8.384315pt;}
._16_c00291{width:11.219788pt;}
._9_c00291{width:13.231875pt;}
._15_c00291{width:15.078526pt;}
._7_c00291{width:16.591412pt;}
._3_c00291{width:18.080886pt;}
._10_c00291{width:18.984127pt;}
._4_c00291{width:19.911286pt;}
._b_c00291{width:21.205359pt;}
._18_c00291{width:24.475553pt;}
._1_c00291{width:26.840433pt;}
._d_c00291{width:32.102653pt;}
._e_c00291{width:36.038572pt;}
._12_c00291{width:121.218365pt;}
._11_c00291{width:136.514042pt;}
._13_c00291{width:158.455691pt;}
._14_c00291{width:163.746536pt;}
.fse_c00291{font-size:38.666667pt;}
.fs14_c00291{font-size:44.000000pt;}
.fs1_c00291{font-size:46.000000pt;}
.fs17_c00291{font-size:48.000000pt;}
.fs7_c00291{font-size:50.666667pt;}
.fs5_c00291{font-size:52.000000pt;}
.fs19_c00291{font-size:52.666667pt;}
.fs12_c00291{font-size:53.333333pt;}
.fsb_c00291{font-size:54.000000pt;}
.fs3_c00291{font-size:54.666667pt;}
.fs8_c00291{font-size:56.000000pt;}
.fs10_c00291{font-size:58.000000pt;}
.fs0_c00291{font-size:58.666667pt;}
.fs2_c00291{font-size:59.333333pt;}
.fs16_c00291{font-size:60.000000pt;}
.fs13_c00291{font-size:60.666667pt;}
.fs18_c00291{font-size:62.666667pt;}
.fs15_c00291{font-size:64.000000pt;}
.fsa_c00291{font-size:64.666667pt;}
.fs9_c00291{font-size:66.000000pt;}
.fsf_c00291{font-size:66.666667pt;}
.fs11_c00291{font-size:67.333333pt;}
.fs6_c00291{font-size:68.000000pt;}
.fsd_c00291{font-size:86.000000pt;}
.fsc_c00291{font-size:95.333333pt;}
.fs4_c00291{font-size:196.666667pt;}
.y0_c00291{bottom:0.000000pt;}
.y37_c00291{bottom:101.119613pt;}
.y2e_c00291{bottom:391.359333pt;}
.y2b_c00291{bottom:413.119587pt;}
.y1e_c00291{bottom:464.320267pt;}
.y64_c00291{bottom:505.598533pt;}
.y6c_c00291{bottom:505.598773pt;}
.y46_c00291{bottom:505.599147pt;}
.y36_c00291{bottom:505.599573pt;}
.y6d_c00291{bottom:505.919267pt;}
.y2a_c00291{bottom:505.919827pt;}
.y63_c00291{bottom:526.718200pt;}
.y29_c00291{bottom:526.719213pt;}
.y45_c00291{bottom:546.880373pt;}
.y62_c00291{bottom:547.198693pt;}
.y6b_c00291{bottom:547.198920pt;}
.y28_c00291{bottom:547.199707pt;}
.y12_c00291{bottom:568.000533pt;}
.y16_c00291{bottom:589.120520pt;}
.y27_c00291{bottom:589.120640pt;}
.y2d_c00291{bottom:609.600973pt;}
.y15_c00291{bottom:609.600987pt;}
.y1d_c00291{bottom:630.720640pt;}
.y14_c00291{bottom:630.720667pt;}
.y10_c00291{bottom:670.079587pt;}
.y11_c00291{bottom:672.319333pt;}
.ye_c00291{bottom:682.879013pt;}
.yf_c00291{bottom:682.879307pt;}
.yd_c00291{bottom:693.438840pt;}
.yb_c00291{bottom:736.001000pt;}
.ya_c00291{bottom:756.799880pt;}
.y2_c00291{bottom:798.399827pt;}
.y53_c00291{bottom:839.359400pt;}
.y4d_c00291{bottom:839.359600pt;}
.y25_c00291{bottom:839.679387pt;}
.y61_c00291{bottom:839.679440pt;}
.y6a_c00291{bottom:839.679667pt;}
.y3d_c00291{bottom:839.680400pt;}
.y43_c00291{bottom:839.680853pt;}
.y5d_c00291{bottom:839.681760pt;}
.y57_c00291{bottom:839.998773pt;}
.y34_c00291{bottom:839.999533pt;}
.y1c_c00291{bottom:839.999733pt;}
.y9_c00291{bottom:840.319333pt;}
.y52_c00291{bottom:859.198893pt;}
.y42_c00291{bottom:859.520347pt;}
.y5c_c00291{bottom:859.521267pt;}
.y33_c00291{bottom:859.839027pt;}
.y24_c00291{bottom:859.839373pt;}
.y60_c00291{bottom:860.159933pt;}
.y4c_c00291{bottom:860.160360pt;}
.y69_c00291{bottom:860.479067pt;}
.y3c_c00291{bottom:860.479800pt;}
.y56_c00291{bottom:860.798173pt;}
.y1b_c00291{bottom:860.799133pt;}
.y8_c00291{bottom:861.119400pt;}
.y51_c00291{bottom:879.679387pt;}
.y5b_c00291{bottom:880.001733pt;}
.y32_c00291{bottom:880.639787pt;}
.y23_c00291{bottom:880.640120pt;}
.y5f_c00291{bottom:880.959333pt;}
.y68_c00291{bottom:880.959560pt;}
.y4b_c00291{bottom:880.959760pt;}
.y41_c00291{bottom:880.960507pt;}
.y55_c00291{bottom:881.280027pt;}
.y3b_c00291{bottom:881.280560pt;}
.y1a_c00291{bottom:881.599893pt;}
.y7_c00291{bottom:881.918800pt;}
.y40_c00291{bottom:900.800013pt;}
.y31_c00291{bottom:901.120280pt;}
.y22_c00291{bottom:901.120600pt;}
.y50_c00291{bottom:901.439813pt;}
.y5a_c00291{bottom:901.440307pt;}
.y67_c00291{bottom:901.760320pt;}
.y4a_c00291{bottom:901.760493pt;}
.y3a_c00291{bottom:902.079960pt;}
.y6_c00291{bottom:902.399293pt;}
.y66_c00291{bottom:921.279520pt;}
.y3f_c00291{bottom:921.919653pt;}
.y30_c00291{bottom:922.239933pt;}
.y4f_c00291{bottom:922.240560pt;}
.y49_c00291{bottom:922.559893pt;}
.y59_c00291{bottom:922.559973pt;}
.y54_c00291{bottom:922.878800pt;}
.y21_c00291{bottom:922.879307pt;}
.y39_c00291{bottom:922.879333pt;}
.y19_c00291{bottom:923.200027pt;}
.y5_c00291{bottom:923.840800pt;}
.y20_c00291{bottom:942.720627pt;}
.y4e_c00291{bottom:943.039960pt;}
.y48_c00291{bottom:943.359293pt;}
.y2f_c00291{bottom:943.680093pt;}
.y18_c00291{bottom:943.999427pt;}
.y4_c00291{bottom:944.321293pt;}
.y65_c00291{bottom:956.799320pt;}
.y5e_c00291{bottom:963.519933pt;}
.y47_c00291{bottom:963.839280pt;}
.y3e_c00291{bottom:964.160080pt;}
.y38_c00291{bottom:964.479080pt;}
.y1f_c00291{bottom:964.479413pt;}
.y17_c00291{bottom:964.799987pt;}
.y2c_c00291{bottom:964.800213pt;}
.y58_c00291{bottom:984.640133pt;}
.y44_c00291{bottom:984.959467pt;}
.y35_c00291{bottom:985.280280pt;}
.y26_c00291{bottom:985.920413pt;}
.y13_c00291{bottom:986.239747pt;}
.y3_c00291{bottom:996.800187pt;}
.yc_c00291{bottom:1006.079587pt;}
.y1_c00291{bottom:1049.280760pt;}
.h11_c00291{height:40.328125pt;}
.h17_c00291{height:45.890625pt;}
.h2_c00291{height:46.359375pt;}
.h1c_c00291{height:47.976562pt;}
.h1a_c00291{height:50.062500pt;}
.ha_c00291{height:52.843750pt;}
.h8_c00291{height:54.234375pt;}
.h1d_c00291{height:54.929688pt;}
.hb_c00291{height:54.960938pt;}
.h15_c00291{height:55.625000pt;}
.he_c00291{height:56.320312pt;}
.h6_c00291{height:57.015625pt;}
.h4_c00291{height:57.578125pt;}
.h3_c00291{height:58.232422pt;}
.h5_c00291{height:58.638021pt;}
.h19_c00291{height:58.886719pt;}
.h1_c00291{height:59.125000pt;}
.h16_c00291{height:59.955729pt;}
.h13_c00291{height:60.492188pt;}
.h1b_c00291{height:61.932292pt;}
.h18_c00291{height:63.250000pt;}
.hd_c00291{height:63.908854pt;}
.h14_c00291{height:66.544271pt;}
.hc_c00291{height:68.835938pt;}
.h12_c00291{height:69.531250pt;}
.h9_c00291{height:70.921875pt;}
.h10_c00291{height:89.695312pt;}
.hf_c00291{height:94.216146pt;}
.h7_c00291{height:205.117188pt;}
.h0_c00291{height:1122.666667pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x2b_c00291{left:145.599613pt;}
.x6_c00291{left:146.559067pt;}
.x1_c00291{left:147.518533pt;}
.xa_c00291{left:151.359333pt;}
.x1d_c00291{left:152.639613pt;}
.x8_c00291{left:162.239667pt;}
.x7_c00291{left:163.519347pt;}
.x11_c00291{left:167.038613pt;}
.x9_c00291{left:173.119587pt;}
.x2_c00291{left:183.999067pt;}
.xb_c00291{left:187.839867pt;}
.x12_c00291{left:198.399867pt;}
.x2c_c00291{left:208.639200pt;}
.x3_c00291{left:209.598680pt;}
.x13_c00291{left:213.758787pt;}
.xc_c00291{left:218.559067pt;}
.x2d_c00291{left:244.158667pt;}
.x2e_c00291{left:259.839867pt;}
.x1e_c00291{left:274.239200pt;}
.x14_c00291{left:277.119200pt;}
.x2a_c00291{left:278.718787pt;}
.x23_c00291{left:281.280413pt;}
.xd_c00291{left:290.879867pt;}
.x24_c00291{left:291.839333pt;}
.x25_c00291{left:302.079040pt;}
.x1f_c00291{left:306.559587pt;}
.x22_c00291{left:307.839867pt;}
.xe_c00291{left:312.000000pt;}
.x15_c00291{left:312.959453pt;}
.x26_c00291{left:322.558533pt;}
.x16_c00291{left:326.718787pt;}
.x27_c00291{left:328.319867pt;}
.x28_c00291{left:337.918920pt;}
.x17_c00291{left:349.119187pt;}
.x2f_c00291{left:353.279333pt;}
.x10_c00291{left:362.559067pt;}
.x18_c00291{left:363.518520pt;}
.x3d_c00291{left:373.759320pt;}
.x29_c00291{left:379.199707pt;}
.x19_c00291{left:385.278813pt;}
.x30_c00291{left:394.558507pt;}
.x1a_c00291{left:398.718787pt;}
.x31_c00291{left:399.998693pt;}
.x48_c00291{left:409.918827pt;}
.x33_c00291{left:425.279453pt;}
.x1b_c00291{left:435.199173pt;}
.x34_c00291{left:440.639707pt;}
.x4e_c00291{left:445.439560pt;}
.x32_c00291{left:451.519040pt;}
.x1c_c00291{left:456.959467pt;}
.xf_c00291{left:466.239173pt;}
.x20_c00291{left:470.399453pt;}
.x35_c00291{left:471.679627pt;}
.x4_c00291{left:476.479987pt;}
.x21_c00291{left:481.599573pt;}
.x5_c00291{left:496.960000pt;}
.x38_c00291{left:507.839013pt;}
.x37_c00291{left:518.078693pt;}
.x36_c00291{left:522.878907pt;}
.x3a_c00291{left:538.239173pt;}
.x3c_c00291{left:544.320147pt;}
.x3b_c00291{left:554.559040pt;}
.x3e_c00291{left:569.279333pt;}
.x40_c00291{left:580.158840pt;}
.x41_c00291{left:585.279947pt;}
.x3f_c00291{left:590.399453pt;}
.x39_c00291{left:595.839840pt;}
.x43_c00291{left:610.239173pt;}
.x45_c00291{left:616.319787pt;}
.x44_c00291{left:626.559040pt;}
.x46_c00291{left:641.279293pt;}
.x47_c00291{left:651.839373pt;}
.x42_c00291{left:657.279707pt;}
.x4a_c00291{left:671.039067pt;}
.x4d_c00291{left:677.759133pt;}
.x49_c00291{left:682.239173pt;}
.x4c_c00291{left:683.198280pt;}
.x4b_c00291{left:687.998693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c3f868bef8cda2a321940b9.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_be6c6b0cab82133341d50d1c.woff2')format("woff");}.ff2_c00292{font-family:ff2_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:ff3_c00292;src:url('chunks/assets/font_3bd67087e60554fafdbfc0b7.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_ed3784386fa7cfb27e247a4e.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_60a8df5c4dabbdf1b4ec7e1c.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_717367295dec7de034cfb11b.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c00292{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m26_c00292{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m28_c00292{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00292{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2a_c00292{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m19_c00292{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m22_c00292{transform:matrix(0.239198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239198,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00292{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m18_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m27_c00292{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m23_c00292{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m10_c00292{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m24_c00292{transform:matrix(0.284783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284783,0.000000,0.000000,0.250000,0,0);}
.m17_c00292{transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{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);}
.m1c_c00292{transform:matrix(0.369318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369318,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.md_c00292{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);}
.m1b_c00292{transform:matrix(0.408537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408537,0.000000,0.000000,0.250000,0,0);}
.m1d_c00292{transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.523810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523810,0.000000,0.000000,0.250000,0,0);}
.m1f_c00292{transform:matrix(0.524194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524194,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.554688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554688,0.000000,0.000000,0.250000,0,0);}
.m21_c00292{transform:matrix(0.555556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555556,0.000000,0.000000,0.250000,0,0);}
.m20_c00292{transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);}
.mb_c00292{transform:matrix(0.618421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618421,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.lsc_c00292{letter-spacing:-8.914500px;}
.lsf_c00292{letter-spacing:-8.175038px;}
.ls1e_c00292{letter-spacing:-7.553700px;}
.ls6_c00292{letter-spacing:-6.685875px;}
.ls15_c00292{letter-spacing:-6.561000px;}
.lse_c00292{letter-spacing:-5.945625px;}
.lsd_c00292{letter-spacing:-5.196713px;}
.ls14_c00292{letter-spacing:-5.060175px;}
.ls25_c00292{letter-spacing:-4.728668px;}
.ls9_c00292{letter-spacing:-4.645500px;}
.ls1c_c00292{letter-spacing:-4.606650px;}
.ls11_c00292{letter-spacing:-4.539450px;}
.ls29_c00292{letter-spacing:-4.456463px;}
.ls2a_c00292{letter-spacing:-4.412948px;}
.ls12_c00292{letter-spacing:-4.334498px;}
.ls5_c00292{letter-spacing:-3.717000px;}
.ls2_c00292{letter-spacing:-2.968875px;}
.lsa_c00292{letter-spacing:-2.812500px;}
.ls7_c00292{letter-spacing:-2.433375px;}
.lsb_c00292{letter-spacing:-2.289375px;}
.ls1_c00292{letter-spacing:-2.229413px;}
.ls13_c00292{letter-spacing:-2.122965px;}
.ls2b_c00292{letter-spacing:-1.776750px;}
.ls3_c00292{letter-spacing:-1.489163px;}
.ls26_c00292{letter-spacing:-1.350675px;}
.ls20_c00292{letter-spacing:-0.916350px;}
.ls1f_c00292{letter-spacing:-0.767550px;}
.ls4_c00292{letter-spacing:-0.740250px;}
.ls27_c00292{letter-spacing:-0.655500px;}
.ls1d_c00292{letter-spacing:-0.643800px;}
.ls8_c00292{letter-spacing:0.000000px;}
.ls23_c00292{letter-spacing:0.676800px;}
.ls24_c00292{letter-spacing:1.074150px;}
.ls28_c00292{letter-spacing:1.327500px;}
.ls0_c00292{letter-spacing:1.489163px;}
.ls1b_c00292{letter-spacing:2.138925px;}
.ls16_c00292{letter-spacing:2.148615px;}
.ls2c_c00292{letter-spacing:2.271285px;}
.ls19_c00292{letter-spacing:2.409345px;}
.ls10_c00292{letter-spacing:2.470950px;}
.ls21_c00292{letter-spacing:2.537700px;}
.ls17_c00292{letter-spacing:2.661750px;}
.ls18_c00292{letter-spacing:7.409400px;}
.ls1a_c00292{letter-spacing:12.898080px;}
.ls22_c00292{letter-spacing:17.719950px;}
.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;}
._18_c00292{margin-left:-41.397330px;}
._1a_c00292{margin-left:-9.021719px;}
._19_c00292{margin-left:-7.909992px;}
._c_c00292{margin-left:-4.284282px;}
._3_c00292{margin-left:-3.200786px;}
._2_c00292{margin-left:-1.753228px;}
._5_c00292{width:2.015094px;}
._4_c00292{width:3.667239px;}
._0_c00292{width:4.802442px;}
._1_c00292{width:5.851036px;}
._16_c00292{width:7.228418px;}
._7_c00292{width:8.458612px;}
._b_c00292{width:9.844894px;}
._6_c00292{width:11.387919px;}
._9_c00292{width:12.877869px;}
._12_c00292{width:14.734660px;}
._a_c00292{width:15.843207px;}
._17_c00292{width:17.078735px;}
._15_c00292{width:18.522579px;}
._14_c00292{width:19.944180px;}
._d_c00292{width:21.056012px;}
._10_c00292{width:22.483333px;}
._8_c00292{width:24.234436px;}
._13_c00292{width:25.625725px;}
._e_c00292{width:26.727869px;}
._f_c00292{width:31.915800px;}
._11_c00292{width:34.109686px;}
.fc0_c00292{color:transparent;}
.fs1d_c00292{font-size:20.250000px;}
.fs1c_c00292{font-size:21.750000px;}
.fs3_c00292{font-size:22.500000px;}
.fs1b_c00292{font-size:23.250000px;}
.fs1a_c00292{font-size:24.000000px;}
.fs19_c00292{font-size:25.500000px;}
.fs9_c00292{font-size:28.500000px;}
.fs17_c00292{font-size:30.750000px;}
.fsc_c00292{font-size:31.500000px;}
.fs16_c00292{font-size:32.250000px;}
.fs18_c00292{font-size:33.000000px;}
.fsb_c00292{font-size:33.750000px;}
.fsa_c00292{font-size:39.750000px;}
.fse_c00292{font-size:40.500000px;}
.fsf_c00292{font-size:45.000000px;}
.fs10_c00292{font-size:48.000000px;}
.fsd_c00292{font-size:48.750000px;}
.fs11_c00292{font-size:50.250000px;}
.fs14_c00292{font-size:55.500000px;}
.fs12_c00292{font-size:59.250000px;}
.fs13_c00292{font-size:65.250000px;}
.fs2_c00292{font-size:71.250000px;}
.fs21_c00292{font-size:75.000000px;}
.fs5_c00292{font-size:76.500000px;}
.fs7_c00292{font-size:77.250000px;}
.fs0_c00292{font-size:78.750000px;}
.fs6_c00292{font-size:79.500000px;}
.fs8_c00292{font-size:80.250000px;}
.fs1_c00292{font-size:82.500000px;}
.fs4_c00292{font-size:83.250000px;}
.fs22_c00292{font-size:84.750000px;}
.fs20_c00292{font-size:86.250000px;}
.fs1f_c00292{font-size:102.000000px;}
.fs15_c00292{font-size:115.500000px;}
.fs1e_c00292{font-size:121.500000px;}
.y0_c00292{bottom:0.000000px;}
.y2e_c00292{bottom:188.641665px;}
.y2d_c00292{bottom:209.520285px;}
.y2c_c00292{bottom:209.521230px;}
.y2b_c00292{bottom:230.399850px;}
.y2a_c00292{bottom:230.400195px;}
.y29_c00292{bottom:273.240090px;}
.y28_c00292{bottom:294.841185px;}
.y26_c00292{bottom:316.079220px;}
.y27_c00292{bottom:316.080000px;}
.y25_c00292{bottom:375.480285px;}
.y24_c00292{bottom:405.000000px;}
.y23_c00292{bottom:405.000135px;}
.y22_c00292{bottom:434.519670px;}
.y21_c00292{bottom:434.520120px;}
.y20_c00292{bottom:465.120525px;}
.y1f_c00292{bottom:494.640060px;}
.y1e_c00292{bottom:524.879970px;}
.y1d_c00292{bottom:524.881350px;}
.y1c_c00292{bottom:554.400900px;}
.y1b_c00292{bottom:583.562055px;}
.y1a_c00292{bottom:643.681665px;}
.y19_c00292{bottom:664.560285px;}
.y18_c00292{bottom:664.560540px;}
.y17_c00292{bottom:686.159820px;}
.y16_c00292{bottom:686.160090px;}
.y15_c00292{bottom:707.761215px;}
.y14_c00292{bottom:729.000000px;}
.y11_c00292{bottom:750.240420px;}
.y12_c00292{bottom:750.601320px;}
.y13_c00292{bottom:751.319820px;}
.y10_c00292{bottom:756.000000px;}
.yf_c00292{bottom:809.279805px;}
.yd_c00292{bottom:839.519640px;}
.ye_c00292{bottom:839.519715px;}
.yc_c00292{bottom:869.040990px;}
.yb_c00292{bottom:869.041260px;}
.ya_c00292{bottom:899.281170px;}
.y9_c00292{bottom:959.040615px;}
.y8_c00292{bottom:959.040915px;}
.y7_c00292{bottom:988.920645px;}
.y6_c00292{bottom:1018.440165px;}
.y4_c00292{bottom:1044.720705px;}
.y5_c00292{bottom:1047.601320px;}
.y3_c00292{bottom:1078.559685px;}
.y2_c00292{bottom:1107.720015px;}
.y1_c00292{bottom:1137.959925px;}
.h1f_c00292{height:21.120117px;}
.h1e_c00292{height:22.684570px;}
.h5_c00292{height:23.466797px;}
.h1d_c00292{height:24.249023px;}
.h1c_c00292{height:25.031250px;}
.h1b_c00292{height:25.699219px;}
.hb_c00292{height:29.724609px;}
.h19_c00292{height:30.179443px;}
.h18_c00292{height:31.651611px;}
.h1a_c00292{height:32.387695px;}
.he_c00292{height:32.853516px;}
.hd_c00292{height:33.354492px;}
.hc_c00292{height:41.458008px;}
.h10_c00292{height:42.240234px;}
.h11_c00292{height:46.933594px;}
.hf_c00292{height:49.130859px;}
.h12_c00292{height:50.062500px;}
.h13_c00292{height:52.409180px;}
.h16_c00292{height:57.884766px;}
.h14_c00292{height:59.712891px;}
.h15_c00292{height:65.759766px;}
.h4_c00292{height:74.311523px;}
.h7_c00292{height:75.080566px;}
.h9_c00292{height:75.816650px;}
.h1_c00292{height:77.288818px;}
.h8_c00292{height:78.024902px;}
.h23_c00292{height:78.222656px;}
.ha_c00292{height:78.760986px;}
.h2_c00292{height:79.365234px;}
.h3_c00292{height:80.969238px;}
.h6_c00292{height:81.705322px;}
.h24_c00292{height:83.177490px;}
.h25_c00292{height:85.239258px;}
.h22_c00292{height:89.956055px;}
.h21_c00292{height:106.382812px;}
.h17_c00292{height:120.462891px;}
.h20_c00292{height:126.720703px;}
.h0_c00292{height:1263.000000px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x6_c00292{left:102.238785px;}
.x7_c00292{left:141.118815px;}
.x1_c00292{left:142.199850px;}
.x34_c00292{left:160.198785px;}
.x33_c00292{left:190.799565px;}
.x24_c00292{left:195.479685px;}
.x15_c00292{left:196.559100px;}
.x38_c00292{left:197.637000px;}
.x8_c00292{left:203.399850px;}
.x20_c00292{left:204.838515px;}
.xd_c00292{left:211.679100px;}
.x2_c00292{left:216.718500px;}
.x16_c00292{left:226.439685px;}
.xe_c00292{left:237.599700px;}
.x17_c00292{left:245.519685px;}
.x9_c00292{left:255.959400px;}
.xa_c00292{left:274.319250px;}
.x13_c00292{left:285.838515px;}
.x14_c00292{left:311.759100px;}
.x2c_c00292{left:320.040000px;}
.xf_c00292{left:328.319250px;}
.x2d_c00292{left:335.519100px;}
.x18_c00292{left:349.918950px;}
.x10_c00292{left:354.599100px;}
.x25_c00292{left:363.959385px;}
.x26_c00292{left:380.519685px;}
.x3b_c00292{left:385.918350px;}
.x21_c00292{left:394.919535px;}
.x3c_c00292{left:400.679070px;}
.x30_c00292{left:415.078815px;}
.x3_c00292{left:420.119985px;}
.x29_c00292{left:432.000000px;}
.x4_c00292{left:433.799565px;}
.x22_c00292{left:437.039385px;}
.x27_c00292{left:452.159415px;}
.x19_c00292{left:458.639100px;}
.x2a_c00292{left:460.799565px;}
.x28_c00292{left:468.719565px;}
.xb_c00292{left:487.799565px;}
.x1a_c00292{left:501.119985px;}
.xc_c00292{left:520.199850px;}
.x1b_c00292{left:541.079400px;}
.x36_c00292{left:545.398635px;}
.x37_c00292{left:562.679070px;}
.x39_c00292{left:598.678530px;}
.x1c_c00292{left:601.559100px;}
.x3a_c00292{left:613.439250px;}
.x1d_c00292{left:668.879520px;}
.x31_c00292{left:672.839535px;}
.x1e_c00292{left:681.838950px;}
.x32_c00292{left:687.239220px;}
.x2b_c00292{left:697.679070px;}
.x1f_c00292{left:715.318770px;}
.x11_c00292{left:716.399820px;}
.x12_c00292{left:732.239820px;}
.x5_c00292{left:736.559100px;}
.x23_c00292{left:737.638545px;}
.x2e_c00292{left:739.078770px;}
.x2f_c00292{left:754.559685px;}
.x35_c00292{left:771.838530px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.lsc_c00292{letter-spacing:-7.924000pt;}
.lsf_c00292{letter-spacing:-7.266700pt;}
.ls1e_c00292{letter-spacing:-6.714400pt;}
.ls6_c00292{letter-spacing:-5.943000pt;}
.ls15_c00292{letter-spacing:-5.832000pt;}
.lse_c00292{letter-spacing:-5.285000pt;}
.lsd_c00292{letter-spacing:-4.619300pt;}
.ls14_c00292{letter-spacing:-4.497933pt;}
.ls25_c00292{letter-spacing:-4.203260pt;}
.ls9_c00292{letter-spacing:-4.129333pt;}
.ls1c_c00292{letter-spacing:-4.094800pt;}
.ls11_c00292{letter-spacing:-4.035067pt;}
.ls29_c00292{letter-spacing:-3.961300pt;}
.ls2a_c00292{letter-spacing:-3.922620pt;}
.ls12_c00292{letter-spacing:-3.852887pt;}
.ls5_c00292{letter-spacing:-3.304000pt;}
.ls2_c00292{letter-spacing:-2.639000pt;}
.lsa_c00292{letter-spacing:-2.500000pt;}
.ls7_c00292{letter-spacing:-2.163000pt;}
.lsb_c00292{letter-spacing:-2.035000pt;}
.ls1_c00292{letter-spacing:-1.981700pt;}
.ls13_c00292{letter-spacing:-1.887080pt;}
.ls2b_c00292{letter-spacing:-1.579333pt;}
.ls3_c00292{letter-spacing:-1.323700pt;}
.ls26_c00292{letter-spacing:-1.200600pt;}
.ls20_c00292{letter-spacing:-0.814533pt;}
.ls1f_c00292{letter-spacing:-0.682267pt;}
.ls4_c00292{letter-spacing:-0.658000pt;}
.ls27_c00292{letter-spacing:-0.582667pt;}
.ls1d_c00292{letter-spacing:-0.572267pt;}
.ls8_c00292{letter-spacing:0.000000pt;}
.ls23_c00292{letter-spacing:0.601600pt;}
.ls24_c00292{letter-spacing:0.954800pt;}
.ls28_c00292{letter-spacing:1.180000pt;}
.ls0_c00292{letter-spacing:1.323700pt;}
.ls1b_c00292{letter-spacing:1.901267pt;}
.ls16_c00292{letter-spacing:1.909880pt;}
.ls2c_c00292{letter-spacing:2.018920pt;}
.ls19_c00292{letter-spacing:2.141640pt;}
.ls10_c00292{letter-spacing:2.196400pt;}
.ls21_c00292{letter-spacing:2.255733pt;}
.ls17_c00292{letter-spacing:2.366000pt;}
.ls18_c00292{letter-spacing:6.586133pt;}
.ls1a_c00292{letter-spacing:11.464960pt;}
.ls22_c00292{letter-spacing:15.751067pt;}
.ws0_c00292{word-spacing:0.000000pt;}
._18_c00292{margin-left:-36.797626pt;}
._1a_c00292{margin-left:-8.019306pt;}
._19_c00292{margin-left:-7.031104pt;}
._c_c00292{margin-left:-3.808251pt;}
._3_c00292{margin-left:-2.845143pt;}
._2_c00292{margin-left:-1.558425pt;}
._5_c00292{width:1.791194pt;}
._4_c00292{width:3.259768pt;}
._0_c00292{width:4.268838pt;}
._1_c00292{width:5.200921pt;}
._16_c00292{width:6.425260pt;}
._7_c00292{width:7.518766pt;}
._b_c00292{width:8.751017pt;}
._6_c00292{width:10.122594pt;}
._9_c00292{width:11.446994pt;}
._12_c00292{width:13.097475pt;}
._a_c00292{width:14.082851pt;}
._17_c00292{width:15.181098pt;}
._15_c00292{width:16.464515pt;}
._14_c00292{width:17.728160pt;}
._d_c00292{width:18.716455pt;}
._10_c00292{width:19.985185pt;}
._8_c00292{width:21.541721pt;}
._13_c00292{width:22.778423pt;}
._e_c00292{width:23.758106pt;}
._f_c00292{width:28.369600pt;}
._11_c00292{width:30.319721pt;}
.fs1d_c00292{font-size:18.000000pt;}
.fs1c_c00292{font-size:19.333333pt;}
.fs3_c00292{font-size:20.000000pt;}
.fs1b_c00292{font-size:20.666667pt;}
.fs1a_c00292{font-size:21.333333pt;}
.fs19_c00292{font-size:22.666667pt;}
.fs9_c00292{font-size:25.333333pt;}
.fs17_c00292{font-size:27.333333pt;}
.fsc_c00292{font-size:28.000000pt;}
.fs16_c00292{font-size:28.666667pt;}
.fs18_c00292{font-size:29.333333pt;}
.fsb_c00292{font-size:30.000000pt;}
.fsa_c00292{font-size:35.333333pt;}
.fse_c00292{font-size:36.000000pt;}
.fsf_c00292{font-size:40.000000pt;}
.fs10_c00292{font-size:42.666667pt;}
.fsd_c00292{font-size:43.333333pt;}
.fs11_c00292{font-size:44.666667pt;}
.fs14_c00292{font-size:49.333333pt;}
.fs12_c00292{font-size:52.666667pt;}
.fs13_c00292{font-size:58.000000pt;}
.fs2_c00292{font-size:63.333333pt;}
.fs21_c00292{font-size:66.666667pt;}
.fs5_c00292{font-size:68.000000pt;}
.fs7_c00292{font-size:68.666667pt;}
.fs0_c00292{font-size:70.000000pt;}
.fs6_c00292{font-size:70.666667pt;}
.fs8_c00292{font-size:71.333333pt;}
.fs1_c00292{font-size:73.333333pt;}
.fs4_c00292{font-size:74.000000pt;}
.fs22_c00292{font-size:75.333333pt;}
.fs20_c00292{font-size:76.666667pt;}
.fs1f_c00292{font-size:90.666667pt;}
.fs15_c00292{font-size:102.666667pt;}
.fs1e_c00292{font-size:108.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y2e_c00292{bottom:167.681480pt;}
.y2d_c00292{bottom:186.240253pt;}
.y2c_c00292{bottom:186.241093pt;}
.y2b_c00292{bottom:204.799867pt;}
.y2a_c00292{bottom:204.800173pt;}
.y29_c00292{bottom:242.880080pt;}
.y28_c00292{bottom:262.081053pt;}
.y26_c00292{bottom:280.959307pt;}
.y27_c00292{bottom:280.960000pt;}
.y25_c00292{bottom:333.760253pt;}
.y24_c00292{bottom:360.000000pt;}
.y23_c00292{bottom:360.000120pt;}
.y22_c00292{bottom:386.239707pt;}
.y21_c00292{bottom:386.240107pt;}
.y20_c00292{bottom:413.440467pt;}
.y1f_c00292{bottom:439.680053pt;}
.y1e_c00292{bottom:466.559973pt;}
.y1d_c00292{bottom:466.561200pt;}
.y1c_c00292{bottom:492.800800pt;}
.y1b_c00292{bottom:518.721827pt;}
.y1a_c00292{bottom:572.161480pt;}
.y19_c00292{bottom:590.720253pt;}
.y18_c00292{bottom:590.720480pt;}
.y17_c00292{bottom:609.919840pt;}
.y16_c00292{bottom:609.920080pt;}
.y15_c00292{bottom:629.121080pt;}
.y14_c00292{bottom:648.000000pt;}
.y11_c00292{bottom:666.880373pt;}
.y12_c00292{bottom:667.201173pt;}
.y13_c00292{bottom:667.839840pt;}
.y10_c00292{bottom:672.000000pt;}
.yf_c00292{bottom:719.359827pt;}
.yd_c00292{bottom:746.239680pt;}
.ye_c00292{bottom:746.239747pt;}
.yc_c00292{bottom:772.480880pt;}
.yb_c00292{bottom:772.481120pt;}
.ya_c00292{bottom:799.361040pt;}
.y9_c00292{bottom:852.480547pt;}
.y8_c00292{bottom:852.480813pt;}
.y7_c00292{bottom:879.040573pt;}
.y6_c00292{bottom:905.280147pt;}
.y4_c00292{bottom:928.640627pt;}
.y5_c00292{bottom:931.201173pt;}
.y3_c00292{bottom:958.719720pt;}
.y2_c00292{bottom:984.640013pt;}
.y1_c00292{bottom:1011.519933pt;}
.h1f_c00292{height:18.773437pt;}
.h1e_c00292{height:20.164062pt;}
.h5_c00292{height:20.859375pt;}
.h1d_c00292{height:21.554687pt;}
.h1c_c00292{height:22.250000pt;}
.h1b_c00292{height:22.843750pt;}
.hb_c00292{height:26.421875pt;}
.h19_c00292{height:26.826172pt;}
.h18_c00292{height:28.134766pt;}
.h1a_c00292{height:28.789062pt;}
.he_c00292{height:29.203125pt;}
.hd_c00292{height:29.648437pt;}
.hc_c00292{height:36.851562pt;}
.h10_c00292{height:37.546875pt;}
.h11_c00292{height:41.718750pt;}
.hf_c00292{height:43.671875pt;}
.h12_c00292{height:44.500000pt;}
.h13_c00292{height:46.585938pt;}
.h16_c00292{height:51.453125pt;}
.h14_c00292{height:53.078125pt;}
.h15_c00292{height:58.453125pt;}
.h4_c00292{height:66.054688pt;}
.h7_c00292{height:66.738281pt;}
.h9_c00292{height:67.392578pt;}
.h1_c00292{height:68.701172pt;}
.h8_c00292{height:69.355469pt;}
.h23_c00292{height:69.531250pt;}
.ha_c00292{height:70.009766pt;}
.h2_c00292{height:70.546875pt;}
.h3_c00292{height:71.972656pt;}
.h6_c00292{height:72.626953pt;}
.h24_c00292{height:73.935547pt;}
.h25_c00292{height:75.768229pt;}
.h22_c00292{height:79.960938pt;}
.h21_c00292{height:94.562500pt;}
.h17_c00292{height:107.078125pt;}
.h20_c00292{height:112.640625pt;}
.h0_c00292{height:1122.666667pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x6_c00292{left:90.878920pt;}
.x7_c00292{left:125.438947pt;}
.x1_c00292{left:126.399867pt;}
.x34_c00292{left:142.398920pt;}
.x33_c00292{left:169.599613pt;}
.x24_c00292{left:173.759720pt;}
.x15_c00292{left:174.719200pt;}
.x38_c00292{left:175.677333pt;}
.x8_c00292{left:180.799867pt;}
.x20_c00292{left:182.078680pt;}
.xd_c00292{left:188.159200pt;}
.x2_c00292{left:192.638667pt;}
.x16_c00292{left:201.279720pt;}
.xe_c00292{left:211.199733pt;}
.x17_c00292{left:218.239720pt;}
.x9_c00292{left:227.519467pt;}
.xa_c00292{left:243.839333pt;}
.x13_c00292{left:254.078680pt;}
.x14_c00292{left:277.119200pt;}
.x2c_c00292{left:284.480000pt;}
.xf_c00292{left:291.839333pt;}
.x2d_c00292{left:298.239200pt;}
.x18_c00292{left:311.039067pt;}
.x10_c00292{left:315.199200pt;}
.x25_c00292{left:323.519453pt;}
.x26_c00292{left:338.239720pt;}
.x3b_c00292{left:343.038533pt;}
.x21_c00292{left:351.039587pt;}
.x3c_c00292{left:356.159173pt;}
.x30_c00292{left:368.958947pt;}
.x3_c00292{left:373.439987pt;}
.x29_c00292{left:384.000000pt;}
.x4_c00292{left:385.599613pt;}
.x22_c00292{left:388.479453pt;}
.x27_c00292{left:401.919480pt;}
.x19_c00292{left:407.679200pt;}
.x2a_c00292{left:409.599613pt;}
.x28_c00292{left:416.639613pt;}
.xb_c00292{left:433.599613pt;}
.x1a_c00292{left:445.439987pt;}
.xc_c00292{left:462.399867pt;}
.x1b_c00292{left:480.959467pt;}
.x36_c00292{left:484.798787pt;}
.x37_c00292{left:500.159173pt;}
.x39_c00292{left:532.158693pt;}
.x1c_c00292{left:534.719200pt;}
.x3a_c00292{left:545.279333pt;}
.x1d_c00292{left:594.559573pt;}
.x31_c00292{left:598.079587pt;}
.x1e_c00292{left:606.079067pt;}
.x32_c00292{left:610.879307pt;}
.x2b_c00292{left:620.159173pt;}
.x1f_c00292{left:635.838907pt;}
.x11_c00292{left:636.799840pt;}
.x12_c00292{left:650.879840pt;}
.x5_c00292{left:654.719200pt;}
.x23_c00292{left:655.678707pt;}
.x2e_c00292{left:656.958907pt;}
.x2f_c00292{left:670.719720pt;}
.x35_c00292{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bac3a3bce63f19c34c022541.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_4ba096f6886a42930a7e2ba7.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_3687d4ba0163a108b2e33f30.woff2')format("woff");}.ff3_c00293{font-family:ff3_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:ff4_c00293;src:url('chunks/assets/font_715f275d8d68a082fb6835ec.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_08cd21c0c8824783512dc4a8.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00293;src:url('chunks/assets/font_024c10721d3ccb660c0bb4d8.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00293{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m21_c00293{transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m5_c00293{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m29_c00293{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00293{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m23_c00293{transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);}
.m10_c00293{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.mf_c00293{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m27_c00293{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m20_c00293{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m26_c00293{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.me_c00293{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m28_c00293{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.ma_c00293{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m11_c00293{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m25_c00293{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);}
.m19_c00293{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m16_c00293{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m2b_c00293{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m8_c00293{transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243534,0.000000,0.000000,0.250000,0,0);}
.md_c00293{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.mb_c00293{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m14_c00293{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.mc_c00293{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m22_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00293{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1c_c00293{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m18_c00293{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m12_c00293{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m1f_c00293{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m24_c00293{transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270202,0.000000,0.000000,0.250000,0,0);}
.m1d_c00293{transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);}
.m13_c00293{transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);}
.m1b_c00293{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m17_c00293{transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);}
.m2a_c00293{transform:matrix(0.296703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296703,0.000000,0.000000,0.250000,0,0);}
.m1e_c00293{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v1_c00293{vertical-align:-5.764260px;}
.v0_c00293{vertical-align:0.000000px;}
.ls1d_c00293{letter-spacing:-11.121300px;}
.lse_c00293{letter-spacing:-10.013700px;}
.ls22_c00293{letter-spacing:-8.914500px;}
.ls19_c00293{letter-spacing:-8.755275px;}
.ls12_c00293{letter-spacing:-8.175038px;}
.ls1c_c00293{letter-spacing:-8.002800px;}
.ls1b_c00293{letter-spacing:-7.568400px;}
.lsf_c00293{letter-spacing:-7.426125px;}
.ls10_c00293{letter-spacing:-6.685875px;}
.ls1e_c00293{letter-spacing:-6.529005px;}
.ls32_c00293{letter-spacing:-6.320633px;}
.ls29_c00293{letter-spacing:-6.219398px;}
.lsa_c00293{letter-spacing:-5.945625px;}
.ls1f_c00293{letter-spacing:-5.889548px;}
.ls2c_c00293{letter-spacing:-5.553900px;}
.ls11_c00293{letter-spacing:-5.203125px;}
.ls7_c00293{letter-spacing:-5.196713px;}
.lsc_c00293{letter-spacing:-5.151600px;}
.ls27_c00293{letter-spacing:-4.828125px;}
.ls6_c00293{letter-spacing:-4.456463px;}
.ls2e_c00293{letter-spacing:-4.086600px;}
.ls14_c00293{letter-spacing:-3.782220px;}
.ls2_c00293{letter-spacing:-3.717000px;}
.ls21_c00293{letter-spacing:-3.683475px;}
.ls31_c00293{letter-spacing:-3.242903px;}
.ls15_c00293{letter-spacing:-3.025425px;}
.ls4_c00293{letter-spacing:-2.968875px;}
.ls1a_c00293{letter-spacing:-2.643300px;}
.ls3_c00293{letter-spacing:-2.229413px;}
.ls2a_c00293{letter-spacing:-1.606800px;}
.ls16_c00293{letter-spacing:-1.533600px;}
.ls8_c00293{letter-spacing:-1.489163px;}
.ls18_c00293{letter-spacing:-0.804173px;}
.ls2d_c00293{letter-spacing:-0.795000px;}
.ls5_c00293{letter-spacing:-0.740250px;}
.ls9_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.740250px;}
.ls23_c00293{letter-spacing:1.482000px;}
.ls1_c00293{letter-spacing:1.489163px;}
.ls2f_c00293{letter-spacing:1.606800px;}
.ls17_c00293{letter-spacing:1.738898px;}
.lsd_c00293{letter-spacing:1.857075px;}
.ls25_c00293{letter-spacing:2.137500px;}
.ls20_c00293{letter-spacing:2.394450px;}
.ls13_c00293{letter-spacing:2.417183px;}
.lsb_c00293{letter-spacing:3.410100px;}
.ls2b_c00293{letter-spacing:4.023953px;}
.ls28_c00293{letter-spacing:4.502250px;}
.ls30_c00293{letter-spacing:5.878725px;}
.ls24_c00293{letter-spacing:7.478700px;}
.ls26_c00293{letter-spacing:18.875535px;}
.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;}
._18_c00293{margin-left:-16.644035px;}
._19_c00293{margin-left:-12.816681px;}
._13_c00293{margin-left:-8.401852px;}
._14_c00293{margin-left:-6.837669px;}
._17_c00293{margin-left:-3.973725px;}
._12_c00293{margin-left:-2.674855px;}
._11_c00293{margin-left:-1.148116px;}
._f_c00293{width:1.403503px;}
._9_c00293{width:3.187904px;}
._0_c00293{width:4.470950px;}
._1e_c00293{width:5.502946px;}
._7_c00293{width:6.538598px;}
._1_c00293{width:7.868106px;}
._4_c00293{width:9.003800px;}
._3_c00293{width:10.156729px;}
._2_c00293{width:11.437204px;}
._6_c00293{width:13.109230px;}
._10_c00293{width:14.261774px;}
._8_c00293{width:15.543200px;}
._20_c00293{width:16.624868px;}
._1a_c00293{width:17.628990px;}
._5_c00293{width:19.082210px;}
._15_c00293{width:20.302894px;}
._16_c00293{width:22.708974px;}
._1f_c00293{width:24.174705px;}
._b_c00293{width:25.646423px;}
._1d_c00293{width:27.257544px;}
._d_c00293{width:29.529690px;}
._c_c00293{width:31.198908px;}
._e_c00293{width:33.043738px;}
._a_c00293{width:35.398125px;}
._1c_c00293{width:40.656931px;}
._1b_c00293{width:42.486071px;}
.fc0_c00293{color:transparent;}
.fs12_c00293{font-size:51.750000px;}
.fsd_c00293{font-size:66.750000px;}
.fs16_c00293{font-size:67.500000px;}
.fs1a_c00293{font-size:68.250000px;}
.fs14_c00293{font-size:69.000000px;}
.fse_c00293{font-size:70.500000px;}
.fs13_c00293{font-size:71.250000px;}
.fsa_c00293{font-size:72.000000px;}
.fs11_c00293{font-size:72.750000px;}
.fs15_c00293{font-size:73.500000px;}
.fs17_c00293{font-size:74.250000px;}
.fs18_c00293{font-size:75.000000px;}
.fs8_c00293{font-size:75.750000px;}
.fsf_c00293{font-size:76.500000px;}
.fsc_c00293{font-size:77.250000px;}
.fs9_c00293{font-size:78.000000px;}
.fs0_c00293{font-size:78.750000px;}
.fsb_c00293{font-size:79.500000px;}
.fs5_c00293{font-size:80.250000px;}
.fs4_c00293{font-size:81.000000px;}
.fs2_c00293{font-size:82.500000px;}
.fs7_c00293{font-size:83.250000px;}
.fs3_c00293{font-size:84.000000px;}
.fs1_c00293{font-size:84.750000px;}
.fs19_c00293{font-size:85.500000px;}
.fs6_c00293{font-size:87.000000px;}
.fs10_c00293{font-size:101.250000px;}
.y0_c00293{bottom:0.000000px;}
.y2d_c00293{bottom:250.560495px;}
.y2b_c00293{bottom:279.719460px;}
.y2c_c00293{bottom:279.719535px;}
.y2a_c00293{bottom:309.959385px;}
.y29_c00293{bottom:339.840135px;}
.y28_c00293{bottom:339.840225px;}
.y27_c00293{bottom:369.719955px;}
.y26_c00293{bottom:399.599670px;}
.y25_c00293{bottom:429.480285px;}
.y24_c00293{bottom:488.519670px;}
.y23_c00293{bottom:488.520105px;}
.y21_c00293{bottom:510.118950px;}
.y22_c00293{bottom:510.119385px;}
.y1f_c00293{bottom:531.359235px;}
.y20_c00293{bottom:531.359850px;}
.y1e_c00293{bottom:552.600135px;}
.y1d_c00293{bottom:574.199850px;}
.y1c_c00293{bottom:574.200000px;}
.y1a_c00293{bottom:633.240780px;}
.y1b_c00293{bottom:633.240870px;}
.y19_c00293{bottom:662.399820px;}
.y18_c00293{bottom:662.400720px;}
.y17_c00293{bottom:692.280435px;}
.y16_c00293{bottom:722.520270px;}
.y14_c00293{bottom:752.759445px;}
.y15_c00293{bottom:752.760135px;}
.y13_c00293{bottom:781.920600px;}
.y12_c00293{bottom:781.921620px;}
.y11_c00293{bottom:841.681065px;}
.y10_c00293{bottom:862.559685px;}
.yf_c00293{bottom:884.161485px;}
.yd_c00293{bottom:905.760150px;}
.ye_c00293{bottom:905.760780px;}
.yc_c00293{bottom:948.239865px;}
.yb_c00293{bottom:970.200435px;}
.ya_c00293{bottom:970.201650px;}
.y9_c00293{bottom:1012.321170px;}
.y8_c00293{bottom:1033.199805px;}
.y6_c00293{bottom:1054.798575px;}
.y7_c00293{bottom:1054.799565px;}
.y5_c00293{bottom:1097.280390px;}
.y4_c00293{bottom:1097.280690px;}
.y3_c00293{bottom:1118.879970px;}
.y2_c00293{bottom:1118.880360px;}
.y1_c00293{bottom:1140.479640px;}
.h18_c00293{height:53.973633px;}
.h1c_c00293{height:68.027344px;}
.h11_c00293{height:69.618164px;}
.h22_c00293{height:71.182617px;}
.h17_c00293{height:71.400146px;}
.h19_c00293{height:71.806641px;}
.h1a_c00293{height:71.964844px;}
.h1b_c00293{height:72.100342px;}
.hc_c00293{height:72.562500px;}
.h13_c00293{height:73.529297px;}
.ha_c00293{height:74.344482px;}
.h1e_c00293{height:74.830078px;}
.h14_c00293{height:75.080566px;}
.h1f_c00293{height:75.585938px;}
.h1d_c00293{height:76.344727px;}
.h16_c00293{height:76.552734px;}
.h20_c00293{height:76.658203px;}
.h1_c00293{height:77.288818px;}
.hf_c00293{height:77.853516px;}
.hd_c00293{height:77.986084px;}
.hb_c00293{height:78.609375px;}
.h6_c00293{height:78.760986px;}
.h7_c00293{height:79.497070px;}
.h12_c00293{height:80.050781px;}
.he_c00293{height:80.121094px;}
.h10_c00293{height:80.876953px;}
.h3_c00293{height:80.969238px;}
.h5_c00293{height:81.632812px;}
.h9_c00293{height:81.705322px;}
.h2_c00293{height:83.177490px;}
.h21_c00293{height:84.498047px;}
.h8_c00293{height:85.385742px;}
.h4_c00293{height:87.609375px;}
.h15_c00293{height:105.600586px;}
.h0_c00293{height:1263.000000px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x15_c00293{left:140.763405px;}
.x32_c00293{left:168.838950px;}
.x25_c00293{left:170.279250px;}
.xb_c00293{left:195.479685px;}
.x4_c00293{left:196.559835px;}
.x1_c00293{left:197.638500px;}
.x33_c00293{left:200.159850px;}
.x18_c00293{left:215.279850px;}
.x14_c00293{left:217.079385px;}
.x29_c00293{left:219.239850px;}
.x2a_c00293{left:251.638500px;}
.x19_c00293{left:255.239250px;}
.xe_c00293{left:257.759100px;}
.x3d_c00293{left:285.479235px;}
.x30_c00293{left:287.278800px;}
.xf_c00293{left:290.518635px;}
.x3e_c00293{left:299.878950px;}
.x34_c00293{left:312.120000px;}
.x31_c00293{left:318.599700px;}
.x1a_c00293{left:332.999385px;}
.x35_c00293{left:335.519100px;}
.x7_c00293{left:357.479685px;}
.x43_c00293{left:369.359850px;}
.x8_c00293{left:371.159385px;}
.x36_c00293{left:373.679100px;}
.x1b_c00293{left:381.239850px;}
.xc_c00293{left:383.039385px;}
.x44_c00293{left:389.159820px;}
.xd_c00293{left:397.080000px;}
.x2b_c00293{left:419.399820px;}
.x1c_c00293{left:424.080000px;}
.x10_c00293{left:433.079400px;}
.x16_c00293{left:444.598530px;}
.x1d_c00293{left:448.199385px;}
.x3f_c00293{left:451.080000px;}
.x11_c00293{left:457.559685px;}
.x1e_c00293{left:464.398635px;}
.x17_c00293{left:468.358665px;}
.x23_c00293{left:476.639700px;}
.x40_c00293{left:483.119385px;}
.x5_c00293{left:489.958335px;}
.x41_c00293{left:492.838950px;}
.x1f_c00293{left:495.358665px;}
.x2c_c00293{left:500.759085px;}
.x6_c00293{left:506.159415px;}
.x24_c00293{left:513.000000px;}
.x2d_c00293{left:514.438665px;}
.x42_c00293{left:520.559100px;}
.x26_c00293{left:526.679670px;}
.x12_c00293{left:531.359850px;}
.x13_c00293{left:546.838950px;}
.x27_c00293{left:555.479235px;}
.x2e_c00293{left:563.758530px;}
.x2f_c00293{left:584.998950px;}
.x28_c00293{left:591.478635px;}
.x37_c00293{left:601.199850px;}
.x20_c00293{left:612.359850px;}
.x21_c00293{left:636.119985px;}
.x38_c00293{left:643.679070px;}
.x39_c00293{left:667.439250px;}
.x22_c00293{left:680.398635px;}
.x3a_c00293{left:682.199850px;}
.x3b_c00293{left:705.239820px;}
.x9_c00293{left:711.719520px;}
.x2_c00293{left:748.439205px;}
.x3_c00293{left:764.279250px;}
.x3c_c00293{left:766.078770px;}
.xa_c00293{left:771.838530px;}
@media print{
.v1_c00293{vertical-align:-5.123787pt;}
.v0_c00293{vertical-align:0.000000pt;}
.ls1d_c00293{letter-spacing:-9.885600pt;}
.lse_c00293{letter-spacing:-8.901067pt;}
.ls22_c00293{letter-spacing:-7.924000pt;}
.ls19_c00293{letter-spacing:-7.782467pt;}
.ls12_c00293{letter-spacing:-7.266700pt;}
.ls1c_c00293{letter-spacing:-7.113600pt;}
.ls1b_c00293{letter-spacing:-6.727467pt;}
.lsf_c00293{letter-spacing:-6.601000pt;}
.ls10_c00293{letter-spacing:-5.943000pt;}
.ls1e_c00293{letter-spacing:-5.803560pt;}
.ls32_c00293{letter-spacing:-5.618340pt;}
.ls29_c00293{letter-spacing:-5.528353pt;}
.lsa_c00293{letter-spacing:-5.285000pt;}
.ls1f_c00293{letter-spacing:-5.235153pt;}
.ls2c_c00293{letter-spacing:-4.936800pt;}
.ls11_c00293{letter-spacing:-4.625000pt;}
.ls7_c00293{letter-spacing:-4.619300pt;}
.lsc_c00293{letter-spacing:-4.579200pt;}
.ls27_c00293{letter-spacing:-4.291667pt;}
.ls6_c00293{letter-spacing:-3.961300pt;}
.ls2e_c00293{letter-spacing:-3.632533pt;}
.ls14_c00293{letter-spacing:-3.361973pt;}
.ls2_c00293{letter-spacing:-3.304000pt;}
.ls21_c00293{letter-spacing:-3.274200pt;}
.ls31_c00293{letter-spacing:-2.882580pt;}
.ls15_c00293{letter-spacing:-2.689267pt;}
.ls4_c00293{letter-spacing:-2.639000pt;}
.ls1a_c00293{letter-spacing:-2.349600pt;}
.ls3_c00293{letter-spacing:-1.981700pt;}
.ls2a_c00293{letter-spacing:-1.428267pt;}
.ls16_c00293{letter-spacing:-1.363200pt;}
.ls8_c00293{letter-spacing:-1.323700pt;}
.ls18_c00293{letter-spacing:-0.714820pt;}
.ls2d_c00293{letter-spacing:-0.706667pt;}
.ls5_c00293{letter-spacing:-0.658000pt;}
.ls9_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.658000pt;}
.ls23_c00293{letter-spacing:1.317333pt;}
.ls1_c00293{letter-spacing:1.323700pt;}
.ls2f_c00293{letter-spacing:1.428267pt;}
.ls17_c00293{letter-spacing:1.545687pt;}
.lsd_c00293{letter-spacing:1.650733pt;}
.ls25_c00293{letter-spacing:1.900000pt;}
.ls20_c00293{letter-spacing:2.128400pt;}
.ls13_c00293{letter-spacing:2.148607pt;}
.lsb_c00293{letter-spacing:3.031200pt;}
.ls2b_c00293{letter-spacing:3.576847pt;}
.ls28_c00293{letter-spacing:4.002000pt;}
.ls30_c00293{letter-spacing:5.225533pt;}
.ls24_c00293{letter-spacing:6.647733pt;}
.ls26_c00293{letter-spacing:16.778253pt;}
.ws0_c00293{word-spacing:0.000000pt;}
._18_c00293{margin-left:-14.794698pt;}
._19_c00293{margin-left:-11.392606pt;}
._13_c00293{margin-left:-7.468313pt;}
._14_c00293{margin-left:-6.077928pt;}
._17_c00293{margin-left:-3.532200pt;}
._12_c00293{margin-left:-2.377649pt;}
._11_c00293{margin-left:-1.020547pt;}
._f_c00293{width:1.247558pt;}
._9_c00293{width:2.833692pt;}
._0_c00293{width:3.974177pt;}
._1e_c00293{width:4.891508pt;}
._7_c00293{width:5.812087pt;}
._1_c00293{width:6.993872pt;}
._4_c00293{width:8.003377pt;}
._3_c00293{width:9.028204pt;}
._2_c00293{width:10.166404pt;}
._6_c00293{width:11.652649pt;}
._10_c00293{width:12.677132pt;}
._8_c00293{width:13.816177pt;}
._20_c00293{width:14.777660pt;}
._1a_c00293{width:15.670213pt;}
._5_c00293{width:16.961964pt;}
._15_c00293{width:18.047017pt;}
._16_c00293{width:20.185755pt;}
._1f_c00293{width:21.488626pt;}
._b_c00293{width:22.796821pt;}
._1d_c00293{width:24.228928pt;}
._d_c00293{width:26.248613pt;}
._c_c00293{width:27.732362pt;}
._e_c00293{width:29.372211pt;}
._a_c00293{width:31.465000pt;}
._1c_c00293{width:36.139494pt;}
._1b_c00293{width:37.765396pt;}
.fs12_c00293{font-size:46.000000pt;}
.fsd_c00293{font-size:59.333333pt;}
.fs16_c00293{font-size:60.000000pt;}
.fs1a_c00293{font-size:60.666667pt;}
.fs14_c00293{font-size:61.333333pt;}
.fse_c00293{font-size:62.666667pt;}
.fs13_c00293{font-size:63.333333pt;}
.fsa_c00293{font-size:64.000000pt;}
.fs11_c00293{font-size:64.666667pt;}
.fs15_c00293{font-size:65.333333pt;}
.fs17_c00293{font-size:66.000000pt;}
.fs18_c00293{font-size:66.666667pt;}
.fs8_c00293{font-size:67.333333pt;}
.fsf_c00293{font-size:68.000000pt;}
.fsc_c00293{font-size:68.666667pt;}
.fs9_c00293{font-size:69.333333pt;}
.fs0_c00293{font-size:70.000000pt;}
.fsb_c00293{font-size:70.666667pt;}
.fs5_c00293{font-size:71.333333pt;}
.fs4_c00293{font-size:72.000000pt;}
.fs2_c00293{font-size:73.333333pt;}
.fs7_c00293{font-size:74.000000pt;}
.fs3_c00293{font-size:74.666667pt;}
.fs1_c00293{font-size:75.333333pt;}
.fs19_c00293{font-size:76.000000pt;}
.fs6_c00293{font-size:77.333333pt;}
.fs10_c00293{font-size:90.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y2d_c00293{bottom:222.720440pt;}
.y2b_c00293{bottom:248.639520pt;}
.y2c_c00293{bottom:248.639587pt;}
.y2a_c00293{bottom:275.519453pt;}
.y29_c00293{bottom:302.080120pt;}
.y28_c00293{bottom:302.080200pt;}
.y27_c00293{bottom:328.639960pt;}
.y26_c00293{bottom:355.199707pt;}
.y25_c00293{bottom:381.760253pt;}
.y24_c00293{bottom:434.239707pt;}
.y23_c00293{bottom:434.240093pt;}
.y21_c00293{bottom:453.439067pt;}
.y22_c00293{bottom:453.439453pt;}
.y1f_c00293{bottom:472.319320pt;}
.y20_c00293{bottom:472.319867pt;}
.y1e_c00293{bottom:491.200120pt;}
.y1d_c00293{bottom:510.399867pt;}
.y1c_c00293{bottom:510.400000pt;}
.y1a_c00293{bottom:562.880693pt;}
.y1b_c00293{bottom:562.880773pt;}
.y19_c00293{bottom:588.799840pt;}
.y18_c00293{bottom:588.800640pt;}
.y17_c00293{bottom:615.360387pt;}
.y16_c00293{bottom:642.240240pt;}
.y14_c00293{bottom:669.119507pt;}
.y15_c00293{bottom:669.120120pt;}
.y13_c00293{bottom:695.040533pt;}
.y12_c00293{bottom:695.041440pt;}
.y11_c00293{bottom:748.160947pt;}
.y10_c00293{bottom:766.719720pt;}
.yf_c00293{bottom:785.921320pt;}
.yd_c00293{bottom:805.120133pt;}
.ye_c00293{bottom:805.120693pt;}
.yc_c00293{bottom:842.879880pt;}
.yb_c00293{bottom:862.400387pt;}
.ya_c00293{bottom:862.401467pt;}
.y9_c00293{bottom:899.841040pt;}
.y8_c00293{bottom:918.399827pt;}
.y6_c00293{bottom:937.598733pt;}
.y7_c00293{bottom:937.599613pt;}
.y5_c00293{bottom:975.360347pt;}
.y4_c00293{bottom:975.360613pt;}
.y3_c00293{bottom:994.559973pt;}
.y2_c00293{bottom:994.560320pt;}
.y1_c00293{bottom:1013.759680pt;}
.h18_c00293{height:47.976562pt;}
.h1c_c00293{height:60.468750pt;}
.h11_c00293{height:61.882812pt;}
.h22_c00293{height:63.273438pt;}
.h17_c00293{height:63.466797pt;}
.h19_c00293{height:63.828125pt;}
.h1a_c00293{height:63.968750pt;}
.h1b_c00293{height:64.089193pt;}
.hc_c00293{height:64.500000pt;}
.h13_c00293{height:65.359375pt;}
.ha_c00293{height:66.083984pt;}
.h1e_c00293{height:66.515625pt;}
.h14_c00293{height:66.738281pt;}
.h1f_c00293{height:67.187500pt;}
.h1d_c00293{height:67.861979pt;}
.h16_c00293{height:68.046875pt;}
.h20_c00293{height:68.140625pt;}
.h1_c00293{height:68.701172pt;}
.hf_c00293{height:69.203125pt;}
.hd_c00293{height:69.320964pt;}
.hb_c00293{height:69.875000pt;}
.h6_c00293{height:70.009766pt;}
.h7_c00293{height:70.664062pt;}
.h12_c00293{height:71.156250pt;}
.he_c00293{height:71.218750pt;}
.h10_c00293{height:71.890625pt;}
.h3_c00293{height:71.972656pt;}
.h5_c00293{height:72.562500pt;}
.h9_c00293{height:72.626953pt;}
.h2_c00293{height:73.935547pt;}
.h21_c00293{height:75.109375pt;}
.h8_c00293{height:75.898438pt;}
.h4_c00293{height:77.875000pt;}
.h15_c00293{height:93.867188pt;}
.h0_c00293{height:1122.666667pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x15_c00293{left:125.123027pt;}
.x32_c00293{left:150.079067pt;}
.x25_c00293{left:151.359333pt;}
.xb_c00293{left:173.759720pt;}
.x4_c00293{left:174.719853pt;}
.x1_c00293{left:175.678667pt;}
.x33_c00293{left:177.919867pt;}
.x18_c00293{left:191.359867pt;}
.x14_c00293{left:192.959453pt;}
.x29_c00293{left:194.879867pt;}
.x2a_c00293{left:223.678667pt;}
.x19_c00293{left:226.879333pt;}
.xe_c00293{left:229.119200pt;}
.x3d_c00293{left:253.759320pt;}
.x30_c00293{left:255.358933pt;}
.xf_c00293{left:258.238787pt;}
.x3e_c00293{left:266.559067pt;}
.x34_c00293{left:277.440000pt;}
.x31_c00293{left:283.199733pt;}
.x1a_c00293{left:295.999453pt;}
.x35_c00293{left:298.239200pt;}
.x7_c00293{left:317.759720pt;}
.x43_c00293{left:328.319867pt;}
.x8_c00293{left:329.919453pt;}
.x36_c00293{left:332.159200pt;}
.x1b_c00293{left:338.879867pt;}
.xc_c00293{left:340.479453pt;}
.x44_c00293{left:345.919840pt;}
.xd_c00293{left:352.960000pt;}
.x2b_c00293{left:372.799840pt;}
.x1c_c00293{left:376.960000pt;}
.x10_c00293{left:384.959467pt;}
.x16_c00293{left:395.198693pt;}
.x1d_c00293{left:398.399453pt;}
.x3f_c00293{left:400.960000pt;}
.x11_c00293{left:406.719720pt;}
.x1e_c00293{left:412.798787pt;}
.x17_c00293{left:416.318813pt;}
.x23_c00293{left:423.679733pt;}
.x40_c00293{left:429.439453pt;}
.x5_c00293{left:435.518520pt;}
.x41_c00293{left:438.079067pt;}
.x1f_c00293{left:440.318813pt;}
.x2c_c00293{left:445.119187pt;}
.x6_c00293{left:449.919480pt;}
.x24_c00293{left:456.000000pt;}
.x2d_c00293{left:457.278813pt;}
.x42_c00293{left:462.719200pt;}
.x26_c00293{left:468.159707pt;}
.x12_c00293{left:472.319867pt;}
.x13_c00293{left:486.079067pt;}
.x27_c00293{left:493.759320pt;}
.x2e_c00293{left:501.118693pt;}
.x2f_c00293{left:519.999067pt;}
.x28_c00293{left:525.758787pt;}
.x37_c00293{left:534.399867pt;}
.x20_c00293{left:544.319867pt;}
.x21_c00293{left:565.439987pt;}
.x38_c00293{left:572.159173pt;}
.x39_c00293{left:593.279333pt;}
.x22_c00293{left:604.798787pt;}
.x3a_c00293{left:606.399867pt;}
.x3b_c00293{left:626.879840pt;}
.x9_c00293{left:632.639573pt;}
.x2_c00293{left:665.279293pt;}
.x3_c00293{left:679.359333pt;}
.x3c_c00293{left:680.958907pt;}
.xa_c00293{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f3e80fe4428ba79103c44ef.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_85d8458bedcf00d0c33f7f63.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_ab61db176f87882f7e9fc6e2.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00294;src:url('chunks/assets/font_0289711ac7b95701b34622cf.woff2')format("woff");}.ff5_c00294{font-family:ff5_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:ff6_c00294;src:url('chunks/assets/font_36964ec44de992d12f711b04.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00294{transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m12_c00294{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m15_c00294{transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);}
.m14_c00294{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00294{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m16_c00294{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1d_c00294{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m18_c00294{transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00294{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m1f_c00294{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m20_c00294{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m21_c00294{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1a_c00294{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls1b_c00294{letter-spacing:-13.986000px;}
.ls17_c00294{letter-spacing:-13.033703px;}
.lsc_c00294{letter-spacing:-12.687675px;}
.ls1a_c00294{letter-spacing:-12.331200px;}
.lsf_c00294{letter-spacing:-12.226305px;}
.ls22_c00294{letter-spacing:-11.048108px;}
.ls13_c00294{letter-spacing:-9.754725px;}
.ls10_c00294{letter-spacing:-8.914500px;}
.ls15_c00294{letter-spacing:-8.175038px;}
.ls19_c00294{letter-spacing:-7.602750px;}
.ls12_c00294{letter-spacing:-7.426125px;}
.lse_c00294{letter-spacing:-6.685875px;}
.ls23_c00294{letter-spacing:-6.572700px;}
.lsb_c00294{letter-spacing:-5.945625px;}
.ls7_c00294{letter-spacing:-5.196713px;}
.ls1c_c00294{letter-spacing:-5.068500px;}
.ls8_c00294{letter-spacing:-4.456463px;}
.ls16_c00294{letter-spacing:-4.374000px;}
.ls5_c00294{letter-spacing:-3.717000px;}
.ls1f_c00294{letter-spacing:-3.243600px;}
.ls18_c00294{letter-spacing:-2.971800px;}
.ls6_c00294{letter-spacing:-2.968875px;}
.ls11_c00294{letter-spacing:-2.943000px;}
.ls1d_c00294{letter-spacing:-2.230950px;}
.ls2_c00294{letter-spacing:-2.229413px;}
.ls21_c00294{letter-spacing:-2.227050px;}
.ls20_c00294{letter-spacing:-1.725150px;}
.ls3_c00294{letter-spacing:-1.489163px;}
.ls9_c00294{letter-spacing:-0.740250px;}
.ls4_c00294{letter-spacing:0.000000px;}
.ls1e_c00294{letter-spacing:0.899100px;}
.lsd_c00294{letter-spacing:1.575900px;}
.ls1_c00294{letter-spacing:2.229413px;}
.ls14_c00294{letter-spacing:2.317950px;}
.ls0_c00294{letter-spacing:2.968875px;}
.lsa_c00294{letter-spacing:3.746250px;}
.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;}
._1a_c00294{margin-left:-21.666621px;}
._19_c00294{margin-left:-18.775634px;}
._1b_c00294{margin-left:-9.644483px;}
._18_c00294{margin-left:-8.106748px;}
._17_c00294{margin-left:-6.585120px;}
._16_c00294{margin-left:-4.541810px;}
._d_c00294{margin-left:-2.771495px;}
._14_c00294{margin-left:-1.203998px;}
._9_c00294{width:1.103644px;}
._a_c00294{width:2.914954px;}
._12_c00294{width:4.206037px;}
._e_c00294{width:5.848034px;}
._8_c00294{width:7.047917px;}
._b_c00294{width:8.571640px;}
._10_c00294{width:9.898994px;}
._c_c00294{width:11.694642px;}
._f_c00294{width:12.843858px;}
._13_c00294{width:13.933401px;}
._7_c00294{width:15.099168px;}
._3_c00294{width:16.222678px;}
._11_c00294{width:17.333380px;}
._15_c00294{width:19.174080px;}
._1_c00294{width:21.069340px;}
._1c_c00294{width:22.354658px;}
._0_c00294{width:23.775026px;}
._2_c00294{width:26.031986px;}
._5_c00294{width:28.022133px;}
._6_c00294{width:31.609893px;}
._4_c00294{width:36.166918px;}
.fc0_c00294{color:transparent;}
.fse_c00294{font-size:70.500000px;}
.fsc_c00294{font-size:72.750000px;}
.fs10_c00294{font-size:75.750000px;}
.fs8_c00294{font-size:76.500000px;}
.fs4_c00294{font-size:77.250000px;}
.fsd_c00294{font-size:78.000000px;}
.fs0_c00294{font-size:78.750000px;}
.fs5_c00294{font-size:79.500000px;}
.fs7_c00294{font-size:80.250000px;}
.fsb_c00294{font-size:81.000000px;}
.fs6_c00294{font-size:81.750000px;}
.fs2_c00294{font-size:82.500000px;}
.fsf_c00294{font-size:83.250000px;}
.fs9_c00294{font-size:84.000000px;}
.fs3_c00294{font-size:84.750000px;}
.fs1_c00294{font-size:101.250000px;}
.fsa_c00294{font-size:115.500000px;}
.y0_c00294{bottom:0.000000px;}
.y30_c00294{bottom:197.640150px;}
.y2f_c00294{bottom:197.640315px;}
.y2e_c00294{bottom:227.159850px;}
.y2d_c00294{bottom:227.160870px;}
.y2b_c00294{bottom:257.040525px;}
.y2c_c00294{bottom:257.040600px;}
.y2a_c00294{bottom:287.280435px;}
.y29_c00294{bottom:347.400900px;}
.y28_c00294{bottom:376.200435px;}
.y27_c00294{bottom:406.081050px;}
.y26_c00294{bottom:406.081185px;}
.y25_c00294{bottom:435.600720px;}
.y23_c00294{bottom:465.840540px;}
.y24_c00294{bottom:465.840585px;}
.y22_c00294{bottom:495.360105px;}
.y21_c00294{bottom:524.521245px;}
.y20_c00294{bottom:584.280690px;}
.y1f_c00294{bottom:605.879970px;}
.y1e_c00294{bottom:605.880300px;}
.y1d_c00294{bottom:627.481380px;}
.y1b_c00294{bottom:669.239340px;}
.y1c_c00294{bottom:669.240420px;}
.y1a_c00294{bottom:690.480270px;}
.y19_c00294{bottom:711.721155px;}
.y18_c00294{bottom:711.721185px;}
.y17_c00294{bottom:732.959970px;}
.y15_c00294{bottom:775.440495px;}
.y16_c00294{bottom:775.440855px;}
.y14_c00294{bottom:797.401770px;}
.y13_c00294{bottom:819.361245px;}
.y12_c00294{bottom:840.239865px;}
.y11_c00294{bottom:840.240045px;}
.y10_c00294{bottom:883.079955px;}
.yf_c00294{bottom:883.080615px;}
.ye_c00294{bottom:903.961035px;}
.yd_c00294{bottom:924.840540px;}
.yc_c00294{bottom:946.081440px;}
.yb_c00294{bottom:967.680720px;}
.ya_c00294{bottom:989.280390px;}
.y9_c00294{bottom:989.280720px;}
.y8_c00294{bottom:1031.400240px;}
.y7_c00294{bottom:1031.400720px;}
.y5_c00294{bottom:1052.999010px;}
.y6_c00294{bottom:1053.000000px;}
.y4_c00294{bottom:1095.480840px;}
.y3_c00294{bottom:1095.481500px;}
.y2_c00294{bottom:1117.080810px;}
.y1_c00294{bottom:1138.680090px;}
.h13_c00294{height:73.529297px;}
.h18_c00294{height:74.307495px;}
.h9_c00294{height:75.080566px;}
.h5_c00294{height:75.816650px;}
.he_c00294{height:75.875977px;}
.h11_c00294{height:76.552734px;}
.h1_c00294{height:77.288818px;}
.h15_c00294{height:77.827148px;}
.h6_c00294{height:78.568359px;}
.h8_c00294{height:78.760986px;}
.hc_c00294{height:79.497070px;}
.h17_c00294{height:80.121094px;}
.h7_c00294{height:80.233154px;}
.h12_c00294{height:80.791992px;}
.h10_c00294{height:80.969238px;}
.h3_c00294{height:81.533203px;}
.h16_c00294{height:81.705322px;}
.hd_c00294{height:82.133789px;}
.h14_c00294{height:83.015625px;}
.h4_c00294{height:83.177490px;}
.hf_c00294{height:83.756836px;}
.ha_c00294{height:87.609375px;}
.h2_c00294{height:105.600586px;}
.hb_c00294{height:120.462891px;}
.h0_c00294{height:1263.000000px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x37_c00294{left:137.519685px;}
.x21_c00294{left:139.317510px;}
.x19_c00294{left:194.037615px;}
.x2_c00294{left:195.115170px;}
.x3_c00294{left:197.277780px;}
.x1_c00294{left:198.358635px;}
.x38_c00294{left:199.798950px;}
.x31_c00294{left:214.198785px;}
.x10_c00294{left:218.878950px;}
.x18_c00294{left:224.279250px;}
.xd_c00294{left:237.238785px;}
.x32_c00294{left:258.479235px;}
.xa_c00294{left:279.358635px;}
.x33_c00294{left:290.518635px;}
.x39_c00294{left:295.198785px;}
.x3f_c00294{left:300.599100px;}
.xb_c00294{left:311.399850px;}
.x40_c00294{left:320.399235px;}
.x3b_c00294{left:328.319250px;}
.x34_c00294{left:344.518635px;}
.x3c_c00294{left:354.239850px;}
.x3a_c00294{left:357.479685px;}
.x8_c00294{left:360.358635px;}
.x35_c00294{left:365.759100px;}
.x9_c00294{left:375.478635px;}
.x2d_c00294{left:400.679070px;}
.x2e_c00294{left:414.719565px;}
.x36_c00294{left:420.838530px;}
.x29_c00294{left:430.918950px;}
.x2a_c00294{left:444.598530px;}
.x22_c00294{left:453.238770px;}
.x1a_c00294{left:459.718500px;}
.x6_c00294{left:467.279250px;}
.x1b_c00294{left:470.878320px;}
.x23_c00294{left:473.759085px;}
.x7_c00294{left:487.438665px;}
.x1c_c00294{left:489.239820px;}
.x11_c00294{left:493.199850px;}
.x12_c00294{left:513.718500px;}
.x1d_c00294{left:527.759085px;}
.x15_c00294{left:534.958920px;}
.x1e_c00294{left:541.438620px;}
.x16_c00294{left:548.999400px;}
.x13_c00294{left:557.998950px;}
.x2f_c00294{left:563.758530px;}
.x14_c00294{left:572.759535px;}
.x30_c00294{left:591.119385px;}
.x25_c00294{left:597.599070px;}
.x4_c00294{left:608.399820px;}
.x26_c00294{left:622.079400px;}
.x5_c00294{left:627.838950px;}
.x3d_c00294{left:633.959385px;}
.xe_c00294{left:648.359250px;}
.x3e_c00294{left:650.519670px;}
.x1f_c00294{left:654.118785px;}
.xf_c00294{left:662.759085px;}
.x20_c00294{left:665.998950px;}
.x27_c00294{left:669.958920px;}
.x28_c00294{left:682.918350px;}
.x17_c00294{left:705.599070px;}
.x2b_c00294{left:731.519670px;}
.x2c_c00294{left:764.999355px;}
.xc_c00294{left:767.159820px;}
.x24_c00294{left:770.038965px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls1b_c00294{letter-spacing:-12.432000pt;}
.ls17_c00294{letter-spacing:-11.585513pt;}
.lsc_c00294{letter-spacing:-11.277933pt;}
.ls1a_c00294{letter-spacing:-10.961067pt;}
.lsf_c00294{letter-spacing:-10.867827pt;}
.ls22_c00294{letter-spacing:-9.820540pt;}
.ls13_c00294{letter-spacing:-8.670867pt;}
.ls10_c00294{letter-spacing:-7.924000pt;}
.ls15_c00294{letter-spacing:-7.266700pt;}
.ls19_c00294{letter-spacing:-6.758000pt;}
.ls12_c00294{letter-spacing:-6.601000pt;}
.lse_c00294{letter-spacing:-5.943000pt;}
.ls23_c00294{letter-spacing:-5.842400pt;}
.lsb_c00294{letter-spacing:-5.285000pt;}
.ls7_c00294{letter-spacing:-4.619300pt;}
.ls1c_c00294{letter-spacing:-4.505333pt;}
.ls8_c00294{letter-spacing:-3.961300pt;}
.ls16_c00294{letter-spacing:-3.888000pt;}
.ls5_c00294{letter-spacing:-3.304000pt;}
.ls1f_c00294{letter-spacing:-2.883200pt;}
.ls18_c00294{letter-spacing:-2.641600pt;}
.ls6_c00294{letter-spacing:-2.639000pt;}
.ls11_c00294{letter-spacing:-2.616000pt;}
.ls1d_c00294{letter-spacing:-1.983067pt;}
.ls2_c00294{letter-spacing:-1.981700pt;}
.ls21_c00294{letter-spacing:-1.979600pt;}
.ls20_c00294{letter-spacing:-1.533467pt;}
.ls3_c00294{letter-spacing:-1.323700pt;}
.ls9_c00294{letter-spacing:-0.658000pt;}
.ls4_c00294{letter-spacing:0.000000pt;}
.ls1e_c00294{letter-spacing:0.799200pt;}
.lsd_c00294{letter-spacing:1.400800pt;}
.ls1_c00294{letter-spacing:1.981700pt;}
.ls14_c00294{letter-spacing:2.060400pt;}
.ls0_c00294{letter-spacing:2.639000pt;}
.lsa_c00294{letter-spacing:3.330000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
._1a_c00294{margin-left:-19.259219pt;}
._19_c00294{margin-left:-16.689453pt;}
._1b_c00294{margin-left:-8.572874pt;}
._18_c00294{margin-left:-7.205998pt;}
._17_c00294{margin-left:-5.853440pt;}
._16_c00294{margin-left:-4.037164pt;}
._d_c00294{margin-left:-2.463551pt;}
._14_c00294{margin-left:-1.070221pt;}
._9_c00294{width:0.981017pt;}
._a_c00294{width:2.591070pt;}
._12_c00294{width:3.738700pt;}
._e_c00294{width:5.198253pt;}
._8_c00294{width:6.264815pt;}
._b_c00294{width:7.619236pt;}
._10_c00294{width:8.799106pt;}
._c_c00294{width:10.395238pt;}
._f_c00294{width:11.416762pt;}
._13_c00294{width:12.385245pt;}
._7_c00294{width:13.421483pt;}
._3_c00294{width:14.420158pt;}
._11_c00294{width:15.407449pt;}
._15_c00294{width:17.043626pt;}
._1_c00294{width:18.728302pt;}
._1c_c00294{width:19.870808pt;}
._0_c00294{width:21.133357pt;}
._2_c00294{width:23.139543pt;}
._5_c00294{width:24.908562pt;}
._6_c00294{width:28.097683pt;}
._4_c00294{width:32.148372pt;}
.fse_c00294{font-size:62.666667pt;}
.fsc_c00294{font-size:64.666667pt;}
.fs10_c00294{font-size:67.333333pt;}
.fs8_c00294{font-size:68.000000pt;}
.fs4_c00294{font-size:68.666667pt;}
.fsd_c00294{font-size:69.333333pt;}
.fs0_c00294{font-size:70.000000pt;}
.fs5_c00294{font-size:70.666667pt;}
.fs7_c00294{font-size:71.333333pt;}
.fsb_c00294{font-size:72.000000pt;}
.fs6_c00294{font-size:72.666667pt;}
.fs2_c00294{font-size:73.333333pt;}
.fsf_c00294{font-size:74.000000pt;}
.fs9_c00294{font-size:74.666667pt;}
.fs3_c00294{font-size:75.333333pt;}
.fs1_c00294{font-size:90.000000pt;}
.fsa_c00294{font-size:102.666667pt;}
.y0_c00294{bottom:0.000000pt;}
.y30_c00294{bottom:175.680133pt;}
.y2f_c00294{bottom:175.680280pt;}
.y2e_c00294{bottom:201.919867pt;}
.y2d_c00294{bottom:201.920773pt;}
.y2b_c00294{bottom:228.480467pt;}
.y2c_c00294{bottom:228.480533pt;}
.y2a_c00294{bottom:255.360387pt;}
.y29_c00294{bottom:308.800800pt;}
.y28_c00294{bottom:334.400387pt;}
.y27_c00294{bottom:360.960933pt;}
.y26_c00294{bottom:360.961053pt;}
.y25_c00294{bottom:387.200640pt;}
.y23_c00294{bottom:414.080480pt;}
.y24_c00294{bottom:414.080520pt;}
.y22_c00294{bottom:440.320093pt;}
.y21_c00294{bottom:466.241107pt;}
.y20_c00294{bottom:519.360613pt;}
.y1f_c00294{bottom:538.559973pt;}
.y1e_c00294{bottom:538.560267pt;}
.y1d_c00294{bottom:557.761227pt;}
.y1b_c00294{bottom:594.879413pt;}
.y1c_c00294{bottom:594.880373pt;}
.y1a_c00294{bottom:613.760240pt;}
.y19_c00294{bottom:632.641027pt;}
.y18_c00294{bottom:632.641053pt;}
.y17_c00294{bottom:651.519973pt;}
.y15_c00294{bottom:689.280440pt;}
.y16_c00294{bottom:689.280760pt;}
.y14_c00294{bottom:708.801573pt;}
.y13_c00294{bottom:728.321107pt;}
.y12_c00294{bottom:746.879880pt;}
.y11_c00294{bottom:746.880040pt;}
.y10_c00294{bottom:784.959960pt;}
.yf_c00294{bottom:784.960547pt;}
.ye_c00294{bottom:803.520920pt;}
.yd_c00294{bottom:822.080480pt;}
.yc_c00294{bottom:840.961280pt;}
.yb_c00294{bottom:860.160640pt;}
.ya_c00294{bottom:879.360347pt;}
.y9_c00294{bottom:879.360640pt;}
.y8_c00294{bottom:916.800213pt;}
.y7_c00294{bottom:916.800640pt;}
.y5_c00294{bottom:935.999120pt;}
.y6_c00294{bottom:936.000000pt;}
.y4_c00294{bottom:973.760747pt;}
.y3_c00294{bottom:973.761333pt;}
.y2_c00294{bottom:992.960720pt;}
.y1_c00294{bottom:1012.160080pt;}
.h13_c00294{height:65.359375pt;}
.h18_c00294{height:66.051107pt;}
.h9_c00294{height:66.738281pt;}
.h5_c00294{height:67.392578pt;}
.he_c00294{height:67.445312pt;}
.h11_c00294{height:68.046875pt;}
.h1_c00294{height:68.701172pt;}
.h15_c00294{height:69.179688pt;}
.h6_c00294{height:69.838542pt;}
.h8_c00294{height:70.009766pt;}
.hc_c00294{height:70.664062pt;}
.h17_c00294{height:71.218750pt;}
.h7_c00294{height:71.318359pt;}
.h12_c00294{height:71.815104pt;}
.h10_c00294{height:71.972656pt;}
.h3_c00294{height:72.473958pt;}
.h16_c00294{height:72.626953pt;}
.hd_c00294{height:73.007812pt;}
.h14_c00294{height:73.791667pt;}
.h4_c00294{height:73.935547pt;}
.hf_c00294{height:74.450521pt;}
.ha_c00294{height:77.875000pt;}
.h2_c00294{height:93.867188pt;}
.hb_c00294{height:107.078125pt;}
.h0_c00294{height:1122.666667pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x37_c00294{left:122.239720pt;}
.x21_c00294{left:123.837787pt;}
.x19_c00294{left:172.477880pt;}
.x2_c00294{left:173.435707pt;}
.x3_c00294{left:175.358027pt;}
.x1_c00294{left:176.318787pt;}
.x38_c00294{left:177.599067pt;}
.x31_c00294{left:190.398920pt;}
.x10_c00294{left:194.559067pt;}
.x18_c00294{left:199.359333pt;}
.xd_c00294{left:210.878920pt;}
.x32_c00294{left:229.759320pt;}
.xa_c00294{left:248.318787pt;}
.x33_c00294{left:258.238787pt;}
.x39_c00294{left:262.398920pt;}
.x3f_c00294{left:267.199200pt;}
.xb_c00294{left:276.799867pt;}
.x40_c00294{left:284.799320pt;}
.x3b_c00294{left:291.839333pt;}
.x34_c00294{left:306.238787pt;}
.x3c_c00294{left:314.879867pt;}
.x3a_c00294{left:317.759720pt;}
.x8_c00294{left:320.318787pt;}
.x35_c00294{left:325.119200pt;}
.x9_c00294{left:333.758787pt;}
.x2d_c00294{left:356.159173pt;}
.x2e_c00294{left:368.639613pt;}
.x36_c00294{left:374.078693pt;}
.x29_c00294{left:383.039067pt;}
.x2a_c00294{left:395.198693pt;}
.x22_c00294{left:402.878907pt;}
.x1a_c00294{left:408.638667pt;}
.x6_c00294{left:415.359333pt;}
.x1b_c00294{left:418.558507pt;}
.x23_c00294{left:421.119187pt;}
.x7_c00294{left:433.278813pt;}
.x1c_c00294{left:434.879840pt;}
.x11_c00294{left:438.399867pt;}
.x12_c00294{left:456.638667pt;}
.x1d_c00294{left:469.119187pt;}
.x15_c00294{left:475.519040pt;}
.x1e_c00294{left:481.278773pt;}
.x16_c00294{left:487.999467pt;}
.x13_c00294{left:495.999067pt;}
.x2f_c00294{left:501.118693pt;}
.x14_c00294{left:509.119587pt;}
.x30_c00294{left:525.439453pt;}
.x25_c00294{left:531.199173pt;}
.x4_c00294{left:540.799840pt;}
.x26_c00294{left:552.959467pt;}
.x5_c00294{left:558.079067pt;}
.x3d_c00294{left:563.519453pt;}
.xe_c00294{left:576.319333pt;}
.x3e_c00294{left:578.239707pt;}
.x1f_c00294{left:581.438920pt;}
.xf_c00294{left:589.119187pt;}
.x20_c00294{left:591.999067pt;}
.x27_c00294{left:595.519040pt;}
.x28_c00294{left:607.038533pt;}
.x17_c00294{left:627.199173pt;}
.x2b_c00294{left:650.239707pt;}
.x2c_c00294{left:679.999427pt;}
.xc_c00294{left:681.919840pt;}
.x24_c00294{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43c1437d631b1096bd767c79.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_facfdb46f9943c7ec8a019a3.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.364746;font-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_c00295{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls15_c00295{letter-spacing:-15.287250px;}
.ls7_c00295{letter-spacing:-12.803018px;}
.ls8_c00295{letter-spacing:-8.914500px;}
.ls13_c00295{letter-spacing:-7.426125px;}
.lsd_c00295{letter-spacing:-6.685875px;}
.lsb_c00295{letter-spacing:-6.051443px;}
.lsf_c00295{letter-spacing:-6.000300px;}
.ls6_c00295{letter-spacing:-5.945625px;}
.lse_c00295{letter-spacing:-5.300663px;}
.lsc_c00295{letter-spacing:-5.196713px;}
.ls11_c00295{letter-spacing:-4.921875px;}
.ls5_c00295{letter-spacing:-4.456463px;}
.ls4_c00295{letter-spacing:-3.717000px;}
.ls3_c00295{letter-spacing:-2.968875px;}
.ls1_c00295{letter-spacing:-2.229413px;}
.ls9_c00295{letter-spacing:-1.489163px;}
.ls2_c00295{letter-spacing:-0.740250px;}
.lsa_c00295{letter-spacing:0.000000px;}
.ls10_c00295{letter-spacing:1.513200px;}
.ls14_c00295{letter-spacing:3.637710px;}
.ls12_c00295{letter-spacing:5.443620px;}
.ls0_c00295{letter-spacing:5.945625px;}
.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;}
._18_c00295{margin-left:-12.989114px;}
._e_c00295{margin-left:-7.034054px;}
._c_c00295{margin-left:-5.503139px;}
._d_c00295{margin-left:-3.496173px;}
._15_c00295{margin-left:-1.250312px;}
._16_c00295{width:1.263670px;}
._1_c00295{width:2.338548px;}
._19_c00295{width:3.403649px;}
._6_c00295{width:4.409777px;}
._10_c00295{width:6.369018px;}
._5_c00295{width:7.842014px;}
._3_c00295{width:9.024245px;}
._0_c00295{width:10.432800px;}
._12_c00295{width:11.622965px;}
._2_c00295{width:12.969011px;}
._4_c00295{width:14.492853px;}
._f_c00295{width:15.537583px;}
._13_c00295{width:18.937176px;}
._8_c00295{width:20.005992px;}
._9_c00295{width:21.375826px;}
._a_c00295{width:22.807144px;}
._11_c00295{width:26.200675px;}
._14_c00295{width:28.644718px;}
._7_c00295{width:31.129667px;}
._17_c00295{width:34.339621px;}
._b_c00295{width:40.835129px;}
._1a_c00295{width:49.641608px;}
.fc0_c00295{color:transparent;}
.fs4_c00295{font-size:72.750000px;}
.fs5_c00295{font-size:78.000000px;}
.fs0_c00295{font-size:78.750000px;}
.fs6_c00295{font-size:80.250000px;}
.fs7_c00295{font-size:81.000000px;}
.fs9_c00295{font-size:81.750000px;}
.fs2_c00295{font-size:82.500000px;}
.fs1_c00295{font-size:83.250000px;}
.fs3_c00295{font-size:84.750000px;}
.fs8_c00295{font-size:85.500000px;}
.y0_c00295{bottom:0.000000px;}
.y1b_c00295{bottom:573.118995px;}
.y1c_c00295{bottom:573.120435px;}
.y1a_c00295{bottom:603.358905px;}
.y19_c00295{bottom:632.520060px;}
.y18_c00295{bottom:662.399775px;}
.y17_c00295{bottom:692.639700px;}
.y16_c00295{bottom:692.639805px;}
.y15_c00295{bottom:722.519535px;}
.y14_c00295{bottom:781.920600px;}
.y12_c00295{bottom:812.159640px;}
.y13_c00295{bottom:812.160465px;}
.y11_c00295{bottom:842.039355px;}
.yf_c00295{bottom:871.559940px;}
.y10_c00295{bottom:871.560705px;}
.ye_c00295{bottom:901.439670px;}
.yd_c00295{bottom:901.439850px;}
.yc_c00295{bottom:930.959385px;}
.yb_c00295{bottom:961.199340px;}
.ya_c00295{bottom:961.200240px;}
.y9_c00295{bottom:991.079955px;}
.y8_c00295{bottom:991.080090px;}
.y7_c00295{bottom:1021.320000px;}
.y6_c00295{bottom:1050.839535px;}
.y5_c00295{bottom:1050.841230px;}
.y4_c00295{bottom:1080.720960px;}
.y2_c00295{bottom:1110.600630px;}
.y3_c00295{bottom:1110.600675px;}
.y1_c00295{bottom:1140.840540px;}
.h6_c00295{height:71.400146px;}
.h7_c00295{height:76.552734px;}
.h1_c00295{height:77.288818px;}
.h8_c00295{height:78.760986px;}
.h9_c00295{height:79.497070px;}
.hb_c00295{height:80.233154px;}
.h4_c00295{height:80.969238px;}
.h3_c00295{height:81.705322px;}
.h2_c00295{height:82.274414px;}
.h5_c00295{height:83.177490px;}
.ha_c00295{height:84.498047px;}
.h0_c00295{height:1263.000000px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x14_c00295{left:142.200240px;}
.x1_c00295{left:143.279250px;}
.x19_c00295{left:204.120000px;}
.x1a_c00295{left:230.038950px;}
.x4_c00295{left:257.399850px;}
.x5_c00295{left:278.999385px;}
.xd_c00295{left:302.759535px;}
.xe_c00295{left:327.599100px;}
.x8_c00295{left:368.998950px;}
.x15_c00295{left:374.040000px;}
.x9_c00295{left:399.238770px;}
.x16_c00295{left:400.679070px;}
.x17_c00295{left:452.879520px;}
.x18_c00295{left:482.399235px;}
.x12_c00295{left:520.918350px;}
.xf_c00295{left:528.479235px;}
.x13_c00295{left:535.319820px;}
.x2_c00295{left:560.518620px;}
.x3_c00295{left:585.359850px;}
.x10_c00295{left:617.758530px;}
.x11_c00295{left:638.639700px;}
.xb_c00295{left:659.159820px;}
.xc_c00295{left:686.519070px;}
.x6_c00295{left:755.639100px;}
.xa_c00295{left:768.598575px;}
.x7_c00295{left:770.038965px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls15_c00295{letter-spacing:-13.588667pt;}
.ls7_c00295{letter-spacing:-11.380460pt;}
.ls8_c00295{letter-spacing:-7.924000pt;}
.ls13_c00295{letter-spacing:-6.601000pt;}
.lsd_c00295{letter-spacing:-5.943000pt;}
.lsb_c00295{letter-spacing:-5.379060pt;}
.lsf_c00295{letter-spacing:-5.333600pt;}
.ls6_c00295{letter-spacing:-5.285000pt;}
.lse_c00295{letter-spacing:-4.711700pt;}
.lsc_c00295{letter-spacing:-4.619300pt;}
.ls11_c00295{letter-spacing:-4.375000pt;}
.ls5_c00295{letter-spacing:-3.961300pt;}
.ls4_c00295{letter-spacing:-3.304000pt;}
.ls3_c00295{letter-spacing:-2.639000pt;}
.ls1_c00295{letter-spacing:-1.981700pt;}
.ls9_c00295{letter-spacing:-1.323700pt;}
.ls2_c00295{letter-spacing:-0.658000pt;}
.lsa_c00295{letter-spacing:0.000000pt;}
.ls10_c00295{letter-spacing:1.345067pt;}
.ls14_c00295{letter-spacing:3.233520pt;}
.ls12_c00295{letter-spacing:4.838773pt;}
.ls0_c00295{letter-spacing:5.285000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
._18_c00295{margin-left:-11.545879pt;}
._e_c00295{margin-left:-6.252492pt;}
._c_c00295{margin-left:-4.891679pt;}
._d_c00295{margin-left:-3.107709pt;}
._15_c00295{margin-left:-1.111389pt;}
._16_c00295{width:1.123262pt;}
._1_c00295{width:2.078709pt;}
._19_c00295{width:3.025466pt;}
._6_c00295{width:3.919802pt;}
._10_c00295{width:5.661349pt;}
._5_c00295{width:6.970679pt;}
._3_c00295{width:8.021551pt;}
._0_c00295{width:9.273600pt;}
._12_c00295{width:10.331525pt;}
._2_c00295{width:11.528009pt;}
._4_c00295{width:12.882536pt;}
._f_c00295{width:13.811185pt;}
._13_c00295{width:16.833045pt;}
._8_c00295{width:17.783104pt;}
._9_c00295{width:19.000734pt;}
._a_c00295{width:20.273017pt;}
._11_c00295{width:23.289489pt;}
._14_c00295{width:25.461972pt;}
._7_c00295{width:27.670815pt;}
._17_c00295{width:30.524108pt;}
._b_c00295{width:36.297892pt;}
._1a_c00295{width:44.125874pt;}
.fs4_c00295{font-size:64.666667pt;}
.fs5_c00295{font-size:69.333333pt;}
.fs0_c00295{font-size:70.000000pt;}
.fs6_c00295{font-size:71.333333pt;}
.fs7_c00295{font-size:72.000000pt;}
.fs9_c00295{font-size:72.666667pt;}
.fs2_c00295{font-size:73.333333pt;}
.fs1_c00295{font-size:74.000000pt;}
.fs3_c00295{font-size:75.333333pt;}
.fs8_c00295{font-size:76.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y1b_c00295{bottom:509.439107pt;}
.y1c_c00295{bottom:509.440387pt;}
.y1a_c00295{bottom:536.319027pt;}
.y19_c00295{bottom:562.240053pt;}
.y18_c00295{bottom:588.799800pt;}
.y17_c00295{bottom:615.679733pt;}
.y16_c00295{bottom:615.679827pt;}
.y15_c00295{bottom:642.239587pt;}
.y14_c00295{bottom:695.040533pt;}
.y12_c00295{bottom:721.919680pt;}
.y13_c00295{bottom:721.920413pt;}
.y11_c00295{bottom:748.479427pt;}
.yf_c00295{bottom:774.719947pt;}
.y10_c00295{bottom:774.720627pt;}
.ye_c00295{bottom:801.279707pt;}
.yd_c00295{bottom:801.279867pt;}
.yc_c00295{bottom:827.519453pt;}
.yb_c00295{bottom:854.399413pt;}
.ya_c00295{bottom:854.400213pt;}
.y9_c00295{bottom:880.959960pt;}
.y8_c00295{bottom:880.960080pt;}
.y7_c00295{bottom:907.840000pt;}
.y6_c00295{bottom:934.079587pt;}
.y5_c00295{bottom:934.081093pt;}
.y4_c00295{bottom:960.640853pt;}
.y2_c00295{bottom:987.200560pt;}
.y3_c00295{bottom:987.200600pt;}
.y1_c00295{bottom:1014.080480pt;}
.h6_c00295{height:63.466797pt;}
.h7_c00295{height:68.046875pt;}
.h1_c00295{height:68.701172pt;}
.h8_c00295{height:70.009766pt;}
.h9_c00295{height:70.664062pt;}
.hb_c00295{height:71.318359pt;}
.h4_c00295{height:71.972656pt;}
.h3_c00295{height:72.626953pt;}
.h2_c00295{height:73.132813pt;}
.h5_c00295{height:73.935547pt;}
.ha_c00295{height:75.109375pt;}
.h0_c00295{height:1122.666667pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x14_c00295{left:126.400213pt;}
.x1_c00295{left:127.359333pt;}
.x19_c00295{left:181.440000pt;}
.x1a_c00295{left:204.479067pt;}
.x4_c00295{left:228.799867pt;}
.x5_c00295{left:247.999453pt;}
.xd_c00295{left:269.119587pt;}
.xe_c00295{left:291.199200pt;}
.x8_c00295{left:327.999067pt;}
.x15_c00295{left:332.480000pt;}
.x9_c00295{left:354.878907pt;}
.x16_c00295{left:356.159173pt;}
.x17_c00295{left:402.559573pt;}
.x18_c00295{left:428.799320pt;}
.x12_c00295{left:463.038533pt;}
.xf_c00295{left:469.759320pt;}
.x13_c00295{left:475.839840pt;}
.x2_c00295{left:498.238773pt;}
.x3_c00295{left:520.319867pt;}
.x10_c00295{left:549.118693pt;}
.x11_c00295{left:567.679733pt;}
.xb_c00295{left:585.919840pt;}
.xc_c00295{left:610.239173pt;}
.x6_c00295{left:671.679200pt;}
.xa_c00295{left:683.198733pt;}
.x7_c00295{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc602a343ca54b80843aa418.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_032e52fae9648bf0ae66683b.woff2')format("woff");}.ff2_c00296{font-family:ff2_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:ff3_c00296;src:url('chunks/assets/font_4465e3fff792606e0c0a9d16.woff2')format("woff");}.ff3_c00296{font-family:ff3_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:ff4_c00296;src:url('chunks/assets/font_6635321deaacc25e10f2c08d.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_efdc735b6114c2a962e679c0.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.364746;font-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_c00296{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070513,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.134690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134690,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.v1_c00296{vertical-align:-1.433520px;}
.v0_c00296{vertical-align:0.000000px;}
.ls16_c00296{letter-spacing:-16.025400px;}
.ls18_c00296{letter-spacing:-6.685875px;}
.ls14_c00296{letter-spacing:-5.945625px;}
.ls3_c00296{letter-spacing:-5.548350px;}
.ls10_c00296{letter-spacing:-5.196713px;}
.ls15_c00296{letter-spacing:-5.109375px;}
.lsc_c00296{letter-spacing:-4.456463px;}
.ls0_c00296{letter-spacing:-3.784995px;}
.lse_c00296{letter-spacing:-3.717000px;}
.ls2_c00296{letter-spacing:-3.057525px;}
.ls7_c00296{letter-spacing:-2.968875px;}
.ls9_c00296{letter-spacing:-2.945250px;}
.ls5_c00296{letter-spacing:-2.294348px;}
.ls11_c00296{letter-spacing:-2.247975px;}
.ls8_c00296{letter-spacing:-2.229413px;}
.ls1_c00296{letter-spacing:-1.510500px;}
.ls13_c00296{letter-spacing:-1.489163px;}
.ls6_c00296{letter-spacing:-1.483200px;}
.ls4_c00296{letter-spacing:-0.763178px;}
.lsf_c00296{letter-spacing:-0.740250px;}
.lsa_c00296{letter-spacing:0.000000px;}
.lsd_c00296{letter-spacing:1.123785px;}
.ls17_c00296{letter-spacing:3.570345px;}
.ls12_c00296{letter-spacing:4.503675px;}
.lsb_c00296{letter-spacing:5.252228px;}
.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;}
._d_c00296{margin-left:-3.854857px;}
._c_c00296{margin-left:-2.792980px;}
._2_c00296{margin-left:-1.596662px;}
._e_c00296{width:1.306314px;}
._5_c00296{width:2.522214px;}
._7_c00296{width:3.955761px;}
._4_c00296{width:5.373677px;}
._6_c00296{width:7.284583px;}
._9_c00296{width:8.660895px;}
._8_c00296{width:9.919707px;}
._0_c00296{width:10.992465px;}
._a_c00296{width:12.508828px;}
._13_c00296{width:13.692158px;}
._b_c00296{width:14.804881px;}
._15_c00296{width:17.512167px;}
._f_c00296{width:18.706052px;}
._14_c00296{width:21.873704px;}
._12_c00296{width:22.881170px;}
._10_c00296{width:23.971559px;}
._1_c00296{width:26.710112px;}
._11_c00296{width:29.907036px;}
._3_c00296{width:911.263381px;}
.fc0_c00296{color:transparent;}
.fs8_c00296{font-size:58.500000px;}
.fs2_c00296{font-size:70.500000px;}
.fs6_c00296{font-size:76.500000px;}
.fs3_c00296{font-size:77.250000px;}
.fs4_c00296{font-size:78.750000px;}
.fs0_c00296{font-size:79.500000px;}
.fs1_c00296{font-size:80.250000px;}
.fsc_c00296{font-size:81.750000px;}
.fsb_c00296{font-size:82.500000px;}
.fsd_c00296{font-size:87.000000px;}
.fsa_c00296{font-size:96.000000px;}
.fs7_c00296{font-size:117.000000px;}
.fs9_c00296{font-size:177.000000px;}
.fs5_c00296{font-size:193.500000px;}
.y0_c00296{bottom:0.000000px;}
.y22_c00296{bottom:185.400120px;}
.y21_c00296{bottom:215.279850px;}
.y20_c00296{bottom:215.280000px;}
.y1f_c00296{bottom:244.799535px;}
.y1e_c00296{bottom:244.799880px;}
.y1d_c00296{bottom:274.319415px;}
.y1c_c00296{bottom:303.838950px;}
.y1b_c00296{bottom:334.439010px;}
.y1a_c00296{bottom:363.600150px;}
.y19_c00296{bottom:393.840135px;}
.y18_c00296{bottom:393.840405px;}
.y16_c00296{bottom:483.119070px;}
.y17_c00296{bottom:483.119385px;}
.y15_c00296{bottom:601.920000px;}
.y14_c00296{bottom:601.920120px;}
.y13_c00296{bottom:671.399235px;}
.y11_c00296{bottom:700.918950px;}
.y10_c00296{bottom:712.079160px;}
.y12_c00296{bottom:712.439670px;}
.yf_c00296{bottom:741.239220px;}
.yd_c00296{bottom:752.398665px;}
.ye_c00296{bottom:752.399235px;}
.yc_c00296{bottom:792.718755px;}
.yb_c00296{bottom:832.678350px;}
.ya_c00296{bottom:873.358605px;}
.y9_c00296{bottom:902.519070px;}
.y8_c00296{bottom:914.399235px;}
.y7_c00296{bottom:942.839535px;}
.y6_c00296{bottom:954.719520px;}
.y5_c00296{bottom:994.320870px;}
.y4_c00296{bottom:1024.198785px;}
.y2_c00296{bottom:1094.038335px;}
.y3_c00296{bottom:1094.038875px;}
.y1_c00296{bottom:1124.639655px;}
.h9_c00296{height:61.013672px;}
.h3_c00296{height:73.529297px;}
.h7_c00296{height:75.080566px;}
.h5_c00296{height:77.288818px;}
.h4_c00296{height:77.853516px;}
.h10_c00296{height:78.024902px;}
.he_c00296{height:78.760986px;}
.h1_c00296{height:80.121094px;}
.hd_c00296{height:80.233154px;}
.h2_c00296{height:80.876953px;}
.hc_c00296{height:80.969238px;}
.hf_c00296{height:85.980469px;}
.hb_c00296{height:100.125000px;}
.h8_c00296{height:122.027344px;}
.ha_c00296{height:184.605469px;}
.h6_c00296{height:201.814453px;}
.h0_c00296{height:1263.000000px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x10_c00296{left:140.040435px;}
.x14_c00296{left:159.839565px;}
.x17_c00296{left:215.279850px;}
.x11_c00296{left:221.759535px;}
.x15_c00296{left:251.279250px;}
.x16_c00296{left:265.679100px;}
.xc_c00296{left:289.080855px;}
.x1_c00296{left:291.238785px;}
.x12_c00296{left:335.159850px;}
.x13_c00296{left:348.478635px;}
.x7_c00296{left:364.679700px;}
.x2_c00296{left:379.438635px;}
.x5_c00296{left:387.719565px;}
.xd_c00296{left:422.998950px;}
.x1a_c00296{left:433.799565px;}
.xe_c00296{left:435.599070px;}
.x1b_c00296{left:447.838530px;}
.xf_c00296{left:476.278800px;}
.x3_c00296{left:517.678530px;}
.x8_c00296{left:551.878320px;}
.x6_c00296{left:568.799655px;}
.x4_c00296{left:569.878920px;}
.xa_c00296{left:613.439250px;}
.xb_c00296{left:620.279850px;}
.x9_c00296{left:621.359250px;}
.x18_c00296{left:679.678530px;}
.x1c_c00296{left:686.159820px;}
.x1d_c00296{left:699.839535px;}
.x19_c00296{left:705.599070px;}
@media print{
.v1_c00296{vertical-align:-1.274240pt;}
.v0_c00296{vertical-align:0.000000pt;}
.ls16_c00296{letter-spacing:-14.244800pt;}
.ls18_c00296{letter-spacing:-5.943000pt;}
.ls14_c00296{letter-spacing:-5.285000pt;}
.ls3_c00296{letter-spacing:-4.931867pt;}
.ls10_c00296{letter-spacing:-4.619300pt;}
.ls15_c00296{letter-spacing:-4.541667pt;}
.lsc_c00296{letter-spacing:-3.961300pt;}
.ls0_c00296{letter-spacing:-3.364440pt;}
.lse_c00296{letter-spacing:-3.304000pt;}
.ls2_c00296{letter-spacing:-2.717800pt;}
.ls7_c00296{letter-spacing:-2.639000pt;}
.ls9_c00296{letter-spacing:-2.618000pt;}
.ls5_c00296{letter-spacing:-2.039420pt;}
.ls11_c00296{letter-spacing:-1.998200pt;}
.ls8_c00296{letter-spacing:-1.981700pt;}
.ls1_c00296{letter-spacing:-1.342667pt;}
.ls13_c00296{letter-spacing:-1.323700pt;}
.ls6_c00296{letter-spacing:-1.318400pt;}
.ls4_c00296{letter-spacing:-0.678380pt;}
.lsf_c00296{letter-spacing:-0.658000pt;}
.lsa_c00296{letter-spacing:0.000000pt;}
.lsd_c00296{letter-spacing:0.998920pt;}
.ls17_c00296{letter-spacing:3.173640pt;}
.ls12_c00296{letter-spacing:4.003267pt;}
.lsb_c00296{letter-spacing:4.668647pt;}
.ws0_c00296{word-spacing:0.000000pt;}
._d_c00296{margin-left:-3.426540pt;}
._c_c00296{margin-left:-2.482649pt;}
._2_c00296{margin-left:-1.419255pt;}
._e_c00296{width:1.161168pt;}
._5_c00296{width:2.241968pt;}
._7_c00296{width:3.516232pt;}
._4_c00296{width:4.776602pt;}
._6_c00296{width:6.475185pt;}
._9_c00296{width:7.698574pt;}
._8_c00296{width:8.817517pt;}
._0_c00296{width:9.771080pt;}
._a_c00296{width:11.118958pt;}
._13_c00296{width:12.170808pt;}
._b_c00296{width:13.159894pt;}
._15_c00296{width:15.566371pt;}
._f_c00296{width:16.627602pt;}
._14_c00296{width:19.443292pt;}
._12_c00296{width:20.338818pt;}
._10_c00296{width:21.308053pt;}
._1_c00296{width:23.742322pt;}
._11_c00296{width:26.584032pt;}
._3_c00296{width:810.011894pt;}
.fs8_c00296{font-size:52.000000pt;}
.fs2_c00296{font-size:62.666667pt;}
.fs6_c00296{font-size:68.000000pt;}
.fs3_c00296{font-size:68.666667pt;}
.fs4_c00296{font-size:70.000000pt;}
.fs0_c00296{font-size:70.666667pt;}
.fs1_c00296{font-size:71.333333pt;}
.fsc_c00296{font-size:72.666667pt;}
.fsb_c00296{font-size:73.333333pt;}
.fsd_c00296{font-size:77.333333pt;}
.fsa_c00296{font-size:85.333333pt;}
.fs7_c00296{font-size:104.000000pt;}
.fs9_c00296{font-size:157.333333pt;}
.fs5_c00296{font-size:172.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y22_c00296{bottom:164.800107pt;}
.y21_c00296{bottom:191.359867pt;}
.y20_c00296{bottom:191.360000pt;}
.y1f_c00296{bottom:217.599587pt;}
.y1e_c00296{bottom:217.599893pt;}
.y1d_c00296{bottom:243.839480pt;}
.y1c_c00296{bottom:270.079067pt;}
.y1b_c00296{bottom:297.279120pt;}
.y1a_c00296{bottom:323.200133pt;}
.y19_c00296{bottom:350.080120pt;}
.y18_c00296{bottom:350.080360pt;}
.y16_c00296{bottom:429.439173pt;}
.y17_c00296{bottom:429.439453pt;}
.y15_c00296{bottom:535.040000pt;}
.y14_c00296{bottom:535.040107pt;}
.y13_c00296{bottom:596.799320pt;}
.y11_c00296{bottom:623.039067pt;}
.y10_c00296{bottom:632.959253pt;}
.y12_c00296{bottom:633.279707pt;}
.yf_c00296{bottom:658.879307pt;}
.yd_c00296{bottom:668.798813pt;}
.ye_c00296{bottom:668.799320pt;}
.yc_c00296{bottom:704.638893pt;}
.yb_c00296{bottom:740.158533pt;}
.ya_c00296{bottom:776.318760pt;}
.y9_c00296{bottom:802.239173pt;}
.y8_c00296{bottom:812.799320pt;}
.y7_c00296{bottom:838.079587pt;}
.y6_c00296{bottom:848.639573pt;}
.y5_c00296{bottom:883.840773pt;}
.y4_c00296{bottom:910.398920pt;}
.y2_c00296{bottom:972.478520pt;}
.y3_c00296{bottom:972.479000pt;}
.y1_c00296{bottom:999.679693pt;}
.h9_c00296{height:54.234375pt;}
.h3_c00296{height:65.359375pt;}
.h7_c00296{height:66.738281pt;}
.h5_c00296{height:68.701172pt;}
.h4_c00296{height:69.203125pt;}
.h10_c00296{height:69.355469pt;}
.he_c00296{height:70.009766pt;}
.h1_c00296{height:71.218750pt;}
.hd_c00296{height:71.318359pt;}
.h2_c00296{height:71.890625pt;}
.hc_c00296{height:71.972656pt;}
.hf_c00296{height:76.427083pt;}
.hb_c00296{height:89.000000pt;}
.h8_c00296{height:108.468750pt;}
.ha_c00296{height:164.093750pt;}
.h6_c00296{height:179.390625pt;}
.h0_c00296{height:1122.666667pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x10_c00296{left:124.480387pt;}
.x14_c00296{left:142.079613pt;}
.x17_c00296{left:191.359867pt;}
.x11_c00296{left:197.119587pt;}
.x15_c00296{left:223.359333pt;}
.x16_c00296{left:236.159200pt;}
.xc_c00296{left:256.960760pt;}
.x1_c00296{left:258.878920pt;}
.x12_c00296{left:297.919867pt;}
.x13_c00296{left:309.758787pt;}
.x7_c00296{left:324.159733pt;}
.x2_c00296{left:337.278787pt;}
.x5_c00296{left:344.639613pt;}
.xd_c00296{left:375.999067pt;}
.x1a_c00296{left:385.599613pt;}
.xe_c00296{left:387.199173pt;}
.x1b_c00296{left:398.078693pt;}
.xf_c00296{left:423.358933pt;}
.x3_c00296{left:460.158693pt;}
.x8_c00296{left:490.558507pt;}
.x6_c00296{left:505.599693pt;}
.x4_c00296{left:506.559040pt;}
.xa_c00296{left:545.279333pt;}
.xb_c00296{left:551.359867pt;}
.x9_c00296{left:552.319333pt;}
.x18_c00296{left:604.158693pt;}
.x1c_c00296{left:609.919840pt;}
.x1d_c00296{left:622.079587pt;}
.x19_c00296{left:627.199173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7edc28fefca84a98b80723e7.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_d6570d5f91aaf499c49678d6.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;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_839a5e73ffc57a70b3e54ed6.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_a4149ecbd3e094ed1557dc6c.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_1720fa47f750978b61d5b51b.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00297;src:url('chunks/assets/font_fc901ac1c87f75010c51bc09.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00297;src:url('chunks/assets/font_37e5776cf4ce4024b130c899.woff2')format("woff");}.ff7_c00297{font-family:ff7_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00297;src:url('chunks/assets/font_0a4ffa6b528a378ca716e96b.woff2')format("woff");}.ff8_c00297{font-family:ff8_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00297{transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{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_c00297{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{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);}
.m34_c00297{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00297{transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00297{transform:matrix(0.324561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324561,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{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);}
.m17_c00297{transform:matrix(0.383621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383621,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.398148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398148,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.513158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513158,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.825758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825758,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.992188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992188,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(1.488636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.488636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.488636,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls2f_c00297{letter-spacing:-13.490828px;}
.ls10_c00297{letter-spacing:-9.082425px;}
.ls29_c00297{letter-spacing:-8.914500px;}
.ls26_c00297{letter-spacing:-8.400150px;}
.lsb_c00297{letter-spacing:-8.325240px;}
.ls27_c00297{letter-spacing:-8.175038px;}
.ls20_c00297{letter-spacing:-7.426125px;}
.lsf_c00297{letter-spacing:-6.809850px;}
.ls12_c00297{letter-spacing:-6.685875px;}
.ls30_c00297{letter-spacing:-6.452100px;}
.ls18_c00297{letter-spacing:-5.956050px;}
.ls9_c00297{letter-spacing:-5.945625px;}
.ls13_c00297{letter-spacing:-5.835375px;}
.ls21_c00297{letter-spacing:-5.480835px;}
.ls2a_c00297{letter-spacing:-5.469300px;}
.ls7_c00297{letter-spacing:-5.196713px;}
.ls16_c00297{letter-spacing:-4.792200px;}
.ls2c_c00297{letter-spacing:-4.680000px;}
.ls37_c00297{letter-spacing:-4.603500px;}
.ls11_c00297{letter-spacing:-4.456463px;}
.ls1a_c00297{letter-spacing:-4.363200px;}
.ls23_c00297{letter-spacing:-4.238325px;}
.ls15_c00297{letter-spacing:-3.823950px;}
.lsc_c00297{letter-spacing:-3.747750px;}
.ls6_c00297{letter-spacing:-3.717900px;}
.ls4_c00297{letter-spacing:-3.717000px;}
.ls34_c00297{letter-spacing:-3.685050px;}
.ls28_c00297{letter-spacing:-3.378525px;}
.ls17_c00297{letter-spacing:-3.190050px;}
.ls2_c00297{letter-spacing:-2.968875px;}
.ls35_c00297{letter-spacing:-2.953215px;}
.ls2d_c00297{letter-spacing:-2.403450px;}
.ls32_c00297{letter-spacing:-2.326500px;}
.ls2e_c00297{letter-spacing:-2.310398px;}
.ls3_c00297{letter-spacing:-2.229413px;}
.ls2b_c00297{letter-spacing:-2.121000px;}
.lsd_c00297{letter-spacing:-1.724250px;}
.ls24_c00297{letter-spacing:-1.701840px;}
.ls31_c00297{letter-spacing:-1.556048px;}
.ls1_c00297{letter-spacing:-1.489163px;}
.ls1d_c00297{letter-spacing:-1.329435px;}
.ls14_c00297{letter-spacing:-0.824175px;}
.ls8_c00297{letter-spacing:-0.740250px;}
.ls36_c00297{letter-spacing:-0.706800px;}
.lse_c00297{letter-spacing:0.000000px;}
.ls25_c00297{letter-spacing:0.125400px;}
.lsa_c00297{letter-spacing:0.825390px;}
.ls33_c00297{letter-spacing:1.500750px;}
.ls5_c00297{letter-spacing:1.881000px;}
.ls22_c00297{letter-spacing:2.232000px;}
.ls1e_c00297{letter-spacing:2.655150px;}
.ls0_c00297{letter-spacing:3.717000px;}
.ls19_c00297{letter-spacing:12.766125px;}
.ls1b_c00297{letter-spacing:13.173750px;}
.ls1f_c00297{letter-spacing:18.462000px;}
.ls1c_c00297{letter-spacing:61.031250px;}
.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;}
._22_c00297{margin-left:-17.986143px;}
._c_c00297{margin-left:-9.331400px;}
._b_c00297{margin-left:-5.708350px;}
._f_c00297{margin-left:-3.260696px;}
._d_c00297{margin-left:-1.160077px;}
._e_c00297{width:1.794594px;}
._1_c00297{width:2.988102px;}
._11_c00297{width:3.989282px;}
._5_c00297{width:5.318805px;}
._0_c00297{width:6.593856px;}
._7_c00297{width:8.477007px;}
._2_c00297{width:9.998947px;}
._3_c00297{width:11.615833px;}
._20_c00297{width:12.779119px;}
._8_c00297{width:13.941380px;}
._10_c00297{width:15.427125px;}
._6_c00297{width:16.529566px;}
._9_c00297{width:18.585565px;}
._21_c00297{width:19.624307px;}
._4_c00297{width:20.789881px;}
._a_c00297{width:22.207010px;}
._15_c00297{width:23.906435px;}
._17_c00297{width:26.490371px;}
._13_c00297{width:27.548013px;}
._23_c00297{width:28.549550px;}
._12_c00297{width:29.566435px;}
._1f_c00297{width:30.773613px;}
._14_c00297{width:33.075059px;}
._16_c00297{width:34.215107px;}
._1b_c00297{width:36.329916px;}
._1d_c00297{width:39.225405px;}
._1c_c00297{width:41.953394px;}
._1a_c00297{width:43.927255px;}
._19_c00297{width:44.942105px;}
._1e_c00297{width:49.162719px;}
._18_c00297{width:50.838689px;}
.fc0_c00297{color:transparent;}
.fs1a_c00297{font-size:16.500000px;}
.fs19_c00297{font-size:20.250000px;}
.fs18_c00297{font-size:24.000000px;}
.fs1b_c00297{font-size:24.750000px;}
.fs16_c00297{font-size:28.500000px;}
.fs15_c00297{font-size:30.000000px;}
.fs13_c00297{font-size:31.500000px;}
.fs21_c00297{font-size:33.000000px;}
.fs11_c00297{font-size:37.500000px;}
.fs17_c00297{font-size:42.750000px;}
.fs12_c00297{font-size:43.500000px;}
.fsf_c00297{font-size:44.250000px;}
.fs20_c00297{font-size:45.000000px;}
.fs14_c00297{font-size:46.500000px;}
.fs10_c00297{font-size:48.000000px;}
.fsb_c00297{font-size:60.000000px;}
.fs4_c00297{font-size:71.250000px;}
.fsd_c00297{font-size:73.500000px;}
.fs5_c00297{font-size:75.000000px;}
.fs1d_c00297{font-size:75.750000px;}
.fse_c00297{font-size:76.500000px;}
.fs1c_c00297{font-size:77.250000px;}
.fs1e_c00297{font-size:78.000000px;}
.fs0_c00297{font-size:78.750000px;}
.fsc_c00297{font-size:79.500000px;}
.fs9_c00297{font-size:80.250000px;}
.fs2_c00297{font-size:81.000000px;}
.fs8_c00297{font-size:81.750000px;}
.fsa_c00297{font-size:82.500000px;}
.fs7_c00297{font-size:83.250000px;}
.fs3_c00297{font-size:84.000000px;}
.fs6_c00297{font-size:84.750000px;}
.fs1_c00297{font-size:85.500000px;}
.fs1f_c00297{font-size:115.500000px;}
.y0_c00297{bottom:0.000000px;}
.y28_c00297{bottom:173.880000px;}
.y27_c00297{bottom:244.079565px;}
.y26_c00297{bottom:273.599100px;}
.y25_c00297{bottom:273.601020px;}
.y24_c00297{bottom:303.480750px;}
.y23_c00297{bottom:333.000270px;}
.y22_c00297{bottom:362.880000px;}
.y21_c00297{bottom:362.880300px;}
.y20_c00297{bottom:392.399820px;}
.y1e_c00297{bottom:422.279595px;}
.y1f_c00297{bottom:422.280435px;}
.y1d_c00297{bottom:452.159310px;}
.y1c_c00297{bottom:482.399235px;}
.y1b_c00297{bottom:482.399250px;}
.y19_c00297{bottom:511.918380px;}
.y1a_c00297{bottom:511.920600px;}
.y18_c00297{bottom:541.798095px;}
.y17_c00297{bottom:570.959250px;}
.y16_c00297{bottom:630.360300px;}
.y15_c00297{bottom:630.360495px;}
.y14_c00297{bottom:660.240210px;}
.y13_c00297{bottom:690.480120px;}
.y12_c00297{bottom:720.359850px;}
.y11_c00297{bottom:749.520270px;}
.y10_c00297{bottom:757.079355px;}
.yf_c00297{bottom:779.400165px;}
.ye_c00297{bottom:809.279895px;}
.yd_c00297{bottom:839.159610px;}
.yc_c00297{bottom:869.039340px;}
.yb_c00297{bottom:899.279205px;}
.ya_c00297{bottom:899.279460px;}
.y9_c00297{bottom:929.159175px;}
.y8_c00297{bottom:988.560240px;}
.y7_c00297{bottom:988.560420px;}
.y6_c00297{bottom:1018.079955px;}
.y4_c00297{bottom:1047.960000px;}
.y5_c00297{bottom:1047.960570px;}
.y3_c00297{bottom:1078.920600px;}
.y2_c00297{bottom:1108.080210px;}
.y1_c00297{bottom:1137.959925px;}
.h1f_c00297{height:17.208984px;}
.h1d_c00297{height:21.120117px;}
.h1c_c00297{height:23.718750px;}
.h20_c00297{height:24.459961px;}
.h1e_c00297{height:25.031250px;}
.h1a_c00297{height:28.166016px;}
.h19_c00297{height:29.443359px;}
.h29_c00297{height:32.613281px;}
.h17_c00297{height:32.853516px;}
.h15_c00297{height:39.111328px;}
.h1b_c00297{height:44.586914px;}
.h16_c00297{height:45.369141px;}
.h13_c00297{height:46.151367px;}
.h28_c00297{height:46.863281px;}
.h27_c00297{height:46.933594px;}
.h18_c00297{height:48.498047px;}
.h14_c00297{height:50.062500px;}
.he_c00297{height:59.296875px;}
.h6_c00297{height:69.927979px;}
.h23_c00297{height:74.344482px;}
.h22_c00297{height:75.816650px;}
.h11_c00297{height:76.658203px;}
.h12_c00297{height:77.097656px;}
.h1_c00297{height:77.288818px;}
.h7_c00297{height:78.222656px;}
.h24_c00297{height:78.609375px;}
.hb_c00297{height:78.760986px;}
.hd_c00297{height:79.365234px;}
.h3_c00297{height:79.497070px;}
.h10_c00297{height:80.121094px;}
.ha_c00297{height:80.193237px;}
.h21_c00297{height:80.876953px;}
.hc_c00297{height:80.969238px;}
.h4_c00297{height:81.632812px;}
.h9_c00297{height:81.705322px;}
.h25_c00297{height:82.388672px;}
.h5_c00297{height:82.441406px;}
.hf_c00297{height:83.144531px;}
.h8_c00297{height:83.177490px;}
.h2_c00297{height:83.913574px;}
.h26_c00297{height:120.462891px;}
.h0_c00297{height:1263.000000px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x15_c00297{left:142.923405px;}
.x1_c00297{left:143.999400px;}
.x33_c00297{left:173.519100px;}
.xd_c00297{left:190.799565px;}
.x34_c00297{left:196.559100px;}
.x35_c00297{left:234.359850px;}
.xe_c00297{left:246.958350px;}
.x6_c00297{left:250.199850px;}
.x16_c00297{left:252.358635px;}
.x36_c00297{left:257.759100px;}
.x17_c00297{left:264.599700px;}
.x11_c00297{left:266.040000px;}
.x7_c00297{left:275.759535px;}
.x12_c00297{left:281.159850px;}
.x18_c00297{left:282.598500px;}
.x37_c00297{left:285.479235px;}
.x8_c00297{left:297.718500px;}
.x38_c00297{left:320.399235px;}
.x29_c00297{left:336.239250px;}
.x9_c00297{left:347.758500px;}
.x2a_c00297{left:359.638530px;}
.x39_c00297{left:373.319850px;}
.x19_c00297{left:380.519685px;}
.x22_c00297{left:391.318770px;}
.x3a_c00297{left:392.399820px;}
.x1a_c00297{left:402.119385px;}
.x23_c00297{left:406.079400px;}
.x3b_c00297{left:416.159820px;}
.x1b_c00297{left:470.878320px;}
.x30_c00297{left:473.038920px;}
.xa_c00297{left:485.639100px;}
.xf_c00297{left:493.918350px;}
.xb_c00297{left:496.798920px;}
.x31_c00297{left:499.679670px;}
.x24_c00297{left:505.798515px;}
.x10_c00297{left:507.238770px;}
.x25_c00297{left:521.638500px;}
.x2_c00297{left:529.199385px;}
.x2b_c00297{left:535.319820px;}
.x3_c00297{left:552.598530px;}
.x1c_c00297{left:568.079400px;}
.x1d_c00297{left:585.359850px;}
.x2c_c00297{left:591.119385px;}
.x4_c00297{left:611.278800px;}
.x2d_c00297{left:614.159370px;}
.x26_c00297{left:623.878920px;}
.x2e_c00297{left:642.238770px;}
.x5_c00297{left:644.039985px;}
.x1e_c00297{left:667.798560px;}
.x27_c00297{left:694.439250px;}
.x1f_c00297{left:698.758530px;}
.x28_c00297{left:709.918350px;}
.x20_c00297{left:735.118785px;}
.x13_c00297{left:748.439205px;}
.x32_c00297{left:752.758530px;}
.x21_c00297{left:757.079355px;}
.x14_c00297{left:764.279250px;}
.x2f_c00297{left:769.679715px;}
.xc_c00297{left:771.479190px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls2f_c00297{letter-spacing:-11.991847pt;}
.ls10_c00297{letter-spacing:-8.073267pt;}
.ls29_c00297{letter-spacing:-7.924000pt;}
.ls26_c00297{letter-spacing:-7.466800pt;}
.lsb_c00297{letter-spacing:-7.400213pt;}
.ls27_c00297{letter-spacing:-7.266700pt;}
.ls20_c00297{letter-spacing:-6.601000pt;}
.lsf_c00297{letter-spacing:-6.053200pt;}
.ls12_c00297{letter-spacing:-5.943000pt;}
.ls30_c00297{letter-spacing:-5.735200pt;}
.ls18_c00297{letter-spacing:-5.294267pt;}
.ls9_c00297{letter-spacing:-5.285000pt;}
.ls13_c00297{letter-spacing:-5.187000pt;}
.ls21_c00297{letter-spacing:-4.871853pt;}
.ls2a_c00297{letter-spacing:-4.861600pt;}
.ls7_c00297{letter-spacing:-4.619300pt;}
.ls16_c00297{letter-spacing:-4.259733pt;}
.ls2c_c00297{letter-spacing:-4.160000pt;}
.ls37_c00297{letter-spacing:-4.092000pt;}
.ls11_c00297{letter-spacing:-3.961300pt;}
.ls1a_c00297{letter-spacing:-3.878400pt;}
.ls23_c00297{letter-spacing:-3.767400pt;}
.ls15_c00297{letter-spacing:-3.399067pt;}
.lsc_c00297{letter-spacing:-3.331333pt;}
.ls6_c00297{letter-spacing:-3.304800pt;}
.ls4_c00297{letter-spacing:-3.304000pt;}
.ls34_c00297{letter-spacing:-3.275600pt;}
.ls28_c00297{letter-spacing:-3.003133pt;}
.ls17_c00297{letter-spacing:-2.835600pt;}
.ls2_c00297{letter-spacing:-2.639000pt;}
.ls35_c00297{letter-spacing:-2.625080pt;}
.ls2d_c00297{letter-spacing:-2.136400pt;}
.ls32_c00297{letter-spacing:-2.068000pt;}
.ls2e_c00297{letter-spacing:-2.053687pt;}
.ls3_c00297{letter-spacing:-1.981700pt;}
.ls2b_c00297{letter-spacing:-1.885333pt;}
.lsd_c00297{letter-spacing:-1.532667pt;}
.ls24_c00297{letter-spacing:-1.512747pt;}
.ls31_c00297{letter-spacing:-1.383153pt;}
.ls1_c00297{letter-spacing:-1.323700pt;}
.ls1d_c00297{letter-spacing:-1.181720pt;}
.ls14_c00297{letter-spacing:-0.732600pt;}
.ls8_c00297{letter-spacing:-0.658000pt;}
.ls36_c00297{letter-spacing:-0.628267pt;}
.lse_c00297{letter-spacing:0.000000pt;}
.ls25_c00297{letter-spacing:0.111467pt;}
.lsa_c00297{letter-spacing:0.733680pt;}
.ls33_c00297{letter-spacing:1.334000pt;}
.ls5_c00297{letter-spacing:1.672000pt;}
.ls22_c00297{letter-spacing:1.984000pt;}
.ls1e_c00297{letter-spacing:2.360133pt;}
.ls0_c00297{letter-spacing:3.304000pt;}
.ls19_c00297{letter-spacing:11.347667pt;}
.ls1b_c00297{letter-spacing:11.710000pt;}
.ls1f_c00297{letter-spacing:16.410667pt;}
.ls1c_c00297{letter-spacing:54.250000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
._22_c00297{margin-left:-15.987683pt;}
._c_c00297{margin-left:-8.294577pt;}
._b_c00297{margin-left:-5.074089pt;}
._f_c00297{margin-left:-2.898396pt;}
._d_c00297{margin-left:-1.031179pt;}
._e_c00297{width:1.595194pt;}
._1_c00297{width:2.656091pt;}
._11_c00297{width:3.546028pt;}
._5_c00297{width:4.727826pt;}
._0_c00297{width:5.861206pt;}
._7_c00297{width:7.535117pt;}
._2_c00297{width:8.887953pt;}
._3_c00297{width:10.325185pt;}
._20_c00297{width:11.359217pt;}
._8_c00297{width:12.392338pt;}
._10_c00297{width:13.713000pt;}
._6_c00297{width:14.692947pt;}
._9_c00297{width:16.520502pt;}
._21_c00297{width:17.443828pt;}
._4_c00297{width:18.479894pt;}
._a_c00297{width:19.739564pt;}
._15_c00297{width:21.250164pt;}
._17_c00297{width:23.546996pt;}
._13_c00297{width:24.487123pt;}
._23_c00297{width:25.377377pt;}
._12_c00297{width:26.281275pt;}
._1f_c00297{width:27.354323pt;}
._14_c00297{width:29.400053pt;}
._16_c00297{width:30.413428pt;}
._1b_c00297{width:32.293258pt;}
._1d_c00297{width:34.867026pt;}
._1c_c00297{width:37.291906pt;}
._1a_c00297{width:39.046449pt;}
._19_c00297{width:39.948538pt;}
._1e_c00297{width:43.700194pt;}
._18_c00297{width:45.189946pt;}
.fs1a_c00297{font-size:14.666667pt;}
.fs19_c00297{font-size:18.000000pt;}
.fs18_c00297{font-size:21.333333pt;}
.fs1b_c00297{font-size:22.000000pt;}
.fs16_c00297{font-size:25.333333pt;}
.fs15_c00297{font-size:26.666667pt;}
.fs13_c00297{font-size:28.000000pt;}
.fs21_c00297{font-size:29.333333pt;}
.fs11_c00297{font-size:33.333333pt;}
.fs17_c00297{font-size:38.000000pt;}
.fs12_c00297{font-size:38.666667pt;}
.fsf_c00297{font-size:39.333333pt;}
.fs20_c00297{font-size:40.000000pt;}
.fs14_c00297{font-size:41.333333pt;}
.fs10_c00297{font-size:42.666667pt;}
.fsb_c00297{font-size:53.333333pt;}
.fs4_c00297{font-size:63.333333pt;}
.fsd_c00297{font-size:65.333333pt;}
.fs5_c00297{font-size:66.666667pt;}
.fs1d_c00297{font-size:67.333333pt;}
.fse_c00297{font-size:68.000000pt;}
.fs1c_c00297{font-size:68.666667pt;}
.fs1e_c00297{font-size:69.333333pt;}
.fs0_c00297{font-size:70.000000pt;}
.fsc_c00297{font-size:70.666667pt;}
.fs9_c00297{font-size:71.333333pt;}
.fs2_c00297{font-size:72.000000pt;}
.fs8_c00297{font-size:72.666667pt;}
.fsa_c00297{font-size:73.333333pt;}
.fs7_c00297{font-size:74.000000pt;}
.fs3_c00297{font-size:74.666667pt;}
.fs6_c00297{font-size:75.333333pt;}
.fs1_c00297{font-size:76.000000pt;}
.fs1f_c00297{font-size:102.666667pt;}
.y0_c00297{bottom:0.000000pt;}
.y28_c00297{bottom:154.560000pt;}
.y27_c00297{bottom:216.959613pt;}
.y26_c00297{bottom:243.199200pt;}
.y25_c00297{bottom:243.200907pt;}
.y24_c00297{bottom:269.760667pt;}
.y23_c00297{bottom:296.000240pt;}
.y22_c00297{bottom:322.560000pt;}
.y21_c00297{bottom:322.560267pt;}
.y20_c00297{bottom:348.799840pt;}
.y1e_c00297{bottom:375.359640pt;}
.y1f_c00297{bottom:375.360387pt;}
.y1d_c00297{bottom:401.919387pt;}
.y1c_c00297{bottom:428.799320pt;}
.y1b_c00297{bottom:428.799333pt;}
.y19_c00297{bottom:455.038560pt;}
.y1a_c00297{bottom:455.040533pt;}
.y18_c00297{bottom:481.598307pt;}
.y17_c00297{bottom:507.519333pt;}
.y16_c00297{bottom:560.320267pt;}
.y15_c00297{bottom:560.320440pt;}
.y14_c00297{bottom:586.880187pt;}
.y13_c00297{bottom:613.760107pt;}
.y12_c00297{bottom:640.319867pt;}
.y11_c00297{bottom:666.240240pt;}
.y10_c00297{bottom:672.959427pt;}
.yf_c00297{bottom:692.800147pt;}
.ye_c00297{bottom:719.359907pt;}
.yd_c00297{bottom:745.919653pt;}
.yc_c00297{bottom:772.479413pt;}
.yb_c00297{bottom:799.359293pt;}
.ya_c00297{bottom:799.359520pt;}
.y9_c00297{bottom:825.919267pt;}
.y8_c00297{bottom:878.720213pt;}
.y7_c00297{bottom:878.720373pt;}
.y6_c00297{bottom:904.959960pt;}
.y4_c00297{bottom:931.520000pt;}
.y5_c00297{bottom:931.520507pt;}
.y3_c00297{bottom:959.040533pt;}
.y2_c00297{bottom:984.960187pt;}
.y1_c00297{bottom:1011.519933pt;}
.h1f_c00297{height:15.296875pt;}
.h1d_c00297{height:18.773437pt;}
.h1c_c00297{height:21.083333pt;}
.h20_c00297{height:21.742187pt;}
.h1e_c00297{height:22.250000pt;}
.h1a_c00297{height:25.036458pt;}
.h19_c00297{height:26.171875pt;}
.h29_c00297{height:28.989583pt;}
.h17_c00297{height:29.203125pt;}
.h15_c00297{height:34.765625pt;}
.h1b_c00297{height:39.632812pt;}
.h16_c00297{height:40.328125pt;}
.h13_c00297{height:41.023438pt;}
.h28_c00297{height:41.656250pt;}
.h27_c00297{height:41.718750pt;}
.h18_c00297{height:43.109375pt;}
.h14_c00297{height:44.500000pt;}
.he_c00297{height:52.708333pt;}
.h6_c00297{height:62.158203pt;}
.h23_c00297{height:66.083984pt;}
.h22_c00297{height:67.392578pt;}
.h11_c00297{height:68.140625pt;}
.h12_c00297{height:68.531250pt;}
.h1_c00297{height:68.701172pt;}
.h7_c00297{height:69.531250pt;}
.h24_c00297{height:69.875000pt;}
.hb_c00297{height:70.009766pt;}
.hd_c00297{height:70.546875pt;}
.h3_c00297{height:70.664062pt;}
.h10_c00297{height:71.218750pt;}
.ha_c00297{height:71.282878pt;}
.h21_c00297{height:71.890625pt;}
.hc_c00297{height:71.972656pt;}
.h4_c00297{height:72.562500pt;}
.h9_c00297{height:72.626953pt;}
.h25_c00297{height:73.234375pt;}
.h5_c00297{height:73.281250pt;}
.hf_c00297{height:73.906250pt;}
.h8_c00297{height:73.935547pt;}
.h2_c00297{height:74.589844pt;}
.h26_c00297{height:107.078125pt;}
.h0_c00297{height:1122.666667pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x15_c00297{left:127.043027pt;}
.x1_c00297{left:127.999467pt;}
.x33_c00297{left:154.239200pt;}
.xd_c00297{left:169.599613pt;}
.x34_c00297{left:174.719200pt;}
.x35_c00297{left:208.319867pt;}
.xe_c00297{left:219.518533pt;}
.x6_c00297{left:222.399867pt;}
.x16_c00297{left:224.318787pt;}
.x36_c00297{left:229.119200pt;}
.x17_c00297{left:235.199733pt;}
.x11_c00297{left:236.480000pt;}
.x7_c00297{left:245.119587pt;}
.x12_c00297{left:249.919867pt;}
.x18_c00297{left:251.198667pt;}
.x37_c00297{left:253.759320pt;}
.x8_c00297{left:264.638667pt;}
.x38_c00297{left:284.799320pt;}
.x29_c00297{left:298.879333pt;}
.x9_c00297{left:309.118667pt;}
.x2a_c00297{left:319.678693pt;}
.x39_c00297{left:331.839867pt;}
.x19_c00297{left:338.239720pt;}
.x22_c00297{left:347.838907pt;}
.x3a_c00297{left:348.799840pt;}
.x1a_c00297{left:357.439453pt;}
.x23_c00297{left:360.959467pt;}
.x3b_c00297{left:369.919840pt;}
.x1b_c00297{left:418.558507pt;}
.x30_c00297{left:420.479040pt;}
.xa_c00297{left:431.679200pt;}
.xf_c00297{left:439.038533pt;}
.xb_c00297{left:441.599040pt;}
.x31_c00297{left:444.159707pt;}
.x24_c00297{left:449.598680pt;}
.x10_c00297{left:450.878907pt;}
.x25_c00297{left:463.678667pt;}
.x2_c00297{left:470.399453pt;}
.x2b_c00297{left:475.839840pt;}
.x3_c00297{left:491.198693pt;}
.x1c_c00297{left:504.959467pt;}
.x1d_c00297{left:520.319867pt;}
.x2c_c00297{left:525.439453pt;}
.x4_c00297{left:543.358933pt;}
.x2d_c00297{left:545.919440pt;}
.x26_c00297{left:554.559040pt;}
.x2e_c00297{left:570.878907pt;}
.x5_c00297{left:572.479987pt;}
.x1e_c00297{left:593.598720pt;}
.x27_c00297{left:617.279333pt;}
.x1f_c00297{left:621.118693pt;}
.x28_c00297{left:631.038533pt;}
.x20_c00297{left:653.438920pt;}
.x13_c00297{left:665.279293pt;}
.x32_c00297{left:669.118693pt;}
.x21_c00297{left:672.959427pt;}
.x14_c00297{left:679.359333pt;}
.x2f_c00297{left:684.159747pt;}
.xc_c00297{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f0cdbe32e7565dddbe4e118.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_a5fbca873e001374bb06ca7c.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.364746;font-style:normal;font-weight:normal;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_90449bde11a4b41db063a741.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_18aef3109bee56f7b524080b.woff2')format("woff");}.ff4_c00298{font-family:ff4_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:ff5_c00298;src:url('chunks/assets/font_c61c65711425a8a24318a656.woff2')format("woff");}.ff5_c00298{font-family:ff5_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:ff6_c00298;src:url('chunks/assets/font_8b9017861575fa4c5bb030ad.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00298;src:url('chunks/assets/font_8679b3b24a42cfae54debd69.woff2')format("woff");}.ff7_c00298{font-family:ff7_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;}
.m8_c00298{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m23_c00298{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m13_c00298{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1a_c00298{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m17_c00298{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m22_c00298{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m14_c00298{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00298{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.mc_c00298{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);}
.m10_c00298{transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.321970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321970,0.000000,0.000000,0.250000,0,0);}
.m1c_c00298{transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);}
.m19_c00298{transform:matrix(0.363402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363402,0.000000,0.000000,0.250000,0,0);}
.m1e_c00298{transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);}
.m1b_c00298{transform:matrix(0.440476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440476,0.000000,0.000000,0.250000,0,0);}
.m20_c00298{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.m21_c00298{transform:matrix(0.763158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763158,0.000000,0.000000,0.250000,0,0);}
.m1d_c00298{transform:matrix(0.785714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785714,0.000000,0.000000,0.250000,0,0);}
.m1f_c00298{transform:matrix(1.404762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.404762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.404762,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls10_c00298{letter-spacing:-12.687675px;}
.ls1e_c00298{letter-spacing:-12.258375px;}
.lse_c00298{letter-spacing:-10.576500px;}
.lsa_c00298{letter-spacing:-8.175038px;}
.ls13_c00298{letter-spacing:-7.426125px;}
.lsf_c00298{letter-spacing:-6.781500px;}
.ls27_c00298{letter-spacing:-6.534900px;}
.lsc_c00298{letter-spacing:-5.945625px;}
.lsd_c00298{letter-spacing:-5.577000px;}
.ls4_c00298{letter-spacing:-5.196713px;}
.ls19_c00298{letter-spacing:-4.658850px;}
.ls7_c00298{letter-spacing:-4.456463px;}
.ls9_c00298{letter-spacing:-3.717000px;}
.ls2_c00298{letter-spacing:-2.968875px;}
.ls11_c00298{letter-spacing:-2.723100px;}
.ls24_c00298{letter-spacing:-2.535750px;}
.ls6_c00298{letter-spacing:-2.229413px;}
.ls20_c00298{letter-spacing:-2.069025px;}
.ls22_c00298{letter-spacing:-1.908900px;}
.ls12_c00298{letter-spacing:-1.496250px;}
.ls3_c00298{letter-spacing:-1.489163px;}
.ls23_c00298{letter-spacing:-1.014000px;}
.lsb_c00298{letter-spacing:-0.771728px;}
.ls5_c00298{letter-spacing:-0.740250px;}
.ls1f_c00298{letter-spacing:-0.425093px;}
.ls8_c00298{letter-spacing:0.000000px;}
.ls21_c00298{letter-spacing:0.425093px;}
.ls0_c00298{letter-spacing:0.740250px;}
.ls25_c00298{letter-spacing:0.850500px;}
.ls1a_c00298{letter-spacing:2.222415px;}
.ls18_c00298{letter-spacing:2.630018px;}
.ls15_c00298{letter-spacing:3.513600px;}
.ls17_c00298{letter-spacing:3.768660px;}
.ls1c_c00298{letter-spacing:4.036883px;}
.ls26_c00298{letter-spacing:4.819500px;}
.ls1_c00298{letter-spacing:8.512875px;}
.ls1b_c00298{letter-spacing:10.484595px;}
.ls16_c00298{letter-spacing:12.073170px;}
.ls14_c00298{letter-spacing:12.150540px;}
.ls1d_c00298{letter-spacing:18.566325px;}
.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;}
._17_c00298{margin-left:-9.297276px;}
._6_c00298{margin-left:-8.208573px;}
._8_c00298{margin-left:-6.449194px;}
._5_c00298{margin-left:-3.515133px;}
._4_c00298{margin-left:-1.872645px;}
._3_c00298{width:1.803613px;}
._7_c00298{width:3.134131px;}
._2_c00298{width:4.440118px;}
._0_c00298{width:5.826074px;}
._10_c00298{width:7.631499px;}
._1_c00298{width:8.757892px;}
._11_c00298{width:9.873378px;}
._f_c00298{width:12.082226px;}
._15_c00298{width:13.351201px;}
._e_c00298{width:14.804525px;}
._9_c00298{width:17.374196px;}
._c_c00298{width:18.588492px;}
._d_c00298{width:20.664386px;}
._13_c00298{width:22.518458px;}
._14_c00298{width:23.840240px;}
._a_c00298{width:25.176642px;}
._12_c00298{width:27.594000px;}
._b_c00298{width:30.791636px;}
._16_c00298{width:34.441194px;}
.fc0_c00298{color:transparent;}
.fs14_c00298{font-size:14.250000px;}
.fs11_c00298{font-size:15.750000px;}
.fs12_c00298{font-size:36.750000px;}
.fs13_c00298{font-size:39.000000px;}
.fs9_c00298{font-size:48.000000px;}
.fsf_c00298{font-size:49.500000px;}
.fsc_c00298{font-size:53.250000px;}
.fs8_c00298{font-size:54.000000px;}
.fsb_c00298{font-size:57.000000px;}
.fse_c00298{font-size:58.500000px;}
.fsa_c00298{font-size:60.000000px;}
.fsd_c00298{font-size:65.250000px;}
.fs3_c00298{font-size:72.000000px;}
.fs7_c00298{font-size:72.750000px;}
.fs10_c00298{font-size:75.750000px;}
.fs4_c00298{font-size:77.250000px;}
.fs5_c00298{font-size:78.000000px;}
.fs0_c00298{font-size:78.750000px;}
.fs15_c00298{font-size:79.500000px;}
.fs1_c00298{font-size:80.250000px;}
.fs2_c00298{font-size:82.500000px;}
.fs6_c00298{font-size:87.000000px;}
.y0_c00298{bottom:0.000000px;}
.y1d_c00298{bottom:659.519070px;}
.y1b_c00298{bottom:689.399070px;}
.y1c_c00298{bottom:689.399820px;}
.y1a_c00298{bottom:719.278800px;}
.y19_c00298{bottom:748.800105px;}
.y18_c00298{bottom:750.420000px;}
.y17_c00298{bottom:751.319820px;}
.y15_c00298{bottom:778.679025px;}
.y16_c00298{bottom:778.679070px;}
.y13_c00298{bottom:808.918905px;}
.y14_c00298{bottom:808.918950px;}
.y11_c00298{bottom:839.158740px;}
.y12_c00298{bottom:839.158815px;}
.yf_c00298{bottom:868.679805px;}
.y10_c00298{bottom:868.680090px;}
.ye_c00298{bottom:898.738590px;}
.yd_c00298{bottom:928.078770px;}
.yc_c00298{bottom:928.078905px;}
.ya_c00298{bottom:958.318755px;}
.yb_c00298{bottom:958.318815px;}
.y8_c00298{bottom:987.839520px;}
.y9_c00298{bottom:987.840090px;}
.y7_c00298{bottom:1047.238770px;}
.y6_c00298{bottom:1047.239655px;}
.y5_c00298{bottom:1077.119385px;}
.y4_c00298{bottom:1077.120270px;}
.y2_c00298{bottom:1106.999160px;}
.y3_c00298{bottom:1107.000000px;}
.y1_c00298{bottom:1136.878875px;}
.h17_c00298{height:14.862305px;}
.h14_c00298{height:16.426758px;}
.h15_c00298{height:38.329102px;}
.h16_c00298{height:40.675781px;}
.hb_c00298{height:47.109375px;}
.h11_c00298{height:51.626953px;}
.he_c00298{height:52.261963px;}
.ha_c00298{height:52.998047px;}
.h12_c00298{height:55.538086px;}
.hd_c00298{height:55.942383px;}
.h10_c00298{height:57.414551px;}
.hc_c00298{height:58.886719px;}
.hf_c00298{height:64.485352px;}
.h4_c00298{height:70.664062px;}
.h5_c00298{height:75.816650px;}
.h9_c00298{height:75.875977px;}
.h13_c00298{height:76.341797px;}
.h7_c00298{height:76.552734px;}
.h1_c00298{height:77.288818px;}
.h19_c00298{height:78.568359px;}
.h2_c00298{height:78.760986px;}
.h18_c00298{height:79.365234px;}
.h3_c00298{height:80.969238px;}
.h6_c00298{height:81.533203px;}
.h8_c00298{height:85.980469px;}
.h0_c00298{height:1263.000000px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x9_c00298{left:134.638230px;}
.x1_c00298{left:135.718500px;}
.x6_c00298{left:137.519160px;}
.x21_c00298{left:203.399850px;}
.x1f_c00298{left:206.998950px;}
.xa_c00298{left:214.918950px;}
.x11_c00298{left:227.519100px;}
.x20_c00298{left:229.679700px;}
.x12_c00298{left:249.479685px;}
.x2_c00298{left:255.239250px;}
.x22_c00298{left:261.719100px;}
.x3_c00298{left:268.559685px;}
.x23_c00298{left:281.159850px;}
.xb_c00298{left:304.199850px;}
.x24_c00298{left:331.199850px;}
.x25_c00298{left:353.878950px;}
.x1b_c00298{left:380.519685px;}
.x1c_c00298{left:395.278800px;}
.x17_c00298{left:418.679670px;}
.x26_c00298{left:424.798515px;}
.x18_c00298{left:439.199850px;}
.x27_c00298{left:484.198785px;}
.x2f_c00298{left:504.719100px;}
.xc_c00298{left:517.319235px;}
.x28_c00298{left:528.119985px;}
.xd_c00298{left:542.158770px;}
.x29_c00298{left:558.719100px;}
.x19_c00298{left:585.359850px;}
.x2a_c00298{left:588.238770px;}
.x1d_c00298{left:592.918950px;}
.x1e_c00298{left:612.719100px;}
.x1a_c00298{left:619.198785px;}
.xe_c00298{left:625.678530px;}
.x13_c00298{left:639.719100px;}
.xf_c00298{left:645.119385px;}
.x14_c00298{left:650.878920px;}
.x2b_c00298{left:664.919535px;}
.x10_c00298{left:669.599670px;}
.x2c_c00298{left:683.999400px;}
.x7_c00298{left:687.598530px;}
.x15_c00298{left:693.719100px;}
.x8_c00298{left:700.918950px;}
.x16_c00298{left:712.798920px;}
.x4_c00298{left:720.719100px;}
.x5_c00298{left:734.039385px;}
.x2d_c00298{left:739.078770px;}
.x2e_c00298{left:761.759535px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls10_c00298{letter-spacing:-11.277933pt;}
.ls1e_c00298{letter-spacing:-10.896333pt;}
.lse_c00298{letter-spacing:-9.401333pt;}
.lsa_c00298{letter-spacing:-7.266700pt;}
.ls13_c00298{letter-spacing:-6.601000pt;}
.lsf_c00298{letter-spacing:-6.028000pt;}
.ls27_c00298{letter-spacing:-5.808800pt;}
.lsc_c00298{letter-spacing:-5.285000pt;}
.lsd_c00298{letter-spacing:-4.957333pt;}
.ls4_c00298{letter-spacing:-4.619300pt;}
.ls19_c00298{letter-spacing:-4.141200pt;}
.ls7_c00298{letter-spacing:-3.961300pt;}
.ls9_c00298{letter-spacing:-3.304000pt;}
.ls2_c00298{letter-spacing:-2.639000pt;}
.ls11_c00298{letter-spacing:-2.420533pt;}
.ls24_c00298{letter-spacing:-2.254000pt;}
.ls6_c00298{letter-spacing:-1.981700pt;}
.ls20_c00298{letter-spacing:-1.839133pt;}
.ls22_c00298{letter-spacing:-1.696800pt;}
.ls12_c00298{letter-spacing:-1.330000pt;}
.ls3_c00298{letter-spacing:-1.323700pt;}
.ls23_c00298{letter-spacing:-0.901333pt;}
.lsb_c00298{letter-spacing:-0.685980pt;}
.ls5_c00298{letter-spacing:-0.658000pt;}
.ls1f_c00298{letter-spacing:-0.377860pt;}
.ls8_c00298{letter-spacing:0.000000pt;}
.ls21_c00298{letter-spacing:0.377860pt;}
.ls0_c00298{letter-spacing:0.658000pt;}
.ls25_c00298{letter-spacing:0.756000pt;}
.ls1a_c00298{letter-spacing:1.975480pt;}
.ls18_c00298{letter-spacing:2.337793pt;}
.ls15_c00298{letter-spacing:3.123200pt;}
.ls17_c00298{letter-spacing:3.349920pt;}
.ls1c_c00298{letter-spacing:3.588340pt;}
.ls26_c00298{letter-spacing:4.284000pt;}
.ls1_c00298{letter-spacing:7.567000pt;}
.ls1b_c00298{letter-spacing:9.319640pt;}
.ls16_c00298{letter-spacing:10.731707pt;}
.ls14_c00298{letter-spacing:10.800480pt;}
.ls1d_c00298{letter-spacing:16.503400pt;}
.ws0_c00298{word-spacing:0.000000pt;}
._17_c00298{margin-left:-8.264245pt;}
._6_c00298{margin-left:-7.296509pt;}
._8_c00298{margin-left:-5.732617pt;}
._5_c00298{margin-left:-3.124562pt;}
._4_c00298{margin-left:-1.664574pt;}
._3_c00298{width:1.603211pt;}
._7_c00298{width:2.785894pt;}
._2_c00298{width:3.946772pt;}
._0_c00298{width:5.178732pt;}
._10_c00298{width:6.783555pt;}
._1_c00298{width:7.784792pt;}
._11_c00298{width:8.776336pt;}
._f_c00298{width:10.739757pt;}
._15_c00298{width:11.867734pt;}
._e_c00298{width:13.159577pt;}
._9_c00298{width:15.443730pt;}
._c_c00298{width:16.523104pt;}
._d_c00298{width:18.368343pt;}
._13_c00298{width:20.016408pt;}
._14_c00298{width:21.191325pt;}
._a_c00298{width:22.379238pt;}
._12_c00298{width:24.528000pt;}
._b_c00298{width:27.370343pt;}
._16_c00298{width:30.614394pt;}
.fs14_c00298{font-size:12.666667pt;}
.fs11_c00298{font-size:14.000000pt;}
.fs12_c00298{font-size:32.666667pt;}
.fs13_c00298{font-size:34.666667pt;}
.fs9_c00298{font-size:42.666667pt;}
.fsf_c00298{font-size:44.000000pt;}
.fsc_c00298{font-size:47.333333pt;}
.fs8_c00298{font-size:48.000000pt;}
.fsb_c00298{font-size:50.666667pt;}
.fse_c00298{font-size:52.000000pt;}
.fsa_c00298{font-size:53.333333pt;}
.fsd_c00298{font-size:58.000000pt;}
.fs3_c00298{font-size:64.000000pt;}
.fs7_c00298{font-size:64.666667pt;}
.fs10_c00298{font-size:67.333333pt;}
.fs4_c00298{font-size:68.666667pt;}
.fs5_c00298{font-size:69.333333pt;}
.fs0_c00298{font-size:70.000000pt;}
.fs15_c00298{font-size:70.666667pt;}
.fs1_c00298{font-size:71.333333pt;}
.fs2_c00298{font-size:73.333333pt;}
.fs6_c00298{font-size:77.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y1d_c00298{bottom:586.239173pt;}
.y1b_c00298{bottom:612.799173pt;}
.y1c_c00298{bottom:612.799840pt;}
.y1a_c00298{bottom:639.358933pt;}
.y19_c00298{bottom:665.600093pt;}
.y18_c00298{bottom:667.040000pt;}
.y17_c00298{bottom:667.839840pt;}
.y15_c00298{bottom:692.159133pt;}
.y16_c00298{bottom:692.159173pt;}
.y13_c00298{bottom:719.039027pt;}
.y14_c00298{bottom:719.039067pt;}
.y11_c00298{bottom:745.918880pt;}
.y12_c00298{bottom:745.918947pt;}
.yf_c00298{bottom:772.159827pt;}
.y10_c00298{bottom:772.160080pt;}
.ye_c00298{bottom:798.878747pt;}
.yd_c00298{bottom:824.958907pt;}
.yc_c00298{bottom:824.959027pt;}
.ya_c00298{bottom:851.838893pt;}
.yb_c00298{bottom:851.838947pt;}
.y8_c00298{bottom:878.079573pt;}
.y9_c00298{bottom:878.080080pt;}
.y7_c00298{bottom:930.878907pt;}
.y6_c00298{bottom:930.879693pt;}
.y5_c00298{bottom:957.439453pt;}
.y4_c00298{bottom:957.440240pt;}
.y2_c00298{bottom:983.999253pt;}
.y3_c00298{bottom:984.000000pt;}
.y1_c00298{bottom:1010.559000pt;}
.h17_c00298{height:13.210937pt;}
.h14_c00298{height:14.601562pt;}
.h15_c00298{height:34.070312pt;}
.h16_c00298{height:36.156250pt;}
.hb_c00298{height:41.875000pt;}
.h11_c00298{height:45.890625pt;}
.he_c00298{height:46.455078pt;}
.ha_c00298{height:47.109375pt;}
.h12_c00298{height:49.367188pt;}
.hd_c00298{height:49.726562pt;}
.h10_c00298{height:51.035156pt;}
.hc_c00298{height:52.343750pt;}
.hf_c00298{height:57.320313pt;}
.h4_c00298{height:62.812500pt;}
.h5_c00298{height:67.392578pt;}
.h9_c00298{height:67.445312pt;}
.h13_c00298{height:67.859375pt;}
.h7_c00298{height:68.046875pt;}
.h1_c00298{height:68.701172pt;}
.h19_c00298{height:69.838542pt;}
.h2_c00298{height:70.009766pt;}
.h18_c00298{height:70.546875pt;}
.h3_c00298{height:71.972656pt;}
.h6_c00298{height:72.473958pt;}
.h8_c00298{height:76.427083pt;}
.h0_c00298{height:1122.666667pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x9_c00298{left:119.678427pt;}
.x1_c00298{left:120.638667pt;}
.x6_c00298{left:122.239253pt;}
.x21_c00298{left:180.799867pt;}
.x1f_c00298{left:183.999067pt;}
.xa_c00298{left:191.039067pt;}
.x11_c00298{left:202.239200pt;}
.x20_c00298{left:204.159733pt;}
.x12_c00298{left:221.759720pt;}
.x2_c00298{left:226.879333pt;}
.x22_c00298{left:232.639200pt;}
.x3_c00298{left:238.719720pt;}
.x23_c00298{left:249.919867pt;}
.xb_c00298{left:270.399867pt;}
.x24_c00298{left:294.399867pt;}
.x25_c00298{left:314.559067pt;}
.x1b_c00298{left:338.239720pt;}
.x1c_c00298{left:351.358933pt;}
.x17_c00298{left:372.159707pt;}
.x26_c00298{left:377.598680pt;}
.x18_c00298{left:390.399867pt;}
.x27_c00298{left:430.398920pt;}
.x2f_c00298{left:448.639200pt;}
.xc_c00298{left:459.839320pt;}
.x28_c00298{left:469.439987pt;}
.xd_c00298{left:481.918907pt;}
.x29_c00298{left:496.639200pt;}
.x19_c00298{left:520.319867pt;}
.x2a_c00298{left:522.878907pt;}
.x1d_c00298{left:527.039067pt;}
.x1e_c00298{left:544.639200pt;}
.x1a_c00298{left:550.398920pt;}
.xe_c00298{left:556.158693pt;}
.x13_c00298{left:568.639200pt;}
.xf_c00298{left:573.439453pt;}
.x14_c00298{left:578.559040pt;}
.x2b_c00298{left:591.039587pt;}
.x10_c00298{left:595.199707pt;}
.x2c_c00298{left:607.999467pt;}
.x7_c00298{left:611.198693pt;}
.x15_c00298{left:616.639200pt;}
.x8_c00298{left:623.039067pt;}
.x16_c00298{left:633.599040pt;}
.x4_c00298{left:640.639200pt;}
.x5_c00298{left:652.479453pt;}
.x2d_c00298{left:656.958907pt;}
.x2e_c00298{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d08d4650354ad5f08ab121bf.woff2')format("woff");}.ff1_c00299{font-family:ff1_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:ff2_c00299;src:url('chunks/assets/font_436e69d739201cffddfbfad4.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_ab3ddf73e58e8610fa886701.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;}
.m5_c00299{transform:matrix(0.037565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037565,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103659,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.128238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128238,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.141791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141791,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.141820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141820,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.155556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155556,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174419,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.186709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186709,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls13_c00299{letter-spacing:-8.790488px;}
.ls10_c00299{letter-spacing:-6.598125px;}
.ls9_c00299{letter-spacing:-5.075400px;}
.ls15_c00299{letter-spacing:-5.018475px;}
.ls17_c00299{letter-spacing:-4.398750px;}
.lse_c00299{letter-spacing:-3.295875px;}
.ls11_c00299{letter-spacing:-1.096500px;}
.ls8_c00299{letter-spacing:0.000000px;}
.ls3_c00299{letter-spacing:1.096500px;}
.lsa_c00299{letter-spacing:2.033460px;}
.lsd_c00299{letter-spacing:2.199375px;}
.ls7_c00299{letter-spacing:2.262000px;}
.ls1_c00299{letter-spacing:3.295875px;}
.lsf_c00299{letter-spacing:4.398750px;}
.lsc_c00299{letter-spacing:5.133075px;}
.ls12_c00299{letter-spacing:5.495250px;}
.ls4_c00299{letter-spacing:6.598125px;}
.lsb_c00299{letter-spacing:7.108200px;}
.ls0_c00299{letter-spacing:8.123940px;}
.ls14_c00299{letter-spacing:8.790488px;}
.ls16_c00299{letter-spacing:10.854750px;}
.ls2_c00299{letter-spacing:10.989863px;}
.ls5_c00299{letter-spacing:15.388613px;}
.ls6_c00299{letter-spacing:16.249200px;}
.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;}
._b_c00299{margin-left:-50.464588px;}
._7_c00299{margin-left:-33.324345px;}
._c_c00299{width:3.761426px;}
._2_c00299{width:5.044035px;}
._9_c00299{width:6.527209px;}
._0_c00299{width:12.975681px;}
._3_c00299{width:19.928690px;}
._8_c00299{width:24.467602px;}
._1_c00299{width:26.307133px;}
._6_c00299{width:28.037690px;}
._4_c00299{width:34.973558px;}
._a_c00299{width:45.984919px;}
._5_c00299{width:55.539088px;}
.fc0_c00299{color:transparent;}
.fs2_c00299{font-size:50.250000px;}
.fs3_c00299{font-size:58.500000px;}
.fs7_c00299{font-size:59.250000px;}
.fs1_c00299{font-size:60.000000px;}
.fs8_c00299{font-size:61.500000px;}
.fs6_c00299{font-size:63.750000px;}
.fsa_c00299{font-size:64.500000px;}
.fs0_c00299{font-size:66.000000px;}
.fs4_c00299{font-size:66.750000px;}
.fsb_c00299{font-size:67.500000px;}
.fsc_c00299{font-size:70.500000px;}
.fs9_c00299{font-size:83.239200px;}
.fs5_c00299{font-size:144.750000px;}
.y0_c00299{bottom:0.000000px;}
.yc_c00299{bottom:467.279250px;}
.yb_c00299{bottom:490.680135px;}
.ya_c00299{bottom:490.681800px;}
.y9_c00299{bottom:502.201335px;}
.y8_c00299{bottom:514.081260px;}
.y7_c00299{bottom:525.240630px;}
.y12_c00299{bottom:795.239370px;}
.y19_c00299{bottom:797.038965px;}
.y16_c00299{bottom:797.399865px;}
.y11_c00299{bottom:818.998965px;}
.y18_c00299{bottom:820.798920px;}
.y15_c00299{bottom:821.160135px;}
.y1b_c00299{bottom:821.160240px;}
.y10_c00299{bottom:842.398410px;}
.y14_c00299{bottom:844.559055px;}
.yf_c00299{bottom:865.799565px;}
.y13_c00299{bottom:867.599115px;}
.y17_c00299{bottom:867.599940px;}
.y1a_c00299{bottom:867.960015px;}
.y6_c00299{bottom:935.999430px;}
.ye_c00299{bottom:937.800105px;}
.y1c_c00299{bottom:938.159370px;}
.y5_c00299{bottom:959.759040px;}
.yd_c00299{bottom:961.560240px;}
.y4_c00299{bottom:1029.239865px;}
.y3_c00299{bottom:1041.479190px;}
.y2_c00299{bottom:1099.800105px;}
.y1_c00299{bottom:1123.560240px;}
.h3_c00299{height:52.409180px;}
.h4_c00299{height:61.013672px;}
.h8_c00299{height:61.795898px;}
.h9_c00299{height:61.980469px;}
.h2_c00299{height:62.578125px;}
.h7_c00299{height:64.248047px;}
.hb_c00299{height:65.003906px;}
.h1_c00299{height:66.515625px;}
.h5_c00299{height:67.271484px;}
.hc_c00299{height:68.027344px;}
.hd_c00299{height:71.050781px;}
.ha_c00299{height:83.889506px;}
.h6_c00299{height:150.969727px;}
.h0_c00299{height:1263.000000px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:310.679700px;}
.x8_c00299{left:312.479235px;}
.xe_c00299{left:316.080000px;}
.x9_c00299{left:322.559685px;}
.x2_c00299{left:351.000000px;}
.x7_c00299{left:362.519100px;}
.xf_c00299{left:363.598530px;}
.x3_c00299{left:374.399235px;}
.x10_c00299{left:380.878950px;}
.xa_c00299{left:393.479235px;}
.xb_c00299{left:403.559685px;}
.x12_c00299{left:420.479235px;}
.x11_c00299{left:421.919535px;}
.xc_c00299{left:451.080000px;}
.x13_c00299{left:478.080000px;}
.x4_c00299{left:483.839535px;}
.x5_c00299{left:495.358665px;}
.x14_c00299{left:536.039985px;}
.x6_c00299{left:558.719100px;}
.xd_c00299{left:566.639100px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls13_c00299{letter-spacing:-7.813767pt;}
.ls10_c00299{letter-spacing:-5.865000pt;}
.ls9_c00299{letter-spacing:-4.511467pt;}
.ls15_c00299{letter-spacing:-4.460867pt;}
.ls17_c00299{letter-spacing:-3.910000pt;}
.lse_c00299{letter-spacing:-2.929667pt;}
.ls11_c00299{letter-spacing:-0.974667pt;}
.ls8_c00299{letter-spacing:0.000000pt;}
.ls3_c00299{letter-spacing:0.974667pt;}
.lsa_c00299{letter-spacing:1.807520pt;}
.lsd_c00299{letter-spacing:1.955000pt;}
.ls7_c00299{letter-spacing:2.010667pt;}
.ls1_c00299{letter-spacing:2.929667pt;}
.lsf_c00299{letter-spacing:3.910000pt;}
.lsc_c00299{letter-spacing:4.562733pt;}
.ls12_c00299{letter-spacing:4.884667pt;}
.ls4_c00299{letter-spacing:5.865000pt;}
.lsb_c00299{letter-spacing:6.318400pt;}
.ls0_c00299{letter-spacing:7.221280pt;}
.ls14_c00299{letter-spacing:7.813767pt;}
.ls16_c00299{letter-spacing:9.648667pt;}
.ls2_c00299{letter-spacing:9.768767pt;}
.ls5_c00299{letter-spacing:13.678767pt;}
.ls6_c00299{letter-spacing:14.443733pt;}
.ws0_c00299{word-spacing:0.000000pt;}
._b_c00299{margin-left:-44.857411pt;}
._7_c00299{margin-left:-29.621640pt;}
._c_c00299{width:3.343490pt;}
._2_c00299{width:4.483586pt;}
._9_c00299{width:5.801963pt;}
._0_c00299{width:11.533939pt;}
._3_c00299{width:17.714391pt;}
._8_c00299{width:21.748979pt;}
._1_c00299{width:23.384118pt;}
._6_c00299{width:24.922391pt;}
._4_c00299{width:31.087607pt;}
._a_c00299{width:40.875484pt;}
._5_c00299{width:49.368078pt;}
.fs2_c00299{font-size:44.666667pt;}
.fs3_c00299{font-size:52.000000pt;}
.fs7_c00299{font-size:52.666667pt;}
.fs1_c00299{font-size:53.333333pt;}
.fs8_c00299{font-size:54.666667pt;}
.fs6_c00299{font-size:56.666667pt;}
.fsa_c00299{font-size:57.333333pt;}
.fs0_c00299{font-size:58.666667pt;}
.fs4_c00299{font-size:59.333333pt;}
.fsb_c00299{font-size:60.000000pt;}
.fsc_c00299{font-size:62.666667pt;}
.fs9_c00299{font-size:73.990400pt;}
.fs5_c00299{font-size:128.666667pt;}
.y0_c00299{bottom:0.000000pt;}
.yc_c00299{bottom:415.359333pt;}
.yb_c00299{bottom:436.160120pt;}
.ya_c00299{bottom:436.161600pt;}
.y9_c00299{bottom:446.401187pt;}
.y8_c00299{bottom:456.961120pt;}
.y7_c00299{bottom:466.880560pt;}
.y12_c00299{bottom:706.879440pt;}
.y19_c00299{bottom:708.479080pt;}
.y16_c00299{bottom:708.799880pt;}
.y11_c00299{bottom:727.999080pt;}
.y18_c00299{bottom:729.599040pt;}
.y15_c00299{bottom:729.920120pt;}
.y1b_c00299{bottom:729.920213pt;}
.y10_c00299{bottom:748.798587pt;}
.y14_c00299{bottom:750.719160pt;}
.yf_c00299{bottom:769.599613pt;}
.y13_c00299{bottom:771.199213pt;}
.y17_c00299{bottom:771.199947pt;}
.y1a_c00299{bottom:771.520013pt;}
.y6_c00299{bottom:831.999493pt;}
.ye_c00299{bottom:833.600093pt;}
.y1c_c00299{bottom:833.919440pt;}
.y5_c00299{bottom:853.119147pt;}
.yd_c00299{bottom:854.720213pt;}
.y4_c00299{bottom:914.879880pt;}
.y3_c00299{bottom:925.759280pt;}
.y2_c00299{bottom:977.600093pt;}
.y1_c00299{bottom:998.720213pt;}
.h3_c00299{height:46.585938pt;}
.h4_c00299{height:54.234375pt;}
.h8_c00299{height:54.929688pt;}
.h9_c00299{height:55.093750pt;}
.h2_c00299{height:55.625000pt;}
.h7_c00299{height:57.109375pt;}
.hb_c00299{height:57.781250pt;}
.h1_c00299{height:59.125000pt;}
.h5_c00299{height:59.796875pt;}
.hc_c00299{height:60.468750pt;}
.hd_c00299{height:63.156250pt;}
.ha_c00299{height:74.568450pt;}
.h6_c00299{height:134.195312pt;}
.h0_c00299{height:1122.666667pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:276.159733pt;}
.x8_c00299{left:277.759320pt;}
.xe_c00299{left:280.960000pt;}
.x9_c00299{left:286.719720pt;}
.x2_c00299{left:312.000000pt;}
.x7_c00299{left:322.239200pt;}
.xf_c00299{left:323.198693pt;}
.x3_c00299{left:332.799320pt;}
.x10_c00299{left:338.559067pt;}
.xa_c00299{left:349.759320pt;}
.xb_c00299{left:358.719720pt;}
.x12_c00299{left:373.759320pt;}
.x11_c00299{left:375.039587pt;}
.xc_c00299{left:400.960000pt;}
.x13_c00299{left:424.960000pt;}
.x4_c00299{left:430.079587pt;}
.x5_c00299{left:440.318813pt;}
.x14_c00299{left:476.479987pt;}
.x6_c00299{left:496.639200pt;}
.xd_c00299{left:503.679200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdf07a7f89abac4b542888b5.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_287575aef022cde65609366a.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_806571eeea97e40873f0e3cd.woff2')format("woff");}.ff3_c00300{font-family:ff3_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;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_7f614921c60d0be9ca60b485.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_45293c2ffe6fad6837f06e77.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00300;src:url('chunks/assets/font_53396e99126b24b0a4e74769.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.364746;font-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_c00300{transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.205729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205729,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m23_c00300{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{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_c00300{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314935,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.316489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316489,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353896,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.390351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390351,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls22_c00300{letter-spacing:-11.399850px;}
.ls2_c00300{letter-spacing:-10.561703px;}
.ls1e_c00300{letter-spacing:-10.267200px;}
.ls1c_c00300{letter-spacing:-8.914500px;}
.ls1d_c00300{letter-spacing:-8.175038px;}
.lsb_c00300{letter-spacing:-7.500375px;}
.lsf_c00300{letter-spacing:-7.426125px;}
.ls16_c00300{letter-spacing:-7.293600px;}
.ls15_c00300{letter-spacing:-7.277243px;}
.ls1a_c00300{letter-spacing:-6.685875px;}
.lsc_c00300{letter-spacing:-5.945625px;}
.ls14_c00300{letter-spacing:-5.889548px;}
.ls17_c00300{letter-spacing:-5.552775px;}
.ls10_c00300{letter-spacing:-5.401628px;}
.ls18_c00300{letter-spacing:-5.359200px;}
.ls9_c00300{letter-spacing:-5.196713px;}
.lsd_c00300{letter-spacing:-4.456463px;}
.ls27_c00300{letter-spacing:-4.333500px;}
.ls24_c00300{letter-spacing:-4.046288px;}
.lsa_c00300{letter-spacing:-3.717000px;}
.ls25_c00300{letter-spacing:-3.706973px;}
.ls21_c00300{letter-spacing:-3.148200px;}
.ls3_c00300{letter-spacing:-2.968875px;}
.ls28_c00300{letter-spacing:-2.566463px;}
.ls19_c00300{letter-spacing:-2.271878px;}
.ls8_c00300{letter-spacing:-2.230950px;}
.ls7_c00300{letter-spacing:-2.229413px;}
.ls6_c00300{letter-spacing:-1.489163px;}
.ls12_c00300{letter-spacing:-1.441103px;}
.ls23_c00300{letter-spacing:-0.850500px;}
.ls1_c00300{letter-spacing:-0.786713px;}
.ls4_c00300{letter-spacing:-0.740250px;}
.ls20_c00300{letter-spacing:-0.592905px;}
.ls5_c00300{letter-spacing:0.000000px;}
.ls1f_c00300{letter-spacing:1.485750px;}
.lse_c00300{letter-spacing:2.564100px;}
.ls26_c00300{letter-spacing:3.180975px;}
.ls29_c00300{letter-spacing:3.283800px;}
.ls1b_c00300{letter-spacing:3.588780px;}
.ls13_c00300{letter-spacing:6.514628px;}
.ls0_c00300{letter-spacing:6.685875px;}
.ls11_c00300{letter-spacing:31.068450px;}
.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;}
._13_c00300{margin-left:-23.349999px;}
._12_c00300{margin-left:-22.072555px;}
._14_c00300{margin-left:-14.474191px;}
._1b_c00300{margin-left:-8.465283px;}
._8_c00300{margin-left:-4.811239px;}
._5_c00300{margin-left:-2.904879px;}
._6_c00300{margin-left:-1.258455px;}
._9_c00300{width:1.042175px;}
._d_c00300{width:2.947122px;}
._a_c00300{width:4.063025px;}
._7_c00300{width:5.358209px;}
._b_c00300{width:7.338683px;}
._c_c00300{width:8.643957px;}
._1a_c00300{width:9.682476px;}
._e_c00300{width:10.784084px;}
._11_c00300{width:12.038349px;}
._0_c00300{width:13.323787px;}
._f_c00300{width:15.962684px;}
._10_c00300{width:18.043155px;}
._3_c00300{width:20.241038px;}
._1_c00300{width:21.408500px;}
._16_c00300{width:22.517404px;}
._2_c00300{width:24.256605px;}
._15_c00300{width:26.058018px;}
._4_c00300{width:27.842271px;}
._18_c00300{width:28.844684px;}
._17_c00300{width:31.395233px;}
._1c_c00300{width:34.351404px;}
._19_c00300{width:36.926024px;}
.fc0_c00300{color:transparent;}
.fse_c00300{font-size:24.000000px;}
.fs6_c00300{font-size:29.250000px;}
.fs8_c00300{font-size:39.750000px;}
.fs7_c00300{font-size:42.750000px;}
.fs15_c00300{font-size:52.500000px;}
.fsc_c00300{font-size:57.750000px;}
.fs11_c00300{font-size:70.500000px;}
.fs14_c00300{font-size:71.250000px;}
.fsa_c00300{font-size:72.000000px;}
.fs5_c00300{font-size:73.500000px;}
.fs9_c00300{font-size:74.250000px;}
.fs10_c00300{font-size:75.000000px;}
.fs12_c00300{font-size:76.500000px;}
.fsd_c00300{font-size:78.000000px;}
.fs0_c00300{font-size:78.750000px;}
.fs13_c00300{font-size:79.500000px;}
.fs1_c00300{font-size:80.250000px;}
.fs2_c00300{font-size:82.500000px;}
.fsb_c00300{font-size:83.250000px;}
.fs3_c00300{font-size:84.750000px;}
.fsf_c00300{font-size:93.000000px;}
.fs4_c00300{font-size:115.500000px;}
.y0_c00300{bottom:0.000000px;}
.y2a_c00300{bottom:185.761365px;}
.y29_c00300{bottom:215.280900px;}
.y28_c00300{bottom:244.800435px;}
.y27_c00300{bottom:274.680150px;}
.y26_c00300{bottom:274.680315px;}
.y25_c00300{bottom:304.199850px;}
.y24_c00300{bottom:304.200000px;}
.y23_c00300{bottom:333.719535px;}
.y22_c00300{bottom:333.720720px;}
.y21_c00300{bottom:363.600450px;}
.y20_c00300{bottom:393.119985px;}
.y1f_c00300{bottom:424.080000px;}
.y1e_c00300{bottom:432.359250px;}
.y1d_c00300{bottom:452.879520px;}
.y1c_c00300{bottom:452.880495px;}
.y1b_c00300{bottom:483.120390px;}
.y1a_c00300{bottom:512.639940px;}
.y19_c00300{bottom:542.879835px;}
.y17_c00300{bottom:571.857930px;}
.y18_c00300{bottom:571.859850px;}
.y16_c00300{bottom:601.918785px;}
.y15_c00300{bottom:660.599460px;}
.y14_c00300{bottom:690.479190px;}
.y13_c00300{bottom:720.719100px;}
.y12_c00300{bottom:753.119385px;}
.y11_c00300{bottom:780.477840px;}
.y10_c00300{bottom:810.719850px;}
.yf_c00300{bottom:840.599580px;}
.ye_c00300{bottom:870.119115px;}
.yd_c00300{bottom:900.719520px;}
.yc_c00300{bottom:900.719700px;}
.yb_c00300{bottom:930.239220px;}
.ya_c00300{bottom:930.239685px;}
.y9_c00300{bottom:959.759220px;}
.y7_c00300{bottom:989.278245px;}
.y8_c00300{bottom:989.278755px;}
.y6_c00300{bottom:1019.520270px;}
.y5_c00300{bottom:1019.520405px;}
.y4_c00300{bottom:1049.039925px;}
.y3_c00300{bottom:1079.279850px;}
.y2_c00300{bottom:1079.279895px;}
.y1_c00300{bottom:1139.039340px;}
.h10_c00300{height:23.718750px;}
.h8_c00300{height:30.506836px;}
.ha_c00300{height:41.458008px;}
.h9_c00300{height:44.586914px;}
.h1a_c00300{height:54.755859px;}
.he_c00300{height:56.678467px;}
.h16_c00300{height:57.073242px;}
.h19_c00300{height:58.201172px;}
.h13_c00300{height:73.529297px;}
.h18_c00300{height:74.311523px;}
.hc_c00300{height:75.093750px;}
.h12_c00300{height:75.585938px;}
.hf_c00300{height:76.552734px;}
.h7_c00300{height:76.658203px;}
.h14_c00300{height:77.097656px;}
.h1_c00300{height:77.288818px;}
.hb_c00300{height:77.440430px;}
.h2_c00300{height:78.760986px;}
.h17_c00300{height:79.365234px;}
.h15_c00300{height:80.121094px;}
.h6_c00300{height:80.876953px;}
.h3_c00300{height:80.969238px;}
.hd_c00300{height:82.274414px;}
.h4_c00300{height:83.177490px;}
.h11_c00300{height:96.996094px;}
.h5_c00300{height:120.462891px;}
.h0_c00300{height:1263.000000px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.xa_c00300{left:140.757525px;}
.x1_c00300{left:141.838950px;}
.x22_c00300{left:162.000000px;}
.x20_c00300{left:166.319250px;}
.x21_c00300{left:175.318800px;}
.xf_c00300{left:207.359850px;}
.x2_c00300{left:208.439250px;}
.x3_c00300{left:234.359850px;}
.x23_c00300{left:269.279850px;}
.x24_c00300{left:290.159385px;}
.x10_c00300{left:296.279850px;}
.x1e_c00300{left:303.118785px;}
.x11_c00300{left:311.038950px;}
.x1f_c00300{left:318.238785px;}
.x31_c00300{left:343.080000px;}
.x12_c00300{left:355.319250px;}
.xb_c00300{left:360.719535px;}
.x32_c00300{left:367.919535px;}
.xc_c00300{left:375.839535px;}
.x13_c00300{left:378.718530px;}
.x6_c00300{left:387.719565px;}
.x25_c00300{left:398.159415px;}
.x7_c00300{left:402.478635px;}
.x26_c00300{left:419.399820px;}
.x14_c00300{left:437.039385px;}
.x15_c00300{left:455.399235px;}
.xd_c00300{left:476.278800px;}
.x16_c00300{left:486.000000px;}
.x8_c00300{left:494.638500px;}
.xe_c00300{left:496.439670px;}
.x27_c00300{left:499.318770px;}
.x2d_c00300{left:501.479235px;}
.x2e_c00300{left:514.079400px;}
.x9_c00300{left:515.158770px;}
.x28_c00300{left:529.558635px;}
.x17_c00300{left:542.878920px;}
.x29_c00300{left:550.798920px;}
.x2f_c00300{left:586.798515px;}
.x2a_c00300{left:591.839535px;}
.x30_c00300{left:605.159820px;}
.x4_c00300{left:608.399820px;}
.x18_c00300{left:622.799520px;}
.x5_c00300{left:655.918350px;}
.x1a_c00300{left:657.358605px;}
.x2b_c00300{left:666.719100px;}
.x1b_c00300{left:675.000000px;}
.x19_c00300{left:678.239820px;}
.x2c_c00300{left:710.638545px;}
.x1c_c00300{left:733.319235px;}
.x1d_c00300{left:763.559100px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls22_c00300{letter-spacing:-10.133200pt;}
.ls2_c00300{letter-spacing:-9.388180pt;}
.ls1e_c00300{letter-spacing:-9.126400pt;}
.ls1c_c00300{letter-spacing:-7.924000pt;}
.ls1d_c00300{letter-spacing:-7.266700pt;}
.lsb_c00300{letter-spacing:-6.667000pt;}
.lsf_c00300{letter-spacing:-6.601000pt;}
.ls16_c00300{letter-spacing:-6.483200pt;}
.ls15_c00300{letter-spacing:-6.468660pt;}
.ls1a_c00300{letter-spacing:-5.943000pt;}
.lsc_c00300{letter-spacing:-5.285000pt;}
.ls14_c00300{letter-spacing:-5.235153pt;}
.ls17_c00300{letter-spacing:-4.935800pt;}
.ls10_c00300{letter-spacing:-4.801447pt;}
.ls18_c00300{letter-spacing:-4.763733pt;}
.ls9_c00300{letter-spacing:-4.619300pt;}
.lsd_c00300{letter-spacing:-3.961300pt;}
.ls27_c00300{letter-spacing:-3.852000pt;}
.ls24_c00300{letter-spacing:-3.596700pt;}
.lsa_c00300{letter-spacing:-3.304000pt;}
.ls25_c00300{letter-spacing:-3.295087pt;}
.ls21_c00300{letter-spacing:-2.798400pt;}
.ls3_c00300{letter-spacing:-2.639000pt;}
.ls28_c00300{letter-spacing:-2.281300pt;}
.ls19_c00300{letter-spacing:-2.019447pt;}
.ls8_c00300{letter-spacing:-1.983067pt;}
.ls7_c00300{letter-spacing:-1.981700pt;}
.ls6_c00300{letter-spacing:-1.323700pt;}
.ls12_c00300{letter-spacing:-1.280980pt;}
.ls23_c00300{letter-spacing:-0.756000pt;}
.ls1_c00300{letter-spacing:-0.699300pt;}
.ls4_c00300{letter-spacing:-0.658000pt;}
.ls20_c00300{letter-spacing:-0.527027pt;}
.ls5_c00300{letter-spacing:0.000000pt;}
.ls1f_c00300{letter-spacing:1.320667pt;}
.lse_c00300{letter-spacing:2.279200pt;}
.ls26_c00300{letter-spacing:2.827533pt;}
.ls29_c00300{letter-spacing:2.918933pt;}
.ls1b_c00300{letter-spacing:3.190027pt;}
.ls13_c00300{letter-spacing:5.790780pt;}
.ls0_c00300{letter-spacing:5.943000pt;}
.ls11_c00300{letter-spacing:27.616400pt;}
.ws0_c00300{word-spacing:0.000000pt;}
._13_c00300{margin-left:-20.755555pt;}
._12_c00300{margin-left:-19.620049pt;}
._14_c00300{margin-left:-12.865947pt;}
._1b_c00300{margin-left:-7.524696pt;}
._8_c00300{margin-left:-4.276657pt;}
._5_c00300{margin-left:-2.582115pt;}
._6_c00300{margin-left:-1.118626pt;}
._9_c00300{width:0.926377pt;}
._d_c00300{width:2.619664pt;}
._a_c00300{width:3.611577pt;}
._7_c00300{width:4.762853pt;}
._b_c00300{width:6.523274pt;}
._c_c00300{width:7.683517pt;}
._1a_c00300{width:8.606645pt;}
._e_c00300{width:9.585853pt;}
._11_c00300{width:10.700755pt;}
._0_c00300{width:11.843366pt;}
._f_c00300{width:14.189053pt;}
._10_c00300{width:16.038360pt;}
._3_c00300{width:17.992034pt;}
._1_c00300{width:19.029777pt;}
._16_c00300{width:20.015470pt;}
._2_c00300{width:21.561426pt;}
._15_c00300{width:23.162683pt;}
._4_c00300{width:24.748685pt;}
._18_c00300{width:25.639719pt;}
._17_c00300{width:27.906874pt;}
._1c_c00300{width:30.534581pt;}
._19_c00300{width:32.823132pt;}
.fse_c00300{font-size:21.333333pt;}
.fs6_c00300{font-size:26.000000pt;}
.fs8_c00300{font-size:35.333333pt;}
.fs7_c00300{font-size:38.000000pt;}
.fs15_c00300{font-size:46.666667pt;}
.fsc_c00300{font-size:51.333333pt;}
.fs11_c00300{font-size:62.666667pt;}
.fs14_c00300{font-size:63.333333pt;}
.fsa_c00300{font-size:64.000000pt;}
.fs5_c00300{font-size:65.333333pt;}
.fs9_c00300{font-size:66.000000pt;}
.fs10_c00300{font-size:66.666667pt;}
.fs12_c00300{font-size:68.000000pt;}
.fsd_c00300{font-size:69.333333pt;}
.fs0_c00300{font-size:70.000000pt;}
.fs13_c00300{font-size:70.666667pt;}
.fs1_c00300{font-size:71.333333pt;}
.fs2_c00300{font-size:73.333333pt;}
.fsb_c00300{font-size:74.000000pt;}
.fs3_c00300{font-size:75.333333pt;}
.fsf_c00300{font-size:82.666667pt;}
.fs4_c00300{font-size:102.666667pt;}
.y0_c00300{bottom:0.000000pt;}
.y2a_c00300{bottom:165.121213pt;}
.y29_c00300{bottom:191.360800pt;}
.y28_c00300{bottom:217.600387pt;}
.y27_c00300{bottom:244.160133pt;}
.y26_c00300{bottom:244.160280pt;}
.y25_c00300{bottom:270.399867pt;}
.y24_c00300{bottom:270.400000pt;}
.y23_c00300{bottom:296.639587pt;}
.y22_c00300{bottom:296.640640pt;}
.y21_c00300{bottom:323.200400pt;}
.y20_c00300{bottom:349.439987pt;}
.y1f_c00300{bottom:376.960000pt;}
.y1e_c00300{bottom:384.319333pt;}
.y1d_c00300{bottom:402.559573pt;}
.y1c_c00300{bottom:402.560440pt;}
.y1b_c00300{bottom:429.440347pt;}
.y1a_c00300{bottom:455.679947pt;}
.y19_c00300{bottom:482.559853pt;}
.y17_c00300{bottom:508.318160pt;}
.y18_c00300{bottom:508.319867pt;}
.y16_c00300{bottom:535.038920pt;}
.y15_c00300{bottom:587.199520pt;}
.y14_c00300{bottom:613.759280pt;}
.y13_c00300{bottom:640.639200pt;}
.y12_c00300{bottom:669.439453pt;}
.y11_c00300{bottom:693.758080pt;}
.y10_c00300{bottom:720.639867pt;}
.yf_c00300{bottom:747.199627pt;}
.ye_c00300{bottom:773.439213pt;}
.yd_c00300{bottom:800.639573pt;}
.yc_c00300{bottom:800.639733pt;}
.yb_c00300{bottom:826.879307pt;}
.ya_c00300{bottom:826.879720pt;}
.y9_c00300{bottom:853.119307pt;}
.y7_c00300{bottom:879.358440pt;}
.y8_c00300{bottom:879.358893pt;}
.y6_c00300{bottom:906.240240pt;}
.y5_c00300{bottom:906.240360pt;}
.y4_c00300{bottom:932.479933pt;}
.y3_c00300{bottom:959.359867pt;}
.y2_c00300{bottom:959.359907pt;}
.y1_c00300{bottom:1012.479413pt;}
.h10_c00300{height:21.083333pt;}
.h8_c00300{height:27.117188pt;}
.ha_c00300{height:36.851562pt;}
.h9_c00300{height:39.632812pt;}
.h1a_c00300{height:48.671875pt;}
.he_c00300{height:50.380859pt;}
.h16_c00300{height:50.731771pt;}
.h19_c00300{height:51.734375pt;}
.h13_c00300{height:65.359375pt;}
.h18_c00300{height:66.054688pt;}
.hc_c00300{height:66.750000pt;}
.h12_c00300{height:67.187500pt;}
.hf_c00300{height:68.046875pt;}
.h7_c00300{height:68.140625pt;}
.h14_c00300{height:68.531250pt;}
.h1_c00300{height:68.701172pt;}
.hb_c00300{height:68.835938pt;}
.h2_c00300{height:70.009766pt;}
.h17_c00300{height:70.546875pt;}
.h15_c00300{height:71.218750pt;}
.h6_c00300{height:71.890625pt;}
.h3_c00300{height:71.972656pt;}
.hd_c00300{height:73.132813pt;}
.h4_c00300{height:73.935547pt;}
.h11_c00300{height:86.218750pt;}
.h5_c00300{height:107.078125pt;}
.h0_c00300{height:1122.666667pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.xa_c00300{left:125.117800pt;}
.x1_c00300{left:126.079067pt;}
.x22_c00300{left:144.000000pt;}
.x20_c00300{left:147.839333pt;}
.x21_c00300{left:155.838933pt;}
.xf_c00300{left:184.319867pt;}
.x2_c00300{left:185.279333pt;}
.x3_c00300{left:208.319867pt;}
.x23_c00300{left:239.359867pt;}
.x24_c00300{left:257.919453pt;}
.x10_c00300{left:263.359867pt;}
.x1e_c00300{left:269.438920pt;}
.x11_c00300{left:276.479067pt;}
.x1f_c00300{left:282.878920pt;}
.x31_c00300{left:304.960000pt;}
.x12_c00300{left:315.839333pt;}
.xb_c00300{left:320.639587pt;}
.x32_c00300{left:327.039587pt;}
.xc_c00300{left:334.079587pt;}
.x13_c00300{left:336.638693pt;}
.x6_c00300{left:344.639613pt;}
.x25_c00300{left:353.919480pt;}
.x7_c00300{left:357.758787pt;}
.x26_c00300{left:372.799840pt;}
.x14_c00300{left:388.479453pt;}
.x15_c00300{left:404.799320pt;}
.xd_c00300{left:423.358933pt;}
.x16_c00300{left:432.000000pt;}
.x8_c00300{left:439.678667pt;}
.xe_c00300{left:441.279707pt;}
.x27_c00300{left:443.838907pt;}
.x2d_c00300{left:445.759320pt;}
.x2e_c00300{left:456.959467pt;}
.x9_c00300{left:457.918907pt;}
.x28_c00300{left:470.718787pt;}
.x17_c00300{left:482.559040pt;}
.x29_c00300{left:489.599040pt;}
.x2f_c00300{left:521.598680pt;}
.x2a_c00300{left:526.079587pt;}
.x30_c00300{left:537.919840pt;}
.x4_c00300{left:540.799840pt;}
.x18_c00300{left:553.599573pt;}
.x5_c00300{left:583.038533pt;}
.x1a_c00300{left:584.318760pt;}
.x2b_c00300{left:592.639200pt;}
.x1b_c00300{left:600.000000pt;}
.x19_c00300{left:602.879840pt;}
.x2c_c00300{left:631.678707pt;}
.x1c_c00300{left:651.839320pt;}
.x1d_c00300{left:678.719200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88e849d8ced28080cf4f8704.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_5288113dc8106ad51084c999.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_275fcb4beb651a7bc0b64963.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_a5e4296f7f6bed44da850be6.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_fcc78783075465189df3c729.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00301;src:url('chunks/assets/font_3ae54e281440833cf94dfb26.woff2')format("woff");}.ff6_c00301{font-family:ff6_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:ff7_c00301;src:url('chunks/assets/font_806f3b9650df79ab55bdd4f6.woff2')format("woff");}.ff7_c00301{font-family:ff7_c00301;line-height:1.364746;font-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_c00301{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m20_c00301{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222826,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m29_c00301{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m21_c00301{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m2b_c00301{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283898,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);}
.m1d_c00301{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.352041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352041,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.378472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378472,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395349,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.439815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439815,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.618056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618056,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.744186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744186,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls10_c00301{letter-spacing:-21.978000px;}
.ls25_c00301{letter-spacing:-16.154400px;}
.ls27_c00301{letter-spacing:-8.914500px;}
.ls11_c00301{letter-spacing:-7.808250px;}
.ls7_c00301{letter-spacing:-7.426125px;}
.ls2f_c00301{letter-spacing:-6.685875px;}
.ls2b_c00301{letter-spacing:-6.160478px;}
.ls5_c00301{letter-spacing:-5.945625px;}
.ls15_c00301{letter-spacing:-5.889150px;}
.ls16_c00301{letter-spacing:-5.291903px;}
.lsa_c00301{letter-spacing:-5.196713px;}
.ls9_c00301{letter-spacing:-4.456463px;}
.ls26_c00301{letter-spacing:-4.422600px;}
.ls12_c00301{letter-spacing:-4.233600px;}
.ls14_c00301{letter-spacing:-3.835350px;}
.ls0_c00301{letter-spacing:-3.717000px;}
.ls17_c00301{letter-spacing:-3.444000px;}
.ls2a_c00301{letter-spacing:-3.195075px;}
.ls24_c00301{letter-spacing:-3.025425px;}
.ls20_c00301{letter-spacing:-2.969460px;}
.ls1_c00301{letter-spacing:-2.968875px;}
.ls2e_c00301{letter-spacing:-2.858250px;}
.ls18_c00301{letter-spacing:-2.715450px;}
.ls2_c00301{letter-spacing:-2.229413px;}
.ls8_c00301{letter-spacing:-2.226000px;}
.ls13_c00301{letter-spacing:-1.794375px;}
.ls2c_c00301{letter-spacing:-1.545180px;}
.ls6_c00301{letter-spacing:-1.489163px;}
.ls1c_c00301{letter-spacing:-1.353000px;}
.lsd_c00301{letter-spacing:-0.910170px;}
.ls4_c00301{letter-spacing:-0.740250px;}
.ls3_c00301{letter-spacing:0.000000px;}
.ls22_c00301{letter-spacing:0.549548px;}
.ls1d_c00301{letter-spacing:0.580650px;}
.ls1f_c00301{letter-spacing:0.608175px;}
.ls19_c00301{letter-spacing:0.658883px;}
.ls29_c00301{letter-spacing:0.819788px;}
.lsf_c00301{letter-spacing:2.028945px;}
.lse_c00301{letter-spacing:2.131500px;}
.lsb_c00301{letter-spacing:2.657700px;}
.ls23_c00301{letter-spacing:3.239775px;}
.ls2d_c00301{letter-spacing:3.588780px;}
.ls28_c00301{letter-spacing:3.772440px;}
.ls21_c00301{letter-spacing:3.967800px;}
.lsc_c00301{letter-spacing:4.743653px;}
.ls1e_c00301{letter-spacing:6.737228px;}
.ls1b_c00301{letter-spacing:8.682097px;}
.ls1a_c00301{letter-spacing:11.315497px;}
.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;}
._7_c00301{margin-left:-5.591101px;}
._17_c00301{margin-left:-2.303928px;}
._1a_c00301{margin-left:-1.198025px;}
._18_c00301{width:1.269331px;}
._5_c00301{width:2.423910px;}
._4_c00301{width:3.763091px;}
._2_c00301{width:5.356085px;}
._3_c00301{width:7.167795px;}
._6_c00301{width:8.237191px;}
._0_c00301{width:10.206535px;}
._19_c00301{width:11.354309px;}
._a_c00301{width:12.457983px;}
._1_c00301{width:13.482030px;}
._8_c00301{width:14.888906px;}
._16_c00301{width:16.219276px;}
._13_c00301{width:18.467202px;}
._14_c00301{width:20.016318px;}
._10_c00301{width:21.510830px;}
._9_c00301{width:22.811839px;}
._12_c00301{width:24.414045px;}
._15_c00301{width:26.022254px;}
._1b_c00301{width:28.407042px;}
._d_c00301{width:29.429202px;}
._f_c00301{width:30.807802px;}
._11_c00301{width:33.641970px;}
._1c_c00301{width:36.030205px;}
._c_c00301{width:37.532101px;}
._1d_c00301{width:39.092288px;}
._1e_c00301{width:40.728965px;}
._e_c00301{width:41.871524px;}
._b_c00301{width:44.170667px;}
.fc0_c00301{color:transparent;}
.fs8_c00301{font-size:27.000000px;}
.fs4_c00301{font-size:28.500000px;}
.fs6_c00301{font-size:30.000000px;}
.fs7_c00301{font-size:32.250000px;}
.fsb_c00301{font-size:33.750000px;}
.fsa_c00301{font-size:34.500000px;}
.fs1a_c00301{font-size:35.250000px;}
.fsd_c00301{font-size:36.000000px;}
.fs9_c00301{font-size:36.750000px;}
.fs17_c00301{font-size:38.250000px;}
.fs16_c00301{font-size:39.750000px;}
.fsf_c00301{font-size:40.500000px;}
.fse_c00301{font-size:41.250000px;}
.fs10_c00301{font-size:42.000000px;}
.fs13_c00301{font-size:42.750000px;}
.fsc_c00301{font-size:43.500000px;}
.fs12_c00301{font-size:44.250000px;}
.fs19_c00301{font-size:51.000000px;}
.fs1b_c00301{font-size:52.500000px;}
.fs18_c00301{font-size:54.000000px;}
.fs15_c00301{font-size:59.250000px;}
.fs14_c00301{font-size:61.500000px;}
.fs11_c00301{font-size:64.500000px;}
.fs5_c00301{font-size:69.000000px;}
.fs20_c00301{font-size:77.250000px;}
.fs2_c00301{font-size:78.000000px;}
.fs0_c00301{font-size:78.750000px;}
.fs3_c00301{font-size:79.500000px;}
.fs1_c00301{font-size:80.250000px;}
.fs1d_c00301{font-size:81.000000px;}
.fs1c_c00301{font-size:82.500000px;}
.fs1e_c00301{font-size:84.000000px;}
.fs1f_c00301{font-size:84.750000px;}
.y0_c00301{bottom:0.000000px;}
.y2a_c00301{bottom:242.999610px;}
.y2b_c00301{bottom:243.000000px;}
.y29_c00301{bottom:263.519850px;}
.y28_c00301{bottom:284.760750px;}
.y27_c00301{bottom:284.761935px;}
.y26_c00301{bottom:306.361215px;}
.y24_c00301{bottom:327.239385px;}
.y25_c00301{bottom:327.239850px;}
.y22_c00301{bottom:348.479205px;}
.y23_c00301{bottom:348.480285px;}
.y21_c00301{bottom:369.720135px;}
.y20_c00301{bottom:390.961035px;}
.y1f_c00301{bottom:412.560750px;}
.y1e_c00301{bottom:412.560765px;}
.y1c_c00301{bottom:433.799085px;}
.y1d_c00301{bottom:433.799565px;}
.y1b_c00301{bottom:455.039985px;}
.y19_c00301{bottom:477.000000px;}
.y1a_c00301{bottom:477.000600px;}
.y18_c00301{bottom:536.401065px;}
.y17_c00301{bottom:565.920600px;}
.y16_c00301{bottom:565.920780px;}
.y15_c00301{bottom:595.440315px;}
.y14_c00301{bottom:624.959970px;}
.y13_c00301{bottom:624.961005px;}
.y12_c00301{bottom:654.840735px;}
.y10_c00301{bottom:684.360210px;}
.y11_c00301{bottom:684.360255px;}
.yf_c00301{bottom:714.600135px;}
.ye_c00301{bottom:744.840135px;}
.yd_c00301{bottom:752.400885px;}
.yc_c00301{bottom:804.240630px;}
.yb_c00301{bottom:863.641680px;}
.ya_c00301{bottom:893.521410px;}
.y9_c00301{bottom:923.401125px;}
.y8_c00301{bottom:953.280855px;}
.y7_c00301{bottom:953.281170px;}
.y6_c00301{bottom:983.160900px;}
.y4_c00301{bottom:1013.039835px;}
.y5_c00301{bottom:1013.040615px;}
.y3_c00301{bottom:1042.200990px;}
.y2_c00301{bottom:1101.961395px;}
.y1_c00301{bottom:1132.559685px;}
.h9_c00301{height:26.683594px;}
.h5_c00301{height:29.724609px;}
.h7_c00301{height:31.289062px;}
.hc_c00301{height:33.354492px;}
.h8_c00301{height:33.635742px;}
.h11_c00301{height:34.095703px;}
.h1c_c00301{height:34.595947px;}
.hb_c00301{height:35.982422px;}
.ha_c00301{height:37.037109px;}
.h19_c00301{height:37.540283px;}
.he_c00301{height:37.546875px;}
.h18_c00301{height:39.012451px;}
.hf_c00301{height:41.572266px;}
.h15_c00301{height:41.956787px;}
.h10_c00301{height:42.240234px;}
.hd_c00301{height:42.990234px;}
.h14_c00301{height:43.428955px;}
.h12_c00301{height:43.804688px;}
.h1b_c00301{height:50.053711px;}
.h1d_c00301{height:51.525879px;}
.h1a_c00301{height:52.998047px;}
.h17_c00301{height:58.150635px;}
.h16_c00301{height:60.358887px;}
.h13_c00301{height:65.003906px;}
.h6_c00301{height:71.964844px;}
.h22_c00301{height:75.816650px;}
.h3_c00301{height:76.552734px;}
.h1_c00301{height:77.288818px;}
.h4_c00301{height:78.024902px;}
.h2_c00301{height:78.760986px;}
.h1f_c00301{height:79.497070px;}
.h1e_c00301{height:80.969238px;}
.h20_c00301{height:82.441406px;}
.h21_c00301{height:83.177490px;}
.h0_c00301{height:1263.000000px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.xb_c00301{left:141.119685px;}
.x1_c00301{left:142.199850px;}
.xc_c00301{left:153.359850px;}
.x4_c00301{left:166.678500px;}
.xd_c00301{left:168.838950px;}
.x20_c00301{left:186.839565px;}
.x7_c00301{left:193.319250px;}
.x2a_c00301{left:196.559100px;}
.x26_c00301{left:198.002010px;}
.x22_c00301{left:223.199850px;}
.x21_c00301{left:225.719535px;}
.x1a_c00301{left:227.878350px;}
.x18_c00301{left:229.318800px;}
.x8_c00301{left:235.439250px;}
.x1b_c00301{left:244.438635px;}
.xe_c00301{left:272.519685px;}
.xf_c00301{left:295.559685px;}
.x9_c00301{left:338.038950px;}
.xa_c00301{left:359.638530px;}
.x2_c00301{left:374.399235px;}
.x3a_c00301{left:382.319235px;}
.x3_c00301{left:388.798920px;}
.x3b_c00301{left:395.998950px;}
.x2b_c00301{left:413.638500px;}
.x10_c00301{left:430.198785px;}
.x2c_c00301{left:433.799565px;}
.x23_c00301{left:444.239220px;}
.x11_c00301{left:453.238770px;}
.x2f_c00301{left:455.758530px;}
.x2d_c00301{left:481.319820px;}
.x30_c00301{left:484.559685px;}
.x12_c00301{left:504.719100px;}
.x19_c00301{left:505.798515px;}
.x2e_c00301{left:517.678530px;}
.x13_c00301{left:543.599070px;}
.x38_c00301{left:573.118785px;}
.x33_c00301{left:585.359850px;}
.x39_c00301{left:587.518620px;}
.x1c_c00301{left:598.678530px;}
.x34_c00301{left:612.359850px;}
.x14_c00301{left:617.039985px;}
.x1d_c00301{left:622.438620px;}
.x5_c00301{left:631.078770px;}
.x15_c00301{left:636.838530px;}
.x35_c00301{left:639.359850px;}
.x6_c00301{left:646.198785px;}
.x31_c00301{left:653.039385px;}
.x32_c00301{left:671.399235px;}
.x27_c00301{left:673.198785px;}
.x28_c00301{left:689.038920px;}
.x24_c00301{left:703.799520px;}
.x16_c00301{left:716.038920px;}
.x25_c00301{left:725.758530px;}
.x17_c00301{left:739.798920px;}
.x36_c00301{left:744.838530px;}
.x1e_c00301{left:748.798560px;}
.x37_c00301{left:760.678530px;}
.x1f_c00301{left:762.479685px;}
.x29_c00301{left:770.038965px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls10_c00301{letter-spacing:-19.536000pt;}
.ls25_c00301{letter-spacing:-14.359467pt;}
.ls27_c00301{letter-spacing:-7.924000pt;}
.ls11_c00301{letter-spacing:-6.940667pt;}
.ls7_c00301{letter-spacing:-6.601000pt;}
.ls2f_c00301{letter-spacing:-5.943000pt;}
.ls2b_c00301{letter-spacing:-5.475980pt;}
.ls5_c00301{letter-spacing:-5.285000pt;}
.ls15_c00301{letter-spacing:-5.234800pt;}
.ls16_c00301{letter-spacing:-4.703913pt;}
.lsa_c00301{letter-spacing:-4.619300pt;}
.ls9_c00301{letter-spacing:-3.961300pt;}
.ls26_c00301{letter-spacing:-3.931200pt;}
.ls12_c00301{letter-spacing:-3.763200pt;}
.ls14_c00301{letter-spacing:-3.409200pt;}
.ls0_c00301{letter-spacing:-3.304000pt;}
.ls17_c00301{letter-spacing:-3.061333pt;}
.ls2a_c00301{letter-spacing:-2.840067pt;}
.ls24_c00301{letter-spacing:-2.689267pt;}
.ls20_c00301{letter-spacing:-2.639520pt;}
.ls1_c00301{letter-spacing:-2.639000pt;}
.ls2e_c00301{letter-spacing:-2.540667pt;}
.ls18_c00301{letter-spacing:-2.413733pt;}
.ls2_c00301{letter-spacing:-1.981700pt;}
.ls8_c00301{letter-spacing:-1.978667pt;}
.ls13_c00301{letter-spacing:-1.595000pt;}
.ls2c_c00301{letter-spacing:-1.373493pt;}
.ls6_c00301{letter-spacing:-1.323700pt;}
.ls1c_c00301{letter-spacing:-1.202667pt;}
.lsd_c00301{letter-spacing:-0.809040pt;}
.ls4_c00301{letter-spacing:-0.658000pt;}
.ls3_c00301{letter-spacing:0.000000pt;}
.ls22_c00301{letter-spacing:0.488487pt;}
.ls1d_c00301{letter-spacing:0.516133pt;}
.ls1f_c00301{letter-spacing:0.540600pt;}
.ls19_c00301{letter-spacing:0.585673pt;}
.ls29_c00301{letter-spacing:0.728700pt;}
.lsf_c00301{letter-spacing:1.803507pt;}
.lse_c00301{letter-spacing:1.894667pt;}
.lsb_c00301{letter-spacing:2.362400pt;}
.ls23_c00301{letter-spacing:2.879800pt;}
.ls2d_c00301{letter-spacing:3.190027pt;}
.ls28_c00301{letter-spacing:3.353280pt;}
.ls21_c00301{letter-spacing:3.526933pt;}
.lsc_c00301{letter-spacing:4.216580pt;}
.ls1e_c00301{letter-spacing:5.988647pt;}
.ls1b_c00301{letter-spacing:7.717420pt;}
.ls1a_c00301{letter-spacing:10.058220pt;}
.ws0_c00301{word-spacing:0.000000pt;}
._7_c00301{margin-left:-4.969868pt;}
._17_c00301{margin-left:-2.047936pt;}
._1a_c00301{margin-left:-1.064911pt;}
._18_c00301{width:1.128294pt;}
._5_c00301{width:2.154587pt;}
._4_c00301{width:3.344970pt;}
._2_c00301{width:4.760964pt;}
._3_c00301{width:6.371374pt;}
._6_c00301{width:7.321947pt;}
._0_c00301{width:9.072475pt;}
._19_c00301{width:10.092719pt;}
._a_c00301{width:11.073762pt;}
._1_c00301{width:11.984026pt;}
._8_c00301{width:13.234583pt;}
._16_c00301{width:14.417134pt;}
._13_c00301{width:16.415291pt;}
._14_c00301{width:17.792283pt;}
._10_c00301{width:19.120738pt;}
._9_c00301{width:20.277191pt;}
._12_c00301{width:21.701374pt;}
._15_c00301{width:23.130892pt;}
._1b_c00301{width:25.250704pt;}
._d_c00301{width:26.159291pt;}
._f_c00301{width:27.384713pt;}
._11_c00301{width:29.903974pt;}
._1c_c00301{width:32.026849pt;}
._c_c00301{width:33.361868pt;}
._1d_c00301{width:34.748700pt;}
._1e_c00301{width:36.203525pt;}
._e_c00301{width:37.219132pt;}
._b_c00301{width:39.262815pt;}
.fs8_c00301{font-size:24.000000pt;}
.fs4_c00301{font-size:25.333333pt;}
.fs6_c00301{font-size:26.666667pt;}
.fs7_c00301{font-size:28.666667pt;}
.fsb_c00301{font-size:30.000000pt;}
.fsa_c00301{font-size:30.666667pt;}
.fs1a_c00301{font-size:31.333333pt;}
.fsd_c00301{font-size:32.000000pt;}
.fs9_c00301{font-size:32.666667pt;}
.fs17_c00301{font-size:34.000000pt;}
.fs16_c00301{font-size:35.333333pt;}
.fsf_c00301{font-size:36.000000pt;}
.fse_c00301{font-size:36.666667pt;}
.fs10_c00301{font-size:37.333333pt;}
.fs13_c00301{font-size:38.000000pt;}
.fsc_c00301{font-size:38.666667pt;}
.fs12_c00301{font-size:39.333333pt;}
.fs19_c00301{font-size:45.333333pt;}
.fs1b_c00301{font-size:46.666667pt;}
.fs18_c00301{font-size:48.000000pt;}
.fs15_c00301{font-size:52.666667pt;}
.fs14_c00301{font-size:54.666667pt;}
.fs11_c00301{font-size:57.333333pt;}
.fs5_c00301{font-size:61.333333pt;}
.fs20_c00301{font-size:68.666667pt;}
.fs2_c00301{font-size:69.333333pt;}
.fs0_c00301{font-size:70.000000pt;}
.fs3_c00301{font-size:70.666667pt;}
.fs1_c00301{font-size:71.333333pt;}
.fs1d_c00301{font-size:72.000000pt;}
.fs1c_c00301{font-size:73.333333pt;}
.fs1e_c00301{font-size:74.666667pt;}
.fs1f_c00301{font-size:75.333333pt;}
.y0_c00301{bottom:0.000000pt;}
.y2a_c00301{bottom:215.999653pt;}
.y2b_c00301{bottom:216.000000pt;}
.y29_c00301{bottom:234.239867pt;}
.y28_c00301{bottom:253.120667pt;}
.y27_c00301{bottom:253.121720pt;}
.y26_c00301{bottom:272.321080pt;}
.y24_c00301{bottom:290.879453pt;}
.y25_c00301{bottom:290.879867pt;}
.y22_c00301{bottom:309.759293pt;}
.y23_c00301{bottom:309.760253pt;}
.y21_c00301{bottom:328.640120pt;}
.y20_c00301{bottom:347.520920pt;}
.y1f_c00301{bottom:366.720667pt;}
.y1e_c00301{bottom:366.720680pt;}
.y1c_c00301{bottom:385.599187pt;}
.y1d_c00301{bottom:385.599613pt;}
.y1b_c00301{bottom:404.479987pt;}
.y19_c00301{bottom:424.000000pt;}
.y1a_c00301{bottom:424.000533pt;}
.y18_c00301{bottom:476.800947pt;}
.y17_c00301{bottom:503.040533pt;}
.y16_c00301{bottom:503.040693pt;}
.y15_c00301{bottom:529.280280pt;}
.y14_c00301{bottom:555.519973pt;}
.y13_c00301{bottom:555.520893pt;}
.y12_c00301{bottom:582.080653pt;}
.y10_c00301{bottom:608.320187pt;}
.y11_c00301{bottom:608.320227pt;}
.yf_c00301{bottom:635.200120pt;}
.ye_c00301{bottom:662.080120pt;}
.yd_c00301{bottom:668.800787pt;}
.yc_c00301{bottom:714.880560pt;}
.yb_c00301{bottom:767.681493pt;}
.ya_c00301{bottom:794.241253pt;}
.y9_c00301{bottom:820.801000pt;}
.y8_c00301{bottom:847.360760pt;}
.y7_c00301{bottom:847.361040pt;}
.y6_c00301{bottom:873.920800pt;}
.y4_c00301{bottom:900.479853pt;}
.y5_c00301{bottom:900.480547pt;}
.y3_c00301{bottom:926.400880pt;}
.y2_c00301{bottom:979.521240pt;}
.y1_c00301{bottom:1006.719720pt;}
.h9_c00301{height:23.718750pt;}
.h5_c00301{height:26.421875pt;}
.h7_c00301{height:27.812500pt;}
.hc_c00301{height:29.648437pt;}
.h8_c00301{height:29.898438pt;}
.h11_c00301{height:30.307292pt;}
.h1c_c00301{height:30.751953pt;}
.hb_c00301{height:31.984375pt;}
.ha_c00301{height:32.921875pt;}
.h19_c00301{height:33.369141pt;}
.he_c00301{height:33.375000pt;}
.h18_c00301{height:34.677734pt;}
.hf_c00301{height:36.953125pt;}
.h15_c00301{height:37.294922pt;}
.h10_c00301{height:37.546875pt;}
.hd_c00301{height:38.213542pt;}
.h14_c00301{height:38.603516pt;}
.h12_c00301{height:38.937500pt;}
.h1b_c00301{height:44.492188pt;}
.h1d_c00301{height:45.800781pt;}
.h1a_c00301{height:47.109375pt;}
.h17_c00301{height:51.689453pt;}
.h16_c00301{height:53.652344pt;}
.h13_c00301{height:57.781250pt;}
.h6_c00301{height:63.968750pt;}
.h22_c00301{height:67.392578pt;}
.h3_c00301{height:68.046875pt;}
.h1_c00301{height:68.701172pt;}
.h4_c00301{height:69.355469pt;}
.h2_c00301{height:70.009766pt;}
.h1f_c00301{height:70.664062pt;}
.h1e_c00301{height:71.972656pt;}
.h20_c00301{height:73.281250pt;}
.h21_c00301{height:73.935547pt;}
.h0_c00301{height:1122.666667pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.xb_c00301{left:125.439720pt;}
.x1_c00301{left:126.399867pt;}
.xc_c00301{left:136.319867pt;}
.x4_c00301{left:148.158667pt;}
.xd_c00301{left:150.079067pt;}
.x20_c00301{left:166.079613pt;}
.x7_c00301{left:171.839333pt;}
.x2a_c00301{left:174.719200pt;}
.x26_c00301{left:176.001787pt;}
.x22_c00301{left:198.399867pt;}
.x21_c00301{left:200.639587pt;}
.x1a_c00301{left:202.558533pt;}
.x18_c00301{left:203.838933pt;}
.x8_c00301{left:209.279333pt;}
.x1b_c00301{left:217.278787pt;}
.xe_c00301{left:242.239720pt;}
.xf_c00301{left:262.719720pt;}
.x9_c00301{left:300.479067pt;}
.xa_c00301{left:319.678693pt;}
.x2_c00301{left:332.799320pt;}
.x3a_c00301{left:339.839320pt;}
.x3_c00301{left:345.599040pt;}
.x3b_c00301{left:351.999067pt;}
.x2b_c00301{left:367.678667pt;}
.x10_c00301{left:382.398920pt;}
.x2c_c00301{left:385.599613pt;}
.x23_c00301{left:394.879307pt;}
.x11_c00301{left:402.878907pt;}
.x2f_c00301{left:405.118693pt;}
.x2d_c00301{left:427.839840pt;}
.x30_c00301{left:430.719720pt;}
.x12_c00301{left:448.639200pt;}
.x19_c00301{left:449.598680pt;}
.x2e_c00301{left:460.158693pt;}
.x13_c00301{left:483.199173pt;}
.x38_c00301{left:509.438920pt;}
.x33_c00301{left:520.319867pt;}
.x39_c00301{left:522.238773pt;}
.x1c_c00301{left:532.158693pt;}
.x34_c00301{left:544.319867pt;}
.x14_c00301{left:548.479987pt;}
.x1d_c00301{left:553.278773pt;}
.x5_c00301{left:560.958907pt;}
.x15_c00301{left:566.078693pt;}
.x35_c00301{left:568.319867pt;}
.x6_c00301{left:574.398920pt;}
.x31_c00301{left:580.479453pt;}
.x32_c00301{left:596.799320pt;}
.x27_c00301{left:598.398920pt;}
.x28_c00301{left:612.479040pt;}
.x24_c00301{left:625.599573pt;}
.x16_c00301{left:636.479040pt;}
.x25_c00301{left:645.118693pt;}
.x17_c00301{left:657.599040pt;}
.x36_c00301{left:662.078693pt;}
.x1e_c00301{left:665.598720pt;}
.x37_c00301{left:676.158693pt;}
.x1f_c00301{left:677.759720pt;}
.x29_c00301{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_015ef78fe93a707791e12b66.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_5a57aec2df893424842e72ea.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_6122c98ace5c447b5bdb3bcf.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_009336cf94a358c6f15fe45b.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_8e58c3c966c1356c5696d19f.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_ee9841b4d0c74f5726f4eb8a.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00302;src:url('chunks/assets/font_3617de0a455f782251b0cc2c.woff2')format("woff");}.ff7_c00302{font-family:ff7_c00302;line-height:1.364746;font-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_c00302{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{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);}
.m1_c00302{transform:matrix(0.198416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198416,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2a_c00302{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m26_c00302{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{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_c00302{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m0_c00302{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.552632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552632,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.lsa_c00302{letter-spacing:-16.242075px;}
.lsc_c00302{letter-spacing:-16.095750px;}
.ls18_c00302{letter-spacing:-14.508450px;}
.ls13_c00302{letter-spacing:-12.687675px;}
.ls22_c00302{letter-spacing:-12.678750px;}
.ls1e_c00302{letter-spacing:-8.249700px;}
.ls11_c00302{letter-spacing:-8.175038px;}
.lse_c00302{letter-spacing:-7.426125px;}
.ls1c_c00302{letter-spacing:-6.876623px;}
.ls12_c00302{letter-spacing:-6.685875px;}
.ls15_c00302{letter-spacing:-6.007838px;}
.ls16_c00302{letter-spacing:-5.999550px;}
.ls25_c00302{letter-spacing:-5.999400px;}
.ls20_c00302{letter-spacing:-5.950950px;}
.ls2_c00302{letter-spacing:-5.945625px;}
.ls1_c00302{letter-spacing:-5.196713px;}
.ls2b_c00302{letter-spacing:-5.140800px;}
.ls5_c00302{letter-spacing:-5.015625px;}
.lsb_c00302{letter-spacing:-4.456463px;}
.ls6_c00302{letter-spacing:-3.717000px;}
.ls10_c00302{letter-spacing:-3.511350px;}
.ls1b_c00302{letter-spacing:-3.114675px;}
.ls7_c00302{letter-spacing:-2.968875px;}
.ls21_c00302{letter-spacing:-2.917200px;}
.ls19_c00302{letter-spacing:-2.714400px;}
.ls1a_c00302{letter-spacing:-2.558775px;}
.ls2e_c00302{letter-spacing:-2.481600px;}
.ls0_c00302{letter-spacing:-2.229413px;}
.ls2d_c00302{letter-spacing:-2.150400px;}
.ls29_c00302{letter-spacing:-2.090888px;}
.ls27_c00302{letter-spacing:-1.998000px;}
.ls8_c00302{letter-spacing:-1.489163px;}
.ls24_c00302{letter-spacing:-0.756743px;}
.ls17_c00302{letter-spacing:-0.748200px;}
.ls4_c00302{letter-spacing:-0.740250px;}
.ls3_c00302{letter-spacing:0.000000px;}
.ls14_c00302{letter-spacing:0.740250px;}
.lsf_c00302{letter-spacing:0.801900px;}
.ls28_c00302{letter-spacing:0.825600px;}
.ls9_c00302{letter-spacing:2.704373px;}
.lsd_c00302{letter-spacing:3.127500px;}
.ls23_c00302{letter-spacing:3.637710px;}
.ls2a_c00302{letter-spacing:4.306995px;}
.ls1f_c00302{letter-spacing:5.024250px;}
.ls1d_c00302{letter-spacing:5.536800px;}
.ls2f_c00302{letter-spacing:6.198450px;}
.ls26_c00302{letter-spacing:13.242720px;}
.ls2c_c00302{letter-spacing:20.506973px;}
.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;}
._d_c00302{margin-left:-8.686526px;}
._12_c00302{margin-left:-7.578633px;}
._18_c00302{margin-left:-6.148488px;}
._f_c00302{margin-left:-4.191848px;}
._10_c00302{margin-left:-2.465350px;}
._e_c00302{margin-left:-1.387114px;}
._3_c00302{width:1.814400px;}
._4_c00302{width:3.386309px;}
._0_c00302{width:4.669934px;}
._6_c00302{width:5.736328px;}
._11_c00302{width:7.209236px;}
._7_c00302{width:8.633645px;}
._5_c00302{width:9.851120px;}
._15_c00302{width:10.925716px;}
._b_c00302{width:12.258492px;}
._a_c00302{width:13.459207px;}
._8_c00302{width:14.725923px;}
._1_c00302{width:15.762838px;}
._2_c00302{width:17.017905px;}
._9_c00302{width:19.222370px;}
._16_c00302{width:20.227859px;}
._c_c00302{width:22.048499px;}
._13_c00302{width:24.144750px;}
._14_c00302{width:26.268400px;}
._19_c00302{width:27.386189px;}
._17_c00302{width:38.651910px;}
.fc0_c00302{color:transparent;}
.fsb_c00302{font-size:27.750000px;}
.fs9_c00302{font-size:28.500000px;}
.fs19_c00302{font-size:38.250000px;}
.fsc_c00302{font-size:43.500000px;}
.fs13_c00302{font-size:44.250000px;}
.fs15_c00302{font-size:46.500000px;}
.fs1a_c00302{font-size:47.250000px;}
.fs16_c00302{font-size:48.000000px;}
.fs17_c00302{font-size:48.750000px;}
.fs18_c00302{font-size:49.500000px;}
.fs14_c00302{font-size:54.000000px;}
.fse_c00302{font-size:72.000000px;}
.fs10_c00302{font-size:72.750000px;}
.fsd_c00302{font-size:74.250000px;}
.fs7_c00302{font-size:75.000000px;}
.fs12_c00302{font-size:75.750000px;}
.fs3_c00302{font-size:76.500000px;}
.fs11_c00302{font-size:78.000000px;}
.fs0_c00302{font-size:78.750000px;}
.fs2_c00302{font-size:80.250000px;}
.fs8_c00302{font-size:81.000000px;}
.fsf_c00302{font-size:81.750000px;}
.fs6_c00302{font-size:82.500000px;}
.fs5_c00302{font-size:83.250000px;}
.fs1_c00302{font-size:83.881140px;}
.fs4_c00302{font-size:84.750000px;}
.fsa_c00302{font-size:115.500000px;}
.y0_c00302{bottom:0.000000px;}
.y28_c00302{bottom:177.120000px;}
.y27_c00302{bottom:217.079385px;}
.y26_c00302{bottom:290.159385px;}
.y25_c00302{bottom:290.160090px;}
.y23_c00302{bottom:318.958875px;}
.y24_c00302{bottom:318.958950px;}
.y22_c00302{bottom:349.198785px;}
.y21_c00302{bottom:379.079385px;}
.y1f_c00302{bottom:439.199850px;}
.y1e_c00302{bottom:439.200075px;}
.y20_c00302{bottom:447.479235px;}
.y1d_c00302{bottom:461.159565px;}
.y1c_c00302{bottom:482.039985px;}
.y1b_c00302{bottom:482.040300px;}
.y1a_c00302{bottom:503.281200px;}
.y19_c00302{bottom:524.159820px;}
.y18_c00302{bottom:524.160255px;}
.y17_c00302{bottom:545.759535px;}
.y16_c00302{bottom:605.518890px;}
.y15_c00302{bottom:635.038425px;}
.y14_c00302{bottom:664.199565px;}
.y13_c00302{bottom:693.719100px;}
.y12_c00302{bottom:693.719955px;}
.y11_c00302{bottom:723.599670px;}
.y10_c00302{bottom:784.079355px;}
.yf_c00302{bottom:814.319280px;}
.ye_c00302{bottom:814.320255px;}
.yd_c00302{bottom:844.199985px;}
.yc_c00302{bottom:873.719520px;}
.yb_c00302{bottom:873.719700px;}
.y9_c00302{bottom:903.238590px;}
.ya_c00302{bottom:903.239220px;}
.y8_c00302{bottom:932.399730px;}
.y7_c00302{bottom:962.639655px;}
.y5_c00302{bottom:992.159160px;}
.y6_c00302{bottom:992.159370px;}
.y4_c00302{bottom:1022.759565px;}
.y3_c00302{bottom:1052.279085px;}
.y2_c00302{bottom:1082.158815px;}
.y1_c00302{bottom:1141.559055px;}
.ha_c00302{height:29.724609px;}
.h1d_c00302{height:37.801758px;}
.hd_c00302{height:45.369141px;}
.h20_c00302{height:45.614502px;}
.h17_c00302{height:46.151367px;}
.h1e_c00302{height:46.350220px;}
.h1a_c00302{height:47.085938px;}
.h1f_c00302{height:48.375000px;}
.h19_c00302{height:48.498047px;}
.h1c_c00302{height:48.557373px;}
.h1b_c00302{height:49.130859px;}
.h18_c00302{height:53.367188px;}
.h14_c00302{height:71.400146px;}
.h8_c00302{height:73.608398px;}
.h16_c00302{height:74.344482px;}
.h4_c00302{height:75.080566px;}
.hf_c00302{height:75.093750px;}
.h15_c00302{height:76.552734px;}
.h1_c00302{height:77.288818px;}
.he_c00302{height:77.440430px;}
.h3_c00302{height:78.760986px;}
.h13_c00302{height:79.365234px;}
.h9_c00302{height:79.497070px;}
.h11_c00302{height:80.193237px;}
.h12_c00302{height:80.876953px;}
.hc_c00302{height:80.969238px;}
.h7_c00302{height:81.533203px;}
.h6_c00302{height:82.274414px;}
.h10_c00302{height:82.388672px;}
.h5_c00302{height:83.177490px;}
.h2_c00302{height:87.485408px;}
.hb_c00302{height:120.462891px;}
.h0_c00302{height:1263.000000px;}
.w0_c00302{width:892.500000px;}
.x0_c00302{left:0.000000px;}
.x12_c00302{left:135.359955px;}
.x3_c00302{left:136.438665px;}
.x2b_c00302{left:154.798515px;}
.x14_c00302{left:163.438665px;}
.x3c_c00302{left:167.039400px;}
.x3d_c00302{left:183.958950px;}
.xb_c00302{left:185.399250px;}
.x1c_c00302{left:190.080615px;}
.x1_c00302{left:191.158785px;}
.x36_c00302{left:192.239850px;}
.x4_c00302{left:196.199850px;}
.xc_c00302{left:199.798950px;}
.x19_c00302{left:212.399250px;}
.x5_c00302{left:217.799535px;}
.x2c_c00302{left:221.039400px;}
.x1a_c00302{left:223.199850px;}
.x3e_c00302{left:244.799535px;}
.x21_c00302{left:268.198785px;}
.x15_c00302{left:270.000000px;}
.x3f_c00302{left:272.878950px;}
.x2d_c00302{left:277.199850px;}
.x22_c00302{left:283.318800px;}
.x16_c00302{left:285.838515px;}
.x40_c00302{left:297.718500px;}
.x2e_c00302{left:308.519100px;}
.x39_c00302{left:328.319250px;}
.xe_c00302{left:343.439235px;}
.x2f_c00302{left:347.758500px;}
.x41_c00302{left:351.000000px;}
.xf_c00302{left:358.199850px;}
.x30_c00302{left:370.439235px;}
.x37_c00302{left:375.119385px;}
.x42_c00302{left:378.718530px;}
.x43_c00302{left:388.798920px;}
.x38_c00302{left:403.918950px;}
.x29_c00302{left:411.838950px;}
.x2a_c00302{left:427.679070px;}
.x31_c00302{left:432.359250px;}
.x32_c00302{left:450.359850px;}
.x2_c00302{left:452.518620px;}
.x23_c00302{left:486.359250px;}
.x33_c00302{left:503.639700px;}
.x24_c00302{left:510.478635px;}
.x1d_c00302{left:523.798920px;}
.x10_c00302{left:533.159415px;}
.x1e_c00302{left:538.198785px;}
.x6_c00302{left:556.199385px;}
.x11_c00302{left:566.279850px;}
.x27_c00302{left:571.678530px;}
.x28_c00302{left:577.798920px;}
.x1b_c00302{left:581.759085px;}
.x7_c00302{left:590.399235px;}
.x34_c00302{left:631.439670px;}
.x17_c00302{left:636.838530px;}
.x35_c00302{left:644.399235px;}
.x18_c00302{left:657.719520px;}
.x25_c00302{left:662.759085px;}
.x8_c00302{left:671.039985px;}
.xd_c00302{left:672.839535px;}
.x26_c00302{left:677.519670px;}
.x3a_c00302{left:692.278800px;}
.x9_c00302{left:693.359850px;}
.x3b_c00302{left:707.759535px;}
.x1f_c00302{left:712.798920px;}
.x20_c00302{left:742.679670px;}
.x13_c00302{left:745.558635px;}
.xa_c00302{left:762.479685px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.lsa_c00302{letter-spacing:-14.437400pt;}
.lsc_c00302{letter-spacing:-14.307333pt;}
.ls18_c00302{letter-spacing:-12.896400pt;}
.ls13_c00302{letter-spacing:-11.277933pt;}
.ls22_c00302{letter-spacing:-11.270000pt;}
.ls1e_c00302{letter-spacing:-7.333067pt;}
.ls11_c00302{letter-spacing:-7.266700pt;}
.lse_c00302{letter-spacing:-6.601000pt;}
.ls1c_c00302{letter-spacing:-6.112553pt;}
.ls12_c00302{letter-spacing:-5.943000pt;}
.ls15_c00302{letter-spacing:-5.340300pt;}
.ls16_c00302{letter-spacing:-5.332933pt;}
.ls25_c00302{letter-spacing:-5.332800pt;}
.ls20_c00302{letter-spacing:-5.289733pt;}
.ls2_c00302{letter-spacing:-5.285000pt;}
.ls1_c00302{letter-spacing:-4.619300pt;}
.ls2b_c00302{letter-spacing:-4.569600pt;}
.ls5_c00302{letter-spacing:-4.458333pt;}
.lsb_c00302{letter-spacing:-3.961300pt;}
.ls6_c00302{letter-spacing:-3.304000pt;}
.ls10_c00302{letter-spacing:-3.121200pt;}
.ls1b_c00302{letter-spacing:-2.768600pt;}
.ls7_c00302{letter-spacing:-2.639000pt;}
.ls21_c00302{letter-spacing:-2.593067pt;}
.ls19_c00302{letter-spacing:-2.412800pt;}
.ls1a_c00302{letter-spacing:-2.274467pt;}
.ls2e_c00302{letter-spacing:-2.205867pt;}
.ls0_c00302{letter-spacing:-1.981700pt;}
.ls2d_c00302{letter-spacing:-1.911467pt;}
.ls29_c00302{letter-spacing:-1.858567pt;}
.ls27_c00302{letter-spacing:-1.776000pt;}
.ls8_c00302{letter-spacing:-1.323700pt;}
.ls24_c00302{letter-spacing:-0.672660pt;}
.ls17_c00302{letter-spacing:-0.665067pt;}
.ls4_c00302{letter-spacing:-0.658000pt;}
.ls3_c00302{letter-spacing:0.000000pt;}
.ls14_c00302{letter-spacing:0.658000pt;}
.lsf_c00302{letter-spacing:0.712800pt;}
.ls28_c00302{letter-spacing:0.733867pt;}
.ls9_c00302{letter-spacing:2.403887pt;}
.lsd_c00302{letter-spacing:2.780000pt;}
.ls23_c00302{letter-spacing:3.233520pt;}
.ls2a_c00302{letter-spacing:3.828440pt;}
.ls1f_c00302{letter-spacing:4.466000pt;}
.ls1d_c00302{letter-spacing:4.921600pt;}
.ls2f_c00302{letter-spacing:5.509733pt;}
.ls26_c00302{letter-spacing:11.771307pt;}
.ls2c_c00302{letter-spacing:18.228420pt;}
.ws0_c00302{word-spacing:0.000000pt;}
._d_c00302{margin-left:-7.721357pt;}
._12_c00302{margin-left:-6.736562pt;}
._18_c00302{margin-left:-5.465323pt;}
._f_c00302{margin-left:-3.726087pt;}
._10_c00302{margin-left:-2.191423pt;}
._e_c00302{margin-left:-1.232991pt;}
._3_c00302{width:1.612800pt;}
._4_c00302{width:3.010053pt;}
._0_c00302{width:4.151053pt;}
._6_c00302{width:5.098958pt;}
._11_c00302{width:6.408209pt;}
._7_c00302{width:7.674351pt;}
._5_c00302{width:8.756551pt;}
._15_c00302{width:9.711747pt;}
._b_c00302{width:10.896438pt;}
._a_c00302{width:11.963740pt;}
._8_c00302{width:13.089709pt;}
._1_c00302{width:14.011411pt;}
._2_c00302{width:15.127026pt;}
._9_c00302{width:17.086551pt;}
._16_c00302{width:17.980319pt;}
._c_c00302{width:19.598666pt;}
._13_c00302{width:21.462000pt;}
._14_c00302{width:23.349689pt;}
._19_c00302{width:24.343279pt;}
._17_c00302{width:34.357253pt;}
.fsb_c00302{font-size:24.666667pt;}
.fs9_c00302{font-size:25.333333pt;}
.fs19_c00302{font-size:34.000000pt;}
.fsc_c00302{font-size:38.666667pt;}
.fs13_c00302{font-size:39.333333pt;}
.fs15_c00302{font-size:41.333333pt;}
.fs1a_c00302{font-size:42.000000pt;}
.fs16_c00302{font-size:42.666667pt;}
.fs17_c00302{font-size:43.333333pt;}
.fs18_c00302{font-size:44.000000pt;}
.fs14_c00302{font-size:48.000000pt;}
.fse_c00302{font-size:64.000000pt;}
.fs10_c00302{font-size:64.666667pt;}
.fsd_c00302{font-size:66.000000pt;}
.fs7_c00302{font-size:66.666667pt;}
.fs12_c00302{font-size:67.333333pt;}
.fs3_c00302{font-size:68.000000pt;}
.fs11_c00302{font-size:69.333333pt;}
.fs0_c00302{font-size:70.000000pt;}
.fs2_c00302{font-size:71.333333pt;}
.fs8_c00302{font-size:72.000000pt;}
.fsf_c00302{font-size:72.666667pt;}
.fs6_c00302{font-size:73.333333pt;}
.fs5_c00302{font-size:74.000000pt;}
.fs1_c00302{font-size:74.561013pt;}
.fs4_c00302{font-size:75.333333pt;}
.fsa_c00302{font-size:102.666667pt;}
.y0_c00302{bottom:0.000000pt;}
.y28_c00302{bottom:157.440000pt;}
.y27_c00302{bottom:192.959453pt;}
.y26_c00302{bottom:257.919453pt;}
.y25_c00302{bottom:257.920080pt;}
.y23_c00302{bottom:283.519000pt;}
.y24_c00302{bottom:283.519067pt;}
.y22_c00302{bottom:310.398920pt;}
.y21_c00302{bottom:336.959453pt;}
.y1f_c00302{bottom:390.399867pt;}
.y1e_c00302{bottom:390.400067pt;}
.y20_c00302{bottom:397.759320pt;}
.y1d_c00302{bottom:409.919613pt;}
.y1c_c00302{bottom:428.479987pt;}
.y1b_c00302{bottom:428.480267pt;}
.y1a_c00302{bottom:447.361067pt;}
.y19_c00302{bottom:465.919840pt;}
.y18_c00302{bottom:465.920227pt;}
.y17_c00302{bottom:485.119587pt;}
.y16_c00302{bottom:538.239013pt;}
.y15_c00302{bottom:564.478600pt;}
.y14_c00302{bottom:590.399613pt;}
.y13_c00302{bottom:616.639200pt;}
.y12_c00302{bottom:616.639960pt;}
.y11_c00302{bottom:643.199707pt;}
.y10_c00302{bottom:696.959427pt;}
.yf_c00302{bottom:723.839360pt;}
.ye_c00302{bottom:723.840227pt;}
.yd_c00302{bottom:750.399987pt;}
.yc_c00302{bottom:776.639573pt;}
.yb_c00302{bottom:776.639733pt;}
.y9_c00302{bottom:802.878747pt;}
.ya_c00302{bottom:802.879307pt;}
.y8_c00302{bottom:828.799760pt;}
.y7_c00302{bottom:855.679693pt;}
.y5_c00302{bottom:881.919253pt;}
.y6_c00302{bottom:881.919440pt;}
.y4_c00302{bottom:909.119613pt;}
.y3_c00302{bottom:935.359187pt;}
.y2_c00302{bottom:961.918947pt;}
.y1_c00302{bottom:1014.719160pt;}
.ha_c00302{height:26.421875pt;}
.h1d_c00302{height:33.601562pt;}
.hd_c00302{height:40.328125pt;}
.h20_c00302{height:40.546224pt;}
.h17_c00302{height:41.023438pt;}
.h1e_c00302{height:41.200195pt;}
.h1a_c00302{height:41.854167pt;}
.h1f_c00302{height:43.000000pt;}
.h19_c00302{height:43.109375pt;}
.h1c_c00302{height:43.162109pt;}
.h1b_c00302{height:43.671875pt;}
.h18_c00302{height:47.437500pt;}
.h14_c00302{height:63.466797pt;}
.h8_c00302{height:65.429688pt;}
.h16_c00302{height:66.083984pt;}
.h4_c00302{height:66.738281pt;}
.hf_c00302{height:66.750000pt;}
.h15_c00302{height:68.046875pt;}
.h1_c00302{height:68.701172pt;}
.he_c00302{height:68.835938pt;}
.h3_c00302{height:70.009766pt;}
.h13_c00302{height:70.546875pt;}
.h9_c00302{height:70.664062pt;}
.h11_c00302{height:71.282878pt;}
.h12_c00302{height:71.890625pt;}
.hc_c00302{height:71.972656pt;}
.h7_c00302{height:72.473958pt;}
.h6_c00302{height:73.132813pt;}
.h10_c00302{height:73.234375pt;}
.h5_c00302{height:73.935547pt;}
.h2_c00302{height:77.764807pt;}
.hb_c00302{height:107.078125pt;}
.h0_c00302{height:1122.666667pt;}
.w0_c00302{width:793.333333pt;}
.x0_c00302{left:0.000000pt;}
.x12_c00302{left:120.319960pt;}
.x3_c00302{left:121.278813pt;}
.x2b_c00302{left:137.598680pt;}
.x14_c00302{left:145.278813pt;}
.x3c_c00302{left:148.479467pt;}
.x3d_c00302{left:163.519067pt;}
.xb_c00302{left:164.799333pt;}
.x1c_c00302{left:168.960547pt;}
.x1_c00302{left:169.918920pt;}
.x36_c00302{left:170.879867pt;}
.x4_c00302{left:174.399867pt;}
.xc_c00302{left:177.599067pt;}
.x19_c00302{left:188.799333pt;}
.x5_c00302{left:193.599587pt;}
.x2c_c00302{left:196.479467pt;}
.x1a_c00302{left:198.399867pt;}
.x3e_c00302{left:217.599587pt;}
.x21_c00302{left:238.398920pt;}
.x15_c00302{left:240.000000pt;}
.x3f_c00302{left:242.559067pt;}
.x2d_c00302{left:246.399867pt;}
.x22_c00302{left:251.838933pt;}
.x16_c00302{left:254.078680pt;}
.x40_c00302{left:264.638667pt;}
.x2e_c00302{left:274.239200pt;}
.x39_c00302{left:291.839333pt;}
.xe_c00302{left:305.279320pt;}
.x2f_c00302{left:309.118667pt;}
.x41_c00302{left:312.000000pt;}
.xf_c00302{left:318.399867pt;}
.x30_c00302{left:329.279320pt;}
.x37_c00302{left:333.439453pt;}
.x42_c00302{left:336.638693pt;}
.x43_c00302{left:345.599040pt;}
.x38_c00302{left:359.039067pt;}
.x29_c00302{left:366.079067pt;}
.x2a_c00302{left:380.159173pt;}
.x31_c00302{left:384.319333pt;}
.x32_c00302{left:400.319867pt;}
.x2_c00302{left:402.238773pt;}
.x23_c00302{left:432.319333pt;}
.x33_c00302{left:447.679733pt;}
.x24_c00302{left:453.758787pt;}
.x1d_c00302{left:465.599040pt;}
.x10_c00302{left:473.919480pt;}
.x1e_c00302{left:478.398920pt;}
.x6_c00302{left:494.399453pt;}
.x11_c00302{left:503.359867pt;}
.x27_c00302{left:508.158693pt;}
.x28_c00302{left:513.599040pt;}
.x1b_c00302{left:517.119187pt;}
.x7_c00302{left:524.799320pt;}
.x34_c00302{left:561.279707pt;}
.x17_c00302{left:566.078693pt;}
.x35_c00302{left:572.799320pt;}
.x18_c00302{left:584.639573pt;}
.x25_c00302{left:589.119187pt;}
.x8_c00302{left:596.479987pt;}
.xd_c00302{left:598.079587pt;}
.x26_c00302{left:602.239707pt;}
.x3a_c00302{left:615.358933pt;}
.x9_c00302{left:616.319867pt;}
.x3b_c00302{left:629.119587pt;}
.x1f_c00302{left:633.599040pt;}
.x20_c00302{left:660.159707pt;}
.x13_c00302{left:662.718787pt;}
.xa_c00302{left:677.759720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2915677e563687827f6bf4b.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;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_de5e37ba9bce7722bd5949e0.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_89b5ecdee40e08676a68fc7e.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_40f3274bc868162b84cc2567.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_c4f3cacbb8ce75965c6d5c63.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00303;src:url('chunks/assets/font_4e49b2ff763bb29d515a3c6b.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:1.281250;font-style:normal;font-weight: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_c00303;src:url('chunks/assets/font_90a35fe4462431af09f23794.woff2')format("woff");}.ff7_c00303{font-family:ff7_c00303;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00303;src:url('chunks/assets/font_4900351504e64a45a8780302.woff2')format("woff");}.ff8_c00303{font-family:ff8_c00303;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1a_c00303{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m27_c00303{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.205508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205508,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{transform:matrix(0.213068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213068,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m19_c00303{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m25_c00303{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m12_c00303{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m21_c00303{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m0_c00303{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284653,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328829,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.v1_c00303{vertical-align:1.433580px;}
.ls20_c00303{letter-spacing:-22.807335px;}
.ls24_c00303{letter-spacing:-15.069600px;}
.lsc_c00303{letter-spacing:-14.210775px;}
.ls13_c00303{letter-spacing:-14.082750px;}
.ls1e_c00303{letter-spacing:-12.687675px;}
.ls2b_c00303{letter-spacing:-12.081150px;}
.ls1c_c00303{letter-spacing:-11.971350px;}
.ls15_c00303{letter-spacing:-11.721600px;}
.ls17_c00303{letter-spacing:-10.566203px;}
.ls12_c00303{letter-spacing:-9.754725px;}
.ls4_c00303{letter-spacing:-8.914500px;}
.ls14_c00303{letter-spacing:-8.467200px;}
.lsb_c00303{letter-spacing:-7.426125px;}
.ls1f_c00303{letter-spacing:-6.685875px;}
.lsa_c00303{letter-spacing:-5.945625px;}
.ls29_c00303{letter-spacing:-5.940000px;}
.ls28_c00303{letter-spacing:-5.530883px;}
.ls18_c00303{letter-spacing:-5.421600px;}
.ls19_c00303{letter-spacing:-5.280000px;}
.ls7_c00303{letter-spacing:-5.196713px;}
.ls1d_c00303{letter-spacing:-5.054963px;}
.ls6_c00303{letter-spacing:-4.456463px;}
.ls27_c00303{letter-spacing:-3.954150px;}
.ls1_c00303{letter-spacing:-3.717000px;}
.ls10_c00303{letter-spacing:-3.000375px;}
.ls3_c00303{letter-spacing:-2.968875px;}
.lsf_c00303{letter-spacing:-2.245620px;}
.ls5_c00303{letter-spacing:-2.229413px;}
.ls1b_c00303{letter-spacing:-1.668600px;}
.ls9_c00303{letter-spacing:-1.489163px;}
.lsd_c00303{letter-spacing:-0.802463px;}
.ls1a_c00303{letter-spacing:-0.794205px;}
.ls8_c00303{letter-spacing:-0.740250px;}
.ls21_c00303{letter-spacing:-0.714225px;}
.ls2_c00303{letter-spacing:0.000000px;}
.ls26_c00303{letter-spacing:0.795150px;}
.ls23_c00303{letter-spacing:0.811125px;}
.lse_c00303{letter-spacing:2.464875px;}
.ls2a_c00303{letter-spacing:3.290850px;}
.ls0_c00303{letter-spacing:4.456463px;}
.ls16_c00303{letter-spacing:5.729850px;}
.ls25_c00303{letter-spacing:6.566258px;}
.ls11_c00303{letter-spacing:7.426125px;}
.ls22_c00303{letter-spacing:7.574580px;}
.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;}
._18_c00303{margin-left:-11.585329px;}
._1d_c00303{margin-left:-8.532325px;}
._1c_c00303{margin-left:-6.963996px;}
._11_c00303{margin-left:-4.962454px;}
._12_c00303{margin-left:-3.621400px;}
._9_c00303{margin-left:-2.457089px;}
._a_c00303{margin-left:-1.454364px;}
._5_c00303{width:1.583410px;}
._3_c00303{width:2.916841px;}
._4_c00303{width:4.107080px;}
._6_c00303{width:6.141876px;}
._0_c00303{width:7.189608px;}
._8_c00303{width:8.191144px;}
._1_c00303{width:9.882620px;}
._7_c00303{width:11.311680px;}
._f_c00303{width:12.875892px;}
._c_c00303{width:13.943386px;}
._b_c00303{width:15.595591px;}
._e_c00303{width:17.487715px;}
._2_c00303{width:19.600964px;}
._d_c00303{width:21.301726px;}
._1a_c00303{width:22.568487px;}
._16_c00303{width:23.956196px;}
._10_c00303{width:25.034506px;}
._15_c00303{width:26.067572px;}
._1b_c00303{width:27.757934px;}
._14_c00303{width:29.229801px;}
._17_c00303{width:30.998125px;}
._13_c00303{width:32.875302px;}
._19_c00303{width:35.712947px;}
.fc0_c00303{color:transparent;}
.fs10_c00303{font-size:53.250000px;}
.fs9_c00303{font-size:54.750000px;}
.fs8_c00303{font-size:60.000000px;}
.fsa_c00303{font-size:66.000000px;}
.fsf_c00303{font-size:69.000000px;}
.fs11_c00303{font-size:69.750000px;}
.fs7_c00303{font-size:72.000000px;}
.fs2_c00303{font-size:74.250000px;}
.fs12_c00303{font-size:75.750000px;}
.fsd_c00303{font-size:76.500000px;}
.fs13_c00303{font-size:77.250000px;}
.fs5_c00303{font-size:78.000000px;}
.fs0_c00303{font-size:78.750000px;}
.fsb_c00303{font-size:79.500000px;}
.fs6_c00303{font-size:80.250000px;}
.fsc_c00303{font-size:81.000000px;}
.fs3_c00303{font-size:82.500000px;}
.fs4_c00303{font-size:83.250000px;}
.fs1_c00303{font-size:84.750000px;}
.fs14_c00303{font-size:85.500000px;}
.fse_c00303{font-size:88.500000px;}
.y0_c00303{bottom:0.000000px;}
.y29_c00303{bottom:188.279130px;}
.y2a_c00303{bottom:188.279850px;}
.y28_c00303{bottom:217.440285px;}
.y27_c00303{bottom:217.440465px;}
.y26_c00303{bottom:246.960000px;}
.y25_c00303{bottom:246.961215px;}
.y24_c00303{bottom:276.480750px;}
.y23_c00303{bottom:306.360465px;}
.y22_c00303{bottom:335.880000px;}
.y20_c00303{bottom:365.399325px;}
.y21_c00303{bottom:365.399850px;}
.y1f_c00303{bottom:395.641335px;}
.y1e_c00303{bottom:426.240420px;}
.y1c_c00303{bottom:455.221200px;}
.y1d_c00303{bottom:455.580465px;}
.y1b_c00303{bottom:485.279955px;}
.y1a_c00303{bottom:544.681020px;}
.y18_c00303{bottom:574.558665px;}
.y19_c00303{bottom:574.560750px;}
.y17_c00303{bottom:604.438380px;}
.y16_c00303{bottom:633.959730px;}
.y15_c00303{bottom:663.839445px;}
.y14_c00303{bottom:693.000600px;}
.y13_c00303{bottom:693.000690px;}
.y12_c00303{bottom:752.760135px;}
.y11_c00303{bottom:783.000000px;}
.y10_c00303{bottom:783.001695px;}
.yf_c00303{bottom:812.881410px;}
.ye_c00303{bottom:842.761140px;}
.yc_c00303{bottom:872.280240px;}
.yd_c00303{bottom:872.280855px;}
.yb_c00303{bottom:902.520150px;}
.ya_c00303{bottom:932.399865px;}
.y9_c00303{bottom:932.400675px;}
.y8_c00303{bottom:962.280390px;}
.y7_c00303{bottom:1021.319820px;}
.y6_c00303{bottom:1021.321605px;}
.y5_c00303{bottom:1051.201335px;}
.y3_c00303{bottom:1081.080570px;}
.y4_c00303{bottom:1081.081050px;}
.y2_c00303{bottom:1110.960300px;}
.y1_c00303{bottom:1141.560705px;}
.h17_c00303{height:55.538086px;}
.hc_c00303{height:57.102539px;}
.hb_c00303{height:59.296875px;}
.hd_c00303{height:65.226562px;}
.h16_c00303{height:71.964844px;}
.h18_c00303{height:72.747070px;}
.h3_c00303{height:72.872314px;}
.h11_c00303{height:75.080566px;}
.h9_c00303{height:75.093750px;}
.h19_c00303{height:76.341797px;}
.h6_c00303{height:76.552734px;}
.h1_c00303{height:77.288818px;}
.h1a_c00303{height:77.440430px;}
.h1b_c00303{height:77.853516px;}
.h14_c00303{height:78.609375px;}
.h13_c00303{height:78.722398px;}
.h7_c00303{height:78.760986px;}
.h15_c00303{height:79.365234px;}
.he_c00303{height:80.121094px;}
.ha_c00303{height:80.876953px;}
.h1d_c00303{height:80.928955px;}
.h4_c00303{height:80.969238px;}
.h8_c00303{height:81.533203px;}
.hf_c00303{height:81.632812px;}
.h5_c00303{height:82.274414px;}
.h2_c00303{height:83.177490px;}
.h10_c00303{height:83.900391px;}
.h1c_c00303{height:84.498047px;}
.h12_c00303{height:86.814697px;}
.h0_c00303{height:1263.000000px;}
.w0_c00303{width:892.500000px;}
.x0_c00303{left:0.000000px;}
.x16_c00303{left:138.240585px;}
.x4_c00303{left:139.321740px;}
.x1_c00303{left:140.398665px;}
.x12_c00303{left:154.080000px;}
.x19_c00303{left:161.279850px;}
.x7_c00303{left:187.198785px;}
.x1a_c00303{left:188.639100px;}
.x2_c00303{left:197.999400px;}
.x8_c00303{left:202.318800px;}
.x3_c00303{left:213.119385px;}
.x2f_c00303{left:243.718500px;}
.x1b_c00303{left:260.998950px;}
.x10_c00303{left:265.319850px;}
.x30_c00303{left:267.119385px;}
.x1c_c00303{left:275.398635px;}
.x11_c00303{left:282.239250px;}
.x31_c00303{left:286.919535px;}
.x1d_c00303{left:302.398635px;}
.x28_c00303{left:306.719535px;}
.x3b_c00303{left:312.120000px;}
.x3f_c00303{left:318.238785px;}
.x32_c00303{left:321.119385px;}
.x3c_c00303{left:327.239850px;}
.x1e_c00303{left:335.159850px;}
.x33_c00303{left:344.518635px;}
.xe_c00303{left:351.718500px;}
.x1f_c00303{left:355.678530px;}
.x13_c00303{left:365.759100px;}
.x9_c00303{left:368.639700px;}
.xf_c00303{left:369.719100px;}
.x2d_c00303{left:377.639100px;}
.xa_c00303{left:389.159820px;}
.x5_c00303{left:394.199385px;}
.x34_c00303{left:399.599670px;}
.x20_c00303{left:406.079400px;}
.x6_c00303{left:412.199850px;}
.x2e_c00303{left:421.199385px;}
.x35_c00303{left:424.439250px;}
.xc_c00303{left:445.679670px;}
.x21_c00303{left:464.759535px;}
.x36_c00303{left:466.199850px;}
.xd_c00303{left:481.319820px;}
.x22_c00303{left:484.198785px;}
.x3d_c00303{left:525.239220px;}
.x23_c00303{left:529.199385px;}
.x3e_c00303{left:540.000000px;}
.x24_c00303{left:544.319235px;}
.xb_c00303{left:548.999400px;}
.x40_c00303{left:560.879520px;}
.x41_c00303{left:574.559100px;}
.x37_c00303{left:611.998950px;}
.x25_c00303{left:616.679070px;}
.x38_c00303{left:627.479685px;}
.x29_c00303{left:636.838530px;}
.x14_c00303{left:652.678530px;}
.x2a_c00303{left:656.279250px;}
.x15_c00303{left:673.559685px;}
.x26_c00303{left:680.398635px;}
.x27_c00303{left:695.518620px;}
.x17_c00303{left:705.239820px;}
.x39_c00303{left:712.798920px;}
.x18_c00303{left:718.919535px;}
.x2b_c00303{left:728.279850px;}
.x2c_c00303{left:753.119385px;}
.x3a_c00303{left:764.999355px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.v1_c00303{vertical-align:1.274293pt;}
.ls20_c00303{letter-spacing:-20.273187pt;}
.ls24_c00303{letter-spacing:-13.395200pt;}
.lsc_c00303{letter-spacing:-12.631800pt;}
.ls13_c00303{letter-spacing:-12.518000pt;}
.ls1e_c00303{letter-spacing:-11.277933pt;}
.ls2b_c00303{letter-spacing:-10.738800pt;}
.ls1c_c00303{letter-spacing:-10.641200pt;}
.ls15_c00303{letter-spacing:-10.419200pt;}
.ls17_c00303{letter-spacing:-9.392180pt;}
.ls12_c00303{letter-spacing:-8.670867pt;}
.ls4_c00303{letter-spacing:-7.924000pt;}
.ls14_c00303{letter-spacing:-7.526400pt;}
.lsb_c00303{letter-spacing:-6.601000pt;}
.ls1f_c00303{letter-spacing:-5.943000pt;}
.lsa_c00303{letter-spacing:-5.285000pt;}
.ls29_c00303{letter-spacing:-5.280000pt;}
.ls28_c00303{letter-spacing:-4.916340pt;}
.ls18_c00303{letter-spacing:-4.819200pt;}
.ls19_c00303{letter-spacing:-4.693333pt;}
.ls7_c00303{letter-spacing:-4.619300pt;}
.ls1d_c00303{letter-spacing:-4.493300pt;}
.ls6_c00303{letter-spacing:-3.961300pt;}
.ls27_c00303{letter-spacing:-3.514800pt;}
.ls1_c00303{letter-spacing:-3.304000pt;}
.ls10_c00303{letter-spacing:-2.667000pt;}
.ls3_c00303{letter-spacing:-2.639000pt;}
.lsf_c00303{letter-spacing:-1.996107pt;}
.ls5_c00303{letter-spacing:-1.981700pt;}
.ls1b_c00303{letter-spacing:-1.483200pt;}
.ls9_c00303{letter-spacing:-1.323700pt;}
.lsd_c00303{letter-spacing:-0.713300pt;}
.ls1a_c00303{letter-spacing:-0.705960pt;}
.ls8_c00303{letter-spacing:-0.658000pt;}
.ls21_c00303{letter-spacing:-0.634867pt;}
.ls2_c00303{letter-spacing:0.000000pt;}
.ls26_c00303{letter-spacing:0.706800pt;}
.ls23_c00303{letter-spacing:0.721000pt;}
.lse_c00303{letter-spacing:2.191000pt;}
.ls2a_c00303{letter-spacing:2.925200pt;}
.ls0_c00303{letter-spacing:3.961300pt;}
.ls16_c00303{letter-spacing:5.093200pt;}
.ls25_c00303{letter-spacing:5.836673pt;}
.ls11_c00303{letter-spacing:6.601000pt;}
.ls22_c00303{letter-spacing:6.732960pt;}
.ws0_c00303{word-spacing:0.000000pt;}
._18_c00303{margin-left:-10.298070pt;}
._1d_c00303{margin-left:-7.584289pt;}
._1c_c00303{margin-left:-6.190219pt;}
._11_c00303{margin-left:-4.411070pt;}
._12_c00303{margin-left:-3.219023pt;}
._9_c00303{margin-left:-2.184079pt;}
._a_c00303{margin-left:-1.292768pt;}
._5_c00303{width:1.407475pt;}
._3_c00303{width:2.592747pt;}
._4_c00303{width:3.650738pt;}
._6_c00303{width:5.459445pt;}
._0_c00303{width:6.390762pt;}
._8_c00303{width:7.281017pt;}
._1_c00303{width:8.784551pt;}
._7_c00303{width:10.054826pt;}
._f_c00303{width:11.445238pt;}
._c_c00303{width:12.394121pt;}
._b_c00303{width:13.862747pt;}
._e_c00303{width:15.544636pt;}
._2_c00303{width:17.423079pt;}
._d_c00303{width:18.934868pt;}
._1a_c00303{width:20.060877pt;}
._16_c00303{width:21.294396pt;}
._10_c00303{width:22.252894pt;}
._15_c00303{width:23.171175pt;}
._1b_c00303{width:24.673719pt;}
._14_c00303{width:25.982045pt;}
._17_c00303{width:27.553889pt;}
._13_c00303{width:29.222491pt;}
._19_c00303{width:31.744842pt;}
.fs10_c00303{font-size:47.333333pt;}
.fs9_c00303{font-size:48.666667pt;}
.fs8_c00303{font-size:53.333333pt;}
.fsa_c00303{font-size:58.666667pt;}
.fsf_c00303{font-size:61.333333pt;}
.fs11_c00303{font-size:62.000000pt;}
.fs7_c00303{font-size:64.000000pt;}
.fs2_c00303{font-size:66.000000pt;}
.fs12_c00303{font-size:67.333333pt;}
.fsd_c00303{font-size:68.000000pt;}
.fs13_c00303{font-size:68.666667pt;}
.fs5_c00303{font-size:69.333333pt;}
.fs0_c00303{font-size:70.000000pt;}
.fsb_c00303{font-size:70.666667pt;}
.fs6_c00303{font-size:71.333333pt;}
.fsc_c00303{font-size:72.000000pt;}
.fs3_c00303{font-size:73.333333pt;}
.fs4_c00303{font-size:74.000000pt;}
.fs1_c00303{font-size:75.333333pt;}
.fs14_c00303{font-size:76.000000pt;}
.fse_c00303{font-size:78.666667pt;}
.y0_c00303{bottom:0.000000pt;}
.y29_c00303{bottom:167.359227pt;}
.y2a_c00303{bottom:167.359867pt;}
.y28_c00303{bottom:193.280253pt;}
.y27_c00303{bottom:193.280413pt;}
.y26_c00303{bottom:219.520000pt;}
.y25_c00303{bottom:219.521080pt;}
.y24_c00303{bottom:245.760667pt;}
.y23_c00303{bottom:272.320413pt;}
.y22_c00303{bottom:298.560000pt;}
.y20_c00303{bottom:324.799400pt;}
.y21_c00303{bottom:324.799867pt;}
.y1f_c00303{bottom:351.681187pt;}
.y1e_c00303{bottom:378.880373pt;}
.y1c_c00303{bottom:404.641067pt;}
.y1d_c00303{bottom:404.960413pt;}
.y1b_c00303{bottom:431.359960pt;}
.y1a_c00303{bottom:484.160907pt;}
.y18_c00303{bottom:510.718813pt;}
.y19_c00303{bottom:510.720667pt;}
.y17_c00303{bottom:537.278560pt;}
.y16_c00303{bottom:563.519760pt;}
.y15_c00303{bottom:590.079507pt;}
.y14_c00303{bottom:616.000533pt;}
.y13_c00303{bottom:616.000613pt;}
.y12_c00303{bottom:669.120120pt;}
.y11_c00303{bottom:696.000000pt;}
.y10_c00303{bottom:696.001507pt;}
.yf_c00303{bottom:722.561253pt;}
.ye_c00303{bottom:749.121013pt;}
.yc_c00303{bottom:775.360213pt;}
.yd_c00303{bottom:775.360760pt;}
.yb_c00303{bottom:802.240133pt;}
.ya_c00303{bottom:828.799880pt;}
.y9_c00303{bottom:828.800600pt;}
.y8_c00303{bottom:855.360347pt;}
.y7_c00303{bottom:907.839840pt;}
.y6_c00303{bottom:907.841427pt;}
.y5_c00303{bottom:934.401187pt;}
.y3_c00303{bottom:960.960507pt;}
.y4_c00303{bottom:960.960933pt;}
.y2_c00303{bottom:987.520267pt;}
.y1_c00303{bottom:1014.720627pt;}
.h17_c00303{height:49.367188pt;}
.hc_c00303{height:50.757812pt;}
.hb_c00303{height:52.708333pt;}
.hd_c00303{height:57.979167pt;}
.h16_c00303{height:63.968750pt;}
.h18_c00303{height:64.664062pt;}
.h3_c00303{height:64.775391pt;}
.h11_c00303{height:66.738281pt;}
.h9_c00303{height:66.750000pt;}
.h19_c00303{height:67.859375pt;}
.h6_c00303{height:68.046875pt;}
.h1_c00303{height:68.701172pt;}
.h1a_c00303{height:68.835938pt;}
.h1b_c00303{height:69.203125pt;}
.h14_c00303{height:69.875000pt;}
.h13_c00303{height:69.975465pt;}
.h7_c00303{height:70.009766pt;}
.h15_c00303{height:70.546875pt;}
.he_c00303{height:71.218750pt;}
.ha_c00303{height:71.890625pt;}
.h1d_c00303{height:71.936849pt;}
.h4_c00303{height:71.972656pt;}
.h8_c00303{height:72.473958pt;}
.hf_c00303{height:72.562500pt;}
.h5_c00303{height:73.132813pt;}
.h2_c00303{height:73.935547pt;}
.h10_c00303{height:74.578125pt;}
.h1c_c00303{height:75.109375pt;}
.h12_c00303{height:77.168620pt;}
.h0_c00303{height:1122.666667pt;}
.w0_c00303{width:793.333333pt;}
.x0_c00303{left:0.000000pt;}
.x16_c00303{left:122.880520pt;}
.x4_c00303{left:123.841547pt;}
.x1_c00303{left:124.798813pt;}
.x12_c00303{left:136.960000pt;}
.x19_c00303{left:143.359867pt;}
.x7_c00303{left:166.398920pt;}
.x1a_c00303{left:167.679200pt;}
.x2_c00303{left:175.999467pt;}
.x8_c00303{left:179.838933pt;}
.x3_c00303{left:189.439453pt;}
.x2f_c00303{left:216.638667pt;}
.x1b_c00303{left:231.999067pt;}
.x10_c00303{left:235.839867pt;}
.x30_c00303{left:237.439453pt;}
.x1c_c00303{left:244.798787pt;}
.x11_c00303{left:250.879333pt;}
.x31_c00303{left:255.039587pt;}
.x1d_c00303{left:268.798787pt;}
.x28_c00303{left:272.639587pt;}
.x3b_c00303{left:277.440000pt;}
.x3f_c00303{left:282.878920pt;}
.x32_c00303{left:285.439453pt;}
.x3c_c00303{left:290.879867pt;}
.x1e_c00303{left:297.919867pt;}
.x33_c00303{left:306.238787pt;}
.xe_c00303{left:312.638667pt;}
.x1f_c00303{left:316.158693pt;}
.x13_c00303{left:325.119200pt;}
.x9_c00303{left:327.679733pt;}
.xf_c00303{left:328.639200pt;}
.x2d_c00303{left:335.679200pt;}
.xa_c00303{left:345.919840pt;}
.x5_c00303{left:350.399453pt;}
.x34_c00303{left:355.199707pt;}
.x20_c00303{left:360.959467pt;}
.x6_c00303{left:366.399867pt;}
.x2e_c00303{left:374.399453pt;}
.x35_c00303{left:377.279333pt;}
.xc_c00303{left:396.159707pt;}
.x21_c00303{left:413.119587pt;}
.x36_c00303{left:414.399867pt;}
.xd_c00303{left:427.839840pt;}
.x22_c00303{left:430.398920pt;}
.x3d_c00303{left:466.879307pt;}
.x23_c00303{left:470.399453pt;}
.x3e_c00303{left:480.000000pt;}
.x24_c00303{left:483.839320pt;}
.xb_c00303{left:487.999467pt;}
.x40_c00303{left:498.559573pt;}
.x41_c00303{left:510.719200pt;}
.x37_c00303{left:543.999067pt;}
.x25_c00303{left:548.159173pt;}
.x38_c00303{left:557.759720pt;}
.x29_c00303{left:566.078693pt;}
.x14_c00303{left:580.158693pt;}
.x2a_c00303{left:583.359333pt;}
.x15_c00303{left:598.719720pt;}
.x26_c00303{left:604.798787pt;}
.x27_c00303{left:618.238773pt;}
.x17_c00303{left:626.879840pt;}
.x39_c00303{left:633.599040pt;}
.x18_c00303{left:639.039587pt;}
.x2b_c00303{left:647.359867pt;}
.x2c_c00303{left:669.439453pt;}
.x3a_c00303{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55e4d26bc73d47e9c28a174b.woff2')format("woff");}.ff1_c00304{font-family:ff1_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;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_a198b5735d4320696690466c.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_9b69fe36c6235b557ffe1998.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_157300c86fa8b45dabe947fc.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_4ef94df9b439637f13813f64.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_920d781f93a34954cfc45a50.woff2')format("woff");}.ff7_c00304{font-family:ff7_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:ff8_c00304;src:url('chunks/assets/font_3af25ed1dc1741c5a4a200eb.woff2')format("woff");}.ff8_c00304{font-family:ff8_c00304;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22_c00304{transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178030,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{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_c00304{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m17_c00304{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m25_c00304{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_c00304{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m18_c00304{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.330189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330189,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls18_c00304{letter-spacing:-21.648263px;}
.ls16_c00304{letter-spacing:-15.055200px;}
.ls12_c00304{letter-spacing:-14.594850px;}
.lsf_c00304{letter-spacing:-14.082750px;}
.ls2e_c00304{letter-spacing:-11.582505px;}
.ls19_c00304{letter-spacing:-9.162000px;}
.ls20_c00304{letter-spacing:-7.971300px;}
.ls11_c00304{letter-spacing:-7.426125px;}
.lsa_c00304{letter-spacing:-6.685875px;}
.ls17_c00304{letter-spacing:-6.126225px;}
.lsc_c00304{letter-spacing:-5.945625px;}
.ls13_c00304{letter-spacing:-5.254500px;}
.ls10_c00304{letter-spacing:-5.247533px;}
.ls4_c00304{letter-spacing:-5.196713px;}
.ls15_c00304{letter-spacing:-4.969125px;}
.ls7_c00304{letter-spacing:-4.456463px;}
.ls27_c00304{letter-spacing:-3.960000px;}
.ls35_c00304{letter-spacing:-3.813000px;}
.ls6_c00304{letter-spacing:-3.717000px;}
.ls1c_c00304{letter-spacing:-3.624000px;}
.ls33_c00304{letter-spacing:-3.050400px;}
.ls8_c00304{letter-spacing:-2.968875px;}
.ls32_c00304{letter-spacing:-2.404050px;}
.ls36_c00304{letter-spacing:-2.362500px;}
.ls2d_c00304{letter-spacing:-2.359500px;}
.ls34_c00304{letter-spacing:-2.325000px;}
.ls30_c00304{letter-spacing:-2.287335px;}
.ls5_c00304{letter-spacing:-2.229413px;}
.ls29_c00304{letter-spacing:-1.604250px;}
.ls2f_c00304{letter-spacing:-1.526175px;}
.ls1e_c00304{letter-spacing:-1.525665px;}
.ls9_c00304{letter-spacing:-1.489163px;}
.ls2a_c00304{letter-spacing:-0.994500px;}
.ls24_c00304{letter-spacing:-0.985403px;}
.ls28_c00304{letter-spacing:-0.859200px;}
.ls37_c00304{letter-spacing:-0.840000px;}
.ls23_c00304{letter-spacing:-0.799800px;}
.ls31_c00304{letter-spacing:-0.762600px;}
.ls1d_c00304{letter-spacing:-0.760725px;}
.lsd_c00304{letter-spacing:-0.740250px;}
.ls38_c00304{letter-spacing:-0.703553px;}
.lsb_c00304{letter-spacing:0.000000px;}
.ls1_c00304{letter-spacing:0.692550px;}
.ls2c_c00304{letter-spacing:0.762600px;}
.ls1f_c00304{letter-spacing:0.801120px;}
.ls14_c00304{letter-spacing:0.810000px;}
.ls1a_c00304{letter-spacing:1.136452px;}
.ls1b_c00304{letter-spacing:1.525665px;}
.ls3_c00304{letter-spacing:1.604250px;}
.lse_c00304{letter-spacing:1.621800px;}
.ls0_c00304{letter-spacing:2.764125px;}
.ls2b_c00304{letter-spacing:3.208500px;}
.ls2_c00304{letter-spacing:4.008300px;}
.ls26_c00304{letter-spacing:8.016135px;}
.ls25_c00304{letter-spacing:11.948805px;}
.ls21_c00304{letter-spacing:12.025365px;}
.ls22_c00304{letter-spacing:59.062500px;}
.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;}
._10_c00304{margin-left:-18.710881px;}
._f_c00304{margin-left:-17.277275px;}
._17_c00304{margin-left:-10.121886px;}
._14_c00304{margin-left:-5.480822px;}
._13_c00304{margin-left:-4.218578px;}
._7_c00304{margin-left:-2.800231px;}
._8_c00304{margin-left:-1.654552px;}
._12_c00304{width:1.185693px;}
._6_c00304{width:2.425797px;}
._4_c00304{width:3.879671px;}
._3_c00304{width:5.750355px;}
._a_c00304{width:6.788250px;}
._0_c00304{width:8.063361px;}
._11_c00304{width:9.631229px;}
._2_c00304{width:10.958003px;}
._1_c00304{width:12.652317px;}
._9_c00304{width:14.393479px;}
._b_c00304{width:15.506380px;}
._5_c00304{width:18.012131px;}
._c_c00304{width:20.116271px;}
._d_c00304{width:22.876934px;}
._15_c00304{width:25.244278px;}
._e_c00304{width:35.013082px;}
._16_c00304{width:46.154840px;}
.fc0_c00304{color:transparent;}
.fs2_c00304{font-size:34.500000px;}
.fsb_c00304{font-size:36.000000px;}
.fsc_c00304{font-size:36.750000px;}
.fsf_c00304{font-size:39.750000px;}
.fs19_c00304{font-size:42.000000px;}
.fs18_c00304{font-size:43.500000px;}
.fs14_c00304{font-size:45.000000px;}
.fs1a_c00304{font-size:45.750000px;}
.fs10_c00304{font-size:46.500000px;}
.fs12_c00304{font-size:47.250000px;}
.fs11_c00304{font-size:48.000000px;}
.fs17_c00304{font-size:48.750000px;}
.fs16_c00304{font-size:49.500000px;}
.fs15_c00304{font-size:50.250000px;}
.fs13_c00304{font-size:51.000000px;}
.fse_c00304{font-size:60.750000px;}
.fs8_c00304{font-size:75.000000px;}
.fs9_c00304{font-size:78.000000px;}
.fs0_c00304{font-size:78.750000px;}
.fs3_c00304{font-size:79.500000px;}
.fs1_c00304{font-size:80.250000px;}
.fsa_c00304{font-size:81.000000px;}
.fs5_c00304{font-size:81.750000px;}
.fs4_c00304{font-size:82.500000px;}
.fs7_c00304{font-size:84.750000px;}
.fs6_c00304{font-size:85.500000px;}
.fsd_c00304{font-size:101.250000px;}
.y0_c00304{bottom:0.000000px;}
.y22_c00304{bottom:170.279250px;}
.y21_c00304{bottom:183.958950px;}
.y20_c00304{bottom:200.159850px;}
.y1f_c00304{bottom:240.119385px;}
.y1e_c00304{bottom:332.279175px;}
.y1d_c00304{bottom:362.519100px;}
.y1c_c00304{bottom:421.919535px;}
.y1b_c00304{bottom:429.119385px;}
.y1a_c00304{bottom:451.800150px;}
.y19_c00304{bottom:482.039985px;}
.y18_c00304{bottom:511.918950px;}
.y17_c00304{bottom:511.921575px;}
.y16_c00304{bottom:541.441110px;}
.y15_c00304{bottom:571.320825px;}
.y14_c00304{bottom:601.200555px;}
.y12_c00304{bottom:629.998815px;}
.y13_c00304{bottom:629.999400px;}
.y11_c00304{bottom:660.238725px;}
.y10_c00304{bottom:779.399235px;}
.yf_c00304{bottom:779.399250px;}
.ye_c00304{bottom:839.518890px;}
.yd_c00304{bottom:869.398620px;}
.yb_c00304{bottom:898.919730px;}
.yc_c00304{bottom:898.919955px;}
.ya_c00304{bottom:928.078770px;}
.y9_c00304{bottom:957.959385px;}
.y8_c00304{bottom:957.959790px;}
.y7_c00304{bottom:1018.079430px;}
.y5_c00304{bottom:1077.478635px;}
.y4_c00304{bottom:1077.478665px;}
.y6_c00304{bottom:1077.659820px;}
.y3_c00304{bottom:1107.000000px;}
.y2_c00304{bottom:1107.000180px;}
.y1_c00304{bottom:1136.519715px;}
.h3_c00304{height:35.982422px;}
.he_c00304{height:37.546875px;}
.hf_c00304{height:38.329102px;}
.h12_c00304{height:40.060547px;}
.h23_c00304{height:43.804688px;}
.h22_c00304{height:45.351562px;}
.h20_c00304{height:45.369141px;}
.h24_c00304{height:46.107422px;}
.h15_c00304{height:46.373291px;}
.h13_c00304{height:46.863281px;}
.h18_c00304{height:46.933594px;}
.h16_c00304{height:47.109375px;}
.h14_c00304{height:47.437500px;}
.h21_c00304{height:47.619141px;}
.h1e_c00304{height:48.178711px;}
.h1c_c00304{height:48.375000px;}
.h1a_c00304{height:48.581543px;}
.h1b_c00304{height:48.919922px;}
.h1f_c00304{height:49.130859px;}
.h19_c00304{height:49.661133px;}
.h1d_c00304{height:49.886719px;}
.h17_c00304{height:50.402344px;}
.h11_c00304{height:59.593140px;}
.ha_c00304{height:73.608398px;}
.hb_c00304{height:76.552734px;}
.h1_c00304{height:77.288818px;}
.h4_c00304{height:78.024902px;}
.h2_c00304{height:78.760986px;}
.hc_c00304{height:79.497070px;}
.h7_c00304{height:80.233154px;}
.h5_c00304{height:80.969238px;}
.h6_c00304{height:81.533203px;}
.hd_c00304{height:83.177490px;}
.h9_c00304{height:83.756836px;}
.h8_c00304{height:84.498047px;}
.h10_c00304{height:105.600586px;}
.h0_c00304{height:1263.000000px;}
.w0_c00304{width:892.500000px;}
.x0_c00304{left:0.000000px;}
.xa_c00304{left:137.878950px;}
.x1_c00304{left:139.319250px;}
.x1a_c00304{left:151.919565px;}
.x1f_c00304{left:156.958950px;}
.x44_c00304{left:172.439715px;}
.x45_c00304{left:181.798515px;}
.x3a_c00304{left:183.958950px;}
.x2_c00304{left:185.399250px;}
.x29_c00304{left:186.478665px;}
.x22_c00304{left:191.158785px;}
.x3_c00304{left:199.078785px;}
.x3b_c00304{left:200.878350px;}
.x2a_c00304{left:206.998950px;}
.x23_c00304{left:229.679700px;}
.x3c_c00304{left:231.120000px;}
.x20_c00304{left:234.719100px;}
.xd_c00304{left:241.198785px;}
.x3d_c00304{left:245.519685px;}
.x24_c00304{left:249.479685px;}
.xe_c00304{left:261.359850px;}
.x25_c00304{left:277.199850px;}
.x21_c00304{left:292.319850px;}
.x46_c00304{left:294.478635px;}
.x2b_c00304{left:307.439685px;}
.x26_c00304{left:311.759100px;}
.x3e_c00304{left:314.278800px;}
.x47_c00304{left:332.638530px;}
.x1b_c00304{left:340.199385px;}
.x14_c00304{left:359.279250px;}
.x3f_c00304{left:360.358635px;}
.x2c_c00304{left:362.519100px;}
.x27_c00304{left:364.679700px;}
.x1c_c00304{left:369.719100px;}
.x48_c00304{left:376.559685px;}
.x28_c00304{left:384.118785px;}
.x49_c00304{left:390.239220px;}
.x15_c00304{left:397.080000px;}
.x2d_c00304{left:405.000000px;}
.x2e_c00304{left:419.759085px;}
.x4a_c00304{left:424.439250px;}
.x16_c00304{left:429.839535px;}
.x17_c00304{left:443.878320px;}
.x11_c00304{left:450.359850px;}
.x4b_c00304{left:451.439250px;}
.x4c_c00304{left:465.118785px;}
.x12_c00304{left:469.798920px;}
.x2f_c00304{left:472.318770px;}
.x4d_c00304{left:490.678530px;}
.x30_c00304{left:492.118785px;}
.x4e_c00304{left:500.399820px;}
.x40_c00304{left:509.039985px;}
.x31_c00304{left:510.119385px;}
.x4_c00304{left:513.359250px;}
.x4f_c00304{left:525.239220px;}
.x5_c00304{left:534.958920px;}
.x50_c00304{left:539.279850px;}
.x32_c00304{left:544.678530px;}
.x33_c00304{left:554.759085px;}
.x51_c00304{left:581.038920px;}
.xf_c00304{left:584.639700px;}
.x6_c00304{left:587.879520px;}
.x10_c00304{left:606.239220px;}
.x41_c00304{left:619.559685px;}
.x52_c00304{left:634.318770px;}
.x7_c00304{left:645.478635px;}
.x34_c00304{left:648.718545px;}
.x42_c00304{left:649.799520px;}
.x53_c00304{left:653.398635px;}
.x35_c00304{left:663.119985px;}
.x8_c00304{left:666.359850px;}
.x1d_c00304{left:669.599670px;}
.x1e_c00304{left:683.999400px;}
.x18_c00304{left:688.318770px;}
.x36_c00304{left:694.080000px;}
.x19_c00304{left:702.000000px;}
.x37_c00304{left:708.479685px;}
.x43_c00304{left:732.599070px;}
.x38_c00304{left:742.679670px;}
.xb_c00304{left:749.879520px;}
.x13_c00304{left:753.119385px;}
.x9_c00304{left:758.519670px;}
.xc_c00304{left:764.999355px;}
.x39_c00304{left:769.318815px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls18_c00304{letter-spacing:-19.242900pt;}
.ls16_c00304{letter-spacing:-13.382400pt;}
.ls12_c00304{letter-spacing:-12.973200pt;}
.lsf_c00304{letter-spacing:-12.518000pt;}
.ls2e_c00304{letter-spacing:-10.295560pt;}
.ls19_c00304{letter-spacing:-8.144000pt;}
.ls20_c00304{letter-spacing:-7.085600pt;}
.ls11_c00304{letter-spacing:-6.601000pt;}
.lsa_c00304{letter-spacing:-5.943000pt;}
.ls17_c00304{letter-spacing:-5.445533pt;}
.lsc_c00304{letter-spacing:-5.285000pt;}
.ls13_c00304{letter-spacing:-4.670667pt;}
.ls10_c00304{letter-spacing:-4.664473pt;}
.ls4_c00304{letter-spacing:-4.619300pt;}
.ls15_c00304{letter-spacing:-4.417000pt;}
.ls7_c00304{letter-spacing:-3.961300pt;}
.ls27_c00304{letter-spacing:-3.520000pt;}
.ls35_c00304{letter-spacing:-3.389333pt;}
.ls6_c00304{letter-spacing:-3.304000pt;}
.ls1c_c00304{letter-spacing:-3.221333pt;}
.ls33_c00304{letter-spacing:-2.711467pt;}
.ls8_c00304{letter-spacing:-2.639000pt;}
.ls32_c00304{letter-spacing:-2.136933pt;}
.ls36_c00304{letter-spacing:-2.100000pt;}
.ls2d_c00304{letter-spacing:-2.097333pt;}
.ls34_c00304{letter-spacing:-2.066667pt;}
.ls30_c00304{letter-spacing:-2.033187pt;}
.ls5_c00304{letter-spacing:-1.981700pt;}
.ls29_c00304{letter-spacing:-1.426000pt;}
.ls2f_c00304{letter-spacing:-1.356600pt;}
.ls1e_c00304{letter-spacing:-1.356147pt;}
.ls9_c00304{letter-spacing:-1.323700pt;}
.ls2a_c00304{letter-spacing:-0.884000pt;}
.ls24_c00304{letter-spacing:-0.875913pt;}
.ls28_c00304{letter-spacing:-0.763733pt;}
.ls37_c00304{letter-spacing:-0.746667pt;}
.ls23_c00304{letter-spacing:-0.710933pt;}
.ls31_c00304{letter-spacing:-0.677867pt;}
.ls1d_c00304{letter-spacing:-0.676200pt;}
.lsd_c00304{letter-spacing:-0.658000pt;}
.ls38_c00304{letter-spacing:-0.625380pt;}
.lsb_c00304{letter-spacing:0.000000pt;}
.ls1_c00304{letter-spacing:0.615600pt;}
.ls2c_c00304{letter-spacing:0.677867pt;}
.ls1f_c00304{letter-spacing:0.712107pt;}
.ls14_c00304{letter-spacing:0.720000pt;}
.ls1a_c00304{letter-spacing:1.010180pt;}
.ls1b_c00304{letter-spacing:1.356147pt;}
.ls3_c00304{letter-spacing:1.426000pt;}
.lse_c00304{letter-spacing:1.441600pt;}
.ls0_c00304{letter-spacing:2.457000pt;}
.ls2b_c00304{letter-spacing:2.852000pt;}
.ls2_c00304{letter-spacing:3.562933pt;}
.ls26_c00304{letter-spacing:7.125453pt;}
.ls25_c00304{letter-spacing:10.621160pt;}
.ls21_c00304{letter-spacing:10.689213pt;}
.ls22_c00304{letter-spacing:52.500000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
._10_c00304{margin-left:-16.631894pt;}
._f_c00304{margin-left:-15.357577pt;}
._17_c00304{margin-left:-8.997232pt;}
._14_c00304{margin-left:-4.871842pt;}
._13_c00304{margin-left:-3.749847pt;}
._7_c00304{margin-left:-2.489094pt;}
._8_c00304{margin-left:-1.470713pt;}
._12_c00304{width:1.053949pt;}
._6_c00304{width:2.156264pt;}
._4_c00304{width:3.448596pt;}
._3_c00304{width:5.111426pt;}
._a_c00304{width:6.034000pt;}
._0_c00304{width:7.167432pt;}
._11_c00304{width:8.561092pt;}
._2_c00304{width:9.740447pt;}
._1_c00304{width:11.246504pt;}
._9_c00304{width:12.794204pt;}
._b_c00304{width:13.783449pt;}
._5_c00304{width:16.010783pt;}
._c_c00304{width:17.881130pt;}
._d_c00304{width:20.335053pt;}
._15_c00304{width:22.439358pt;}
._e_c00304{width:31.122740pt;}
._16_c00304{width:41.026525pt;}
.fs2_c00304{font-size:30.666667pt;}
.fsb_c00304{font-size:32.000000pt;}
.fsc_c00304{font-size:32.666667pt;}
.fsf_c00304{font-size:35.333333pt;}
.fs19_c00304{font-size:37.333333pt;}
.fs18_c00304{font-size:38.666667pt;}
.fs14_c00304{font-size:40.000000pt;}
.fs1a_c00304{font-size:40.666667pt;}
.fs10_c00304{font-size:41.333333pt;}
.fs12_c00304{font-size:42.000000pt;}
.fs11_c00304{font-size:42.666667pt;}
.fs17_c00304{font-size:43.333333pt;}
.fs16_c00304{font-size:44.000000pt;}
.fs15_c00304{font-size:44.666667pt;}
.fs13_c00304{font-size:45.333333pt;}
.fse_c00304{font-size:54.000000pt;}
.fs8_c00304{font-size:66.666667pt;}
.fs9_c00304{font-size:69.333333pt;}
.fs0_c00304{font-size:70.000000pt;}
.fs3_c00304{font-size:70.666667pt;}
.fs1_c00304{font-size:71.333333pt;}
.fsa_c00304{font-size:72.000000pt;}
.fs5_c00304{font-size:72.666667pt;}
.fs4_c00304{font-size:73.333333pt;}
.fs7_c00304{font-size:75.333333pt;}
.fs6_c00304{font-size:76.000000pt;}
.fsd_c00304{font-size:90.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y22_c00304{bottom:151.359333pt;}
.y21_c00304{bottom:163.519067pt;}
.y20_c00304{bottom:177.919867pt;}
.y1f_c00304{bottom:213.439453pt;}
.y1e_c00304{bottom:295.359267pt;}
.y1d_c00304{bottom:322.239200pt;}
.y1c_c00304{bottom:375.039587pt;}
.y1b_c00304{bottom:381.439453pt;}
.y1a_c00304{bottom:401.600133pt;}
.y19_c00304{bottom:428.479987pt;}
.y18_c00304{bottom:455.039067pt;}
.y17_c00304{bottom:455.041400pt;}
.y16_c00304{bottom:481.280987pt;}
.y15_c00304{bottom:507.840733pt;}
.y14_c00304{bottom:534.400493pt;}
.y12_c00304{bottom:559.998947pt;}
.y13_c00304{bottom:559.999467pt;}
.y11_c00304{bottom:586.878867pt;}
.y10_c00304{bottom:692.799320pt;}
.yf_c00304{bottom:692.799333pt;}
.ye_c00304{bottom:746.239013pt;}
.yd_c00304{bottom:772.798773pt;}
.yb_c00304{bottom:799.039760pt;}
.yc_c00304{bottom:799.039960pt;}
.ya_c00304{bottom:824.958907pt;}
.y9_c00304{bottom:851.519453pt;}
.y8_c00304{bottom:851.519813pt;}
.y7_c00304{bottom:904.959493pt;}
.y5_c00304{bottom:957.758787pt;}
.y4_c00304{bottom:957.758813pt;}
.y6_c00304{bottom:957.919840pt;}
.y3_c00304{bottom:984.000000pt;}
.y2_c00304{bottom:984.000160pt;}
.y1_c00304{bottom:1010.239747pt;}
.h3_c00304{height:31.984375pt;}
.he_c00304{height:33.375000pt;}
.hf_c00304{height:34.070312pt;}
.h12_c00304{height:35.609375pt;}
.h23_c00304{height:38.937500pt;}
.h22_c00304{height:40.312500pt;}
.h20_c00304{height:40.328125pt;}
.h24_c00304{height:40.984375pt;}
.h15_c00304{height:41.220703pt;}
.h13_c00304{height:41.656250pt;}
.h18_c00304{height:41.718750pt;}
.h16_c00304{height:41.875000pt;}
.h14_c00304{height:42.166667pt;}
.h21_c00304{height:42.328125pt;}
.h1e_c00304{height:42.825521pt;}
.h1c_c00304{height:43.000000pt;}
.h1a_c00304{height:43.183594pt;}
.h1b_c00304{height:43.484375pt;}
.h1f_c00304{height:43.671875pt;}
.h19_c00304{height:44.143229pt;}
.h1d_c00304{height:44.343750pt;}
.h17_c00304{height:44.802083pt;}
.h11_c00304{height:52.971680pt;}
.ha_c00304{height:65.429688pt;}
.hb_c00304{height:68.046875pt;}
.h1_c00304{height:68.701172pt;}
.h4_c00304{height:69.355469pt;}
.h2_c00304{height:70.009766pt;}
.hc_c00304{height:70.664062pt;}
.h7_c00304{height:71.318359pt;}
.h5_c00304{height:71.972656pt;}
.h6_c00304{height:72.473958pt;}
.hd_c00304{height:73.935547pt;}
.h9_c00304{height:74.450521pt;}
.h8_c00304{height:75.109375pt;}
.h10_c00304{height:93.867188pt;}
.h0_c00304{height:1122.666667pt;}
.w0_c00304{width:793.333333pt;}
.x0_c00304{left:0.000000pt;}
.xa_c00304{left:122.559067pt;}
.x1_c00304{left:123.839333pt;}
.x1a_c00304{left:135.039613pt;}
.x1f_c00304{left:139.519067pt;}
.x44_c00304{left:153.279747pt;}
.x45_c00304{left:161.598680pt;}
.x3a_c00304{left:163.519067pt;}
.x2_c00304{left:164.799333pt;}
.x29_c00304{left:165.758813pt;}
.x22_c00304{left:169.918920pt;}
.x3_c00304{left:176.958920pt;}
.x3b_c00304{left:178.558533pt;}
.x2a_c00304{left:183.999067pt;}
.x23_c00304{left:204.159733pt;}
.x3c_c00304{left:205.440000pt;}
.x20_c00304{left:208.639200pt;}
.xd_c00304{left:214.398920pt;}
.x3d_c00304{left:218.239720pt;}
.x24_c00304{left:221.759720pt;}
.xe_c00304{left:232.319867pt;}
.x25_c00304{left:246.399867pt;}
.x21_c00304{left:259.839867pt;}
.x46_c00304{left:261.758787pt;}
.x2b_c00304{left:273.279720pt;}
.x26_c00304{left:277.119200pt;}
.x3e_c00304{left:279.358933pt;}
.x47_c00304{left:295.678693pt;}
.x1b_c00304{left:302.399453pt;}
.x14_c00304{left:319.359333pt;}
.x3f_c00304{left:320.318787pt;}
.x2c_c00304{left:322.239200pt;}
.x27_c00304{left:324.159733pt;}
.x1c_c00304{left:328.639200pt;}
.x48_c00304{left:334.719720pt;}
.x28_c00304{left:341.438920pt;}
.x49_c00304{left:346.879307pt;}
.x15_c00304{left:352.960000pt;}
.x2d_c00304{left:360.000000pt;}
.x2e_c00304{left:373.119187pt;}
.x4a_c00304{left:377.279333pt;}
.x16_c00304{left:382.079587pt;}
.x17_c00304{left:394.558507pt;}
.x11_c00304{left:400.319867pt;}
.x4b_c00304{left:401.279333pt;}
.x4c_c00304{left:413.438920pt;}
.x12_c00304{left:417.599040pt;}
.x2f_c00304{left:419.838907pt;}
.x4d_c00304{left:436.158693pt;}
.x30_c00304{left:437.438920pt;}
.x4e_c00304{left:444.799840pt;}
.x40_c00304{left:452.479987pt;}
.x31_c00304{left:453.439453pt;}
.x4_c00304{left:456.319333pt;}
.x4f_c00304{left:466.879307pt;}
.x5_c00304{left:475.519040pt;}
.x50_c00304{left:479.359867pt;}
.x32_c00304{left:484.158693pt;}
.x33_c00304{left:493.119187pt;}
.x51_c00304{left:516.479040pt;}
.xf_c00304{left:519.679733pt;}
.x6_c00304{left:522.559573pt;}
.x10_c00304{left:538.879307pt;}
.x41_c00304{left:550.719720pt;}
.x52_c00304{left:563.838907pt;}
.x7_c00304{left:573.758787pt;}
.x34_c00304{left:576.638707pt;}
.x42_c00304{left:577.599573pt;}
.x53_c00304{left:580.798787pt;}
.x35_c00304{left:589.439987pt;}
.x8_c00304{left:592.319867pt;}
.x1d_c00304{left:595.199707pt;}
.x1e_c00304{left:607.999467pt;}
.x18_c00304{left:611.838907pt;}
.x36_c00304{left:616.960000pt;}
.x19_c00304{left:624.000000pt;}
.x37_c00304{left:629.759720pt;}
.x43_c00304{left:651.199173pt;}
.x38_c00304{left:660.159707pt;}
.xb_c00304{left:666.559573pt;}
.x13_c00304{left:669.439453pt;}
.x9_c00304{left:674.239707pt;}
.xc_c00304{left:679.999427pt;}
.x39_c00304{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac430a4ad69c0d498f56d82f.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_4b48d19a14465e670c82c544.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_465a96a5b5985379962a48a9.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_845d0cdbe78e11ebf46af6c5.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00305;src:url('chunks/assets/font_888e4998ece9d3b8db2d1a02.woff2')format("woff");}.ff5_c00305{font-family:ff5_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;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_aaddcabb8f234b771f1de9fe.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00305;src:url('chunks/assets/font_3768e046cb216109dc270d87.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00305;src:url('chunks/assets/font_225c931e077aed5a20559754.woff2')format("woff");}.ff8_c00305{font-family:ff8_c00305;line-height:1.364746;font-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_c00305{transform:matrix(0.114960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114960,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m46_c00305{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m48_c00305{transform:matrix(0.164062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164062,0.000000,0.000000,0.250000,0,0);}
.m34_c00305{transform:matrix(0.167254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167254,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m36_c00305{transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);}
.m3d_c00305{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m43_c00305{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m47_c00305{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{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);}
.m9_c00305{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m27_c00305{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m35_c00305{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m3e_c00305{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m2d_c00305{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_c00305{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m2c_c00305{transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m12_c00305{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m29_c00305{transform:matrix(0.231092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231092,0.000000,0.000000,0.250000,0,0);}
.m38_c00305{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m33_c00305{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m25_c00305{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_c00305{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m3c_c00305{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m37_c00305{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m31_c00305{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m3a_c00305{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m2f_c00305{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m44_c00305{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m28_c00305{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m42_c00305{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m45_c00305{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m3b_c00305{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m40_c00305{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m39_c00305{transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);}
.m49_c00305{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_c00305{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m16_c00305{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m32_c00305{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m41_c00305{transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293103,0.000000,0.000000,0.250000,0,0);}
.m24_c00305{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);}
.m3f_c00305{transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);}
.m1b_c00305{transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367188,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.377273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377273,0.000000,0.000000,0.250000,0,0);}
.m2b_c00305{transform:matrix(0.409722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409722,0.000000,0.000000,0.250000,0,0);}
.m2e_c00305{transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);}
.m22_c00305{transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489583,0.000000,0.000000,0.250000,0,0);}
.m30_c00305{transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519481,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{transform:matrix(0.557143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557143,0.000000,0.000000,0.250000,0,0);}
.m23_c00305{transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);}
.m1f_c00305{transform:matrix(0.690476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690476,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.834416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.834416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.834416,0.000000,0.000000,0.250000,0,0);}
.m20_c00305{transform:matrix(1.025862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025862,0.000000,0.000000,0.250000,0,0);}
.m21_c00305{transform:matrix(1.486842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.486842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.486842,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{transform:matrix(2.011905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.011905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.011905,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls17_c00305{letter-spacing:-14.002800px;}
.ls31_c00305{letter-spacing:-10.521900px;}
.ls18_c00305{letter-spacing:-9.754725px;}
.ls19_c00305{letter-spacing:-9.281250px;}
.ls4a_c00305{letter-spacing:-8.679825px;}
.ls2c_c00305{letter-spacing:-8.305875px;}
.ls3a_c00305{letter-spacing:-8.053350px;}
.ls12_c00305{letter-spacing:-7.363913px;}
.ls4f_c00305{letter-spacing:-7.322400px;}
.lse_c00305{letter-spacing:-6.623663px;}
.ls11_c00305{letter-spacing:-6.509250px;}
.ls2f_c00305{letter-spacing:-6.487583px;}
.ls53_c00305{letter-spacing:-6.426000px;}
.ls15_c00305{letter-spacing:-6.106500px;}
.ls41_c00305{letter-spacing:-5.928000px;}
.lsd_c00305{letter-spacing:-5.890500px;}
.ls2a_c00305{letter-spacing:-5.362200px;}
.ls2e_c00305{letter-spacing:-5.296875px;}
.ls13_c00305{letter-spacing:-5.150250px;}
.ls30_c00305{letter-spacing:-4.753575px;}
.ls50_c00305{letter-spacing:-4.499625px;}
.lsf_c00305{letter-spacing:-4.418663px;}
.ls46_c00305{letter-spacing:-3.836700px;}
.ls9_c00305{letter-spacing:-3.678413px;}
.ls22_c00305{letter-spacing:-3.597825px;}
.ls33_c00305{letter-spacing:-3.412500px;}
.ls39_c00305{letter-spacing:-3.365400px;}
.ls32_c00305{letter-spacing:-3.296700px;}
.lsa_c00305{letter-spacing:-3.200400px;}
.ls34_c00305{letter-spacing:-3.146400px;}
.ls36_c00305{letter-spacing:-3.113700px;}
.ls3d_c00305{letter-spacing:-3.099600px;}
.ls6_c00305{letter-spacing:-2.945250px;}
.ls51_c00305{letter-spacing:-2.362200px;}
.ls35_c00305{letter-spacing:-2.293500px;}
.ls52_c00305{letter-spacing:-2.285280px;}
.ls44_c00305{letter-spacing:-2.252250px;}
.ls8_c00305{letter-spacing:-2.205000px;}
.ls4d_c00305{letter-spacing:-2.182950px;}
.ls27_c00305{letter-spacing:-2.171768px;}
.ls43_c00305{letter-spacing:-2.148300px;}
.ls40_c00305{letter-spacing:-2.146133px;}
.ls23_c00305{letter-spacing:-2.018625px;}
.ls2b_c00305{letter-spacing:-1.863000px;}
.ls38_c00305{letter-spacing:-1.605000px;}
.ls47_c00305{letter-spacing:-1.576815px;}
.ls37_c00305{letter-spacing:-1.501478px;}
.ls7_c00305{letter-spacing:-1.473413px;}
.ls3e_c00305{letter-spacing:-1.454850px;}
.ls3b_c00305{letter-spacing:-1.431975px;}
.ls26_c00305{letter-spacing:-1.025168px;}
.ls1f_c00305{letter-spacing:-1.022400px;}
.ls29_c00305{letter-spacing:-1.008900px;}
.ls3c_c00305{letter-spacing:-0.800625px;}
.ls3f_c00305{letter-spacing:-0.790500px;}
.ls10_c00305{letter-spacing:-0.787050px;}
.ls4b_c00305{letter-spacing:-0.762600px;}
.ls54_c00305{letter-spacing:-0.750750px;}
.ls14_c00305{letter-spacing:-0.731588px;}
.ls28_c00305{letter-spacing:-0.365400px;}
.lsc_c00305{letter-spacing:0.000000px;}
.ls2d_c00305{letter-spacing:0.798750px;}
.ls48_c00305{letter-spacing:1.431975px;}
.ls45_c00305{letter-spacing:1.576815px;}
.ls21_c00305{letter-spacing:2.311335px;}
.ls4e_c00305{letter-spacing:2.397600px;}
.ls4c_c00305{letter-spacing:2.406450px;}
.ls1a_c00305{letter-spacing:2.483250px;}
.ls25_c00305{letter-spacing:2.782425px;}
.ls4_c00305{letter-spacing:3.727950px;}
.ls5_c00305{letter-spacing:3.938550px;}
.ls42_c00305{letter-spacing:4.012733px;}
.ls16_c00305{letter-spacing:4.181700px;}
.ls0_c00305{letter-spacing:5.150250px;}
.ls49_c00305{letter-spacing:6.305400px;}
.ls20_c00305{letter-spacing:6.354450px;}
.ls1e_c00305{letter-spacing:6.925815px;}
.ls3_c00305{letter-spacing:7.024560px;}
.lsb_c00305{letter-spacing:7.363913px;}
.ls1d_c00305{letter-spacing:7.365600px;}
.ls2_c00305{letter-spacing:8.509800px;}
.ls24_c00305{letter-spacing:10.563975px;}
.ls1_c00305{letter-spacing:10.635690px;}
.ls1b_c00305{letter-spacing:14.890590px;}
.ls1c_c00305{letter-spacing:20.012850px;}
.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;}
._13_c00305{margin-left:-44.195427px;}
._18_c00305{margin-left:-17.975143px;}
._17_c00305{margin-left:-13.078246px;}
._1d_c00305{margin-left:-11.580048px;}
._1a_c00305{margin-left:-10.561744px;}
._5_c00305{margin-left:-7.024353px;}
._6_c00305{margin-left:-3.779735px;}
._7_c00305{margin-left:-2.228993px;}
._a_c00305{width:1.472080px;}
._1b_c00305{width:2.487094px;}
._8_c00305{width:3.573388px;}
._1c_c00305{width:4.574919px;}
._b_c00305{width:6.087684px;}
._e_c00305{width:7.118529px;}
._9_c00305{width:9.042730px;}
._1_c00305{width:10.676785px;}
._3_c00305{width:12.042884px;}
._0_c00305{width:13.812250px;}
._11_c00305{width:15.979427px;}
._2_c00305{width:17.297393px;}
._f_c00305{width:18.420390px;}
._10_c00305{width:19.640868px;}
._4_c00305{width:21.255081px;}
._15_c00305{width:22.681310px;}
._c_c00305{width:23.908647px;}
._16_c00305{width:25.074346px;}
._d_c00305{width:26.540745px;}
._12_c00305{width:28.357566px;}
._14_c00305{width:30.415303px;}
._19_c00305{width:135.313163px;}
.fc0_c00305{color:transparent;}
.fs17_c00305{font-size:14.250000px;}
.fs16_c00305{font-size:15.750000px;}
.fs15_c00305{font-size:17.250000px;}
.fs18_c00305{font-size:18.000000px;}
.fs14_c00305{font-size:21.750000px;}
.fs13_c00305{font-size:24.000000px;}
.fs12_c00305{font-size:26.250000px;}
.fs8_c00305{font-size:39.000000px;}
.fs9_c00305{font-size:41.250000px;}
.fs27_c00305{font-size:43.500000px;}
.fs23_c00305{font-size:45.750000px;}
.fs25_c00305{font-size:46.500000px;}
.fs24_c00305{font-size:47.250000px;}
.fse_c00305{font-size:48.000000px;}
.fs26_c00305{font-size:48.750000px;}
.fs22_c00305{font-size:49.500000px;}
.fsb_c00305{font-size:54.000000px;}
.fs10_c00305{font-size:57.750000px;}
.fsa_c00305{font-size:58.500000px;}
.fsc_c00305{font-size:60.000000px;}
.fsf_c00305{font-size:60.750000px;}
.fs11_c00305{font-size:63.000000px;}
.fs1f_c00305{font-size:63.750000px;}
.fs1e_c00305{font-size:72.000000px;}
.fsd_c00305{font-size:74.250000px;}
.fs5_c00305{font-size:75.000000px;}
.fs21_c00305{font-size:78.000000px;}
.fs0_c00305{font-size:78.750000px;}
.fs3_c00305{font-size:79.500000px;}
.fs6_c00305{font-size:80.250000px;}
.fs1d_c00305{font-size:81.000000px;}
.fs4_c00305{font-size:82.500000px;}
.fs1c_c00305{font-size:83.250000px;}
.fs1_c00305{font-size:84.000000px;}
.fs2_c00305{font-size:84.750000px;}
.fs7_c00305{font-size:86.250000px;}
.fs1b_c00305{font-size:89.250000px;}
.fs20_c00305{font-size:106.500000px;}
.fs19_c00305{font-size:112.500000px;}
.fs1a_c00305{font-size:120.006060px;}
.y0_c00305{bottom:0.000000px;}
.y25_c00305{bottom:212.760150px;}
.y24_c00305{bottom:252.360285px;}
.y23_c00305{bottom:290.879535px;}
.y22_c00305{bottom:363.239250px;}
.y21_c00305{bottom:363.239385px;}
.y20_c00305{bottom:392.760720px;}
.y1f_c00305{bottom:429.119385px;}
.y1e_c00305{bottom:452.520315px;}
.y1d_c00305{bottom:452.521110px;}
.y1b_c00305{bottom:512.640660px;}
.y1c_c00305{bottom:512.640750px;}
.y1a_c00305{bottom:542.160180px;}
.y18_c00305{bottom:571.317855px;}
.y19_c00305{bottom:571.319235px;}
.y17_c00305{bottom:630.718920px;}
.y16_c00305{bottom:660.958830px;}
.y15_c00305{bottom:690.119985px;}
.y14_c00305{bottom:720.359850px;}
.y13_c00305{bottom:749.520270px;}
.y12_c00305{bottom:752.580420px;}
.y11_c00305{bottom:779.399235px;}
.y10_c00305{bottom:779.399640px;}
.yf_c00305{bottom:840.239955px;}
.yd_c00305{bottom:869.759445px;}
.ye_c00305{bottom:869.759490px;}
.yc_c00305{bottom:899.999355px;}
.yb_c00305{bottom:899.999385px;}
.ya_c00305{bottom:929.520720px;}
.y9_c00305{bottom:929.521095px;}
.y7_c00305{bottom:959.039730px;}
.y8_c00305{bottom:959.040615px;}
.y6_c00305{bottom:988.919445px;}
.y5_c00305{bottom:1019.159370px;}
.y4_c00305{bottom:1019.159565px;}
.y3_c00305{bottom:1078.200435px;}
.y2_c00305{bottom:1107.720960px;}
.y1_c00305{bottom:1137.600675px;}
.h1c_c00305{height:14.862305px;}
.h1a_c00305{height:16.426758px;}
.h1d_c00305{height:17.789062px;}
.h19_c00305{height:17.991211px;}
.h1b_c00305{height:21.495117px;}
.h18_c00305{height:21.919922px;}
.h17_c00305{height:25.031250px;}
.h16_c00305{height:27.377930px;}
.hb_c00305{height:40.675781px;}
.hc_c00305{height:43.022461px;}
.h2e_c00305{height:44.901123px;}
.h32_c00305{height:45.369141px;}
.h34_c00305{height:45.637207px;}
.h2d_c00305{height:46.107422px;}
.h36_c00305{height:46.373291px;}
.h35_c00305{height:46.696289px;}
.h30_c00305{height:46.863281px;}
.h38_c00305{height:47.437500px;}
.h2f_c00305{height:47.619141px;}
.h3a_c00305{height:47.845459px;}
.h31_c00305{height:48.178711px;}
.h33_c00305{height:48.375000px;}
.h2c_c00305{height:48.581543px;}
.h37_c00305{height:49.130859px;}
.h11_c00305{height:50.062500px;}
.he_c00305{height:53.367188px;}
.h26_c00305{height:56.678467px;}
.hd_c00305{height:57.385986px;}
.hf_c00305{height:58.857422px;}
.h13_c00305{height:59.593140px;}
.h14_c00305{height:60.231445px;}
.h12_c00305{height:61.224609px;}
.h15_c00305{height:62.261719px;}
.h39_c00305{height:62.578125px;}
.h28_c00305{height:63.002930px;}
.h24_c00305{height:72.562500px;}
.h2a_c00305{height:76.552734px;}
.h1_c00305{height:77.288818px;}
.h10_c00305{height:77.440430px;}
.h4_c00305{height:78.024902px;}
.h7_c00305{height:78.222656px;}
.h2b_c00305{height:78.568359px;}
.h8_c00305{height:78.760986px;}
.h27_c00305{height:80.876953px;}
.h5_c00305{height:80.969238px;}
.h6_c00305{height:81.533203px;}
.h23_c00305{height:81.632812px;}
.h2_c00305{height:82.441406px;}
.ha_c00305{height:83.015625px;}
.h25_c00305{height:83.144531px;}
.h3_c00305{height:83.177490px;}
.h22_c00305{height:83.900391px;}
.h9_c00305{height:84.649658px;}
.h21_c00305{height:87.593994px;}
.h1e_c00305{height:89.956055px;}
.h29_c00305{height:107.332031px;}
.h1f_c00305{height:117.333984px;}
.h20_c00305{height:117.779385px;}
.h0_c00305{height:1263.000000px;}
.w0_c00305{width:892.500000px;}
.x0_c00305{left:0.000000px;}
.x10_c00305{left:140.760450px;}
.x1_c00305{left:141.838950px;}
.x6_c00305{left:143.638545px;}
.x2e_c00305{left:168.838950px;}
.x4c_c00305{left:172.078815px;}
.x3d_c00305{left:174.959400px;}
.x7_c00305{left:186.478665px;}
.x4d_c00305{left:189.000000px;}
.x3e_c00305{left:195.118785px;}
.x66_c00305{left:208.439250px;}
.x11_c00305{left:215.279850px;}
.x4e_c00305{left:228.598500px;}
.x12_c00305{left:230.759100px;}
.x5c_c00305{left:235.080000px;}
.x67_c00305{left:241.198785px;}
.x4a_c00305{left:244.438635px;}
.x5d_c00305{left:251.638500px;}
.x15_c00305{left:255.959400px;}
.x39_c00305{left:260.278800px;}
.x8_c00305{left:264.599700px;}
.x4b_c00305{left:266.758500px;}
.x16_c00305{left:269.279850px;}
.x4f_c00305{left:271.799535px;}
.x68_c00305{left:273.239850px;}
.x3a_c00305{left:274.319250px;}
.x1c_c00305{left:275.398635px;}
.x9_c00305{left:279.719535px;}
.x19_c00305{left:281.159850px;}
.x5e_c00305{left:282.959400px;}
.x69_c00305{left:289.439235px;}
.x22_c00305{left:290.879535px;}
.x1a_c00305{left:298.079385px;}
.x3f_c00305{left:299.158785px;}
.x1d_c00305{left:302.398635px;}
.x5f_c00305{left:308.878350px;}
.x50_c00305{left:314.998950px;}
.xe_c00305{left:317.159385px;}
.x40_c00305{left:323.639100px;}
.x13_c00305{left:331.199850px;}
.x1b_c00305{left:332.999385px;}
.xf_c00305{left:335.519100px;}
.x6a_c00305{left:344.879535px;}
.x51_c00305{left:349.198785px;}
.x36_c00305{left:350.279850px;}
.x14_c00305{left:352.079385px;}
.x6b_c00305{left:361.439685px;}
.x60_c00305{left:364.318800px;}
.x41_c00305{left:370.439235px;}
.xa_c00305{left:372.958950px;}
.x61_c00305{left:374.040000px;}
.x62_c00305{left:389.878320px;}
.x52_c00305{left:392.399820px;}
.xb_c00305{left:393.479235px;}
.x42_c00305{left:399.599670px;}
.x23_c00305{left:405.000000px;}
.x53_c00305{left:406.438665px;}
.x6c_c00305{left:410.759535px;}
.x37_c00305{left:422.278800px;}
.x2_c00305{left:423.359850px;}
.x6d_c00305{left:430.918950px;}
.x3b_c00305{left:434.158770px;}
.x54_c00305{left:435.958335px;}
.x63_c00305{left:441.719565px;}
.x38_c00305{left:446.399820px;}
.x31_c00305{left:448.558635px;}
.x1e_c00305{left:450.359850px;}
.x55_c00305{left:452.518620px;}
.x3c_c00305{left:454.319820px;}
.x24_c00305{left:456.119385px;}
.x2f_c00305{left:459.000000px;}
.x32_c00305{left:465.838950px;}
.x1f_c00305{left:474.838530px;}
.x56_c00305{left:476.998950px;}
.x6e_c00305{left:483.478635px;}
.x57_c00305{left:486.000000px;}
.x6f_c00305{left:492.479685px;}
.x64_c00305{left:494.279250px;}
.x3_c00305{left:497.519070px;}
.x70_c00305{left:502.558635px;}
.x65_c00305{left:513.000000px;}
.x58_c00305{left:520.559100px;}
.x25_c00305{left:525.239220px;}
.xc_c00305{left:528.479235px;}
.x59_c00305{left:534.238770px;}
.x17_c00305{left:538.559685px;}
.xd_c00305{left:543.599070px;}
.x26_c00305{left:555.479235px;}
.x43_c00305{left:559.798515px;}
.x18_c00305{left:563.758530px;}
.x27_c00305{left:574.199850px;}
.x5a_c00305{left:625.678530px;}
.x33_c00305{left:627.479685px;}
.x28_c00305{left:636.479235px;}
.x44_c00305{left:641.879520px;}
.x5b_c00305{left:644.758530px;}
.x29_c00305{left:649.799520px;}
.x46_c00305{left:659.519070px;}
.x4_c00305{left:665.998950px;}
.x47_c00305{left:677.519670px;}
.x5_c00305{left:682.918350px;}
.x45_c00305{left:694.439250px;}
.x34_c00305{left:700.198785px;}
.x2a_c00305{left:705.239820px;}
.x2b_c00305{left:722.879520px;}
.x20_c00305{left:731.158770px;}
.x2c_c00305{left:741.239220px;}
.x30_c00305{left:742.318770px;}
.x48_c00305{left:743.399820px;}
.x21_c00305{left:747.719100px;}
.x49_c00305{left:761.398635px;}
.x2d_c00305{left:764.279250px;}
.x35_c00305{left:772.199340px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls17_c00305{letter-spacing:-12.446933pt;}
.ls31_c00305{letter-spacing:-9.352800pt;}
.ls18_c00305{letter-spacing:-8.670867pt;}
.ls19_c00305{letter-spacing:-8.250000pt;}
.ls4a_c00305{letter-spacing:-7.715400pt;}
.ls2c_c00305{letter-spacing:-7.383000pt;}
.ls3a_c00305{letter-spacing:-7.158533pt;}
.ls12_c00305{letter-spacing:-6.545700pt;}
.ls4f_c00305{letter-spacing:-6.508800pt;}
.lse_c00305{letter-spacing:-5.887700pt;}
.ls11_c00305{letter-spacing:-5.786000pt;}
.ls2f_c00305{letter-spacing:-5.766740pt;}
.ls53_c00305{letter-spacing:-5.712000pt;}
.ls15_c00305{letter-spacing:-5.428000pt;}
.ls41_c00305{letter-spacing:-5.269333pt;}
.lsd_c00305{letter-spacing:-5.236000pt;}
.ls2a_c00305{letter-spacing:-4.766400pt;}
.ls2e_c00305{letter-spacing:-4.708333pt;}
.ls13_c00305{letter-spacing:-4.578000pt;}
.ls30_c00305{letter-spacing:-4.225400pt;}
.ls50_c00305{letter-spacing:-3.999667pt;}
.lsf_c00305{letter-spacing:-3.927700pt;}
.ls46_c00305{letter-spacing:-3.410400pt;}
.ls9_c00305{letter-spacing:-3.269700pt;}
.ls22_c00305{letter-spacing:-3.198067pt;}
.ls33_c00305{letter-spacing:-3.033333pt;}
.ls39_c00305{letter-spacing:-2.991467pt;}
.ls32_c00305{letter-spacing:-2.930400pt;}
.lsa_c00305{letter-spacing:-2.844800pt;}
.ls34_c00305{letter-spacing:-2.796800pt;}
.ls36_c00305{letter-spacing:-2.767733pt;}
.ls3d_c00305{letter-spacing:-2.755200pt;}
.ls6_c00305{letter-spacing:-2.618000pt;}
.ls51_c00305{letter-spacing:-2.099733pt;}
.ls35_c00305{letter-spacing:-2.038667pt;}
.ls52_c00305{letter-spacing:-2.031360pt;}
.ls44_c00305{letter-spacing:-2.002000pt;}
.ls8_c00305{letter-spacing:-1.960000pt;}
.ls4d_c00305{letter-spacing:-1.940400pt;}
.ls27_c00305{letter-spacing:-1.930460pt;}
.ls43_c00305{letter-spacing:-1.909600pt;}
.ls40_c00305{letter-spacing:-1.907673pt;}
.ls23_c00305{letter-spacing:-1.794333pt;}
.ls2b_c00305{letter-spacing:-1.656000pt;}
.ls38_c00305{letter-spacing:-1.426667pt;}
.ls47_c00305{letter-spacing:-1.401613pt;}
.ls37_c00305{letter-spacing:-1.334647pt;}
.ls7_c00305{letter-spacing:-1.309700pt;}
.ls3e_c00305{letter-spacing:-1.293200pt;}
.ls3b_c00305{letter-spacing:-1.272867pt;}
.ls26_c00305{letter-spacing:-0.911260pt;}
.ls1f_c00305{letter-spacing:-0.908800pt;}
.ls29_c00305{letter-spacing:-0.896800pt;}
.ls3c_c00305{letter-spacing:-0.711667pt;}
.ls3f_c00305{letter-spacing:-0.702667pt;}
.ls10_c00305{letter-spacing:-0.699600pt;}
.ls4b_c00305{letter-spacing:-0.677867pt;}
.ls54_c00305{letter-spacing:-0.667333pt;}
.ls14_c00305{letter-spacing:-0.650300pt;}
.ls28_c00305{letter-spacing:-0.324800pt;}
.lsc_c00305{letter-spacing:0.000000pt;}
.ls2d_c00305{letter-spacing:0.710000pt;}
.ls48_c00305{letter-spacing:1.272867pt;}
.ls45_c00305{letter-spacing:1.401613pt;}
.ls21_c00305{letter-spacing:2.054520pt;}
.ls4e_c00305{letter-spacing:2.131200pt;}
.ls4c_c00305{letter-spacing:2.139067pt;}
.ls1a_c00305{letter-spacing:2.207333pt;}
.ls25_c00305{letter-spacing:2.473267pt;}
.ls4_c00305{letter-spacing:3.313733pt;}
.ls5_c00305{letter-spacing:3.500933pt;}
.ls42_c00305{letter-spacing:3.566873pt;}
.ls16_c00305{letter-spacing:3.717067pt;}
.ls0_c00305{letter-spacing:4.578000pt;}
.ls49_c00305{letter-spacing:5.604800pt;}
.ls20_c00305{letter-spacing:5.648400pt;}
.ls1e_c00305{letter-spacing:6.156280pt;}
.ls3_c00305{letter-spacing:6.244053pt;}
.lsb_c00305{letter-spacing:6.545700pt;}
.ls1d_c00305{letter-spacing:6.547200pt;}
.ls2_c00305{letter-spacing:7.564267pt;}
.ls24_c00305{letter-spacing:9.390200pt;}
.ls1_c00305{letter-spacing:9.453947pt;}
.ls1b_c00305{letter-spacing:13.236080pt;}
.ls1c_c00305{letter-spacing:17.789200pt;}
.ws0_c00305{word-spacing:0.000000pt;}
._13_c00305{margin-left:-39.284824pt;}
._18_c00305{margin-left:-15.977904pt;}
._17_c00305{margin-left:-11.625107pt;}
._1d_c00305{margin-left:-10.293376pt;}
._1a_c00305{margin-left:-9.388217pt;}
._5_c00305{margin-left:-6.243869pt;}
._6_c00305{margin-left:-3.359764pt;}
._7_c00305{margin-left:-1.981327pt;}
._a_c00305{width:1.308516pt;}
._1b_c00305{width:2.210750pt;}
._8_c00305{width:3.176345pt;}
._1c_c00305{width:4.066594pt;}
._b_c00305{width:5.411275pt;}
._e_c00305{width:6.327581pt;}
._9_c00305{width:8.037982pt;}
._1_c00305{width:9.490476pt;}
._3_c00305{width:10.704786pt;}
._0_c00305{width:12.277555pt;}
._11_c00305{width:14.203936pt;}
._2_c00305{width:15.375461pt;}
._f_c00305{width:16.373680pt;}
._10_c00305{width:17.458550pt;}
._4_c00305{width:18.893406pt;}
._15_c00305{width:20.161164pt;}
._c_c00305{width:21.252131pt;}
._16_c00305{width:22.288307pt;}
._d_c00305{width:23.591773pt;}
._12_c00305{width:25.206725pt;}
._14_c00305{width:27.035825pt;}
._19_c00305{width:120.278367pt;}
.fs17_c00305{font-size:12.666667pt;}
.fs16_c00305{font-size:14.000000pt;}
.fs15_c00305{font-size:15.333333pt;}
.fs18_c00305{font-size:16.000000pt;}
.fs14_c00305{font-size:19.333333pt;}
.fs13_c00305{font-size:21.333333pt;}
.fs12_c00305{font-size:23.333333pt;}
.fs8_c00305{font-size:34.666667pt;}
.fs9_c00305{font-size:36.666667pt;}
.fs27_c00305{font-size:38.666667pt;}
.fs23_c00305{font-size:40.666667pt;}
.fs25_c00305{font-size:41.333333pt;}
.fs24_c00305{font-size:42.000000pt;}
.fse_c00305{font-size:42.666667pt;}
.fs26_c00305{font-size:43.333333pt;}
.fs22_c00305{font-size:44.000000pt;}
.fsb_c00305{font-size:48.000000pt;}
.fs10_c00305{font-size:51.333333pt;}
.fsa_c00305{font-size:52.000000pt;}
.fsc_c00305{font-size:53.333333pt;}
.fsf_c00305{font-size:54.000000pt;}
.fs11_c00305{font-size:56.000000pt;}
.fs1f_c00305{font-size:56.666667pt;}
.fs1e_c00305{font-size:64.000000pt;}
.fsd_c00305{font-size:66.000000pt;}
.fs5_c00305{font-size:66.666667pt;}
.fs21_c00305{font-size:69.333333pt;}
.fs0_c00305{font-size:70.000000pt;}
.fs3_c00305{font-size:70.666667pt;}
.fs6_c00305{font-size:71.333333pt;}
.fs1d_c00305{font-size:72.000000pt;}
.fs4_c00305{font-size:73.333333pt;}
.fs1c_c00305{font-size:74.000000pt;}
.fs1_c00305{font-size:74.666667pt;}
.fs2_c00305{font-size:75.333333pt;}
.fs7_c00305{font-size:76.666667pt;}
.fs1b_c00305{font-size:79.333333pt;}
.fs20_c00305{font-size:94.666667pt;}
.fs19_c00305{font-size:100.000000pt;}
.fs1a_c00305{font-size:106.672053pt;}
.y0_c00305{bottom:0.000000pt;}
.y25_c00305{bottom:189.120133pt;}
.y24_c00305{bottom:224.320253pt;}
.y23_c00305{bottom:258.559587pt;}
.y22_c00305{bottom:322.879333pt;}
.y21_c00305{bottom:322.879453pt;}
.y20_c00305{bottom:349.120640pt;}
.y1f_c00305{bottom:381.439453pt;}
.y1e_c00305{bottom:402.240280pt;}
.y1d_c00305{bottom:402.240987pt;}
.y1b_c00305{bottom:455.680587pt;}
.y1c_c00305{bottom:455.680667pt;}
.y1a_c00305{bottom:481.920160pt;}
.y18_c00305{bottom:507.838093pt;}
.y19_c00305{bottom:507.839320pt;}
.y17_c00305{bottom:560.639040pt;}
.y16_c00305{bottom:587.518960pt;}
.y15_c00305{bottom:613.439987pt;}
.y14_c00305{bottom:640.319867pt;}
.y13_c00305{bottom:666.240240pt;}
.y12_c00305{bottom:668.960373pt;}
.y11_c00305{bottom:692.799320pt;}
.y10_c00305{bottom:692.799680pt;}
.yf_c00305{bottom:746.879960pt;}
.yd_c00305{bottom:773.119507pt;}
.ye_c00305{bottom:773.119547pt;}
.yc_c00305{bottom:799.999427pt;}
.yb_c00305{bottom:799.999453pt;}
.ya_c00305{bottom:826.240640pt;}
.y9_c00305{bottom:826.240973pt;}
.y7_c00305{bottom:852.479760pt;}
.y8_c00305{bottom:852.480547pt;}
.y6_c00305{bottom:879.039507pt;}
.y5_c00305{bottom:905.919440pt;}
.y4_c00305{bottom:905.919613pt;}
.y3_c00305{bottom:958.400387pt;}
.y2_c00305{bottom:984.640853pt;}
.y1_c00305{bottom:1011.200600pt;}
.h1c_c00305{height:13.210937pt;}
.h1a_c00305{height:14.601562pt;}
.h1d_c00305{height:15.812500pt;}
.h19_c00305{height:15.992187pt;}
.h1b_c00305{height:19.106771pt;}
.h18_c00305{height:19.484375pt;}
.h17_c00305{height:22.250000pt;}
.h16_c00305{height:24.335938pt;}
.hb_c00305{height:36.156250pt;}
.hc_c00305{height:38.242188pt;}
.h2e_c00305{height:39.912109pt;}
.h32_c00305{height:40.328125pt;}
.h34_c00305{height:40.566406pt;}
.h2d_c00305{height:40.984375pt;}
.h36_c00305{height:41.220703pt;}
.h35_c00305{height:41.507812pt;}
.h30_c00305{height:41.656250pt;}
.h38_c00305{height:42.166667pt;}
.h2f_c00305{height:42.328125pt;}
.h3a_c00305{height:42.529297pt;}
.h31_c00305{height:42.825521pt;}
.h33_c00305{height:43.000000pt;}
.h2c_c00305{height:43.183594pt;}
.h37_c00305{height:43.671875pt;}
.h11_c00305{height:44.500000pt;}
.he_c00305{height:47.437500pt;}
.h26_c00305{height:50.380859pt;}
.hd_c00305{height:51.009766pt;}
.hf_c00305{height:52.317708pt;}
.h13_c00305{height:52.971680pt;}
.h14_c00305{height:53.539062pt;}
.h12_c00305{height:54.421875pt;}
.h15_c00305{height:55.343750pt;}
.h39_c00305{height:55.625000pt;}
.h28_c00305{height:56.002604pt;}
.h24_c00305{height:64.500000pt;}
.h2a_c00305{height:68.046875pt;}
.h1_c00305{height:68.701172pt;}
.h10_c00305{height:68.835938pt;}
.h4_c00305{height:69.355469pt;}
.h7_c00305{height:69.531250pt;}
.h2b_c00305{height:69.838542pt;}
.h8_c00305{height:70.009766pt;}
.h27_c00305{height:71.890625pt;}
.h5_c00305{height:71.972656pt;}
.h6_c00305{height:72.473958pt;}
.h23_c00305{height:72.562500pt;}
.h2_c00305{height:73.281250pt;}
.ha_c00305{height:73.791667pt;}
.h25_c00305{height:73.906250pt;}
.h3_c00305{height:73.935547pt;}
.h22_c00305{height:74.578125pt;}
.h9_c00305{height:75.244141pt;}
.h21_c00305{height:77.861328pt;}
.h1e_c00305{height:79.960938pt;}
.h29_c00305{height:95.406250pt;}
.h1f_c00305{height:104.296875pt;}
.h20_c00305{height:104.692787pt;}
.h0_c00305{height:1122.666667pt;}
.w0_c00305{width:793.333333pt;}
.x0_c00305{left:0.000000pt;}
.x10_c00305{left:125.120400pt;}
.x1_c00305{left:126.079067pt;}
.x6_c00305{left:127.678707pt;}
.x2e_c00305{left:150.079067pt;}
.x4c_c00305{left:152.958947pt;}
.x3d_c00305{left:155.519467pt;}
.x7_c00305{left:165.758813pt;}
.x4d_c00305{left:168.000000pt;}
.x3e_c00305{left:173.438920pt;}
.x66_c00305{left:185.279333pt;}
.x11_c00305{left:191.359867pt;}
.x4e_c00305{left:203.198667pt;}
.x12_c00305{left:205.119200pt;}
.x5c_c00305{left:208.960000pt;}
.x67_c00305{left:214.398920pt;}
.x4a_c00305{left:217.278787pt;}
.x5d_c00305{left:223.678667pt;}
.x15_c00305{left:227.519467pt;}
.x39_c00305{left:231.358933pt;}
.x8_c00305{left:235.199733pt;}
.x4b_c00305{left:237.118667pt;}
.x16_c00305{left:239.359867pt;}
.x4f_c00305{left:241.599587pt;}
.x68_c00305{left:242.879867pt;}
.x3a_c00305{left:243.839333pt;}
.x1c_c00305{left:244.798787pt;}
.x9_c00305{left:248.639587pt;}
.x19_c00305{left:249.919867pt;}
.x5e_c00305{left:251.519467pt;}
.x69_c00305{left:257.279320pt;}
.x22_c00305{left:258.559587pt;}
.x1a_c00305{left:264.959453pt;}
.x3f_c00305{left:265.918920pt;}
.x1d_c00305{left:268.798787pt;}
.x5f_c00305{left:274.558533pt;}
.x50_c00305{left:279.999067pt;}
.xe_c00305{left:281.919453pt;}
.x40_c00305{left:287.679200pt;}
.x13_c00305{left:294.399867pt;}
.x1b_c00305{left:295.999453pt;}
.xf_c00305{left:298.239200pt;}
.x6a_c00305{left:306.559587pt;}
.x51_c00305{left:310.398920pt;}
.x36_c00305{left:311.359867pt;}
.x14_c00305{left:312.959453pt;}
.x6b_c00305{left:321.279720pt;}
.x60_c00305{left:323.838933pt;}
.x41_c00305{left:329.279320pt;}
.xa_c00305{left:331.519067pt;}
.x61_c00305{left:332.480000pt;}
.x62_c00305{left:346.558507pt;}
.x52_c00305{left:348.799840pt;}
.xb_c00305{left:349.759320pt;}
.x42_c00305{left:355.199707pt;}
.x23_c00305{left:360.000000pt;}
.x53_c00305{left:361.278813pt;}
.x6c_c00305{left:365.119587pt;}
.x37_c00305{left:375.358933pt;}
.x2_c00305{left:376.319867pt;}
.x6d_c00305{left:383.039067pt;}
.x3b_c00305{left:385.918907pt;}
.x54_c00305{left:387.518520pt;}
.x63_c00305{left:392.639613pt;}
.x38_c00305{left:396.799840pt;}
.x31_c00305{left:398.718787pt;}
.x1e_c00305{left:400.319867pt;}
.x55_c00305{left:402.238773pt;}
.x3c_c00305{left:403.839840pt;}
.x24_c00305{left:405.439453pt;}
.x2f_c00305{left:408.000000pt;}
.x32_c00305{left:414.079067pt;}
.x1f_c00305{left:422.078693pt;}
.x56_c00305{left:423.999067pt;}
.x6e_c00305{left:429.758787pt;}
.x57_c00305{left:432.000000pt;}
.x6f_c00305{left:437.759720pt;}
.x64_c00305{left:439.359333pt;}
.x3_c00305{left:442.239173pt;}
.x70_c00305{left:446.718787pt;}
.x65_c00305{left:456.000000pt;}
.x58_c00305{left:462.719200pt;}
.x25_c00305{left:466.879307pt;}
.xc_c00305{left:469.759320pt;}
.x59_c00305{left:474.878907pt;}
.x17_c00305{left:478.719720pt;}
.xd_c00305{left:483.199173pt;}
.x26_c00305{left:493.759320pt;}
.x43_c00305{left:497.598680pt;}
.x18_c00305{left:501.118693pt;}
.x27_c00305{left:510.399867pt;}
.x5a_c00305{left:556.158693pt;}
.x33_c00305{left:557.759720pt;}
.x28_c00305{left:565.759320pt;}
.x44_c00305{left:570.559573pt;}
.x5b_c00305{left:573.118693pt;}
.x29_c00305{left:577.599573pt;}
.x46_c00305{left:586.239173pt;}
.x4_c00305{left:591.999067pt;}
.x47_c00305{left:602.239707pt;}
.x5_c00305{left:607.038533pt;}
.x45_c00305{left:617.279333pt;}
.x34_c00305{left:622.398920pt;}
.x2a_c00305{left:626.879840pt;}
.x2b_c00305{left:642.559573pt;}
.x20_c00305{left:649.918907pt;}
.x2c_c00305{left:658.879307pt;}
.x30_c00305{left:659.838907pt;}
.x48_c00305{left:660.799840pt;}
.x21_c00305{left:664.639200pt;}
.x49_c00305{left:676.798787pt;}
.x2d_c00305{left:679.359333pt;}
.x35_c00305{left:686.399413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f1cdeb1e56362c4726cb050.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_123e24abf8a724210e00932f.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_030d9a6429a469de4db3f7e8.woff2')format("woff");}.ff4_c00306{font-family:ff4_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:ff5_c00306;src:url('chunks/assets/font_acb9cd4ba0fe0a170f6372aa.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00306;src:url('chunks/assets/font_500636a7a7a721cd5ed377fc.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00306;src:url('chunks/assets/font_5ba62f5d8b103767f58c3720.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33_c00306{transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132353,0.000000,0.000000,0.250000,0,0);}
.m21_c00306{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m6_c00306{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m1c_c00306{transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192105,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m22_c00306{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m2d_c00306{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1f_c00306{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m2e_c00306{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m27_c00306{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1b_c00306{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);}
.m30_c00306{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m12_c00306{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m16_c00306{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m23_c00306{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m24_c00306{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m13_c00306{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{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_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1a_c00306{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m31_c00306{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m34_c00306{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264851,0.000000,0.000000,0.250000,0,0);}
.m20_c00306{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1d_c00306{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272472,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m26_c00306{transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);}
.m28_c00306{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);}
.m2c_c00306{transform:matrix(0.361702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361702,0.000000,0.000000,0.250000,0,0);}
.m2b_c00306{transform:matrix(0.484848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484848,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.519608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519608,0.000000,0.000000,0.250000,0,0);}
.m2a_c00306{transform:matrix(0.774390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774390,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls18_c00306{letter-spacing:-18.224250px;}
.ls14_c00306{letter-spacing:-13.149045px;}
.ls13_c00306{letter-spacing:-12.749198px;}
.ls17_c00306{letter-spacing:-10.576500px;}
.ls29_c00306{letter-spacing:-9.850050px;}
.ls15_c00306{letter-spacing:-8.914500px;}
.ls11_c00306{letter-spacing:-8.175038px;}
.lsf_c00306{letter-spacing:-7.426125px;}
.lse_c00306{letter-spacing:-6.685875px;}
.ls9_c00306{letter-spacing:-5.945625px;}
.ls2a_c00306{letter-spacing:-5.577000px;}
.ls27_c00306{letter-spacing:-5.575500px;}
.ls20_c00306{letter-spacing:-5.462100px;}
.lsd_c00306{letter-spacing:-5.196713px;}
.ls22_c00306{letter-spacing:-4.954050px;}
.ls10_c00306{letter-spacing:-4.921875px;}
.ls1b_c00306{letter-spacing:-4.544250px;}
.ls12_c00306{letter-spacing:-4.456463px;}
.ls3d_c00306{letter-spacing:-4.248300px;}
.ls39_c00306{letter-spacing:-4.243500px;}
.lsc_c00306{letter-spacing:-3.717000px;}
.ls19_c00306{letter-spacing:-3.149213px;}
.ls3f_c00306{letter-spacing:-3.000000px;}
.ls24_c00306{letter-spacing:-2.971800px;}
.ls7_c00306{letter-spacing:-2.968875px;}
.ls3e_c00306{letter-spacing:-2.953125px;}
.ls3b_c00306{letter-spacing:-2.951520px;}
.ls1f_c00306{letter-spacing:-2.363078px;}
.ls5_c00306{letter-spacing:-2.229413px;}
.ls36_c00306{letter-spacing:-1.937250px;}
.ls3a_c00306{letter-spacing:-1.606950px;}
.ls8_c00306{letter-spacing:-1.489163px;}
.ls28_c00306{letter-spacing:-1.350750px;}
.ls3c_c00306{letter-spacing:-1.038375px;}
.lsb_c00306{letter-spacing:-0.740250px;}
.ls34_c00306{letter-spacing:-0.723308px;}
.ls6_c00306{letter-spacing:0.000000px;}
.ls21_c00306{letter-spacing:0.792248px;}
.ls1d_c00306{letter-spacing:0.795150px;}
.ls37_c00306{letter-spacing:0.810000px;}
.ls1e_c00306{letter-spacing:1.533600px;}
.ls32_c00306{letter-spacing:1.608000px;}
.ls25_c00306{letter-spacing:1.612500px;}
.ls23_c00306{letter-spacing:1.752548px;}
.ls1_c00306{letter-spacing:1.885275px;}
.ls38_c00306{letter-spacing:2.532600px;}
.ls1a_c00306{letter-spacing:3.437625px;}
.lsa_c00306{letter-spacing:3.637710px;}
.ls2_c00306{letter-spacing:3.837750px;}
.ls26_c00306{letter-spacing:3.903788px;}
.ls16_c00306{letter-spacing:4.514805px;}
.ls2f_c00306{letter-spacing:6.916950px;}
.ls2d_c00306{letter-spacing:7.678725px;}
.ls30_c00306{letter-spacing:9.132600px;}
.ls0_c00306{letter-spacing:9.214148px;}
.ls35_c00306{letter-spacing:9.430650px;}
.ls3_c00306{letter-spacing:11.516475px;}
.ls33_c00306{letter-spacing:13.201628px;}
.ls2b_c00306{letter-spacing:14.589578px;}
.ls2c_c00306{letter-spacing:18.918450px;}
.ls4_c00306{letter-spacing:19.195200px;}
.ls31_c00306{letter-spacing:31.482450px;}
.ls1c_c00306{letter-spacing:34.603800px;}
.ls2e_c00306{letter-spacing:172.360913px;}
.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;}
._1a_c00306{margin-left:-15.914914px;}
._12_c00306{margin-left:-5.085972px;}
._14_c00306{margin-left:-3.898080px;}
._11_c00306{margin-left:-2.124571px;}
._16_c00306{margin-left:-1.014226px;}
._c_c00306{width:1.128235px;}
._9_c00306{width:2.287346px;}
._7_c00306{width:3.938585px;}
._8_c00306{width:5.752509px;}
._15_c00306{width:7.053994px;}
._d_c00306{width:8.240400px;}
._19_c00306{width:9.319884px;}
._6_c00306{width:10.323976px;}
._10_c00306{width:11.394739px;}
._e_c00306{width:13.608208px;}
._5_c00306{width:15.175511px;}
._2_c00306{width:16.557752px;}
._13_c00306{width:17.954673px;}
._3_c00306{width:19.301031px;}
._1_c00306{width:20.580228px;}
._18_c00306{width:22.614370px;}
._b_c00306{width:23.633053px;}
._4_c00306{width:24.651306px;}
._0_c00306{width:26.693397px;}
._a_c00306{width:28.740897px;}
._17_c00306{width:30.684209px;}
._f_c00306{width:34.122018px;}
._1b_c00306{width:115.070477px;}
._1c_c00306{width:124.004690px;}
.fc0_c00306{color:transparent;}
.fs1b_c00306{font-size:24.750000px;}
.fs15_c00306{font-size:25.500000px;}
.fs18_c00306{font-size:30.000000px;}
.fs1a_c00306{font-size:30.750000px;}
.fs14_c00306{font-size:32.250000px;}
.fs1c_c00306{font-size:35.250000px;}
.fs19_c00306{font-size:38.250000px;}
.fs16_c00306{font-size:42.750000px;}
.fs1f_c00306{font-size:45.000000px;}
.fs17_c00306{font-size:46.500000px;}
.fs1d_c00306{font-size:47.250000px;}
.fs20_c00306{font-size:48.000000px;}
.fs21_c00306{font-size:48.750000px;}
.fs22_c00306{font-size:51.000000px;}
.fs1e_c00306{font-size:51.750000px;}
.fs23_c00306{font-size:57.750000px;}
.fsd_c00306{font-size:60.750000px;}
.fs9_c00306{font-size:66.750000px;}
.fsb_c00306{font-size:69.750000px;}
.fs13_c00306{font-size:71.250000px;}
.fsc_c00306{font-size:72.000000px;}
.fs10_c00306{font-size:72.750000px;}
.fsa_c00306{font-size:75.000000px;}
.fs11_c00306{font-size:75.750000px;}
.fsf_c00306{font-size:76.500000px;}
.fse_c00306{font-size:77.250000px;}
.fs12_c00306{font-size:78.000000px;}
.fs0_c00306{font-size:78.750000px;}
.fs8_c00306{font-size:79.500000px;}
.fs1_c00306{font-size:80.250000px;}
.fs2_c00306{font-size:81.000000px;}
.fs6_c00306{font-size:81.750000px;}
.fs7_c00306{font-size:82.500000px;}
.fs3_c00306{font-size:84.750000px;}
.fs5_c00306{font-size:85.500000px;}
.fs4_c00306{font-size:87.750000px;}
.y0_c00306{bottom:0.000000px;}
.y2b_c00306{bottom:173.519100px;}
.y2a_c00306{bottom:304.199850px;}
.y29_c00306{bottom:304.200255px;}
.y28_c00306{bottom:333.719790px;}
.y27_c00306{bottom:363.599505px;}
.y26_c00306{bottom:393.479235px;}
.y23_c00306{bottom:423.719100px;}
.y24_c00306{bottom:423.898635px;}
.y25_c00306{bottom:424.259535px;}
.y22_c00306{bottom:429.119385px;}
.y20_c00306{bottom:453.238725px;}
.y21_c00306{bottom:453.238770px;}
.y1e_c00306{bottom:483.477945px;}
.y1f_c00306{bottom:483.478635px;}
.y1d_c00306{bottom:512.639100px;}
.y1c_c00306{bottom:512.639940px;}
.y1b_c00306{bottom:542.519670px;}
.y19_c00306{bottom:571.679505px;}
.y1a_c00306{bottom:571.680135px;}
.y18_c00306{bottom:601.559235px;}
.y17_c00306{bottom:631.078770px;}
.y16_c00306{bottom:691.199385px;}
.y15_c00306{bottom:721.439205px;}
.y14_c00306{bottom:750.599670px;}
.y13_c00306{bottom:780.478635px;}
.y12_c00306{bottom:780.478665px;}
.y10_c00306{bottom:809.999955px;}
.y11_c00306{bottom:810.000000px;}
.yf_c00306{bottom:840.239865px;}
.ye_c00306{bottom:840.239955px;}
.yc_c00306{bottom:869.759445px;}
.yd_c00306{bottom:869.759490px;}
.yb_c00306{bottom:899.999355px;}
.ya_c00306{bottom:899.999595px;}
.y9_c00306{bottom:929.879310px;}
.y8_c00306{bottom:959.759040px;}
.y7_c00306{bottom:959.759085px;}
.y6_c00306{bottom:989.278605px;}
.y5_c00306{bottom:1049.040165px;}
.y4_c00306{bottom:1078.559685px;}
.y3_c00306{bottom:1078.559745px;}
.y2_c00306{bottom:1108.439460px;}
.y1_c00306{bottom:1138.319190px;}
.h22_c00306{height:24.459961px;}
.h1c_c00306{height:26.595703px;}
.h1f_c00306{height:30.234375px;}
.h21_c00306{height:32.071289px;}
.h1b_c00306{height:33.635742px;}
.h23_c00306{height:35.525391px;}
.h20_c00306{height:38.548828px;}
.h1d_c00306{height:43.083984px;}
.h26_c00306{height:46.933594px;}
.h24_c00306{height:47.619141px;}
.h28_c00306{height:48.178711px;}
.h27_c00306{height:48.375000px;}
.h1e_c00306{height:48.498047px;}
.h29_c00306{height:50.402344px;}
.h25_c00306{height:51.143555px;}
.h2a_c00306{height:60.231445px;}
.h11_c00306{height:63.360352px;}
.hc_c00306{height:65.511475px;}
.h10_c00306{height:70.664062px;}
.hf_c00306{height:72.747070px;}
.h14_c00306{height:73.318359px;}
.h18_c00306{height:73.608398px;}
.h19_c00306{height:74.311523px;}
.h1a_c00306{height:75.080566px;}
.hd_c00306{height:75.585938px;}
.h16_c00306{height:75.875977px;}
.h15_c00306{height:76.341797px;}
.h17_c00306{height:76.552734px;}
.h13_c00306{height:77.097656px;}
.h1_c00306{height:77.288818px;}
.h12_c00306{height:77.853516px;}
.h9_c00306{height:78.024902px;}
.h2_c00306{height:78.760986px;}
.hb_c00306{height:79.365234px;}
.h3_c00306{height:79.497070px;}
.h7_c00306{height:80.233154px;}
.he_c00306{height:80.876953px;}
.h8_c00306{height:80.969238px;}
.ha_c00306{height:81.533203px;}
.h4_c00306{height:83.177490px;}
.h6_c00306{height:84.498047px;}
.h5_c00306{height:86.721680px;}
.h0_c00306{height:1263.000000px;}
.w0_c00306{width:892.500000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:143.999400px;}
.x30_c00306{left:145.443885px;}
.x33_c00306{left:163.799565px;}
.x4b_c00306{left:191.878950px;}
.x2_c00306{left:195.838950px;}
.x1e_c00306{left:212.040000px;}
.x3_c00306{left:214.918950px;}
.x47_c00306{left:232.919535px;}
.x1f_c00306{left:236.159385px;}
.x3f_c00306{left:249.479685px;}
.x6_c00306{left:263.518635px;}
.x20_c00306{left:269.639100px;}
.x17_c00306{left:276.479685px;}
.x4c_c00306{left:287.639700px;}
.xf_c00306{left:288.719100px;}
.x18_c00306{left:290.518635px;}
.x7_c00306{left:292.319850px;}
.x1b_c00306{left:294.839535px;}
.x10_c00306{left:303.838950px;}
.x48_c00306{left:309.598530px;}
.x8_c00306{left:311.759100px;}
.x49_c00306{left:322.918950px;}
.x4d_c00306{left:326.878950px;}
.x21_c00306{left:327.958350px;}
.x9_c00306{left:334.078785px;}
.x11_c00306{left:335.878350px;}
.x12_c00306{left:351.359235px;}
.x36_c00306{left:355.319250px;}
.x22_c00306{left:362.159850px;}
.x4e_c00306{left:368.998950px;}
.x37_c00306{left:376.559685px;}
.x4f_c00306{left:382.678530px;}
.x4_c00306{left:387.719565px;}
.x40_c00306{left:392.759085px;}
.x43_c00306{left:393.838530px;}
.x23_c00306{left:400.679070px;}
.x5_c00306{left:415.439670px;}
.x2d_c00306{left:423.359850px;}
.x19_c00306{left:424.439250px;}
.x3d_c00306{left:427.679070px;}
.xa_c00306{left:431.279850px;}
.x50_c00306{left:435.958335px;}
.x4a_c00306{left:442.439670px;}
.xb_c00306{left:444.959385px;}
.x24_c00306{left:446.759085px;}
.x1a_c00306{left:447.838530px;}
.x51_c00306{left:449.639700px;}
.x2e_c00306{left:455.399235px;}
.x25_c00306{left:461.158770px;}
.x26_c00306{left:481.319820px;}
.x31_c00306{left:491.039385px;}
.x32_c00306{left:504.719100px;}
.x27_c00306{left:518.039385px;}
.x34_c00306{left:534.958920px;}
.x44_c00306{left:536.039985px;}
.xc_c00306{left:542.519670px;}
.x28_c00306{left:546.838950px;}
.x35_c00306{left:565.198785px;}
.x41_c00306{left:578.519070px;}
.x29_c00306{left:587.879520px;}
.xd_c00306{left:591.119385px;}
.x3c_c00306{left:600.838950px;}
.x13_c00306{left:606.239220px;}
.xe_c00306{left:610.199385px;}
.x14_c00306{left:619.198785px;}
.x2a_c00306{left:641.879520px;}
.x1c_c00306{left:655.559100px;}
.x1d_c00306{left:676.438620px;}
.x42_c00306{left:677.878920px;}
.x3e_c00306{left:694.798560px;}
.x38_c00306{left:696.238770px;}
.x2b_c00306{left:701.639100px;}
.x45_c00306{left:704.519670px;}
.x39_c00306{left:712.078770px;}
.x46_c00306{left:715.318770px;}
.x15_c00306{left:722.159370px;}
.x16_c00306{left:737.279250px;}
.x3a_c00306{left:745.558635px;}
.x3b_c00306{left:760.678530px;}
.x2c_c00306{left:769.318815px;}
.x2f_c00306{left:775.079955px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls18_c00306{letter-spacing:-16.199333pt;}
.ls14_c00306{letter-spacing:-11.688040pt;}
.ls13_c00306{letter-spacing:-11.332620pt;}
.ls17_c00306{letter-spacing:-9.401333pt;}
.ls29_c00306{letter-spacing:-8.755600pt;}
.ls15_c00306{letter-spacing:-7.924000pt;}
.ls11_c00306{letter-spacing:-7.266700pt;}
.lsf_c00306{letter-spacing:-6.601000pt;}
.lse_c00306{letter-spacing:-5.943000pt;}
.ls9_c00306{letter-spacing:-5.285000pt;}
.ls2a_c00306{letter-spacing:-4.957333pt;}
.ls27_c00306{letter-spacing:-4.956000pt;}
.ls20_c00306{letter-spacing:-4.855200pt;}
.lsd_c00306{letter-spacing:-4.619300pt;}
.ls22_c00306{letter-spacing:-4.403600pt;}
.ls10_c00306{letter-spacing:-4.375000pt;}
.ls1b_c00306{letter-spacing:-4.039333pt;}
.ls12_c00306{letter-spacing:-3.961300pt;}
.ls3d_c00306{letter-spacing:-3.776267pt;}
.ls39_c00306{letter-spacing:-3.772000pt;}
.lsc_c00306{letter-spacing:-3.304000pt;}
.ls19_c00306{letter-spacing:-2.799300pt;}
.ls3f_c00306{letter-spacing:-2.666667pt;}
.ls24_c00306{letter-spacing:-2.641600pt;}
.ls7_c00306{letter-spacing:-2.639000pt;}
.ls3e_c00306{letter-spacing:-2.625000pt;}
.ls3b_c00306{letter-spacing:-2.623573pt;}
.ls1f_c00306{letter-spacing:-2.100513pt;}
.ls5_c00306{letter-spacing:-1.981700pt;}
.ls36_c00306{letter-spacing:-1.722000pt;}
.ls3a_c00306{letter-spacing:-1.428400pt;}
.ls8_c00306{letter-spacing:-1.323700pt;}
.ls28_c00306{letter-spacing:-1.200667pt;}
.ls3c_c00306{letter-spacing:-0.923000pt;}
.lsb_c00306{letter-spacing:-0.658000pt;}
.ls34_c00306{letter-spacing:-0.642940pt;}
.ls6_c00306{letter-spacing:0.000000pt;}
.ls21_c00306{letter-spacing:0.704220pt;}
.ls1d_c00306{letter-spacing:0.706800pt;}
.ls37_c00306{letter-spacing:0.720000pt;}
.ls1e_c00306{letter-spacing:1.363200pt;}
.ls32_c00306{letter-spacing:1.429333pt;}
.ls25_c00306{letter-spacing:1.433333pt;}
.ls23_c00306{letter-spacing:1.557820pt;}
.ls1_c00306{letter-spacing:1.675800pt;}
.ls38_c00306{letter-spacing:2.251200pt;}
.ls1a_c00306{letter-spacing:3.055667pt;}
.lsa_c00306{letter-spacing:3.233520pt;}
.ls2_c00306{letter-spacing:3.411333pt;}
.ls26_c00306{letter-spacing:3.470033pt;}
.ls16_c00306{letter-spacing:4.013160pt;}
.ls2f_c00306{letter-spacing:6.148400pt;}
.ls2d_c00306{letter-spacing:6.825533pt;}
.ls30_c00306{letter-spacing:8.117867pt;}
.ls0_c00306{letter-spacing:8.190353pt;}
.ls35_c00306{letter-spacing:8.382800pt;}
.ls3_c00306{letter-spacing:10.236867pt;}
.ls33_c00306{letter-spacing:11.734780pt;}
.ls2b_c00306{letter-spacing:12.968513pt;}
.ls2c_c00306{letter-spacing:16.816400pt;}
.ls4_c00306{letter-spacing:17.062400pt;}
.ls31_c00306{letter-spacing:27.984400pt;}
.ls1c_c00306{letter-spacing:30.758933pt;}
.ls2e_c00306{letter-spacing:153.209700pt;}
.ws0_c00306{word-spacing:0.000000pt;}
._1a_c00306{margin-left:-14.146591pt;}
._12_c00306{margin-left:-4.520864pt;}
._14_c00306{margin-left:-3.464960pt;}
._11_c00306{margin-left:-1.888508pt;}
._16_c00306{margin-left:-0.901534pt;}
._c_c00306{width:1.002875pt;}
._9_c00306{width:2.033196pt;}
._7_c00306{width:3.500964pt;}
._8_c00306{width:5.113342pt;}
._15_c00306{width:6.270217pt;}
._d_c00306{width:7.324800pt;}
._19_c00306{width:8.284342pt;}
._6_c00306{width:9.176868pt;}
._10_c00306{width:10.128657pt;}
._e_c00306{width:12.096185pt;}
._5_c00306{width:13.489343pt;}
._2_c00306{width:14.718002pt;}
._13_c00306{width:15.959709pt;}
._3_c00306{width:17.156472pt;}
._1_c00306{width:18.293536pt;}
._18_c00306{width:20.101662pt;}
._b_c00306{width:21.007158pt;}
._4_c00306{width:21.912272pt;}
._0_c00306{width:23.727464pt;}
._a_c00306{width:25.547464pt;}
._17_c00306{width:27.274853pt;}
._f_c00306{width:30.330683pt;}
._1b_c00306{width:102.284868pt;}
._1c_c00306{width:110.226391pt;}
.fs1b_c00306{font-size:22.000000pt;}
.fs15_c00306{font-size:22.666667pt;}
.fs18_c00306{font-size:26.666667pt;}
.fs1a_c00306{font-size:27.333333pt;}
.fs14_c00306{font-size:28.666667pt;}
.fs1c_c00306{font-size:31.333333pt;}
.fs19_c00306{font-size:34.000000pt;}
.fs16_c00306{font-size:38.000000pt;}
.fs1f_c00306{font-size:40.000000pt;}
.fs17_c00306{font-size:41.333333pt;}
.fs1d_c00306{font-size:42.000000pt;}
.fs20_c00306{font-size:42.666667pt;}
.fs21_c00306{font-size:43.333333pt;}
.fs22_c00306{font-size:45.333333pt;}
.fs1e_c00306{font-size:46.000000pt;}
.fs23_c00306{font-size:51.333333pt;}
.fsd_c00306{font-size:54.000000pt;}
.fs9_c00306{font-size:59.333333pt;}
.fsb_c00306{font-size:62.000000pt;}
.fs13_c00306{font-size:63.333333pt;}
.fsc_c00306{font-size:64.000000pt;}
.fs10_c00306{font-size:64.666667pt;}
.fsa_c00306{font-size:66.666667pt;}
.fs11_c00306{font-size:67.333333pt;}
.fsf_c00306{font-size:68.000000pt;}
.fse_c00306{font-size:68.666667pt;}
.fs12_c00306{font-size:69.333333pt;}
.fs0_c00306{font-size:70.000000pt;}
.fs8_c00306{font-size:70.666667pt;}
.fs1_c00306{font-size:71.333333pt;}
.fs2_c00306{font-size:72.000000pt;}
.fs6_c00306{font-size:72.666667pt;}
.fs7_c00306{font-size:73.333333pt;}
.fs3_c00306{font-size:75.333333pt;}
.fs5_c00306{font-size:76.000000pt;}
.fs4_c00306{font-size:78.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y2b_c00306{bottom:154.239200pt;}
.y2a_c00306{bottom:270.399867pt;}
.y29_c00306{bottom:270.400227pt;}
.y28_c00306{bottom:296.639813pt;}
.y27_c00306{bottom:323.199560pt;}
.y26_c00306{bottom:349.759320pt;}
.y23_c00306{bottom:376.639200pt;}
.y24_c00306{bottom:376.798787pt;}
.y25_c00306{bottom:377.119587pt;}
.y22_c00306{bottom:381.439453pt;}
.y20_c00306{bottom:402.878867pt;}
.y21_c00306{bottom:402.878907pt;}
.y1e_c00306{bottom:429.758173pt;}
.y1f_c00306{bottom:429.758787pt;}
.y1d_c00306{bottom:455.679200pt;}
.y1c_c00306{bottom:455.679947pt;}
.y1b_c00306{bottom:482.239707pt;}
.y19_c00306{bottom:508.159560pt;}
.y1a_c00306{bottom:508.160120pt;}
.y18_c00306{bottom:534.719320pt;}
.y17_c00306{bottom:560.958907pt;}
.y16_c00306{bottom:614.399453pt;}
.y15_c00306{bottom:641.279293pt;}
.y14_c00306{bottom:667.199707pt;}
.y13_c00306{bottom:693.758787pt;}
.y12_c00306{bottom:693.758813pt;}
.y10_c00306{bottom:719.999960pt;}
.y11_c00306{bottom:720.000000pt;}
.yf_c00306{bottom:746.879880pt;}
.ye_c00306{bottom:746.879960pt;}
.yc_c00306{bottom:773.119507pt;}
.yd_c00306{bottom:773.119547pt;}
.yb_c00306{bottom:799.999427pt;}
.ya_c00306{bottom:799.999640pt;}
.y9_c00306{bottom:826.559387pt;}
.y8_c00306{bottom:853.119147pt;}
.y7_c00306{bottom:853.119187pt;}
.y6_c00306{bottom:879.358760pt;}
.y5_c00306{bottom:932.480147pt;}
.y4_c00306{bottom:958.719720pt;}
.y3_c00306{bottom:958.719773pt;}
.y2_c00306{bottom:985.279520pt;}
.y1_c00306{bottom:1011.839280pt;}
.h22_c00306{height:21.742187pt;}
.h1c_c00306{height:23.640625pt;}
.h1f_c00306{height:26.875000pt;}
.h21_c00306{height:28.507812pt;}
.h1b_c00306{height:29.898438pt;}
.h23_c00306{height:31.578125pt;}
.h20_c00306{height:34.265625pt;}
.h1d_c00306{height:38.296875pt;}
.h26_c00306{height:41.718750pt;}
.h24_c00306{height:42.328125pt;}
.h28_c00306{height:42.825521pt;}
.h27_c00306{height:43.000000pt;}
.h1e_c00306{height:43.109375pt;}
.h29_c00306{height:44.802083pt;}
.h25_c00306{height:45.460938pt;}
.h2a_c00306{height:53.539062pt;}
.h11_c00306{height:56.320312pt;}
.hc_c00306{height:58.232422pt;}
.h10_c00306{height:62.812500pt;}
.hf_c00306{height:64.664062pt;}
.h14_c00306{height:65.171875pt;}
.h18_c00306{height:65.429688pt;}
.h19_c00306{height:66.054688pt;}
.h1a_c00306{height:66.738281pt;}
.hd_c00306{height:67.187500pt;}
.h16_c00306{height:67.445312pt;}
.h15_c00306{height:67.859375pt;}
.h17_c00306{height:68.046875pt;}
.h13_c00306{height:68.531250pt;}
.h1_c00306{height:68.701172pt;}
.h12_c00306{height:69.203125pt;}
.h9_c00306{height:69.355469pt;}
.h2_c00306{height:70.009766pt;}
.hb_c00306{height:70.546875pt;}
.h3_c00306{height:70.664062pt;}
.h7_c00306{height:71.318359pt;}
.he_c00306{height:71.890625pt;}
.h8_c00306{height:71.972656pt;}
.ha_c00306{height:72.473958pt;}
.h4_c00306{height:73.935547pt;}
.h6_c00306{height:75.109375pt;}
.h5_c00306{height:77.085938pt;}
.h0_c00306{height:1122.666667pt;}
.w0_c00306{width:793.333333pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:127.999467pt;}
.x30_c00306{left:129.283453pt;}
.x33_c00306{left:145.599613pt;}
.x4b_c00306{left:170.559067pt;}
.x2_c00306{left:174.079067pt;}
.x1e_c00306{left:188.480000pt;}
.x3_c00306{left:191.039067pt;}
.x47_c00306{left:207.039587pt;}
.x1f_c00306{left:209.919453pt;}
.x3f_c00306{left:221.759720pt;}
.x6_c00306{left:234.238787pt;}
.x20_c00306{left:239.679200pt;}
.x17_c00306{left:245.759720pt;}
.x4c_c00306{left:255.679733pt;}
.xf_c00306{left:256.639200pt;}
.x18_c00306{left:258.238787pt;}
.x7_c00306{left:259.839867pt;}
.x1b_c00306{left:262.079587pt;}
.x10_c00306{left:270.079067pt;}
.x48_c00306{left:275.198693pt;}
.x8_c00306{left:277.119200pt;}
.x49_c00306{left:287.039067pt;}
.x4d_c00306{left:290.559067pt;}
.x21_c00306{left:291.518533pt;}
.x9_c00306{left:296.958920pt;}
.x11_c00306{left:298.558533pt;}
.x12_c00306{left:312.319320pt;}
.x36_c00306{left:315.839333pt;}
.x22_c00306{left:321.919867pt;}
.x4e_c00306{left:327.999067pt;}
.x37_c00306{left:334.719720pt;}
.x4f_c00306{left:340.158693pt;}
.x4_c00306{left:344.639613pt;}
.x40_c00306{left:349.119187pt;}
.x43_c00306{left:350.078693pt;}
.x23_c00306{left:356.159173pt;}
.x5_c00306{left:369.279707pt;}
.x2d_c00306{left:376.319867pt;}
.x19_c00306{left:377.279333pt;}
.x3d_c00306{left:380.159173pt;}
.xa_c00306{left:383.359867pt;}
.x50_c00306{left:387.518520pt;}
.x4a_c00306{left:393.279707pt;}
.xb_c00306{left:395.519453pt;}
.x24_c00306{left:397.119187pt;}
.x1a_c00306{left:398.078693pt;}
.x51_c00306{left:399.679733pt;}
.x2e_c00306{left:404.799320pt;}
.x25_c00306{left:409.918907pt;}
.x26_c00306{left:427.839840pt;}
.x31_c00306{left:436.479453pt;}
.x32_c00306{left:448.639200pt;}
.x27_c00306{left:460.479453pt;}
.x34_c00306{left:475.519040pt;}
.x44_c00306{left:476.479987pt;}
.xc_c00306{left:482.239707pt;}
.x28_c00306{left:486.079067pt;}
.x35_c00306{left:502.398920pt;}
.x41_c00306{left:514.239173pt;}
.x29_c00306{left:522.559573pt;}
.xd_c00306{left:525.439453pt;}
.x3c_c00306{left:534.079067pt;}
.x13_c00306{left:538.879307pt;}
.xe_c00306{left:542.399453pt;}
.x14_c00306{left:550.398920pt;}
.x2a_c00306{left:570.559573pt;}
.x1c_c00306{left:582.719200pt;}
.x1d_c00306{left:601.278773pt;}
.x42_c00306{left:602.559040pt;}
.x3e_c00306{left:617.598720pt;}
.x38_c00306{left:618.878907pt;}
.x2b_c00306{left:623.679200pt;}
.x45_c00306{left:626.239707pt;}
.x39_c00306{left:632.958907pt;}
.x46_c00306{left:635.838907pt;}
.x15_c00306{left:641.919440pt;}
.x16_c00306{left:655.359333pt;}
.x3a_c00306{left:662.718787pt;}
.x3b_c00306{left:676.158693pt;}
.x2c_c00306{left:683.838947pt;}
.x2f_c00306{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1e5efdfc72e39c0535dec49.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_cd8019625aa0fef1aa91c93a.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_4b975d118d8247004a24c8b9.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_6afe6a76d51bcc0aa2c1197c.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_839ac8b9292d780bab3501f8.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00307;src:url('chunks/assets/font_805c877979d1f2542e085418.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00307;src:url('chunks/assets/font_fa8a6482868acc0c2e180451.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:1.364746;font-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_c00307{transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.066062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066062,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.154145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154145,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m21_c00307{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m30_c00307{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m15_c00307{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{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);}
.m25_c00307{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m31_c00307{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{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_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);}
.m2a_c00307{transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls1e_c00307{letter-spacing:-32.773275px;}
.lsc_c00307{letter-spacing:-9.754725px;}
.ls10_c00307{letter-spacing:-8.914500px;}
.ls15_c00307{letter-spacing:-7.960785px;}
.ls17_c00307{letter-spacing:-7.638300px;}
.ls24_c00307{letter-spacing:-7.426125px;}
.ls2a_c00307{letter-spacing:-7.355888px;}
.ls1f_c00307{letter-spacing:-7.217100px;}
.lse_c00307{letter-spacing:-7.178325px;}
.ls1a_c00307{letter-spacing:-6.749550px;}
.ls26_c00307{letter-spacing:-6.685875px;}
.ls20_c00307{letter-spacing:-5.945625px;}
.ls1c_c00307{letter-spacing:-5.844983px;}
.lsa_c00307{letter-spacing:-5.196713px;}
.ls25_c00307{letter-spacing:-5.111100px;}
.ls23_c00307{letter-spacing:-4.969125px;}
.ls21_c00307{letter-spacing:-4.816905px;}
.ls33_c00307{letter-spacing:-4.745850px;}
.ls19_c00307{letter-spacing:-4.544250px;}
.ls22_c00307{letter-spacing:-4.456463px;}
.lsd_c00307{letter-spacing:-3.717000px;}
.ls27_c00307{letter-spacing:-3.692700px;}
.ls1_c00307{letter-spacing:-3.608348px;}
.ls30_c00307{letter-spacing:-3.320100px;}
.ls1b_c00307{letter-spacing:-3.230100px;}
.lsf_c00307{letter-spacing:-3.110250px;}
.ls5_c00307{letter-spacing:-2.974125px;}
.ls7_c00307{letter-spacing:-2.968875px;}
.ls11_c00307{letter-spacing:-2.596620px;}
.ls2c_c00307{letter-spacing:-2.404050px;}
.ls12_c00307{letter-spacing:-2.250645px;}
.ls8_c00307{letter-spacing:-2.229413px;}
.ls3_c00307{letter-spacing:-2.224028px;}
.ls32_c00307{letter-spacing:-2.212500px;}
.ls28_c00307{letter-spacing:-2.182950px;}
.ls35_c00307{letter-spacing:-1.790100px;}
.ls16_c00307{letter-spacing:-1.605000px;}
.ls34_c00307{letter-spacing:-1.526850px;}
.ls2d_c00307{letter-spacing:-1.526400px;}
.ls29_c00307{letter-spacing:-1.502550px;}
.lsb_c00307{letter-spacing:-1.489163px;}
.ls6_c00307{letter-spacing:-1.483200px;}
.ls1d_c00307{letter-spacing:-0.849420px;}
.ls2e_c00307{letter-spacing:-0.813750px;}
.ls2b_c00307{letter-spacing:-0.799800px;}
.ls2_c00307{letter-spacing:-0.741600px;}
.ls18_c00307{letter-spacing:-0.740250px;}
.ls31_c00307{letter-spacing:-0.595200px;}
.ls4_c00307{letter-spacing:0.000000px;}
.ls2f_c00307{letter-spacing:0.799800px;}
.ls0_c00307{letter-spacing:1.604250px;}
.ls36_c00307{letter-spacing:2.326500px;}
.ls9_c00307{letter-spacing:2.475000px;}
.ls13_c00307{letter-spacing:3.209198px;}
.ls14_c00307{letter-spacing:3.543750px;}
.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:0.000000px;}
._15_c00307{margin-left:-18.826198px;}
._1_c00307{margin-left:-1.778533px;}
._4_c00307{width:1.565981px;}
._0_c00307{width:2.611585px;}
._10_c00307{width:5.157115px;}
._5_c00307{width:6.218367px;}
._2_c00307{width:7.248070px;}
._8_c00307{width:9.122875px;}
._6_c00307{width:10.949519px;}
._9_c00307{width:12.884141px;}
._14_c00307{width:14.663037px;}
._11_c00307{width:15.664732px;}
._f_c00307{width:19.593386px;}
._12_c00307{width:21.044021px;}
._7_c00307{width:22.451239px;}
._a_c00307{width:23.655074px;}
._c_c00307{width:26.526373px;}
._b_c00307{width:27.548771px;}
._13_c00307{width:28.949137px;}
._d_c00307{width:30.484274px;}
._e_c00307{width:33.823214px;}
._16_c00307{width:59.291958px;}
._3_c00307{width:63.382502px;}
.fc0_c00307{color:transparent;}
.fs15_c00307{font-size:39.750000px;}
.fs14_c00307{font-size:40.500000px;}
.fs12_c00307{font-size:43.500000px;}
.fs17_c00307{font-size:44.250000px;}
.fs18_c00307{font-size:45.000000px;}
.fs16_c00307{font-size:45.750000px;}
.fs10_c00307{font-size:46.500000px;}
.fsf_c00307{font-size:47.250000px;}
.fs13_c00307{font-size:48.000000px;}
.fs11_c00307{font-size:48.750000px;}
.fse_c00307{font-size:49.500000px;}
.fs19_c00307{font-size:51.000000px;}
.fsd_c00307{font-size:51.750000px;}
.fsa_c00307{font-size:73.500000px;}
.fs4_c00307{font-size:75.000000px;}
.fs3_c00307{font-size:75.750000px;}
.fs0_c00307{font-size:77.250000px;}
.fs7_c00307{font-size:78.000000px;}
.fs2_c00307{font-size:78.750000px;}
.fs8_c00307{font-size:79.500000px;}
.fs9_c00307{font-size:80.250000px;}
.fsb_c00307{font-size:81.000000px;}
.fs6_c00307{font-size:82.500000px;}
.fsc_c00307{font-size:83.250000px;}
.fs5_c00307{font-size:84.750000px;}
.fs1_c00307{font-size:144.750000px;}
.y0_c00307{bottom:0.000000px;}
.y15_c00307{bottom:171.001050px;}
.y14_c00307{bottom:186.841215px;}
.y12_c00307{bottom:275.040360px;}
.y10_c00307{bottom:304.200720px;}
.y11_c00307{bottom:304.201515px;}
.ye_c00307{bottom:334.079820px;}
.yf_c00307{bottom:334.080435px;}
.yd_c00307{bottom:363.240960px;}
.yc_c00307{bottom:393.480885px;}
.yb_c00307{bottom:427.680720px;}
.ya_c00307{bottom:452.881215px;}
.y9_c00307{bottom:452.882145px;}
.y7_c00307{bottom:542.520510px;}
.y8_c00307{bottom:542.521320px;}
.y4_c00307{bottom:984.961035px;}
.y5_c00307{bottom:994.321560px;}
.y6_c00307{bottom:1023.480285px;}
.y13_c00307{bottom:1023.480495px;}
.y3_c00307{bottom:1096.200990px;}
.y2_c00307{bottom:1096.201485px;}
.y1_c00307{bottom:1125.720705px;}
.h1c_c00307{height:41.458008px;}
.h1b_c00307{height:42.240234px;}
.h1f_c00307{height:44.595703px;}
.h20_c00307{height:45.351562px;}
.h19_c00307{height:45.369141px;}
.h1e_c00307{height:45.637207px;}
.h1d_c00307{height:46.107422px;}
.h16_c00307{height:46.373291px;}
.h17_c00307{height:46.863281px;}
.h15_c00307{height:47.619141px;}
.h1a_c00307{height:48.375000px;}
.h14_c00307{height:48.581543px;}
.h18_c00307{height:49.130859px;}
.h21_c00307{height:50.402344px;}
.h10_c00307{height:51.143555px;}
.h5_c00307{height:73.608398px;}
.h4_c00307{height:74.344482px;}
.h11_c00307{height:76.552734px;}
.hc_c00307{height:76.658203px;}
.h3_c00307{height:77.288818px;}
.h1_c00307{height:77.853516px;}
.he_c00307{height:78.222656px;}
.h8_c00307{height:78.609375px;}
.h13_c00307{height:78.760986px;}
.hb_c00307{height:79.365234px;}
.h12_c00307{height:79.497070px;}
.h9_c00307{height:80.121094px;}
.ha_c00307{height:80.876953px;}
.h7_c00307{height:80.969238px;}
.hd_c00307{height:81.632812px;}
.h6_c00307{height:83.177490px;}
.hf_c00307{height:83.900391px;}
.h2_c00307{height:150.969727px;}
.h0_c00307{height:1263.000000px;}
.w0_c00307{width:892.500000px;}
.x0_c00307{left:0.000000px;}
.x42_c00307{left:136.079400px;}
.xd_c00307{left:137.159265px;}
.x43_c00307{left:156.238785px;}
.x15_c00307{left:161.639100px;}
.x44_c00307{left:164.878950px;}
.x2f_c00307{left:167.039400px;}
.x30_c00307{left:184.319850px;}
.x31_c00307{left:198.719535px;}
.x22_c00307{left:199.798950px;}
.x16_c00307{left:203.038950px;}
.x32_c00307{left:218.158785px;}
.x27_c00307{left:219.958350px;}
.x33_c00307{left:227.519100px;}
.x17_c00307{left:228.959400px;}
.x23_c00307{left:238.319850px;}
.x45_c00307{left:243.359250px;}
.x34_c00307{left:246.599100px;}
.x28_c00307{left:253.078785px;}
.x35_c00307{left:255.959400px;}
.xe_c00307{left:260.998950px;}
.x18_c00307{left:270.718500px;}
.x4_c00307{left:275.039385px;}
.xa_c00307{left:281.518755px;}
.x1_c00307{left:285.838515px;}
.x46_c00307{left:299.158785px;}
.x36_c00307{left:302.039385px;}
.x37_c00307{left:310.679700px;}
.x3_c00307{left:327.958350px;}
.x2c_c00307{left:333.719535px;}
.x2_c00307{left:344.159385px;}
.x19_c00307{left:349.559685px;}
.x2d_c00307{left:353.878950px;}
.x5_c00307{left:356.759535px;}
.x47_c00307{left:359.279250px;}
.x1a_c00307{left:370.439235px;}
.xf_c00307{left:374.399235px;}
.x24_c00307{left:376.918950px;}
.x48_c00307{left:378.718530px;}
.x10_c00307{left:390.598530px;}
.x49_c00307{left:398.518665px;}
.x6_c00307{left:406.799565px;}
.x2e_c00307{left:412.204440px;}
.xb_c00307{left:427.319820px;}
.x1b_c00307{left:428.399235px;}
.x11_c00307{left:430.918950px;}
.x29_c00307{left:432.718500px;}
.x38_c00307{left:446.759085px;}
.x2a_c00307{left:447.838530px;}
.x12_c00307{left:451.439250px;}
.xc_c00307{left:453.958920px;}
.x25_c00307{left:456.478635px;}
.x39_c00307{left:466.559100px;}
.x26_c00307{left:471.239220px;}
.x2b_c00307{left:480.599670px;}
.x3a_c00307{left:486.359250px;}
.x3b_c00307{left:494.638500px;}
.x7_c00307{left:502.558635px;}
.x4a_c00307{left:506.879520px;}
.x1c_c00307{left:522.719565px;}
.x8_c00307{left:533.879520px;}
.x4d_c00307{left:538.198785px;}
.x3c_c00307{left:540.718500px;}
.x1d_c00307{left:571.319235px;}
.x3d_c00307{left:573.838950px;}
.x1e_c00307{left:596.878920px;}
.x3e_c00307{left:603.719520px;}
.x4b_c00307{left:605.159820px;}
.x4c_c00307{left:624.599070px;}
.x3f_c00307{left:638.278800px;}
.x1f_c00307{left:642.599670px;}
.x9_c00307{left:644.758530px;}
.x40_c00307{left:646.559685px;}
.x13_c00307{left:690.838530px;}
.x14_c00307{left:721.798560px;}
.x20_c00307{left:730.799520px;}
.x41_c00307{left:759.958335px;}
.x21_c00307{left:763.559100px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1e_c00307{letter-spacing:-29.131800pt;}
.lsc_c00307{letter-spacing:-8.670867pt;}
.ls10_c00307{letter-spacing:-7.924000pt;}
.ls15_c00307{letter-spacing:-7.076253pt;}
.ls17_c00307{letter-spacing:-6.789600pt;}
.ls24_c00307{letter-spacing:-6.601000pt;}
.ls2a_c00307{letter-spacing:-6.538567pt;}
.ls1f_c00307{letter-spacing:-6.415200pt;}
.lse_c00307{letter-spacing:-6.380733pt;}
.ls1a_c00307{letter-spacing:-5.999600pt;}
.ls26_c00307{letter-spacing:-5.943000pt;}
.ls20_c00307{letter-spacing:-5.285000pt;}
.ls1c_c00307{letter-spacing:-5.195540pt;}
.lsa_c00307{letter-spacing:-4.619300pt;}
.ls25_c00307{letter-spacing:-4.543200pt;}
.ls23_c00307{letter-spacing:-4.417000pt;}
.ls21_c00307{letter-spacing:-4.281693pt;}
.ls33_c00307{letter-spacing:-4.218533pt;}
.ls19_c00307{letter-spacing:-4.039333pt;}
.ls22_c00307{letter-spacing:-3.961300pt;}
.lsd_c00307{letter-spacing:-3.304000pt;}
.ls27_c00307{letter-spacing:-3.282400pt;}
.ls1_c00307{letter-spacing:-3.207420pt;}
.ls30_c00307{letter-spacing:-2.951200pt;}
.ls1b_c00307{letter-spacing:-2.871200pt;}
.lsf_c00307{letter-spacing:-2.764667pt;}
.ls5_c00307{letter-spacing:-2.643667pt;}
.ls7_c00307{letter-spacing:-2.639000pt;}
.ls11_c00307{letter-spacing:-2.308107pt;}
.ls2c_c00307{letter-spacing:-2.136933pt;}
.ls12_c00307{letter-spacing:-2.000573pt;}
.ls8_c00307{letter-spacing:-1.981700pt;}
.ls3_c00307{letter-spacing:-1.976913pt;}
.ls32_c00307{letter-spacing:-1.966667pt;}
.ls28_c00307{letter-spacing:-1.940400pt;}
.ls35_c00307{letter-spacing:-1.591200pt;}
.ls16_c00307{letter-spacing:-1.426667pt;}
.ls34_c00307{letter-spacing:-1.357200pt;}
.ls2d_c00307{letter-spacing:-1.356800pt;}
.ls29_c00307{letter-spacing:-1.335600pt;}
.lsb_c00307{letter-spacing:-1.323700pt;}
.ls6_c00307{letter-spacing:-1.318400pt;}
.ls1d_c00307{letter-spacing:-0.755040pt;}
.ls2e_c00307{letter-spacing:-0.723333pt;}
.ls2b_c00307{letter-spacing:-0.710933pt;}
.ls2_c00307{letter-spacing:-0.659200pt;}
.ls18_c00307{letter-spacing:-0.658000pt;}
.ls31_c00307{letter-spacing:-0.529067pt;}
.ls4_c00307{letter-spacing:0.000000pt;}
.ls2f_c00307{letter-spacing:0.710933pt;}
.ls0_c00307{letter-spacing:1.426000pt;}
.ls36_c00307{letter-spacing:2.068000pt;}
.ls9_c00307{letter-spacing:2.200000pt;}
.ls13_c00307{letter-spacing:2.852620pt;}
.ls14_c00307{letter-spacing:3.150000pt;}
.ws0_c00307{word-spacing:0.000000pt;}
._15_c00307{margin-left:-16.734398pt;}
._1_c00307{margin-left:-1.580918pt;}
._4_c00307{width:1.391983pt;}
._0_c00307{width:2.321409pt;}
._10_c00307{width:4.584102pt;}
._5_c00307{width:5.527438pt;}
._2_c00307{width:6.442729pt;}
._8_c00307{width:8.109223pt;}
._6_c00307{width:9.732906pt;}
._9_c00307{width:11.452569pt;}
._14_c00307{width:13.033810pt;}
._11_c00307{width:13.924207pt;}
._f_c00307{width:17.416343pt;}
._12_c00307{width:18.705796pt;}
._7_c00307{width:19.956657pt;}
._a_c00307{width:21.026732pt;}
._c_c00307{width:23.578998pt;}
._b_c00307{width:24.487796pt;}
._13_c00307{width:25.732566pt;}
._d_c00307{width:27.097132pt;}
._e_c00307{width:30.065079pt;}
._16_c00307{width:52.703962pt;}
._3_c00307{width:56.340002pt;}
.fs15_c00307{font-size:35.333333pt;}
.fs14_c00307{font-size:36.000000pt;}
.fs12_c00307{font-size:38.666667pt;}
.fs17_c00307{font-size:39.333333pt;}
.fs18_c00307{font-size:40.000000pt;}
.fs16_c00307{font-size:40.666667pt;}
.fs10_c00307{font-size:41.333333pt;}
.fsf_c00307{font-size:42.000000pt;}
.fs13_c00307{font-size:42.666667pt;}
.fs11_c00307{font-size:43.333333pt;}
.fse_c00307{font-size:44.000000pt;}
.fs19_c00307{font-size:45.333333pt;}
.fsd_c00307{font-size:46.000000pt;}
.fsa_c00307{font-size:65.333333pt;}
.fs4_c00307{font-size:66.666667pt;}
.fs3_c00307{font-size:67.333333pt;}
.fs0_c00307{font-size:68.666667pt;}
.fs7_c00307{font-size:69.333333pt;}
.fs2_c00307{font-size:70.000000pt;}
.fs8_c00307{font-size:70.666667pt;}
.fs9_c00307{font-size:71.333333pt;}
.fsb_c00307{font-size:72.000000pt;}
.fs6_c00307{font-size:73.333333pt;}
.fsc_c00307{font-size:74.000000pt;}
.fs5_c00307{font-size:75.333333pt;}
.fs1_c00307{font-size:128.666667pt;}
.y0_c00307{bottom:0.000000pt;}
.y15_c00307{bottom:152.000933pt;}
.y14_c00307{bottom:166.081080pt;}
.y12_c00307{bottom:244.480320pt;}
.y10_c00307{bottom:270.400640pt;}
.y11_c00307{bottom:270.401347pt;}
.ye_c00307{bottom:296.959840pt;}
.yf_c00307{bottom:296.960387pt;}
.yd_c00307{bottom:322.880853pt;}
.yc_c00307{bottom:349.760787pt;}
.yb_c00307{bottom:380.160640pt;}
.ya_c00307{bottom:402.561080pt;}
.y9_c00307{bottom:402.561907pt;}
.y7_c00307{bottom:482.240453pt;}
.y8_c00307{bottom:482.241173pt;}
.y4_c00307{bottom:875.520920pt;}
.y5_c00307{bottom:883.841387pt;}
.y6_c00307{bottom:909.760253pt;}
.y13_c00307{bottom:909.760440pt;}
.y3_c00307{bottom:974.400880pt;}
.y2_c00307{bottom:974.401320pt;}
.y1_c00307{bottom:1000.640627pt;}
.h1c_c00307{height:36.851562pt;}
.h1b_c00307{height:37.546875pt;}
.h1f_c00307{height:39.640625pt;}
.h20_c00307{height:40.312500pt;}
.h19_c00307{height:40.328125pt;}
.h1e_c00307{height:40.566406pt;}
.h1d_c00307{height:40.984375pt;}
.h16_c00307{height:41.220703pt;}
.h17_c00307{height:41.656250pt;}
.h15_c00307{height:42.328125pt;}
.h1a_c00307{height:43.000000pt;}
.h14_c00307{height:43.183594pt;}
.h18_c00307{height:43.671875pt;}
.h21_c00307{height:44.802083pt;}
.h10_c00307{height:45.460938pt;}
.h5_c00307{height:65.429688pt;}
.h4_c00307{height:66.083984pt;}
.h11_c00307{height:68.046875pt;}
.hc_c00307{height:68.140625pt;}
.h3_c00307{height:68.701172pt;}
.h1_c00307{height:69.203125pt;}
.he_c00307{height:69.531250pt;}
.h8_c00307{height:69.875000pt;}
.h13_c00307{height:70.009766pt;}
.hb_c00307{height:70.546875pt;}
.h12_c00307{height:70.664062pt;}
.h9_c00307{height:71.218750pt;}
.ha_c00307{height:71.890625pt;}
.h7_c00307{height:71.972656pt;}
.hd_c00307{height:72.562500pt;}
.h6_c00307{height:73.935547pt;}
.hf_c00307{height:74.578125pt;}
.h2_c00307{height:134.195312pt;}
.h0_c00307{height:1122.666667pt;}
.w0_c00307{width:793.333333pt;}
.x0_c00307{left:0.000000pt;}
.x42_c00307{left:120.959467pt;}
.xd_c00307{left:121.919347pt;}
.x43_c00307{left:138.878920pt;}
.x15_c00307{left:143.679200pt;}
.x44_c00307{left:146.559067pt;}
.x2f_c00307{left:148.479467pt;}
.x30_c00307{left:163.839867pt;}
.x31_c00307{left:176.639587pt;}
.x22_c00307{left:177.599067pt;}
.x16_c00307{left:180.479067pt;}
.x32_c00307{left:193.918920pt;}
.x27_c00307{left:195.518533pt;}
.x33_c00307{left:202.239200pt;}
.x17_c00307{left:203.519467pt;}
.x23_c00307{left:211.839867pt;}
.x45_c00307{left:216.319333pt;}
.x34_c00307{left:219.199200pt;}
.x28_c00307{left:224.958920pt;}
.x35_c00307{left:227.519467pt;}
.xe_c00307{left:231.999067pt;}
.x18_c00307{left:240.638667pt;}
.x4_c00307{left:244.479453pt;}
.xa_c00307{left:250.238893pt;}
.x1_c00307{left:254.078680pt;}
.x46_c00307{left:265.918920pt;}
.x36_c00307{left:268.479453pt;}
.x37_c00307{left:276.159733pt;}
.x3_c00307{left:291.518533pt;}
.x2c_c00307{left:296.639587pt;}
.x2_c00307{left:305.919453pt;}
.x19_c00307{left:310.719720pt;}
.x2d_c00307{left:314.559067pt;}
.x5_c00307{left:317.119587pt;}
.x47_c00307{left:319.359333pt;}
.x1a_c00307{left:329.279320pt;}
.xf_c00307{left:332.799320pt;}
.x24_c00307{left:335.039067pt;}
.x48_c00307{left:336.638693pt;}
.x10_c00307{left:347.198693pt;}
.x49_c00307{left:354.238813pt;}
.x6_c00307{left:361.599613pt;}
.x2e_c00307{left:366.403947pt;}
.xb_c00307{left:379.839840pt;}
.x1b_c00307{left:380.799320pt;}
.x11_c00307{left:383.039067pt;}
.x29_c00307{left:384.638667pt;}
.x38_c00307{left:397.119187pt;}
.x2a_c00307{left:398.078693pt;}
.x12_c00307{left:401.279333pt;}
.xc_c00307{left:403.519040pt;}
.x25_c00307{left:405.758787pt;}
.x39_c00307{left:414.719200pt;}
.x26_c00307{left:418.879307pt;}
.x2b_c00307{left:427.199707pt;}
.x3a_c00307{left:432.319333pt;}
.x3b_c00307{left:439.678667pt;}
.x7_c00307{left:446.718787pt;}
.x4a_c00307{left:450.559573pt;}
.x1c_c00307{left:464.639613pt;}
.x8_c00307{left:474.559573pt;}
.x4d_c00307{left:478.398920pt;}
.x3c_c00307{left:480.638667pt;}
.x1d_c00307{left:507.839320pt;}
.x3d_c00307{left:510.079067pt;}
.x1e_c00307{left:530.559040pt;}
.x3e_c00307{left:536.639573pt;}
.x4b_c00307{left:537.919840pt;}
.x4c_c00307{left:555.199173pt;}
.x3f_c00307{left:567.358933pt;}
.x1f_c00307{left:571.199707pt;}
.x9_c00307{left:573.118693pt;}
.x40_c00307{left:574.719720pt;}
.x13_c00307{left:614.078693pt;}
.x14_c00307{left:641.598720pt;}
.x20_c00307{left:649.599573pt;}
.x41_c00307{left:675.518520pt;}
.x21_c00307{left:678.719200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac4834380a49d5c1eeadf2e3.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_11212ce2a8e7c72afd7ad10f.woff2')format("woff");}.ff2_c00308{font-family:ff2_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:ff3_c00308;src:url('chunks/assets/font_3e37f47a55df64d797d6396d.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_b72daa0bc1e65c8683f2e352.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:1.364746;font-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_c00308{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{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_c00308{transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278646,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{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_c00308{vertical-align:0.000000px;}
.ls1b_c00308{letter-spacing:-10.576500px;}
.ls19_c00308{letter-spacing:-10.191900px;}
.lsb_c00308{letter-spacing:-8.914500px;}
.ls9_c00308{letter-spacing:-6.685875px;}
.lsa_c00308{letter-spacing:-5.945625px;}
.ls6_c00308{letter-spacing:-5.889548px;}
.ls17_c00308{letter-spacing:-5.385600px;}
.ls15_c00308{letter-spacing:-5.295675px;}
.ls13_c00308{letter-spacing:-5.196713px;}
.ls16_c00308{letter-spacing:-4.706490px;}
.ls14_c00308{letter-spacing:-4.456463px;}
.ls7_c00308{letter-spacing:-3.717000px;}
.lsc_c00308{letter-spacing:-3.610800px;}
.lse_c00308{letter-spacing:-2.997150px;}
.ls11_c00308{letter-spacing:-2.971800px;}
.ls2_c00308{letter-spacing:-2.968875px;}
.lsf_c00308{letter-spacing:-2.230020px;}
.ls3_c00308{letter-spacing:-2.229413px;}
.ls18_c00308{letter-spacing:-1.545300px;}
.lsd_c00308{letter-spacing:-1.510500px;}
.ls4_c00308{letter-spacing:-1.489163px;}
.ls10_c00308{letter-spacing:-0.741780px;}
.ls5_c00308{letter-spacing:-0.740250px;}
.ls8_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.740250px;}
.ls12_c00308{letter-spacing:0.803250px;}
.ls1c_c00308{letter-spacing:1.621800px;}
.ls1a_c00308{letter-spacing:3.128250px;}
.ls1_c00308{letter-spacing:8.914500px;}
.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;}
._a_c00308{margin-left:-19.934374px;}
._13_c00308{margin-left:-14.083516px;}
._15_c00308{margin-left:-8.291840px;}
._12_c00308{margin-left:-6.435138px;}
._5_c00308{margin-left:-5.200680px;}
._18_c00308{margin-left:-4.090201px;}
._1_c00308{margin-left:-2.717514px;}
._2_c00308{margin-left:-1.657896px;}
._0_c00308{width:1.212750px;}
._b_c00308{width:2.441488px;}
._7_c00308{width:3.483142px;}
._c_c00308{width:5.247499px;}
._11_c00308{width:6.595431px;}
._3_c00308{width:7.599405px;}
._6_c00308{width:9.015255px;}
._17_c00308{width:10.245791px;}
._d_c00308{width:11.389375px;}
._8_c00308{width:12.524281px;}
._10_c00308{width:13.742454px;}
._e_c00308{width:15.565235px;}
._14_c00308{width:16.649800px;}
._16_c00308{width:18.208412px;}
._4_c00308{width:19.861077px;}
._f_c00308{width:21.230376px;}
._9_c00308{width:26.735060px;}
.fc0_c00308{color:transparent;}
.fs7_c00308{font-size:69.000000px;}
.fs8_c00308{font-size:72.000000px;}
.fs9_c00308{font-size:72.750000px;}
.fs6_c00308{font-size:75.000000px;}
.fs3_c00308{font-size:76.500000px;}
.fs5_c00308{font-size:78.000000px;}
.fs0_c00308{font-size:78.750000px;}
.fs4_c00308{font-size:79.500000px;}
.fs1_c00308{font-size:80.250000px;}
.fs2_c00308{font-size:82.500000px;}
.y0_c00308{bottom:0.000000px;}
.y16_c00308{bottom:200.520750px;}
.y15_c00308{bottom:200.521800px;}
.y14_c00308{bottom:230.401515px;}
.y13_c00308{bottom:259.560285px;}
.y12_c00308{bottom:259.560465px;}
.y11_c00308{bottom:289.080000px;}
.y10_c00308{bottom:318.601335px;}
.ye_c00308{bottom:348.479595px;}
.yf_c00308{bottom:348.480285px;}
.yd_c00308{bottom:377.640750px;}
.yc_c00308{bottom:408.239820px;}
.yb_c00308{bottom:408.240030px;}
.ya_c00308{bottom:437.401170px;}
.y8_c00308{bottom:467.280120px;}
.y9_c00308{bottom:467.280900px;}
.y7_c00308{bottom:526.681185px;}
.y6_c00308{bottom:948.600765px;}
.y5_c00308{bottom:1047.601275px;}
.y3_c00308{bottom:1077.840525px;}
.y4_c00308{bottom:1077.841185px;}
.y2_c00308{bottom:1107.360060px;}
.y1_c00308{bottom:1137.239775px;}
.hb_c00308{height:71.400146px;}
.h8_c00308{height:71.964844px;}
.h7_c00308{height:73.608398px;}
.h9_c00308{height:75.093750px;}
.h4_c00308{height:77.097656px;}
.h1_c00308{height:77.288818px;}
.hd_c00308{height:78.024902px;}
.ha_c00308{height:78.568359px;}
.h6_c00308{height:78.609375px;}
.h2_c00308{height:78.760986px;}
.h5_c00308{height:80.121094px;}
.h3_c00308{height:80.969238px;}
.hc_c00308{height:81.533203px;}
.h0_c00308{height:1263.000000px;}
.w0_c00308{width:892.500000px;}
.x0_c00308{left:0.000000px;}
.x2f_c00308{left:136.799610px;}
.x13_c00308{left:137.879775px;}
.x6_c00308{left:141.479340px;}
.x1_c00308{left:142.918350px;}
.x18_c00308{left:152.639700px;}
.x20_c00308{left:179.998950px;}
.x21_c00308{left:204.838515px;}
.x12_c00308{left:211.319850px;}
.xc_c00308{left:214.198785px;}
.xd_c00308{left:272.519685px;}
.x2a_c00308{left:278.279250px;}
.xe_c00308{left:302.039385px;}
.x2b_c00308{left:311.038950px;}
.xf_c00308{left:352.799535px;}
.x16_c00308{left:392.759085px;}
.x17_c00308{left:407.878920px;}
.x30_c00308{left:441.358665px;}
.x22_c00308{left:447.838530px;}
.x23_c00308{left:465.118785px;}
.x2c_c00308{left:468.358665px;}
.x19_c00308{left:475.919535px;}
.x7_c00308{left:483.839535px;}
.x2d_c00308{left:489.239820px;}
.x2_c00308{left:491.759535px;}
.x8_c00308{left:499.679670px;}
.x1a_c00308{left:507.238770px;}
.x24_c00308{left:512.279850px;}
.x10_c00308{left:514.438665px;}
.x3_c00308{left:516.599070px;}
.x25_c00308{left:536.039985px;}
.x11_c00308{left:556.199385px;}
.x4_c00308{left:577.439670px;}
.x5_c00308{left:591.119385px;}
.x26_c00308{left:602.999400px;}
.x27_c00308{left:618.839535px;}
.x14_c00308{left:642.599670px;}
.x28_c00308{left:655.199850px;}
.x15_c00308{left:661.318770px;}
.x29_c00308{left:672.478635px;}
.x1e_c00308{left:674.639100px;}
.x9_c00308{left:715.679670px;}
.x1b_c00308{left:717.119985px;}
.xa_c00308{left:731.519670px;}
.x1c_c00308{left:733.319235px;}
.x1d_c00308{left:745.919535px;}
.x1f_c00308{left:752.039985px;}
.xb_c00308{left:756.000000px;}
.x2e_c00308{left:768.239220px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls1b_c00308{letter-spacing:-9.401333pt;}
.ls19_c00308{letter-spacing:-9.059467pt;}
.lsb_c00308{letter-spacing:-7.924000pt;}
.ls9_c00308{letter-spacing:-5.943000pt;}
.lsa_c00308{letter-spacing:-5.285000pt;}
.ls6_c00308{letter-spacing:-5.235153pt;}
.ls17_c00308{letter-spacing:-4.787200pt;}
.ls15_c00308{letter-spacing:-4.707267pt;}
.ls13_c00308{letter-spacing:-4.619300pt;}
.ls16_c00308{letter-spacing:-4.183547pt;}
.ls14_c00308{letter-spacing:-3.961300pt;}
.ls7_c00308{letter-spacing:-3.304000pt;}
.lsc_c00308{letter-spacing:-3.209600pt;}
.lse_c00308{letter-spacing:-2.664133pt;}
.ls11_c00308{letter-spacing:-2.641600pt;}
.ls2_c00308{letter-spacing:-2.639000pt;}
.lsf_c00308{letter-spacing:-1.982240pt;}
.ls3_c00308{letter-spacing:-1.981700pt;}
.ls18_c00308{letter-spacing:-1.373600pt;}
.lsd_c00308{letter-spacing:-1.342667pt;}
.ls4_c00308{letter-spacing:-1.323700pt;}
.ls10_c00308{letter-spacing:-0.659360pt;}
.ls5_c00308{letter-spacing:-0.658000pt;}
.ls8_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.658000pt;}
.ls12_c00308{letter-spacing:0.714000pt;}
.ls1c_c00308{letter-spacing:1.441600pt;}
.ls1a_c00308{letter-spacing:2.780667pt;}
.ls1_c00308{letter-spacing:7.924000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
._a_c00308{margin-left:-17.719443pt;}
._13_c00308{margin-left:-12.518681pt;}
._15_c00308{margin-left:-7.370525pt;}
._12_c00308{margin-left:-5.720123pt;}
._5_c00308{margin-left:-4.622826pt;}
._18_c00308{margin-left:-3.635734pt;}
._1_c00308{margin-left:-2.415568pt;}
._2_c00308{margin-left:-1.473685pt;}
._0_c00308{width:1.078000pt;}
._b_c00308{width:2.170211pt;}
._7_c00308{width:3.096126pt;}
._c_c00308{width:4.664443pt;}
._11_c00308{width:5.862606pt;}
._3_c00308{width:6.755026pt;}
._6_c00308{width:8.013560pt;}
._17_c00308{width:9.107370pt;}
._d_c00308{width:10.123889pt;}
._8_c00308{width:11.132694pt;}
._10_c00308{width:12.215515pt;}
._e_c00308{width:13.835764pt;}
._14_c00308{width:14.799823pt;}
._16_c00308{width:16.185255pt;}
._4_c00308{width:17.654291pt;}
._f_c00308{width:18.871445pt;}
._9_c00308{width:23.764498pt;}
.fs7_c00308{font-size:61.333333pt;}
.fs8_c00308{font-size:64.000000pt;}
.fs9_c00308{font-size:64.666667pt;}
.fs6_c00308{font-size:66.666667pt;}
.fs3_c00308{font-size:68.000000pt;}
.fs5_c00308{font-size:69.333333pt;}
.fs0_c00308{font-size:70.000000pt;}
.fs4_c00308{font-size:70.666667pt;}
.fs1_c00308{font-size:71.333333pt;}
.fs2_c00308{font-size:73.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y16_c00308{bottom:178.240667pt;}
.y15_c00308{bottom:178.241600pt;}
.y14_c00308{bottom:204.801347pt;}
.y13_c00308{bottom:230.720253pt;}
.y12_c00308{bottom:230.720413pt;}
.y11_c00308{bottom:256.960000pt;}
.y10_c00308{bottom:283.201187pt;}
.ye_c00308{bottom:309.759640pt;}
.yf_c00308{bottom:309.760253pt;}
.yd_c00308{bottom:335.680667pt;}
.yc_c00308{bottom:362.879840pt;}
.yb_c00308{bottom:362.880027pt;}
.ya_c00308{bottom:388.801040pt;}
.y8_c00308{bottom:415.360107pt;}
.y9_c00308{bottom:415.360800pt;}
.y7_c00308{bottom:468.161053pt;}
.y6_c00308{bottom:843.200680pt;}
.y5_c00308{bottom:931.201133pt;}
.y3_c00308{bottom:958.080467pt;}
.y4_c00308{bottom:958.081053pt;}
.y2_c00308{bottom:984.320053pt;}
.y1_c00308{bottom:1010.879800pt;}
.hb_c00308{height:63.466797pt;}
.h8_c00308{height:63.968750pt;}
.h7_c00308{height:65.429688pt;}
.h9_c00308{height:66.750000pt;}
.h4_c00308{height:68.531250pt;}
.h1_c00308{height:68.701172pt;}
.hd_c00308{height:69.355469pt;}
.ha_c00308{height:69.838542pt;}
.h6_c00308{height:69.875000pt;}
.h2_c00308{height:70.009766pt;}
.h5_c00308{height:71.218750pt;}
.h3_c00308{height:71.972656pt;}
.hc_c00308{height:72.473958pt;}
.h0_c00308{height:1122.666667pt;}
.w0_c00308{width:793.333333pt;}
.x0_c00308{left:0.000000pt;}
.x2f_c00308{left:121.599653pt;}
.x13_c00308{left:122.559800pt;}
.x6_c00308{left:125.759413pt;}
.x1_c00308{left:127.038533pt;}
.x18_c00308{left:135.679733pt;}
.x20_c00308{left:159.999067pt;}
.x21_c00308{left:182.078680pt;}
.x12_c00308{left:187.839867pt;}
.xc_c00308{left:190.398920pt;}
.xd_c00308{left:242.239720pt;}
.x2a_c00308{left:247.359333pt;}
.xe_c00308{left:268.479453pt;}
.x2b_c00308{left:276.479067pt;}
.xf_c00308{left:313.599587pt;}
.x16_c00308{left:349.119187pt;}
.x17_c00308{left:362.559040pt;}
.x30_c00308{left:392.318813pt;}
.x22_c00308{left:398.078693pt;}
.x23_c00308{left:413.438920pt;}
.x2c_c00308{left:416.318813pt;}
.x19_c00308{left:423.039587pt;}
.x7_c00308{left:430.079587pt;}
.x2d_c00308{left:434.879840pt;}
.x2_c00308{left:437.119587pt;}
.x8_c00308{left:444.159707pt;}
.x1a_c00308{left:450.878907pt;}
.x24_c00308{left:455.359867pt;}
.x10_c00308{left:457.278813pt;}
.x3_c00308{left:459.199173pt;}
.x25_c00308{left:476.479987pt;}
.x11_c00308{left:494.399453pt;}
.x4_c00308{left:513.279707pt;}
.x5_c00308{left:525.439453pt;}
.x26_c00308{left:535.999467pt;}
.x27_c00308{left:550.079587pt;}
.x14_c00308{left:571.199707pt;}
.x28_c00308{left:582.399867pt;}
.x15_c00308{left:587.838907pt;}
.x29_c00308{left:597.758787pt;}
.x1e_c00308{left:599.679200pt;}
.x9_c00308{left:636.159707pt;}
.x1b_c00308{left:637.439987pt;}
.xa_c00308{left:650.239707pt;}
.x1c_c00308{left:651.839320pt;}
.x1d_c00308{left:663.039587pt;}
.x1f_c00308{left:668.479987pt;}
.xb_c00308{left:672.000000pt;}
.x2e_c00308{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac986780d2c41c8f0fa39bc9.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.364746;font-style:normal;font-weight:normal;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_658e91680cdeff375685a709.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.364746;font-style:normal;font-weight:normal;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_429fc13a0cfb970fdb676edb.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;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_eb8362121a59678fbe998a52.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_37ad1698031261abd0f53e06.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.432129;font-style:normal;font-weight: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_c00309;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff7_c00309{font-family:ff7_c00309;line-height:1.432129;font-style:normal;font-weight: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_c00309;src:url('chunks/assets/font_94fe68d5e981138edae0bd69.woff2')format("woff");}.ff8_c00309{font-family:ff8_c00309;line-height:1.281250;font-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.046025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046025,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052632,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.053140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053140,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.054025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054025,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.138528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138528,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.148504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148504,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.151515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151515,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{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_c00309{transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.lsa_c00309{letter-spacing:-12.687675px;}
.ls6_c00309{letter-spacing:-12.226305px;}
.ls10_c00309{letter-spacing:-11.756250px;}
.ls13_c00309{letter-spacing:-8.914500px;}
.ls9_c00309{letter-spacing:-8.175038px;}
.ls14_c00309{letter-spacing:-7.500375px;}
.ls8_c00309{letter-spacing:-7.499250px;}
.ls22_c00309{letter-spacing:-6.685875px;}
.ls20_c00309{letter-spacing:-6.001275px;}
.lsb_c00309{letter-spacing:-5.945625px;}
.lsf_c00309{letter-spacing:-5.676300px;}
.lsc_c00309{letter-spacing:-5.196713px;}
.ls11_c00309{letter-spacing:-5.151248px;}
.lse_c00309{letter-spacing:-5.056200px;}
.ls12_c00309{letter-spacing:-4.456463px;}
.ls1b_c00309{letter-spacing:-3.858600px;}
.ls2_c00309{letter-spacing:-3.717000px;}
.ls15_c00309{letter-spacing:-3.643380px;}
.ls3_c00309{letter-spacing:-2.968875px;}
.ls19_c00309{letter-spacing:-2.943225px;}
.ls1f_c00309{letter-spacing:-2.323200px;}
.ls5_c00309{letter-spacing:-2.229413px;}
.ls17_c00309{letter-spacing:-2.208578px;}
.ls1d_c00309{letter-spacing:-1.574625px;}
.ls1c_c00309{letter-spacing:-1.550273px;}
.lsd_c00309{letter-spacing:-1.489163px;}
.ls1a_c00309{letter-spacing:-1.482000px;}
.ls21_c00309{letter-spacing:-0.776085px;}
.ls4_c00309{letter-spacing:-0.740250px;}
.ls18_c00309{letter-spacing:-0.734648px;}
.ls7_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:1.489163px;}
.ls16_c00309{letter-spacing:1.705133px;}
.ls23_c00309{letter-spacing:2.229413px;}
.ls1_c00309{letter-spacing:3.717000px;}
.ls1e_c00309{letter-spacing:49.500000px;}
.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;}
._12_c00309{margin-left:-46.647800px;}
._14_c00309{margin-left:-42.330993px;}
._d_c00309{margin-left:-13.339968px;}
._10_c00309{margin-left:-10.101352px;}
._13_c00309{margin-left:-8.192927px;}
._c_c00309{margin-left:-6.229155px;}
._8_c00309{margin-left:-4.337862px;}
._a_c00309{margin-left:-2.462364px;}
._e_c00309{margin-left:-1.074299px;}
._11_c00309{width:1.155634px;}
._7_c00309{width:2.667010px;}
._9_c00309{width:4.457547px;}
._4_c00309{width:6.296880px;}
._5_c00309{width:7.351179px;}
._3_c00309{width:8.749764px;}
._b_c00309{width:9.998947px;}
._1_c00309{width:11.153437px;}
._0_c00309{width:13.111013px;}
._2_c00309{width:14.806352px;}
._6_c00309{width:18.626886px;}
._16_c00309{width:20.199420px;}
._15_c00309{width:22.025112px;}
._f_c00309{width:26.890450px;}
.fc0_c00309{color:transparent;}
.fs17_c00309{font-size:43.500000px;}
.fs16_c00309{font-size:46.500000px;}
.fs12_c00309{font-size:47.250000px;}
.fs15_c00309{font-size:48.000000px;}
.fs14_c00309{font-size:48.750000px;}
.fs13_c00309{font-size:49.500000px;}
.fs18_c00309{font-size:53.250000px;}
.fs9_c00309{font-size:75.750000px;}
.fsa_c00309{font-size:77.250000px;}
.fs8_c00309{font-size:78.000000px;}
.fs0_c00309{font-size:78.750000px;}
.fs1_c00309{font-size:79.500000px;}
.fs2_c00309{font-size:80.250000px;}
.fsf_c00309{font-size:81.750000px;}
.fs3_c00309{font-size:82.500000px;}
.fs6_c00309{font-size:84.000000px;}
.fs7_c00309{font-size:84.750000px;}
.fs5_c00309{font-size:85.500000px;}
.fs4_c00309{font-size:89.494800px;}
.fsb_c00309{font-size:155.250000px;}
.fsc_c00309{font-size:156.750000px;}
.fs10_c00309{font-size:173.250000px;}
.fse_c00309{font-size:175.500000px;}
.fsd_c00309{font-size:177.000000px;}
.fs11_c00309{font-size:179.250000px;}
.y0_c00309{bottom:0.000000px;}
.y26_c00309{bottom:172.439715px;}
.y21_c00309{bottom:258.840615px;}
.y1b_c00309{bottom:318.958950px;}
.y1a_c00309{bottom:328.680150px;}
.y1c_c00309{bottom:329.398635px;}
.y20_c00309{bottom:369.360195px;}
.y2a_c00309{bottom:369.717675px;}
.y2b_c00309{bottom:406.799055px;}
.y1f_c00309{bottom:409.319775px;}
.y29_c00309{bottom:409.679370px;}
.y19_c00309{bottom:449.998080px;}
.y28_c00309{bottom:450.359640px;}
.y25_c00309{bottom:450.360855px;}
.y18_c00309{bottom:489.959775px;}
.y27_c00309{bottom:490.319235px;}
.y24_c00309{bottom:490.320435px;}
.y17_c00309{bottom:529.919385px;}
.y1e_c00309{bottom:529.919535px;}
.y23_c00309{bottom:529.919835px;}
.y16_c00309{bottom:570.239460px;}
.y1d_c00309{bottom:570.239820px;}
.y22_c00309{bottom:570.600105px;}
.y15_c00309{bottom:640.439250px;}
.y14_c00309{bottom:710.999400px;}
.y13_c00309{bottom:779.400120px;}
.y12_c00309{bottom:809.279850px;}
.y11_c00309{bottom:809.280825px;}
.y10_c00309{bottom:838.800360px;}
.yf_c00309{bottom:868.680090px;}
.ye_c00309{bottom:868.681095px;}
.yd_c00309{bottom:899.279385px;}
.yc_c00309{bottom:928.798920px;}
.yb_c00309{bottom:928.800000px;}
.ya_c00309{bottom:958.679715px;}
.y9_c00309{bottom:958.680525px;}
.y8_c00309{bottom:988.560240px;}
.y7_c00309{bottom:988.560420px;}
.y6_c00309{bottom:1018.079955px;}
.y5_c00309{bottom:1018.080135px;}
.y4_c00309{bottom:1047.599670px;}
.y3_c00309{bottom:1047.600195px;}
.y2_c00309{bottom:1106.638965px;}
.y1_c00309{bottom:1136.878875px;}
.h1c_c00309{height:45.369141px;}
.h1b_c00309{height:46.863281px;}
.h19_c00309{height:47.109375px;}
.h15_c00309{height:47.619141px;}
.h1a_c00309{height:48.375000px;}
.h18_c00309{height:48.919922px;}
.h17_c00309{height:49.130859px;}
.h16_c00309{height:49.886719px;}
.h1d_c00309{height:52.235962px;}
.h1_c00309{height:77.288818px;}
.hd_c00309{height:77.853516px;}
.h5_c00309{height:78.024902px;}
.h2_c00309{height:78.568359px;}
.hb_c00309{height:78.609375px;}
.h3_c00309{height:78.760986px;}
.hc_c00309{height:79.004883px;}
.h12_c00309{height:80.233154px;}
.ha_c00309{height:80.969238px;}
.h4_c00309{height:81.533203px;}
.h8_c00309{height:82.441406px;}
.h9_c00309{height:83.177490px;}
.h7_c00309{height:84.498047px;}
.h6_c00309{height:87.834252px;}
.he_c00309{height:161.920898px;}
.hf_c00309{height:163.485352px;}
.h14_c00309{height:175.924072px;}
.h13_c00309{height:180.694336px;}
.h11_c00309{height:183.041016px;}
.h10_c00309{height:184.605469px;}
.h0_c00309{height:1263.000000px;}
.w0_c00309{width:892.500000px;}
.x0_c00309{left:0.000000px;}
.x15_c00309{left:138.239895px;}
.x1_c00309{left:139.319250px;}
.xd_c00309{left:166.678500px;}
.x29_c00309{left:185.758500px;}
.x16_c00309{left:196.199850px;}
.x17_c00309{left:214.918950px;}
.x2a_c00309{left:224.999400px;}
.xe_c00309{left:231.479235px;}
.x23_c00309{left:255.598500px;}
.x2b_c00309{left:259.199385px;}
.x1a_c00309{left:264.958950px;}
.x1e_c00309{left:266.399250px;}
.x7_c00309{left:275.759535px;}
.x2c_c00309{left:294.478635px;}
.x8_c00309{left:295.559685px;}
.x9_c00309{left:307.439685px;}
.x2d_c00309{left:314.639700px;}
.x1b_c00309{left:323.279850px;}
.xa_c00309{left:338.759100px;}
.xf_c00309{left:344.879535px;}
.x2e_c00309{left:351.000000px;}
.x1c_c00309{left:352.799535px;}
.x2f_c00309{left:364.318800px;}
.x10_c00309{left:365.759100px;}
.x30_c00309{left:394.558635px;}
.x13_c00309{left:402.119385px;}
.x14_c00309{left:422.998950px;}
.x1f_c00309{left:447.479235px;}
.x31_c00309{left:454.319820px;}
.x11_c00309{left:460.799565px;}
.x20_c00309{left:462.599070px;}
.x32_c00309{left:464.039385px;}
.x12_c00309{left:473.399820px;}
.x33_c00309{left:492.838950px;}
.xb_c00309{left:509.039985px;}
.x24_c00309{left:516.599070px;}
.x2_c00309{left:524.159820px;}
.x27_c00309{left:525.959385px;}
.x1d_c00309{left:527.399820px;}
.xc_c00309{left:532.798515px;}
.x21_c00309{left:541.799520px;}
.x3_c00309{left:546.479685px;}
.x22_c00309{left:575.279250px;}
.x25_c00309{left:607.318770px;}
.x28_c00309{left:616.679895px;}
.x34_c00309{left:618.839565px;}
.x35_c00309{left:626.040360px;}
.x18_c00309{left:650.519670px;}
.x26_c00309{left:659.159820px;}
.x19_c00309{left:667.080000px;}
.x4_c00309{left:681.118785px;}
.x5_c00309{left:698.399235px;}
.x6_c00309{left:721.080000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.lsa_c00309{letter-spacing:-11.277933pt;}
.ls6_c00309{letter-spacing:-10.867827pt;}
.ls10_c00309{letter-spacing:-10.450000pt;}
.ls13_c00309{letter-spacing:-7.924000pt;}
.ls9_c00309{letter-spacing:-7.266700pt;}
.ls14_c00309{letter-spacing:-6.667000pt;}
.ls8_c00309{letter-spacing:-6.666000pt;}
.ls22_c00309{letter-spacing:-5.943000pt;}
.ls20_c00309{letter-spacing:-5.334467pt;}
.lsb_c00309{letter-spacing:-5.285000pt;}
.lsf_c00309{letter-spacing:-5.045600pt;}
.lsc_c00309{letter-spacing:-4.619300pt;}
.ls11_c00309{letter-spacing:-4.578887pt;}
.lse_c00309{letter-spacing:-4.494400pt;}
.ls12_c00309{letter-spacing:-3.961300pt;}
.ls1b_c00309{letter-spacing:-3.429867pt;}
.ls2_c00309{letter-spacing:-3.304000pt;}
.ls15_c00309{letter-spacing:-3.238560pt;}
.ls3_c00309{letter-spacing:-2.639000pt;}
.ls19_c00309{letter-spacing:-2.616200pt;}
.ls1f_c00309{letter-spacing:-2.065067pt;}
.ls5_c00309{letter-spacing:-1.981700pt;}
.ls17_c00309{letter-spacing:-1.963180pt;}
.ls1d_c00309{letter-spacing:-1.399667pt;}
.ls1c_c00309{letter-spacing:-1.378020pt;}
.lsd_c00309{letter-spacing:-1.323700pt;}
.ls1a_c00309{letter-spacing:-1.317333pt;}
.ls21_c00309{letter-spacing:-0.689853pt;}
.ls4_c00309{letter-spacing:-0.658000pt;}
.ls18_c00309{letter-spacing:-0.653020pt;}
.ls7_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:1.323700pt;}
.ls16_c00309{letter-spacing:1.515673pt;}
.ls23_c00309{letter-spacing:1.981700pt;}
.ls1_c00309{letter-spacing:3.304000pt;}
.ls1e_c00309{letter-spacing:44.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
._12_c00309{margin-left:-41.464711pt;}
._14_c00309{margin-left:-37.627549pt;}
._d_c00309{margin-left:-11.857749pt;}
._10_c00309{margin-left:-8.978979pt;}
._13_c00309{margin-left:-7.282602pt;}
._c_c00309{margin-left:-5.537026pt;}
._8_c00309{margin-left:-3.855877pt;}
._a_c00309{margin-left:-2.188768pt;}
._e_c00309{margin-left:-0.954932pt;}
._11_c00309{width:1.027230pt;}
._7_c00309{width:2.370675pt;}
._9_c00309{width:3.962264pt;}
._4_c00309{width:5.597226pt;}
._5_c00309{width:6.534381pt;}
._3_c00309{width:7.777568pt;}
._b_c00309{width:8.887953pt;}
._1_c00309{width:9.914166pt;}
._0_c00309{width:11.654234pt;}
._2_c00309{width:13.161202pt;}
._6_c00309{width:16.557232pt;}
._16_c00309{width:17.955040pt;}
._15_c00309{width:19.577877pt;}
._f_c00309{width:23.902623pt;}
.fs17_c00309{font-size:38.666667pt;}
.fs16_c00309{font-size:41.333333pt;}
.fs12_c00309{font-size:42.000000pt;}
.fs15_c00309{font-size:42.666667pt;}
.fs14_c00309{font-size:43.333333pt;}
.fs13_c00309{font-size:44.000000pt;}
.fs18_c00309{font-size:47.333333pt;}
.fs9_c00309{font-size:67.333333pt;}
.fsa_c00309{font-size:68.666667pt;}
.fs8_c00309{font-size:69.333333pt;}
.fs0_c00309{font-size:70.000000pt;}
.fs1_c00309{font-size:70.666667pt;}
.fs2_c00309{font-size:71.333333pt;}
.fsf_c00309{font-size:72.666667pt;}
.fs3_c00309{font-size:73.333333pt;}
.fs6_c00309{font-size:74.666667pt;}
.fs7_c00309{font-size:75.333333pt;}
.fs5_c00309{font-size:76.000000pt;}
.fs4_c00309{font-size:79.550933pt;}
.fsb_c00309{font-size:138.000000pt;}
.fsc_c00309{font-size:139.333333pt;}
.fs10_c00309{font-size:154.000000pt;}
.fse_c00309{font-size:156.000000pt;}
.fsd_c00309{font-size:157.333333pt;}
.fs11_c00309{font-size:159.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y26_c00309{bottom:153.279747pt;}
.y21_c00309{bottom:230.080547pt;}
.y1b_c00309{bottom:283.519067pt;}
.y1a_c00309{bottom:292.160133pt;}
.y1c_c00309{bottom:292.798787pt;}
.y20_c00309{bottom:328.320173pt;}
.y2a_c00309{bottom:328.637933pt;}
.y2b_c00309{bottom:361.599160pt;}
.y1f_c00309{bottom:363.839800pt;}
.y29_c00309{bottom:364.159440pt;}
.y19_c00309{bottom:399.998293pt;}
.y28_c00309{bottom:400.319680pt;}
.y25_c00309{bottom:400.320760pt;}
.y18_c00309{bottom:435.519800pt;}
.y27_c00309{bottom:435.839320pt;}
.y24_c00309{bottom:435.840387pt;}
.y17_c00309{bottom:471.039453pt;}
.y1e_c00309{bottom:471.039587pt;}
.y23_c00309{bottom:471.039853pt;}
.y16_c00309{bottom:506.879520pt;}
.y1d_c00309{bottom:506.879840pt;}
.y22_c00309{bottom:507.200093pt;}
.y15_c00309{bottom:569.279333pt;}
.y14_c00309{bottom:631.999467pt;}
.y13_c00309{bottom:692.800107pt;}
.y12_c00309{bottom:719.359867pt;}
.y11_c00309{bottom:719.360733pt;}
.y10_c00309{bottom:745.600320pt;}
.yf_c00309{bottom:772.160080pt;}
.ye_c00309{bottom:772.160973pt;}
.yd_c00309{bottom:799.359453pt;}
.yc_c00309{bottom:825.599040pt;}
.yb_c00309{bottom:825.600000pt;}
.ya_c00309{bottom:852.159747pt;}
.y9_c00309{bottom:852.160467pt;}
.y8_c00309{bottom:878.720213pt;}
.y7_c00309{bottom:878.720373pt;}
.y6_c00309{bottom:904.959960pt;}
.y5_c00309{bottom:904.960120pt;}
.y4_c00309{bottom:931.199707pt;}
.y3_c00309{bottom:931.200173pt;}
.y2_c00309{bottom:983.679080pt;}
.y1_c00309{bottom:1010.559000pt;}
.h1c_c00309{height:40.328125pt;}
.h1b_c00309{height:41.656250pt;}
.h19_c00309{height:41.875000pt;}
.h15_c00309{height:42.328125pt;}
.h1a_c00309{height:43.000000pt;}
.h18_c00309{height:43.484375pt;}
.h17_c00309{height:43.671875pt;}
.h16_c00309{height:44.343750pt;}
.h1d_c00309{height:46.431966pt;}
.h1_c00309{height:68.701172pt;}
.hd_c00309{height:69.203125pt;}
.h5_c00309{height:69.355469pt;}
.h2_c00309{height:69.838542pt;}
.hb_c00309{height:69.875000pt;}
.h3_c00309{height:70.009766pt;}
.hc_c00309{height:70.226562pt;}
.h12_c00309{height:71.318359pt;}
.ha_c00309{height:71.972656pt;}
.h4_c00309{height:72.473958pt;}
.h8_c00309{height:73.281250pt;}
.h9_c00309{height:73.935547pt;}
.h7_c00309{height:75.109375pt;}
.h6_c00309{height:78.074891pt;}
.he_c00309{height:143.929688pt;}
.hf_c00309{height:145.320312pt;}
.h14_c00309{height:156.376953pt;}
.h13_c00309{height:160.617188pt;}
.h11_c00309{height:162.703125pt;}
.h10_c00309{height:164.093750pt;}
.h0_c00309{height:1122.666667pt;}
.w0_c00309{width:793.333333pt;}
.x0_c00309{left:0.000000pt;}
.x15_c00309{left:122.879907pt;}
.x1_c00309{left:123.839333pt;}
.xd_c00309{left:148.158667pt;}
.x29_c00309{left:165.118667pt;}
.x16_c00309{left:174.399867pt;}
.x17_c00309{left:191.039067pt;}
.x2a_c00309{left:199.999467pt;}
.xe_c00309{left:205.759320pt;}
.x23_c00309{left:227.198667pt;}
.x2b_c00309{left:230.399453pt;}
.x1a_c00309{left:235.519067pt;}
.x1e_c00309{left:236.799333pt;}
.x7_c00309{left:245.119587pt;}
.x2c_c00309{left:261.758787pt;}
.x8_c00309{left:262.719720pt;}
.x9_c00309{left:273.279720pt;}
.x2d_c00309{left:279.679733pt;}
.x1b_c00309{left:287.359867pt;}
.xa_c00309{left:301.119200pt;}
.xf_c00309{left:306.559587pt;}
.x2e_c00309{left:312.000000pt;}
.x1c_c00309{left:313.599587pt;}
.x2f_c00309{left:323.838933pt;}
.x10_c00309{left:325.119200pt;}
.x30_c00309{left:350.718787pt;}
.x13_c00309{left:357.439453pt;}
.x14_c00309{left:375.999067pt;}
.x1f_c00309{left:397.759320pt;}
.x31_c00309{left:403.839840pt;}
.x11_c00309{left:409.599613pt;}
.x20_c00309{left:411.199173pt;}
.x32_c00309{left:412.479453pt;}
.x12_c00309{left:420.799840pt;}
.x33_c00309{left:438.079067pt;}
.xb_c00309{left:452.479987pt;}
.x24_c00309{left:459.199173pt;}
.x2_c00309{left:465.919840pt;}
.x27_c00309{left:467.519453pt;}
.x1d_c00309{left:468.799840pt;}
.xc_c00309{left:473.598680pt;}
.x21_c00309{left:481.599573pt;}
.x3_c00309{left:485.759720pt;}
.x22_c00309{left:511.359333pt;}
.x25_c00309{left:539.838907pt;}
.x28_c00309{left:548.159907pt;}
.x34_c00309{left:550.079613pt;}
.x35_c00309{left:556.480320pt;}
.x18_c00309{left:578.239707pt;}
.x26_c00309{left:585.919840pt;}
.x19_c00309{left:592.960000pt;}
.x4_c00309{left:605.438920pt;}
.x5_c00309{left:620.799320pt;}
.x6_c00309{left:640.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a8afc0a470a54b0b980c411.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_8b900d1cee7766a265eb3099.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.364746;font-style:normal;font-weight:normal;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_cc6b8a275de409e1e3ccae02.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.364746;font-style:normal;font-weight:normal;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_07c01890f5b05ebde4a85dae.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_f547626e8b86d634283d33e5.woff2')format("woff");}.ff5_c00310{font-family:ff5_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:ff6_c00310;src:url('chunks/assets/font_75cbd152e0135ce5953840b8.woff2')format("woff");}.ff6_c00310{font-family:ff6_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:ff7_c00310;src:url('chunks/assets/font_2e2f15543cbc971aa5dfdc29.woff2')format("woff");}.ff7_c00310{font-family:ff7_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;}
.mc_c00310{transform:matrix(0.145161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145161,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);}
.m2b_c00310{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1e_c00310{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{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_c00310{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m20_c00310{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283854,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls12_c00310{letter-spacing:-15.610950px;}
.ls21_c00310{letter-spacing:-14.082750px;}
.lsd_c00310{letter-spacing:-12.803018px;}
.ls15_c00310{letter-spacing:-12.801600px;}
.ls10_c00310{letter-spacing:-12.687675px;}
.ls27_c00310{letter-spacing:-10.801650px;}
.ls17_c00310{letter-spacing:-9.254100px;}
.ls23_c00310{letter-spacing:-9.203962px;}
.ls1_c00310{letter-spacing:-8.914500px;}
.lsf_c00310{letter-spacing:-8.175038px;}
.ls1b_c00310{letter-spacing:-7.446060px;}
.ls16_c00310{letter-spacing:-6.997200px;}
.ls22_c00310{letter-spacing:-6.685875px;}
.ls2e_c00310{letter-spacing:-6.635025px;}
.lsa_c00310{letter-spacing:-6.509250px;}
.ls1d_c00310{letter-spacing:-6.109718px;}
.lsc_c00310{letter-spacing:-5.945625px;}
.lsb_c00310{letter-spacing:-5.729850px;}
.ls7_c00310{letter-spacing:-5.196713px;}
.ls28_c00310{letter-spacing:-4.590000px;}
.ls11_c00310{letter-spacing:-4.496625px;}
.ls9_c00310{letter-spacing:-4.456463px;}
.ls2f_c00310{letter-spacing:-4.418663px;}
.lse_c00310{letter-spacing:-4.412948px;}
.ls1c_c00310{letter-spacing:-4.210125px;}
.ls24_c00310{letter-spacing:-4.204800px;}
.ls13_c00310{letter-spacing:-4.142070px;}
.ls6_c00310{letter-spacing:-3.717000px;}
.ls2d_c00310{letter-spacing:-3.118500px;}
.ls2c_c00310{letter-spacing:-3.059100px;}
.ls2_c00310{letter-spacing:-2.968875px;}
.ls20_c00310{letter-spacing:-2.943225px;}
.ls26_c00310{letter-spacing:-2.642400px;}
.ls2b_c00310{letter-spacing:-2.450250px;}
.ls1f_c00310{letter-spacing:-2.356808px;}
.ls3_c00310{letter-spacing:-2.229413px;}
.ls4_c00310{letter-spacing:-1.489163px;}
.ls1a_c00310{letter-spacing:-0.898425px;}
.ls19_c00310{letter-spacing:-0.885600px;}
.ls5_c00310{letter-spacing:-0.740250px;}
.ls8_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.740250px;}
.ls14_c00310{letter-spacing:1.292700px;}
.ls18_c00310{letter-spacing:2.182500px;}
.ls29_c00310{letter-spacing:2.275200px;}
.ls2a_c00310{letter-spacing:2.317950px;}
.ls1e_c00310{letter-spacing:2.386125px;}
.ls25_c00310{letter-spacing:39.262350px;}
.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;}
._17_c00310{margin-left:-8.720092px;}
._10_c00310{margin-left:-4.374548px;}
._14_c00310{margin-left:-2.385739px;}
._a_c00310{margin-left:-1.194028px;}
._11_c00310{width:1.212988px;}
._9_c00310{width:2.866054px;}
._16_c00310{width:3.897739px;}
._7_c00310{width:5.138958px;}
._8_c00310{width:6.139380px;}
._b_c00310{width:8.016988px;}
._6_c00310{width:9.998412px;}
._4_c00310{width:11.660379px;}
._2_c00310{width:13.469742px;}
._3_c00310{width:15.357454px;}
._15_c00310{width:16.366048px;}
._1_c00310{width:17.828614px;}
._12_c00310{width:19.026520px;}
._5_c00310{width:20.108946px;}
._f_c00310{width:21.324311px;}
._c_c00310{width:23.029264px;}
._d_c00310{width:25.609589px;}
._e_c00310{width:26.758983px;}
._18_c00310{width:28.486163px;}
._13_c00310{width:30.273209px;}
._0_c00310{width:36.350584px;}
.fc0_c00310{color:transparent;}
.fs10_c00310{font-size:33.750000px;}
.fsf_c00310{font-size:39.750000px;}
.fs6_c00310{font-size:46.500000px;}
.fsb_c00310{font-size:54.000000px;}
.fs16_c00310{font-size:60.750000px;}
.fs11_c00310{font-size:66.000000px;}
.fs12_c00310{font-size:66.750000px;}
.fs7_c00310{font-size:72.000000px;}
.fsa_c00310{font-size:72.750000px;}
.fs8_c00310{font-size:73.500000px;}
.fs15_c00310{font-size:74.250000px;}
.fs13_c00310{font-size:75.000000px;}
.fs14_c00310{font-size:76.500000px;}
.fsc_c00310{font-size:77.250000px;}
.fs0_c00310{font-size:78.750000px;}
.fsd_c00310{font-size:79.500000px;}
.fs2_c00310{font-size:80.250000px;}
.fse_c00310{font-size:81.000000px;}
.fs9_c00310{font-size:81.750000px;}
.fs1_c00310{font-size:82.500000px;}
.fs3_c00310{font-size:83.250000px;}
.fs4_c00310{font-size:84.750000px;}
.fs5_c00310{font-size:87.000000px;}
.y0_c00310{bottom:0.000000px;}
.y28_c00310{bottom:275.400240px;}
.y27_c00310{bottom:305.640150px;}
.y26_c00310{bottom:335.159850px;}
.y25_c00310{bottom:335.160165px;}
.y24_c00310{bottom:364.679700px;}
.y23_c00310{bottom:394.560285px;}
.y22_c00310{bottom:424.800150px;}
.y21_c00310{bottom:432.720150px;}
.y1f_c00310{bottom:453.958995px;}
.y20_c00310{bottom:453.960570px;}
.y1e_c00310{bottom:513.360060px;}
.y1d_c00310{bottom:543.599970px;}
.y1c_c00310{bottom:573.479685px;}
.y1b_c00310{bottom:573.480585px;}
.y19_c00310{bottom:603.359895px;}
.y1a_c00310{bottom:603.360300px;}
.y18_c00310{bottom:632.521035px;}
.y17_c00310{bottom:662.040570px;}
.y16_c00310{bottom:662.041470px;}
.y15_c00310{bottom:691.921185px;}
.y14_c00310{bottom:691.921365px;}
.y13_c00310{bottom:721.440900px;}
.y12_c00310{bottom:751.319820px;}
.y11_c00310{bottom:781.559685px;}
.y10_c00310{bottom:781.559760px;}
.yf_c00310{bottom:840.960825px;}
.ye_c00310{bottom:870.840540px;}
.yd_c00310{bottom:870.840690px;}
.yc_c00310{bottom:900.720405px;}
.yb_c00310{bottom:930.600135px;}
.ya_c00310{bottom:930.600180px;}
.y8_c00310{bottom:960.839400px;}
.y9_c00310{bottom:960.840090px;}
.y7_c00310{bottom:990.000555px;}
.y6_c00310{bottom:1019.881170px;}
.y5_c00310{bottom:1019.881350px;}
.y3_c00310{bottom:1049.400075px;}
.y4_c00310{bottom:1049.400885px;}
.y2_c00310{bottom:1079.639985px;}
.y1_c00310{bottom:1109.519715px;}
.h14_c00310{height:33.354492px;}
.h13_c00310{height:39.284180px;}
.h8_c00310{height:45.955078px;}
.he_c00310{height:56.320312px;}
.h1d_c00310{height:63.360352px;}
.h15_c00310{height:66.515625px;}
.h16_c00310{height:67.271484px;}
.h17_c00310{height:72.562500px;}
.h1a_c00310{height:75.080566px;}
.h9_c00310{height:75.093750px;}
.h10_c00310{height:75.816650px;}
.hc_c00310{height:75.875977px;}
.ha_c00310{height:76.658203px;}
.h1_c00310{height:77.288818px;}
.h1b_c00310{height:77.440430px;}
.h1c_c00310{height:77.853516px;}
.h11_c00310{height:78.024902px;}
.h19_c00310{height:78.222656px;}
.h3_c00310{height:78.760986px;}
.h1e_c00310{height:79.365234px;}
.h12_c00310{height:79.497070px;}
.h18_c00310{height:80.876953px;}
.h2_c00310{height:80.969238px;}
.h5_c00310{height:81.533203px;}
.h1f_c00310{height:81.705322px;}
.h4_c00310{height:82.274414px;}
.hb_c00310{height:82.388672px;}
.hd_c00310{height:83.144531px;}
.h20_c00310{height:83.177490px;}
.h6_c00310{height:83.756836px;}
.hf_c00310{height:83.900391px;}
.h7_c00310{height:85.980469px;}
.h0_c00310{height:1263.000000px;}
.w0_c00310{width:892.500000px;}
.x0_c00310{left:0.000000px;}
.xf_c00310{left:138.605025px;}
.x1_c00310{left:139.678500px;}
.x34_c00310{left:164.519685px;}
.x17_c00310{left:167.039400px;}
.x3f_c00310{left:173.878350px;}
.x8_c00310{left:175.679700px;}
.x18_c00310{left:197.999400px;}
.x19_c00310{left:212.758500px;}
.x2c_c00310{left:214.918950px;}
.x2d_c00310{left:231.838515px;}
.x42_c00310{left:234.359850px;}
.x1a_c00310{left:235.798515px;}
.x35_c00310{left:237.958950px;}
.x32_c00310{left:240.478635px;}
.x43_c00310{left:250.559100px;}
.x28_c00310{left:258.120000px;}
.x1b_c00310{left:261.719100px;}
.x33_c00310{left:264.958950px;}
.x36_c00310{left:269.639100px;}
.x29_c00310{left:272.878950px;}
.x30_c00310{left:286.199385px;}
.x37_c00310{left:289.798515px;}
.x2e_c00310{left:294.839535px;}
.xb_c00310{left:297.718500px;}
.x40_c00310{left:298.799535px;}
.x31_c00310{left:301.319250px;}
.xc_c00310{left:311.759100px;}
.x41_c00310{left:317.159385px;}
.x2f_c00310{left:321.478635px;}
.x1c_c00310{left:336.598530px;}
.x38_c00310{left:347.040000px;}
.x1d_c00310{left:364.679700px;}
.x39_c00310{left:371.159385px;}
.x2_c00310{left:412.559100px;}
.x13_c00310{left:423.359850px;}
.x3_c00310{left:428.399235px;}
.x1e_c00310{left:432.718500px;}
.x14_c00310{left:442.078815px;}
.x1f_c00310{left:447.838530px;}
.x3a_c00310{left:491.398635px;}
.x4_c00310{left:497.878320px;}
.x20_c00310{left:500.038920px;}
.xd_c00310{left:504.359850px;}
.x5_c00310{left:513.718500px;}
.x15_c00310{left:516.239820px;}
.xe_c00310{left:521.638500px;}
.x16_c00310{left:540.359250px;}
.x10_c00310{left:545.398635px;}
.x21_c00310{left:550.078770px;}
.x2a_c00310{left:564.478635px;}
.x22_c00310{left:568.799520px;}
.x3b_c00310{left:578.878320px;}
.x2b_c00310{left:587.879520px;}
.x3c_c00310{left:619.918950px;}
.x11_c00310{left:622.799520px;}
.x9_c00310{left:645.839535px;}
.x23_c00310{left:648.359250px;}
.x12_c00310{left:658.798920px;}
.xa_c00310{left:664.558635px;}
.x26_c00310{left:702.359250px;}
.x3d_c00310{left:729.000000px;}
.x27_c00310{left:730.079355px;}
.x24_c00310{left:735.838950px;}
.x6_c00310{left:736.918350px;}
.x45_c00310{left:739.078770px;}
.x3e_c00310{left:745.558635px;}
.x46_c00310{left:753.478635px;}
.x25_c00310{left:758.519670px;}
.x44_c00310{left:759.958335px;}
.x7_c00310{left:770.399865px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls12_c00310{letter-spacing:-13.876400pt;}
.ls21_c00310{letter-spacing:-12.518000pt;}
.lsd_c00310{letter-spacing:-11.380460pt;}
.ls15_c00310{letter-spacing:-11.379200pt;}
.ls10_c00310{letter-spacing:-11.277933pt;}
.ls27_c00310{letter-spacing:-9.601467pt;}
.ls17_c00310{letter-spacing:-8.225867pt;}
.ls23_c00310{letter-spacing:-8.181300pt;}
.ls1_c00310{letter-spacing:-7.924000pt;}
.lsf_c00310{letter-spacing:-7.266700pt;}
.ls1b_c00310{letter-spacing:-6.618720pt;}
.ls16_c00310{letter-spacing:-6.219733pt;}
.ls22_c00310{letter-spacing:-5.943000pt;}
.ls2e_c00310{letter-spacing:-5.897800pt;}
.lsa_c00310{letter-spacing:-5.786000pt;}
.ls1d_c00310{letter-spacing:-5.430860pt;}
.lsc_c00310{letter-spacing:-5.285000pt;}
.lsb_c00310{letter-spacing:-5.093200pt;}
.ls7_c00310{letter-spacing:-4.619300pt;}
.ls28_c00310{letter-spacing:-4.080000pt;}
.ls11_c00310{letter-spacing:-3.997000pt;}
.ls9_c00310{letter-spacing:-3.961300pt;}
.ls2f_c00310{letter-spacing:-3.927700pt;}
.lse_c00310{letter-spacing:-3.922620pt;}
.ls1c_c00310{letter-spacing:-3.742333pt;}
.ls24_c00310{letter-spacing:-3.737600pt;}
.ls13_c00310{letter-spacing:-3.681840pt;}
.ls6_c00310{letter-spacing:-3.304000pt;}
.ls2d_c00310{letter-spacing:-2.772000pt;}
.ls2c_c00310{letter-spacing:-2.719200pt;}
.ls2_c00310{letter-spacing:-2.639000pt;}
.ls20_c00310{letter-spacing:-2.616200pt;}
.ls26_c00310{letter-spacing:-2.348800pt;}
.ls2b_c00310{letter-spacing:-2.178000pt;}
.ls1f_c00310{letter-spacing:-2.094940pt;}
.ls3_c00310{letter-spacing:-1.981700pt;}
.ls4_c00310{letter-spacing:-1.323700pt;}
.ls1a_c00310{letter-spacing:-0.798600pt;}
.ls19_c00310{letter-spacing:-0.787200pt;}
.ls5_c00310{letter-spacing:-0.658000pt;}
.ls8_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.658000pt;}
.ls14_c00310{letter-spacing:1.149067pt;}
.ls18_c00310{letter-spacing:1.940000pt;}
.ls29_c00310{letter-spacing:2.022400pt;}
.ls2a_c00310{letter-spacing:2.060400pt;}
.ls1e_c00310{letter-spacing:2.121000pt;}
.ls25_c00310{letter-spacing:34.899867pt;}
.ws0_c00310{word-spacing:0.000000pt;}
._17_c00310{margin-left:-7.751192pt;}
._10_c00310{margin-left:-3.888487pt;}
._14_c00310{margin-left:-2.120657pt;}
._a_c00310{margin-left:-1.061358pt;}
._11_c00310{width:1.078211pt;}
._9_c00310{width:2.547604pt;}
._16_c00310{width:3.464657pt;}
._7_c00310{width:4.567962pt;}
._8_c00310{width:5.457226pt;}
._b_c00310{width:7.126211pt;}
._6_c00310{width:8.887477pt;}
._4_c00310{width:10.364781pt;}
._2_c00310{width:11.973104pt;}
._3_c00310{width:13.651070pt;}
._15_c00310{width:14.547598pt;}
._1_c00310{width:15.847657pt;}
._12_c00310{width:16.912462pt;}
._5_c00310{width:17.874619pt;}
._f_c00310{width:18.954943pt;}
._c_c00310{width:20.470457pt;}
._d_c00310{width:22.764079pt;}
._e_c00310{width:23.785762pt;}
._18_c00310{width:25.321034pt;}
._13_c00310{width:26.909519pt;}
._0_c00310{width:32.311630pt;}
.fs10_c00310{font-size:30.000000pt;}
.fsf_c00310{font-size:35.333333pt;}
.fs6_c00310{font-size:41.333333pt;}
.fsb_c00310{font-size:48.000000pt;}
.fs16_c00310{font-size:54.000000pt;}
.fs11_c00310{font-size:58.666667pt;}
.fs12_c00310{font-size:59.333333pt;}
.fs7_c00310{font-size:64.000000pt;}
.fsa_c00310{font-size:64.666667pt;}
.fs8_c00310{font-size:65.333333pt;}
.fs15_c00310{font-size:66.000000pt;}
.fs13_c00310{font-size:66.666667pt;}
.fs14_c00310{font-size:68.000000pt;}
.fsc_c00310{font-size:68.666667pt;}
.fs0_c00310{font-size:70.000000pt;}
.fsd_c00310{font-size:70.666667pt;}
.fs2_c00310{font-size:71.333333pt;}
.fse_c00310{font-size:72.000000pt;}
.fs9_c00310{font-size:72.666667pt;}
.fs1_c00310{font-size:73.333333pt;}
.fs3_c00310{font-size:74.000000pt;}
.fs4_c00310{font-size:75.333333pt;}
.fs5_c00310{font-size:77.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y28_c00310{bottom:244.800213pt;}
.y27_c00310{bottom:271.680133pt;}
.y26_c00310{bottom:297.919867pt;}
.y25_c00310{bottom:297.920147pt;}
.y24_c00310{bottom:324.159733pt;}
.y23_c00310{bottom:350.720253pt;}
.y22_c00310{bottom:377.600133pt;}
.y21_c00310{bottom:384.640133pt;}
.y1f_c00310{bottom:403.519107pt;}
.y20_c00310{bottom:403.520507pt;}
.y1e_c00310{bottom:456.320053pt;}
.y1d_c00310{bottom:483.199973pt;}
.y1c_c00310{bottom:509.759720pt;}
.y1b_c00310{bottom:509.760520pt;}
.y19_c00310{bottom:536.319907pt;}
.y1a_c00310{bottom:536.320267pt;}
.y18_c00310{bottom:562.240920pt;}
.y17_c00310{bottom:588.480507pt;}
.y16_c00310{bottom:588.481307pt;}
.y15_c00310{bottom:615.041053pt;}
.y14_c00310{bottom:615.041213pt;}
.y13_c00310{bottom:641.280800pt;}
.y12_c00310{bottom:667.839840pt;}
.y11_c00310{bottom:694.719720pt;}
.y10_c00310{bottom:694.719787pt;}
.yf_c00310{bottom:747.520733pt;}
.ye_c00310{bottom:774.080480pt;}
.yd_c00310{bottom:774.080613pt;}
.yc_c00310{bottom:800.640360pt;}
.yb_c00310{bottom:827.200120pt;}
.ya_c00310{bottom:827.200160pt;}
.y8_c00310{bottom:854.079467pt;}
.y9_c00310{bottom:854.080080pt;}
.y7_c00310{bottom:880.000493pt;}
.y6_c00310{bottom:906.561040pt;}
.y5_c00310{bottom:906.561200pt;}
.y3_c00310{bottom:932.800067pt;}
.y4_c00310{bottom:932.800787pt;}
.y2_c00310{bottom:959.679987pt;}
.y1_c00310{bottom:986.239747pt;}
.h14_c00310{height:29.648437pt;}
.h13_c00310{height:34.919271pt;}
.h8_c00310{height:40.848958pt;}
.he_c00310{height:50.062500pt;}
.h1d_c00310{height:56.320312pt;}
.h15_c00310{height:59.125000pt;}
.h16_c00310{height:59.796875pt;}
.h17_c00310{height:64.500000pt;}
.h1a_c00310{height:66.738281pt;}
.h9_c00310{height:66.750000pt;}
.h10_c00310{height:67.392578pt;}
.hc_c00310{height:67.445312pt;}
.ha_c00310{height:68.140625pt;}
.h1_c00310{height:68.701172pt;}
.h1b_c00310{height:68.835938pt;}
.h1c_c00310{height:69.203125pt;}
.h11_c00310{height:69.355469pt;}
.h19_c00310{height:69.531250pt;}
.h3_c00310{height:70.009766pt;}
.h1e_c00310{height:70.546875pt;}
.h12_c00310{height:70.664062pt;}
.h18_c00310{height:71.890625pt;}
.h2_c00310{height:71.972656pt;}
.h5_c00310{height:72.473958pt;}
.h1f_c00310{height:72.626953pt;}
.h4_c00310{height:73.132813pt;}
.hb_c00310{height:73.234375pt;}
.hd_c00310{height:73.906250pt;}
.h20_c00310{height:73.935547pt;}
.h6_c00310{height:74.450521pt;}
.hf_c00310{height:74.578125pt;}
.h7_c00310{height:76.427083pt;}
.h0_c00310{height:1122.666667pt;}
.w0_c00310{width:793.333333pt;}
.x0_c00310{left:0.000000pt;}
.xf_c00310{left:123.204467pt;}
.x1_c00310{left:124.158667pt;}
.x34_c00310{left:146.239720pt;}
.x17_c00310{left:148.479467pt;}
.x3f_c00310{left:154.558533pt;}
.x8_c00310{left:156.159733pt;}
.x18_c00310{left:175.999467pt;}
.x19_c00310{left:189.118667pt;}
.x2c_c00310{left:191.039067pt;}
.x2d_c00310{left:206.078680pt;}
.x42_c00310{left:208.319867pt;}
.x1a_c00310{left:209.598680pt;}
.x35_c00310{left:211.519067pt;}
.x32_c00310{left:213.758787pt;}
.x43_c00310{left:222.719200pt;}
.x28_c00310{left:229.440000pt;}
.x1b_c00310{left:232.639200pt;}
.x33_c00310{left:235.519067pt;}
.x36_c00310{left:239.679200pt;}
.x29_c00310{left:242.559067pt;}
.x30_c00310{left:254.399453pt;}
.x37_c00310{left:257.598680pt;}
.x2e_c00310{left:262.079587pt;}
.xb_c00310{left:264.638667pt;}
.x40_c00310{left:265.599587pt;}
.x31_c00310{left:267.839333pt;}
.xc_c00310{left:277.119200pt;}
.x41_c00310{left:281.919453pt;}
.x2f_c00310{left:285.758787pt;}
.x1c_c00310{left:299.198693pt;}
.x38_c00310{left:308.480000pt;}
.x1d_c00310{left:324.159733pt;}
.x39_c00310{left:329.919453pt;}
.x2_c00310{left:366.719200pt;}
.x13_c00310{left:376.319867pt;}
.x3_c00310{left:380.799320pt;}
.x1e_c00310{left:384.638667pt;}
.x14_c00310{left:392.958947pt;}
.x1f_c00310{left:398.078693pt;}
.x3a_c00310{left:436.798787pt;}
.x4_c00310{left:442.558507pt;}
.x20_c00310{left:444.479040pt;}
.xd_c00310{left:448.319867pt;}
.x5_c00310{left:456.638667pt;}
.x15_c00310{left:458.879840pt;}
.xe_c00310{left:463.678667pt;}
.x16_c00310{left:480.319333pt;}
.x10_c00310{left:484.798787pt;}
.x21_c00310{left:488.958907pt;}
.x2a_c00310{left:501.758787pt;}
.x22_c00310{left:505.599573pt;}
.x3b_c00310{left:514.558507pt;}
.x2b_c00310{left:522.559573pt;}
.x3c_c00310{left:551.039067pt;}
.x11_c00310{left:553.599573pt;}
.x9_c00310{left:574.079587pt;}
.x23_c00310{left:576.319333pt;}
.x12_c00310{left:585.599040pt;}
.xa_c00310{left:590.718787pt;}
.x26_c00310{left:624.319333pt;}
.x3d_c00310{left:648.000000pt;}
.x27_c00310{left:648.959427pt;}
.x24_c00310{left:654.079067pt;}
.x6_c00310{left:655.038533pt;}
.x45_c00310{left:656.958907pt;}
.x3e_c00310{left:662.718787pt;}
.x46_c00310{left:669.758787pt;}
.x25_c00310{left:674.239707pt;}
.x44_c00310{left:675.518520pt;}
.x7_c00310{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b4185f5e7256b95ea6fd223.woff2')format("woff");}.ff1_c00311{font-family:ff1_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:ff2_c00311;src:url('chunks/assets/font_f318b8b3b2d633f2ee2fa888.woff2')format("woff");}.ff2_c00311{font-family:ff2_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:ff3_c00311;src:url('chunks/assets/font_4b4ec668b91e74161ebe081f.woff2')format("woff");}.ff3_c00311{font-family:ff3_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;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_b7d572875480022266a481a6.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.364746;font-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_c00311{transform:matrix(0.033418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033418,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.048458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048458,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.060914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060914,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.061111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061111,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.066754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066754,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.129237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129237,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.v1_c00311{vertical-align:-11.512740px;}
.v0_c00311{vertical-align:0.000000px;}
.v2_c00311{vertical-align:1.433580px;}
.ls13_c00311{letter-spacing:-12.374175px;}
.lse_c00311{letter-spacing:-4.900500px;}
.ls1d_c00311{letter-spacing:-4.496625px;}
.ls3_c00311{letter-spacing:-4.461900px;}
.ls15_c00311{letter-spacing:-4.410975px;}
.lsf_c00311{letter-spacing:-3.749288px;}
.ls7_c00311{letter-spacing:-3.677873px;}
.lsd_c00311{letter-spacing:-3.057525px;}
.ls8_c00311{letter-spacing:-3.000375px;}
.ls14_c00311{letter-spacing:-2.943225px;}
.lsc_c00311{letter-spacing:-2.251463px;}
.ls5_c00311{letter-spacing:-2.208578px;}
.lsb_c00311{letter-spacing:-1.496250px;}
.ls16_c00311{letter-spacing:-1.467750px;}
.ls11_c00311{letter-spacing:-0.748913px;}
.ls6_c00311{letter-spacing:-0.734648px;}
.ls4_c00311{letter-spacing:0.000000px;}
.ls17_c00311{letter-spacing:0.826200px;}
.ls10_c00311{letter-spacing:1.496250px;}
.lsa_c00311{letter-spacing:1.692600px;}
.ls2_c00311{letter-spacing:2.251463px;}
.ls0_c00311{letter-spacing:3.000375px;}
.ls12_c00311{letter-spacing:3.289500px;}
.ls1_c00311{letter-spacing:4.496625px;}
.ls19_c00311{letter-spacing:7.260908px;}
.ls1a_c00311{letter-spacing:10.068300px;}
.ls18_c00311{letter-spacing:13.846500px;}
.ls1b_c00311{letter-spacing:18.003038px;}
.ls1c_c00311{letter-spacing:21.750750px;}
.ls9_c00311{letter-spacing:5189.965492px;}
.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;}
._0_c00311{width:1.090468px;}
._3_c00311{width:3.152666px;}
._2_c00311{width:4.514262px;}
._6_c00311{width:7.382069px;}
._1_c00311{width:8.526259px;}
._7_c00311{width:10.183875px;}
._4_c00311{width:11.856525px;}
._8_c00311{width:87.571140px;}
._a_c00311{width:112.379190px;}
._9_c00311{width:126.440940px;}
._c_c00311{width:142.139190px;}
._5_c00311{width:159.783480px;}
._b_c00311{width:173.593050px;}
.fc0_c00311{color:transparent;}
.fsd_c00311{font-size:74.250000px;}
.fsb_c00311{font-size:76.500000px;}
.fs2_c00311{font-size:77.250000px;}
.fs5_c00311{font-size:78.000000px;}
.fs3_c00311{font-size:78.750000px;}
.fs0_c00311{font-size:80.250000px;}
.fs1_c00311{font-size:81.750000px;}
.fs9_c00311{font-size:82.500000px;}
.fse_c00311{font-size:84.750000px;}
.fs10_c00311{font-size:135.000000px;}
.fsf_c00311{font-size:143.250000px;}
.fs7_c00311{font-size:147.750000px;}
.fs8_c00311{font-size:161.250000px;}
.fsa_c00311{font-size:170.250000px;}
.fsc_c00311{font-size:177.000000px;}
.fs6_c00311{font-size:193.500000px;}
.fs4_c00311{font-size:443.250000px;}
.y0_c00311{bottom:0.000000px;}
.y22_c00311{bottom:189.358545px;}
.y2b_c00311{bottom:258.118785px;}
.y29_c00311{bottom:258.477180px;}
.y24_c00311{bottom:258.839475px;}
.y2a_c00311{bottom:298.436760px;}
.y27_c00311{bottom:298.437060px;}
.y21_c00311{bottom:299.520030px;}
.y1c_c00311{bottom:327.960000px;}
.y1b_c00311{bottom:339.120000px;}
.y26_c00311{bottom:378.358365px;}
.y28_c00311{bottom:378.716745px;}
.y20_c00311{bottom:379.079340px;}
.y1d_c00311{bottom:379.079385px;}
.y1e_c00311{bottom:419.038920px;}
.y25_c00311{bottom:456.118215px;}
.y1f_c00311{bottom:459.000615px;}
.y23_c00311{bottom:459.358710px;}
.y1a_c00311{bottom:459.717930px;}
.y19_c00311{bottom:499.679625px;}
.y17_c00311{bottom:500.039820px;}
.y18_c00311{bottom:529.559355px;}
.y16_c00311{bottom:529.919535px;}
.y15_c00311{bottom:530.278800px;}
.y14_c00311{bottom:599.759535px;}
.y12_c00311{bottom:638.277375px;}
.y13_c00311{bottom:638.278800px;}
.yf_c00311{bottom:696.599670px;}
.ye_c00311{bottom:707.759535px;}
.ya_c00311{bottom:788.398590px;}
.y9_c00311{bottom:829.079955px;}
.yc_c00311{bottom:869.398935px;}
.y11_c00311{bottom:869.759010px;}
.yd_c00311{bottom:869.759130px;}
.y10_c00311{bottom:908.998215px;}
.yb_c00311{bottom:908.998350px;}
.y8_c00311{bottom:909.719055px;}
.y4_c00311{bottom:950.039340px;}
.y3_c00311{bottom:990.360495px;}
.y7_c00311{bottom:1030.320075px;}
.y5_c00311{bottom:1030.678455px;}
.y6_c00311{bottom:1059.839610px;}
.y2_c00311{bottom:1060.199805px;}
.y1_c00311{bottom:1130.760135px;}
.hd_c00311{height:75.080566px;}
.h6_c00311{height:76.552734px;}
.h4_c00311{height:77.288818px;}
.h10_c00311{height:77.440430px;}
.h3_c00311{height:77.853516px;}
.h14_c00311{height:78.722398px;}
.h7_c00311{height:78.760986px;}
.h1_c00311{height:80.876953px;}
.he_c00311{height:81.533203px;}
.h2_c00311{height:82.388672px;}
.hb_c00311{height:83.144531px;}
.h11_c00311{height:83.756836px;}
.h13_c00311{height:140.800781px;}
.h12_c00311{height:149.405273px;}
.h9_c00311{height:154.098633px;}
.hc_c00311{height:167.091064px;}
.ha_c00311{height:168.178711px;}
.hf_c00311{height:184.605469px;}
.h8_c00311{height:201.814453px;}
.h5_c00311{height:435.025635px;}
.h0_c00311{height:1263.000000px;}
.w0_c00311{width:892.500000px;}
.x0_c00311{left:0.000000px;}
.x1d_c00311{left:239.040000px;}
.x22_c00311{left:248.397540px;}
.x15_c00311{left:249.479685px;}
.x1c_c00311{left:250.560705px;}
.xf_c00311{left:277.559100px;}
.x5_c00311{left:278.638500px;}
.x13_c00311{left:287.639700px;}
.x1_c00311{left:289.080000px;}
.x4_c00311{left:290.879535px;}
.x16_c00311{left:307.798950px;}
.xd_c00311{left:321.478635px;}
.x2_c00311{left:347.758500px;}
.xb_c00311{left:350.279850px;}
.x3_c00311{left:376.559685px;}
.x1e_c00311{left:408.599070px;}
.x14_c00311{left:433.079400px;}
.x19_c00311{left:438.479970px;}
.xc_c00311{left:446.399820px;}
.x17_c00311{left:461.519670px;}
.x6_c00311{left:466.199850px;}
.x8_c00311{left:480.957960px;}
.x25_c00311{left:498.960450px;}
.x23_c00311{left:500.759910px;}
.x1f_c00311{left:508.319820px;}
.x18_c00311{left:509.758530px;}
.x10_c00311{left:512.279850px;}
.x7_c00311{left:514.438665px;}
.x12_c00311{left:521.279160px;}
.x9_c00311{left:558.717825px;}
.x26_c00311{left:571.319895px;}
.x20_c00311{left:580.679670px;}
.x1b_c00311{left:581.759580px;}
.x1a_c00311{left:595.080255px;}
.xa_c00311{left:600.478965px;}
.x11_c00311{left:607.679625px;}
.xe_c00311{left:614.519160px;}
.x24_c00311{left:637.920795px;}
.x21_c00311{left:645.119385px;}
@media print{
.v1_c00311{vertical-align:-10.233547pt;}
.v0_c00311{vertical-align:0.000000pt;}
.v2_c00311{vertical-align:1.274293pt;}
.ls13_c00311{letter-spacing:-10.999267pt;}
.lse_c00311{letter-spacing:-4.356000pt;}
.ls1d_c00311{letter-spacing:-3.997000pt;}
.ls3_c00311{letter-spacing:-3.966133pt;}
.ls15_c00311{letter-spacing:-3.920867pt;}
.lsf_c00311{letter-spacing:-3.332700pt;}
.ls7_c00311{letter-spacing:-3.269220pt;}
.lsd_c00311{letter-spacing:-2.717800pt;}
.ls8_c00311{letter-spacing:-2.667000pt;}
.ls14_c00311{letter-spacing:-2.616200pt;}
.lsc_c00311{letter-spacing:-2.001300pt;}
.ls5_c00311{letter-spacing:-1.963180pt;}
.lsb_c00311{letter-spacing:-1.330000pt;}
.ls16_c00311{letter-spacing:-1.304667pt;}
.ls11_c00311{letter-spacing:-0.665700pt;}
.ls6_c00311{letter-spacing:-0.653020pt;}
.ls4_c00311{letter-spacing:0.000000pt;}
.ls17_c00311{letter-spacing:0.734400pt;}
.ls10_c00311{letter-spacing:1.330000pt;}
.lsa_c00311{letter-spacing:1.504533pt;}
.ls2_c00311{letter-spacing:2.001300pt;}
.ls0_c00311{letter-spacing:2.667000pt;}
.ls12_c00311{letter-spacing:2.924000pt;}
.ls1_c00311{letter-spacing:3.997000pt;}
.ls19_c00311{letter-spacing:6.454140pt;}
.ls1a_c00311{letter-spacing:8.949600pt;}
.ls18_c00311{letter-spacing:12.308000pt;}
.ls1b_c00311{letter-spacing:16.002700pt;}
.ls1c_c00311{letter-spacing:19.334000pt;}
.ls9_c00311{letter-spacing:4613.302660pt;}
.ws0_c00311{word-spacing:0.000000pt;}
._0_c00311{width:0.969305pt;}
._3_c00311{width:2.802370pt;}
._2_c00311{width:4.012677pt;}
._6_c00311{width:6.561839pt;}
._1_c00311{width:7.578897pt;}
._7_c00311{width:9.052333pt;}
._4_c00311{width:10.539133pt;}
._8_c00311{width:77.841013pt;}
._a_c00311{width:99.892613pt;}
._9_c00311{width:112.391947pt;}
._c_c00311{width:126.345947pt;}
._5_c00311{width:142.029760pt;}
._b_c00311{width:154.304933pt;}
.fsd_c00311{font-size:66.000000pt;}
.fsb_c00311{font-size:68.000000pt;}
.fs2_c00311{font-size:68.666667pt;}
.fs5_c00311{font-size:69.333333pt;}
.fs3_c00311{font-size:70.000000pt;}
.fs0_c00311{font-size:71.333333pt;}
.fs1_c00311{font-size:72.666667pt;}
.fs9_c00311{font-size:73.333333pt;}
.fse_c00311{font-size:75.333333pt;}
.fs10_c00311{font-size:120.000000pt;}
.fsf_c00311{font-size:127.333333pt;}
.fs7_c00311{font-size:131.333333pt;}
.fs8_c00311{font-size:143.333333pt;}
.fsa_c00311{font-size:151.333333pt;}
.fsc_c00311{font-size:157.333333pt;}
.fs6_c00311{font-size:172.000000pt;}
.fs4_c00311{font-size:394.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y22_c00311{bottom:168.318707pt;}
.y2b_c00311{bottom:229.438920pt;}
.y29_c00311{bottom:229.757493pt;}
.y24_c00311{bottom:230.079533pt;}
.y2a_c00311{bottom:265.277120pt;}
.y27_c00311{bottom:265.277387pt;}
.y21_c00311{bottom:266.240027pt;}
.y1c_c00311{bottom:291.520000pt;}
.y1b_c00311{bottom:301.440000pt;}
.y26_c00311{bottom:336.318547pt;}
.y28_c00311{bottom:336.637107pt;}
.y20_c00311{bottom:336.959413pt;}
.y1d_c00311{bottom:336.959453pt;}
.y1e_c00311{bottom:372.479040pt;}
.y25_c00311{bottom:405.438413pt;}
.y1f_c00311{bottom:408.000547pt;}
.y23_c00311{bottom:408.318853pt;}
.y1a_c00311{bottom:408.638160pt;}
.y19_c00311{bottom:444.159667pt;}
.y17_c00311{bottom:444.479840pt;}
.y18_c00311{bottom:470.719427pt;}
.y16_c00311{bottom:471.039587pt;}
.y15_c00311{bottom:471.358933pt;}
.y14_c00311{bottom:533.119587pt;}
.y12_c00311{bottom:567.357667pt;}
.y13_c00311{bottom:567.358933pt;}
.yf_c00311{bottom:619.199707pt;}
.ye_c00311{bottom:629.119587pt;}
.ya_c00311{bottom:700.798747pt;}
.y9_c00311{bottom:736.959960pt;}
.yc_c00311{bottom:772.799053pt;}
.y11_c00311{bottom:773.119120pt;}
.yd_c00311{bottom:773.119227pt;}
.y10_c00311{bottom:807.998413pt;}
.yb_c00311{bottom:807.998533pt;}
.y8_c00311{bottom:808.639160pt;}
.y4_c00311{bottom:844.479413pt;}
.y3_c00311{bottom:880.320440pt;}
.y7_c00311{bottom:915.840067pt;}
.y5_c00311{bottom:916.158627pt;}
.y6_c00311{bottom:942.079653pt;}
.y2_c00311{bottom:942.399827pt;}
.y1_c00311{bottom:1005.120120pt;}
.hd_c00311{height:66.738281pt;}
.h6_c00311{height:68.046875pt;}
.h4_c00311{height:68.701172pt;}
.h10_c00311{height:68.835938pt;}
.h3_c00311{height:69.203125pt;}
.h14_c00311{height:69.975465pt;}
.h7_c00311{height:70.009766pt;}
.h1_c00311{height:71.890625pt;}
.he_c00311{height:72.473958pt;}
.h2_c00311{height:73.234375pt;}
.hb_c00311{height:73.906250pt;}
.h11_c00311{height:74.450521pt;}
.h13_c00311{height:125.156250pt;}
.h12_c00311{height:132.804688pt;}
.h9_c00311{height:136.976562pt;}
.hc_c00311{height:148.525391pt;}
.ha_c00311{height:149.492188pt;}
.hf_c00311{height:164.093750pt;}
.h8_c00311{height:179.390625pt;}
.h5_c00311{height:386.689453pt;}
.h0_c00311{height:1122.666667pt;}
.w0_c00311{width:793.333333pt;}
.x0_c00311{left:0.000000pt;}
.x1d_c00311{left:212.480000pt;}
.x22_c00311{left:220.797813pt;}
.x15_c00311{left:221.759720pt;}
.x1c_c00311{left:222.720627pt;}
.xf_c00311{left:246.719200pt;}
.x5_c00311{left:247.678667pt;}
.x13_c00311{left:255.679733pt;}
.x1_c00311{left:256.960000pt;}
.x4_c00311{left:258.559587pt;}
.x16_c00311{left:273.599067pt;}
.xd_c00311{left:285.758787pt;}
.x2_c00311{left:309.118667pt;}
.xb_c00311{left:311.359867pt;}
.x3_c00311{left:334.719720pt;}
.x1e_c00311{left:363.199173pt;}
.x14_c00311{left:384.959467pt;}
.x19_c00311{left:389.759973pt;}
.xc_c00311{left:396.799840pt;}
.x17_c00311{left:410.239707pt;}
.x6_c00311{left:414.399867pt;}
.x8_c00311{left:427.518187pt;}
.x25_c00311{left:443.520400pt;}
.x23_c00311{left:445.119920pt;}
.x1f_c00311{left:451.839840pt;}
.x18_c00311{left:453.118693pt;}
.x10_c00311{left:455.359867pt;}
.x7_c00311{left:457.278813pt;}
.x12_c00311{left:463.359253pt;}
.x9_c00311{left:496.638067pt;}
.x26_c00311{left:507.839907pt;}
.x20_c00311{left:516.159707pt;}
.x1b_c00311{left:517.119627pt;}
.x1a_c00311{left:528.960227pt;}
.xa_c00311{left:533.759080pt;}
.x11_c00311{left:540.159667pt;}
.xe_c00311{left:546.239253pt;}
.x24_c00311{left:567.040707pt;}
.x21_c00311{left:573.439453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7b4c27a840724d4344d65ca.woff2')format("woff");}.ff1_c00312{font-family:ff1_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:ff2_c00312;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.364746;font-style:normal;font-weight:normal;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_ea266d254c57fd5326e801c0.woff2')format("woff");}.ff3_c00312{font-family:ff3_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:ff4_c00312;src:url('chunks/assets/font_e92e8636dc943b192260941c.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_693490cd77f0681d685cf35d.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00312;src:url('chunks/assets/font_51f71a524c8f46350b535bb6.woff2')format("woff");}.ff6_c00312{font-family:ff6_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;}
.m4_c00312{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m0_c00312{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(1.623711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.623711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.623711,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(3.989130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.989130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.989130,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls2_c00312{letter-spacing:-14.082750px;}
.lsa_c00312{letter-spacing:-12.687675px;}
.lsc_c00312{letter-spacing:-7.426125px;}
.ls13_c00312{letter-spacing:-6.199463px;}
.ls4_c00312{letter-spacing:-5.945625px;}
.ls9_c00312{letter-spacing:-5.196713px;}
.lsb_c00312{letter-spacing:-5.151600px;}
.ls14_c00312{letter-spacing:-4.722300px;}
.ls5_c00312{letter-spacing:-4.456463px;}
.lsf_c00312{letter-spacing:-4.412948px;}
.lsd_c00312{letter-spacing:-3.752400px;}
.ls3_c00312{letter-spacing:-3.717000px;}
.ls10_c00312{letter-spacing:-3.683475px;}
.ls15_c00312{letter-spacing:-3.354750px;}
.ls0_c00312{letter-spacing:-2.968875px;}
.ls17_c00312{letter-spacing:-2.324025px;}
.lse_c00312{letter-spacing:-2.268000px;}
.ls1_c00312{letter-spacing:-2.229413px;}
.ls6_c00312{letter-spacing:-1.489163px;}
.ls12_c00312{letter-spacing:-1.471725px;}
.ls8_c00312{letter-spacing:-0.740250px;}
.ls7_c00312{letter-spacing:0.000000px;}
.ls16_c00312{letter-spacing:1.613475px;}
.ls11_c00312{letter-spacing:2.161597px;}
.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;}
}
.ws0_c00312{word-spacing:0.000000px;}
._b_c00312{margin-left:-9.111568px;}
._3_c00312{margin-left:-5.434315px;}
._8_c00312{margin-left:-4.129739px;}
._12_c00312{margin-left:-1.239674px;}
._9_c00312{width:1.007941px;}
._7_c00312{width:2.522273px;}
._5_c00312{width:4.310225px;}
._0_c00312{width:5.426440px;}
._1_c00312{width:7.441667px;}
._4_c00312{width:8.525208px;}
._d_c00312{width:9.619847px;}
._6_c00312{width:10.852285px;}
._a_c00312{width:11.886213px;}
._10_c00312{width:14.209680px;}
._e_c00312{width:15.931957px;}
._2_c00312{width:17.954673px;}
._f_c00312{width:19.454103px;}
._c_c00312{width:20.792987px;}
._11_c00312{width:26.515066px;}
.fc0_c00312{color:transparent;}
.fs6_c00312{font-size:17.250000px;}
.fsc_c00312{font-size:69.000000px;}
.fs7_c00312{font-size:69.750000px;}
.fs9_c00312{font-size:71.250000px;}
.fs8_c00312{font-size:72.750000px;}
.fsb_c00312{font-size:74.250000px;}
.fsa_c00312{font-size:75.750000px;}
.fs0_c00312{font-size:78.750000px;}
.fs3_c00312{font-size:79.500000px;}
.fs2_c00312{font-size:80.250000px;}
.fs5_c00312{font-size:81.000000px;}
.fs4_c00312{font-size:81.750000px;}
.fs1_c00312{font-size:82.500000px;}
.y0_c00312{bottom:0.000000px;}
.y13_c00312{bottom:200.880000px;}
.y12_c00312{bottom:230.760750px;}
.y11_c00312{bottom:230.760915px;}
.y10_c00312{bottom:260.280435px;}
.yf_c00312{bottom:260.281305px;}
.yd_c00312{bottom:290.160735px;}
.ye_c00312{bottom:290.161035px;}
.yc_c00312{bottom:319.319775px;}
.yb_c00312{bottom:349.559685px;}
.ya_c00312{bottom:438.479685px;}
.y9_c00312{bottom:491.400285px;}
.y8_c00312{bottom:891.000000px;}
.y7_c00312{bottom:988.921095px;}
.y6_c00312{bottom:1019.161005px;}
.y5_c00312{bottom:1019.161200px;}
.y4_c00312{bottom:1048.680720px;}
.y3_c00312{bottom:1048.680855px;}
.y2_c00312{bottom:1078.920780px;}
.y1_c00312{bottom:1108.440315px;}
.ha_c00312{height:17.991211px;}
.h10_c00312{height:67.719727px;}
.h12_c00312{height:71.400146px;}
.hb_c00312{height:72.747070px;}
.hd_c00312{height:74.311523px;}
.he_c00312{height:74.344482px;}
.hf_c00312{height:74.830078px;}
.hc_c00312{height:75.875977px;}
.h1_c00312{height:77.288818px;}
.h4_c00312{height:78.024902px;}
.h3_c00312{height:78.760986px;}
.h9_c00312{height:79.365234px;}
.h6_c00312{height:80.121094px;}
.h5_c00312{height:80.233154px;}
.h8_c00312{height:80.876953px;}
.h11_c00312{height:80.969238px;}
.h2_c00312{height:81.533203px;}
.h7_c00312{height:81.632812px;}
.h0_c00312{height:1263.000000px;}
.w0_c00312{width:892.500000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:139.678500px;}
.x7_c00312{left:141.119070px;}
.x1f_c00312{left:142.199430px;}
.x13_c00312{left:168.479685px;}
.x14_c00312{left:189.000000px;}
.xe_c00312{left:232.199385px;}
.x15_c00312{left:246.958350px;}
.x20_c00312{left:262.439250px;}
.x2_c00312{left:268.559685px;}
.x16_c00312{left:271.079385px;}
.xc_c00312{left:284.399850px;}
.x3_c00312{left:289.080000px;}
.xf_c00312{left:290.518635px;}
.xd_c00312{left:298.799535px;}
.x17_c00312{left:300.239850px;}
.x10_c00312{left:319.679100px;}
.x8_c00312{left:356.039385px;}
.x18_c00312{left:369.359850px;}
.x12_c00312{left:375.119385px;}
.x9_c00312{left:376.198785px;}
.x1b_c00312{left:404.639100px;}
.x1c_c00312{left:419.038920px;}
.x19_c00312{left:430.918950px;}
.x1a_c00312{left:455.758530px;}
.x21_c00312{left:519.838950px;}
.xa_c00312{left:531.359850px;}
.x22_c00312{left:537.478635px;}
.xb_c00312{left:555.119985px;}
.x1d_c00312{left:568.438620px;}
.x11_c00312{left:581.038920px;}
.x1e_c00312{left:600.838950px;}
.x4_c00312{left:639.359850px;}
.x5_c00312{left:654.118785px;}
.x6_c00312{left:668.879520px;}
.x23_c00312{left:771.479190px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls2_c00312{letter-spacing:-12.518000pt;}
.lsa_c00312{letter-spacing:-11.277933pt;}
.lsc_c00312{letter-spacing:-6.601000pt;}
.ls13_c00312{letter-spacing:-5.510633pt;}
.ls4_c00312{letter-spacing:-5.285000pt;}
.ls9_c00312{letter-spacing:-4.619300pt;}
.lsb_c00312{letter-spacing:-4.579200pt;}
.ls14_c00312{letter-spacing:-4.197600pt;}
.ls5_c00312{letter-spacing:-3.961300pt;}
.lsf_c00312{letter-spacing:-3.922620pt;}
.lsd_c00312{letter-spacing:-3.335467pt;}
.ls3_c00312{letter-spacing:-3.304000pt;}
.ls10_c00312{letter-spacing:-3.274200pt;}
.ls15_c00312{letter-spacing:-2.982000pt;}
.ls0_c00312{letter-spacing:-2.639000pt;}
.ls17_c00312{letter-spacing:-2.065800pt;}
.lse_c00312{letter-spacing:-2.016000pt;}
.ls1_c00312{letter-spacing:-1.981700pt;}
.ls6_c00312{letter-spacing:-1.323700pt;}
.ls12_c00312{letter-spacing:-1.308200pt;}
.ls8_c00312{letter-spacing:-0.658000pt;}
.ls7_c00312{letter-spacing:0.000000pt;}
.ls16_c00312{letter-spacing:1.434200pt;}
.ls11_c00312{letter-spacing:1.921420pt;}
.ws0_c00312{word-spacing:0.000000pt;}
._b_c00312{margin-left:-8.099172pt;}
._3_c00312{margin-left:-4.830502pt;}
._8_c00312{margin-left:-3.670879pt;}
._12_c00312{margin-left:-1.101932pt;}
._9_c00312{width:0.895947pt;}
._7_c00312{width:2.242021pt;}
._5_c00312{width:3.831311pt;}
._0_c00312{width:4.823502pt;}
._1_c00312{width:6.614815pt;}
._4_c00312{width:7.577962pt;}
._d_c00312{width:8.550975pt;}
._6_c00312{width:9.646475pt;}
._a_c00312{width:10.565523pt;}
._10_c00312{width:12.630826pt;}
._e_c00312{width:14.161740pt;}
._2_c00312{width:15.959709pt;}
._f_c00312{width:17.292536pt;}
._c_c00312{width:18.482655pt;}
._11_c00312{width:23.568947pt;}
.fs6_c00312{font-size:15.333333pt;}
.fsc_c00312{font-size:61.333333pt;}
.fs7_c00312{font-size:62.000000pt;}
.fs9_c00312{font-size:63.333333pt;}
.fs8_c00312{font-size:64.666667pt;}
.fsb_c00312{font-size:66.000000pt;}
.fsa_c00312{font-size:67.333333pt;}
.fs0_c00312{font-size:70.000000pt;}
.fs3_c00312{font-size:70.666667pt;}
.fs2_c00312{font-size:71.333333pt;}
.fs5_c00312{font-size:72.000000pt;}
.fs4_c00312{font-size:72.666667pt;}
.fs1_c00312{font-size:73.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y13_c00312{bottom:178.560000pt;}
.y12_c00312{bottom:205.120667pt;}
.y11_c00312{bottom:205.120813pt;}
.y10_c00312{bottom:231.360387pt;}
.yf_c00312{bottom:231.361160pt;}
.yd_c00312{bottom:257.920653pt;}
.ye_c00312{bottom:257.920920pt;}
.yc_c00312{bottom:283.839800pt;}
.yb_c00312{bottom:310.719720pt;}
.ya_c00312{bottom:389.759720pt;}
.y9_c00312{bottom:436.800253pt;}
.y8_c00312{bottom:792.000000pt;}
.y7_c00312{bottom:879.040973pt;}
.y6_c00312{bottom:905.920893pt;}
.y5_c00312{bottom:905.921067pt;}
.y4_c00312{bottom:932.160640pt;}
.y3_c00312{bottom:932.160760pt;}
.y2_c00312{bottom:959.040693pt;}
.y1_c00312{bottom:985.280280pt;}
.ha_c00312{height:15.992187pt;}
.h10_c00312{height:60.195312pt;}
.h12_c00312{height:63.466797pt;}
.hb_c00312{height:64.664062pt;}
.hd_c00312{height:66.054688pt;}
.he_c00312{height:66.083984pt;}
.hf_c00312{height:66.515625pt;}
.hc_c00312{height:67.445312pt;}
.h1_c00312{height:68.701172pt;}
.h4_c00312{height:69.355469pt;}
.h3_c00312{height:70.009766pt;}
.h9_c00312{height:70.546875pt;}
.h6_c00312{height:71.218750pt;}
.h5_c00312{height:71.318359pt;}
.h8_c00312{height:71.890625pt;}
.h11_c00312{height:71.972656pt;}
.h2_c00312{height:72.473958pt;}
.h7_c00312{height:72.562500pt;}
.h0_c00312{height:1122.666667pt;}
.w0_c00312{width:793.333333pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:124.158667pt;}
.x7_c00312{left:125.439173pt;}
.x1f_c00312{left:126.399493pt;}
.x13_c00312{left:149.759720pt;}
.x14_c00312{left:168.000000pt;}
.xe_c00312{left:206.399453pt;}
.x15_c00312{left:219.518533pt;}
.x20_c00312{left:233.279333pt;}
.x2_c00312{left:238.719720pt;}
.x16_c00312{left:240.959453pt;}
.xc_c00312{left:252.799867pt;}
.x3_c00312{left:256.960000pt;}
.xf_c00312{left:258.238787pt;}
.xd_c00312{left:265.599587pt;}
.x17_c00312{left:266.879867pt;}
.x10_c00312{left:284.159200pt;}
.x8_c00312{left:316.479453pt;}
.x18_c00312{left:328.319867pt;}
.x12_c00312{left:333.439453pt;}
.x9_c00312{left:334.398920pt;}
.x1b_c00312{left:359.679200pt;}
.x1c_c00312{left:372.479040pt;}
.x19_c00312{left:383.039067pt;}
.x1a_c00312{left:405.118693pt;}
.x21_c00312{left:462.079067pt;}
.xa_c00312{left:472.319867pt;}
.x22_c00312{left:477.758787pt;}
.xb_c00312{left:493.439987pt;}
.x1d_c00312{left:505.278773pt;}
.x11_c00312{left:516.479040pt;}
.x1e_c00312{left:534.079067pt;}
.x4_c00312{left:568.319867pt;}
.x5_c00312{left:581.438920pt;}
.x6_c00312{left:594.559573pt;}
.x23_c00312{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88d6526f32c94d1029db5a76.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.364746;font-style:normal;font-weight:normal;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_72980b86f34451a56f94cecf.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_3045ba48277b689d1d0776d8.woff2')format("woff");}.ff4_c00313{font-family:ff4_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:ff5_c00313;src:url('chunks/assets/font_559abd57434051361f39fab6.woff2')format("woff");}.ff5_c00313{font-family:ff5_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:ff6_c00313;src:url('chunks/assets/font_e6bee8ce270ba98e58aadb40.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00313{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.md_c00313{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);}
.m8_c00313{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m13_c00313{transform:matrix(0.209746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209746,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m14_c00313{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_c00313{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.me_c00313{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m9_c00313{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls1f_c00313{letter-spacing:-16.095750px;}
.lse_c00313{letter-spacing:-14.082750px;}
.ls10_c00313{letter-spacing:-12.226305px;}
.lsf_c00313{letter-spacing:-8.175038px;}
.ls1e_c00313{letter-spacing:-7.426125px;}
.lsc_c00313{letter-spacing:-6.685875px;}
.lsb_c00313{letter-spacing:-6.572700px;}
.lsd_c00313{letter-spacing:-5.945625px;}
.ls13_c00313{letter-spacing:-5.936400px;}
.ls12_c00313{letter-spacing:-5.343818px;}
.ls6_c00313{letter-spacing:-5.196713px;}
.ls1d_c00313{letter-spacing:-5.109375px;}
.ls1c_c00313{letter-spacing:-4.890000px;}
.ls1b_c00313{letter-spacing:-4.470135px;}
.ls8_c00313{letter-spacing:-4.456463px;}
.ls11_c00313{letter-spacing:-4.340700px;}
.ls15_c00313{letter-spacing:-3.823950px;}
.ls7_c00313{letter-spacing:-3.717000px;}
.ls14_c00313{letter-spacing:-3.679500px;}
.ls1a_c00313{letter-spacing:-3.412500px;}
.ls19_c00313{letter-spacing:-3.325245px;}
.ls20_c00313{letter-spacing:-3.057450px;}
.ls17_c00313{letter-spacing:-2.969250px;}
.ls3_c00313{letter-spacing:-2.968875px;}
.ls4_c00313{letter-spacing:-2.229413px;}
.ls16_c00313{letter-spacing:-2.145705px;}
.ls18_c00313{letter-spacing:-1.741500px;}
.ls9_c00313{letter-spacing:-1.489163px;}
.lsa_c00313{letter-spacing:-0.740250px;}
.ls5_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:0.740250px;}
.ls1_c00313{letter-spacing:1.489163px;}
.ls21_c00313{letter-spacing:1.591200px;}
.ls2_c00313{letter-spacing:9.654750px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:0.000000px;}
._3_c00313{margin-left:-9.211001px;}
._14_c00313{margin-left:-7.516851px;}
._1a_c00313{margin-left:-5.835226px;}
._1d_c00313{margin-left:-4.669429px;}
._9_c00313{margin-left:-3.549010px;}
._4_c00313{margin-left:-2.125165px;}
._1c_c00313{margin-left:-1.118770px;}
._17_c00313{width:1.016232px;}
._1_c00313{width:2.020086px;}
._0_c00313{width:3.244500px;}
._8_c00313{width:4.854180px;}
._5_c00313{width:6.364070px;}
._2_c00313{width:8.237636px;}
._6_c00313{width:9.943124px;}
._c_c00313{width:11.318084px;}
._a_c00313{width:12.891018px;}
._b_c00313{width:13.933713px;}
._18_c00313{width:15.664460px;}
._15_c00313{width:16.860256px;}
._7_c00313{width:18.488776px;}
._19_c00313{width:19.713814px;}
._13_c00313{width:21.106486px;}
._16_c00313{width:22.405920px;}
._f_c00313{width:24.108005px;}
._e_c00313{width:25.358585px;}
._10_c00313{width:26.753693px;}
._12_c00313{width:28.088817px;}
._11_c00313{width:29.140591px;}
._d_c00313{width:31.429036px;}
._1b_c00313{width:35.288410px;}
.fc0_c00313{color:transparent;}
.fse_c00313{font-size:43.500000px;}
.fsb_c00313{font-size:68.250000px;}
.fs6_c00313{font-size:72.750000px;}
.fsd_c00313{font-size:75.000000px;}
.fsf_c00313{font-size:78.000000px;}
.fs0_c00313{font-size:78.750000px;}
.fs4_c00313{font-size:79.500000px;}
.fs2_c00313{font-size:80.250000px;}
.fs9_c00313{font-size:81.000000px;}
.fs1_c00313{font-size:81.750000px;}
.fs3_c00313{font-size:82.500000px;}
.fs5_c00313{font-size:83.250000px;}
.fs8_c00313{font-size:86.250000px;}
.fs7_c00313{font-size:87.000000px;}
.fsc_c00313{font-size:88.500000px;}
.fsa_c00313{font-size:115.500000px;}
.y0_c00313{bottom:0.000000px;}
.y29_c00313{bottom:210.960705px;}
.y28_c00313{bottom:240.840435px;}
.y27_c00313{bottom:270.720150px;}
.y25_c00313{bottom:300.598575px;}
.y26_c00313{bottom:300.599100px;}
.y24_c00313{bottom:329.759715px;}
.y23_c00313{bottom:359.279250px;}
.y22_c00313{bottom:359.279385px;}
.y21_c00313{bottom:388.798920px;}
.y1f_c00313{bottom:419.038920px;}
.y20_c00313{bottom:419.759085px;}
.y1e_c00313{bottom:448.919535px;}
.y1d_c00313{bottom:448.919910px;}
.y1c_c00313{bottom:479.520315px;}
.y1b_c00313{bottom:479.520450px;}
.y1a_c00313{bottom:509.039985px;}
.y19_c00313{bottom:538.559685px;}
.y18_c00313{bottom:538.559985px;}
.y17_c00313{bottom:597.240675px;}
.y15_c00313{bottom:657.359505px;}
.y16_c00313{bottom:657.360300px;}
.y14_c00313{bottom:687.239220px;}
.y13_c00313{bottom:687.239325px;}
.y11_c00313{bottom:717.478455px;}
.y12_c00313{bottom:717.479235px;}
.y10_c00313{bottom:776.879520px;}
.yf_c00313{bottom:776.879655px;}
.ye_c00313{bottom:806.399190px;}
.yd_c00313{bottom:836.639100px;}
.yc_c00313{bottom:836.640975px;}
.yb_c00313{bottom:866.160510px;}
.ya_c00313{bottom:896.040225px;}
.y9_c00313{bottom:925.919955px;}
.y8_c00313{bottom:925.920315px;}
.y7_c00313{bottom:956.160240px;}
.y6_c00313{bottom:1015.919685px;}
.y5_c00313{bottom:1045.439205px;}
.y4_c00313{bottom:1045.440240px;}
.y3_c00313{bottom:1075.319955px;}
.y2_c00313{bottom:1104.839490px;}
.y1_c00313{bottom:1135.079400px;}
.h13_c00313{height:45.369141px;}
.hf_c00313{height:68.783203px;}
.h8_c00313{height:75.875977px;}
.h14_c00313{height:76.552734px;}
.h1_c00313{height:77.288818px;}
.h6_c00313{height:78.024902px;}
.h12_c00313{height:78.222656px;}
.h5_c00313{height:78.568359px;}
.h3_c00313{height:78.760986px;}
.h2_c00313{height:80.233154px;}
.hc_c00313{height:80.876953px;}
.h9_c00313{height:80.969238px;}
.h4_c00313{height:81.533203px;}
.hd_c00313{height:81.632812px;}
.h7_c00313{height:81.705322px;}
.h10_c00313{height:82.388672px;}
.ha_c00313{height:85.385742px;}
.h11_c00313{height:86.814697px;}
.hb_c00313{height:86.923828px;}
.he_c00313{height:116.402344px;}
.h0_c00313{height:1263.000000px;}
.w0_c00313{width:892.500000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:137.878950px;}
.x11_c00313{left:138.958350px;}
.x27_c00313{left:140.398845px;}
.x1a_c00313{left:168.479685px;}
.x1b_c00313{left:201.239250px;}
.x1c_c00313{left:217.799535px;}
.x8_c00313{left:223.559100px;}
.x14_c00313{left:231.479235px;}
.x9_c00313{left:238.319850px;}
.x15_c00313{left:286.919535px;}
.xe_c00313{left:303.118785px;}
.xf_c00313{left:324.000000px;}
.x28_c00313{left:348.478635px;}
.x29_c00313{left:368.998950px;}
.x4_c00313{left:385.918350px;}
.x5_c00313{left:402.478635px;}
.x25_c00313{left:423.719100px;}
.x26_c00313{left:444.239220px;}
.x1d_c00313{left:455.758530px;}
.x16_c00313{left:482.758530px;}
.x12_c00313{left:490.678530px;}
.x17_c00313{left:497.159820px;}
.x13_c00313{left:506.518620px;}
.x1e_c00313{left:537.119385px;}
.x18_c00313{left:546.838950px;}
.xc_c00313{left:560.518620px;}
.x1f_c00313{left:561.599670px;}
.x19_c00313{left:573.838950px;}
.x6_c00313{left:580.679670px;}
.x2b_c00313{left:582.119985px;}
.x7_c00313{left:604.078770px;}
.x2c_c00313{left:607.318770px;}
.xd_c00313{left:608.759085px;}
.x20_c00313{left:642.238770px;}
.x2_c00313{left:676.438620px;}
.xa_c00313{left:691.919535px;}
.x3_c00313{left:698.039985px;}
.x21_c00313{left:702.000000px;}
.xb_c00313{left:712.439670px;}
.x22_c00313{left:717.119985px;}
.x2a_c00313{left:740.159820px;}
.x10_c00313{left:747.719100px;}
.x23_c00313{left:761.759535px;}
.x24_c00313{left:785.158815px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1f_c00313{letter-spacing:-14.307333pt;}
.lse_c00313{letter-spacing:-12.518000pt;}
.ls10_c00313{letter-spacing:-10.867827pt;}
.lsf_c00313{letter-spacing:-7.266700pt;}
.ls1e_c00313{letter-spacing:-6.601000pt;}
.lsc_c00313{letter-spacing:-5.943000pt;}
.lsb_c00313{letter-spacing:-5.842400pt;}
.lsd_c00313{letter-spacing:-5.285000pt;}
.ls13_c00313{letter-spacing:-5.276800pt;}
.ls12_c00313{letter-spacing:-4.750060pt;}
.ls6_c00313{letter-spacing:-4.619300pt;}
.ls1d_c00313{letter-spacing:-4.541667pt;}
.ls1c_c00313{letter-spacing:-4.346667pt;}
.ls1b_c00313{letter-spacing:-3.973453pt;}
.ls8_c00313{letter-spacing:-3.961300pt;}
.ls11_c00313{letter-spacing:-3.858400pt;}
.ls15_c00313{letter-spacing:-3.399067pt;}
.ls7_c00313{letter-spacing:-3.304000pt;}
.ls14_c00313{letter-spacing:-3.270667pt;}
.ls1a_c00313{letter-spacing:-3.033333pt;}
.ls19_c00313{letter-spacing:-2.955773pt;}
.ls20_c00313{letter-spacing:-2.717733pt;}
.ls17_c00313{letter-spacing:-2.639333pt;}
.ls3_c00313{letter-spacing:-2.639000pt;}
.ls4_c00313{letter-spacing:-1.981700pt;}
.ls16_c00313{letter-spacing:-1.907293pt;}
.ls18_c00313{letter-spacing:-1.548000pt;}
.ls9_c00313{letter-spacing:-1.323700pt;}
.lsa_c00313{letter-spacing:-0.658000pt;}
.ls5_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:0.658000pt;}
.ls1_c00313{letter-spacing:1.323700pt;}
.ls21_c00313{letter-spacing:1.414400pt;}
.ls2_c00313{letter-spacing:8.582000pt;}
.ws0_c00313{word-spacing:0.000000pt;}
._3_c00313{margin-left:-8.187557pt;}
._14_c00313{margin-left:-6.681645pt;}
._1a_c00313{margin-left:-5.186868pt;}
._1d_c00313{margin-left:-4.150604pt;}
._9_c00313{margin-left:-3.154675pt;}
._4_c00313{margin-left:-1.889036pt;}
._1c_c00313{margin-left:-0.994462pt;}
._17_c00313{width:0.903317pt;}
._1_c00313{width:1.795632pt;}
._0_c00313{width:2.884000pt;}
._8_c00313{width:4.314826pt;}
._5_c00313{width:5.656951pt;}
._2_c00313{width:7.322343pt;}
._6_c00313{width:8.838332pt;}
._c_c00313{width:10.060519pt;}
._a_c00313{width:11.458683pt;}
._b_c00313{width:12.385523pt;}
._18_c00313{width:13.923964pt;}
._15_c00313{width:14.986894pt;}
._7_c00313{width:16.434468pt;}
._19_c00313{width:17.523391pt;}
._13_c00313{width:18.761321pt;}
._16_c00313{width:19.916374pt;}
._f_c00313{width:21.429338pt;}
._e_c00313{width:22.540964pt;}
._10_c00313{width:23.781060pt;}
._12_c00313{width:24.967838pt;}
._11_c00313{width:25.902747pt;}
._d_c00313{width:27.936921pt;}
._1b_c00313{width:31.367475pt;}
.fse_c00313{font-size:38.666667pt;}
.fsb_c00313{font-size:60.666667pt;}
.fs6_c00313{font-size:64.666667pt;}
.fsd_c00313{font-size:66.666667pt;}
.fsf_c00313{font-size:69.333333pt;}
.fs0_c00313{font-size:70.000000pt;}
.fs4_c00313{font-size:70.666667pt;}
.fs2_c00313{font-size:71.333333pt;}
.fs9_c00313{font-size:72.000000pt;}
.fs1_c00313{font-size:72.666667pt;}
.fs3_c00313{font-size:73.333333pt;}
.fs5_c00313{font-size:74.000000pt;}
.fs8_c00313{font-size:76.666667pt;}
.fs7_c00313{font-size:77.333333pt;}
.fsc_c00313{font-size:78.666667pt;}
.fsa_c00313{font-size:102.666667pt;}
.y0_c00313{bottom:0.000000pt;}
.y29_c00313{bottom:187.520627pt;}
.y28_c00313{bottom:214.080387pt;}
.y27_c00313{bottom:240.640133pt;}
.y25_c00313{bottom:267.198733pt;}
.y26_c00313{bottom:267.199200pt;}
.y24_c00313{bottom:293.119747pt;}
.y23_c00313{bottom:319.359333pt;}
.y22_c00313{bottom:319.359453pt;}
.y21_c00313{bottom:345.599040pt;}
.y1f_c00313{bottom:372.479040pt;}
.y20_c00313{bottom:373.119187pt;}
.y1e_c00313{bottom:399.039587pt;}
.y1d_c00313{bottom:399.039920pt;}
.y1c_c00313{bottom:426.240280pt;}
.y1b_c00313{bottom:426.240400pt;}
.y1a_c00313{bottom:452.479987pt;}
.y19_c00313{bottom:478.719720pt;}
.y18_c00313{bottom:478.719987pt;}
.y17_c00313{bottom:530.880600pt;}
.y15_c00313{bottom:584.319560pt;}
.y16_c00313{bottom:584.320267pt;}
.y14_c00313{bottom:610.879307pt;}
.y13_c00313{bottom:610.879400pt;}
.y11_c00313{bottom:637.758627pt;}
.y12_c00313{bottom:637.759320pt;}
.y10_c00313{bottom:690.559573pt;}
.yf_c00313{bottom:690.559693pt;}
.ye_c00313{bottom:716.799280pt;}
.yd_c00313{bottom:743.679200pt;}
.yc_c00313{bottom:743.680867pt;}
.yb_c00313{bottom:769.920453pt;}
.ya_c00313{bottom:796.480200pt;}
.y9_c00313{bottom:823.039960pt;}
.y8_c00313{bottom:823.040280pt;}
.y7_c00313{bottom:849.920213pt;}
.y6_c00313{bottom:903.039720pt;}
.y5_c00313{bottom:929.279293pt;}
.y4_c00313{bottom:929.280213pt;}
.y3_c00313{bottom:955.839960pt;}
.y2_c00313{bottom:982.079547pt;}
.y1_c00313{bottom:1008.959467pt;}
.h13_c00313{height:40.328125pt;}
.hf_c00313{height:61.140625pt;}
.h8_c00313{height:67.445312pt;}
.h14_c00313{height:68.046875pt;}
.h1_c00313{height:68.701172pt;}
.h6_c00313{height:69.355469pt;}
.h12_c00313{height:69.531250pt;}
.h5_c00313{height:69.838542pt;}
.h3_c00313{height:70.009766pt;}
.h2_c00313{height:71.318359pt;}
.hc_c00313{height:71.890625pt;}
.h9_c00313{height:71.972656pt;}
.h4_c00313{height:72.473958pt;}
.hd_c00313{height:72.562500pt;}
.h7_c00313{height:72.626953pt;}
.h10_c00313{height:73.234375pt;}
.ha_c00313{height:75.898438pt;}
.h11_c00313{height:77.168620pt;}
.hb_c00313{height:77.265625pt;}
.he_c00313{height:103.468750pt;}
.h0_c00313{height:1122.666667pt;}
.w0_c00313{width:793.333333pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:122.559067pt;}
.x11_c00313{left:123.518533pt;}
.x27_c00313{left:124.798973pt;}
.x1a_c00313{left:149.759720pt;}
.x1b_c00313{left:178.879333pt;}
.x1c_c00313{left:193.599587pt;}
.x8_c00313{left:198.719200pt;}
.x14_c00313{left:205.759320pt;}
.x9_c00313{left:211.839867pt;}
.x15_c00313{left:255.039587pt;}
.xe_c00313{left:269.438920pt;}
.xf_c00313{left:288.000000pt;}
.x28_c00313{left:309.758787pt;}
.x29_c00313{left:327.999067pt;}
.x4_c00313{left:343.038533pt;}
.x5_c00313{left:357.758787pt;}
.x25_c00313{left:376.639200pt;}
.x26_c00313{left:394.879307pt;}
.x1d_c00313{left:405.118693pt;}
.x16_c00313{left:429.118693pt;}
.x12_c00313{left:436.158693pt;}
.x17_c00313{left:441.919840pt;}
.x13_c00313{left:450.238773pt;}
.x1e_c00313{left:477.439453pt;}
.x18_c00313{left:486.079067pt;}
.xc_c00313{left:498.238773pt;}
.x1f_c00313{left:499.199707pt;}
.x19_c00313{left:510.079067pt;}
.x6_c00313{left:516.159707pt;}
.x2b_c00313{left:517.439987pt;}
.x7_c00313{left:536.958907pt;}
.x2c_c00313{left:539.838907pt;}
.xd_c00313{left:541.119187pt;}
.x20_c00313{left:570.878907pt;}
.x2_c00313{left:601.278773pt;}
.xa_c00313{left:615.039587pt;}
.x3_c00313{left:620.479987pt;}
.x21_c00313{left:624.000000pt;}
.xb_c00313{left:633.279707pt;}
.x22_c00313{left:637.439987pt;}
.x2a_c00313{left:657.919840pt;}
.x10_c00313{left:664.639200pt;}
.x23_c00313{left:677.119587pt;}
.x24_c00313{left:697.918947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f9bddccbc8b78ae5592c97a.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.364746;font-style:normal;font-weight:normal;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_ededf1cc2ca6dd057599752b.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_691590db09511313aa639eca.woff2')format("woff");}.ff3_c00314{font-family:ff3_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:ff4_c00314;src:url('chunks/assets/font_0c347aea56baf0921f899fef.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_18201f529537bfdb094b8eb8.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_f5b3b99f2ea37bba5a7513aa.woff2')format("woff");}.ff6_c00314{font-family:ff6_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;}
.m4_c00314{transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.193056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193056,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m1a_c00314{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1d_c00314{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00314{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m18_c00314{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m1c_c00314{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.361607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361607,0.000000,0.000000,0.250000,0,0);}
.v1_c00314{vertical-align:-1.444500px;}
.v0_c00314{vertical-align:0.000000px;}
.ls15_c00314{letter-spacing:-7.277243px;}
.ls1_c00314{letter-spacing:-6.433725px;}
.ls13_c00314{letter-spacing:-5.945625px;}
.ls19_c00314{letter-spacing:-5.937960px;}
.ls11_c00314{letter-spacing:-5.247533px;}
.ls14_c00314{letter-spacing:-5.196713px;}
.ls6_c00314{letter-spacing:-4.456463px;}
.lsb_c00314{letter-spacing:-3.927690px;}
.lsc_c00314{letter-spacing:-3.856410px;}
.ls9_c00314{letter-spacing:-3.717000px;}
.ls1b_c00314{letter-spacing:-3.587850px;}
.ls22_c00314{letter-spacing:-3.582023px;}
.ls16_c00314{letter-spacing:-3.368100px;}
.ls3_c00314{letter-spacing:-3.000375px;}
.ls4_c00314{letter-spacing:-2.968875px;}
.lsa_c00314{letter-spacing:-2.357100px;}
.ls2_c00314{letter-spacing:-2.251463px;}
.ls5_c00314{letter-spacing:-2.229413px;}
.ls1f_c00314{letter-spacing:-2.182950px;}
.ls23_c00314{letter-spacing:-2.116800px;}
.ls18_c00314{letter-spacing:-1.696800px;}
.lsf_c00314{letter-spacing:-1.570590px;}
.ls8_c00314{letter-spacing:-1.489163px;}
.ls1a_c00314{letter-spacing:-0.848400px;}
.ls21_c00314{letter-spacing:-0.803250px;}
.ls10_c00314{letter-spacing:-0.740250px;}
.ls7_c00314{letter-spacing:0.000000px;}
.lse_c00314{letter-spacing:0.785700px;}
.lsd_c00314{letter-spacing:1.570590px;}
.ls1c_c00314{letter-spacing:1.632150px;}
.ls1e_c00314{letter-spacing:1.679580px;}
.ls20_c00314{letter-spacing:3.152235px;}
.ls0_c00314{letter-spacing:3.264765px;}
.ls17_c00314{letter-spacing:4.634850px;}
.ls12_c00314{letter-spacing:6.286575px;}
.ls1d_c00314{letter-spacing:8.250323px;}
.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;}
._13_c00314{margin-left:-16.563920px;}
._11_c00314{margin-left:-5.530096px;}
._1_c00314{margin-left:-3.544455px;}
._8_c00314{width:2.403896px;}
._4_c00314{width:4.419519px;}
._2_c00314{width:5.686260px;}
._3_c00314{width:7.660328px;}
._12_c00314{width:9.216621px;}
._7_c00314{width:10.743595px;}
._0_c00314{width:11.840490px;}
._9_c00314{width:13.158620px;}
._b_c00314{width:14.331074px;}
._a_c00314{width:15.399305px;}
._6_c00314{width:19.399587px;}
._d_c00314{width:21.601095px;}
._c_c00314{width:26.132534px;}
._f_c00314{width:41.639190px;}
._e_c00314{width:53.852519px;}
._5_c00314{width:275.758340px;}
._10_c00314{width:330.058782px;}
.fc0_c00314{color:transparent;}
.fs7_c00314{font-size:42.000000px;}
.fse_c00314{font-size:46.500000px;}
.fsf_c00314{font-size:47.250000px;}
.fs11_c00314{font-size:48.000000px;}
.fs10_c00314{font-size:49.500000px;}
.fsd_c00314{font-size:50.250000px;}
.fs2_c00314{font-size:51.750000px;}
.fsa_c00314{font-size:74.250000px;}
.fs1_c00314{font-size:78.750000px;}
.fsb_c00314{font-size:79.500000px;}
.fs9_c00314{font-size:80.250000px;}
.fs4_c00314{font-size:81.000000px;}
.fs0_c00314{font-size:81.750000px;}
.fs5_c00314{font-size:82.500000px;}
.fsc_c00314{font-size:84.000000px;}
.fs8_c00314{font-size:84.750000px;}
.fs6_c00314{font-size:135.000000px;}
.fs3_c00314{font-size:144.750000px;}
.y0_c00314{bottom:0.000000px;}
.y22_c00314{bottom:170.279250px;}
.y21_c00314{bottom:305.640150px;}
.y20_c00314{bottom:305.640960px;}
.y1f_c00314{bottom:336.239250px;}
.y1e_c00314{bottom:336.240435px;}
.y1d_c00314{bottom:365.759970px;}
.y1c_c00314{bottom:395.639700px;}
.y1b_c00314{bottom:424.439250px;}
.y19_c00314{bottom:424.799355px;}
.y1a_c00314{bottom:424.800150px;}
.y18_c00314{bottom:454.679070px;}
.y17_c00314{bottom:454.679265px;}
.y16_c00314{bottom:484.198785px;}
.y15_c00314{bottom:484.199685px;}
.y14_c00314{bottom:514.079400px;}
.y13_c00314{bottom:603.719520px;}
.y12_c00314{bottom:673.198785px;}
.y11_c00314{bottom:713.159820px;}
.yf_c00314{bottom:744.119985px;}
.ye_c00314{bottom:752.760135px;}
.y10_c00314{bottom:753.480285px;}
.yd_c00314{bottom:794.159820px;}
.yc_c00314{bottom:834.480285px;}
.yb_c00314{bottom:834.839535px;}
.ya_c00314{bottom:874.439670px;}
.y9_c00314{bottom:915.119385px;}
.y7_c00314{bottom:955.439640px;}
.y8_c00314{bottom:955.439670px;}
.y5_c00314{bottom:986.038875px;}
.y6_c00314{bottom:995.399235px;}
.y4_c00314{bottom:997.198785px;}
.y3_c00314{bottom:1025.639100px;}
.y2_c00314{bottom:1094.759925px;}
.y1_c00314{bottom:1124.639655px;}
.ha_c00314{height:43.804688px;}
.h16_c00314{height:45.637207px;}
.h15_c00314{height:46.373291px;}
.h13_c00314{height:46.863281px;}
.h18_c00314{height:47.109375px;}
.h14_c00314{height:47.619141px;}
.h17_c00314{height:48.581543px;}
.h12_c00314{height:49.317627px;}
.h4_c00314{height:53.973633px;}
.h3_c00314{height:77.288818px;}
.he_c00314{height:77.440430px;}
.hd_c00314{height:78.760986px;}
.h2_c00314{height:79.365234px;}
.h7_c00314{height:79.497070px;}
.h10_c00314{height:80.121094px;}
.hc_c00314{height:80.233154px;}
.h1_c00314{height:80.791992px;}
.h8_c00314{height:80.969238px;}
.h6_c00314{height:81.632812px;}
.hf_c00314{height:82.388672px;}
.h11_c00314{height:82.400391px;}
.hb_c00314{height:83.177490px;}
.h9_c00314{height:140.800781px;}
.h5_c00314{height:150.969727px;}
.h0_c00314{height:1263.000000px;}
.w0_c00314{width:892.500000px;}
.x0_c00314{left:0.000000px;}
.x13_c00314{left:138.958350px;}
.x1c_c00314{left:140.399250px;}
.x23_c00314{left:169.199850px;}
.x24_c00314{left:185.758500px;}
.x1d_c00314{left:204.838515px;}
.x16_c00314{left:239.758500px;}
.x17_c00314{left:259.919535px;}
.x1e_c00314{left:270.359250px;}
.x25_c00314{left:294.839535px;}
.x1f_c00314{left:300.239850px;}
.x11_c00314{left:330.118785px;}
.x1_c00314{left:332.279250px;}
.x6_c00314{left:333.359295px;}
.x26_c00314{left:336.598530px;}
.x20_c00314{left:353.878950px;}
.x22_c00314{left:354.958350px;}
.x27_c00314{left:388.439715px;}
.x2_c00314{left:390.598530px;}
.xe_c00314{left:395.278800px;}
.xa_c00314{left:404.639100px;}
.xf_c00314{left:410.039385px;}
.xb_c00314{left:419.759085px;}
.x28_c00314{left:441.358665px;}
.x18_c00314{left:442.439670px;}
.x19_c00314{left:459.718500px;}
.x29_c00314{left:465.118785px;}
.x3_c00314{left:472.679670px;}
.x12_c00314{left:476.278800px;}
.x1a_c00314{left:477.359850px;}
.x2a_c00314{left:480.599670px;}
.x2b_c00314{left:492.118785px;}
.x1b_c00314{left:494.279250px;}
.xc_c00314{left:496.439670px;}
.x4_c00314{left:497.519070px;}
.x5_c00314{left:532.439250px;}
.x9_c00314{left:545.759535px;}
.x10_c00314{left:546.838950px;}
.x7_c00314{left:561.238770px;}
.x8_c00314{left:570.599070px;}
.x2c_c00314{left:573.838950px;}
.xd_c00314{left:580.679670px;}
.x14_c00314{left:636.479235px;}
.x15_c00314{left:658.439670px;}
.x21_c00314{left:692.639700px;}
@media print{
.v1_c00314{vertical-align:-1.284000pt;}
.v0_c00314{vertical-align:0.000000pt;}
.ls15_c00314{letter-spacing:-6.468660pt;}
.ls1_c00314{letter-spacing:-5.718867pt;}
.ls13_c00314{letter-spacing:-5.285000pt;}
.ls19_c00314{letter-spacing:-5.278187pt;}
.ls11_c00314{letter-spacing:-4.664473pt;}
.ls14_c00314{letter-spacing:-4.619300pt;}
.ls6_c00314{letter-spacing:-3.961300pt;}
.lsb_c00314{letter-spacing:-3.491280pt;}
.lsc_c00314{letter-spacing:-3.427920pt;}
.ls9_c00314{letter-spacing:-3.304000pt;}
.ls1b_c00314{letter-spacing:-3.189200pt;}
.ls22_c00314{letter-spacing:-3.184020pt;}
.ls16_c00314{letter-spacing:-2.993867pt;}
.ls3_c00314{letter-spacing:-2.667000pt;}
.ls4_c00314{letter-spacing:-2.639000pt;}
.lsa_c00314{letter-spacing:-2.095200pt;}
.ls2_c00314{letter-spacing:-2.001300pt;}
.ls5_c00314{letter-spacing:-1.981700pt;}
.ls1f_c00314{letter-spacing:-1.940400pt;}
.ls23_c00314{letter-spacing:-1.881600pt;}
.ls18_c00314{letter-spacing:-1.508267pt;}
.lsf_c00314{letter-spacing:-1.396080pt;}
.ls8_c00314{letter-spacing:-1.323700pt;}
.ls1a_c00314{letter-spacing:-0.754133pt;}
.ls21_c00314{letter-spacing:-0.714000pt;}
.ls10_c00314{letter-spacing:-0.658000pt;}
.ls7_c00314{letter-spacing:0.000000pt;}
.lse_c00314{letter-spacing:0.698400pt;}
.lsd_c00314{letter-spacing:1.396080pt;}
.ls1c_c00314{letter-spacing:1.450800pt;}
.ls1e_c00314{letter-spacing:1.492960pt;}
.ls20_c00314{letter-spacing:2.801987pt;}
.ls0_c00314{letter-spacing:2.902013pt;}
.ls17_c00314{letter-spacing:4.119867pt;}
.ls12_c00314{letter-spacing:5.588067pt;}
.ls1d_c00314{letter-spacing:7.333620pt;}
.ws0_c00314{word-spacing:0.000000pt;}
._13_c00314{margin-left:-14.723484pt;}
._11_c00314{margin-left:-4.915641pt;}
._1_c00314{margin-left:-3.150627pt;}
._8_c00314{width:2.136796pt;}
._4_c00314{width:3.928462pt;}
._2_c00314{width:5.054453pt;}
._3_c00314{width:6.809180pt;}
._12_c00314{width:8.192552pt;}
._7_c00314{width:9.549862pt;}
._0_c00314{width:10.524880pt;}
._9_c00314{width:11.696551pt;}
._b_c00314{width:12.738732pt;}
._a_c00314{width:13.688271pt;}
._6_c00314{width:17.244077pt;}
._d_c00314{width:19.200974pt;}
._c_c00314{width:23.228919pt;}
._f_c00314{width:37.012614pt;}
._e_c00314{width:47.868906pt;}
._5_c00314{width:245.118525pt;}
._10_c00314{width:293.385584pt;}
.fs7_c00314{font-size:37.333333pt;}
.fse_c00314{font-size:41.333333pt;}
.fsf_c00314{font-size:42.000000pt;}
.fs11_c00314{font-size:42.666667pt;}
.fs10_c00314{font-size:44.000000pt;}
.fsd_c00314{font-size:44.666667pt;}
.fs2_c00314{font-size:46.000000pt;}
.fsa_c00314{font-size:66.000000pt;}
.fs1_c00314{font-size:70.000000pt;}
.fsb_c00314{font-size:70.666667pt;}
.fs9_c00314{font-size:71.333333pt;}
.fs4_c00314{font-size:72.000000pt;}
.fs0_c00314{font-size:72.666667pt;}
.fs5_c00314{font-size:73.333333pt;}
.fsc_c00314{font-size:74.666667pt;}
.fs8_c00314{font-size:75.333333pt;}
.fs6_c00314{font-size:120.000000pt;}
.fs3_c00314{font-size:128.666667pt;}
.y0_c00314{bottom:0.000000pt;}
.y22_c00314{bottom:151.359333pt;}
.y21_c00314{bottom:271.680133pt;}
.y20_c00314{bottom:271.680853pt;}
.y1f_c00314{bottom:298.879333pt;}
.y1e_c00314{bottom:298.880387pt;}
.y1d_c00314{bottom:325.119973pt;}
.y1c_c00314{bottom:351.679733pt;}
.y1b_c00314{bottom:377.279333pt;}
.y19_c00314{bottom:377.599427pt;}
.y1a_c00314{bottom:377.600133pt;}
.y18_c00314{bottom:404.159173pt;}
.y17_c00314{bottom:404.159347pt;}
.y16_c00314{bottom:430.398920pt;}
.y15_c00314{bottom:430.399720pt;}
.y14_c00314{bottom:456.959467pt;}
.y13_c00314{bottom:536.639573pt;}
.y12_c00314{bottom:598.398920pt;}
.y11_c00314{bottom:633.919840pt;}
.yf_c00314{bottom:661.439987pt;}
.ye_c00314{bottom:669.120120pt;}
.y10_c00314{bottom:669.760253pt;}
.yd_c00314{bottom:705.919840pt;}
.yc_c00314{bottom:741.760253pt;}
.yb_c00314{bottom:742.079587pt;}
.ya_c00314{bottom:777.279707pt;}
.y9_c00314{bottom:813.439453pt;}
.y7_c00314{bottom:849.279680pt;}
.y8_c00314{bottom:849.279707pt;}
.y5_c00314{bottom:876.479000pt;}
.y6_c00314{bottom:884.799320pt;}
.y4_c00314{bottom:886.398920pt;}
.y3_c00314{bottom:911.679200pt;}
.y2_c00314{bottom:973.119933pt;}
.y1_c00314{bottom:999.679693pt;}
.ha_c00314{height:38.937500pt;}
.h16_c00314{height:40.566406pt;}
.h15_c00314{height:41.220703pt;}
.h13_c00314{height:41.656250pt;}
.h18_c00314{height:41.875000pt;}
.h14_c00314{height:42.328125pt;}
.h17_c00314{height:43.183594pt;}
.h12_c00314{height:43.837891pt;}
.h4_c00314{height:47.976562pt;}
.h3_c00314{height:68.701172pt;}
.he_c00314{height:68.835938pt;}
.hd_c00314{height:70.009766pt;}
.h2_c00314{height:70.546875pt;}
.h7_c00314{height:70.664062pt;}
.h10_c00314{height:71.218750pt;}
.hc_c00314{height:71.318359pt;}
.h1_c00314{height:71.815104pt;}
.h8_c00314{height:71.972656pt;}
.h6_c00314{height:72.562500pt;}
.hf_c00314{height:73.234375pt;}
.h11_c00314{height:73.244792pt;}
.hb_c00314{height:73.935547pt;}
.h9_c00314{height:125.156250pt;}
.h5_c00314{height:134.195312pt;}
.h0_c00314{height:1122.666667pt;}
.w0_c00314{width:793.333333pt;}
.x0_c00314{left:0.000000pt;}
.x13_c00314{left:123.518533pt;}
.x1c_c00314{left:124.799333pt;}
.x23_c00314{left:150.399867pt;}
.x24_c00314{left:165.118667pt;}
.x1d_c00314{left:182.078680pt;}
.x16_c00314{left:213.118667pt;}
.x17_c00314{left:231.039587pt;}
.x1e_c00314{left:240.319333pt;}
.x25_c00314{left:262.079587pt;}
.x1f_c00314{left:266.879867pt;}
.x11_c00314{left:293.438920pt;}
.x1_c00314{left:295.359333pt;}
.x6_c00314{left:296.319373pt;}
.x26_c00314{left:299.198693pt;}
.x20_c00314{left:314.559067pt;}
.x22_c00314{left:315.518533pt;}
.x27_c00314{left:345.279747pt;}
.x2_c00314{left:347.198693pt;}
.xe_c00314{left:351.358933pt;}
.xa_c00314{left:359.679200pt;}
.xf_c00314{left:364.479453pt;}
.xb_c00314{left:373.119187pt;}
.x28_c00314{left:392.318813pt;}
.x18_c00314{left:393.279707pt;}
.x19_c00314{left:408.638667pt;}
.x29_c00314{left:413.438920pt;}
.x3_c00314{left:420.159707pt;}
.x12_c00314{left:423.358933pt;}
.x1a_c00314{left:424.319867pt;}
.x2a_c00314{left:427.199707pt;}
.x2b_c00314{left:437.438920pt;}
.x1b_c00314{left:439.359333pt;}
.xc_c00314{left:441.279707pt;}
.x4_c00314{left:442.239173pt;}
.x5_c00314{left:473.279333pt;}
.x9_c00314{left:485.119587pt;}
.x10_c00314{left:486.079067pt;}
.x7_c00314{left:498.878907pt;}
.x8_c00314{left:507.199173pt;}
.x2c_c00314{left:510.079067pt;}
.xd_c00314{left:516.159707pt;}
.x14_c00314{left:565.759320pt;}
.x15_c00314{left:585.279707pt;}
.x21_c00314{left:615.679733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af3650099dc6bb3e2ad0ee85.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_f56c952ca75a6b84ad9d08de.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_b4a7dac8a59c2b64b6c445c4.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_af5801013e200248a15f6f6f.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_90625f62fdfd8461faa0b793.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.311035;font-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_c00315{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);}
.m21_c00315{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m15_c00315{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mb_c00315{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m19_c00315{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m13_c00315{transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m23_c00315{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1f_c00315{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m9_c00315{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.ma_c00315{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1c_c00315{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m17_c00315{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m24_c00315{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m10_c00315{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1a_c00315{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m18_c00315{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m1b_c00315{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m1d_c00315{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m7_c00315{transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);}
.me_c00315{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.md_c00315{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m14_c00315{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.mc_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m20_c00315{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m1e_c00315{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m22_c00315{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m12_c00315{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m11_c00315{transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);}
.m16_c00315{transform:matrix(0.299658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299658,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls6_c00315{letter-spacing:-20.584200px;}
.ls11_c00315{letter-spacing:-11.340000px;}
.ls15_c00315{letter-spacing:-8.175038px;}
.lsf_c00315{letter-spacing:-7.623000px;}
.lsb_c00315{letter-spacing:-7.426125px;}
.ls10_c00315{letter-spacing:-7.350750px;}
.lse_c00315{letter-spacing:-6.685875px;}
.ls4_c00315{letter-spacing:-5.945625px;}
.lsd_c00315{letter-spacing:-5.484375px;}
.lsc_c00315{letter-spacing:-5.196713px;}
.ls12_c00315{letter-spacing:-5.040720px;}
.ls5_c00315{letter-spacing:-4.456463px;}
.ls1e_c00315{letter-spacing:-4.428000px;}
.ls8_c00315{letter-spacing:-3.720525px;}
.ls1_c00315{letter-spacing:-3.717000px;}
.ls7_c00315{letter-spacing:-2.968875px;}
.ls1f_c00315{letter-spacing:-2.579850px;}
.ls14_c00315{letter-spacing:-2.289000px;}
.ls2_c00315{letter-spacing:-2.229413px;}
.ls19_c00315{letter-spacing:-1.781325px;}
.ls1b_c00315{letter-spacing:-1.605825px;}
.ls1c_c00315{letter-spacing:-1.576815px;}
.ls1d_c00315{letter-spacing:-1.572953px;}
.lsa_c00315{letter-spacing:-1.489163px;}
.ls21_c00315{letter-spacing:-1.454400px;}
.ls3_c00315{letter-spacing:-0.740250px;}
.ls9_c00315{letter-spacing:0.000000px;}
.ls20_c00315{letter-spacing:2.214300px;}
.ls18_c00315{letter-spacing:2.404050px;}
.ls17_c00315{letter-spacing:2.481600px;}
.ls13_c00315{letter-spacing:2.643675px;}
.ls16_c00315{letter-spacing:3.637710px;}
.ls22_c00315{letter-spacing:5.718750px;}
.ls0_c00315{letter-spacing:8.914500px;}
.ls1a_c00315{letter-spacing:15.725280px;}
.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;}
._19_c00315{margin-left:-58.565721px;}
._e_c00315{margin-left:-10.222448px;}
._d_c00315{margin-left:-3.612471px;}
._17_c00315{margin-left:-2.362129px;}
._f_c00315{margin-left:-1.187431px;}
._10_c00315{width:1.120791px;}
._2_c00315{width:2.457475px;}
._1_c00315{width:4.013100px;}
._4_c00315{width:5.815702px;}
._5_c00315{width:7.016209px;}
._0_c00315{width:8.465952px;}
._11_c00315{width:9.761196px;}
._18_c00315{width:11.083572px;}
._3_c00315{width:12.277987px;}
._15_c00315{width:13.936952px;}
._7_c00315{width:15.251721px;}
._6_c00315{width:16.358797px;}
._1a_c00315{width:17.779283px;}
._8_c00315{width:19.213247px;}
._9_c00315{width:20.933266px;}
._13_c00315{width:22.027712px;}
._a_c00315{width:23.034405px;}
._b_c00315{width:24.652167px;}
._16_c00315{width:25.797653px;}
._12_c00315{width:27.988047px;}
._14_c00315{width:29.212223px;}
._c_c00315{width:32.609989px;}
.fc0_c00315{color:transparent;}
.fs16_c00315{font-size:39.750000px;}
.fs17_c00315{font-size:45.000000px;}
.fs15_c00315{font-size:45.750000px;}
.fs13_c00315{font-size:46.500000px;}
.fs14_c00315{font-size:47.250000px;}
.fs12_c00315{font-size:48.000000px;}
.fs8_c00315{font-size:52.500000px;}
.fsd_c00315{font-size:70.500000px;}
.fse_c00315{font-size:72.000000px;}
.fsf_c00315{font-size:75.750000px;}
.fsb_c00315{font-size:76.500000px;}
.fs4_c00315{font-size:77.250000px;}
.fs6_c00315{font-size:78.000000px;}
.fs0_c00315{font-size:78.750000px;}
.fs9_c00315{font-size:80.250000px;}
.fsc_c00315{font-size:81.000000px;}
.fs10_c00315{font-size:81.750000px;}
.fs3_c00315{font-size:82.500000px;}
.fs2_c00315{font-size:84.750000px;}
.fs1_c00315{font-size:87.000000px;}
.fs5_c00315{font-size:87.750000px;}
.fsa_c00315{font-size:101.250000px;}
.fs11_c00315{font-size:109.500000px;}
.fs7_c00315{font-size:115.500000px;}
.y0_c00315{bottom:0.000000px;}
.y26_c00315{bottom:174.239250px;}
.y25_c00315{bottom:295.559685px;}
.y24_c00315{bottom:295.559805px;}
.y23_c00315{bottom:325.439535px;}
.y21_c00315{bottom:355.319190px;}
.y22_c00315{bottom:355.319250px;}
.y1f_c00315{bottom:385.558320px;}
.y20_c00315{bottom:385.559100px;}
.y1e_c00315{bottom:444.959385px;}
.y1d_c00315{bottom:504.359850px;}
.y1b_c00315{bottom:564.838845px;}
.y1c_c00315{bottom:564.839535px;}
.y19_c00315{bottom:593.999205px;}
.y1a_c00315{bottom:594.000000px;}
.y18_c00315{bottom:623.878920px;}
.y17_c00315{bottom:653.398635px;}
.y16_c00315{bottom:712.078770px;}
.y15_c00315{bottom:712.079460px;}
.y14_c00315{bottom:733.680570px;}
.y12_c00315{bottom:755.279820px;}
.y13_c00315{bottom:755.279850px;}
.y11_c00315{bottom:776.518620px;}
.y10_c00315{bottom:776.518935px;}
.yf_c00315{bottom:798.120030px;}
.ye_c00315{bottom:798.120225px;}
.yc_c00315{bottom:819.718710px;}
.yd_c00315{bottom:819.719520px;}
.yb_c00315{bottom:841.317990px;}
.ya_c00315{bottom:897.118380px;}
.y9_c00315{bottom:929.880210px;}
.y8_c00315{bottom:959.759925px;}
.y6_c00315{bottom:989.637480px;}
.y7_c00315{bottom:989.639655px;}
.y5_c00315{bottom:1019.517195px;}
.y4_c00315{bottom:1049.038530px;}
.y3_c00315{bottom:1078.918260px;}
.y2_c00315{bottom:1108.079400px;}
.y1_c00315{bottom:1138.319190px;}
.h1b_c00315{height:41.458008px;}
.h1e_c00315{height:46.107422px;}
.h17_c00315{height:46.863281px;}
.h1d_c00315{height:46.933594px;}
.h19_c00315{height:47.437500px;}
.h1c_c00315{height:47.619141px;}
.h1a_c00315{height:47.715820px;}
.h16_c00315{height:48.375000px;}
.h18_c00315{height:49.280273px;}
.h9_c00315{height:51.884766px;}
.h10_c00315{height:73.529297px;}
.hd_c00315{height:75.080566px;}
.h11_c00315{height:75.093750px;}
.h7_c00315{height:76.552734px;}
.h1_c00315{height:77.288818px;}
.ha_c00315{height:78.760986px;}
.h12_c00315{height:79.004883px;}
.h14_c00315{height:79.497070px;}
.hf_c00315{height:80.050781px;}
.h13_c00315{height:80.233154px;}
.h5_c00315{height:80.569336px;}
.h4_c00315{height:80.969238px;}
.he_c00315{height:81.533203px;}
.hc_c00315{height:82.133789px;}
.h3_c00315{height:83.177490px;}
.h2_c00315{height:85.980469px;}
.h6_c00315{height:86.121826px;}
.hb_c00315{height:105.600586px;}
.h15_c00315{height:114.205078px;}
.h8_c00315{height:120.462891px;}
.h0_c00315{height:1263.000000px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x7_c00315{left:137.519145px;}
.x1_c00315{left:138.599100px;}
.x17_c00315{left:151.919565px;}
.x6_c00315{left:156.958950px;}
.x2b_c00315{left:168.479685px;}
.x2c_c00315{left:185.040000px;}
.xb_c00315{left:191.879565px;}
.xa_c00315{left:193.320690px;}
.x21_c00315{left:203.759100px;}
.x23_c00315{left:218.878950px;}
.x2d_c00315{left:245.158785px;}
.x26_c00315{left:249.479685px;}
.x28_c00315{left:258.838515px;}
.x27_c00315{left:267.478635px;}
.x29_c00315{left:273.958350px;}
.x15_c00315{left:278.999385px;}
.x2e_c00315{left:284.038950px;}
.x16_c00315{left:285.120000px;}
.x1a_c00315{left:287.639700px;}
.x2a_c00315{left:298.079385px;}
.x1b_c00315{left:303.118785px;}
.x2f_c00315{left:314.278800px;}
.x30_c00315{left:334.439685px;}
.x31_c00315{left:362.159850px;}
.x11_c00315{left:366.838515px;}
.x12_c00315{left:383.398635px;}
.xc_c00315{left:408.239820px;}
.x32_c00315{left:414.358665px;}
.x18_c00315{left:417.239220px;}
.xd_c00315{left:422.639700px;}
.x19_c00315{left:431.639100px;}
.x24_c00315{left:446.759085px;}
.x33_c00315{left:464.039385px;}
.x25_c00315{left:466.199850px;}
.x22_c00315{left:475.919535px;}
.x2_c00315{left:480.238770px;}
.xe_c00315{left:494.279250px;}
.x3_c00315{left:513.359250px;}
.x34_c00315{left:528.119985px;}
.xf_c00315{left:533.879520px;}
.x1c_c00315{left:540.000000px;}
.x1d_c00315{left:554.399820px;}
.x10_c00315{left:555.479235px;}
.x35_c00315{left:565.198785px;}
.x8_c00315{left:573.118785px;}
.x9_c00315{left:590.758530px;}
.x36_c00315{left:613.798515px;}
.x37_c00315{left:619.918950px;}
.x38_c00315{left:638.998950px;}
.x4_c00315{left:644.039985px;}
.x39_c00315{left:653.039385px;}
.x1e_c00315{left:676.438620px;}
.x5_c00315{left:693.719100px;}
.x1f_c00315{left:718.558635px;}
.x20_c00315{left:727.559685px;}
.x13_c00315{left:740.519070px;}
.x14_c00315{left:756.359250px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls6_c00315{letter-spacing:-18.297067pt;}
.ls11_c00315{letter-spacing:-10.080000pt;}
.ls15_c00315{letter-spacing:-7.266700pt;}
.lsf_c00315{letter-spacing:-6.776000pt;}
.lsb_c00315{letter-spacing:-6.601000pt;}
.ls10_c00315{letter-spacing:-6.534000pt;}
.lse_c00315{letter-spacing:-5.943000pt;}
.ls4_c00315{letter-spacing:-5.285000pt;}
.lsd_c00315{letter-spacing:-4.875000pt;}
.lsc_c00315{letter-spacing:-4.619300pt;}
.ls12_c00315{letter-spacing:-4.480640pt;}
.ls5_c00315{letter-spacing:-3.961300pt;}
.ls1e_c00315{letter-spacing:-3.936000pt;}
.ls8_c00315{letter-spacing:-3.307133pt;}
.ls1_c00315{letter-spacing:-3.304000pt;}
.ls7_c00315{letter-spacing:-2.639000pt;}
.ls1f_c00315{letter-spacing:-2.293200pt;}
.ls14_c00315{letter-spacing:-2.034667pt;}
.ls2_c00315{letter-spacing:-1.981700pt;}
.ls19_c00315{letter-spacing:-1.583400pt;}
.ls1b_c00315{letter-spacing:-1.427400pt;}
.ls1c_c00315{letter-spacing:-1.401613pt;}
.ls1d_c00315{letter-spacing:-1.398180pt;}
.lsa_c00315{letter-spacing:-1.323700pt;}
.ls21_c00315{letter-spacing:-1.292800pt;}
.ls3_c00315{letter-spacing:-0.658000pt;}
.ls9_c00315{letter-spacing:0.000000pt;}
.ls20_c00315{letter-spacing:1.968267pt;}
.ls18_c00315{letter-spacing:2.136933pt;}
.ls17_c00315{letter-spacing:2.205867pt;}
.ls13_c00315{letter-spacing:2.349933pt;}
.ls16_c00315{letter-spacing:3.233520pt;}
.ls22_c00315{letter-spacing:5.083333pt;}
.ls0_c00315{letter-spacing:7.924000pt;}
.ls1a_c00315{letter-spacing:13.978027pt;}
.ws0_c00315{word-spacing:0.000000pt;}
._19_c00315{margin-left:-52.058419pt;}
._e_c00315{margin-left:-9.086621pt;}
._d_c00315{margin-left:-3.211085pt;}
._17_c00315{margin-left:-2.099670pt;}
._f_c00315{margin-left:-1.055494pt;}
._10_c00315{width:0.996258pt;}
._2_c00315{width:2.184423pt;}
._1_c00315{width:3.567200pt;}
._4_c00315{width:5.169513pt;}
._5_c00315{width:6.236630pt;}
._0_c00315{width:7.525291pt;}
._11_c00315{width:8.676619pt;}
._18_c00315{width:9.852064pt;}
._3_c00315{width:10.913766pt;}
._15_c00315{width:12.388402pt;}
._7_c00315{width:13.557085pt;}
._6_c00315{width:14.541153pt;}
._1a_c00315{width:15.803808pt;}
._8_c00315{width:17.078442pt;}
._9_c00315{width:18.607347pt;}
._13_c00315{width:19.580189pt;}
._a_c00315{width:20.475026pt;}
._b_c00315{width:21.913038pt;}
._16_c00315{width:22.931247pt;}
._12_c00315{width:24.878264pt;}
._14_c00315{width:25.966421pt;}
._c_c00315{width:28.986657pt;}
.fs16_c00315{font-size:35.333333pt;}
.fs17_c00315{font-size:40.000000pt;}
.fs15_c00315{font-size:40.666667pt;}
.fs13_c00315{font-size:41.333333pt;}
.fs14_c00315{font-size:42.000000pt;}
.fs12_c00315{font-size:42.666667pt;}
.fs8_c00315{font-size:46.666667pt;}
.fsd_c00315{font-size:62.666667pt;}
.fse_c00315{font-size:64.000000pt;}
.fsf_c00315{font-size:67.333333pt;}
.fsb_c00315{font-size:68.000000pt;}
.fs4_c00315{font-size:68.666667pt;}
.fs6_c00315{font-size:69.333333pt;}
.fs0_c00315{font-size:70.000000pt;}
.fs9_c00315{font-size:71.333333pt;}
.fsc_c00315{font-size:72.000000pt;}
.fs10_c00315{font-size:72.666667pt;}
.fs3_c00315{font-size:73.333333pt;}
.fs2_c00315{font-size:75.333333pt;}
.fs1_c00315{font-size:77.333333pt;}
.fs5_c00315{font-size:78.000000pt;}
.fsa_c00315{font-size:90.000000pt;}
.fs11_c00315{font-size:97.333333pt;}
.fs7_c00315{font-size:102.666667pt;}
.y0_c00315{bottom:0.000000pt;}
.y26_c00315{bottom:154.879333pt;}
.y25_c00315{bottom:262.719720pt;}
.y24_c00315{bottom:262.719827pt;}
.y23_c00315{bottom:289.279587pt;}
.y21_c00315{bottom:315.839280pt;}
.y22_c00315{bottom:315.839333pt;}
.y1f_c00315{bottom:342.718507pt;}
.y20_c00315{bottom:342.719200pt;}
.y1e_c00315{bottom:395.519453pt;}
.y1d_c00315{bottom:448.319867pt;}
.y1b_c00315{bottom:502.078973pt;}
.y1c_c00315{bottom:502.079587pt;}
.y19_c00315{bottom:527.999293pt;}
.y1a_c00315{bottom:528.000000pt;}
.y18_c00315{bottom:554.559040pt;}
.y17_c00315{bottom:580.798787pt;}
.y16_c00315{bottom:632.958907pt;}
.y15_c00315{bottom:632.959520pt;}
.y14_c00315{bottom:652.160507pt;}
.y12_c00315{bottom:671.359840pt;}
.y13_c00315{bottom:671.359867pt;}
.y11_c00315{bottom:690.238773pt;}
.y10_c00315{bottom:690.239053pt;}
.yf_c00315{bottom:709.440027pt;}
.ye_c00315{bottom:709.440200pt;}
.yc_c00315{bottom:728.638853pt;}
.yd_c00315{bottom:728.639573pt;}
.yb_c00315{bottom:747.838213pt;}
.ya_c00315{bottom:797.438560pt;}
.y9_c00315{bottom:826.560187pt;}
.y8_c00315{bottom:853.119933pt;}
.y6_c00315{bottom:879.677760pt;}
.y7_c00315{bottom:879.679693pt;}
.y5_c00315{bottom:906.237507pt;}
.y4_c00315{bottom:932.478693pt;}
.y3_c00315{bottom:959.038453pt;}
.y2_c00315{bottom:984.959467pt;}
.y1_c00315{bottom:1011.839280pt;}
.h1b_c00315{height:36.851562pt;}
.h1e_c00315{height:40.984375pt;}
.h17_c00315{height:41.656250pt;}
.h1d_c00315{height:41.718750pt;}
.h19_c00315{height:42.166667pt;}
.h1c_c00315{height:42.328125pt;}
.h1a_c00315{height:42.414062pt;}
.h16_c00315{height:43.000000pt;}
.h18_c00315{height:43.804688pt;}
.h9_c00315{height:46.119792pt;}
.h10_c00315{height:65.359375pt;}
.hd_c00315{height:66.738281pt;}
.h11_c00315{height:66.750000pt;}
.h7_c00315{height:68.046875pt;}
.h1_c00315{height:68.701172pt;}
.ha_c00315{height:70.009766pt;}
.h12_c00315{height:70.226562pt;}
.h14_c00315{height:70.664062pt;}
.hf_c00315{height:71.156250pt;}
.h13_c00315{height:71.318359pt;}
.h5_c00315{height:71.617188pt;}
.h4_c00315{height:71.972656pt;}
.he_c00315{height:72.473958pt;}
.hc_c00315{height:73.007812pt;}
.h3_c00315{height:73.935547pt;}
.h2_c00315{height:76.427083pt;}
.h6_c00315{height:76.552734pt;}
.hb_c00315{height:93.867188pt;}
.h15_c00315{height:101.515625pt;}
.h8_c00315{height:107.078125pt;}
.h0_c00315{height:1122.666667pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x7_c00315{left:122.239240pt;}
.x1_c00315{left:123.199200pt;}
.x17_c00315{left:135.039613pt;}
.x6_c00315{left:139.519067pt;}
.x2b_c00315{left:149.759720pt;}
.x2c_c00315{left:164.480000pt;}
.xb_c00315{left:170.559613pt;}
.xa_c00315{left:171.840613pt;}
.x21_c00315{left:181.119200pt;}
.x23_c00315{left:194.559067pt;}
.x2d_c00315{left:217.918920pt;}
.x26_c00315{left:221.759720pt;}
.x28_c00315{left:230.078680pt;}
.x27_c00315{left:237.758787pt;}
.x29_c00315{left:243.518533pt;}
.x15_c00315{left:247.999453pt;}
.x2e_c00315{left:252.479067pt;}
.x16_c00315{left:253.440000pt;}
.x1a_c00315{left:255.679733pt;}
.x2a_c00315{left:264.959453pt;}
.x1b_c00315{left:269.438920pt;}
.x2f_c00315{left:279.358933pt;}
.x30_c00315{left:297.279720pt;}
.x31_c00315{left:321.919867pt;}
.x11_c00315{left:326.078680pt;}
.x12_c00315{left:340.798787pt;}
.xc_c00315{left:362.879840pt;}
.x32_c00315{left:368.318813pt;}
.x18_c00315{left:370.879307pt;}
.xd_c00315{left:375.679733pt;}
.x19_c00315{left:383.679200pt;}
.x24_c00315{left:397.119187pt;}
.x33_c00315{left:412.479453pt;}
.x25_c00315{left:414.399867pt;}
.x22_c00315{left:423.039587pt;}
.x2_c00315{left:426.878907pt;}
.xe_c00315{left:439.359333pt;}
.x3_c00315{left:456.319333pt;}
.x34_c00315{left:469.439987pt;}
.xf_c00315{left:474.559573pt;}
.x1c_c00315{left:480.000000pt;}
.x1d_c00315{left:492.799840pt;}
.x10_c00315{left:493.759320pt;}
.x35_c00315{left:502.398920pt;}
.x8_c00315{left:509.438920pt;}
.x9_c00315{left:525.118693pt;}
.x36_c00315{left:545.598680pt;}
.x37_c00315{left:551.039067pt;}
.x38_c00315{left:567.999067pt;}
.x4_c00315{left:572.479987pt;}
.x39_c00315{left:580.479453pt;}
.x1e_c00315{left:601.278773pt;}
.x5_c00315{left:616.639200pt;}
.x1f_c00315{left:638.718787pt;}
.x20_c00315{left:646.719720pt;}
.x13_c00315{left:658.239173pt;}
.x14_c00315{left:672.319333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c4a7aeb2310df16c9575414.woff2')format("woff");}.ff1_c00316{font-family:ff1_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:ff2_c00316;src:url('chunks/assets/font_8a3daa7b7e9e11bdf3d72c0d.woff2')format("woff");}.ff2_c00316{font-family:ff2_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:ff3_c00316;src:url('chunks/assets/font_2c0cfb15a3ad0f517e8da45f.woff2')format("woff");}.ff3_c00316{font-family:ff3_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:ff4_c00316;src:url('chunks/assets/font_21073f4090ee3bb0d0c13109.woff2')format("woff");}.ff4_c00316{font-family:ff4_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:ff5_c00316;src:url('chunks/assets/font_47d50a95d80660b16c7ef200.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00316;src:url('chunks/assets/font_71c15c1a1c67a548aba60423.woff2')format("woff");}.ff6_c00316{font-family:ff6_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:ff7_c00316;src:url('chunks/assets/font_b7018865c36a6cb52583cb13.woff2')format("woff");}.ff7_c00316{font-family:ff7_c00316;line-height:1.364746;font-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_c00316{transform:matrix(0.120283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120283,0.000000,0.000000,0.250000,0,0);}
.me_c00316{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m17_c00316{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1f_c00316{transform:matrix(0.199541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199541,0.000000,0.000000,0.250000,0,0);}
.m2d_c00316{transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);}
.m20_c00316{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m28_c00316{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m26_c00316{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m19_c00316{transform:matrix(0.208384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208384,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2a_c00316{transform:matrix(0.211864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211864,0.000000,0.000000,0.250000,0,0);}
.m27_c00316{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m1b_c00316{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m18_c00316{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m12_c00316{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m1d_c00316{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m25_c00316{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m1e_c00316{transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);}
.mf_c00316{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m2b_c00316{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m22_c00316{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.md_c00316{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m24_c00316{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m1c_c00316{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00316{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m2f_c00316{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.ma_c00316{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m21_c00316{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m14_c00316{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m2c_c00316{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m16_c00316{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m29_c00316{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m13_c00316{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m15_c00316{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m2e_c00316{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.mc_c00316{transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.mb_c00316{transform:matrix(0.339806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339806,0.000000,0.000000,0.250000,0,0);}
.m11_c00316{transform:matrix(0.366822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366822,0.000000,0.000000,0.250000,0,0);}
.m23_c00316{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_c00316{vertical-align:0.000000px;}
.lsf_c00316{letter-spacing:-11.278163px;}
.ls18_c00316{letter-spacing:-10.915350px;}
.ls15_c00316{letter-spacing:-8.175038px;}
.ls22_c00316{letter-spacing:-7.897050px;}
.ls1b_c00316{letter-spacing:-7.426125px;}
.ls1f_c00316{letter-spacing:-6.685875px;}
.ls1e_c00316{letter-spacing:-6.400208px;}
.ls1d_c00316{letter-spacing:-5.945625px;}
.ls27_c00316{letter-spacing:-5.482275px;}
.lsa_c00316{letter-spacing:-5.196713px;}
.ls2e_c00316{letter-spacing:-4.667850px;}
.ls1a_c00316{letter-spacing:-4.456463px;}
.ls25_c00316{letter-spacing:-4.084350px;}
.ls13_c00316{letter-spacing:-3.861000px;}
.ls6_c00316{letter-spacing:-3.717000px;}
.lse_c00316{letter-spacing:-3.711300px;}
.ls2c_c00316{letter-spacing:-3.268028px;}
.ls11_c00316{letter-spacing:-3.179205px;}
.ls7_c00316{letter-spacing:-3.163500px;}
.ls2d_c00316{letter-spacing:-3.056625px;}
.ls9_c00316{letter-spacing:-2.968875px;}
.ls10_c00316{letter-spacing:-2.386020px;}
.ls12_c00316{letter-spacing:-2.385000px;}
.ls1c_c00316{letter-spacing:-2.314343px;}
.ls3_c00316{letter-spacing:-2.252250px;}
.ls8_c00316{letter-spacing:-2.229413px;}
.ls28_c00316{letter-spacing:-2.218500px;}
.ls2f_c00316{letter-spacing:-2.116800px;}
.ls14_c00316{letter-spacing:-1.652378px;}
.lsc_c00316{letter-spacing:-1.570590px;}
.ls5_c00316{letter-spacing:-1.489163px;}
.lsd_c00316{letter-spacing:-1.473413px;}
.ls26_c00316{letter-spacing:-0.900900px;}
.ls21_c00316{letter-spacing:-0.854700px;}
.ls2b_c00316{letter-spacing:-0.805500px;}
.lsb_c00316{letter-spacing:-0.740250px;}
.ls19_c00316{letter-spacing:-0.512798px;}
.ls4_c00316{letter-spacing:0.000000px;}
.ls1_c00316{letter-spacing:0.740250px;}
.ls24_c00316{letter-spacing:0.792075px;}
.ls30_c00316{letter-spacing:0.879315px;}
.ls0_c00316{letter-spacing:1.489163px;}
.ls20_c00316{letter-spacing:1.498500px;}
.ls31_c00316{letter-spacing:2.335200px;}
.ls29_c00316{letter-spacing:2.631435px;}
.ls2a_c00316{letter-spacing:2.655000px;}
.ls16_c00316{letter-spacing:2.849288px;}
.ls2_c00316{letter-spacing:4.456463px;}
.ls23_c00316{letter-spacing:4.700625px;}
.ls17_c00316{letter-spacing:31.363800px;}
.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;}
._0_c00316{margin-left:-40.864350px;}
._1_c00316{margin-left:-39.732060px;}
._c_c00316{margin-left:-22.773074px;}
._1b_c00316{margin-left:-18.954679px;}
._10_c00316{margin-left:-5.548175px;}
._5_c00316{margin-left:-3.770283px;}
._7_c00316{margin-left:-1.774594px;}
._4_c00316{width:1.736794px;}
._2_c00316{width:2.908758px;}
._3_c00316{width:4.332394px;}
._b_c00316{width:5.932178px;}
._6_c00316{width:7.420315px;}
._a_c00316{width:8.597702px;}
._8_c00316{width:9.960255px;}
._9_c00316{width:11.849171px;}
._12_c00316{width:13.113405px;}
._e_c00316{width:14.227005px;}
._d_c00316{width:15.883058px;}
._11_c00316{width:17.196444px;}
._14_c00316{width:18.417931px;}
._16_c00316{width:19.521501px;}
._f_c00316{width:21.029043px;}
._19_c00316{width:22.523704px;}
._13_c00316{width:23.648001px;}
._15_c00316{width:24.941863px;}
._17_c00316{width:27.334259px;}
._18_c00316{width:29.881182px;}
._1a_c00316{width:31.399408px;}
.fc0_c00316{color:transparent;}
.fs1d_c00316{font-size:41.250000px;}
.fs1f_c00316{font-size:42.000000px;}
.fs16_c00316{font-size:44.250000px;}
.fs1c_c00316{font-size:45.000000px;}
.fs19_c00316{font-size:46.500000px;}
.fs1e_c00316{font-size:48.000000px;}
.fs18_c00316{font-size:49.500000px;}
.fs1a_c00316{font-size:50.250000px;}
.fs1b_c00316{font-size:51.000000px;}
.fs17_c00316{font-size:54.750000px;}
.fs5_c00316{font-size:66.750000px;}
.fs6_c00316{font-size:71.250000px;}
.fsb_c00316{font-size:72.750000px;}
.fs15_c00316{font-size:75.000000px;}
.fs14_c00316{font-size:75.750000px;}
.fs9_c00316{font-size:77.250000px;}
.fs7_c00316{font-size:78.000000px;}
.fs1_c00316{font-size:78.750000px;}
.fs10_c00316{font-size:79.223400px;}
.fs8_c00316{font-size:79.500000px;}
.fs4_c00316{font-size:80.250000px;}
.fs3_c00316{font-size:81.000000px;}
.fsc_c00316{font-size:81.750000px;}
.fs13_c00316{font-size:82.500000px;}
.fsa_c00316{font-size:84.000000px;}
.fsd_c00316{font-size:84.750000px;}
.fs2_c00316{font-size:85.500000px;}
.fs12_c00316{font-size:87.750000px;}
.fse_c00316{font-size:101.250000px;}
.fs0_c00316{font-size:115.500000px;}
.fs11_c00316{font-size:120.750000px;}
.fsf_c00316{font-size:129.750000px;}
.y0_c00316{bottom:0.000000px;}
.y2a_c00316{bottom:172.798950px;}
.y29_c00316{bottom:212.399250px;}
.y28_c00316{bottom:303.120435px;}
.y27_c00316{bottom:333.000165px;}
.y26_c00316{bottom:392.038920px;}
.y25_c00316{bottom:392.039070px;}
.y24_c00316{bottom:413.640150px;}
.y23_c00316{bottom:413.640615px;}
.y22_c00316{bottom:434.519235px;}
.y21_c00316{bottom:455.760135px;}
.y20_c00316{bottom:477.360165px;}
.y1f_c00316{bottom:498.238785px;}
.y1d_c00316{bottom:519.479625px;}
.y1e_c00316{bottom:519.479685px;}
.y1c_c00316{bottom:540.720540px;}
.y1b_c00316{bottom:562.319820px;}
.y1a_c00316{bottom:621.720285px;}
.y18_c00316{bottom:651.239070px;}
.y19_c00316{bottom:651.239820px;}
.y16_c00316{bottom:681.118380px;}
.y17_c00316{bottom:681.118785px;}
.y15_c00316{bottom:710.279520px;}
.y14_c00316{bottom:770.038965px;}
.y12_c00316{bottom:800.279775px;}
.y13_c00316{bottom:800.280390px;}
.y11_c00316{bottom:830.519685px;}
.y10_c00316{bottom:860.399415px;}
.yf_c00316{bottom:889.918950px;}
.ye_c00316{bottom:889.918965px;}
.yd_c00316{bottom:919.440315px;}
.yc_c00316{bottom:919.440540px;}
.yb_c00316{bottom:948.960075px;}
.y9_c00316{bottom:1008.719130px;}
.ya_c00316{bottom:1008.719520px;}
.y8_c00316{bottom:1029.960015px;}
.y7_c00316{bottom:1029.960405px;}
.y6_c00316{bottom:1051.559685px;}
.y5_c00316{bottom:1072.800105px;}
.y3_c00316{bottom:1093.679505px;}
.y4_c00316{bottom:1093.679715px;}
.y2_c00316{bottom:1114.920435px;}
.y1_c00316{bottom:1136.519715px;}
.h24_c00316{height:43.022461px;}
.h27_c00316{height:43.804688px;}
.h1d_c00316{height:46.151367px;}
.h23_c00316{height:46.933594px;}
.h26_c00316{height:48.375000px;}
.h20_c00316{height:48.498047px;}
.h25_c00316{height:48.919922px;}
.h21_c00316{height:49.661133px;}
.h1f_c00316{height:49.886719px;}
.h22_c00316{height:51.398438px;}
.h1e_c00316{height:54.108398px;}
.h6_c00316{height:69.618164px;}
.h7_c00316{height:74.311523px;}
.h1b_c00316{height:74.344482px;}
.h10_c00316{height:75.875977px;}
.h17_c00316{height:76.552734px;}
.h2_c00316{height:77.288818px;}
.hd_c00316{height:77.853516px;}
.h1c_c00316{height:78.222656px;}
.he_c00316{height:78.568359px;}
.h8_c00316{height:78.609375px;}
.h5_c00316{height:78.760986px;}
.hf_c00316{height:79.309570px;}
.hc_c00316{height:79.365234px;}
.h4_c00316{height:79.497070px;}
.h9_c00316{height:80.121094px;}
.h11_c00316{height:80.233154px;}
.ha_c00316{height:80.569336px;}
.h19_c00316{height:80.969238px;}
.h1a_c00316{height:82.133789px;}
.h15_c00316{height:82.627530px;}
.hb_c00316{height:83.015625px;}
.h12_c00316{height:83.177490px;}
.h3_c00316{height:83.913574px;}
.h18_c00316{height:86.121826px;}
.h13_c00316{height:105.600586px;}
.h1_c00316{height:120.462891px;}
.h16_c00316{height:125.938477px;}
.h14_c00316{height:135.325195px;}
.h0_c00316{height:1263.000000px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x28_c00316{left:134.639145px;}
.x1b_c00316{left:136.080870px;}
.x24_c00316{left:137.158815px;}
.x37_c00316{left:165.239850px;}
.x25_c00316{left:170.999400px;}
.x38_c00316{left:179.278800px;}
.x26_c00316{left:185.399250px;}
.x2e_c00316{left:188.638710px;}
.x2b_c00316{left:189.717180px;}
.x18_c00316{left:190.800525px;}
.x5_c00316{left:191.878035px;}
.x1_c00316{left:193.319250px;}
.x27_c00316{left:205.199385px;}
.x8_c00316{left:206.998950px;}
.x39_c00316{left:217.799535px;}
.x2_c00316{left:223.559100px;}
.x3a_c00316{left:237.599700px;}
.x9_c00316{left:248.759535px;}
.x19_c00316{left:254.878350px;}
.x3b_c00316{left:265.319850px;}
.xa_c00316{left:286.919535px;}
.x1a_c00316{left:293.399250px;}
.x3c_c00316{left:299.878950px;}
.xb_c00316{left:306.358635px;}
.x3_c00316{left:315.359850px;}
.x20_c00316{left:325.079385px;}
.x21_c00316{left:342.359850px;}
.x4_c00316{left:352.799535px;}
.x3d_c00316{left:376.559685px;}
.xc_c00316{left:383.039385px;}
.x22_c00316{left:389.878320px;}
.x3e_c00316{left:390.959385px;}
.x23_c00316{left:405.718500px;}
.x2c_c00316{left:429.478635px;}
.x2d_c00316{left:447.479235px;}
.x29_c00316{left:457.198785px;}
.x2a_c00316{left:477.359850px;}
.xd_c00316{left:487.079400px;}
.xe_c00316{left:503.998950px;}
.x31_c00316{left:506.159415px;}
.x32_c00316{left:511.559685px;}
.xf_c00316{left:523.439670px;}
.x33_c00316{left:537.478635px;}
.x10_c00316{left:580.318770px;}
.x16_c00316{left:583.919535px;}
.x17_c00316{left:599.398635px;}
.x11_c00316{left:604.078770px;}
.x34_c00316{left:612.719100px;}
.x2f_c00316{left:621.359250px;}
.x1c_c00316{left:622.438620px;}
.x1e_c00316{left:624.239820px;}
.x1f_c00316{left:636.838530px;}
.x1d_c00316{left:642.238770px;}
.x35_c00316{left:648.359250px;}
.x36_c00316{left:653.759535px;}
.x30_c00316{left:654.838950px;}
.x12_c00316{left:657.719520px;}
.x13_c00316{left:695.879520px;}
.x6_c00316{left:711.358605px;}
.x14_c00316{left:714.239220px;}
.x7_c00316{left:749.159370px;}
.x15_c00316{left:767.159820px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.lsf_c00316{letter-spacing:-10.025033pt;}
.ls18_c00316{letter-spacing:-9.702533pt;}
.ls15_c00316{letter-spacing:-7.266700pt;}
.ls22_c00316{letter-spacing:-7.019600pt;}
.ls1b_c00316{letter-spacing:-6.601000pt;}
.ls1f_c00316{letter-spacing:-5.943000pt;}
.ls1e_c00316{letter-spacing:-5.689073pt;}
.ls1d_c00316{letter-spacing:-5.285000pt;}
.ls27_c00316{letter-spacing:-4.873133pt;}
.lsa_c00316{letter-spacing:-4.619300pt;}
.ls2e_c00316{letter-spacing:-4.149200pt;}
.ls1a_c00316{letter-spacing:-3.961300pt;}
.ls25_c00316{letter-spacing:-3.630533pt;}
.ls13_c00316{letter-spacing:-3.432000pt;}
.ls6_c00316{letter-spacing:-3.304000pt;}
.lse_c00316{letter-spacing:-3.298933pt;}
.ls2c_c00316{letter-spacing:-2.904913pt;}
.ls11_c00316{letter-spacing:-2.825960pt;}
.ls7_c00316{letter-spacing:-2.812000pt;}
.ls2d_c00316{letter-spacing:-2.717000pt;}
.ls9_c00316{letter-spacing:-2.639000pt;}
.ls10_c00316{letter-spacing:-2.120907pt;}
.ls12_c00316{letter-spacing:-2.120000pt;}
.ls1c_c00316{letter-spacing:-2.057193pt;}
.ls3_c00316{letter-spacing:-2.002000pt;}
.ls8_c00316{letter-spacing:-1.981700pt;}
.ls28_c00316{letter-spacing:-1.972000pt;}
.ls2f_c00316{letter-spacing:-1.881600pt;}
.ls14_c00316{letter-spacing:-1.468780pt;}
.lsc_c00316{letter-spacing:-1.396080pt;}
.ls5_c00316{letter-spacing:-1.323700pt;}
.lsd_c00316{letter-spacing:-1.309700pt;}
.ls26_c00316{letter-spacing:-0.800800pt;}
.ls21_c00316{letter-spacing:-0.759733pt;}
.ls2b_c00316{letter-spacing:-0.716000pt;}
.lsb_c00316{letter-spacing:-0.658000pt;}
.ls19_c00316{letter-spacing:-0.455820pt;}
.ls4_c00316{letter-spacing:0.000000pt;}
.ls1_c00316{letter-spacing:0.658000pt;}
.ls24_c00316{letter-spacing:0.704067pt;}
.ls30_c00316{letter-spacing:0.781613pt;}
.ls0_c00316{letter-spacing:1.323700pt;}
.ls20_c00316{letter-spacing:1.332000pt;}
.ls31_c00316{letter-spacing:2.075733pt;}
.ls29_c00316{letter-spacing:2.339053pt;}
.ls2a_c00316{letter-spacing:2.360000pt;}
.ls16_c00316{letter-spacing:2.532700pt;}
.ls2_c00316{letter-spacing:3.961300pt;}
.ls23_c00316{letter-spacing:4.178333pt;}
.ls17_c00316{letter-spacing:27.878933pt;}
.ws0_c00316{word-spacing:0.000000pt;}
._0_c00316{margin-left:-36.323867pt;}
._1_c00316{margin-left:-35.317387pt;}
._c_c00316{margin-left:-20.242732pt;}
._1b_c00316{margin-left:-16.848604pt;}
._10_c00316{margin-left:-4.931711pt;}
._5_c00316{margin-left:-3.351362pt;}
._7_c00316{margin-left:-1.577417pt;}
._4_c00316{width:1.543817pt;}
._2_c00316{width:2.585562pt;}
._3_c00316{width:3.851017pt;}
._b_c00316{width:5.273047pt;}
._6_c00316{width:6.595836pt;}
._a_c00316{width:7.642402pt;}
._8_c00316{width:8.853560pt;}
._9_c00316{width:10.532596pt;}
._12_c00316{width:11.656360pt;}
._e_c00316{width:12.646226pt;}
._d_c00316{width:14.118274pt;}
._11_c00316{width:15.285728pt;}
._14_c00316{width:16.371494pt;}
._16_c00316{width:17.352445pt;}
._f_c00316{width:18.692483pt;}
._19_c00316{width:20.021070pt;}
._13_c00316{width:21.020445pt;}
._15_c00316{width:22.170545pt;}
._17_c00316{width:24.297119pt;}
._18_c00316{width:26.561051pt;}
._1a_c00316{width:27.910585pt;}
.fs1d_c00316{font-size:36.666667pt;}
.fs1f_c00316{font-size:37.333333pt;}
.fs16_c00316{font-size:39.333333pt;}
.fs1c_c00316{font-size:40.000000pt;}
.fs19_c00316{font-size:41.333333pt;}
.fs1e_c00316{font-size:42.666667pt;}
.fs18_c00316{font-size:44.000000pt;}
.fs1a_c00316{font-size:44.666667pt;}
.fs1b_c00316{font-size:45.333333pt;}
.fs17_c00316{font-size:48.666667pt;}
.fs5_c00316{font-size:59.333333pt;}
.fs6_c00316{font-size:63.333333pt;}
.fsb_c00316{font-size:64.666667pt;}
.fs15_c00316{font-size:66.666667pt;}
.fs14_c00316{font-size:67.333333pt;}
.fs9_c00316{font-size:68.666667pt;}
.fs7_c00316{font-size:69.333333pt;}
.fs1_c00316{font-size:70.000000pt;}
.fs10_c00316{font-size:70.420800pt;}
.fs8_c00316{font-size:70.666667pt;}
.fs4_c00316{font-size:71.333333pt;}
.fs3_c00316{font-size:72.000000pt;}
.fsc_c00316{font-size:72.666667pt;}
.fs13_c00316{font-size:73.333333pt;}
.fsa_c00316{font-size:74.666667pt;}
.fsd_c00316{font-size:75.333333pt;}
.fs2_c00316{font-size:76.000000pt;}
.fs12_c00316{font-size:78.000000pt;}
.fse_c00316{font-size:90.000000pt;}
.fs0_c00316{font-size:102.666667pt;}
.fs11_c00316{font-size:107.333333pt;}
.fsf_c00316{font-size:115.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y2a_c00316{bottom:153.599067pt;}
.y29_c00316{bottom:188.799333pt;}
.y28_c00316{bottom:269.440387pt;}
.y27_c00316{bottom:296.000147pt;}
.y26_c00316{bottom:348.479040pt;}
.y25_c00316{bottom:348.479173pt;}
.y24_c00316{bottom:367.680133pt;}
.y23_c00316{bottom:367.680547pt;}
.y22_c00316{bottom:386.239320pt;}
.y21_c00316{bottom:405.120120pt;}
.y20_c00316{bottom:424.320147pt;}
.y1f_c00316{bottom:442.878920pt;}
.y1d_c00316{bottom:461.759667pt;}
.y1e_c00316{bottom:461.759720pt;}
.y1c_c00316{bottom:480.640480pt;}
.y1b_c00316{bottom:499.839840pt;}
.y1a_c00316{bottom:552.640253pt;}
.y18_c00316{bottom:578.879173pt;}
.y19_c00316{bottom:578.879840pt;}
.y16_c00316{bottom:605.438560pt;}
.y17_c00316{bottom:605.438920pt;}
.y15_c00316{bottom:631.359573pt;}
.y14_c00316{bottom:684.479080pt;}
.y12_c00316{bottom:711.359800pt;}
.y13_c00316{bottom:711.360347pt;}
.y11_c00316{bottom:738.239720pt;}
.y10_c00316{bottom:764.799480pt;}
.yf_c00316{bottom:791.039067pt;}
.ye_c00316{bottom:791.039080pt;}
.yd_c00316{bottom:817.280280pt;}
.yc_c00316{bottom:817.280480pt;}
.yb_c00316{bottom:843.520067pt;}
.y9_c00316{bottom:896.639227pt;}
.ya_c00316{bottom:896.639573pt;}
.y8_c00316{bottom:915.520013pt;}
.y7_c00316{bottom:915.520360pt;}
.y6_c00316{bottom:934.719720pt;}
.y5_c00316{bottom:953.600093pt;}
.y3_c00316{bottom:972.159560pt;}
.y4_c00316{bottom:972.159747pt;}
.y2_c00316{bottom:991.040387pt;}
.y1_c00316{bottom:1010.239747pt;}
.h24_c00316{height:38.242188pt;}
.h27_c00316{height:38.937500pt;}
.h1d_c00316{height:41.023438pt;}
.h23_c00316{height:41.718750pt;}
.h26_c00316{height:43.000000pt;}
.h20_c00316{height:43.109375pt;}
.h25_c00316{height:43.484375pt;}
.h21_c00316{height:44.143229pt;}
.h1f_c00316{height:44.343750pt;}
.h22_c00316{height:45.687500pt;}
.h1e_c00316{height:48.096354pt;}
.h6_c00316{height:61.882812pt;}
.h7_c00316{height:66.054688pt;}
.h1b_c00316{height:66.083984pt;}
.h10_c00316{height:67.445312pt;}
.h17_c00316{height:68.046875pt;}
.h2_c00316{height:68.701172pt;}
.hd_c00316{height:69.203125pt;}
.h1c_c00316{height:69.531250pt;}
.he_c00316{height:69.838542pt;}
.h8_c00316{height:69.875000pt;}
.h5_c00316{height:70.009766pt;}
.hf_c00316{height:70.497396pt;}
.hc_c00316{height:70.546875pt;}
.h4_c00316{height:70.664062pt;}
.h9_c00316{height:71.218750pt;}
.h11_c00316{height:71.318359pt;}
.ha_c00316{height:71.617188pt;}
.h19_c00316{height:71.972656pt;}
.h1a_c00316{height:73.007812pt;}
.h15_c00316{height:73.446694pt;}
.hb_c00316{height:73.791667pt;}
.h12_c00316{height:73.935547pt;}
.h3_c00316{height:74.589844pt;}
.h18_c00316{height:76.552734pt;}
.h13_c00316{height:93.867188pt;}
.h1_c00316{height:107.078125pt;}
.h16_c00316{height:111.945312pt;}
.h14_c00316{height:120.289062pt;}
.h0_c00316{height:1122.666667pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x28_c00316{left:119.679240pt;}
.x1b_c00316{left:120.960773pt;}
.x24_c00316{left:121.918947pt;}
.x37_c00316{left:146.879867pt;}
.x25_c00316{left:151.999467pt;}
.x38_c00316{left:159.358933pt;}
.x26_c00316{left:164.799333pt;}
.x2e_c00316{left:167.678853pt;}
.x2b_c00316{left:168.637493pt;}
.x18_c00316{left:169.600467pt;}
.x5_c00316{left:170.558253pt;}
.x1_c00316{left:171.839333pt;}
.x27_c00316{left:182.399453pt;}
.x8_c00316{left:183.999067pt;}
.x39_c00316{left:193.599587pt;}
.x2_c00316{left:198.719200pt;}
.x3a_c00316{left:211.199733pt;}
.x9_c00316{left:221.119587pt;}
.x19_c00316{left:226.558533pt;}
.x3b_c00316{left:235.839867pt;}
.xa_c00316{left:255.039587pt;}
.x1a_c00316{left:260.799333pt;}
.x3c_c00316{left:266.559067pt;}
.xb_c00316{left:272.318787pt;}
.x3_c00316{left:280.319867pt;}
.x20_c00316{left:288.959453pt;}
.x21_c00316{left:304.319867pt;}
.x4_c00316{left:313.599587pt;}
.x3d_c00316{left:334.719720pt;}
.xc_c00316{left:340.479453pt;}
.x22_c00316{left:346.558507pt;}
.x3e_c00316{left:347.519453pt;}
.x23_c00316{left:360.638667pt;}
.x2c_c00316{left:381.758787pt;}
.x2d_c00316{left:397.759320pt;}
.x29_c00316{left:406.398920pt;}
.x2a_c00316{left:424.319867pt;}
.xd_c00316{left:432.959467pt;}
.xe_c00316{left:447.999067pt;}
.x31_c00316{left:449.919480pt;}
.x32_c00316{left:454.719720pt;}
.xf_c00316{left:465.279707pt;}
.x33_c00316{left:477.758787pt;}
.x10_c00316{left:515.838907pt;}
.x16_c00316{left:519.039587pt;}
.x17_c00316{left:532.798787pt;}
.x11_c00316{left:536.958907pt;}
.x34_c00316{left:544.639200pt;}
.x2f_c00316{left:552.319333pt;}
.x1c_c00316{left:553.278773pt;}
.x1e_c00316{left:554.879840pt;}
.x1f_c00316{left:566.078693pt;}
.x1d_c00316{left:570.878907pt;}
.x35_c00316{left:576.319333pt;}
.x36_c00316{left:581.119587pt;}
.x30_c00316{left:582.079067pt;}
.x12_c00316{left:584.639573pt;}
.x13_c00316{left:618.559573pt;}
.x6_c00316{left:632.318760pt;}
.x14_c00316{left:634.879307pt;}
.x7_c00316{left:665.919440pt;}
.x15_c00316{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74effcda52c65e8904619d0e.woff2')format("woff");}.ff1_c00317{font-family:ff1_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:ff2_c00317;src:url('chunks/assets/font_0d9c75db498e3aca094b5920.woff2')format("woff");}.ff2_c00317{font-family:ff2_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:ff3_c00317;src:url('chunks/assets/font_8e8d2f42860ab258b830b820.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.364746;font-style:normal;font-weight:normal;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_d5d831e229d847bed013563b.woff2')format("woff");}.ff4_c00317{font-family:ff4_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:ff5_c00317;src:url('chunks/assets/font_9c8cadc2a22e155981d341e6.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00317;src:url('chunks/assets/font_1675f4fab3a93e6d24f3f088.woff2')format("woff");}.ff7_c00317{font-family:ff7_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;}
.m17_c00317{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m2f_c00317{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.195378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195378,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.196078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196078,0.000000,0.000000,0.250000,0,0);}
.m27_c00317{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m1c_c00317{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00317{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m32_c00317{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m33_c00317{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m22_c00317{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m34_c00317{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m1b_c00317{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m29_c00317{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m1f_c00317{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m23_c00317{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m18_c00317{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{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_c00317{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m21_c00317{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m28_c00317{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m26_c00317{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m30_c00317{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m2e_c00317{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m31_c00317{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);}
.m2a_c00317{transform:matrix(0.392405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392405,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.538961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538961,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls19_c00317{letter-spacing:-21.546788px;}
.ls16_c00317{letter-spacing:-15.503400px;}
.ls27_c00317{letter-spacing:-13.564898px;}
.ls18_c00317{letter-spacing:-12.887100px;}
.ls28_c00317{letter-spacing:-12.803018px;}
.ls14_c00317{letter-spacing:-12.238125px;}
.ls1d_c00317{letter-spacing:-11.041875px;}
.ls24_c00317{letter-spacing:-10.558275px;}
.ls11_c00317{letter-spacing:-8.914500px;}
.lse_c00317{letter-spacing:-8.175038px;}
.ls13_c00317{letter-spacing:-6.685875px;}
.ls1f_c00317{letter-spacing:-6.458925px;}
.ls26_c00317{letter-spacing:-5.999633px;}
.ls15_c00317{letter-spacing:-5.977868px;}
.lsa_c00317{letter-spacing:-5.945625px;}
.ls20_c00317{letter-spacing:-5.394683px;}
.lsf_c00317{letter-spacing:-5.196713px;}
.ls2e_c00317{letter-spacing:-5.092320px;}
.ls29_c00317{letter-spacing:-4.843650px;}
.ls1e_c00317{letter-spacing:-4.692600px;}
.lsd_c00317{letter-spacing:-4.456463px;}
.ls21_c00317{letter-spacing:-4.297425px;}
.lsc_c00317{letter-spacing:-3.717000px;}
.ls3d_c00317{letter-spacing:-3.638880px;}
.ls41_c00317{letter-spacing:-3.580800px;}
.ls34_c00317{letter-spacing:-3.101550px;}
.ls8_c00317{letter-spacing:-2.968875px;}
.ls22_c00317{letter-spacing:-2.917200px;}
.ls2b_c00317{letter-spacing:-2.464875px;}
.ls3e_c00317{letter-spacing:-2.387775px;}
.ls1a_c00317{letter-spacing:-2.376000px;}
.ls2f_c00317{letter-spacing:-2.325000px;}
.ls2c_c00317{letter-spacing:-2.310000px;}
.ls25_c00317{letter-spacing:-2.291625px;}
.ls7_c00317{letter-spacing:-2.229413px;}
.ls39_c00317{letter-spacing:-2.217600px;}
.ls37_c00317{letter-spacing:-2.184000px;}
.ls46_c00317{letter-spacing:-2.149875px;}
.ls42_c00317{letter-spacing:-2.081625px;}
.ls1c_c00317{letter-spacing:-1.566675px;}
.ls2a_c00317{letter-spacing:-1.560000px;}
.ls36_c00317{letter-spacing:-1.525095px;}
.ls44_c00317{letter-spacing:-1.523018px;}
.lsb_c00317{letter-spacing:-1.489163px;}
.ls38_c00317{letter-spacing:-1.478925px;}
.ls32_c00317{letter-spacing:-0.832650px;}
.ls33_c00317{letter-spacing:-0.824100px;}
.ls35_c00317{letter-spacing:-0.760725px;}
.ls9_c00317{letter-spacing:-0.740250px;}
.ls10_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.740250px;}
.ls45_c00317{letter-spacing:0.763568px;}
.ls4_c00317{letter-spacing:0.776085px;}
.ls3b_c00317{letter-spacing:1.523018px;}
.ls12_c00317{letter-spacing:1.525950px;}
.ls3_c00317{letter-spacing:1.547985px;}
.ls2d_c00317{letter-spacing:1.862190px;}
.ls2_c00317{letter-spacing:2.229413px;}
.ls3c_c00317{letter-spacing:2.252250px;}
.ls3f_c00317{letter-spacing:2.287500px;}
.ls47_c00317{letter-spacing:2.492400px;}
.ls5_c00317{letter-spacing:3.051525px;}
.ls6_c00317{letter-spacing:3.101550px;}
.ls23_c00317{letter-spacing:3.315375px;}
.ls40_c00317{letter-spacing:3.427200px;}
.ls1b_c00317{letter-spacing:3.717000px;}
.ls43_c00317{letter-spacing:4.100400px;}
.ls1_c00317{letter-spacing:4.456463px;}
.ls3a_c00317{letter-spacing:4.968000px;}
.ls17_c00317{letter-spacing:5.945625px;}
.ls30_c00317{letter-spacing:8.250000px;}
.ls31_c00317{letter-spacing:8.939288px;}
.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;}
._18_c00317{margin-left:-33.679578px;}
._11_c00317{margin-left:-18.470203px;}
._0_c00317{margin-left:-16.188920px;}
._14_c00317{margin-left:-10.785551px;}
._16_c00317{margin-left:-9.267295px;}
._15_c00317{margin-left:-8.032875px;}
._13_c00317{margin-left:-5.445444px;}
._c_c00317{margin-left:-3.368762px;}
._d_c00317{margin-left:-1.270252px;}
._a_c00317{width:1.327146px;}
._5_c00317{width:2.338489px;}
._9_c00317{width:3.339074px;}
._1_c00317{width:5.318805px;}
._3_c00317{width:6.509980px;}
._10_c00317{width:7.526583px;}
._2_c00317{width:8.757386px;}
._7_c00317{width:10.614921px;}
._b_c00317{width:11.964339px;}
._12_c00317{width:13.270311px;}
._6_c00317{width:14.804941px;}
._8_c00317{width:16.064198px;}
._4_c00317{width:17.379620px;}
._f_c00317{width:19.928683px;}
._e_c00317{width:22.296889px;}
._19_c00317{width:84.044561px;}
._17_c00317{width:91.051185px;}
.fc0_c00317{color:transparent;}
.fs15_c00317{font-size:41.250000px;}
.fs1c_c00317{font-size:44.250000px;}
.fs3_c00317{font-size:45.000000px;}
.fs16_c00317{font-size:45.750000px;}
.fs14_c00317{font-size:46.500000px;}
.fs18_c00317{font-size:47.250000px;}
.fs13_c00317{font-size:48.000000px;}
.fs1a_c00317{font-size:48.750000px;}
.fs19_c00317{font-size:49.500000px;}
.fs17_c00317{font-size:50.250000px;}
.fs8_c00317{font-size:56.250000px;}
.fse_c00317{font-size:57.750000px;}
.fs1b_c00317{font-size:59.250000px;}
.fs6_c00317{font-size:72.000000px;}
.fsf_c00317{font-size:73.500000px;}
.fs4_c00317{font-size:74.250000px;}
.fs10_c00317{font-size:75.000000px;}
.fs9_c00317{font-size:76.500000px;}
.fsc_c00317{font-size:78.000000px;}
.fs0_c00317{font-size:78.750000px;}
.fs11_c00317{font-size:79.500000px;}
.fs2_c00317{font-size:80.250000px;}
.fs12_c00317{font-size:81.000000px;}
.fsb_c00317{font-size:81.750000px;}
.fs1_c00317{font-size:82.500000px;}
.fs5_c00317{font-size:83.250000px;}
.fsa_c00317{font-size:84.000000px;}
.fs7_c00317{font-size:86.250000px;}
.fsd_c00317{font-size:89.250000px;}
.y0_c00317{bottom:0.000000px;}
.y26_c00317{bottom:170.640150px;}
.y25_c00317{bottom:209.879535px;}
.y24_c00317{bottom:249.479685px;}
.y23_c00317{bottom:289.080000px;}
.y22_c00317{bottom:327.960000px;}
.y21_c00317{bottom:419.038920px;}
.y20_c00317{bottom:509.399235px;}
.y1e_c00317{bottom:530.639070px;}
.y1f_c00317{bottom:530.639700px;}
.y1d_c00317{bottom:551.879970px;}
.y1c_c00317{bottom:551.880000px;}
.y1b_c00317{bottom:573.118785px;}
.y1a_c00317{bottom:594.359250px;}
.y19_c00317{bottom:594.359715px;}
.y18_c00317{bottom:615.238335px;}
.y16_c00317{bottom:636.478620px;}
.y17_c00317{bottom:636.479235px;}
.y15_c00317{bottom:657.719520px;}
.y14_c00317{bottom:717.479235px;}
.y13_c00317{bottom:747.359850px;}
.y11_c00317{bottom:777.598980px;}
.y12_c00317{bottom:777.599670px;}
.y10_c00317{bottom:806.760135px;}
.yf_c00317{bottom:806.761575px;}
.ye_c00317{bottom:836.641290px;}
.yd_c00317{bottom:866.160825px;}
.yc_c00317{bottom:896.040555px;}
.yb_c00317{bottom:955.800000px;}
.ya_c00317{bottom:985.679715px;}
.y9_c00317{bottom:985.680525px;}
.y8_c00317{bottom:1015.560240px;}
.y7_c00317{bottom:1015.560420px;}
.y5_c00317{bottom:1045.079205px;}
.y6_c00317{bottom:1045.079955px;}
.y4_c00317{bottom:1074.958920px;}
.y2_c00317{bottom:1104.839490px;}
.y3_c00317{bottom:1104.839535px;}
.y1_c00317{bottom:1135.079400px;}
.h19_c00317{height:43.022461px;}
.h26_c00317{height:45.637207px;}
.h1a_c00317{height:46.107422px;}
.h24_c00317{height:46.151367px;}
.h1d_c00317{height:46.373291px;}
.h18_c00317{height:46.863281px;}
.h4_c00317{height:46.933594px;}
.h1f_c00317{height:47.109375px;}
.h17_c00317{height:47.437500px;}
.h1b_c00317{height:47.715820px;}
.h21_c00317{height:47.845459px;}
.h20_c00317{height:48.375000px;}
.h1e_c00317{height:48.581543px;}
.h1c_c00317{height:49.317627px;}
.h25_c00317{height:49.661133px;}
.h22_c00317{height:49.886719px;}
.h11_c00317{height:58.201172px;}
.h9_c00317{height:58.666992px;}
.h23_c00317{height:61.795898px;}
.h7_c00317{height:75.093750px;}
.h13_c00317{height:75.585938px;}
.he_c00317{height:76.552734px;}
.h12_c00317{height:76.658203px;}
.h1_c00317{height:77.288818px;}
.h5_c00317{height:77.440430px;}
.h15_c00317{height:78.024902px;}
.h3_c00317{height:78.760986px;}
.h14_c00317{height:79.365234px;}
.ha_c00317{height:79.787109px;}
.h10_c00317{height:80.233154px;}
.h2_c00317{height:80.969238px;}
.hd_c00317{height:81.533203px;}
.h16_c00317{height:81.632812px;}
.h6_c00317{height:82.274414px;}
.hc_c00317{height:82.388672px;}
.hb_c00317{height:83.015625px;}
.h8_c00317{height:85.239258px;}
.hf_c00317{height:87.550415px;}
.h0_c00317{height:1263.000000px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x4_c00317{left:140.039400px;}
.x2_c00317{left:141.116820px;}
.x1_c00317{left:142.199850px;}
.x35_c00317{left:162.000000px;}
.x15_c00317{left:164.158785px;}
.x3c_c00317{left:170.279250px;}
.x16_c00317{left:185.040000px;}
.x3d_c00317{left:187.198785px;}
.x29_c00317{left:194.039550px;}
.x23_c00317{left:195.479685px;}
.x17_c00317{left:219.239850px;}
.x24_c00317{left:231.120000px;}
.x18_c00317{left:241.198785px;}
.x2e_c00317{left:252.358635px;}
.x2d_c00317{left:268.918950px;}
.x2f_c00317{left:291.238785px;}
.x19_c00317{left:326.158785px;}
.x3e_c00317{left:334.798950px;}
.x1a_c00317{left:370.439235px;}
.x3f_c00317{left:385.199850px;}
.xa_c00317{left:398.159415px;}
.x33_c00317{left:405.718500px;}
.x40_c00317{left:409.319235px;}
.xb_c00317{left:412.199850px;}
.x34_c00317{left:420.838530px;}
.x41_c00317{left:424.798515px;}
.x42_c00317{left:436.678530px;}
.x1b_c00317{left:462.599070px;}
.x30_c00317{left:480.238770px;}
.x1c_c00317{left:482.758530px;}
.x5_c00317{left:485.279850px;}
.x31_c00317{left:493.918350px;}
.x6_c00317{left:498.239220px;}
.xe_c00317{left:501.479235px;}
.x25_c00317{left:502.558635px;}
.x43_c00317{left:514.799520px;}
.x26_c00317{left:520.199850px;}
.xf_c00317{left:533.159415px;}
.x44_c00317{left:538.559685px;}
.x36_c00317{left:540.359250px;}
.x48_c00317{left:547.559100px;}
.x45_c00317{left:552.959385px;}
.x1d_c00317{left:557.278800px;}
.x46_c00317{left:559.798515px;}
.x49_c00317{left:565.559685px;}
.x47_c00317{left:570.239820px;}
.x10_c00317{left:584.278800px;}
.x1e_c00317{left:596.519670px;}
.x11_c00317{left:598.319235px;}
.x37_c00317{left:613.798515px;}
.x12_c00317{left:622.438620px;}
.x7_c00317{left:626.759535px;}
.x38_c00317{left:646.198785px;}
.x1f_c00317{left:656.999400px;}
.x27_c00317{left:665.278800px;}
.x39_c00317{left:666.359850px;}
.x8_c00317{left:671.039985px;}
.x20_c00317{left:673.198785px;}
.x2a_c00317{left:682.199850px;}
.x9_c00317{left:687.598530px;}
.x21_c00317{left:693.359850px;}
.x2b_c00317{left:700.198785px;}
.x3a_c00317{left:708.479685px;}
.xc_c00317{left:723.958920px;}
.x13_c00317{left:730.799520px;}
.xd_c00317{left:737.999355px;}
.x28_c00317{left:740.878320px;}
.x14_c00317{left:745.558635px;}
.x3b_c00317{left:754.918950px;}
.x32_c00317{left:757.438620px;}
.x22_c00317{left:762.838950px;}
.x2c_c00317{left:766.439670px;}
.x3_c00317{left:770.399865px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls19_c00317{letter-spacing:-19.152700pt;}
.ls16_c00317{letter-spacing:-13.780800pt;}
.ls27_c00317{letter-spacing:-12.057687pt;}
.ls18_c00317{letter-spacing:-11.455200pt;}
.ls28_c00317{letter-spacing:-11.380460pt;}
.ls14_c00317{letter-spacing:-10.878333pt;}
.ls1d_c00317{letter-spacing:-9.815000pt;}
.ls24_c00317{letter-spacing:-9.385133pt;}
.ls11_c00317{letter-spacing:-7.924000pt;}
.lse_c00317{letter-spacing:-7.266700pt;}
.ls13_c00317{letter-spacing:-5.943000pt;}
.ls1f_c00317{letter-spacing:-5.741267pt;}
.ls26_c00317{letter-spacing:-5.333007pt;}
.ls15_c00317{letter-spacing:-5.313660pt;}
.lsa_c00317{letter-spacing:-5.285000pt;}
.ls20_c00317{letter-spacing:-4.795273pt;}
.lsf_c00317{letter-spacing:-4.619300pt;}
.ls2e_c00317{letter-spacing:-4.526507pt;}
.ls29_c00317{letter-spacing:-4.305467pt;}
.ls1e_c00317{letter-spacing:-4.171200pt;}
.lsd_c00317{letter-spacing:-3.961300pt;}
.ls21_c00317{letter-spacing:-3.819933pt;}
.lsc_c00317{letter-spacing:-3.304000pt;}
.ls3d_c00317{letter-spacing:-3.234560pt;}
.ls41_c00317{letter-spacing:-3.182933pt;}
.ls34_c00317{letter-spacing:-2.756933pt;}
.ls8_c00317{letter-spacing:-2.639000pt;}
.ls22_c00317{letter-spacing:-2.593067pt;}
.ls2b_c00317{letter-spacing:-2.191000pt;}
.ls3e_c00317{letter-spacing:-2.122467pt;}
.ls1a_c00317{letter-spacing:-2.112000pt;}
.ls2f_c00317{letter-spacing:-2.066667pt;}
.ls2c_c00317{letter-spacing:-2.053333pt;}
.ls25_c00317{letter-spacing:-2.037000pt;}
.ls7_c00317{letter-spacing:-1.981700pt;}
.ls39_c00317{letter-spacing:-1.971200pt;}
.ls37_c00317{letter-spacing:-1.941333pt;}
.ls46_c00317{letter-spacing:-1.911000pt;}
.ls42_c00317{letter-spacing:-1.850333pt;}
.ls1c_c00317{letter-spacing:-1.392600pt;}
.ls2a_c00317{letter-spacing:-1.386667pt;}
.ls36_c00317{letter-spacing:-1.355640pt;}
.ls44_c00317{letter-spacing:-1.353793pt;}
.lsb_c00317{letter-spacing:-1.323700pt;}
.ls38_c00317{letter-spacing:-1.314600pt;}
.ls32_c00317{letter-spacing:-0.740133pt;}
.ls33_c00317{letter-spacing:-0.732533pt;}
.ls35_c00317{letter-spacing:-0.676200pt;}
.ls9_c00317{letter-spacing:-0.658000pt;}
.ls10_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.658000pt;}
.ls45_c00317{letter-spacing:0.678727pt;}
.ls4_c00317{letter-spacing:0.689853pt;}
.ls3b_c00317{letter-spacing:1.353793pt;}
.ls12_c00317{letter-spacing:1.356400pt;}
.ls3_c00317{letter-spacing:1.375987pt;}
.ls2d_c00317{letter-spacing:1.655280pt;}
.ls2_c00317{letter-spacing:1.981700pt;}
.ls3c_c00317{letter-spacing:2.002000pt;}
.ls3f_c00317{letter-spacing:2.033333pt;}
.ls47_c00317{letter-spacing:2.215467pt;}
.ls5_c00317{letter-spacing:2.712467pt;}
.ls6_c00317{letter-spacing:2.756933pt;}
.ls23_c00317{letter-spacing:2.947000pt;}
.ls40_c00317{letter-spacing:3.046400pt;}
.ls1b_c00317{letter-spacing:3.304000pt;}
.ls43_c00317{letter-spacing:3.644800pt;}
.ls1_c00317{letter-spacing:3.961300pt;}
.ls3a_c00317{letter-spacing:4.416000pt;}
.ls17_c00317{letter-spacing:5.285000pt;}
.ls30_c00317{letter-spacing:7.333333pt;}
.ls31_c00317{letter-spacing:7.946033pt;}
.ws0_c00317{word-spacing:0.000000pt;}
._18_c00317{margin-left:-29.937403pt;}
._11_c00317{margin-left:-16.417958pt;}
._0_c00317{margin-left:-14.390151pt;}
._14_c00317{margin-left:-9.587156pt;}
._16_c00317{margin-left:-8.237596pt;}
._15_c00317{margin-left:-7.140333pt;}
._13_c00317{margin-left:-4.840394pt;}
._c_c00317{margin-left:-2.994455pt;}
._d_c00317{margin-left:-1.129113pt;}
._a_c00317{width:1.179685pt;}
._5_c00317{width:2.078657pt;}
._9_c00317{width:2.968066pt;}
._1_c00317{width:4.727826pt;}
._3_c00317{width:5.786649pt;}
._10_c00317{width:6.690296pt;}
._2_c00317{width:7.784343pt;}
._7_c00317{width:9.435485pt;}
._b_c00317{width:10.634968pt;}
._12_c00317{width:11.795832pt;}
._6_c00317{width:13.159947pt;}
._8_c00317{width:14.279287pt;}
._4_c00317{width:15.448551pt;}
._f_c00317{width:17.714385pt;}
._e_c00317{width:19.819457pt;}
._19_c00317{width:74.706277pt;}
._17_c00317{width:80.934387pt;}
.fs15_c00317{font-size:36.666667pt;}
.fs1c_c00317{font-size:39.333333pt;}
.fs3_c00317{font-size:40.000000pt;}
.fs16_c00317{font-size:40.666667pt;}
.fs14_c00317{font-size:41.333333pt;}
.fs18_c00317{font-size:42.000000pt;}
.fs13_c00317{font-size:42.666667pt;}
.fs1a_c00317{font-size:43.333333pt;}
.fs19_c00317{font-size:44.000000pt;}
.fs17_c00317{font-size:44.666667pt;}
.fs8_c00317{font-size:50.000000pt;}
.fse_c00317{font-size:51.333333pt;}
.fs1b_c00317{font-size:52.666667pt;}
.fs6_c00317{font-size:64.000000pt;}
.fsf_c00317{font-size:65.333333pt;}
.fs4_c00317{font-size:66.000000pt;}
.fs10_c00317{font-size:66.666667pt;}
.fs9_c00317{font-size:68.000000pt;}
.fsc_c00317{font-size:69.333333pt;}
.fs0_c00317{font-size:70.000000pt;}
.fs11_c00317{font-size:70.666667pt;}
.fs2_c00317{font-size:71.333333pt;}
.fs12_c00317{font-size:72.000000pt;}
.fsb_c00317{font-size:72.666667pt;}
.fs1_c00317{font-size:73.333333pt;}
.fs5_c00317{font-size:74.000000pt;}
.fsa_c00317{font-size:74.666667pt;}
.fs7_c00317{font-size:76.666667pt;}
.fsd_c00317{font-size:79.333333pt;}
.y0_c00317{bottom:0.000000pt;}
.y26_c00317{bottom:151.680133pt;}
.y25_c00317{bottom:186.559587pt;}
.y24_c00317{bottom:221.759720pt;}
.y23_c00317{bottom:256.960000pt;}
.y22_c00317{bottom:291.520000pt;}
.y21_c00317{bottom:372.479040pt;}
.y20_c00317{bottom:452.799320pt;}
.y1e_c00317{bottom:471.679173pt;}
.y1f_c00317{bottom:471.679733pt;}
.y1d_c00317{bottom:490.559973pt;}
.y1c_c00317{bottom:490.560000pt;}
.y1b_c00317{bottom:509.438920pt;}
.y1a_c00317{bottom:528.319333pt;}
.y19_c00317{bottom:528.319747pt;}
.y18_c00317{bottom:546.878520pt;}
.y16_c00317{bottom:565.758773pt;}
.y17_c00317{bottom:565.759320pt;}
.y15_c00317{bottom:584.639573pt;}
.y14_c00317{bottom:637.759320pt;}
.y13_c00317{bottom:664.319867pt;}
.y11_c00317{bottom:691.199093pt;}
.y12_c00317{bottom:691.199707pt;}
.y10_c00317{bottom:717.120120pt;}
.yf_c00317{bottom:717.121400pt;}
.ye_c00317{bottom:743.681147pt;}
.yd_c00317{bottom:769.920733pt;}
.yc_c00317{bottom:796.480493pt;}
.yb_c00317{bottom:849.600000pt;}
.ya_c00317{bottom:876.159747pt;}
.y9_c00317{bottom:876.160467pt;}
.y8_c00317{bottom:902.720213pt;}
.y7_c00317{bottom:902.720373pt;}
.y5_c00317{bottom:928.959293pt;}
.y6_c00317{bottom:928.959960pt;}
.y4_c00317{bottom:955.519040pt;}
.y2_c00317{bottom:982.079547pt;}
.y3_c00317{bottom:982.079587pt;}
.y1_c00317{bottom:1008.959467pt;}
.h19_c00317{height:38.242188pt;}
.h26_c00317{height:40.566406pt;}
.h1a_c00317{height:40.984375pt;}
.h24_c00317{height:41.023438pt;}
.h1d_c00317{height:41.220703pt;}
.h18_c00317{height:41.656250pt;}
.h4_c00317{height:41.718750pt;}
.h1f_c00317{height:41.875000pt;}
.h17_c00317{height:42.166667pt;}
.h1b_c00317{height:42.414062pt;}
.h21_c00317{height:42.529297pt;}
.h20_c00317{height:43.000000pt;}
.h1e_c00317{height:43.183594pt;}
.h1c_c00317{height:43.837891pt;}
.h25_c00317{height:44.143229pt;}
.h22_c00317{height:44.343750pt;}
.h11_c00317{height:51.734375pt;}
.h9_c00317{height:52.148438pt;}
.h23_c00317{height:54.929688pt;}
.h7_c00317{height:66.750000pt;}
.h13_c00317{height:67.187500pt;}
.he_c00317{height:68.046875pt;}
.h12_c00317{height:68.140625pt;}
.h1_c00317{height:68.701172pt;}
.h5_c00317{height:68.835938pt;}
.h15_c00317{height:69.355469pt;}
.h3_c00317{height:70.009766pt;}
.h14_c00317{height:70.546875pt;}
.ha_c00317{height:70.921875pt;}
.h10_c00317{height:71.318359pt;}
.h2_c00317{height:71.972656pt;}
.hd_c00317{height:72.473958pt;}
.h16_c00317{height:72.562500pt;}
.h6_c00317{height:73.132813pt;}
.hc_c00317{height:73.234375pt;}
.hb_c00317{height:73.791667pt;}
.h8_c00317{height:75.768229pt;}
.hf_c00317{height:77.822591pt;}
.h0_c00317{height:1122.666667pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x4_c00317{left:124.479467pt;}
.x2_c00317{left:125.437173pt;}
.x1_c00317{left:126.399867pt;}
.x35_c00317{left:144.000000pt;}
.x15_c00317{left:145.918920pt;}
.x3c_c00317{left:151.359333pt;}
.x16_c00317{left:164.480000pt;}
.x3d_c00317{left:166.398920pt;}
.x29_c00317{left:172.479600pt;}
.x23_c00317{left:173.759720pt;}
.x17_c00317{left:194.879867pt;}
.x24_c00317{left:205.440000pt;}
.x18_c00317{left:214.398920pt;}
.x2e_c00317{left:224.318787pt;}
.x2d_c00317{left:239.039067pt;}
.x2f_c00317{left:258.878920pt;}
.x19_c00317{left:289.918920pt;}
.x3e_c00317{left:297.599067pt;}
.x1a_c00317{left:329.279320pt;}
.x3f_c00317{left:342.399867pt;}
.xa_c00317{left:353.919480pt;}
.x33_c00317{left:360.638667pt;}
.x40_c00317{left:363.839320pt;}
.xb_c00317{left:366.399867pt;}
.x34_c00317{left:374.078693pt;}
.x41_c00317{left:377.598680pt;}
.x42_c00317{left:388.158693pt;}
.x1b_c00317{left:411.199173pt;}
.x30_c00317{left:426.878907pt;}
.x1c_c00317{left:429.118693pt;}
.x5_c00317{left:431.359867pt;}
.x31_c00317{left:439.038533pt;}
.x6_c00317{left:442.879307pt;}
.xe_c00317{left:445.759320pt;}
.x25_c00317{left:446.718787pt;}
.x43_c00317{left:457.599573pt;}
.x26_c00317{left:462.399867pt;}
.xf_c00317{left:473.919480pt;}
.x44_c00317{left:478.719720pt;}
.x36_c00317{left:480.319333pt;}
.x48_c00317{left:486.719200pt;}
.x45_c00317{left:491.519453pt;}
.x1d_c00317{left:495.358933pt;}
.x46_c00317{left:497.598680pt;}
.x49_c00317{left:502.719720pt;}
.x47_c00317{left:506.879840pt;}
.x10_c00317{left:519.358933pt;}
.x1e_c00317{left:530.239707pt;}
.x11_c00317{left:531.839320pt;}
.x37_c00317{left:545.598680pt;}
.x12_c00317{left:553.278773pt;}
.x7_c00317{left:557.119587pt;}
.x38_c00317{left:574.398920pt;}
.x1f_c00317{left:583.999467pt;}
.x27_c00317{left:591.358933pt;}
.x39_c00317{left:592.319867pt;}
.x8_c00317{left:596.479987pt;}
.x20_c00317{left:598.398920pt;}
.x2a_c00317{left:606.399867pt;}
.x9_c00317{left:611.198693pt;}
.x21_c00317{left:616.319867pt;}
.x2b_c00317{left:622.398920pt;}
.x3a_c00317{left:629.759720pt;}
.xc_c00317{left:643.519040pt;}
.x13_c00317{left:649.599573pt;}
.xd_c00317{left:655.999427pt;}
.x28_c00317{left:658.558507pt;}
.x14_c00317{left:662.718787pt;}
.x3b_c00317{left:671.039067pt;}
.x32_c00317{left:673.278773pt;}
.x22_c00317{left:678.079067pt;}
.x2c_c00317{left:681.279707pt;}
.x3_c00317{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a237bb9828312461bdebe93.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_d248b558f6e5ff73b5f59578.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_a633e87a9772dca2517f5e9b.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_60470b9a2c429d71425d166a.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.364746;font-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_c00318{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{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);}
.m17_c00318{transform:matrix(0.192661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192661,0.000000,0.000000,0.250000,0,0);}
.m21_c00318{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200758,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.205752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205752,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.225248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225248,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m24_c00318{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.md_c00318{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.365741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365741,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls1d_c00318{letter-spacing:-14.600550px;}
.ls27_c00318{letter-spacing:-10.429500px;}
.ls20_c00318{letter-spacing:-8.201250px;}
.ls11_c00318{letter-spacing:-8.175038px;}
.lsb_c00318{letter-spacing:-7.426125px;}
.ls12_c00318{letter-spacing:-7.359728px;}
.lsf_c00318{letter-spacing:-6.685875px;}
.ls7_c00318{letter-spacing:-5.945625px;}
.lsd_c00318{letter-spacing:-5.196713px;}
.ls1a_c00318{letter-spacing:-4.815000px;}
.ls28_c00318{letter-spacing:-4.653653px;}
.lsc_c00318{letter-spacing:-4.456463px;}
.ls14_c00318{letter-spacing:-4.284000px;}
.ls17_c00318{letter-spacing:-4.012500px;}
.ls16_c00318{letter-spacing:-3.787875px;}
.lsa_c00318{letter-spacing:-3.717000px;}
.ls18_c00318{letter-spacing:-3.209198px;}
.ls30_c00318{letter-spacing:-3.143745px;}
.ls8_c00318{letter-spacing:-2.968875px;}
.ls1b_c00318{letter-spacing:-2.615348px;}
.ls19_c00318{letter-spacing:-2.407500px;}
.ls10_c00318{letter-spacing:-2.401560px;}
.ls2f_c00318{letter-spacing:-2.376900px;}
.ls5_c00318{letter-spacing:-2.229413px;}
.ls13_c00318{letter-spacing:-2.208180px;}
.ls1f_c00318{letter-spacing:-1.605000px;}
.ls24_c00318{letter-spacing:-1.502400px;}
.ls4_c00318{letter-spacing:-1.489163px;}
.ls9_c00318{letter-spacing:-1.430400px;}
.ls31_c00318{letter-spacing:-0.813750px;}
.ls2a_c00318{letter-spacing:-0.765855px;}
.ls2e_c00318{letter-spacing:-0.750300px;}
.ls6_c00318{letter-spacing:-0.740250px;}
.lse_c00318{letter-spacing:0.000000px;}
.ls2b_c00318{letter-spacing:0.750300px;}
.ls2_c00318{letter-spacing:0.801698px;}
.ls32_c00318{letter-spacing:0.813750px;}
.ls0_c00318{letter-spacing:1.489163px;}
.ls2c_c00318{letter-spacing:1.502550px;}
.ls3_c00318{letter-spacing:1.632150px;}
.ls1e_c00318{letter-spacing:1.693125px;}
.ls21_c00318{letter-spacing:2.250443px;}
.ls26_c00318{letter-spacing:2.445900px;}
.ls2d_c00318{letter-spacing:2.520000px;}
.ls22_c00318{letter-spacing:3.001200px;}
.ls25_c00318{letter-spacing:3.360000px;}
.ls1c_c00318{letter-spacing:3.458250px;}
.ls23_c00318{letter-spacing:3.737250px;}
.ls1_c00318{letter-spacing:4.815000px;}
.ls29_c00318{letter-spacing:4.819973px;}
.ls15_c00318{letter-spacing:4.991925px;}
.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;}
._17_c00318{margin-left:-44.634067px;}
._10_c00318{margin-left:-3.811455px;}
._e_c00318{margin-left:-2.375888px;}
._f_c00318{width:1.534050px;}
._4_c00318{width:3.033673px;}
._1_c00318{width:5.053090px;}
._15_c00318{width:6.193479px;}
._6_c00318{width:7.229235px;}
._0_c00318{width:8.477066px;}
._16_c00318{width:9.490430px;}
._2_c00318{width:10.615842px;}
._d_c00318{width:12.323989px;}
._5_c00318{width:13.741429px;}
._a_c00318{width:15.175571px;}
._3_c00318{width:17.017905px;}
._11_c00318{width:18.262274px;}
._7_c00318{width:19.593386px;}
._b_c00318{width:20.926490px;}
._c_c00318{width:22.291971px;}
._8_c00318{width:25.232689px;}
._9_c00318{width:27.140875px;}
._14_c00318{width:33.019429px;}
._13_c00318{width:36.435203px;}
._12_c00318{width:46.413125px;}
.fc0_c00318{color:transparent;}
.fse_c00318{font-size:40.500000px;}
.fs12_c00318{font-size:42.000000px;}
.fs15_c00318{font-size:42.750000px;}
.fs8_c00318{font-size:45.000000px;}
.fsf_c00318{font-size:45.750000px;}
.fsd_c00318{font-size:46.500000px;}
.fs10_c00318{font-size:47.250000px;}
.fs1_c00318{font-size:48.000000px;}
.fs11_c00318{font-size:49.500000px;}
.fs14_c00318{font-size:50.250000px;}
.fs13_c00318{font-size:51.000000px;}
.fs9_c00318{font-size:75.750000px;}
.fs7_c00318{font-size:78.000000px;}
.fs0_c00318{font-size:78.750000px;}
.fs6_c00318{font-size:79.500000px;}
.fs2_c00318{font-size:80.250000px;}
.fsc_c00318{font-size:81.750000px;}
.fs5_c00318{font-size:82.500000px;}
.fs3_c00318{font-size:84.000000px;}
.fsb_c00318{font-size:84.750000px;}
.fs4_c00318{font-size:115.500000px;}
.fsa_c00318{font-size:129.750000px;}
.y0_c00318{bottom:0.000000px;}
.y28_c00318{bottom:169.559100px;}
.y27_c00318{bottom:209.518635px;}
.y26_c00318{bottom:249.118785px;}
.y25_c00318{bottom:346.679100px;}
.y24_c00318{bottom:346.679280px;}
.y23_c00318{bottom:405.720150px;}
.y22_c00318{bottom:428.039985px;}
.y21_c00318{bottom:448.919535px;}
.y20_c00318{bottom:469.798920px;}
.y1f_c00318{bottom:529.919625px;}
.y1e_c00318{bottom:560.159550px;}
.y1d_c00318{bottom:589.679070px;}
.y1c_c00318{bottom:619.559685px;}
.y1b_c00318{bottom:619.560405px;}
.y19_c00318{bottom:648.359160px;}
.y1a_c00318{bottom:648.359250px;}
.y18_c00318{bottom:678.599070px;}
.y17_c00318{bottom:678.600105px;}
.y16_c00318{bottom:708.119640px;}
.y15_c00318{bottom:737.999355px;}
.y14_c00318{bottom:738.000255px;}
.y13_c00318{bottom:767.879970px;}
.y12_c00318{bottom:767.880345px;}
.y11_c00318{bottom:797.399865px;}
.yf_c00318{bottom:827.278380px;}
.y10_c00318{bottom:827.278755px;}
.ye_c00318{bottom:857.518290px;}
.yd_c00318{bottom:917.279850px;}
.yc_c00318{bottom:917.279940px;}
.yb_c00318{bottom:938.518755px;}
.ya_c00318{bottom:959.038965px;}
.y9_c00318{bottom:959.039010px;}
.y8_c00318{bottom:980.640105px;}
.y7_c00318{bottom:980.640540px;}
.y6_c00318{bottom:1002.239850px;}
.y5_c00318{bottom:1023.478635px;}
.y4_c00318{bottom:1023.479190px;}
.y3_c00318{bottom:1044.720090px;}
.y2_c00318{bottom:1104.479535px;}
.y1_c00318{bottom:1134.359250px;}
.h15_c00318{height:42.240234px;}
.h1a_c00318{height:43.804688px;}
.h1f_c00318{height:44.586914px;}
.h16_c00318{height:46.107422px;}
.h17_c00318{height:46.373291px;}
.h14_c00318{height:46.863281px;}
.h9_c00318{height:46.933594px;}
.h2_c00318{height:47.109375px;}
.h1d_c00318{height:47.619141px;}
.h1e_c00318{height:47.715820px;}
.h19_c00318{height:48.375000px;}
.h20_c00318{height:48.581543px;}
.h1c_c00318{height:49.661133px;}
.h18_c00318{height:49.886719px;}
.h1b_c00318{height:50.402344px;}
.ha_c00318{height:74.344482px;}
.h8_c00318{height:76.552734px;}
.h1_c00318{height:77.288818px;}
.h7_c00318{height:78.024902px;}
.h3_c00318{height:78.760986px;}
.h13_c00318{height:79.365234px;}
.h11_c00318{height:80.121094px;}
.h12_c00318{height:80.791992px;}
.he_c00318{height:80.876953px;}
.h6_c00318{height:80.969238px;}
.hf_c00318{height:82.388672px;}
.h4_c00318{height:82.441406px;}
.hd_c00318{height:83.177490px;}
.h10_c00318{height:85.412109px;}
.hb_c00318{height:87.609375px;}
.h5_c00318{height:120.462891px;}
.hc_c00318{height:135.325195px;}
.h0_c00318{height:1263.000000px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.xf_c00318{left:136.799625px;}
.x1_c00318{left:137.878950px;}
.x2d_c00318{left:164.519685px;}
.x40_c00318{left:167.398665px;}
.x35_c00318{left:184.319850px;}
.x2e_c00318{left:185.758500px;}
.xa_c00318{left:190.800000px;}
.x5_c00318{left:191.877000px;}
.x4_c00318{left:192.955725px;}
.x22_c00318{left:200.878350px;}
.x24_c00318{left:205.919535px;}
.x1c_c00318{left:207.719100px;}
.x1d_c00318{left:213.839535px;}
.x27_c00318{left:215.639100px;}
.x13_c00318{left:216.718500px;}
.x23_c00318{left:222.838950px;}
.x28_c00318{left:230.759100px;}
.x41_c00318{left:242.639100px;}
.x1e_c00318{left:243.718500px;}
.x2f_c00318{left:246.958350px;}
.x42_c00318{left:270.718500px;}
.x10_c00318{left:289.798515px;}
.x29_c00318{left:296.639100px;}
.x43_c00318{left:304.918350px;}
.x11_c00318{left:306.719535px;}
.x30_c00318{left:307.798950px;}
.x2a_c00318{left:312.838515px;}
.x36_c00318{left:331.918350px;}
.x12_c00318{left:335.159850px;}
.x44_c00318{left:358.199850px;}
.x8_c00318{left:361.439685px;}
.x9_c00318{left:375.478635px;}
.x45_c00318{left:380.878950px;}
.x3d_c00318{left:382.678530px;}
.x16_c00318{left:384.479685px;}
.x2b_c00318{left:389.519070px;}
.x31_c00318{left:394.199385px;}
.x1a_c00318{left:403.559685px;}
.x2c_c00318{left:404.639100px;}
.x37_c00318{left:406.438665px;}
.x32_c00318{left:414.719565px;}
.x1b_c00318{left:421.919535px;}
.x17_c00318{left:422.998950px;}
.x38_c00318{left:433.799565px;}
.x1f_c00318{left:481.319820px;}
.x3e_c00318{left:484.559685px;}
.xb_c00318{left:490.678530px;}
.x39_c00318{left:499.318770px;}
.x20_c00318{left:507.599670px;}
.x3a_c00318{left:511.918950px;}
.x33_c00318{left:524.519070px;}
.xc_c00318{left:528.479235px;}
.x3b_c00318{left:535.679070px;}
.x3f_c00318{left:541.799520px;}
.x3c_c00318{left:544.678530px;}
.x34_c00318{left:557.998950px;}
.x14_c00318{left:564.478635px;}
.x15_c00318{left:575.279250px;}
.x2_c00318{left:601.918350px;}
.x3_c00318{left:625.678530px;}
.x6_c00318{left:651.239820px;}
.x7_c00318{left:669.599670px;}
.x18_c00318{left:703.079355px;}
.x25_c00318{left:711.719520px;}
.xd_c00318{left:716.759085px;}
.x19_c00318{left:717.838530px;}
.xe_c00318{left:722.879520px;}
.x26_c00318{left:750.958920px;}
.x21_c00318{left:768.239220px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls1d_c00318{letter-spacing:-12.978267pt;}
.ls27_c00318{letter-spacing:-9.270667pt;}
.ls20_c00318{letter-spacing:-7.290000pt;}
.ls11_c00318{letter-spacing:-7.266700pt;}
.lsb_c00318{letter-spacing:-6.601000pt;}
.ls12_c00318{letter-spacing:-6.541980pt;}
.lsf_c00318{letter-spacing:-5.943000pt;}
.ls7_c00318{letter-spacing:-5.285000pt;}
.lsd_c00318{letter-spacing:-4.619300pt;}
.ls1a_c00318{letter-spacing:-4.280000pt;}
.ls28_c00318{letter-spacing:-4.136580pt;}
.lsc_c00318{letter-spacing:-3.961300pt;}
.ls14_c00318{letter-spacing:-3.808000pt;}
.ls17_c00318{letter-spacing:-3.566667pt;}
.ls16_c00318{letter-spacing:-3.367000pt;}
.lsa_c00318{letter-spacing:-3.304000pt;}
.ls18_c00318{letter-spacing:-2.852620pt;}
.ls30_c00318{letter-spacing:-2.794440pt;}
.ls8_c00318{letter-spacing:-2.639000pt;}
.ls1b_c00318{letter-spacing:-2.324753pt;}
.ls19_c00318{letter-spacing:-2.140000pt;}
.ls10_c00318{letter-spacing:-2.134720pt;}
.ls2f_c00318{letter-spacing:-2.112800pt;}
.ls5_c00318{letter-spacing:-1.981700pt;}
.ls13_c00318{letter-spacing:-1.962827pt;}
.ls1f_c00318{letter-spacing:-1.426667pt;}
.ls24_c00318{letter-spacing:-1.335467pt;}
.ls4_c00318{letter-spacing:-1.323700pt;}
.ls9_c00318{letter-spacing:-1.271467pt;}
.ls31_c00318{letter-spacing:-0.723333pt;}
.ls2a_c00318{letter-spacing:-0.680760pt;}
.ls2e_c00318{letter-spacing:-0.666933pt;}
.ls6_c00318{letter-spacing:-0.658000pt;}
.lse_c00318{letter-spacing:0.000000pt;}
.ls2b_c00318{letter-spacing:0.666933pt;}
.ls2_c00318{letter-spacing:0.712620pt;}
.ls32_c00318{letter-spacing:0.723333pt;}
.ls0_c00318{letter-spacing:1.323700pt;}
.ls2c_c00318{letter-spacing:1.335600pt;}
.ls3_c00318{letter-spacing:1.450800pt;}
.ls1e_c00318{letter-spacing:1.505000pt;}
.ls21_c00318{letter-spacing:2.000393pt;}
.ls26_c00318{letter-spacing:2.174133pt;}
.ls2d_c00318{letter-spacing:2.240000pt;}
.ls22_c00318{letter-spacing:2.667733pt;}
.ls25_c00318{letter-spacing:2.986667pt;}
.ls1c_c00318{letter-spacing:3.074000pt;}
.ls23_c00318{letter-spacing:3.322000pt;}
.ls1_c00318{letter-spacing:4.280000pt;}
.ls29_c00318{letter-spacing:4.284420pt;}
.ls15_c00318{letter-spacing:4.437267pt;}
.ws0_c00318{word-spacing:0.000000pt;}
._17_c00318{margin-left:-39.674727pt;}
._10_c00318{margin-left:-3.387960pt;}
._e_c00318{margin-left:-2.111900pt;}
._f_c00318{width:1.363600pt;}
._4_c00318{width:2.696598pt;}
._1_c00318{width:4.491636pt;}
._15_c00318{width:5.505315pt;}
._6_c00318{width:6.425987pt;}
._0_c00318{width:7.535170pt;}
._16_c00318{width:8.435938pt;}
._2_c00318{width:9.436304pt;}
._d_c00318{width:10.954657pt;}
._5_c00318{width:12.214604pt;}
._a_c00318{width:13.489396pt;}
._3_c00318{width:15.127026pt;}
._11_c00318{width:16.233132pt;}
._7_c00318{width:17.416343pt;}
._b_c00318{width:18.601325pt;}
._c_c00318{width:19.815085pt;}
._8_c00318{width:22.429057pt;}
._9_c00318{width:24.125223pt;}
._14_c00318{width:29.350604pt;}
._13_c00318{width:32.386847pt;}
._12_c00318{width:41.256111pt;}
.fse_c00318{font-size:36.000000pt;}
.fs12_c00318{font-size:37.333333pt;}
.fs15_c00318{font-size:38.000000pt;}
.fs8_c00318{font-size:40.000000pt;}
.fsf_c00318{font-size:40.666667pt;}
.fsd_c00318{font-size:41.333333pt;}
.fs10_c00318{font-size:42.000000pt;}
.fs1_c00318{font-size:42.666667pt;}
.fs11_c00318{font-size:44.000000pt;}
.fs14_c00318{font-size:44.666667pt;}
.fs13_c00318{font-size:45.333333pt;}
.fs9_c00318{font-size:67.333333pt;}
.fs7_c00318{font-size:69.333333pt;}
.fs0_c00318{font-size:70.000000pt;}
.fs6_c00318{font-size:70.666667pt;}
.fs2_c00318{font-size:71.333333pt;}
.fsc_c00318{font-size:72.666667pt;}
.fs5_c00318{font-size:73.333333pt;}
.fs3_c00318{font-size:74.666667pt;}
.fsb_c00318{font-size:75.333333pt;}
.fs4_c00318{font-size:102.666667pt;}
.fsa_c00318{font-size:115.333333pt;}
.y0_c00318{bottom:0.000000pt;}
.y28_c00318{bottom:150.719200pt;}
.y27_c00318{bottom:186.238787pt;}
.y26_c00318{bottom:221.438920pt;}
.y25_c00318{bottom:308.159200pt;}
.y24_c00318{bottom:308.159360pt;}
.y23_c00318{bottom:360.640133pt;}
.y22_c00318{bottom:380.479987pt;}
.y21_c00318{bottom:399.039587pt;}
.y20_c00318{bottom:417.599040pt;}
.y1f_c00318{bottom:471.039667pt;}
.y1e_c00318{bottom:497.919600pt;}
.y1d_c00318{bottom:524.159173pt;}
.y1c_c00318{bottom:550.719720pt;}
.y1b_c00318{bottom:550.720360pt;}
.y19_c00318{bottom:576.319253pt;}
.y1a_c00318{bottom:576.319333pt;}
.y18_c00318{bottom:603.199173pt;}
.y17_c00318{bottom:603.200093pt;}
.y16_c00318{bottom:629.439680pt;}
.y15_c00318{bottom:655.999427pt;}
.y14_c00318{bottom:656.000227pt;}
.y13_c00318{bottom:682.559973pt;}
.y12_c00318{bottom:682.560307pt;}
.y11_c00318{bottom:708.799880pt;}
.yf_c00318{bottom:735.358560pt;}
.y10_c00318{bottom:735.358893pt;}
.ye_c00318{bottom:762.238480pt;}
.yd_c00318{bottom:815.359867pt;}
.yc_c00318{bottom:815.359947pt;}
.yb_c00318{bottom:834.238893pt;}
.ya_c00318{bottom:852.479080pt;}
.y9_c00318{bottom:852.479120pt;}
.y8_c00318{bottom:871.680093pt;}
.y7_c00318{bottom:871.680480pt;}
.y6_c00318{bottom:890.879867pt;}
.y5_c00318{bottom:909.758787pt;}
.y4_c00318{bottom:909.759280pt;}
.y3_c00318{bottom:928.640080pt;}
.y2_c00318{bottom:981.759587pt;}
.y1_c00318{bottom:1008.319333pt;}
.h15_c00318{height:37.546875pt;}
.h1a_c00318{height:38.937500pt;}
.h1f_c00318{height:39.632812pt;}
.h16_c00318{height:40.984375pt;}
.h17_c00318{height:41.220703pt;}
.h14_c00318{height:41.656250pt;}
.h9_c00318{height:41.718750pt;}
.h2_c00318{height:41.875000pt;}
.h1d_c00318{height:42.328125pt;}
.h1e_c00318{height:42.414062pt;}
.h19_c00318{height:43.000000pt;}
.h20_c00318{height:43.183594pt;}
.h1c_c00318{height:44.143229pt;}
.h18_c00318{height:44.343750pt;}
.h1b_c00318{height:44.802083pt;}
.ha_c00318{height:66.083984pt;}
.h8_c00318{height:68.046875pt;}
.h1_c00318{height:68.701172pt;}
.h7_c00318{height:69.355469pt;}
.h3_c00318{height:70.009766pt;}
.h13_c00318{height:70.546875pt;}
.h11_c00318{height:71.218750pt;}
.h12_c00318{height:71.815104pt;}
.he_c00318{height:71.890625pt;}
.h6_c00318{height:71.972656pt;}
.hf_c00318{height:73.234375pt;}
.h4_c00318{height:73.281250pt;}
.hd_c00318{height:73.935547pt;}
.h10_c00318{height:75.921875pt;}
.hb_c00318{height:77.875000pt;}
.h5_c00318{height:107.078125pt;}
.hc_c00318{height:120.289062pt;}
.h0_c00318{height:1122.666667pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.xf_c00318{left:121.599667pt;}
.x1_c00318{left:122.559067pt;}
.x2d_c00318{left:146.239720pt;}
.x40_c00318{left:148.798813pt;}
.x35_c00318{left:163.839867pt;}
.x2e_c00318{left:165.118667pt;}
.xa_c00318{left:169.600000pt;}
.x5_c00318{left:170.557333pt;}
.x4_c00318{left:171.516200pt;}
.x22_c00318{left:178.558533pt;}
.x24_c00318{left:183.039587pt;}
.x1c_c00318{left:184.639200pt;}
.x1d_c00318{left:190.079587pt;}
.x27_c00318{left:191.679200pt;}
.x13_c00318{left:192.638667pt;}
.x23_c00318{left:198.079067pt;}
.x28_c00318{left:205.119200pt;}
.x41_c00318{left:215.679200pt;}
.x1e_c00318{left:216.638667pt;}
.x2f_c00318{left:219.518533pt;}
.x42_c00318{left:240.638667pt;}
.x10_c00318{left:257.598680pt;}
.x29_c00318{left:263.679200pt;}
.x43_c00318{left:271.038533pt;}
.x11_c00318{left:272.639587pt;}
.x30_c00318{left:273.599067pt;}
.x2a_c00318{left:278.078680pt;}
.x36_c00318{left:295.038533pt;}
.x12_c00318{left:297.919867pt;}
.x44_c00318{left:318.399867pt;}
.x8_c00318{left:321.279720pt;}
.x9_c00318{left:333.758787pt;}
.x45_c00318{left:338.559067pt;}
.x3d_c00318{left:340.158693pt;}
.x16_c00318{left:341.759720pt;}
.x2b_c00318{left:346.239173pt;}
.x31_c00318{left:350.399453pt;}
.x1a_c00318{left:358.719720pt;}
.x2c_c00318{left:359.679200pt;}
.x37_c00318{left:361.278813pt;}
.x32_c00318{left:368.639613pt;}
.x1b_c00318{left:375.039587pt;}
.x17_c00318{left:375.999067pt;}
.x38_c00318{left:385.599613pt;}
.x1f_c00318{left:427.839840pt;}
.x3e_c00318{left:430.719720pt;}
.xb_c00318{left:436.158693pt;}
.x39_c00318{left:443.838907pt;}
.x20_c00318{left:451.199707pt;}
.x3a_c00318{left:455.039067pt;}
.x33_c00318{left:466.239173pt;}
.xc_c00318{left:469.759320pt;}
.x3b_c00318{left:476.159173pt;}
.x3f_c00318{left:481.599573pt;}
.x3c_c00318{left:484.158693pt;}
.x34_c00318{left:495.999067pt;}
.x14_c00318{left:501.758787pt;}
.x15_c00318{left:511.359333pt;}
.x2_c00318{left:535.038533pt;}
.x3_c00318{left:556.158693pt;}
.x6_c00318{left:578.879840pt;}
.x7_c00318{left:595.199707pt;}
.x18_c00318{left:624.959427pt;}
.x25_c00318{left:632.639573pt;}
.xd_c00318{left:637.119187pt;}
.x19_c00318{left:638.078693pt;}
.xe_c00318{left:642.559573pt;}
.x26_c00318{left:667.519040pt;}
.x21_c00318{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99c6e9cdfc4c1b913092295d.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_e29d44edc60d2820fdd88640.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_8fa5101d370b2fc7e16d09cb.woff2')format("woff");}.ff3_c00319{font-family:ff3_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:ff4_c00319;src:url('chunks/assets/font_b8916bf38b0a84f1069c025b.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;}
.m10_c00319{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m18_c00319{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{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);}
.mf_c00319{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m21_c00319{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m2e_c00319{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m1a_c00319{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{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);}
.m20_c00319{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m15_c00319{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m22_c00319{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.me_c00319{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.mc_c00319{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.275943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275943,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334091,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.379121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379121,0.000000,0.000000,0.250000,0,0);}
.m16_c00319{transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);}
.m1f_c00319{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);}
.m1d_c00319{transform:matrix(0.390957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390957,0.000000,0.000000,0.250000,0,0);}
.m17_c00319{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls16_c00319{letter-spacing:-10.095225px;}
.ls10_c00319{letter-spacing:-8.914500px;}
.lsc_c00319{letter-spacing:-8.175038px;}
.lse_c00319{letter-spacing:-7.426125px;}
.ls13_c00319{letter-spacing:-6.160478px;}
.ls2_c00319{letter-spacing:-5.945625px;}
.ls7_c00319{letter-spacing:-5.543250px;}
.ls17_c00319{letter-spacing:-5.438595px;}
.ls6_c00319{letter-spacing:-5.196713px;}
.ls12_c00319{letter-spacing:-4.496625px;}
.ls5_c00319{letter-spacing:-4.456463px;}
.lsd_c00319{letter-spacing:-4.418663px;}
.lsb_c00319{letter-spacing:-4.334498px;}
.ls22_c00319{letter-spacing:-4.150650px;}
.ls1a_c00319{letter-spacing:-3.958500px;}
.ls1c_c00319{letter-spacing:-3.835200px;}
.ls20_c00319{letter-spacing:-3.806888px;}
.lsf_c00319{letter-spacing:-3.787875px;}
.ls9_c00319{letter-spacing:-3.717000px;}
.ls14_c00319{letter-spacing:-3.366000px;}
.ls3_c00319{letter-spacing:-2.968875px;}
.ls25_c00319{letter-spacing:-2.287335px;}
.ls11_c00319{letter-spacing:-2.252250px;}
.ls1_c00319{letter-spacing:-2.229413px;}
.ls19_c00319{letter-spacing:-1.781550px;}
.ls1f_c00319{letter-spacing:-1.665000px;}
.ls24_c00319{letter-spacing:-1.656000px;}
.ls18_c00319{letter-spacing:-1.594950px;}
.ls21_c00319{letter-spacing:-1.579500px;}
.ls4_c00319{letter-spacing:-1.489163px;}
.ls26_c00319{letter-spacing:-0.803250px;}
.ls29_c00319{letter-spacing:-0.799500px;}
.ls1d_c00319{letter-spacing:-0.776085px;}
.ls8_c00319{letter-spacing:-0.740250px;}
.lsa_c00319{letter-spacing:-0.736575px;}
.ls28_c00319{letter-spacing:-0.729600px;}
.ls27_c00319{letter-spacing:-0.722400px;}
.ls0_c00319{letter-spacing:0.000000px;}
.ls1b_c00319{letter-spacing:0.850650px;}
.ls1e_c00319{letter-spacing:2.485350px;}
.ls23_c00319{letter-spacing:2.625000px;}
.ls2a_c00319{letter-spacing:3.574200px;}
.ls15_c00319{letter-spacing:15.443663px;}
.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;}
._1c_c00319{margin-left:-40.863510px;}
._0_c00319{margin-left:-39.514518px;}
._e_c00319{margin-left:-4.159055px;}
._9_c00319{margin-left:-2.504131px;}
._1_c00319{margin-left:-1.020199px;}
._5_c00319{width:1.350221px;}
._2_c00319{width:2.888372px;}
._a_c00319{width:4.136619px;}
._b_c00319{width:5.473303px;}
._7_c00319{width:7.006670px;}
._6_c00319{width:8.255883px;}
._1e_c00319{width:9.282901px;}
._c_c00319{width:10.306934px;}
._8_c00319{width:11.308916px;}
._3_c00319{width:12.734142px;}
._16_c00319{width:13.775782px;}
._4_c00319{width:14.977433px;}
._17_c00319{width:16.314088px;}
._d_c00319{width:18.029575px;}
._1a_c00319{width:19.818284px;}
._15_c00319{width:20.846670px;}
._1b_c00319{width:21.876646px;}
._19_c00319{width:23.194000px;}
._18_c00319{width:25.461524px;}
._14_c00319{width:26.476538px;}
._13_c00319{width:28.118044px;}
._f_c00319{width:29.628558px;}
._10_c00319{width:31.906201px;}
._12_c00319{width:37.808336px;}
._11_c00319{width:39.400453px;}
._1d_c00319{width:71.907739px;}
.fc0_c00319{color:transparent;}
.fsd_c00319{font-size:36.750000px;}
.fs1b_c00319{font-size:39.750000px;}
.fs1c_c00319{font-size:42.000000px;}
.fs17_c00319{font-size:43.500000px;}
.fs1a_c00319{font-size:44.250000px;}
.fs18_c00319{font-size:45.000000px;}
.fs9_c00319{font-size:45.750000px;}
.fs15_c00319{font-size:46.500000px;}
.fs16_c00319{font-size:47.250000px;}
.fs1d_c00319{font-size:48.000000px;}
.fs19_c00319{font-size:48.750000px;}
.fs11_c00319{font-size:68.250000px;}
.fs12_c00319{font-size:70.500000px;}
.fs3_c00319{font-size:71.250000px;}
.fs1e_c00319{font-size:72.000000px;}
.fsc_c00319{font-size:72.750000px;}
.fs10_c00319{font-size:73.500000px;}
.fs14_c00319{font-size:75.000000px;}
.fsa_c00319{font-size:76.500000px;}
.fs6_c00319{font-size:77.250000px;}
.fs7_c00319{font-size:78.000000px;}
.fs1_c00319{font-size:78.750000px;}
.fsf_c00319{font-size:79.500000px;}
.fs4_c00319{font-size:80.250000px;}
.fse_c00319{font-size:81.000000px;}
.fsb_c00319{font-size:81.750000px;}
.fs5_c00319{font-size:82.500000px;}
.fs13_c00319{font-size:84.000000px;}
.fs2_c00319{font-size:84.750000px;}
.fs8_c00319{font-size:101.250000px;}
.fs0_c00319{font-size:115.500000px;}
.y0_c00319{bottom:0.000000px;}
.y30_c00319{bottom:174.600150px;}
.y2f_c00319{bottom:237.599700px;}
.y2e_c00319{bottom:237.601410px;}
.y2d_c00319{bottom:258.480015px;}
.y2c_c00319{bottom:279.358635px;}
.y2b_c00319{bottom:279.358905px;}
.y2a_c00319{bottom:300.960000px;}
.y29_c00319{bottom:322.198785px;}
.y28_c00319{bottom:322.199040px;}
.y26_c00319{bottom:343.080000px;}
.y27_c00319{bottom:343.800135px;}
.y25_c00319{bottom:363.959385px;}
.y24_c00319{bottom:453.599670px;}
.y23_c00319{bottom:483.478635px;}
.y22_c00319{bottom:483.480375px;}
.y21_c00319{bottom:513.360105px;}
.y1f_c00319{bottom:543.239070px;}
.y20_c00319{bottom:543.239820px;}
.y1e_c00319{bottom:573.118785px;}
.y1d_c00319{bottom:573.118815px;}
.y1c_c00319{bottom:602.640150px;}
.y1b_c00319{bottom:602.640285px;}
.y19_c00319{bottom:632.159730px;}
.y1a_c00319{bottom:632.159820px;}
.y17_c00319{bottom:661.317600px;}
.y18_c00319{bottom:661.318770px;}
.y16_c00319{bottom:691.559625px;}
.y15_c00319{bottom:721.439340px;}
.y14_c00319{bottom:781.198785px;}
.y13_c00319{bottom:811.438770px;}
.y12_c00319{bottom:840.960120px;}
.y11_c00319{bottom:870.479640px;}
.y10_c00319{bottom:900.358605px;}
.yf_c00319{bottom:900.359505px;}
.ye_c00319{bottom:930.239220px;}
.yc_c00319{bottom:989.998335px;}
.yd_c00319{bottom:989.998905px;}
.ya_c00319{bottom:1011.238740px;}
.yb_c00319{bottom:1011.239220px;}
.y9_c00319{bottom:1032.479640px;}
.y7_c00319{bottom:1053.720135px;}
.y8_c00319{bottom:1053.720150px;}
.y6_c00319{bottom:1074.958920px;}
.y5_c00319{bottom:1074.959250px;}
.y4_c00319{bottom:1096.200135px;}
.y3_c00319{bottom:1117.078770px;}
.y2_c00319{bottom:1117.079520px;}
.y1_c00319{bottom:1137.959925px;}
.h11_c00319{height:37.037109px;}
.h20_c00319{height:41.458008px;}
.h21_c00319{height:43.804688px;}
.h1c_c00319{height:45.369141px;}
.h1f_c00319{height:46.151367px;}
.h23_c00319{height:46.863281px;}
.h1d_c00319{height:46.933594px;}
.h1b_c00319{height:47.619141px;}
.ha_c00319{height:47.715820px;}
.h22_c00319{height:48.375000px;}
.h1a_c00319{height:48.498047px;}
.h1e_c00319{height:49.130859px;}
.h16_c00319{height:71.182617px;}
.h17_c00319{height:73.529297px;}
.h4_c00319{height:74.311523px;}
.hc_c00319{height:75.080566px;}
.h24_c00319{height:75.093750px;}
.hb_c00319{height:75.816650px;}
.h10_c00319{height:75.875977px;}
.h8_c00319{height:76.552734px;}
.h14_c00319{height:76.658203px;}
.h2_c00319{height:77.288818px;}
.h13_c00319{height:78.024902px;}
.h19_c00319{height:78.222656px;}
.h5_c00319{height:78.760986px;}
.hf_c00319{height:79.365234px;}
.h12_c00319{height:79.497070px;}
.h7_c00319{height:80.569336px;}
.h15_c00319{height:80.876953px;}
.h6_c00319{height:80.969238px;}
.he_c00319{height:82.388672px;}
.hd_c00319{height:83.144531px;}
.h3_c00319{height:83.177490px;}
.h18_c00319{height:87.609375px;}
.h9_c00319{height:105.600586px;}
.h1_c00319{height:120.462891px;}
.h0_c00319{height:1263.000000px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x14_c00319{left:138.239850px;}
.x15_c00319{left:163.799565px;}
.x4b_c00319{left:167.398665px;}
.x4c_c00319{left:184.319850px;}
.x34_c00319{left:191.878950px;}
.x6_c00319{left:193.678980px;}
.x1_c00319{left:195.479685px;}
.xe_c00319{left:208.439250px;}
.x2_c00319{left:216.000000px;}
.x33_c00319{left:224.279250px;}
.x3_c00319{left:225.719535px;}
.x1d_c00319{left:229.679700px;}
.x16_c00319{left:243.718500px;}
.x4d_c00319{left:244.799535px;}
.x35_c00319{left:252.719535px;}
.x17_c00319{left:264.238785px;}
.x36_c00319{left:270.000000px;}
.x1e_c00319{left:282.598500px;}
.x26_c00319{left:294.839535px;}
.x1f_c00319{left:297.718500px;}
.x37_c00319{left:304.918350px;}
.x27_c00319{left:310.318800px;}
.x4e_c00319{left:313.558635px;}
.x49_c00319{left:324.000000px;}
.x38_c00319{left:330.118785px;}
.x4f_c00319{left:333.358635px;}
.x22_c00319{left:334.439685px;}
.x3f_c00319{left:337.679700px;}
.x4a_c00319{left:344.159385px;}
.x40_c00319{left:352.438635px;}
.x2f_c00319{left:354.958350px;}
.x2a_c00319{left:356.039385px;}
.x50_c00319{left:361.439685px;}
.x23_c00319{left:362.519100px;}
.x30_c00319{left:369.719100px;}
.x43_c00319{left:373.679100px;}
.x2b_c00319{left:379.799535px;}
.x44_c00319{left:386.279250px;}
.x45_c00319{left:392.399820px;}
.x39_c00319{left:394.199385px;}
.xf_c00319{left:412.918350px;}
.x12_c00319{left:416.519070px;}
.x46_c00319{left:419.759085px;}
.x13_c00319{left:422.639700px;}
.x3a_c00319{left:428.399235px;}
.x10_c00319{left:434.878920px;}
.x47_c00319{left:435.958335px;}
.x11_c00319{left:455.039985px;}
.x7_c00319{left:460.438665px;}
.x51_c00319{left:463.319235px;}
.x41_c00319{left:467.279250px;}
.xc_c00319{left:473.759085px;}
.x42_c00319{left:477.359850px;}
.x52_c00319{left:480.238770px;}
.xd_c00319{left:488.519670px;}
.xb_c00319{left:507.958920px;}
.x3b_c00319{left:509.039985px;}
.x8_c00319{left:511.559685px;}
.x20_c00319{left:514.799520px;}
.x9_c00319{left:522.719565px;}
.x53_c00319{left:527.038920px;}
.x21_c00319{left:531.719100px;}
.xa_c00319{left:537.119385px;}
.x28_c00319{left:544.678530px;}
.x29_c00319{left:560.879520px;}
.x2c_c00319{left:563.758530px;}
.x31_c00319{left:582.838530px;}
.x2d_c00319{left:587.879520px;}
.x24_c00319{left:590.758530px;}
.x48_c00319{left:593.279850px;}
.x32_c00319{left:602.999400px;}
.x25_c00319{left:608.038920px;}
.x54_c00319{left:612.719100px;}
.x55_c00319{left:618.839535px;}
.x4_c00319{left:628.559100px;}
.x56_c00319{left:637.919535px;}
.x5_c00319{left:642.599670px;}
.x3c_c00319{left:658.798920px;}
.x19_c00319{left:661.318770px;}
.x57_c00319{left:677.519670px;}
.x1a_c00319{left:687.239220px;}
.x3d_c00319{left:691.919535px;}
.x1b_c00319{left:750.238770px;}
.x3e_c00319{left:759.599070px;}
.x1c_c00319{left:765.358605px;}
.x2e_c00319{left:768.239220px;}
.x18_c00319{left:769.318815px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls16_c00319{letter-spacing:-8.973533pt;}
.ls10_c00319{letter-spacing:-7.924000pt;}
.lsc_c00319{letter-spacing:-7.266700pt;}
.lse_c00319{letter-spacing:-6.601000pt;}
.ls13_c00319{letter-spacing:-5.475980pt;}
.ls2_c00319{letter-spacing:-5.285000pt;}
.ls7_c00319{letter-spacing:-4.927333pt;}
.ls17_c00319{letter-spacing:-4.834307pt;}
.ls6_c00319{letter-spacing:-4.619300pt;}
.ls12_c00319{letter-spacing:-3.997000pt;}
.ls5_c00319{letter-spacing:-3.961300pt;}
.lsd_c00319{letter-spacing:-3.927700pt;}
.lsb_c00319{letter-spacing:-3.852887pt;}
.ls22_c00319{letter-spacing:-3.689467pt;}
.ls1a_c00319{letter-spacing:-3.518667pt;}
.ls1c_c00319{letter-spacing:-3.409067pt;}
.ls20_c00319{letter-spacing:-3.383900pt;}
.lsf_c00319{letter-spacing:-3.367000pt;}
.ls9_c00319{letter-spacing:-3.304000pt;}
.ls14_c00319{letter-spacing:-2.992000pt;}
.ls3_c00319{letter-spacing:-2.639000pt;}
.ls25_c00319{letter-spacing:-2.033187pt;}
.ls11_c00319{letter-spacing:-2.002000pt;}
.ls1_c00319{letter-spacing:-1.981700pt;}
.ls19_c00319{letter-spacing:-1.583600pt;}
.ls1f_c00319{letter-spacing:-1.480000pt;}
.ls24_c00319{letter-spacing:-1.472000pt;}
.ls18_c00319{letter-spacing:-1.417733pt;}
.ls21_c00319{letter-spacing:-1.404000pt;}
.ls4_c00319{letter-spacing:-1.323700pt;}
.ls26_c00319{letter-spacing:-0.714000pt;}
.ls29_c00319{letter-spacing:-0.710667pt;}
.ls1d_c00319{letter-spacing:-0.689853pt;}
.ls8_c00319{letter-spacing:-0.658000pt;}
.lsa_c00319{letter-spacing:-0.654733pt;}
.ls28_c00319{letter-spacing:-0.648533pt;}
.ls27_c00319{letter-spacing:-0.642133pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ls1b_c00319{letter-spacing:0.756133pt;}
.ls1e_c00319{letter-spacing:2.209200pt;}
.ls23_c00319{letter-spacing:2.333333pt;}
.ls2a_c00319{letter-spacing:3.177067pt;}
.ls15_c00319{letter-spacing:13.727700pt;}
.ws0_c00319{word-spacing:0.000000pt;}
._1c_c00319{margin-left:-36.323120pt;}
._0_c00319{margin-left:-35.124016pt;}
._e_c00319{margin-left:-3.696938pt;}
._9_c00319{margin-left:-2.225894pt;}
._1_c00319{margin-left:-0.906843pt;}
._5_c00319{width:1.200196pt;}
._2_c00319{width:2.567442pt;}
._a_c00319{width:3.676994pt;}
._b_c00319{width:4.865158pt;}
._7_c00319{width:6.228151pt;}
._6_c00319{width:7.338562pt;}
._1e_c00319{width:8.251468pt;}
._c_c00319{width:9.161719pt;}
._8_c00319{width:10.052370pt;}
._3_c00319{width:11.319238pt;}
._16_c00319{width:12.245140pt;}
._4_c00319{width:13.313274pt;}
._17_c00319{width:14.501411pt;}
._d_c00319{width:16.026289pt;}
._1a_c00319{width:17.616253pt;}
._15_c00319{width:18.530374pt;}
._1b_c00319{width:19.445908pt;}
._19_c00319{width:20.616889pt;}
._18_c00319{width:22.632466pt;}
._14_c00319{width:23.534700pt;}
._13_c00319{width:24.993817pt;}
._f_c00319{width:26.336496pt;}
._10_c00319{width:28.361068pt;}
._12_c00319{width:33.607409pt;}
._11_c00319{width:35.022625pt;}
._1d_c00319{width:63.917991pt;}
.fsd_c00319{font-size:32.666667pt;}
.fs1b_c00319{font-size:35.333333pt;}
.fs1c_c00319{font-size:37.333333pt;}
.fs17_c00319{font-size:38.666667pt;}
.fs1a_c00319{font-size:39.333333pt;}
.fs18_c00319{font-size:40.000000pt;}
.fs9_c00319{font-size:40.666667pt;}
.fs15_c00319{font-size:41.333333pt;}
.fs16_c00319{font-size:42.000000pt;}
.fs1d_c00319{font-size:42.666667pt;}
.fs19_c00319{font-size:43.333333pt;}
.fs11_c00319{font-size:60.666667pt;}
.fs12_c00319{font-size:62.666667pt;}
.fs3_c00319{font-size:63.333333pt;}
.fs1e_c00319{font-size:64.000000pt;}
.fsc_c00319{font-size:64.666667pt;}
.fs10_c00319{font-size:65.333333pt;}
.fs14_c00319{font-size:66.666667pt;}
.fsa_c00319{font-size:68.000000pt;}
.fs6_c00319{font-size:68.666667pt;}
.fs7_c00319{font-size:69.333333pt;}
.fs1_c00319{font-size:70.000000pt;}
.fsf_c00319{font-size:70.666667pt;}
.fs4_c00319{font-size:71.333333pt;}
.fse_c00319{font-size:72.000000pt;}
.fsb_c00319{font-size:72.666667pt;}
.fs5_c00319{font-size:73.333333pt;}
.fs13_c00319{font-size:74.666667pt;}
.fs2_c00319{font-size:75.333333pt;}
.fs8_c00319{font-size:90.000000pt;}
.fs0_c00319{font-size:102.666667pt;}
.y0_c00319{bottom:0.000000pt;}
.y30_c00319{bottom:155.200133pt;}
.y2f_c00319{bottom:211.199733pt;}
.y2e_c00319{bottom:211.201253pt;}
.y2d_c00319{bottom:229.760013pt;}
.y2c_c00319{bottom:248.318787pt;}
.y2b_c00319{bottom:248.319027pt;}
.y2a_c00319{bottom:267.520000pt;}
.y29_c00319{bottom:286.398920pt;}
.y28_c00319{bottom:286.399147pt;}
.y26_c00319{bottom:304.960000pt;}
.y27_c00319{bottom:305.600120pt;}
.y25_c00319{bottom:323.519453pt;}
.y24_c00319{bottom:403.199707pt;}
.y23_c00319{bottom:429.758787pt;}
.y22_c00319{bottom:429.760333pt;}
.y21_c00319{bottom:456.320093pt;}
.y1f_c00319{bottom:482.879173pt;}
.y20_c00319{bottom:482.879840pt;}
.y1e_c00319{bottom:509.438920pt;}
.y1d_c00319{bottom:509.438947pt;}
.y1c_c00319{bottom:535.680133pt;}
.y1b_c00319{bottom:535.680253pt;}
.y19_c00319{bottom:561.919760pt;}
.y1a_c00319{bottom:561.919840pt;}
.y17_c00319{bottom:587.837867pt;}
.y18_c00319{bottom:587.838907pt;}
.y16_c00319{bottom:614.719667pt;}
.y15_c00319{bottom:641.279413pt;}
.y14_c00319{bottom:694.398920pt;}
.y13_c00319{bottom:721.278907pt;}
.y12_c00319{bottom:747.520107pt;}
.y11_c00319{bottom:773.759680pt;}
.y10_c00319{bottom:800.318760pt;}
.yf_c00319{bottom:800.319560pt;}
.ye_c00319{bottom:826.879307pt;}
.yc_c00319{bottom:879.998520pt;}
.yd_c00319{bottom:879.999027pt;}
.ya_c00319{bottom:898.878880pt;}
.yb_c00319{bottom:898.879307pt;}
.y9_c00319{bottom:917.759680pt;}
.y7_c00319{bottom:936.640120pt;}
.y8_c00319{bottom:936.640133pt;}
.y6_c00319{bottom:955.519040pt;}
.y5_c00319{bottom:955.519333pt;}
.y4_c00319{bottom:974.400120pt;}
.y3_c00319{bottom:992.958907pt;}
.y2_c00319{bottom:992.959573pt;}
.y1_c00319{bottom:1011.519933pt;}
.h11_c00319{height:32.921875pt;}
.h20_c00319{height:36.851562pt;}
.h21_c00319{height:38.937500pt;}
.h1c_c00319{height:40.328125pt;}
.h1f_c00319{height:41.023438pt;}
.h23_c00319{height:41.656250pt;}
.h1d_c00319{height:41.718750pt;}
.h1b_c00319{height:42.328125pt;}
.ha_c00319{height:42.414062pt;}
.h22_c00319{height:43.000000pt;}
.h1a_c00319{height:43.109375pt;}
.h1e_c00319{height:43.671875pt;}
.h16_c00319{height:63.273438pt;}
.h17_c00319{height:65.359375pt;}
.h4_c00319{height:66.054688pt;}
.hc_c00319{height:66.738281pt;}
.h24_c00319{height:66.750000pt;}
.hb_c00319{height:67.392578pt;}
.h10_c00319{height:67.445312pt;}
.h8_c00319{height:68.046875pt;}
.h14_c00319{height:68.140625pt;}
.h2_c00319{height:68.701172pt;}
.h13_c00319{height:69.355469pt;}
.h19_c00319{height:69.531250pt;}
.h5_c00319{height:70.009766pt;}
.hf_c00319{height:70.546875pt;}
.h12_c00319{height:70.664062pt;}
.h7_c00319{height:71.617188pt;}
.h15_c00319{height:71.890625pt;}
.h6_c00319{height:71.972656pt;}
.he_c00319{height:73.234375pt;}
.hd_c00319{height:73.906250pt;}
.h3_c00319{height:73.935547pt;}
.h18_c00319{height:77.875000pt;}
.h9_c00319{height:93.867188pt;}
.h1_c00319{height:107.078125pt;}
.h0_c00319{height:1122.666667pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x14_c00319{left:122.879867pt;}
.x15_c00319{left:145.599613pt;}
.x4b_c00319{left:148.798813pt;}
.x4c_c00319{left:163.839867pt;}
.x34_c00319{left:170.559067pt;}
.x6_c00319{left:172.159093pt;}
.x1_c00319{left:173.759720pt;}
.xe_c00319{left:185.279333pt;}
.x2_c00319{left:192.000000pt;}
.x33_c00319{left:199.359333pt;}
.x3_c00319{left:200.639587pt;}
.x1d_c00319{left:204.159733pt;}
.x16_c00319{left:216.638667pt;}
.x4d_c00319{left:217.599587pt;}
.x35_c00319{left:224.639587pt;}
.x17_c00319{left:234.878920pt;}
.x36_c00319{left:240.000000pt;}
.x1e_c00319{left:251.198667pt;}
.x26_c00319{left:262.079587pt;}
.x1f_c00319{left:264.638667pt;}
.x37_c00319{left:271.038533pt;}
.x27_c00319{left:275.838933pt;}
.x4e_c00319{left:278.718787pt;}
.x49_c00319{left:288.000000pt;}
.x38_c00319{left:293.438920pt;}
.x4f_c00319{left:296.318787pt;}
.x22_c00319{left:297.279720pt;}
.x3f_c00319{left:300.159733pt;}
.x4a_c00319{left:305.919453pt;}
.x40_c00319{left:313.278787pt;}
.x2f_c00319{left:315.518533pt;}
.x2a_c00319{left:316.479453pt;}
.x50_c00319{left:321.279720pt;}
.x23_c00319{left:322.239200pt;}
.x30_c00319{left:328.639200pt;}
.x43_c00319{left:332.159200pt;}
.x2b_c00319{left:337.599587pt;}
.x44_c00319{left:343.359333pt;}
.x45_c00319{left:348.799840pt;}
.x39_c00319{left:350.399453pt;}
.xf_c00319{left:367.038533pt;}
.x12_c00319{left:370.239173pt;}
.x46_c00319{left:373.119187pt;}
.x13_c00319{left:375.679733pt;}
.x3a_c00319{left:380.799320pt;}
.x10_c00319{left:386.559040pt;}
.x47_c00319{left:387.518520pt;}
.x11_c00319{left:404.479987pt;}
.x7_c00319{left:409.278813pt;}
.x51_c00319{left:411.839320pt;}
.x41_c00319{left:415.359333pt;}
.xc_c00319{left:421.119187pt;}
.x42_c00319{left:424.319867pt;}
.x52_c00319{left:426.878907pt;}
.xd_c00319{left:434.239707pt;}
.xb_c00319{left:451.519040pt;}
.x3b_c00319{left:452.479987pt;}
.x8_c00319{left:454.719720pt;}
.x20_c00319{left:457.599573pt;}
.x9_c00319{left:464.639613pt;}
.x53_c00319{left:468.479040pt;}
.x21_c00319{left:472.639200pt;}
.xa_c00319{left:477.439453pt;}
.x28_c00319{left:484.158693pt;}
.x29_c00319{left:498.559573pt;}
.x2c_c00319{left:501.118693pt;}
.x31_c00319{left:518.078693pt;}
.x2d_c00319{left:522.559573pt;}
.x24_c00319{left:525.118693pt;}
.x48_c00319{left:527.359867pt;}
.x32_c00319{left:535.999467pt;}
.x25_c00319{left:540.479040pt;}
.x54_c00319{left:544.639200pt;}
.x55_c00319{left:550.079587pt;}
.x4_c00319{left:558.719200pt;}
.x56_c00319{left:567.039587pt;}
.x5_c00319{left:571.199707pt;}
.x3c_c00319{left:585.599040pt;}
.x19_c00319{left:587.838907pt;}
.x57_c00319{left:602.239707pt;}
.x1a_c00319{left:610.879307pt;}
.x3d_c00319{left:615.039587pt;}
.x1b_c00319{left:666.878907pt;}
.x3e_c00319{left:675.199173pt;}
.x1c_c00319{left:680.318760pt;}
.x2e_c00319{left:682.879307pt;}
.x18_c00319{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e42de7f297e3bc6f7aefef76.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_1eba2f3b09461cac236a59c1.woff2')format("woff");}.ff2_c00320{font-family:ff2_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:ff3_c00320;src:url('chunks/assets/font_4fa219be0f28794acb6c91d5.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_d79bd0ba3b1800de289ded76.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_b547e5ffec08c5d34b491494.woff2')format("woff");}.ff5_c00320{font-family:ff5_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:ff6_c00320;src:url('chunks/assets/font_636de815e0cd628512a78818.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:1.364746;font-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_c00320{transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m34_c00320{transform:matrix(0.176923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176923,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m33_c00320{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m3b_c00320{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);}
.m2d_c00320{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m30_c00320{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m31_c00320{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m32_c00320{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m37_c00320{transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);}
.m25_c00320{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m24_c00320{transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309091,0.000000,0.000000,0.250000,0,0);}
.m20_c00320{transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{transform:matrix(0.445652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445652,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{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);}
.m1f_c00320{transform:matrix(0.588542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588542,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.645522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645522,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.667808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667808,0.000000,0.000000,0.250000,0,0);}
.m2e_c00320{transform:matrix(0.673132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673132,0.000000,0.000000,0.250000,0,0);}
.v1_c00320{vertical-align:-1.444560px;}
.v0_c00320{vertical-align:0.000000px;}
.ls47_c00320{letter-spacing:-17.487300px;}
.ls31_c00320{letter-spacing:-16.986750px;}
.ls17_c00320{letter-spacing:-16.776000px;}
.ls2d_c00320{letter-spacing:-15.783750px;}
.ls2e_c00320{letter-spacing:-15.307650px;}
.ls23_c00320{letter-spacing:-13.149045px;}
.ls21_c00320{letter-spacing:-12.687675px;}
.ls12_c00320{letter-spacing:-12.019875px;}
.ls1d_c00320{letter-spacing:-10.989863px;}
.ls15_c00320{letter-spacing:-9.533025px;}
.ls25_c00320{letter-spacing:-9.176400px;}
.ls28_c00320{letter-spacing:-8.471160px;}
.ls10_c00320{letter-spacing:-8.175038px;}
.ls32_c00320{letter-spacing:-7.427700px;}
.ls22_c00320{letter-spacing:-7.426125px;}
.ls14_c00320{letter-spacing:-7.362900px;}
.ls1e_c00320{letter-spacing:-6.685875px;}
.ls9_c00320{letter-spacing:-6.212700px;}
.lsf_c00320{letter-spacing:-5.945625px;}
.ls38_c00320{letter-spacing:-5.896575px;}
.ls30_c00320{letter-spacing:-5.858100px;}
.ls1b_c00320{letter-spacing:-5.408273px;}
.ls24_c00320{letter-spacing:-5.203125px;}
.lsb_c00320{letter-spacing:-5.196713px;}
.ls27_c00320{letter-spacing:-5.164275px;}
.ls2c_c00320{letter-spacing:-4.777560px;}
.ls36_c00320{letter-spacing:-4.744912px;}
.ls1f_c00320{letter-spacing:-4.626233px;}
.ls7_c00320{letter-spacing:-4.456463px;}
.ls18_c00320{letter-spacing:-4.026000px;}
.ls20_c00320{letter-spacing:-3.819750px;}
.lsd_c00320{letter-spacing:-3.717000px;}
.ls29_c00320{letter-spacing:-3.402000px;}
.ls33_c00320{letter-spacing:-3.165750px;}
.ls1a_c00320{letter-spacing:-2.969250px;}
.ls8_c00320{letter-spacing:-2.968875px;}
.ls2b_c00320{letter-spacing:-2.904450px;}
.ls2a_c00320{letter-spacing:-2.822400px;}
.ls45_c00320{letter-spacing:-2.702400px;}
.ls35_c00320{letter-spacing:-2.635538px;}
.ls19_c00320{letter-spacing:-2.288805px;}
.ls44_c00320{letter-spacing:-2.250443px;}
.ls6_c00320{letter-spacing:-2.229413px;}
.ls40_c00320{letter-spacing:-2.120625px;}
.ls34_c00320{letter-spacing:-2.109375px;}
.ls43_c00320{letter-spacing:-1.831500px;}
.ls42_c00320{letter-spacing:-1.776000px;}
.ls4a_c00320{letter-spacing:-1.574625px;}
.ls3e_c00320{letter-spacing:-1.547985px;}
.ls13_c00320{letter-spacing:-1.499400px;}
.lsc_c00320{letter-spacing:-1.489163px;}
.ls3d_c00320{letter-spacing:-1.478925px;}
.ls3b_c00320{letter-spacing:-1.056375px;}
.ls49_c00320{letter-spacing:-0.776085px;}
.lse_c00320{letter-spacing:-0.740250px;}
.ls41_c00320{letter-spacing:-0.727650px;}
.lsa_c00320{letter-spacing:0.000000px;}
.ls2_c00320{letter-spacing:0.526162px;}
.ls2f_c00320{letter-spacing:0.714720px;}
.ls0_c00320{letter-spacing:0.740250px;}
.ls5_c00320{letter-spacing:0.776085px;}
.ls4b_c00320{letter-spacing:0.776580px;}
.ls11_c00320{letter-spacing:0.779220px;}
.ls46_c00320{letter-spacing:0.799800px;}
.ls4_c00320{letter-spacing:1.547985px;}
.ls1_c00320{letter-spacing:1.583213px;}
.ls3f_c00320{letter-spacing:1.692750px;}
.ls48_c00320{letter-spacing:2.497950px;}
.ls3_c00320{letter-spacing:2.635538px;}
.ls3c_c00320{letter-spacing:3.243600px;}
.ls39_c00320{letter-spacing:3.749625px;}
.ls37_c00320{letter-spacing:6.328125px;}
.ls3a_c00320{letter-spacing:6.840000px;}
.ls26_c00320{letter-spacing:9.176400px;}
.ls16_c00320{letter-spacing:19.119750px;}
.ls1c_c00320{letter-spacing:21.371963px;}
.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;}
._11_c00320{margin-left:-23.704864px;}
._10_c00320{margin-left:-21.128803px;}
._1c_c00320{margin-left:-10.750149px;}
._5_c00320{margin-left:-8.657864px;}
._2_c00320{margin-left:-7.081661px;}
._13_c00320{margin-left:-5.962222px;}
._12_c00320{margin-left:-4.466254px;}
._3_c00320{margin-left:-3.086822px;}
._7_c00320{margin-left:-1.501242px;}
._0_c00320{width:1.343074px;}
._8_c00320{width:2.488039px;}
._4_c00320{width:4.294728px;}
._1_c00320{width:6.150761px;}
._f_c00320{width:7.636551px;}
._9_c00320{width:9.307656px;}
._6_c00320{width:11.432494px;}
._c_c00320{width:13.077284px;}
._a_c00320{width:14.950747px;}
._1a_c00320{width:16.561615px;}
._e_c00320{width:18.537275px;}
._19_c00320{width:19.552808px;}
._14_c00320{width:21.238964px;}
._b_c00320{width:22.650090px;}
._d_c00320{width:27.208110px;}
._16_c00320{width:28.692904px;}
._18_c00320{width:32.224233px;}
._15_c00320{width:34.023358px;}
._17_c00320{width:35.768636px;}
._1b_c00320{width:239.123068px;}
.fc0_c00320{color:transparent;}
.fs14_c00320{font-size:27.750000px;}
.fs1b_c00320{font-size:33.750000px;}
.fs18_c00320{font-size:34.500000px;}
.fs13_c00320{font-size:36.000000px;}
.fs19_c00320{font-size:41.250000px;}
.fs28_c00320{font-size:42.000000px;}
.fs26_c00320{font-size:42.750000px;}
.fs22_c00320{font-size:43.500000px;}
.fs20_c00320{font-size:43.810800px;}
.fs23_c00320{font-size:45.750000px;}
.fs1f_c00320{font-size:46.500000px;}
.fs21_c00320{font-size:47.250000px;}
.fs17_c00320{font-size:48.000000px;}
.fs24_c00320{font-size:48.750000px;}
.fs25_c00320{font-size:49.500000px;}
.fs15_c00320{font-size:50.250000px;}
.fs27_c00320{font-size:53.250000px;}
.fsc_c00320{font-size:54.000000px;}
.fs1c_c00320{font-size:54.750000px;}
.fsd_c00320{font-size:55.500000px;}
.fs1e_c00320{font-size:56.250000px;}
.fs9_c00320{font-size:60.000000px;}
.fsf_c00320{font-size:63.750000px;}
.fsb_c00320{font-size:65.250000px;}
.fs8_c00320{font-size:71.250000px;}
.fs3_c00320{font-size:74.250000px;}
.fse_c00320{font-size:77.250000px;}
.fs7_c00320{font-size:78.000000px;}
.fs0_c00320{font-size:78.750000px;}
.fs5_c00320{font-size:79.500000px;}
.fs4_c00320{font-size:80.250000px;}
.fsa_c00320{font-size:81.000000px;}
.fs10_c00320{font-size:81.750000px;}
.fs6_c00320{font-size:82.500000px;}
.fs12_c00320{font-size:83.250000px;}
.fs2_c00320{font-size:84.750000px;}
.fs11_c00320{font-size:85.500000px;}
.fs1_c00320{font-size:87.750000px;}
.fs1a_c00320{font-size:94.500000px;}
.fs16_c00320{font-size:103.500000px;}
.fs1d_c00320{font-size:115.500000px;}
.y0_c00320{bottom:0.000000px;}
.y25_c00320{bottom:173.519100px;}
.y24_c00320{bottom:212.399250px;}
.y23_c00320{bottom:303.838950px;}
.y22_c00320{bottom:362.880300px;}
.y21_c00320{bottom:392.399820px;}
.y20_c00320{bottom:422.278800px;}
.y1f_c00320{bottom:422.639700px;}
.y1e_c00320{bottom:429.478635px;}
.y1d_c00320{bottom:451.800150px;}
.y1c_c00320{bottom:451.800240px;}
.y1b_c00320{bottom:482.040165px;}
.y19_c00320{bottom:511.558920px;}
.y1a_c00320{bottom:511.559685px;}
.y18_c00320{bottom:541.438635px;}
.y16_c00320{bottom:570.959385px;}
.y17_c00320{bottom:570.959970px;}
.y15_c00320{bottom:600.839100px;}
.y14_c00320{bottom:630.358635px;}
.y13_c00320{bottom:659.879970px;}
.y12_c00320{bottom:659.880300px;}
.y10_c00320{bottom:689.399775px;}
.y11_c00320{bottom:689.399820px;}
.yf_c00320{bottom:719.639700px;}
.ye_c00320{bottom:749.159370px;}
.yd_c00320{bottom:779.039985px;}
.yc_c00320{bottom:779.040120px;}
.yb_c00320{bottom:808.919835px;}
.ya_c00320{bottom:838.799565px;}
.y9_c00320{bottom:898.919565px;}
.y8_c00320{bottom:928.439100px;}
.y7_c00320{bottom:958.318815px;}
.y5_c00320{bottom:987.839475px;}
.y6_c00320{bottom:987.840090px;}
.y4_c00320{bottom:1047.238725px;}
.y3_c00320{bottom:1077.478635px;}
.y2_c00320{bottom:1107.360060px;}
.y1_c00320{bottom:1137.239775px;}
.h1a_c00320{height:28.942383px;}
.h21_c00320{height:35.200195px;}
.h1e_c00320{height:35.982422px;}
.h19_c00320{height:37.546875px;}
.h1f_c00320{height:40.766602px;}
.h27_c00320{height:43.022461px;}
.h33_c00320{height:43.804688px;}
.h30_c00320{height:44.586914px;}
.h2e_c00320{height:44.901123px;}
.h29_c00320{height:45.369141px;}
.h26_c00320{height:45.693295px;}
.h2a_c00320{height:46.107422px;}
.h28_c00320{height:46.373291px;}
.h25_c00320{height:46.863281px;}
.h1d_c00320{height:47.109375px;}
.h2c_c00320{height:47.437500px;}
.h32_c00320{height:47.845459px;}
.h2b_c00320{height:48.178711px;}
.h2d_c00320{height:48.919922px;}
.h2f_c00320{height:49.886719px;}
.h1b_c00320{height:52.409180px;}
.h31_c00320{height:52.625977px;}
.he_c00320{height:55.933594px;}
.hd_c00320{height:56.320312px;}
.h22_c00320{height:57.102539px;}
.h24_c00320{height:58.666992px;}
.ha_c00320{height:59.296875px;}
.hc_c00320{height:64.485352px;}
.h15_c00320{height:66.489258px;}
.h4_c00320{height:72.872314px;}
.h9_c00320{height:74.311523px;}
.h1_c00320{height:77.288818px;}
.hf_c00320{height:77.440430px;}
.h13_c00320{height:77.853516px;}
.h6_c00320{height:78.024902px;}
.h8_c00320{height:78.609375px;}
.h5_c00320{height:78.760986px;}
.h14_c00320{height:79.365234px;}
.h11_c00320{height:80.121094px;}
.h16_c00320{height:80.233154px;}
.h12_c00320{height:80.876953px;}
.h7_c00320{height:80.969238px;}
.h10_c00320{height:81.533203px;}
.hb_c00320{height:81.632812px;}
.h18_c00320{height:81.705322px;}
.h3_c00320{height:83.177490px;}
.h17_c00320{height:84.498047px;}
.h2_c00320{height:86.121826px;}
.h20_c00320{height:98.560547px;}
.h1c_c00320{height:107.947266px;}
.h23_c00320{height:120.462891px;}
.h0_c00320{height:1263.000000px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
.x1b_c00320{left:133.919745px;}
.x9_c00320{left:135.000000px;}
.x1_c00320{left:136.079400px;}
.x7_c00320{left:137.516970px;}
.x6_c00320{left:150.479250px;}
.x33_c00320{left:160.559685px;}
.xa_c00320{left:162.000000px;}
.x3f_c00320{left:164.878950px;}
.x40_c00320{left:178.919535px;}
.x35_c00320{left:181.439250px;}
.xd_c00320{left:192.958350px;}
.xe_c00320{left:210.958950px;}
.x23_c00320{left:232.199385px;}
.x26_c00320{left:235.080000px;}
.x41_c00320{left:239.399250px;}
.x2_c00320{left:256.679700px;}
.x20_c00320{left:259.919535px;}
.x27_c00320{left:266.399250px;}
.x42_c00320{left:267.478635px;}
.x3_c00320{left:275.759535px;}
.x43_c00320{left:281.519100px;}
.x36_c00320{left:290.518635px;}
.xf_c00320{left:300.958350px;}
.x10_c00320{left:322.559685px;}
.x44_c00320{left:324.718500px;}
.x28_c00320{left:332.638530px;}
.x45_c00320{left:354.599100px;}
.x29_c00320{left:359.279250px;}
.x11_c00320{left:370.080000px;}
.xb_c00320{left:376.918950px;}
.x37_c00320{left:379.799535px;}
.x12_c00320{left:381.958350px;}
.xc_c00320{left:389.878320px;}
.x46_c00320{left:399.958920px;}
.x47_c00320{left:414.358665px;}
.x2a_c00320{left:416.878320px;}
.x13_c00320{left:427.679070px;}
.x2b_c00320{left:437.039385px;}
.x38_c00320{left:440.279250px;}
.x14_c00320{left:449.639700px;}
.x15_c00320{left:468.719565px;}
.x1e_c00320{left:474.119985px;}
.x39_c00320{left:488.519670px;}
.x1f_c00320{left:494.999400px;}
.x3a_c00320{left:500.399820px;}
.x2c_c00320{left:506.159415px;}
.x34_c00320{left:511.559685px;}
.x16_c00320{left:515.158770px;}
.x4_c00320{left:525.598530px;}
.x2d_c00320{left:537.478635px;}
.x5_c00320{left:540.000000px;}
.x17_c00320{left:551.159820px;}
.x2e_c00320{left:557.639700px;}
.x3b_c00320{left:584.278800px;}
.x24_c00320{left:594.000000px;}
.x18_c00320{left:600.479685px;}
.x3c_c00320{left:609.479235px;}
.x2f_c00320{left:611.278800px;}
.x25_c00320{left:615.958920px;}
.x3d_c00320{left:633.239220px;}
.x21_c00320{left:637.558635px;}
.x30_c00320{left:639.719100px;}
.x1c_c00320{left:650.519670px;}
.x19_c00320{left:651.599070px;}
.x3e_c00320{left:655.918350px;}
.x22_c00320{left:659.159820px;}
.x1d_c00320{left:666.719100px;}
.x31_c00320{left:710.999400px;}
.x32_c00320{left:733.678530px;}
.x1a_c00320{left:742.679670px;}
.x8_c00320{left:766.078770px;}
@media print{
.v1_c00320{vertical-align:-1.284053pt;}
.v0_c00320{vertical-align:0.000000pt;}
.ls47_c00320{letter-spacing:-15.544267pt;}
.ls31_c00320{letter-spacing:-15.099333pt;}
.ls17_c00320{letter-spacing:-14.912000pt;}
.ls2d_c00320{letter-spacing:-14.030000pt;}
.ls2e_c00320{letter-spacing:-13.606800pt;}
.ls23_c00320{letter-spacing:-11.688040pt;}
.ls21_c00320{letter-spacing:-11.277933pt;}
.ls12_c00320{letter-spacing:-10.684333pt;}
.ls1d_c00320{letter-spacing:-9.768767pt;}
.ls15_c00320{letter-spacing:-8.473800pt;}
.ls25_c00320{letter-spacing:-8.156800pt;}
.ls28_c00320{letter-spacing:-7.529920pt;}
.ls10_c00320{letter-spacing:-7.266700pt;}
.ls32_c00320{letter-spacing:-6.602400pt;}
.ls22_c00320{letter-spacing:-6.601000pt;}
.ls14_c00320{letter-spacing:-6.544800pt;}
.ls1e_c00320{letter-spacing:-5.943000pt;}
.ls9_c00320{letter-spacing:-5.522400pt;}
.lsf_c00320{letter-spacing:-5.285000pt;}
.ls38_c00320{letter-spacing:-5.241400pt;}
.ls30_c00320{letter-spacing:-5.207200pt;}
.ls1b_c00320{letter-spacing:-4.807353pt;}
.ls24_c00320{letter-spacing:-4.625000pt;}
.lsb_c00320{letter-spacing:-4.619300pt;}
.ls27_c00320{letter-spacing:-4.590467pt;}
.ls2c_c00320{letter-spacing:-4.246720pt;}
.ls36_c00320{letter-spacing:-4.217700pt;}
.ls1f_c00320{letter-spacing:-4.112207pt;}
.ls7_c00320{letter-spacing:-3.961300pt;}
.ls18_c00320{letter-spacing:-3.578667pt;}
.ls20_c00320{letter-spacing:-3.395333pt;}
.lsd_c00320{letter-spacing:-3.304000pt;}
.ls29_c00320{letter-spacing:-3.024000pt;}
.ls33_c00320{letter-spacing:-2.814000pt;}
.ls1a_c00320{letter-spacing:-2.639333pt;}
.ls8_c00320{letter-spacing:-2.639000pt;}
.ls2b_c00320{letter-spacing:-2.581733pt;}
.ls2a_c00320{letter-spacing:-2.508800pt;}
.ls45_c00320{letter-spacing:-2.402133pt;}
.ls35_c00320{letter-spacing:-2.342700pt;}
.ls19_c00320{letter-spacing:-2.034493pt;}
.ls44_c00320{letter-spacing:-2.000393pt;}
.ls6_c00320{letter-spacing:-1.981700pt;}
.ls40_c00320{letter-spacing:-1.885000pt;}
.ls34_c00320{letter-spacing:-1.875000pt;}
.ls43_c00320{letter-spacing:-1.628000pt;}
.ls42_c00320{letter-spacing:-1.578667pt;}
.ls4a_c00320{letter-spacing:-1.399667pt;}
.ls3e_c00320{letter-spacing:-1.375987pt;}
.ls13_c00320{letter-spacing:-1.332800pt;}
.lsc_c00320{letter-spacing:-1.323700pt;}
.ls3d_c00320{letter-spacing:-1.314600pt;}
.ls3b_c00320{letter-spacing:-0.939000pt;}
.ls49_c00320{letter-spacing:-0.689853pt;}
.lse_c00320{letter-spacing:-0.658000pt;}
.ls41_c00320{letter-spacing:-0.646800pt;}
.lsa_c00320{letter-spacing:0.000000pt;}
.ls2_c00320{letter-spacing:0.467700pt;}
.ls2f_c00320{letter-spacing:0.635307pt;}
.ls0_c00320{letter-spacing:0.658000pt;}
.ls5_c00320{letter-spacing:0.689853pt;}
.ls4b_c00320{letter-spacing:0.690293pt;}
.ls11_c00320{letter-spacing:0.692640pt;}
.ls46_c00320{letter-spacing:0.710933pt;}
.ls4_c00320{letter-spacing:1.375987pt;}
.ls1_c00320{letter-spacing:1.407300pt;}
.ls3f_c00320{letter-spacing:1.504667pt;}
.ls48_c00320{letter-spacing:2.220400pt;}
.ls3_c00320{letter-spacing:2.342700pt;}
.ls3c_c00320{letter-spacing:2.883200pt;}
.ls39_c00320{letter-spacing:3.333000pt;}
.ls37_c00320{letter-spacing:5.625000pt;}
.ls3a_c00320{letter-spacing:6.080000pt;}
.ls26_c00320{letter-spacing:8.156800pt;}
.ls16_c00320{letter-spacing:16.995333pt;}
.ls1c_c00320{letter-spacing:18.997300pt;}
.ws0_c00320{word-spacing:0.000000pt;}
._11_c00320{margin-left:-21.070991pt;}
._10_c00320{margin-left:-18.781158pt;}
._1c_c00320{margin-left:-9.555688pt;}
._5_c00320{margin-left:-7.695879pt;}
._2_c00320{margin-left:-6.294809pt;}
._13_c00320{margin-left:-5.299753pt;}
._12_c00320{margin-left:-3.970004pt;}
._3_c00320{margin-left:-2.743842pt;}
._7_c00320{margin-left:-1.334438pt;}
._0_c00320{width:1.193843pt;}
._8_c00320{width:2.211591pt;}
._4_c00320{width:3.817536pt;}
._1_c00320{width:5.467343pt;}
._f_c00320{width:6.788045pt;}
._9_c00320{width:8.273472pt;}
._6_c00320{width:10.162217pt;}
._c_c00320{width:11.624253pt;}
._a_c00320{width:13.289553pt;}
._1a_c00320{width:14.721436pt;}
._e_c00320{width:16.477577pt;}
._19_c00320{width:17.380274pt;}
._14_c00320{width:18.879079pt;}
._b_c00320{width:20.133413pt;}
._d_c00320{width:24.184987pt;}
._16_c00320{width:25.504804pt;}
._18_c00320{width:28.643762pt;}
._15_c00320{width:30.242985pt;}
._17_c00320{width:31.794343pt;}
._1b_c00320{width:212.553838pt;}
.fs14_c00320{font-size:24.666667pt;}
.fs1b_c00320{font-size:30.000000pt;}
.fs18_c00320{font-size:30.666667pt;}
.fs13_c00320{font-size:32.000000pt;}
.fs19_c00320{font-size:36.666667pt;}
.fs28_c00320{font-size:37.333333pt;}
.fs26_c00320{font-size:38.000000pt;}
.fs22_c00320{font-size:38.666667pt;}
.fs20_c00320{font-size:38.942933pt;}
.fs23_c00320{font-size:40.666667pt;}
.fs1f_c00320{font-size:41.333333pt;}
.fs21_c00320{font-size:42.000000pt;}
.fs17_c00320{font-size:42.666667pt;}
.fs24_c00320{font-size:43.333333pt;}
.fs25_c00320{font-size:44.000000pt;}
.fs15_c00320{font-size:44.666667pt;}
.fs27_c00320{font-size:47.333333pt;}
.fsc_c00320{font-size:48.000000pt;}
.fs1c_c00320{font-size:48.666667pt;}
.fsd_c00320{font-size:49.333333pt;}
.fs1e_c00320{font-size:50.000000pt;}
.fs9_c00320{font-size:53.333333pt;}
.fsf_c00320{font-size:56.666667pt;}
.fsb_c00320{font-size:58.000000pt;}
.fs8_c00320{font-size:63.333333pt;}
.fs3_c00320{font-size:66.000000pt;}
.fse_c00320{font-size:68.666667pt;}
.fs7_c00320{font-size:69.333333pt;}
.fs0_c00320{font-size:70.000000pt;}
.fs5_c00320{font-size:70.666667pt;}
.fs4_c00320{font-size:71.333333pt;}
.fsa_c00320{font-size:72.000000pt;}
.fs10_c00320{font-size:72.666667pt;}
.fs6_c00320{font-size:73.333333pt;}
.fs12_c00320{font-size:74.000000pt;}
.fs2_c00320{font-size:75.333333pt;}
.fs11_c00320{font-size:76.000000pt;}
.fs1_c00320{font-size:78.000000pt;}
.fs1a_c00320{font-size:84.000000pt;}
.fs16_c00320{font-size:92.000000pt;}
.fs1d_c00320{font-size:102.666667pt;}
.y0_c00320{bottom:0.000000pt;}
.y25_c00320{bottom:154.239200pt;}
.y24_c00320{bottom:188.799333pt;}
.y23_c00320{bottom:270.079067pt;}
.y22_c00320{bottom:322.560267pt;}
.y21_c00320{bottom:348.799840pt;}
.y20_c00320{bottom:375.358933pt;}
.y1f_c00320{bottom:375.679733pt;}
.y1e_c00320{bottom:381.758787pt;}
.y1d_c00320{bottom:401.600133pt;}
.y1c_c00320{bottom:401.600213pt;}
.y1b_c00320{bottom:428.480147pt;}
.y19_c00320{bottom:454.719040pt;}
.y1a_c00320{bottom:454.719720pt;}
.y18_c00320{bottom:481.278787pt;}
.y16_c00320{bottom:507.519453pt;}
.y17_c00320{bottom:507.519973pt;}
.y15_c00320{bottom:534.079200pt;}
.y14_c00320{bottom:560.318787pt;}
.y13_c00320{bottom:586.559973pt;}
.y12_c00320{bottom:586.560267pt;}
.y10_c00320{bottom:612.799800pt;}
.y11_c00320{bottom:612.799840pt;}
.yf_c00320{bottom:639.679733pt;}
.ye_c00320{bottom:665.919440pt;}
.yd_c00320{bottom:692.479987pt;}
.yc_c00320{bottom:692.480107pt;}
.yb_c00320{bottom:719.039853pt;}
.ya_c00320{bottom:745.599613pt;}
.y9_c00320{bottom:799.039613pt;}
.y8_c00320{bottom:825.279200pt;}
.y7_c00320{bottom:851.838947pt;}
.y5_c00320{bottom:878.079533pt;}
.y6_c00320{bottom:878.080080pt;}
.y4_c00320{bottom:930.878867pt;}
.y3_c00320{bottom:957.758787pt;}
.y2_c00320{bottom:984.320053pt;}
.y1_c00320{bottom:1010.879800pt;}
.h1a_c00320{height:25.726562pt;}
.h21_c00320{height:31.289062pt;}
.h1e_c00320{height:31.984375pt;}
.h19_c00320{height:33.375000pt;}
.h1f_c00320{height:36.236979pt;}
.h27_c00320{height:38.242188pt;}
.h33_c00320{height:38.937500pt;}
.h30_c00320{height:39.632812pt;}
.h2e_c00320{height:39.912109pt;}
.h29_c00320{height:40.328125pt;}
.h26_c00320{height:40.616262pt;}
.h2a_c00320{height:40.984375pt;}
.h28_c00320{height:41.220703pt;}
.h25_c00320{height:41.656250pt;}
.h1d_c00320{height:41.875000pt;}
.h2c_c00320{height:42.166667pt;}
.h32_c00320{height:42.529297pt;}
.h2b_c00320{height:42.825521pt;}
.h2d_c00320{height:43.484375pt;}
.h2f_c00320{height:44.343750pt;}
.h1b_c00320{height:46.585938pt;}
.h31_c00320{height:46.778646pt;}
.he_c00320{height:49.718750pt;}
.hd_c00320{height:50.062500pt;}
.h22_c00320{height:50.757812pt;}
.h24_c00320{height:52.148438pt;}
.ha_c00320{height:52.708333pt;}
.hc_c00320{height:57.320313pt;}
.h15_c00320{height:59.101562pt;}
.h4_c00320{height:64.775391pt;}
.h9_c00320{height:66.054688pt;}
.h1_c00320{height:68.701172pt;}
.hf_c00320{height:68.835938pt;}
.h13_c00320{height:69.203125pt;}
.h6_c00320{height:69.355469pt;}
.h8_c00320{height:69.875000pt;}
.h5_c00320{height:70.009766pt;}
.h14_c00320{height:70.546875pt;}
.h11_c00320{height:71.218750pt;}
.h16_c00320{height:71.318359pt;}
.h12_c00320{height:71.890625pt;}
.h7_c00320{height:71.972656pt;}
.h10_c00320{height:72.473958pt;}
.hb_c00320{height:72.562500pt;}
.h18_c00320{height:72.626953pt;}
.h3_c00320{height:73.935547pt;}
.h17_c00320{height:75.109375pt;}
.h2_c00320{height:76.552734pt;}
.h20_c00320{height:87.609375pt;}
.h1c_c00320{height:95.953125pt;}
.h23_c00320{height:107.078125pt;}
.h0_c00320{height:1122.666667pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{left:0.000000pt;}
.x1b_c00320{left:119.039773pt;}
.x9_c00320{left:120.000000pt;}
.x1_c00320{left:120.959467pt;}
.x7_c00320{left:122.237307pt;}
.x6_c00320{left:133.759333pt;}
.x33_c00320{left:142.719720pt;}
.xa_c00320{left:144.000000pt;}
.x3f_c00320{left:146.559067pt;}
.x40_c00320{left:159.039587pt;}
.x35_c00320{left:161.279333pt;}
.xd_c00320{left:171.518533pt;}
.xe_c00320{left:187.519067pt;}
.x23_c00320{left:206.399453pt;}
.x26_c00320{left:208.960000pt;}
.x41_c00320{left:212.799333pt;}
.x2_c00320{left:228.159733pt;}
.x20_c00320{left:231.039587pt;}
.x27_c00320{left:236.799333pt;}
.x42_c00320{left:237.758787pt;}
.x3_c00320{left:245.119587pt;}
.x43_c00320{left:250.239200pt;}
.x36_c00320{left:258.238787pt;}
.xf_c00320{left:267.518533pt;}
.x10_c00320{left:286.719720pt;}
.x44_c00320{left:288.638667pt;}
.x28_c00320{left:295.678693pt;}
.x45_c00320{left:315.199200pt;}
.x29_c00320{left:319.359333pt;}
.x11_c00320{left:328.960000pt;}
.xb_c00320{left:335.039067pt;}
.x37_c00320{left:337.599587pt;}
.x12_c00320{left:339.518533pt;}
.xc_c00320{left:346.558507pt;}
.x46_c00320{left:355.519040pt;}
.x47_c00320{left:368.318813pt;}
.x2a_c00320{left:370.558507pt;}
.x13_c00320{left:380.159173pt;}
.x2b_c00320{left:388.479453pt;}
.x38_c00320{left:391.359333pt;}
.x14_c00320{left:399.679733pt;}
.x15_c00320{left:416.639613pt;}
.x1e_c00320{left:421.439987pt;}
.x39_c00320{left:434.239707pt;}
.x1f_c00320{left:439.999467pt;}
.x3a_c00320{left:444.799840pt;}
.x2c_c00320{left:449.919480pt;}
.x34_c00320{left:454.719720pt;}
.x16_c00320{left:457.918907pt;}
.x4_c00320{left:467.198693pt;}
.x2d_c00320{left:477.758787pt;}
.x5_c00320{left:480.000000pt;}
.x17_c00320{left:489.919840pt;}
.x2e_c00320{left:495.679733pt;}
.x3b_c00320{left:519.358933pt;}
.x24_c00320{left:528.000000pt;}
.x18_c00320{left:533.759720pt;}
.x3c_c00320{left:541.759320pt;}
.x2f_c00320{left:543.358933pt;}
.x25_c00320{left:547.519040pt;}
.x3d_c00320{left:562.879307pt;}
.x21_c00320{left:566.718787pt;}
.x30_c00320{left:568.639200pt;}
.x1c_c00320{left:578.239707pt;}
.x19_c00320{left:579.199173pt;}
.x3e_c00320{left:583.038533pt;}
.x22_c00320{left:585.919840pt;}
.x1d_c00320{left:592.639200pt;}
.x31_c00320{left:631.999467pt;}
.x32_c00320{left:652.158693pt;}
.x1a_c00320{left:660.159707pt;}
.x8_c00320{left:680.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d597025f107f5f3e8e9884f0.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_049b605c58931c8521fc30e2.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_57f37727b4d7529b1d1c30ef.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_b4ff2005d9db0c98358a55c9.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_64277cd8d8ca046e9ec87bb6.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_a7bea42901c4dafff1ca864f.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00321;src:url('chunks/assets/font_482aa8a63f7da272314cb4f0.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00321;src:url('chunks/assets/font_5699a925452af0cb2de174de.woff2')format("woff");}.ff8_c00321{font-family:ff8_c00321;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00321{transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{transform:matrix(0.176923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176923,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180769,0.000000,0.000000,0.250000,0,0);}
.m37_c00321{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.m44_c00321{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{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);}
.m18_c00321{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227459,0.000000,0.000000,0.250000,0,0);}
.m3c_c00321{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m32_c00321{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{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);}
.m35_c00321{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.234899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234899,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{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);}
.m3b_c00321{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m0_c00321{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.m22_c00321{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m40_c00321{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{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_c00321{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{transform:matrix(0.279167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279167,0.000000,0.000000,0.250000,0,0);}
.m2f_c00321{transform:matrix(0.279528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279528,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m24_c00321{transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.435897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435897,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.466216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466216,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.488636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488636,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493750,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.571429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571429,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594828,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.962963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962963,0.000000,0.000000,0.250000,0,0);}
.m2c_c00321{transform:matrix(1.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.302632,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls33_c00321{letter-spacing:-17.111025px;}
.ls2c_c00321{letter-spacing:-16.348500px;}
.ls40_c00321{letter-spacing:-11.224635px;}
.ls1a_c00321{letter-spacing:-9.068565px;}
.ls35_c00321{letter-spacing:-8.914500px;}
.ls15_c00321{letter-spacing:-8.591625px;}
.lsf_c00321{letter-spacing:-8.511750px;}
.lsa_c00321{letter-spacing:-8.175038px;}
.ls11_c00321{letter-spacing:-7.426125px;}
.lsd_c00321{letter-spacing:-6.685875px;}
.ls8_c00321{letter-spacing:-5.945625px;}
.lse_c00321{letter-spacing:-5.196713px;}
.ls42_c00321{letter-spacing:-4.888350px;}
.ls3f_c00321{letter-spacing:-4.646400px;}
.ls16_c00321{letter-spacing:-4.628700px;}
.ls5_c00321{letter-spacing:-4.456463px;}
.ls34_c00321{letter-spacing:-4.418663px;}
.ls45_c00321{letter-spacing:-4.241738px;}
.ls20_c00321{letter-spacing:-4.158675px;}
.ls4b_c00321{letter-spacing:-3.997500px;}
.ls17_c00321{letter-spacing:-3.823875px;}
.ls6_c00321{letter-spacing:-3.717000px;}
.ls12_c00321{letter-spacing:-3.617250px;}
.ls2e_c00321{letter-spacing:-3.609375px;}
.lsb_c00321{letter-spacing:-3.455400px;}
.ls1b_c00321{letter-spacing:-3.169650px;}
.ls3b_c00321{letter-spacing:-3.051525px;}
.ls7_c00321{letter-spacing:-2.968875px;}
.ls46_c00321{letter-spacing:-2.905582px;}
.ls36_c00321{letter-spacing:-2.367000px;}
.ls3c_c00321{letter-spacing:-2.365275px;}
.ls3_c00321{letter-spacing:-2.229413px;}
.ls3a_c00321{letter-spacing:-2.214300px;}
.ls43_c00321{letter-spacing:-2.150400px;}
.ls14_c00321{letter-spacing:-2.123250px;}
.ls49_c00321{letter-spacing:-2.076750px;}
.ls3e_c00321{letter-spacing:-1.992195px;}
.ls3d_c00321{letter-spacing:-1.633733px;}
.ls4_c00321{letter-spacing:-1.489163px;}
.ls4a_c00321{letter-spacing:-1.431675px;}
.ls38_c00321{letter-spacing:-1.430400px;}
.ls1f_c00321{letter-spacing:-1.151700px;}
.ls39_c00321{letter-spacing:-0.963900px;}
.ls32_c00321{letter-spacing:-0.793425px;}
.ls9_c00321{letter-spacing:-0.787800px;}
.ls41_c00321{letter-spacing:-0.750750px;}
.ls2_c00321{letter-spacing:-0.740250px;}
.ls2f_c00321{letter-spacing:-0.664268px;}
.lsc_c00321{letter-spacing:0.000000px;}
.ls13_c00321{letter-spacing:0.669300px;}
.ls23_c00321{letter-spacing:0.671550px;}
.ls1d_c00321{letter-spacing:0.805027px;}
.ls18_c00321{letter-spacing:0.810000px;}
.ls27_c00321{letter-spacing:1.444950px;}
.ls1_c00321{letter-spacing:1.605825px;}
.ls24_c00321{letter-spacing:1.744200px;}
.ls21_c00321{letter-spacing:1.898700px;}
.ls47_c00321{letter-spacing:2.150400px;}
.ls44_c00321{letter-spacing:2.367000px;}
.ls37_c00321{letter-spacing:2.406450px;}
.ls0_c00321{letter-spacing:2.584800px;}
.ls19_c00321{letter-spacing:2.705228px;}
.ls25_c00321{letter-spacing:2.745000px;}
.ls31_c00321{letter-spacing:3.151575px;}
.ls2b_c00321{letter-spacing:3.284400px;}
.ls48_c00321{letter-spacing:3.598155px;}
.ls2d_c00321{letter-spacing:4.302383px;}
.ls28_c00321{letter-spacing:4.622700px;}
.ls1c_c00321{letter-spacing:5.062500px;}
.ls1e_c00321{letter-spacing:5.250000px;}
.ls10_c00321{letter-spacing:5.945625px;}
.ls26_c00321{letter-spacing:7.482150px;}
.ls29_c00321{letter-spacing:10.388333px;}
.ls30_c00321{letter-spacing:10.800000px;}
.ls22_c00321{letter-spacing:12.951750px;}
.ls2a_c00321{letter-spacing:68.257500px;}
.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;}
._18_c00321{margin-left:-9.383687px;}
._17_c00321{margin-left:-5.292787px;}
._1a_c00321{margin-left:-4.253718px;}
._15_c00321{margin-left:-2.967731px;}
._19_c00321{margin-left:-1.233834px;}
._12_c00321{width:1.876211px;}
._14_c00321{width:3.606260px;}
._9_c00321{width:5.051203px;}
._13_c00321{width:6.436921px;}
._11_c00321{width:7.786488px;}
._b_c00321{width:9.339720px;}
._d_c00321{width:10.725631px;}
._f_c00321{width:12.605096px;}
._5_c00321{width:14.410968px;}
._7_c00321{width:15.521566px;}
._a_c00321{width:18.754313px;}
._c_c00321{width:19.928742px;}
._8_c00321{width:21.301726px;}
._e_c00321{width:22.435964px;}
._10_c00321{width:24.535677px;}
._16_c00321{width:25.871738px;}
._1c_c00321{width:28.440904px;}
._1b_c00321{width:30.183062px;}
._0_c00321{width:46.674976px;}
._1_c00321{width:48.528841px;}
._2_c00321{width:51.331211px;}
._6_c00321{width:53.152684px;}
._3_c00321{width:56.003375px;}
._4_c00321{width:58.469304px;}
.fc0_c00321{color:transparent;}
.fs20_c00321{font-size:14.250000px;}
.fs21_c00321{font-size:20.250000px;}
.fs1f_c00321{font-size:21.750000px;}
.fs1e_c00321{font-size:24.000000px;}
.fs1d_c00321{font-size:26.250000px;}
.fsf_c00321{font-size:27.750000px;}
.fs1c_c00321{font-size:29.250000px;}
.fs13_c00321{font-size:30.000000px;}
.fs11_c00321{font-size:33.000000px;}
.fs1b_c00321{font-size:34.500000px;}
.fse_c00321{font-size:40.500000px;}
.fs10_c00321{font-size:42.000000px;}
.fs24_c00321{font-size:45.000000px;}
.fs12_c00321{font-size:45.750000px;}
.fs28_c00321{font-size:46.500000px;}
.fs26_c00321{font-size:47.250000px;}
.fs25_c00321{font-size:48.000000px;}
.fs27_c00321{font-size:48.750000px;}
.fs29_c00321{font-size:49.500000px;}
.fs14_c00321{font-size:52.500000px;}
.fs16_c00321{font-size:54.000000px;}
.fs15_c00321{font-size:55.500000px;}
.fs17_c00321{font-size:56.250000px;}
.fs19_c00321{font-size:57.000000px;}
.fs18_c00321{font-size:58.500000px;}
.fs1a_c00321{font-size:68.250000px;}
.fs7_c00321{font-size:69.000000px;}
.fs9_c00321{font-size:69.750000px;}
.fs3_c00321{font-size:72.750000px;}
.fs8_c00321{font-size:75.000000px;}
.fsc_c00321{font-size:77.250000px;}
.fs1_c00321{font-size:78.000000px;}
.fs0_c00321{font-size:78.750000px;}
.fs6_c00321{font-size:79.500000px;}
.fs4_c00321{font-size:80.250000px;}
.fs2_c00321{font-size:81.750000px;}
.fsb_c00321{font-size:82.500000px;}
.fsa_c00321{font-size:83.250000px;}
.fs5_c00321{font-size:84.750000px;}
.fsd_c00321{font-size:91.500000px;}
.fs23_c00321{font-size:95.250000px;}
.fs22_c00321{font-size:111.750000px;}
.y0_c00321{bottom:0.000000px;}
.y29_c00321{bottom:175.679700px;}
.y28_c00321{bottom:214.920600px;}
.y27_c00321{bottom:279.719790px;}
.y26_c00321{bottom:309.239325px;}
.y25_c00321{bottom:339.479235px;}
.y24_c00321{bottom:398.879565px;}
.y23_c00321{bottom:428.399235px;}
.y22_c00321{bottom:434.160465px;}
.y21_c00321{bottom:457.920600px;}
.y1f_c00321{bottom:487.799475px;}
.y20_c00321{bottom:487.799565px;}
.y1d_c00321{bottom:518.038695px;}
.y1e_c00321{bottom:518.039385px;}
.y1b_c00321{bottom:547.199760px;}
.y1c_c00321{bottom:547.199850px;}
.y19_c00321{bottom:577.439385px;}
.y1a_c00321{bottom:577.439670px;}
.y18_c00321{bottom:606.600540px;}
.y17_c00321{bottom:636.120075px;}
.y16_c00321{bottom:665.999790px;}
.y15_c00321{bottom:695.879520px;}
.y14_c00321{bottom:695.879655px;}
.y13_c00321{bottom:725.399190px;}
.y12_c00321{bottom:755.639100px;}
.y11_c00321{bottom:785.160855px;}
.y10_c00321{bottom:815.759145px;}
.yf_c00321{bottom:875.518590px;}
.yd_c00321{bottom:896.759100px;}
.ye_c00321{bottom:896.759490px;}
.yc_c00321{bottom:918.000000px;}
.yb_c00321{bottom:918.001275px;}
.ya_c00321{bottom:938.879910px;}
.y8_c00321{bottom:960.479055px;}
.y9_c00321{bottom:960.479190px;}
.y7_c00321{bottom:1020.240600px;}
.y6_c00321{bottom:1049.760135px;}
.y5_c00321{bottom:1049.760270px;}
.y4_c00321{bottom:1080.000180px;}
.y2_c00321{bottom:1109.519580px;}
.y3_c00321{bottom:1109.519715px;}
.y1_c00321{bottom:1139.759490px;}
.h26_c00321{height:14.862305px;}
.h27_c00321{height:21.120117px;}
.h25_c00321{height:22.684570px;}
.h22_c00321{height:25.031250px;}
.h21_c00321{height:27.377930px;}
.h10_c00321{height:28.942383px;}
.h14_c00321{height:29.428711px;}
.h20_c00321{height:29.478516px;}
.h23_c00321{height:30.506836px;}
.h24_c00321{height:31.289062px;}
.h1f_c00321{height:33.859863px;}
.h12_c00321{height:34.417969px;}
.hf_c00321{height:42.240234px;}
.h11_c00321{height:43.804688px;}
.h35_c00321{height:44.165039px;}
.h31_c00321{height:45.955078px;}
.h2c_c00321{height:46.107422px;}
.h36_c00321{height:46.373291px;}
.h2e_c00321{height:46.696289px;}
.h37_c00321{height:46.863281px;}
.h2b_c00321{height:46.933594px;}
.h30_c00321{height:47.109375px;}
.h33_c00321{height:47.619141px;}
.h13_c00321{height:47.715820px;}
.h32_c00321{height:47.845459px;}
.h2f_c00321{height:48.178711px;}
.h2d_c00321{height:48.375000px;}
.h34_c00321{height:48.581543px;}
.h15_c00321{height:52.910156px;}
.h16_c00321{height:55.933594px;}
.h17_c00321{height:56.320312px;}
.h18_c00321{height:56.689453px;}
.h19_c00321{height:58.957031px;}
.h1b_c00321{height:59.449219px;}
.h1a_c00321{height:61.013672px;}
.h8_c00321{height:67.719727px;}
.ha_c00321{height:68.455811px;}
.h1d_c00321{height:68.783203px;}
.h9_c00321{height:73.608398px;}
.h4_c00321{height:75.875977px;}
.h2_c00321{height:76.552734px;}
.h1_c00321{height:77.288818px;}
.hd_c00321{height:77.853516px;}
.h7_c00321{height:78.024902px;}
.h1e_c00321{height:78.222656px;}
.h5_c00321{height:78.760986px;}
.h3_c00321{height:80.233154px;}
.h1c_c00321{height:80.791992px;}
.hc_c00321{height:80.969238px;}
.hb_c00321{height:81.705322px;}
.h6_c00321{height:83.177490px;}
.h2a_c00321{height:83.756836px;}
.he_c00321{height:90.427734px;}
.h29_c00321{height:99.342773px;}
.h28_c00321{height:116.551758px;}
.h0_c00321{height:1263.000000px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x4_c00321{left:140.401995px;}
.x1_c00321{left:141.479715px;}
.x24_c00321{left:163.799565px;}
.x37_c00321{left:165.239850px;}
.x38_c00321{left:170.999400px;}
.x39_c00321{left:187.559685px;}
.xb_c00321{left:194.757840px;}
.x7_c00321{left:196.560060px;}
.x25_c00321{left:199.439685px;}
.x5_c00321{left:208.080000px;}
.x23_c00321{left:215.279850px;}
.x6_c00321{left:229.679700px;}
.x26_c00321{left:257.399850px;}
.x10_c00321{left:265.319850px;}
.x3a_c00321{left:283.318800px;}
.x11_c00321{left:288.359850px;}
.x43_c00321{left:296.639100px;}
.x27_c00321{left:303.838950px;}
.x28_c00321{left:323.279850px;}
.x44_c00321{left:338.759100px;}
.xc_c00321{left:340.919535px;}
.xe_c00321{left:346.319850px;}
.xd_c00321{left:354.958350px;}
.xf_c00321{left:363.239250px;}
.x3b_c00321{left:366.120000px;}
.x45_c00321{left:386.279250px;}
.x12_c00321{left:401.399235px;}
.x3c_c00321{left:408.239820px;}
.x31_c00321{left:426.238770px;}
.x18_c00321{left:429.478635px;}
.x3d_c00321{left:438.479685px;}
.x13_c00321{left:439.559100px;}
.x19_c00321{left:442.798920px;}
.x22_c00321{left:444.598530px;}
.x46_c00321{left:446.759085px;}
.x2_c00321{left:449.639700px;}
.x35_c00321{left:452.518620px;}
.x16_c00321{left:469.798920px;}
.x3_c00321{left:474.838530px;}
.x20_c00321{left:479.518620px;}
.x47_c00321{left:494.999400px;}
.x3e_c00321{left:496.439670px;}
.x29_c00321{left:500.399820px;}
.x17_c00321{left:502.199385px;}
.x48_c00321{left:506.879520px;}
.x21_c00321{left:516.958335px;}
.x3f_c00321{left:518.039385px;}
.x1a_c00321{left:519.479685px;}
.x2a_c00321{left:523.798920px;}
.x36_c00321{left:527.038920px;}
.x49_c00321{left:531.719100px;}
.x8_c00321{left:548.638500px;}
.x2b_c00321{left:550.798920px;}
.x32_c00321{left:554.038920px;}
.x4a_c00321{left:558.719100px;}
.x33_c00321{left:560.518620px;}
.x9_c00321{left:563.039985px;}
.x1b_c00321{left:574.199850px;}
.x40_c00321{left:577.798920px;}
.x4b_c00321{left:590.758530px;}
.x41_c00321{left:596.158770px;}
.xa_c00321{left:606.959385px;}
.x2c_c00321{left:612.719100px;}
.x42_c00321{left:616.319820px;}
.x1c_c00321{left:621.359250px;}
.x1d_c00321{left:634.679670px;}
.x2d_c00321{left:636.479235px;}
.x34_c00321{left:638.278800px;}
.x1e_c00321{left:664.919535px;}
.x2e_c00321{left:677.158770px;}
.x2f_c00321{left:692.639700px;}
.x1f_c00321{left:701.279850px;}
.x14_c00321{left:725.039985px;}
.x15_c00321{left:739.798920px;}
.x30_c00321{left:747.719100px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls33_c00321{letter-spacing:-15.209800pt;}
.ls2c_c00321{letter-spacing:-14.532000pt;}
.ls40_c00321{letter-spacing:-9.977453pt;}
.ls1a_c00321{letter-spacing:-8.060947pt;}
.ls35_c00321{letter-spacing:-7.924000pt;}
.ls15_c00321{letter-spacing:-7.637000pt;}
.lsf_c00321{letter-spacing:-7.566000pt;}
.lsa_c00321{letter-spacing:-7.266700pt;}
.ls11_c00321{letter-spacing:-6.601000pt;}
.lsd_c00321{letter-spacing:-5.943000pt;}
.ls8_c00321{letter-spacing:-5.285000pt;}
.lse_c00321{letter-spacing:-4.619300pt;}
.ls42_c00321{letter-spacing:-4.345200pt;}
.ls3f_c00321{letter-spacing:-4.130133pt;}
.ls16_c00321{letter-spacing:-4.114400pt;}
.ls5_c00321{letter-spacing:-3.961300pt;}
.ls34_c00321{letter-spacing:-3.927700pt;}
.ls45_c00321{letter-spacing:-3.770433pt;}
.ls20_c00321{letter-spacing:-3.696600pt;}
.ls4b_c00321{letter-spacing:-3.553333pt;}
.ls17_c00321{letter-spacing:-3.399000pt;}
.ls6_c00321{letter-spacing:-3.304000pt;}
.ls12_c00321{letter-spacing:-3.215333pt;}
.ls2e_c00321{letter-spacing:-3.208333pt;}
.lsb_c00321{letter-spacing:-3.071467pt;}
.ls1b_c00321{letter-spacing:-2.817467pt;}
.ls3b_c00321{letter-spacing:-2.712467pt;}
.ls7_c00321{letter-spacing:-2.639000pt;}
.ls46_c00321{letter-spacing:-2.582740pt;}
.ls36_c00321{letter-spacing:-2.104000pt;}
.ls3c_c00321{letter-spacing:-2.102467pt;}
.ls3_c00321{letter-spacing:-1.981700pt;}
.ls3a_c00321{letter-spacing:-1.968267pt;}
.ls43_c00321{letter-spacing:-1.911467pt;}
.ls14_c00321{letter-spacing:-1.887333pt;}
.ls49_c00321{letter-spacing:-1.846000pt;}
.ls3e_c00321{letter-spacing:-1.770840pt;}
.ls3d_c00321{letter-spacing:-1.452207pt;}
.ls4_c00321{letter-spacing:-1.323700pt;}
.ls4a_c00321{letter-spacing:-1.272600pt;}
.ls38_c00321{letter-spacing:-1.271467pt;}
.ls1f_c00321{letter-spacing:-1.023733pt;}
.ls39_c00321{letter-spacing:-0.856800pt;}
.ls32_c00321{letter-spacing:-0.705267pt;}
.ls9_c00321{letter-spacing:-0.700267pt;}
.ls41_c00321{letter-spacing:-0.667333pt;}
.ls2_c00321{letter-spacing:-0.658000pt;}
.ls2f_c00321{letter-spacing:-0.590460pt;}
.lsc_c00321{letter-spacing:0.000000pt;}
.ls13_c00321{letter-spacing:0.594933pt;}
.ls23_c00321{letter-spacing:0.596933pt;}
.ls1d_c00321{letter-spacing:0.715580pt;}
.ls18_c00321{letter-spacing:0.720000pt;}
.ls27_c00321{letter-spacing:1.284400pt;}
.ls1_c00321{letter-spacing:1.427400pt;}
.ls24_c00321{letter-spacing:1.550400pt;}
.ls21_c00321{letter-spacing:1.687733pt;}
.ls47_c00321{letter-spacing:1.911467pt;}
.ls44_c00321{letter-spacing:2.104000pt;}
.ls37_c00321{letter-spacing:2.139067pt;}
.ls0_c00321{letter-spacing:2.297600pt;}
.ls19_c00321{letter-spacing:2.404647pt;}
.ls25_c00321{letter-spacing:2.440000pt;}
.ls31_c00321{letter-spacing:2.801400pt;}
.ls2b_c00321{letter-spacing:2.919467pt;}
.ls48_c00321{letter-spacing:3.198360pt;}
.ls2d_c00321{letter-spacing:3.824340pt;}
.ls28_c00321{letter-spacing:4.109067pt;}
.ls1c_c00321{letter-spacing:4.500000pt;}
.ls1e_c00321{letter-spacing:4.666667pt;}
.ls10_c00321{letter-spacing:5.285000pt;}
.ls26_c00321{letter-spacing:6.650800pt;}
.ls29_c00321{letter-spacing:9.234073pt;}
.ls30_c00321{letter-spacing:9.600000pt;}
.ls22_c00321{letter-spacing:11.512667pt;}
.ls2a_c00321{letter-spacing:60.673333pt;}
.ws0_c00321{word-spacing:0.000000pt;}
._18_c00321{margin-left:-8.341055pt;}
._17_c00321{margin-left:-4.704700pt;}
._1a_c00321{margin-left:-3.781083pt;}
._15_c00321{margin-left:-2.637983pt;}
._19_c00321{margin-left:-1.096742pt;}
._12_c00321{width:1.667743pt;}
._14_c00321{width:3.205564pt;}
._9_c00321{width:4.489958pt;}
._13_c00321{width:5.721708pt;}
._11_c00321{width:6.921323pt;}
._b_c00321{width:8.301974pt;}
._d_c00321{width:9.533894pt;}
._f_c00321{width:11.204530pt;}
._5_c00321{width:12.809749pt;}
._7_c00321{width:13.796947pt;}
._a_c00321{width:16.670500pt;}
._c_c00321{width:17.714438pt;}
._8_c00321{width:18.934868pt;}
._e_c00321{width:19.943079pt;}
._10_c00321{width:21.809491pt;}
._16_c00321{width:22.997100pt;}
._1c_c00321{width:25.280804pt;}
._1b_c00321{width:26.829389pt;}
._0_c00321{width:41.488868pt;}
._1_c00321{width:43.136747pt;}
._2_c00321{width:45.627743pt;}
._6_c00321{width:47.246830pt;}
._3_c00321{width:49.780777pt;}
._4_c00321{width:51.972715pt;}
.fs20_c00321{font-size:12.666667pt;}
.fs21_c00321{font-size:18.000000pt;}
.fs1f_c00321{font-size:19.333333pt;}
.fs1e_c00321{font-size:21.333333pt;}
.fs1d_c00321{font-size:23.333333pt;}
.fsf_c00321{font-size:24.666667pt;}
.fs1c_c00321{font-size:26.000000pt;}
.fs13_c00321{font-size:26.666667pt;}
.fs11_c00321{font-size:29.333333pt;}
.fs1b_c00321{font-size:30.666667pt;}
.fse_c00321{font-size:36.000000pt;}
.fs10_c00321{font-size:37.333333pt;}
.fs24_c00321{font-size:40.000000pt;}
.fs12_c00321{font-size:40.666667pt;}
.fs28_c00321{font-size:41.333333pt;}
.fs26_c00321{font-size:42.000000pt;}
.fs25_c00321{font-size:42.666667pt;}
.fs27_c00321{font-size:43.333333pt;}
.fs29_c00321{font-size:44.000000pt;}
.fs14_c00321{font-size:46.666667pt;}
.fs16_c00321{font-size:48.000000pt;}
.fs15_c00321{font-size:49.333333pt;}
.fs17_c00321{font-size:50.000000pt;}
.fs19_c00321{font-size:50.666667pt;}
.fs18_c00321{font-size:52.000000pt;}
.fs1a_c00321{font-size:60.666667pt;}
.fs7_c00321{font-size:61.333333pt;}
.fs9_c00321{font-size:62.000000pt;}
.fs3_c00321{font-size:64.666667pt;}
.fs8_c00321{font-size:66.666667pt;}
.fsc_c00321{font-size:68.666667pt;}
.fs1_c00321{font-size:69.333333pt;}
.fs0_c00321{font-size:70.000000pt;}
.fs6_c00321{font-size:70.666667pt;}
.fs4_c00321{font-size:71.333333pt;}
.fs2_c00321{font-size:72.666667pt;}
.fsb_c00321{font-size:73.333333pt;}
.fsa_c00321{font-size:74.000000pt;}
.fs5_c00321{font-size:75.333333pt;}
.fsd_c00321{font-size:81.333333pt;}
.fs23_c00321{font-size:84.666667pt;}
.fs22_c00321{font-size:99.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y29_c00321{bottom:156.159733pt;}
.y28_c00321{bottom:191.040533pt;}
.y27_c00321{bottom:248.639813pt;}
.y26_c00321{bottom:274.879400pt;}
.y25_c00321{bottom:301.759320pt;}
.y24_c00321{bottom:354.559613pt;}
.y23_c00321{bottom:380.799320pt;}
.y22_c00321{bottom:385.920413pt;}
.y21_c00321{bottom:407.040533pt;}
.y1f_c00321{bottom:433.599533pt;}
.y20_c00321{bottom:433.599613pt;}
.y1d_c00321{bottom:460.478840pt;}
.y1e_c00321{bottom:460.479453pt;}
.y1b_c00321{bottom:486.399787pt;}
.y1c_c00321{bottom:486.399867pt;}
.y19_c00321{bottom:513.279453pt;}
.y1a_c00321{bottom:513.279707pt;}
.y18_c00321{bottom:539.200480pt;}
.y17_c00321{bottom:565.440067pt;}
.y16_c00321{bottom:591.999813pt;}
.y15_c00321{bottom:618.559573pt;}
.y14_c00321{bottom:618.559693pt;}
.y13_c00321{bottom:644.799280pt;}
.y12_c00321{bottom:671.679200pt;}
.y11_c00321{bottom:697.920760pt;}
.y10_c00321{bottom:725.119240pt;}
.yf_c00321{bottom:778.238747pt;}
.yd_c00321{bottom:797.119200pt;}
.ye_c00321{bottom:797.119547pt;}
.yc_c00321{bottom:816.000000pt;}
.yb_c00321{bottom:816.001133pt;}
.ya_c00321{bottom:834.559920pt;}
.y8_c00321{bottom:853.759160pt;}
.y9_c00321{bottom:853.759280pt;}
.y7_c00321{bottom:906.880533pt;}
.y6_c00321{bottom:933.120120pt;}
.y5_c00321{bottom:933.120240pt;}
.y4_c00321{bottom:960.000160pt;}
.y2_c00321{bottom:986.239627pt;}
.y3_c00321{bottom:986.239747pt;}
.y1_c00321{bottom:1013.119547pt;}
.h26_c00321{height:13.210937pt;}
.h27_c00321{height:18.773437pt;}
.h25_c00321{height:20.164062pt;}
.h22_c00321{height:22.250000pt;}
.h21_c00321{height:24.335938pt;}
.h10_c00321{height:25.726562pt;}
.h14_c00321{height:26.158854pt;}
.h20_c00321{height:26.203125pt;}
.h23_c00321{height:27.117188pt;}
.h24_c00321{height:27.812500pt;}
.h1f_c00321{height:30.097656pt;}
.h12_c00321{height:30.593750pt;}
.hf_c00321{height:37.546875pt;}
.h11_c00321{height:38.937500pt;}
.h35_c00321{height:39.257812pt;}
.h31_c00321{height:40.848958pt;}
.h2c_c00321{height:40.984375pt;}
.h36_c00321{height:41.220703pt;}
.h2e_c00321{height:41.507812pt;}
.h37_c00321{height:41.656250pt;}
.h2b_c00321{height:41.718750pt;}
.h30_c00321{height:41.875000pt;}
.h33_c00321{height:42.328125pt;}
.h13_c00321{height:42.414062pt;}
.h32_c00321{height:42.529297pt;}
.h2f_c00321{height:42.825521pt;}
.h2d_c00321{height:43.000000pt;}
.h34_c00321{height:43.183594pt;}
.h15_c00321{height:47.031250pt;}
.h16_c00321{height:49.718750pt;}
.h17_c00321{height:50.062500pt;}
.h18_c00321{height:50.390625pt;}
.h19_c00321{height:52.406250pt;}
.h1b_c00321{height:52.843750pt;}
.h1a_c00321{height:54.234375pt;}
.h8_c00321{height:60.195312pt;}
.ha_c00321{height:60.849609pt;}
.h1d_c00321{height:61.140625pt;}
.h9_c00321{height:65.429688pt;}
.h4_c00321{height:67.445312pt;}
.h2_c00321{height:68.046875pt;}
.h1_c00321{height:68.701172pt;}
.hd_c00321{height:69.203125pt;}
.h7_c00321{height:69.355469pt;}
.h1e_c00321{height:69.531250pt;}
.h5_c00321{height:70.009766pt;}
.h3_c00321{height:71.318359pt;}
.h1c_c00321{height:71.815104pt;}
.hc_c00321{height:71.972656pt;}
.hb_c00321{height:72.626953pt;}
.h6_c00321{height:73.935547pt;}
.h2a_c00321{height:74.450521pt;}
.he_c00321{height:80.380208pt;}
.h29_c00321{height:88.304688pt;}
.h28_c00321{height:103.601562pt;}
.h0_c00321{height:1122.666667pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x4_c00321{left:124.801773pt;}
.x1_c00321{left:125.759747pt;}
.x24_c00321{left:145.599613pt;}
.x37_c00321{left:146.879867pt;}
.x38_c00321{left:151.999467pt;}
.x39_c00321{left:166.719720pt;}
.xb_c00321{left:173.118080pt;}
.x7_c00321{left:174.720053pt;}
.x25_c00321{left:177.279720pt;}
.x5_c00321{left:184.960000pt;}
.x23_c00321{left:191.359867pt;}
.x6_c00321{left:204.159733pt;}
.x26_c00321{left:228.799867pt;}
.x10_c00321{left:235.839867pt;}
.x3a_c00321{left:251.838933pt;}
.x11_c00321{left:256.319867pt;}
.x43_c00321{left:263.679200pt;}
.x27_c00321{left:270.079067pt;}
.x28_c00321{left:287.359867pt;}
.x44_c00321{left:301.119200pt;}
.xc_c00321{left:303.039587pt;}
.xe_c00321{left:307.839867pt;}
.xd_c00321{left:315.518533pt;}
.xf_c00321{left:322.879333pt;}
.x3b_c00321{left:325.440000pt;}
.x45_c00321{left:343.359333pt;}
.x12_c00321{left:356.799320pt;}
.x3c_c00321{left:362.879840pt;}
.x31_c00321{left:378.878907pt;}
.x18_c00321{left:381.758787pt;}
.x3d_c00321{left:389.759720pt;}
.x13_c00321{left:390.719200pt;}
.x19_c00321{left:393.599040pt;}
.x22_c00321{left:395.198693pt;}
.x46_c00321{left:397.119187pt;}
.x2_c00321{left:399.679733pt;}
.x35_c00321{left:402.238773pt;}
.x16_c00321{left:417.599040pt;}
.x3_c00321{left:422.078693pt;}
.x20_c00321{left:426.238773pt;}
.x47_c00321{left:439.999467pt;}
.x3e_c00321{left:441.279707pt;}
.x29_c00321{left:444.799840pt;}
.x17_c00321{left:446.399453pt;}
.x48_c00321{left:450.559573pt;}
.x21_c00321{left:459.518520pt;}
.x3f_c00321{left:460.479453pt;}
.x1a_c00321{left:461.759720pt;}
.x2a_c00321{left:465.599040pt;}
.x36_c00321{left:468.479040pt;}
.x49_c00321{left:472.639200pt;}
.x8_c00321{left:487.678667pt;}
.x2b_c00321{left:489.599040pt;}
.x32_c00321{left:492.479040pt;}
.x4a_c00321{left:496.639200pt;}
.x33_c00321{left:498.238773pt;}
.x9_c00321{left:500.479987pt;}
.x1b_c00321{left:510.399867pt;}
.x40_c00321{left:513.599040pt;}
.x4b_c00321{left:525.118693pt;}
.x41_c00321{left:529.918907pt;}
.xa_c00321{left:539.519453pt;}
.x2c_c00321{left:544.639200pt;}
.x42_c00321{left:547.839840pt;}
.x1c_c00321{left:552.319333pt;}
.x1d_c00321{left:564.159707pt;}
.x2d_c00321{left:565.759320pt;}
.x34_c00321{left:567.358933pt;}
.x1e_c00321{left:591.039587pt;}
.x2e_c00321{left:601.918907pt;}
.x2f_c00321{left:615.679733pt;}
.x1f_c00321{left:623.359867pt;}
.x14_c00321{left:644.479987pt;}
.x15_c00321{left:657.599040pt;}
.x30_c00321{left:664.639200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_463726fb132d559be602b770.woff2')format("woff");}.ff1_c00322{font-family:ff1_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:ff2_c00322;src:url('chunks/assets/font_a416701d3f87dd3d11a759be.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.364746;font-style:normal;font-weight:normal;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_75594516b4405fcb5c5e6034.woff2')format("woff");}.ff3_c00322{font-family:ff3_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:ff4_c00322;src:url('chunks/assets/font_8093ea72cd6599743d2381c0.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_2aa9933fda09a14e0a152b2b.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00322;src:url('chunks/assets/font_6fa0140f7b79125b737a5fa1.woff2')format("woff");}.ff7_c00322{font-family:ff7_c00322;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1f_c00322{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);}
.m1b_c00322{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m19_c00322{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m21_c00322{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);}
.m22_c00322{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221649,0.000000,0.000000,0.250000,0,0);}
.m28_c00322{transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);}
.me_c00322{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m36_c00322{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m2d_c00322{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m25_c00322{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m33_c00322{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m0_c00322{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m39_c00322{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m17_c00322{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m2b_c00322{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m37_c00322{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m29_c00322{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);}
.m32_c00322{transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);}
.m3b_c00322{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m26_c00322{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287383,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m31_c00322{transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298246,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m24_c00322{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls6_c00322{letter-spacing:-19.164600px;}
.ls1b_c00322{letter-spacing:-14.594850px;}
.ls2b_c00322{letter-spacing:-13.501950px;}
.ls14_c00322{letter-spacing:-9.939375px;}
.ls1f_c00322{letter-spacing:-8.175038px;}
.ls21_c00322{letter-spacing:-7.804500px;}
.ls20_c00322{letter-spacing:-7.426125px;}
.ls2a_c00322{letter-spacing:-6.720600px;}
.ls1a_c00322{letter-spacing:-6.685875px;}
.ls1d_c00322{letter-spacing:-6.635078px;}
.ls2d_c00322{letter-spacing:-6.528600px;}
.ls23_c00322{letter-spacing:-6.300000px;}
.ls43_c00322{letter-spacing:-6.192000px;}
.lsf_c00322{letter-spacing:-5.945625px;}
.ls2c_c00322{letter-spacing:-5.534550px;}
.ls11_c00322{letter-spacing:-5.196713px;}
.ls12_c00322{letter-spacing:-5.158425px;}
.ls2e_c00322{letter-spacing:-5.140800px;}
.ls2f_c00322{letter-spacing:-5.071500px;}
.ls32_c00322{letter-spacing:-5.008050px;}
.ls24_c00322{letter-spacing:-4.794225px;}
.ls10_c00322{letter-spacing:-4.456463px;}
.lsd_c00322{letter-spacing:-4.334498px;}
.ls30_c00322{letter-spacing:-4.177388px;}
.ls41_c00322{letter-spacing:-3.719677px;}
.ls4_c00322{letter-spacing:-3.717000px;}
.ls15_c00322{letter-spacing:-3.610800px;}
.ls19_c00322{letter-spacing:-3.306300px;}
.ls8_c00322{letter-spacing:-3.258150px;}
.ls7_c00322{letter-spacing:-3.149213px;}
.ls38_c00322{letter-spacing:-3.142125px;}
.ls16_c00322{letter-spacing:-2.997150px;}
.ls2_c00322{letter-spacing:-2.968875px;}
.ls27_c00322{letter-spacing:-2.538975px;}
.ls1c_c00322{letter-spacing:-2.418360px;}
.lsa_c00322{letter-spacing:-2.331990px;}
.ls1_c00322{letter-spacing:-2.229413px;}
.ls1e_c00322{letter-spacing:-2.224028px;}
.ls3e_c00322{letter-spacing:-2.182950px;}
.lsb_c00322{letter-spacing:-2.165693px;}
.ls44_c00322{letter-spacing:-2.123055px;}
.ls39_c00322{letter-spacing:-2.088000px;}
.lsc_c00322{letter-spacing:-1.945125px;}
.ls22_c00322{letter-spacing:-1.740375px;}
.ls34_c00322{letter-spacing:-1.502550px;}
.ls3_c00322{letter-spacing:-1.489163px;}
.ls42_c00322{letter-spacing:-1.477125px;}
.ls3d_c00322{letter-spacing:-1.455773px;}
.ls36_c00322{letter-spacing:-1.315763px;}
.ls13_c00322{letter-spacing:-0.804173px;}
.ls3f_c00322{letter-spacing:-0.800625px;}
.ls18_c00322{letter-spacing:-0.777600px;}
.ls3a_c00322{letter-spacing:-0.775125px;}
.ls3c_c00322{letter-spacing:-0.748650px;}
.ls5_c00322{letter-spacing:-0.740250px;}
.lse_c00322{letter-spacing:0.000000px;}
.ls25_c00322{letter-spacing:0.722655px;}
.ls31_c00322{letter-spacing:1.632150px;}
.ls40_c00322{letter-spacing:1.653113px;}
.ls26_c00322{letter-spacing:2.272500px;}
.ls0_c00322{letter-spacing:2.445900px;}
.ls37_c00322{letter-spacing:2.682585px;}
.ls33_c00322{letter-spacing:3.300000px;}
.ls3b_c00322{letter-spacing:3.386250px;}
.ls17_c00322{letter-spacing:3.476250px;}
.ls35_c00322{letter-spacing:5.400450px;}
.ls9_c00322{letter-spacing:9.016950px;}
.ls29_c00322{letter-spacing:13.016115px;}
.ls28_c00322{letter-spacing:41.834325px;}
.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;}
._f_c00322{margin-left:-32.497792px;}
._17_c00322{margin-left:-23.691403px;}
._15_c00322{margin-left:-8.266685px;}
._a_c00322{margin-left:-6.582579px;}
._12_c00322{margin-left:-4.476269px;}
._d_c00322{margin-left:-2.930941px;}
._c_c00322{margin-left:-1.376951px;}
._b_c00322{width:1.103644px;}
._8_c00322{width:2.764080px;}
._1_c00322{width:4.334400px;}
._7_c00322{width:5.969250px;}
._e_c00322{width:7.167736px;}
._3_c00322{width:8.267888px;}
._2_c00322{width:10.128647px;}
._10_c00322{width:11.260046px;}
._0_c00322{width:12.684188px;}
._6_c00322{width:14.014439px;}
._4_c00322{width:15.357988px;}
._14_c00322{width:17.672614px;}
._5_c00322{width:18.857921px;}
._9_c00322{width:21.253897px;}
._11_c00322{width:22.975625px;}
._16_c00322{width:24.203352px;}
._13_c00322{width:27.956562px;}
.fc0_c00322{color:transparent;}
.fs1e_c00322{font-size:40.500000px;}
.fs17_c00322{font-size:41.250000px;}
.fs1b_c00322{font-size:42.750000px;}
.fs19_c00322{font-size:45.750000px;}
.fs16_c00322{font-size:46.500000px;}
.fs18_c00322{font-size:47.250000px;}
.fs1c_c00322{font-size:48.000000px;}
.fs15_c00322{font-size:48.750000px;}
.fs1a_c00322{font-size:49.500000px;}
.fs1d_c00322{font-size:52.500000px;}
.fs10_c00322{font-size:63.750000px;}
.fsb_c00322{font-size:67.500000px;}
.fs14_c00322{font-size:69.000000px;}
.fs3_c00322{font-size:70.500000px;}
.fs5_c00322{font-size:71.250000px;}
.fs11_c00322{font-size:72.750000px;}
.fs13_c00322{font-size:73.500000px;}
.fs12_c00322{font-size:75.000000px;}
.fs4_c00322{font-size:75.750000px;}
.fs9_c00322{font-size:76.500000px;}
.fs6_c00322{font-size:77.250000px;}
.fs8_c00322{font-size:78.000000px;}
.fs0_c00322{font-size:78.750000px;}
.fsa_c00322{font-size:79.500000px;}
.fs2_c00322{font-size:80.250000px;}
.fs1_c00322{font-size:81.000000px;}
.fs7_c00322{font-size:81.750000px;}
.fsc_c00322{font-size:82.500000px;}
.fse_c00322{font-size:84.000000px;}
.fsf_c00322{font-size:84.750000px;}
.fsd_c00322{font-size:85.500000px;}
.y0_c00322{bottom:0.000000px;}
.y25_c00322{bottom:209.518635px;}
.y24_c00322{bottom:249.479685px;}
.y23_c00322{bottom:335.519415px;}
.y21_c00322{bottom:365.038875px;}
.y22_c00322{bottom:365.038950px;}
.y20_c00322{bottom:395.278800px;}
.y1f_c00322{bottom:425.159415px;}
.y1e_c00322{bottom:454.680150px;}
.y1d_c00322{bottom:484.199685px;}
.y1c_c00322{bottom:514.079400px;}
.y1b_c00322{bottom:573.479880px;}
.y1a_c00322{bottom:602.999400px;}
.y19_c00322{bottom:603.000255px;}
.y18_c00322{bottom:632.879970px;}
.y17_c00322{bottom:632.880300px;}
.y15_c00322{bottom:662.399775px;}
.y16_c00322{bottom:662.399820px;}
.y13_c00322{bottom:692.638890px;}
.y14_c00322{bottom:692.639700px;}
.y12_c00322{bottom:722.518620px;}
.y11_c00322{bottom:752.758530px;}
.y10_c00322{bottom:781.558065px;}
.yf_c00322{bottom:811.797975px;}
.ye_c00322{bottom:841.677705px;}
.yc_c00322{bottom:901.077345px;}
.yd_c00322{bottom:901.078770px;}
.yb_c00322{bottom:922.318275px;}
.ya_c00322{bottom:943.559160px;}
.y9_c00322{bottom:964.800090px;}
.y7_c00322{bottom:986.038560px;}
.y8_c00322{bottom:986.038875px;}
.y5_c00322{bottom:1045.799355px;}
.y6_c00322{bottom:1045.800105px;}
.y4_c00322{bottom:1075.679070px;}
.y2_c00322{bottom:1104.839490px;}
.y3_c00322{bottom:1104.839535px;}
.y1_c00322{bottom:1135.079400px;}
.h2b_c00322{height:42.240234px;}
.h21_c00322{height:43.022461px;}
.h25_c00322{height:44.586914px;}
.h20_c00322{height:45.637207px;}
.h23_c00322{height:46.107422px;}
.h22_c00322{height:46.373291px;}
.h1f_c00322{height:46.863281px;}
.h26_c00322{height:47.109375px;}
.h2a_c00322{height:47.437500px;}
.h29_c00322{height:47.619141px;}
.h1e_c00322{height:47.845459px;}
.h24_c00322{height:48.581543px;}
.h27_c00322{height:49.130859px;}
.h28_c00322{height:51.525879px;}
.h17_c00322{height:64.248047px;}
.h11_c00322{height:66.247559px;}
.h5_c00322{height:69.191895px;}
.h8_c00322{height:69.927979px;}
.h1b_c00322{height:71.964844px;}
.he_c00322{height:74.311523px;}
.h7_c00322{height:74.344482px;}
.hf_c00322{height:75.080566px;}
.h9_c00322{height:75.816650px;}
.h18_c00322{height:75.875977px;}
.hc_c00322{height:76.552734px;}
.h1a_c00322{height:76.658203px;}
.h1_c00322{height:77.288818px;}
.hd_c00322{height:77.853516px;}
.h10_c00322{height:78.024902px;}
.h19_c00322{height:78.222656px;}
.ha_c00322{height:78.760986px;}
.h3_c00322{height:79.365234px;}
.h6_c00322{height:79.497070px;}
.h1d_c00322{height:79.787109px;}
.h2_c00322{height:80.050781px;}
.hb_c00322{height:80.233154px;}
.h4_c00322{height:80.876953px;}
.h12_c00322{height:80.969238px;}
.h16_c00322{height:81.533203px;}
.h1c_c00322{height:81.632812px;}
.h14_c00322{height:82.441406px;}
.h15_c00322{height:83.177490px;}
.h13_c00322{height:84.498047px;}
.h0_c00322{height:1263.000000px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:138.958350px;}
.x2_c00322{left:140.758845px;}
.x2b_c00322{left:160.559685px;}
.x2a_c00322{left:165.958350px;}
.x3a_c00322{left:170.999400px;}
.x44_c00322{left:185.040000px;}
.x3b_c00322{left:187.198785px;}
.x15_c00322{left:189.000000px;}
.x12_c00322{left:193.316910px;}
.xf_c00322{left:194.399025px;}
.x2c_c00322{left:215.639100px;}
.x16_c00322{left:218.878950px;}
.x1f_c00322{left:230.759100px;}
.x20_c00322{left:250.199850px;}
.x5_c00322{left:257.399850px;}
.x2d_c00322{left:281.159850px;}
.x45_c00322{left:293.758500px;}
.x3c_c00322{left:296.279850px;}
.x6_c00322{left:308.878350px;}
.x17_c00322{left:311.038950px;}
.x7_c00322{left:332.999385px;}
.x18_c00322{left:335.878350px;}
.x3d_c00322{left:338.399850px;}
.x2e_c00322{left:348.478635px;}
.x1d_c00322{left:349.918950px;}
.x28_c00322{left:352.799535px;}
.x1e_c00322{left:366.838515px;}
.x29_c00322{left:371.879535px;}
.x38_c00322{left:376.198785px;}
.x3e_c00322{left:385.559100px;}
.x39_c00322{left:391.679670px;}
.x19_c00322{left:397.439250px;}
.x2f_c00322{left:408.958335px;}
.x8_c00322{left:413.999400px;}
.x1a_c00322{left:423.359850px;}
.xd_c00322{left:424.798515px;}
.x37_c00322{left:428.399235px;}
.xe_c00322{left:439.559100px;}
.x9_c00322{left:443.159820px;}
.x3f_c00322{left:446.038920px;}
.x21_c00322{left:457.918950px;}
.xa_c00322{left:463.319235px;}
.x1b_c00322{left:475.558635px;}
.x46_c00322{left:476.998950px;}
.x40_c00322{left:479.518620px;}
.x23_c00322{left:485.279850px;}
.x30_c00322{left:489.239820px;}
.x47_c00322{left:492.118785px;}
.x22_c00322{left:494.638500px;}
.x3_c00322{left:498.959385px;}
.x48_c00322{left:503.998950px;}
.x24_c00322{left:505.439250px;}
.x27_c00322{left:512.279850px;}
.x31_c00322{left:519.838950px;}
.x49_c00322{left:528.479235px;}
.x4_c00322{left:531.719100px;}
.x10_c00322{left:548.279250px;}
.x4a_c00322{left:555.119985px;}
.x41_c00322{left:557.639700px;}
.x32_c00322{left:582.119985px;}
.x1c_c00322{left:583.199385px;}
.x4b_c00322{left:587.879520px;}
.x42_c00322{left:590.039985px;}
.x11_c00322{left:591.478635px;}
.x33_c00322{left:608.759085px;}
.x4c_c00322{left:613.080000px;}
.x43_c00322{left:615.238770px;}
.x4d_c00322{left:627.479685px;}
.x34_c00322{left:635.399820px;}
.xb_c00322{left:676.799520px;}
.x25_c00322{left:679.319235px;}
.x26_c00322{left:693.719100px;}
.x13_c00322{left:695.159370px;}
.xc_c00322{left:703.799520px;}
.x14_c00322{left:713.519070px;}
.x35_c00322{left:731.519670px;}
.x36_c00322{left:763.199850px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls6_c00322{letter-spacing:-17.035200pt;}
.ls1b_c00322{letter-spacing:-12.973200pt;}
.ls2b_c00322{letter-spacing:-12.001733pt;}
.ls14_c00322{letter-spacing:-8.835000pt;}
.ls1f_c00322{letter-spacing:-7.266700pt;}
.ls21_c00322{letter-spacing:-6.937333pt;}
.ls20_c00322{letter-spacing:-6.601000pt;}
.ls2a_c00322{letter-spacing:-5.973867pt;}
.ls1a_c00322{letter-spacing:-5.943000pt;}
.ls1d_c00322{letter-spacing:-5.897847pt;}
.ls2d_c00322{letter-spacing:-5.803200pt;}
.ls23_c00322{letter-spacing:-5.600000pt;}
.ls43_c00322{letter-spacing:-5.504000pt;}
.lsf_c00322{letter-spacing:-5.285000pt;}
.ls2c_c00322{letter-spacing:-4.919600pt;}
.ls11_c00322{letter-spacing:-4.619300pt;}
.ls12_c00322{letter-spacing:-4.585267pt;}
.ls2e_c00322{letter-spacing:-4.569600pt;}
.ls2f_c00322{letter-spacing:-4.508000pt;}
.ls32_c00322{letter-spacing:-4.451600pt;}
.ls24_c00322{letter-spacing:-4.261533pt;}
.ls10_c00322{letter-spacing:-3.961300pt;}
.lsd_c00322{letter-spacing:-3.852887pt;}
.ls30_c00322{letter-spacing:-3.713233pt;}
.ls41_c00322{letter-spacing:-3.306380pt;}
.ls4_c00322{letter-spacing:-3.304000pt;}
.ls15_c00322{letter-spacing:-3.209600pt;}
.ls19_c00322{letter-spacing:-2.938933pt;}
.ls8_c00322{letter-spacing:-2.896133pt;}
.ls7_c00322{letter-spacing:-2.799300pt;}
.ls38_c00322{letter-spacing:-2.793000pt;}
.ls16_c00322{letter-spacing:-2.664133pt;}
.ls2_c00322{letter-spacing:-2.639000pt;}
.ls27_c00322{letter-spacing:-2.256867pt;}
.ls1c_c00322{letter-spacing:-2.149653pt;}
.lsa_c00322{letter-spacing:-2.072880pt;}
.ls1_c00322{letter-spacing:-1.981700pt;}
.ls1e_c00322{letter-spacing:-1.976913pt;}
.ls3e_c00322{letter-spacing:-1.940400pt;}
.lsb_c00322{letter-spacing:-1.925060pt;}
.ls44_c00322{letter-spacing:-1.887160pt;}
.ls39_c00322{letter-spacing:-1.856000pt;}
.lsc_c00322{letter-spacing:-1.729000pt;}
.ls22_c00322{letter-spacing:-1.547000pt;}
.ls34_c00322{letter-spacing:-1.335600pt;}
.ls3_c00322{letter-spacing:-1.323700pt;}
.ls42_c00322{letter-spacing:-1.313000pt;}
.ls3d_c00322{letter-spacing:-1.294020pt;}
.ls36_c00322{letter-spacing:-1.169567pt;}
.ls13_c00322{letter-spacing:-0.714820pt;}
.ls3f_c00322{letter-spacing:-0.711667pt;}
.ls18_c00322{letter-spacing:-0.691200pt;}
.ls3a_c00322{letter-spacing:-0.689000pt;}
.ls3c_c00322{letter-spacing:-0.665467pt;}
.ls5_c00322{letter-spacing:-0.658000pt;}
.lse_c00322{letter-spacing:0.000000pt;}
.ls25_c00322{letter-spacing:0.642360pt;}
.ls31_c00322{letter-spacing:1.450800pt;}
.ls40_c00322{letter-spacing:1.469433pt;}
.ls26_c00322{letter-spacing:2.020000pt;}
.ls0_c00322{letter-spacing:2.174133pt;}
.ls37_c00322{letter-spacing:2.384520pt;}
.ls33_c00322{letter-spacing:2.933333pt;}
.ls3b_c00322{letter-spacing:3.010000pt;}
.ls17_c00322{letter-spacing:3.090000pt;}
.ls35_c00322{letter-spacing:4.800400pt;}
.ls9_c00322{letter-spacing:8.015067pt;}
.ls29_c00322{letter-spacing:11.569880pt;}
.ls28_c00322{letter-spacing:37.186067pt;}
.ws0_c00322{word-spacing:0.000000pt;}
._f_c00322{margin-left:-28.886926pt;}
._17_c00322{margin-left:-21.059025pt;}
._15_c00322{margin-left:-7.348164pt;}
._a_c00322{margin-left:-5.851181pt;}
._12_c00322{margin-left:-3.978906pt;}
._d_c00322{margin-left:-2.605281pt;}
._c_c00322{margin-left:-1.223957pt;}
._b_c00322{width:0.981017pt;}
._8_c00322{width:2.456960pt;}
._1_c00322{width:3.852800pt;}
._7_c00322{width:5.306000pt;}
._e_c00322{width:6.371321pt;}
._3_c00322{width:7.349234pt;}
._2_c00322{width:9.003242pt;}
._10_c00322{width:10.008930pt;}
._0_c00322{width:11.274834pt;}
._6_c00322{width:12.457279pt;}
._4_c00322{width:13.651545pt;}
._14_c00322{width:15.708991pt;}
._5_c00322{width:16.762596pt;}
._9_c00322{width:18.892353pt;}
._11_c00322{width:20.422777pt;}
._16_c00322{width:21.514091pt;}
._13_c00322{width:24.850277pt;}
.fs1e_c00322{font-size:36.000000pt;}
.fs17_c00322{font-size:36.666667pt;}
.fs1b_c00322{font-size:38.000000pt;}
.fs19_c00322{font-size:40.666667pt;}
.fs16_c00322{font-size:41.333333pt;}
.fs18_c00322{font-size:42.000000pt;}
.fs1c_c00322{font-size:42.666667pt;}
.fs15_c00322{font-size:43.333333pt;}
.fs1a_c00322{font-size:44.000000pt;}
.fs1d_c00322{font-size:46.666667pt;}
.fs10_c00322{font-size:56.666667pt;}
.fsb_c00322{font-size:60.000000pt;}
.fs14_c00322{font-size:61.333333pt;}
.fs3_c00322{font-size:62.666667pt;}
.fs5_c00322{font-size:63.333333pt;}
.fs11_c00322{font-size:64.666667pt;}
.fs13_c00322{font-size:65.333333pt;}
.fs12_c00322{font-size:66.666667pt;}
.fs4_c00322{font-size:67.333333pt;}
.fs9_c00322{font-size:68.000000pt;}
.fs6_c00322{font-size:68.666667pt;}
.fs8_c00322{font-size:69.333333pt;}
.fs0_c00322{font-size:70.000000pt;}
.fsa_c00322{font-size:70.666667pt;}
.fs2_c00322{font-size:71.333333pt;}
.fs1_c00322{font-size:72.000000pt;}
.fs7_c00322{font-size:72.666667pt;}
.fsc_c00322{font-size:73.333333pt;}
.fse_c00322{font-size:74.666667pt;}
.fsf_c00322{font-size:75.333333pt;}
.fsd_c00322{font-size:76.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y25_c00322{bottom:186.238787pt;}
.y24_c00322{bottom:221.759720pt;}
.y23_c00322{bottom:298.239480pt;}
.y21_c00322{bottom:324.479000pt;}
.y22_c00322{bottom:324.479067pt;}
.y20_c00322{bottom:351.358933pt;}
.y1f_c00322{bottom:377.919480pt;}
.y1e_c00322{bottom:404.160133pt;}
.y1d_c00322{bottom:430.399720pt;}
.y1c_c00322{bottom:456.959467pt;}
.y1b_c00322{bottom:509.759893pt;}
.y1a_c00322{bottom:535.999467pt;}
.y19_c00322{bottom:536.000227pt;}
.y18_c00322{bottom:562.559973pt;}
.y17_c00322{bottom:562.560267pt;}
.y15_c00322{bottom:588.799800pt;}
.y16_c00322{bottom:588.799840pt;}
.y13_c00322{bottom:615.679013pt;}
.y14_c00322{bottom:615.679733pt;}
.y12_c00322{bottom:642.238773pt;}
.y11_c00322{bottom:669.118693pt;}
.y10_c00322{bottom:694.718280pt;}
.yf_c00322{bottom:721.598200pt;}
.ye_c00322{bottom:748.157960pt;}
.yc_c00322{bottom:800.957640pt;}
.yd_c00322{bottom:800.958907pt;}
.yb_c00322{bottom:819.838467pt;}
.ya_c00322{bottom:838.719253pt;}
.y9_c00322{bottom:857.600080pt;}
.y7_c00322{bottom:876.478720pt;}
.y8_c00322{bottom:876.479000pt;}
.y5_c00322{bottom:929.599427pt;}
.y6_c00322{bottom:929.600093pt;}
.y4_c00322{bottom:956.159173pt;}
.y2_c00322{bottom:982.079547pt;}
.y3_c00322{bottom:982.079587pt;}
.y1_c00322{bottom:1008.959467pt;}
.h2b_c00322{height:37.546875pt;}
.h21_c00322{height:38.242188pt;}
.h25_c00322{height:39.632812pt;}
.h20_c00322{height:40.566406pt;}
.h23_c00322{height:40.984375pt;}
.h22_c00322{height:41.220703pt;}
.h1f_c00322{height:41.656250pt;}
.h26_c00322{height:41.875000pt;}
.h2a_c00322{height:42.166667pt;}
.h29_c00322{height:42.328125pt;}
.h1e_c00322{height:42.529297pt;}
.h24_c00322{height:43.183594pt;}
.h27_c00322{height:43.671875pt;}
.h28_c00322{height:45.800781pt;}
.h17_c00322{height:57.109375pt;}
.h11_c00322{height:58.886719pt;}
.h5_c00322{height:61.503906pt;}
.h8_c00322{height:62.158203pt;}
.h1b_c00322{height:63.968750pt;}
.he_c00322{height:66.054688pt;}
.h7_c00322{height:66.083984pt;}
.hf_c00322{height:66.738281pt;}
.h9_c00322{height:67.392578pt;}
.h18_c00322{height:67.445312pt;}
.hc_c00322{height:68.046875pt;}
.h1a_c00322{height:68.140625pt;}
.h1_c00322{height:68.701172pt;}
.hd_c00322{height:69.203125pt;}
.h10_c00322{height:69.355469pt;}
.h19_c00322{height:69.531250pt;}
.ha_c00322{height:70.009766pt;}
.h3_c00322{height:70.546875pt;}
.h6_c00322{height:70.664062pt;}
.h1d_c00322{height:70.921875pt;}
.h2_c00322{height:71.156250pt;}
.hb_c00322{height:71.318359pt;}
.h4_c00322{height:71.890625pt;}
.h12_c00322{height:71.972656pt;}
.h16_c00322{height:72.473958pt;}
.h1c_c00322{height:72.562500pt;}
.h14_c00322{height:73.281250pt;}
.h15_c00322{height:73.935547pt;}
.h13_c00322{height:75.109375pt;}
.h0_c00322{height:1122.666667pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:123.518533pt;}
.x2_c00322{left:125.118973pt;}
.x2b_c00322{left:142.719720pt;}
.x2a_c00322{left:147.518533pt;}
.x3a_c00322{left:151.999467pt;}
.x44_c00322{left:164.480000pt;}
.x3b_c00322{left:166.398920pt;}
.x15_c00322{left:168.000000pt;}
.x12_c00322{left:171.837253pt;}
.xf_c00322{left:172.799133pt;}
.x2c_c00322{left:191.679200pt;}
.x16_c00322{left:194.559067pt;}
.x1f_c00322{left:205.119200pt;}
.x20_c00322{left:222.399867pt;}
.x5_c00322{left:228.799867pt;}
.x2d_c00322{left:249.919867pt;}
.x45_c00322{left:261.118667pt;}
.x3c_c00322{left:263.359867pt;}
.x6_c00322{left:274.558533pt;}
.x17_c00322{left:276.479067pt;}
.x7_c00322{left:295.999453pt;}
.x18_c00322{left:298.558533pt;}
.x3d_c00322{left:300.799867pt;}
.x2e_c00322{left:309.758787pt;}
.x1d_c00322{left:311.039067pt;}
.x28_c00322{left:313.599587pt;}
.x1e_c00322{left:326.078680pt;}
.x29_c00322{left:330.559587pt;}
.x38_c00322{left:334.398920pt;}
.x3e_c00322{left:342.719200pt;}
.x39_c00322{left:348.159707pt;}
.x19_c00322{left:353.279333pt;}
.x2f_c00322{left:363.518520pt;}
.x8_c00322{left:367.999467pt;}
.x1a_c00322{left:376.319867pt;}
.xd_c00322{left:377.598680pt;}
.x37_c00322{left:380.799320pt;}
.xe_c00322{left:390.719200pt;}
.x9_c00322{left:393.919840pt;}
.x3f_c00322{left:396.479040pt;}
.x21_c00322{left:407.039067pt;}
.xa_c00322{left:411.839320pt;}
.x1b_c00322{left:422.718787pt;}
.x46_c00322{left:423.999067pt;}
.x40_c00322{left:426.238773pt;}
.x23_c00322{left:431.359867pt;}
.x30_c00322{left:434.879840pt;}
.x47_c00322{left:437.438920pt;}
.x22_c00322{left:439.678667pt;}
.x3_c00322{left:443.519453pt;}
.x48_c00322{left:447.999067pt;}
.x24_c00322{left:449.279333pt;}
.x27_c00322{left:455.359867pt;}
.x31_c00322{left:462.079067pt;}
.x49_c00322{left:469.759320pt;}
.x4_c00322{left:472.639200pt;}
.x10_c00322{left:487.359333pt;}
.x4a_c00322{left:493.439987pt;}
.x41_c00322{left:495.679733pt;}
.x32_c00322{left:517.439987pt;}
.x1c_c00322{left:518.399453pt;}
.x4b_c00322{left:522.559573pt;}
.x42_c00322{left:524.479987pt;}
.x11_c00322{left:525.758787pt;}
.x33_c00322{left:541.119187pt;}
.x4c_c00322{left:544.960000pt;}
.x43_c00322{left:546.878907pt;}
.x4d_c00322{left:557.759720pt;}
.x34_c00322{left:564.799840pt;}
.xb_c00322{left:601.599573pt;}
.x25_c00322{left:603.839320pt;}
.x26_c00322{left:616.639200pt;}
.x13_c00322{left:617.919440pt;}
.xc_c00322{left:625.599573pt;}
.x14_c00322{left:634.239173pt;}
.x35_c00322{left:650.239707pt;}
.x36_c00322{left:678.399867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_132ddf8589e83357dce433b6.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_c7ec1d071cf99a322904c75a.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;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_05f7f06442abc49efca811de.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_11643f8b516d41b899c23677.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_f33e74d0db7b93c0067c146f.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00323;src:url('chunks/assets/font_86545cc142383d3ffe3858b7.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m11_c00323{transform:matrix(0.146040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146040,0.000000,0.000000,0.250000,0,0);}
.m3e_c00323{transform:matrix(0.148352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148352,0.000000,0.000000,0.250000,0,0);}
.m46_c00323{transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);}
.m1f_c00323{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.me_c00323{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m54_c00323{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);}
.m37_c00323{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m53_c00323{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m5_c00323{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m40_c00323{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m4c_c00323{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m44_c00323{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m39_c00323{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m26_c00323{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m48_c00323{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m3c_c00323{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m52_c00323{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m23_c00323{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2f_c00323{transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);}
.m3d_c00323{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m4d_c00323{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m45_c00323{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m25_c00323{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m4e_c00323{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1e_c00323{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m47_c00323{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m36_c00323{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m24_c00323{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m56_c00323{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1d_c00323{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m21_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00323{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m41_c00323{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m50_c00323{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m27_c00323{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m55_c00323{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m43_c00323{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m2a_c00323{transform:matrix(0.258993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258993,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m10_c00323{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m4b_c00323{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m4a_c00323{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m42_c00323{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);}
.m51_c00323{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m30_c00323{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m28_c00323{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m14_c00323{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m38_c00323{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m31_c00323{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m1c_c00323{transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279891,0.000000,0.000000,0.250000,0,0);}
.m3a_c00323{transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);}
.m2e_c00323{transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);}
.m4f_c00323{transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{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_c00323{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.m2c_c00323{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.m16_c00323{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m32_c00323{transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);}
.m20_c00323{transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);}
.m22_c00323{transform:matrix(0.311170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311170,0.000000,0.000000,0.250000,0,0);}
.m29_c00323{transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317935,0.000000,0.000000,0.250000,0,0);}
.m1a_c00323{transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324324,0.000000,0.000000,0.250000,0,0);}
.mf_c00323{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.332090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332090,0.000000,0.000000,0.250000,0,0);}
.m2b_c00323{transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);}
.m49_c00323{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.389344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389344,0.000000,0.000000,0.250000,0,0);}
.m3f_c00323{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m34_c00323{transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);}
.m19_c00323{transform:matrix(0.403680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403680,0.000000,0.000000,0.250000,0,0);}
.m15_c00323{transform:matrix(0.404255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404255,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.423077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423077,0.000000,0.000000,0.250000,0,0);}
.m2d_c00323{transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456522,0.000000,0.000000,0.250000,0,0);}
.m35_c00323{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m17_c00323{transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482143,0.000000,0.000000,0.250000,0,0);}
.m33_c00323{transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534091,0.000000,0.000000,0.250000,0,0);}
.m18_c00323{transform:matrix(0.664634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664634,0.000000,0.000000,0.250000,0,0);}
.m1b_c00323{transform:matrix(0.756579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756579,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.lsb_c00323{letter-spacing:-16.154400px;}
.ls2b_c00323{letter-spacing:-7.576538px;}
.ls1f_c00323{letter-spacing:-6.958350px;}
.ls17_c00323{letter-spacing:-6.937500px;}
.ls11_c00323{letter-spacing:-6.811875px;}
.ls4d_c00323{letter-spacing:-6.172200px;}
.ls12_c00323{letter-spacing:-6.055875px;}
.ls4f_c00323{letter-spacing:-5.998343px;}
.ls2d_c00323{letter-spacing:-5.890500px;}
.ls28_c00323{letter-spacing:-5.471505px;}
.ls29_c00323{letter-spacing:-5.421450px;}
.ls2a_c00323{letter-spacing:-5.343818px;}
.ls9_c00323{letter-spacing:-5.300663px;}
.ls26_c00323{letter-spacing:-5.295675px;}
.ls3f_c00323{letter-spacing:-5.175517px;}
.ls5b_c00323{letter-spacing:-4.875488px;}
.ls3b_c00323{letter-spacing:-4.586993px;}
.lsd_c00323{letter-spacing:-4.543088px;}
.ls55_c00323{letter-spacing:-3.945600px;}
.ls2c_c00323{letter-spacing:-3.923925px;}
.lsf_c00323{letter-spacing:-3.787875px;}
.ls4e_c00323{letter-spacing:-3.691200px;}
.ls1a_c00323{letter-spacing:-3.371775px;}
.ls4b_c00323{letter-spacing:-3.148800px;}
.ls8_c00323{letter-spacing:-3.031875px;}
.ls43_c00323{letter-spacing:-2.998800px;}
.ls57_c00323{letter-spacing:-2.953215px;}
.ls44_c00323{letter-spacing:-2.951520px;}
.ls3c_c00323{letter-spacing:-2.775585px;}
.ls24_c00323{letter-spacing:-2.479785px;}
.ls6_c00323{letter-spacing:-2.396768px;}
.lse_c00323{letter-spacing:-2.331000px;}
.ls10_c00323{letter-spacing:-2.269800px;}
.ls5_c00323{letter-spacing:-2.267213px;}
.ls13_c00323{letter-spacing:-2.165625px;}
.ls51_c00323{letter-spacing:-2.150400px;}
.ls45_c00323{letter-spacing:-2.142450px;}
.ls27_c00323{letter-spacing:-1.556048px;}
.ls7_c00323{letter-spacing:-1.512000px;}
.ls56_c00323{letter-spacing:-1.502400px;}
.ls46_c00323{letter-spacing:-1.478880px;}
.ls5c_c00323{letter-spacing:-1.454400px;}
.ls3e_c00323{letter-spacing:-1.338075px;}
.ls42_c00323{letter-spacing:-1.261943px;}
.ls33_c00323{letter-spacing:-1.231995px;}
.ls23_c00323{letter-spacing:-1.171200px;}
.ls4c_c00323{letter-spacing:-1.070325px;}
.ls3d_c00323{letter-spacing:-0.825600px;}
.ls41_c00323{letter-spacing:-0.786900px;}
.lsa_c00323{letter-spacing:-0.756000px;}
.ls48_c00323{letter-spacing:-0.748650px;}
.ls50_c00323{letter-spacing:-0.718200px;}
.ls1e_c00323{letter-spacing:-0.705000px;}
.ls14_c00323{letter-spacing:-0.702900px;}
.ls22_c00323{letter-spacing:-0.562725px;}
.lsc_c00323{letter-spacing:0.000000px;}
.ls3a_c00323{letter-spacing:0.400560px;}
.ls47_c00323{letter-spacing:0.727650px;}
.ls1_c00323{letter-spacing:0.756000px;}
.ls1d_c00323{letter-spacing:0.761250px;}
.ls21_c00323{letter-spacing:0.778050px;}
.ls53_c00323{letter-spacing:0.788603px;}
.ls49_c00323{letter-spacing:0.840000px;}
.ls15_c00323{letter-spacing:0.886275px;}
.ls37_c00323{letter-spacing:1.374450px;}
.ls39_c00323{letter-spacing:1.395900px;}
.ls58_c00323{letter-spacing:1.427235px;}
.ls52_c00323{letter-spacing:1.455773px;}
.ls59_c00323{letter-spacing:1.602248px;}
.ls3_c00323{letter-spacing:1.656000px;}
.ls34_c00323{letter-spacing:1.994153px;}
.ls36_c00323{letter-spacing:2.137500px;}
.ls30_c00323{letter-spacing:2.168400px;}
.ls5d_c00323{letter-spacing:2.291400px;}
.ls54_c00323{letter-spacing:2.340000px;}
.ls4_c00323{letter-spacing:2.481600px;}
.ls1b_c00323{letter-spacing:2.880450px;}
.ls40_c00323{letter-spacing:3.253920px;}
.ls18_c00323{letter-spacing:3.386850px;}
.ls5a_c00323{letter-spacing:3.704400px;}
.ls2_c00323{letter-spacing:3.787875px;}
.ls19_c00323{letter-spacing:4.738575px;}
.ls35_c00323{letter-spacing:4.771800px;}
.ls16_c00323{letter-spacing:5.107253px;}
.ls32_c00323{letter-spacing:5.765625px;}
.ls25_c00323{letter-spacing:6.030600px;}
.ls20_c00323{letter-spacing:6.355875px;}
.ls38_c00323{letter-spacing:13.424040px;}
.ls1c_c00323{letter-spacing:21.823575px;}
.ls0_c00323{letter-spacing:25.743375px;}
.ls4a_c00323{letter-spacing:27.312000px;}
.ls2f_c00323{letter-spacing:42.462600px;}
.ls31_c00323{letter-spacing:44.842875px;}
.ls2e_c00323{letter-spacing:95.067000px;}
.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;}
._18_c00323{margin-left:-109.281617px;}
._b_c00323{margin-left:-31.507633px;}
._15_c00323{margin-left:-15.420643px;}
._1d_c00323{margin-left:-10.788447px;}
._8_c00323{margin-left:-6.851008px;}
._16_c00323{margin-left:-4.019703px;}
._7_c00323{margin-left:-2.456758px;}
._c_c00323{margin-left:-1.022660px;}
._a_c00323{width:1.061126px;}
._d_c00323{width:2.084512px;}
._6_c00323{width:4.296963px;}
._e_c00323{width:6.040670px;}
._5_c00323{width:7.793645px;}
._9_c00323{width:9.051040px;}
._17_c00323{width:10.144272px;}
._11_c00323{width:11.497742px;}
._1b_c00323{width:12.560564px;}
._f_c00323{width:13.592068px;}
._19_c00323{width:14.618423px;}
._14_c00323{width:16.151504px;}
._1c_c00323{width:17.190277px;}
._12_c00323{width:19.064709px;}
._13_c00323{width:20.351423px;}
._1a_c00323{width:21.480092px;}
._10_c00323{width:22.519289px;}
._0_c00323{width:23.779411px;}
._1_c00323{width:26.064857px;}
._4_c00323{width:31.135993px;}
._2_c00323{width:32.547193px;}
._3_c00323{width:37.272738px;}
.fc0_c00323{color:transparent;}
.fs5_c00323{font-size:16.500000px;}
.fs16_c00323{font-size:24.000000px;}
.fs1e_c00323{font-size:26.250000px;}
.fs26_c00323{font-size:27.000000px;}
.fs8_c00323{font-size:27.750000px;}
.fs17_c00323{font-size:28.500000px;}
.fs6_c00323{font-size:29.250000px;}
.fs14_c00323{font-size:30.750000px;}
.fs13_c00323{font-size:31.500000px;}
.fs20_c00323{font-size:34.500000px;}
.fs11_c00323{font-size:35.250000px;}
.fs25_c00323{font-size:36.000000px;}
.fs12_c00323{font-size:37.500000px;}
.fs30_c00323{font-size:39.000000px;}
.fs2d_c00323{font-size:42.000000px;}
.fs23_c00323{font-size:42.750000px;}
.fsf_c00323{font-size:43.500000px;}
.fs2e_c00323{font-size:45.000000px;}
.fsa_c00323{font-size:45.750000px;}
.fs29_c00323{font-size:46.500000px;}
.fs7_c00323{font-size:47.250000px;}
.fs2a_c00323{font-size:48.000000px;}
.fsc_c00323{font-size:48.750000px;}
.fs9_c00323{font-size:50.250000px;}
.fs2f_c00323{font-size:51.000000px;}
.fs2b_c00323{font-size:51.750000px;}
.fsb_c00323{font-size:54.000000px;}
.fsd_c00323{font-size:55.500000px;}
.fs10_c00323{font-size:56.250000px;}
.fs24_c00323{font-size:57.750000px;}
.fs22_c00323{font-size:66.000000px;}
.fs2c_c00323{font-size:68.250000px;}
.fs18_c00323{font-size:69.000000px;}
.fs21_c00323{font-size:69.750000px;}
.fs1b_c00323{font-size:70.500000px;}
.fse_c00323{font-size:75.750000px;}
.fs3_c00323{font-size:78.000000px;}
.fs0_c00323{font-size:78.750000px;}
.fs2_c00323{font-size:79.500000px;}
.fs4_c00323{font-size:80.250000px;}
.fs28_c00323{font-size:81.750000px;}
.fs19_c00323{font-size:82.500000px;}
.fs1_c00323{font-size:83.250000px;}
.fs1d_c00323{font-size:84.000000px;}
.fs1a_c00323{font-size:84.750000px;}
.fs1c_c00323{font-size:101.250000px;}
.fs1f_c00323{font-size:104.250000px;}
.fs27_c00323{font-size:115.500000px;}
.fs15_c00323{font-size:173.250000px;}
.y0_c00323{bottom:0.000000px;}
.y28_c00323{bottom:176.040600px;}
.y27_c00323{bottom:216.360900px;}
.y26_c00323{bottom:276.479685px;}
.y25_c00323{bottom:366.480885px;}
.y24_c00323{bottom:396.359850px;}
.y22_c00323{bottom:426.960570px;}
.y23_c00323{bottom:427.319820px;}
.y21_c00323{bottom:432.720150px;}
.y20_c00323{bottom:455.760135px;}
.y1f_c00323{bottom:486.000000px;}
.y1e_c00323{bottom:486.000840px;}
.y1c_c00323{bottom:515.878350px;}
.y1d_c00323{bottom:515.880570px;}
.y1b_c00323{bottom:545.758065px;}
.y1a_c00323{bottom:605.159130px;}
.y18_c00323{bottom:634.319670px;}
.y19_c00323{bottom:634.320285px;}
.y17_c00323{bottom:664.199385px;}
.y16_c00323{bottom:664.199415px;}
.y15_c00323{bottom:693.720750px;}
.y14_c00323{bottom:693.720885px;}
.y13_c00323{bottom:723.240420px;}
.y12_c00323{bottom:753.480285px;}
.y11_c00323{bottom:756.000000px;}
.y10_c00323{bottom:760.680135px;}
.yf_c00323{bottom:783.720915px;}
.ye_c00323{bottom:843.840540px;}
.yd_c00323{bottom:843.840915px;}
.yc_c00323{bottom:873.360450px;}
.yb_c00323{bottom:902.879970px;}
.ya_c00323{bottom:902.880210px;}
.y9_c00323{bottom:932.759925px;}
.y8_c00323{bottom:962.639655px;}
.y7_c00323{bottom:962.639835px;}
.y6_c00323{bottom:992.159370px;}
.y5_c00323{bottom:992.160435px;}
.y4_c00323{bottom:1022.040165px;}
.y3_c00323{bottom:1051.559685px;}
.y2_c00323{bottom:1111.320075px;}
.y1_c00323{bottom:1141.199805px;}
.h6_c00323{height:17.208984px;}
.h2a_c00323{height:24.187500px;}
.h18_c00323{height:25.031250px;}
.h29_c00323{height:27.210938px;}
.h20_c00323{height:27.377930px;}
.h9_c00323{height:28.942383px;}
.h19_c00323{height:29.724609px;}
.h7_c00323{height:30.506836px;}
.h16_c00323{height:32.071289px;}
.h15_c00323{height:32.853516px;}
.h13_c00323{height:34.836914px;}
.h12_c00323{height:35.525391px;}
.h22_c00323{height:35.982422px;}
.h27_c00323{height:36.281250px;}
.h14_c00323{height:37.792969px;}
.h3b_c00323{height:40.675781px;}
.h2f_c00323{height:41.956787px;}
.h25_c00323{height:43.083984px;}
.h34_c00323{height:43.804688px;}
.h10_c00323{height:43.839844px;}
.h33_c00323{height:44.586914px;}
.h35_c00323{height:45.351562px;}
.h3d_c00323{height:45.369141px;}
.h2d_c00323{height:45.637207px;}
.h31_c00323{height:46.107422px;}
.h3e_c00323{height:46.350220px;}
.h37_c00323{height:46.373291px;}
.h3c_c00323{height:46.863281px;}
.h36_c00323{height:47.109375px;}
.h8_c00323{height:47.619141px;}
.hb_c00323{height:47.715820px;}
.h3f_c00323{height:48.178711px;}
.h2e_c00323{height:48.375000px;}
.h28_c00323{height:49.130859px;}
.h38_c00323{height:49.661133px;}
.h3a_c00323{height:50.402344px;}
.hd_c00323{height:50.844727px;}
.h30_c00323{height:51.143555px;}
.ha_c00323{height:52.409180px;}
.h39_c00323{height:53.367188px;}
.hc_c00323{height:56.320312px;}
.he_c00323{height:57.884766px;}
.h26_c00323{height:58.201172px;}
.h11_c00323{height:58.666992px;}
.h24_c00323{height:66.515625px;}
.h23_c00323{height:70.294922px;}
.h32_c00323{height:71.182617px;}
.h1a_c00323{height:71.964844px;}
.h1d_c00323{height:73.529297px;}
.hf_c00323{height:74.862305px;}
.h4_c00323{height:76.552734px;}
.h1_c00323{height:77.288818px;}
.h3_c00323{height:78.024902px;}
.h5_c00323{height:78.760986px;}
.h2c_c00323{height:80.233154px;}
.h1b_c00323{height:80.969238px;}
.h2_c00323{height:81.705322px;}
.h1c_c00323{height:83.177490px;}
.h1f_c00323{height:87.609375px;}
.h1e_c00323{height:105.600586px;}
.h21_c00323{height:108.729492px;}
.h2b_c00323{height:120.462891px;}
.h17_c00323{height:180.694336px;}
.h0_c00323{height:1263.000000px;}
.w0_c00323{width:892.500000px;}
.x0_c00323{left:0.000000px;}
.x1b_c00323{left:141.118815px;}
.x4_c00323{left:142.199850px;}
.x1_c00323{left:143.638500px;}
.x5_c00323{left:167.039400px;}
.x38_c00323{left:168.118815px;}
.x3b_c00323{left:172.439715px;}
.x3c_c00323{left:186.478665px;}
.x19_c00323{left:217.799535px;}
.x1a_c00323{left:231.838515px;}
.xe_c00323{left:241.198785px;}
.x48_c00323{left:247.319250px;}
.x26_c00323{left:265.319850px;}
.x3d_c00323{left:275.398635px;}
.x27_c00323{left:287.998950px;}
.x3e_c00323{left:289.080000px;}
.x4f_c00323{left:295.198785px;}
.xf_c00323{left:312.838515px;}
.xa_c00323{left:321.478635px;}
.x10_c00323{left:331.559100px;}
.xb_c00323{left:335.519100px;}
.x50_c00323{left:337.318800px;}
.xc_c00323{left:347.040000px;}
.x11_c00323{left:357.118785px;}
.x3f_c00323{left:361.798950px;}
.xd_c00323{left:366.120000px;}
.x8_c00323{left:367.199385px;}
.x33_c00323{left:375.119385px;}
.x36_c00323{left:376.918950px;}
.x40_c00323{left:384.118785px;}
.x37_c00323{left:387.358665px;}
.x2c_c00323{left:400.679070px;}
.x9_c00323{left:409.319235px;}
.x2_c00323{left:415.798920px;}
.x12_c00323{left:418.318770px;}
.x41_c00323{left:422.998950px;}
.x42_c00323{left:431.639100px;}
.x34_c00323{left:440.279250px;}
.x13_c00323{left:441.719565px;}
.x49_c00323{left:444.598530px;}
.x43_c00323{left:445.679670px;}
.x3_c00323{left:459.359250px;}
.x44_c00323{left:473.038920px;}
.x2d_c00323{left:476.639700px;}
.x51_c00323{left:478.080000px;}
.x22_c00323{left:482.399235px;}
.x4a_c00323{left:485.279850px;}
.x45_c00323{left:487.438665px;}
.x14_c00323{left:491.398635px;}
.x52_c00323{left:493.559100px;}
.x6_c00323{left:495.719565px;}
.x2e_c00323{left:498.959385px;}
.x15_c00323{left:501.838530px;}
.x20_c00323{left:505.439250px;}
.x4b_c00323{left:513.000000px;}
.x46_c00323{left:515.519670px;}
.x16_c00323{left:517.319235px;}
.x21_c00323{left:519.838950px;}
.x53_c00323{left:529.558635px;}
.x4c_c00323{left:542.519670px;}
.x23_c00323{left:545.398635px;}
.x7_c00323{left:547.559100px;}
.x4d_c00323{left:551.519070px;}
.x47_c00323{left:553.679670px;}
.x54_c00323{left:556.199385px;}
.x24_c00323{left:564.478635px;}
.x4e_c00323{left:566.279850px;}
.x2f_c00323{left:569.158770px;}
.x1e_c00323{left:577.078770px;}
.x55_c00323{left:588.958920px;}
.x17_c00323{left:594.359250px;}
.x30_c00323{left:599.398635px;}
.x56_c00323{left:614.159370px;}
.x1f_c00323{left:617.039985px;}
.x1c_c00323{left:618.839535px;}
.x18_c00323{left:620.639100px;}
.x28_c00323{left:623.878920px;}
.x1d_c00323{left:648.000000px;}
.x29_c00323{left:659.159820px;}
.x2a_c00323{left:665.998950px;}
.x39_c00323{left:667.798560px;}
.x31_c00323{left:677.519670px;}
.x35_c00323{left:678.599070px;}
.x3a_c00323{left:683.638545px;}
.x32_c00323{left:707.759535px;}
.x25_c00323{left:709.199850px;}
.x2b_c00323{left:764.999355px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.lsb_c00323{letter-spacing:-14.359467pt;}
.ls2b_c00323{letter-spacing:-6.734700pt;}
.ls1f_c00323{letter-spacing:-6.185200pt;}
.ls17_c00323{letter-spacing:-6.166667pt;}
.ls11_c00323{letter-spacing:-6.055000pt;}
.ls4d_c00323{letter-spacing:-5.486400pt;}
.ls12_c00323{letter-spacing:-5.383000pt;}
.ls4f_c00323{letter-spacing:-5.331860pt;}
.ls2d_c00323{letter-spacing:-5.236000pt;}
.ls28_c00323{letter-spacing:-4.863560pt;}
.ls29_c00323{letter-spacing:-4.819067pt;}
.ls2a_c00323{letter-spacing:-4.750060pt;}
.ls9_c00323{letter-spacing:-4.711700pt;}
.ls26_c00323{letter-spacing:-4.707267pt;}
.ls3f_c00323{letter-spacing:-4.600460pt;}
.ls5b_c00323{letter-spacing:-4.333767pt;}
.ls3b_c00323{letter-spacing:-4.077327pt;}
.lsd_c00323{letter-spacing:-4.038300pt;}
.ls55_c00323{letter-spacing:-3.507200pt;}
.ls2c_c00323{letter-spacing:-3.487933pt;}
.lsf_c00323{letter-spacing:-3.367000pt;}
.ls4e_c00323{letter-spacing:-3.281067pt;}
.ls1a_c00323{letter-spacing:-2.997133pt;}
.ls4b_c00323{letter-spacing:-2.798933pt;}
.ls8_c00323{letter-spacing:-2.695000pt;}
.ls43_c00323{letter-spacing:-2.665600pt;}
.ls57_c00323{letter-spacing:-2.625080pt;}
.ls44_c00323{letter-spacing:-2.623573pt;}
.ls3c_c00323{letter-spacing:-2.467187pt;}
.ls24_c00323{letter-spacing:-2.204253pt;}
.ls6_c00323{letter-spacing:-2.130460pt;}
.lse_c00323{letter-spacing:-2.072000pt;}
.ls10_c00323{letter-spacing:-2.017600pt;}
.ls5_c00323{letter-spacing:-2.015300pt;}
.ls13_c00323{letter-spacing:-1.925000pt;}
.ls51_c00323{letter-spacing:-1.911467pt;}
.ls45_c00323{letter-spacing:-1.904400pt;}
.ls27_c00323{letter-spacing:-1.383153pt;}
.ls7_c00323{letter-spacing:-1.344000pt;}
.ls56_c00323{letter-spacing:-1.335467pt;}
.ls46_c00323{letter-spacing:-1.314560pt;}
.ls5c_c00323{letter-spacing:-1.292800pt;}
.ls3e_c00323{letter-spacing:-1.189400pt;}
.ls42_c00323{letter-spacing:-1.121727pt;}
.ls33_c00323{letter-spacing:-1.095107pt;}
.ls23_c00323{letter-spacing:-1.041067pt;}
.ls4c_c00323{letter-spacing:-0.951400pt;}
.ls3d_c00323{letter-spacing:-0.733867pt;}
.ls41_c00323{letter-spacing:-0.699467pt;}
.lsa_c00323{letter-spacing:-0.672000pt;}
.ls48_c00323{letter-spacing:-0.665467pt;}
.ls50_c00323{letter-spacing:-0.638400pt;}
.ls1e_c00323{letter-spacing:-0.626667pt;}
.ls14_c00323{letter-spacing:-0.624800pt;}
.ls22_c00323{letter-spacing:-0.500200pt;}
.lsc_c00323{letter-spacing:0.000000pt;}
.ls3a_c00323{letter-spacing:0.356053pt;}
.ls47_c00323{letter-spacing:0.646800pt;}
.ls1_c00323{letter-spacing:0.672000pt;}
.ls1d_c00323{letter-spacing:0.676667pt;}
.ls21_c00323{letter-spacing:0.691600pt;}
.ls53_c00323{letter-spacing:0.700980pt;}
.ls49_c00323{letter-spacing:0.746667pt;}
.ls15_c00323{letter-spacing:0.787800pt;}
.ls37_c00323{letter-spacing:1.221733pt;}
.ls39_c00323{letter-spacing:1.240800pt;}
.ls58_c00323{letter-spacing:1.268653pt;}
.ls52_c00323{letter-spacing:1.294020pt;}
.ls59_c00323{letter-spacing:1.424220pt;}
.ls3_c00323{letter-spacing:1.472000pt;}
.ls34_c00323{letter-spacing:1.772580pt;}
.ls36_c00323{letter-spacing:1.900000pt;}
.ls30_c00323{letter-spacing:1.927467pt;}
.ls5d_c00323{letter-spacing:2.036800pt;}
.ls54_c00323{letter-spacing:2.080000pt;}
.ls4_c00323{letter-spacing:2.205867pt;}
.ls1b_c00323{letter-spacing:2.560400pt;}
.ls40_c00323{letter-spacing:2.892373pt;}
.ls18_c00323{letter-spacing:3.010533pt;}
.ls5a_c00323{letter-spacing:3.292800pt;}
.ls2_c00323{letter-spacing:3.367000pt;}
.ls19_c00323{letter-spacing:4.212067pt;}
.ls35_c00323{letter-spacing:4.241600pt;}
.ls16_c00323{letter-spacing:4.539780pt;}
.ls32_c00323{letter-spacing:5.125000pt;}
.ls25_c00323{letter-spacing:5.360533pt;}
.ls20_c00323{letter-spacing:5.649667pt;}
.ls38_c00323{letter-spacing:11.932480pt;}
.ls1c_c00323{letter-spacing:19.398733pt;}
.ls0_c00323{letter-spacing:22.883000pt;}
.ls4a_c00323{letter-spacing:24.277333pt;}
.ls2f_c00323{letter-spacing:37.744533pt;}
.ls31_c00323{letter-spacing:39.860333pt;}
.ls2e_c00323{letter-spacing:84.504000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
._18_c00323{margin-left:-97.139215pt;}
._b_c00323{margin-left:-28.006785pt;}
._15_c00323{margin-left:-13.707238pt;}
._1d_c00323{margin-left:-9.589731pt;}
._8_c00323{margin-left:-6.089785pt;}
._16_c00323{margin-left:-3.573069pt;}
._7_c00323{margin-left:-2.183785pt;}
._c_c00323{margin-left:-0.909031pt;}
._a_c00323{width:0.943223pt;}
._d_c00323{width:1.852900pt;}
._6_c00323{width:3.819523pt;}
._e_c00323{width:5.369485pt;}
._5_c00323{width:6.927685pt;}
._9_c00323{width:8.045369pt;}
._17_c00323{width:9.017131pt;}
._11_c00323{width:10.220215pt;}
._1b_c00323{width:11.164946pt;}
._f_c00323{width:12.081838pt;}
._19_c00323{width:12.994154pt;}
._14_c00323{width:14.356892pt;}
._1c_c00323{width:15.280246pt;}
._12_c00323{width:16.946408pt;}
._13_c00323{width:18.090154pt;}
._1a_c00323{width:19.093415pt;}
._10_c00323{width:20.017146pt;}
._0_c00323{width:21.137254pt;}
._1_c00323{width:23.168762pt;}
._4_c00323{width:27.676438pt;}
._2_c00323{width:28.930838pt;}
._3_c00323{width:33.131323pt;}
.fs5_c00323{font-size:14.666667pt;}
.fs16_c00323{font-size:21.333333pt;}
.fs1e_c00323{font-size:23.333333pt;}
.fs26_c00323{font-size:24.000000pt;}
.fs8_c00323{font-size:24.666667pt;}
.fs17_c00323{font-size:25.333333pt;}
.fs6_c00323{font-size:26.000000pt;}
.fs14_c00323{font-size:27.333333pt;}
.fs13_c00323{font-size:28.000000pt;}
.fs20_c00323{font-size:30.666667pt;}
.fs11_c00323{font-size:31.333333pt;}
.fs25_c00323{font-size:32.000000pt;}
.fs12_c00323{font-size:33.333333pt;}
.fs30_c00323{font-size:34.666667pt;}
.fs2d_c00323{font-size:37.333333pt;}
.fs23_c00323{font-size:38.000000pt;}
.fsf_c00323{font-size:38.666667pt;}
.fs2e_c00323{font-size:40.000000pt;}
.fsa_c00323{font-size:40.666667pt;}
.fs29_c00323{font-size:41.333333pt;}
.fs7_c00323{font-size:42.000000pt;}
.fs2a_c00323{font-size:42.666667pt;}
.fsc_c00323{font-size:43.333333pt;}
.fs9_c00323{font-size:44.666667pt;}
.fs2f_c00323{font-size:45.333333pt;}
.fs2b_c00323{font-size:46.000000pt;}
.fsb_c00323{font-size:48.000000pt;}
.fsd_c00323{font-size:49.333333pt;}
.fs10_c00323{font-size:50.000000pt;}
.fs24_c00323{font-size:51.333333pt;}
.fs22_c00323{font-size:58.666667pt;}
.fs2c_c00323{font-size:60.666667pt;}
.fs18_c00323{font-size:61.333333pt;}
.fs21_c00323{font-size:62.000000pt;}
.fs1b_c00323{font-size:62.666667pt;}
.fse_c00323{font-size:67.333333pt;}
.fs3_c00323{font-size:69.333333pt;}
.fs0_c00323{font-size:70.000000pt;}
.fs2_c00323{font-size:70.666667pt;}
.fs4_c00323{font-size:71.333333pt;}
.fs28_c00323{font-size:72.666667pt;}
.fs19_c00323{font-size:73.333333pt;}
.fs1_c00323{font-size:74.000000pt;}
.fs1d_c00323{font-size:74.666667pt;}
.fs1a_c00323{font-size:75.333333pt;}
.fs1c_c00323{font-size:90.000000pt;}
.fs1f_c00323{font-size:92.666667pt;}
.fs27_c00323{font-size:102.666667pt;}
.fs15_c00323{font-size:154.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y28_c00323{bottom:156.480533pt;}
.y27_c00323{bottom:192.320800pt;}
.y26_c00323{bottom:245.759720pt;}
.y25_c00323{bottom:325.760787pt;}
.y24_c00323{bottom:352.319867pt;}
.y22_c00323{bottom:379.520507pt;}
.y23_c00323{bottom:379.839840pt;}
.y21_c00323{bottom:384.640133pt;}
.y20_c00323{bottom:405.120120pt;}
.y1f_c00323{bottom:432.000000pt;}
.y1e_c00323{bottom:432.000747pt;}
.y1c_c00323{bottom:458.558533pt;}
.y1d_c00323{bottom:458.560507pt;}
.y1b_c00323{bottom:485.118280pt;}
.y1a_c00323{bottom:537.919227pt;}
.y18_c00323{bottom:563.839707pt;}
.y19_c00323{bottom:563.840253pt;}
.y17_c00323{bottom:590.399453pt;}
.y16_c00323{bottom:590.399480pt;}
.y15_c00323{bottom:616.640667pt;}
.y14_c00323{bottom:616.640787pt;}
.y13_c00323{bottom:642.880373pt;}
.y12_c00323{bottom:669.760253pt;}
.y11_c00323{bottom:672.000000pt;}
.y10_c00323{bottom:676.160120pt;}
.yf_c00323{bottom:696.640813pt;}
.ye_c00323{bottom:750.080480pt;}
.yd_c00323{bottom:750.080813pt;}
.yc_c00323{bottom:776.320400pt;}
.yb_c00323{bottom:802.559973pt;}
.ya_c00323{bottom:802.560187pt;}
.y9_c00323{bottom:829.119933pt;}
.y8_c00323{bottom:855.679693pt;}
.y7_c00323{bottom:855.679853pt;}
.y6_c00323{bottom:881.919440pt;}
.y5_c00323{bottom:881.920387pt;}
.y4_c00323{bottom:908.480147pt;}
.y3_c00323{bottom:934.719720pt;}
.y2_c00323{bottom:987.840067pt;}
.y1_c00323{bottom:1014.399827pt;}
.h6_c00323{height:15.296875pt;}
.h2a_c00323{height:21.500000pt;}
.h18_c00323{height:22.250000pt;}
.h29_c00323{height:24.187500pt;}
.h20_c00323{height:24.335938pt;}
.h9_c00323{height:25.726562pt;}
.h19_c00323{height:26.421875pt;}
.h7_c00323{height:27.117188pt;}
.h16_c00323{height:28.507812pt;}
.h15_c00323{height:29.203125pt;}
.h13_c00323{height:30.966146pt;}
.h12_c00323{height:31.578125pt;}
.h22_c00323{height:31.984375pt;}
.h27_c00323{height:32.250000pt;}
.h14_c00323{height:33.593750pt;}
.h3b_c00323{height:36.156250pt;}
.h2f_c00323{height:37.294922pt;}
.h25_c00323{height:38.296875pt;}
.h34_c00323{height:38.937500pt;}
.h10_c00323{height:38.968750pt;}
.h33_c00323{height:39.632812pt;}
.h35_c00323{height:40.312500pt;}
.h3d_c00323{height:40.328125pt;}
.h2d_c00323{height:40.566406pt;}
.h31_c00323{height:40.984375pt;}
.h3e_c00323{height:41.200195pt;}
.h37_c00323{height:41.220703pt;}
.h3c_c00323{height:41.656250pt;}
.h36_c00323{height:41.875000pt;}
.h8_c00323{height:42.328125pt;}
.hb_c00323{height:42.414062pt;}
.h3f_c00323{height:42.825521pt;}
.h2e_c00323{height:43.000000pt;}
.h28_c00323{height:43.671875pt;}
.h38_c00323{height:44.143229pt;}
.h3a_c00323{height:44.802083pt;}
.hd_c00323{height:45.195312pt;}
.h30_c00323{height:45.460938pt;}
.ha_c00323{height:46.585938pt;}
.h39_c00323{height:47.437500pt;}
.hc_c00323{height:50.062500pt;}
.he_c00323{height:51.453125pt;}
.h26_c00323{height:51.734375pt;}
.h11_c00323{height:52.148438pt;}
.h24_c00323{height:59.125000pt;}
.h23_c00323{height:62.484375pt;}
.h32_c00323{height:63.273438pt;}
.h1a_c00323{height:63.968750pt;}
.h1d_c00323{height:65.359375pt;}
.hf_c00323{height:66.544271pt;}
.h4_c00323{height:68.046875pt;}
.h1_c00323{height:68.701172pt;}
.h3_c00323{height:69.355469pt;}
.h5_c00323{height:70.009766pt;}
.h2c_c00323{height:71.318359pt;}
.h1b_c00323{height:71.972656pt;}
.h2_c00323{height:72.626953pt;}
.h1c_c00323{height:73.935547pt;}
.h1f_c00323{height:77.875000pt;}
.h1e_c00323{height:93.867188pt;}
.h21_c00323{height:96.648438pt;}
.h2b_c00323{height:107.078125pt;}
.h17_c00323{height:160.617188pt;}
.h0_c00323{height:1122.666667pt;}
.w0_c00323{width:793.333333pt;}
.x0_c00323{left:0.000000pt;}
.x1b_c00323{left:125.438947pt;}
.x4_c00323{left:126.399867pt;}
.x1_c00323{left:127.678667pt;}
.x5_c00323{left:148.479467pt;}
.x38_c00323{left:149.438947pt;}
.x3b_c00323{left:153.279747pt;}
.x3c_c00323{left:165.758813pt;}
.x19_c00323{left:193.599587pt;}
.x1a_c00323{left:206.078680pt;}
.xe_c00323{left:214.398920pt;}
.x48_c00323{left:219.839333pt;}
.x26_c00323{left:235.839867pt;}
.x3d_c00323{left:244.798787pt;}
.x27_c00323{left:255.999067pt;}
.x3e_c00323{left:256.960000pt;}
.x4f_c00323{left:262.398920pt;}
.xf_c00323{left:278.078680pt;}
.xa_c00323{left:285.758787pt;}
.x10_c00323{left:294.719200pt;}
.xb_c00323{left:298.239200pt;}
.x50_c00323{left:299.838933pt;}
.xc_c00323{left:308.480000pt;}
.x11_c00323{left:317.438920pt;}
.x3f_c00323{left:321.599067pt;}
.xd_c00323{left:325.440000pt;}
.x8_c00323{left:326.399453pt;}
.x33_c00323{left:333.439453pt;}
.x36_c00323{left:335.039067pt;}
.x40_c00323{left:341.438920pt;}
.x37_c00323{left:344.318813pt;}
.x2c_c00323{left:356.159173pt;}
.x9_c00323{left:363.839320pt;}
.x2_c00323{left:369.599040pt;}
.x12_c00323{left:371.838907pt;}
.x41_c00323{left:375.999067pt;}
.x42_c00323{left:383.679200pt;}
.x34_c00323{left:391.359333pt;}
.x13_c00323{left:392.639613pt;}
.x49_c00323{left:395.198693pt;}
.x43_c00323{left:396.159707pt;}
.x3_c00323{left:408.319333pt;}
.x44_c00323{left:420.479040pt;}
.x2d_c00323{left:423.679733pt;}
.x51_c00323{left:424.960000pt;}
.x22_c00323{left:428.799320pt;}
.x4a_c00323{left:431.359867pt;}
.x45_c00323{left:433.278813pt;}
.x14_c00323{left:436.798787pt;}
.x52_c00323{left:438.719200pt;}
.x6_c00323{left:440.639613pt;}
.x2e_c00323{left:443.519453pt;}
.x15_c00323{left:446.078693pt;}
.x20_c00323{left:449.279333pt;}
.x4b_c00323{left:456.000000pt;}
.x46_c00323{left:458.239707pt;}
.x16_c00323{left:459.839320pt;}
.x21_c00323{left:462.079067pt;}
.x53_c00323{left:470.718787pt;}
.x4c_c00323{left:482.239707pt;}
.x23_c00323{left:484.798787pt;}
.x7_c00323{left:486.719200pt;}
.x4d_c00323{left:490.239173pt;}
.x47_c00323{left:492.159707pt;}
.x54_c00323{left:494.399453pt;}
.x24_c00323{left:501.758787pt;}
.x4e_c00323{left:503.359867pt;}
.x2f_c00323{left:505.918907pt;}
.x1e_c00323{left:512.958907pt;}
.x55_c00323{left:523.519040pt;}
.x17_c00323{left:528.319333pt;}
.x30_c00323{left:532.798787pt;}
.x56_c00323{left:545.919440pt;}
.x1f_c00323{left:548.479987pt;}
.x1c_c00323{left:550.079587pt;}
.x18_c00323{left:551.679200pt;}
.x28_c00323{left:554.559040pt;}
.x1d_c00323{left:576.000000pt;}
.x29_c00323{left:585.919840pt;}
.x2a_c00323{left:591.999067pt;}
.x39_c00323{left:593.598720pt;}
.x31_c00323{left:602.239707pt;}
.x35_c00323{left:603.199173pt;}
.x3a_c00323{left:607.678707pt;}
.x32_c00323{left:629.119587pt;}
.x25_c00323{left:630.399867pt;}
.x2b_c00323{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d0f7b77e58ccbad3cde1917.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_77c4e11b41afdb77ce21fa37.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_626c28213e633887175b0c2f.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_8e0fc558335961bc218af620.woff2')format("woff");}.ff4_c00324{font-family:ff4_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:ff5_c00324;src:url('chunks/assets/font_84c9519dc952501e8d754d71.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.432129;font-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_c00324{transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201327,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.217672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217672,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1f_c00324{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m12_c00324{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.mc_c00324{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1a_c00324{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m1b_c00324{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m20_c00324{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m18_c00324{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m16_c00324{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m15_c00324{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00324{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);}
.m21_c00324{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m27_c00324{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m1c_c00324{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls16_c00324{letter-spacing:-17.678925px;}
.ls13_c00324{letter-spacing:-13.780800px;}
.ls12_c00324{letter-spacing:-11.636175px;}
.ls10_c00324{letter-spacing:-8.914500px;}
.ls14_c00324{letter-spacing:-7.450373px;}
.lse_c00324{letter-spacing:-7.426125px;}
.lsd_c00324{letter-spacing:-7.345800px;}
.lsf_c00324{letter-spacing:-6.685875px;}
.ls8_c00324{letter-spacing:-6.000300px;}
.ls9_c00324{letter-spacing:-5.945625px;}
.lsb_c00324{letter-spacing:-5.581695px;}
.ls27_c00324{letter-spacing:-5.510880px;}
.ls19_c00324{letter-spacing:-5.247533px;}
.ls11_c00324{letter-spacing:-5.203125px;}
.ls3_c00324{letter-spacing:-5.196713px;}
.ls1d_c00324{letter-spacing:-4.643625px;}
.ls2_c00324{letter-spacing:-4.456463px;}
.ls7_c00324{letter-spacing:-3.717000px;}
.ls2a_c00324{letter-spacing:-3.525165px;}
.ls1c_c00324{letter-spacing:-3.133725px;}
.ls1e_c00324{letter-spacing:-3.000848px;}
.ls1a_c00324{letter-spacing:-2.972700px;}
.ls4_c00324{letter-spacing:-2.968875px;}
.ls17_c00324{letter-spacing:-2.754000px;}
.ls20_c00324{letter-spacing:-2.362200px;}
.ls1_c00324{letter-spacing:-2.229413px;}
.ls24_c00324{letter-spacing:-2.182950px;}
.ls26_c00324{letter-spacing:-1.526175px;}
.ls5_c00324{letter-spacing:-1.489163px;}
.ls15_c00324{letter-spacing:-1.485458px;}
.lsc_c00324{letter-spacing:-0.854700px;}
.ls25_c00324{letter-spacing:-0.790500px;}
.ls1b_c00324{letter-spacing:-0.763200px;}
.ls21_c00324{letter-spacing:-0.751275px;}
.ls6_c00324{letter-spacing:-0.740250px;}
.lsa_c00324{letter-spacing:0.000000px;}
.ls23_c00324{letter-spacing:1.605825px;}
.ls22_c00324{letter-spacing:1.684800px;}
.ls0_c00324{letter-spacing:2.406450px;}
.ls28_c00324{letter-spacing:3.152235px;}
.ls1f_c00324{letter-spacing:3.264765px;}
.ls18_c00324{letter-spacing:3.485258px;}
.ls29_c00324{letter-spacing:4.192650px;}
.ls2b_c00324{letter-spacing:5.363400px;}
.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;}
._f_c00324{margin-left:-33.743558px;}
._1a_c00324{margin-left:-11.635298px;}
._1b_c00324{margin-left:-7.517520px;}
._6_c00324{margin-left:-6.383594px;}
._9_c00324{margin-left:-4.328902px;}
._7_c00324{margin-left:-2.800172px;}
._17_c00324{margin-left:-1.477885px;}
._d_c00324{width:1.042175px;}
._8_c00324{width:2.422335px;}
._e_c00324{width:3.797280px;}
._c_c00324{width:5.662496px;}
._10_c00324{width:6.762530px;}
._b_c00324{width:8.705025px;}
._14_c00324{width:10.641859px;}
._11_c00324{width:11.709709px;}
._13_c00324{width:12.955772px;}
._a_c00324{width:13.977947px;}
._18_c00324{width:15.373144px;}
._16_c00324{width:16.700602px;}
._12_c00324{width:18.592786px;}
._19_c00324{width:20.227992px;}
._15_c00324{width:21.264045px;}
._3_c00324{width:23.385689px;}
._5_c00324{width:25.088769px;}
._4_c00324{width:27.161083px;}
._0_c00324{width:29.144855px;}
._2_c00324{width:32.694043px;}
._1_c00324{width:34.198124px;}
.fc0_c00324{color:transparent;}
.fs15_c00324{font-size:42.000000px;}
.fs12_c00324{font-size:42.750000px;}
.fse_c00324{font-size:45.750000px;}
.fs11_c00324{font-size:46.500000px;}
.fs10_c00324{font-size:47.250000px;}
.fsd_c00324{font-size:48.000000px;}
.fs14_c00324{font-size:49.500000px;}
.fs13_c00324{font-size:50.250000px;}
.fsf_c00324{font-size:52.500000px;}
.fs9_c00324{font-size:75.750000px;}
.fsa_c00324{font-size:76.500000px;}
.fs0_c00324{font-size:78.750000px;}
.fs3_c00324{font-size:79.500000px;}
.fs2_c00324{font-size:80.250000px;}
.fsc_c00324{font-size:81.000000px;}
.fsb_c00324{font-size:81.750000px;}
.fs5_c00324{font-size:82.500000px;}
.fs7_c00324{font-size:83.250000px;}
.fs6_c00324{font-size:84.000000px;}
.fs1_c00324{font-size:84.750000px;}
.fs8_c00324{font-size:87.000000px;}
.fs4_c00324{font-size:115.500000px;}
.y0_c00324{bottom:0.000000px;}
.y27_c00324{bottom:178.921215px;}
.y26_c00324{bottom:217.799535px;}
.y25_c00324{bottom:295.920600px;}
.y24_c00324{bottom:326.160435px;}
.y23_c00324{bottom:326.161080px;}
.y22_c00324{bottom:356.040795px;}
.y21_c00324{bottom:385.199850px;}
.y1f_c00324{bottom:415.079730px;}
.y20_c00324{bottom:415.080465px;}
.y1e_c00324{bottom:444.240870px;}
.y1d_c00324{bottom:444.240960px;}
.y1c_c00324{bottom:474.480885px;}
.y1a_c00324{bottom:504.000510px;}
.y1b_c00324{bottom:504.000600px;}
.y19_c00324{bottom:534.240420px;}
.y18_c00324{bottom:534.240600px;}
.y17_c00324{bottom:563.760135px;}
.y16_c00324{bottom:563.760435px;}
.y15_c00324{bottom:593.640150px;}
.y14_c00324{bottom:623.159685px;}
.y12_c00324{bottom:682.560720px;}
.y13_c00324{bottom:682.560750px;}
.y11_c00324{bottom:703.799520px;}
.y10_c00324{bottom:703.799790px;}
.yf_c00324{bottom:725.400885px;}
.ye_c00324{bottom:784.799280px;}
.yd_c00324{bottom:815.041305px;}
.yc_c00324{bottom:874.440555px;}
.yb_c00324{bottom:904.320285px;}
.ya_c00324{bottom:904.320555px;}
.y9_c00324{bottom:933.840090px;}
.y8_c00324{bottom:933.840270px;}
.y7_c00324{bottom:963.359805px;}
.y6_c00324{bottom:963.359955px;}
.y5_c00324{bottom:992.881305px;}
.y4_c00324{bottom:1052.640750px;}
.y3_c00324{bottom:1082.880660px;}
.y2_c00324{bottom:1112.760390px;}
.y1_c00324{bottom:1142.640105px;}
.h1c_c00324{height:43.804688px;}
.h15_c00324{height:44.586914px;}
.h17_c00324{height:45.637207px;}
.h11_c00324{height:46.107422px;}
.h19_c00324{height:46.373291px;}
.h14_c00324{height:46.863281px;}
.h10_c00324{height:47.109375px;}
.h1a_c00324{height:47.437500px;}
.h13_c00324{height:47.619141px;}
.h18_c00324{height:48.375000px;}
.h1b_c00324{height:48.581543px;}
.h16_c00324{height:49.661133px;}
.h12_c00324{height:51.884766px;}
.hb_c00324{height:74.344482px;}
.hd_c00324{height:75.080566px;}
.h1_c00324{height:77.288818px;}
.h4_c00324{height:78.024902px;}
.h3_c00324{height:78.760986px;}
.hf_c00324{height:79.497070px;}
.he_c00324{height:80.233154px;}
.h6_c00324{height:80.969238px;}
.hc_c00324{height:81.533203px;}
.h8_c00324{height:81.705322px;}
.h2_c00324{height:83.177490px;}
.h9_c00324{height:83.756836px;}
.ha_c00324{height:85.980469px;}
.h7_c00324{height:87.609375px;}
.h5_c00324{height:120.462891px;}
.h0_c00324{height:1263.000000px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.xa_c00324{left:141.121605px;}
.x1_c00324{left:142.199850px;}
.x2c_c00324{left:172.439715px;}
.x2d_c00324{left:188.639100px;}
.x14_c00324{left:195.119790px;}
.xb_c00324{left:197.279250px;}
.xc_c00324{left:211.319850px;}
.x2e_c00324{left:228.598500px;}
.xd_c00324{left:231.479235px;}
.x1b_c00324{left:234.719100px;}
.x1c_c00324{left:270.359250px;}
.x2f_c00324{left:290.159385px;}
.x4_c00324{left:294.839535px;}
.x38_c00324{left:298.079385px;}
.x5_c00324{left:310.679700px;}
.x39_c00324{left:340.199385px;}
.x30_c00324{left:351.718500px;}
.x24_c00324{left:365.038950px;}
.x17_c00324{left:366.479235px;}
.x18_c00324{left:380.519685px;}
.xe_c00324{left:384.118785px;}
.x3a_c00324{left:387.719565px;}
.xf_c00324{left:399.958920px;}
.x31_c00324{left:404.279850px;}
.x8_c00324{left:418.318770px;}
.x9_c00324{left:432.000000px;}
.x25_c00324{left:438.838950px;}
.x32_c00324{left:442.798920px;}
.x3b_c00324{left:444.239220px;}
.x10_c00324{left:451.080000px;}
.x33_c00324{left:456.839535px;}
.x11_c00324{left:466.199850px;}
.x34_c00324{left:467.999400px;}
.x26_c00324{left:474.479235px;}
.x1d_c00324{left:480.958920px;}
.x3c_c00324{left:486.718500px;}
.x21_c00324{left:489.958335px;}
.x3d_c00324{left:498.598530px;}
.x22_c00324{left:504.359850px;}
.x15_c00324{left:509.758530px;}
.x27_c00324{left:514.438665px;}
.x1e_c00324{left:518.759535px;}
.x16_c00324{left:523.439670px;}
.x35_c00324{left:527.399820px;}
.x23_c00324{left:535.679070px;}
.x19_c00324{left:542.519670px;}
.x3e_c00324{left:549.719565px;}
.x36_c00324{left:555.479235px;}
.x1a_c00324{left:561.958920px;}
.x3f_c00324{left:568.079400px;}
.x2_c00324{left:569.158770px;}
.x37_c00324{left:579.959385px;}
.x40_c00324{left:581.038920px;}
.x28_c00324{left:583.558635px;}
.x3_c00324{left:590.399235px;}
.x6_c00324{left:603.719520px;}
.x41_c00324{left:605.519070px;}
.x42_c00324{left:619.198785px;}
.x29_c00324{left:622.799520px;}
.x7_c00324{left:638.278800px;}
.x12_c00324{left:710.638545px;}
.x13_c00324{left:716.759085px;}
.x1f_c00324{left:729.359250px;}
.x2b_c00324{left:749.518620px;}
.x20_c00324{left:755.279850px;}
.x2a_c00324{left:761.398635px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls16_c00324{letter-spacing:-15.714600pt;}
.ls13_c00324{letter-spacing:-12.249600pt;}
.ls12_c00324{letter-spacing:-10.343267pt;}
.ls10_c00324{letter-spacing:-7.924000pt;}
.ls14_c00324{letter-spacing:-6.622553pt;}
.lse_c00324{letter-spacing:-6.601000pt;}
.lsd_c00324{letter-spacing:-6.529600pt;}
.lsf_c00324{letter-spacing:-5.943000pt;}
.ls8_c00324{letter-spacing:-5.333600pt;}
.ls9_c00324{letter-spacing:-5.285000pt;}
.lsb_c00324{letter-spacing:-4.961507pt;}
.ls27_c00324{letter-spacing:-4.898560pt;}
.ls19_c00324{letter-spacing:-4.664473pt;}
.ls11_c00324{letter-spacing:-4.625000pt;}
.ls3_c00324{letter-spacing:-4.619300pt;}
.ls1d_c00324{letter-spacing:-4.127667pt;}
.ls2_c00324{letter-spacing:-3.961300pt;}
.ls7_c00324{letter-spacing:-3.304000pt;}
.ls2a_c00324{letter-spacing:-3.133480pt;}
.ls1c_c00324{letter-spacing:-2.785533pt;}
.ls1e_c00324{letter-spacing:-2.667420pt;}
.ls1a_c00324{letter-spacing:-2.642400pt;}
.ls4_c00324{letter-spacing:-2.639000pt;}
.ls17_c00324{letter-spacing:-2.448000pt;}
.ls20_c00324{letter-spacing:-2.099733pt;}
.ls1_c00324{letter-spacing:-1.981700pt;}
.ls24_c00324{letter-spacing:-1.940400pt;}
.ls26_c00324{letter-spacing:-1.356600pt;}
.ls5_c00324{letter-spacing:-1.323700pt;}
.ls15_c00324{letter-spacing:-1.320407pt;}
.lsc_c00324{letter-spacing:-0.759733pt;}
.ls25_c00324{letter-spacing:-0.702667pt;}
.ls1b_c00324{letter-spacing:-0.678400pt;}
.ls21_c00324{letter-spacing:-0.667800pt;}
.ls6_c00324{letter-spacing:-0.658000pt;}
.lsa_c00324{letter-spacing:0.000000pt;}
.ls23_c00324{letter-spacing:1.427400pt;}
.ls22_c00324{letter-spacing:1.497600pt;}
.ls0_c00324{letter-spacing:2.139067pt;}
.ls28_c00324{letter-spacing:2.801987pt;}
.ls1f_c00324{letter-spacing:2.902013pt;}
.ls18_c00324{letter-spacing:3.098007pt;}
.ls29_c00324{letter-spacing:3.726800pt;}
.ls2b_c00324{letter-spacing:4.767467pt;}
.ws0_c00324{word-spacing:0.000000pt;}
._f_c00324{margin-left:-29.994274pt;}
._1a_c00324{margin-left:-10.342487pt;}
._1b_c00324{margin-left:-6.682240pt;}
._6_c00324{margin-left:-5.674306pt;}
._9_c00324{margin-left:-3.847913pt;}
._7_c00324{margin-left:-2.489042pt;}
._17_c00324{margin-left:-1.313675pt;}
._d_c00324{width:0.926377pt;}
._8_c00324{width:2.153187pt;}
._e_c00324{width:3.375360pt;}
._c_c00324{width:5.033330pt;}
._10_c00324{width:6.011138pt;}
._b_c00324{width:7.737800pt;}
._14_c00324{width:9.459430pt;}
._11_c00324{width:10.408630pt;}
._13_c00324{width:11.516242pt;}
._a_c00324{width:12.424842pt;}
._18_c00324{width:13.665017pt;}
._16_c00324{width:14.844979pt;}
._12_c00324{width:16.526921pt;}
._19_c00324{width:17.980438pt;}
._15_c00324{width:18.901374pt;}
._3_c00324{width:20.787279pt;}
._5_c00324{width:22.301128pt;}
._4_c00324{width:24.143185pt;}
._0_c00324{width:25.906538pt;}
._2_c00324{width:29.061372pt;}
._1_c00324{width:30.398332pt;}
.fs15_c00324{font-size:37.333333pt;}
.fs12_c00324{font-size:38.000000pt;}
.fse_c00324{font-size:40.666667pt;}
.fs11_c00324{font-size:41.333333pt;}
.fs10_c00324{font-size:42.000000pt;}
.fsd_c00324{font-size:42.666667pt;}
.fs14_c00324{font-size:44.000000pt;}
.fs13_c00324{font-size:44.666667pt;}
.fsf_c00324{font-size:46.666667pt;}
.fs9_c00324{font-size:67.333333pt;}
.fsa_c00324{font-size:68.000000pt;}
.fs0_c00324{font-size:70.000000pt;}
.fs3_c00324{font-size:70.666667pt;}
.fs2_c00324{font-size:71.333333pt;}
.fsc_c00324{font-size:72.000000pt;}
.fsb_c00324{font-size:72.666667pt;}
.fs5_c00324{font-size:73.333333pt;}
.fs7_c00324{font-size:74.000000pt;}
.fs6_c00324{font-size:74.666667pt;}
.fs1_c00324{font-size:75.333333pt;}
.fs8_c00324{font-size:77.333333pt;}
.fs4_c00324{font-size:102.666667pt;}
.y0_c00324{bottom:0.000000pt;}
.y27_c00324{bottom:159.041080pt;}
.y26_c00324{bottom:193.599587pt;}
.y25_c00324{bottom:263.040533pt;}
.y24_c00324{bottom:289.920387pt;}
.y23_c00324{bottom:289.920960pt;}
.y22_c00324{bottom:316.480707pt;}
.y21_c00324{bottom:342.399867pt;}
.y1f_c00324{bottom:368.959760pt;}
.y20_c00324{bottom:368.960413pt;}
.y1e_c00324{bottom:394.880773pt;}
.y1d_c00324{bottom:394.880853pt;}
.y1c_c00324{bottom:421.760787pt;}
.y1a_c00324{bottom:448.000453pt;}
.y1b_c00324{bottom:448.000533pt;}
.y19_c00324{bottom:474.880373pt;}
.y18_c00324{bottom:474.880533pt;}
.y17_c00324{bottom:501.120120pt;}
.y16_c00324{bottom:501.120387pt;}
.y15_c00324{bottom:527.680133pt;}
.y14_c00324{bottom:553.919720pt;}
.y12_c00324{bottom:606.720640pt;}
.y13_c00324{bottom:606.720667pt;}
.y11_c00324{bottom:625.599573pt;}
.y10_c00324{bottom:625.599813pt;}
.yf_c00324{bottom:644.800787pt;}
.ye_c00324{bottom:697.599360pt;}
.yd_c00324{bottom:724.481160pt;}
.yc_c00324{bottom:777.280493pt;}
.yb_c00324{bottom:803.840253pt;}
.ya_c00324{bottom:803.840493pt;}
.y9_c00324{bottom:830.080080pt;}
.y8_c00324{bottom:830.080240pt;}
.y7_c00324{bottom:856.319827pt;}
.y6_c00324{bottom:856.319960pt;}
.y5_c00324{bottom:882.561160pt;}
.y4_c00324{bottom:935.680667pt;}
.y3_c00324{bottom:962.560587pt;}
.y2_c00324{bottom:989.120347pt;}
.y1_c00324{bottom:1015.680093pt;}
.h1c_c00324{height:38.937500pt;}
.h15_c00324{height:39.632812pt;}
.h17_c00324{height:40.566406pt;}
.h11_c00324{height:40.984375pt;}
.h19_c00324{height:41.220703pt;}
.h14_c00324{height:41.656250pt;}
.h10_c00324{height:41.875000pt;}
.h1a_c00324{height:42.166667pt;}
.h13_c00324{height:42.328125pt;}
.h18_c00324{height:43.000000pt;}
.h1b_c00324{height:43.183594pt;}
.h16_c00324{height:44.143229pt;}
.h12_c00324{height:46.119792pt;}
.hb_c00324{height:66.083984pt;}
.hd_c00324{height:66.738281pt;}
.h1_c00324{height:68.701172pt;}
.h4_c00324{height:69.355469pt;}
.h3_c00324{height:70.009766pt;}
.hf_c00324{height:70.664062pt;}
.he_c00324{height:71.318359pt;}
.h6_c00324{height:71.972656pt;}
.hc_c00324{height:72.473958pt;}
.h8_c00324{height:72.626953pt;}
.h2_c00324{height:73.935547pt;}
.h9_c00324{height:74.450521pt;}
.ha_c00324{height:76.427083pt;}
.h7_c00324{height:77.875000pt;}
.h5_c00324{height:107.078125pt;}
.h0_c00324{height:1122.666667pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.xa_c00324{left:125.441427pt;}
.x1_c00324{left:126.399867pt;}
.x2c_c00324{left:153.279747pt;}
.x2d_c00324{left:167.679200pt;}
.x14_c00324{left:173.439813pt;}
.xb_c00324{left:175.359333pt;}
.xc_c00324{left:187.839867pt;}
.x2e_c00324{left:203.198667pt;}
.xd_c00324{left:205.759320pt;}
.x1b_c00324{left:208.639200pt;}
.x1c_c00324{left:240.319333pt;}
.x2f_c00324{left:257.919453pt;}
.x4_c00324{left:262.079587pt;}
.x38_c00324{left:264.959453pt;}
.x5_c00324{left:276.159733pt;}
.x39_c00324{left:302.399453pt;}
.x30_c00324{left:312.638667pt;}
.x24_c00324{left:324.479067pt;}
.x17_c00324{left:325.759320pt;}
.x18_c00324{left:338.239720pt;}
.xe_c00324{left:341.438920pt;}
.x3a_c00324{left:344.639613pt;}
.xf_c00324{left:355.519040pt;}
.x31_c00324{left:359.359867pt;}
.x8_c00324{left:371.838907pt;}
.x9_c00324{left:384.000000pt;}
.x25_c00324{left:390.079067pt;}
.x32_c00324{left:393.599040pt;}
.x3b_c00324{left:394.879307pt;}
.x10_c00324{left:400.960000pt;}
.x33_c00324{left:406.079587pt;}
.x11_c00324{left:414.399867pt;}
.x34_c00324{left:415.999467pt;}
.x26_c00324{left:421.759320pt;}
.x1d_c00324{left:427.519040pt;}
.x3c_c00324{left:432.638667pt;}
.x21_c00324{left:435.518520pt;}
.x3d_c00324{left:443.198693pt;}
.x22_c00324{left:448.319867pt;}
.x15_c00324{left:453.118693pt;}
.x27_c00324{left:457.278813pt;}
.x1e_c00324{left:461.119587pt;}
.x16_c00324{left:465.279707pt;}
.x35_c00324{left:468.799840pt;}
.x23_c00324{left:476.159173pt;}
.x19_c00324{left:482.239707pt;}
.x3e_c00324{left:488.639613pt;}
.x36_c00324{left:493.759320pt;}
.x1a_c00324{left:499.519040pt;}
.x3f_c00324{left:504.959467pt;}
.x2_c00324{left:505.918907pt;}
.x37_c00324{left:515.519453pt;}
.x40_c00324{left:516.479040pt;}
.x28_c00324{left:518.718787pt;}
.x3_c00324{left:524.799320pt;}
.x6_c00324{left:536.639573pt;}
.x41_c00324{left:538.239173pt;}
.x42_c00324{left:550.398920pt;}
.x29_c00324{left:553.599573pt;}
.x7_c00324{left:567.358933pt;}
.x12_c00324{left:631.678707pt;}
.x13_c00324{left:637.119187pt;}
.x1f_c00324{left:648.319333pt;}
.x2b_c00324{left:666.238773pt;}
.x20_c00324{left:671.359867pt;}
.x2a_c00324{left:676.798787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20e2240a5c7658bf6c01d221.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_2281f72ea1c698847e279851.woff2')format("woff");}.ff2_c00325{font-family:ff2_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;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_ecf65e7ecaf66b8d0e533ce3.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_b114089b4005ab7ec75481d3.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;}
.mf_c00325{transform:matrix(0.186842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186842,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m17_c00325{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m18_c00325{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m22_c00325{transform:matrix(0.211864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211864,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{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);}
.m12_c00325{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m19_c00325{transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);}
.m1b_c00325{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1f_c00325{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m1d_c00325{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m15_c00325{transform:matrix(0.242138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242138,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);}
.m10_c00325{transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275180,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.lsb_c00325{letter-spacing:-8.175038px;}
.ls1a_c00325{letter-spacing:-7.426125px;}
.ls15_c00325{letter-spacing:-7.362900px;}
.ls1b_c00325{letter-spacing:-6.745200px;}
.ls19_c00325{letter-spacing:-6.685875px;}
.lsd_c00325{letter-spacing:-5.945625px;}
.ls1f_c00325{letter-spacing:-5.731200px;}
.ls11_c00325{letter-spacing:-5.463450px;}
.ls1c_c00325{letter-spacing:-5.425875px;}
.ls9_c00325{letter-spacing:-5.196713px;}
.lsa_c00325{letter-spacing:-4.456463px;}
.ls20_c00325{letter-spacing:-4.300800px;}
.ls14_c00325{letter-spacing:-3.858750px;}
.ls2_c00325{letter-spacing:-3.780000px;}
.ls6_c00325{letter-spacing:-3.717000px;}
.ls16_c00325{letter-spacing:-3.013875px;}
.ls3_c00325{letter-spacing:-2.968875px;}
.ls13_c00325{letter-spacing:-2.477790px;}
.ls10_c00325{letter-spacing:-2.431575px;}
.ls4_c00325{letter-spacing:-2.229413px;}
.ls21_c00325{letter-spacing:-2.150400px;}
.lsf_c00325{letter-spacing:-1.668600px;}
.ls8_c00325{letter-spacing:-1.489163px;}
.ls17_c00325{letter-spacing:-1.366718px;}
.ls1d_c00325{letter-spacing:-0.865132px;}
.ls25_c00325{letter-spacing:-0.799500px;}
.ls7_c00325{letter-spacing:-0.740250px;}
.lsc_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.740250px;}
.ls5_c00325{letter-spacing:0.829350px;}
.ls22_c00325{letter-spacing:0.840000px;}
.ls26_c00325{letter-spacing:0.885000px;}
.ls1_c00325{letter-spacing:2.301375px;}
.ls1e_c00325{letter-spacing:2.362200px;}
.ls23_c00325{letter-spacing:2.476500px;}
.ls24_c00325{letter-spacing:2.865120px;}
.ls12_c00325{letter-spacing:3.564810px;}
.ls18_c00325{letter-spacing:3.637710px;}
.lse_c00325{letter-spacing:4.609125px;}
.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;}
._18_c00325{margin-left:-31.812720px;}
._11_c00325{margin-left:-6.036247px;}
._1d_c00325{margin-left:-4.960225px;}
._10_c00325{margin-left:-3.944810px;}
._5_c00325{margin-left:-1.466949px;}
._6_c00325{width:1.251739px;}
._1_c00325{width:2.754497px;}
._3_c00325{width:3.938644px;}
._2_c00325{width:5.627118px;}
._4_c00325{width:7.617889px;}
._0_c00325{width:9.132207px;}
._7_c00325{width:10.605307px;}
._16_c00325{width:11.640166px;}
._13_c00325{width:12.698985px;}
._15_c00325{width:14.613048px;}
._9_c00325{width:15.639200px;}
._12_c00325{width:17.046473px;}
._b_c00325{width:18.322332px;}
._17_c00325{width:19.991698px;}
._8_c00325{width:21.362230px;}
._a_c00325{width:23.147181px;}
._d_c00325{width:24.388548px;}
._1a_c00325{width:25.976401px;}
._1c_c00325{width:27.228229px;}
._14_c00325{width:28.420400px;}
._1b_c00325{width:30.056364px;}
._19_c00325{width:31.099653px;}
._c_c00325{width:32.396130px;}
._f_c00325{width:33.700141px;}
._e_c00325{width:35.075458px;}
.fc0_c00325{color:transparent;}
.fs17_c00325{font-size:42.000000px;}
.fs19_c00325{font-size:44.250000px;}
.fs12_c00325{font-size:45.750000px;}
.fs15_c00325{font-size:46.500000px;}
.fs16_c00325{font-size:48.000000px;}
.fs18_c00325{font-size:48.750000px;}
.fs8_c00325{font-size:53.250000px;}
.fs4_c00325{font-size:63.750000px;}
.fsa_c00325{font-size:71.250000px;}
.fs2_c00325{font-size:72.750000px;}
.fs13_c00325{font-size:75.000000px;}
.fsc_c00325{font-size:78.000000px;}
.fs1_c00325{font-size:78.750000px;}
.fs7_c00325{font-size:80.250000px;}
.fs6_c00325{font-size:81.000000px;}
.fs5_c00325{font-size:81.750000px;}
.fs3_c00325{font-size:82.500000px;}
.fs9_c00325{font-size:83.250000px;}
.fs0_c00325{font-size:84.000000px;}
.fs11_c00325{font-size:84.750000px;}
.fsd_c00325{font-size:96.000000px;}
.fse_c00325{font-size:101.250000px;}
.fsb_c00325{font-size:104.250000px;}
.fsf_c00325{font-size:115.500000px;}
.fs10_c00325{font-size:119.250000px;}
.fs14_c00325{font-size:135.000000px;}
.y0_c00325{bottom:0.000000px;}
.y26_c00325{bottom:173.159850px;}
.y25_c00325{bottom:212.760150px;}
.y23_c00325{bottom:286.199385px;}
.y24_c00325{bottom:286.560285px;}
.y22_c00325{bottom:293.760135px;}
.y21_c00325{bottom:307.440630px;}
.y20_c00325{bottom:328.319250px;}
.y1f_c00325{bottom:328.321290px;}
.y1e_c00325{bottom:350.280765px;}
.y1c_c00325{bottom:371.158935px;}
.y1d_c00325{bottom:371.159385px;}
.y1b_c00325{bottom:392.399820px;}
.y1a_c00325{bottom:451.800060px;}
.y19_c00325{bottom:482.039985px;}
.y18_c00325{bottom:482.040165px;}
.y16_c00325{bottom:511.558920px;}
.y17_c00325{bottom:511.559685px;}
.y15_c00325{bottom:541.438635px;}
.y14_c00325{bottom:570.959970px;}
.y13_c00325{bottom:570.960570px;}
.y12_c00325{bottom:600.480105px;}
.y11_c00325{bottom:629.999640px;}
.y10_c00325{bottom:689.759085px;}
.yf_c00325{bottom:689.759970px;}
.ye_c00325{bottom:719.639700px;}
.yd_c00325{bottom:749.518620px;}
.yc_c00325{bottom:752.039985px;}
.yb_c00325{bottom:779.399505px;}
.ya_c00325{bottom:809.639415px;}
.y9_c00325{bottom:839.340090px;}
.y8_c00325{bottom:868.680090px;}
.y7_c00325{bottom:868.683810px;}
.y6_c00325{bottom:898.203345px;}
.y5_c00325{bottom:958.321170px;}
.y4_c00325{bottom:988.200900px;}
.y3_c00325{bottom:1018.080615px;}
.y2_c00325{bottom:1077.119385px;}
.y1_c00325{bottom:1136.878875px;}
.h19_c00325{height:43.804688px;}
.h1b_c00325{height:46.151367px;}
.h17_c00325{height:46.863281px;}
.h14_c00325{height:47.715820px;}
.h18_c00325{height:48.375000px;}
.h1a_c00325{height:49.130859px;}
.h9_c00325{height:55.538086px;}
.h5_c00325{height:64.248047px;}
.hb_c00325{height:74.311523px;}
.h3_c00325{height:75.875977px;}
.he_c00325{height:76.552734px;}
.h2_c00325{height:77.288818px;}
.h15_c00325{height:78.222656px;}
.h13_c00325{height:78.760986px;}
.hd_c00325{height:79.497070px;}
.h8_c00325{height:80.876953px;}
.h4_c00325{height:80.969238px;}
.h7_c00325{height:81.632812px;}
.h6_c00325{height:82.388672px;}
.h1_c00325{height:82.441406px;}
.h12_c00325{height:83.177490px;}
.ha_c00325{height:83.900391px;}
.hf_c00325{height:100.125000px;}
.hc_c00325{height:108.729492px;}
.h10_c00325{height:120.462891px;}
.h11_c00325{height:124.374023px;}
.h16_c00325{height:140.800781px;}
.h0_c00325{height:1263.000000px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x1b_c00325{left:138.596310px;}
.x1_c00325{left:139.678500px;}
.x2c_c00325{left:170.638500px;}
.x2d_c00325{left:184.319850px;}
.x12_c00325{left:192.958350px;}
.x4_c00325{left:194.039430px;}
.x1c_c00325{left:195.118785px;}
.x2_c00325{left:214.559685px;}
.x3_c00325{left:221.039400px;}
.x2e_c00325{left:222.838950px;}
.x1d_c00325{left:226.798950px;}
.x2f_c00325{left:243.000000px;}
.x30_c00325{left:270.718500px;}
.x26_c00325{left:287.998950px;}
.x16_c00325{left:294.839535px;}
.x27_c00325{left:302.398635px;}
.x17_c00325{left:304.918350px;}
.x1e_c00325{left:307.439685px;}
.x1f_c00325{left:323.639100px;}
.x31_c00325{left:358.199850px;}
.x8_c00325{left:375.119385px;}
.x32_c00325{left:381.958350px;}
.x20_c00325{left:389.519070px;}
.x9_c00325{left:390.598530px;}
.x18_c00325{left:395.278800px;}
.x33_c00325{left:396.359850px;}
.xa_c00325{left:409.678530px;}
.x13_c00325{left:415.078815px;}
.x14_c00325{left:428.039985px;}
.x15_c00325{left:442.439670px;}
.xb_c00325{left:447.479235px;}
.x28_c00325{left:449.639700px;}
.x29_c00325{left:464.398635px;}
.xc_c00325{left:470.519070px;}
.x23_c00325{left:484.918950px;}
.xd_c00325{left:490.319235px;}
.x24_c00325{left:503.998950px;}
.x6_c00325{left:516.958335px;}
.x19_c00325{left:520.559100px;}
.x7_c00325{left:537.119385px;}
.x2a_c00325{left:549.358665px;}
.x25_c00325{left:555.479235px;}
.x1a_c00325{left:557.998950px;}
.x2b_c00325{left:574.559100px;}
.xe_c00325{left:592.559685px;}
.xf_c00325{left:612.359850px;}
.x10_c00325{left:712.078770px;}
.x21_c00325{left:722.879520px;}
.x11_c00325{left:735.838950px;}
.x22_c00325{left:741.959385px;}
.x5_c00325{left:771.120030px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.lsb_c00325{letter-spacing:-7.266700pt;}
.ls1a_c00325{letter-spacing:-6.601000pt;}
.ls15_c00325{letter-spacing:-6.544800pt;}
.ls1b_c00325{letter-spacing:-5.995733pt;}
.ls19_c00325{letter-spacing:-5.943000pt;}
.lsd_c00325{letter-spacing:-5.285000pt;}
.ls1f_c00325{letter-spacing:-5.094400pt;}
.ls11_c00325{letter-spacing:-4.856400pt;}
.ls1c_c00325{letter-spacing:-4.823000pt;}
.ls9_c00325{letter-spacing:-4.619300pt;}
.lsa_c00325{letter-spacing:-3.961300pt;}
.ls20_c00325{letter-spacing:-3.822933pt;}
.ls14_c00325{letter-spacing:-3.430000pt;}
.ls2_c00325{letter-spacing:-3.360000pt;}
.ls6_c00325{letter-spacing:-3.304000pt;}
.ls16_c00325{letter-spacing:-2.679000pt;}
.ls3_c00325{letter-spacing:-2.639000pt;}
.ls13_c00325{letter-spacing:-2.202480pt;}
.ls10_c00325{letter-spacing:-2.161400pt;}
.ls4_c00325{letter-spacing:-1.981700pt;}
.ls21_c00325{letter-spacing:-1.911467pt;}
.lsf_c00325{letter-spacing:-1.483200pt;}
.ls8_c00325{letter-spacing:-1.323700pt;}
.ls17_c00325{letter-spacing:-1.214860pt;}
.ls1d_c00325{letter-spacing:-0.769007pt;}
.ls25_c00325{letter-spacing:-0.710667pt;}
.ls7_c00325{letter-spacing:-0.658000pt;}
.lsc_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.658000pt;}
.ls5_c00325{letter-spacing:0.737200pt;}
.ls22_c00325{letter-spacing:0.746667pt;}
.ls26_c00325{letter-spacing:0.786667pt;}
.ls1_c00325{letter-spacing:2.045667pt;}
.ls1e_c00325{letter-spacing:2.099733pt;}
.ls23_c00325{letter-spacing:2.201333pt;}
.ls24_c00325{letter-spacing:2.546773pt;}
.ls12_c00325{letter-spacing:3.168720pt;}
.ls18_c00325{letter-spacing:3.233520pt;}
.lse_c00325{letter-spacing:4.097000pt;}
.ws0_c00325{word-spacing:0.000000pt;}
._18_c00325{margin-left:-28.277973pt;}
._11_c00325{margin-left:-5.365553pt;}
._1d_c00325{margin-left:-4.409089pt;}
._10_c00325{margin-left:-3.506498pt;}
._5_c00325{margin-left:-1.303955pt;}
._6_c00325{width:1.112657pt;}
._1_c00325{width:2.448442pt;}
._3_c00325{width:3.501017pt;}
._2_c00325{width:5.001883pt;}
._4_c00325{width:6.771457pt;}
._0_c00325{width:8.117517pt;}
._7_c00325{width:9.426940pt;}
._16_c00325{width:10.346814pt;}
._13_c00325{width:11.287986pt;}
._15_c00325{width:12.989376pt;}
._9_c00325{width:13.901511pt;}
._12_c00325{width:15.152421pt;}
._b_c00325{width:16.286517pt;}
._17_c00325{width:17.770398pt;}
._8_c00325{width:18.988649pt;}
._a_c00325{width:20.575272pt;}
._d_c00325{width:21.678709pt;}
._1a_c00325{width:23.090134pt;}
._1c_c00325{width:24.202870pt;}
._14_c00325{width:25.262577pt;}
._1b_c00325{width:26.716768pt;}
._19_c00325{width:27.644136pt;}
._c_c00325{width:28.796560pt;}
._f_c00325{width:29.955681pt;}
._e_c00325{width:31.178185pt;}
.fs17_c00325{font-size:37.333333pt;}
.fs19_c00325{font-size:39.333333pt;}
.fs12_c00325{font-size:40.666667pt;}
.fs15_c00325{font-size:41.333333pt;}
.fs16_c00325{font-size:42.666667pt;}
.fs18_c00325{font-size:43.333333pt;}
.fs8_c00325{font-size:47.333333pt;}
.fs4_c00325{font-size:56.666667pt;}
.fsa_c00325{font-size:63.333333pt;}
.fs2_c00325{font-size:64.666667pt;}
.fs13_c00325{font-size:66.666667pt;}
.fsc_c00325{font-size:69.333333pt;}
.fs1_c00325{font-size:70.000000pt;}
.fs7_c00325{font-size:71.333333pt;}
.fs6_c00325{font-size:72.000000pt;}
.fs5_c00325{font-size:72.666667pt;}
.fs3_c00325{font-size:73.333333pt;}
.fs9_c00325{font-size:74.000000pt;}
.fs0_c00325{font-size:74.666667pt;}
.fs11_c00325{font-size:75.333333pt;}
.fsd_c00325{font-size:85.333333pt;}
.fse_c00325{font-size:90.000000pt;}
.fsb_c00325{font-size:92.666667pt;}
.fsf_c00325{font-size:102.666667pt;}
.fs10_c00325{font-size:106.000000pt;}
.fs14_c00325{font-size:120.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y26_c00325{bottom:153.919867pt;}
.y25_c00325{bottom:189.120133pt;}
.y23_c00325{bottom:254.399453pt;}
.y24_c00325{bottom:254.720253pt;}
.y22_c00325{bottom:261.120120pt;}
.y21_c00325{bottom:273.280560pt;}
.y20_c00325{bottom:291.839333pt;}
.y1f_c00325{bottom:291.841147pt;}
.y1e_c00325{bottom:311.360680pt;}
.y1c_c00325{bottom:329.919053pt;}
.y1d_c00325{bottom:329.919453pt;}
.y1b_c00325{bottom:348.799840pt;}
.y1a_c00325{bottom:401.600053pt;}
.y19_c00325{bottom:428.479987pt;}
.y18_c00325{bottom:428.480147pt;}
.y16_c00325{bottom:454.719040pt;}
.y17_c00325{bottom:454.719720pt;}
.y15_c00325{bottom:481.278787pt;}
.y14_c00325{bottom:507.519973pt;}
.y13_c00325{bottom:507.520507pt;}
.y12_c00325{bottom:533.760093pt;}
.y11_c00325{bottom:559.999680pt;}
.y10_c00325{bottom:613.119187pt;}
.yf_c00325{bottom:613.119973pt;}
.ye_c00325{bottom:639.679733pt;}
.yd_c00325{bottom:666.238773pt;}
.yc_c00325{bottom:668.479987pt;}
.yb_c00325{bottom:692.799560pt;}
.ya_c00325{bottom:719.679480pt;}
.y9_c00325{bottom:746.080080pt;}
.y8_c00325{bottom:772.160080pt;}
.y7_c00325{bottom:772.163387pt;}
.y6_c00325{bottom:798.402973pt;}
.y5_c00325{bottom:851.841040pt;}
.y4_c00325{bottom:878.400800pt;}
.y3_c00325{bottom:904.960547pt;}
.y2_c00325{bottom:957.439453pt;}
.y1_c00325{bottom:1010.559000pt;}
.h19_c00325{height:38.937500pt;}
.h1b_c00325{height:41.023438pt;}
.h17_c00325{height:41.656250pt;}
.h14_c00325{height:42.414062pt;}
.h18_c00325{height:43.000000pt;}
.h1a_c00325{height:43.671875pt;}
.h9_c00325{height:49.367188pt;}
.h5_c00325{height:57.109375pt;}
.hb_c00325{height:66.054688pt;}
.h3_c00325{height:67.445312pt;}
.he_c00325{height:68.046875pt;}
.h2_c00325{height:68.701172pt;}
.h15_c00325{height:69.531250pt;}
.h13_c00325{height:70.009766pt;}
.hd_c00325{height:70.664062pt;}
.h8_c00325{height:71.890625pt;}
.h4_c00325{height:71.972656pt;}
.h7_c00325{height:72.562500pt;}
.h6_c00325{height:73.234375pt;}
.h1_c00325{height:73.281250pt;}
.h12_c00325{height:73.935547pt;}
.ha_c00325{height:74.578125pt;}
.hf_c00325{height:89.000000pt;}
.hc_c00325{height:96.648438pt;}
.h10_c00325{height:107.078125pt;}
.h11_c00325{height:110.554688pt;}
.h16_c00325{height:125.156250pt;}
.h0_c00325{height:1122.666667pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x1b_c00325{left:123.196720pt;}
.x1_c00325{left:124.158667pt;}
.x2c_c00325{left:151.678667pt;}
.x2d_c00325{left:163.839867pt;}
.x12_c00325{left:171.518533pt;}
.x4_c00325{left:172.479493pt;}
.x1c_c00325{left:173.438920pt;}
.x2_c00325{left:190.719720pt;}
.x3_c00325{left:196.479467pt;}
.x2e_c00325{left:198.079067pt;}
.x1d_c00325{left:201.599067pt;}
.x2f_c00325{left:216.000000pt;}
.x30_c00325{left:240.638667pt;}
.x26_c00325{left:255.999067pt;}
.x16_c00325{left:262.079587pt;}
.x27_c00325{left:268.798787pt;}
.x17_c00325{left:271.038533pt;}
.x1e_c00325{left:273.279720pt;}
.x1f_c00325{left:287.679200pt;}
.x31_c00325{left:318.399867pt;}
.x8_c00325{left:333.439453pt;}
.x32_c00325{left:339.518533pt;}
.x20_c00325{left:346.239173pt;}
.x9_c00325{left:347.198693pt;}
.x18_c00325{left:351.358933pt;}
.x33_c00325{left:352.319867pt;}
.xa_c00325{left:364.158693pt;}
.x13_c00325{left:368.958947pt;}
.x14_c00325{left:380.479987pt;}
.x15_c00325{left:393.279707pt;}
.xb_c00325{left:397.759320pt;}
.x28_c00325{left:399.679733pt;}
.x29_c00325{left:412.798787pt;}
.xc_c00325{left:418.239173pt;}
.x23_c00325{left:431.039067pt;}
.xd_c00325{left:435.839320pt;}
.x24_c00325{left:447.999067pt;}
.x6_c00325{left:459.518520pt;}
.x19_c00325{left:462.719200pt;}
.x7_c00325{left:477.439453pt;}
.x2a_c00325{left:488.318813pt;}
.x25_c00325{left:493.759320pt;}
.x1a_c00325{left:495.999067pt;}
.x2b_c00325{left:510.719200pt;}
.xe_c00325{left:526.719720pt;}
.xf_c00325{left:544.319867pt;}
.x10_c00325{left:632.958907pt;}
.x21_c00325{left:642.559573pt;}
.x11_c00325{left:654.079067pt;}
.x22_c00325{left:659.519453pt;}
.x5_c00325{left:685.440027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd6be837e8b98dadb3726913.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_8bf1767423560e257e1c8a33.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_67892417c5f5c7838d840130.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_18895afd64d2a975424f87ec.woff2')format("woff");}.ff4_c00326{font-family:ff4_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:ff5_c00326;src:url('chunks/assets/font_04e99394c5c4e56562bc381e.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_dfc53804ddae2521eac7228a.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c00326{transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144928,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{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);}
.m17_c00326{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{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);}
.m2c_c00326{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.424020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424020,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:89.278680px;}
.ls9_c00326{letter-spacing:-8.914500px;}
.ls14_c00326{letter-spacing:-7.633125px;}
.ls10_c00326{letter-spacing:-5.965500px;}
.ls3_c00326{letter-spacing:-5.945625px;}
.ls2a_c00326{letter-spacing:-5.855310px;}
.ls13_c00326{letter-spacing:-5.440050px;}
.lsa_c00326{letter-spacing:-5.196713px;}
.ls12_c00326{letter-spacing:-4.503675px;}
.ls6_c00326{letter-spacing:-4.456463px;}
.ls29_c00326{letter-spacing:-3.881250px;}
.ls17_c00326{letter-spacing:-3.752123px;}
.ls2_c00326{letter-spacing:-3.717000px;}
.lsc_c00326{letter-spacing:-3.715575px;}
.ls1f_c00326{letter-spacing:-3.695737px;}
.lsd_c00326{letter-spacing:-3.275400px;}
.ls16_c00326{letter-spacing:-3.043418px;}
.ls22_c00326{letter-spacing:-2.999423px;}
.ls1_c00326{letter-spacing:-2.968875px;}
.ls15_c00326{letter-spacing:-2.951520px;}
.ls25_c00326{letter-spacing:-2.829075px;}
.ls26_c00326{letter-spacing:-2.667420px;}
.lsb_c00326{letter-spacing:-2.599200px;}
.ls1e_c00326{letter-spacing:-2.286375px;}
.ls27_c00326{letter-spacing:-2.250600px;}
.ls1a_c00326{letter-spacing:-2.249573px;}
.ls0_c00326{letter-spacing:-2.229413px;}
.ls23_c00326{letter-spacing:-2.217600px;}
.ls24_c00326{letter-spacing:-2.178158px;}
.ls19_c00326{letter-spacing:-2.149875px;}
.ls18_c00326{letter-spacing:-2.148300px;}
.ls20_c00326{letter-spacing:-1.501988px;}
.ls5_c00326{letter-spacing:-1.489163px;}
.ls21_c00326{letter-spacing:-1.477125px;}
.ls7_c00326{letter-spacing:-0.854700px;}
.ls1c_c00326{letter-spacing:-0.813638px;}
.ls2b_c00326{letter-spacing:-0.763200px;}
.ls4_c00326{letter-spacing:-0.740250px;}
.ls11_c00326{letter-spacing:-0.737055px;}
.ls8_c00326{letter-spacing:0.000000px;}
.ls1d_c00326{letter-spacing:0.714720px;}
.ls2c_c00326{letter-spacing:1.464000px;}
.ls28_c00326{letter-spacing:1.572825px;}
.ls1b_c00326{letter-spacing:2.331600px;}
.lsf_c00326{letter-spacing:3.717000px;}
.lse_c00326{letter-spacing:3.726810px;}
.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;}
._16_c00326{margin-left:-20.772928px;}
._10_c00326{margin-left:-7.560357px;}
._12_c00326{margin-left:-5.346650px;}
._4_c00326{margin-left:-3.823000px;}
._15_c00326{margin-left:-2.514725px;}
._2_c00326{margin-left:-1.414409px;}
._11_c00326{width:1.451987px;}
._0_c00326{width:2.578022px;}
._5_c00326{width:3.646333px;}
._1_c00326{width:4.919483px;}
._7_c00326{width:6.862320px;}
._3_c00326{width:8.463203px;}
._9_c00326{width:9.761746px;}
._6_c00326{width:10.820577px;}
._14_c00326{width:12.188539px;}
._f_c00326{width:14.443582px;}
._e_c00326{width:16.135786px;}
._17_c00326{width:17.561012px;}
._a_c00326{width:18.876375px;}
._13_c00326{width:20.300220px;}
._d_c00326{width:21.556995px;}
._8_c00326{width:23.092858px;}
._b_c00326{width:24.939858px;}
._c_c00326{width:26.550548px;}
._18_c00326{width:29.743890px;}
.fc0_c00326{color:transparent;}
.fs1e_c00326{font-size:30.000000px;}
.fs1a_c00326{font-size:42.000000px;}
.fs1b_c00326{font-size:42.750000px;}
.fs15_c00326{font-size:43.500000px;}
.fs19_c00326{font-size:44.250000px;}
.fs1d_c00326{font-size:45.000000px;}
.fs16_c00326{font-size:45.750000px;}
.fs14_c00326{font-size:46.500000px;}
.fs13_c00326{font-size:47.250000px;}
.fs11_c00326{font-size:48.000000px;}
.fs17_c00326{font-size:48.750000px;}
.fsf_c00326{font-size:49.500000px;}
.fs18_c00326{font-size:50.250000px;}
.fs1c_c00326{font-size:51.000000px;}
.fs12_c00326{font-size:51.750000px;}
.fs4_c00326{font-size:72.000000px;}
.fse_c00326{font-size:72.750000px;}
.fs7_c00326{font-size:75.000000px;}
.fs5_c00326{font-size:76.500000px;}
.fs8_c00326{font-size:77.250000px;}
.fs0_c00326{font-size:78.750000px;}
.fsc_c00326{font-size:79.500000px;}
.fsb_c00326{font-size:80.250000px;}
.fsd_c00326{font-size:81.000000px;}
.fs9_c00326{font-size:82.500000px;}
.fs3_c00326{font-size:84.000000px;}
.fs6_c00326{font-size:84.750000px;}
.fs10_c00326{font-size:86.250000px;}
.fsa_c00326{font-size:96.000000px;}
.fs2_c00326{font-size:101.250000px;}
.fs1_c00326{font-size:115.500000px;}
.y0_c00326{bottom:0.000000px;}
.y2b_c00326{bottom:173.880000px;}
.y2a_c00326{bottom:213.121050px;}
.y29_c00326{bottom:252.360285px;}
.y28_c00326{bottom:358.199850px;}
.y27_c00326{bottom:358.199865px;}
.y26_c00326{bottom:387.721200px;}
.y25_c00326{bottom:446.040570px;}
.y24_c00326{bottom:447.480885px;}
.y23_c00326{bottom:456.480285px;}
.y21_c00326{bottom:468.721185px;}
.y22_c00326{bottom:468.721200px;}
.y20_c00326{bottom:489.959970px;}
.y1f_c00326{bottom:511.558800px;}
.y1e_c00326{bottom:533.159895px;}
.y1d_c00326{bottom:592.559145px;}
.y1c_c00326{bottom:651.239820px;}
.y1b_c00326{bottom:651.240630px;}
.y1a_c00326{bottom:672.121035px;}
.y19_c00326{bottom:672.121470px;}
.y17_c00326{bottom:693.719610px;}
.y18_c00326{bottom:693.720750px;}
.y16_c00326{bottom:714.960525px;}
.y15_c00326{bottom:736.920000px;}
.y14_c00326{bottom:736.920750px;}
.y13_c00326{bottom:757.801185px;}
.y12_c00326{bottom:779.039985px;}
.y11_c00326{bottom:779.040210px;}
.y10_c00326{bottom:800.641290px;}
.yf_c00326{bottom:800.642235px;}
.yc_c00326{bottom:822.240870px;}
.yd_c00326{bottom:823.319640px;}
.ye_c00326{bottom:823.320285px;}
.ya_c00326{bottom:843.120300px;}
.yb_c00326{bottom:843.120390px;}
.y9_c00326{bottom:902.879745px;}
.y8_c00326{bottom:962.641290px;}
.y7_c00326{bottom:962.642190px;}
.y6_c00326{bottom:983.881005px;}
.y5_c00326{bottom:1005.842280px;}
.y4_c00326{bottom:1026.720915px;}
.y3_c00326{bottom:1047.601320px;}
.y2_c00326{bottom:1107.360060px;}
.y1_c00326{bottom:1137.239775px;}
.h26_c00326{height:31.289062px;}
.h21_c00326{height:42.328125px;}
.h19_c00326{height:42.692871px;}
.h1e_c00326{height:43.428955px;}
.h22_c00326{height:44.586914px;}
.h24_c00326{height:44.901123px;}
.h18_c00326{height:45.637207px;}
.h1f_c00326{height:46.107422px;}
.h16_c00326{height:46.373291px;}
.h17_c00326{height:46.863281px;}
.h25_c00326{height:46.933594px;}
.h13_c00326{height:47.109375px;}
.h15_c00326{height:47.619141px;}
.h1a_c00326{height:47.715820px;}
.h1b_c00326{height:47.845459px;}
.h11_c00326{height:48.581543px;}
.h1d_c00326{height:49.130859px;}
.h1c_c00326{height:49.317627px;}
.h20_c00326{height:49.661133px;}
.h23_c00326{height:50.402344px;}
.h14_c00326{height:51.143555px;}
.h5_c00326{height:75.093750px;}
.h10_c00326{height:75.875977px;}
.h1_c00326{height:77.288818px;}
.h9_c00326{height:78.222656px;}
.hd_c00326{height:78.760986px;}
.hf_c00326{height:79.497070px;}
.h7_c00326{height:79.787109px;}
.he_c00326{height:80.121094px;}
.ha_c00326{height:80.569336px;}
.hb_c00326{height:80.969238px;}
.h8_c00326{height:83.177490px;}
.h12_c00326{height:84.649658px;}
.h4_c00326{height:87.609375px;}
.hc_c00326{height:100.125000px;}
.h3_c00326{height:105.600586px;}
.h2_c00326{height:120.462891px;}
.h6_c00326{height:166.567498px;}
.h0_c00326{height:1263.000000px;}
.w0_c00326{width:892.500000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:139.319250px;}
.x2e_c00326{left:140.759565px;}
.x2f_c00326{left:164.519685px;}
.x34_c00326{left:172.439715px;}
.x35_c00326{left:185.758500px;}
.x6_c00326{left:193.319550px;}
.x2_c00326{left:195.118785px;}
.x3_c00326{left:208.798515px;}
.x21_c00326{left:210.958950px;}
.x4_c00326{left:215.279850px;}
.x36_c00326{left:224.279250px;}
.x5_c00326{left:225.719535px;}
.x37_c00326{left:244.079385px;}
.x30_c00326{left:245.519685px;}
.x22_c00326{left:255.239250px;}
.x3d_c00326{left:265.679100px;}
.x31_c00326{left:270.359250px;}
.x38_c00326{left:272.158785px;}
.x23_c00326{left:275.039385px;}
.x3e_c00326{left:302.398635px;}
.x39_c00326{left:306.358635px;}
.x24_c00326{left:309.598530px;}
.x13_c00326{left:357.479685px;}
.x3a_c00326{left:359.638530px;}
.x3f_c00326{left:363.959385px;}
.x14_c00326{left:370.798515px;}
.x3c_c00326{left:378.718530px;}
.x7_c00326{left:383.039385px;}
.x8_c00326{left:388.798920px;}
.x40_c00326{left:393.479235px;}
.x9_c00326{left:396.359850px;}
.x3b_c00326{left:397.439250px;}
.x1d_c00326{left:411.118785px;}
.x41_c00326{left:416.519070px;}
.x1e_c00326{left:425.518665px;}
.xf_c00326{left:428.399235px;}
.x28_c00326{left:436.678530px;}
.x10_c00326{left:446.399820px;}
.x29_c00326{left:451.798515px;}
.x11_c00326{left:452.879520px;}
.x42_c00326{left:455.039985px;}
.xa_c00326{left:464.039385px;}
.x12_c00326{left:466.559100px;}
.x43_c00326{left:469.078770px;}
.x27_c00326{left:475.558635px;}
.x1f_c00326{left:476.639700px;}
.x44_c00326{left:480.238770px;}
.x20_c00326{left:482.758530px;}
.x32_c00326{left:493.918350px;}
.xb_c00326{left:495.000075px;}
.x33_c00326{left:511.559685px;}
.x25_c00326{left:516.958335px;}
.x15_c00326{left:518.759535px;}
.x16_c00326{left:533.159415px;}
.x45_c00326{left:540.000000px;}
.x26_c00326{left:541.799520px;}
.x1b_c00326{left:565.918950px;}
.x46_c00326{left:568.079400px;}
.x1c_c00326{left:579.598530px;}
.x2a_c00326{left:582.838530px;}
.x47_c00326{left:592.559685px;}
.x17_c00326{left:594.000000px;}
.x2b_c00326{left:597.958335px;}
.x18_c00326{left:602.638545px;}
.x48_c00326{left:605.878320px;}
.xc_c00326{left:675.359250px;}
.xd_c00326{left:681.479685px;}
.xe_c00326{left:691.558635px;}
.x2c_c00326{left:716.759085px;}
.x19_c00326{left:734.759535px;}
.x1a_c00326{left:743.759085px;}
.x2d_c00326{left:753.478635px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:79.358827pt;}
.ls9_c00326{letter-spacing:-7.924000pt;}
.ls14_c00326{letter-spacing:-6.785000pt;}
.ls10_c00326{letter-spacing:-5.302667pt;}
.ls3_c00326{letter-spacing:-5.285000pt;}
.ls2a_c00326{letter-spacing:-5.204720pt;}
.ls13_c00326{letter-spacing:-4.835600pt;}
.lsa_c00326{letter-spacing:-4.619300pt;}
.ls12_c00326{letter-spacing:-4.003267pt;}
.ls6_c00326{letter-spacing:-3.961300pt;}
.ls29_c00326{letter-spacing:-3.450000pt;}
.ls17_c00326{letter-spacing:-3.335220pt;}
.ls2_c00326{letter-spacing:-3.304000pt;}
.lsc_c00326{letter-spacing:-3.302733pt;}
.ls1f_c00326{letter-spacing:-3.285100pt;}
.lsd_c00326{letter-spacing:-2.911467pt;}
.ls16_c00326{letter-spacing:-2.705260pt;}
.ls22_c00326{letter-spacing:-2.666153pt;}
.ls1_c00326{letter-spacing:-2.639000pt;}
.ls15_c00326{letter-spacing:-2.623573pt;}
.ls25_c00326{letter-spacing:-2.514733pt;}
.ls26_c00326{letter-spacing:-2.371040pt;}
.lsb_c00326{letter-spacing:-2.310400pt;}
.ls1e_c00326{letter-spacing:-2.032333pt;}
.ls27_c00326{letter-spacing:-2.000533pt;}
.ls1a_c00326{letter-spacing:-1.999620pt;}
.ls0_c00326{letter-spacing:-1.981700pt;}
.ls23_c00326{letter-spacing:-1.971200pt;}
.ls24_c00326{letter-spacing:-1.936140pt;}
.ls19_c00326{letter-spacing:-1.911000pt;}
.ls18_c00326{letter-spacing:-1.909600pt;}
.ls20_c00326{letter-spacing:-1.335100pt;}
.ls5_c00326{letter-spacing:-1.323700pt;}
.ls21_c00326{letter-spacing:-1.313000pt;}
.ls7_c00326{letter-spacing:-0.759733pt;}
.ls1c_c00326{letter-spacing:-0.723233pt;}
.ls2b_c00326{letter-spacing:-0.678400pt;}
.ls4_c00326{letter-spacing:-0.658000pt;}
.ls11_c00326{letter-spacing:-0.655160pt;}
.ls8_c00326{letter-spacing:0.000000pt;}
.ls1d_c00326{letter-spacing:0.635307pt;}
.ls2c_c00326{letter-spacing:1.301333pt;}
.ls28_c00326{letter-spacing:1.398067pt;}
.ls1b_c00326{letter-spacing:2.072533pt;}
.lsf_c00326{letter-spacing:3.304000pt;}
.lse_c00326{letter-spacing:3.312720pt;}
.ws0_c00326{word-spacing:0.000000pt;}
._16_c00326{margin-left:-18.464825pt;}
._10_c00326{margin-left:-6.720317pt;}
._12_c00326{margin-left:-4.752577pt;}
._4_c00326{margin-left:-3.398223pt;}
._15_c00326{margin-left:-2.235311pt;}
._2_c00326{margin-left:-1.257253pt;}
._11_c00326{width:1.290655pt;}
._0_c00326{width:2.291575pt;}
._5_c00326{width:3.241185pt;}
._1_c00326{width:4.372874pt;}
._7_c00326{width:6.099840pt;}
._3_c00326{width:7.522847pt;}
._9_c00326{width:8.677108pt;}
._6_c00326{width:9.618291pt;}
._14_c00326{width:10.834257pt;}
._f_c00326{width:12.838740pt;}
._e_c00326{width:14.342921pt;}
._17_c00326{width:15.609789pt;}
._a_c00326{width:16.779000pt;}
._13_c00326{width:18.044640pt;}
._d_c00326{width:19.161774pt;}
._8_c00326{width:20.526985pt;}
._b_c00326{width:22.168762pt;}
._c_c00326{width:23.600487pt;}
._18_c00326{width:26.439013pt;}
.fs1e_c00326{font-size:26.666667pt;}
.fs1a_c00326{font-size:37.333333pt;}
.fs1b_c00326{font-size:38.000000pt;}
.fs15_c00326{font-size:38.666667pt;}
.fs19_c00326{font-size:39.333333pt;}
.fs1d_c00326{font-size:40.000000pt;}
.fs16_c00326{font-size:40.666667pt;}
.fs14_c00326{font-size:41.333333pt;}
.fs13_c00326{font-size:42.000000pt;}
.fs11_c00326{font-size:42.666667pt;}
.fs17_c00326{font-size:43.333333pt;}
.fsf_c00326{font-size:44.000000pt;}
.fs18_c00326{font-size:44.666667pt;}
.fs1c_c00326{font-size:45.333333pt;}
.fs12_c00326{font-size:46.000000pt;}
.fs4_c00326{font-size:64.000000pt;}
.fse_c00326{font-size:64.666667pt;}
.fs7_c00326{font-size:66.666667pt;}
.fs5_c00326{font-size:68.000000pt;}
.fs8_c00326{font-size:68.666667pt;}
.fs0_c00326{font-size:70.000000pt;}
.fsc_c00326{font-size:70.666667pt;}
.fsb_c00326{font-size:71.333333pt;}
.fsd_c00326{font-size:72.000000pt;}
.fs9_c00326{font-size:73.333333pt;}
.fs3_c00326{font-size:74.666667pt;}
.fs6_c00326{font-size:75.333333pt;}
.fs10_c00326{font-size:76.666667pt;}
.fsa_c00326{font-size:85.333333pt;}
.fs2_c00326{font-size:90.000000pt;}
.fs1_c00326{font-size:102.666667pt;}
.y0_c00326{bottom:0.000000pt;}
.y2b_c00326{bottom:154.560000pt;}
.y2a_c00326{bottom:189.440933pt;}
.y29_c00326{bottom:224.320253pt;}
.y28_c00326{bottom:318.399867pt;}
.y27_c00326{bottom:318.399880pt;}
.y26_c00326{bottom:344.641067pt;}
.y25_c00326{bottom:396.480507pt;}
.y24_c00326{bottom:397.760787pt;}
.y23_c00326{bottom:405.760253pt;}
.y21_c00326{bottom:416.641053pt;}
.y22_c00326{bottom:416.641067pt;}
.y20_c00326{bottom:435.519973pt;}
.y1f_c00326{bottom:454.718933pt;}
.y1e_c00326{bottom:473.919907pt;}
.y1d_c00326{bottom:526.719240pt;}
.y1c_c00326{bottom:578.879840pt;}
.y1b_c00326{bottom:578.880560pt;}
.y1a_c00326{bottom:597.440920pt;}
.y19_c00326{bottom:597.441307pt;}
.y17_c00326{bottom:616.639653pt;}
.y18_c00326{bottom:616.640667pt;}
.y16_c00326{bottom:635.520467pt;}
.y15_c00326{bottom:655.040000pt;}
.y14_c00326{bottom:655.040667pt;}
.y13_c00326{bottom:673.601053pt;}
.y12_c00326{bottom:692.479987pt;}
.y11_c00326{bottom:692.480187pt;}
.y10_c00326{bottom:711.681147pt;}
.yf_c00326{bottom:711.681987pt;}
.yc_c00326{bottom:730.880773pt;}
.yd_c00326{bottom:731.839680pt;}
.ye_c00326{bottom:731.840253pt;}
.ya_c00326{bottom:749.440267pt;}
.yb_c00326{bottom:749.440347pt;}
.y9_c00326{bottom:802.559773pt;}
.y8_c00326{bottom:855.681147pt;}
.y7_c00326{bottom:855.681947pt;}
.y6_c00326{bottom:874.560893pt;}
.y5_c00326{bottom:894.082027pt;}
.y4_c00326{bottom:912.640813pt;}
.y3_c00326{bottom:931.201173pt;}
.y2_c00326{bottom:984.320053pt;}
.y1_c00326{bottom:1010.879800pt;}
.h26_c00326{height:27.812500pt;}
.h21_c00326{height:37.625000pt;}
.h19_c00326{height:37.949219pt;}
.h1e_c00326{height:38.603516pt;}
.h22_c00326{height:39.632812pt;}
.h24_c00326{height:39.912109pt;}
.h18_c00326{height:40.566406pt;}
.h1f_c00326{height:40.984375pt;}
.h16_c00326{height:41.220703pt;}
.h17_c00326{height:41.656250pt;}
.h25_c00326{height:41.718750pt;}
.h13_c00326{height:41.875000pt;}
.h15_c00326{height:42.328125pt;}
.h1a_c00326{height:42.414062pt;}
.h1b_c00326{height:42.529297pt;}
.h11_c00326{height:43.183594pt;}
.h1d_c00326{height:43.671875pt;}
.h1c_c00326{height:43.837891pt;}
.h20_c00326{height:44.143229pt;}
.h23_c00326{height:44.802083pt;}
.h14_c00326{height:45.460938pt;}
.h5_c00326{height:66.750000pt;}
.h10_c00326{height:67.445312pt;}
.h1_c00326{height:68.701172pt;}
.h9_c00326{height:69.531250pt;}
.hd_c00326{height:70.009766pt;}
.hf_c00326{height:70.664062pt;}
.h7_c00326{height:70.921875pt;}
.he_c00326{height:71.218750pt;}
.ha_c00326{height:71.617188pt;}
.hb_c00326{height:71.972656pt;}
.h8_c00326{height:73.935547pt;}
.h12_c00326{height:75.244141pt;}
.h4_c00326{height:77.875000pt;}
.hc_c00326{height:89.000000pt;}
.h3_c00326{height:93.867188pt;}
.h2_c00326{height:107.078125pt;}
.h6_c00326{height:148.059999pt;}
.h0_c00326{height:1122.666667pt;}
.w0_c00326{width:793.333333pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:123.839333pt;}
.x2e_c00326{left:125.119613pt;}
.x2f_c00326{left:146.239720pt;}
.x34_c00326{left:153.279747pt;}
.x35_c00326{left:165.118667pt;}
.x6_c00326{left:171.839600pt;}
.x2_c00326{left:173.438920pt;}
.x3_c00326{left:185.598680pt;}
.x21_c00326{left:187.519067pt;}
.x4_c00326{left:191.359867pt;}
.x36_c00326{left:199.359333pt;}
.x5_c00326{left:200.639587pt;}
.x37_c00326{left:216.959453pt;}
.x30_c00326{left:218.239720pt;}
.x22_c00326{left:226.879333pt;}
.x3d_c00326{left:236.159200pt;}
.x31_c00326{left:240.319333pt;}
.x38_c00326{left:241.918920pt;}
.x23_c00326{left:244.479453pt;}
.x3e_c00326{left:268.798787pt;}
.x39_c00326{left:272.318787pt;}
.x24_c00326{left:275.198693pt;}
.x13_c00326{left:317.759720pt;}
.x3a_c00326{left:319.678693pt;}
.x3f_c00326{left:323.519453pt;}
.x14_c00326{left:329.598680pt;}
.x3c_c00326{left:336.638693pt;}
.x7_c00326{left:340.479453pt;}
.x8_c00326{left:345.599040pt;}
.x40_c00326{left:349.759320pt;}
.x9_c00326{left:352.319867pt;}
.x3b_c00326{left:353.279333pt;}
.x1d_c00326{left:365.438920pt;}
.x41_c00326{left:370.239173pt;}
.x1e_c00326{left:378.238813pt;}
.xf_c00326{left:380.799320pt;}
.x28_c00326{left:388.158693pt;}
.x10_c00326{left:396.799840pt;}
.x29_c00326{left:401.598680pt;}
.x11_c00326{left:402.559573pt;}
.x42_c00326{left:404.479987pt;}
.xa_c00326{left:412.479453pt;}
.x12_c00326{left:414.719200pt;}
.x43_c00326{left:416.958907pt;}
.x27_c00326{left:422.718787pt;}
.x1f_c00326{left:423.679733pt;}
.x44_c00326{left:426.878907pt;}
.x20_c00326{left:429.118693pt;}
.x32_c00326{left:439.038533pt;}
.xb_c00326{left:440.000067pt;}
.x33_c00326{left:454.719720pt;}
.x25_c00326{left:459.518520pt;}
.x15_c00326{left:461.119587pt;}
.x16_c00326{left:473.919480pt;}
.x45_c00326{left:480.000000pt;}
.x26_c00326{left:481.599573pt;}
.x1b_c00326{left:503.039067pt;}
.x46_c00326{left:504.959467pt;}
.x1c_c00326{left:515.198693pt;}
.x2a_c00326{left:518.078693pt;}
.x47_c00326{left:526.719720pt;}
.x17_c00326{left:528.000000pt;}
.x2b_c00326{left:531.518520pt;}
.x18_c00326{left:535.678707pt;}
.x48_c00326{left:538.558507pt;}
.xc_c00326{left:600.319333pt;}
.xd_c00326{left:605.759720pt;}
.xe_c00326{left:614.718787pt;}
.x2c_c00326{left:637.119187pt;}
.x19_c00326{left:653.119587pt;}
.x1a_c00326{left:661.119187pt;}
.x2d_c00326{left:669.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_614af82dff438f5b2e41101a.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_b80a5aace919b156f9072d58.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;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_efd12098ef2d6b92f1a794b0.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_cbc9b7225e35bf125e88873e.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_bb81c216bbbfe8f7164773b8.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00327;src:url('chunks/assets/font_338bfda9b24656fc2af5e926.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00327;src:url('chunks/assets/font_363b1b687a2be6718d94efc3.woff2')format("woff");}.ff7_c00327{font-family:ff7_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;}
.m25_c00327{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m2f_c00327{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m22_c00327{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.md_c00327{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m24_c00327{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{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);}
.m18_c00327{transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m1d_c00327{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m33_c00327{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m30_c00327{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00327{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m21_c00327{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m2e_c00327{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m1b_c00327{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_c00327{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m20_c00327{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1a_c00327{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m23_c00327{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m27_c00327{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m26_c00327{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m31_c00327{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m2b_c00327{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m28_c00327{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m1c_c00327{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m32_c00327{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m1f_c00327{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m2d_c00327{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m1e_c00327{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m29_c00327{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334906,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.384146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384146,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.391026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391026,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.398305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398305,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.548387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548387,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls2e_c00327{letter-spacing:-11.625000px;}
.ls9_c00327{letter-spacing:-8.667450px;}
.ls5_c00327{letter-spacing:-8.175038px;}
.lsd_c00327{letter-spacing:-6.685875px;}
.ls6_c00327{letter-spacing:-6.160478px;}
.lsa_c00327{letter-spacing:-5.945625px;}
.lsb_c00327{letter-spacing:-5.196713px;}
.ls10_c00327{letter-spacing:-5.177250px;}
.ls33_c00327{letter-spacing:-5.034150px;}
.ls8_c00327{letter-spacing:-4.456463px;}
.ls1d_c00327{letter-spacing:-4.422600px;}
.ls20_c00327{letter-spacing:-4.334498px;}
.ls27_c00327{letter-spacing:-3.860025px;}
.ls7_c00327{letter-spacing:-3.717000px;}
.ls2a_c00327{letter-spacing:-3.685050px;}
.ls22_c00327{letter-spacing:-3.614625px;}
.ls1c_c00327{letter-spacing:-3.401933px;}
.ls2_c00327{letter-spacing:-2.968875px;}
.ls2f_c00327{letter-spacing:-2.740800px;}
.ls2b_c00327{letter-spacing:-2.490773px;}
.lsc_c00327{letter-spacing:-2.288805px;}
.ls0_c00327{letter-spacing:-2.229413px;}
.ls34_c00327{letter-spacing:-2.218125px;}
.ls35_c00327{letter-spacing:-2.150400px;}
.ls24_c00327{letter-spacing:-2.109713px;}
.ls1e_c00327{letter-spacing:-1.545000px;}
.ls28_c00327{letter-spacing:-1.526400px;}
.ls32_c00327{letter-spacing:-1.499850px;}
.ls4_c00327{letter-spacing:-1.489163px;}
.ls2d_c00327{letter-spacing:-1.478880px;}
.ls23_c00327{letter-spacing:-0.843375px;}
.ls29_c00327{letter-spacing:-0.762600px;}
.ls1_c00327{letter-spacing:-0.740250px;}
.ls14_c00327{letter-spacing:-0.341542px;}
.ls3_c00327{letter-spacing:0.000000px;}
.lsf_c00327{letter-spacing:0.591300px;}
.ls25_c00327{letter-spacing:0.772650px;}
.ls31_c00327{letter-spacing:0.912900px;}
.ls1f_c00327{letter-spacing:1.560000px;}
.ls30_c00327{letter-spacing:1.602248px;}
.ls36_c00327{letter-spacing:1.679580px;}
.ls21_c00327{letter-spacing:2.968875px;}
.ls26_c00327{letter-spacing:3.267743px;}
.ls2c_c00327{letter-spacing:3.889620px;}
.ls12_c00327{letter-spacing:5.726700px;}
.lse_c00327{letter-spacing:6.751125px;}
.ls16_c00327{letter-spacing:7.278622px;}
.ls13_c00327{letter-spacing:7.789500px;}
.ls11_c00327{letter-spacing:9.097725px;}
.ls1b_c00327{letter-spacing:9.375000px;}
.ls1a_c00327{letter-spacing:9.945000px;}
.ls19_c00327{letter-spacing:10.025400px;}
.ls15_c00327{letter-spacing:12.114000px;}
.ls17_c00327{letter-spacing:21.019800px;}
.ls18_c00327{letter-spacing:36.757095px;}
.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;}
._1a_c00327{margin-left:-28.559683px;}
._2_c00327{margin-left:-22.615871px;}
._1b_c00327{margin-left:-18.545878px;}
._18_c00327{margin-left:-10.276474px;}
._19_c00327{margin-left:-8.116896px;}
._15_c00327{margin-left:-6.102917px;}
._a_c00327{margin-left:-4.803988px;}
._8_c00327{margin-left:-3.603823px;}
._c_c00327{margin-left:-2.449422px;}
._9_c00327{margin-left:-1.271902px;}
._17_c00327{width:1.005266px;}
._7_c00327{width:2.336825px;}
._b_c00327{width:3.623050px;}
._f_c00327{width:4.706679px;}
._d_c00327{width:6.152084px;}
._1_c00327{width:8.040226px;}
._13_c00327{width:9.552464px;}
._0_c00327{width:10.610077px;}
._4_c00327{width:11.769916px;}
._5_c00327{width:13.676765px;}
._1c_c00327{width:14.887732px;}
._e_c00327{width:16.298992px;}
._14_c00327{width:17.763370px;}
._6_c00327{width:18.884042px;}
._11_c00327{width:19.942784px;}
._10_c00327{width:21.556995px;}
._1d_c00327{width:22.744857px;}
._16_c00327{width:24.625199px;}
._12_c00327{width:25.649291px;}
._3_c00327{width:30.037553px;}
._1e_c00327{width:34.518235px;}
.fc0_c00327{color:transparent;}
.fsd_c00327{font-size:23.250000px;}
.fsc_c00327{font-size:27.000000px;}
.fs14_c00327{font-size:29.250000px;}
.fsa_c00327{font-size:30.750000px;}
.fs9_c00327{font-size:32.250000px;}
.fs6_c00327{font-size:38.250000px;}
.fse_c00327{font-size:39.750000px;}
.fs20_c00327{font-size:42.000000px;}
.fs1e_c00327{font-size:42.750000px;}
.fs8_c00327{font-size:44.250000px;}
.fsb_c00327{font-size:45.000000px;}
.fs1d_c00327{font-size:46.500000px;}
.fs21_c00327{font-size:47.250000px;}
.fs1c_c00327{font-size:48.000000px;}
.fs24_c00327{font-size:48.750000px;}
.fs23_c00327{font-size:49.500000px;}
.fs22_c00327{font-size:51.000000px;}
.fs7_c00327{font-size:54.750000px;}
.fsf_c00327{font-size:55.500000px;}
.fs1f_c00327{font-size:69.750000px;}
.fs13_c00327{font-size:70.500000px;}
.fs10_c00327{font-size:73.500000px;}
.fs1b_c00327{font-size:74.250000px;}
.fs12_c00327{font-size:75.000000px;}
.fs15_c00327{font-size:75.750000px;}
.fs1a_c00327{font-size:76.500000px;}
.fs4_c00327{font-size:77.250000px;}
.fs11_c00327{font-size:78.000000px;}
.fs0_c00327{font-size:78.750000px;}
.fs5_c00327{font-size:79.500000px;}
.fs3_c00327{font-size:80.250000px;}
.fs16_c00327{font-size:81.000000px;}
.fs1_c00327{font-size:82.500000px;}
.fs2_c00327{font-size:84.750000px;}
.fs19_c00327{font-size:96.000000px;}
.fs17_c00327{font-size:115.500000px;}
.fs18_c00327{font-size:129.750000px;}
.y0_c00327{bottom:0.000000px;}
.y27_c00327{bottom:173.520750px;}
.y26_c00327{bottom:213.121050px;}
.y25_c00327{bottom:308.879610px;}
.y24_c00327{bottom:367.560285px;}
.y23_c00327{bottom:367.561095px;}
.y22_c00327{bottom:388.439715px;}
.y21_c00327{bottom:388.439940px;}
.y20_c00327{bottom:410.041035px;}
.y1f_c00327{bottom:431.279850px;}
.y1e_c00327{bottom:452.520315px;}
.y1d_c00327{bottom:512.639940px;}
.y1b_c00327{bottom:542.519595px;}
.y1c_c00327{bottom:542.519670px;}
.y1a_c00327{bottom:572.040945px;}
.y19_c00327{bottom:630.719520px;}
.y18_c00327{bottom:630.720405px;}
.y17_c00327{bottom:660.600135px;}
.y16_c00327{bottom:660.600450px;}
.y15_c00327{bottom:690.119985px;}
.y14_c00327{bottom:720.720750px;}
.y13_c00327{bottom:747.359850px;}
.y11_c00327{bottom:749.881170px;}
.y12_c00327{bottom:750.240420px;}
.y10_c00327{bottom:754.200435px;}
.ye_c00327{bottom:780.120270px;}
.yf_c00327{bottom:780.121035px;}
.yd_c00327{bottom:810.000000px;}
.yc_c00327{bottom:810.000480px;}
.yb_c00327{bottom:839.880210px;}
.ya_c00327{bottom:869.759925px;}
.y9_c00327{bottom:899.281260px;}
.y8_c00327{bottom:928.800795px;}
.y7_c00327{bottom:958.680525px;}
.y6_c00327{bottom:988.560240px;}
.y5_c00327{bottom:1048.679970px;}
.y4_c00327{bottom:1078.559685px;}
.y3_c00327{bottom:1078.559805px;}
.y2_c00327{bottom:1108.081140px;}
.y1_c00327{bottom:1137.600675px;}
.he_c00327{height:24.249023px;}
.hd_c00327{height:27.210938px;}
.hb_c00327{height:30.164429px;}
.h17_c00327{height:30.506836px;}
.hf_c00327{height:32.071289px;}
.ha_c00327{height:32.501953px;}
.h7_c00327{height:39.893555px;}
.h10_c00327{height:41.458008px;}
.h25_c00327{height:43.804688px;}
.h23_c00327{height:44.586914px;}
.h9_c00327{height:44.595703px;}
.h22_c00327{height:45.637207px;}
.h26_c00327{height:45.955078px;}
.h27_c00327{height:46.373291px;}
.hc_c00327{height:46.933594px;}
.h21_c00327{height:47.109375px;}
.h2b_c00327{height:47.845459px;}
.h29_c00327{height:48.581543px;}
.h2a_c00327{height:48.919922px;}
.h28_c00327{height:50.402344px;}
.h8_c00327{height:55.177734px;}
.h12_c00327{height:55.933594px;}
.h24_c00327{height:68.455811px;}
.h20_c00327{height:72.872314px;}
.h16_c00327{height:73.529297px;}
.h1a_c00327{height:73.608398px;}
.h15_c00327{height:75.585938px;}
.h5_c00327{height:75.816650px;}
.h13_c00327{height:76.658203px;}
.h1f_c00327{height:77.097656px;}
.h1_c00327{height:77.288818px;}
.h6_c00327{height:78.024902px;}
.h11_c00327{height:78.568359px;}
.h14_c00327{height:78.609375px;}
.h4_c00327{height:78.760986px;}
.h18_c00327{height:79.004883px;}
.h1e_c00327{height:79.365234px;}
.h19_c00327{height:79.497070px;}
.h2_c00327{height:80.969238px;}
.h3_c00327{height:83.177490px;}
.h1d_c00327{height:100.125000px;}
.h1b_c00327{height:120.462891px;}
.h1c_c00327{height:135.325195px;}
.h0_c00327{height:1263.000000px;}
.w0_c00327{width:892.500000px;}
.x0_c00327{left:0.000000px;}
.x9_c00327{left:137.163600px;}
.x1_c00327{left:138.239850px;}
.xd_c00327{left:164.878950px;}
.x8_c00327{left:168.479685px;}
.x35_c00327{left:182.518665px;}
.x2c_c00327{left:191.878950px;}
.x2a_c00327{left:193.319250px;}
.x1c_c00327{left:194.759535px;}
.xe_c00327{left:208.439250px;}
.x2b_c00327{left:214.198785px;}
.x36_c00327{left:220.678500px;}
.x6_c00327{left:222.479685px;}
.xf_c00327{left:226.078785px;}
.x10_c00327{left:237.238785px;}
.x7_c00327{left:239.040000px;}
.x37_c00327{left:240.839535px;}
.x3b_c00327{left:244.079385px;}
.x2f_c00327{left:247.319250px;}
.x22_c00327{left:256.318800px;}
.x38_c00327{left:268.918950px;}
.x3c_c00327{left:271.799535px;}
.x30_c00327{left:273.239850px;}
.x23_c00327{left:275.759535px;}
.x3d_c00327{left:296.639100px;}
.x39_c00327{left:303.118785px;}
.x11_c00327{left:308.519100px;}
.x2d_c00327{left:323.279850px;}
.x2_c00327{left:334.439685px;}
.x24_c00327{left:344.159385px;}
.x33_c00327{left:345.599700px;}
.x2e_c00327{left:347.040000px;}
.x3_c00327{left:351.718500px;}
.x3e_c00327{left:353.519685px;}
.x25_c00327{left:354.958350px;}
.x34_c00327{left:356.398635px;}
.x12_c00327{left:373.679100px;}
.x3a_c00327{left:375.119385px;}
.x28_c00327{left:376.559685px;}
.x13_c00327{left:382.678530px;}
.x3f_c00327{left:394.919535px;}
.x26_c00327{left:405.000000px;}
.xa_c00327{left:408.239820px;}
.x1d_c00327{left:411.838950px;}
.x27_c00327{left:418.318770px;}
.x29_c00327{left:420.479235px;}
.x1e_c00327{left:427.319820px;}
.xb_c00327{left:434.158770px;}
.x14_c00327{left:460.079400px;}
.x15_c00327{left:501.479235px;}
.x16_c00327{left:528.119985px;}
.x31_c00327{left:542.519670px;}
.x32_c00327{left:551.519070px;}
.x17_c00327{left:626.759535px;}
.x4_c00327{left:658.439670px;}
.x1f_c00327{left:673.559685px;}
.x5_c00327{left:681.479685px;}
.x20_c00327{left:706.319235px;}
.x18_c00327{left:710.999400px;}
.x1a_c00327{left:737.999355px;}
.x1b_c00327{left:748.080000px;}
.x21_c00327{left:758.519670px;}
.xc_c00327{left:768.598575px;}
.x19_c00327{left:769.679715px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls2e_c00327{letter-spacing:-10.333333pt;}
.ls9_c00327{letter-spacing:-7.704400pt;}
.ls5_c00327{letter-spacing:-7.266700pt;}
.lsd_c00327{letter-spacing:-5.943000pt;}
.ls6_c00327{letter-spacing:-5.475980pt;}
.lsa_c00327{letter-spacing:-5.285000pt;}
.lsb_c00327{letter-spacing:-4.619300pt;}
.ls10_c00327{letter-spacing:-4.602000pt;}
.ls33_c00327{letter-spacing:-4.474800pt;}
.ls8_c00327{letter-spacing:-3.961300pt;}
.ls1d_c00327{letter-spacing:-3.931200pt;}
.ls20_c00327{letter-spacing:-3.852887pt;}
.ls27_c00327{letter-spacing:-3.431133pt;}
.ls7_c00327{letter-spacing:-3.304000pt;}
.ls2a_c00327{letter-spacing:-3.275600pt;}
.ls22_c00327{letter-spacing:-3.213000pt;}
.ls1c_c00327{letter-spacing:-3.023940pt;}
.ls2_c00327{letter-spacing:-2.639000pt;}
.ls2f_c00327{letter-spacing:-2.436267pt;}
.ls2b_c00327{letter-spacing:-2.214020pt;}
.lsc_c00327{letter-spacing:-2.034493pt;}
.ls0_c00327{letter-spacing:-1.981700pt;}
.ls34_c00327{letter-spacing:-1.971667pt;}
.ls35_c00327{letter-spacing:-1.911467pt;}
.ls24_c00327{letter-spacing:-1.875300pt;}
.ls1e_c00327{letter-spacing:-1.373333pt;}
.ls28_c00327{letter-spacing:-1.356800pt;}
.ls32_c00327{letter-spacing:-1.333200pt;}
.ls4_c00327{letter-spacing:-1.323700pt;}
.ls2d_c00327{letter-spacing:-1.314560pt;}
.ls23_c00327{letter-spacing:-0.749667pt;}
.ls29_c00327{letter-spacing:-0.677867pt;}
.ls1_c00327{letter-spacing:-0.658000pt;}
.ls14_c00327{letter-spacing:-0.303593pt;}
.ls3_c00327{letter-spacing:0.000000pt;}
.lsf_c00327{letter-spacing:0.525600pt;}
.ls25_c00327{letter-spacing:0.686800pt;}
.ls31_c00327{letter-spacing:0.811467pt;}
.ls1f_c00327{letter-spacing:1.386667pt;}
.ls30_c00327{letter-spacing:1.424220pt;}
.ls36_c00327{letter-spacing:1.492960pt;}
.ls21_c00327{letter-spacing:2.639000pt;}
.ls26_c00327{letter-spacing:2.904660pt;}
.ls2c_c00327{letter-spacing:3.457440pt;}
.ls12_c00327{letter-spacing:5.090400pt;}
.lse_c00327{letter-spacing:6.001000pt;}
.ls16_c00327{letter-spacing:6.469887pt;}
.ls13_c00327{letter-spacing:6.924000pt;}
.ls11_c00327{letter-spacing:8.086867pt;}
.ls1b_c00327{letter-spacing:8.333333pt;}
.ls1a_c00327{letter-spacing:8.840000pt;}
.ls19_c00327{letter-spacing:8.911467pt;}
.ls15_c00327{letter-spacing:10.768000pt;}
.ls17_c00327{letter-spacing:18.684267pt;}
.ls18_c00327{letter-spacing:32.672973pt;}
.ws0_c00327{word-spacing:0.000000pt;}
._1a_c00327{margin-left:-25.386385pt;}
._2_c00327{margin-left:-20.102996pt;}
._1b_c00327{margin-left:-16.485225pt;}
._18_c00327{margin-left:-9.134643pt;}
._19_c00327{margin-left:-7.215019pt;}
._15_c00327{margin-left:-5.424815pt;}
._a_c00327{margin-left:-4.270211pt;}
._8_c00327{margin-left:-3.203398pt;}
._c_c00327{margin-left:-2.177264pt;}
._9_c00327{margin-left:-1.130579pt;}
._17_c00327{width:0.893570pt;}
._7_c00327{width:2.077177pt;}
._b_c00327{width:3.220489pt;}
._f_c00327{width:4.183715pt;}
._d_c00327{width:5.468519pt;}
._1_c00327{width:7.146868pt;}
._13_c00327{width:8.491079pt;}
._0_c00327{width:9.431179pt;}
._4_c00327{width:10.462147pt;}
._5_c00327{width:12.157125pt;}
._1c_c00327{width:13.233540pt;}
._e_c00327{width:14.487992pt;}
._14_c00327{width:15.789662pt;}
._6_c00327{width:16.785815pt;}
._11_c00327{width:17.726919pt;}
._10_c00327{width:19.161774pt;}
._1d_c00327{width:20.217651pt;}
._16_c00327{width:21.889066pt;}
._12_c00327{width:22.799370pt;}
._3_c00327{width:26.700047pt;}
._1e_c00327{width:30.682875pt;}
.fsd_c00327{font-size:20.666667pt;}
.fsc_c00327{font-size:24.000000pt;}
.fs14_c00327{font-size:26.000000pt;}
.fsa_c00327{font-size:27.333333pt;}
.fs9_c00327{font-size:28.666667pt;}
.fs6_c00327{font-size:34.000000pt;}
.fse_c00327{font-size:35.333333pt;}
.fs20_c00327{font-size:37.333333pt;}
.fs1e_c00327{font-size:38.000000pt;}
.fs8_c00327{font-size:39.333333pt;}
.fsb_c00327{font-size:40.000000pt;}
.fs1d_c00327{font-size:41.333333pt;}
.fs21_c00327{font-size:42.000000pt;}
.fs1c_c00327{font-size:42.666667pt;}
.fs24_c00327{font-size:43.333333pt;}
.fs23_c00327{font-size:44.000000pt;}
.fs22_c00327{font-size:45.333333pt;}
.fs7_c00327{font-size:48.666667pt;}
.fsf_c00327{font-size:49.333333pt;}
.fs1f_c00327{font-size:62.000000pt;}
.fs13_c00327{font-size:62.666667pt;}
.fs10_c00327{font-size:65.333333pt;}
.fs1b_c00327{font-size:66.000000pt;}
.fs12_c00327{font-size:66.666667pt;}
.fs15_c00327{font-size:67.333333pt;}
.fs1a_c00327{font-size:68.000000pt;}
.fs4_c00327{font-size:68.666667pt;}
.fs11_c00327{font-size:69.333333pt;}
.fs0_c00327{font-size:70.000000pt;}
.fs5_c00327{font-size:70.666667pt;}
.fs3_c00327{font-size:71.333333pt;}
.fs16_c00327{font-size:72.000000pt;}
.fs1_c00327{font-size:73.333333pt;}
.fs2_c00327{font-size:75.333333pt;}
.fs19_c00327{font-size:85.333333pt;}
.fs17_c00327{font-size:102.666667pt;}
.fs18_c00327{font-size:115.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y27_c00327{bottom:154.240667pt;}
.y26_c00327{bottom:189.440933pt;}
.y25_c00327{bottom:274.559653pt;}
.y24_c00327{bottom:326.720253pt;}
.y23_c00327{bottom:326.720973pt;}
.y22_c00327{bottom:345.279747pt;}
.y21_c00327{bottom:345.279947pt;}
.y20_c00327{bottom:364.480920pt;}
.y1f_c00327{bottom:383.359867pt;}
.y1e_c00327{bottom:402.240280pt;}
.y1d_c00327{bottom:455.679947pt;}
.y1b_c00327{bottom:482.239640pt;}
.y1c_c00327{bottom:482.239707pt;}
.y1a_c00327{bottom:508.480840pt;}
.y19_c00327{bottom:560.639573pt;}
.y18_c00327{bottom:560.640360pt;}
.y17_c00327{bottom:587.200120pt;}
.y16_c00327{bottom:587.200400pt;}
.y15_c00327{bottom:613.439987pt;}
.y14_c00327{bottom:640.640667pt;}
.y13_c00327{bottom:664.319867pt;}
.y11_c00327{bottom:666.561040pt;}
.y12_c00327{bottom:666.880373pt;}
.y10_c00327{bottom:670.400387pt;}
.ye_c00327{bottom:693.440240pt;}
.yf_c00327{bottom:693.440920pt;}
.yd_c00327{bottom:720.000000pt;}
.yc_c00327{bottom:720.000427pt;}
.yb_c00327{bottom:746.560187pt;}
.ya_c00327{bottom:773.119933pt;}
.y9_c00327{bottom:799.361120pt;}
.y8_c00327{bottom:825.600707pt;}
.y7_c00327{bottom:852.160467pt;}
.y6_c00327{bottom:878.720213pt;}
.y5_c00327{bottom:932.159973pt;}
.y4_c00327{bottom:958.719720pt;}
.y3_c00327{bottom:958.719827pt;}
.y2_c00327{bottom:984.961013pt;}
.y1_c00327{bottom:1011.200600pt;}
.he_c00327{height:21.554687pt;}
.hd_c00327{height:24.187500pt;}
.hb_c00327{height:26.812826pt;}
.h17_c00327{height:27.117188pt;}
.hf_c00327{height:28.507812pt;}
.ha_c00327{height:28.890625pt;}
.h7_c00327{height:35.460938pt;}
.h10_c00327{height:36.851562pt;}
.h25_c00327{height:38.937500pt;}
.h23_c00327{height:39.632812pt;}
.h9_c00327{height:39.640625pt;}
.h22_c00327{height:40.566406pt;}
.h26_c00327{height:40.848958pt;}
.h27_c00327{height:41.220703pt;}
.hc_c00327{height:41.718750pt;}
.h21_c00327{height:41.875000pt;}
.h2b_c00327{height:42.529297pt;}
.h29_c00327{height:43.183594pt;}
.h2a_c00327{height:43.484375pt;}
.h28_c00327{height:44.802083pt;}
.h8_c00327{height:49.046875pt;}
.h12_c00327{height:49.718750pt;}
.h24_c00327{height:60.849609pt;}
.h20_c00327{height:64.775391pt;}
.h16_c00327{height:65.359375pt;}
.h1a_c00327{height:65.429688pt;}
.h15_c00327{height:67.187500pt;}
.h5_c00327{height:67.392578pt;}
.h13_c00327{height:68.140625pt;}
.h1f_c00327{height:68.531250pt;}
.h1_c00327{height:68.701172pt;}
.h6_c00327{height:69.355469pt;}
.h11_c00327{height:69.838542pt;}
.h14_c00327{height:69.875000pt;}
.h4_c00327{height:70.009766pt;}
.h18_c00327{height:70.226562pt;}
.h1e_c00327{height:70.546875pt;}
.h19_c00327{height:70.664062pt;}
.h2_c00327{height:71.972656pt;}
.h3_c00327{height:73.935547pt;}
.h1d_c00327{height:89.000000pt;}
.h1b_c00327{height:107.078125pt;}
.h1c_c00327{height:120.289062pt;}
.h0_c00327{height:1122.666667pt;}
.w0_c00327{width:793.333333pt;}
.x0_c00327{left:0.000000pt;}
.x9_c00327{left:121.923200pt;}
.x1_c00327{left:122.879867pt;}
.xd_c00327{left:146.559067pt;}
.x8_c00327{left:149.759720pt;}
.x35_c00327{left:162.238813pt;}
.x2c_c00327{left:170.559067pt;}
.x2a_c00327{left:171.839333pt;}
.x1c_c00327{left:173.119587pt;}
.xe_c00327{left:185.279333pt;}
.x2b_c00327{left:190.398920pt;}
.x36_c00327{left:196.158667pt;}
.x6_c00327{left:197.759720pt;}
.xf_c00327{left:200.958920pt;}
.x10_c00327{left:210.878920pt;}
.x7_c00327{left:212.480000pt;}
.x37_c00327{left:214.079587pt;}
.x3b_c00327{left:216.959453pt;}
.x2f_c00327{left:219.839333pt;}
.x22_c00327{left:227.838933pt;}
.x38_c00327{left:239.039067pt;}
.x3c_c00327{left:241.599587pt;}
.x30_c00327{left:242.879867pt;}
.x23_c00327{left:245.119587pt;}
.x3d_c00327{left:263.679200pt;}
.x39_c00327{left:269.438920pt;}
.x11_c00327{left:274.239200pt;}
.x2d_c00327{left:287.359867pt;}
.x2_c00327{left:297.279720pt;}
.x24_c00327{left:305.919453pt;}
.x33_c00327{left:307.199733pt;}
.x2e_c00327{left:308.480000pt;}
.x3_c00327{left:312.638667pt;}
.x3e_c00327{left:314.239720pt;}
.x25_c00327{left:315.518533pt;}
.x34_c00327{left:316.798787pt;}
.x12_c00327{left:332.159200pt;}
.x3a_c00327{left:333.439453pt;}
.x28_c00327{left:334.719720pt;}
.x13_c00327{left:340.158693pt;}
.x3f_c00327{left:351.039587pt;}
.x26_c00327{left:360.000000pt;}
.xa_c00327{left:362.879840pt;}
.x1d_c00327{left:366.079067pt;}
.x27_c00327{left:371.838907pt;}
.x29_c00327{left:373.759320pt;}
.x1e_c00327{left:379.839840pt;}
.xb_c00327{left:385.918907pt;}
.x14_c00327{left:408.959467pt;}
.x15_c00327{left:445.759320pt;}
.x16_c00327{left:469.439987pt;}
.x31_c00327{left:482.239707pt;}
.x32_c00327{left:490.239173pt;}
.x17_c00327{left:557.119587pt;}
.x4_c00327{left:585.279707pt;}
.x1f_c00327{left:598.719720pt;}
.x5_c00327{left:605.759720pt;}
.x20_c00327{left:627.839320pt;}
.x18_c00327{left:631.999467pt;}
.x1a_c00327{left:655.999427pt;}
.x1b_c00327{left:664.960000pt;}
.x21_c00327{left:674.239707pt;}
.xc_c00327{left:683.198733pt;}
.x19_c00327{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_233f5263179503ff0866b3c2.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_8fb662e324bf6709f02bd919.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_8b83a9dfb8227e955542d6dc.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_68435c4e8f3a38a988ed769c.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_64b78ecc0778a7d4843b7237.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_3364426236d73b629abe9b2a.woff2')format("woff");}.ff6_c00328{font-family:ff6_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;}
.m13_c00328{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m1d_c00328{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m1b_c00328{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m0_c00328{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m1f_c00328{transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);}
.m19_c00328{transform:matrix(0.452586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452586,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls12_c00328{letter-spacing:-14.643675px;}
.ls1_c00328{letter-spacing:-8.914500px;}
.ls9_c00328{letter-spacing:-7.426125px;}
.ls1c_c00328{letter-spacing:-7.094400px;}
.lsa_c00328{letter-spacing:-6.685875px;}
.lsb_c00328{letter-spacing:-6.269513px;}
.ls5_c00328{letter-spacing:-5.945625px;}
.ls15_c00328{letter-spacing:-5.398350px;}
.ls13_c00328{letter-spacing:-5.296875px;}
.ls8_c00328{letter-spacing:-5.196713px;}
.lsc_c00328{letter-spacing:-4.456463px;}
.ls6_c00328{letter-spacing:-3.717000px;}
.ls14_c00328{letter-spacing:-3.638880px;}
.lsd_c00328{letter-spacing:-3.086100px;}
.ls1a_c00328{letter-spacing:-3.082425px;}
.ls1d_c00328{letter-spacing:-3.048480px;}
.ls2_c00328{letter-spacing:-2.968875px;}
.ls0_c00328{letter-spacing:-2.229413px;}
.ls1e_c00328{letter-spacing:-2.150400px;}
.ls11_c00328{letter-spacing:-1.611225px;}
.ls4_c00328{letter-spacing:-1.489163px;}
.ls10_c00328{letter-spacing:-1.485458px;}
.ls19_c00328{letter-spacing:-0.840000px;}
.ls1f_c00328{letter-spacing:-0.763200px;}
.ls7_c00328{letter-spacing:-0.740250px;}
.lsf_c00328{letter-spacing:-0.719100px;}
.ls3_c00328{letter-spacing:0.000000px;}
.lse_c00328{letter-spacing:0.803400px;}
.ls1b_c00328{letter-spacing:2.335200px;}
.ls16_c00328{letter-spacing:3.139500px;}
.ls18_c00328{letter-spacing:4.430400px;}
.ls20_c00328{letter-spacing:8.001600px;}
.ls17_c00328{letter-spacing:46.473600px;}
.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;}
._5_c00328{margin-left:-38.151047px;}
._17_c00328{margin-left:-36.266932px;}
._20_c00328{margin-left:-14.909515px;}
._1f_c00328{margin-left:-8.174339px;}
._21_c00328{margin-left:-7.065495px;}
._12_c00328{margin-left:-4.854611px;}
._f_c00328{margin-left:-3.158261px;}
._d_c00328{margin-left:-1.753168px;}
._10_c00328{width:1.175678px;}
._15_c00328{width:2.653652px;}
._c_c00328{width:4.118447px;}
._e_c00328{width:5.634815px;}
._16_c00328{width:7.275490px;}
._11_c00328{width:8.686987px;}
._19_c00328{width:10.184277px;}
._13_c00328{width:11.650528px;}
._1c_c00328{width:12.919844px;}
._1d_c00328{width:14.257494px;}
._1a_c00328{width:16.522315px;}
._14_c00328{width:18.112233px;}
._b_c00328{width:19.473894px;}
._7_c00328{width:21.006161px;}
._18_c00328{width:22.136566px;}
._6_c00328{width:23.956077px;}
._9_c00328{width:25.706452px;}
._1b_c00328{width:27.681368px;}
._a_c00328{width:28.904519px;}
._1e_c00328{width:31.307508px;}
._8_c00328{width:33.641851px;}
._0_c00328{width:37.405462px;}
._4_c00328{width:39.958835px;}
._2_c00328{width:45.514320px;}
._3_c00328{width:46.891182px;}
._1_c00328{width:60.959929px;}
.fc0_c00328{color:transparent;}
.fs14_c00328{font-size:42.000000px;}
.fs12_c00328{font-size:43.500000px;}
.fs10_c00328{font-size:48.000000px;}
.fs11_c00328{font-size:54.750000px;}
.fs13_c00328{font-size:69.000000px;}
.fse_c00328{font-size:74.250000px;}
.fsd_c00328{font-size:75.750000px;}
.fsb_c00328{font-size:76.500000px;}
.fsc_c00328{font-size:77.250000px;}
.fsa_c00328{font-size:78.000000px;}
.fs0_c00328{font-size:78.750000px;}
.fs6_c00328{font-size:80.250000px;}
.fs8_c00328{font-size:81.000000px;}
.fs9_c00328{font-size:82.500000px;}
.fsf_c00328{font-size:83.250000px;}
.fs3_c00328{font-size:84.000000px;}
.fs1_c00328{font-size:84.750000px;}
.fs2_c00328{font-size:86.250000px;}
.fs7_c00328{font-size:90.000000px;}
.fs4_c00328{font-size:115.500000px;}
.fs5_c00328{font-size:129.750000px;}
.y0_c00328{bottom:0.000000px;}
.y26_c00328{bottom:175.320300px;}
.y25_c00328{bottom:215.279850px;}
.y24_c00328{bottom:293.399250px;}
.y23_c00328{bottom:293.399415px;}
.y22_c00328{bottom:323.279130px;}
.y21_c00328{bottom:352.440285px;}
.y20_c00328{bottom:381.960000px;}
.y1f_c00328{bottom:381.960645px;}
.y1e_c00328{bottom:440.999400px;}
.y1d_c00328{bottom:441.000315px;}
.y1c_c00328{bottom:471.600720px;}
.y1b_c00328{bottom:501.480450px;}
.y1a_c00328{bottom:531.360165px;}
.y19_c00328{bottom:560.879700px;}
.y17_c00328{bottom:590.398545px;}
.y18_c00328{bottom:590.399235px;}
.y16_c00328{bottom:619.559685px;}
.y15_c00328{bottom:619.560540px;}
.y14_c00328{bottom:649.440255px;}
.y13_c00328{bottom:709.199850px;}
.y12_c00328{bottom:709.199985px;}
.y11_c00328{bottom:738.719520px;}
.yf_c00328{bottom:768.958740px;}
.y10_c00328{bottom:768.959385px;}
.ye_c00328{bottom:798.119895px;}
.yc_c00328{bottom:828.359760px;}
.yd_c00328{bottom:828.359805px;}
.yb_c00328{bottom:858.599670px;}
.ya_c00328{bottom:917.640750px;}
.y9_c00328{bottom:939.240420px;}
.y8_c00328{bottom:939.240810px;}
.y7_c00328{bottom:960.840090px;}
.y6_c00328{bottom:1019.879520px;}
.y5_c00328{bottom:1019.881485px;}
.y4_c00328{bottom:1049.761215px;}
.y3_c00328{bottom:1079.640930px;}
.y2_c00328{bottom:1109.160465px;}
.y1_c00328{bottom:1139.039340px;}
.h17_c00328{height:43.804688px;}
.h14_c00328{height:45.369141px;}
.h12_c00328{height:47.109375px;}
.h16_c00328{height:48.375000px;}
.h13_c00328{height:54.108398px;}
.h15_c00328{height:67.719727px;}
.hf_c00328{height:74.344482px;}
.hd_c00328{height:75.080566px;}
.he_c00328{height:75.816650px;}
.hc_c00328{height:76.552734px;}
.h1_c00328{height:77.288818px;}
.h10_c00328{height:77.440430px;}
.h7_c00328{height:78.760986px;}
.ha_c00328{height:79.497070px;}
.hb_c00328{height:80.969238px;}
.h8_c00328{height:82.133789px;}
.h11_c00328{height:82.274414px;}
.h2_c00328{height:83.177490px;}
.h3_c00328{height:84.649658px;}
.h4_c00328{height:87.609375px;}
.h9_c00328{height:93.867188px;}
.h5_c00328{height:120.462891px;}
.h6_c00328{height:135.325195px;}
.h0_c00328{height:1263.000000px;}
.w0_c00328{width:892.500000px;}
.x0_c00328{left:0.000000px;}
.x11_c00328{left:139.678500px;}
.x1_c00328{left:141.118815px;}
.x12_c00328{left:164.878950px;}
.x2d_c00328{left:170.279250px;}
.x28_c00328{left:181.080000px;}
.x2e_c00328{left:184.319850px;}
.x1b_c00328{left:189.718500px;}
.xb_c00328{left:194.398710px;}
.x5_c00328{left:195.479685px;}
.x13_c00328{left:199.798950px;}
.x29_c00328{left:201.598500px;}
.x6_c00328{left:204.120000px;}
.x14_c00328{left:213.478635px;}
.x7_c00328{left:216.359250px;}
.x2f_c00328{left:222.479685px;}
.x8_c00328{left:227.159850px;}
.x30_c00328{left:242.639100px;}
.xf_c00328{left:249.118785px;}
.x10_c00328{left:261.719100px;}
.x1c_c00328{left:264.599700px;}
.x3_c00328{left:269.279850px;}
.x31_c00328{left:270.359250px;}
.x4_c00328{left:289.798515px;}
.x32_c00328{left:295.198785px;}
.x35_c00328{left:304.918350px;}
.x1d_c00328{left:317.518635px;}
.x2b_c00328{left:342.719100px;}
.x33_c00328{left:348.478635px;}
.x2a_c00328{left:356.398635px;}
.x2c_c00328{left:357.838950px;}
.x34_c00328{left:367.558635px;}
.x36_c00328{left:376.918950px;}
.x24_c00328{left:401.758530px;}
.x25_c00328{left:415.798920px;}
.x1e_c00328{left:451.798515px;}
.x1f_c00328{left:511.198785px;}
.x20_c00328{left:526.318770px;}
.x21_c00328{left:559.798515px;}
.x9_c00328{left:644.039985px;}
.x15_c00328{left:647.639100px;}
.xa_c00328{left:659.519070px;}
.x16_c00328{left:666.359850px;}
.x26_c00328{left:670.679070px;}
.x17_c00328{left:677.158770px;}
.x27_c00328{left:685.078770px;}
.x18_c00328{left:699.119385px;}
.x22_c00328{left:737.638545px;}
.x19_c00328{left:744.479235px;}
.x23_c00328{left:757.799520px;}
.x1a_c00328{left:759.599070px;}
.xc_c00328{left:760.678530px;}
.xd_c00328{left:766.439670px;}
.x2_c00328{left:771.479190px;}
.xe_c00328{left:772.919490px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls12_c00328{letter-spacing:-13.016600pt;}
.ls1_c00328{letter-spacing:-7.924000pt;}
.ls9_c00328{letter-spacing:-6.601000pt;}
.ls1c_c00328{letter-spacing:-6.306133pt;}
.lsa_c00328{letter-spacing:-5.943000pt;}
.lsb_c00328{letter-spacing:-5.572900pt;}
.ls5_c00328{letter-spacing:-5.285000pt;}
.ls15_c00328{letter-spacing:-4.798533pt;}
.ls13_c00328{letter-spacing:-4.708333pt;}
.ls8_c00328{letter-spacing:-4.619300pt;}
.lsc_c00328{letter-spacing:-3.961300pt;}
.ls6_c00328{letter-spacing:-3.304000pt;}
.ls14_c00328{letter-spacing:-3.234560pt;}
.lsd_c00328{letter-spacing:-2.743200pt;}
.ls1a_c00328{letter-spacing:-2.739933pt;}
.ls1d_c00328{letter-spacing:-2.709760pt;}
.ls2_c00328{letter-spacing:-2.639000pt;}
.ls0_c00328{letter-spacing:-1.981700pt;}
.ls1e_c00328{letter-spacing:-1.911467pt;}
.ls11_c00328{letter-spacing:-1.432200pt;}
.ls4_c00328{letter-spacing:-1.323700pt;}
.ls10_c00328{letter-spacing:-1.320407pt;}
.ls19_c00328{letter-spacing:-0.746667pt;}
.ls1f_c00328{letter-spacing:-0.678400pt;}
.ls7_c00328{letter-spacing:-0.658000pt;}
.lsf_c00328{letter-spacing:-0.639200pt;}
.ls3_c00328{letter-spacing:0.000000pt;}
.lse_c00328{letter-spacing:0.714133pt;}
.ls1b_c00328{letter-spacing:2.075733pt;}
.ls16_c00328{letter-spacing:2.790667pt;}
.ls18_c00328{letter-spacing:3.938133pt;}
.ls20_c00328{letter-spacing:7.112533pt;}
.ls17_c00328{letter-spacing:41.309867pt;}
.ws0_c00328{word-spacing:0.000000pt;}
._5_c00328{margin-left:-33.912042pt;}
._17_c00328{margin-left:-32.237272pt;}
._20_c00328{margin-left:-13.252902pt;}
._1f_c00328{margin-left:-7.266079pt;}
._21_c00328{margin-left:-6.280440pt;}
._12_c00328{margin-left:-4.315209pt;}
._f_c00328{margin-left:-2.807343pt;}
._d_c00328{margin-left:-1.558372pt;}
._10_c00328{width:1.045047pt;}
._15_c00328{width:2.358802pt;}
._c_c00328{width:3.660842pt;}
._e_c00328{width:5.008725pt;}
._16_c00328{width:6.467102pt;}
._11_c00328{width:7.721766pt;}
._19_c00328{width:9.052691pt;}
._13_c00328{width:10.356025pt;}
._1c_c00328{width:11.484306pt;}
._1d_c00328{width:12.673328pt;}
._1a_c00328{width:14.686502pt;}
._14_c00328{width:16.099762pt;}
._b_c00328{width:17.310128pt;}
._7_c00328{width:18.672143pt;}
._18_c00328{width:19.676947pt;}
._6_c00328{width:21.294291pt;}
._9_c00328{width:22.850179pt;}
._1b_c00328{width:24.605660pt;}
._a_c00328{width:25.692906pt;}
._1e_c00328{width:27.828896pt;}
._8_c00328{width:29.903868pt;}
._0_c00328{width:33.249300pt;}
._4_c00328{width:35.518964pt;}
._2_c00328{width:40.457174pt;}
._3_c00328{width:41.681051pt;}
._1_c00328{width:54.186604pt;}
.fs14_c00328{font-size:37.333333pt;}
.fs12_c00328{font-size:38.666667pt;}
.fs10_c00328{font-size:42.666667pt;}
.fs11_c00328{font-size:48.666667pt;}
.fs13_c00328{font-size:61.333333pt;}
.fse_c00328{font-size:66.000000pt;}
.fsd_c00328{font-size:67.333333pt;}
.fsb_c00328{font-size:68.000000pt;}
.fsc_c00328{font-size:68.666667pt;}
.fsa_c00328{font-size:69.333333pt;}
.fs0_c00328{font-size:70.000000pt;}
.fs6_c00328{font-size:71.333333pt;}
.fs8_c00328{font-size:72.000000pt;}
.fs9_c00328{font-size:73.333333pt;}
.fsf_c00328{font-size:74.000000pt;}
.fs3_c00328{font-size:74.666667pt;}
.fs1_c00328{font-size:75.333333pt;}
.fs2_c00328{font-size:76.666667pt;}
.fs7_c00328{font-size:80.000000pt;}
.fs4_c00328{font-size:102.666667pt;}
.fs5_c00328{font-size:115.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y26_c00328{bottom:155.840267pt;}
.y25_c00328{bottom:191.359867pt;}
.y24_c00328{bottom:260.799333pt;}
.y23_c00328{bottom:260.799480pt;}
.y22_c00328{bottom:287.359227pt;}
.y21_c00328{bottom:313.280253pt;}
.y20_c00328{bottom:339.520000pt;}
.y1f_c00328{bottom:339.520573pt;}
.y1e_c00328{bottom:391.999467pt;}
.y1d_c00328{bottom:392.000280pt;}
.y1c_c00328{bottom:419.200640pt;}
.y1b_c00328{bottom:445.760400pt;}
.y1a_c00328{bottom:472.320147pt;}
.y19_c00328{bottom:498.559733pt;}
.y17_c00328{bottom:524.798707pt;}
.y18_c00328{bottom:524.799320pt;}
.y16_c00328{bottom:550.719720pt;}
.y15_c00328{bottom:550.720480pt;}
.y14_c00328{bottom:577.280227pt;}
.y13_c00328{bottom:630.399867pt;}
.y12_c00328{bottom:630.399987pt;}
.y11_c00328{bottom:656.639573pt;}
.yf_c00328{bottom:683.518880pt;}
.y10_c00328{bottom:683.519453pt;}
.ye_c00328{bottom:709.439907pt;}
.yc_c00328{bottom:736.319787pt;}
.yd_c00328{bottom:736.319827pt;}
.yb_c00328{bottom:763.199707pt;}
.ya_c00328{bottom:815.680667pt;}
.y9_c00328{bottom:834.880373pt;}
.y8_c00328{bottom:834.880720pt;}
.y7_c00328{bottom:854.080080pt;}
.y6_c00328{bottom:906.559573pt;}
.y5_c00328{bottom:906.561320pt;}
.y4_c00328{bottom:933.121080pt;}
.y3_c00328{bottom:959.680827pt;}
.y2_c00328{bottom:985.920413pt;}
.y1_c00328{bottom:1012.479413pt;}
.h17_c00328{height:38.937500pt;}
.h14_c00328{height:40.328125pt;}
.h12_c00328{height:41.875000pt;}
.h16_c00328{height:43.000000pt;}
.h13_c00328{height:48.096354pt;}
.h15_c00328{height:60.195312pt;}
.hf_c00328{height:66.083984pt;}
.hd_c00328{height:66.738281pt;}
.he_c00328{height:67.392578pt;}
.hc_c00328{height:68.046875pt;}
.h1_c00328{height:68.701172pt;}
.h10_c00328{height:68.835938pt;}
.h7_c00328{height:70.009766pt;}
.ha_c00328{height:70.664062pt;}
.hb_c00328{height:71.972656pt;}
.h8_c00328{height:73.007812pt;}
.h11_c00328{height:73.132813pt;}
.h2_c00328{height:73.935547pt;}
.h3_c00328{height:75.244141pt;}
.h4_c00328{height:77.875000pt;}
.h9_c00328{height:83.437500pt;}
.h5_c00328{height:107.078125pt;}
.h6_c00328{height:120.289062pt;}
.h0_c00328{height:1122.666667pt;}
.w0_c00328{width:793.333333pt;}
.x0_c00328{left:0.000000pt;}
.x11_c00328{left:124.158667pt;}
.x1_c00328{left:125.438947pt;}
.x12_c00328{left:146.559067pt;}
.x2d_c00328{left:151.359333pt;}
.x28_c00328{left:160.960000pt;}
.x2e_c00328{left:163.839867pt;}
.x1b_c00328{left:168.638667pt;}
.xb_c00328{left:172.798853pt;}
.x5_c00328{left:173.759720pt;}
.x13_c00328{left:177.599067pt;}
.x29_c00328{left:179.198667pt;}
.x6_c00328{left:181.440000pt;}
.x14_c00328{left:189.758787pt;}
.x7_c00328{left:192.319333pt;}
.x2f_c00328{left:197.759720pt;}
.x8_c00328{left:201.919867pt;}
.x30_c00328{left:215.679200pt;}
.xf_c00328{left:221.438920pt;}
.x10_c00328{left:232.639200pt;}
.x1c_c00328{left:235.199733pt;}
.x3_c00328{left:239.359867pt;}
.x31_c00328{left:240.319333pt;}
.x4_c00328{left:257.598680pt;}
.x32_c00328{left:262.398920pt;}
.x35_c00328{left:271.038533pt;}
.x1d_c00328{left:282.238787pt;}
.x2b_c00328{left:304.639200pt;}
.x33_c00328{left:309.758787pt;}
.x2a_c00328{left:316.798787pt;}
.x2c_c00328{left:318.079067pt;}
.x34_c00328{left:326.718787pt;}
.x36_c00328{left:335.039067pt;}
.x24_c00328{left:357.118693pt;}
.x25_c00328{left:369.599040pt;}
.x1e_c00328{left:401.598680pt;}
.x1f_c00328{left:454.398920pt;}
.x20_c00328{left:467.838907pt;}
.x21_c00328{left:497.598680pt;}
.x9_c00328{left:572.479987pt;}
.x15_c00328{left:575.679200pt;}
.xa_c00328{left:586.239173pt;}
.x16_c00328{left:592.319867pt;}
.x26_c00328{left:596.159173pt;}
.x17_c00328{left:601.918907pt;}
.x27_c00328{left:608.958907pt;}
.x18_c00328{left:621.439453pt;}
.x22_c00328{left:655.678707pt;}
.x19_c00328{left:661.759320pt;}
.x23_c00328{left:673.599573pt;}
.x1a_c00328{left:675.199173pt;}
.xc_c00328{left:676.158693pt;}
.xd_c00328{left:681.279707pt;}
.x2_c00328{left:685.759280pt;}
.xe_c00328{left:687.039547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4408890cadfd793da0e4c75.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;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_c1f4a21471e406ae68b0abe4.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_d84e1d2b6d102727d32f4169.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_ab62b3f771fbb18bf033dc67.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_05c788b3f2271f9ede78a29b.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00329;src:url('chunks/assets/font_4721ca0cffb05dbab2f7092a.woff2')format("woff");}.ff7_c00329{font-family:ff7_c00329;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00329;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff8_c00329{font-family:ff8_c00329;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00329{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);}
.m2a_c00329{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);}
.m29_c00329{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.210106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210106,0.000000,0.000000,0.250000,0,0);}
.m28_c00329{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00329{transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m20_c00329{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m21_c00329{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1f_c00329{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m26_c00329{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m22_c00329{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m2b_c00329{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236726,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.m27_c00329{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);}
.m25_c00329{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m24_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m1c_c00329{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m1e_c00329{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m23_c00329{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.450521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450521,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{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);}
.m16_c00329{transform:matrix(0.581897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581897,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621795,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.781250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781250,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls29_c00329{letter-spacing:-20.249475px;}
.ls2d_c00329{letter-spacing:-18.083918px;}
.ls2c_c00329{letter-spacing:-13.620750px;}
.ls11_c00329{letter-spacing:-12.687675px;}
.ls28_c00329{letter-spacing:-8.828663px;}
.ls4_c00329{letter-spacing:-8.175038px;}
.ls9_c00329{letter-spacing:-6.685875px;}
.ls1c_c00329{letter-spacing:-6.165338px;}
.lsb_c00329{letter-spacing:-6.051443px;}
.lsa_c00329{letter-spacing:-5.945625px;}
.ls19_c00329{letter-spacing:-5.840100px;}
.ls1a_c00329{letter-spacing:-5.677875px;}
.ls2f_c00329{letter-spacing:-5.247533px;}
.ls8_c00329{letter-spacing:-5.196713px;}
.ls26_c00329{letter-spacing:-4.853475px;}
.ls1b_c00329{letter-spacing:-4.456463px;}
.lsc_c00329{letter-spacing:-4.410975px;}
.ls5_c00329{letter-spacing:-3.717000px;}
.ls15_c00329{letter-spacing:-3.673118px;}
.ls24_c00329{letter-spacing:-3.204600px;}
.ls1_c00329{letter-spacing:-2.968875px;}
.ls12_c00329{letter-spacing:-2.408963px;}
.ls2e_c00329{letter-spacing:-2.381400px;}
.ls2a_c00329{letter-spacing:-2.250645px;}
.ls3_c00329{letter-spacing:-2.229413px;}
.ls1f_c00329{letter-spacing:-1.501500px;}
.ls6_c00329{letter-spacing:-1.489163px;}
.ls16_c00329{letter-spacing:-1.468793px;}
.ls20_c00329{letter-spacing:-1.440000px;}
.ls1d_c00329{letter-spacing:-0.965700px;}
.ls21_c00329{letter-spacing:-0.835200px;}
.ls10_c00329{letter-spacing:-0.826200px;}
.ls17_c00329{letter-spacing:-0.780225px;}
.ls2_c00329{letter-spacing:-0.740250px;}
.ls7_c00329{letter-spacing:0.000000px;}
.ls23_c00329{letter-spacing:0.702405px;}
.ls1e_c00329{letter-spacing:0.903825px;}
.lsd_c00329{letter-spacing:1.514873px;}
.ls18_c00329{letter-spacing:1.578675px;}
.ls22_c00329{letter-spacing:2.843550px;}
.lsf_c00329{letter-spacing:3.290850px;}
.ls14_c00329{letter-spacing:3.705750px;}
.ls13_c00329{letter-spacing:11.995620px;}
.ls27_c00329{letter-spacing:18.285000px;}
.lse_c00329{letter-spacing:20.523255px;}
.ls25_c00329{letter-spacing:25.145850px;}
.ls2b_c00329{letter-spacing:25.674300px;}
.ls0_c00329{letter-spacing:44.571713px;}
.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;}
._21_c00329{margin-left:-163.559337px;}
._a_c00329{margin-left:-12.520165px;}
._e_c00329{margin-left:-6.529772px;}
._16_c00329{margin-left:-3.690225px;}
._f_c00329{margin-left:-2.614857px;}
._12_c00329{margin-left:-1.368883px;}
._10_c00329{width:1.404038px;}
._15_c00329{width:2.808017px;}
._11_c00329{width:4.193452px;}
._d_c00329{width:5.239327px;}
._23_c00329{width:6.283284px;}
._14_c00329{width:7.320630px;}
._13_c00329{width:8.646809px;}
._1c_c00329{width:9.865224px;}
._19_c00329{width:11.815591px;}
._18_c00329{width:13.064774px;}
._20_c00329{width:14.188967px;}
._1a_c00329{width:15.487584px;}
._1d_c00329{width:17.373959px;}
._17_c00329{width:18.666959px;}
._1f_c00329{width:21.420579px;}
._1b_c00329{width:22.615707px;}
._1e_c00329{width:24.314791px;}
._1_c00329{width:28.011286px;}
._3_c00329{width:29.924941px;}
._5_c00329{width:30.987739px;}
._0_c00329{width:32.941303px;}
._2_c00329{width:34.201303px;}
._4_c00329{width:37.335226px;}
._6_c00329{width:41.076357px;}
._c_c00329{width:42.134742px;}
._b_c00329{width:45.284742px;}
._7_c00329{width:46.867008px;}
._9_c00329{width:52.675489px;}
._8_c00329{width:56.080446px;}
._22_c00329{width:58.865655px;}
.fc0_c00329{color:transparent;}
.fs12_c00329{font-size:12.000000px;}
.fs10_c00329{font-size:29.250000px;}
.fse_c00329{font-size:43.500000px;}
.fsd_c00329{font-size:51.750000px;}
.fs11_c00329{font-size:57.750000px;}
.fs16_c00329{font-size:64.500000px;}
.fs15_c00329{font-size:65.250000px;}
.fs14_c00329{font-size:66.750000px;}
.fs8_c00329{font-size:67.500000px;}
.fs4_c00329{font-size:70.500000px;}
.fs13_c00329{font-size:72.000000px;}
.fsa_c00329{font-size:72.750000px;}
.fs5_c00329{font-size:73.500000px;}
.fs1a_c00329{font-size:75.000000px;}
.fs9_c00329{font-size:75.750000px;}
.fs6_c00329{font-size:76.500000px;}
.fs3_c00329{font-size:77.250000px;}
.fs7_c00329{font-size:78.000000px;}
.fs0_c00329{font-size:78.750000px;}
.fs18_c00329{font-size:79.500000px;}
.fs19_c00329{font-size:80.250000px;}
.fsb_c00329{font-size:81.000000px;}
.fs17_c00329{font-size:81.750000px;}
.fs1_c00329{font-size:82.500000px;}
.fs2_c00329{font-size:83.250000px;}
.fsc_c00329{font-size:84.750000px;}
.fsf_c00329{font-size:86.250000px;}
.y0_c00329{bottom:0.000000px;}
.y26_c00329{bottom:244.800435px;}
.y25_c00329{bottom:274.680150px;}
.y24_c00329{bottom:274.680315px;}
.y23_c00329{bottom:304.199850px;}
.y22_c00329{bottom:333.719535px;}
.y21_c00329{bottom:333.719715px;}
.y20_c00329{bottom:363.239250px;}
.y1f_c00329{bottom:393.480885px;}
.y1e_c00329{bottom:423.359850px;}
.y1d_c00329{bottom:431.279850px;}
.y1c_c00329{bottom:452.879520px;}
.y1b_c00329{bottom:452.879880px;}
.y1a_c00329{bottom:483.480285px;}
.y19_c00329{bottom:542.520555px;}
.y18_c00329{bottom:572.400285px;}
.y16_c00329{bottom:602.278515px;}
.y17_c00329{bottom:602.279250px;}
.y15_c00329{bottom:631.439670px;}
.y14_c00329{bottom:631.440555px;}
.y12_c00329{bottom:661.319160px;}
.y13_c00329{bottom:661.320285px;}
.y11_c00329{bottom:691.198890px;}
.y10_c00329{bottom:721.440900px;}
.yf_c00329{bottom:750.960570px;}
.ye_c00329{bottom:780.839535px;}
.yd_c00329{bottom:780.839715px;}
.yb_c00329{bottom:810.358755px;}
.yc_c00329{bottom:810.359250px;}
.ya_c00329{bottom:840.600765px;}
.y9_c00329{bottom:840.601440px;}
.y8_c00329{bottom:870.120960px;}
.y7_c00329{bottom:930.240600px;}
.y6_c00329{bottom:989.281470px;}
.y5_c00329{bottom:1019.161200px;}
.y4_c00329{bottom:1049.040915px;}
.y3_c00329{bottom:1078.560450px;}
.y2_c00329{bottom:1108.440165px;}
.y1_c00329{bottom:1138.680090px;}
.h18_c00329{height:11.859375px;}
.h16_c00329{height:30.506836px;}
.h14_c00329{height:45.369141px;}
.h13_c00329{height:53.973633px;}
.h17_c00329{height:60.231445px;}
.h1c_c00329{height:65.003906px;}
.h1a_c00329{height:67.271484px;}
.hc_c00329{height:68.027344px;}
.h1b_c00329{height:68.053711px;}
.he_c00329{height:73.318359px;}
.h6_c00329{height:73.529297px;}
.h19_c00329{height:75.093750px;}
.h4_c00329{height:75.816650px;}
.h12_c00329{height:75.875977px;}
.hd_c00329{height:76.341797px;}
.h7_c00329{height:76.658203px;}
.h8_c00329{height:77.097656px;}
.h11_c00329{height:77.250366px;}
.h1_c00329{height:77.288818px;}
.h5_c00329{height:77.853516px;}
.h22_c00329{height:78.222656px;}
.hb_c00329{height:78.609375px;}
.h21_c00329{height:78.760986px;}
.ha_c00329{height:79.365234px;}
.h23_c00329{height:79.457520px;}
.hf_c00329{height:79.497070px;}
.h1e_c00329{height:80.121094px;}
.h20_c00329{height:80.233154px;}
.h2_c00329{height:80.969238px;}
.h9_c00329{height:81.533203px;}
.h3_c00329{height:81.705322px;}
.h1d_c00329{height:82.388672px;}
.h10_c00329{height:83.177490px;}
.h1f_c00329{height:83.900391px;}
.h15_c00329{height:89.956055px;}
.h0_c00329{height:1263.000000px;}
.w0_c00329{width:892.500000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:136.080420px;}
.x24_c00329{left:141.838950px;}
.x1f_c00329{left:160.198785px;}
.x25_c00329{left:176.399850px;}
.x26_c00329{left:185.399250px;}
.x1_c00329{left:191.519685px;}
.xb_c00329{left:197.999400px;}
.x27_c00329{left:204.838515px;}
.x1b_c00329{left:214.198785px;}
.x2a_c00329{left:221.039400px;}
.x28_c00329{left:222.118785px;}
.x1c_c00329{left:228.959400px;}
.xc_c00329{left:231.479235px;}
.x1d_c00329{left:257.038950px;}
.x29_c00329{left:263.159385px;}
.x1e_c00329{left:274.319250px;}
.x17_c00329{left:281.159850px;}
.x3d_c00329{left:289.080000px;}
.x18_c00329{left:296.639100px;}
.x2b_c00329{left:300.239850px;}
.x37_c00329{left:305.999385px;}
.xd_c00329{left:314.639700px;}
.x20_c00329{left:320.399235px;}
.x38_c00329{left:324.718500px;}
.xe_c00329{left:329.759535px;}
.x21_c00329{left:340.199385px;}
.x5_c00329{left:368.998950px;}
.x6_c00329{left:389.878320px;}
.x2c_c00329{left:402.478635px;}
.xf_c00329{left:407.878920px;}
.x19_c00329{left:419.399820px;}
.x2d_c00329{left:426.599670px;}
.x10_c00329{left:429.119385px;}
.x1a_c00329{left:449.639700px;}
.x2e_c00329{left:466.559100px;}
.x3e_c00329{left:481.319820px;}
.x11_c00329{left:493.199850px;}
.x3f_c00329{left:494.999400px;}
.x12_c00329{left:513.000000px;}
.x22_c00329{left:578.159820px;}
.x2f_c00329{left:587.518620px;}
.x13_c00329{left:594.359250px;}
.x23_c00329{left:600.479685px;}
.x7_c00329{left:612.719100px;}
.x14_c00329{left:618.119385px;}
.x30_c00329{left:621.000000px;}
.x8_c00329{left:628.559100px;}
.x39_c00329{left:658.078770px;}
.x31_c00329{left:665.639700px;}
.x34_c00329{left:666.719100px;}
.x3_c00329{left:672.839535px;}
.x35_c00329{left:682.199850px;}
.x4_c00329{left:686.159820px;}
.x15_c00329{left:691.199385px;}
.x9_c00329{left:700.918950px;}
.x32_c00329{left:710.999400px;}
.x3a_c00329{left:714.239220px;}
.xa_c00329{left:727.559685px;}
.x3b_c00329{left:745.558635px;}
.x16_c00329{left:759.239820px;}
.x3c_c00329{left:761.398635px;}
.x33_c00329{left:763.199850px;}
.x36_c00329{left:768.239220px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls29_c00329{letter-spacing:-17.999533pt;}
.ls2d_c00329{letter-spacing:-16.074593pt;}
.ls2c_c00329{letter-spacing:-12.107333pt;}
.ls11_c00329{letter-spacing:-11.277933pt;}
.ls28_c00329{letter-spacing:-7.847700pt;}
.ls4_c00329{letter-spacing:-7.266700pt;}
.ls9_c00329{letter-spacing:-5.943000pt;}
.ls1c_c00329{letter-spacing:-5.480300pt;}
.lsb_c00329{letter-spacing:-5.379060pt;}
.lsa_c00329{letter-spacing:-5.285000pt;}
.ls19_c00329{letter-spacing:-5.191200pt;}
.ls1a_c00329{letter-spacing:-5.047000pt;}
.ls2f_c00329{letter-spacing:-4.664473pt;}
.ls8_c00329{letter-spacing:-4.619300pt;}
.ls26_c00329{letter-spacing:-4.314200pt;}
.ls1b_c00329{letter-spacing:-3.961300pt;}
.lsc_c00329{letter-spacing:-3.920867pt;}
.ls5_c00329{letter-spacing:-3.304000pt;}
.ls15_c00329{letter-spacing:-3.264993pt;}
.ls24_c00329{letter-spacing:-2.848533pt;}
.ls1_c00329{letter-spacing:-2.639000pt;}
.ls12_c00329{letter-spacing:-2.141300pt;}
.ls2e_c00329{letter-spacing:-2.116800pt;}
.ls2a_c00329{letter-spacing:-2.000573pt;}
.ls3_c00329{letter-spacing:-1.981700pt;}
.ls1f_c00329{letter-spacing:-1.334667pt;}
.ls6_c00329{letter-spacing:-1.323700pt;}
.ls16_c00329{letter-spacing:-1.305593pt;}
.ls20_c00329{letter-spacing:-1.280000pt;}
.ls1d_c00329{letter-spacing:-0.858400pt;}
.ls21_c00329{letter-spacing:-0.742400pt;}
.ls10_c00329{letter-spacing:-0.734400pt;}
.ls17_c00329{letter-spacing:-0.693533pt;}
.ls2_c00329{letter-spacing:-0.658000pt;}
.ls7_c00329{letter-spacing:0.000000pt;}
.ls23_c00329{letter-spacing:0.624360pt;}
.ls1e_c00329{letter-spacing:0.803400pt;}
.lsd_c00329{letter-spacing:1.346553pt;}
.ls18_c00329{letter-spacing:1.403267pt;}
.ls22_c00329{letter-spacing:2.527600pt;}
.lsf_c00329{letter-spacing:2.925200pt;}
.ls14_c00329{letter-spacing:3.294000pt;}
.ls13_c00329{letter-spacing:10.662773pt;}
.ls27_c00329{letter-spacing:16.253333pt;}
.lse_c00329{letter-spacing:18.242893pt;}
.ls25_c00329{letter-spacing:22.351867pt;}
.ls2b_c00329{letter-spacing:22.821600pt;}
.ls0_c00329{letter-spacing:39.619300pt;}
.ws0_c00329{word-spacing:0.000000pt;}
._21_c00329{margin-left:-145.386077pt;}
._a_c00329{margin-left:-11.129036pt;}
._e_c00329{margin-left:-5.804242pt;}
._16_c00329{margin-left:-3.280200pt;}
._f_c00329{margin-left:-2.324317pt;}
._12_c00329{margin-left:-1.216785pt;}
._10_c00329{width:1.248034pt;}
._15_c00329{width:2.496015pt;}
._11_c00329{width:3.727513pt;}
._d_c00329{width:4.657179pt;}
._23_c00329{width:5.585142pt;}
._14_c00329{width:6.507226pt;}
._13_c00329{width:7.686053pt;}
._1c_c00329{width:8.769088pt;}
._19_c00329{width:10.502747pt;}
._18_c00329{width:11.613132pt;}
._20_c00329{width:12.612415pt;}
._1a_c00329{width:13.766742pt;}
._1d_c00329{width:15.443519pt;}
._17_c00329{width:16.592853pt;}
._1f_c00329{width:19.040515pt;}
._1b_c00329{width:20.102851pt;}
._1e_c00329{width:21.613147pt;}
._1_c00329{width:24.898921pt;}
._3_c00329{width:26.599947pt;}
._5_c00329{width:27.544657pt;}
._0_c00329{width:29.281158pt;}
._2_c00329{width:30.401158pt;}
._4_c00329{width:33.186868pt;}
._6_c00329{width:36.512317pt;}
._c_c00329{width:37.453104pt;}
._b_c00329{width:40.253104pt;}
._7_c00329{width:41.659562pt;}
._9_c00329{width:46.822657pt;}
._8_c00329{width:49.849285pt;}
._22_c00329{width:52.325027pt;}
.fs12_c00329{font-size:10.666667pt;}
.fs10_c00329{font-size:26.000000pt;}
.fse_c00329{font-size:38.666667pt;}
.fsd_c00329{font-size:46.000000pt;}
.fs11_c00329{font-size:51.333333pt;}
.fs16_c00329{font-size:57.333333pt;}
.fs15_c00329{font-size:58.000000pt;}
.fs14_c00329{font-size:59.333333pt;}
.fs8_c00329{font-size:60.000000pt;}
.fs4_c00329{font-size:62.666667pt;}
.fs13_c00329{font-size:64.000000pt;}
.fsa_c00329{font-size:64.666667pt;}
.fs5_c00329{font-size:65.333333pt;}
.fs1a_c00329{font-size:66.666667pt;}
.fs9_c00329{font-size:67.333333pt;}
.fs6_c00329{font-size:68.000000pt;}
.fs3_c00329{font-size:68.666667pt;}
.fs7_c00329{font-size:69.333333pt;}
.fs0_c00329{font-size:70.000000pt;}
.fs18_c00329{font-size:70.666667pt;}
.fs19_c00329{font-size:71.333333pt;}
.fsb_c00329{font-size:72.000000pt;}
.fs17_c00329{font-size:72.666667pt;}
.fs1_c00329{font-size:73.333333pt;}
.fs2_c00329{font-size:74.000000pt;}
.fsc_c00329{font-size:75.333333pt;}
.fsf_c00329{font-size:76.666667pt;}
.y0_c00329{bottom:0.000000pt;}
.y26_c00329{bottom:217.600387pt;}
.y25_c00329{bottom:244.160133pt;}
.y24_c00329{bottom:244.160280pt;}
.y23_c00329{bottom:270.399867pt;}
.y22_c00329{bottom:296.639587pt;}
.y21_c00329{bottom:296.639747pt;}
.y20_c00329{bottom:322.879333pt;}
.y1f_c00329{bottom:349.760787pt;}
.y1e_c00329{bottom:376.319867pt;}
.y1d_c00329{bottom:383.359867pt;}
.y1c_c00329{bottom:402.559573pt;}
.y1b_c00329{bottom:402.559893pt;}
.y1a_c00329{bottom:429.760253pt;}
.y19_c00329{bottom:482.240493pt;}
.y18_c00329{bottom:508.800253pt;}
.y16_c00329{bottom:535.358680pt;}
.y17_c00329{bottom:535.359333pt;}
.y15_c00329{bottom:561.279707pt;}
.y14_c00329{bottom:561.280493pt;}
.y12_c00329{bottom:587.839253pt;}
.y13_c00329{bottom:587.840253pt;}
.y11_c00329{bottom:614.399013pt;}
.y10_c00329{bottom:641.280800pt;}
.yf_c00329{bottom:667.520507pt;}
.ye_c00329{bottom:694.079587pt;}
.yd_c00329{bottom:694.079747pt;}
.yb_c00329{bottom:720.318893pt;}
.yc_c00329{bottom:720.319333pt;}
.ya_c00329{bottom:747.200680pt;}
.y9_c00329{bottom:747.201280pt;}
.y8_c00329{bottom:773.440853pt;}
.y7_c00329{bottom:826.880533pt;}
.y6_c00329{bottom:879.361307pt;}
.y5_c00329{bottom:905.921067pt;}
.y4_c00329{bottom:932.480813pt;}
.y3_c00329{bottom:958.720400pt;}
.y2_c00329{bottom:985.280147pt;}
.y1_c00329{bottom:1012.160080pt;}
.h18_c00329{height:10.541667pt;}
.h16_c00329{height:27.117188pt;}
.h14_c00329{height:40.328125pt;}
.h13_c00329{height:47.976562pt;}
.h17_c00329{height:53.539062pt;}
.h1c_c00329{height:57.781250pt;}
.h1a_c00329{height:59.796875pt;}
.hc_c00329{height:60.468750pt;}
.h1b_c00329{height:60.492188pt;}
.he_c00329{height:65.171875pt;}
.h6_c00329{height:65.359375pt;}
.h19_c00329{height:66.750000pt;}
.h4_c00329{height:67.392578pt;}
.h12_c00329{height:67.445312pt;}
.hd_c00329{height:67.859375pt;}
.h7_c00329{height:68.140625pt;}
.h8_c00329{height:68.531250pt;}
.h11_c00329{height:68.666992pt;}
.h1_c00329{height:68.701172pt;}
.h5_c00329{height:69.203125pt;}
.h22_c00329{height:69.531250pt;}
.hb_c00329{height:69.875000pt;}
.h21_c00329{height:70.009766pt;}
.ha_c00329{height:70.546875pt;}
.h23_c00329{height:70.628906pt;}
.hf_c00329{height:70.664062pt;}
.h1e_c00329{height:71.218750pt;}
.h20_c00329{height:71.318359pt;}
.h2_c00329{height:71.972656pt;}
.h9_c00329{height:72.473958pt;}
.h3_c00329{height:72.626953pt;}
.h1d_c00329{height:73.234375pt;}
.h10_c00329{height:73.935547pt;}
.h1f_c00329{height:74.578125pt;}
.h15_c00329{height:79.960938pt;}
.h0_c00329{height:1122.666667pt;}
.w0_c00329{width:793.333333pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:120.960373pt;}
.x24_c00329{left:126.079067pt;}
.x1f_c00329{left:142.398920pt;}
.x25_c00329{left:156.799867pt;}
.x26_c00329{left:164.799333pt;}
.x1_c00329{left:170.239720pt;}
.xb_c00329{left:175.999467pt;}
.x27_c00329{left:182.078680pt;}
.x1b_c00329{left:190.398920pt;}
.x2a_c00329{left:196.479467pt;}
.x28_c00329{left:197.438920pt;}
.x1c_c00329{left:203.519467pt;}
.xc_c00329{left:205.759320pt;}
.x1d_c00329{left:228.479067pt;}
.x29_c00329{left:233.919453pt;}
.x1e_c00329{left:243.839333pt;}
.x17_c00329{left:249.919867pt;}
.x3d_c00329{left:256.960000pt;}
.x18_c00329{left:263.679200pt;}
.x2b_c00329{left:266.879867pt;}
.x37_c00329{left:271.999453pt;}
.xd_c00329{left:279.679733pt;}
.x20_c00329{left:284.799320pt;}
.x38_c00329{left:288.638667pt;}
.xe_c00329{left:293.119587pt;}
.x21_c00329{left:302.399453pt;}
.x5_c00329{left:327.999067pt;}
.x6_c00329{left:346.558507pt;}
.x2c_c00329{left:357.758787pt;}
.xf_c00329{left:362.559040pt;}
.x19_c00329{left:372.799840pt;}
.x2d_c00329{left:379.199707pt;}
.x10_c00329{left:381.439453pt;}
.x1a_c00329{left:399.679733pt;}
.x2e_c00329{left:414.719200pt;}
.x3e_c00329{left:427.839840pt;}
.x11_c00329{left:438.399867pt;}
.x3f_c00329{left:439.999467pt;}
.x12_c00329{left:456.000000pt;}
.x22_c00329{left:513.919840pt;}
.x2f_c00329{left:522.238773pt;}
.x13_c00329{left:528.319333pt;}
.x23_c00329{left:533.759720pt;}
.x7_c00329{left:544.639200pt;}
.x14_c00329{left:549.439453pt;}
.x30_c00329{left:552.000000pt;}
.x8_c00329{left:558.719200pt;}
.x39_c00329{left:584.958907pt;}
.x31_c00329{left:591.679733pt;}
.x34_c00329{left:592.639200pt;}
.x3_c00329{left:598.079587pt;}
.x35_c00329{left:606.399867pt;}
.x4_c00329{left:609.919840pt;}
.x15_c00329{left:614.399453pt;}
.x9_c00329{left:623.039067pt;}
.x32_c00329{left:631.999467pt;}
.x3a_c00329{left:634.879307pt;}
.xa_c00329{left:646.719720pt;}
.x3b_c00329{left:662.718787pt;}
.x16_c00329{left:674.879840pt;}
.x3c_c00329{left:676.798787pt;}
.x33_c00329{left:678.399867pt;}
.x36_c00329{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b1adc44171980b8b1d59d12.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_0deae854f8da84cf9f7525fa.woff2')format("woff");}.ff2_c00330{font-family:ff2_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:ff3_c00330;src:url('chunks/assets/font_750a84335783514a73ed4e09.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_58d4cc4f9b4a4c98dedf6d4a.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_c937dc9e1f825721e4bac5c2.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00330{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m13_c00330{transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m25_c00330{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mf_c00330{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00330{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{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_c00330{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m1f_c00330{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m1a_c00330{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m19_c00330{transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);}
.m23_c00330{transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);}
.m18_c00330{transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);}
.m14_c00330{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.m1d_c00330{transform:matrix(0.335227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335227,0.000000,0.000000,0.250000,0,0);}
.m21_c00330{transform:matrix(0.350806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350806,0.000000,0.000000,0.250000,0,0);}
.m1b_c00330{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m1e_c00330{transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394737,0.000000,0.000000,0.250000,0,0);}
.m24_c00330{transform:matrix(0.401786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401786,0.000000,0.000000,0.250000,0,0);}
.m22_c00330{transform:matrix(0.424528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424528,0.000000,0.000000,0.250000,0,0);}
.m16_c00330{transform:matrix(0.451087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451087,0.000000,0.000000,0.250000,0,0);}
.m12_c00330{transform:matrix(0.467949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467949,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{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);}
.m17_c00330{transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477273,0.000000,0.000000,0.250000,0,0);}
.m20_c00330{transform:matrix(0.493902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493902,0.000000,0.000000,0.250000,0,0);}
.m1c_c00330{transform:matrix(0.527174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527174,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls11_c00330{letter-spacing:-13.121693px;}
.ls12_c00330{letter-spacing:-12.067500px;}
.ls14_c00330{letter-spacing:-11.563425px;}
.ls0_c00330{letter-spacing:-10.561703px;}
.lsb_c00330{letter-spacing:-8.914500px;}
.lsd_c00330{letter-spacing:-8.175038px;}
.ls20_c00330{letter-spacing:-6.758895px;}
.lsc_c00330{letter-spacing:-6.685875px;}
.ls3_c00330{letter-spacing:-6.160478px;}
.ls2b_c00330{letter-spacing:-6.000300px;}
.ls13_c00330{letter-spacing:-5.945625px;}
.ls4_c00330{letter-spacing:-5.196713px;}
.ls15_c00330{letter-spacing:-5.109375px;}
.ls25_c00330{letter-spacing:-4.554075px;}
.lsf_c00330{letter-spacing:-4.456463px;}
.lsa_c00330{letter-spacing:-4.334498px;}
.ls6_c00330{letter-spacing:-3.717000px;}
.ls1_c00330{letter-spacing:-2.968875px;}
.ls7_c00330{letter-spacing:-2.229413px;}
.ls8_c00330{letter-spacing:-2.224028px;}
.ls1f_c00330{letter-spacing:-2.079473px;}
.ls10_c00330{letter-spacing:-1.500000px;}
.ls2_c00330{letter-spacing:-1.489163px;}
.ls28_c00330{letter-spacing:-1.323278px;}
.ls5_c00330{letter-spacing:-0.740250px;}
.ls23_c00330{letter-spacing:-0.474098px;}
.ls1a_c00330{letter-spacing:-0.396000px;}
.ls9_c00330{letter-spacing:0.000000px;}
.ls27_c00330{letter-spacing:1.069035px;}
.ls22_c00330{letter-spacing:1.502550px;}
.ls17_c00330{letter-spacing:3.205800px;}
.lse_c00330{letter-spacing:3.637710px;}
.ls29_c00330{letter-spacing:5.127750px;}
.ls24_c00330{letter-spacing:5.604525px;}
.ls2a_c00330{letter-spacing:6.306052px;}
.ls1e_c00330{letter-spacing:8.150040px;}
.ls19_c00330{letter-spacing:9.176018px;}
.ls1d_c00330{letter-spacing:9.358875px;}
.ls1b_c00330{letter-spacing:10.212900px;}
.ls26_c00330{letter-spacing:10.512225px;}
.ls21_c00330{letter-spacing:12.305370px;}
.ls1c_c00330{letter-spacing:17.018550px;}
.ls16_c00330{letter-spacing:18.722175px;}
.ls18_c00330{letter-spacing:24.681150px;}
.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;}
._17_c00330{margin-left:-11.481393px;}
._1a_c00330{margin-left:-9.757615px;}
._19_c00330{margin-left:-8.639989px;}
._11_c00330{margin-left:-7.223856px;}
._18_c00330{margin-left:-5.632943px;}
._1b_c00330{margin-left:-4.328977px;}
._10_c00330{margin-left:-2.614797px;}
._f_c00330{margin-left:-1.425672px;}
._9_c00330{width:1.973772px;}
._e_c00330{width:3.232242px;}
._6_c00330{width:4.488022px;}
._d_c00330{width:5.749894px;}
._8_c00330{width:6.819631px;}
._c_c00330{width:8.708814px;}
._7_c00330{width:10.167041px;}
._b_c00330{width:11.675564px;}
._a_c00330{width:13.412655px;}
._4_c00330{width:15.175571px;}
._14_c00330{width:16.522077px;}
._12_c00330{width:19.315978px;}
._5_c00330{width:21.168297px;}
._3_c00330{width:22.801082px;}
._0_c00330{width:24.396364px;}
._15_c00330{width:26.189159px;}
._1_c00330{width:27.428863px;}
._2_c00330{width:28.584942px;}
._16_c00330{width:29.878151px;}
._13_c00330{width:31.862725px;}
.fc0_c00330{color:transparent;}
.fsc_c00330{font-size:29.250000px;}
.fsd_c00330{font-size:30.000000px;}
.fs14_c00330{font-size:30.750000px;}
.fsf_c00330{font-size:33.000000px;}
.fse_c00330{font-size:34.500000px;}
.fs11_c00330{font-size:36.000000px;}
.fs16_c00330{font-size:39.750000px;}
.fs17_c00330{font-size:42.000000px;}
.fs13_c00330{font-size:42.750000px;}
.fsb_c00330{font-size:44.250000px;}
.fs10_c00330{font-size:45.750000px;}
.fs15_c00330{font-size:46.500000px;}
.fs12_c00330{font-size:47.250000px;}
.fs7_c00330{font-size:75.000000px;}
.fs3_c00330{font-size:77.250000px;}
.fs4_c00330{font-size:78.000000px;}
.fs1_c00330{font-size:78.750000px;}
.fs0_c00330{font-size:80.250000px;}
.fs6_c00330{font-size:81.000000px;}
.fs8_c00330{font-size:81.750000px;}
.fs5_c00330{font-size:82.500000px;}
.fs9_c00330{font-size:83.250000px;}
.fs2_c00330{font-size:84.750000px;}
.fsa_c00330{font-size:87.750000px;}
.y0_c00330{bottom:0.000000px;}
.y2d_c00330{bottom:186.477945px;}
.y2e_c00330{bottom:186.478665px;}
.y2c_c00330{bottom:215.639100px;}
.y2b_c00330{bottom:215.640135px;}
.y2a_c00330{bottom:245.159655px;}
.y29_c00330{bottom:275.039385px;}
.y28_c00330{bottom:275.040270px;}
.y27_c00330{bottom:304.920000px;}
.y26_c00330{bottom:363.600450px;}
.y25_c00330{bottom:393.119985px;}
.y23_c00330{bottom:422.278800px;}
.y20_c00330{bottom:422.998950px;}
.y21_c00330{bottom:423.180135px;}
.y22_c00330{bottom:423.539385px;}
.y24_c00330{bottom:424.259535px;}
.y1f_c00330{bottom:429.119385px;}
.y1d_c00330{bottom:453.599625px;}
.y1e_c00330{bottom:453.599670px;}
.y1c_c00330{bottom:483.839535px;}
.y1b_c00330{bottom:513.359865px;}
.y1a_c00330{bottom:543.239595px;}
.y19_c00330{bottom:572.398635px;}
.y18_c00330{bottom:572.398800px;}
.y17_c00330{bottom:602.278515px;}
.y16_c00330{bottom:631.439670px;}
.y15_c00330{bottom:631.439940px;}
.y14_c00330{bottom:691.199385px;}
.y13_c00330{bottom:721.079385px;}
.y12_c00330{bottom:752.039985px;}
.y11_c00330{bottom:781.198740px;}
.y10_c00330{bottom:811.438665px;}
.yf_c00330{bottom:811.439460px;}
.ye_c00330{bottom:841.319190px;}
.yd_c00330{bottom:841.320075px;}
.yc_c00330{bottom:871.199805px;}
.yb_c00330{bottom:871.200390px;}
.ya_c00330{bottom:900.719925px;}
.y9_c00330{bottom:930.239460px;}
.y8_c00330{bottom:960.479370px;}
.y7_c00330{bottom:989.998905px;}
.y6_c00330{bottom:1049.399235px;}
.y5_c00330{bottom:1049.399370px;}
.y4_c00330{bottom:1079.639280px;}
.y2_c00330{bottom:1109.158740px;}
.y3_c00330{bottom:1109.158815px;}
.y1_c00330{bottom:1138.680090px;}
.hf_c00330{height:30.506836px;}
.h1a_c00330{height:30.990234px;}
.h10_c00330{height:31.289062px;}
.h17_c00330{height:33.257812px;}
.h12_c00330{height:34.417969px;}
.h16_c00330{height:34.769531px;}
.h11_c00330{height:35.982422px;}
.h14_c00330{height:37.546875px;}
.h1d_c00330{height:39.284180px;}
.h1c_c00330{height:40.060547px;}
.h1e_c00330{height:42.328125px;}
.h19_c00330{height:43.083984px;}
.he_c00330{height:46.151367px;}
.h18_c00330{height:46.696289px;}
.h15_c00330{height:47.619141px;}
.h13_c00330{height:47.715820px;}
.h1b_c00330{height:48.498047px;}
.ha_c00330{height:74.121094px;}
.h8_c00330{height:75.585938px;}
.h4_c00330{height:75.816650px;}
.h5_c00330{height:76.552734px;}
.h2_c00330{height:77.288818px;}
.h1_c00330{height:78.760986px;}
.h7_c00330{height:79.497070px;}
.hc_c00330{height:80.233154px;}
.h9_c00330{height:80.791992px;}
.h6_c00330{height:80.969238px;}
.hb_c00330{height:82.274414px;}
.h3_c00330{height:83.177490px;}
.hd_c00330{height:86.121826px;}
.h0_c00330{height:1263.000000px;}
.w0_c00330{width:892.500000px;}
.x0_c00330{left:0.000000px;}
.x15_c00330{left:135.360255px;}
.x1_c00330{left:136.438665px;}
.x1f_c00330{left:148.679700px;}
.xa_c00330{left:159.119415px;}
.x26_c00330{left:160.559685px;}
.x34_c00330{left:161.639100px;}
.x2_c00330{left:165.599100px;}
.x1a_c00330{left:169.199850px;}
.x27_c00330{left:181.080000px;}
.x20_c00330{left:190.079400px;}
.x21_c00330{left:204.479250px;}
.x32_c00330{left:213.839535px;}
.xd_c00330{left:221.039400px;}
.x5_c00330{left:222.118785px;}
.x33_c00330{left:230.399850px;}
.xe_c00330{left:236.518635px;}
.x35_c00330{left:241.198785px;}
.x28_c00330{left:244.438635px;}
.x6_c00330{left:247.678500px;}
.x24_c00330{left:249.838950px;}
.x29_c00330{left:266.399250px;}
.x16_c00330{left:287.278800px;}
.x17_c00330{left:307.439685px;}
.x2a_c00330{left:334.439685px;}
.x30_c00330{left:335.519100px;}
.x3_c00330{left:350.279850px;}
.x4_c00330{left:374.399235px;}
.x18_c00330{left:392.759085px;}
.x2b_c00330{left:400.319820px;}
.x1d_c00330{left:420.119985px;}
.x1e_c00330{left:433.799565px;}
.x36_c00330{left:441.719565px;}
.x19_c00330{left:449.998950px;}
.x37_c00330{left:455.758530px;}
.x1b_c00330{left:460.079400px;}
.x22_c00330{left:473.038920px;}
.x1c_c00330{left:482.399235px;}
.x38_c00330{left:484.918950px;}
.x23_c00330{left:492.838950px;}
.xb_c00330{left:496.439670px;}
.x39_c00330{left:499.318770px;}
.x11_c00330{left:515.878920px;}
.xc_c00330{left:520.199850px;}
.x12_c00330{left:544.678530px;}
.x2c_c00330{left:553.679670px;}
.x3a_c00330{left:571.678530px;}
.x3b_c00330{left:586.798515px;}
.x2d_c00330{left:593.639100px;}
.xf_c00330{left:636.119985px;}
.x7_c00330{left:642.599670px;}
.x10_c00330{left:651.599070px;}
.x8_c00330{left:657.358605px;}
.x2e_c00330{left:659.519070px;}
.x25_c00330{left:690.479235px;}
.x13_c00330{left:702.359250px;}
.x2f_c00330{left:715.318770px;}
.x14_c00330{left:716.399820px;}
.x31_c00330{left:717.479235px;}
.x9_c00330{left:719.278800px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls11_c00330{letter-spacing:-11.663727pt;}
.ls12_c00330{letter-spacing:-10.726667pt;}
.ls14_c00330{letter-spacing:-10.278600pt;}
.ls0_c00330{letter-spacing:-9.388180pt;}
.lsb_c00330{letter-spacing:-7.924000pt;}
.lsd_c00330{letter-spacing:-7.266700pt;}
.ls20_c00330{letter-spacing:-6.007907pt;}
.lsc_c00330{letter-spacing:-5.943000pt;}
.ls3_c00330{letter-spacing:-5.475980pt;}
.ls2b_c00330{letter-spacing:-5.333600pt;}
.ls13_c00330{letter-spacing:-5.285000pt;}
.ls4_c00330{letter-spacing:-4.619300pt;}
.ls15_c00330{letter-spacing:-4.541667pt;}
.ls25_c00330{letter-spacing:-4.048067pt;}
.lsf_c00330{letter-spacing:-3.961300pt;}
.lsa_c00330{letter-spacing:-3.852887pt;}
.ls6_c00330{letter-spacing:-3.304000pt;}
.ls1_c00330{letter-spacing:-2.639000pt;}
.ls7_c00330{letter-spacing:-1.981700pt;}
.ls8_c00330{letter-spacing:-1.976913pt;}
.ls1f_c00330{letter-spacing:-1.848420pt;}
.ls10_c00330{letter-spacing:-1.333333pt;}
.ls2_c00330{letter-spacing:-1.323700pt;}
.ls28_c00330{letter-spacing:-1.176247pt;}
.ls5_c00330{letter-spacing:-0.658000pt;}
.ls23_c00330{letter-spacing:-0.421420pt;}
.ls1a_c00330{letter-spacing:-0.352000pt;}
.ls9_c00330{letter-spacing:0.000000pt;}
.ls27_c00330{letter-spacing:0.950253pt;}
.ls22_c00330{letter-spacing:1.335600pt;}
.ls17_c00330{letter-spacing:2.849600pt;}
.lse_c00330{letter-spacing:3.233520pt;}
.ls29_c00330{letter-spacing:4.558000pt;}
.ls24_c00330{letter-spacing:4.981800pt;}
.ls2a_c00330{letter-spacing:5.605380pt;}
.ls1e_c00330{letter-spacing:7.244480pt;}
.ls19_c00330{letter-spacing:8.156460pt;}
.ls1d_c00330{letter-spacing:8.319000pt;}
.ls1b_c00330{letter-spacing:9.078133pt;}
.ls26_c00330{letter-spacing:9.344200pt;}
.ls21_c00330{letter-spacing:10.938107pt;}
.ls1c_c00330{letter-spacing:15.127600pt;}
.ls16_c00330{letter-spacing:16.641933pt;}
.ls18_c00330{letter-spacing:21.938800pt;}
.ws0_c00330{word-spacing:0.000000pt;}
._17_c00330{margin-left:-10.205683pt;}
._1a_c00330{margin-left:-8.673436pt;}
._19_c00330{margin-left:-7.679991pt;}
._11_c00330{margin-left:-6.421206pt;}
._18_c00330{margin-left:-5.007060pt;}
._1b_c00330{margin-left:-3.847979pt;}
._10_c00330{margin-left:-2.324264pt;}
._f_c00330{margin-left:-1.267264pt;}
._9_c00330{width:1.754464pt;}
._e_c00330{width:2.873104pt;}
._6_c00330{width:3.989353pt;}
._d_c00330{width:5.111017pt;}
._8_c00330{width:6.061894pt;}
._c_c00330{width:7.741168pt;}
._7_c00330{width:9.037370pt;}
._b_c00330{width:10.378279pt;}
._a_c00330{width:11.922360pt;}
._4_c00330{width:13.489396pt;}
._14_c00330{width:14.686291pt;}
._12_c00330{width:17.169758pt;}
._5_c00330{width:18.816264pt;}
._3_c00330{width:20.267628pt;}
._0_c00330{width:21.685657pt;}
._15_c00330{width:23.279253pt;}
._1_c00330{width:24.381211pt;}
._2_c00330{width:25.408838pt;}
._16_c00330{width:26.558357pt;}
._13_c00330{width:28.322423pt;}
.fsc_c00330{font-size:26.000000pt;}
.fsd_c00330{font-size:26.666667pt;}
.fs14_c00330{font-size:27.333333pt;}
.fsf_c00330{font-size:29.333333pt;}
.fse_c00330{font-size:30.666667pt;}
.fs11_c00330{font-size:32.000000pt;}
.fs16_c00330{font-size:35.333333pt;}
.fs17_c00330{font-size:37.333333pt;}
.fs13_c00330{font-size:38.000000pt;}
.fsb_c00330{font-size:39.333333pt;}
.fs10_c00330{font-size:40.666667pt;}
.fs15_c00330{font-size:41.333333pt;}
.fs12_c00330{font-size:42.000000pt;}
.fs7_c00330{font-size:66.666667pt;}
.fs3_c00330{font-size:68.666667pt;}
.fs4_c00330{font-size:69.333333pt;}
.fs1_c00330{font-size:70.000000pt;}
.fs0_c00330{font-size:71.333333pt;}
.fs6_c00330{font-size:72.000000pt;}
.fs8_c00330{font-size:72.666667pt;}
.fs5_c00330{font-size:73.333333pt;}
.fs9_c00330{font-size:74.000000pt;}
.fs2_c00330{font-size:75.333333pt;}
.fsa_c00330{font-size:78.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y2d_c00330{bottom:165.758173pt;}
.y2e_c00330{bottom:165.758813pt;}
.y2c_c00330{bottom:191.679200pt;}
.y2b_c00330{bottom:191.680120pt;}
.y2a_c00330{bottom:217.919693pt;}
.y29_c00330{bottom:244.479453pt;}
.y28_c00330{bottom:244.480240pt;}
.y27_c00330{bottom:271.040000pt;}
.y26_c00330{bottom:323.200400pt;}
.y25_c00330{bottom:349.439987pt;}
.y23_c00330{bottom:375.358933pt;}
.y20_c00330{bottom:375.999067pt;}
.y21_c00330{bottom:376.160120pt;}
.y22_c00330{bottom:376.479453pt;}
.y24_c00330{bottom:377.119587pt;}
.y1f_c00330{bottom:381.439453pt;}
.y1d_c00330{bottom:403.199667pt;}
.y1e_c00330{bottom:403.199707pt;}
.y1c_c00330{bottom:430.079587pt;}
.y1b_c00330{bottom:456.319880pt;}
.y1a_c00330{bottom:482.879640pt;}
.y19_c00330{bottom:508.798787pt;}
.y18_c00330{bottom:508.798933pt;}
.y17_c00330{bottom:535.358680pt;}
.y16_c00330{bottom:561.279707pt;}
.y15_c00330{bottom:561.279947pt;}
.y14_c00330{bottom:614.399453pt;}
.y13_c00330{bottom:640.959453pt;}
.y12_c00330{bottom:668.479987pt;}
.y11_c00330{bottom:694.398880pt;}
.y10_c00330{bottom:721.278813pt;}
.yf_c00330{bottom:721.279520pt;}
.ye_c00330{bottom:747.839280pt;}
.yd_c00330{bottom:747.840067pt;}
.yc_c00330{bottom:774.399827pt;}
.yb_c00330{bottom:774.400347pt;}
.ya_c00330{bottom:800.639933pt;}
.y9_c00330{bottom:826.879520pt;}
.y8_c00330{bottom:853.759440pt;}
.y7_c00330{bottom:879.999027pt;}
.y6_c00330{bottom:932.799320pt;}
.y5_c00330{bottom:932.799440pt;}
.y4_c00330{bottom:959.679360pt;}
.y2_c00330{bottom:985.918880pt;}
.y3_c00330{bottom:985.918947pt;}
.y1_c00330{bottom:1012.160080pt;}
.hf_c00330{height:27.117188pt;}
.h1a_c00330{height:27.546875pt;}
.h10_c00330{height:27.812500pt;}
.h17_c00330{height:29.562500pt;}
.h12_c00330{height:30.593750pt;}
.h16_c00330{height:30.906250pt;}
.h11_c00330{height:31.984375pt;}
.h14_c00330{height:33.375000pt;}
.h1d_c00330{height:34.919271pt;}
.h1c_c00330{height:35.609375pt;}
.h1e_c00330{height:37.625000pt;}
.h19_c00330{height:38.296875pt;}
.he_c00330{height:41.023438pt;}
.h18_c00330{height:41.507812pt;}
.h15_c00330{height:42.328125pt;}
.h13_c00330{height:42.414062pt;}
.h1b_c00330{height:43.109375pt;}
.ha_c00330{height:65.885417pt;}
.h8_c00330{height:67.187500pt;}
.h4_c00330{height:67.392578pt;}
.h5_c00330{height:68.046875pt;}
.h2_c00330{height:68.701172pt;}
.h1_c00330{height:70.009766pt;}
.h7_c00330{height:70.664062pt;}
.hc_c00330{height:71.318359pt;}
.h9_c00330{height:71.815104pt;}
.h6_c00330{height:71.972656pt;}
.hb_c00330{height:73.132813pt;}
.h3_c00330{height:73.935547pt;}
.hd_c00330{height:76.552734pt;}
.h0_c00330{height:1122.666667pt;}
.w0_c00330{width:793.333333pt;}
.x0_c00330{left:0.000000pt;}
.x15_c00330{left:120.320227pt;}
.x1_c00330{left:121.278813pt;}
.x1f_c00330{left:132.159733pt;}
.xa_c00330{left:141.439480pt;}
.x26_c00330{left:142.719720pt;}
.x34_c00330{left:143.679200pt;}
.x2_c00330{left:147.199200pt;}
.x1a_c00330{left:150.399867pt;}
.x27_c00330{left:160.960000pt;}
.x20_c00330{left:168.959467pt;}
.x21_c00330{left:181.759333pt;}
.x32_c00330{left:190.079587pt;}
.xd_c00330{left:196.479467pt;}
.x5_c00330{left:197.438920pt;}
.x33_c00330{left:204.799867pt;}
.xe_c00330{left:210.238787pt;}
.x35_c00330{left:214.398920pt;}
.x28_c00330{left:217.278787pt;}
.x6_c00330{left:220.158667pt;}
.x24_c00330{left:222.079067pt;}
.x29_c00330{left:236.799333pt;}
.x16_c00330{left:255.358933pt;}
.x17_c00330{left:273.279720pt;}
.x2a_c00330{left:297.279720pt;}
.x30_c00330{left:298.239200pt;}
.x3_c00330{left:311.359867pt;}
.x4_c00330{left:332.799320pt;}
.x18_c00330{left:349.119187pt;}
.x2b_c00330{left:355.839840pt;}
.x1d_c00330{left:373.439987pt;}
.x1e_c00330{left:385.599613pt;}
.x36_c00330{left:392.639613pt;}
.x19_c00330{left:399.999067pt;}
.x37_c00330{left:405.118693pt;}
.x1b_c00330{left:408.959467pt;}
.x22_c00330{left:420.479040pt;}
.x1c_c00330{left:428.799320pt;}
.x38_c00330{left:431.039067pt;}
.x23_c00330{left:438.079067pt;}
.xb_c00330{left:441.279707pt;}
.x39_c00330{left:443.838907pt;}
.x11_c00330{left:458.559040pt;}
.xc_c00330{left:462.399867pt;}
.x12_c00330{left:484.158693pt;}
.x2c_c00330{left:492.159707pt;}
.x3a_c00330{left:508.158693pt;}
.x3b_c00330{left:521.598680pt;}
.x2d_c00330{left:527.679200pt;}
.xf_c00330{left:565.439987pt;}
.x7_c00330{left:571.199707pt;}
.x10_c00330{left:579.199173pt;}
.x8_c00330{left:584.318760pt;}
.x2e_c00330{left:586.239173pt;}
.x25_c00330{left:613.759320pt;}
.x13_c00330{left:624.319333pt;}
.x2f_c00330{left:635.838907pt;}
.x14_c00330{left:636.799840pt;}
.x31_c00330{left:637.759320pt;}
.x9_c00330{left:639.358933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b985a2f7155339d57484c9c.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;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_36964ec44de992d12f711b04.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00331{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.md_c00331{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls9_c00331{letter-spacing:-14.695200px;}
.ls7_c00331{letter-spacing:-13.723605px;}
.ls2_c00331{letter-spacing:-13.149045px;}
.lsf_c00331{letter-spacing:-12.920250px;}
.ls8_c00331{letter-spacing:-5.945625px;}
.lsc_c00331{letter-spacing:-5.613075px;}
.ls0_c00331{letter-spacing:-5.196713px;}
.ls5_c00331{letter-spacing:-4.456463px;}
.lsb_c00331{letter-spacing:-3.717000px;}
.ls3_c00331{letter-spacing:-2.968875px;}
.ls1_c00331{letter-spacing:-2.229413px;}
.lsd_c00331{letter-spacing:-2.100000px;}
.ls4_c00331{letter-spacing:-1.489163px;}
.ls11_c00331{letter-spacing:-0.740250px;}
.ls6_c00331{letter-spacing:0.000000px;}
.lse_c00331{letter-spacing:0.796365px;}
.lsa_c00331{letter-spacing:1.531875px;}
.ls10_c00331{letter-spacing:7.809975px;}
.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;}
._6_c00331{margin-left:-7.400271px;}
._b_c00331{margin-left:-6.218561px;}
._5_c00331{margin-left:-2.517593px;}
._7_c00331{margin-left:-1.184757px;}
._4_c00331{width:1.395450px;}
._2_c00331{width:3.073196px;}
._a_c00331{width:4.729992px;}
._0_c00331{width:5.801617px;}
._3_c00331{width:7.324597px;}
._8_c00331{width:9.344297px;}
._d_c00331{width:10.981093px;}
._1_c00331{width:12.857661px;}
._9_c00331{width:14.683502px;}
._c_c00331{width:16.322052px;}
._10_c00331{width:17.870931px;}
._e_c00331{width:20.363130px;}
._f_c00331{width:21.464635px;}
.fc0_c00331{color:transparent;}
.fs4_c00331{font-size:71.250000px;}
.fs3_c00331{font-size:72.000000px;}
.fs6_c00331{font-size:75.000000px;}
.fs5_c00331{font-size:75.750000px;}
.fs9_c00331{font-size:76.500000px;}
.fs7_c00331{font-size:77.250000px;}
.fs8_c00331{font-size:78.000000px;}
.fs0_c00331{font-size:78.750000px;}
.fsa_c00331{font-size:80.250000px;}
.fs2_c00331{font-size:82.500000px;}
.fs1_c00331{font-size:85.500000px;}
.y0_c00331{bottom:0.000000px;}
.yf_c00331{bottom:865.441200px;}
.ye_c00331{bottom:895.320930px;}
.yd_c00331{bottom:924.840540px;}
.yc_c00331{bottom:924.841395px;}
.yb_c00331{bottom:955.081305px;}
.ya_c00331{bottom:984.961035px;}
.y9_c00331{bottom:984.961080px;}
.y7_c00331{bottom:1015.200240px;}
.y8_c00331{bottom:1015.200990px;}
.y6_c00331{bottom:1045.079955px;}
.y5_c00331{bottom:1045.080855px;}
.y4_c00331{bottom:1074.960570px;}
.y3_c00331{bottom:1103.760135px;}
.y2_c00331{bottom:1103.761020px;}
.y1_c00331{bottom:1133.640750px;}
.h5_c00331{height:69.927979px;}
.h7_c00331{height:73.608398px;}
.h6_c00331{height:74.344482px;}
.ha_c00331{height:75.080566px;}
.h4_c00331{height:75.093750px;}
.hc_c00331{height:75.778931px;}
.h8_c00331{height:75.816650px;}
.h9_c00331{height:76.552734px;}
.h1_c00331{height:77.288818px;}
.hb_c00331{height:78.760986px;}
.h3_c00331{height:80.969238px;}
.h2_c00331{height:84.498047px;}
.h0_c00331{height:1263.000000px;}
.w0_c00331{width:892.500000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:135.000000px;}
.x9_c00331{left:194.039400px;}
.x2_c00331{left:323.639100px;}
.x3_c00331{left:343.798515px;}
.xf_c00331{left:352.799535px;}
.x10_c00331{left:366.479235px;}
.x19_c00331{left:414.358665px;}
.x1a_c00331{left:431.279850px;}
.x13_c00331{left:472.679670px;}
.xa_c00331{left:474.838530px;}
.x11_c00331{left:478.439250px;}
.x12_c00331{left:491.398635px;}
.x14_c00331{left:492.479685px;}
.xb_c00331{left:493.559100px;}
.xc_c00331{left:577.439670px;}
.x17_c00331{left:598.678530px;}
.x18_c00331{left:622.799520px;}
.xd_c00331{left:637.919535px;}
.x4_c00331{left:667.080000px;}
.x1b_c00331{left:673.198785px;}
.xe_c00331{left:675.000000px;}
.x5_c00331{left:681.838950px;}
.x1c_c00331{left:690.479235px;}
.x6_c00331{left:702.359250px;}
.x1d_c00331{left:719.639700px;}
.x7_c00331{left:728.279850px;}
.x15_c00331{left:731.158770px;}
.x16_c00331{left:747.359850px;}
.x8_c00331{left:752.399235px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls9_c00331{letter-spacing:-13.062400pt;}
.ls7_c00331{letter-spacing:-12.198760pt;}
.ls2_c00331{letter-spacing:-11.688040pt;}
.lsf_c00331{letter-spacing:-11.484667pt;}
.ls8_c00331{letter-spacing:-5.285000pt;}
.lsc_c00331{letter-spacing:-4.989400pt;}
.ls0_c00331{letter-spacing:-4.619300pt;}
.ls5_c00331{letter-spacing:-3.961300pt;}
.lsb_c00331{letter-spacing:-3.304000pt;}
.ls3_c00331{letter-spacing:-2.639000pt;}
.ls1_c00331{letter-spacing:-1.981700pt;}
.lsd_c00331{letter-spacing:-1.866667pt;}
.ls4_c00331{letter-spacing:-1.323700pt;}
.ls11_c00331{letter-spacing:-0.658000pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.lse_c00331{letter-spacing:0.707880pt;}
.lsa_c00331{letter-spacing:1.361667pt;}
.ls10_c00331{letter-spacing:6.942200pt;}
.ws0_c00331{word-spacing:0.000000pt;}
._6_c00331{margin-left:-6.578019pt;}
._b_c00331{margin-left:-5.527609pt;}
._5_c00331{margin-left:-2.237860pt;}
._7_c00331{margin-left:-1.053117pt;}
._4_c00331{width:1.240400pt;}
._2_c00331{width:2.731730pt;}
._a_c00331{width:4.204438pt;}
._0_c00331{width:5.156992pt;}
._3_c00331{width:6.510753pt;}
._8_c00331{width:8.306042pt;}
._d_c00331{width:9.760972pt;}
._1_c00331{width:11.429032pt;}
._9_c00331{width:13.052002pt;}
._c_c00331{width:14.508491pt;}
._10_c00331{width:15.885272pt;}
._e_c00331{width:18.100560pt;}
._f_c00331{width:19.079675pt;}
.fs4_c00331{font-size:63.333333pt;}
.fs3_c00331{font-size:64.000000pt;}
.fs6_c00331{font-size:66.666667pt;}
.fs5_c00331{font-size:67.333333pt;}
.fs9_c00331{font-size:68.000000pt;}
.fs7_c00331{font-size:68.666667pt;}
.fs8_c00331{font-size:69.333333pt;}
.fs0_c00331{font-size:70.000000pt;}
.fsa_c00331{font-size:71.333333pt;}
.fs2_c00331{font-size:73.333333pt;}
.fs1_c00331{font-size:76.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.yf_c00331{bottom:769.281067pt;}
.ye_c00331{bottom:795.840827pt;}
.yd_c00331{bottom:822.080480pt;}
.yc_c00331{bottom:822.081240pt;}
.yb_c00331{bottom:848.961160pt;}
.ya_c00331{bottom:875.520920pt;}
.y9_c00331{bottom:875.520960pt;}
.y7_c00331{bottom:902.400213pt;}
.y8_c00331{bottom:902.400880pt;}
.y6_c00331{bottom:928.959960pt;}
.y5_c00331{bottom:928.960760pt;}
.y4_c00331{bottom:955.520507pt;}
.y3_c00331{bottom:981.120120pt;}
.y2_c00331{bottom:981.120907pt;}
.y1_c00331{bottom:1007.680667pt;}
.h5_c00331{height:62.158203pt;}
.h7_c00331{height:65.429688pt;}
.h6_c00331{height:66.083984pt;}
.ha_c00331{height:66.738281pt;}
.h4_c00331{height:66.750000pt;}
.hc_c00331{height:67.359049pt;}
.h8_c00331{height:67.392578pt;}
.h9_c00331{height:68.046875pt;}
.h1_c00331{height:68.701172pt;}
.hb_c00331{height:70.009766pt;}
.h3_c00331{height:71.972656pt;}
.h2_c00331{height:75.109375pt;}
.h0_c00331{height:1122.666667pt;}
.w0_c00331{width:793.333333pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:120.000000pt;}
.x9_c00331{left:172.479467pt;}
.x2_c00331{left:287.679200pt;}
.x3_c00331{left:305.598680pt;}
.xf_c00331{left:313.599587pt;}
.x10_c00331{left:325.759320pt;}
.x19_c00331{left:368.318813pt;}
.x1a_c00331{left:383.359867pt;}
.x13_c00331{left:420.159707pt;}
.xa_c00331{left:422.078693pt;}
.x11_c00331{left:425.279333pt;}
.x12_c00331{left:436.798787pt;}
.x14_c00331{left:437.759720pt;}
.xb_c00331{left:438.719200pt;}
.xc_c00331{left:513.279707pt;}
.x17_c00331{left:532.158693pt;}
.x18_c00331{left:553.599573pt;}
.xd_c00331{left:567.039587pt;}
.x4_c00331{left:592.960000pt;}
.x1b_c00331{left:598.398920pt;}
.xe_c00331{left:600.000000pt;}
.x5_c00331{left:606.079067pt;}
.x1c_c00331{left:613.759320pt;}
.x6_c00331{left:624.319333pt;}
.x1d_c00331{left:639.679733pt;}
.x7_c00331{left:647.359867pt;}
.x15_c00331{left:649.918907pt;}
.x16_c00331{left:664.319867pt;}
.x8_c00331{left:668.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e32f89c350da6efbcd862f4.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_19f9c067fd5f287a105895b4.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_9fa35352a87fd9152ccc1aa0.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_2f08ae87c4dc845fef7fc73c.woff2')format("woff");}.ff4_c00332{font-family:ff4_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:ff5_c00332;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00332;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00332{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{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);}
.m32_c00332{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m22_c00332{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m2a_c00332{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.225207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225207,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{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_c00332{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m1f_c00332{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m8_c00332{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m31_c00332{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m24_c00332{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m28_c00332{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m33_c00332{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m1d_c00332{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m26_c00332{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m27_c00332{transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);}
.m21_c00332{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m25_c00332{transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);}
.m1e_c00332{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289634,0.000000,0.000000,0.250000,0,0);}
.m19_c00332{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);}
.m2d_c00332{transform:matrix(0.358108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358108,0.000000,0.000000,0.250000,0,0);}
.m2c_c00332{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m2e_c00332{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);}
.m23_c00332{transform:matrix(0.391129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391129,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.415254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415254,0.000000,0.000000,0.250000,0,0);}
.m18_c00332{transform:matrix(0.465278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465278,0.000000,0.000000,0.250000,0,0);}
.m2f_c00332{transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls14_c00332{letter-spacing:-12.803018px;}
.lsc_c00332{letter-spacing:-12.687675px;}
.ls7_c00332{letter-spacing:-12.487200px;}
.lsd_c00332{letter-spacing:-8.914500px;}
.ls32_c00332{letter-spacing:-8.175038px;}
.ls1d_c00332{letter-spacing:-7.426125px;}
.ls22_c00332{letter-spacing:-7.229250px;}
.ls2e_c00332{letter-spacing:-7.211625px;}
.ls1_c00332{letter-spacing:-6.812910px;}
.ls15_c00332{letter-spacing:-5.945625px;}
.ls34_c00332{letter-spacing:-5.247533px;}
.lsa_c00332{letter-spacing:-5.196713px;}
.ls29_c00332{letter-spacing:-4.765950px;}
.ls12_c00332{letter-spacing:-4.456463px;}
.ls19_c00332{letter-spacing:-4.378500px;}
.ls0_c00332{letter-spacing:-4.161600px;}
.ls24_c00332{letter-spacing:-3.985200px;}
.lsf_c00332{letter-spacing:-3.717000px;}
.ls2a_c00332{letter-spacing:-3.673118px;}
.ls33_c00332{letter-spacing:-3.575400px;}
.ls1e_c00332{letter-spacing:-3.540000px;}
.ls1a_c00332{letter-spacing:-3.442500px;}
.ls30_c00332{letter-spacing:-3.342300px;}
.ls2_c00332{letter-spacing:-3.057450px;}
.ls1c_c00332{letter-spacing:-2.997000px;}
.ls27_c00332{letter-spacing:-2.970135px;}
.ls9_c00332{letter-spacing:-2.968875px;}
.ls28_c00332{letter-spacing:-2.636250px;}
.ls11_c00332{letter-spacing:-2.464875px;}
.ls4_c00332{letter-spacing:-2.403450px;}
.ls1b_c00332{letter-spacing:-2.230020px;}
.lsb_c00332{letter-spacing:-2.229413px;}
.ls3_c00332{letter-spacing:-1.603118px;}
.ls10_c00332{letter-spacing:-1.489163px;}
.ls21_c00332{letter-spacing:-1.438650px;}
.ls26_c00332{letter-spacing:-1.436850px;}
.ls6_c00332{letter-spacing:-0.778425px;}
.ls17_c00332{letter-spacing:-0.770310px;}
.ls31_c00332{letter-spacing:-0.741600px;}
.lse_c00332{letter-spacing:-0.740250px;}
.ls2f_c00332{letter-spacing:-0.348450px;}
.ls5_c00332{letter-spacing:0.000000px;}
.ls23_c00332{letter-spacing:1.353608px;}
.ls16_c00332{letter-spacing:2.813250px;}
.ls20_c00332{letter-spacing:3.591000px;}
.ls13_c00332{letter-spacing:3.637710px;}
.ls2c_c00332{letter-spacing:4.062600px;}
.ls1f_c00332{letter-spacing:4.433400px;}
.ls25_c00332{letter-spacing:6.014925px;}
.ls2d_c00332{letter-spacing:6.282322px;}
.ls2b_c00332{letter-spacing:7.121700px;}
.ls18_c00332{letter-spacing:17.828213px;}
.ls8_c00332{letter-spacing:26.110500px;}
.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;}
._17_c00332{margin-left:-7.346498px;}
._1c_c00332{margin-left:-6.109588px;}
._f_c00332{margin-left:-3.612025px;}
._16_c00332{margin-left:-2.535497px;}
._1a_c00332{margin-left:-1.165054px;}
._11_c00332{width:1.483591px;}
._0_c00332{width:3.069376px;}
._e_c00332{width:4.480875px;}
._3_c00332{width:5.743772px;}
._c_c00332{width:7.124826px;}
._10_c00332{width:8.403962px;}
._1_c00332{width:9.622648px;}
._b_c00332{width:11.251982px;}
._d_c00332{width:12.289584px;}
._2_c00332{width:13.387903px;}
._18_c00332{width:15.232744px;}
._1d_c00332{width:17.855777px;}
._19_c00332{width:19.012159px;}
._1b_c00332{width:20.208423px;}
._1e_c00332{width:21.665271px;}
._1f_c00332{width:22.844959px;}
._6_c00332{width:23.941144px;}
._a_c00332{width:25.752394px;}
._7_c00332{width:27.328256px;}
._5_c00332{width:28.667348px;}
._4_c00332{width:30.657316px;}
._14_c00332{width:32.374511px;}
._13_c00332{width:33.904000px;}
._15_c00332{width:36.329916px;}
._9_c00332{width:37.658859px;}
._12_c00332{width:41.651261px;}
._8_c00332{width:44.604624px;}
._25_c00332{width:46.919012px;}
._24_c00332{width:47.957383px;}
._21_c00332{width:50.623160px;}
._20_c00332{width:52.683215px;}
._22_c00332{width:54.588965px;}
._23_c00332{width:56.011755px;}
.fc0_c00332{color:transparent;}
.fs21_c00332{font-size:19.500000px;}
.fsc_c00332{font-size:27.000000px;}
.fs1f_c00332{font-size:27.750000px;}
.fse_c00332{font-size:33.750000px;}
.fs10_c00332{font-size:34.500000px;}
.fs11_c00332{font-size:36.000000px;}
.fs20_c00332{font-size:37.500000px;}
.fs15_c00332{font-size:40.500000px;}
.fs13_c00332{font-size:42.000000px;}
.fs14_c00332{font-size:44.250000px;}
.fs17_c00332{font-size:46.500000px;}
.fs16_c00332{font-size:47.250000px;}
.fsd_c00332{font-size:51.750000px;}
.fs1b_c00332{font-size:55.500000px;}
.fs1e_c00332{font-size:60.000000px;}
.fs1d_c00332{font-size:61.500000px;}
.fs1a_c00332{font-size:66.750000px;}
.fsf_c00332{font-size:69.000000px;}
.fs19_c00332{font-size:71.250000px;}
.fs18_c00332{font-size:73.500000px;}
.fs7_c00332{font-size:75.000000px;}
.fs1c_c00332{font-size:75.750000px;}
.fs0_c00332{font-size:76.500000px;}
.fs5_c00332{font-size:77.250000px;}
.fsb_c00332{font-size:78.000000px;}
.fs6_c00332{font-size:78.750000px;}
.fs3_c00332{font-size:80.250000px;}
.fs1_c00332{font-size:81.000000px;}
.fs2_c00332{font-size:81.750000px;}
.fs8_c00332{font-size:82.500000px;}
.fsa_c00332{font-size:83.250000px;}
.fs9_c00332{font-size:84.750000px;}
.fs4_c00332{font-size:90.750000px;}
.fs12_c00332{font-size:101.250000px;}
.y0_c00332{bottom:0.000000px;}
.y25_c00332{bottom:218.518920px;}
.y26_c00332{bottom:218.519685px;}
.y23_c00332{bottom:248.398380px;}
.y24_c00332{bottom:248.398635px;}
.y22_c00332{bottom:277.559535px;}
.y21_c00332{bottom:307.079070px;}
.y20_c00332{bottom:366.480120px;}
.y1f_c00332{bottom:396.359850px;}
.y1d_c00332{bottom:426.238770px;}
.y1e_c00332{bottom:426.958920px;}
.y1c_c00332{bottom:434.519670px;}
.y1b_c00332{bottom:455.399235px;}
.y19_c00332{bottom:485.638845px;}
.y1a_c00332{bottom:485.639100px;}
.y18_c00332{bottom:515.158380px;}
.y17_c00332{bottom:545.398290px;}
.y16_c00332{bottom:574.919625px;}
.y15_c00332{bottom:604.799355px;}
.y14_c00332{bottom:633.960510px;}
.y13_c00332{bottom:663.480030px;}
.y12_c00332{bottom:693.359760px;}
.y11_c00332{bottom:723.599670px;}
.y10_c00332{bottom:783.718530px;}
.ye_c00332{bottom:813.239550px;}
.yf_c00332{bottom:813.239865px;}
.yd_c00332{bottom:842.398590px;}
.yb_c00332{bottom:872.279160px;}
.yc_c00332{bottom:872.279205px;}
.ya_c00332{bottom:902.519070px;}
.y9_c00332{bottom:902.519115px;}
.y8_c00332{bottom:932.759040px;}
.y7_c00332{bottom:932.759925px;}
.y5_c00332{bottom:962.638920px;}
.y6_c00332{bottom:962.639655px;}
.y4_c00332{bottom:992.518635px;}
.y3_c00332{bottom:1022.039985px;}
.y2_c00332{bottom:1081.079400px;}
.y1_c00332{bottom:1140.479640px;}
.h29_c00332{height:20.337891px;}
.h12_c00332{height:27.210938px;}
.h27_c00332{height:28.942383px;}
.h14_c00332{height:33.354492px;}
.h16_c00332{height:35.982422px;}
.h28_c00332{height:37.060547px;}
.h17_c00332{height:37.546875px;}
.h1b_c00332{height:40.025391px;}
.h19_c00332{height:43.804688px;}
.h1a_c00332{height:46.151367px;}
.h1d_c00332{height:48.498047px;}
.h1c_c00332{height:49.280273px;}
.h13_c00332{height:53.973633px;}
.h25_c00332{height:55.933594px;}
.h21_c00332{height:57.884766px;}
.h26_c00332{height:59.296875px;}
.h23_c00332{height:61.980469px;}
.h20_c00332{height:67.271484px;}
.h1f_c00332{height:71.806641px;}
.h15_c00332{height:71.964844px;}
.h9_c00332{height:73.608398px;}
.h1e_c00332{height:74.074219px;}
.h24_c00332{height:74.311523px;}
.h2a_c00332{height:74.344482px;}
.h6_c00332{height:75.816650px;}
.h22_c00332{height:76.341797px;}
.h11_c00332{height:76.552734px;}
.h8_c00332{height:77.288818px;}
.h7_c00332{height:77.853516px;}
.hc_c00332{height:78.760986px;}
.hb_c00332{height:79.365234px;}
.hd_c00332{height:79.497070px;}
.h1_c00332{height:79.787109px;}
.h2b_c00332{height:80.233154px;}
.h4_c00332{height:80.876953px;}
.h10_c00332{height:80.969238px;}
.ha_c00332{height:81.533203px;}
.h2_c00332{height:81.632812px;}
.hf_c00332{height:82.274414px;}
.h3_c00332{height:82.388672px;}
.he_c00332{height:83.177490px;}
.h5_c00332{height:89.686523px;}
.h18_c00332{height:105.600586px;}
.h0_c00332{height:1263.000000px;}
.w0_c00332{width:892.500000px;}
.x0_c00332{left:0.000000px;}
.x1a_c00332{left:140.760540px;}
.x1_c00332{left:141.838950px;}
.x21_c00332{left:158.399250px;}
.x9_c00332{left:166.319250px;}
.x7_c00332{left:167.398665px;}
.x2_c00332{left:192.958350px;}
.x22_c00332{left:202.679700px;}
.x2e_c00332{left:204.479250px;}
.x24_c00332{left:206.998950px;}
.x8_c00332{left:208.798515px;}
.x17_c00332{left:218.878950px;}
.x3_c00332{left:220.319250px;}
.x1b_c00332{left:226.078785px;}
.x2f_c00332{left:227.519100px;}
.x25_c00332{left:228.598500px;}
.x26_c00332{left:237.238785px;}
.x18_c00332{left:245.158785px;}
.x1c_c00332{left:246.599100px;}
.x37_c00332{left:259.558635px;}
.x12_c00332{left:266.758500px;}
.x38_c00332{left:274.678500px;}
.x13_c00332{left:282.959400px;}
.x27_c00332{left:289.439235px;}
.x30_c00332{left:302.398635px;}
.x14_c00332{left:304.199850px;}
.x4_c00332{left:307.798950px;}
.x1d_c00332{left:321.839535px;}
.x1e_c00332{left:340.919535px;}
.x3b_c00332{left:345.599700px;}
.xa_c00332{left:381.239850px;}
.x28_c00332{left:385.918350px;}
.x31_c00332{left:399.599670px;}
.xb_c00332{left:407.158770px;}
.x15_c00332{left:413.999400px;}
.x32_c00332{left:422.639700px;}
.x5_c00332{left:423.719100px;}
.x16_c00332{left:437.759535px;}
.x34_c00332{left:447.479235px;}
.x6_c00332{left:464.759535px;}
.xc_c00332{left:489.958335px;}
.x29_c00332{left:498.239220px;}
.x2a_c00332{left:509.039985px;}
.xd_c00332{left:561.958920px;}
.x2b_c00332{left:587.518620px;}
.x10_c00332{left:601.918350px;}
.x2c_c00332{left:606.239220px;}
.xe_c00332{left:618.119385px;}
.x11_c00332{left:625.678530px;}
.xf_c00332{left:632.159820px;}
.x33_c00332{left:638.998950px;}
.x39_c00332{left:655.559100px;}
.x3a_c00332{left:677.878920px;}
.x1f_c00332{left:704.519670px;}
.x2d_c00332{left:731.878920px;}
.x19_c00332{left:739.798920px;}
.x35_c00332{left:748.798560px;}
.x20_c00332{left:750.238770px;}
.x36_c00332{left:763.559100px;}
.x23_c00332{left:764.999355px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls14_c00332{letter-spacing:-11.380460pt;}
.lsc_c00332{letter-spacing:-11.277933pt;}
.ls7_c00332{letter-spacing:-11.099733pt;}
.lsd_c00332{letter-spacing:-7.924000pt;}
.ls32_c00332{letter-spacing:-7.266700pt;}
.ls1d_c00332{letter-spacing:-6.601000pt;}
.ls22_c00332{letter-spacing:-6.426000pt;}
.ls2e_c00332{letter-spacing:-6.410333pt;}
.ls1_c00332{letter-spacing:-6.055920pt;}
.ls15_c00332{letter-spacing:-5.285000pt;}
.ls34_c00332{letter-spacing:-4.664473pt;}
.lsa_c00332{letter-spacing:-4.619300pt;}
.ls29_c00332{letter-spacing:-4.236400pt;}
.ls12_c00332{letter-spacing:-3.961300pt;}
.ls19_c00332{letter-spacing:-3.892000pt;}
.ls0_c00332{letter-spacing:-3.699200pt;}
.ls24_c00332{letter-spacing:-3.542400pt;}
.lsf_c00332{letter-spacing:-3.304000pt;}
.ls2a_c00332{letter-spacing:-3.264993pt;}
.ls33_c00332{letter-spacing:-3.178133pt;}
.ls1e_c00332{letter-spacing:-3.146667pt;}
.ls1a_c00332{letter-spacing:-3.060000pt;}
.ls30_c00332{letter-spacing:-2.970933pt;}
.ls2_c00332{letter-spacing:-2.717733pt;}
.ls1c_c00332{letter-spacing:-2.664000pt;}
.ls27_c00332{letter-spacing:-2.640120pt;}
.ls9_c00332{letter-spacing:-2.639000pt;}
.ls28_c00332{letter-spacing:-2.343333pt;}
.ls11_c00332{letter-spacing:-2.191000pt;}
.ls4_c00332{letter-spacing:-2.136400pt;}
.ls1b_c00332{letter-spacing:-1.982240pt;}
.lsb_c00332{letter-spacing:-1.981700pt;}
.ls3_c00332{letter-spacing:-1.424993pt;}
.ls10_c00332{letter-spacing:-1.323700pt;}
.ls21_c00332{letter-spacing:-1.278800pt;}
.ls26_c00332{letter-spacing:-1.277200pt;}
.ls6_c00332{letter-spacing:-0.691933pt;}
.ls17_c00332{letter-spacing:-0.684720pt;}
.ls31_c00332{letter-spacing:-0.659200pt;}
.lse_c00332{letter-spacing:-0.658000pt;}
.ls2f_c00332{letter-spacing:-0.309733pt;}
.ls5_c00332{letter-spacing:0.000000pt;}
.ls23_c00332{letter-spacing:1.203207pt;}
.ls16_c00332{letter-spacing:2.500667pt;}
.ls20_c00332{letter-spacing:3.192000pt;}
.ls13_c00332{letter-spacing:3.233520pt;}
.ls2c_c00332{letter-spacing:3.611200pt;}
.ls1f_c00332{letter-spacing:3.940800pt;}
.ls25_c00332{letter-spacing:5.346600pt;}
.ls2d_c00332{letter-spacing:5.584287pt;}
.ls2b_c00332{letter-spacing:6.330400pt;}
.ls18_c00332{letter-spacing:15.847300pt;}
.ls8_c00332{letter-spacing:23.209333pt;}
.ws0_c00332{word-spacing:0.000000pt;}
._17_c00332{margin-left:-6.530221pt;}
._1c_c00332{margin-left:-5.430745pt;}
._f_c00332{margin-left:-3.210689pt;}
._16_c00332{margin-left:-2.253775pt;}
._1a_c00332{margin-left:-1.035604pt;}
._11_c00332{width:1.318747pt;}
._0_c00332{width:2.728334pt;}
._e_c00332{width:3.983000pt;}
._3_c00332{width:5.105575pt;}
._c_c00332{width:6.333179pt;}
._10_c00332{width:7.470189pt;}
._1_c00332{width:8.553465pt;}
._b_c00332{width:10.001762pt;}
._d_c00332{width:10.924075pt;}
._2_c00332{width:11.900358pt;}
._18_c00332{width:13.540217pt;}
._1d_c00332{width:15.871802pt;}
._19_c00332{width:16.899697pt;}
._1b_c00332{width:17.963043pt;}
._1e_c00332{width:19.258019pt;}
._1f_c00332{width:20.306630pt;}
._6_c00332{width:21.281017pt;}
._a_c00332{width:22.891017pt;}
._7_c00332{width:24.291783pt;}
._5_c00332{width:25.482087pt;}
._4_c00332{width:27.250947pt;}
._14_c00332{width:28.777343pt;}
._13_c00332{width:30.136889pt;}
._15_c00332{width:32.293258pt;}
._9_c00332{width:33.474542pt;}
._12_c00332{width:37.023343pt;}
._8_c00332{width:39.648555pt;}
._25_c00332{width:41.705789pt;}
._24_c00332{width:42.628785pt;}
._21_c00332{width:44.998364pt;}
._20_c00332{width:46.829525pt;}
._22_c00332{width:48.523525pt;}
._23_c00332{width:49.788226pt;}
.fs21_c00332{font-size:17.333333pt;}
.fsc_c00332{font-size:24.000000pt;}
.fs1f_c00332{font-size:24.666667pt;}
.fse_c00332{font-size:30.000000pt;}
.fs10_c00332{font-size:30.666667pt;}
.fs11_c00332{font-size:32.000000pt;}
.fs20_c00332{font-size:33.333333pt;}
.fs15_c00332{font-size:36.000000pt;}
.fs13_c00332{font-size:37.333333pt;}
.fs14_c00332{font-size:39.333333pt;}
.fs17_c00332{font-size:41.333333pt;}
.fs16_c00332{font-size:42.000000pt;}
.fsd_c00332{font-size:46.000000pt;}
.fs1b_c00332{font-size:49.333333pt;}
.fs1e_c00332{font-size:53.333333pt;}
.fs1d_c00332{font-size:54.666667pt;}
.fs1a_c00332{font-size:59.333333pt;}
.fsf_c00332{font-size:61.333333pt;}
.fs19_c00332{font-size:63.333333pt;}
.fs18_c00332{font-size:65.333333pt;}
.fs7_c00332{font-size:66.666667pt;}
.fs1c_c00332{font-size:67.333333pt;}
.fs0_c00332{font-size:68.000000pt;}
.fs5_c00332{font-size:68.666667pt;}
.fsb_c00332{font-size:69.333333pt;}
.fs6_c00332{font-size:70.000000pt;}
.fs3_c00332{font-size:71.333333pt;}
.fs1_c00332{font-size:72.000000pt;}
.fs2_c00332{font-size:72.666667pt;}
.fs8_c00332{font-size:73.333333pt;}
.fsa_c00332{font-size:74.000000pt;}
.fs9_c00332{font-size:75.333333pt;}
.fs4_c00332{font-size:80.666667pt;}
.fs12_c00332{font-size:90.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y25_c00332{bottom:194.239040pt;}
.y26_c00332{bottom:194.239720pt;}
.y23_c00332{bottom:220.798560pt;}
.y24_c00332{bottom:220.798787pt;}
.y22_c00332{bottom:246.719587pt;}
.y21_c00332{bottom:272.959173pt;}
.y20_c00332{bottom:325.760107pt;}
.y1f_c00332{bottom:352.319867pt;}
.y1d_c00332{bottom:378.878907pt;}
.y1e_c00332{bottom:379.519040pt;}
.y1c_c00332{bottom:386.239707pt;}
.y1b_c00332{bottom:404.799320pt;}
.y19_c00332{bottom:431.678973pt;}
.y1a_c00332{bottom:431.679200pt;}
.y18_c00332{bottom:457.918560pt;}
.y17_c00332{bottom:484.798480pt;}
.y16_c00332{bottom:511.039667pt;}
.y15_c00332{bottom:537.599427pt;}
.y14_c00332{bottom:563.520453pt;}
.y13_c00332{bottom:589.760027pt;}
.y12_c00332{bottom:616.319787pt;}
.y11_c00332{bottom:643.199707pt;}
.y10_c00332{bottom:696.638693pt;}
.ye_c00332{bottom:722.879600pt;}
.yf_c00332{bottom:722.879880pt;}
.yd_c00332{bottom:748.798747pt;}
.yb_c00332{bottom:775.359253pt;}
.yc_c00332{bottom:775.359293pt;}
.ya_c00332{bottom:802.239173pt;}
.y9_c00332{bottom:802.239213pt;}
.y8_c00332{bottom:829.119147pt;}
.y7_c00332{bottom:829.119933pt;}
.y5_c00332{bottom:855.679040pt;}
.y6_c00332{bottom:855.679693pt;}
.y4_c00332{bottom:882.238787pt;}
.y3_c00332{bottom:908.479987pt;}
.y2_c00332{bottom:960.959467pt;}
.y1_c00332{bottom:1013.759680pt;}
.h29_c00332{height:18.078125pt;}
.h12_c00332{height:24.187500pt;}
.h27_c00332{height:25.726562pt;}
.h14_c00332{height:29.648437pt;}
.h16_c00332{height:31.984375pt;}
.h28_c00332{height:32.942708pt;}
.h17_c00332{height:33.375000pt;}
.h1b_c00332{height:35.578125pt;}
.h19_c00332{height:38.937500pt;}
.h1a_c00332{height:41.023438pt;}
.h1d_c00332{height:43.109375pt;}
.h1c_c00332{height:43.804688pt;}
.h13_c00332{height:47.976562pt;}
.h25_c00332{height:49.718750pt;}
.h21_c00332{height:51.453125pt;}
.h26_c00332{height:52.708333pt;}
.h23_c00332{height:55.093750pt;}
.h20_c00332{height:59.796875pt;}
.h1f_c00332{height:63.828125pt;}
.h15_c00332{height:63.968750pt;}
.h9_c00332{height:65.429688pt;}
.h1e_c00332{height:65.843750pt;}
.h24_c00332{height:66.054688pt;}
.h2a_c00332{height:66.083984pt;}
.h6_c00332{height:67.392578pt;}
.h22_c00332{height:67.859375pt;}
.h11_c00332{height:68.046875pt;}
.h8_c00332{height:68.701172pt;}
.h7_c00332{height:69.203125pt;}
.hc_c00332{height:70.009766pt;}
.hb_c00332{height:70.546875pt;}
.hd_c00332{height:70.664062pt;}
.h1_c00332{height:70.921875pt;}
.h2b_c00332{height:71.318359pt;}
.h4_c00332{height:71.890625pt;}
.h10_c00332{height:71.972656pt;}
.ha_c00332{height:72.473958pt;}
.h2_c00332{height:72.562500pt;}
.hf_c00332{height:73.132813pt;}
.h3_c00332{height:73.234375pt;}
.he_c00332{height:73.935547pt;}
.h5_c00332{height:79.721354pt;}
.h18_c00332{height:93.867188pt;}
.h0_c00332{height:1122.666667pt;}
.w0_c00332{width:793.333333pt;}
.x0_c00332{left:0.000000pt;}
.x1a_c00332{left:125.120480pt;}
.x1_c00332{left:126.079067pt;}
.x21_c00332{left:140.799333pt;}
.x9_c00332{left:147.839333pt;}
.x7_c00332{left:148.798813pt;}
.x2_c00332{left:171.518533pt;}
.x22_c00332{left:180.159733pt;}
.x2e_c00332{left:181.759333pt;}
.x24_c00332{left:183.999067pt;}
.x8_c00332{left:185.598680pt;}
.x17_c00332{left:194.559067pt;}
.x3_c00332{left:195.839333pt;}
.x1b_c00332{left:200.958920pt;}
.x2f_c00332{left:202.239200pt;}
.x25_c00332{left:203.198667pt;}
.x26_c00332{left:210.878920pt;}
.x18_c00332{left:217.918920pt;}
.x1c_c00332{left:219.199200pt;}
.x37_c00332{left:230.718787pt;}
.x12_c00332{left:237.118667pt;}
.x38_c00332{left:244.158667pt;}
.x13_c00332{left:251.519467pt;}
.x27_c00332{left:257.279320pt;}
.x30_c00332{left:268.798787pt;}
.x14_c00332{left:270.399867pt;}
.x4_c00332{left:273.599067pt;}
.x1d_c00332{left:286.079587pt;}
.x1e_c00332{left:303.039587pt;}
.x3b_c00332{left:307.199733pt;}
.xa_c00332{left:338.879867pt;}
.x28_c00332{left:343.038533pt;}
.x31_c00332{left:355.199707pt;}
.xb_c00332{left:361.918907pt;}
.x15_c00332{left:367.999467pt;}
.x32_c00332{left:375.679733pt;}
.x5_c00332{left:376.639200pt;}
.x16_c00332{left:389.119587pt;}
.x34_c00332{left:397.759320pt;}
.x6_c00332{left:413.119587pt;}
.xc_c00332{left:435.518520pt;}
.x29_c00332{left:442.879307pt;}
.x2a_c00332{left:452.479987pt;}
.xd_c00332{left:499.519040pt;}
.x2b_c00332{left:522.238773pt;}
.x10_c00332{left:535.038533pt;}
.x2c_c00332{left:538.879307pt;}
.xe_c00332{left:549.439453pt;}
.x11_c00332{left:556.158693pt;}
.xf_c00332{left:561.919840pt;}
.x33_c00332{left:567.999067pt;}
.x39_c00332{left:582.719200pt;}
.x3a_c00332{left:602.559040pt;}
.x1f_c00332{left:626.239707pt;}
.x2d_c00332{left:650.559040pt;}
.x19_c00332{left:657.599040pt;}
.x35_c00332{left:665.598720pt;}
.x20_c00332{left:666.878907pt;}
.x36_c00332{left:678.719200pt;}
.x23_c00332{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e1a2c182bbff743f05c60fb.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_e8b9730994f6215b43fe33c8.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_78479e2279678730fa7ab41b.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_9c2bafa9770103b7f3f2536d.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_f1ebaca25dedaa44789766a7.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00333;src:url('chunks/assets/font_ace3828dc363ca95be3db1da.woff2')format("woff");}.ff7_c00333{font-family:ff7_c00333;line-height:1.432129;font-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_c00333{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m1f_c00333{transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m25_c00333{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m1e_c00333{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1a_c00333{transform:matrix(0.242806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242806,0.000000,0.000000,0.250000,0,0);}
.m15_c00333{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m12_c00333{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m20_c00333{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m16_c00333{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m1c_c00333{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m24_c00333{transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);}
.m21_c00333{transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);}
.m19_c00333{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m18_c00333{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00333{transform:matrix(0.365854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365854,0.000000,0.000000,0.250000,0,0);}
.m23_c00333{transform:matrix(0.389423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389423,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{transform:matrix(0.684343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684343,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.lsd_c00333{letter-spacing:-42.690600px;}
.lse_c00333{letter-spacing:-18.140175px;}
.ls9_c00333{letter-spacing:-13.235400px;}
.ls29_c00333{letter-spacing:-12.687675px;}
.ls19_c00333{letter-spacing:-10.576500px;}
.ls14_c00333{letter-spacing:-8.175038px;}
.lsa_c00333{letter-spacing:-7.468358px;}
.ls1b_c00333{letter-spacing:-7.426125px;}
.ls16_c00333{letter-spacing:-6.685875px;}
.lsb_c00333{letter-spacing:-6.401925px;}
.ls1_c00333{letter-spacing:-6.106500px;}
.ls15_c00333{letter-spacing:-5.945625px;}
.ls12_c00333{letter-spacing:-5.604750px;}
.ls3_c00333{letter-spacing:-5.196713px;}
.ls1a_c00333{letter-spacing:-5.109375px;}
.ls8_c00333{letter-spacing:-4.456463px;}
.lsf_c00333{letter-spacing:-4.270725px;}
.ls2_c00333{letter-spacing:-3.717000px;}
.ls2a_c00333{letter-spacing:-3.622500px;}
.ls5_c00333{letter-spacing:-2.968875px;}
.ls27_c00333{letter-spacing:-2.360355px;}
.ls13_c00333{letter-spacing:-2.340000px;}
.ls25_c00333{letter-spacing:-2.230950px;}
.ls0_c00333{letter-spacing:-2.229413px;}
.lsc_c00333{letter-spacing:-2.131200px;}
.ls2b_c00333{letter-spacing:-1.829542px;}
.ls26_c00333{letter-spacing:-1.560000px;}
.ls21_c00333{letter-spacing:-1.542900px;}
.ls23_c00333{letter-spacing:-1.503345px;}
.ls4_c00333{letter-spacing:-1.489163px;}
.ls28_c00333{letter-spacing:-0.998168px;}
.ls1c_c00333{letter-spacing:-0.764775px;}
.ls6_c00333{letter-spacing:-0.740250px;}
.ls2e_c00333{letter-spacing:-0.613800px;}
.ls7_c00333{letter-spacing:0.000000px;}
.ls17_c00333{letter-spacing:0.734400px;}
.ls18_c00333{letter-spacing:0.740250px;}
.ls2c_c00333{letter-spacing:2.889900px;}
.ls1e_c00333{letter-spacing:3.075307px;}
.ls24_c00333{letter-spacing:3.195450px;}
.ls2d_c00333{letter-spacing:3.717000px;}
.ls2f_c00333{letter-spacing:4.150380px;}
.ls10_c00333{letter-spacing:4.199850px;}
.ls1d_c00333{letter-spacing:5.511375px;}
.ls1f_c00333{letter-spacing:5.769300px;}
.ls20_c00333{letter-spacing:10.656000px;}
.ls11_c00333{letter-spacing:15.346800px;}
.ls22_c00333{letter-spacing:20.827050px;}
.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;}
._1e_c00333{margin-left:-12.453079px;}
._b_c00333{margin-left:-8.455332px;}
._1f_c00333{margin-left:-5.821319px;}
._f_c00333{margin-left:-4.800184px;}
._15_c00333{margin-left:-2.653147px;}
._d_c00333{margin-left:-1.575178px;}
._11_c00333{width:1.897340px;}
._9_c00333{width:3.077669px;}
._10_c00333{width:4.151655px;}
._a_c00333{width:5.351583px;}
._3_c00333{width:7.324523px;}
._7_c00333{width:8.763969px;}
._1_c00333{width:10.318598px;}
._4_c00333{width:11.452702px;}
._6_c00333{width:13.366698px;}
._16_c00333{width:14.579344px;}
._12_c00333{width:15.670210px;}
._e_c00333{width:17.077279px;}
._0_c00333{width:18.410101px;}
._1d_c00333{width:20.401525px;}
._5_c00333{width:21.451500px;}
._8_c00333{width:22.916607px;}
._13_c00333{width:25.140180px;}
._14_c00333{width:26.873111px;}
._1c_c00333{width:28.316717px;}
._18_c00333{width:29.611545px;}
._17_c00333{width:31.196352px;}
._2_c00333{width:32.780668px;}
._19_c00333{width:38.313821px;}
._1b_c00333{width:39.406203px;}
._1a_c00333{width:42.202303px;}
._c_c00333{width:160.423177px;}
.fc0_c00333{color:transparent;}
.fs10_c00333{font-size:30.000000px;}
.fsf_c00333{font-size:30.750000px;}
.fs13_c00333{font-size:32.250000px;}
.fse_c00333{font-size:33.750000px;}
.fs19_c00333{font-size:39.000000px;}
.fs11_c00333{font-size:45.000000px;}
.fs17_c00333{font-size:45.750000px;}
.fs1a_c00333{font-size:46.500000px;}
.fs18_c00333{font-size:48.750000px;}
.fs15_c00333{font-size:60.750000px;}
.fs16_c00333{font-size:63.000000px;}
.fs8_c00333{font-size:70.500000px;}
.fs7_c00333{font-size:73.500000px;}
.fsc_c00333{font-size:74.250000px;}
.fs5_c00333{font-size:76.500000px;}
.fsd_c00333{font-size:77.250000px;}
.fs6_c00333{font-size:78.000000px;}
.fs0_c00333{font-size:78.750000px;}
.fs14_c00333{font-size:79.500000px;}
.fs9_c00333{font-size:80.250000px;}
.fsb_c00333{font-size:81.750000px;}
.fs2_c00333{font-size:82.500000px;}
.fs4_c00333{font-size:83.250000px;}
.fs3_c00333{font-size:85.500000px;}
.fs1_c00333{font-size:86.250000px;}
.fs12_c00333{font-size:104.250000px;}
.fsa_c00333{font-size:115.500000px;}
.y0_c00333{bottom:0.000000px;}
.y2b_c00333{bottom:251.640315px;}
.y2a_c00333{bottom:281.159850px;}
.y29_c00333{bottom:281.160165px;}
.y28_c00333{bottom:310.679700px;}
.y27_c00333{bottom:340.560285px;}
.y26_c00333{bottom:348.478635px;}
.y25_c00333{bottom:369.719955px;}
.y24_c00333{bottom:399.599670px;}
.y23_c00333{bottom:399.599850px;}
.y22_c00333{bottom:429.119385px;}
.y21_c00333{bottom:460.079400px;}
.y20_c00333{bottom:471.239220px;}
.y1e_c00333{bottom:489.598350px;}
.y1f_c00333{bottom:489.599070px;}
.y1d_c00333{bottom:519.838260px;}
.y1c_c00333{bottom:548.999400px;}
.y1a_c00333{bottom:578.158860px;}
.y1b_c00333{bottom:578.159820px;}
.y19_c00333{bottom:608.038575px;}
.y18_c00333{bottom:667.439640px;}
.y16_c00333{bottom:689.037855px;}
.y17_c00333{bottom:689.038920px;}
.y15_c00333{bottom:710.278770px;}
.y14_c00333{bottom:731.519670px;}
.y13_c00333{bottom:731.520405px;}
.y12_c00333{bottom:752.398995px;}
.y11_c00333{bottom:773.639925px;}
.y10_c00333{bottom:794.880825px;}
.yf_c00333{bottom:816.480120px;}
.yd_c00333{bottom:838.078920px;}
.ye_c00333{bottom:838.079400px;}
.yb_c00333{bottom:859.319205px;}
.yc_c00333{bottom:859.319820px;}
.ya_c00333{bottom:880.560120px;}
.y9_c00333{bottom:901.798920px;}
.y8_c00333{bottom:961.559490px;}
.y7_c00333{bottom:991.439205px;}
.y6_c00333{bottom:1050.119385px;}
.y5_c00333{bottom:1072.079955px;}
.y4_c00333{bottom:1093.318815px;}
.y3_c00333{bottom:1114.199805px;}
.y2_c00333{bottom:1114.200285px;}
.y1_c00333{bottom:1135.799565px;}
.h14_c00333{height:31.289062px;}
.h13_c00333{height:32.071289px;}
.h17_c00333{height:33.635742px;}
.h12_c00333{height:34.013672px;}
.h1e_c00333{height:40.675781px;}
.h1c_c00333{height:45.213867px;}
.h1f_c00333{height:45.955078px;}
.h15_c00333{height:46.933594px;}
.h1d_c00333{height:48.178711px;}
.h19_c00333{height:61.224609px;}
.h1b_c00333{height:63.492188px;}
.h9_c00333{height:73.529297px;}
.hd_c00333{height:75.080566px;}
.h11_c00333{height:75.816650px;}
.ha_c00333{height:76.552734px;}
.h8_c00333{height:76.658203px;}
.h6_c00333{height:77.097656px;}
.h1_c00333{height:77.288818px;}
.h10_c00333{height:77.440430px;}
.h7_c00333{height:78.609375px;}
.hb_c00333{height:78.760986px;}
.h18_c00333{height:80.121094px;}
.hf_c00333{height:80.233154px;}
.h1a_c00333{height:80.791992px;}
.h3_c00333{height:80.969238px;}
.he_c00333{height:81.533203px;}
.h5_c00333{height:82.274414px;}
.h4_c00333{height:84.498047px;}
.h2_c00333{height:84.649658px;}
.h16_c00333{height:108.729492px;}
.hc_c00333{height:120.462891px;}
.h0_c00333{height:1263.000000px;}
.w0_c00333{width:892.500000px;}
.x0_c00333{left:0.000000px;}
.xc_c00333{left:137.158815px;}
.x21_c00333{left:138.599100px;}
.xd_c00333{left:151.919565px;}
.x22_c00333{left:155.518665px;}
.x2d_c00333{left:164.878950px;}
.x36_c00333{left:179.278800px;}
.x35_c00333{left:182.159415px;}
.x13_c00333{left:191.157195px;}
.x4_c00333{left:192.240735px;}
.x1_c00333{left:193.319250px;}
.x37_c00333{left:195.479685px;}
.x2e_c00333{left:205.199385px;}
.xe_c00333{left:206.998950px;}
.xf_c00333{left:213.478635px;}
.x10_c00333{left:223.199850px;}
.x2_c00333{left:231.120000px;}
.x1c_c00333{left:232.919535px;}
.x3_c00333{left:253.439685px;}
.x1d_c00333{left:256.679700px;}
.x2f_c00333{left:264.599700px;}
.x16_c00333{left:269.639100px;}
.x17_c00333{left:284.399850px;}
.x30_c00333{left:343.439235px;}
.x31_c00333{left:376.559685px;}
.x32_c00333{left:398.159415px;}
.x18_c00333{left:406.799565px;}
.x19_c00333{left:421.558635px;}
.x33_c00333{left:474.838530px;}
.x27_c00333{left:475.919535px;}
.x7_c00333{left:507.238770px;}
.x1e_c00333{left:514.799520px;}
.x28_c00333{left:524.519070px;}
.x20_c00333{left:530.998950px;}
.x34_c00333{left:534.958920px;}
.x23_c00333{left:536.039985px;}
.x1f_c00333{left:538.918950px;}
.x8_c00333{left:557.639700px;}
.x29_c00333{left:566.279850px;}
.x1a_c00333{left:602.999400px;}
.x2a_c00333{left:620.279850px;}
.x24_c00333{left:623.158770px;}
.x1b_c00333{left:641.159370px;}
.x9_c00333{left:642.958920px;}
.x11_c00333{left:644.039985px;}
.x12_c00333{left:659.159820px;}
.x25_c00333{left:669.958920px;}
.x2b_c00333{left:676.438620px;}
.x26_c00333{left:684.719520px;}
.xa_c00333{left:693.719100px;}
.x2c_c00333{left:699.119385px;}
.x14_c00333{left:703.438620px;}
.xb_c00333{left:717.479235px;}
.x15_c00333{left:721.798560px;}
.x6_c00333{left:763.559100px;}
.x5_c00333{left:769.318815px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.lsd_c00333{letter-spacing:-37.947200pt;}
.lse_c00333{letter-spacing:-16.124600pt;}
.ls9_c00333{letter-spacing:-11.764800pt;}
.ls29_c00333{letter-spacing:-11.277933pt;}
.ls19_c00333{letter-spacing:-9.401333pt;}
.ls14_c00333{letter-spacing:-7.266700pt;}
.lsa_c00333{letter-spacing:-6.638540pt;}
.ls1b_c00333{letter-spacing:-6.601000pt;}
.ls16_c00333{letter-spacing:-5.943000pt;}
.lsb_c00333{letter-spacing:-5.690600pt;}
.ls1_c00333{letter-spacing:-5.428000pt;}
.ls15_c00333{letter-spacing:-5.285000pt;}
.ls12_c00333{letter-spacing:-4.982000pt;}
.ls3_c00333{letter-spacing:-4.619300pt;}
.ls1a_c00333{letter-spacing:-4.541667pt;}
.ls8_c00333{letter-spacing:-3.961300pt;}
.lsf_c00333{letter-spacing:-3.796200pt;}
.ls2_c00333{letter-spacing:-3.304000pt;}
.ls2a_c00333{letter-spacing:-3.220000pt;}
.ls5_c00333{letter-spacing:-2.639000pt;}
.ls27_c00333{letter-spacing:-2.098093pt;}
.ls13_c00333{letter-spacing:-2.080000pt;}
.ls25_c00333{letter-spacing:-1.983067pt;}
.ls0_c00333{letter-spacing:-1.981700pt;}
.lsc_c00333{letter-spacing:-1.894400pt;}
.ls2b_c00333{letter-spacing:-1.626260pt;}
.ls26_c00333{letter-spacing:-1.386667pt;}
.ls21_c00333{letter-spacing:-1.371467pt;}
.ls23_c00333{letter-spacing:-1.336307pt;}
.ls4_c00333{letter-spacing:-1.323700pt;}
.ls28_c00333{letter-spacing:-0.887260pt;}
.ls1c_c00333{letter-spacing:-0.679800pt;}
.ls6_c00333{letter-spacing:-0.658000pt;}
.ls2e_c00333{letter-spacing:-0.545600pt;}
.ls7_c00333{letter-spacing:0.000000pt;}
.ls17_c00333{letter-spacing:0.652800pt;}
.ls18_c00333{letter-spacing:0.658000pt;}
.ls2c_c00333{letter-spacing:2.568800pt;}
.ls1e_c00333{letter-spacing:2.733607pt;}
.ls24_c00333{letter-spacing:2.840400pt;}
.ls2d_c00333{letter-spacing:3.304000pt;}
.ls2f_c00333{letter-spacing:3.689227pt;}
.ls10_c00333{letter-spacing:3.733200pt;}
.ls1d_c00333{letter-spacing:4.899000pt;}
.ls1f_c00333{letter-spacing:5.128267pt;}
.ls20_c00333{letter-spacing:9.472000pt;}
.ls11_c00333{letter-spacing:13.641600pt;}
.ls22_c00333{letter-spacing:18.512933pt;}
.ws0_c00333{word-spacing:0.000000pt;}
._1e_c00333{margin-left:-11.069404pt;}
._b_c00333{margin-left:-7.515851pt;}
._1f_c00333{margin-left:-5.174506pt;}
._f_c00333{margin-left:-4.266830pt;}
._15_c00333{margin-left:-2.358353pt;}
._d_c00333{margin-left:-1.400158pt;}
._11_c00333{width:1.686525pt;}
._9_c00333{width:2.735706pt;}
._10_c00333{width:3.690360pt;}
._a_c00333{width:4.756962pt;}
._3_c00333{width:6.510687pt;}
._7_c00333{width:7.790194pt;}
._1_c00333{width:9.172087pt;}
._4_c00333{width:10.180179pt;}
._6_c00333{width:11.881509pt;}
._16_c00333{width:12.959417pt;}
._12_c00333{width:13.929075pt;}
._e_c00333{width:15.179804pt;}
._0_c00333{width:16.364534pt;}
._1d_c00333{width:18.134689pt;}
._5_c00333{width:19.068000pt;}
._8_c00333{width:20.370317pt;}
._13_c00333{width:22.346826pt;}
._14_c00333{width:23.887209pt;}
._1c_c00333{width:25.170415pt;}
._18_c00333{width:26.321374pt;}
._17_c00333{width:27.730091pt;}
._2_c00333{width:29.138372pt;}
._19_c00333{width:34.056730pt;}
._1b_c00333{width:35.027736pt;}
._1a_c00333{width:37.513158pt;}
._c_c00333{width:142.598379pt;}
.fs10_c00333{font-size:26.666667pt;}
.fsf_c00333{font-size:27.333333pt;}
.fs13_c00333{font-size:28.666667pt;}
.fse_c00333{font-size:30.000000pt;}
.fs19_c00333{font-size:34.666667pt;}
.fs11_c00333{font-size:40.000000pt;}
.fs17_c00333{font-size:40.666667pt;}
.fs1a_c00333{font-size:41.333333pt;}
.fs18_c00333{font-size:43.333333pt;}
.fs15_c00333{font-size:54.000000pt;}
.fs16_c00333{font-size:56.000000pt;}
.fs8_c00333{font-size:62.666667pt;}
.fs7_c00333{font-size:65.333333pt;}
.fsc_c00333{font-size:66.000000pt;}
.fs5_c00333{font-size:68.000000pt;}
.fsd_c00333{font-size:68.666667pt;}
.fs6_c00333{font-size:69.333333pt;}
.fs0_c00333{font-size:70.000000pt;}
.fs14_c00333{font-size:70.666667pt;}
.fs9_c00333{font-size:71.333333pt;}
.fsb_c00333{font-size:72.666667pt;}
.fs2_c00333{font-size:73.333333pt;}
.fs4_c00333{font-size:74.000000pt;}
.fs3_c00333{font-size:76.000000pt;}
.fs1_c00333{font-size:76.666667pt;}
.fs12_c00333{font-size:92.666667pt;}
.fsa_c00333{font-size:102.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.y2b_c00333{bottom:223.680280pt;}
.y2a_c00333{bottom:249.919867pt;}
.y29_c00333{bottom:249.920147pt;}
.y28_c00333{bottom:276.159733pt;}
.y27_c00333{bottom:302.720253pt;}
.y26_c00333{bottom:309.758787pt;}
.y25_c00333{bottom:328.639960pt;}
.y24_c00333{bottom:355.199707pt;}
.y23_c00333{bottom:355.199867pt;}
.y22_c00333{bottom:381.439453pt;}
.y21_c00333{bottom:408.959467pt;}
.y20_c00333{bottom:418.879307pt;}
.y1e_c00333{bottom:435.198533pt;}
.y1f_c00333{bottom:435.199173pt;}
.y1d_c00333{bottom:462.078453pt;}
.y1c_c00333{bottom:487.999467pt;}
.y1a_c00333{bottom:513.918987pt;}
.y1b_c00333{bottom:513.919840pt;}
.y19_c00333{bottom:540.478733pt;}
.y18_c00333{bottom:593.279680pt;}
.y16_c00333{bottom:612.478093pt;}
.y17_c00333{bottom:612.479040pt;}
.y15_c00333{bottom:631.358907pt;}
.y14_c00333{bottom:650.239707pt;}
.y13_c00333{bottom:650.240360pt;}
.y12_c00333{bottom:668.799107pt;}
.y11_c00333{bottom:687.679933pt;}
.y10_c00333{bottom:706.560733pt;}
.yf_c00333{bottom:725.760107pt;}
.yd_c00333{bottom:744.959040pt;}
.ye_c00333{bottom:744.959467pt;}
.yb_c00333{bottom:763.839293pt;}
.yc_c00333{bottom:763.839840pt;}
.ya_c00333{bottom:782.720107pt;}
.y9_c00333{bottom:801.599040pt;}
.y8_c00333{bottom:854.719547pt;}
.y7_c00333{bottom:881.279293pt;}
.y6_c00333{bottom:933.439453pt;}
.y5_c00333{bottom:952.959960pt;}
.y4_c00333{bottom:971.838947pt;}
.y3_c00333{bottom:990.399827pt;}
.y2_c00333{bottom:990.400253pt;}
.y1_c00333{bottom:1009.599613pt;}
.h14_c00333{height:27.812500pt;}
.h13_c00333{height:28.507812pt;}
.h17_c00333{height:29.898438pt;}
.h12_c00333{height:30.234375pt;}
.h1e_c00333{height:36.156250pt;}
.h1c_c00333{height:40.190104pt;}
.h1f_c00333{height:40.848958pt;}
.h15_c00333{height:41.718750pt;}
.h1d_c00333{height:42.825521pt;}
.h19_c00333{height:54.421875pt;}
.h1b_c00333{height:56.437500pt;}
.h9_c00333{height:65.359375pt;}
.hd_c00333{height:66.738281pt;}
.h11_c00333{height:67.392578pt;}
.ha_c00333{height:68.046875pt;}
.h8_c00333{height:68.140625pt;}
.h6_c00333{height:68.531250pt;}
.h1_c00333{height:68.701172pt;}
.h10_c00333{height:68.835938pt;}
.h7_c00333{height:69.875000pt;}
.hb_c00333{height:70.009766pt;}
.h18_c00333{height:71.218750pt;}
.hf_c00333{height:71.318359pt;}
.h1a_c00333{height:71.815104pt;}
.h3_c00333{height:71.972656pt;}
.he_c00333{height:72.473958pt;}
.h5_c00333{height:73.132813pt;}
.h4_c00333{height:75.109375pt;}
.h2_c00333{height:75.244141pt;}
.h16_c00333{height:96.648438pt;}
.hc_c00333{height:107.078125pt;}
.h0_c00333{height:1122.666667pt;}
.w0_c00333{width:793.333333pt;}
.x0_c00333{left:0.000000pt;}
.xc_c00333{left:121.918947pt;}
.x21_c00333{left:123.199200pt;}
.xd_c00333{left:135.039613pt;}
.x22_c00333{left:138.238813pt;}
.x2d_c00333{left:146.559067pt;}
.x36_c00333{left:159.358933pt;}
.x35_c00333{left:161.919480pt;}
.x13_c00333{left:169.917507pt;}
.x4_c00333{left:170.880653pt;}
.x1_c00333{left:171.839333pt;}
.x37_c00333{left:173.759720pt;}
.x2e_c00333{left:182.399453pt;}
.xe_c00333{left:183.999067pt;}
.xf_c00333{left:189.758787pt;}
.x10_c00333{left:198.399867pt;}
.x2_c00333{left:205.440000pt;}
.x1c_c00333{left:207.039587pt;}
.x3_c00333{left:225.279720pt;}
.x1d_c00333{left:228.159733pt;}
.x2f_c00333{left:235.199733pt;}
.x16_c00333{left:239.679200pt;}
.x17_c00333{left:252.799867pt;}
.x30_c00333{left:305.279320pt;}
.x31_c00333{left:334.719720pt;}
.x32_c00333{left:353.919480pt;}
.x18_c00333{left:361.599613pt;}
.x19_c00333{left:374.718787pt;}
.x33_c00333{left:422.078693pt;}
.x27_c00333{left:423.039587pt;}
.x7_c00333{left:450.878907pt;}
.x1e_c00333{left:457.599573pt;}
.x28_c00333{left:466.239173pt;}
.x20_c00333{left:471.999067pt;}
.x34_c00333{left:475.519040pt;}
.x23_c00333{left:476.479987pt;}
.x1f_c00333{left:479.039067pt;}
.x8_c00333{left:495.679733pt;}
.x29_c00333{left:503.359867pt;}
.x1a_c00333{left:535.999467pt;}
.x2a_c00333{left:551.359867pt;}
.x24_c00333{left:553.918907pt;}
.x1b_c00333{left:569.919440pt;}
.x9_c00333{left:571.519040pt;}
.x11_c00333{left:572.479987pt;}
.x12_c00333{left:585.919840pt;}
.x25_c00333{left:595.519040pt;}
.x2b_c00333{left:601.278773pt;}
.x26_c00333{left:608.639573pt;}
.xa_c00333{left:616.639200pt;}
.x2c_c00333{left:621.439453pt;}
.x14_c00333{left:625.278773pt;}
.xb_c00333{left:637.759320pt;}
.x15_c00333{left:641.598720pt;}
.x6_c00333{left:678.719200pt;}
.x5_c00333{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea1b537781092384a97d4d89.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_23df5b56ec2dac57f5d94e63.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_3c22bcf0f43109e207559efd.woff2')format("woff");}.ff3_c00334{font-family:ff3_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:ff4_c00334;src:url('chunks/assets/font_b39eda489b35a2e6abde00a1.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_dc22ad537e5ae45093d56d81.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_21b0528d26c133b367efb40f.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00334;src:url('chunks/assets/font_7781c57cb28a87be2c58f7b8.woff2')format("woff");}.ff7_c00334{font-family:ff7_c00334;line-height:1.364746;font-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_c00334{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.mb_c00334{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m9_c00334{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_c00334{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);}
.m15_c00334{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m18_c00334{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m13_c00334{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.ma_c00334{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275316,0.000000,0.000000,0.250000,0,0);}
.m16_c00334{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.351415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351415,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m17_c00334{transform:matrix(0.923077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.923077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.923077,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls1b_c00334{letter-spacing:-12.874163px;}
.ls18_c00334{letter-spacing:-10.125000px;}
.ls8_c00334{letter-spacing:-9.654750px;}
.ls14_c00334{letter-spacing:-8.914500px;}
.ls12_c00334{letter-spacing:-8.175038px;}
.lsd_c00334{letter-spacing:-7.426125px;}
.ls20_c00334{letter-spacing:-6.685875px;}
.ls1e_c00334{letter-spacing:-5.977125px;}
.lsa_c00334{letter-spacing:-5.945625px;}
.lsf_c00334{letter-spacing:-5.618303px;}
.ls9_c00334{letter-spacing:-5.196713px;}
.ls16_c00334{letter-spacing:-4.795500px;}
.ls1_c00334{letter-spacing:-4.667925px;}
.lsc_c00334{letter-spacing:-4.456463px;}
.lsb_c00334{letter-spacing:-3.821175px;}
.ls7_c00334{letter-spacing:-3.717000px;}
.ls17_c00334{letter-spacing:-3.678413px;}
.ls13_c00334{letter-spacing:-3.612600px;}
.lse_c00334{letter-spacing:-3.209198px;}
.ls2_c00334{letter-spacing:-2.968875px;}
.ls10_c00334{letter-spacing:-2.407500px;}
.ls19_c00334{letter-spacing:-2.295000px;}
.ls6_c00334{letter-spacing:-2.229413px;}
.ls21_c00334{letter-spacing:-2.204325px;}
.ls1a_c00334{letter-spacing:-2.189250px;}
.ls1f_c00334{letter-spacing:-1.829490px;}
.ls3_c00334{letter-spacing:-1.489163px;}
.ls11_c00334{letter-spacing:-0.801698px;}
.ls5_c00334{letter-spacing:-0.740250px;}
.ls0_c00334{letter-spacing:0.000000px;}
.ls4_c00334{letter-spacing:1.065300px;}
.ls15_c00334{letter-spacing:1.848000px;}
.ls1d_c00334{letter-spacing:3.751350px;}
.ls1c_c00334{letter-spacing:8.767410px;}
.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;}
._f_c00334{margin-left:-6.713259px;}
._e_c00334{margin-left:-4.105624px;}
._10_c00334{margin-left:-2.543016px;}
._7_c00334{margin-left:-1.430382px;}
._8_c00334{width:1.166837px;}
._5_c00334{width:2.518707px;}
._2_c00334{width:3.938704px;}
._6_c00334{width:5.843280px;}
._0_c00334{width:7.103072px;}
._1_c00334{width:8.449905px;}
._3_c00334{width:9.687394px;}
._4_c00334{width:12.229741px;}
._18_c00334{width:13.361156px;}
._c_c00334{width:14.584530px;}
._11_c00334{width:15.655678px;}
._17_c00334{width:16.660929px;}
._9_c00334{width:17.718809px;}
._13_c00334{width:18.893507px;}
._d_c00334{width:20.042826px;}
._a_c00334{width:21.895650px;}
._b_c00334{width:23.986552px;}
._14_c00334{width:25.373666px;}
._12_c00334{width:27.522412px;}
._15_c00334{width:32.905405px;}
._16_c00334{width:37.784354px;}
.fc0_c00334{color:transparent;}
.fs12_c00334{font-size:39.000000px;}
.fsf_c00334{font-size:51.000000px;}
.fs11_c00334{font-size:57.750000px;}
.fsc_c00334{font-size:59.250000px;}
.fs10_c00334{font-size:66.750000px;}
.fse_c00334{font-size:71.250000px;}
.fsb_c00334{font-size:74.250000px;}
.fs13_c00334{font-size:75.750000px;}
.fsd_c00334{font-size:76.500000px;}
.fs3_c00334{font-size:78.000000px;}
.fs0_c00334{font-size:78.750000px;}
.fs2_c00334{font-size:79.500000px;}
.fs7_c00334{font-size:80.250000px;}
.fs8_c00334{font-size:81.000000px;}
.fs1_c00334{font-size:81.750000px;}
.fs5_c00334{font-size:82.500000px;}
.fs6_c00334{font-size:83.250000px;}
.fs9_c00334{font-size:84.000000px;}
.fsa_c00334{font-size:86.250000px;}
.fs4_c00334{font-size:101.250000px;}
.y0_c00334{bottom:0.000000px;}
.y26_c00334{bottom:189.000000px;}
.y25_c00334{bottom:189.001950px;}
.y24_c00334{bottom:218.163090px;}
.y23_c00334{bottom:248.042820px;}
.y22_c00334{bottom:277.201860px;}
.y21_c00334{bottom:337.321500px;}
.y20_c00334{bottom:366.841020px;}
.y1f_c00334{bottom:396.720750px;}
.y1e_c00334{bottom:422.639700px;}
.y1d_c00334{bottom:432.720150px;}
.y1b_c00334{bottom:455.760090px;}
.y1c_c00334{bottom:455.760135px;}
.y1a_c00334{bottom:486.000000px;}
.y18_c00334{bottom:515.879130px;}
.y19_c00334{bottom:515.880570px;}
.y17_c00334{bottom:545.758845px;}
.y16_c00334{bottom:574.920000px;}
.y15_c00334{bottom:574.920435px;}
.y14_c00334{bottom:633.961305px;}
.y13_c00334{bottom:664.201215px;}
.y12_c00334{bottom:693.720750px;}
.y11_c00334{bottom:723.599670px;}
.y10_c00334{bottom:753.839535px;}
.yf_c00334{bottom:813.239985px;}
.ye_c00334{bottom:843.119700px;}
.yd_c00334{bottom:872.280855px;}
.yc_c00334{bottom:872.281680px;}
.yb_c00334{bottom:902.879970px;}
.ya_c00334{bottom:902.881140px;}
.y9_c00334{bottom:932.400675px;}
.y8_c00334{bottom:962.280390px;}
.y7_c00334{bottom:962.281470px;}
.y6_c00334{bottom:991.801005px;}
.y4_c00334{bottom:1021.680000px;}
.y5_c00334{bottom:1021.680720px;}
.y3_c00334{bottom:1081.081050px;}
.y2_c00334{bottom:1081.081095px;}
.y1_c00334{bottom:1140.840540px;}
.h17_c00334{height:40.675781px;}
.h14_c00334{height:53.191406px;}
.h16_c00334{height:57.073242px;}
.h11_c00334{height:58.555664px;}
.h15_c00334{height:69.618164px;}
.h13_c00334{height:74.311523px;}
.h18_c00334{height:74.344482px;}
.h4_c00334{height:76.552734px;}
.h12_c00334{height:77.097656px;}
.h1_c00334{height:77.288818px;}
.hf_c00334{height:77.440430px;}
.h3_c00334{height:78.024902px;}
.h9_c00334{height:78.760986px;}
.he_c00334{height:79.365234px;}
.ha_c00334{height:79.497070px;}
.h10_c00334{height:80.050781px;}
.h2_c00334{height:80.233154px;}
.h8_c00334{height:80.876953px;}
.h6_c00334{height:80.969238px;}
.hd_c00334{height:81.533203px;}
.h7_c00334{height:81.705322px;}
.hb_c00334{height:82.441406px;}
.hc_c00334{height:84.649658px;}
.h5_c00334{height:105.600586px;}
.h0_c00334{height:1263.000000px;}
.w0_c00334{width:892.500000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:137.878950px;}
.x14_c00334{left:139.678500px;}
.x1a_c00334{left:157.679100px;}
.x4_c00334{left:163.438665px;}
.x5_c00334{left:183.599700px;}
.x15_c00334{left:186.119415px;}
.xe_c00334{left:191.878950px;}
.xc_c00334{left:202.679700px;}
.x2_c00334{left:204.479250px;}
.x16_c00334{left:214.559685px;}
.x1b_c00334{left:220.678500px;}
.x3_c00334{left:230.038950px;}
.x1c_c00334{left:244.079385px;}
.xd_c00334{left:249.118785px;}
.x17_c00334{left:251.279250px;}
.x1d_c00334{left:318.958950px;}
.x12_c00334{left:322.198785px;}
.x1e_c00334{left:332.999385px;}
.x13_c00334{left:336.959385px;}
.x6_c00334{left:411.479685px;}
.x8_c00334{left:430.198785px;}
.x1f_c00334{left:432.718500px;}
.x7_c00334{left:449.998950px;}
.x9_c00334{left:453.599670px;}
.x20_c00334{left:541.438620px;}
.xa_c00334{left:573.118785px;}
.x21_c00334{left:577.798920px;}
.xb_c00334{left:586.080000px;}
.x10_c00334{left:588.238770px;}
.x11_c00334{left:602.999400px;}
.x18_c00334{left:639.359850px;}
.x22_c00334{left:643.679070px;}
.x19_c00334{left:659.159820px;}
.x23_c00334{left:683.638545px;}
.x24_c00334{left:713.519070px;}
.x25_c00334{left:737.638545px;}
.xf_c00334{left:768.959385px;}
.x26_c00334{left:770.038965px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1b_c00334{letter-spacing:-11.443700pt;}
.ls18_c00334{letter-spacing:-9.000000pt;}
.ls8_c00334{letter-spacing:-8.582000pt;}
.ls14_c00334{letter-spacing:-7.924000pt;}
.ls12_c00334{letter-spacing:-7.266700pt;}
.lsd_c00334{letter-spacing:-6.601000pt;}
.ls20_c00334{letter-spacing:-5.943000pt;}
.ls1e_c00334{letter-spacing:-5.313000pt;}
.lsa_c00334{letter-spacing:-5.285000pt;}
.lsf_c00334{letter-spacing:-4.994047pt;}
.ls9_c00334{letter-spacing:-4.619300pt;}
.ls16_c00334{letter-spacing:-4.262667pt;}
.ls1_c00334{letter-spacing:-4.149267pt;}
.lsc_c00334{letter-spacing:-3.961300pt;}
.lsb_c00334{letter-spacing:-3.396600pt;}
.ls7_c00334{letter-spacing:-3.304000pt;}
.ls17_c00334{letter-spacing:-3.269700pt;}
.ls13_c00334{letter-spacing:-3.211200pt;}
.lse_c00334{letter-spacing:-2.852620pt;}
.ls2_c00334{letter-spacing:-2.639000pt;}
.ls10_c00334{letter-spacing:-2.140000pt;}
.ls19_c00334{letter-spacing:-2.040000pt;}
.ls6_c00334{letter-spacing:-1.981700pt;}
.ls21_c00334{letter-spacing:-1.959400pt;}
.ls1a_c00334{letter-spacing:-1.946000pt;}
.ls1f_c00334{letter-spacing:-1.626213pt;}
.ls3_c00334{letter-spacing:-1.323700pt;}
.ls11_c00334{letter-spacing:-0.712620pt;}
.ls5_c00334{letter-spacing:-0.658000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ls4_c00334{letter-spacing:0.946933pt;}
.ls15_c00334{letter-spacing:1.642667pt;}
.ls1d_c00334{letter-spacing:3.334533pt;}
.ls1c_c00334{letter-spacing:7.793253pt;}
.ws0_c00334{word-spacing:0.000000pt;}
._f_c00334{margin-left:-5.967342pt;}
._e_c00334{margin-left:-3.649443pt;}
._10_c00334{margin-left:-2.260458pt;}
._7_c00334{margin-left:-1.271451pt;}
._8_c00334{width:1.037189pt;}
._5_c00334{width:2.238851pt;}
._2_c00334{width:3.501070pt;}
._6_c00334{width:5.194026pt;}
._0_c00334{width:6.313842pt;}
._1_c00334{width:7.511026pt;}
._3_c00334{width:8.611017pt;}
._4_c00334{width:10.870881pt;}
._18_c00334{width:11.876583pt;}
._c_c00334{width:12.964026pt;}
._11_c00334{width:13.916158pt;}
._17_c00334{width:14.809715pt;}
._9_c00334{width:15.750053pt;}
._13_c00334{width:16.794228pt;}
._d_c00334{width:17.815845pt;}
._a_c00334{width:19.462800pt;}
._b_c00334{width:21.321379pt;}
._14_c00334{width:22.554370pt;}
._12_c00334{width:24.464366pt;}
._15_c00334{width:29.249249pt;}
._16_c00334{width:33.586092pt;}
.fs12_c00334{font-size:34.666667pt;}
.fsf_c00334{font-size:45.333333pt;}
.fs11_c00334{font-size:51.333333pt;}
.fsc_c00334{font-size:52.666667pt;}
.fs10_c00334{font-size:59.333333pt;}
.fse_c00334{font-size:63.333333pt;}
.fsb_c00334{font-size:66.000000pt;}
.fs13_c00334{font-size:67.333333pt;}
.fsd_c00334{font-size:68.000000pt;}
.fs3_c00334{font-size:69.333333pt;}
.fs0_c00334{font-size:70.000000pt;}
.fs2_c00334{font-size:70.666667pt;}
.fs7_c00334{font-size:71.333333pt;}
.fs8_c00334{font-size:72.000000pt;}
.fs1_c00334{font-size:72.666667pt;}
.fs5_c00334{font-size:73.333333pt;}
.fs6_c00334{font-size:74.000000pt;}
.fs9_c00334{font-size:74.666667pt;}
.fsa_c00334{font-size:76.666667pt;}
.fs4_c00334{font-size:90.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y26_c00334{bottom:168.000000pt;}
.y25_c00334{bottom:168.001733pt;}
.y24_c00334{bottom:193.922747pt;}
.y23_c00334{bottom:220.482507pt;}
.y22_c00334{bottom:246.401653pt;}
.y21_c00334{bottom:299.841333pt;}
.y20_c00334{bottom:326.080907pt;}
.y1f_c00334{bottom:352.640667pt;}
.y1e_c00334{bottom:375.679733pt;}
.y1d_c00334{bottom:384.640133pt;}
.y1b_c00334{bottom:405.120080pt;}
.y1c_c00334{bottom:405.120120pt;}
.y1a_c00334{bottom:432.000000pt;}
.y18_c00334{bottom:458.559227pt;}
.y19_c00334{bottom:458.560507pt;}
.y17_c00334{bottom:485.118973pt;}
.y16_c00334{bottom:511.040000pt;}
.y15_c00334{bottom:511.040387pt;}
.y14_c00334{bottom:563.521160pt;}
.y13_c00334{bottom:590.401080pt;}
.y12_c00334{bottom:616.640667pt;}
.y11_c00334{bottom:643.199707pt;}
.y10_c00334{bottom:670.079587pt;}
.yf_c00334{bottom:722.879987pt;}
.ye_c00334{bottom:749.439733pt;}
.yd_c00334{bottom:775.360760pt;}
.yc_c00334{bottom:775.361493pt;}
.yb_c00334{bottom:802.559973pt;}
.ya_c00334{bottom:802.561013pt;}
.y9_c00334{bottom:828.800600pt;}
.y8_c00334{bottom:855.360347pt;}
.y7_c00334{bottom:855.361307pt;}
.y6_c00334{bottom:881.600893pt;}
.y4_c00334{bottom:908.160000pt;}
.y5_c00334{bottom:908.160640pt;}
.y3_c00334{bottom:960.960933pt;}
.y2_c00334{bottom:960.960973pt;}
.y1_c00334{bottom:1014.080480pt;}
.h17_c00334{height:36.156250pt;}
.h14_c00334{height:47.281250pt;}
.h16_c00334{height:50.731771pt;}
.h11_c00334{height:52.049479pt;}
.h15_c00334{height:61.882812pt;}
.h13_c00334{height:66.054688pt;}
.h18_c00334{height:66.083984pt;}
.h4_c00334{height:68.046875pt;}
.h12_c00334{height:68.531250pt;}
.h1_c00334{height:68.701172pt;}
.hf_c00334{height:68.835938pt;}
.h3_c00334{height:69.355469pt;}
.h9_c00334{height:70.009766pt;}
.he_c00334{height:70.546875pt;}
.ha_c00334{height:70.664062pt;}
.h10_c00334{height:71.156250pt;}
.h2_c00334{height:71.318359pt;}
.h8_c00334{height:71.890625pt;}
.h6_c00334{height:71.972656pt;}
.hd_c00334{height:72.473958pt;}
.h7_c00334{height:72.626953pt;}
.hb_c00334{height:73.281250pt;}
.hc_c00334{height:75.244141pt;}
.h5_c00334{height:93.867188pt;}
.h0_c00334{height:1122.666667pt;}
.w0_c00334{width:793.333333pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:122.559067pt;}
.x14_c00334{left:124.158667pt;}
.x1a_c00334{left:140.159200pt;}
.x4_c00334{left:145.278813pt;}
.x5_c00334{left:163.199733pt;}
.x15_c00334{left:165.439480pt;}
.xe_c00334{left:170.559067pt;}
.xc_c00334{left:180.159733pt;}
.x2_c00334{left:181.759333pt;}
.x16_c00334{left:190.719720pt;}
.x1b_c00334{left:196.158667pt;}
.x3_c00334{left:204.479067pt;}
.x1c_c00334{left:216.959453pt;}
.xd_c00334{left:221.438920pt;}
.x17_c00334{left:223.359333pt;}
.x1d_c00334{left:283.519067pt;}
.x12_c00334{left:286.398920pt;}
.x1e_c00334{left:295.999453pt;}
.x13_c00334{left:299.519453pt;}
.x6_c00334{left:365.759720pt;}
.x8_c00334{left:382.398920pt;}
.x1f_c00334{left:384.638667pt;}
.x7_c00334{left:399.999067pt;}
.x9_c00334{left:403.199707pt;}
.x20_c00334{left:481.278773pt;}
.xa_c00334{left:509.438920pt;}
.x21_c00334{left:513.599040pt;}
.xb_c00334{left:520.960000pt;}
.x10_c00334{left:522.878907pt;}
.x11_c00334{left:535.999467pt;}
.x18_c00334{left:568.319867pt;}
.x22_c00334{left:572.159173pt;}
.x19_c00334{left:585.919840pt;}
.x23_c00334{left:607.678707pt;}
.x24_c00334{left:634.239173pt;}
.x25_c00334{left:655.678707pt;}
.xf_c00334{left:683.519453pt;}
.x26_c00334{left:684.479080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4f58c2c2f1c610ee40fbd49.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.364746;font-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_c00335{transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls9_c00335{letter-spacing:-12.226305px;}
.lsc_c00335{letter-spacing:-10.288050px;}
.lsa_c00335{letter-spacing:-8.914500px;}
.lsd_c00335{letter-spacing:-8.175038px;}
.ls5_c00335{letter-spacing:-5.196713px;}
.lsb_c00335{letter-spacing:-5.151600px;}
.ls6_c00335{letter-spacing:-4.456463px;}
.ls7_c00335{letter-spacing:-3.717000px;}
.ls3_c00335{letter-spacing:-2.968875px;}
.ls1_c00335{letter-spacing:-2.229413px;}
.ls4_c00335{letter-spacing:-1.489163px;}
.ls8_c00335{letter-spacing:-0.740250px;}
.ls2_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:3.772440px;}
.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;}
._b_c00335{margin-left:-78.048962px;}
._a_c00335{margin-left:-26.153113px;}
._5_c00335{margin-left:-1.960905px;}
._10_c00335{width:1.452373px;}
._8_c00335{width:2.759341px;}
._7_c00335{width:3.976816px;}
._d_c00335{width:4.995217px;}
._1_c00335{width:6.047762px;}
._e_c00335{width:7.675346px;}
._4_c00335{width:8.713821px;}
._3_c00335{width:10.550033px;}
._9_c00335{width:12.376291px;}
._2_c00335{width:13.779497px;}
._0_c00335{width:15.284275px;}
._6_c00335{width:18.031566px;}
._f_c00335{width:21.650827px;}
._c_c00335{width:23.769439px;}
.fc0_c00335{color:transparent;}
.fs5_c00335{font-size:78.000000px;}
.fs1_c00335{font-size:78.750000px;}
.fs2_c00335{font-size:79.500000px;}
.fs3_c00335{font-size:80.250000px;}
.fs4_c00335{font-size:81.000000px;}
.fs0_c00335{font-size:84.000000px;}
.y0_c00335{bottom:0.000000px;}
.ya_c00335{bottom:955.441545px;}
.y9_c00335{bottom:985.321260px;}
.y8_c00335{bottom:1015.200990px;}
.y7_c00335{bottom:1015.201170px;}
.y5_c00335{bottom:1044.720660px;}
.y6_c00335{bottom:1044.720705px;}
.y4_c00335{bottom:1074.960570px;}
.y3_c00335{bottom:1074.960705px;}
.y2_c00335{bottom:1104.480240px;}
.y1_c00335{bottom:1134.720150px;}
.h7_c00335{height:76.552734px;}
.h2_c00335{height:77.288818px;}
.h3_c00335{height:78.568359px;}
.h4_c00335{height:78.760986px;}
.h6_c00335{height:79.309570px;}
.h5_c00335{height:79.497070px;}
.h1_c00335{height:82.441406px;}
.h0_c00335{height:1263.000000px;}
.w0_c00335{width:892.500000px;}
.x0_c00335{left:0.000000px;}
.xb_c00335{left:141.479415px;}
.x1_c00335{left:142.559100px;}
.x2_c00335{left:168.118815px;}
.x5_c00335{left:302.039385px;}
.x6_c00335{left:317.159385px;}
.x7_c00335{left:336.239250px;}
.x8_c00335{left:376.559685px;}
.xc_c00335{left:458.639100px;}
.xd_c00335{left:473.038920px;}
.x3_c00335{left:515.519670px;}
.x4_c00335{left:536.758530px;}
.x9_c00335{left:572.759535px;}
.xa_c00335{left:594.359250px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls9_c00335{letter-spacing:-10.867827pt;}
.lsc_c00335{letter-spacing:-9.144933pt;}
.lsa_c00335{letter-spacing:-7.924000pt;}
.lsd_c00335{letter-spacing:-7.266700pt;}
.ls5_c00335{letter-spacing:-4.619300pt;}
.lsb_c00335{letter-spacing:-4.579200pt;}
.ls6_c00335{letter-spacing:-3.961300pt;}
.ls7_c00335{letter-spacing:-3.304000pt;}
.ls3_c00335{letter-spacing:-2.639000pt;}
.ls1_c00335{letter-spacing:-1.981700pt;}
.ls4_c00335{letter-spacing:-1.323700pt;}
.ls8_c00335{letter-spacing:-0.658000pt;}
.ls2_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:3.353280pt;}
.ws0_c00335{word-spacing:0.000000pt;}
._b_c00335{margin-left:-69.376855pt;}
._a_c00335{margin-left:-23.247211pt;}
._5_c00335{margin-left:-1.743026pt;}
._10_c00335{width:1.290998pt;}
._8_c00335{width:2.452747pt;}
._7_c00335{width:3.534947pt;}
._d_c00335{width:4.440192pt;}
._1_c00335{width:5.375789pt;}
._e_c00335{width:6.822530pt;}
._4_c00335{width:7.745619pt;}
._3_c00335{width:9.377808pt;}
._9_c00335{width:11.001147pt;}
._2_c00335{width:12.248442pt;}
._0_c00335{width:13.586023pt;}
._6_c00335{width:16.028058pt;}
._f_c00335{width:19.245179pt;}
._c_c00335{width:21.128391pt;}
.fs5_c00335{font-size:69.333333pt;}
.fs1_c00335{font-size:70.000000pt;}
.fs2_c00335{font-size:70.666667pt;}
.fs3_c00335{font-size:71.333333pt;}
.fs4_c00335{font-size:72.000000pt;}
.fs0_c00335{font-size:74.666667pt;}
.y0_c00335{bottom:0.000000pt;}
.ya_c00335{bottom:849.281373pt;}
.y9_c00335{bottom:875.841120pt;}
.y8_c00335{bottom:902.400880pt;}
.y7_c00335{bottom:902.401040pt;}
.y5_c00335{bottom:928.640587pt;}
.y6_c00335{bottom:928.640627pt;}
.y4_c00335{bottom:955.520507pt;}
.y3_c00335{bottom:955.520627pt;}
.y2_c00335{bottom:981.760213pt;}
.y1_c00335{bottom:1008.640133pt;}
.h7_c00335{height:68.046875pt;}
.h2_c00335{height:68.701172pt;}
.h3_c00335{height:69.838542pt;}
.h4_c00335{height:70.009766pt;}
.h6_c00335{height:70.497396pt;}
.h5_c00335{height:70.664062pt;}
.h1_c00335{height:73.281250pt;}
.h0_c00335{height:1122.666667pt;}
.w0_c00335{width:793.333333pt;}
.x0_c00335{left:0.000000pt;}
.xb_c00335{left:125.759480pt;}
.x1_c00335{left:126.719200pt;}
.x2_c00335{left:149.438947pt;}
.x5_c00335{left:268.479453pt;}
.x6_c00335{left:281.919453pt;}
.x7_c00335{left:298.879333pt;}
.x8_c00335{left:334.719720pt;}
.xc_c00335{left:407.679200pt;}
.xd_c00335{left:420.479040pt;}
.x3_c00335{left:458.239707pt;}
.x4_c00335{left:477.118693pt;}
.x9_c00335{left:509.119587pt;}
.xa_c00335{left:528.319333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22877fea8e0037ce124399b4.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_a5ff05afbcc93cb1656c0b88.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_1932b1b06beb2c7bacb79af8.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_5a3303f65477444b7cb4d359.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_64772899b405b30820f9d310.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.364746;font-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_c00336{transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.055276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055276,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.142523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142523,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.147246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147246,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{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);}
.m16_c00336{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.163551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163551,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.205986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205986,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.320707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320707,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls14_c00336{letter-spacing:-13.721025px;}
.ls1a_c00336{letter-spacing:-6.685875px;}
.ls19_c00336{letter-spacing:-6.325800px;}
.ls1b_c00336{letter-spacing:-5.945625px;}
.ls15_c00336{letter-spacing:-5.196713px;}
.ls17_c00336{letter-spacing:-5.054963px;}
.ls11_c00336{letter-spacing:-5.008500px;}
.ls10_c00336{letter-spacing:-4.921800px;}
.lsd_c00336{letter-spacing:-4.456463px;}
.ls3_c00336{letter-spacing:-3.860025px;}
.ls4_c00336{letter-spacing:-3.717900px;}
.ls9_c00336{letter-spacing:-3.717000px;}
.lse_c00336{letter-spacing:-3.510000px;}
.ls2_c00336{letter-spacing:-3.089625px;}
.ls8_c00336{letter-spacing:-3.028950px;}
.lsb_c00336{letter-spacing:-2.968875px;}
.ls13_c00336{letter-spacing:-2.808000px;}
.ls0_c00336{letter-spacing:-2.310398px;}
.ls1_c00336{letter-spacing:-2.251800px;}
.lsa_c00336{letter-spacing:-2.229413px;}
.ls5_c00336{letter-spacing:-1.540800px;}
.ls16_c00336{letter-spacing:-1.489163px;}
.ls1c_c00336{letter-spacing:-1.473413px;}
.ls7_c00336{letter-spacing:-0.778425px;}
.ls18_c00336{letter-spacing:-0.740250px;}
.ls6_c00336{letter-spacing:0.000000px;}
.lsf_c00336{letter-spacing:0.852600px;}
.lsc_c00336{letter-spacing:1.165725px;}
.ls12_c00336{letter-spacing:3.417015px;}
.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;}
._e_c00336{margin-left:-5.509068px;}
._10_c00336{margin-left:-4.027840px;}
._c_c00336{margin-left:-2.880824px;}
._f_c00336{margin-left:-1.229912px;}
._d_c00336{width:1.258720px;}
._0_c00336{width:4.203865px;}
._1_c00336{width:6.918106px;}
._3_c00336{width:8.111309px;}
._2_c00336{width:10.038349px;}
._9_c00336{width:12.002644px;}
._4_c00336{width:13.834268px;}
._7_c00336{width:15.211080px;}
._a_c00336{width:17.538695px;}
._6_c00336{width:20.074727px;}
._b_c00336{width:21.463654px;}
._11_c00336{width:22.719940px;}
._8_c00336{width:25.105233px;}
._5_c00336{width:28.149826px;}
._14_c00336{width:29.300483px;}
._12_c00336{width:30.595162px;}
._13_c00336{width:42.690910px;}
.fc0_c00336{color:transparent;}
.fs9_c00336{font-size:73.500000px;}
.fs7_c00336{font-size:74.250000px;}
.fsb_c00336{font-size:76.500000px;}
.fsd_c00336{font-size:77.250000px;}
.fs8_c00336{font-size:78.000000px;}
.fs5_c00336{font-size:78.750000px;}
.fs4_c00336{font-size:79.500000px;}
.fs0_c00336{font-size:80.250000px;}
.fs1_c00336{font-size:81.000000px;}
.fsf_c00336{font-size:82.500000px;}
.fse_c00336{font-size:84.000000px;}
.fsc_c00336{font-size:84.750000px;}
.fs3_c00336{font-size:106.500000px;}
.fs2_c00336{font-size:144.000000px;}
.fsa_c00336{font-size:149.250000px;}
.fs6_c00336{font-size:177.000000px;}
.y0_c00336{bottom:0.000000px;}
.y23_c00336{bottom:177.120000px;}
.y22_c00336{bottom:177.121515px;}
.y21_c00336{bottom:206.280555px;}
.y20_c00336{bottom:236.160285px;}
.y1e_c00336{bottom:266.039925px;}
.y1f_c00336{bottom:266.040000px;}
.y1d_c00336{bottom:296.279850px;}
.y1c_c00336{bottom:296.281680px;}
.y12_c00336{bottom:415.439850px;}
.y11_c00336{bottom:444.959385px;}
.yb_c00336{bottom:505.080000px;}
.ya_c00336{bottom:514.799190px;}
.y1b_c00336{bottom:554.760915px;}
.y2a_c00336{bottom:555.119985px;}
.y2e_c00336{bottom:555.479235px;}
.y29_c00336{bottom:595.079400px;}
.y1a_c00336{bottom:595.081005px;}
.y2d_c00336{bottom:595.799520px;}
.y19_c00336{bottom:635.401080px;}
.y28_c00336{bottom:635.759085px;}
.y27_c00336{bottom:675.720150px;}
.y18_c00336{bottom:675.721155px;}
.y2c_c00336{bottom:676.438620px;}
.y17_c00336{bottom:716.039160px;}
.y26_c00336{bottom:716.399820px;}
.y2b_c00336{bottom:716.759085px;}
.y10_c00336{bottom:756.359250px;}
.y16_c00336{bottom:796.318815px;}
.y9_c00336{bottom:796.678980px;}
.y25_c00336{bottom:797.038965px;}
.y8_c00336{bottom:836.999055px;}
.y15_c00336{bottom:837.000000px;}
.y24_c00336{bottom:837.720150px;}
.y7_c00336{bottom:877.679325px;}
.yf_c00336{bottom:877.679715px;}
.ye_c00336{bottom:918.000000px;}
.y6_c00336{bottom:918.359595px;}
.y5_c00336{bottom:958.679700px;}
.yd_c00336{bottom:958.679715px;}
.yc_c00336{bottom:998.279085px;}
.y14_c00336{bottom:998.638785px;}
.y13_c00336{bottom:1028.158305px;}
.y4_c00336{bottom:1028.158815px;}
.y2_c00336{bottom:1097.998530px;}
.y3_c00336{bottom:1097.998905px;}
.y1_c00336{bottom:1127.879520px;}
.h8_c00336{height:72.872314px;}
.hc_c00336{height:75.080566px;}
.h9_c00336{height:76.552734px;}
.ha_c00336{height:76.658203px;}
.h6_c00336{height:77.288818px;}
.hd_c00336{height:78.024902px;}
.h11_c00336{height:79.309570px;}
.h5_c00336{height:80.121094px;}
.hf_c00336{height:80.569336px;}
.h1_c00336{height:80.876953px;}
.h12_c00336{height:81.533203px;}
.h2_c00336{height:81.632812px;}
.h10_c00336{height:82.441406px;}
.he_c00336{height:83.756836px;}
.h4_c00336{height:111.076172px;}
.h3_c00336{height:150.187500px;}
.hb_c00336{height:155.663086px;}
.h7_c00336{height:184.605469px;}
.h0_c00336{height:1263.000000px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
.x1a_c00336{left:142.197675px;}
.x13_c00336{left:256.679700px;}
.x1_c00336{left:257.759100px;}
.xa_c00336{left:258.838515px;}
.x1c_c00336{left:264.238785px;}
.x1d_c00336{left:289.439235px;}
.x2_c00336{left:316.080000px;}
.x3_c00336{left:346.319850px;}
.x1e_c00336{left:400.679070px;}
.xb_c00336{left:425.159415px;}
.x1f_c00336{left:439.559100px;}
.x1b_c00336{left:447.479235px;}
.x6_c00336{left:465.838950px;}
.xe_c00336{left:470.159820px;}
.x7_c00336{left:471.959385px;}
.x8_c00336{left:484.559685px;}
.xf_c00336{left:500.399820px;}
.x10_c00336{left:515.519670px;}
.x22_c00336{left:516.599070px;}
.x11_c00336{left:524.159820px;}
.xc_c00336{left:525.598530px;}
.x23_c00336{left:533.159415px;}
.x24_c00336{left:534.599670px;}
.xd_c00336{left:550.078770px;}
.x4_c00336{left:558.359850px;}
.x9_c00336{left:561.238770px;}
.x5_c00336{left:585.359850px;}
.x14_c00336{left:593.278545px;}
.x15_c00336{left:611.277210px;}
.x16_c00336{left:639.719100px;}
.x18_c00336{left:648.000000px;}
.x17_c00336{left:649.799520px;}
.x19_c00336{left:656.999400px;}
.x12_c00336{left:658.798920px;}
.x20_c00336{left:712.078770px;}
.x21_c00336{left:764.279250px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls14_c00336{letter-spacing:-12.196467pt;}
.ls1a_c00336{letter-spacing:-5.943000pt;}
.ls19_c00336{letter-spacing:-5.622933pt;}
.ls1b_c00336{letter-spacing:-5.285000pt;}
.ls15_c00336{letter-spacing:-4.619300pt;}
.ls17_c00336{letter-spacing:-4.493300pt;}
.ls11_c00336{letter-spacing:-4.452000pt;}
.ls10_c00336{letter-spacing:-4.374933pt;}
.lsd_c00336{letter-spacing:-3.961300pt;}
.ls3_c00336{letter-spacing:-3.431133pt;}
.ls4_c00336{letter-spacing:-3.304800pt;}
.ls9_c00336{letter-spacing:-3.304000pt;}
.lse_c00336{letter-spacing:-3.120000pt;}
.ls2_c00336{letter-spacing:-2.746333pt;}
.ls8_c00336{letter-spacing:-2.692400pt;}
.lsb_c00336{letter-spacing:-2.639000pt;}
.ls13_c00336{letter-spacing:-2.496000pt;}
.ls0_c00336{letter-spacing:-2.053687pt;}
.ls1_c00336{letter-spacing:-2.001600pt;}
.lsa_c00336{letter-spacing:-1.981700pt;}
.ls5_c00336{letter-spacing:-1.369600pt;}
.ls16_c00336{letter-spacing:-1.323700pt;}
.ls1c_c00336{letter-spacing:-1.309700pt;}
.ls7_c00336{letter-spacing:-0.691933pt;}
.ls18_c00336{letter-spacing:-0.658000pt;}
.ls6_c00336{letter-spacing:0.000000pt;}
.lsf_c00336{letter-spacing:0.757867pt;}
.lsc_c00336{letter-spacing:1.036200pt;}
.ls12_c00336{letter-spacing:3.037347pt;}
.ws0_c00336{word-spacing:0.000000pt;}
._e_c00336{margin-left:-4.896949pt;}
._10_c00336{margin-left:-3.580302pt;}
._c_c00336{margin-left:-2.560732pt;}
._f_c00336{margin-left:-1.093255pt;}
._d_c00336{width:1.118863pt;}
._0_c00336{width:3.736769pt;}
._1_c00336{width:6.149427pt;}
._3_c00336{width:7.210053pt;}
._2_c00336{width:8.922977pt;}
._9_c00336{width:10.669017pt;}
._4_c00336{width:12.297127pt;}
._7_c00336{width:13.520960pt;}
._a_c00336{width:15.589951pt;}
._6_c00336{width:17.844202pt;}
._b_c00336{width:19.078804pt;}
._11_c00336{width:20.195502pt;}
._8_c00336{width:22.315762pt;}
._5_c00336{width:25.022068pt;}
._14_c00336{width:26.044874pt;}
._12_c00336{width:27.195700pt;}
._13_c00336{width:37.947475pt;}
.fs9_c00336{font-size:65.333333pt;}
.fs7_c00336{font-size:66.000000pt;}
.fsb_c00336{font-size:68.000000pt;}
.fsd_c00336{font-size:68.666667pt;}
.fs8_c00336{font-size:69.333333pt;}
.fs5_c00336{font-size:70.000000pt;}
.fs4_c00336{font-size:70.666667pt;}
.fs0_c00336{font-size:71.333333pt;}
.fs1_c00336{font-size:72.000000pt;}
.fsf_c00336{font-size:73.333333pt;}
.fse_c00336{font-size:74.666667pt;}
.fsc_c00336{font-size:75.333333pt;}
.fs3_c00336{font-size:94.666667pt;}
.fs2_c00336{font-size:128.000000pt;}
.fsa_c00336{font-size:132.666667pt;}
.fs6_c00336{font-size:157.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y23_c00336{bottom:157.440000pt;}
.y22_c00336{bottom:157.441347pt;}
.y21_c00336{bottom:183.360493pt;}
.y20_c00336{bottom:209.920253pt;}
.y1e_c00336{bottom:236.479933pt;}
.y1f_c00336{bottom:236.480000pt;}
.y1d_c00336{bottom:263.359867pt;}
.y1c_c00336{bottom:263.361493pt;}
.y12_c00336{bottom:369.279867pt;}
.y11_c00336{bottom:395.519453pt;}
.yb_c00336{bottom:448.960000pt;}
.ya_c00336{bottom:457.599280pt;}
.y1b_c00336{bottom:493.120813pt;}
.y2a_c00336{bottom:493.439987pt;}
.y2e_c00336{bottom:493.759320pt;}
.y29_c00336{bottom:528.959467pt;}
.y1a_c00336{bottom:528.960893pt;}
.y2d_c00336{bottom:529.599573pt;}
.y19_c00336{bottom:564.800960pt;}
.y28_c00336{bottom:565.119187pt;}
.y27_c00336{bottom:600.640133pt;}
.y18_c00336{bottom:600.641027pt;}
.y2c_c00336{bottom:601.278773pt;}
.y17_c00336{bottom:636.479253pt;}
.y26_c00336{bottom:636.799840pt;}
.y2b_c00336{bottom:637.119187pt;}
.y10_c00336{bottom:672.319333pt;}
.y16_c00336{bottom:707.838947pt;}
.y9_c00336{bottom:708.159093pt;}
.y25_c00336{bottom:708.479080pt;}
.y8_c00336{bottom:743.999160pt;}
.y15_c00336{bottom:744.000000pt;}
.y24_c00336{bottom:744.640133pt;}
.y7_c00336{bottom:780.159400pt;}
.yf_c00336{bottom:780.159747pt;}
.ye_c00336{bottom:816.000000pt;}
.y6_c00336{bottom:816.319640pt;}
.y5_c00336{bottom:852.159733pt;}
.yd_c00336{bottom:852.159747pt;}
.yc_c00336{bottom:887.359187pt;}
.y14_c00336{bottom:887.678920pt;}
.y13_c00336{bottom:913.918493pt;}
.y4_c00336{bottom:913.918947pt;}
.y2_c00336{bottom:975.998693pt;}
.y3_c00336{bottom:975.999027pt;}
.y1_c00336{bottom:1002.559573pt;}
.h8_c00336{height:64.775391pt;}
.hc_c00336{height:66.738281pt;}
.h9_c00336{height:68.046875pt;}
.ha_c00336{height:68.140625pt;}
.h6_c00336{height:68.701172pt;}
.hd_c00336{height:69.355469pt;}
.h11_c00336{height:70.497396pt;}
.h5_c00336{height:71.218750pt;}
.hf_c00336{height:71.617188pt;}
.h1_c00336{height:71.890625pt;}
.h12_c00336{height:72.473958pt;}
.h2_c00336{height:72.562500pt;}
.h10_c00336{height:73.281250pt;}
.he_c00336{height:74.450521pt;}
.h4_c00336{height:98.734375pt;}
.h3_c00336{height:133.500000pt;}
.hb_c00336{height:138.367188pt;}
.h7_c00336{height:164.093750pt;}
.h0_c00336{height:1122.666667pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
.x1a_c00336{left:126.397933pt;}
.x13_c00336{left:228.159733pt;}
.x1_c00336{left:229.119200pt;}
.xa_c00336{left:230.078680pt;}
.x1c_c00336{left:234.878920pt;}
.x1d_c00336{left:257.279320pt;}
.x2_c00336{left:280.960000pt;}
.x3_c00336{left:307.839867pt;}
.x1e_c00336{left:356.159173pt;}
.xb_c00336{left:377.919480pt;}
.x1f_c00336{left:390.719200pt;}
.x1b_c00336{left:397.759320pt;}
.x6_c00336{left:414.079067pt;}
.xe_c00336{left:417.919840pt;}
.x7_c00336{left:419.519453pt;}
.x8_c00336{left:430.719720pt;}
.xf_c00336{left:444.799840pt;}
.x10_c00336{left:458.239707pt;}
.x22_c00336{left:459.199173pt;}
.x11_c00336{left:465.919840pt;}
.xc_c00336{left:467.198693pt;}
.x23_c00336{left:473.919480pt;}
.x24_c00336{left:475.199707pt;}
.xd_c00336{left:488.958907pt;}
.x4_c00336{left:496.319867pt;}
.x9_c00336{left:498.878907pt;}
.x5_c00336{left:520.319867pt;}
.x14_c00336{left:527.358707pt;}
.x15_c00336{left:543.357520pt;}
.x16_c00336{left:568.639200pt;}
.x18_c00336{left:576.000000pt;}
.x17_c00336{left:577.599573pt;}
.x19_c00336{left:583.999467pt;}
.x12_c00336{left:585.599040pt;}
.x20_c00336{left:632.958907pt;}
.x21_c00336{left:679.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eeebae9c56923e2d32bfb825.woff2')format("woff");}.ff1_c00337{font-family:ff1_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;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_6d0201c872615bf819b49919.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_fa374e183ad4fbd9a140bedb.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_94b766078652bbdf4a6e7943.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00337;src:url('chunks/assets/font_5f2c56f423740bdeb92be9ed.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;line-height:1.432129;font-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_c00337{transform:matrix(0.066754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066754,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.100515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100515,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.110092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110092,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.110119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110119,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111111,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.126543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126543,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.135802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135802,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.135848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135848,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138235,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.148734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148734,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.150685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150685,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.156351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156351,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.v2_c00337{vertical-align:1.440120px;}
.v1_c00337{vertical-align:48.954360px;}
.ls2d_c00337{letter-spacing:-15.187500px;}
.ls29_c00337{letter-spacing:-10.548000px;}
.ls15_c00337{letter-spacing:-8.410200px;}
.ls26_c00337{letter-spacing:-7.662000px;}
.ls13_c00337{letter-spacing:-6.876623px;}
.ls30_c00337{letter-spacing:-6.564600px;}
.ls14_c00337{letter-spacing:-6.115050px;}
.ls32_c00337{letter-spacing:-5.753850px;}
.ls19_c00337{letter-spacing:-5.352675px;}
.ls11_c00337{letter-spacing:-4.582275px;}
.ls1b_c00337{letter-spacing:-4.502828px;}
.ls2e_c00337{letter-spacing:-3.828000px;}
.ls12_c00337{letter-spacing:-3.820703px;}
.ls21_c00337{letter-spacing:-3.450975px;}
.ls2f_c00337{letter-spacing:-3.075000px;}
.ls28_c00337{letter-spacing:-2.302875px;}
.ls17_c00337{letter-spacing:-2.294348px;}
.ls16_c00337{letter-spacing:-1.524750px;}
.ls1a_c00337{letter-spacing:-0.763178px;}
.ls18_c00337{letter-spacing:0.000000px;}
.ls8_c00337{letter-spacing:1.148100px;}
.ls1f_c00337{letter-spacing:1.243373px;}
.lsb_c00337{letter-spacing:2.302875px;}
.ls25_c00337{letter-spacing:2.556000px;}
.ls4_c00337{letter-spacing:3.450975px;}
.ls31_c00337{letter-spacing:3.828000px;}
.ls1d_c00337{letter-spacing:4.402200px;}
.ls1_c00337{letter-spacing:4.605750px;}
.ls2a_c00337{letter-spacing:5.017725px;}
.lsf_c00337{letter-spacing:5.106000px;}
.ls3_c00337{letter-spacing:5.753850px;}
.ls24_c00337{letter-spacing:6.277703px;}
.lsc_c00337{letter-spacing:6.384000px;}
.ls27_c00337{letter-spacing:6.783000px;}
.ls7_c00337{letter-spacing:6.908625px;}
.ls2b_c00337{letter-spacing:7.405425px;}
.ls9_c00337{letter-spacing:7.662000px;}
.ls10_c00337{letter-spacing:8.934000px;}
.ls0_c00337{letter-spacing:9.204158px;}
.lse_c00337{letter-spacing:10.212000px;}
.ls6_c00337{letter-spacing:10.359600px;}
.ls2c_c00337{letter-spacing:11.323800px;}
.lsa_c00337{letter-spacing:11.490000px;}
.ls1e_c00337{letter-spacing:11.507033px;}
.ls22_c00337{letter-spacing:12.768000px;}
.ls23_c00337{letter-spacing:13.809908px;}
.lsd_c00337{letter-spacing:14.039400px;}
.ls2_c00337{letter-spacing:16.112783px;}
.ls1c_c00337{letter-spacing:25.318275px;}
.ls20_c00337{letter-spacing:36.514425px;}
.ls5_c00337{letter-spacing:36.825975px;}
.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;}
._13_c00337{margin-left:-397.162316px;}
._15_c00337{margin-left:-232.810282px;}
._27_c00337{margin-left:-23.580153px;}
._20_c00337{margin-left:-18.022132px;}
._d_c00337{margin-left:-9.811997px;}
._8_c00337{margin-left:-3.665820px;}
._7_c00337{margin-left:-1.805457px;}
._1_c00337{width:1.909040px;}
._3_c00337{width:4.317572px;}
._6_c00337{width:6.427949px;}
._0_c00337{width:7.936312px;}
._4_c00337{width:8.963757px;}
._2_c00337{width:10.237118px;}
._9_c00337{width:11.371685px;}
._5_c00337{width:12.735415px;}
._a_c00337{width:15.497624px;}
._b_c00337{width:17.007440px;}
._10_c00337{width:18.888040px;}
._1a_c00337{width:22.505719px;}
._17_c00337{width:31.445373px;}
._11_c00337{width:37.731888px;}
._16_c00337{width:54.420953px;}
._c_c00337{width:78.357204px;}
._1b_c00337{width:122.843923px;}
._e_c00337{width:126.530978px;}
._19_c00337{width:131.400179px;}
._1d_c00337{width:134.682077px;}
._21_c00337{width:137.339540px;}
._12_c00337{width:139.160124px;}
._18_c00337{width:142.625617px;}
._22_c00337{width:151.376115px;}
._14_c00337{width:159.185262px;}
._25_c00337{width:175.199745px;}
._2a_c00337{width:176.364121px;}
._28_c00337{width:181.554179px;}
._1e_c00337{width:190.663826px;}
._f_c00337{width:195.708882px;}
._1f_c00337{width:201.524433px;}
._24_c00337{width:206.564588px;}
._29_c00337{width:210.972562px;}
._1c_c00337{width:216.034256px;}
._23_c00337{width:252.852051px;}
._26_c00337{width:255.839898px;}
.fc0_c00337{color:transparent;}
.fs9_c00337{font-size:54.750000px;}
.fse_c00337{font-size:59.250000px;}
.fs8_c00337{font-size:60.000000px;}
.fs7_c00337{font-size:60.750000px;}
.fsf_c00337{font-size:61.500000px;}
.fsd_c00337{font-size:63.000000px;}
.fsc_c00337{font-size:63.750000px;}
.fsb_c00337{font-size:65.250000px;}
.fs5_c00337{font-size:66.000000px;}
.fs4_c00337{font-size:66.750000px;}
.fs3_c00337{font-size:72.750000px;}
.fs0_c00337{font-size:80.250000px;}
.fs2_c00337{font-size:81.750000px;}
.fs1_c00337{font-size:84.750000px;}
.fs6_c00337{font-size:85.325400px;}
.fs10_c00337{font-size:87.402000px;}
.fsa_c00337{font-size:143.250000px;}
.y0_c00337{bottom:0.000000px;}
.y25_c00337{bottom:240.119385px;}
.y23_c00337{bottom:263.519595px;}
.y24_c00337{bottom:263.520285px;}
.y1f_c00337{bottom:380.340135px;}
.y20_c00337{bottom:380.878950px;}
.y21_c00337{bottom:381.239850px;}
.y1d_c00337{bottom:404.279850px;}
.y1e_c00337{bottom:404.639100px;}
.y1a_c00337{bottom:427.140150px;}
.y1b_c00337{bottom:427.679070px;}
.y1c_c00337{bottom:428.039985px;}
.y17_c00337{bottom:450.180135px;}
.y18_c00337{bottom:450.719100px;}
.y19_c00337{bottom:451.080000px;}
.y15_c00337{bottom:473.759085px;}
.y16_c00337{bottom:474.119985px;}
.y13_c00337{bottom:496.978635px;}
.y14_c00337{bottom:497.519070px;}
.y11_c00337{bottom:520.559100px;}
.y12_c00337{bottom:520.920000px;}
.yf_c00337{bottom:801.180090px;}
.y10_c00337{bottom:801.719055px;}
.yd_c00337{bottom:824.938245px;}
.ye_c00337{bottom:825.479190px;}
.y22_c00337{bottom:849.239220px;}
.yb_c00337{bottom:907.199340px;}
.ya_c00337{bottom:907.199370px;}
.yc_c00337{bottom:907.918425px;}
.y9_c00337{bottom:919.079175px;}
.y8_c00337{bottom:977.398590px;}
.y7_c00337{bottom:977.399190px;}
.y6_c00337{bottom:1001.158815px;}
.y4_c00337{bottom:1088.278860px;}
.y5_c00337{bottom:1088.279205px;}
.y2_c00337{bottom:1117.798455px;}
.y3_c00337{bottom:1117.798920px;}
.y1_c00337{bottom:1148.399775px;}
.hb_c00337{height:57.102539px;}
.h14_c00337{height:61.795898px;}
.ha_c00337{height:62.578125px;}
.h9_c00337{height:63.360352px;}
.hf_c00337{height:64.018245px;}
.h11_c00337{height:64.023765px;}
.h15_c00337{height:64.142578px;}
.h13_c00337{height:65.707031px;}
.he_c00337{height:65.759766px;}
.h12_c00337{height:66.489258px;}
.h6_c00337{height:66.515625px;}
.h5_c00337{height:67.271484px;}
.h10_c00337{height:71.897461px;}
.h4_c00337{height:75.875977px;}
.h8_c00337{height:80.791992px;}
.h1_c00337{height:80.876953px;}
.h3_c00337{height:82.388672px;}
.h2_c00337{height:85.412109px;}
.h7_c00337{height:85.992005px;}
.h16_c00337{height:88.084828px;}
.hd_c00337{height:116.225844px;}
.hc_c00337{height:149.405273px;}
.h0_c00337{height:1263.000000px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:142.199850px;}
.x9_c00337{left:226.078785px;}
.x17_c00337{left:231.837090px;}
.x11_c00337{left:232.919040px;}
.x1e_c00337{left:240.119385px;}
.x1f_c00337{left:255.959400px;}
.xa_c00337{left:266.758500px;}
.xb_c00337{left:290.518635px;}
.x24_c00337{left:303.479685px;}
.x12_c00337{left:321.478545px;}
.x18_c00337{left:343.080000px;}
.xc_c00337{left:349.198785px;}
.x1b_c00337{left:354.599100px;}
.xf_c00337{left:365.759100px;}
.x10_c00337{left:383.398635px;}
.x1c_c00337{left:395.639700px;}
.x5_c00337{left:405.359250px;}
.x6_c00337{left:424.798515px;}
.x1d_c00337{left:442.078815px;}
.x20_c00337{left:465.479685px;}
.x2_c00337{left:479.159415px;}
.x3_c00337{left:492.479685px;}
.x13_c00337{left:493.559100px;}
.x14_c00337{left:505.080000px;}
.x4_c00337{left:506.518620px;}
.x21_c00337{left:511.559685px;}
.x15_c00337{left:523.798920px;}
.xd_c00337{left:533.518620px;}
.x7_c00337{left:544.319235px;}
.xe_c00337{left:551.159820px;}
.x22_c00337{left:558.359850px;}
.x19_c00337{left:563.399235px;}
.x1a_c00337{left:569.158770px;}
.x16_c00337{left:580.678890px;}
.x8_c00337{left:588.958920px;}
.x23_c00337{left:609.838530px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.v2_c00337{vertical-align:1.280107pt;}
.v1_c00337{vertical-align:43.514987pt;}
.ls2d_c00337{letter-spacing:-13.500000pt;}
.ls29_c00337{letter-spacing:-9.376000pt;}
.ls15_c00337{letter-spacing:-7.475733pt;}
.ls26_c00337{letter-spacing:-6.810667pt;}
.ls13_c00337{letter-spacing:-6.112553pt;}
.ls30_c00337{letter-spacing:-5.835200pt;}
.ls14_c00337{letter-spacing:-5.435600pt;}
.ls32_c00337{letter-spacing:-5.114533pt;}
.ls19_c00337{letter-spacing:-4.757933pt;}
.ls11_c00337{letter-spacing:-4.073133pt;}
.ls1b_c00337{letter-spacing:-4.002513pt;}
.ls2e_c00337{letter-spacing:-3.402667pt;}
.ls12_c00337{letter-spacing:-3.396180pt;}
.ls21_c00337{letter-spacing:-3.067533pt;}
.ls2f_c00337{letter-spacing:-2.733333pt;}
.ls28_c00337{letter-spacing:-2.047000pt;}
.ls17_c00337{letter-spacing:-2.039420pt;}
.ls16_c00337{letter-spacing:-1.355333pt;}
.ls1a_c00337{letter-spacing:-0.678380pt;}
.ls18_c00337{letter-spacing:0.000000pt;}
.ls8_c00337{letter-spacing:1.020533pt;}
.ls1f_c00337{letter-spacing:1.105220pt;}
.lsb_c00337{letter-spacing:2.047000pt;}
.ls25_c00337{letter-spacing:2.272000pt;}
.ls4_c00337{letter-spacing:3.067533pt;}
.ls31_c00337{letter-spacing:3.402667pt;}
.ls1d_c00337{letter-spacing:3.913067pt;}
.ls1_c00337{letter-spacing:4.094000pt;}
.ls2a_c00337{letter-spacing:4.460200pt;}
.lsf_c00337{letter-spacing:4.538667pt;}
.ls3_c00337{letter-spacing:5.114533pt;}
.ls24_c00337{letter-spacing:5.580180pt;}
.lsc_c00337{letter-spacing:5.674667pt;}
.ls27_c00337{letter-spacing:6.029333pt;}
.ls7_c00337{letter-spacing:6.141000pt;}
.ls2b_c00337{letter-spacing:6.582600pt;}
.ls9_c00337{letter-spacing:6.810667pt;}
.ls10_c00337{letter-spacing:7.941333pt;}
.ls0_c00337{letter-spacing:8.181473pt;}
.lse_c00337{letter-spacing:9.077333pt;}
.ls6_c00337{letter-spacing:9.208533pt;}
.ls2c_c00337{letter-spacing:10.065600pt;}
.lsa_c00337{letter-spacing:10.213333pt;}
.ls1e_c00337{letter-spacing:10.228473pt;}
.ls22_c00337{letter-spacing:11.349333pt;}
.ls23_c00337{letter-spacing:12.275473pt;}
.lsd_c00337{letter-spacing:12.479467pt;}
.ls2_c00337{letter-spacing:14.322473pt;}
.ls1c_c00337{letter-spacing:22.505133pt;}
.ls20_c00337{letter-spacing:32.457267pt;}
.ls5_c00337{letter-spacing:32.734200pt;}
.ws0_c00337{word-spacing:0.000000pt;}
._13_c00337{margin-left:-353.033170pt;}
._15_c00337{margin-left:-206.942473pt;}
._27_c00337{margin-left:-20.960136pt;}
._20_c00337{margin-left:-16.019673pt;}
._d_c00337{margin-left:-8.721775pt;}
._8_c00337{margin-left:-3.258507pt;}
._7_c00337{margin-left:-1.604851pt;}
._1_c00337{width:1.696925pt;}
._3_c00337{width:3.837842pt;}
._6_c00337{width:5.713732pt;}
._0_c00337{width:7.054500pt;}
._4_c00337{width:7.967784pt;}
._2_c00337{width:9.099660pt;}
._9_c00337{width:10.108164pt;}
._5_c00337{width:11.320369pt;}
._a_c00337{width:13.775666pt;}
._b_c00337{width:15.117724pt;}
._10_c00337{width:16.789369pt;}
._1a_c00337{width:20.005084pt;}
._17_c00337{width:27.951442pt;}
._11_c00337{width:33.539456pt;}
._16_c00337{width:48.374180pt;}
._c_c00337{width:69.650848pt;}
._1b_c00337{width:109.194599pt;}
._e_c00337{width:112.471980pt;}
._19_c00337{width:116.800159pt;}
._1d_c00337{width:119.717401pt;}
._21_c00337{width:122.079591pt;}
._12_c00337{width:123.697888pt;}
._18_c00337{width:126.778326pt;}
._22_c00337{width:134.556547pt;}
._14_c00337{width:141.498011pt;}
._25_c00337{width:155.733106pt;}
._2a_c00337{width:156.768108pt;}
._28_c00337{width:161.381492pt;}
._1e_c00337{width:169.478956pt;}
._f_c00337{width:173.963451pt;}
._1f_c00337{width:179.132829pt;}
._24_c00337{width:183.612967pt;}
._29_c00337{width:187.531166pt;}
._1c_c00337{width:192.030449pt;}
._23_c00337{width:224.757379pt;}
._26_c00337{width:227.413243pt;}
.fs9_c00337{font-size:48.666667pt;}
.fse_c00337{font-size:52.666667pt;}
.fs8_c00337{font-size:53.333333pt;}
.fs7_c00337{font-size:54.000000pt;}
.fsf_c00337{font-size:54.666667pt;}
.fsd_c00337{font-size:56.000000pt;}
.fsc_c00337{font-size:56.666667pt;}
.fsb_c00337{font-size:58.000000pt;}
.fs5_c00337{font-size:58.666667pt;}
.fs4_c00337{font-size:59.333333pt;}
.fs3_c00337{font-size:64.666667pt;}
.fs0_c00337{font-size:71.333333pt;}
.fs2_c00337{font-size:72.666667pt;}
.fs1_c00337{font-size:75.333333pt;}
.fs6_c00337{font-size:75.844800pt;}
.fs10_c00337{font-size:77.690667pt;}
.fsa_c00337{font-size:127.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y25_c00337{bottom:213.439453pt;}
.y23_c00337{bottom:234.239640pt;}
.y24_c00337{bottom:234.240253pt;}
.y1f_c00337{bottom:338.080120pt;}
.y20_c00337{bottom:338.559067pt;}
.y21_c00337{bottom:338.879867pt;}
.y1d_c00337{bottom:359.359867pt;}
.y1e_c00337{bottom:359.679200pt;}
.y1a_c00337{bottom:379.680133pt;}
.y1b_c00337{bottom:380.159173pt;}
.y1c_c00337{bottom:380.479987pt;}
.y17_c00337{bottom:400.160120pt;}
.y18_c00337{bottom:400.639200pt;}
.y19_c00337{bottom:400.960000pt;}
.y15_c00337{bottom:421.119187pt;}
.y16_c00337{bottom:421.439987pt;}
.y13_c00337{bottom:441.758787pt;}
.y14_c00337{bottom:442.239173pt;}
.y11_c00337{bottom:462.719200pt;}
.y12_c00337{bottom:463.040000pt;}
.yf_c00337{bottom:712.160080pt;}
.y10_c00337{bottom:712.639160pt;}
.yd_c00337{bottom:733.278440pt;}
.ye_c00337{bottom:733.759280pt;}
.y22_c00337{bottom:754.879307pt;}
.yb_c00337{bottom:806.399413pt;}
.ya_c00337{bottom:806.399440pt;}
.yc_c00337{bottom:807.038600pt;}
.y9_c00337{bottom:816.959267pt;}
.y8_c00337{bottom:868.798747pt;}
.y7_c00337{bottom:868.799280pt;}
.y6_c00337{bottom:889.918947pt;}
.y4_c00337{bottom:967.358987pt;}
.y5_c00337{bottom:967.359293pt;}
.y2_c00337{bottom:993.598627pt;}
.y3_c00337{bottom:993.599040pt;}
.y1_c00337{bottom:1020.799800pt;}
.hb_c00337{height:50.757812pt;}
.h14_c00337{height:54.929688pt;}
.ha_c00337{height:55.625000pt;}
.h9_c00337{height:56.320312pt;}
.hf_c00337{height:56.905107pt;}
.h11_c00337{height:56.910013pt;}
.h15_c00337{height:57.015625pt;}
.h13_c00337{height:58.406250pt;}
.he_c00337{height:58.453125pt;}
.h12_c00337{height:59.101562pt;}
.h6_c00337{height:59.125000pt;}
.h5_c00337{height:59.796875pt;}
.h10_c00337{height:63.908854pt;}
.h4_c00337{height:67.445312pt;}
.h8_c00337{height:71.815104pt;}
.h1_c00337{height:71.890625pt;}
.h3_c00337{height:73.234375pt;}
.h2_c00337{height:75.921875pt;}
.h7_c00337{height:76.437337pt;}
.h16_c00337{height:78.297625pt;}
.hd_c00337{height:103.311862pt;}
.hc_c00337{height:132.804688pt;}
.h0_c00337{height:1122.666667pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:126.399867pt;}
.x9_c00337{left:200.958920pt;}
.x17_c00337{left:206.077413pt;}
.x11_c00337{left:207.039147pt;}
.x1e_c00337{left:213.439453pt;}
.x1f_c00337{left:227.519467pt;}
.xa_c00337{left:237.118667pt;}
.xb_c00337{left:258.238787pt;}
.x24_c00337{left:269.759720pt;}
.x12_c00337{left:285.758707pt;}
.x18_c00337{left:304.960000pt;}
.xc_c00337{left:310.398920pt;}
.x1b_c00337{left:315.199200pt;}
.xf_c00337{left:325.119200pt;}
.x10_c00337{left:340.798787pt;}
.x1c_c00337{left:351.679733pt;}
.x5_c00337{left:360.319333pt;}
.x6_c00337{left:377.598680pt;}
.x1d_c00337{left:392.958947pt;}
.x20_c00337{left:413.759720pt;}
.x2_c00337{left:425.919480pt;}
.x3_c00337{left:437.759720pt;}
.x13_c00337{left:438.719200pt;}
.x14_c00337{left:448.960000pt;}
.x4_c00337{left:450.238773pt;}
.x21_c00337{left:454.719720pt;}
.x15_c00337{left:465.599040pt;}
.xd_c00337{left:474.238773pt;}
.x7_c00337{left:483.839320pt;}
.xe_c00337{left:489.919840pt;}
.x22_c00337{left:496.319867pt;}
.x19_c00337{left:500.799320pt;}
.x1a_c00337{left:505.918907pt;}
.x16_c00337{left:516.159013pt;}
.x8_c00337{left:523.519040pt;}
.x23_c00337{left:542.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d01af49d869e03be2e014cb.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_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_1808d4f044cb6db6bed92dcd.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_9b728a11fe7a36d989778252.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_dc1af2b53c5c894bef74e083.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00338;src:url('chunks/assets/font_b652ee65a5a9be89fd1e6d3e.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00338;src:url('chunks/assets/font_db35f4720b8b004ed3ba9507.woff2')format("woff");}.ff7_c00338{font-family:ff7_c00338;line-height:1.364746;font-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_c00338{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m1c_c00338{transform:matrix(0.202941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202941,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1e_c00338{transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);}
.me_c00338{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m1a_c00338{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m1d_c00338{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1f_c00338{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m1b_c00338{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.242806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242806,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m16_c00338{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m19_c00338{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.429688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429688,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls25_c00338{letter-spacing:-12.127800px;}
.lsd_c00338{letter-spacing:-7.426125px;}
.ls9_c00338{letter-spacing:-5.945625px;}
.ls1b_c00338{letter-spacing:-5.249700px;}
.ls7_c00338{letter-spacing:-5.196713px;}
.ls1e_c00338{letter-spacing:-5.109375px;}
.ls1f_c00338{letter-spacing:-4.881300px;}
.ls24_c00338{letter-spacing:-4.621238px;}
.ls8_c00338{letter-spacing:-4.456463px;}
.lsa_c00338{letter-spacing:-3.717000px;}
.ls20_c00338{letter-spacing:-3.528000px;}
.ls4_c00338{letter-spacing:-2.968875px;}
.ls21_c00338{letter-spacing:-2.429865px;}
.ls16_c00338{letter-spacing:-2.385000px;}
.ls3_c00338{letter-spacing:-2.229413px;}
.lsc_c00338{letter-spacing:-1.542900px;}
.ls1d_c00338{letter-spacing:-1.512000px;}
.ls5_c00338{letter-spacing:-1.489163px;}
.ls22_c00338{letter-spacing:-0.811800px;}
.lse_c00338{letter-spacing:-0.809325px;}
.ls23_c00338{letter-spacing:-0.777600px;}
.ls6_c00338{letter-spacing:-0.740250px;}
.lsb_c00338{letter-spacing:0.000000px;}
.ls15_c00338{letter-spacing:0.729600px;}
.ls18_c00338{letter-spacing:0.742950px;}
.ls12_c00338{letter-spacing:0.745523px;}
.ls10_c00338{letter-spacing:1.310400px;}
.ls14_c00338{letter-spacing:1.531875px;}
.ls1c_c00338{letter-spacing:3.252225px;}
.lsf_c00338{letter-spacing:3.477300px;}
.ls13_c00338{letter-spacing:3.501750px;}
.ls11_c00338{letter-spacing:3.507000px;}
.ls17_c00338{letter-spacing:4.675395px;}
.ls1a_c00338{letter-spacing:5.617290px;}
.ls0_c00338{letter-spacing:9.654750px;}
.ls1_c00338{letter-spacing:23.774625px;}
.ls2_c00338{letter-spacing:28.232663px;}
.ls19_c00338{letter-spacing:69.425100px;}
.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;}
._19_c00338{margin-left:-176.778371px;}
._8_c00338{margin-left:-123.212785px;}
._1a_c00338{margin-left:-51.666716px;}
._1b_c00338{margin-left:-13.256418px;}
._7_c00338{margin-left:-5.873012px;}
._18_c00338{margin-left:-4.863600px;}
._3_c00338{margin-left:-2.311521px;}
._1e_c00338{margin-left:-1.165990px;}
._1_c00338{width:1.363430px;}
._13_c00338{width:2.458798px;}
._2_c00338{width:3.490274px;}
._5_c00338{width:4.957298px;}
._4_c00338{width:6.129558px;}
._0_c00338{width:7.453747px;}
._1d_c00338{width:8.502132px;}
._15_c00338{width:9.591512px;}
._6_c00338{width:10.941763px;}
._16_c00338{width:12.075035px;}
._17_c00338{width:13.135218px;}
._9_c00338{width:15.204589px;}
._14_c00338{width:16.522315px;}
._a_c00338{width:18.585074px;}
._c_c00338{width:19.648214px;}
._d_c00338{width:21.979006px;}
._10_c00338{width:24.104810px;}
._1c_c00338{width:25.425478px;}
._e_c00338{width:26.586238px;}
._b_c00338{width:28.574601px;}
._11_c00338{width:32.098946px;}
._12_c00338{width:33.602120px;}
._f_c00338{width:34.728899px;}
.fc0_c00338{color:transparent;}
.fs6_c00338{font-size:24.000000px;}
.fs5_c00338{font-size:30.000000px;}
.fs9_c00338{font-size:48.000000px;}
.fs7_c00338{font-size:52.500000px;}
.fsc_c00338{font-size:58.500000px;}
.fs12_c00338{font-size:60.750000px;}
.fs11_c00338{font-size:61.500000px;}
.fs13_c00338{font-size:63.750000px;}
.fs14_c00338{font-size:64.500000px;}
.fsf_c00338{font-size:69.000000px;}
.fsb_c00338{font-size:70.500000px;}
.fs8_c00338{font-size:71.250000px;}
.fs15_c00338{font-size:75.750000px;}
.fse_c00338{font-size:77.250000px;}
.fs0_c00338{font-size:78.750000px;}
.fsa_c00338{font-size:79.500000px;}
.fs3_c00338{font-size:80.250000px;}
.fsd_c00338{font-size:81.000000px;}
.fs4_c00338{font-size:81.750000px;}
.fs1_c00338{font-size:82.500000px;}
.fs10_c00338{font-size:85.500000px;}
.fs2_c00338{font-size:104.250000px;}
.y0_c00338{bottom:0.000000px;}
.y1f_c00338{bottom:138.239850px;}
.y1e_c00338{bottom:176.040600px;}
.y1d_c00338{bottom:276.840585px;}
.y1c_c00338{bottom:276.841965px;}
.y1b_c00338{bottom:306.361500px;}
.y1a_c00338{bottom:335.881020px;}
.y19_c00338{bottom:365.760750px;}
.y18_c00338{bottom:394.919535px;}
.y17_c00338{bottom:425.520315px;}
.y16_c00338{bottom:433.440315px;}
.y15_c00338{bottom:485.640750px;}
.y14_c00338{bottom:545.039385px;}
.y12_c00338{bottom:574.558590px;}
.y13_c00338{bottom:574.560750px;}
.y11_c00338{bottom:604.438320px;}
.y10_c00338{bottom:633.599460px;}
.yf_c00338{bottom:663.118995px;}
.ye_c00338{bottom:782.639985px;}
.yd_c00338{bottom:812.519715px;}
.yc_c00338{bottom:812.520600px;}
.yb_c00338{bottom:843.121005px;}
.ya_c00338{bottom:872.640540px;}
.y9_c00338{bottom:902.160075px;}
.y8_c00338{bottom:932.039790px;}
.y7_c00338{bottom:961.919520px;}
.y5_c00338{bottom:991.440105px;}
.y6_c00338{bottom:991.440855px;}
.y4_c00338{bottom:1021.319820px;}
.y3_c00338{bottom:1050.839430px;}
.y2_c00338{bottom:1081.079340px;}
.y1_c00338{bottom:1110.600675px;}
.h7_c00338{height:25.031250px;}
.h8_c00338{height:30.234375px;}
.h6_c00338{height:31.289062px;}
.h15_c00338{height:47.109375px;}
.hb_c00338{height:48.375000px;}
.h9_c00338{height:51.500244px;}
.he_c00338{height:57.814453px;}
.h1a_c00338{height:60.779297px;}
.h17_c00338{height:61.224609px;}
.h16_c00338{height:61.980469px;}
.h18_c00338{height:63.002930px;}
.h19_c00338{height:65.003906px;}
.ha_c00338{height:71.806641px;}
.h11_c00338{height:71.964844px;}
.hd_c00338{height:73.529297px;}
.h1b_c00338{height:76.341797px;}
.h1_c00338{height:77.288818px;}
.h10_c00338{height:77.853516px;}
.h14_c00338{height:78.024902px;}
.h4_c00338{height:78.760986px;}
.h13_c00338{height:79.365234px;}
.hf_c00338{height:80.050781px;}
.hc_c00338{height:80.121094px;}
.h5_c00338{height:80.233154px;}
.h2_c00338{height:80.969238px;}
.h12_c00338{height:84.498047px;}
.h3_c00338{height:108.729492px;}
.h0_c00338{height:1263.000000px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:136.800225px;}
.x1_c00338{left:137.878950px;}
.x20_c00338{left:138.953085px;}
.x1a_c00338{left:140.039400px;}
.x3_c00338{left:155.159415px;}
.x21_c00338{left:170.279250px;}
.xd_c00338{left:185.758500px;}
.x22_c00338{left:186.839565px;}
.x1b_c00338{left:194.039400px;}
.x6_c00338{left:209.159385px;}
.x9_c00338{left:219.958350px;}
.x7_c00338{left:223.918350px;}
.xe_c00338{left:226.078785px;}
.x1c_c00338{left:227.519100px;}
.x4_c00338{left:232.919535px;}
.xa_c00338{left:242.279850px;}
.x1d_c00338{left:249.118785px;}
.x5_c00338{left:270.359250px;}
.xb_c00338{left:282.239250px;}
.x23_c00338{left:293.040000px;}
.xf_c00338{left:300.239850px;}
.xc_c00338{left:301.319250px;}
.x24_c00338{left:311.759100px;}
.x25_c00338{left:351.000000px;}
.x10_c00338{left:377.639100px;}
.x26_c00338{left:383.039385px;}
.x27_c00338{left:394.919535px;}
.x11_c00338{left:399.958920px;}
.x12_c00338{left:418.318770px;}
.x13_c00338{left:448.919535px;}
.x1e_c00338{left:528.479235px;}
.x14_c00338{left:544.319235px;}
.x1f_c00338{left:566.279850px;}
.x15_c00338{left:567.718500px;}
.x16_c00338{left:606.239220px;}
.x18_c00338{left:650.519670px;}
.x17_c00338{left:697.319820px;}
.x19_c00338{left:742.318770px;}
.x8_c00338{left:743.399820px;}
.x28_c00338{left:752.758530px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls25_c00338{letter-spacing:-10.780267pt;}
.lsd_c00338{letter-spacing:-6.601000pt;}
.ls9_c00338{letter-spacing:-5.285000pt;}
.ls1b_c00338{letter-spacing:-4.666400pt;}
.ls7_c00338{letter-spacing:-4.619300pt;}
.ls1e_c00338{letter-spacing:-4.541667pt;}
.ls1f_c00338{letter-spacing:-4.338933pt;}
.ls24_c00338{letter-spacing:-4.107767pt;}
.ls8_c00338{letter-spacing:-3.961300pt;}
.lsa_c00338{letter-spacing:-3.304000pt;}
.ls20_c00338{letter-spacing:-3.136000pt;}
.ls4_c00338{letter-spacing:-2.639000pt;}
.ls21_c00338{letter-spacing:-2.159880pt;}
.ls16_c00338{letter-spacing:-2.120000pt;}
.ls3_c00338{letter-spacing:-1.981700pt;}
.lsc_c00338{letter-spacing:-1.371467pt;}
.ls1d_c00338{letter-spacing:-1.344000pt;}
.ls5_c00338{letter-spacing:-1.323700pt;}
.ls22_c00338{letter-spacing:-0.721600pt;}
.lse_c00338{letter-spacing:-0.719400pt;}
.ls23_c00338{letter-spacing:-0.691200pt;}
.ls6_c00338{letter-spacing:-0.658000pt;}
.lsb_c00338{letter-spacing:0.000000pt;}
.ls15_c00338{letter-spacing:0.648533pt;}
.ls18_c00338{letter-spacing:0.660400pt;}
.ls12_c00338{letter-spacing:0.662687pt;}
.ls10_c00338{letter-spacing:1.164800pt;}
.ls14_c00338{letter-spacing:1.361667pt;}
.ls1c_c00338{letter-spacing:2.890867pt;}
.lsf_c00338{letter-spacing:3.090933pt;}
.ls13_c00338{letter-spacing:3.112667pt;}
.ls11_c00338{letter-spacing:3.117333pt;}
.ls17_c00338{letter-spacing:4.155907pt;}
.ls1a_c00338{letter-spacing:4.993147pt;}
.ls0_c00338{letter-spacing:8.582000pt;}
.ls1_c00338{letter-spacing:21.133000pt;}
.ls2_c00338{letter-spacing:25.095700pt;}
.ls19_c00338{letter-spacing:61.711200pt;}
.ws0_c00338{word-spacing:0.000000pt;}
._19_c00338{margin-left:-157.136330pt;}
._8_c00338{margin-left:-109.522475pt;}
._1a_c00338{margin-left:-45.925970pt;}
._1b_c00338{margin-left:-11.783483pt;}
._7_c00338{margin-left:-5.220455pt;}
._18_c00338{margin-left:-4.323200pt;}
._3_c00338{margin-left:-2.054685pt;}
._1e_c00338{margin-left:-1.036436pt;}
._1_c00338{width:1.211938pt;}
._13_c00338{width:2.185598pt;}
._2_c00338{width:3.102466pt;}
._5_c00338{width:4.406487pt;}
._4_c00338{width:5.448496pt;}
._0_c00338{width:6.625553pt;}
._1d_c00338{width:7.557451pt;}
._15_c00338{width:8.525789pt;}
._6_c00338{width:9.726011pt;}
._16_c00338{width:10.733364pt;}
._17_c00338{width:11.675749pt;}
._9_c00338{width:13.515191pt;}
._14_c00338{width:14.686502pt;}
._a_c00338{width:16.520066pt;}
._c_c00338{width:17.465079pt;}
._d_c00338{width:19.536894pt;}
._10_c00338{width:21.426498pt;}
._1c_c00338{width:22.600425pt;}
._e_c00338{width:23.632211pt;}
._b_c00338{width:25.399645pt;}
._11_c00338{width:28.532396pt;}
._12_c00338{width:29.868551pt;}
._f_c00338{width:30.870132pt;}
.fs6_c00338{font-size:21.333333pt;}
.fs5_c00338{font-size:26.666667pt;}
.fs9_c00338{font-size:42.666667pt;}
.fs7_c00338{font-size:46.666667pt;}
.fsc_c00338{font-size:52.000000pt;}
.fs12_c00338{font-size:54.000000pt;}
.fs11_c00338{font-size:54.666667pt;}
.fs13_c00338{font-size:56.666667pt;}
.fs14_c00338{font-size:57.333333pt;}
.fsf_c00338{font-size:61.333333pt;}
.fsb_c00338{font-size:62.666667pt;}
.fs8_c00338{font-size:63.333333pt;}
.fs15_c00338{font-size:67.333333pt;}
.fse_c00338{font-size:68.666667pt;}
.fs0_c00338{font-size:70.000000pt;}
.fsa_c00338{font-size:70.666667pt;}
.fs3_c00338{font-size:71.333333pt;}
.fsd_c00338{font-size:72.000000pt;}
.fs4_c00338{font-size:72.666667pt;}
.fs1_c00338{font-size:73.333333pt;}
.fs10_c00338{font-size:76.000000pt;}
.fs2_c00338{font-size:92.666667pt;}
.y0_c00338{bottom:0.000000pt;}
.y1f_c00338{bottom:122.879867pt;}
.y1e_c00338{bottom:156.480533pt;}
.y1d_c00338{bottom:246.080520pt;}
.y1c_c00338{bottom:246.081747pt;}
.y1b_c00338{bottom:272.321333pt;}
.y1a_c00338{bottom:298.560907pt;}
.y19_c00338{bottom:325.120667pt;}
.y18_c00338{bottom:351.039587pt;}
.y17_c00338{bottom:378.240280pt;}
.y16_c00338{bottom:385.280280pt;}
.y15_c00338{bottom:431.680667pt;}
.y14_c00338{bottom:484.479453pt;}
.y12_c00338{bottom:510.718747pt;}
.y13_c00338{bottom:510.720667pt;}
.y11_c00338{bottom:537.278507pt;}
.y10_c00338{bottom:563.199520pt;}
.yf_c00338{bottom:589.439107pt;}
.ye_c00338{bottom:695.679987pt;}
.yd_c00338{bottom:722.239747pt;}
.yc_c00338{bottom:722.240533pt;}
.yb_c00338{bottom:749.440893pt;}
.ya_c00338{bottom:775.680480pt;}
.y9_c00338{bottom:801.920067pt;}
.y8_c00338{bottom:828.479813pt;}
.y7_c00338{bottom:855.039573pt;}
.y5_c00338{bottom:881.280093pt;}
.y6_c00338{bottom:881.280760pt;}
.y4_c00338{bottom:907.839840pt;}
.y3_c00338{bottom:934.079493pt;}
.y2_c00338{bottom:960.959413pt;}
.y1_c00338{bottom:987.200600pt;}
.h7_c00338{height:22.250000pt;}
.h8_c00338{height:26.875000pt;}
.h6_c00338{height:27.812500pt;}
.h15_c00338{height:41.875000pt;}
.hb_c00338{height:43.000000pt;}
.h9_c00338{height:45.777995pt;}
.he_c00338{height:51.390625pt;}
.h1a_c00338{height:54.026042pt;}
.h17_c00338{height:54.421875pt;}
.h16_c00338{height:55.093750pt;}
.h18_c00338{height:56.002604pt;}
.h19_c00338{height:57.781250pt;}
.ha_c00338{height:63.828125pt;}
.h11_c00338{height:63.968750pt;}
.hd_c00338{height:65.359375pt;}
.h1b_c00338{height:67.859375pt;}
.h1_c00338{height:68.701172pt;}
.h10_c00338{height:69.203125pt;}
.h14_c00338{height:69.355469pt;}
.h4_c00338{height:70.009766pt;}
.h13_c00338{height:70.546875pt;}
.hf_c00338{height:71.156250pt;}
.hc_c00338{height:71.218750pt;}
.h5_c00338{height:71.318359pt;}
.h2_c00338{height:71.972656pt;}
.h12_c00338{height:75.109375pt;}
.h3_c00338{height:96.648438pt;}
.h0_c00338{height:1122.666667pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:121.600200pt;}
.x1_c00338{left:122.559067pt;}
.x20_c00338{left:123.513853pt;}
.x1a_c00338{left:124.479467pt;}
.x3_c00338{left:137.919480pt;}
.x21_c00338{left:151.359333pt;}
.xd_c00338{left:165.118667pt;}
.x22_c00338{left:166.079613pt;}
.x1b_c00338{left:172.479467pt;}
.x6_c00338{left:185.919453pt;}
.x9_c00338{left:195.518533pt;}
.x7_c00338{left:199.038533pt;}
.xe_c00338{left:200.958920pt;}
.x1c_c00338{left:202.239200pt;}
.x4_c00338{left:207.039587pt;}
.xa_c00338{left:215.359867pt;}
.x1d_c00338{left:221.438920pt;}
.x5_c00338{left:240.319333pt;}
.xb_c00338{left:250.879333pt;}
.x23_c00338{left:260.480000pt;}
.xf_c00338{left:266.879867pt;}
.xc_c00338{left:267.839333pt;}
.x24_c00338{left:277.119200pt;}
.x25_c00338{left:312.000000pt;}
.x10_c00338{left:335.679200pt;}
.x26_c00338{left:340.479453pt;}
.x27_c00338{left:351.039587pt;}
.x11_c00338{left:355.519040pt;}
.x12_c00338{left:371.838907pt;}
.x13_c00338{left:399.039587pt;}
.x1e_c00338{left:469.759320pt;}
.x14_c00338{left:483.839320pt;}
.x1f_c00338{left:503.359867pt;}
.x15_c00338{left:504.638667pt;}
.x16_c00338{left:538.879307pt;}
.x18_c00338{left:578.239707pt;}
.x17_c00338{left:619.839840pt;}
.x19_c00338{left:659.838907pt;}
.x8_c00338{left:660.799840pt;}
.x28_c00338{left:669.118693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c3529e66a45c4cbac760306.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_68884c2129df56231f358a7c.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff3_c00339{font-family:ff3_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;}
.ma_c00339{transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls11_c00339{letter-spacing:-8.914500px;}
.lse_c00339{letter-spacing:-8.175038px;}
.ls14_c00339{letter-spacing:-7.426125px;}
.ls13_c00339{letter-spacing:-6.685875px;}
.lsc_c00339{letter-spacing:-5.945625px;}
.ls12_c00339{letter-spacing:-5.440103px;}
.lsd_c00339{letter-spacing:-5.196713px;}
.ls6_c00339{letter-spacing:-4.456463px;}
.ls4_c00339{letter-spacing:-3.717000px;}
.ls7_c00339{letter-spacing:-2.968875px;}
.ls8_c00339{letter-spacing:-2.229413px;}
.ls9_c00339{letter-spacing:-1.489163px;}
.ls16_c00339{letter-spacing:-0.818850px;}
.ls10_c00339{letter-spacing:-0.740250px;}
.lsa_c00339{letter-spacing:0.000000px;}
.ls5_c00339{letter-spacing:0.787800px;}
.ls1_c00339{letter-spacing:1.489163px;}
.ls17_c00339{letter-spacing:1.645425px;}
.lsb_c00339{letter-spacing:1.823310px;}
.lsf_c00339{letter-spacing:1.838250px;}
.ls15_c00339{letter-spacing:1.914000px;}
.ls2_c00339{letter-spacing:3.717000px;}
.ls3_c00339{letter-spacing:7.426125px;}
.ls0_c00339{letter-spacing:10.402875px;}
.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;}
._7_c00339{margin-left:-22.310053px;}
._1f_c00339{margin-left:-19.492066px;}
._1_c00339{margin-left:-16.727035px;}
._22_c00339{margin-left:-14.400418px;}
._8_c00339{margin-left:-13.220164px;}
._18_c00339{margin-left:-11.924860px;}
._d_c00339{margin-left:-9.524055px;}
._1d_c00339{margin-left:-7.507743px;}
._b_c00339{margin-left:-5.810561px;}
._c_c00339{margin-left:-4.616637px;}
._19_c00339{margin-left:-2.207407px;}
._a_c00339{width:1.202825px;}
._9_c00339{width:2.765641px;}
._17_c00339{width:3.818900px;}
._e_c00339{width:5.666493px;}
._4_c00339{width:7.384922px;}
._f_c00339{width:8.894099px;}
._3_c00339{width:10.041160px;}
._2_c00339{width:11.450844px;}
._1e_c00339{width:12.580862px;}
._6_c00339{width:14.371816px;}
._20_c00339{width:15.589632px;}
._1c_c00339{width:16.742309px;}
._11_c00339{width:17.789239px;}
._0_c00339{width:19.004737px;}
._21_c00339{width:20.036154px;}
._12_c00339{width:21.413180px;}
._16_c00339{width:22.547195px;}
._13_c00339{width:24.390509px;}
._15_c00339{width:26.344297px;}
._5_c00339{width:27.845465px;}
._10_c00339{width:29.123414px;}
._1a_c00339{width:31.460833px;}
._1b_c00339{width:33.270894px;}
._14_c00339{width:35.240803px;}
.fc0_c00339{color:transparent;}
.fsa_c00339{font-size:77.250000px;}
.fs1_c00339{font-size:78.000000px;}
.fs0_c00339{font-size:78.750000px;}
.fs2_c00339{font-size:80.250000px;}
.fs4_c00339{font-size:81.000000px;}
.fs8_c00339{font-size:81.750000px;}
.fs5_c00339{font-size:82.500000px;}
.fs7_c00339{font-size:84.750000px;}
.fs6_c00339{font-size:85.500000px;}
.fs3_c00339{font-size:86.250000px;}
.fs9_c00339{font-size:87.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1f_c00339{bottom:512.279850px;}
.y1e_c00339{bottom:512.279865px;}
.y1c_c00339{bottom:541.800735px;}
.y1d_c00339{bottom:541.801215px;}
.y1b_c00339{bottom:570.959775px;}
.y1a_c00339{bottom:600.481110px;}
.y19_c00339{bottom:629.640150px;}
.y18_c00339{bottom:629.641095px;}
.y17_c00339{bottom:659.881005px;}
.y16_c00339{bottom:689.760720px;}
.y15_c00339{bottom:689.761620px;}
.y14_c00339{bottom:720.001530px;}
.y13_c00339{bottom:779.760975px;}
.y12_c00339{bottom:809.640705px;}
.y11_c00339{bottom:839.880615px;}
.y10_c00339{bottom:839.880705px;}
.yf_c00339{bottom:869.400240px;}
.ye_c00339{bottom:869.401320px;}
.yd_c00339{bottom:899.281035px;}
.yc_c00339{bottom:928.800570px;}
.yb_c00339{bottom:928.801455px;}
.ya_c00339{bottom:958.681185px;}
.y9_c00339{bottom:958.681455px;}
.y8_c00339{bottom:988.200990px;}
.y6_c00339{bottom:1018.440645px;}
.y7_c00339{bottom:1018.440855px;}
.y5_c00339{bottom:1047.960180px;}
.y4_c00339{bottom:1078.560585px;}
.y3_c00339{bottom:1108.440315px;}
.y2_c00339{bottom:1108.441110px;}
.y1_c00339{bottom:1138.320825px;}
.h1_c00339{height:77.288818px;}
.hb_c00339{height:77.853516px;}
.h2_c00339{height:78.609375px;}
.h3_c00339{height:78.760986px;}
.h5_c00339{height:79.497070px;}
.h9_c00339{height:80.233154px;}
.h6_c00339{height:80.969238px;}
.h8_c00339{height:83.177490px;}
.h7_c00339{height:83.913574px;}
.ha_c00339{height:85.385742px;}
.h4_c00339{height:89.956055px;}
.h0_c00339{height:1263.000000px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:137.878950px;}
.x4_c00339{left:139.317645px;}
.x2_c00339{left:189.359250px;}
.x1e_c00339{left:199.078785px;}
.x18_c00339{left:208.080000px;}
.x14_c00339{left:218.878950px;}
.x5_c00339{left:220.678500px;}
.x19_c00339{left:224.638500px;}
.x3_c00339{left:226.439685px;}
.x6_c00339{left:235.439250px;}
.x15_c00339{left:241.559685px;}
.x1f_c00339{left:249.479685px;}
.x7_c00339{left:270.000000px;}
.x8_c00339{left:277.559100px;}
.x20_c00339{left:385.199850px;}
.x1a_c00339{left:429.478635px;}
.x1b_c00339{left:455.399235px;}
.x12_c00339{left:468.358665px;}
.x13_c00339{left:481.319820px;}
.xb_c00339{left:482.758530px;}
.xc_c00339{left:499.318770px;}
.x9_c00339{left:536.758530px;}
.xa_c00339{left:558.719100px;}
.x1c_c00339{left:560.879520px;}
.x10_c00339{left:572.398635px;}
.x1d_c00339{left:575.999400px;}
.x11_c00339{left:584.998950px;}
.xe_c00339{left:604.078770px;}
.xf_c00339{left:618.478635px;}
.x16_c00339{left:701.279850px;}
.x17_c00339{left:715.318770px;}
.xd_c00339{left:759.239820px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls11_c00339{letter-spacing:-7.924000pt;}
.lse_c00339{letter-spacing:-7.266700pt;}
.ls14_c00339{letter-spacing:-6.601000pt;}
.ls13_c00339{letter-spacing:-5.943000pt;}
.lsc_c00339{letter-spacing:-5.285000pt;}
.ls12_c00339{letter-spacing:-4.835647pt;}
.lsd_c00339{letter-spacing:-4.619300pt;}
.ls6_c00339{letter-spacing:-3.961300pt;}
.ls4_c00339{letter-spacing:-3.304000pt;}
.ls7_c00339{letter-spacing:-2.639000pt;}
.ls8_c00339{letter-spacing:-1.981700pt;}
.ls9_c00339{letter-spacing:-1.323700pt;}
.ls16_c00339{letter-spacing:-0.727867pt;}
.ls10_c00339{letter-spacing:-0.658000pt;}
.lsa_c00339{letter-spacing:0.000000pt;}
.ls5_c00339{letter-spacing:0.700267pt;}
.ls1_c00339{letter-spacing:1.323700pt;}
.ls17_c00339{letter-spacing:1.462600pt;}
.lsb_c00339{letter-spacing:1.620720pt;}
.lsf_c00339{letter-spacing:1.634000pt;}
.ls15_c00339{letter-spacing:1.701333pt;}
.ls2_c00339{letter-spacing:3.304000pt;}
.ls3_c00339{letter-spacing:6.601000pt;}
.ls0_c00339{letter-spacing:9.247000pt;}
.ws0_c00339{word-spacing:0.000000pt;}
._7_c00339{margin-left:-19.831158pt;}
._1f_c00339{margin-left:-17.326281pt;}
._1_c00339{margin-left:-14.868475pt;}
._22_c00339{margin-left:-12.800372pt;}
._8_c00339{margin-left:-11.751257pt;}
._18_c00339{margin-left:-10.599875pt;}
._d_c00339{margin-left:-8.465826pt;}
._1d_c00339{margin-left:-6.673549pt;}
._b_c00339{margin-left:-5.164943pt;}
._c_c00339{margin-left:-4.103677pt;}
._19_c00339{margin-left:-1.962140pt;}
._a_c00339{width:1.069177pt;}
._9_c00339{width:2.458347pt;}
._17_c00339{width:3.394577pt;}
._e_c00339{width:5.036883pt;}
._4_c00339{width:6.564375pt;}
._f_c00339{width:7.905866pt;}
._3_c00339{width:8.925475pt;}
._2_c00339{width:10.178528pt;}
._1e_c00339{width:11.182989pt;}
._6_c00339{width:12.774947pt;}
._20_c00339{width:13.857451pt;}
._1c_c00339{width:14.882053pt;}
._11_c00339{width:15.812657pt;}
._0_c00339{width:16.893100pt;}
._21_c00339{width:17.809915pt;}
._12_c00339{width:19.033938pt;}
._16_c00339{width:20.041951pt;}
._13_c00339{width:21.680453pt;}
._15_c00339{width:23.417153pt;}
._5_c00339{width:24.751525pt;}
._10_c00339{width:25.887479pt;}
._1a_c00339{width:27.965185pt;}
._1b_c00339{width:29.574128pt;}
._14_c00339{width:31.325158pt;}
.fsa_c00339{font-size:68.666667pt;}
.fs1_c00339{font-size:69.333333pt;}
.fs0_c00339{font-size:70.000000pt;}
.fs2_c00339{font-size:71.333333pt;}
.fs4_c00339{font-size:72.000000pt;}
.fs8_c00339{font-size:72.666667pt;}
.fs5_c00339{font-size:73.333333pt;}
.fs7_c00339{font-size:75.333333pt;}
.fs6_c00339{font-size:76.000000pt;}
.fs3_c00339{font-size:76.666667pt;}
.fs9_c00339{font-size:77.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y1f_c00339{bottom:455.359867pt;}
.y1e_c00339{bottom:455.359880pt;}
.y1c_c00339{bottom:481.600653pt;}
.y1d_c00339{bottom:481.601080pt;}
.y1b_c00339{bottom:507.519800pt;}
.y1a_c00339{bottom:533.760987pt;}
.y19_c00339{bottom:559.680133pt;}
.y18_c00339{bottom:559.680973pt;}
.y17_c00339{bottom:586.560893pt;}
.y16_c00339{bottom:613.120640pt;}
.y15_c00339{bottom:613.121440pt;}
.y14_c00339{bottom:640.001360pt;}
.y13_c00339{bottom:693.120867pt;}
.y12_c00339{bottom:719.680627pt;}
.y11_c00339{bottom:746.560547pt;}
.y10_c00339{bottom:746.560627pt;}
.yf_c00339{bottom:772.800213pt;}
.ye_c00339{bottom:772.801173pt;}
.yd_c00339{bottom:799.360920pt;}
.yc_c00339{bottom:825.600507pt;}
.yb_c00339{bottom:825.601293pt;}
.ya_c00339{bottom:852.161053pt;}
.y9_c00339{bottom:852.161293pt;}
.y8_c00339{bottom:878.400880pt;}
.y6_c00339{bottom:905.280573pt;}
.y7_c00339{bottom:905.280760pt;}
.y5_c00339{bottom:931.520160pt;}
.y4_c00339{bottom:958.720520pt;}
.y3_c00339{bottom:985.280280pt;}
.y2_c00339{bottom:985.280987pt;}
.y1_c00339{bottom:1011.840733pt;}
.h1_c00339{height:68.701172pt;}
.hb_c00339{height:69.203125pt;}
.h2_c00339{height:69.875000pt;}
.h3_c00339{height:70.009766pt;}
.h5_c00339{height:70.664062pt;}
.h9_c00339{height:71.318359pt;}
.h6_c00339{height:71.972656pt;}
.h8_c00339{height:73.935547pt;}
.h7_c00339{height:74.589844pt;}
.ha_c00339{height:75.898438pt;}
.h4_c00339{height:79.960938pt;}
.h0_c00339{height:1122.666667pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:122.559067pt;}
.x4_c00339{left:123.837907pt;}
.x2_c00339{left:168.319333pt;}
.x1e_c00339{left:176.958920pt;}
.x18_c00339{left:184.960000pt;}
.x14_c00339{left:194.559067pt;}
.x5_c00339{left:196.158667pt;}
.x19_c00339{left:199.678667pt;}
.x3_c00339{left:201.279720pt;}
.x6_c00339{left:209.279333pt;}
.x15_c00339{left:214.719720pt;}
.x1f_c00339{left:221.759720pt;}
.x7_c00339{left:240.000000pt;}
.x8_c00339{left:246.719200pt;}
.x20_c00339{left:342.399867pt;}
.x1a_c00339{left:381.758787pt;}
.x1b_c00339{left:404.799320pt;}
.x12_c00339{left:416.318813pt;}
.x13_c00339{left:427.839840pt;}
.xb_c00339{left:429.118693pt;}
.xc_c00339{left:443.838907pt;}
.x9_c00339{left:477.118693pt;}
.xa_c00339{left:496.639200pt;}
.x1c_c00339{left:498.559573pt;}
.x10_c00339{left:508.798787pt;}
.x1d_c00339{left:511.999467pt;}
.x11_c00339{left:519.999067pt;}
.xe_c00339{left:536.958907pt;}
.xf_c00339{left:549.758787pt;}
.x16_c00339{left:623.359867pt;}
.x17_c00339{left:635.838907pt;}
.xd_c00339{left:674.879840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7611957a0cc5a4d667f3afd.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_d90d8b7860725d8fe80b6aa4.woff2')format("woff");}.ff3_c00340{font-family:ff3_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:ff4_c00340;src:url('chunks/assets/font_166f3609f6fb4a7459a5d216.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00340{transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140244,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{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);}
.m0_c00340{transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);}
.ma_c00340{transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173780,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186111,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.342697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342697,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls10_c00340{letter-spacing:-18.603225px;}
.ls11_c00340{letter-spacing:-2.237625px;}
.ls13_c00340{letter-spacing:-1.609650px;}
.lsa_c00340{letter-spacing:0.000000px;}
.ls4_c00340{letter-spacing:1.115625px;}
.ls6_c00340{letter-spacing:2.237625px;}
.ls14_c00340{letter-spacing:3.234900px;}
.ls5_c00340{letter-spacing:3.353250px;}
.ls2_c00340{letter-spacing:4.475888px;}
.ls1_c00340{letter-spacing:5.591513px;}
.lsb_c00340{letter-spacing:6.712875px;}
.ls12_c00340{letter-spacing:6.924000px;}
.ls3_c00340{letter-spacing:7.828500px;}
.ls7_c00340{letter-spacing:8.950500px;}
.lsf_c00340{letter-spacing:10.066125px;}
.lsd_c00340{letter-spacing:10.694850px;}
.lsc_c00340{letter-spacing:11.181750px;}
.ls8_c00340{letter-spacing:13.418738px;}
.ls9_c00340{letter-spacing:16.779000px;}
.ls0_c00340{letter-spacing:17.894625px;}
.lse_c00340{letter-spacing:27.945225px;}
.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;}
._13_c00340{margin-left:-57.763942px;}
._9_c00340{margin-left:-10.308532px;}
._e_c00340{margin-left:-7.416876px;}
._11_c00340{margin-left:-5.670518px;}
._10_c00340{width:6.045558px;}
._f_c00340{width:9.632334px;}
._7_c00340{width:13.705087px;}
._0_c00340{width:17.486267px;}
._a_c00340{width:19.265742px;}
._8_c00340{width:21.407832px;}
._d_c00340{width:24.658724px;}
._12_c00340{width:27.537674px;}
._c_c00340{width:31.703099px;}
._b_c00340{width:56.196117px;}
._5_c00340{width:150.640378px;}
._6_c00340{width:152.807788px;}
._3_c00340{width:159.498854px;}
._2_c00340{width:164.548861px;}
._4_c00340{width:354.494782px;}
._1_c00340{width:395.946597px;}
.fc0_c00340{color:transparent;}
.fs8_c00340{font-size:54.750000px;}
.fs5_c00340{font-size:57.750000px;}
.fs7_c00340{font-size:60.000000px;}
.fs2_c00340{font-size:60.750000px;}
.fs4_c00340{font-size:61.500000px;}
.fs0_c00340{font-size:63.750000px;}
.fs1_c00340{font-size:65.250000px;}
.fs6_c00340{font-size:66.750000px;}
.fs3_c00340{font-size:67.500000px;}
.y0_c00340{bottom:0.000000px;}
.y30_c00340{bottom:231.842955px;}
.y27_c00340{bottom:267.120615px;}
.y26_c00340{bottom:278.640135px;}
.y1c_c00340{bottom:290.158905px;}
.y1d_c00340{bottom:290.159385px;}
.y2e_c00340{bottom:290.881665px;}
.y1b_c00340{bottom:302.038830px;}
.y19_c00340{bottom:338.399850px;}
.y11_c00340{bottom:360.000180px;}
.y10_c00340{bottom:371.880105px;}
.yf_c00340{bottom:383.760045px;}
.ye_c00340{bottom:395.639970px;}
.y18_c00340{bottom:442.799235px;}
.y25_c00340{bottom:443.161440px;}
.y2f_c00340{bottom:443.162910px;}
.y31_c00340{bottom:443.521620px;}
.y6_c00340{bottom:711.719520px;}
.y5_c00340{bottom:735.118350px;}
.y4_c00340{bottom:781.918710px;}
.yc_c00340{bottom:853.199130px;}
.y17_c00340{bottom:853.199340px;}
.y24_c00340{bottom:853.201395px;}
.y2d_c00340{bottom:853.561575px;}
.yb_c00340{bottom:876.598575px;}
.y23_c00340{bottom:876.961005px;}
.y16_c00340{bottom:877.318815px;}
.y2c_c00340{bottom:877.321170px;}
.ya_c00340{bottom:900.358665px;}
.y22_c00340{bottom:900.360465px;}
.y15_c00340{bottom:900.361110px;}
.y2b_c00340{bottom:900.722325px;}
.y9_c00340{bottom:923.759805px;}
.y21_c00340{bottom:924.120075px;}
.y14_c00340{bottom:924.120705px;}
.y2a_c00340{bottom:924.481935px;}
.y8_c00340{bottom:947.159250px;}
.y20_c00340{bottom:947.159370px;}
.y13_c00340{bottom:947.160000px;}
.y29_c00340{bottom:947.521230px;}
.y7_c00340{bottom:970.560405px;}
.y12_c00340{bottom:970.561155px;}
.y1f_c00340{bottom:970.918965px;}
.y28_c00340{bottom:970.920660px;}
.y1a_c00340{bottom:1005.838905px;}
.y3_c00340{bottom:1005.838920px;}
.yd_c00340{bottom:1005.839055px;}
.y1e_c00340{bottom:1006.199805px;}
.y2_c00340{bottom:1087.199805px;}
.y1_c00340{bottom:1111.319190px;}
.h9_c00340{height:55.177734px;}
.h6_c00340{height:58.201172px;}
.ha_c00340{height:60.358887px;}
.h1_c00340{height:62.567139px;}
.h8_c00340{height:62.578125px;}
.h3_c00340{height:63.360352px;}
.h2_c00340{height:64.039307px;}
.h5_c00340{height:64.142578px;}
.h7_c00340{height:65.511475px;}
.h4_c00340{height:68.027344px;}
.h0_c00340{height:1263.000000px;}
.w0_c00340{width:892.500000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:340.919535px;}
.xa_c00340{left:347.039790px;}
.xb_c00340{left:348.119205px;}
.xf_c00340{left:349.199910px;}
.xd_c00340{left:353.878950px;}
.xc_c00340{left:365.399850px;}
.x7_c00340{left:375.478635px;}
.x2_c00340{left:381.239850px;}
.x8_c00340{left:398.518665px;}
.x3_c00340{left:410.398635px;}
.x9_c00340{left:427.679070px;}
.xe_c00340{left:434.159130px;}
.x16_c00340{left:440.999820px;}
.x10_c00340{left:445.320210px;}
.x11_c00340{left:457.918950px;}
.x4_c00340{left:473.759085px;}
.x12_c00340{left:491.759535px;}
.x5_c00340{left:497.519070px;}
.x1a_c00340{left:498.601050px;}
.x15_c00340{left:503.279085px;}
.x14_c00340{left:549.719565px;}
.x17_c00340{left:555.481110px;}
.x13_c00340{left:557.639700px;}
.x18_c00340{left:561.240555px;}
.x19_c00340{left:575.281770px;}
.x6_c00340{left:583.558635px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls10_c00340{letter-spacing:-16.536200pt;}
.ls11_c00340{letter-spacing:-1.989000pt;}
.ls13_c00340{letter-spacing:-1.430800pt;}
.lsa_c00340{letter-spacing:0.000000pt;}
.ls4_c00340{letter-spacing:0.991667pt;}
.ls6_c00340{letter-spacing:1.989000pt;}
.ls14_c00340{letter-spacing:2.875467pt;}
.ls5_c00340{letter-spacing:2.980667pt;}
.ls2_c00340{letter-spacing:3.978567pt;}
.ls1_c00340{letter-spacing:4.970233pt;}
.lsb_c00340{letter-spacing:5.967000pt;}
.ls12_c00340{letter-spacing:6.154667pt;}
.ls3_c00340{letter-spacing:6.958667pt;}
.ls7_c00340{letter-spacing:7.956000pt;}
.lsf_c00340{letter-spacing:8.947667pt;}
.lsd_c00340{letter-spacing:9.506533pt;}
.lsc_c00340{letter-spacing:9.939333pt;}
.ls8_c00340{letter-spacing:11.927767pt;}
.ls9_c00340{letter-spacing:14.914667pt;}
.ls0_c00340{letter-spacing:15.906333pt;}
.lse_c00340{letter-spacing:24.840200pt;}
.ws0_c00340{word-spacing:0.000000pt;}
._13_c00340{margin-left:-51.345726pt;}
._9_c00340{margin-left:-9.163139pt;}
._e_c00340{margin-left:-6.592779pt;}
._11_c00340{margin-left:-5.040460pt;}
._10_c00340{width:5.373829pt;}
._f_c00340{width:8.562075pt;}
._7_c00340{width:12.182299pt;}
._0_c00340{width:15.543349pt;}
._a_c00340{width:17.125104pt;}
._8_c00340{width:19.029184pt;}
._d_c00340{width:21.918865pt;}
._12_c00340{width:24.477932pt;}
._c_c00340{width:28.180532pt;}
._b_c00340{width:49.952104pt;}
._5_c00340{width:133.902558pt;}
._6_c00340{width:135.829145pt;}
._3_c00340{width:141.776759pt;}
._2_c00340{width:146.265654pt;}
._4_c00340{width:315.106473pt;}
._1_c00340{width:351.952531pt;}
.fs8_c00340{font-size:48.666667pt;}
.fs5_c00340{font-size:51.333333pt;}
.fs7_c00340{font-size:53.333333pt;}
.fs2_c00340{font-size:54.000000pt;}
.fs4_c00340{font-size:54.666667pt;}
.fs0_c00340{font-size:56.666667pt;}
.fs1_c00340{font-size:58.000000pt;}
.fs6_c00340{font-size:59.333333pt;}
.fs3_c00340{font-size:60.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y30_c00340{bottom:206.082627pt;}
.y27_c00340{bottom:237.440547pt;}
.y26_c00340{bottom:247.680120pt;}
.y1c_c00340{bottom:257.919027pt;}
.y1d_c00340{bottom:257.919453pt;}
.y2e_c00340{bottom:258.561480pt;}
.y1b_c00340{bottom:268.478960pt;}
.y19_c00340{bottom:300.799867pt;}
.y11_c00340{bottom:320.000160pt;}
.y10_c00340{bottom:330.560093pt;}
.yf_c00340{bottom:341.120040pt;}
.ye_c00340{bottom:351.679973pt;}
.y18_c00340{bottom:393.599320pt;}
.y25_c00340{bottom:393.921280pt;}
.y2f_c00340{bottom:393.922587pt;}
.y31_c00340{bottom:394.241440pt;}
.y6_c00340{bottom:632.639573pt;}
.y5_c00340{bottom:653.438533pt;}
.y4_c00340{bottom:695.038853pt;}
.yc_c00340{bottom:758.399227pt;}
.y17_c00340{bottom:758.399413pt;}
.y24_c00340{bottom:758.401240pt;}
.y2d_c00340{bottom:758.721400pt;}
.yb_c00340{bottom:779.198733pt;}
.y23_c00340{bottom:779.520893pt;}
.y16_c00340{bottom:779.838947pt;}
.y2c_c00340{bottom:779.841040pt;}
.ya_c00340{bottom:800.318813pt;}
.y22_c00340{bottom:800.320413pt;}
.y15_c00340{bottom:800.320987pt;}
.y2b_c00340{bottom:800.642067pt;}
.y9_c00340{bottom:821.119827pt;}
.y21_c00340{bottom:821.440067pt;}
.y14_c00340{bottom:821.440627pt;}
.y2a_c00340{bottom:821.761720pt;}
.y8_c00340{bottom:841.919333pt;}
.y20_c00340{bottom:841.919440pt;}
.y13_c00340{bottom:841.920000pt;}
.y29_c00340{bottom:842.241093pt;}
.y7_c00340{bottom:862.720360pt;}
.y12_c00340{bottom:862.721027pt;}
.y1f_c00340{bottom:863.039080pt;}
.y28_c00340{bottom:863.040587pt;}
.y1a_c00340{bottom:894.079027pt;}
.y3_c00340{bottom:894.079040pt;}
.yd_c00340{bottom:894.079160pt;}
.y1e_c00340{bottom:894.399827pt;}
.y2_c00340{bottom:966.399827pt;}
.y1_c00340{bottom:987.839280pt;}
.h9_c00340{height:49.046875pt;}
.h6_c00340{height:51.734375pt;}
.ha_c00340{height:53.652344pt;}
.h1_c00340{height:55.615234pt;}
.h8_c00340{height:55.625000pt;}
.h3_c00340{height:56.320312pt;}
.h2_c00340{height:56.923828pt;}
.h5_c00340{height:57.015625pt;}
.h7_c00340{height:58.232422pt;}
.h4_c00340{height:60.468750pt;}
.h0_c00340{height:1122.666667pt;}
.w0_c00340{width:793.333333pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:303.039587pt;}
.xa_c00340{left:308.479813pt;}
.xb_c00340{left:309.439293pt;}
.xf_c00340{left:310.399920pt;}
.xd_c00340{left:314.559067pt;}
.xc_c00340{left:324.799867pt;}
.x7_c00340{left:333.758787pt;}
.x2_c00340{left:338.879867pt;}
.x8_c00340{left:354.238813pt;}
.x3_c00340{left:364.798787pt;}
.x9_c00340{left:380.159173pt;}
.xe_c00340{left:385.919227pt;}
.x16_c00340{left:391.999840pt;}
.x10_c00340{left:395.840187pt;}
.x11_c00340{left:407.039067pt;}
.x4_c00340{left:421.119187pt;}
.x12_c00340{left:437.119587pt;}
.x5_c00340{left:442.239173pt;}
.x1a_c00340{left:443.200933pt;}
.x15_c00340{left:447.359187pt;}
.x14_c00340{left:488.639613pt;}
.x17_c00340{left:493.760987pt;}
.x13_c00340{left:495.679733pt;}
.x18_c00340{left:498.880493pt;}
.x19_c00340{left:511.361573pt;}
.x6_c00340{left:518.718787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38dfbd9826ab80ff7760506b.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_49b167cb7cbe2484a806ed08.woff2')format("woff");}.ff2_c00341{font-family:ff2_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:ff3_c00341;src:url('chunks/assets/font_16e8f7ea0710866a1c9c86b1.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_58a82e33c22b16d575f434b9.woff2')format("woff");}.ff4_c00341{font-family:ff4_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:ff5_c00341;src:url('chunks/assets/font_79f23e15d222ecdab16d07a4.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00341;src:url('chunks/assets/font_f3ef861ee78bbd6d6e762a2c.woff2')format("woff");}.ff6_c00341{font-family:ff6_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;}
.m6_c00341{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.071705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071705,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);}
.m13_c00341{transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.123626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123626,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{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_c00341{transform:matrix(0.129310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129310,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.136443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136443,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.144118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144118,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);}
.m17_c00341{transform:matrix(0.152941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152941,0.000000,0.000000,0.250000,0,0);}
.m15_c00341{transform:matrix(0.153614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153614,0.000000,0.000000,0.250000,0,0);}
.m16_c00341{transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154321,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.155063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155063,0.000000,0.000000,0.250000,0,0);}
.m18_c00341{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162921,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.174699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174699,0.000000,0.000000,0.250000,0,0);}
.m12_c00341{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m14_c00341{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.299080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299080,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.348101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348101,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls10_c00341{letter-spacing:-18.800828px;}
.ls11_c00341{letter-spacing:-13.650000px;}
.ls1f_c00341{letter-spacing:-11.766600px;}
.lsb_c00341{letter-spacing:-8.620283px;}
.lsd_c00341{letter-spacing:-7.884300px;}
.ls14_c00341{letter-spacing:-2.968875px;}
.ls9_c00341{letter-spacing:-1.248060px;}
.ls7_c00341{letter-spacing:0.000000px;}
.ls17_c00341{letter-spacing:1.208700px;}
.ls1e_c00341{letter-spacing:1.224000px;}
.ls13_c00341{letter-spacing:3.423000px;}
.lse_c00341{letter-spacing:3.450975px;}
.ls5_c00341{letter-spacing:3.626100px;}
.ls1d_c00341{letter-spacing:3.645000px;}
.ls18_c00341{letter-spacing:3.901500px;}
.ls2_c00341{letter-spacing:4.552275px;}
.ls4_c00341{letter-spacing:4.834800px;}
.ls1c_c00341{letter-spacing:4.880400px;}
.ls1b_c00341{letter-spacing:5.022563px;}
.ls12_c00341{letter-spacing:6.044093px;}
.lsf_c00341{letter-spacing:6.067425px;}
.ls16_c00341{letter-spacing:7.258125px;}
.ls1_c00341{letter-spacing:7.582575px;}
.ls1a_c00341{letter-spacing:7.793010px;}
.ls15_c00341{letter-spacing:8.466825px;}
.lsc_c00341{letter-spacing:8.697825px;}
.lsa_c00341{letter-spacing:9.204158px;}
.ls8_c00341{letter-spacing:11.507033px;}
.ls0_c00341{letter-spacing:12.662475px;}
.ls19_c00341{letter-spacing:13.650000px;}
.ls3_c00341{letter-spacing:15.165150px;}
.ls6_c00341{letter-spacing:24.170843px;}
.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;}
._6_c00341{margin-left:-19.833814px;}
._9_c00341{margin-left:-17.182210px;}
._4_c00341{margin-left:-10.667869px;}
._0_c00341{margin-left:-7.175993px;}
._3_c00341{margin-left:-4.859885px;}
._5_c00341{width:4.360963px;}
._7_c00341{width:216.560443px;}
._2_c00341{width:231.517711px;}
._8_c00341{width:251.414340px;}
._1_c00341{width:878.747484px;}
.fc0_c00341{color:transparent;}
.fsb_c00341{font-size:52.500000px;}
.fsf_c00341{font-size:56.250000px;}
.fs3_c00341{font-size:59.250000px;}
.fsd_c00341{font-size:60.000000px;}
.fs10_c00341{font-size:60.750000px;}
.fs5_c00341{font-size:61.500000px;}
.fs1_c00341{font-size:62.250000px;}
.fsc_c00341{font-size:63.750000px;}
.fs4_c00341{font-size:65.250000px;}
.fs2_c00341{font-size:66.000000px;}
.fs0_c00341{font-size:66.750000px;}
.fs7_c00341{font-size:68.250000px;}
.fsa_c00341{font-size:70.763400px;}
.fse_c00341{font-size:81.000000px;}
.fs6_c00341{font-size:96.750000px;}
.fs9_c00341{font-size:122.250000px;}
.fs8_c00341{font-size:129.000000px;}
.y0_c00341{bottom:0.000000px;}
.y1a_c00341{bottom:317.879535px;}
.y19_c00341{bottom:353.160435px;}
.y12_c00341{bottom:411.840585px;}
.y11_c00341{bottom:470.879970px;}
.y9_c00341{bottom:704.519670px;}
.y18_c00341{bottom:727.559685px;}
.y10_c00341{bottom:727.920600px;}
.yf_c00341{bottom:750.960570px;}
.y17_c00341{bottom:751.319820px;}
.ye_c00341{bottom:774.359805px;}
.y16_c00341{bottom:797.760780px;}
.yd_c00341{bottom:797.762370px;}
.y1c_c00341{bottom:821.159430px;}
.y15_c00341{bottom:821.520270px;}
.y1f_c00341{bottom:821.521290px;}
.yc_c00341{bottom:821.521935px;}
.y1b_c00341{bottom:844.560270px;}
.y1e_c00341{bottom:844.560720px;}
.yb_c00341{bottom:844.561365px;}
.y14_c00341{bottom:844.919520px;}
.y13_c00341{bottom:868.320375px;}
.ya_c00341{bottom:868.320930px;}
.y1d_c00341{bottom:868.679850px;}
.y7_c00341{bottom:891.719715px;}
.y8_c00341{bottom:891.720150px;}
.y6_c00341{bottom:915.121035px;}
.y5_c00341{bottom:938.520270px;}
.y4_c00341{bottom:973.440315px;}
.y3_c00341{bottom:997.200435px;}
.y2_c00341{bottom:1067.040525px;}
.y1_c00341{bottom:1090.439670px;}
.hc_c00341{height:51.884766px;}
.h11_c00341{height:56.689453px;}
.h4_c00341{height:61.795898px;}
.h6_c00341{height:61.980469px;}
.hf_c00341{height:62.578125px;}
.h12_c00341{height:63.360352px;}
.h2_c00341{height:64.924805px;}
.h3_c00341{height:65.226562px;}
.h5_c00341{height:65.759766px;}
.he_c00341{height:66.489258px;}
.hd_c00341{height:66.950317px;}
.h1_c00341{height:67.271484px;}
.h8_c00341{height:67.450195px;}
.hb_c00341{height:69.934141px;}
.h10_c00341{height:80.050781px;}
.h7_c00341{height:100.907227px;}
.ha_c00341{height:120.817383px;}
.h9_c00341{height:134.542969px;}
.h0_c00341{height:1263.000000px;}
.w0_c00341{width:892.500000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:244.438635px;}
.xa_c00341{left:246.239850px;}
.x1a_c00341{left:250.199850px;}
.x18_c00341{left:260.998950px;}
.xb_c00341{left:262.080000px;}
.x9_c00341{left:267.478635px;}
.x17_c00341{left:274.319250px;}
.x2_c00341{left:284.759100px;}
.x14_c00341{left:296.279850px;}
.x3_c00341{left:308.159850px;}
.x1c_c00341{left:320.040000px;}
.x1b_c00341{left:337.318800px;}
.xc_c00341{left:356.039385px;}
.xd_c00341{left:365.759100px;}
.x4_c00341{left:383.039385px;}
.x19_c00341{left:394.919655px;}
.x5_c00341{left:401.399235px;}
.xe_c00341{left:425.518665px;}
.xf_c00341{left:435.239820px;}
.x13_c00341{left:459.000000px;}
.x15_c00341{left:464.759535px;}
.x1d_c00341{left:470.159820px;}
.x6_c00341{left:475.558635px;}
.x10_c00341{left:494.279250px;}
.x7_c00341{left:498.239220px;}
.x11_c00341{left:504.719100px;}
.x8_c00341{left:532.798515px;}
.x1e_c00341{left:539.638455px;}
.x16_c00341{left:545.398635px;}
.x12_c00341{left:563.758530px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls10_c00341{letter-spacing:-16.711847pt;}
.ls11_c00341{letter-spacing:-12.133333pt;}
.ls1f_c00341{letter-spacing:-10.459200pt;}
.lsb_c00341{letter-spacing:-7.662473pt;}
.lsd_c00341{letter-spacing:-7.008267pt;}
.ls14_c00341{letter-spacing:-2.639000pt;}
.ls9_c00341{letter-spacing:-1.109387pt;}
.ls7_c00341{letter-spacing:0.000000pt;}
.ls17_c00341{letter-spacing:1.074400pt;}
.ls1e_c00341{letter-spacing:1.088000pt;}
.ls13_c00341{letter-spacing:3.042667pt;}
.lse_c00341{letter-spacing:3.067533pt;}
.ls5_c00341{letter-spacing:3.223200pt;}
.ls1d_c00341{letter-spacing:3.240000pt;}
.ls18_c00341{letter-spacing:3.468000pt;}
.ls2_c00341{letter-spacing:4.046467pt;}
.ls4_c00341{letter-spacing:4.297600pt;}
.ls1c_c00341{letter-spacing:4.338133pt;}
.ls1b_c00341{letter-spacing:4.464500pt;}
.ls12_c00341{letter-spacing:5.372527pt;}
.lsf_c00341{letter-spacing:5.393267pt;}
.ls16_c00341{letter-spacing:6.451667pt;}
.ls1_c00341{letter-spacing:6.740067pt;}
.ls1a_c00341{letter-spacing:6.927120pt;}
.ls15_c00341{letter-spacing:7.526067pt;}
.lsc_c00341{letter-spacing:7.731400pt;}
.lsa_c00341{letter-spacing:8.181473pt;}
.ls8_c00341{letter-spacing:10.228473pt;}
.ls0_c00341{letter-spacing:11.255533pt;}
.ls19_c00341{letter-spacing:12.133333pt;}
.ls3_c00341{letter-spacing:13.480133pt;}
.ls6_c00341{letter-spacing:21.485193pt;}
.ws0_c00341{word-spacing:0.000000pt;}
._6_c00341{margin-left:-17.630057pt;}
._9_c00341{margin-left:-15.273075pt;}
._4_c00341{margin-left:-9.482551pt;}
._0_c00341{margin-left:-6.378661pt;}
._3_c00341{margin-left:-4.319898pt;}
._5_c00341{width:3.876411pt;}
._7_c00341{width:192.498171pt;}
._2_c00341{width:205.793521pt;}
._8_c00341{width:223.479413pt;}
._1_c00341{width:781.108875pt;}
.fsb_c00341{font-size:46.666667pt;}
.fsf_c00341{font-size:50.000000pt;}
.fs3_c00341{font-size:52.666667pt;}
.fsd_c00341{font-size:53.333333pt;}
.fs10_c00341{font-size:54.000000pt;}
.fs5_c00341{font-size:54.666667pt;}
.fs1_c00341{font-size:55.333333pt;}
.fsc_c00341{font-size:56.666667pt;}
.fs4_c00341{font-size:58.000000pt;}
.fs2_c00341{font-size:58.666667pt;}
.fs0_c00341{font-size:59.333333pt;}
.fs7_c00341{font-size:60.666667pt;}
.fsa_c00341{font-size:62.900800pt;}
.fse_c00341{font-size:72.000000pt;}
.fs6_c00341{font-size:86.000000pt;}
.fs9_c00341{font-size:108.666667pt;}
.fs8_c00341{font-size:114.666667pt;}
.y0_c00341{bottom:0.000000pt;}
.y1a_c00341{bottom:282.559587pt;}
.y19_c00341{bottom:313.920387pt;}
.y12_c00341{bottom:366.080520pt;}
.y11_c00341{bottom:418.559973pt;}
.y9_c00341{bottom:626.239707pt;}
.y18_c00341{bottom:646.719720pt;}
.y10_c00341{bottom:647.040533pt;}
.yf_c00341{bottom:667.520507pt;}
.y17_c00341{bottom:667.839840pt;}
.ye_c00341{bottom:688.319827pt;}
.y16_c00341{bottom:709.120693pt;}
.yd_c00341{bottom:709.122107pt;}
.y1c_c00341{bottom:729.919493pt;}
.y15_c00341{bottom:730.240240pt;}
.y1f_c00341{bottom:730.241147pt;}
.yc_c00341{bottom:730.241720pt;}
.y1b_c00341{bottom:750.720240pt;}
.y1e_c00341{bottom:750.720640pt;}
.yb_c00341{bottom:750.721213pt;}
.y14_c00341{bottom:751.039573pt;}
.y13_c00341{bottom:771.840333pt;}
.ya_c00341{bottom:771.840827pt;}
.y1d_c00341{bottom:772.159867pt;}
.y7_c00341{bottom:792.639747pt;}
.y8_c00341{bottom:792.640133pt;}
.y6_c00341{bottom:813.440920pt;}
.y5_c00341{bottom:834.240240pt;}
.y4_c00341{bottom:865.280280pt;}
.y3_c00341{bottom:886.400387pt;}
.y2_c00341{bottom:948.480467pt;}
.y1_c00341{bottom:969.279707pt;}
.hc_c00341{height:46.119792pt;}
.h11_c00341{height:50.390625pt;}
.h4_c00341{height:54.929688pt;}
.h6_c00341{height:55.093750pt;}
.hf_c00341{height:55.625000pt;}
.h12_c00341{height:56.320312pt;}
.h2_c00341{height:57.710938pt;}
.h3_c00341{height:57.979167pt;}
.h5_c00341{height:58.453125pt;}
.he_c00341{height:59.101562pt;}
.hd_c00341{height:59.511393pt;}
.h1_c00341{height:59.796875pt;}
.h8_c00341{height:59.955729pt;}
.hb_c00341{height:62.163681pt;}
.h10_c00341{height:71.156250pt;}
.h7_c00341{height:89.695312pt;}
.ha_c00341{height:107.393229pt;}
.h9_c00341{height:119.593750pt;}
.h0_c00341{height:1122.666667pt;}
.w0_c00341{width:793.333333pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:217.278787pt;}
.xa_c00341{left:218.879867pt;}
.x1a_c00341{left:222.399867pt;}
.x18_c00341{left:231.999067pt;}
.xb_c00341{left:232.960000pt;}
.x9_c00341{left:237.758787pt;}
.x17_c00341{left:243.839333pt;}
.x2_c00341{left:253.119200pt;}
.x14_c00341{left:263.359867pt;}
.x3_c00341{left:273.919867pt;}
.x1c_c00341{left:284.480000pt;}
.x1b_c00341{left:299.838933pt;}
.xc_c00341{left:316.479453pt;}
.xd_c00341{left:325.119200pt;}
.x4_c00341{left:340.479453pt;}
.x19_c00341{left:351.039693pt;}
.x5_c00341{left:356.799320pt;}
.xe_c00341{left:378.238813pt;}
.xf_c00341{left:386.879840pt;}
.x13_c00341{left:408.000000pt;}
.x15_c00341{left:413.119587pt;}
.x1d_c00341{left:417.919840pt;}
.x6_c00341{left:422.718787pt;}
.x10_c00341{left:439.359333pt;}
.x7_c00341{left:442.879307pt;}
.x11_c00341{left:448.639200pt;}
.x8_c00341{left:473.598680pt;}
.x1e_c00341{left:479.678627pt;}
.x16_c00341{left:484.798787pt;}
.x12_c00341{left:501.118693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4f689b5feea9b55763898a1.woff2')format("woff");}.ff1_c00342{font-family:ff1_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;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_9b53def467e72cd80aa26166.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_b166504aaf744e74301758f8.woff2')format("woff");}.ff3_c00342{font-family:ff3_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:ff4_c00342;src:url('chunks/assets/font_759563c26eab9f6681d854c0.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00342{transform:matrix(0.035853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035853,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046610,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051163,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.056122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056122,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056995,0.000000,0.000000,0.250000,0,0);}
.m11_c00342{transform:matrix(0.061441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061441,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.066062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066062,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.154145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154145,0.000000,0.000000,0.250000,0,0);}
.me_c00342{transform:matrix(0.158654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158654,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.215116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215116,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1b_c00342{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.md_c00342{transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(1.760870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.760870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.760870,0.000000,0.000000,0.250000,0,0);}
.v1_c00342{vertical-align:-33.120480px;}
.v0_c00342{vertical-align:0.000000px;}
.v2_c00342{vertical-align:1.433580px;}
.ls13_c00342{letter-spacing:-9.087750px;}
.ls17_c00342{letter-spacing:-7.576538px;}
.ls15_c00342{letter-spacing:-6.811875px;}
.ls1a_c00342{letter-spacing:-6.055875px;}
.ls7_c00342{letter-spacing:-5.401628px;}
.ls18_c00342{letter-spacing:-5.300663px;}
.ls19_c00342{letter-spacing:-5.015625px;}
.ls11_c00342{letter-spacing:-4.543088px;}
.lsa_c00342{letter-spacing:-3.683475px;}
.ls5_c00342{letter-spacing:-3.151800px;}
.lsf_c00342{letter-spacing:-3.031875px;}
.ls9_c00342{letter-spacing:-2.997150px;}
.ls4_c00342{letter-spacing:-2.310398px;}
.lsd_c00342{letter-spacing:-2.267213px;}
.ls16_c00342{letter-spacing:-1.569600px;}
.ls6_c00342{letter-spacing:-1.540800px;}
.ls10_c00342{letter-spacing:-1.512000px;}
.lsc_c00342{letter-spacing:-1.441125px;}
.lse_c00342{letter-spacing:-0.756000px;}
.ls8_c00342{letter-spacing:0.000000px;}
.ls3_c00342{letter-spacing:0.756000px;}
.ls14_c00342{letter-spacing:1.512000px;}
.lsb_c00342{letter-spacing:1.709250px;}
.ls12_c00342{letter-spacing:2.267213px;}
.ls2_c00342{letter-spacing:3.787875px;}
.ls1_c00342{letter-spacing:4.543088px;}
.ls0_c00342{letter-spacing:5.300663px;}
.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;}
._4_c00342{margin-left:-27.026697px;}
._5_c00342{margin-left:-16.647932px;}
._0_c00342{margin-left:-2.888938px;}
._14_c00342{width:1.736148px;}
._12_c00342{width:2.945566px;}
._3_c00342{width:4.008241px;}
._13_c00342{width:6.449928px;}
._d_c00342{width:9.362406px;}
._c_c00342{width:12.135981px;}
._1_c00342{width:13.643364px;}
._f_c00342{width:15.043673px;}
._2_c00342{width:16.711630px;}
._10_c00342{width:18.877708px;}
._11_c00342{width:20.363054px;}
._e_c00342{width:27.942923px;}
._15_c00342{width:119.846172px;}
._7_c00342{width:145.439437px;}
._9_c00342{width:149.215439px;}
._6_c00342{width:156.472676px;}
._8_c00342{width:166.771662px;}
._16_c00342{width:184.322795px;}
._a_c00342{width:207.215360px;}
._b_c00342{width:1490.932745px;}
.fc0_c00342{color:transparent;}
.fs7_c00342{font-size:17.250000px;}
.fsc_c00342{font-size:32.250000px;}
.fsb_c00342{font-size:34.500000px;}
.fs9_c00342{font-size:36.000000px;}
.fsa_c00342{font-size:39.000000px;}
.fs6_c00342{font-size:72.750000px;}
.fs3_c00342{font-size:75.750000px;}
.fs1_c00342{font-size:76.500000px;}
.fs4_c00342{font-size:78.750000px;}
.fs2_c00342{font-size:79.500000px;}
.fs0_c00342{font-size:80.250000px;}
.fsf_c00342{font-size:81.750000px;}
.fs11_c00342{font-size:115.500000px;}
.fsd_c00342{font-size:144.750000px;}
.fse_c00342{font-size:147.000000px;}
.fs10_c00342{font-size:161.250000px;}
.fs5_c00342{font-size:177.000000px;}
.fs8_c00342{font-size:193.500000px;}
.y0_c00342{bottom:0.000000px;}
.y2b_c00342{bottom:186.480465px;}
.y2a_c00342{bottom:216.000000px;}
.y29_c00342{bottom:216.000435px;}
.y27_c00342{bottom:275.039490px;}
.y23_c00342{bottom:334.798950px;}
.y22_c00342{bottom:334.799970px;}
.y20_c00342{bottom:364.678455px;}
.y21_c00342{bottom:364.679700px;}
.y1f_c00342{bottom:394.197990px;}
.y26_c00342{bottom:464.399805px;}
.y2d_c00342{bottom:464.400885px;}
.y2f_c00342{bottom:464.761065px;}
.y1a_c00342{bottom:496.078770px;}
.y18_c00342{bottom:504.359370px;}
.y19_c00342{bottom:504.359850px;}
.y17_c00342{bottom:537.119385px;}
.y16_c00342{bottom:544.679580px;}
.y12_c00342{bottom:585.359850px;}
.y11_c00342{bottom:585.360645px;}
.y25_c00342{bottom:623.520195px;}
.y2e_c00342{bottom:623.879355px;}
.y1d_c00342{bottom:625.679625px;}
.y15_c00342{bottom:625.679925px;}
.y2c_c00342{bottom:626.039295px;}
.yb_c00342{bottom:786.960015px;}
.y1c_c00342{bottom:827.639925px;}
.y14_c00342{bottom:827.640225px;}
.ye_c00342{bottom:827.640285px;}
.y24_c00342{bottom:827.998515px;}
.y28_c00342{bottom:828.360510px;}
.yd_c00342{bottom:867.599880px;}
.y10_c00342{bottom:868.319190px;}
.yf_c00342{bottom:868.320555px;}
.ya_c00342{bottom:893.519715px;}
.y9_c00342{bottom:907.918860px;}
.yc_c00342{bottom:907.919970px;}
.y1b_c00342{bottom:908.279805px;}
.y13_c00342{bottom:908.280105px;}
.y1e_c00342{bottom:908.638185px;}
.y8_c00342{bottom:948.599115px;}
.y7_c00342{bottom:971.639100px;}
.y6_c00342{bottom:989.998905px;}
.y5_c00342{bottom:999.719310px;}
.y4_c00342{bottom:1029.599025px;}
.y2_c00342{bottom:1099.079775px;}
.y3_c00342{bottom:1099.079955px;}
.y1_c00342{bottom:1128.958920px;}
.h9_c00342{height:17.991211px;}
.he_c00342{height:33.635742px;}
.hd_c00342{height:34.769531px;}
.hb_c00342{height:37.546875px;}
.hc_c00342{height:39.304688px;}
.h8_c00342{height:75.875977px;}
.h4_c00342{height:76.341797px;}
.h6_c00342{height:77.288818px;}
.h16_c00342{height:78.722398px;}
.h15_c00342{height:78.760986px;}
.h5_c00342{height:79.365234px;}
.h2_c00342{height:79.787109px;}
.h3_c00342{height:80.121094px;}
.h11_c00342{height:80.233154px;}
.h1_c00342{height:80.876953px;}
.h14_c00342{height:82.133789px;}
.h13_c00342{height:120.462891px;}
.hf_c00342{height:150.969727px;}
.h10_c00342{height:153.316406px;}
.h12_c00342{height:168.178711px;}
.h7_c00342{height:184.605469px;}
.ha_c00342{height:201.814453px;}
.h0_c00342{height:1263.000000px;}
.w0_c00342{width:892.500000px;}
.x0_c00342{left:0.000000px;}
.x2b_c00342{left:138.958530px;}
.x1_c00342{left:145.439715px;}
.xb_c00342{left:147.239250px;}
.x1c_c00342{left:148.677315px;}
.x2_c00342{left:203.759100px;}
.x3_c00342{left:233.278800px;}
.xc_c00342{left:251.638500px;}
.x1b_c00342{left:252.719535px;}
.x4_c00342{left:254.519100px;}
.x25_c00342{left:260.998950px;}
.x26_c00342{left:266.758500px;}
.x28_c00342{left:277.199850px;}
.x27_c00342{left:280.439685px;}
.x29_c00342{left:283.318800px;}
.x11_c00342{left:285.479235px;}
.x18_c00342{left:287.276895px;}
.x2a_c00342{left:297.000000px;}
.x2c_c00342{left:304.559100px;}
.xd_c00342{left:307.439685px;}
.x17_c00342{left:309.598530px;}
.x1d_c00342{left:311.038950px;}
.x24_c00342{left:319.679100px;}
.x5_c00342{left:322.559685px;}
.x2d_c00342{left:327.958350px;}
.x12_c00342{left:335.519100px;}
.x1e_c00342{left:336.598530px;}
.x6_c00342{left:346.319850px;}
.x7_c00342{left:373.319850px;}
.x13_c00342{left:378.718530px;}
.x19_c00342{left:380.158785px;}
.x1f_c00342{left:388.439715px;}
.xe_c00342{left:419.038920px;}
.x20_c00342{left:420.479235px;}
.x8_c00342{left:421.558635px;}
.x14_c00342{left:453.238770px;}
.x2e_c00342{left:470.880000px;}
.x9_c00342{left:474.119985px;}
.x21_c00342{left:478.080000px;}
.xf_c00342{left:482.399235px;}
.xa_c00342{left:489.239820px;}
.x15_c00342{left:502.558635px;}
.x22_c00342{left:503.639700px;}
.x16_c00342{left:555.119985px;}
.x1a_c00342{left:556.558635px;}
.x23_c00342{left:565.198785px;}
.x10_c00342{left:573.838950px;}
@media print{
.v1_c00342{vertical-align:-29.440427pt;}
.v0_c00342{vertical-align:0.000000pt;}
.v2_c00342{vertical-align:1.274293pt;}
.ls13_c00342{letter-spacing:-8.078000pt;}
.ls17_c00342{letter-spacing:-6.734700pt;}
.ls15_c00342{letter-spacing:-6.055000pt;}
.ls1a_c00342{letter-spacing:-5.383000pt;}
.ls7_c00342{letter-spacing:-4.801447pt;}
.ls18_c00342{letter-spacing:-4.711700pt;}
.ls19_c00342{letter-spacing:-4.458333pt;}
.ls11_c00342{letter-spacing:-4.038300pt;}
.lsa_c00342{letter-spacing:-3.274200pt;}
.ls5_c00342{letter-spacing:-2.801600pt;}
.lsf_c00342{letter-spacing:-2.695000pt;}
.ls9_c00342{letter-spacing:-2.664133pt;}
.ls4_c00342{letter-spacing:-2.053687pt;}
.lsd_c00342{letter-spacing:-2.015300pt;}
.ls16_c00342{letter-spacing:-1.395200pt;}
.ls6_c00342{letter-spacing:-1.369600pt;}
.ls10_c00342{letter-spacing:-1.344000pt;}
.lsc_c00342{letter-spacing:-1.281000pt;}
.lse_c00342{letter-spacing:-0.672000pt;}
.ls8_c00342{letter-spacing:0.000000pt;}
.ls3_c00342{letter-spacing:0.672000pt;}
.ls14_c00342{letter-spacing:1.344000pt;}
.lsb_c00342{letter-spacing:1.519333pt;}
.ls12_c00342{letter-spacing:2.015300pt;}
.ls2_c00342{letter-spacing:3.367000pt;}
.ls1_c00342{letter-spacing:4.038300pt;}
.ls0_c00342{letter-spacing:4.711700pt;}
.ws0_c00342{word-spacing:0.000000pt;}
._4_c00342{margin-left:-24.023731pt;}
._5_c00342{margin-left:-14.798162pt;}
._0_c00342{margin-left:-2.567945pt;}
._14_c00342{width:1.543243pt;}
._12_c00342{width:2.618281pt;}
._3_c00342{width:3.562881pt;}
._13_c00342{width:5.733269pt;}
._d_c00342{width:8.322138pt;}
._c_c00342{width:10.787538pt;}
._1_c00342{width:12.127435pt;}
._f_c00342{width:13.372154pt;}
._2_c00342{width:14.854783pt;}
._10_c00342{width:16.780185pt;}
._11_c00342{width:18.100492pt;}
._e_c00342{width:24.838154pt;}
._15_c00342{width:106.529931pt;}
._7_c00342{width:129.279500pt;}
._9_c00342{width:132.635946pt;}
._6_c00342{width:139.086823pt;}
._8_c00342{width:148.241477pt;}
._16_c00342{width:163.842485pt;}
._a_c00342{width:184.191431pt;}
._b_c00342{width:1325.273552pt;}
.fs7_c00342{font-size:15.333333pt;}
.fsc_c00342{font-size:28.666667pt;}
.fsb_c00342{font-size:30.666667pt;}
.fs9_c00342{font-size:32.000000pt;}
.fsa_c00342{font-size:34.666667pt;}
.fs6_c00342{font-size:64.666667pt;}
.fs3_c00342{font-size:67.333333pt;}
.fs1_c00342{font-size:68.000000pt;}
.fs4_c00342{font-size:70.000000pt;}
.fs2_c00342{font-size:70.666667pt;}
.fs0_c00342{font-size:71.333333pt;}
.fsf_c00342{font-size:72.666667pt;}
.fs11_c00342{font-size:102.666667pt;}
.fsd_c00342{font-size:128.666667pt;}
.fse_c00342{font-size:130.666667pt;}
.fs10_c00342{font-size:143.333333pt;}
.fs5_c00342{font-size:157.333333pt;}
.fs8_c00342{font-size:172.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y2b_c00342{bottom:165.760413pt;}
.y2a_c00342{bottom:192.000000pt;}
.y29_c00342{bottom:192.000387pt;}
.y27_c00342{bottom:244.479547pt;}
.y23_c00342{bottom:297.599067pt;}
.y22_c00342{bottom:297.599973pt;}
.y20_c00342{bottom:324.158627pt;}
.y21_c00342{bottom:324.159733pt;}
.y1f_c00342{bottom:350.398213pt;}
.y26_c00342{bottom:412.799827pt;}
.y2d_c00342{bottom:412.800787pt;}
.y2f_c00342{bottom:413.120947pt;}
.y1a_c00342{bottom:440.958907pt;}
.y18_c00342{bottom:448.319440pt;}
.y19_c00342{bottom:448.319867pt;}
.y17_c00342{bottom:477.439453pt;}
.y16_c00342{bottom:484.159627pt;}
.y12_c00342{bottom:520.319867pt;}
.y11_c00342{bottom:520.320573pt;}
.y25_c00342{bottom:554.240173pt;}
.y2e_c00342{bottom:554.559427pt;}
.y1d_c00342{bottom:556.159667pt;}
.y15_c00342{bottom:556.159933pt;}
.y2c_c00342{bottom:556.479373pt;}
.yb_c00342{bottom:699.520013pt;}
.y1c_c00342{bottom:735.679933pt;}
.y14_c00342{bottom:735.680200pt;}
.ye_c00342{bottom:735.680253pt;}
.y24_c00342{bottom:735.998680pt;}
.y28_c00342{bottom:736.320453pt;}
.yd_c00342{bottom:771.199893pt;}
.y10_c00342{bottom:771.839280pt;}
.yf_c00342{bottom:771.840493pt;}
.ya_c00342{bottom:794.239747pt;}
.y9_c00342{bottom:807.038987pt;}
.yc_c00342{bottom:807.039973pt;}
.y1b_c00342{bottom:807.359827pt;}
.y13_c00342{bottom:807.360093pt;}
.y1e_c00342{bottom:807.678387pt;}
.y8_c00342{bottom:843.199213pt;}
.y7_c00342{bottom:863.679200pt;}
.y6_c00342{bottom:879.999027pt;}
.y5_c00342{bottom:888.639387pt;}
.y4_c00342{bottom:915.199133pt;}
.y2_c00342{bottom:976.959800pt;}
.y3_c00342{bottom:976.959960pt;}
.y1_c00342{bottom:1003.519040pt;}
.h9_c00342{height:15.992187pt;}
.he_c00342{height:29.898438pt;}
.hd_c00342{height:30.906250pt;}
.hb_c00342{height:33.375000pt;}
.hc_c00342{height:34.937500pt;}
.h8_c00342{height:67.445312pt;}
.h4_c00342{height:67.859375pt;}
.h6_c00342{height:68.701172pt;}
.h16_c00342{height:69.975465pt;}
.h15_c00342{height:70.009766pt;}
.h5_c00342{height:70.546875pt;}
.h2_c00342{height:70.921875pt;}
.h3_c00342{height:71.218750pt;}
.h11_c00342{height:71.318359pt;}
.h1_c00342{height:71.890625pt;}
.h14_c00342{height:73.007812pt;}
.h13_c00342{height:107.078125pt;}
.hf_c00342{height:134.195312pt;}
.h10_c00342{height:136.281250pt;}
.h12_c00342{height:149.492188pt;}
.h7_c00342{height:164.093750pt;}
.ha_c00342{height:179.390625pt;}
.h0_c00342{height:1122.666667pt;}
.w0_c00342{width:793.333333pt;}
.x0_c00342{left:0.000000pt;}
.x2b_c00342{left:123.518693pt;}
.x1_c00342{left:129.279747pt;}
.xb_c00342{left:130.879333pt;}
.x1c_c00342{left:132.157613pt;}
.x2_c00342{left:181.119200pt;}
.x3_c00342{left:207.358933pt;}
.xc_c00342{left:223.678667pt;}
.x1b_c00342{left:224.639587pt;}
.x4_c00342{left:226.239200pt;}
.x25_c00342{left:231.999067pt;}
.x26_c00342{left:237.118667pt;}
.x28_c00342{left:246.399867pt;}
.x27_c00342{left:249.279720pt;}
.x29_c00342{left:251.838933pt;}
.x11_c00342{left:253.759320pt;}
.x18_c00342{left:255.357240pt;}
.x2a_c00342{left:264.000000pt;}
.x2c_c00342{left:270.719200pt;}
.xd_c00342{left:273.279720pt;}
.x17_c00342{left:275.198693pt;}
.x1d_c00342{left:276.479067pt;}
.x24_c00342{left:284.159200pt;}
.x5_c00342{left:286.719720pt;}
.x2d_c00342{left:291.518533pt;}
.x12_c00342{left:298.239200pt;}
.x1e_c00342{left:299.198693pt;}
.x6_c00342{left:307.839867pt;}
.x7_c00342{left:331.839867pt;}
.x13_c00342{left:336.638693pt;}
.x19_c00342{left:337.918920pt;}
.x1f_c00342{left:345.279747pt;}
.xe_c00342{left:372.479040pt;}
.x20_c00342{left:373.759320pt;}
.x8_c00342{left:374.718787pt;}
.x14_c00342{left:402.878907pt;}
.x2e_c00342{left:418.560000pt;}
.x9_c00342{left:421.439987pt;}
.x21_c00342{left:424.960000pt;}
.xf_c00342{left:428.799320pt;}
.xa_c00342{left:434.879840pt;}
.x15_c00342{left:446.718787pt;}
.x22_c00342{left:447.679733pt;}
.x16_c00342{left:493.439987pt;}
.x1a_c00342{left:494.718787pt;}
.x23_c00342{left:502.398920pt;}
.x10_c00342{left:510.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2abbeb334d4a8908f168a1d7.woff2')format("woff");}.ff1_c00343{font-family:ff1_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:ff2_c00343;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.364746;font-style:normal;font-weight:normal;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_99c97953c8e14d23f8b1a8fd.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_e5d18358d5e72677acd9bfc0.woff2')format("woff");}.ff4_c00343{font-family:ff4_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:ff5_c00343;src:url('chunks/assets/font_bfef41d252af7cceaf83581b.woff2')format("woff");}.ff5_c00343{font-family:ff5_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:ff6_c00343;src:url('chunks/assets/font_05554bc20e84b1c25ca200e4.woff2')format("woff");}.ff6_c00343{font-family:ff6_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:ff7_c00343;src:url('chunks/assets/font_635452e30431ba38d3033fa6.woff2')format("woff");}.ff7_c00343{font-family:ff7_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:ff8_c00343;src:url('chunks/assets/font_29055992e83af319e7c1a20d.woff2')format("woff");}.ff8_c00343{font-family:ff8_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00343;src:url('chunks/assets/font_503e091d550d3f8f37559393.woff2')format("woff");}.ff9_c00343{font-family:ff9_c00343;line-height:1.364746;font-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_c00343{transform:matrix(0.165254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165254,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186508,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198454,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m2e_c00343{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m17_c00343{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364130,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.387097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387097,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.393519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393519,0.000000,0.000000,0.250000,0,0);}
.m16_c00343{transform:matrix(0.404167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404167,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{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);}
.m1a_c00343{transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.469512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469512,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.475806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475806,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485294,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.608333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608333,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.898148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898148,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(1.010870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.010870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.010870,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls8_c00343{letter-spacing:-13.610415px;}
.ls16_c00343{letter-spacing:-13.149045px;}
.ls13_c00343{letter-spacing:-8.914500px;}
.ls1c_c00343{letter-spacing:-8.835750px;}
.ls12_c00343{letter-spacing:-8.175038px;}
.ls18_c00343{letter-spacing:-7.426125px;}
.ls19_c00343{letter-spacing:-6.685875px;}
.ls33_c00343{letter-spacing:-6.559875px;}
.lse_c00343{letter-spacing:-5.945625px;}
.ls1a_c00343{letter-spacing:-5.203125px;}
.ls17_c00343{letter-spacing:-5.196713px;}
.ls1b_c00343{letter-spacing:-4.496625px;}
.lsf_c00343{letter-spacing:-4.456463px;}
.ls1d_c00343{letter-spacing:-4.418663px;}
.ls20_c00343{letter-spacing:-4.381800px;}
.ls3d_c00343{letter-spacing:-4.221000px;}
.lsc_c00343{letter-spacing:-3.717000px;}
.ls21_c00343{letter-spacing:-3.605595px;}
.ls35_c00343{letter-spacing:-3.148200px;}
.ls3c_c00343{letter-spacing:-3.101393px;}
.ls1f_c00343{letter-spacing:-3.057450px;}
.ls39_c00343{letter-spacing:-3.046875px;}
.ls7_c00343{letter-spacing:-2.968875px;}
.ls3e_c00343{letter-spacing:-2.790000px;}
.ls1e_c00343{letter-spacing:-2.488350px;}
.ls31_c00343{letter-spacing:-2.364525px;}
.ls9_c00343{letter-spacing:-2.229413px;}
.ls3a_c00343{letter-spacing:-2.213865px;}
.ls23_c00343{letter-spacing:-1.830000px;}
.ls14_c00343{letter-spacing:-1.575600px;}
.ls3b_c00343{letter-spacing:-1.523018px;}
.ls37_c00343{letter-spacing:-1.498575px;}
.lsb_c00343{letter-spacing:-1.489163px;}
.ls36_c00343{letter-spacing:-1.112625px;}
.ls27_c00343{letter-spacing:-0.951750px;}
.lsd_c00343{letter-spacing:-0.740250px;}
.ls34_c00343{letter-spacing:-0.727200px;}
.ls11_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:0.740250px;}
.ls2d_c00343{letter-spacing:1.254533px;}
.ls10_c00343{letter-spacing:1.581525px;}
.ls3f_c00343{letter-spacing:1.793400px;}
.lsa_c00343{letter-spacing:1.914000px;}
.ls6_c00343{letter-spacing:2.229413px;}
.ls2c_c00343{letter-spacing:2.248650px;}
.ls25_c00343{letter-spacing:2.452200px;}
.ls2_c00343{letter-spacing:2.573700px;}
.ls15_c00343{letter-spacing:2.746425px;}
.ls2e_c00343{letter-spacing:3.840000px;}
.ls22_c00343{letter-spacing:4.633005px;}
.ls2b_c00343{letter-spacing:4.791157px;}
.ls2a_c00343{letter-spacing:5.062365px;}
.ls29_c00343{letter-spacing:5.566500px;}
.ls1_c00343{letter-spacing:5.664900px;}
.ls24_c00343{letter-spacing:5.693280px;}
.ls30_c00343{letter-spacing:5.812500px;}
.ls32_c00343{letter-spacing:6.214193px;}
.ls26_c00343{letter-spacing:8.135520px;}
.ls28_c00343{letter-spacing:8.947200px;}
.ls3_c00343{letter-spacing:9.000300px;}
.ls2f_c00343{letter-spacing:9.999000px;}
.ls38_c00343{letter-spacing:12.720398px;}
.ls4_c00343{letter-spacing:12.750900px;}
.ls5_c00343{letter-spacing:14.250000px;}
.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;}
._1e_c00343{margin-left:-31.298580px;}
._1c_c00343{margin-left:-23.873095px;}
._1b_c00343{margin-left:-16.123126px;}
._1d_c00343{margin-left:-13.004593px;}
._1f_c00343{margin-left:-10.195436px;}
._13_c00343{margin-left:-7.593016px;}
._16_c00343{margin-left:-5.522797px;}
._a_c00343{margin-left:-4.225547px;}
._15_c00343{margin-left:-3.002693px;}
._14_c00343{margin-left:-1.050376px;}
._10_c00343{width:1.042175px;}
._d_c00343{width:2.522214px;}
._b_c00343{width:4.246453px;}
._0_c00343{width:5.281792px;}
._1_c00343{width:7.087351px;}
._c_c00343{width:8.189584px;}
._2_c00343{width:9.374801px;}
._e_c00343{width:10.386976px;}
._1a_c00343{width:11.452761px;}
._f_c00343{width:12.484119px;}
._18_c00343{width:13.735501px;}
._4_c00343{width:14.809042px;}
._11_c00343{width:17.136669px;}
._12_c00343{width:18.968884px;}
._3_c00343{width:20.188528px;}
._9_c00343{width:21.617172px;}
._19_c00343{width:23.552580px;}
._6_c00343{width:24.655392px;}
._7_c00343{width:25.833566px;}
._8_c00343{width:27.341108px;}
._5_c00343{width:29.213070px;}
._17_c00343{width:33.526550px;}
.fc0_c00343{color:transparent;}
.fs1e_c00343{font-size:17.250000px;}
.fs1c_c00343{font-size:20.250000px;}
.fs1d_c00343{font-size:21.750000px;}
.fs1a_c00343{font-size:22.500000px;}
.fs1b_c00343{font-size:23.250000px;}
.fs19_c00343{font-size:24.000000px;}
.fs17_c00343{font-size:25.500000px;}
.fs16_c00343{font-size:28.500000px;}
.fs18_c00343{font-size:29.250000px;}
.fs15_c00343{font-size:30.750000px;}
.fs14_c00343{font-size:31.500000px;}
.fse_c00343{font-size:34.500000px;}
.fsf_c00343{font-size:37.500000px;}
.fs20_c00343{font-size:39.750000px;}
.fs12_c00343{font-size:40.500000px;}
.fs23_c00343{font-size:43.500000px;}
.fs13_c00343{font-size:45.000000px;}
.fs11_c00343{font-size:45.750000px;}
.fs22_c00343{font-size:46.500000px;}
.fs24_c00343{font-size:47.250000px;}
.fs10_c00343{font-size:48.000000px;}
.fs21_c00343{font-size:48.750000px;}
.fs1f_c00343{font-size:50.250000px;}
.fs4_c00343{font-size:72.750000px;}
.fs3_c00343{font-size:74.250000px;}
.fs7_c00343{font-size:75.750000px;}
.fs0_c00343{font-size:78.750000px;}
.fsc_c00343{font-size:79.500000px;}
.fsa_c00343{font-size:80.250000px;}
.fsd_c00343{font-size:81.750000px;}
.fs6_c00343{font-size:82.500000px;}
.fs9_c00343{font-size:83.250000px;}
.fsb_c00343{font-size:84.750000px;}
.fs8_c00343{font-size:85.500000px;}
.fs2_c00343{font-size:87.000000px;}
.fs1_c00343{font-size:88.500000px;}
.fs5_c00343{font-size:101.250000px;}
.y0_c00343{bottom:0.000000px;}
.y2a_c00343{bottom:173.880000px;}
.y29_c00343{bottom:202.320300px;}
.y28_c00343{bottom:275.040270px;}
.y27_c00343{bottom:304.920000px;}
.y26_c00343{bottom:304.920870px;}
.y24_c00343{bottom:334.799970px;}
.y25_c00343{bottom:334.800585px;}
.y23_c00343{bottom:364.679700px;}
.y22_c00343{bottom:394.201035px;}
.y21_c00343{bottom:424.080000px;}
.y20_c00343{bottom:429.480285px;}
.y1f_c00343{bottom:453.960570px;}
.y1e_c00343{bottom:453.960615px;}
.y1d_c00343{bottom:484.558920px;}
.y1c_c00343{bottom:514.080255px;}
.y1a_c00343{bottom:543.959295px;}
.y1b_c00343{bottom:543.959970px;}
.y19_c00343{bottom:573.120435px;}
.y18_c00343{bottom:573.121335px;}
.y17_c00343{bottom:603.001050px;}
.y16_c00343{bottom:603.001185px;}
.y14_c00343{bottom:632.520105px;}
.y15_c00343{bottom:632.520720px;}
.y12_c00343{bottom:662.398710px;}
.y13_c00343{bottom:662.399820px;}
.y11_c00343{bottom:722.160255px;}
.y10_c00343{bottom:752.039985px;}
.yf_c00343{bottom:752.040600px;}
.ye_c00343{bottom:781.920315px;}
.yd_c00343{bottom:812.160240px;}
.yc_c00343{bottom:842.039955px;}
.yb_c00343{bottom:871.559490px;}
.ya_c00343{bottom:930.960555px;}
.y9_c00343{bottom:990.359805px;}
.y8_c00343{bottom:990.360690px;}
.y7_c00343{bottom:1020.240420px;}
.y6_c00343{bottom:1020.241305px;}
.y5_c00343{bottom:1050.121035px;}
.y4_c00343{bottom:1080.360900px;}
.y3_c00343{bottom:1080.361470px;}
.y2_c00343{bottom:1109.520510px;}
.y1_c00343{bottom:1139.400240px;}
.h21_c00343{height:17.991211px;}
.h1e_c00343{height:21.120117px;}
.h1f_c00343{height:21.346436px;}
.h1d_c00343{height:22.818604px;}
.h1c_c00343{height:23.466797px;}
.h1b_c00343{height:25.031250px;}
.h19_c00343{height:26.595703px;}
.h18_c00343{height:28.722656px;}
.h1a_c00343{height:28.907227px;}
.h17_c00343{height:30.990234px;}
.h16_c00343{height:31.746094px;}
.h10_c00343{height:35.982422px;}
.h11_c00343{height:39.111328px;}
.h23_c00343{height:41.458008px;}
.h14_c00343{height:42.240234px;}
.h13_c00343{height:44.878784px;}
.h29_c00343{height:45.351562px;}
.h26_c00343{height:45.369141px;}
.h2a_c00343{height:45.955078px;}
.h27_c00343{height:46.107422px;}
.h28_c00343{height:46.696289px;}
.h25_c00343{height:46.863281px;}
.h15_c00343{height:46.933594px;}
.h2b_c00343{height:47.715820px;}
.h24_c00343{height:47.845459px;}
.h22_c00343{height:49.317627px;}
.h12_c00343{height:50.062500px;}
.ha_c00343{height:74.344482px;}
.h5_c00343{height:75.875977px;}
.h8_c00343{height:76.341797px;}
.h1_c00343{height:77.288818px;}
.h4_c00343{height:77.440430px;}
.h20_c00343{height:78.024902px;}
.hc_c00343{height:78.760986px;}
.he_c00343{height:80.121094px;}
.hf_c00343{height:80.233154px;}
.h7_c00343{height:80.969238px;}
.hb_c00343{height:81.705322px;}
.hd_c00343{height:83.177490px;}
.h9_c00343{height:84.498047px;}
.h3_c00343{height:85.385742px;}
.h2_c00343{height:87.462891px;}
.h6_c00343{height:105.600586px;}
.h0_c00343{height:1263.000000px;}
.w0_c00343{width:892.500000px;}
.x0_c00343{left:0.000000px;}
.x11_c00343{left:136.799445px;}
.x1_c00343{left:137.878950px;}
.x30_c00343{left:138.958350px;}
.x31_c00343{left:162.718500px;}
.x41_c00343{left:169.199850px;}
.x7_c00343{left:185.040000px;}
.x8_c00343{left:200.159850px;}
.x32_c00343{left:208.080000px;}
.x9_c00343{left:212.399250px;}
.x16_c00343{left:220.319250px;}
.x42_c00343{left:229.318800px;}
.x2_c00343{left:243.000000px;}
.x43_c00343{left:248.759535px;}
.x17_c00343{left:249.838950px;}
.xc_c00343{left:262.080000px;}
.x44_c00343{left:263.159385px;}
.x3_c00343{left:264.599700px;}
.x12_c00343{left:283.679700px;}
.x3c_c00343{left:287.998950px;}
.x39_c00343{left:289.080000px;}
.x13_c00343{left:297.718500px;}
.x45_c00343{left:299.158785px;}
.x46_c00343{left:308.519100px;}
.xd_c00343{left:312.479235px;}
.x4_c00343{left:331.199850px;}
.xe_c00343{left:333.358635px;}
.x47_c00343{left:334.798950px;}
.x18_c00343{left:340.558635px;}
.x3d_c00343{left:347.399235px;}
.x5_c00343{left:356.039385px;}
.x48_c00343{left:358.199850px;}
.x19_c00343{left:359.279250px;}
.x1d_c00343{left:368.998950px;}
.x49_c00343{left:371.518635px;}
.x1a_c00343{left:388.798920px;}
.x4a_c00343{left:390.598530px;}
.x1e_c00343{left:395.998950px;}
.x21_c00343{left:411.118785px;}
.x4b_c00343{left:413.279250px;}
.x4c_c00343{left:432.359250px;}
.x14_c00343{left:453.599670px;}
.x29_c00343{left:456.119385px;}
.x22_c00343{left:462.958335px;}
.xf_c00343{left:465.838950px;}
.x15_c00343{left:472.679670px;}
.x2a_c00343{left:480.238770px;}
.x33_c00343{left:482.399235px;}
.x1b_c00343{left:483.478635px;}
.x10_c00343{left:486.000000px;}
.x3e_c00343{left:487.079400px;}
.x34_c00343{left:494.279250px;}
.x25_c00343{left:509.039985px;}
.x1c_c00343{left:513.718500px;}
.x2b_c00343{left:535.679070px;}
.x26_c00343{left:539.639100px;}
.x3a_c00343{left:556.558635px;}
.x2c_c00343{left:566.279850px;}
.x35_c00343{left:568.799520px;}
.x3b_c00343{left:570.599070px;}
.x36_c00343{left:575.638545px;}
.xa_c00343{left:626.039385px;}
.x2d_c00343{left:629.279250px;}
.xb_c00343{left:640.080000px;}
.x1f_c00343{left:660.239220px;}
.x2e_c00343{left:673.198785px;}
.x20_c00343{left:675.718545px;}
.x23_c00343{left:679.678530px;}
.x37_c00343{left:687.598530px;}
.x24_c00343{left:692.998950px;}
.x3f_c00343{left:698.039985px;}
.x27_c00343{left:706.678530px;}
.x40_c00343{left:731.158770px;}
.x2f_c00343{left:734.039385px;}
.x6_c00343{left:735.838950px;}
.x28_c00343{left:738.719520px;}
.x38_c00343{left:744.479235px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls8_c00343{letter-spacing:-12.098147pt;}
.ls16_c00343{letter-spacing:-11.688040pt;}
.ls13_c00343{letter-spacing:-7.924000pt;}
.ls1c_c00343{letter-spacing:-7.854000pt;}
.ls12_c00343{letter-spacing:-7.266700pt;}
.ls18_c00343{letter-spacing:-6.601000pt;}
.ls19_c00343{letter-spacing:-5.943000pt;}
.ls33_c00343{letter-spacing:-5.831000pt;}
.lse_c00343{letter-spacing:-5.285000pt;}
.ls1a_c00343{letter-spacing:-4.625000pt;}
.ls17_c00343{letter-spacing:-4.619300pt;}
.ls1b_c00343{letter-spacing:-3.997000pt;}
.lsf_c00343{letter-spacing:-3.961300pt;}
.ls1d_c00343{letter-spacing:-3.927700pt;}
.ls20_c00343{letter-spacing:-3.894933pt;}
.ls3d_c00343{letter-spacing:-3.752000pt;}
.lsc_c00343{letter-spacing:-3.304000pt;}
.ls21_c00343{letter-spacing:-3.204973pt;}
.ls35_c00343{letter-spacing:-2.798400pt;}
.ls3c_c00343{letter-spacing:-2.756793pt;}
.ls1f_c00343{letter-spacing:-2.717733pt;}
.ls39_c00343{letter-spacing:-2.708333pt;}
.ls7_c00343{letter-spacing:-2.639000pt;}
.ls3e_c00343{letter-spacing:-2.480000pt;}
.ls1e_c00343{letter-spacing:-2.211867pt;}
.ls31_c00343{letter-spacing:-2.101800pt;}
.ls9_c00343{letter-spacing:-1.981700pt;}
.ls3a_c00343{letter-spacing:-1.967880pt;}
.ls23_c00343{letter-spacing:-1.626667pt;}
.ls14_c00343{letter-spacing:-1.400533pt;}
.ls3b_c00343{letter-spacing:-1.353793pt;}
.ls37_c00343{letter-spacing:-1.332067pt;}
.lsb_c00343{letter-spacing:-1.323700pt;}
.ls36_c00343{letter-spacing:-0.989000pt;}
.ls27_c00343{letter-spacing:-0.846000pt;}
.lsd_c00343{letter-spacing:-0.658000pt;}
.ls34_c00343{letter-spacing:-0.646400pt;}
.ls11_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:0.658000pt;}
.ls2d_c00343{letter-spacing:1.115140pt;}
.ls10_c00343{letter-spacing:1.405800pt;}
.ls3f_c00343{letter-spacing:1.594133pt;}
.lsa_c00343{letter-spacing:1.701333pt;}
.ls6_c00343{letter-spacing:1.981700pt;}
.ls2c_c00343{letter-spacing:1.998800pt;}
.ls25_c00343{letter-spacing:2.179733pt;}
.ls2_c00343{letter-spacing:2.287733pt;}
.ls15_c00343{letter-spacing:2.441267pt;}
.ls2e_c00343{letter-spacing:3.413333pt;}
.ls22_c00343{letter-spacing:4.118227pt;}
.ls2b_c00343{letter-spacing:4.258807pt;}
.ls2a_c00343{letter-spacing:4.499880pt;}
.ls29_c00343{letter-spacing:4.948000pt;}
.ls1_c00343{letter-spacing:5.035467pt;}
.ls24_c00343{letter-spacing:5.060693pt;}
.ls30_c00343{letter-spacing:5.166667pt;}
.ls32_c00343{letter-spacing:5.523727pt;}
.ls26_c00343{letter-spacing:7.231573pt;}
.ls28_c00343{letter-spacing:7.953067pt;}
.ls3_c00343{letter-spacing:8.000267pt;}
.ls2f_c00343{letter-spacing:8.888000pt;}
.ls38_c00343{letter-spacing:11.307020pt;}
.ls4_c00343{letter-spacing:11.334133pt;}
.ls5_c00343{letter-spacing:12.666667pt;}
.ws0_c00343{word-spacing:0.000000pt;}
._1e_c00343{margin-left:-27.820960pt;}
._1c_c00343{margin-left:-21.220529pt;}
._1b_c00343{margin-left:-14.331668pt;}
._1d_c00343{margin-left:-11.559638pt;}
._1f_c00343{margin-left:-9.062609pt;}
._13_c00343{margin-left:-6.749347pt;}
._16_c00343{margin-left:-4.909153pt;}
._a_c00343{margin-left:-3.756042pt;}
._15_c00343{margin-left:-2.669060pt;}
._14_c00343{margin-left:-0.933668pt;}
._10_c00343{width:0.926377pt;}
._d_c00343{width:2.241968pt;}
._b_c00343{width:3.774625pt;}
._0_c00343{width:4.694926pt;}
._1_c00343{width:6.299868pt;}
._c_c00343{width:7.279630pt;}
._2_c00343{width:8.333157pt;}
._e_c00343{width:9.232868pt;}
._1a_c00343{width:10.180232pt;}
._f_c00343{width:11.096994pt;}
._18_c00343{width:12.209334pt;}
._4_c00343{width:13.163592pt;}
._11_c00343{width:15.232594pt;}
._12_c00343{width:16.861230pt;}
._3_c00343{width:17.945358pt;}
._9_c00343{width:19.215264pt;}
._19_c00343{width:20.935626pt;}
._6_c00343{width:21.915904pt;}
._7_c00343{width:22.963170pt;}
._8_c00343{width:24.303208pt;}
._5_c00343{width:25.967174pt;}
._17_c00343{width:29.801377pt;}
.fs1e_c00343{font-size:15.333333pt;}
.fs1c_c00343{font-size:18.000000pt;}
.fs1d_c00343{font-size:19.333333pt;}
.fs1a_c00343{font-size:20.000000pt;}
.fs1b_c00343{font-size:20.666667pt;}
.fs19_c00343{font-size:21.333333pt;}
.fs17_c00343{font-size:22.666667pt;}
.fs16_c00343{font-size:25.333333pt;}
.fs18_c00343{font-size:26.000000pt;}
.fs15_c00343{font-size:27.333333pt;}
.fs14_c00343{font-size:28.000000pt;}
.fse_c00343{font-size:30.666667pt;}
.fsf_c00343{font-size:33.333333pt;}
.fs20_c00343{font-size:35.333333pt;}
.fs12_c00343{font-size:36.000000pt;}
.fs23_c00343{font-size:38.666667pt;}
.fs13_c00343{font-size:40.000000pt;}
.fs11_c00343{font-size:40.666667pt;}
.fs22_c00343{font-size:41.333333pt;}
.fs24_c00343{font-size:42.000000pt;}
.fs10_c00343{font-size:42.666667pt;}
.fs21_c00343{font-size:43.333333pt;}
.fs1f_c00343{font-size:44.666667pt;}
.fs4_c00343{font-size:64.666667pt;}
.fs3_c00343{font-size:66.000000pt;}
.fs7_c00343{font-size:67.333333pt;}
.fs0_c00343{font-size:70.000000pt;}
.fsc_c00343{font-size:70.666667pt;}
.fsa_c00343{font-size:71.333333pt;}
.fsd_c00343{font-size:72.666667pt;}
.fs6_c00343{font-size:73.333333pt;}
.fs9_c00343{font-size:74.000000pt;}
.fsb_c00343{font-size:75.333333pt;}
.fs8_c00343{font-size:76.000000pt;}
.fs2_c00343{font-size:77.333333pt;}
.fs1_c00343{font-size:78.666667pt;}
.fs5_c00343{font-size:90.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y2a_c00343{bottom:154.560000pt;}
.y29_c00343{bottom:179.840267pt;}
.y28_c00343{bottom:244.480240pt;}
.y27_c00343{bottom:271.040000pt;}
.y26_c00343{bottom:271.040773pt;}
.y24_c00343{bottom:297.599973pt;}
.y25_c00343{bottom:297.600520pt;}
.y23_c00343{bottom:324.159733pt;}
.y22_c00343{bottom:350.400920pt;}
.y21_c00343{bottom:376.960000pt;}
.y20_c00343{bottom:381.760253pt;}
.y1f_c00343{bottom:403.520507pt;}
.y1e_c00343{bottom:403.520547pt;}
.y1d_c00343{bottom:430.719040pt;}
.y1c_c00343{bottom:456.960227pt;}
.y1a_c00343{bottom:483.519373pt;}
.y1b_c00343{bottom:483.519973pt;}
.y19_c00343{bottom:509.440387pt;}
.y18_c00343{bottom:509.441187pt;}
.y17_c00343{bottom:536.000933pt;}
.y16_c00343{bottom:536.001053pt;}
.y14_c00343{bottom:562.240093pt;}
.y15_c00343{bottom:562.240640pt;}
.y12_c00343{bottom:588.798853pt;}
.y13_c00343{bottom:588.799840pt;}
.y11_c00343{bottom:641.920227pt;}
.y10_c00343{bottom:668.479987pt;}
.yf_c00343{bottom:668.480533pt;}
.ye_c00343{bottom:695.040280pt;}
.yd_c00343{bottom:721.920213pt;}
.yc_c00343{bottom:748.479960pt;}
.yb_c00343{bottom:774.719547pt;}
.ya_c00343{bottom:827.520493pt;}
.y9_c00343{bottom:880.319827pt;}
.y8_c00343{bottom:880.320613pt;}
.y7_c00343{bottom:906.880373pt;}
.y6_c00343{bottom:906.881160pt;}
.y5_c00343{bottom:933.440920pt;}
.y4_c00343{bottom:960.320800pt;}
.y3_c00343{bottom:960.321307pt;}
.y2_c00343{bottom:986.240453pt;}
.y1_c00343{bottom:1012.800213pt;}
.h21_c00343{height:15.992187pt;}
.h1e_c00343{height:18.773437pt;}
.h1f_c00343{height:18.974609pt;}
.h1d_c00343{height:20.283203pt;}
.h1c_c00343{height:20.859375pt;}
.h1b_c00343{height:22.250000pt;}
.h19_c00343{height:23.640625pt;}
.h18_c00343{height:25.531250pt;}
.h1a_c00343{height:25.695312pt;}
.h17_c00343{height:27.546875pt;}
.h16_c00343{height:28.218750pt;}
.h10_c00343{height:31.984375pt;}
.h11_c00343{height:34.765625pt;}
.h23_c00343{height:36.851562pt;}
.h14_c00343{height:37.546875pt;}
.h13_c00343{height:39.892253pt;}
.h29_c00343{height:40.312500pt;}
.h26_c00343{height:40.328125pt;}
.h2a_c00343{height:40.848958pt;}
.h27_c00343{height:40.984375pt;}
.h28_c00343{height:41.507812pt;}
.h25_c00343{height:41.656250pt;}
.h15_c00343{height:41.718750pt;}
.h2b_c00343{height:42.414062pt;}
.h24_c00343{height:42.529297pt;}
.h22_c00343{height:43.837891pt;}
.h12_c00343{height:44.500000pt;}
.ha_c00343{height:66.083984pt;}
.h5_c00343{height:67.445312pt;}
.h8_c00343{height:67.859375pt;}
.h1_c00343{height:68.701172pt;}
.h4_c00343{height:68.835938pt;}
.h20_c00343{height:69.355469pt;}
.hc_c00343{height:70.009766pt;}
.he_c00343{height:71.218750pt;}
.hf_c00343{height:71.318359pt;}
.h7_c00343{height:71.972656pt;}
.hb_c00343{height:72.626953pt;}
.hd_c00343{height:73.935547pt;}
.h9_c00343{height:75.109375pt;}
.h3_c00343{height:75.898438pt;}
.h2_c00343{height:77.744792pt;}
.h6_c00343{height:93.867188pt;}
.h0_c00343{height:1122.666667pt;}
.w0_c00343{width:793.333333pt;}
.x0_c00343{left:0.000000pt;}
.x11_c00343{left:121.599507pt;}
.x1_c00343{left:122.559067pt;}
.x30_c00343{left:123.518533pt;}
.x31_c00343{left:144.638667pt;}
.x41_c00343{left:150.399867pt;}
.x7_c00343{left:164.480000pt;}
.x8_c00343{left:177.919867pt;}
.x32_c00343{left:184.960000pt;}
.x9_c00343{left:188.799333pt;}
.x16_c00343{left:195.839333pt;}
.x42_c00343{left:203.838933pt;}
.x2_c00343{left:216.000000pt;}
.x43_c00343{left:221.119587pt;}
.x17_c00343{left:222.079067pt;}
.xc_c00343{left:232.960000pt;}
.x44_c00343{left:233.919453pt;}
.x3_c00343{left:235.199733pt;}
.x12_c00343{left:252.159733pt;}
.x3c_c00343{left:255.999067pt;}
.x39_c00343{left:256.960000pt;}
.x13_c00343{left:264.638667pt;}
.x45_c00343{left:265.918920pt;}
.x46_c00343{left:274.239200pt;}
.xd_c00343{left:277.759320pt;}
.x4_c00343{left:294.399867pt;}
.xe_c00343{left:296.318787pt;}
.x47_c00343{left:297.599067pt;}
.x18_c00343{left:302.718787pt;}
.x3d_c00343{left:308.799320pt;}
.x5_c00343{left:316.479453pt;}
.x48_c00343{left:318.399867pt;}
.x19_c00343{left:319.359333pt;}
.x1d_c00343{left:327.999067pt;}
.x49_c00343{left:330.238787pt;}
.x1a_c00343{left:345.599040pt;}
.x4a_c00343{left:347.198693pt;}
.x1e_c00343{left:351.999067pt;}
.x21_c00343{left:365.438920pt;}
.x4b_c00343{left:367.359333pt;}
.x4c_c00343{left:384.319333pt;}
.x14_c00343{left:403.199707pt;}
.x29_c00343{left:405.439453pt;}
.x22_c00343{left:411.518520pt;}
.xf_c00343{left:414.079067pt;}
.x15_c00343{left:420.159707pt;}
.x2a_c00343{left:426.878907pt;}
.x33_c00343{left:428.799320pt;}
.x1b_c00343{left:429.758787pt;}
.x10_c00343{left:432.000000pt;}
.x3e_c00343{left:432.959467pt;}
.x34_c00343{left:439.359333pt;}
.x25_c00343{left:452.479987pt;}
.x1c_c00343{left:456.638667pt;}
.x2b_c00343{left:476.159173pt;}
.x26_c00343{left:479.679200pt;}
.x3a_c00343{left:494.718787pt;}
.x2c_c00343{left:503.359867pt;}
.x35_c00343{left:505.599573pt;}
.x3b_c00343{left:507.199173pt;}
.x36_c00343{left:511.678707pt;}
.xa_c00343{left:556.479453pt;}
.x2d_c00343{left:559.359333pt;}
.xb_c00343{left:568.960000pt;}
.x1f_c00343{left:586.879307pt;}
.x2e_c00343{left:598.398920pt;}
.x20_c00343{left:600.638707pt;}
.x23_c00343{left:604.158693pt;}
.x37_c00343{left:611.198693pt;}
.x24_c00343{left:615.999067pt;}
.x3f_c00343{left:620.479987pt;}
.x27_c00343{left:628.158693pt;}
.x40_c00343{left:649.918907pt;}
.x2f_c00343{left:652.479453pt;}
.x6_c00343{left:654.079067pt;}
.x28_c00343{left:656.639573pt;}
.x38_c00343{left:661.759320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06c8bfbe3150f952d654a862.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_b3c3b9dea8a6b40b2d38d597.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_c89e287f31df4a584ec3ab46.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_9e649b58e3eee89fead51925.woff2')format("woff");}.ff5_c00344{font-family:ff5_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:ff6_c00344;src:url('chunks/assets/font_7c38943d79254ee1fa9681c3.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:1.364746;font-style:normal;font-weight: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_c00344;src:url('chunks/assets/font_d21cebcd7f10bdd9ee797f26.woff2')format("woff");}.ff7_c00344{font-family:ff7_c00344;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00344;src:url('chunks/assets/font_b523b2610558e5bc18fbf7ea.woff2')format("woff");}.ff8_c00344{font-family:ff8_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;}
.mf_c00344{transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);}
.m36_c00344{transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184685,0.000000,0.000000,0.250000,0,0);}
.m31_c00344{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.m37_c00344{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.203608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203608,0.000000,0.000000,0.250000,0,0);}
.m2e_c00344{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m35_c00344{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.m32_c00344{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1a_c00344{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m33_c00344{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m1e_c00344{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m34_c00344{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.md_c00344{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);}
.mc_c00344{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m30_c00344{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m27_c00344{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m28_c00344{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m2f_c00344{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m18_c00344{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m2d_c00344{transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);}
.m13_c00344{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{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_c00344{transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);}
.m1f_c00344{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m17_c00344{transform:matrix(0.370536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370536,0.000000,0.000000,0.250000,0,0);}
.m23_c00344{transform:matrix(0.370690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370690,0.000000,0.000000,0.250000,0,0);}
.m26_c00344{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);}
.m21_c00344{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m1d_c00344{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m20_c00344{transform:matrix(0.451087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451087,0.000000,0.000000,0.250000,0,0);}
.m29_c00344{transform:matrix(0.456140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456140,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.490741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490741,0.000000,0.000000,0.250000,0,0);}
.m2c_c00344{transform:matrix(0.492424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492424,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.505682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505682,0.000000,0.000000,0.250000,0,0);}
.m24_c00344{transform:matrix(0.506098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506098,0.000000,0.000000,0.250000,0,0);}
.m2a_c00344{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);}
.v0_c00344{vertical-align:0.000000px;}
.ls12_c00344{letter-spacing:-21.606750px;}
.lse_c00344{letter-spacing:-14.210775px;}
.ls3a_c00344{letter-spacing:-14.082750px;}
.ls39_c00344{letter-spacing:-12.572333px;}
.ls1c_c00344{letter-spacing:-12.221100px;}
.ls7_c00344{letter-spacing:-10.128825px;}
.ls38_c00344{letter-spacing:-8.914500px;}
.ls1b_c00344{letter-spacing:-8.175038px;}
.ls22_c00344{letter-spacing:-7.085400px;}
.ls34_c00344{letter-spacing:-6.685875px;}
.ls1d_c00344{letter-spacing:-5.945625px;}
.ls1a_c00344{letter-spacing:-5.779800px;}
.lsd_c00344{letter-spacing:-5.196713px;}
.ls23_c00344{letter-spacing:-5.082825px;}
.ls1f_c00344{letter-spacing:-4.499550px;}
.ls8_c00344{letter-spacing:-4.456463px;}
.ls5_c00344{letter-spacing:-3.717000px;}
.ls26_c00344{letter-spacing:-3.325568px;}
.lsf_c00344{letter-spacing:-3.242678px;}
.ls20_c00344{letter-spacing:-3.055522px;}
.ls15_c00344{letter-spacing:-3.025425px;}
.ls1e_c00344{letter-spacing:-2.971800px;}
.ls6_c00344{letter-spacing:-2.968875px;}
.ls32_c00344{letter-spacing:-2.919293px;}
.ls11_c00344{letter-spacing:-2.452500px;}
.ls36_c00344{letter-spacing:-2.431575px;}
.ls9_c00344{letter-spacing:-2.229413px;}
.lsc_c00344{letter-spacing:-1.840575px;}
.ls13_c00344{letter-spacing:-1.684800px;}
.ls2b_c00344{letter-spacing:-1.518150px;}
.lsa_c00344{letter-spacing:-1.489163px;}
.ls35_c00344{letter-spacing:-0.850650px;}
.ls14_c00344{letter-spacing:-0.794820px;}
.ls17_c00344{letter-spacing:-0.779100px;}
.lsb_c00344{letter-spacing:-0.740250px;}
.ls2f_c00344{letter-spacing:-0.720000px;}
.ls19_c00344{letter-spacing:0.000000px;}
.ls2a_c00344{letter-spacing:0.458700px;}
.ls3_c00344{letter-spacing:0.740250px;}
.ls37_c00344{letter-spacing:0.752490px;}
.ls1_c00344{letter-spacing:0.845917px;}
.ls33_c00344{letter-spacing:1.514873px;}
.ls28_c00344{letter-spacing:1.548030px;}
.ls29_c00344{letter-spacing:1.662900px;}
.ls4_c00344{letter-spacing:2.229413px;}
.ls18_c00344{letter-spacing:2.370000px;}
.ls25_c00344{letter-spacing:2.708843px;}
.ls0_c00344{letter-spacing:3.131100px;}
.ls10_c00344{letter-spacing:3.604028px;}
.ls21_c00344{letter-spacing:4.410000px;}
.ls2_c00344{letter-spacing:5.928742px;}
.ls2c_c00344{letter-spacing:5.945625px;}
.ls30_c00344{letter-spacing:7.326375px;}
.ls16_c00344{letter-spacing:7.545375px;}
.ls31_c00344{letter-spacing:10.844925px;}
.ls2d_c00344{letter-spacing:10.980825px;}
.ls27_c00344{letter-spacing:16.099425px;}
.ls2e_c00344{letter-spacing:26.308350px;}
.ls24_c00344{letter-spacing:30.750000px;}
.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;}
._1b_c00344{margin-left:-11.467233px;}
._11_c00344{margin-left:-9.758685px;}
._c_c00344{margin-left:-7.393927px;}
._3_c00344{margin-left:-5.514699px;}
._2_c00344{margin-left:-3.829494px;}
._1_c00344{margin-left:-2.347939px;}
._1c_c00344{margin-left:-1.220031px;}
._7_c00344{width:2.007947px;}
._0_c00344{width:3.914202px;}
._4_c00344{width:5.380928px;}
._8_c00344{width:6.997443px;}
._e_c00344{width:8.099839px;}
._5_c00344{width:9.355975px;}
._9_c00344{width:10.379740px;}
._b_c00344{width:12.253693px;}
._6_c00344{width:13.358749px;}
._f_c00344{width:15.154145px;}
._14_c00344{width:16.439761px;}
._d_c00344{width:17.954673px;}
._a_c00344{width:19.977345px;}
._10_c00344{width:22.242566px;}
._1d_c00344{width:24.704380px;}
._13_c00344{width:26.028310px;}
._19_c00344{width:28.572357px;}
._1a_c00344{width:29.787247px;}
._15_c00344{width:32.848928px;}
._18_c00344{width:35.685860px;}
._16_c00344{width:38.827019px;}
._17_c00344{width:41.825314px;}
._12_c00344{width:68.106076px;}
.fc0_c00344{color:transparent;}
.fsf_c00344{font-size:20.250000px;}
.fs1d_c00344{font-size:24.750000px;}
.fs15_c00344{font-size:26.250000px;}
.fs1b_c00344{font-size:28.500000px;}
.fs14_c00344{font-size:29.250000px;}
.fs19_c00344{font-size:30.000000px;}
.fs13_c00344{font-size:30.750000px;}
.fs16_c00344{font-size:33.000000px;}
.fs17_c00344{font-size:34.500000px;}
.fs1e_c00344{font-size:36.750000px;}
.fs1c_c00344{font-size:37.500000px;}
.fsd_c00344{font-size:40.500000px;}
.fs10_c00344{font-size:42.000000px;}
.fse_c00344{font-size:42.750000px;}
.fs18_c00344{font-size:43.500000px;}
.fs1a_c00344{font-size:45.000000px;}
.fs12_c00344{font-size:45.750000px;}
.fs11_c00344{font-size:56.250000px;}
.fs4_c00344{font-size:69.750000px;}
.fs9_c00344{font-size:71.250000px;}
.fs2_c00344{font-size:72.750000px;}
.fsa_c00344{font-size:73.500000px;}
.fsb_c00344{font-size:75.000000px;}
.fs1f_c00344{font-size:77.250000px;}
.fs8_c00344{font-size:78.000000px;}
.fs0_c00344{font-size:78.750000px;}
.fs5_c00344{font-size:80.250000px;}
.fs7_c00344{font-size:81.000000px;}
.fs1_c00344{font-size:81.750000px;}
.fs6_c00344{font-size:82.500000px;}
.fs3_c00344{font-size:83.250000px;}
.fsc_c00344{font-size:85.500000px;}
.fs20_c00344{font-size:87.000000px;}
.y0_c00344{bottom:0.000000px;}
.y2c_c00344{bottom:180.720750px;}
.y2b_c00344{bottom:180.722115px;}
.y2a_c00344{bottom:210.241650px;}
.y29_c00344{bottom:240.121380px;}
.y28_c00344{bottom:269.640900px;}
.y27_c00344{bottom:299.160435px;}
.y26_c00344{bottom:299.160555px;}
.y25_c00344{bottom:358.920000px;}
.y24_c00344{bottom:358.920165px;}
.y23_c00344{bottom:387.719010px;}
.y22_c00344{bottom:417.961035px;}
.y21_c00344{bottom:417.961350px;}
.y20_c00344{bottom:447.480885px;}
.y1f_c00344{bottom:447.481245px;}
.y1e_c00344{bottom:478.441845px;}
.y1d_c00344{bottom:507.961365px;}
.y1c_c00344{bottom:537.480900px;}
.y1b_c00344{bottom:567.179490px;}
.y1a_c00344{bottom:596.519670px;}
.y19_c00344{bottom:596.519685px;}
.y18_c00344{bottom:626.041035px;}
.y16_c00344{bottom:656.280195px;}
.y17_c00344{bottom:656.280900px;}
.y15_c00344{bottom:716.399820px;}
.y14_c00344{bottom:746.459970px;}
.y13_c00344{bottom:752.400885px;}
.y11_c00344{bottom:776.160420px;}
.y12_c00344{bottom:776.161005px;}
.y10_c00344{bottom:805.679940px;}
.yf_c00344{bottom:835.559670px;}
.ye_c00344{bottom:865.081005px;}
.yd_c00344{bottom:895.320930px;}
.yc_c00344{bottom:895.320975px;}
.yb_c00344{bottom:924.840495px;}
.ya_c00344{bottom:955.080420px;}
.y9_c00344{bottom:955.080600px;}
.y8_c00344{bottom:984.600135px;}
.y6_c00344{bottom:1014.839400px;}
.y7_c00344{bottom:1014.840090px;}
.y5_c00344{bottom:1044.000555px;}
.y4_c00344{bottom:1073.161005px;}
.y2_c00344{bottom:1103.039925px;}
.y3_c00344{bottom:1103.039985px;}
.y1_c00344{bottom:1133.279850px;}
.h13_c00344{height:21.120117px;}
.h27_c00344{height:24.290771px;}
.h26_c00344{height:25.762939px;}
.h19_c00344{height:25.942383px;}
.h23_c00344{height:27.971191px;}
.h20_c00344{height:29.443359px;}
.h22_c00344{height:30.179443px;}
.h18_c00344{height:30.506836px;}
.h1f_c00344{height:30.990234px;}
.h17_c00344{height:32.071289px;}
.h1c_c00344{height:32.387695px;}
.h1d_c00344{height:33.257812px;}
.h1b_c00344{height:33.859863px;}
.h1a_c00344{height:34.417969px;}
.h28_c00344{height:36.068115px;}
.h25_c00344{height:36.804199px;}
.h24_c00344{height:41.956787px;}
.h11_c00344{height:42.240234px;}
.h12_c00344{height:43.083984px;}
.h14_c00344{height:43.804688px;}
.h21_c00344{height:44.165039px;}
.h1e_c00344{height:45.369141px;}
.h16_c00344{height:47.715820px;}
.h15_c00344{height:58.666992px;}
.hb_c00344{height:71.806641px;}
.h5_c00344{height:72.747070px;}
.hc_c00344{height:74.074219px;}
.hd_c00344{height:75.585938px;}
.h2a_c00344{height:75.778931px;}
.h3_c00344{height:75.875977px;}
.h10_c00344{height:76.552734px;}
.h1_c00344{height:77.288818px;}
.ha_c00344{height:78.609375px;}
.he_c00344{height:78.760986px;}
.h2_c00344{height:80.233154px;}
.h2c_c00344{height:80.791992px;}
.h6_c00344{height:80.876953px;}
.h29_c00344{height:80.969238px;}
.h8_c00344{height:81.533203px;}
.h9_c00344{height:81.632812px;}
.h4_c00344{height:82.274414px;}
.h7_c00344{height:82.388672px;}
.hf_c00344{height:84.498047px;}
.h2b_c00344{height:85.385742px;}
.h0_c00344{height:1263.000000px;}
.w0_c00344{width:892.500000px;}
.x0_c00344{left:0.000000px;}
.x13_c00344{left:136.797450px;}
.x1_c00344{left:137.878950px;}
.x2f_c00344{left:138.958920px;}
.x12_c00344{left:158.399250px;}
.x2d_c00344{left:173.519100px;}
.x8_c00344{left:174.598500px;}
.x39_c00344{left:192.958350px;}
.x18_c00344{left:233.278800px;}
.x3b_c00344{left:235.798515px;}
.x19_c00344{left:249.118785px;}
.x1c_c00344{left:253.439685px;}
.x3c_c00344{left:255.959400px;}
.x9_c00344{left:272.158785px;}
.x1d_c00344{left:285.479235px;}
.x1e_c00344{left:294.478635px;}
.x2_c00344{left:310.318800px;}
.x1f_c00344{left:314.639700px;}
.x27_c00344{left:316.439235px;}
.x3_c00344{left:334.439685px;}
.x1a_c00344{left:341.998950px;}
.xa_c00344{left:344.159385px;}
.x31_c00344{left:352.799535px;}
.x1b_c00344{left:367.558635px;}
.x32_c00344{left:369.359850px;}
.x3a_c00344{left:371.518635px;}
.x20_c00344{left:382.319235px;}
.x28_c00344{left:391.318770px;}
.x14_c00344{left:392.399820px;}
.x21_c00344{left:403.198785px;}
.x15_c00344{left:406.079400px;}
.x11_c00344{left:410.039385px;}
.x4_c00344{left:415.439670px;}
.xb_c00344{left:421.919535px;}
.x22_c00344{left:424.080000px;}
.x33_c00344{left:437.039385px;}
.x5_c00344{left:447.838530px;}
.x23_c00344{left:462.239820px;}
.xc_c00344{left:482.758530px;}
.x34_c00344{left:491.759535px;}
.xd_c00344{left:525.239220px;}
.x35_c00344{left:529.919535px;}
.x24_c00344{left:570.599070px;}
.x25_c00344{left:582.838530px;}
.xe_c00344{left:598.319235px;}
.x26_c00344{left:600.479685px;}
.x2e_c00344{left:615.958920px;}
.xf_c00344{left:626.039385px;}
.x36_c00344{left:632.159820px;}
.x2b_c00344{left:637.558635px;}
.x2c_c00344{left:653.398635px;}
.x6_c00344{left:677.878920px;}
.x16_c00344{left:685.078770px;}
.x37_c00344{left:687.598530px;}
.x29_c00344{left:690.838530px;}
.x7_c00344{left:698.758530px;}
.x30_c00344{left:703.079355px;}
.x2a_c00344{left:712.439670px;}
.x38_c00344{left:716.759085px;}
.x17_c00344{left:722.159370px;}
.x10_c00344{left:759.599070px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls12_c00344{letter-spacing:-19.206000pt;}
.lse_c00344{letter-spacing:-12.631800pt;}
.ls3a_c00344{letter-spacing:-12.518000pt;}
.ls39_c00344{letter-spacing:-11.175407pt;}
.ls1c_c00344{letter-spacing:-10.863200pt;}
.ls7_c00344{letter-spacing:-9.003400pt;}
.ls38_c00344{letter-spacing:-7.924000pt;}
.ls1b_c00344{letter-spacing:-7.266700pt;}
.ls22_c00344{letter-spacing:-6.298133pt;}
.ls34_c00344{letter-spacing:-5.943000pt;}
.ls1d_c00344{letter-spacing:-5.285000pt;}
.ls1a_c00344{letter-spacing:-5.137600pt;}
.lsd_c00344{letter-spacing:-4.619300pt;}
.ls23_c00344{letter-spacing:-4.518067pt;}
.ls1f_c00344{letter-spacing:-3.999600pt;}
.ls8_c00344{letter-spacing:-3.961300pt;}
.ls5_c00344{letter-spacing:-3.304000pt;}
.ls26_c00344{letter-spacing:-2.956060pt;}
.lsf_c00344{letter-spacing:-2.882380pt;}
.ls20_c00344{letter-spacing:-2.716020pt;}
.ls15_c00344{letter-spacing:-2.689267pt;}
.ls1e_c00344{letter-spacing:-2.641600pt;}
.ls6_c00344{letter-spacing:-2.639000pt;}
.ls32_c00344{letter-spacing:-2.594927pt;}
.ls11_c00344{letter-spacing:-2.180000pt;}
.ls36_c00344{letter-spacing:-2.161400pt;}
.ls9_c00344{letter-spacing:-1.981700pt;}
.lsc_c00344{letter-spacing:-1.636067pt;}
.ls13_c00344{letter-spacing:-1.497600pt;}
.ls2b_c00344{letter-spacing:-1.349467pt;}
.lsa_c00344{letter-spacing:-1.323700pt;}
.ls35_c00344{letter-spacing:-0.756133pt;}
.ls14_c00344{letter-spacing:-0.706507pt;}
.ls17_c00344{letter-spacing:-0.692533pt;}
.lsb_c00344{letter-spacing:-0.658000pt;}
.ls2f_c00344{letter-spacing:-0.640000pt;}
.ls19_c00344{letter-spacing:0.000000pt;}
.ls2a_c00344{letter-spacing:0.407733pt;}
.ls3_c00344{letter-spacing:0.658000pt;}
.ls37_c00344{letter-spacing:0.668880pt;}
.ls1_c00344{letter-spacing:0.751927pt;}
.ls33_c00344{letter-spacing:1.346553pt;}
.ls28_c00344{letter-spacing:1.376027pt;}
.ls29_c00344{letter-spacing:1.478133pt;}
.ls4_c00344{letter-spacing:1.981700pt;}
.ls18_c00344{letter-spacing:2.106667pt;}
.ls25_c00344{letter-spacing:2.407860pt;}
.ls0_c00344{letter-spacing:2.783200pt;}
.ls10_c00344{letter-spacing:3.203580pt;}
.ls21_c00344{letter-spacing:3.920000pt;}
.ls2_c00344{letter-spacing:5.269993pt;}
.ls2c_c00344{letter-spacing:5.285000pt;}
.ls30_c00344{letter-spacing:6.512333pt;}
.ls16_c00344{letter-spacing:6.707000pt;}
.ls31_c00344{letter-spacing:9.639933pt;}
.ls2d_c00344{letter-spacing:9.760733pt;}
.ls27_c00344{letter-spacing:14.310600pt;}
.ls2e_c00344{letter-spacing:23.385200pt;}
.ls24_c00344{letter-spacing:27.333333pt;}
.ws0_c00344{word-spacing:0.000000pt;}
._1b_c00344{margin-left:-10.193096pt;}
._11_c00344{margin-left:-8.674387pt;}
._c_c00344{margin-left:-6.572379pt;}
._3_c00344{margin-left:-4.901955pt;}
._2_c00344{margin-left:-3.403994pt;}
._1_c00344{margin-left:-2.087057pt;}
._1c_c00344{margin-left:-1.084472pt;}
._7_c00344{width:1.784842pt;}
._0_c00344{width:3.479291pt;}
._4_c00344{width:4.783047pt;}
._8_c00344{width:6.219949pt;}
._e_c00344{width:7.199857pt;}
._5_c00344{width:8.316423pt;}
._9_c00344{width:9.226436pt;}
._b_c00344{width:10.892172pt;}
._6_c00344{width:11.874443pt;}
._f_c00344{width:13.470351pt;}
._14_c00344{width:14.613121pt;}
._d_c00344{width:15.959709pt;}
._a_c00344{width:17.757640pt;}
._10_c00344{width:19.771170pt;}
._1d_c00344{width:21.959449pt;}
._13_c00344{width:23.136276pt;}
._19_c00344{width:25.397651pt;}
._1a_c00344{width:26.477553pt;}
._15_c00344{width:29.199047pt;}
._18_c00344{width:31.720764pt;}
._16_c00344{width:34.512906pt;}
._17_c00344{width:37.178057pt;}
._12_c00344{width:60.538735pt;}
.fsf_c00344{font-size:18.000000pt;}
.fs1d_c00344{font-size:22.000000pt;}
.fs15_c00344{font-size:23.333333pt;}
.fs1b_c00344{font-size:25.333333pt;}
.fs14_c00344{font-size:26.000000pt;}
.fs19_c00344{font-size:26.666667pt;}
.fs13_c00344{font-size:27.333333pt;}
.fs16_c00344{font-size:29.333333pt;}
.fs17_c00344{font-size:30.666667pt;}
.fs1e_c00344{font-size:32.666667pt;}
.fs1c_c00344{font-size:33.333333pt;}
.fsd_c00344{font-size:36.000000pt;}
.fs10_c00344{font-size:37.333333pt;}
.fse_c00344{font-size:38.000000pt;}
.fs18_c00344{font-size:38.666667pt;}
.fs1a_c00344{font-size:40.000000pt;}
.fs12_c00344{font-size:40.666667pt;}
.fs11_c00344{font-size:50.000000pt;}
.fs4_c00344{font-size:62.000000pt;}
.fs9_c00344{font-size:63.333333pt;}
.fs2_c00344{font-size:64.666667pt;}
.fsa_c00344{font-size:65.333333pt;}
.fsb_c00344{font-size:66.666667pt;}
.fs1f_c00344{font-size:68.666667pt;}
.fs8_c00344{font-size:69.333333pt;}
.fs0_c00344{font-size:70.000000pt;}
.fs5_c00344{font-size:71.333333pt;}
.fs7_c00344{font-size:72.000000pt;}
.fs1_c00344{font-size:72.666667pt;}
.fs6_c00344{font-size:73.333333pt;}
.fs3_c00344{font-size:74.000000pt;}
.fsc_c00344{font-size:76.000000pt;}
.fs20_c00344{font-size:77.333333pt;}
.y0_c00344{bottom:0.000000pt;}
.y2c_c00344{bottom:160.640667pt;}
.y2b_c00344{bottom:160.641880pt;}
.y2a_c00344{bottom:186.881467pt;}
.y29_c00344{bottom:213.441227pt;}
.y28_c00344{bottom:239.680800pt;}
.y27_c00344{bottom:265.920387pt;}
.y26_c00344{bottom:265.920493pt;}
.y25_c00344{bottom:319.040000pt;}
.y24_c00344{bottom:319.040147pt;}
.y23_c00344{bottom:344.639120pt;}
.y22_c00344{bottom:371.520920pt;}
.y21_c00344{bottom:371.521200pt;}
.y20_c00344{bottom:397.760787pt;}
.y1f_c00344{bottom:397.761107pt;}
.y1e_c00344{bottom:425.281640pt;}
.y1d_c00344{bottom:451.521213pt;}
.y1c_c00344{bottom:477.760800pt;}
.y1b_c00344{bottom:504.159547pt;}
.y1a_c00344{bottom:530.239707pt;}
.y19_c00344{bottom:530.239720pt;}
.y18_c00344{bottom:556.480920pt;}
.y16_c00344{bottom:583.360173pt;}
.y17_c00344{bottom:583.360800pt;}
.y15_c00344{bottom:636.799840pt;}
.y14_c00344{bottom:663.519973pt;}
.y13_c00344{bottom:668.800787pt;}
.y11_c00344{bottom:689.920373pt;}
.y12_c00344{bottom:689.920893pt;}
.y10_c00344{bottom:716.159947pt;}
.yf_c00344{bottom:742.719707pt;}
.ye_c00344{bottom:768.960893pt;}
.yd_c00344{bottom:795.840827pt;}
.yc_c00344{bottom:795.840867pt;}
.yb_c00344{bottom:822.080440pt;}
.ya_c00344{bottom:848.960373pt;}
.y9_c00344{bottom:848.960533pt;}
.y8_c00344{bottom:875.200120pt;}
.y6_c00344{bottom:902.079467pt;}
.y7_c00344{bottom:902.080080pt;}
.y5_c00344{bottom:928.000493pt;}
.y4_c00344{bottom:953.920893pt;}
.y2_c00344{bottom:980.479933pt;}
.y3_c00344{bottom:980.479987pt;}
.y1_c00344{bottom:1007.359867pt;}
.h13_c00344{height:18.773437pt;}
.h27_c00344{height:21.591797pt;}
.h26_c00344{height:22.900391pt;}
.h19_c00344{height:23.059896pt;}
.h23_c00344{height:24.863281pt;}
.h20_c00344{height:26.171875pt;}
.h22_c00344{height:26.826172pt;}
.h18_c00344{height:27.117188pt;}
.h1f_c00344{height:27.546875pt;}
.h17_c00344{height:28.507812pt;}
.h1c_c00344{height:28.789062pt;}
.h1d_c00344{height:29.562500pt;}
.h1b_c00344{height:30.097656pt;}
.h1a_c00344{height:30.593750pt;}
.h28_c00344{height:32.060547pt;}
.h25_c00344{height:32.714844pt;}
.h24_c00344{height:37.294922pt;}
.h11_c00344{height:37.546875pt;}
.h12_c00344{height:38.296875pt;}
.h14_c00344{height:38.937500pt;}
.h21_c00344{height:39.257812pt;}
.h1e_c00344{height:40.328125pt;}
.h16_c00344{height:42.414062pt;}
.h15_c00344{height:52.148438pt;}
.hb_c00344{height:63.828125pt;}
.h5_c00344{height:64.664062pt;}
.hc_c00344{height:65.843750pt;}
.hd_c00344{height:67.187500pt;}
.h2a_c00344{height:67.359049pt;}
.h3_c00344{height:67.445312pt;}
.h10_c00344{height:68.046875pt;}
.h1_c00344{height:68.701172pt;}
.ha_c00344{height:69.875000pt;}
.he_c00344{height:70.009766pt;}
.h2_c00344{height:71.318359pt;}
.h2c_c00344{height:71.815104pt;}
.h6_c00344{height:71.890625pt;}
.h29_c00344{height:71.972656pt;}
.h8_c00344{height:72.473958pt;}
.h9_c00344{height:72.562500pt;}
.h4_c00344{height:73.132813pt;}
.h7_c00344{height:73.234375pt;}
.hf_c00344{height:75.109375pt;}
.h2b_c00344{height:75.898438pt;}
.h0_c00344{height:1122.666667pt;}
.w0_c00344{width:793.333333pt;}
.x0_c00344{left:0.000000pt;}
.x13_c00344{left:121.597733pt;}
.x1_c00344{left:122.559067pt;}
.x2f_c00344{left:123.519040pt;}
.x12_c00344{left:140.799333pt;}
.x2d_c00344{left:154.239200pt;}
.x8_c00344{left:155.198667pt;}
.x39_c00344{left:171.518533pt;}
.x18_c00344{left:207.358933pt;}
.x3b_c00344{left:209.598680pt;}
.x19_c00344{left:221.438920pt;}
.x1c_c00344{left:225.279720pt;}
.x3c_c00344{left:227.519467pt;}
.x9_c00344{left:241.918920pt;}
.x1d_c00344{left:253.759320pt;}
.x1e_c00344{left:261.758787pt;}
.x2_c00344{left:275.838933pt;}
.x1f_c00344{left:279.679733pt;}
.x27_c00344{left:281.279320pt;}
.x3_c00344{left:297.279720pt;}
.x1a_c00344{left:303.999067pt;}
.xa_c00344{left:305.919453pt;}
.x31_c00344{left:313.599587pt;}
.x1b_c00344{left:326.718787pt;}
.x32_c00344{left:328.319867pt;}
.x3a_c00344{left:330.238787pt;}
.x20_c00344{left:339.839320pt;}
.x28_c00344{left:347.838907pt;}
.x14_c00344{left:348.799840pt;}
.x21_c00344{left:358.398920pt;}
.x15_c00344{left:360.959467pt;}
.x11_c00344{left:364.479453pt;}
.x4_c00344{left:369.279707pt;}
.xb_c00344{left:375.039587pt;}
.x22_c00344{left:376.960000pt;}
.x33_c00344{left:388.479453pt;}
.x5_c00344{left:398.078693pt;}
.x23_c00344{left:410.879840pt;}
.xc_c00344{left:429.118693pt;}
.x34_c00344{left:437.119587pt;}
.xd_c00344{left:466.879307pt;}
.x35_c00344{left:471.039587pt;}
.x24_c00344{left:507.199173pt;}
.x25_c00344{left:518.078693pt;}
.xe_c00344{left:531.839320pt;}
.x26_c00344{left:533.759720pt;}
.x2e_c00344{left:547.519040pt;}
.xf_c00344{left:556.479453pt;}
.x36_c00344{left:561.919840pt;}
.x2b_c00344{left:566.718787pt;}
.x2c_c00344{left:580.798787pt;}
.x6_c00344{left:602.559040pt;}
.x16_c00344{left:608.958907pt;}
.x37_c00344{left:611.198693pt;}
.x29_c00344{left:614.078693pt;}
.x7_c00344{left:621.118693pt;}
.x30_c00344{left:624.959427pt;}
.x2a_c00344{left:633.279707pt;}
.x38_c00344{left:637.119187pt;}
.x17_c00344{left:641.919440pt;}
.x10_c00344{left:675.199173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e36578f06c76f4fea2499779.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_45c94dd66c64d45cd7c29bc1.woff2')format("woff");}.ff2_c00345{font-family:ff2_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:ff3_c00345;src:url('chunks/assets/font_7c778178577a51fc99ece001.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.364746;font-style:normal;font-weight:normal;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_64dc85de7d702319423fd8a5.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_0cef814b282b4be8fdbd7af8.woff2')format("woff");}.ff5_c00345{font-family:ff5_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:ff6_c00345;src:url('chunks/assets/font_d85f33466c9535e7b7155838.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00345{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m2b_c00345{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m19_c00345{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m23_c00345{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1f_c00345{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);}
.m30_c00345{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m22_c00345{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m1e_c00345{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m2d_c00345{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m28_c00345{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m2a_c00345{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m24_c00345{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.md_c00345{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m29_c00345{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m27_c00345{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m16_c00345{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m21_c00345{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m2f_c00345{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.mf_c00345{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m1c_c00345{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m26_c00345{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m12_c00345{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m25_c00345{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m2e_c00345{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m31_c00345{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m2c_c00345{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m14_c00345{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m10_c00345{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00345{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_c00345{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.me_c00345{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m1a_c00345{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1d_c00345{transform:matrix(0.283981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283981,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286842,0.000000,0.000000,0.250000,0,0);}
.m20_c00345{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m11_c00345{transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311905,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls1d_c00345{letter-spacing:-16.681050px;}
.ls2f_c00345{letter-spacing:-12.012000px;}
.ls14_c00345{letter-spacing:-11.988473px;}
.ls10_c00345{letter-spacing:-11.247173px;}
.ls24_c00345{letter-spacing:-10.191900px;}
.lsa_c00345{letter-spacing:-8.914500px;}
.ls2e_c00345{letter-spacing:-8.682900px;}
.ls13_c00345{letter-spacing:-8.671163px;}
.lsf_c00345{letter-spacing:-8.175038px;}
.ls26_c00345{letter-spacing:-7.426125px;}
.ls11_c00345{letter-spacing:-7.028100px;}
.lsb_c00345{letter-spacing:-6.685875px;}
.ls16_c00345{letter-spacing:-6.615000px;}
.ls15_c00345{letter-spacing:-6.114900px;}
.ls8_c00345{letter-spacing:-5.945625px;}
.ls21_c00345{letter-spacing:-5.284673px;}
.ls22_c00345{letter-spacing:-5.247533px;}
.lsc_c00345{letter-spacing:-5.196713px;}
.ls1e_c00345{letter-spacing:-4.921875px;}
.ls9_c00345{letter-spacing:-4.456463px;}
.ls18_c00345{letter-spacing:-3.918038px;}
.lse_c00345{letter-spacing:-3.717000px;}
.ls1c_c00345{letter-spacing:-3.712500px;}
.ls25_c00345{letter-spacing:-3.312413px;}
.ls5_c00345{letter-spacing:-2.968875px;}
.ls1f_c00345{letter-spacing:-2.940600px;}
.ls23_c00345{letter-spacing:-2.422575px;}
.ls4_c00345{letter-spacing:-2.229413px;}
.ls29_c00345{letter-spacing:-1.645425px;}
.ls30_c00345{letter-spacing:-1.560000px;}
.ls2d_c00345{letter-spacing:-1.545180px;}
.ls7_c00345{letter-spacing:-1.489163px;}
.ls1a_c00345{letter-spacing:-1.469550px;}
.ls2b_c00345{letter-spacing:-0.823200px;}
.ls1b_c00345{letter-spacing:-0.811125px;}
.ls6_c00345{letter-spacing:-0.740250px;}
.lsd_c00345{letter-spacing:0.000000px;}
.ls0_c00345{letter-spacing:0.740250px;}
.ls17_c00345{letter-spacing:0.784080px;}
.ls3_c00345{letter-spacing:1.489163px;}
.ls19_c00345{letter-spacing:1.531875px;}
.ls1_c00345{letter-spacing:2.229413px;}
.ls28_c00345{letter-spacing:2.363400px;}
.ls20_c00345{letter-spacing:3.984450px;}
.ls12_c00345{letter-spacing:4.967475px;}
.ls2_c00345{letter-spacing:6.685875px;}
.ls27_c00345{letter-spacing:11.712915px;}
.ls2c_c00345{letter-spacing:11.851875px;}
.ls2a_c00345{letter-spacing:20.349420px;}
.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;}
._1a_c00345{margin-left:-92.940126px;}
._9_c00345{margin-left:-11.911309px;}
._18_c00345{margin-left:-9.668866px;}
._1c_c00345{margin-left:-7.509645px;}
._e_c00345{margin-left:-5.157575px;}
._b_c00345{margin-left:-3.395789px;}
._8_c00345{margin-left:-2.178775px;}
._2_c00345{width:1.087047px;}
._3_c00345{width:2.096667px;}
._5_c00345{width:3.102691px;}
._4_c00345{width:4.203408px;}
._19_c00345{width:5.291762px;}
._1_c00345{width:6.300149px;}
._14_c00345{width:7.570817px;}
._7_c00345{width:8.607152px;}
._17_c00345{width:9.701955px;}
._0_c00345{width:10.737919px;}
._10_c00345{width:11.832039px;}
._d_c00345{width:12.849221px;}
._c_c00345{width:14.150692px;}
._a_c00345{width:15.584506px;}
._6_c00345{width:17.325000px;}
._11_c00345{width:18.868500px;}
._12_c00345{width:20.575117px;}
._16_c00345{width:22.231303px;}
._15_c00345{width:23.972287px;}
._13_c00345{width:26.515066px;}
._f_c00345{width:30.310102px;}
._1b_c00345{width:41.079521px;}
.fc0_c00345{color:transparent;}
.fs1_c00345{font-size:70.500000px;}
.fsd_c00345{font-size:71.250000px;}
.fsc_c00345{font-size:72.000000px;}
.fsa_c00345{font-size:72.750000px;}
.fs14_c00345{font-size:73.500000px;}
.fse_c00345{font-size:75.000000px;}
.fsf_c00345{font-size:75.750000px;}
.fs13_c00345{font-size:76.500000px;}
.fs10_c00345{font-size:77.250000px;}
.fs4_c00345{font-size:78.000000px;}
.fs0_c00345{font-size:78.750000px;}
.fs12_c00345{font-size:79.500000px;}
.fs7_c00345{font-size:80.250000px;}
.fsb_c00345{font-size:81.750000px;}
.fs8_c00345{font-size:82.500000px;}
.fs11_c00345{font-size:83.250000px;}
.fs6_c00345{font-size:84.750000px;}
.fs9_c00345{font-size:85.500000px;}
.fs3_c00345{font-size:90.000000px;}
.fs2_c00345{font-size:96.000000px;}
.fs5_c00345{font-size:115.500000px;}
.y0_c00345{bottom:0.000000px;}
.y29_c00345{bottom:187.559670px;}
.y2a_c00345{bottom:187.559685px;}
.y28_c00345{bottom:217.079205px;}
.y27_c00345{bottom:276.840750px;}
.y26_c00345{bottom:306.360285px;}
.y24_c00345{bottom:335.519415px;}
.y25_c00345{bottom:335.520750px;}
.y23_c00345{bottom:365.399145px;}
.y22_c00345{bottom:394.560285px;}
.y21_c00345{bottom:425.520315px;}
.y20_c00345{bottom:454.319820px;}
.y1f_c00345{bottom:454.319955px;}
.y1d_c00345{bottom:514.078095px;}
.y1e_c00345{bottom:514.079400px;}
.y1c_c00345{bottom:544.320120px;}
.y1b_c00345{bottom:574.199850px;}
.y1a_c00345{bottom:574.199985px;}
.y18_c00345{bottom:603.719145px;}
.y19_c00345{bottom:603.719520px;}
.y17_c00345{bottom:632.520105px;}
.y16_c00345{bottom:662.399820px;}
.y15_c00345{bottom:662.400630px;}
.y14_c00345{bottom:692.280345px;}
.y13_c00345{bottom:722.520270px;}
.y12_c00345{bottom:722.521155px;}
.y11_c00345{bottom:752.400885px;}
.y10_c00345{bottom:781.920780px;}
.yf_c00345{bottom:811.440315px;}
.ye_c00345{bottom:811.440900px;}
.yd_c00345{bottom:842.039205px;}
.yc_c00345{bottom:901.800750px;}
.yb_c00345{bottom:931.320285px;}
.y9_c00345{bottom:960.839400px;}
.ya_c00345{bottom:960.840090px;}
.y7_c00345{bottom:990.000510px;}
.y8_c00345{bottom:990.000555px;}
.y6_c00345{bottom:1020.240420px;}
.y5_c00345{bottom:1080.360900px;}
.y4_c00345{bottom:1080.361080px;}
.y3_c00345{bottom:1109.880615px;}
.y2_c00345{bottom:1109.880705px;}
.y1_c00345{bottom:1139.400240px;}
.h10_c00345{height:71.806641px;}
.h11_c00345{height:73.318359px;}
.h2_c00345{height:73.529297px;}
.h19_c00345{height:74.311523px;}
.h13_c00345{height:74.344482px;}
.hf_c00345{height:75.093750px;}
.h12_c00345{height:75.585938px;}
.h14_c00345{height:75.816650px;}
.hd_c00345{height:75.875977px;}
.h5_c00345{height:76.552734px;}
.h1d_c00345{height:76.658203px;}
.h1a_c00345{height:77.097656px;}
.h1_c00345{height:77.288818px;}
.h1b_c00345{height:77.853516px;}
.h20_c00345{height:78.024902px;}
.h16_c00345{height:78.222656px;}
.h18_c00345{height:78.568359px;}
.h1c_c00345{height:78.609375px;}
.h8_c00345{height:78.760986px;}
.hc_c00345{height:79.365234px;}
.h15_c00345{height:80.233154px;}
.h1e_c00345{height:80.791992px;}
.hb_c00345{height:80.876953px;}
.h9_c00345{height:80.969238px;}
.h1f_c00345{height:81.533203px;}
.h17_c00345{height:81.705322px;}
.he_c00345{height:82.388672px;}
.h7_c00345{height:83.177490px;}
.ha_c00345{height:84.498047px;}
.h4_c00345{height:93.867188px;}
.h3_c00345{height:100.125000px;}
.h6_c00345{height:120.462891px;}
.h0_c00345{height:1263.000000px;}
.w0_c00345{width:892.500000px;}
.x0_c00345{left:0.000000px;}
.x11_c00345{left:138.962010px;}
.x1_c00345{left:140.039400px;}
.x38_c00345{left:164.519685px;}
.x5_c00345{left:175.318800px;}
.x2b_c00345{left:181.798515px;}
.x6_c00345{left:190.438665px;}
.x14_c00345{left:194.398635px;}
.x7_c00345{left:202.318800px;}
.xf_c00345{left:206.998950px;}
.x15_c00345{left:208.798515px;}
.x2c_c00345{left:222.479685px;}
.x10_c00345{left:225.358635px;}
.x25_c00345{left:264.599700px;}
.x2d_c00345{left:270.359250px;}
.x32_c00345{left:272.519685px;}
.x26_c00345{left:285.838515px;}
.x2e_c00345{left:291.238785px;}
.x16_c00345{left:298.079385px;}
.x33_c00345{left:304.559100px;}
.x2f_c00345{left:306.358635px;}
.x17_c00345{left:319.679100px;}
.x30_c00345{left:321.478635px;}
.x39_c00345{left:323.279850px;}
.x31_c00345{left:332.279250px;}
.x18_c00345{left:338.399850px;}
.x34_c00345{left:357.479685px;}
.x27_c00345{left:367.919535px;}
.x35_c00345{left:371.879535px;}
.x28_c00345{left:391.679670px;}
.x19_c00345{left:394.199385px;}
.x3a_c00345{left:397.080000px;}
.x1a_c00345{left:430.918950px;}
.x3b_c00345{left:432.359250px;}
.x42_c00345{left:443.878320px;}
.x1b_c00345{left:457.198785px;}
.x8_c00345{left:458.639100px;}
.x29_c00345{left:459.718500px;}
.x36_c00345{left:466.559100px;}
.x1c_c00345{left:475.558635px;}
.x9_c00345{left:478.798515px;}
.x2a_c00345{left:484.918950px;}
.x37_c00345{left:486.718500px;}
.x3c_c00345{left:488.878920px;}
.xa_c00345{left:493.199850px;}
.xc_c00345{left:514.799520px;}
.x3d_c00345{left:520.559100px;}
.x1d_c00345{left:525.239220px;}
.xd_c00345{left:540.359250px;}
.x1e_c00345{left:572.398635px;}
.x1f_c00345{left:587.159370px;}
.x3e_c00345{left:591.478635px;}
.x3f_c00345{left:608.759085px;}
.x20_c00345{left:619.559685px;}
.x22_c00345{left:633.598530px;}
.x23_c00345{left:650.878920px;}
.x12_c00345{left:653.398635px;}
.x40_c00345{left:657.358605px;}
.x2_c00345{left:660.959385px;}
.x13_c00345{left:673.918950px;}
.x3_c00345{left:676.079355px;}
.x21_c00345{left:681.479685px;}
.x4_c00345{left:685.078770px;}
.x43_c00345{left:691.919535px;}
.x24_c00345{left:705.599070px;}
.xb_c00345{left:722.879520px;}
.x44_c00345{left:724.679070px;}
.x41_c00345{left:749.518620px;}
.xe_c00345{left:770.399865px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls1d_c00345{letter-spacing:-14.827600pt;}
.ls2f_c00345{letter-spacing:-10.677333pt;}
.ls14_c00345{letter-spacing:-10.656420pt;}
.ls10_c00345{letter-spacing:-9.997487pt;}
.ls24_c00345{letter-spacing:-9.059467pt;}
.lsa_c00345{letter-spacing:-7.924000pt;}
.ls2e_c00345{letter-spacing:-7.718133pt;}
.ls13_c00345{letter-spacing:-7.707700pt;}
.lsf_c00345{letter-spacing:-7.266700pt;}
.ls26_c00345{letter-spacing:-6.601000pt;}
.ls11_c00345{letter-spacing:-6.247200pt;}
.lsb_c00345{letter-spacing:-5.943000pt;}
.ls16_c00345{letter-spacing:-5.880000pt;}
.ls15_c00345{letter-spacing:-5.435467pt;}
.ls8_c00345{letter-spacing:-5.285000pt;}
.ls21_c00345{letter-spacing:-4.697487pt;}
.ls22_c00345{letter-spacing:-4.664473pt;}
.lsc_c00345{letter-spacing:-4.619300pt;}
.ls1e_c00345{letter-spacing:-4.375000pt;}
.ls9_c00345{letter-spacing:-3.961300pt;}
.ls18_c00345{letter-spacing:-3.482700pt;}
.lse_c00345{letter-spacing:-3.304000pt;}
.ls1c_c00345{letter-spacing:-3.300000pt;}
.ls25_c00345{letter-spacing:-2.944367pt;}
.ls5_c00345{letter-spacing:-2.639000pt;}
.ls1f_c00345{letter-spacing:-2.613867pt;}
.ls23_c00345{letter-spacing:-2.153400pt;}
.ls4_c00345{letter-spacing:-1.981700pt;}
.ls29_c00345{letter-spacing:-1.462600pt;}
.ls30_c00345{letter-spacing:-1.386667pt;}
.ls2d_c00345{letter-spacing:-1.373493pt;}
.ls7_c00345{letter-spacing:-1.323700pt;}
.ls1a_c00345{letter-spacing:-1.306267pt;}
.ls2b_c00345{letter-spacing:-0.731733pt;}
.ls1b_c00345{letter-spacing:-0.721000pt;}
.ls6_c00345{letter-spacing:-0.658000pt;}
.lsd_c00345{letter-spacing:0.000000pt;}
.ls0_c00345{letter-spacing:0.658000pt;}
.ls17_c00345{letter-spacing:0.696960pt;}
.ls3_c00345{letter-spacing:1.323700pt;}
.ls19_c00345{letter-spacing:1.361667pt;}
.ls1_c00345{letter-spacing:1.981700pt;}
.ls28_c00345{letter-spacing:2.100800pt;}
.ls20_c00345{letter-spacing:3.541733pt;}
.ls12_c00345{letter-spacing:4.415533pt;}
.ls2_c00345{letter-spacing:5.943000pt;}
.ls27_c00345{letter-spacing:10.411480pt;}
.ls2c_c00345{letter-spacing:10.535000pt;}
.ls2a_c00345{letter-spacing:18.088373pt;}
.ws0_c00345{word-spacing:0.000000pt;}
._1a_c00345{margin-left:-82.613445pt;}
._9_c00345{margin-left:-10.587830pt;}
._18_c00345{margin-left:-8.594547pt;}
._1c_c00345{margin-left:-6.675240pt;}
._e_c00345{margin-left:-4.584511pt;}
._b_c00345{margin-left:-3.018479pt;}
._8_c00345{margin-left:-1.936689pt;}
._2_c00345{width:0.966264pt;}
._3_c00345{width:1.863704pt;}
._5_c00345{width:2.757947pt;}
._4_c00345{width:3.736362pt;}
._19_c00345{width:4.703789pt;}
._1_c00345{width:5.600132pt;}
._14_c00345{width:6.729615pt;}
._7_c00345{width:7.650802pt;}
._17_c00345{width:8.623960pt;}
._0_c00345{width:9.544817pt;}
._10_c00345{width:10.517368pt;}
._d_c00345{width:11.421530pt;}
._c_c00345{width:12.578392pt;}
._a_c00345{width:13.852894pt;}
._6_c00345{width:15.400000pt;}
._11_c00345{width:16.772000pt;}
._12_c00345{width:18.288992pt;}
._16_c00345{width:19.761158pt;}
._15_c00345{width:21.308700pt;}
._13_c00345{width:23.568947pt;}
._f_c00345{width:26.942313pt;}
._1b_c00345{width:36.515130pt;}
.fs1_c00345{font-size:62.666667pt;}
.fsd_c00345{font-size:63.333333pt;}
.fsc_c00345{font-size:64.000000pt;}
.fsa_c00345{font-size:64.666667pt;}
.fs14_c00345{font-size:65.333333pt;}
.fse_c00345{font-size:66.666667pt;}
.fsf_c00345{font-size:67.333333pt;}
.fs13_c00345{font-size:68.000000pt;}
.fs10_c00345{font-size:68.666667pt;}
.fs4_c00345{font-size:69.333333pt;}
.fs0_c00345{font-size:70.000000pt;}
.fs12_c00345{font-size:70.666667pt;}
.fs7_c00345{font-size:71.333333pt;}
.fsb_c00345{font-size:72.666667pt;}
.fs8_c00345{font-size:73.333333pt;}
.fs11_c00345{font-size:74.000000pt;}
.fs6_c00345{font-size:75.333333pt;}
.fs9_c00345{font-size:76.000000pt;}
.fs3_c00345{font-size:80.000000pt;}
.fs2_c00345{font-size:85.333333pt;}
.fs5_c00345{font-size:102.666667pt;}
.y0_c00345{bottom:0.000000pt;}
.y29_c00345{bottom:166.719707pt;}
.y2a_c00345{bottom:166.719720pt;}
.y28_c00345{bottom:192.959293pt;}
.y27_c00345{bottom:246.080667pt;}
.y26_c00345{bottom:272.320253pt;}
.y24_c00345{bottom:298.239480pt;}
.y25_c00345{bottom:298.240667pt;}
.y23_c00345{bottom:324.799240pt;}
.y22_c00345{bottom:350.720253pt;}
.y21_c00345{bottom:378.240280pt;}
.y20_c00345{bottom:403.839840pt;}
.y1f_c00345{bottom:403.839960pt;}
.y1d_c00345{bottom:456.958307pt;}
.y1e_c00345{bottom:456.959467pt;}
.y1c_c00345{bottom:483.840107pt;}
.y1b_c00345{bottom:510.399867pt;}
.y1a_c00345{bottom:510.399987pt;}
.y18_c00345{bottom:536.639240pt;}
.y19_c00345{bottom:536.639573pt;}
.y17_c00345{bottom:562.240093pt;}
.y16_c00345{bottom:588.799840pt;}
.y15_c00345{bottom:588.800560pt;}
.y14_c00345{bottom:615.360307pt;}
.y13_c00345{bottom:642.240240pt;}
.y12_c00345{bottom:642.241027pt;}
.y11_c00345{bottom:668.800787pt;}
.y10_c00345{bottom:695.040693pt;}
.yf_c00345{bottom:721.280280pt;}
.ye_c00345{bottom:721.280800pt;}
.yd_c00345{bottom:748.479293pt;}
.yc_c00345{bottom:801.600667pt;}
.yb_c00345{bottom:827.840253pt;}
.y9_c00345{bottom:854.079467pt;}
.ya_c00345{bottom:854.080080pt;}
.y7_c00345{bottom:880.000453pt;}
.y8_c00345{bottom:880.000493pt;}
.y6_c00345{bottom:906.880373pt;}
.y5_c00345{bottom:960.320800pt;}
.y4_c00345{bottom:960.320960pt;}
.y3_c00345{bottom:986.560547pt;}
.y2_c00345{bottom:986.560627pt;}
.y1_c00345{bottom:1012.800213pt;}
.h10_c00345{height:63.828125pt;}
.h11_c00345{height:65.171875pt;}
.h2_c00345{height:65.359375pt;}
.h19_c00345{height:66.054688pt;}
.h13_c00345{height:66.083984pt;}
.hf_c00345{height:66.750000pt;}
.h12_c00345{height:67.187500pt;}
.h14_c00345{height:67.392578pt;}
.hd_c00345{height:67.445312pt;}
.h5_c00345{height:68.046875pt;}
.h1d_c00345{height:68.140625pt;}
.h1a_c00345{height:68.531250pt;}
.h1_c00345{height:68.701172pt;}
.h1b_c00345{height:69.203125pt;}
.h20_c00345{height:69.355469pt;}
.h16_c00345{height:69.531250pt;}
.h18_c00345{height:69.838542pt;}
.h1c_c00345{height:69.875000pt;}
.h8_c00345{height:70.009766pt;}
.hc_c00345{height:70.546875pt;}
.h15_c00345{height:71.318359pt;}
.h1e_c00345{height:71.815104pt;}
.hb_c00345{height:71.890625pt;}
.h9_c00345{height:71.972656pt;}
.h1f_c00345{height:72.473958pt;}
.h17_c00345{height:72.626953pt;}
.he_c00345{height:73.234375pt;}
.h7_c00345{height:73.935547pt;}
.ha_c00345{height:75.109375pt;}
.h4_c00345{height:83.437500pt;}
.h3_c00345{height:89.000000pt;}
.h6_c00345{height:107.078125pt;}
.h0_c00345{height:1122.666667pt;}
.w0_c00345{width:793.333333pt;}
.x0_c00345{left:0.000000pt;}
.x11_c00345{left:123.521787pt;}
.x1_c00345{left:124.479467pt;}
.x38_c00345{left:146.239720pt;}
.x5_c00345{left:155.838933pt;}
.x2b_c00345{left:161.598680pt;}
.x6_c00345{left:169.278813pt;}
.x14_c00345{left:172.798787pt;}
.x7_c00345{left:179.838933pt;}
.xf_c00345{left:183.999067pt;}
.x15_c00345{left:185.598680pt;}
.x2c_c00345{left:197.759720pt;}
.x10_c00345{left:200.318787pt;}
.x25_c00345{left:235.199733pt;}
.x2d_c00345{left:240.319333pt;}
.x32_c00345{left:242.239720pt;}
.x26_c00345{left:254.078680pt;}
.x2e_c00345{left:258.878920pt;}
.x16_c00345{left:264.959453pt;}
.x33_c00345{left:270.719200pt;}
.x2f_c00345{left:272.318787pt;}
.x17_c00345{left:284.159200pt;}
.x30_c00345{left:285.758787pt;}
.x39_c00345{left:287.359867pt;}
.x31_c00345{left:295.359333pt;}
.x18_c00345{left:300.799867pt;}
.x34_c00345{left:317.759720pt;}
.x27_c00345{left:327.039587pt;}
.x35_c00345{left:330.559587pt;}
.x28_c00345{left:348.159707pt;}
.x19_c00345{left:350.399453pt;}
.x3a_c00345{left:352.960000pt;}
.x1a_c00345{left:383.039067pt;}
.x3b_c00345{left:384.319333pt;}
.x42_c00345{left:394.558507pt;}
.x1b_c00345{left:406.398920pt;}
.x8_c00345{left:407.679200pt;}
.x29_c00345{left:408.638667pt;}
.x36_c00345{left:414.719200pt;}
.x1c_c00345{left:422.718787pt;}
.x9_c00345{left:425.598680pt;}
.x2a_c00345{left:431.039067pt;}
.x37_c00345{left:432.638667pt;}
.x3c_c00345{left:434.559040pt;}
.xa_c00345{left:438.399867pt;}
.xc_c00345{left:457.599573pt;}
.x3d_c00345{left:462.719200pt;}
.x1d_c00345{left:466.879307pt;}
.xd_c00345{left:480.319333pt;}
.x1e_c00345{left:508.798787pt;}
.x1f_c00345{left:521.919440pt;}
.x3e_c00345{left:525.758787pt;}
.x3f_c00345{left:541.119187pt;}
.x20_c00345{left:550.719720pt;}
.x22_c00345{left:563.198693pt;}
.x23_c00345{left:578.559040pt;}
.x12_c00345{left:580.798787pt;}
.x40_c00345{left:584.318760pt;}
.x2_c00345{left:587.519453pt;}
.x13_c00345{left:599.039067pt;}
.x3_c00345{left:600.959427pt;}
.x21_c00345{left:605.759720pt;}
.x4_c00345{left:608.958907pt;}
.x43_c00345{left:615.039587pt;}
.x24_c00345{left:627.199173pt;}
.xb_c00345{left:642.559573pt;}
.x44_c00345{left:644.159173pt;}
.x41_c00345{left:666.238773pt;}
.xe_c00345{left:684.799880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4734d8f69442f5f32e14e326.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_d103d942bbdaf6ee7931c9ea.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_1f7944db8aff657f6b4fd1f6.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_0b4785f1e84711c42df7078a.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_6f0cc4795cc9ab4db3907ecf.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00346;src:url('chunks/assets/font_a68d71df2c1ff8af069f40de.woff2')format("woff");}.ff6_c00346{font-family:ff6_c00346;line-height:1.364746;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_6b3df70253d29248bf8fb7e8.woff2')format("woff");}.ff7_c00346{font-family:ff7_c00346;line-height:1.364746;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_36efa5579234c37c499b13d9.woff2')format("woff");}.ff8_c00346{font-family:ff8_c00346;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m38_c00346{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{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);}
.m3a_c00346{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m32_c00346{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m3c_c00346{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.205607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205607,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{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_c00346{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m2e_c00346{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m30_c00346{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m20_c00346{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m40_c00346{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m2d_c00346{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{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);}
.m2f_c00346{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m28_c00346{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2b_c00346{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m3d_c00346{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m3f_c00346{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);}
.m1a_c00346{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m23_c00346{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322727,0.000000,0.000000,0.250000,0,0);}
.m25_c00346{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_c00346{transform:matrix(0.351064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351064,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431034,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514706,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{transform:matrix(0.523256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523256,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.550403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550403,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.777174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777174,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.v1_c00346{vertical-align:2.158200px;}
.ls33_c00346{letter-spacing:-14.860913px;}
.ls8_c00346{letter-spacing:-10.857825px;}
.ls24_c00346{letter-spacing:-10.472040px;}
.ls3d_c00346{letter-spacing:-10.220850px;}
.ls14_c00346{letter-spacing:-8.914500px;}
.ls1b_c00346{letter-spacing:-8.175038px;}
.lsf_c00346{letter-spacing:-6.693300px;}
.lse_c00346{letter-spacing:-6.685875px;}
.ls11_c00346{letter-spacing:-6.000300px;}
.ls12_c00346{letter-spacing:-5.945625px;}
.ls2d_c00346{letter-spacing:-5.230500px;}
.lsb_c00346{letter-spacing:-5.196713px;}
.ls1e_c00346{letter-spacing:-5.109375px;}
.ls21_c00346{letter-spacing:-4.910287px;}
.ls3b_c00346{letter-spacing:-4.800480px;}
.ls49_c00346{letter-spacing:-4.738500px;}
.ls10_c00346{letter-spacing:-4.456463px;}
.ls53_c00346{letter-spacing:-4.002075px;}
.ls44_c00346{letter-spacing:-3.998400px;}
.ls38_c00346{letter-spacing:-3.946950px;}
.ls4e_c00346{letter-spacing:-3.855600px;}
.lsc_c00346{letter-spacing:-3.717000px;}
.ls50_c00346{letter-spacing:-3.694950px;}
.ls15_c00346{letter-spacing:-3.450600px;}
.ls41_c00346{letter-spacing:-3.159450px;}
.ls3e_c00346{letter-spacing:-3.148800px;}
.ls43_c00346{letter-spacing:-3.101550px;}
.ls47_c00346{letter-spacing:-3.052980px;}
.ls46_c00346{letter-spacing:-3.000000px;}
.ls7_c00346{letter-spacing:-2.968875px;}
.ls4f_c00346{letter-spacing:-2.951520px;}
.ls4a_c00346{letter-spacing:-2.887875px;}
.ls1c_c00346{letter-spacing:-2.886075px;}
.ls52_c00346{letter-spacing:-2.718000px;}
.ls27_c00346{letter-spacing:-2.616840px;}
.ls3f_c00346{letter-spacing:-2.400000px;}
.ls39_c00346{letter-spacing:-2.293200px;}
.ls6_c00346{letter-spacing:-2.229413px;}
.ls3a_c00346{letter-spacing:-1.999200px;}
.ls17_c00346{letter-spacing:-1.684800px;}
.ls13_c00346{letter-spacing:-1.598325px;}
.ls4b_c00346{letter-spacing:-1.597920px;}
.ls20_c00346{letter-spacing:-1.590000px;}
.ls3c_c00346{letter-spacing:-1.579500px;}
.ls48_c00346{letter-spacing:-1.529220px;}
.lsa_c00346{letter-spacing:-1.489163px;}
.ls28_c00346{letter-spacing:-1.296750px;}
.ls32_c00346{letter-spacing:-1.036800px;}
.ls4d_c00346{letter-spacing:-0.850950px;}
.ls42_c00346{letter-spacing:-0.801120px;}
.ls9_c00346{letter-spacing:-0.740250px;}
.ls31_c00346{letter-spacing:-0.615600px;}
.ls36_c00346{letter-spacing:-0.357653px;}
.lsd_c00346{letter-spacing:0.000000px;}
.ls29_c00346{letter-spacing:0.535800px;}
.ls16_c00346{letter-spacing:0.740250px;}
.ls40_c00346{letter-spacing:0.845917px;}
.ls22_c00346{letter-spacing:0.966000px;}
.ls30_c00346{letter-spacing:1.287900px;}
.ls2_c00346{letter-spacing:1.489163px;}
.ls5_c00346{letter-spacing:1.579500px;}
.ls18_c00346{letter-spacing:1.621050px;}
.ls1f_c00346{letter-spacing:1.621800px;}
.ls1d_c00346{letter-spacing:1.629975px;}
.ls26_c00346{letter-spacing:1.959900px;}
.ls4c_c00346{letter-spacing:2.032875px;}
.ls0_c00346{letter-spacing:2.229413px;}
.ls2a_c00346{letter-spacing:2.550255px;}
.ls23_c00346{letter-spacing:2.612025px;}
.ls2f_c00346{letter-spacing:3.021300px;}
.ls35_c00346{letter-spacing:3.157560px;}
.ls4_c00346{letter-spacing:3.159450px;}
.ls1a_c00346{letter-spacing:3.651375px;}
.ls1_c00346{letter-spacing:4.456463px;}
.ls3_c00346{letter-spacing:4.738500px;}
.ls34_c00346{letter-spacing:5.035875px;}
.ls2c_c00346{letter-spacing:6.058500px;}
.ls2e_c00346{letter-spacing:6.098400px;}
.ls25_c00346{letter-spacing:7.830000px;}
.ls37_c00346{letter-spacing:7.841505px;}
.ls19_c00346{letter-spacing:9.174375px;}
.ls2b_c00346{letter-spacing:10.359900px;}
.ls45_c00346{letter-spacing:11.198880px;}
.ls51_c00346{letter-spacing:16.656300px;}
.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;}
._19_c00346{margin-left:-44.406501px;}
._20_c00346{margin-left:-14.441383px;}
._28_c00346{margin-left:-12.933237px;}
._17_c00346{margin-left:-11.290759px;}
._1_c00346{margin-left:-7.345339px;}
._21_c00346{margin-left:-6.229155px;}
._27_c00346{margin-left:-4.561215px;}
._d_c00346{margin-left:-3.227502px;}
._f_c00346{margin-left:-1.163420px;}
._18_c00346{width:1.867400px;}
._8_c00346{width:3.074890px;}
._c_c00346{width:4.095446px;}
._e_c00346{width:5.687028px;}
._4_c00346{width:6.985155px;}
._3_c00346{width:8.603274px;}
._0_c00346{width:10.279758px;}
._2_c00346{width:12.255550px;}
._1d_c00346{width:13.272109px;}
._16_c00346{width:14.563758px;}
._22_c00346{width:15.646540px;}
._1c_c00346{width:16.669503px;}
._1a_c00346{width:17.881941px;}
._1e_c00346{width:19.559212px;}
._6_c00346{width:20.565132px;}
._9_c00346{width:21.933168px;}
._b_c00346{width:22.951554px;}
._1f_c00346{width:24.268328px;}
._7_c00346{width:25.395761px;}
._a_c00346{width:26.596356px;}
._5_c00346{width:28.897684px;}
._23_c00346{width:31.224791px;}
._25_c00346{width:32.441791px;}
._11_c00346{width:33.912321px;}
._26_c00346{width:37.597182px;}
._14_c00346{width:39.973678px;}
._15_c00346{width:41.148925px;}
._10_c00346{width:42.603334px;}
._12_c00346{width:44.620404px;}
._24_c00346{width:45.905708px;}
._13_c00346{width:49.809316px;}
._1b_c00346{width:65.199071px;}
.fc0_c00346{color:transparent;}
.fs11_c00346{font-size:21.750000px;}
.fs13_c00346{font-size:25.500000px;}
.fs15_c00346{font-size:26.250000px;}
.fs1b_c00346{font-size:32.250000px;}
.fsd_c00346{font-size:33.750000px;}
.fse_c00346{font-size:34.500000px;}
.fsf_c00346{font-size:35.250000px;}
.fs10_c00346{font-size:36.000000px;}
.fs1a_c00346{font-size:37.500000px;}
.fs25_c00346{font-size:38.250000px;}
.fs14_c00346{font-size:40.500000px;}
.fs16_c00346{font-size:41.250000px;}
.fs18_c00346{font-size:42.000000px;}
.fs17_c00346{font-size:42.750000px;}
.fs23_c00346{font-size:43.500000px;}
.fs22_c00346{font-size:44.250000px;}
.fs1d_c00346{font-size:45.000000px;}
.fs21_c00346{font-size:45.750000px;}
.fs24_c00346{font-size:46.500000px;}
.fs1c_c00346{font-size:47.250000px;}
.fs1f_c00346{font-size:48.000000px;}
.fs26_c00346{font-size:48.750000px;}
.fs20_c00346{font-size:50.250000px;}
.fs1e_c00346{font-size:51.000000px;}
.fs27_c00346{font-size:51.750000px;}
.fs19_c00346{font-size:54.000000px;}
.fs12_c00346{font-size:68.250000px;}
.fs2_c00346{font-size:74.250000px;}
.fs6_c00346{font-size:75.750000px;}
.fs9_c00346{font-size:77.250000px;}
.fsa_c00346{font-size:78.000000px;}
.fs0_c00346{font-size:78.750000px;}
.fsc_c00346{font-size:79.500000px;}
.fs4_c00346{font-size:80.250000px;}
.fs7_c00346{font-size:81.000000px;}
.fsb_c00346{font-size:81.750000px;}
.fs1_c00346{font-size:82.500000px;}
.fs3_c00346{font-size:83.250000px;}
.fs5_c00346{font-size:84.750000px;}
.fs8_c00346{font-size:93.000000px;}
.y0_c00346{bottom:0.000000px;}
.y26_c00346{bottom:171.719565px;}
.y25_c00346{bottom:210.238785px;}
.y24_c00346{bottom:226.078785px;}
.y22_c00346{bottom:303.117465px;}
.y23_c00346{bottom:303.118785px;}
.y21_c00346{bottom:332.278605px;}
.y20_c00346{bottom:391.679670px;}
.y1f_c00346{bottom:421.919535px;}
.y1e_c00346{bottom:429.119385px;}
.y1c_c00346{bottom:451.799535px;}
.y1d_c00346{bottom:451.800150px;}
.y1a_c00346{bottom:511.198695px;}
.y1b_c00346{bottom:511.198785px;}
.y18_c00346{bottom:540.899820px;}
.y19_c00346{bottom:541.438620px;}
.y17_c00346{bottom:570.599070px;}
.y16_c00346{bottom:629.999535px;}
.y15_c00346{bottom:659.519070px;}
.y14_c00346{bottom:659.519400px;}
.y12_c00346{bottom:689.038875px;}
.y13_c00346{bottom:689.038920px;}
.y11_c00346{bottom:719.278800px;}
.y10_c00346{bottom:749.518620px;}
.yf_c00346{bottom:779.039175px;}
.ye_c00346{bottom:839.158815px;}
.yd_c00346{bottom:839.158875px;}
.yc_c00346{bottom:868.680225px;}
.yb_c00346{bottom:898.920135px;}
.ya_c00346{bottom:928.439670px;}
.y9_c00346{bottom:958.679715px;}
.y8_c00346{bottom:958.679805px;}
.y6_c00346{bottom:988.198560px;}
.y7_c00346{bottom:988.199340px;}
.y5_c00346{bottom:1047.599625px;}
.y4_c00346{bottom:1077.839535px;}
.y3_c00346{bottom:1077.839580px;}
.y2_c00346{bottom:1107.000735px;}
.y1_c00346{bottom:1137.599025px;}
.h16_c00346{height:22.684570px;}
.h18_c00346{height:26.595703px;}
.h1a_c00346{height:27.377930px;}
.h22_c00346{height:33.635742px;}
.h23_c00346{height:33.859863px;}
.h12_c00346{height:35.200195px;}
.h32_c00346{height:35.578125px;}
.h13_c00346{height:35.982422px;}
.h21_c00346{height:36.281250px;}
.h14_c00346{height:36.764648px;}
.h20_c00346{height:36.804199px;}
.h15_c00346{height:37.546875px;}
.h2e_c00346{height:37.801758px;}
.h1e_c00346{height:39.748535px;}
.h1b_c00346{height:40.484619px;}
.h1d_c00346{height:41.220703px;}
.h1c_c00346{height:41.956787px;}
.h19_c00346{height:42.240234px;}
.h26_c00346{height:43.804688px;}
.h2c_c00346{height:45.369141px;}
.h2b_c00346{height:46.151367px;}
.h2d_c00346{height:46.863281px;}
.h25_c00346{height:46.933594px;}
.h24_c00346{height:47.619141px;}
.h2a_c00346{height:47.715820px;}
.h28_c00346{height:48.375000px;}
.h2f_c00346{height:49.130859px;}
.h29_c00346{height:49.661133px;}
.h27_c00346{height:50.402344px;}
.h31_c00346{height:51.143555px;}
.h1f_c00346{height:52.998047px;}
.h30_c00346{height:53.367188px;}
.h17_c00346{height:71.182617px;}
.h3_c00346{height:72.872314px;}
.hc_c00346{height:74.344482px;}
.hd_c00346{height:75.816650px;}
.h7_c00346{height:76.341797px;}
.he_c00346{height:76.552734px;}
.h1_c00346{height:77.288818px;}
.h11_c00346{height:78.024902px;}
.h5_c00346{height:78.760986px;}
.hb_c00346{height:79.365234px;}
.hf_c00346{height:79.447018px;}
.h10_c00346{height:80.233154px;}
.h9_c00346{height:80.876953px;}
.h2_c00346{height:80.969238px;}
.h8_c00346{height:81.632812px;}
.h4_c00346{height:81.705322px;}
.h6_c00346{height:83.177490px;}
.ha_c00346{height:91.229004px;}
.h0_c00346{height:1263.000000px;}
.w0_c00346{width:892.500000px;}
.x0_c00346{left:0.000000px;}
.x4_c00346{left:136.799955px;}
.x1_c00346{left:137.878950px;}
.x41_c00346{left:146.878350px;}
.x24_c00346{left:163.799565px;}
.x19_c00346{left:165.239850px;}
.x45_c00346{left:169.199850px;}
.x32_c00346{left:185.040000px;}
.x46_c00346{left:186.119415px;}
.x42_c00346{left:187.198785px;}
.x2e_c00346{left:192.958350px;}
.x25_c00346{left:194.039400px;}
.xe_c00346{left:198.719535px;}
.x47_c00346{left:200.159850px;}
.x43_c00346{left:206.278800px;}
.x48_c00346{left:213.839535px;}
.x31_c00346{left:216.000000px;}
.x44_c00346{left:220.678500px;}
.xf_c00346{left:224.638500px;}
.x33_c00346{left:227.159850px;}
.xa_c00346{left:232.199385px;}
.xb_c00346{left:251.638500px;}
.x34_c00346{left:265.319850px;}
.xc_c00346{left:267.478635px;}
.x26_c00346{left:273.958350px;}
.x49_c00346{left:278.999385px;}
.x1c_c00346{left:299.158785px;}
.x4a_c00346{left:302.759535px;}
.x35_c00346{left:305.638500px;}
.xd_c00346{left:318.238785px;}
.x1d_c00346{left:325.799535px;}
.x27_c00346{left:329.398635px;}
.x4b_c00346{left:340.919535px;}
.x22_c00346{left:349.198785px;}
.x4c_c00346{left:355.678530px;}
.x15_c00346{left:358.918350px;}
.x23_c00346{left:368.639700px;}
.x4d_c00346{left:370.798515px;}
.x36_c00346{left:373.679100px;}
.x16_c00346{left:376.198785px;}
.x7_c00346{left:404.639100px;}
.x28_c00346{left:410.759535px;}
.x1e_c00346{left:413.279250px;}
.x5_c00346{left:414.358665px;}
.x37_c00346{left:415.439670px;}
.x4e_c00346{left:421.919535px;}
.x6_c00346{left:428.399235px;}
.x8_c00346{left:432.718500px;}
.x29_c00346{left:436.678530px;}
.x1f_c00346{left:439.199850px;}
.x17_c00346{left:440.279250px;}
.x38_c00346{left:442.439670px;}
.x1a_c00346{left:451.080000px;}
.x18_c00346{left:459.000000px;}
.x39_c00346{left:470.519070px;}
.x1b_c00346{left:479.159415px;}
.x4f_c00346{left:483.478635px;}
.x2_c00346{left:488.878920px;}
.x50_c00346{left:492.838950px;}
.x51_c00346{left:507.238770px;}
.x20_c00346{left:511.559685px;}
.x3_c00346{left:516.599070px;}
.x10_c00346{left:517.678530px;}
.x52_c00346{left:520.918350px;}
.x2a_c00346{left:524.159820px;}
.x53_c00346{left:536.039985px;}
.x21_c00346{left:543.958335px;}
.x3a_c00346{left:562.679070px;}
.x3b_c00346{left:580.679670px;}
.x11_c00346{left:599.759535px;}
.x2b_c00346{left:613.439250px;}
.x2f_c00346{left:615.958920px;}
.x3c_c00346{left:661.318770px;}
.x2c_c00346{left:677.519670px;}
.x3d_c00346{left:678.599070px;}
.x12_c00346{left:680.039385px;}
.x3e_c00346{left:687.239220px;}
.x13_c00346{left:707.759535px;}
.x2d_c00346{left:709.918350px;}
.x30_c00346{left:711.358605px;}
.x3f_c00346{left:724.679070px;}
.x40_c00346{left:740.878320px;}
.x14_c00346{left:754.198785px;}
.x9_c00346{left:768.239220px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.v1_c00346{vertical-align:1.918400pt;}
.ls33_c00346{letter-spacing:-13.209700pt;}
.ls8_c00346{letter-spacing:-9.651400pt;}
.ls24_c00346{letter-spacing:-9.308480pt;}
.ls3d_c00346{letter-spacing:-9.085200pt;}
.ls14_c00346{letter-spacing:-7.924000pt;}
.ls1b_c00346{letter-spacing:-7.266700pt;}
.lsf_c00346{letter-spacing:-5.949600pt;}
.lse_c00346{letter-spacing:-5.943000pt;}
.ls11_c00346{letter-spacing:-5.333600pt;}
.ls12_c00346{letter-spacing:-5.285000pt;}
.ls2d_c00346{letter-spacing:-4.649333pt;}
.lsb_c00346{letter-spacing:-4.619300pt;}
.ls1e_c00346{letter-spacing:-4.541667pt;}
.ls21_c00346{letter-spacing:-4.364700pt;}
.ls3b_c00346{letter-spacing:-4.267093pt;}
.ls49_c00346{letter-spacing:-4.212000pt;}
.ls10_c00346{letter-spacing:-3.961300pt;}
.ls53_c00346{letter-spacing:-3.557400pt;}
.ls44_c00346{letter-spacing:-3.554133pt;}
.ls38_c00346{letter-spacing:-3.508400pt;}
.ls4e_c00346{letter-spacing:-3.427200pt;}
.lsc_c00346{letter-spacing:-3.304000pt;}
.ls50_c00346{letter-spacing:-3.284400pt;}
.ls15_c00346{letter-spacing:-3.067200pt;}
.ls41_c00346{letter-spacing:-2.808400pt;}
.ls3e_c00346{letter-spacing:-2.798933pt;}
.ls43_c00346{letter-spacing:-2.756933pt;}
.ls47_c00346{letter-spacing:-2.713760pt;}
.ls46_c00346{letter-spacing:-2.666667pt;}
.ls7_c00346{letter-spacing:-2.639000pt;}
.ls4f_c00346{letter-spacing:-2.623573pt;}
.ls4a_c00346{letter-spacing:-2.567000pt;}
.ls1c_c00346{letter-spacing:-2.565400pt;}
.ls52_c00346{letter-spacing:-2.416000pt;}
.ls27_c00346{letter-spacing:-2.326080pt;}
.ls3f_c00346{letter-spacing:-2.133333pt;}
.ls39_c00346{letter-spacing:-2.038400pt;}
.ls6_c00346{letter-spacing:-1.981700pt;}
.ls3a_c00346{letter-spacing:-1.777067pt;}
.ls17_c00346{letter-spacing:-1.497600pt;}
.ls13_c00346{letter-spacing:-1.420733pt;}
.ls4b_c00346{letter-spacing:-1.420373pt;}
.ls20_c00346{letter-spacing:-1.413333pt;}
.ls3c_c00346{letter-spacing:-1.404000pt;}
.ls48_c00346{letter-spacing:-1.359307pt;}
.lsa_c00346{letter-spacing:-1.323700pt;}
.ls28_c00346{letter-spacing:-1.152667pt;}
.ls32_c00346{letter-spacing:-0.921600pt;}
.ls4d_c00346{letter-spacing:-0.756400pt;}
.ls42_c00346{letter-spacing:-0.712107pt;}
.ls9_c00346{letter-spacing:-0.658000pt;}
.ls31_c00346{letter-spacing:-0.547200pt;}
.ls36_c00346{letter-spacing:-0.317913pt;}
.lsd_c00346{letter-spacing:0.000000pt;}
.ls29_c00346{letter-spacing:0.476267pt;}
.ls16_c00346{letter-spacing:0.658000pt;}
.ls40_c00346{letter-spacing:0.751927pt;}
.ls22_c00346{letter-spacing:0.858667pt;}
.ls30_c00346{letter-spacing:1.144800pt;}
.ls2_c00346{letter-spacing:1.323700pt;}
.ls5_c00346{letter-spacing:1.404000pt;}
.ls18_c00346{letter-spacing:1.440933pt;}
.ls1f_c00346{letter-spacing:1.441600pt;}
.ls1d_c00346{letter-spacing:1.448867pt;}
.ls26_c00346{letter-spacing:1.742133pt;}
.ls4c_c00346{letter-spacing:1.807000pt;}
.ls0_c00346{letter-spacing:1.981700pt;}
.ls2a_c00346{letter-spacing:2.266893pt;}
.ls23_c00346{letter-spacing:2.321800pt;}
.ls2f_c00346{letter-spacing:2.685600pt;}
.ls35_c00346{letter-spacing:2.806720pt;}
.ls4_c00346{letter-spacing:2.808400pt;}
.ls1a_c00346{letter-spacing:3.245667pt;}
.ls1_c00346{letter-spacing:3.961300pt;}
.ls3_c00346{letter-spacing:4.212000pt;}
.ls34_c00346{letter-spacing:4.476333pt;}
.ls2c_c00346{letter-spacing:5.385333pt;}
.ls2e_c00346{letter-spacing:5.420800pt;}
.ls25_c00346{letter-spacing:6.960000pt;}
.ls37_c00346{letter-spacing:6.970227pt;}
.ls19_c00346{letter-spacing:8.155000pt;}
.ls2b_c00346{letter-spacing:9.208800pt;}
.ls45_c00346{letter-spacing:9.954560pt;}
.ls51_c00346{letter-spacing:14.805600pt;}
.ws0_c00346{word-spacing:0.000000pt;}
._19_c00346{margin-left:-39.472445pt;}
._20_c00346{margin-left:-12.836785pt;}
._28_c00346{margin-left:-11.496211pt;}
._17_c00346{margin-left:-10.036230pt;}
._1_c00346{margin-left:-6.529191pt;}
._21_c00346{margin-left:-5.537026pt;}
._27_c00346{margin-left:-4.054413pt;}
._d_c00346{margin-left:-2.868891pt;}
._f_c00346{margin-left:-1.034151pt;}
._18_c00346{width:1.659911pt;}
._8_c00346{width:2.733236pt;}
._c_c00346{width:3.640396pt;}
._e_c00346{width:5.055136pt;}
._4_c00346{width:6.209026pt;}
._3_c00346{width:7.647355pt;}
._0_c00346{width:9.137562pt;}
._2_c00346{width:10.893823pt;}
._1d_c00346{width:11.797430pt;}
._16_c00346{width:12.945562pt;}
._22_c00346{width:13.908036pt;}
._1c_c00346{width:14.817336pt;}
._1a_c00346{width:15.895058pt;}
._1e_c00346{width:17.385966pt;}
._6_c00346{width:18.280117pt;}
._9_c00346{width:19.496149pt;}
._b_c00346{width:20.401381pt;}
._1f_c00346{width:21.571847pt;}
._7_c00346{width:22.574009pt;}
._a_c00346{width:23.641206pt;}
._5_c00346{width:25.686830pt;}
._23_c00346{width:27.755370pt;}
._25_c00346{width:28.837147pt;}
._11_c00346{width:30.144285pt;}
._26_c00346{width:33.419717pt;}
._14_c00346{width:35.532158pt;}
._15_c00346{width:36.576823pt;}
._10_c00346{width:37.869630pt;}
._12_c00346{width:39.662581pt;}
._24_c00346{width:40.805074pt;}
._13_c00346{width:44.274947pt;}
._1b_c00346{width:57.954730pt;}
.fs11_c00346{font-size:19.333333pt;}
.fs13_c00346{font-size:22.666667pt;}
.fs15_c00346{font-size:23.333333pt;}
.fs1b_c00346{font-size:28.666667pt;}
.fsd_c00346{font-size:30.000000pt;}
.fse_c00346{font-size:30.666667pt;}
.fsf_c00346{font-size:31.333333pt;}
.fs10_c00346{font-size:32.000000pt;}
.fs1a_c00346{font-size:33.333333pt;}
.fs25_c00346{font-size:34.000000pt;}
.fs14_c00346{font-size:36.000000pt;}
.fs16_c00346{font-size:36.666667pt;}
.fs18_c00346{font-size:37.333333pt;}
.fs17_c00346{font-size:38.000000pt;}
.fs23_c00346{font-size:38.666667pt;}
.fs22_c00346{font-size:39.333333pt;}
.fs1d_c00346{font-size:40.000000pt;}
.fs21_c00346{font-size:40.666667pt;}
.fs24_c00346{font-size:41.333333pt;}
.fs1c_c00346{font-size:42.000000pt;}
.fs1f_c00346{font-size:42.666667pt;}
.fs26_c00346{font-size:43.333333pt;}
.fs20_c00346{font-size:44.666667pt;}
.fs1e_c00346{font-size:45.333333pt;}
.fs27_c00346{font-size:46.000000pt;}
.fs19_c00346{font-size:48.000000pt;}
.fs12_c00346{font-size:60.666667pt;}
.fs2_c00346{font-size:66.000000pt;}
.fs6_c00346{font-size:67.333333pt;}
.fs9_c00346{font-size:68.666667pt;}
.fsa_c00346{font-size:69.333333pt;}
.fs0_c00346{font-size:70.000000pt;}
.fsc_c00346{font-size:70.666667pt;}
.fs4_c00346{font-size:71.333333pt;}
.fs7_c00346{font-size:72.000000pt;}
.fsb_c00346{font-size:72.666667pt;}
.fs1_c00346{font-size:73.333333pt;}
.fs3_c00346{font-size:74.000000pt;}
.fs5_c00346{font-size:75.333333pt;}
.fs8_c00346{font-size:82.666667pt;}
.y0_c00346{bottom:0.000000pt;}
.y26_c00346{bottom:152.639613pt;}
.y25_c00346{bottom:186.878920pt;}
.y24_c00346{bottom:200.958920pt;}
.y22_c00346{bottom:269.437747pt;}
.y23_c00346{bottom:269.438920pt;}
.y21_c00346{bottom:295.358760pt;}
.y20_c00346{bottom:348.159707pt;}
.y1f_c00346{bottom:375.039587pt;}
.y1e_c00346{bottom:381.439453pt;}
.y1c_c00346{bottom:401.599587pt;}
.y1d_c00346{bottom:401.600133pt;}
.y1a_c00346{bottom:454.398840pt;}
.y1b_c00346{bottom:454.398920pt;}
.y18_c00346{bottom:480.799840pt;}
.y19_c00346{bottom:481.278773pt;}
.y17_c00346{bottom:507.199173pt;}
.y16_c00346{bottom:559.999587pt;}
.y15_c00346{bottom:586.239173pt;}
.y14_c00346{bottom:586.239467pt;}
.y12_c00346{bottom:612.479000pt;}
.y13_c00346{bottom:612.479040pt;}
.y11_c00346{bottom:639.358933pt;}
.y10_c00346{bottom:666.238773pt;}
.yf_c00346{bottom:692.479267pt;}
.ye_c00346{bottom:745.918947pt;}
.yd_c00346{bottom:745.919000pt;}
.yc_c00346{bottom:772.160200pt;}
.yb_c00346{bottom:799.040120pt;}
.ya_c00346{bottom:825.279707pt;}
.y9_c00346{bottom:852.159747pt;}
.y8_c00346{bottom:852.159827pt;}
.y6_c00346{bottom:878.398720pt;}
.y7_c00346{bottom:878.399413pt;}
.y5_c00346{bottom:931.199667pt;}
.y4_c00346{bottom:958.079587pt;}
.y3_c00346{bottom:958.079627pt;}
.y2_c00346{bottom:984.000653pt;}
.y1_c00346{bottom:1011.199133pt;}
.h16_c00346{height:20.164062pt;}
.h18_c00346{height:23.640625pt;}
.h1a_c00346{height:24.335938pt;}
.h22_c00346{height:29.898438pt;}
.h23_c00346{height:30.097656pt;}
.h12_c00346{height:31.289062pt;}
.h32_c00346{height:31.625000pt;}
.h13_c00346{height:31.984375pt;}
.h21_c00346{height:32.250000pt;}
.h14_c00346{height:32.679688pt;}
.h20_c00346{height:32.714844pt;}
.h15_c00346{height:33.375000pt;}
.h2e_c00346{height:33.601562pt;}
.h1e_c00346{height:35.332031pt;}
.h1b_c00346{height:35.986328pt;}
.h1d_c00346{height:36.640625pt;}
.h1c_c00346{height:37.294922pt;}
.h19_c00346{height:37.546875pt;}
.h26_c00346{height:38.937500pt;}
.h2c_c00346{height:40.328125pt;}
.h2b_c00346{height:41.023438pt;}
.h2d_c00346{height:41.656250pt;}
.h25_c00346{height:41.718750pt;}
.h24_c00346{height:42.328125pt;}
.h2a_c00346{height:42.414062pt;}
.h28_c00346{height:43.000000pt;}
.h2f_c00346{height:43.671875pt;}
.h29_c00346{height:44.143229pt;}
.h27_c00346{height:44.802083pt;}
.h31_c00346{height:45.460938pt;}
.h1f_c00346{height:47.109375pt;}
.h30_c00346{height:47.437500pt;}
.h17_c00346{height:63.273438pt;}
.h3_c00346{height:64.775391pt;}
.hc_c00346{height:66.083984pt;}
.hd_c00346{height:67.392578pt;}
.h7_c00346{height:67.859375pt;}
.he_c00346{height:68.046875pt;}
.h1_c00346{height:68.701172pt;}
.h11_c00346{height:69.355469pt;}
.h5_c00346{height:70.009766pt;}
.hb_c00346{height:70.546875pt;}
.hf_c00346{height:70.619572pt;}
.h10_c00346{height:71.318359pt;}
.h9_c00346{height:71.890625pt;}
.h2_c00346{height:71.972656pt;}
.h8_c00346{height:72.562500pt;}
.h4_c00346{height:72.626953pt;}
.h6_c00346{height:73.935547pt;}
.ha_c00346{height:81.092448pt;}
.h0_c00346{height:1122.666667pt;}
.w0_c00346{width:793.333333pt;}
.x0_c00346{left:0.000000pt;}
.x4_c00346{left:121.599960pt;}
.x1_c00346{left:122.559067pt;}
.x41_c00346{left:130.558533pt;}
.x24_c00346{left:145.599613pt;}
.x19_c00346{left:146.879867pt;}
.x45_c00346{left:150.399867pt;}
.x32_c00346{left:164.480000pt;}
.x46_c00346{left:165.439480pt;}
.x42_c00346{left:166.398920pt;}
.x2e_c00346{left:171.518533pt;}
.x25_c00346{left:172.479467pt;}
.xe_c00346{left:176.639587pt;}
.x47_c00346{left:177.919867pt;}
.x43_c00346{left:183.358933pt;}
.x48_c00346{left:190.079587pt;}
.x31_c00346{left:192.000000pt;}
.x44_c00346{left:196.158667pt;}
.xf_c00346{left:199.678667pt;}
.x33_c00346{left:201.919867pt;}
.xa_c00346{left:206.399453pt;}
.xb_c00346{left:223.678667pt;}
.x34_c00346{left:235.839867pt;}
.xc_c00346{left:237.758787pt;}
.x26_c00346{left:243.518533pt;}
.x49_c00346{left:247.999453pt;}
.x1c_c00346{left:265.918920pt;}
.x4a_c00346{left:269.119587pt;}
.x35_c00346{left:271.678667pt;}
.xd_c00346{left:282.878920pt;}
.x1d_c00346{left:289.599587pt;}
.x27_c00346{left:292.798787pt;}
.x4b_c00346{left:303.039587pt;}
.x22_c00346{left:310.398920pt;}
.x4c_c00346{left:316.158693pt;}
.x15_c00346{left:319.038533pt;}
.x23_c00346{left:327.679733pt;}
.x4d_c00346{left:329.598680pt;}
.x36_c00346{left:332.159200pt;}
.x16_c00346{left:334.398920pt;}
.x7_c00346{left:359.679200pt;}
.x28_c00346{left:365.119587pt;}
.x1e_c00346{left:367.359333pt;}
.x5_c00346{left:368.318813pt;}
.x37_c00346{left:369.279707pt;}
.x4e_c00346{left:375.039587pt;}
.x6_c00346{left:380.799320pt;}
.x8_c00346{left:384.638667pt;}
.x29_c00346{left:388.158693pt;}
.x1f_c00346{left:390.399867pt;}
.x17_c00346{left:391.359333pt;}
.x38_c00346{left:393.279707pt;}
.x1a_c00346{left:400.960000pt;}
.x18_c00346{left:408.000000pt;}
.x39_c00346{left:418.239173pt;}
.x1b_c00346{left:425.919480pt;}
.x4f_c00346{left:429.758787pt;}
.x2_c00346{left:434.559040pt;}
.x50_c00346{left:438.079067pt;}
.x51_c00346{left:450.878907pt;}
.x20_c00346{left:454.719720pt;}
.x3_c00346{left:459.199173pt;}
.x10_c00346{left:460.158693pt;}
.x52_c00346{left:463.038533pt;}
.x2a_c00346{left:465.919840pt;}
.x53_c00346{left:476.479987pt;}
.x21_c00346{left:483.518520pt;}
.x3a_c00346{left:500.159173pt;}
.x3b_c00346{left:516.159707pt;}
.x11_c00346{left:533.119587pt;}
.x2b_c00346{left:545.279333pt;}
.x2f_c00346{left:547.519040pt;}
.x3c_c00346{left:587.838907pt;}
.x2c_c00346{left:602.239707pt;}
.x3d_c00346{left:603.199173pt;}
.x12_c00346{left:604.479453pt;}
.x3e_c00346{left:610.879307pt;}
.x13_c00346{left:629.119587pt;}
.x2d_c00346{left:631.038533pt;}
.x30_c00346{left:632.318760pt;}
.x3f_c00346{left:644.159173pt;}
.x40_c00346{left:658.558507pt;}
.x14_c00346{left:670.398920pt;}
.x9_c00346{left:682.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd267f4c83b11a9f693ccd09.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_ad22fb3d69fb49773a8f8dc3.woff2')format("woff");}.ff2_c00347{font-family:ff2_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:ff3_c00347;src:url('chunks/assets/font_f1b040b1cd4ba8a4bd2f8930.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_bda89bd25dd75d312ea744c7.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00347;src:url('chunks/assets/font_6660e6a0eed11e5e491b2c0c.woff2')format("woff");}.ff6_c00347{font-family:ff6_c00347;line-height:1.364746;font-style:normal;font-weight: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_c00347;src:url('chunks/assets/font_dce3d8582e45f17c178f2c41.woff2')format("woff");}.ff7_c00347{font-family:ff7_c00347;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00347{transform:matrix(0.154206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154206,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.208315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208315,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{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_c00347{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m10_c00347{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.272959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272959,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.lsf_c00347{letter-spacing:-14.082750px;}
.lsa_c00347{letter-spacing:-7.576538px;}
.ls5_c00347{letter-spacing:-5.300663px;}
.lsc_c00347{letter-spacing:-5.247533px;}
.ls9_c00347{letter-spacing:-4.543088px;}
.ls8_c00347{letter-spacing:-4.410975px;}
.ls11_c00347{letter-spacing:-4.330463px;}
.ls12_c00347{letter-spacing:-4.266000px;}
.lsb_c00347{letter-spacing:-3.787875px;}
.ls18_c00347{letter-spacing:-3.614625px;}
.ls17_c00347{letter-spacing:-3.433185px;}
.ls10_c00347{letter-spacing:-3.274200px;}
.ls4_c00347{letter-spacing:-3.031875px;}
.ls2_c00347{letter-spacing:-2.267213px;}
.ls19_c00347{letter-spacing:-2.186250px;}
.lsd_c00347{letter-spacing:-1.708875px;}
.ls13_c00347{letter-spacing:-1.652153px;}
.ls3_c00347{letter-spacing:-1.512000px;}
.ls15_c00347{letter-spacing:-0.826875px;}
.ls6_c00347{letter-spacing:-0.756000px;}
.ls7_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:0.756000px;}
.ls0_c00347{letter-spacing:2.267213px;}
.ls14_c00347{letter-spacing:2.326500px;}
.ls16_c00347{letter-spacing:3.330600px;}
.ls1a_c00347{letter-spacing:3.950843px;}
.lse_c00347{letter-spacing:5.300663px;}
.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;}
._18_c00347{margin-left:-19.248378px;}
._19_c00347{margin-left:-17.683676px;}
._15_c00347{margin-left:-15.389143px;}
._11_c00347{margin-left:-11.937107px;}
._17_c00347{margin-left:-10.394637px;}
._d_c00347{margin-left:-7.014989px;}
._10_c00347{margin-left:-4.235054px;}
._3_c00347{margin-left:-2.661629px;}
._13_c00347{margin-left:-1.003517px;}
._a_c00347{width:1.327725px;}
._8_c00347{width:2.982747px;}
._6_c00347{width:4.066892px;}
._9_c00347{width:5.326347px;}
._5_c00347{width:6.417762px;}
._12_c00347{width:7.557395px;}
._b_c00347{width:8.612524px;}
._1_c00347{width:10.157963px;}
._0_c00347{width:11.652637px;}
._2_c00347{width:13.035730px;}
._16_c00347{width:14.114847px;}
._4_c00347{width:15.250664px;}
._c_c00347{width:16.381636px;}
._14_c00347{width:17.831847px;}
._e_c00347{width:19.613778px;}
._7_c00347{width:20.737359px;}
._f_c00347{width:28.974487px;}
.fc0_c00347{color:transparent;}
.fs10_c00347{font-size:21.000000px;}
.fsa_c00347{font-size:63.000000px;}
.fsb_c00347{font-size:67.500000px;}
.fsf_c00347{font-size:68.250000px;}
.fsd_c00347{font-size:70.500000px;}
.fs1_c00347{font-size:72.000000px;}
.fsc_c00347{font-size:72.750000px;}
.fs11_c00347{font-size:73.500000px;}
.fs12_c00347{font-size:74.250000px;}
.fs4_c00347{font-size:75.000000px;}
.fs6_c00347{font-size:75.268800px;}
.fs9_c00347{font-size:76.500000px;}
.fs2_c00347{font-size:77.250000px;}
.fse_c00347{font-size:78.000000px;}
.fs0_c00347{font-size:78.750000px;}
.fs8_c00347{font-size:79.500000px;}
.fs7_c00347{font-size:80.250000px;}
.fs3_c00347{font-size:81.750000px;}
.fs5_c00347{font-size:82.500000px;}
.y0_c00347{bottom:0.000000px;}
.y1d_c00347{bottom:244.798080px;}
.y1c_c00347{bottom:273.959220px;}
.y1b_c00347{bottom:303.838950px;}
.y19_c00347{bottom:333.359370px;}
.y1a_c00347{bottom:333.360285px;}
.y18_c00347{bottom:513.000000px;}
.y17_c00347{bottom:571.319235px;}
.y16_c00347{bottom:571.320720px;}
.y15_c00347{bottom:631.080165px;}
.y14_c00347{bottom:660.959880px;}
.y13_c00347{bottom:690.479415px;}
.y12_c00347{bottom:719.998950px;}
.y11_c00347{bottom:719.999265px;}
.y10_c00347{bottom:750.599670px;}
.ye_c00347{bottom:779.760090px;}
.yf_c00347{bottom:779.760135px;}
.yc_c00347{bottom:809.999955px;}
.yd_c00347{bottom:810.000000px;}
.yb_c00347{bottom:840.239865px;}
.ya_c00347{bottom:840.240345px;}
.y9_c00347{bottom:869.401500px;}
.y8_c00347{bottom:929.160945px;}
.y7_c00347{bottom:959.040660px;}
.y6_c00347{bottom:988.920390px;}
.y5_c00347{bottom:1018.800105px;}
.y4_c00347{bottom:1018.800780px;}
.y3_c00347{bottom:1077.839535px;}
.y2_c00347{bottom:1107.359115px;}
.y1_c00347{bottom:1137.599025px;}
.h13_c00347{height:21.902344px;}
.hd_c00347{height:65.707031px;}
.he_c00347{height:68.027344px;}
.h2_c00347{height:70.664062px;}
.h10_c00347{height:71.050781px;}
.h12_c00347{height:71.182617px;}
.h14_c00347{height:72.136230px;}
.h17_c00347{height:72.872314px;}
.h3_c00347{height:75.816650px;}
.hf_c00347{height:75.875977px;}
.hc_c00347{height:77.097656px;}
.h1_c00347{height:77.288818px;}
.h16_c00347{height:78.024902px;}
.h6_c00347{height:78.222656px;}
.h8_c00347{height:78.503006px;}
.h11_c00347{height:78.609375px;}
.hb_c00347{height:79.309570px;}
.h5_c00347{height:79.365234px;}
.ha_c00347{height:80.121094px;}
.h4_c00347{height:80.233154px;}
.h9_c00347{height:80.876953px;}
.h15_c00347{height:80.969238px;}
.h7_c00347{height:81.533203px;}
.h0_c00347{height:1263.000000px;}
.w0_c00347{width:892.500000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:136.799565px;}
.x24_c00347{left:138.239895px;}
.x2_c00347{left:152.639700px;}
.xb_c00347{left:189.718500px;}
.x1e_c00347{left:203.399850px;}
.x3_c00347{left:210.238785px;}
.xc_c00347{left:212.399250px;}
.x22_c00347{left:218.878950px;}
.x1f_c00347{left:226.439685px;}
.x4_c00347{left:237.958950px;}
.x23_c00347{left:242.639100px;}
.xd_c00347{left:286.919535px;}
.x7_c00347{left:302.039385px;}
.x8_c00347{left:326.878950px;}
.xe_c00347{left:425.159415px;}
.xf_c00347{left:446.399820px;}
.x10_c00347{left:456.839535px;}
.x11_c00347{left:465.479685px;}
.x12_c00347{left:481.319820px;}
.x13_c00347{left:502.919535px;}
.x14_c00347{left:533.159415px;}
.x5_c00347{left:538.918950px;}
.x6_c00347{left:560.879520px;}
.x15_c00347{left:573.838950px;}
.x20_c00347{left:578.159820px;}
.x25_c00347{left:583.199385px;}
.x21_c00347{left:593.279850px;}
.x26_c00347{left:597.599070px;}
.x16_c00347{left:598.678530px;}
.x17_c00347{left:619.918950px;}
.x1c_c00347{left:623.519670px;}
.x1d_c00347{left:638.998950px;}
.x9_c00347{left:640.798515px;}
.x18_c00347{left:654.118785px;}
.x19_c00347{left:670.319820px;}
.x1a_c00347{left:676.799520px;}
.xa_c00347{left:697.319820px;}
.x1b_c00347{left:709.199850px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.lsf_c00347{letter-spacing:-12.518000pt;}
.lsa_c00347{letter-spacing:-6.734700pt;}
.ls5_c00347{letter-spacing:-4.711700pt;}
.lsc_c00347{letter-spacing:-4.664473pt;}
.ls9_c00347{letter-spacing:-4.038300pt;}
.ls8_c00347{letter-spacing:-3.920867pt;}
.ls11_c00347{letter-spacing:-3.849300pt;}
.ls12_c00347{letter-spacing:-3.792000pt;}
.lsb_c00347{letter-spacing:-3.367000pt;}
.ls18_c00347{letter-spacing:-3.213000pt;}
.ls17_c00347{letter-spacing:-3.051720pt;}
.ls10_c00347{letter-spacing:-2.910400pt;}
.ls4_c00347{letter-spacing:-2.695000pt;}
.ls2_c00347{letter-spacing:-2.015300pt;}
.ls19_c00347{letter-spacing:-1.943333pt;}
.lsd_c00347{letter-spacing:-1.519000pt;}
.ls13_c00347{letter-spacing:-1.468580pt;}
.ls3_c00347{letter-spacing:-1.344000pt;}
.ls15_c00347{letter-spacing:-0.735000pt;}
.ls6_c00347{letter-spacing:-0.672000pt;}
.ls7_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:0.672000pt;}
.ls0_c00347{letter-spacing:2.015300pt;}
.ls14_c00347{letter-spacing:2.068000pt;}
.ls16_c00347{letter-spacing:2.960533pt;}
.ls1a_c00347{letter-spacing:3.511860pt;}
.lse_c00347{letter-spacing:4.711700pt;}
.ws0_c00347{word-spacing:0.000000pt;}
._18_c00347{margin-left:-17.109669pt;}
._19_c00347{margin-left:-15.718823pt;}
._15_c00347{margin-left:-13.679238pt;}
._11_c00347{margin-left:-10.610762pt;}
._17_c00347{margin-left:-9.239677pt;}
._d_c00347{margin-left:-6.235546pt;}
._10_c00347{margin-left:-3.764492pt;}
._3_c00347{margin-left:-2.365892pt;}
._13_c00347{margin-left:-0.892015pt;}
._a_c00347{width:1.180200pt;}
._8_c00347{width:2.651331pt;}
._6_c00347{width:3.615015pt;}
._9_c00347{width:4.734531pt;}
._5_c00347{width:5.704677pt;}
._12_c00347{width:6.717685pt;}
._b_c00347{width:7.655577pt;}
._1_c00347{width:9.029300pt;}
._0_c00347{width:10.357900pt;}
._2_c00347{width:11.587315pt;}
._16_c00347{width:12.546531pt;}
._4_c00347{width:13.556146pt;}
._c_c00347{width:14.561454pt;}
._14_c00347{width:15.850531pt;}
._e_c00347{width:17.434469pt;}
._7_c00347{width:18.433208pt;}
._f_c00347{width:25.755100pt;}
.fs10_c00347{font-size:18.666667pt;}
.fsa_c00347{font-size:56.000000pt;}
.fsb_c00347{font-size:60.000000pt;}
.fsf_c00347{font-size:60.666667pt;}
.fsd_c00347{font-size:62.666667pt;}
.fs1_c00347{font-size:64.000000pt;}
.fsc_c00347{font-size:64.666667pt;}
.fs11_c00347{font-size:65.333333pt;}
.fs12_c00347{font-size:66.000000pt;}
.fs4_c00347{font-size:66.666667pt;}
.fs6_c00347{font-size:66.905600pt;}
.fs9_c00347{font-size:68.000000pt;}
.fs2_c00347{font-size:68.666667pt;}
.fse_c00347{font-size:69.333333pt;}
.fs0_c00347{font-size:70.000000pt;}
.fs8_c00347{font-size:70.666667pt;}
.fs7_c00347{font-size:71.333333pt;}
.fs3_c00347{font-size:72.666667pt;}
.fs5_c00347{font-size:73.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y1d_c00347{bottom:217.598293pt;}
.y1c_c00347{bottom:243.519307pt;}
.y1b_c00347{bottom:270.079067pt;}
.y19_c00347{bottom:296.319440pt;}
.y1a_c00347{bottom:296.320253pt;}
.y18_c00347{bottom:456.000000pt;}
.y17_c00347{bottom:507.839320pt;}
.y16_c00347{bottom:507.840640pt;}
.y15_c00347{bottom:560.960147pt;}
.y14_c00347{bottom:587.519893pt;}
.y13_c00347{bottom:613.759480pt;}
.y12_c00347{bottom:639.999067pt;}
.y11_c00347{bottom:639.999347pt;}
.y10_c00347{bottom:667.199707pt;}
.ye_c00347{bottom:693.120080pt;}
.yf_c00347{bottom:693.120120pt;}
.yc_c00347{bottom:719.999960pt;}
.yd_c00347{bottom:720.000000pt;}
.yb_c00347{bottom:746.879880pt;}
.ya_c00347{bottom:746.880307pt;}
.y9_c00347{bottom:772.801333pt;}
.y8_c00347{bottom:825.920840pt;}
.y7_c00347{bottom:852.480587pt;}
.y6_c00347{bottom:879.040347pt;}
.y5_c00347{bottom:905.600093pt;}
.y4_c00347{bottom:905.600693pt;}
.y3_c00347{bottom:958.079587pt;}
.y2_c00347{bottom:984.319213pt;}
.y1_c00347{bottom:1011.199133pt;}
.h13_c00347{height:19.468750pt;}
.hd_c00347{height:58.406250pt;}
.he_c00347{height:60.468750pt;}
.h2_c00347{height:62.812500pt;}
.h10_c00347{height:63.156250pt;}
.h12_c00347{height:63.273438pt;}
.h14_c00347{height:64.121094pt;}
.h17_c00347{height:64.775391pt;}
.h3_c00347{height:67.392578pt;}
.hf_c00347{height:67.445312pt;}
.hc_c00347{height:68.531250pt;}
.h1_c00347{height:68.701172pt;}
.h16_c00347{height:69.355469pt;}
.h6_c00347{height:69.531250pt;}
.h8_c00347{height:69.780450pt;}
.h11_c00347{height:69.875000pt;}
.hb_c00347{height:70.497396pt;}
.h5_c00347{height:70.546875pt;}
.ha_c00347{height:71.218750pt;}
.h4_c00347{height:71.318359pt;}
.h9_c00347{height:71.890625pt;}
.h15_c00347{height:71.972656pt;}
.h7_c00347{height:72.473958pt;}
.h0_c00347{height:1122.666667pt;}
.w0_c00347{width:793.333333pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:121.599613pt;}
.x24_c00347{left:122.879907pt;}
.x2_c00347{left:135.679733pt;}
.xb_c00347{left:168.638667pt;}
.x1e_c00347{left:180.799867pt;}
.x3_c00347{left:186.878920pt;}
.xc_c00347{left:188.799333pt;}
.x22_c00347{left:194.559067pt;}
.x1f_c00347{left:201.279720pt;}
.x4_c00347{left:211.519067pt;}
.x23_c00347{left:215.679200pt;}
.xd_c00347{left:255.039587pt;}
.x7_c00347{left:268.479453pt;}
.x8_c00347{left:290.559067pt;}
.xe_c00347{left:377.919480pt;}
.xf_c00347{left:396.799840pt;}
.x10_c00347{left:406.079587pt;}
.x11_c00347{left:413.759720pt;}
.x12_c00347{left:427.839840pt;}
.x13_c00347{left:447.039587pt;}
.x14_c00347{left:473.919480pt;}
.x5_c00347{left:479.039067pt;}
.x6_c00347{left:498.559573pt;}
.x15_c00347{left:510.079067pt;}
.x20_c00347{left:513.919840pt;}
.x25_c00347{left:518.399453pt;}
.x21_c00347{left:527.359867pt;}
.x26_c00347{left:531.199173pt;}
.x16_c00347{left:532.158693pt;}
.x17_c00347{left:551.039067pt;}
.x1c_c00347{left:554.239707pt;}
.x1d_c00347{left:567.999067pt;}
.x9_c00347{left:569.598680pt;}
.x18_c00347{left:581.438920pt;}
.x19_c00347{left:595.839840pt;}
.x1a_c00347{left:601.599573pt;}
.xa_c00347{left:619.839840pt;}
.x1b_c00347{left:630.399867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0de8f5c35d426b80b80f9b24.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_e36520cae1239cfe3fd54059.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_b60133acc25f017349da2399.woff2')format("woff");}.ff3_c00348{font-family:ff3_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:ff4_c00348;src:url('chunks/assets/font_ee5fee5650ec7336907a9aba.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15_c00348{transform:matrix(0.116667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116667,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{transform:matrix(0.165493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165493,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.165663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165663,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);}
.m19_c00348{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m17_c00348{transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184659,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.204787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204787,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m10_c00348{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{transform:matrix(0.553191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553191,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.lse_c00348{letter-spacing:-15.041588px;}
.ls10_c00348{letter-spacing:-9.568912px;}
.lsc_c00348{letter-spacing:-6.623663px;}
.lsb_c00348{letter-spacing:-5.150250px;}
.ls1e_c00348{letter-spacing:-5.075400px;}
.ls14_c00348{letter-spacing:-4.496625px;}
.ls8_c00348{letter-spacing:-4.418663px;}
.ls19_c00348{letter-spacing:-4.058340px;}
.ls9_c00348{letter-spacing:-3.678413px;}
.lsd_c00348{letter-spacing:-3.086100px;}
.ls18_c00348{letter-spacing:-3.049200px;}
.ls5_c00348{letter-spacing:-2.945250px;}
.lsa_c00348{letter-spacing:-2.358675px;}
.ls21_c00348{letter-spacing:-2.237625px;}
.ls7_c00348{letter-spacing:-2.205000px;}
.ls13_c00348{letter-spacing:-2.124375px;}
.ls1d_c00348{letter-spacing:-2.033460px;}
.ls12_c00348{letter-spacing:-1.473413px;}
.ls15_c00348{letter-spacing:-1.468800px;}
.ls1c_c00348{letter-spacing:-1.016400px;}
.ls11_c00348{letter-spacing:-0.866700px;}
.lsf_c00348{letter-spacing:-0.731588px;}
.ls6_c00348{letter-spacing:0.000000px;}
.ls1f_c00348{letter-spacing:2.033460px;}
.ls20_c00348{letter-spacing:2.205450px;}
.ls22_c00348{letter-spacing:2.220000px;}
.ls17_c00348{letter-spacing:2.266523px;}
.ls0_c00348{letter-spacing:3.049200px;}
.ls2_c00348{letter-spacing:4.058340px;}
.ls23_c00348{letter-spacing:5.591513px;}
.ls1a_c00348{letter-spacing:6.091800px;}
.ls3_c00348{letter-spacing:7.108200px;}
.ls1_c00348{letter-spacing:8.123940px;}
.ls4_c00348{letter-spacing:8.950500px;}
.ls1b_c00348{letter-spacing:11.252250px;}
.ls16_c00348{letter-spacing:16.249200px;}
.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;}
._13_c00348{margin-left:-34.852416px;}
._11_c00348{margin-left:-31.397490px;}
._d_c00348{margin-left:-5.233247px;}
._e_c00348{margin-left:-3.407130px;}
._5_c00348{margin-left:-1.286981px;}
._3_c00348{width:1.386265px;}
._c_c00348{width:2.443760px;}
._2_c00348{width:3.858838px;}
._8_c00348{width:5.527779px;}
._4_c00348{width:7.568640px;}
._1_c00348{width:8.882500px;}
._0_c00348{width:10.757780px;}
._6_c00348{width:11.849998px;}
._a_c00348{width:13.402904px;}
._b_c00348{width:14.936086px;}
._7_c00348{width:17.690010px;}
._f_c00348{width:21.317692px;}
._9_c00348{width:23.042110px;}
._10_c00348{width:24.213687px;}
._12_c00348{width:32.148113px;}
.fc0_c00348{color:transparent;}
.fsc_c00348{font-size:35.250000px;}
.fs10_c00348{font-size:53.250000px;}
.fs11_c00348{font-size:58.500000px;}
.fs13_c00348{font-size:60.000000px;}
.fse_c00348{font-size:62.250000px;}
.fs12_c00348{font-size:63.750000px;}
.fsd_c00348{font-size:66.000000px;}
.fsf_c00348{font-size:67.500000px;}
.fs9_c00348{font-size:70.500000px;}
.fs6_c00348{font-size:71.250000px;}
.fs5_c00348{font-size:74.250000px;}
.fsa_c00348{font-size:76.500000px;}
.fs8_c00348{font-size:77.250000px;}
.fsb_c00348{font-size:78.000000px;}
.fs0_c00348{font-size:78.750000px;}
.fs7_c00348{font-size:80.250000px;}
.fs4_c00348{font-size:81.000000px;}
.fs3_c00348{font-size:82.500000px;}
.fs2_c00348{font-size:84.750000px;}
.fs1_c00348{font-size:87.000000px;}
.y0_c00348{bottom:0.000000px;}
.y12_c00348{bottom:275.759535px;}
.y11_c00348{bottom:299.158785px;}
.y10_c00348{bottom:776.159370px;}
.yf_c00348{bottom:776.159850px;}
.ye_c00348{bottom:799.558590px;}
.yd_c00348{bottom:813.958380px;}
.yc_c00348{bottom:932.759040px;}
.yb_c00348{bottom:962.278755px;}
.ya_c00348{bottom:962.279640px;}
.y9_c00348{bottom:992.159370px;}
.y8_c00348{bottom:1022.039985px;}
.y7_c00348{bottom:1022.040165px;}
.y5_c00348{bottom:1051.558935px;}
.y6_c00348{bottom:1051.559685px;}
.y4_c00348{bottom:1081.438665px;}
.y2_c00348{bottom:1111.319145px;}
.y3_c00348{bottom:1111.319190px;}
.y1_c00348{bottom:1141.559055px;}
.he_c00348{height:36.764648px;}
.h12_c00348{height:55.538086px;}
.h13_c00348{height:61.013672px;}
.h14_c00348{height:62.567139px;}
.h15_c00348{height:62.578125px;}
.h10_c00348{height:64.924805px;}
.hf_c00348{height:66.515625px;}
.h11_c00348{height:68.027344px;}
.h6_c00348{height:72.872314px;}
.hb_c00348{height:73.529297px;}
.h7_c00348{height:74.311523px;}
.hc_c00348{height:75.080566px;}
.ha_c00348{height:75.816650px;}
.hd_c00348{height:76.552734px;}
.h1_c00348{height:77.288818px;}
.h9_c00348{height:78.760986px;}
.h5_c00348{height:79.497070px;}
.h8_c00348{height:80.876953px;}
.h4_c00348{height:80.969238px;}
.h3_c00348{height:83.177490px;}
.h2_c00348{height:85.385742px;}
.h0_c00348{height:1263.000000px;}
.w0_c00348{width:892.500000px;}
.x0_c00348{left:0.000000px;}
.x1d_c00348{left:147.959265px;}
.x12_c00348{left:149.040750px;}
.x1_c00348{left:150.120000px;}
.xc_c00348{left:165.599100px;}
.x22_c00348{left:176.399850px;}
.x28_c00348{left:177.838515px;}
.x16_c00348{left:184.319850px;}
.xd_c00348{left:186.478665px;}
.x8_c00348{left:200.159850px;}
.x17_c00348{left:202.679700px;}
.x2_c00348{left:211.679100px;}
.x9_c00348{left:214.559685px;}
.x23_c00348{left:222.479685px;}
.x29_c00348{left:224.279250px;}
.x3_c00348{left:228.239250px;}
.x20_c00348{left:230.399850px;}
.x24_c00348{left:245.519685px;}
.x2a_c00348{left:264.958950px;}
.xe_c00348{left:271.438635px;}
.x18_c00348{left:317.159385px;}
.xf_c00348{left:332.638530px;}
.x19_c00348{left:341.639700px;}
.x27_c00348{left:344.518635px;}
.x4_c00348{left:403.559685px;}
.x5_c00348{left:420.119985px;}
.x25_c00348{left:500.038920px;}
.x26_c00348{left:528.838530px;}
.x21_c00348{left:549.719565px;}
.x10_c00348{left:596.519670px;}
.x11_c00348{left:611.278800px;}
.x6_c00348{left:636.838530px;}
.x7_c00348{left:669.238770px;}
.x1e_c00348{left:678.958335px;}
.x13_c00348{left:694.080000px;}
.xa_c00348{left:702.718545px;}
.x14_c00348{left:709.918350px;}
.x1a_c00348{left:713.159820px;}
.x1b_c00348{left:726.839535px;}
.xb_c00348{left:733.678530px;}
.x1c_c00348{left:744.838530px;}
.x15_c00348{left:775.079955px;}
.x1f_c00348{left:779.039985px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.lse_c00348{letter-spacing:-13.370300pt;}
.ls10_c00348{letter-spacing:-8.505700pt;}
.lsc_c00348{letter-spacing:-5.887700pt;}
.lsb_c00348{letter-spacing:-4.578000pt;}
.ls1e_c00348{letter-spacing:-4.511467pt;}
.ls14_c00348{letter-spacing:-3.997000pt;}
.ls8_c00348{letter-spacing:-3.927700pt;}
.ls19_c00348{letter-spacing:-3.607413pt;}
.ls9_c00348{letter-spacing:-3.269700pt;}
.lsd_c00348{letter-spacing:-2.743200pt;}
.ls18_c00348{letter-spacing:-2.710400pt;}
.ls5_c00348{letter-spacing:-2.618000pt;}
.lsa_c00348{letter-spacing:-2.096600pt;}
.ls21_c00348{letter-spacing:-1.989000pt;}
.ls7_c00348{letter-spacing:-1.960000pt;}
.ls13_c00348{letter-spacing:-1.888333pt;}
.ls1d_c00348{letter-spacing:-1.807520pt;}
.ls12_c00348{letter-spacing:-1.309700pt;}
.ls15_c00348{letter-spacing:-1.305600pt;}
.ls1c_c00348{letter-spacing:-0.903467pt;}
.ls11_c00348{letter-spacing:-0.770400pt;}
.lsf_c00348{letter-spacing:-0.650300pt;}
.ls6_c00348{letter-spacing:0.000000pt;}
.ls1f_c00348{letter-spacing:1.807520pt;}
.ls20_c00348{letter-spacing:1.960400pt;}
.ls22_c00348{letter-spacing:1.973333pt;}
.ls17_c00348{letter-spacing:2.014687pt;}
.ls0_c00348{letter-spacing:2.710400pt;}
.ls2_c00348{letter-spacing:3.607413pt;}
.ls23_c00348{letter-spacing:4.970233pt;}
.ls1a_c00348{letter-spacing:5.414933pt;}
.ls3_c00348{letter-spacing:6.318400pt;}
.ls1_c00348{letter-spacing:7.221280pt;}
.ls4_c00348{letter-spacing:7.956000pt;}
.ls1b_c00348{letter-spacing:10.002000pt;}
.ls16_c00348{letter-spacing:14.443733pt;}
.ws0_c00348{word-spacing:0.000000pt;}
._13_c00348{margin-left:-30.979925pt;}
._11_c00348{margin-left:-27.908880pt;}
._d_c00348{margin-left:-4.651775pt;}
._e_c00348{margin-left:-3.028560pt;}
._5_c00348{margin-left:-1.143983pt;}
._3_c00348{width:1.232236pt;}
._c_c00348{width:2.172231pt;}
._2_c00348{width:3.430079pt;}
._8_c00348{width:4.913581pt;}
._4_c00348{width:6.727680pt;}
._1_c00348{width:7.895555pt;}
._0_c00348{width:9.562471pt;}
._6_c00348{width:10.533332pt;}
._a_c00348{width:11.913693pt;}
._b_c00348{width:13.276521pt;}
._7_c00348{width:15.724453pt;}
._f_c00348{width:18.949060pt;}
._9_c00348{width:20.481876pt;}
._10_c00348{width:21.523278pt;}
._12_c00348{width:28.576100pt;}
.fsc_c00348{font-size:31.333333pt;}
.fs10_c00348{font-size:47.333333pt;}
.fs11_c00348{font-size:52.000000pt;}
.fs13_c00348{font-size:53.333333pt;}
.fse_c00348{font-size:55.333333pt;}
.fs12_c00348{font-size:56.666667pt;}
.fsd_c00348{font-size:58.666667pt;}
.fsf_c00348{font-size:60.000000pt;}
.fs9_c00348{font-size:62.666667pt;}
.fs6_c00348{font-size:63.333333pt;}
.fs5_c00348{font-size:66.000000pt;}
.fsa_c00348{font-size:68.000000pt;}
.fs8_c00348{font-size:68.666667pt;}
.fsb_c00348{font-size:69.333333pt;}
.fs0_c00348{font-size:70.000000pt;}
.fs7_c00348{font-size:71.333333pt;}
.fs4_c00348{font-size:72.000000pt;}
.fs3_c00348{font-size:73.333333pt;}
.fs2_c00348{font-size:75.333333pt;}
.fs1_c00348{font-size:77.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y12_c00348{bottom:245.119587pt;}
.y11_c00348{bottom:265.918920pt;}
.y10_c00348{bottom:689.919440pt;}
.yf_c00348{bottom:689.919867pt;}
.ye_c00348{bottom:710.718747pt;}
.yd_c00348{bottom:723.518560pt;}
.yc_c00348{bottom:829.119147pt;}
.yb_c00348{bottom:855.358893pt;}
.ya_c00348{bottom:855.359680pt;}
.y9_c00348{bottom:881.919440pt;}
.y8_c00348{bottom:908.479987pt;}
.y7_c00348{bottom:908.480147pt;}
.y5_c00348{bottom:934.719053pt;}
.y6_c00348{bottom:934.719720pt;}
.y4_c00348{bottom:961.278813pt;}
.y2_c00348{bottom:987.839240pt;}
.y3_c00348{bottom:987.839280pt;}
.y1_c00348{bottom:1014.719160pt;}
.he_c00348{height:32.679688pt;}
.h12_c00348{height:49.367188pt;}
.h13_c00348{height:54.234375pt;}
.h14_c00348{height:55.615234pt;}
.h15_c00348{height:55.625000pt;}
.h10_c00348{height:57.710938pt;}
.hf_c00348{height:59.125000pt;}
.h11_c00348{height:60.468750pt;}
.h6_c00348{height:64.775391pt;}
.hb_c00348{height:65.359375pt;}
.h7_c00348{height:66.054688pt;}
.hc_c00348{height:66.738281pt;}
.ha_c00348{height:67.392578pt;}
.hd_c00348{height:68.046875pt;}
.h1_c00348{height:68.701172pt;}
.h9_c00348{height:70.009766pt;}
.h5_c00348{height:70.664062pt;}
.h8_c00348{height:71.890625pt;}
.h4_c00348{height:71.972656pt;}
.h3_c00348{height:73.935547pt;}
.h2_c00348{height:75.898438pt;}
.h0_c00348{height:1122.666667pt;}
.w0_c00348{width:793.333333pt;}
.x0_c00348{left:0.000000pt;}
.x1d_c00348{left:131.519347pt;}
.x12_c00348{left:132.480667pt;}
.x1_c00348{left:133.440000pt;}
.xc_c00348{left:147.199200pt;}
.x22_c00348{left:156.799867pt;}
.x28_c00348{left:158.078680pt;}
.x16_c00348{left:163.839867pt;}
.xd_c00348{left:165.758813pt;}
.x8_c00348{left:177.919867pt;}
.x17_c00348{left:180.159733pt;}
.x2_c00348{left:188.159200pt;}
.x9_c00348{left:190.719720pt;}
.x23_c00348{left:197.759720pt;}
.x29_c00348{left:199.359333pt;}
.x3_c00348{left:202.879333pt;}
.x20_c00348{left:204.799867pt;}
.x24_c00348{left:218.239720pt;}
.x2a_c00348{left:235.519067pt;}
.xe_c00348{left:241.278787pt;}
.x18_c00348{left:281.919453pt;}
.xf_c00348{left:295.678693pt;}
.x19_c00348{left:303.679733pt;}
.x27_c00348{left:306.238787pt;}
.x4_c00348{left:358.719720pt;}
.x5_c00348{left:373.439987pt;}
.x25_c00348{left:444.479040pt;}
.x26_c00348{left:470.078693pt;}
.x21_c00348{left:488.639613pt;}
.x10_c00348{left:530.239707pt;}
.x11_c00348{left:543.358933pt;}
.x6_c00348{left:566.078693pt;}
.x7_c00348{left:594.878907pt;}
.x1e_c00348{left:603.518520pt;}
.x13_c00348{left:616.960000pt;}
.xa_c00348{left:624.638707pt;}
.x14_c00348{left:631.038533pt;}
.x1a_c00348{left:633.919840pt;}
.x1b_c00348{left:646.079587pt;}
.xb_c00348{left:652.158693pt;}
.x1c_c00348{left:662.078693pt;}
.x15_c00348{left:688.959960pt;}
.x1f_c00348{left:692.479987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4da887690630d818e2563977.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_a2812a82d3063a77873cf508.woff2')format("woff");}.ff2_c00349{font-family:ff2_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:ff3_c00349;src:url('chunks/assets/font_6c8a69985c375b97b5cb8e33.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00349{transform:matrix(0.071685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071685,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.104651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104651,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.106322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106322,0.000000,0.000000,0.250000,0,0);}
.ma_c00349{transform:matrix(0.107558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107558,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.112360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112360,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.117816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117816,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.153614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153614,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);}
.v1_c00349{vertical-align:-1.437960px;}
.v0_c00349{vertical-align:0.000000px;}
.ls17_c00349{letter-spacing:-26.432745px;}
.ls12_c00349{letter-spacing:-14.803395px;}
.lsf_c00349{letter-spacing:-10.570905px;}
.ls1a_c00349{letter-spacing:-7.441875px;}
.ls11_c00349{letter-spacing:-7.405245px;}
.ls1e_c00349{letter-spacing:-5.289000px;}
.ls1d_c00349{letter-spacing:-4.231200px;}
.lsa_c00349{letter-spacing:-2.375753px;}
.ls16_c00349{letter-spacing:-1.668083px;}
.lsd_c00349{letter-spacing:-1.057800px;}
.ls8_c00349{letter-spacing:0.000000px;}
.ls10_c00349{letter-spacing:1.057800px;}
.ls5_c00349{letter-spacing:2.116245px;}
.ls14_c00349{letter-spacing:2.448000px;}
.ls4_c00349{letter-spacing:3.172755px;}
.ls1b_c00349{letter-spacing:3.523500px;}
.ls2_c00349{letter-spacing:4.231200px;}
.ls1f_c00349{letter-spacing:4.800000px;}
.ls15_c00349{letter-spacing:4.950000px;}
.ls18_c00349{letter-spacing:5.230950px;}
.ls3_c00349{letter-spacing:5.289000px;}
.ls1_c00349{letter-spacing:6.346800px;}
.ls19_c00349{letter-spacing:6.971805px;}
.ls13_c00349{letter-spacing:7.405245px;}
.ls6_c00349{letter-spacing:8.455950px;}
.ls1c_c00349{letter-spacing:8.959050px;}
.ls9_c00349{letter-spacing:9.514395px;}
.ls0_c00349{letter-spacing:10.570905px;}
.lse_c00349{letter-spacing:11.629350px;}
.lsb_c00349{letter-spacing:16.918350px;}
.lsc_c00349{letter-spacing:19.098023px;}
.ls7_c00349{letter-spacing:22.207350px;}
.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;}
._d_c00349{margin-left:-30.895373px;}
._0_c00349{width:4.795702px;}
._6_c00349{width:8.707923px;}
._2_c00349{width:12.010450px;}
._8_c00349{width:14.567737px;}
._5_c00349{width:16.922368px;}
._7_c00349{width:21.285338px;}
._c_c00349{width:37.366013px;}
._1_c00349{width:42.247035px;}
._3_c00349{width:46.311254px;}
._4_c00349{width:53.709129px;}
._9_c00349{width:73.558158px;}
._a_c00349{width:83.458020px;}
._b_c00349{width:109.149300px;}
.fc0_c00349{color:transparent;}
.fs5_c00349{font-size:60.000000px;}
.fs1_c00349{font-size:60.750000px;}
.fs4_c00349{font-size:62.250000px;}
.fs0_c00349{font-size:64.500000px;}
.fs2_c00349{font-size:65.250000px;}
.fs6_c00349{font-size:66.000000px;}
.fs7_c00349{font-size:66.750000px;}
.fs3_c00349{font-size:209.250000px;}
.y0_c00349{bottom:0.000000px;}
.y18_c00349{bottom:203.040600px;}
.y17_c00349{bottom:226.439685px;}
.y16_c00349{bottom:226.439760px;}
.y11_c00349{bottom:284.760750px;}
.y14_c00349{bottom:284.760930px;}
.y13_c00349{bottom:308.159850px;}
.y15_c00349{bottom:308.520750px;}
.y10_c00349{bottom:308.520990px;}
.yf_c00349{bottom:331.919910px;}
.y12_c00349{bottom:331.920000px;}
.ye_c00349{bottom:366.840270px;}
.yd_c00349{bottom:437.399940px;}
.yc_c00349{bottom:717.839520px;}
.yb_c00349{bottom:741.599625px;}
.ya_c00349{bottom:764.998530px;}
.y8_c00349{bottom:858.960090px;}
.y9_c00349{bottom:858.960570px;}
.y7_c00349{bottom:882.359025px;}
.y6_c00349{bottom:928.800570px;}
.y5_c00349{bottom:975.239865px;}
.y4_c00349{bottom:998.641530px;}
.y3_c00349{bottom:1080.361455px;}
.y2_c00349{bottom:1103.400885px;}
.y1_c00349{bottom:1103.760135px;}
.h5_c00349{height:61.094971px;}
.h6_c00349{height:62.578125px;}
.h1_c00349{height:63.303223px;}
.h2_c00349{height:63.360352px;}
.h3_c00349{height:64.039307px;}
.h7_c00349{height:64.775391px;}
.h8_c00349{height:65.511475px;}
.h4_c00349{height:218.241211px;}
.h0_c00349{height:1263.000000px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.xd_c00349{left:230.757840px;}
.x1_c00349{left:231.838515px;}
.xc_c00349{left:248.397885px;}
.x6_c00349{left:249.479505px;}
.xe_c00349{left:253.439685px;}
.xa_c00349{left:261.719100px;}
.xb_c00349{left:266.758500px;}
.x2_c00349{left:272.519685px;}
.x3_c00349{left:295.559685px;}
.x16_c00349{left:317.879535px;}
.x7_c00349{left:343.439235px;}
.x8_c00349{left:353.878950px;}
.xf_c00349{left:369.719100px;}
.x9_c00349{left:372.599700px;}
.x10_c00349{left:392.759085px;}
.x11_c00349{left:393.838530px;}
.x12_c00349{left:509.039985px;}
.x13_c00349{left:532.080000px;}
.x4_c00349{left:549.719565px;}
.x5_c00349{left:578.878320px;}
.x14_c00349{left:654.479685px;}
.x15_c00349{left:677.878920px;}
@media print{
.v1_c00349{vertical-align:-1.278187pt;}
.v0_c00349{vertical-align:0.000000pt;}
.ls17_c00349{letter-spacing:-23.495773pt;}
.ls12_c00349{letter-spacing:-13.158573pt;}
.lsf_c00349{letter-spacing:-9.396360pt;}
.ls1a_c00349{letter-spacing:-6.615000pt;}
.ls11_c00349{letter-spacing:-6.582440pt;}
.ls1e_c00349{letter-spacing:-4.701333pt;}
.ls1d_c00349{letter-spacing:-3.761067pt;}
.lsa_c00349{letter-spacing:-2.111780pt;}
.ls16_c00349{letter-spacing:-1.482740pt;}
.lsd_c00349{letter-spacing:-0.940267pt;}
.ls8_c00349{letter-spacing:0.000000pt;}
.ls10_c00349{letter-spacing:0.940267pt;}
.ls5_c00349{letter-spacing:1.881107pt;}
.ls14_c00349{letter-spacing:2.176000pt;}
.ls4_c00349{letter-spacing:2.820227pt;}
.ls1b_c00349{letter-spacing:3.132000pt;}
.ls2_c00349{letter-spacing:3.761067pt;}
.ls1f_c00349{letter-spacing:4.266667pt;}
.ls15_c00349{letter-spacing:4.400000pt;}
.ls18_c00349{letter-spacing:4.649733pt;}
.ls3_c00349{letter-spacing:4.701333pt;}
.ls1_c00349{letter-spacing:5.641600pt;}
.ls19_c00349{letter-spacing:6.197160pt;}
.ls13_c00349{letter-spacing:6.582440pt;}
.ls6_c00349{letter-spacing:7.516400pt;}
.ls1c_c00349{letter-spacing:7.963600pt;}
.ls9_c00349{letter-spacing:8.457240pt;}
.ls0_c00349{letter-spacing:9.396360pt;}
.lse_c00349{letter-spacing:10.337200pt;}
.lsb_c00349{letter-spacing:15.038533pt;}
.lsc_c00349{letter-spacing:16.976020pt;}
.ls7_c00349{letter-spacing:19.739867pt;}
.ws0_c00349{word-spacing:0.000000pt;}
._d_c00349{margin-left:-27.462554pt;}
._0_c00349{width:4.262846pt;}
._6_c00349{width:7.740376pt;}
._2_c00349{width:10.675955pt;}
._8_c00349{width:12.949100pt;}
._5_c00349{width:15.042105pt;}
._7_c00349{width:18.920301pt;}
._c_c00349{width:33.214234pt;}
._1_c00349{width:37.552920pt;}
._3_c00349{width:41.165559pt;}
._4_c00349{width:47.741448pt;}
._9_c00349{width:65.385029pt;}
._a_c00349{width:74.184906pt;}
._b_c00349{width:97.021600pt;}
.fs5_c00349{font-size:53.333333pt;}
.fs1_c00349{font-size:54.000000pt;}
.fs4_c00349{font-size:55.333333pt;}
.fs0_c00349{font-size:57.333333pt;}
.fs2_c00349{font-size:58.000000pt;}
.fs6_c00349{font-size:58.666667pt;}
.fs7_c00349{font-size:59.333333pt;}
.fs3_c00349{font-size:186.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y18_c00349{bottom:180.480533pt;}
.y17_c00349{bottom:201.279720pt;}
.y16_c00349{bottom:201.279787pt;}
.y11_c00349{bottom:253.120667pt;}
.y14_c00349{bottom:253.120827pt;}
.y13_c00349{bottom:273.919867pt;}
.y15_c00349{bottom:274.240667pt;}
.y10_c00349{bottom:274.240880pt;}
.yf_c00349{bottom:295.039920pt;}
.y12_c00349{bottom:295.040000pt;}
.ye_c00349{bottom:326.080240pt;}
.yd_c00349{bottom:388.799947pt;}
.yc_c00349{bottom:638.079573pt;}
.yb_c00349{bottom:659.199667pt;}
.ya_c00349{bottom:679.998693pt;}
.y8_c00349{bottom:763.520080pt;}
.y9_c00349{bottom:763.520507pt;}
.y7_c00349{bottom:784.319133pt;}
.y6_c00349{bottom:825.600507pt;}
.y5_c00349{bottom:866.879880pt;}
.y4_c00349{bottom:887.681360pt;}
.y3_c00349{bottom:960.321293pt;}
.y2_c00349{bottom:980.800787pt;}
.y1_c00349{bottom:981.120120pt;}
.h5_c00349{height:54.306641pt;}
.h6_c00349{height:55.625000pt;}
.h1_c00349{height:56.269531pt;}
.h2_c00349{height:56.320312pt;}
.h3_c00349{height:56.923828pt;}
.h7_c00349{height:57.578125pt;}
.h8_c00349{height:58.232422pt;}
.h4_c00349{height:193.992188pt;}
.h0_c00349{height:1122.666667pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.xd_c00349{left:205.118080pt;}
.x1_c00349{left:206.078680pt;}
.xc_c00349{left:220.798120pt;}
.x6_c00349{left:221.759560pt;}
.xe_c00349{left:225.279720pt;}
.xa_c00349{left:232.639200pt;}
.xb_c00349{left:237.118667pt;}
.x2_c00349{left:242.239720pt;}
.x3_c00349{left:262.719720pt;}
.x16_c00349{left:282.559587pt;}
.x7_c00349{left:305.279320pt;}
.x8_c00349{left:314.559067pt;}
.xf_c00349{left:328.639200pt;}
.x9_c00349{left:331.199733pt;}
.x10_c00349{left:349.119187pt;}
.x11_c00349{left:350.078693pt;}
.x12_c00349{left:452.479987pt;}
.x13_c00349{left:472.960000pt;}
.x4_c00349{left:488.639613pt;}
.x5_c00349{left:514.558507pt;}
.x14_c00349{left:581.759720pt;}
.x15_c00349{left:602.559040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d407d41ebba0051283311d74.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_ac25ae128c8a1db3e8d1c70f.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_6c0f7f7b04d7158238dd5abd.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_a9b1db9b85b8ab586d7294c6.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_84720de7ada46e9846368452.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00350;src:url('chunks/assets/font_068a760eb2adac61b22d4fc7.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00350{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.196262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196262,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.md_c00350{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m15_c00350{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.me_c00350{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m14_c00350{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m1d_c00350{transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00350{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m11_c00350{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.m1c_c00350{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m12_c00350{transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m19_c00350{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.m10_c00350{transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307522,0.000000,0.000000,0.250000,0,0);}
.m1a_c00350{transform:matrix(0.321078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321078,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328704,0.000000,0.000000,0.250000,0,0);}
.m17_c00350{transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);}
.m13_c00350{transform:matrix(0.383178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383178,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls12_c00350{letter-spacing:-14.332650px;}
.ls14_c00350{letter-spacing:-13.415078px;}
.ls15_c00350{letter-spacing:-11.440725px;}
.ls10_c00350{letter-spacing:-7.426125px;}
.lse_c00350{letter-spacing:-6.685875px;}
.ls1c_c00350{letter-spacing:-6.559875px;}
.ls8_c00350{letter-spacing:-5.945625px;}
.ls20_c00350{letter-spacing:-5.722200px;}
.ls13_c00350{letter-spacing:-5.427900px;}
.ls4_c00350{letter-spacing:-5.196713px;}
.ls11_c00350{letter-spacing:-5.166000px;}
.lsc_c00350{letter-spacing:-4.550985px;}
.ls9_c00350{letter-spacing:-4.456463px;}
.ls21_c00350{letter-spacing:-3.923640px;}
.lsf_c00350{letter-spacing:-3.753750px;}
.lsa_c00350{letter-spacing:-3.717000px;}
.ls1_c00350{letter-spacing:-2.968875px;}
.ls17_c00350{letter-spacing:-2.937953px;}
.ls1d_c00350{letter-spacing:-2.673000px;}
.ls2_c00350{letter-spacing:-2.335275px;}
.lsb_c00350{letter-spacing:-2.272905px;}
.ls3_c00350{letter-spacing:-2.229413px;}
.ls5_c00350{letter-spacing:-1.489163px;}
.ls6_c00350{letter-spacing:-0.740250px;}
.ls1b_c00350{letter-spacing:-0.554625px;}
.ls7_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.740250px;}
.ls1e_c00350{letter-spacing:1.751850px;}
.ls1f_c00350{letter-spacing:2.317193px;}
.lsd_c00350{letter-spacing:4.181700px;}
.ls16_c00350{letter-spacing:5.556600px;}
.ls1a_c00350{letter-spacing:6.685875px;}
.ls19_c00350{letter-spacing:30.222563px;}
.ls18_c00350{letter-spacing:35.392350px;}
.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;}
._17_c00350{margin-left:-15.065202px;}
._4_c00350{margin-left:-9.445305px;}
._1b_c00350{margin-left:-7.654262px;}
._12_c00350{margin-left:-5.898880px;}
._3_c00350{margin-left:-4.499240px;}
._8_c00350{margin-left:-2.519718px;}
._14_c00350{margin-left:-1.192899px;}
._7_c00350{width:2.054171px;}
._5_c00350{width:3.335389px;}
._15_c00350{width:4.501097px;}
._6_c00350{width:5.593404px;}
._9_c00350{width:7.221761px;}
._0_c00350{width:8.566514px;}
._11_c00350{width:9.638970px;}
._2_c00350{width:10.741678px;}
._10_c00350{width:11.840360px;}
._1_c00350{width:12.857661px;}
._16_c00350{width:13.986386px;}
._1c_c00350{width:15.146879px;}
._13_c00350{width:17.675705px;}
._1a_c00350{width:19.414951px;}
._19_c00350{width:20.637894px;}
._18_c00350{width:23.310698px;}
._1d_c00350{width:24.952042px;}
._e_c00350{width:26.577798px;}
._b_c00350{width:27.777146px;}
._f_c00350{width:28.862113px;}
._d_c00350{width:32.105989px;}
._a_c00350{width:33.228934px;}
._c_c00350{width:36.579880px;}
.fc0_c00350{color:transparent;}
.fse_c00350{font-size:38.250000px;}
.fsd_c00350{font-size:40.500000px;}
.fsa_c00350{font-size:47.250000px;}
.fsb_c00350{font-size:55.500000px;}
.fsc_c00350{font-size:56.250000px;}
.fs5_c00350{font-size:72.000000px;}
.fs2_c00350{font-size:72.750000px;}
.fsf_c00350{font-size:74.250000px;}
.fs10_c00350{font-size:75.750000px;}
.fs4_c00350{font-size:76.500000px;}
.fs9_c00350{font-size:77.250000px;}
.fs0_c00350{font-size:78.750000px;}
.fs3_c00350{font-size:79.500000px;}
.fs1_c00350{font-size:80.250000px;}
.fs6_c00350{font-size:82.500000px;}
.fs7_c00350{font-size:83.250000px;}
.fs11_c00350{font-size:84.000000px;}
.fs8_c00350{font-size:84.750000px;}
.y0_c00350{bottom:0.000000px;}
.y27_c00350{bottom:188.279070px;}
.y26_c00350{bottom:218.158785px;}
.y25_c00350{bottom:218.159655px;}
.y23_c00350{bottom:248.037915px;}
.y24_c00350{bottom:248.039385px;}
.y22_c00350{bottom:277.199070px;}
.y21_c00350{bottom:307.078785px;}
.y20_c00350{bottom:336.600150px;}
.y1f_c00350{bottom:336.600930px;}
.y1e_c00350{bottom:395.639700px;}
.y1d_c00350{bottom:421.919535px;}
.y1c_c00350{bottom:428.760135px;}
.y1b_c00350{bottom:455.041350px;}
.y1a_c00350{bottom:485.281260px;}
.y19_c00350{bottom:544.320030px;}
.y18_c00350{bottom:574.199760px;}
.y17_c00350{bottom:604.439670px;}
.y16_c00350{bottom:604.439850px;}
.y15_c00350{bottom:633.959385px;}
.y14_c00350{bottom:663.120075px;}
.y13_c00350{bottom:722.879520px;}
.y12_c00350{bottom:722.879700px;}
.y11_c00350{bottom:752.399235px;}
.y10_c00350{bottom:752.399595px;}
.ye_c00350{bottom:782.999955px;}
.yf_c00350{bottom:783.000000px;}
.yd_c00350{bottom:813.239865px;}
.yc_c00350{bottom:813.239955px;}
.ya_c00350{bottom:842.758755px;}
.yb_c00350{bottom:842.759490px;}
.y9_c00350{bottom:902.159820px;}
.y8_c00350{bottom:902.160030px;}
.y7_c00350{bottom:932.039745px;}
.y6_c00350{bottom:961.919475px;}
.y5_c00350{bottom:991.799190px;}
.y4_c00350{bottom:1051.198455px;}
.y3_c00350{bottom:1080.719790px;}
.y2_c00350{bottom:1109.878830px;}
.y1_c00350{bottom:1140.118740px;}
.h11_c00350{height:39.748535px;}
.h12_c00350{height:39.893555px;}
.he_c00350{height:49.280273px;}
.hf_c00350{height:54.470215px;}
.h10_c00350{height:55.206299px;}
.h15_c00350{height:74.344482px;}
.h14_c00350{height:75.080566px;}
.h6_c00350{height:75.093750px;}
.h3_c00350{height:75.875977px;}
.h1_c00350{height:77.288818px;}
.h13_c00350{height:77.440430px;}
.hd_c00350{height:77.853516px;}
.h4_c00350{height:78.024902px;}
.h2_c00350{height:78.760986px;}
.h9_c00350{height:79.309570px;}
.h8_c00350{height:79.365234px;}
.h5_c00350{height:79.787109px;}
.hb_c00350{height:80.121094px;}
.h7_c00350{height:80.969238px;}
.ha_c00350{height:82.274414px;}
.h16_c00350{height:82.441406px;}
.hc_c00350{height:83.756836px;}
.h0_c00350{height:1263.000000px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x6_c00350{left:136.797570px;}
.x1_c00350{left:137.878950px;}
.x15_c00350{left:154.439250px;}
.x11_c00350{left:187.198785px;}
.x2_c00350{left:192.958350px;}
.x9_c00350{left:201.239250px;}
.x12_c00350{left:202.679700px;}
.x18_c00350{left:213.478635px;}
.x24_c00350{left:218.158785px;}
.x3_c00350{left:225.719535px;}
.xa_c00350{left:236.159385px;}
.x19_c00350{left:257.038950px;}
.x1a_c00350{left:281.519100px;}
.x13_c00350{left:293.399250px;}
.x7_c00350{left:296.639100px;}
.x1b_c00350{left:298.799535px;}
.x2b_c00350{left:301.678500px;}
.x8_c00350{left:311.399850px;}
.x1c_c00350{left:312.479235px;}
.x14_c00350{left:335.878350px;}
.x2c_c00350{left:341.998950px;}
.xf_c00350{left:350.639100px;}
.x10_c00350{left:367.919535px;}
.x1d_c00350{left:373.319850px;}
.x16_c00350{left:407.158770px;}
.x28_c00350{left:418.318770px;}
.x1e_c00350{left:419.759085px;}
.x17_c00350{left:423.719100px;}
.x29_c00350{left:444.959385px;}
.xb_c00350{left:475.558635px;}
.xc_c00350{left:501.479235px;}
.x1f_c00350{left:509.758530px;}
.xd_c00350{left:531.359850px;}
.x20_c00350{left:541.438620px;}
.xe_c00350{left:555.838530px;}
.x21_c00350{left:603.719520px;}
.x4_c00350{left:617.758530px;}
.x25_c00350{left:636.479235px;}
.x5_c00350{left:637.558635px;}
.x22_c00350{left:648.718545px;}
.x23_c00350{left:664.199385px;}
.x26_c00350{left:669.599670px;}
.x2a_c00350{left:689.399820px;}
.x27_c00350{left:731.878920px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls12_c00350{letter-spacing:-12.740133pt;}
.ls14_c00350{letter-spacing:-11.924513pt;}
.ls15_c00350{letter-spacing:-10.169533pt;}
.ls10_c00350{letter-spacing:-6.601000pt;}
.lse_c00350{letter-spacing:-5.943000pt;}
.ls1c_c00350{letter-spacing:-5.831000pt;}
.ls8_c00350{letter-spacing:-5.285000pt;}
.ls20_c00350{letter-spacing:-5.086400pt;}
.ls13_c00350{letter-spacing:-4.824800pt;}
.ls4_c00350{letter-spacing:-4.619300pt;}
.ls11_c00350{letter-spacing:-4.592000pt;}
.lsc_c00350{letter-spacing:-4.045320pt;}
.ls9_c00350{letter-spacing:-3.961300pt;}
.ls21_c00350{letter-spacing:-3.487680pt;}
.lsf_c00350{letter-spacing:-3.336667pt;}
.lsa_c00350{letter-spacing:-3.304000pt;}
.ls1_c00350{letter-spacing:-2.639000pt;}
.ls17_c00350{letter-spacing:-2.611513pt;}
.ls1d_c00350{letter-spacing:-2.376000pt;}
.ls2_c00350{letter-spacing:-2.075800pt;}
.lsb_c00350{letter-spacing:-2.020360pt;}
.ls3_c00350{letter-spacing:-1.981700pt;}
.ls5_c00350{letter-spacing:-1.323700pt;}
.ls6_c00350{letter-spacing:-0.658000pt;}
.ls1b_c00350{letter-spacing:-0.493000pt;}
.ls7_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.658000pt;}
.ls1e_c00350{letter-spacing:1.557200pt;}
.ls1f_c00350{letter-spacing:2.059727pt;}
.lsd_c00350{letter-spacing:3.717067pt;}
.ls16_c00350{letter-spacing:4.939200pt;}
.ls1a_c00350{letter-spacing:5.943000pt;}
.ls19_c00350{letter-spacing:26.864500pt;}
.ls18_c00350{letter-spacing:31.459867pt;}
.ws0_c00350{word-spacing:0.000000pt;}
._17_c00350{margin-left:-13.391291pt;}
._4_c00350{margin-left:-8.395826pt;}
._1b_c00350{margin-left:-6.803789pt;}
._12_c00350{margin-left:-5.243449pt;}
._3_c00350{margin-left:-3.999325pt;}
._8_c00350{margin-left:-2.239749pt;}
._14_c00350{margin-left:-1.060355pt;}
._7_c00350{width:1.825930pt;}
._5_c00350{width:2.964791pt;}
._15_c00350{width:4.000975pt;}
._6_c00350{width:4.971915pt;}
._9_c00350{width:6.419343pt;}
._0_c00350{width:7.614679pt;}
._11_c00350{width:8.567974pt;}
._2_c00350{width:9.548158pt;}
._10_c00350{width:10.524764pt;}
._1_c00350{width:11.429032pt;}
._16_c00350{width:12.432343pt;}
._1c_c00350{width:13.463892pt;}
._13_c00350{width:15.711738pt;}
._1a_c00350{width:17.257734pt;}
._19_c00350{width:18.344794pt;}
._18_c00350{width:20.720621pt;}
._1d_c00350{width:22.179592pt;}
._e_c00350{width:23.624709pt;}
._b_c00350{width:24.690796pt;}
._f_c00350{width:25.655211pt;}
._d_c00350{width:28.538657pt;}
._a_c00350{width:29.536830pt;}
._c_c00350{width:32.515449pt;}
.fse_c00350{font-size:34.000000pt;}
.fsd_c00350{font-size:36.000000pt;}
.fsa_c00350{font-size:42.000000pt;}
.fsb_c00350{font-size:49.333333pt;}
.fsc_c00350{font-size:50.000000pt;}
.fs5_c00350{font-size:64.000000pt;}
.fs2_c00350{font-size:64.666667pt;}
.fsf_c00350{font-size:66.000000pt;}
.fs10_c00350{font-size:67.333333pt;}
.fs4_c00350{font-size:68.000000pt;}
.fs9_c00350{font-size:68.666667pt;}
.fs0_c00350{font-size:70.000000pt;}
.fs3_c00350{font-size:70.666667pt;}
.fs1_c00350{font-size:71.333333pt;}
.fs6_c00350{font-size:73.333333pt;}
.fs7_c00350{font-size:74.000000pt;}
.fs11_c00350{font-size:74.666667pt;}
.fs8_c00350{font-size:75.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y27_c00350{bottom:167.359173pt;}
.y26_c00350{bottom:193.918920pt;}
.y25_c00350{bottom:193.919693pt;}
.y23_c00350{bottom:220.478147pt;}
.y24_c00350{bottom:220.479453pt;}
.y22_c00350{bottom:246.399173pt;}
.y21_c00350{bottom:272.958920pt;}
.y20_c00350{bottom:299.200133pt;}
.y1f_c00350{bottom:299.200827pt;}
.y1e_c00350{bottom:351.679733pt;}
.y1d_c00350{bottom:375.039587pt;}
.y1c_c00350{bottom:381.120120pt;}
.y1b_c00350{bottom:404.481200pt;}
.y1a_c00350{bottom:431.361120pt;}
.y19_c00350{bottom:483.840027pt;}
.y18_c00350{bottom:510.399787pt;}
.y17_c00350{bottom:537.279707pt;}
.y16_c00350{bottom:537.279867pt;}
.y15_c00350{bottom:563.519453pt;}
.y14_c00350{bottom:589.440067pt;}
.y13_c00350{bottom:642.559573pt;}
.y12_c00350{bottom:642.559733pt;}
.y11_c00350{bottom:668.799320pt;}
.y10_c00350{bottom:668.799640pt;}
.ye_c00350{bottom:695.999960pt;}
.yf_c00350{bottom:696.000000pt;}
.yd_c00350{bottom:722.879880pt;}
.yc_c00350{bottom:722.879960pt;}
.ya_c00350{bottom:749.118893pt;}
.yb_c00350{bottom:749.119547pt;}
.y9_c00350{bottom:801.919840pt;}
.y8_c00350{bottom:801.920027pt;}
.y7_c00350{bottom:828.479773pt;}
.y6_c00350{bottom:855.039533pt;}
.y5_c00350{bottom:881.599280pt;}
.y4_c00350{bottom:934.398627pt;}
.y3_c00350{bottom:960.639813pt;}
.y2_c00350{bottom:986.558960pt;}
.y1_c00350{bottom:1013.438880pt;}
.h11_c00350{height:35.332031pt;}
.h12_c00350{height:35.460938pt;}
.he_c00350{height:43.804688pt;}
.hf_c00350{height:48.417969pt;}
.h10_c00350{height:49.072266pt;}
.h15_c00350{height:66.083984pt;}
.h14_c00350{height:66.738281pt;}
.h6_c00350{height:66.750000pt;}
.h3_c00350{height:67.445312pt;}
.h1_c00350{height:68.701172pt;}
.h13_c00350{height:68.835938pt;}
.hd_c00350{height:69.203125pt;}
.h4_c00350{height:69.355469pt;}
.h2_c00350{height:70.009766pt;}
.h9_c00350{height:70.497396pt;}
.h8_c00350{height:70.546875pt;}
.h5_c00350{height:70.921875pt;}
.hb_c00350{height:71.218750pt;}
.h7_c00350{height:71.972656pt;}
.ha_c00350{height:73.132813pt;}
.h16_c00350{height:73.281250pt;}
.hc_c00350{height:74.450521pt;}
.h0_c00350{height:1122.666667pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x6_c00350{left:121.597840pt;}
.x1_c00350{left:122.559067pt;}
.x15_c00350{left:137.279333pt;}
.x11_c00350{left:166.398920pt;}
.x2_c00350{left:171.518533pt;}
.x9_c00350{left:178.879333pt;}
.x12_c00350{left:180.159733pt;}
.x18_c00350{left:189.758787pt;}
.x24_c00350{left:193.918920pt;}
.x3_c00350{left:200.639587pt;}
.xa_c00350{left:209.919453pt;}
.x19_c00350{left:228.479067pt;}
.x1a_c00350{left:250.239200pt;}
.x13_c00350{left:260.799333pt;}
.x7_c00350{left:263.679200pt;}
.x1b_c00350{left:265.599587pt;}
.x2b_c00350{left:268.158667pt;}
.x8_c00350{left:276.799867pt;}
.x1c_c00350{left:277.759320pt;}
.x14_c00350{left:298.558533pt;}
.x2c_c00350{left:303.999067pt;}
.xf_c00350{left:311.679200pt;}
.x10_c00350{left:327.039587pt;}
.x1d_c00350{left:331.839867pt;}
.x16_c00350{left:361.918907pt;}
.x28_c00350{left:371.838907pt;}
.x1e_c00350{left:373.119187pt;}
.x17_c00350{left:376.639200pt;}
.x29_c00350{left:395.519453pt;}
.xb_c00350{left:422.718787pt;}
.xc_c00350{left:445.759320pt;}
.x1f_c00350{left:453.118693pt;}
.xd_c00350{left:472.319867pt;}
.x20_c00350{left:481.278773pt;}
.xe_c00350{left:494.078693pt;}
.x21_c00350{left:536.639573pt;}
.x4_c00350{left:549.118693pt;}
.x25_c00350{left:565.759320pt;}
.x5_c00350{left:566.718787pt;}
.x22_c00350{left:576.638707pt;}
.x23_c00350{left:590.399453pt;}
.x26_c00350{left:595.199707pt;}
.x2a_c00350{left:612.799840pt;}
.x27_c00350{left:650.559040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_569fba20f01bbc35d1c0988e.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.364746;font-style:normal;font-weight:normal;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_c5b17c6a67a87f25d8837d83.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_2c63610130f047ab4f00886d.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_8ecdf425aafdcb8bc3385263.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_36964ec44de992d12f711b04.woff2')format("woff");}.ff6_c00351{font-family:ff6_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;}
.me_c00351{transform:matrix(0.126289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126289,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m10_c00351{transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m19_c00351{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.m18_c00351{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.236957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236957,0.000000,0.000000,0.250000,0,0);}
.m16_c00351{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.v1_c00351{vertical-align:1.440720px;}
.ls1d_c00351{letter-spacing:-8.914500px;}
.ls1b_c00351{letter-spacing:-8.661150px;}
.lsd_c00351{letter-spacing:-8.175038px;}
.ls8_c00351{letter-spacing:-7.426125px;}
.ls14_c00351{letter-spacing:-6.903000px;}
.ls10_c00351{letter-spacing:-6.685875px;}
.ls25_c00351{letter-spacing:-6.572700px;}
.ls1e_c00351{letter-spacing:-6.534900px;}
.lsf_c00351{letter-spacing:-5.945625px;}
.lse_c00351{letter-spacing:-5.786025px;}
.ls12_c00351{letter-spacing:-5.618303px;}
.lsa_c00351{letter-spacing:-5.577000px;}
.ls5_c00351{letter-spacing:-5.536388px;}
.ls7_c00351{letter-spacing:-5.196713px;}
.ls1c_c00351{letter-spacing:-5.151248px;}
.ls11_c00351{letter-spacing:-5.062500px;}
.ls3_c00351{letter-spacing:-4.796003px;}
.lsc_c00351{letter-spacing:-4.456463px;}
.ls1f_c00351{letter-spacing:-4.258800px;}
.ls9_c00351{letter-spacing:-3.717000px;}
.ls2_c00351{letter-spacing:-2.968875px;}
.ls16_c00351{letter-spacing:-2.479725px;}
.ls13_c00351{letter-spacing:-2.396880px;}
.ls1_c00351{letter-spacing:-2.229413px;}
.ls22_c00351{letter-spacing:-1.708875px;}
.ls1a_c00351{letter-spacing:-1.497600px;}
.ls4_c00351{letter-spacing:-1.489163px;}
.ls15_c00351{letter-spacing:-0.834750px;}
.ls17_c00351{letter-spacing:-0.801150px;}
.ls23_c00351{letter-spacing:-0.794820px;}
.ls6_c00351{letter-spacing:-0.740250px;}
.lsb_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:1.489163px;}
.ls21_c00351{letter-spacing:1.574895px;}
.ls24_c00351{letter-spacing:2.410200px;}
.ls19_c00351{letter-spacing:5.936400px;}
.ls20_c00351{letter-spacing:13.147950px;}
.ls18_c00351{letter-spacing:41.702925px;}
.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;}
._1d_c00351{margin-left:-12.375265px;}
._16_c00351{margin-left:-7.564458px;}
._c_c00351{margin-left:-5.327081px;}
._1_c00351{margin-left:-3.091725px;}
._3_c00351{margin-left:-1.462863px;}
._15_c00351{width:1.693422px;}
._2_c00351{width:3.156775px;}
._1e_c00351{width:4.273465px;}
._0_c00351{width:5.277439px;}
._8_c00351{width:7.046981px;}
._4_c00351{width:8.143523px;}
._a_c00351{width:9.222041px;}
._5_c00351{width:10.762540px;}
._7_c00351{width:12.324791px;}
._14_c00351{width:13.414394px;}
._6_c00351{width:15.762778px;}
._1c_c00351{width:16.938679px;}
._b_c00351{width:19.256396px;}
._9_c00351{width:20.963815px;}
._13_c00351{width:23.492953px;}
._f_c00351{width:24.650756px;}
._10_c00351{width:26.309394px;}
._11_c00351{width:28.026531px;}
._d_c00351{width:30.191428px;}
._12_c00351{width:31.395233px;}
._e_c00351{width:33.298843px;}
._1a_c00351{width:229.636426px;}
._19_c00351{width:248.320027px;}
._1b_c00351{width:364.100343px;}
._17_c00351{width:394.198370px;}
._18_c00351{width:577.817709px;}
.fc0_c00351{color:transparent;}
.fs6_c00351{font-size:72.000000px;}
.fs9_c00351{font-size:72.750000px;}
.fsc_c00351{font-size:77.250000px;}
.fs7_c00351{font-size:78.000000px;}
.fs0_c00351{font-size:78.750000px;}
.fsb_c00351{font-size:79.500000px;}
.fs4_c00351{font-size:80.250000px;}
.fs5_c00351{font-size:81.000000px;}
.fs8_c00351{font-size:81.750000px;}
.fs3_c00351{font-size:82.500000px;}
.fs1_c00351{font-size:84.750000px;}
.fsa_c00351{font-size:85.500000px;}
.fs2_c00351{font-size:86.250000px;}
.y0_c00351{bottom:0.000000px;}
.y24_c00351{bottom:188.281770px;}
.y23_c00351{bottom:217.801305px;}
.y22_c00351{bottom:248.041215px;}
.y21_c00351{bottom:277.560750px;}
.y20_c00351{bottom:336.601110px;}
.y1f_c00351{bottom:396.720750px;}
.y1d_c00351{bottom:426.601320px;}
.y1e_c00351{bottom:427.321515px;}
.y1c_c00351{bottom:456.840660px;}
.y1a_c00351{bottom:486.898860px;}
.y1b_c00351{bottom:486.901515px;}
.y19_c00351{bottom:516.418395px;}
.y18_c00351{bottom:546.119070px;}
.y17_c00351{bottom:575.280210px;}
.y16_c00351{bottom:634.681275px;}
.y14_c00351{bottom:664.920495px;}
.y15_c00351{bottom:664.921185px;}
.y12_c00351{bottom:694.080855px;}
.y13_c00351{bottom:694.081650px;}
.y11_c00351{bottom:723.960570px;}
.y10_c00351{bottom:723.960750px;}
.yf_c00351{bottom:753.480285px;}
.ye_c00351{bottom:783.720525px;}
.yd_c00351{bottom:814.320930px;}
.yc_c00351{bottom:814.322385px;}
.yb_c00351{bottom:873.361155px;}
.ya_c00351{bottom:903.240870px;}
.y9_c00351{bottom:903.241155px;}
.y7_c00351{bottom:932.760135px;}
.y8_c00351{bottom:932.760675px;}
.y6_c00351{bottom:992.519580px;}
.y5_c00351{bottom:1022.399295px;}
.y4_c00351{bottom:1081.800360px;}
.y3_c00351{bottom:1111.680090px;}
.y2_c00351{bottom:1111.680195px;}
.y1_c00351{bottom:1141.201545px;}
.hd_c00351{height:73.318359px;}
.h9_c00351{height:75.093750px;}
.h15_c00351{height:76.514648px;}
.he_c00351{height:76.552734px;}
.h1_c00351{height:77.288818px;}
.h12_c00351{height:77.853516px;}
.h10_c00351{height:78.568359px;}
.ha_c00351{height:78.609375px;}
.h11_c00351{height:78.729538px;}
.h5_c00351{height:78.760986px;}
.h14_c00351{height:79.365234px;}
.h7_c00351{height:79.497070px;}
.h13_c00351{height:80.121094px;}
.h16_c00351{height:80.233154px;}
.h8_c00351{height:80.876953px;}
.h6_c00351{height:80.969238px;}
.h4_c00351{height:81.533203px;}
.hb_c00351{height:82.388672px;}
.hc_c00351{height:83.144531px;}
.h2_c00351{height:83.177490px;}
.hf_c00351{height:84.498047px;}
.h3_c00351{height:84.649658px;}
.h0_c00351{height:1263.000000px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x8_c00351{left:135.720225px;}
.x1_c00351{left:136.799565px;}
.x23_c00351{left:161.639100px;}
.xf_c00351{left:214.559685px;}
.x19_c00351{left:241.559685px;}
.xd_c00351{left:249.118785px;}
.x1a_c00351{left:257.038950px;}
.x2_c00351{left:264.958950px;}
.x3_c00351{left:284.038950px;}
.xe_c00351{left:294.119385px;}
.x1e_c00351{left:303.838965px;}
.x1d_c00351{left:304.917990px;}
.x10_c00351{left:311.399850px;}
.x11_c00351{left:342.719100px;}
.x22_c00351{left:365.399850px;}
.x12_c00351{left:419.038920px;}
.x13_c00351{left:446.759085px;}
.x1f_c00351{left:494.638500px;}
.x14_c00351{left:500.399820px;}
.x21_c00351{left:512.279850px;}
.x20_c00351{left:520.559100px;}
.x1b_c00351{left:529.919535px;}
.x15_c00351{left:531.359850px;}
.x16_c00351{left:551.159820px;}
.x1c_c00351{left:552.598530px;}
.xb_c00351{left:573.118785px;}
.x9_c00351{left:582.119985px;}
.x17_c00351{left:583.199385px;}
.xc_c00351{left:588.599670px;}
.x18_c00351{left:603.358605px;}
.xa_c00351{left:607.679670px;}
.x4_c00351{left:619.559685px;}
.x5_c00351{left:638.998950px;}
.x6_c00351{left:642.238770px;}
.x7_c00351{left:663.838530px;}
.x24_c00351{left:669.599670px;}
.x25_c00351{left:690.119985px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.v1_c00351{vertical-align:1.280640pt;}
.ls1d_c00351{letter-spacing:-7.924000pt;}
.ls1b_c00351{letter-spacing:-7.698800pt;}
.lsd_c00351{letter-spacing:-7.266700pt;}
.ls8_c00351{letter-spacing:-6.601000pt;}
.ls14_c00351{letter-spacing:-6.136000pt;}
.ls10_c00351{letter-spacing:-5.943000pt;}
.ls25_c00351{letter-spacing:-5.842400pt;}
.ls1e_c00351{letter-spacing:-5.808800pt;}
.lsf_c00351{letter-spacing:-5.285000pt;}
.lse_c00351{letter-spacing:-5.143133pt;}
.ls12_c00351{letter-spacing:-4.994047pt;}
.lsa_c00351{letter-spacing:-4.957333pt;}
.ls5_c00351{letter-spacing:-4.921233pt;}
.ls7_c00351{letter-spacing:-4.619300pt;}
.ls1c_c00351{letter-spacing:-4.578887pt;}
.ls11_c00351{letter-spacing:-4.500000pt;}
.ls3_c00351{letter-spacing:-4.263113pt;}
.lsc_c00351{letter-spacing:-3.961300pt;}
.ls1f_c00351{letter-spacing:-3.785600pt;}
.ls9_c00351{letter-spacing:-3.304000pt;}
.ls2_c00351{letter-spacing:-2.639000pt;}
.ls16_c00351{letter-spacing:-2.204200pt;}
.ls13_c00351{letter-spacing:-2.130560pt;}
.ls1_c00351{letter-spacing:-1.981700pt;}
.ls22_c00351{letter-spacing:-1.519000pt;}
.ls1a_c00351{letter-spacing:-1.331200pt;}
.ls4_c00351{letter-spacing:-1.323700pt;}
.ls15_c00351{letter-spacing:-0.742000pt;}
.ls17_c00351{letter-spacing:-0.712133pt;}
.ls23_c00351{letter-spacing:-0.706507pt;}
.ls6_c00351{letter-spacing:-0.658000pt;}
.lsb_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:1.323700pt;}
.ls21_c00351{letter-spacing:1.399907pt;}
.ls24_c00351{letter-spacing:2.142400pt;}
.ls19_c00351{letter-spacing:5.276800pt;}
.ls20_c00351{letter-spacing:11.687067pt;}
.ls18_c00351{letter-spacing:37.069267pt;}
.ws0_c00351{word-spacing:0.000000pt;}
._1d_c00351{margin-left:-11.000236pt;}
._16_c00351{margin-left:-6.723962pt;}
._c_c00351{margin-left:-4.735183pt;}
._1_c00351{margin-left:-2.748200pt;}
._3_c00351{margin-left:-1.300323pt;}
._15_c00351{width:1.505264pt;}
._2_c00351{width:2.806023pt;}
._1e_c00351{width:3.798636pt;}
._0_c00351{width:4.691057pt;}
._8_c00351{width:6.263983pt;}
._4_c00351{width:7.238687pt;}
._a_c00351{width:8.197370pt;}
._5_c00351{width:9.566702pt;}
._7_c00351{width:10.955370pt;}
._14_c00351{width:11.923906pt;}
._6_c00351{width:14.011358pt;}
._1c_c00351{width:15.056604pt;}
._b_c00351{width:17.116796pt;}
._9_c00351{width:18.634502pt;}
._13_c00351{width:20.882625pt;}
._f_c00351{width:21.911783pt;}
._10_c00351{width:23.386128pt;}
._11_c00351{width:24.912472pt;}
._d_c00351{width:26.836825pt;}
._12_c00351{width:27.906874pt;}
._e_c00351{width:29.598972pt;}
._1a_c00351{width:204.121268pt;}
._19_c00351{width:220.728913pt;}
._1b_c00351{width:323.644749pt;}
._17_c00351{width:350.398551pt;}
._18_c00351{width:513.615742pt;}
.fs6_c00351{font-size:64.000000pt;}
.fs9_c00351{font-size:64.666667pt;}
.fsc_c00351{font-size:68.666667pt;}
.fs7_c00351{font-size:69.333333pt;}
.fs0_c00351{font-size:70.000000pt;}
.fsb_c00351{font-size:70.666667pt;}
.fs4_c00351{font-size:71.333333pt;}
.fs5_c00351{font-size:72.000000pt;}
.fs8_c00351{font-size:72.666667pt;}
.fs3_c00351{font-size:73.333333pt;}
.fs1_c00351{font-size:75.333333pt;}
.fsa_c00351{font-size:76.000000pt;}
.fs2_c00351{font-size:76.666667pt;}
.y0_c00351{bottom:0.000000pt;}
.y24_c00351{bottom:167.361573pt;}
.y23_c00351{bottom:193.601160pt;}
.y22_c00351{bottom:220.481080pt;}
.y21_c00351{bottom:246.720667pt;}
.y20_c00351{bottom:299.200987pt;}
.y1f_c00351{bottom:352.640667pt;}
.y1d_c00351{bottom:379.201173pt;}
.y1e_c00351{bottom:379.841347pt;}
.y1c_c00351{bottom:406.080587pt;}
.y1a_c00351{bottom:432.798987pt;}
.y1b_c00351{bottom:432.801347pt;}
.y19_c00351{bottom:459.038573pt;}
.y18_c00351{bottom:485.439173pt;}
.y17_c00351{bottom:511.360187pt;}
.y16_c00351{bottom:564.161133pt;}
.y14_c00351{bottom:591.040440pt;}
.y15_c00351{bottom:591.041053pt;}
.y12_c00351{bottom:616.960760pt;}
.y13_c00351{bottom:616.961467pt;}
.y11_c00351{bottom:643.520507pt;}
.y10_c00351{bottom:643.520667pt;}
.yf_c00351{bottom:669.760253pt;}
.ye_c00351{bottom:696.640467pt;}
.yd_c00351{bottom:723.840827pt;}
.yc_c00351{bottom:723.842120pt;}
.yb_c00351{bottom:776.321027pt;}
.ya_c00351{bottom:802.880773pt;}
.y9_c00351{bottom:802.881027pt;}
.y7_c00351{bottom:829.120120pt;}
.y8_c00351{bottom:829.120600pt;}
.y6_c00351{bottom:882.239627pt;}
.y5_c00351{bottom:908.799373pt;}
.y4_c00351{bottom:961.600320pt;}
.y3_c00351{bottom:988.160080pt;}
.y2_c00351{bottom:988.160173pt;}
.y1_c00351{bottom:1014.401373pt;}
.hd_c00351{height:65.171875pt;}
.h9_c00351{height:66.750000pt;}
.h15_c00351{height:68.013021pt;}
.he_c00351{height:68.046875pt;}
.h1_c00351{height:68.701172pt;}
.h12_c00351{height:69.203125pt;}
.h10_c00351{height:69.838542pt;}
.ha_c00351{height:69.875000pt;}
.h11_c00351{height:69.981812pt;}
.h5_c00351{height:70.009766pt;}
.h14_c00351{height:70.546875pt;}
.h7_c00351{height:70.664062pt;}
.h13_c00351{height:71.218750pt;}
.h16_c00351{height:71.318359pt;}
.h8_c00351{height:71.890625pt;}
.h6_c00351{height:71.972656pt;}
.h4_c00351{height:72.473958pt;}
.hb_c00351{height:73.234375pt;}
.hc_c00351{height:73.906250pt;}
.h2_c00351{height:73.935547pt;}
.hf_c00351{height:75.109375pt;}
.h3_c00351{height:75.244141pt;}
.h0_c00351{height:1122.666667pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x8_c00351{left:120.640200pt;}
.x1_c00351{left:121.599613pt;}
.x23_c00351{left:143.679200pt;}
.xf_c00351{left:190.719720pt;}
.x19_c00351{left:214.719720pt;}
.xd_c00351{left:221.438920pt;}
.x1a_c00351{left:228.479067pt;}
.x2_c00351{left:235.519067pt;}
.x3_c00351{left:252.479067pt;}
.xe_c00351{left:261.439453pt;}
.x1e_c00351{left:270.079080pt;}
.x1d_c00351{left:271.038213pt;}
.x10_c00351{left:276.799867pt;}
.x11_c00351{left:304.639200pt;}
.x22_c00351{left:324.799867pt;}
.x12_c00351{left:372.479040pt;}
.x13_c00351{left:397.119187pt;}
.x1f_c00351{left:439.678667pt;}
.x14_c00351{left:444.799840pt;}
.x21_c00351{left:455.359867pt;}
.x20_c00351{left:462.719200pt;}
.x1b_c00351{left:471.039587pt;}
.x15_c00351{left:472.319867pt;}
.x16_c00351{left:489.919840pt;}
.x1c_c00351{left:491.198693pt;}
.xb_c00351{left:509.438920pt;}
.x9_c00351{left:517.439987pt;}
.x17_c00351{left:518.399453pt;}
.xc_c00351{left:523.199707pt;}
.x18_c00351{left:536.318760pt;}
.xa_c00351{left:540.159707pt;}
.x4_c00351{left:550.719720pt;}
.x5_c00351{left:567.999067pt;}
.x6_c00351{left:570.878907pt;}
.x7_c00351{left:590.078693pt;}
.x24_c00351{left:595.199707pt;}
.x25_c00351{left:613.439987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f232ee9c8f91f4836d4e505f.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.364746;font-style:normal;font-weight:normal;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_f13d3897be50c9dea9551dad.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_df27b4eb5262926d3319342b.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.364746;font-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.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173246,0.000000,0.000000,0.250000,0,0);}
.m14_c00352{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.mc_c00352{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m12_c00352{transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c00352{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m11_c00352{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.mb_c00352{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.md_c00352{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);}
.m8_c00352{transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m9_c00352{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls19_c00352{letter-spacing:-15.526500px;}
.lse_c00352{letter-spacing:-9.540300px;}
.ls13_c00352{letter-spacing:-8.914500px;}
.ls12_c00352{letter-spacing:-8.661150px;}
.lsb_c00352{letter-spacing:-8.175038px;}
.ls18_c00352{letter-spacing:-7.426125px;}
.ls16_c00352{letter-spacing:-6.938400px;}
.ls10_c00352{letter-spacing:-6.685875px;}
.ls6_c00352{letter-spacing:-5.945625px;}
.ls7_c00352{letter-spacing:-5.577000px;}
.ls9_c00352{letter-spacing:-5.196713px;}
.lsc_c00352{letter-spacing:-4.456463px;}
.lsa_c00352{letter-spacing:-4.414500px;}
.ls4_c00352{letter-spacing:-3.717000px;}
.ls1_c00352{letter-spacing:-2.968875px;}
.lsf_c00352{letter-spacing:-2.432700px;}
.ls11_c00352{letter-spacing:-2.245620px;}
.ls0_c00352{letter-spacing:-2.229413px;}
.ls14_c00352{letter-spacing:-1.500608px;}
.ls3_c00352{letter-spacing:-1.489163px;}
.ls5_c00352{letter-spacing:-0.740250px;}
.ls2_c00352{letter-spacing:0.000000px;}
.ls15_c00352{letter-spacing:0.740250px;}
.lsd_c00352{letter-spacing:0.795675px;}
.ls17_c00352{letter-spacing:1.870500px;}
.ls8_c00352{letter-spacing:4.445415px;}
.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;}
._9_c00352{margin-left:-18.423310px;}
._1a_c00352{margin-left:-14.711332px;}
._18_c00352{margin-left:-12.443139px;}
._1d_c00352{margin-left:-8.539591px;}
._8_c00352{margin-left:-6.120197px;}
._a_c00352{margin-left:-4.023887px;}
._b_c00352{margin-left:-2.178775px;}
._1c_c00352{margin-left:-1.084061px;}
._c_c00352{width:1.360577px;}
._d_c00352{width:2.649982px;}
._7_c00352{width:3.862925px;}
._4_c00352{width:5.044235px;}
._5_c00352{width:6.520916px;}
._3_c00352{width:7.631395px;}
._6_c00352{width:8.877740px;}
._e_c00352{width:10.341613px;}
._f_c00352{width:11.689947px;}
._17_c00352{width:12.987896px;}
._0_c00352{width:14.255236px;}
._13_c00352{width:15.969088px;}
._1b_c00352{width:17.111543px;}
._19_c00352{width:18.113392px;}
._11_c00352{width:19.952769px;}
._1_c00352{width:21.655552px;}
._2_c00352{width:24.152358px;}
._14_c00352{width:25.218202px;}
._12_c00352{width:27.497762px;}
._15_c00352{width:31.186530px;}
._16_c00352{width:32.820340px;}
._10_c00352{width:46.325846px;}
.fc0_c00352{color:transparent;}
.fsf_c00352{font-size:70.500000px;}
.fs8_c00352{font-size:75.000000px;}
.fsc_c00352{font-size:75.750000px;}
.fs3_c00352{font-size:76.500000px;}
.fs5_c00352{font-size:77.250000px;}
.fs9_c00352{font-size:78.000000px;}
.fs0_c00352{font-size:78.750000px;}
.fs2_c00352{font-size:80.250000px;}
.fs4_c00352{font-size:81.750000px;}
.fs1_c00352{font-size:82.500000px;}
.fs6_c00352{font-size:84.750000px;}
.fsa_c00352{font-size:85.500000px;}
.fse_c00352{font-size:87.000000px;}
.fsd_c00352{font-size:88.500000px;}
.fsb_c00352{font-size:101.250000px;}
.fs7_c00352{font-size:115.500000px;}
.y0_c00352{bottom:0.000000px;}
.y31_c00352{bottom:180.720750px;}
.y30_c00352{bottom:180.722115px;}
.y2f_c00352{bottom:210.601845px;}
.y2e_c00352{bottom:240.121380px;}
.y2d_c00352{bottom:269.640900px;}
.y2b_c00352{bottom:299.160090px;}
.y2c_c00352{bottom:299.160435px;}
.y2a_c00352{bottom:328.679625px;}
.y29_c00352{bottom:387.720495px;}
.y28_c00352{bottom:417.600225px;}
.y26_c00352{bottom:447.839580px;}
.y27_c00352{bottom:447.840135px;}
.y25_c00352{bottom:478.079505px;}
.y23_c00352{bottom:508.321245px;}
.y24_c00352{bottom:508.321515px;}
.y22_c00352{bottom:537.480285px;}
.y21_c00352{bottom:537.480465px;}
.y1f_c00352{bottom:566.999400px;}
.y20_c00352{bottom:567.000000px;}
.y1e_c00352{bottom:596.160555px;}
.y1c_c00352{bottom:655.919925px;}
.y1d_c00352{bottom:655.920000px;}
.y1b_c00352{bottom:677.160855px;}
.y1a_c00352{bottom:698.760135px;}
.y19_c00352{bottom:698.760930px;}
.y18_c00352{bottom:719.641335px;}
.y17_c00352{bottom:719.641590px;}
.y16_c00352{bottom:741.240870px;}
.y15_c00352{bottom:741.241815px;}
.y14_c00352{bottom:762.120435px;}
.y13_c00352{bottom:762.120945px;}
.y12_c00352{bottom:783.361845px;}
.y11_c00352{bottom:843.121290px;}
.yf_c00352{bottom:873.000960px;}
.y10_c00352{bottom:873.001005px;}
.ye_c00352{bottom:903.240870px;}
.yd_c00352{bottom:903.242700px;}
.yc_c00352{bottom:932.762235px;}
.yb_c00352{bottom:963.002145px;}
.ya_c00352{bottom:991.801005px;}
.y9_c00352{bottom:1021.680720px;}
.y8_c00352{bottom:1021.680915px;}
.y6_c00352{bottom:1051.200390px;}
.y7_c00352{bottom:1051.200435px;}
.y5_c00352{bottom:1081.440315px;}
.y4_c00352{bottom:1081.441110px;}
.y3_c00352{bottom:1111.320825px;}
.y2_c00352{bottom:1111.321020px;}
.y1_c00352{bottom:1140.840540px;}
.h12_c00352{height:73.529297px;}
.hf_c00352{height:74.344482px;}
.h5_c00352{height:75.080566px;}
.h7_c00352{height:75.816650px;}
.hc_c00352{height:76.552734px;}
.h1_c00352{height:77.288818px;}
.hb_c00352{height:78.222656px;}
.h4_c00352{height:78.760986px;}
.ha_c00352{height:79.787109px;}
.h6_c00352{height:80.233154px;}
.h2_c00352{height:80.969238px;}
.h3_c00352{height:81.533203px;}
.h8_c00352{height:83.177490px;}
.hd_c00352{height:84.498047px;}
.h11_c00352{height:85.385742px;}
.h10_c00352{height:87.462891px;}
.he_c00352{height:105.600586px;}
.h9_c00352{height:120.462891px;}
.h0_c00352{height:1263.000000px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.xf_c00352{left:140.038785px;}
.x1_c00352{left:141.118815px;}
.x4_c00352{left:142.916655px;}
.x10_c00352{left:168.838950px;}
.x19_c00352{left:194.040705px;}
.x18_c00352{left:195.479415px;}
.x11_c00352{left:216.000000px;}
.x14_c00352{left:252.719535px;}
.x36_c00352{left:262.439250px;}
.xd_c00352{left:268.198785px;}
.x15_c00352{left:269.639100px;}
.x1f_c00352{left:275.759535px;}
.x37_c00352{left:278.279250px;}
.xe_c00352{left:281.878350px;}
.x32_c00352{left:282.959400px;}
.x12_c00352{left:285.838515px;}
.x20_c00352{left:287.998950px;}
.x33_c00352{left:299.519685px;}
.x1a_c00352{left:316.080000px;}
.x13_c00352{left:322.918950px;}
.x1d_c00352{left:324.718500px;}
.x1e_c00352{left:339.479235px;}
.x1b_c00352{left:343.439235px;}
.x2_c00352{left:363.598530px;}
.x3_c00352{left:381.239850px;}
.x2a_c00352{left:393.479235px;}
.x2b_c00352{left:399.599670px;}
.x9_c00352{left:404.279850px;}
.x2c_c00352{left:419.038920px;}
.xa_c00352{left:423.719100px;}
.x5_c00352{left:424.798515px;}
.x2f_c00352{left:425.879520px;}
.x25_c00352{left:432.718500px;}
.x34_c00352{left:435.958335px;}
.x26_c00352{left:443.519070px;}
.x6_c00352{left:446.038920px;}
.x3b_c00352{left:449.998950px;}
.x35_c00352{left:463.678530px;}
.x38_c00352{left:464.759535px;}
.x27_c00352{left:469.798920px;}
.x21_c00352{left:484.198785px;}
.x3e_c00352{left:489.239820px;}
.xb_c00352{left:492.118785px;}
.x22_c00352{left:500.399820px;}
.xc_c00352{left:511.918950px;}
.x3f_c00352{left:513.359250px;}
.x2d_c00352{left:579.239220px;}
.x2e_c00352{left:595.079400px;}
.x30_c00352{left:614.159370px;}
.x7_c00352{left:627.838950px;}
.x31_c00352{left:629.638545px;}
.x8_c00352{left:643.319820px;}
.x1c_c00352{left:648.359250px;}
.x23_c00352{left:654.838950px;}
.x24_c00352{left:670.679070px;}
.x39_c00352{left:710.999400px;}
.x3c_c00352{left:722.518620px;}
.x28_c00352{left:724.319820px;}
.x3a_c00352{left:736.559100px;}
.x3d_c00352{left:743.038920px;}
.x29_c00352{left:745.199385px;}
.x16_c00352{left:751.319820px;}
.x17_c00352{left:767.159820px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls19_c00352{letter-spacing:-13.801333pt;}
.lse_c00352{letter-spacing:-8.480267pt;}
.ls13_c00352{letter-spacing:-7.924000pt;}
.ls12_c00352{letter-spacing:-7.698800pt;}
.lsb_c00352{letter-spacing:-7.266700pt;}
.ls18_c00352{letter-spacing:-6.601000pt;}
.ls16_c00352{letter-spacing:-6.167467pt;}
.ls10_c00352{letter-spacing:-5.943000pt;}
.ls6_c00352{letter-spacing:-5.285000pt;}
.ls7_c00352{letter-spacing:-4.957333pt;}
.ls9_c00352{letter-spacing:-4.619300pt;}
.lsc_c00352{letter-spacing:-3.961300pt;}
.lsa_c00352{letter-spacing:-3.924000pt;}
.ls4_c00352{letter-spacing:-3.304000pt;}
.ls1_c00352{letter-spacing:-2.639000pt;}
.lsf_c00352{letter-spacing:-2.162400pt;}
.ls11_c00352{letter-spacing:-1.996107pt;}
.ls0_c00352{letter-spacing:-1.981700pt;}
.ls14_c00352{letter-spacing:-1.333873pt;}
.ls3_c00352{letter-spacing:-1.323700pt;}
.ls5_c00352{letter-spacing:-0.658000pt;}
.ls2_c00352{letter-spacing:0.000000pt;}
.ls15_c00352{letter-spacing:0.658000pt;}
.lsd_c00352{letter-spacing:0.707267pt;}
.ls17_c00352{letter-spacing:1.662667pt;}
.ls8_c00352{letter-spacing:3.951480pt;}
.ws0_c00352{word-spacing:0.000000pt;}
._9_c00352{margin-left:-16.376275pt;}
._1a_c00352{margin-left:-13.076740pt;}
._18_c00352{margin-left:-11.060568pt;}
._1d_c00352{margin-left:-7.590747pt;}
._8_c00352{margin-left:-5.440175pt;}
._a_c00352{margin-left:-3.576789pt;}
._b_c00352{margin-left:-1.936689pt;}
._1c_c00352{margin-left:-0.963609pt;}
._c_c00352{width:1.209402pt;}
._d_c00352{width:2.355540pt;}
._7_c00352{width:3.433711pt;}
._4_c00352{width:4.483764pt;}
._5_c00352{width:5.796370pt;}
._3_c00352{width:6.783462pt;}
._6_c00352{width:7.891325pt;}
._e_c00352{width:9.192545pt;}
._f_c00352{width:10.391064pt;}
._17_c00352{width:11.544796pt;}
._0_c00352{width:12.671321pt;}
._13_c00352{width:14.194745pt;}
._1b_c00352{width:15.210260pt;}
._19_c00352{width:16.100792pt;}
._11_c00352{width:17.735794pt;}
._1_c00352{width:19.249379pt;}
._2_c00352{width:21.468762pt;}
._14_c00352{width:22.416179pt;}
._12_c00352{width:24.442455pt;}
._15_c00352{width:27.721360pt;}
._16_c00352{width:29.173636pt;}
._10_c00352{width:41.178530pt;}
.fsf_c00352{font-size:62.666667pt;}
.fs8_c00352{font-size:66.666667pt;}
.fsc_c00352{font-size:67.333333pt;}
.fs3_c00352{font-size:68.000000pt;}
.fs5_c00352{font-size:68.666667pt;}
.fs9_c00352{font-size:69.333333pt;}
.fs0_c00352{font-size:70.000000pt;}
.fs2_c00352{font-size:71.333333pt;}
.fs4_c00352{font-size:72.666667pt;}
.fs1_c00352{font-size:73.333333pt;}
.fs6_c00352{font-size:75.333333pt;}
.fsa_c00352{font-size:76.000000pt;}
.fse_c00352{font-size:77.333333pt;}
.fsd_c00352{font-size:78.666667pt;}
.fsb_c00352{font-size:90.000000pt;}
.fs7_c00352{font-size:102.666667pt;}
.y0_c00352{bottom:0.000000pt;}
.y31_c00352{bottom:160.640667pt;}
.y30_c00352{bottom:160.641880pt;}
.y2f_c00352{bottom:187.201640pt;}
.y2e_c00352{bottom:213.441227pt;}
.y2d_c00352{bottom:239.680800pt;}
.y2b_c00352{bottom:265.920080pt;}
.y2c_c00352{bottom:265.920387pt;}
.y2a_c00352{bottom:292.159667pt;}
.y29_c00352{bottom:344.640440pt;}
.y28_c00352{bottom:371.200200pt;}
.y26_c00352{bottom:398.079627pt;}
.y27_c00352{bottom:398.080120pt;}
.y25_c00352{bottom:424.959560pt;}
.y23_c00352{bottom:451.841107pt;}
.y24_c00352{bottom:451.841347pt;}
.y22_c00352{bottom:477.760253pt;}
.y21_c00352{bottom:477.760413pt;}
.y1f_c00352{bottom:503.999467pt;}
.y20_c00352{bottom:504.000000pt;}
.y1e_c00352{bottom:529.920493pt;}
.y1c_c00352{bottom:583.039933pt;}
.y1d_c00352{bottom:583.040000pt;}
.y1b_c00352{bottom:601.920760pt;}
.y1a_c00352{bottom:621.120120pt;}
.y19_c00352{bottom:621.120827pt;}
.y18_c00352{bottom:639.681187pt;}
.y17_c00352{bottom:639.681413pt;}
.y16_c00352{bottom:658.880773pt;}
.y15_c00352{bottom:658.881613pt;}
.y14_c00352{bottom:677.440387pt;}
.y13_c00352{bottom:677.440840pt;}
.y12_c00352{bottom:696.321640pt;}
.y11_c00352{bottom:749.441147pt;}
.yf_c00352{bottom:776.000853pt;}
.y10_c00352{bottom:776.000893pt;}
.ye_c00352{bottom:802.880773pt;}
.yd_c00352{bottom:802.882400pt;}
.yc_c00352{bottom:829.121987pt;}
.yb_c00352{bottom:856.001907pt;}
.ya_c00352{bottom:881.600893pt;}
.y9_c00352{bottom:908.160640pt;}
.y8_c00352{bottom:908.160813pt;}
.y6_c00352{bottom:934.400347pt;}
.y7_c00352{bottom:934.400387pt;}
.y5_c00352{bottom:961.280280pt;}
.y4_c00352{bottom:961.280987pt;}
.y3_c00352{bottom:987.840733pt;}
.y2_c00352{bottom:987.840907pt;}
.y1_c00352{bottom:1014.080480pt;}
.h12_c00352{height:65.359375pt;}
.hf_c00352{height:66.083984pt;}
.h5_c00352{height:66.738281pt;}
.h7_c00352{height:67.392578pt;}
.hc_c00352{height:68.046875pt;}
.h1_c00352{height:68.701172pt;}
.hb_c00352{height:69.531250pt;}
.h4_c00352{height:70.009766pt;}
.ha_c00352{height:70.921875pt;}
.h6_c00352{height:71.318359pt;}
.h2_c00352{height:71.972656pt;}
.h3_c00352{height:72.473958pt;}
.h8_c00352{height:73.935547pt;}
.hd_c00352{height:75.109375pt;}
.h11_c00352{height:75.898438pt;}
.h10_c00352{height:77.744792pt;}
.he_c00352{height:93.867188pt;}
.h9_c00352{height:107.078125pt;}
.h0_c00352{height:1122.666667pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.xf_c00352{left:124.478920pt;}
.x1_c00352{left:125.438947pt;}
.x4_c00352{left:127.037027pt;}
.x10_c00352{left:150.079067pt;}
.x19_c00352{left:172.480627pt;}
.x18_c00352{left:173.759480pt;}
.x11_c00352{left:192.000000pt;}
.x14_c00352{left:224.639587pt;}
.x36_c00352{left:233.279333pt;}
.xd_c00352{left:238.398920pt;}
.x15_c00352{left:239.679200pt;}
.x1f_c00352{left:245.119587pt;}
.x37_c00352{left:247.359333pt;}
.xe_c00352{left:250.558533pt;}
.x32_c00352{left:251.519467pt;}
.x12_c00352{left:254.078680pt;}
.x20_c00352{left:255.999067pt;}
.x33_c00352{left:266.239720pt;}
.x1a_c00352{left:280.960000pt;}
.x13_c00352{left:287.039067pt;}
.x1d_c00352{left:288.638667pt;}
.x1e_c00352{left:301.759320pt;}
.x1b_c00352{left:305.279320pt;}
.x2_c00352{left:323.198693pt;}
.x3_c00352{left:338.879867pt;}
.x2a_c00352{left:349.759320pt;}
.x2b_c00352{left:355.199707pt;}
.x9_c00352{left:359.359867pt;}
.x2c_c00352{left:372.479040pt;}
.xa_c00352{left:376.639200pt;}
.x5_c00352{left:377.598680pt;}
.x2f_c00352{left:378.559573pt;}
.x25_c00352{left:384.638667pt;}
.x34_c00352{left:387.518520pt;}
.x26_c00352{left:394.239173pt;}
.x6_c00352{left:396.479040pt;}
.x3b_c00352{left:399.999067pt;}
.x35_c00352{left:412.158693pt;}
.x38_c00352{left:413.119587pt;}
.x27_c00352{left:417.599040pt;}
.x21_c00352{left:430.398920pt;}
.x3e_c00352{left:434.879840pt;}
.xb_c00352{left:437.438920pt;}
.x22_c00352{left:444.799840pt;}
.xc_c00352{left:455.039067pt;}
.x3f_c00352{left:456.319333pt;}
.x2d_c00352{left:514.879307pt;}
.x2e_c00352{left:528.959467pt;}
.x30_c00352{left:545.919440pt;}
.x7_c00352{left:558.079067pt;}
.x31_c00352{left:559.678707pt;}
.x8_c00352{left:571.839840pt;}
.x1c_c00352{left:576.319333pt;}
.x23_c00352{left:582.079067pt;}
.x24_c00352{left:596.159173pt;}
.x39_c00352{left:631.999467pt;}
.x3c_c00352{left:642.238773pt;}
.x28_c00352{left:643.839840pt;}
.x3a_c00352{left:654.719200pt;}
.x3d_c00352{left:660.479040pt;}
.x29_c00352{left:662.399453pt;}
.x16_c00352{left:667.839840pt;}
.x17_c00352{left:681.919840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bf9be235a24ed75a39c1ecd.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_facfdb46f9943c7ec8a019a3.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.364746;font-style:normal;font-weight:normal;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_0a4ffa6b528a378ca716e96b.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00353{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.201681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201681,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.221491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221491,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{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_c00353{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.me_c00353{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);}
.m16_c00353{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls1_c00353{letter-spacing:-7.576538px;}
.lse_c00353{letter-spacing:-6.811875px;}
.lsb_c00353{letter-spacing:-6.055875px;}
.lsc_c00353{letter-spacing:-5.894175px;}
.ls5_c00353{letter-spacing:-5.300663px;}
.lsa_c00353{letter-spacing:-4.543088px;}
.ls12_c00353{letter-spacing:-4.333500px;}
.lsf_c00353{letter-spacing:-3.823875px;}
.ls8_c00353{letter-spacing:-3.787875px;}
.ls13_c00353{letter-spacing:-3.210900px;}
.ls7_c00353{letter-spacing:-3.031875px;}
.ls9_c00353{letter-spacing:-2.564100px;}
.ls6_c00353{letter-spacing:-2.267213px;}
.ls11_c00353{letter-spacing:-1.619468px;}
.ls0_c00353{letter-spacing:-1.512000px;}
.ls2_c00353{letter-spacing:-0.929093px;}
.ls3_c00353{letter-spacing:-0.756000px;}
.ls4_c00353{letter-spacing:0.000000px;}
.lsd_c00353{letter-spacing:0.854700px;}
.ls10_c00353{letter-spacing:1.512000px;}
.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:0.000000px;}
._15_c00353{margin-left:-14.149255px;}
._1a_c00353{margin-left:-9.903055px;}
._5_c00353{margin-left:-8.394508px;}
._3_c00353{margin-left:-7.331140px;}
._14_c00353{margin-left:-5.863119px;}
._2_c00353{margin-left:-4.528367px;}
._10_c00353{margin-left:-2.361046px;}
._0_c00353{margin-left:-1.079178px;}
._6_c00353{width:1.881822px;}
._7_c00353{width:3.559561px;}
._8_c00353{width:5.047936px;}
._f_c00353{width:6.979249px;}
._9_c00353{width:7.985250px;}
._4_c00353{width:9.147055px;}
._a_c00353{width:10.233926px;}
._d_c00353{width:11.881618px;}
._c_c00353{width:13.704257px;}
._18_c00353{width:14.851705px;}
._e_c00353{width:15.894537px;}
._1_c00353{width:17.335540px;}
._b_c00353{width:20.042723px;}
._13_c00353{width:21.377051px;}
._11_c00353{width:22.411947px;}
._12_c00353{width:24.278383px;}
._17_c00353{width:25.479078px;}
._1c_c00353{width:26.847329px;}
._16_c00353{width:30.067174px;}
._1b_c00353{width:33.599960px;}
._19_c00353{width:37.692294px;}
.fc0_c00353{color:transparent;}
.fs9_c00353{font-size:75.000000px;}
.fsa_c00353{font-size:77.250000px;}
.fse_c00353{font-size:78.000000px;}
.fs0_c00353{font-size:78.750000px;}
.fs4_c00353{font-size:79.500000px;}
.fs8_c00353{font-size:80.250000px;}
.fs7_c00353{font-size:81.750000px;}
.fs5_c00353{font-size:82.500000px;}
.fs6_c00353{font-size:84.000000px;}
.fsc_c00353{font-size:84.750000px;}
.fsd_c00353{font-size:85.500000px;}
.fs1_c00353{font-size:89.250000px;}
.fsb_c00353{font-size:101.250000px;}
.fs2_c00353{font-size:115.500000px;}
.fs3_c00353{font-size:129.750000px;}
.y0_c00353{bottom:0.000000px;}
.y2a_c00353{bottom:374.760135px;}
.y29_c00353{bottom:374.760240px;}
.y28_c00353{bottom:395.999040px;}
.y27_c00353{bottom:438.838950px;}
.y26_c00353{bottom:438.839880px;}
.y25_c00353{bottom:459.718500px;}
.y24_c00353{bottom:459.718740px;}
.y23_c00353{bottom:481.319820px;}
.y22_c00353{bottom:481.319850px;}
.y20_c00353{bottom:502.557135px;}
.y21_c00353{bottom:502.558635px;}
.y1f_c00353{bottom:545.038950px;}
.y1e_c00353{bottom:566.279850px;}
.y1d_c00353{bottom:566.280240px;}
.y1c_c00353{bottom:587.519025px;}
.y1b_c00353{bottom:629.638545px;}
.y1a_c00353{bottom:629.639670px;}
.y19_c00353{bottom:651.240765px;}
.y18_c00353{bottom:672.119385px;}
.y17_c00353{bottom:672.120135px;}
.y16_c00353{bottom:693.719415px;}
.y15_c00353{bottom:735.838950px;}
.y14_c00353{bottom:735.839340px;}
.y13_c00353{bottom:757.438620px;}
.y12_c00353{bottom:757.438845px;}
.y11_c00353{bottom:800.278755px;}
.yf_c00353{bottom:821.518185px;}
.y10_c00353{bottom:821.519070px;}
.ye_c00353{bottom:864.000000px;}
.yc_c00353{bottom:885.237690px;}
.yd_c00353{bottom:885.238770px;}
.yb_c00353{bottom:906.478620px;}
.ya_c00353{bottom:927.719520px;}
.y9_c00353{bottom:927.719895px;}
.y8_c00353{bottom:949.319190px;}
.y7_c00353{bottom:949.320390px;}
.y6_c00353{bottom:970.919700px;}
.y5_c00353{bottom:991.800105px;}
.y4_c00353{bottom:991.800780px;}
.y3_c00353{bottom:1050.839535px;}
.y2_c00353{bottom:1110.240600px;}
.y1_c00353{bottom:1140.838905px;}
.hc_c00353{height:75.816650px;}
.h10_c00353{height:76.552734px;}
.h1_c00353{height:77.288818px;}
.h5_c00353{height:78.024902px;}
.hb_c00353{height:78.222656px;}
.ha_c00353{height:78.760986px;}
.h9_c00353{height:80.233154px;}
.h7_c00353{height:80.969238px;}
.h6_c00353{height:82.133789px;}
.he_c00353{height:83.177490px;}
.hf_c00353{height:83.913574px;}
.h8_c00353{height:87.609375px;}
.h2_c00353{height:88.204102px;}
.hd_c00353{height:105.600586px;}
.h3_c00353{height:120.462891px;}
.h4_c00353{height:135.325195px;}
.h0_c00353{height:1263.000000px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:141.838950px;}
.x9_c00353{left:195.838350px;}
.x4_c00353{left:196.922190px;}
.xc_c00353{left:254.519100px;}
.x31_c00353{left:255.959400px;}
.x5_c00353{left:259.199385px;}
.xd_c00353{left:269.279850px;}
.x2f_c00353{left:270.718500px;}
.x6_c00353{left:273.239850px;}
.x7_c00353{left:279.358635px;}
.x30_c00353{left:286.558635px;}
.x2_c00353{left:290.159385px;}
.x8_c00353{left:292.319850px;}
.x15_c00353{left:299.158785px;}
.xa_c00353{left:304.199850px;}
.x25_c00353{left:311.759100px;}
.x3_c00353{left:316.080000px;}
.xb_c00353{left:319.319850px;}
.x26_c00353{left:337.318800px;}
.x10_c00353{left:348.119385px;}
.x11_c00353{left:363.959385px;}
.x18_c00353{left:369.359850px;}
.x19_c00353{left:375.839535px;}
.x27_c00353{left:385.918350px;}
.x28_c00353{left:402.119385px;}
.x29_c00353{left:417.959385px;}
.x32_c00353{left:432.359250px;}
.x33_c00353{left:438.118785px;}
.x34_c00353{left:451.798515px;}
.x2a_c00353{left:476.998950px;}
.x2b_c00353{left:493.199850px;}
.x13_c00353{left:509.399235px;}
.x2c_c00353{left:536.039985px;}
.x14_c00353{left:546.118785px;}
.x1f_c00353{left:561.599670px;}
.x2d_c00353{left:570.599070px;}
.x20_c00353{left:590.399235px;}
.x21_c00353{left:608.038920px;}
.x1d_c00353{left:618.119385px;}
.x1e_c00353{left:632.159820px;}
.x22_c00353{left:637.919535px;}
.x23_c00353{left:643.679070px;}
.x16_c00353{left:651.239820px;}
.x24_c00353{left:656.638545px;}
.x17_c00353{left:664.558635px;}
.x2e_c00353{left:669.238770px;}
.x1a_c00353{left:683.999400px;}
.x1b_c00353{left:690.479235px;}
.x1c_c00353{left:701.639100px;}
.x12_c00353{left:762.838950px;}
.xe_c00353{left:768.239220px;}
.xf_c00353{left:774.359805px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls1_c00353{letter-spacing:-6.734700pt;}
.lse_c00353{letter-spacing:-6.055000pt;}
.lsb_c00353{letter-spacing:-5.383000pt;}
.lsc_c00353{letter-spacing:-5.239267pt;}
.ls5_c00353{letter-spacing:-4.711700pt;}
.lsa_c00353{letter-spacing:-4.038300pt;}
.ls12_c00353{letter-spacing:-3.852000pt;}
.lsf_c00353{letter-spacing:-3.399000pt;}
.ls8_c00353{letter-spacing:-3.367000pt;}
.ls13_c00353{letter-spacing:-2.854133pt;}
.ls7_c00353{letter-spacing:-2.695000pt;}
.ls9_c00353{letter-spacing:-2.279200pt;}
.ls6_c00353{letter-spacing:-2.015300pt;}
.ls11_c00353{letter-spacing:-1.439527pt;}
.ls0_c00353{letter-spacing:-1.344000pt;}
.ls2_c00353{letter-spacing:-0.825860pt;}
.ls3_c00353{letter-spacing:-0.672000pt;}
.ls4_c00353{letter-spacing:0.000000pt;}
.lsd_c00353{letter-spacing:0.759733pt;}
.ls10_c00353{letter-spacing:1.344000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
._15_c00353{margin-left:-12.577115pt;}
._1a_c00353{margin-left:-8.802715pt;}
._5_c00353{margin-left:-7.461785pt;}
._3_c00353{margin-left:-6.516569pt;}
._14_c00353{margin-left:-5.211662pt;}
._2_c00353{margin-left:-4.025215pt;}
._10_c00353{margin-left:-2.098708pt;}
._0_c00353{margin-left:-0.959269pt;}
._6_c00353{width:1.672731pt;}
._7_c00353{width:3.164054pt;}
._8_c00353{width:4.487054pt;}
._f_c00353{width:6.203777pt;}
._9_c00353{width:7.098000pt;}
._4_c00353{width:8.130715pt;}
._a_c00353{width:9.096823pt;}
._d_c00353{width:10.561438pt;}
._c_c00353{width:12.181562pt;}
._18_c00353{width:13.201515pt;}
._e_c00353{width:14.128477pt;}
._1_c00353{width:15.409369pt;}
._b_c00353{width:17.815754pt;}
._13_c00353{width:19.001823pt;}
._11_c00353{width:19.921731pt;}
._12_c00353{width:21.580785pt;}
._17_c00353{width:22.648069pt;}
._1c_c00353{width:23.864292pt;}
._16_c00353{width:26.726377pt;}
._1b_c00353{width:29.866631pt;}
._19_c00353{width:33.504262pt;}
.fs9_c00353{font-size:66.666667pt;}
.fsa_c00353{font-size:68.666667pt;}
.fse_c00353{font-size:69.333333pt;}
.fs0_c00353{font-size:70.000000pt;}
.fs4_c00353{font-size:70.666667pt;}
.fs8_c00353{font-size:71.333333pt;}
.fs7_c00353{font-size:72.666667pt;}
.fs5_c00353{font-size:73.333333pt;}
.fs6_c00353{font-size:74.666667pt;}
.fsc_c00353{font-size:75.333333pt;}
.fsd_c00353{font-size:76.000000pt;}
.fs1_c00353{font-size:79.333333pt;}
.fsb_c00353{font-size:90.000000pt;}
.fs2_c00353{font-size:102.666667pt;}
.fs3_c00353{font-size:115.333333pt;}
.y0_c00353{bottom:0.000000pt;}
.y2a_c00353{bottom:333.120120pt;}
.y29_c00353{bottom:333.120213pt;}
.y28_c00353{bottom:351.999147pt;}
.y27_c00353{bottom:390.079067pt;}
.y26_c00353{bottom:390.079893pt;}
.y25_c00353{bottom:408.638667pt;}
.y24_c00353{bottom:408.638880pt;}
.y23_c00353{bottom:427.839840pt;}
.y22_c00353{bottom:427.839867pt;}
.y20_c00353{bottom:446.717453pt;}
.y21_c00353{bottom:446.718787pt;}
.y1f_c00353{bottom:484.479067pt;}
.y1e_c00353{bottom:503.359867pt;}
.y1d_c00353{bottom:503.360213pt;}
.y1c_c00353{bottom:522.239133pt;}
.y1b_c00353{bottom:559.678707pt;}
.y1a_c00353{bottom:559.679707pt;}
.y19_c00353{bottom:578.880680pt;}
.y18_c00353{bottom:597.439453pt;}
.y17_c00353{bottom:597.440120pt;}
.y16_c00353{bottom:616.639480pt;}
.y15_c00353{bottom:654.079067pt;}
.y14_c00353{bottom:654.079413pt;}
.y13_c00353{bottom:673.278773pt;}
.y12_c00353{bottom:673.278973pt;}
.y11_c00353{bottom:711.358893pt;}
.yf_c00353{bottom:730.238387pt;}
.y10_c00353{bottom:730.239173pt;}
.ye_c00353{bottom:768.000000pt;}
.yc_c00353{bottom:786.877947pt;}
.yd_c00353{bottom:786.878907pt;}
.yb_c00353{bottom:805.758773pt;}
.ya_c00353{bottom:824.639573pt;}
.y9_c00353{bottom:824.639907pt;}
.y8_c00353{bottom:843.839280pt;}
.y7_c00353{bottom:843.840347pt;}
.y6_c00353{bottom:863.039733pt;}
.y5_c00353{bottom:881.600093pt;}
.y4_c00353{bottom:881.600693pt;}
.y3_c00353{bottom:934.079587pt;}
.y2_c00353{bottom:986.880533pt;}
.y1_c00353{bottom:1014.079027pt;}
.hc_c00353{height:67.392578pt;}
.h10_c00353{height:68.046875pt;}
.h1_c00353{height:68.701172pt;}
.h5_c00353{height:69.355469pt;}
.hb_c00353{height:69.531250pt;}
.ha_c00353{height:70.009766pt;}
.h9_c00353{height:71.318359pt;}
.h7_c00353{height:71.972656pt;}
.h6_c00353{height:73.007812pt;}
.he_c00353{height:73.935547pt;}
.hf_c00353{height:74.589844pt;}
.h8_c00353{height:77.875000pt;}
.h2_c00353{height:78.403646pt;}
.hd_c00353{height:93.867188pt;}
.h3_c00353{height:107.078125pt;}
.h4_c00353{height:120.289062pt;}
.h0_c00353{height:1122.666667pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:126.079067pt;}
.x9_c00353{left:174.078533pt;}
.x4_c00353{left:175.041947pt;}
.xc_c00353{left:226.239200pt;}
.x31_c00353{left:227.519467pt;}
.x5_c00353{left:230.399453pt;}
.xd_c00353{left:239.359867pt;}
.x2f_c00353{left:240.638667pt;}
.x6_c00353{left:242.879867pt;}
.x7_c00353{left:248.318787pt;}
.x30_c00353{left:254.718787pt;}
.x2_c00353{left:257.919453pt;}
.x8_c00353{left:259.839867pt;}
.x15_c00353{left:265.918920pt;}
.xa_c00353{left:270.399867pt;}
.x25_c00353{left:277.119200pt;}
.x3_c00353{left:280.960000pt;}
.xb_c00353{left:283.839867pt;}
.x26_c00353{left:299.838933pt;}
.x10_c00353{left:309.439453pt;}
.x11_c00353{left:323.519453pt;}
.x18_c00353{left:328.319867pt;}
.x19_c00353{left:334.079587pt;}
.x27_c00353{left:343.038533pt;}
.x28_c00353{left:357.439453pt;}
.x29_c00353{left:371.519453pt;}
.x32_c00353{left:384.319333pt;}
.x33_c00353{left:389.438920pt;}
.x34_c00353{left:401.598680pt;}
.x2a_c00353{left:423.999067pt;}
.x2b_c00353{left:438.399867pt;}
.x13_c00353{left:452.799320pt;}
.x2c_c00353{left:476.479987pt;}
.x14_c00353{left:485.438920pt;}
.x1f_c00353{left:499.199707pt;}
.x2d_c00353{left:507.199173pt;}
.x20_c00353{left:524.799320pt;}
.x21_c00353{left:540.479040pt;}
.x1d_c00353{left:549.439453pt;}
.x1e_c00353{left:561.919840pt;}
.x22_c00353{left:567.039587pt;}
.x23_c00353{left:572.159173pt;}
.x16_c00353{left:578.879840pt;}
.x24_c00353{left:583.678707pt;}
.x17_c00353{left:590.718787pt;}
.x2e_c00353{left:594.878907pt;}
.x1a_c00353{left:607.999467pt;}
.x1b_c00353{left:613.759320pt;}
.x1c_c00353{left:623.679200pt;}
.x12_c00353{left:678.079067pt;}
.xe_c00353{left:682.879307pt;}
.xf_c00353{left:688.319827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_877a19cb9c7f7063360de011.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_0d7197bb177919fe2c93e5fe.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_13164bc2a3dfa8f1ae474644.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_9ee734e950ffb02a1e01aaf3.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_4fce4aa15c5d18b3110b4a8b.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff6_c00354{font-family:ff6_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;}
.m13_c00354{transform:matrix(0.027885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027885,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.042308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042308,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.077731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077731,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.084302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084302,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.102778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102778,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.104762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104762,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.118812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118812,0.000000,0.000000,0.250000,0,0);}
.m24_c00354{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);}
.m16_c00354{transform:matrix(0.126506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126506,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.139154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139154,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.146341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146341,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.149123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149123,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151235,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m1f_c00354{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173611,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.189759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189759,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.190104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190104,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.201014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201014,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.242187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242187,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.245739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245739,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m8_c00354{transform:matrix(0.360119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360119,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{transform:matrix(0.506645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506645,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.521605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521605,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.793478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793478,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967391,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(2.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.291667,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(4.744566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.744566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.744566,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:1.446060px;}
.ls21_c00354{letter-spacing:-26.845875px;}
.ls1e_c00354{letter-spacing:-23.319975px;}
.ls10_c00354{letter-spacing:-22.888800px;}
.ls14_c00354{letter-spacing:-18.750000px;}
.ls9_c00354{letter-spacing:-7.269750px;}
.ls15_c00354{letter-spacing:-5.190750px;}
.lsd_c00354{letter-spacing:-5.122950px;}
.ls17_c00354{letter-spacing:-4.347000px;}
.lse_c00354{letter-spacing:-2.609348px;}
.ls16_c00354{letter-spacing:-2.079675px;}
.ls1d_c00354{letter-spacing:-1.310400px;}
.lsa_c00354{letter-spacing:0.000000px;}
.ls1c_c00354{letter-spacing:0.472650px;}
.ls3_c00354{letter-spacing:1.039500px;}
.ls1b_c00354{letter-spacing:1.239300px;}
.ls13_c00354{letter-spacing:1.972800px;}
.ls5_c00354{letter-spacing:2.079675px;}
.ls1f_c00354{letter-spacing:2.478600px;}
.lsb_c00354{letter-spacing:2.963723px;}
.ls18_c00354{letter-spacing:3.118500px;}
.ls24_c00354{letter-spacing:3.582750px;}
.ls1_c00354{letter-spacing:3.717900px;}
.ls0_c00354{letter-spacing:4.150575px;}
.ls23_c00354{letter-spacing:4.320000px;}
.ls7_c00354{letter-spacing:4.957200px;}
.ls2_c00354{letter-spacing:5.190750px;}
.ls6_c00354{letter-spacing:6.197108px;}
.lsf_c00354{letter-spacing:6.230250px;}
.ls22_c00354{letter-spacing:7.269750px;}
.ls20_c00354{letter-spacing:7.441875px;}
.ls4_c00354{letter-spacing:8.308575px;}
.lsc_c00354{letter-spacing:10.380825px;}
.ls25_c00354{letter-spacing:13.638375px;}
.ls11_c00354{letter-spacing:14.538825px;}
.ls12_c00354{letter-spacing:26.030970px;}
.ls1a_c00354{letter-spacing:189.691875px;}
.ls8_c00354{letter-spacing:226.859400px;}
.ls19_c00354{letter-spacing:234.318825px;}
.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;}
._9_c00354{margin-left:-31.205354px;}
._8_c00354{margin-left:-10.779646px;}
._1_c00354{width:4.272553px;}
._a_c00354{width:16.591666px;}
._2_c00354{width:19.048749px;}
._6_c00354{width:22.549767px;}
._4_c00354{width:24.540705px;}
._3_c00354{width:28.896958px;}
._7_c00354{width:30.840605px;}
._0_c00354{width:35.140105px;}
._c_c00354{width:82.957791px;}
._b_c00354{width:107.250958px;}
._5_c00354{width:132.915148px;}
._e_c00354{width:175.289996px;}
._f_c00354{width:181.593404px;}
._11_c00354{width:183.969349px;}
._10_c00354{width:204.032780px;}
._12_c00354{width:206.427570px;}
._d_c00354{width:215.850850px;}
.fc0_c00354{color:transparent;}
.fs13_c00354{font-size:17.250000px;}
.fs11_c00354{font-size:24.000000px;}
.fs14_c00354{font-size:31.500000px;}
.fs12_c00354{font-size:34.500000px;}
.fs10_c00354{font-size:42.750000px;}
.fs17_c00354{font-size:51.750000px;}
.fs1a_c00354{font-size:54.000000px;}
.fs18_c00354{font-size:58.500000px;}
.fsc_c00354{font-size:60.750000px;}
.fs4_c00354{font-size:61.500000px;}
.fs3_c00354{font-size:62.250000px;}
.fs8_c00354{font-size:63.000000px;}
.fs1b_c00354{font-size:63.750000px;}
.fs0_c00354{font-size:64.500000px;}
.fs5_c00354{font-size:65.250000px;}
.fs1_c00354{font-size:67.500000px;}
.fs15_c00354{font-size:70.500000px;}
.fs9_c00354{font-size:72.000000px;}
.fsa_c00354{font-size:75.000000px;}
.fse_c00354{font-size:75.750000px;}
.fs19_c00354{font-size:78.750000px;}
.fs2_c00354{font-size:85.325400px;}
.fs1c_c00354{font-size:89.250000px;}
.fsb_c00354{font-size:111.000000px;}
.fs6_c00354{font-size:132.000000px;}
.fs7_c00354{font-size:152.250000px;}
.fsd_c00354{font-size:193.500000px;}
.fsf_c00354{font-size:195.000000px;}
.fs16_c00354{font-size:225.750000px;}
.y0_c00354{bottom:0.000000px;}
.y1d_c00354{bottom:167.759565px;}
.y1a_c00354{bottom:190.799565px;}
.y19_c00354{bottom:213.839535px;}
.y25_c00354{bottom:237.778110px;}
.y24_c00354{bottom:261.538920px;}
.y23_c00354{bottom:284.759100px;}
.y22_c00354{bottom:319.319850px;}
.y21_c00354{bottom:331.199850px;}
.y13_c00354{bottom:342.718845px;}
.y1f_c00354{bottom:343.080000px;}
.y20_c00354{bottom:351.720135px;}
.y12_c00354{bottom:484.198905px;}
.y18_c00354{bottom:530.280855px;}
.y1b_c00354{bottom:530.639700px;}
.y26_c00354{bottom:530.998620px;}
.y2a_c00354{bottom:531.360150px;}
.y2d_c00354{bottom:531.360390px;}
.y17_c00354{bottom:553.679670px;}
.y29_c00354{bottom:554.399580px;}
.y1c_c00354{bottom:569.158770px;}
.y16_c00354{bottom:569.519670px;}
.y11_c00354{bottom:577.078860px;}
.y15_c00354{bottom:577.439025px;}
.y1e_c00354{bottom:577.439670px;}
.y28_c00354{bottom:577.798875px;}
.y2c_c00354{bottom:577.799100px;}
.y2f_c00354{bottom:577.799325px;}
.y10_c00354{bottom:600.838950px;}
.y27_c00354{bottom:601.199805px;}
.y14_c00354{bottom:601.199850px;}
.y2b_c00354{bottom:601.559940px;}
.y2e_c00354{bottom:601.560180px;}
.y7_c00354{bottom:624.239820px;}
.y6_c00354{bottom:624.239910px;}
.yc_c00354{bottom:647.639715px;}
.yf_c00354{bottom:647.999925px;}
.yb_c00354{bottom:670.679070px;}
.ye_c00354{bottom:671.399235px;}
.ya_c00354{bottom:686.519070px;}
.yd_c00354{bottom:689.759085px;}
.y9_c00354{bottom:718.199385px;}
.y5_c00354{bottom:729.359250px;}
.y8_c00354{bottom:741.959385px;}
.y4_c00354{bottom:800.280390px;}
.y3_c00354{bottom:812.519715px;}
.y2_c00354{bottom:859.319820px;}
.y1_c00354{bottom:1092.959385px;}
.h16_c00354{height:17.991211px;}
.h14_c00354{height:25.031250px;}
.h17_c00354{height:32.853516px;}
.h15_c00354{height:35.982422px;}
.h13_c00354{height:44.586914px;}
.h1d_c00354{height:53.367188px;}
.h1a_c00354{height:53.973633px;}
.h1b_c00354{height:61.013672px;}
.h4_c00354{height:62.736328px;}
.hd_c00354{height:63.360352px;}
.he_c00354{height:63.492188px;}
.h21_c00354{height:64.076932px;}
.h20_c00354{height:64.083472px;}
.h5_c00354{height:64.142578px;}
.h1e_c00354{height:64.248047px;}
.h22_c00354{height:64.806412px;}
.h12_c00354{height:64.924805px;}
.h1_c00354{height:65.003906px;}
.h9_c00354{height:65.707031px;}
.h6_c00354{height:65.759766px;}
.h2_c00354{height:68.027344px;}
.h18_c00354{height:69.673828px;}
.ha_c00354{height:72.562500px;}
.hb_c00354{height:74.121094px;}
.h10_c00354{height:74.862305px;}
.h1c_c00354{height:82.133789px;}
.h3_c00354{height:85.992005px;}
.h1f_c00354{height:87.593994px;}
.hc_c00354{height:115.769531px;}
.h7_c00354{height:133.031250px;}
.h8_c00354{height:158.791992px;}
.hf_c00354{height:201.814453px;}
.h11_c00354{height:203.378906px;}
.h19_c00354{height:235.450195px;}
.h0_c00354{height:1263.000000px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.xc_c00354{left:128.159415px;}
.x3_c00354{left:129.238785px;}
.x2a_c00354{left:131.399250px;}
.x24_c00354{left:136.079400px;}
.x25_c00354{left:141.479670px;}
.x1_c00354{left:146.878350px;}
.x13_c00354{left:152.278800px;}
.x5_c00354{left:168.838950px;}
.x29_c00354{left:170.999400px;}
.xd_c00354{left:180.719100px;}
.x2_c00354{left:181.798515px;}
.x27_c00354{left:191.158785px;}
.x6_c00354{left:197.999400px;}
.x4_c00354{left:199.078785px;}
.x28_c00354{left:210.238785px;}
.xe_c00354{left:221.759535px;}
.xf_c00354{left:239.040000px;}
.x2c_c00354{left:251.999400px;}
.x7_c00354{left:273.958350px;}
.x14_c00354{left:276.118785px;}
.x8_c00354{left:291.958950px;}
.x10_c00354{left:302.759535px;}
.x26_c00354{left:304.199655px;}
.x15_c00354{left:309.598530px;}
.x32_c00354{left:310.680480px;}
.x9_c00354{left:314.639700px;}
.x1b_c00354{left:316.439235px;}
.x2d_c00354{left:323.279850px;}
.x2e_c00354{left:327.239850px;}
.x1c_c00354{left:331.918350px;}
.x11_c00354{left:338.759100px;}
.x2b_c00354{left:344.518635px;}
.x16_c00354{left:350.279850px;}
.x1d_c00354{left:357.118785px;}
.x12_c00354{left:361.078785px;}
.x1e_c00354{left:373.679100px;}
.x1a_c00354{left:378.359235px;}
.x33_c00354{left:379.801650px;}
.x34_c00354{left:385.202040px;}
.x17_c00354{left:390.959385px;}
.x2f_c00354{left:393.119985px;}
.x1f_c00354{left:398.159415px;}
.x20_c00354{left:413.638500px;}
.x35_c00354{left:425.882400px;}
.x18_c00354{left:431.279850px;}
.x21_c00354{left:438.479685px;}
.x22_c00354{left:454.679070px;}
.x30_c00354{left:456.839535px;}
.xa_c00354{left:459.718500px;}
.x36_c00354{left:466.561935px;}
.x19_c00354{left:471.959385px;}
.x23_c00354{left:479.159415px;}
.xb_c00354{left:482.758530px;}
.x37_c00354{left:501.122595px;}
.x38_c00354{left:506.521185px;}
.x31_c00354{left:520.559100px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:1.285387pt;}
.ls21_c00354{letter-spacing:-23.863000pt;}
.ls1e_c00354{letter-spacing:-20.728867pt;}
.ls10_c00354{letter-spacing:-20.345600pt;}
.ls14_c00354{letter-spacing:-16.666667pt;}
.ls9_c00354{letter-spacing:-6.462000pt;}
.ls15_c00354{letter-spacing:-4.614000pt;}
.lsd_c00354{letter-spacing:-4.553733pt;}
.ls17_c00354{letter-spacing:-3.864000pt;}
.lse_c00354{letter-spacing:-2.319420pt;}
.ls16_c00354{letter-spacing:-1.848600pt;}
.ls1d_c00354{letter-spacing:-1.164800pt;}
.lsa_c00354{letter-spacing:0.000000pt;}
.ls1c_c00354{letter-spacing:0.420133pt;}
.ls3_c00354{letter-spacing:0.924000pt;}
.ls1b_c00354{letter-spacing:1.101600pt;}
.ls13_c00354{letter-spacing:1.753600pt;}
.ls5_c00354{letter-spacing:1.848600pt;}
.ls1f_c00354{letter-spacing:2.203200pt;}
.lsb_c00354{letter-spacing:2.634420pt;}
.ls18_c00354{letter-spacing:2.772000pt;}
.ls24_c00354{letter-spacing:3.184667pt;}
.ls1_c00354{letter-spacing:3.304800pt;}
.ls0_c00354{letter-spacing:3.689400pt;}
.ls23_c00354{letter-spacing:3.840000pt;}
.ls7_c00354{letter-spacing:4.406400pt;}
.ls2_c00354{letter-spacing:4.614000pt;}
.ls6_c00354{letter-spacing:5.508540pt;}
.lsf_c00354{letter-spacing:5.538000pt;}
.ls22_c00354{letter-spacing:6.462000pt;}
.ls20_c00354{letter-spacing:6.615000pt;}
.ls4_c00354{letter-spacing:7.385400pt;}
.lsc_c00354{letter-spacing:9.227400pt;}
.ls25_c00354{letter-spacing:12.123000pt;}
.ls11_c00354{letter-spacing:12.923400pt;}
.ls12_c00354{letter-spacing:23.138640pt;}
.ls1a_c00354{letter-spacing:168.615000pt;}
.ls8_c00354{letter-spacing:201.652800pt;}
.ls19_c00354{letter-spacing:208.283400pt;}
.ws0_c00354{word-spacing:0.000000pt;}
._9_c00354{margin-left:-27.738092pt;}
._8_c00354{margin-left:-9.581908pt;}
._1_c00354{width:3.797825pt;}
._a_c00354{width:14.748148pt;}
._2_c00354{width:16.932222pt;}
._6_c00354{width:20.044237pt;}
._4_c00354{width:21.813960pt;}
._3_c00354{width:25.686185pt;}
._7_c00354{width:27.413871pt;}
._0_c00354{width:31.235649pt;}
._c_c00354{width:73.740258pt;}
._b_c00354{width:95.334185pt;}
._5_c00354{width:118.146798pt;}
._e_c00354{width:155.813330pt;}
._f_c00354{width:161.416359pt;}
._11_c00354{width:163.528310pt;}
._10_c00354{width:181.362471pt;}
._12_c00354{width:183.491173pt;}
._d_c00354{width:191.867422pt;}
.fs13_c00354{font-size:15.333333pt;}
.fs11_c00354{font-size:21.333333pt;}
.fs14_c00354{font-size:28.000000pt;}
.fs12_c00354{font-size:30.666667pt;}
.fs10_c00354{font-size:38.000000pt;}
.fs17_c00354{font-size:46.000000pt;}
.fs1a_c00354{font-size:48.000000pt;}
.fs18_c00354{font-size:52.000000pt;}
.fsc_c00354{font-size:54.000000pt;}
.fs4_c00354{font-size:54.666667pt;}
.fs3_c00354{font-size:55.333333pt;}
.fs8_c00354{font-size:56.000000pt;}
.fs1b_c00354{font-size:56.666667pt;}
.fs0_c00354{font-size:57.333333pt;}
.fs5_c00354{font-size:58.000000pt;}
.fs1_c00354{font-size:60.000000pt;}
.fs15_c00354{font-size:62.666667pt;}
.fs9_c00354{font-size:64.000000pt;}
.fsa_c00354{font-size:66.666667pt;}
.fse_c00354{font-size:67.333333pt;}
.fs19_c00354{font-size:70.000000pt;}
.fs2_c00354{font-size:75.844800pt;}
.fs1c_c00354{font-size:79.333333pt;}
.fsb_c00354{font-size:98.666667pt;}
.fs6_c00354{font-size:117.333333pt;}
.fs7_c00354{font-size:135.333333pt;}
.fsd_c00354{font-size:172.000000pt;}
.fsf_c00354{font-size:173.333333pt;}
.fs16_c00354{font-size:200.666667pt;}
.y0_c00354{bottom:0.000000pt;}
.y1d_c00354{bottom:149.119613pt;}
.y1a_c00354{bottom:169.599613pt;}
.y19_c00354{bottom:190.079587pt;}
.y25_c00354{bottom:211.358320pt;}
.y24_c00354{bottom:232.479040pt;}
.y23_c00354{bottom:253.119200pt;}
.y22_c00354{bottom:283.839867pt;}
.y21_c00354{bottom:294.399867pt;}
.y13_c00354{bottom:304.638973pt;}
.y1f_c00354{bottom:304.960000pt;}
.y20_c00354{bottom:312.640120pt;}
.y12_c00354{bottom:430.399027pt;}
.y18_c00354{bottom:471.360760pt;}
.y1b_c00354{bottom:471.679733pt;}
.y26_c00354{bottom:471.998773pt;}
.y2a_c00354{bottom:472.320133pt;}
.y2d_c00354{bottom:472.320347pt;}
.y17_c00354{bottom:492.159707pt;}
.y29_c00354{bottom:492.799627pt;}
.y1c_c00354{bottom:505.918907pt;}
.y16_c00354{bottom:506.239707pt;}
.y11_c00354{bottom:512.958987pt;}
.y15_c00354{bottom:513.279133pt;}
.y1e_c00354{bottom:513.279707pt;}
.y28_c00354{bottom:513.599000pt;}
.y2c_c00354{bottom:513.599200pt;}
.y2f_c00354{bottom:513.599400pt;}
.y10_c00354{bottom:534.079067pt;}
.y27_c00354{bottom:534.399827pt;}
.y14_c00354{bottom:534.399867pt;}
.y2b_c00354{bottom:534.719947pt;}
.y2e_c00354{bottom:534.720160pt;}
.y7_c00354{bottom:554.879840pt;}
.y6_c00354{bottom:554.879920pt;}
.yc_c00354{bottom:575.679747pt;}
.yf_c00354{bottom:575.999933pt;}
.yb_c00354{bottom:596.159173pt;}
.ye_c00354{bottom:596.799320pt;}
.ya_c00354{bottom:610.239173pt;}
.yd_c00354{bottom:613.119187pt;}
.y9_c00354{bottom:638.399453pt;}
.y5_c00354{bottom:648.319333pt;}
.y8_c00354{bottom:659.519453pt;}
.y4_c00354{bottom:711.360347pt;}
.y3_c00354{bottom:722.239747pt;}
.y2_c00354{bottom:763.839840pt;}
.y1_c00354{bottom:971.519453pt;}
.h16_c00354{height:15.992187pt;}
.h14_c00354{height:22.250000pt;}
.h17_c00354{height:29.203125pt;}
.h15_c00354{height:31.984375pt;}
.h13_c00354{height:39.632812pt;}
.h1d_c00354{height:47.437500pt;}
.h1a_c00354{height:47.976562pt;}
.h1b_c00354{height:54.234375pt;}
.h4_c00354{height:55.765625pt;}
.hd_c00354{height:56.320312pt;}
.he_c00354{height:56.437500pt;}
.h21_c00354{height:56.957273pt;}
.h20_c00354{height:56.963086pt;}
.h5_c00354{height:57.015625pt;}
.h1e_c00354{height:57.109375pt;}
.h22_c00354{height:57.605699pt;}
.h12_c00354{height:57.710938pt;}
.h1_c00354{height:57.781250pt;}
.h9_c00354{height:58.406250pt;}
.h6_c00354{height:58.453125pt;}
.h2_c00354{height:60.468750pt;}
.h18_c00354{height:61.932292pt;}
.ha_c00354{height:64.500000pt;}
.hb_c00354{height:65.885417pt;}
.h10_c00354{height:66.544271pt;}
.h1c_c00354{height:73.007812pt;}
.h3_c00354{height:76.437337pt;}
.h1f_c00354{height:77.861328pt;}
.hc_c00354{height:102.906250pt;}
.h7_c00354{height:118.250000pt;}
.h8_c00354{height:141.148438pt;}
.hf_c00354{height:179.390625pt;}
.h11_c00354{height:180.781250pt;}
.h19_c00354{height:209.289063pt;}
.h0_c00354{height:1122.666667pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.xc_c00354{left:113.919480pt;}
.x3_c00354{left:114.878920pt;}
.x2a_c00354{left:116.799333pt;}
.x24_c00354{left:120.959467pt;}
.x25_c00354{left:125.759707pt;}
.x1_c00354{left:130.558533pt;}
.x13_c00354{left:135.358933pt;}
.x5_c00354{left:150.079067pt;}
.x29_c00354{left:151.999467pt;}
.xd_c00354{left:160.639200pt;}
.x2_c00354{left:161.598680pt;}
.x27_c00354{left:169.918920pt;}
.x6_c00354{left:175.999467pt;}
.x4_c00354{left:176.958920pt;}
.x28_c00354{left:186.878920pt;}
.xe_c00354{left:197.119587pt;}
.xf_c00354{left:212.480000pt;}
.x2c_c00354{left:223.999467pt;}
.x7_c00354{left:243.518533pt;}
.x14_c00354{left:245.438920pt;}
.x8_c00354{left:259.519067pt;}
.x10_c00354{left:269.119587pt;}
.x26_c00354{left:270.399693pt;}
.x15_c00354{left:275.198693pt;}
.x32_c00354{left:276.160427pt;}
.x9_c00354{left:279.679733pt;}
.x1b_c00354{left:281.279320pt;}
.x2d_c00354{left:287.359867pt;}
.x2e_c00354{left:290.879867pt;}
.x1c_c00354{left:295.038533pt;}
.x11_c00354{left:301.119200pt;}
.x2b_c00354{left:306.238787pt;}
.x16_c00354{left:311.359867pt;}
.x1d_c00354{left:317.438920pt;}
.x12_c00354{left:320.958920pt;}
.x1e_c00354{left:332.159200pt;}
.x1a_c00354{left:336.319320pt;}
.x33_c00354{left:337.601467pt;}
.x34_c00354{left:342.401813pt;}
.x17_c00354{left:347.519453pt;}
.x2f_c00354{left:349.439987pt;}
.x1f_c00354{left:353.919480pt;}
.x20_c00354{left:367.678667pt;}
.x35_c00354{left:378.562133pt;}
.x18_c00354{left:383.359867pt;}
.x21_c00354{left:389.759720pt;}
.x22_c00354{left:404.159173pt;}
.x30_c00354{left:406.079587pt;}
.xa_c00354{left:408.638667pt;}
.x36_c00354{left:414.721720pt;}
.x19_c00354{left:419.519453pt;}
.x23_c00354{left:425.919480pt;}
.xb_c00354{left:429.118693pt;}
.x37_c00354{left:445.442307pt;}
.x38_c00354{left:450.241053pt;}
.x31_c00354{left:462.719200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3db1d816c414c7c2316fe44f.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_6eff670aea3cb9357911629b.woff2')format("woff");}.ff3_c00355{font-family:ff3_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:ff4_c00355;src:url('chunks/assets/font_cd0b1504c6151d0de3fd52ac.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_823edb9690b0734246768fc7.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00355{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212054,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m1c_c00355{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m1a_c00355{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00355{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m13_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls9_c00355{letter-spacing:-16.681050px;}
.ls18_c00355{letter-spacing:-13.209150px;}
.ls23_c00355{letter-spacing:-10.191900px;}
.ls22_c00355{letter-spacing:-8.914500px;}
.ls5_c00355{letter-spacing:-8.175038px;}
.ls14_c00355{letter-spacing:-7.426125px;}
.ls10_c00355{letter-spacing:-6.685875px;}
.ls15_c00355{letter-spacing:-6.272550px;}
.ls16_c00355{letter-spacing:-6.160478px;}
.ls17_c00355{letter-spacing:-6.154200px;}
.ls11_c00355{letter-spacing:-5.945625px;}
.ls26_c00355{letter-spacing:-5.731950px;}
.ls6_c00355{letter-spacing:-5.296875px;}
.ls12_c00355{letter-spacing:-5.196713px;}
.ls25_c00355{letter-spacing:-5.068500px;}
.lsa_c00355{letter-spacing:-4.456463px;}
.ls1c_c00355{letter-spacing:-4.368150px;}
.ls13_c00355{letter-spacing:-4.334498px;}
.ls1a_c00355{letter-spacing:-4.190288px;}
.ls21_c00355{letter-spacing:-3.787875px;}
.ls8_c00355{letter-spacing:-3.717000px;}
.ls20_c00355{letter-spacing:-3.003000px;}
.ls4_c00355{letter-spacing:-2.968875px;}
.ls1b_c00355{letter-spacing:-2.914650px;}
.lsf_c00355{letter-spacing:-2.656508px;}
.ls3_c00355{letter-spacing:-2.229413px;}
.ls1d_c00355{letter-spacing:-2.226150px;}
.ls1e_c00355{letter-spacing:-2.187135px;}
.ls19_c00355{letter-spacing:-1.621050px;}
.lsb_c00355{letter-spacing:-1.489163px;}
.ls1f_c00355{letter-spacing:-1.453500px;}
.ls24_c00355{letter-spacing:-0.749250px;}
.lsc_c00355{letter-spacing:-0.740250px;}
.lse_c00355{letter-spacing:0.000000px;}
.ls1_c00355{letter-spacing:0.740250px;}
.lsd_c00355{letter-spacing:2.229413px;}
.ls7_c00355{letter-spacing:3.839805px;}
.ls2_c00355{letter-spacing:17.088750px;}
.ls0_c00355{letter-spacing:17.828213px;}
.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;}
._20_c00355{margin-left:-35.559756px;}
._1e_c00355{margin-left:-33.448245px;}
._24_c00355{margin-left:-32.392260px;}
._25_c00355{margin-left:-12.673906px;}
._26_c00355{margin-left:-10.711174px;}
._21_c00355{margin-left:-8.833358px;}
._23_c00355{margin-left:-6.490813px;}
._19_c00355{margin-left:-4.718046px;}
._22_c00355{margin-left:-3.384452px;}
._27_c00355{margin-left:-1.936834px;}
._b_c00355{width:1.532326px;}
._10_c00355{width:2.656787px;}
._f_c00355{width:4.333122px;}
._0_c00355{width:5.628515px;}
._5_c00355{width:7.149965px;}
._c_c00355{width:8.276105px;}
._3_c00355{width:9.387327px;}
._4_c00355{width:10.675662px;}
._d_c00355{width:12.203783px;}
._e_c00355{width:13.489578px;}
._1_c00355{width:14.647767px;}
._11_c00355{width:15.670745px;}
._8_c00355{width:17.964911px;}
._9_c00355{width:19.963571px;}
._a_c00355{width:21.482584px;}
._6_c00355{width:22.498905px;}
._2_c00355{width:24.328624px;}
._13_c00355{width:25.390501px;}
._7_c00355{width:26.692907px;}
._14_c00355{width:27.799775px;}
._12_c00355{width:29.226577px;}
._15_c00355{width:31.316914px;}
._18_c00355{width:32.728381px;}
._17_c00355{width:34.470108px;}
._16_c00355{width:36.911373px;}
._29_c00355{width:38.291222px;}
._1f_c00355{width:40.426194px;}
._2b_c00355{width:42.580095px;}
._2c_c00355{width:43.698583px;}
._2a_c00355{width:46.469097px;}
._28_c00355{width:48.313511px;}
._1a_c00355{width:51.946620px;}
._1b_c00355{width:54.332834px;}
._1c_c00355{width:55.489300px;}
._1d_c00355{width:57.311486px;}
.fc0_c00355{color:transparent;}
.fs3_c00355{font-size:70.500000px;}
.fs7_c00355{font-size:75.750000px;}
.fsb_c00355{font-size:76.500000px;}
.fs6_c00355{font-size:77.250000px;}
.fs4_c00355{font-size:78.000000px;}
.fs0_c00355{font-size:78.750000px;}
.fs8_c00355{font-size:79.500000px;}
.fsa_c00355{font-size:80.250000px;}
.fsf_c00355{font-size:81.750000px;}
.fs9_c00355{font-size:82.500000px;}
.fs5_c00355{font-size:83.250000px;}
.fs10_c00355{font-size:84.000000px;}
.fs1_c00355{font-size:84.750000px;}
.fs2_c00355{font-size:85.500000px;}
.fse_c00355{font-size:90.000000px;}
.fsc_c00355{font-size:101.250000px;}
.fsd_c00355{font-size:115.500000px;}
.y0_c00355{bottom:0.000000px;}
.y2f_c00355{bottom:210.599235px;}
.y30_c00355{bottom:210.599700px;}
.y2e_c00355{bottom:231.840135px;}
.y2d_c00355{bottom:231.840255px;}
.y2c_c00355{bottom:274.680150px;}
.y2b_c00355{bottom:274.680270px;}
.y2a_c00355{bottom:295.921170px;}
.y28_c00355{bottom:380.880450px;}
.y29_c00355{bottom:380.880585px;}
.y27_c00355{bottom:401.759055px;}
.y26_c00355{bottom:444.240870px;}
.y25_c00355{bottom:444.241305px;}
.y23_c00355{bottom:465.840150px;}
.y24_c00355{bottom:465.840585px;}
.y21_c00355{bottom:487.080375px;}
.y22_c00355{bottom:487.081050px;}
.y20_c00355{bottom:529.560075px;}
.y1f_c00355{bottom:550.801005px;}
.y1e_c00355{bottom:572.400285px;}
.y1d_c00355{bottom:572.400990px;}
.y1c_c00355{bottom:631.439760px;}
.y1b_c00355{bottom:661.679670px;}
.y1a_c00355{bottom:661.679880px;}
.y19_c00355{bottom:690.841020px;}
.y18_c00355{bottom:720.720750px;}
.y17_c00355{bottom:750.599670px;}
.y16_c00355{bottom:781.200435px;}
.y15_c00355{bottom:781.201335px;}
.y13_c00355{bottom:811.079520px;}
.y14_c00355{bottom:811.081050px;}
.y12_c00355{bottom:840.959250px;}
.y10_c00355{bottom:870.120345px;}
.y11_c00355{bottom:870.120390px;}
.yf_c00355{bottom:900.360255px;}
.ye_c00355{bottom:900.360900px;}
.yd_c00355{bottom:929.880435px;}
.yc_c00355{bottom:960.480840px;}
.yb_c00355{bottom:960.481020px;}
.y9_c00355{bottom:989.999790px;}
.ya_c00355{bottom:990.000555px;}
.y8_c00355{bottom:1019.879520px;}
.y7_c00355{bottom:1019.879535px;}
.y6_c00355{bottom:1049.400885px;}
.y5_c00355{bottom:1079.279850px;}
.y4_c00355{bottom:1079.280030px;}
.y2_c00355{bottom:1108.798965px;}
.y3_c00355{bottom:1108.799565px;}
.y1_c00355{bottom:1139.040990px;}
.h5_c00355{height:73.529297px;}
.h9_c00355{height:74.344482px;}
.hf_c00355{height:75.080566px;}
.h8_c00355{height:75.816650px;}
.h6_c00355{height:76.552734px;}
.h1_c00355{height:77.288818px;}
.h16_c00355{height:78.024902px;}
.ha_c00355{height:78.568359px;}
.h10_c00355{height:78.760986px;}
.hc_c00355{height:79.309570px;}
.he_c00355{height:79.365234px;}
.h13_c00355{height:80.233154px;}
.hd_c00355{height:80.876953px;}
.hb_c00355{height:80.969238px;}
.h17_c00355{height:82.133789px;}
.h7_c00355{height:82.274414px;}
.h2_c00355{height:83.177490px;}
.h3_c00355{height:83.913574px;}
.h4_c00355{height:84.498047px;}
.h14_c00355{height:87.609375px;}
.h12_c00355{height:93.867188px;}
.h15_c00355{height:105.600586px;}
.h11_c00355{height:120.462891px;}
.h0_c00355{height:1263.000000px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x14_c00355{left:135.719370px;}
.x1_c00355{left:136.799565px;}
.x37_c00355{left:190.439295px;}
.x29_c00355{left:191.518140px;}
.x1b_c00355{left:239.040000px;}
.x17_c00355{left:250.199850px;}
.x2a_c00355{left:256.679700px;}
.x35_c00355{left:266.040000px;}
.x21_c00355{left:270.359250px;}
.x36_c00355{left:271.799535px;}
.x18_c00355{left:275.398635px;}
.x2b_c00355{left:277.199850px;}
.x22_c00355{left:284.399850px;}
.x12_c00355{left:289.798515px;}
.x38_c00355{left:297.718500px;}
.x13_c00355{left:304.199850px;}
.x31_c00355{left:308.878350px;}
.x27_c00355{left:316.439235px;}
.x32_c00355{left:323.639100px;}
.x28_c00355{left:338.038950px;}
.x6_c00355{left:387.358665px;}
.x1c_c00355{left:390.239220px;}
.xa_c00355{left:393.479235px;}
.x2f_c00355{left:398.159415px;}
.x7_c00355{left:410.039385px;}
.x30_c00355{left:412.918350px;}
.x23_c00355{left:419.759085px;}
.xe_c00355{left:422.278800px;}
.x8_c00355{left:430.198785px;}
.x19_c00355{left:437.759535px;}
.xb_c00355{left:443.159820px;}
.xf_c00355{left:449.998950px;}
.x1a_c00355{left:463.319235px;}
.x1d_c00355{left:485.639100px;}
.x3b_c00355{left:505.798515px;}
.x33_c00355{left:510.119385px;}
.x3c_c00355{left:511.559685px;}
.x2_c00355{left:515.519670px;}
.x39_c00355{left:519.838950px;}
.x2c_c00355{left:524.519070px;}
.x34_c00355{left:530.278800px;}
.x3_c00355{left:536.399235px;}
.x3a_c00355{left:549.719565px;}
.x1e_c00355{left:556.919535px;}
.x2d_c00355{left:559.798515px;}
.x10_c00355{left:577.439670px;}
.x15_c00355{left:595.799520px;}
.x11_c00355{left:599.759535px;}
.x4_c00355{left:602.638545px;}
.x2e_c00355{left:609.479235px;}
.xc_c00355{left:617.039985px;}
.x16_c00355{left:618.119385px;}
.x5_c00355{left:626.759535px;}
.x24_c00355{left:632.519070px;}
.xd_c00355{left:643.679070px;}
.x25_c00355{left:658.078770px;}
.x1f_c00355{left:690.479235px;}
.x26_c00355{left:706.678530px;}
.x20_c00355{left:720.359850px;}
.x9_c00355{left:754.918950px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls9_c00355{letter-spacing:-14.827600pt;}
.ls18_c00355{letter-spacing:-11.741467pt;}
.ls23_c00355{letter-spacing:-9.059467pt;}
.ls22_c00355{letter-spacing:-7.924000pt;}
.ls5_c00355{letter-spacing:-7.266700pt;}
.ls14_c00355{letter-spacing:-6.601000pt;}
.ls10_c00355{letter-spacing:-5.943000pt;}
.ls15_c00355{letter-spacing:-5.575600pt;}
.ls16_c00355{letter-spacing:-5.475980pt;}
.ls17_c00355{letter-spacing:-5.470400pt;}
.ls11_c00355{letter-spacing:-5.285000pt;}
.ls26_c00355{letter-spacing:-5.095067pt;}
.ls6_c00355{letter-spacing:-4.708333pt;}
.ls12_c00355{letter-spacing:-4.619300pt;}
.ls25_c00355{letter-spacing:-4.505333pt;}
.lsa_c00355{letter-spacing:-3.961300pt;}
.ls1c_c00355{letter-spacing:-3.882800pt;}
.ls13_c00355{letter-spacing:-3.852887pt;}
.ls1a_c00355{letter-spacing:-3.724700pt;}
.ls21_c00355{letter-spacing:-3.367000pt;}
.ls8_c00355{letter-spacing:-3.304000pt;}
.ls20_c00355{letter-spacing:-2.669333pt;}
.ls4_c00355{letter-spacing:-2.639000pt;}
.ls1b_c00355{letter-spacing:-2.590800pt;}
.lsf_c00355{letter-spacing:-2.361340pt;}
.ls3_c00355{letter-spacing:-1.981700pt;}
.ls1d_c00355{letter-spacing:-1.978800pt;}
.ls1e_c00355{letter-spacing:-1.944120pt;}
.ls19_c00355{letter-spacing:-1.440933pt;}
.lsb_c00355{letter-spacing:-1.323700pt;}
.ls1f_c00355{letter-spacing:-1.292000pt;}
.ls24_c00355{letter-spacing:-0.666000pt;}
.lsc_c00355{letter-spacing:-0.658000pt;}
.lse_c00355{letter-spacing:0.000000pt;}
.ls1_c00355{letter-spacing:0.658000pt;}
.lsd_c00355{letter-spacing:1.981700pt;}
.ls7_c00355{letter-spacing:3.413160pt;}
.ls2_c00355{letter-spacing:15.190000pt;}
.ls0_c00355{letter-spacing:15.847300pt;}
.ws0_c00355{word-spacing:0.000000pt;}
._20_c00355{margin-left:-31.608672pt;}
._1e_c00355{margin-left:-29.731774pt;}
._24_c00355{margin-left:-28.793120pt;}
._25_c00355{margin-left:-11.265694pt;}
._26_c00355{margin-left:-9.521043pt;}
._21_c00355{margin-left:-7.851874pt;}
._23_c00355{margin-left:-5.769611pt;}
._19_c00355{margin-left:-4.193819pt;}
._22_c00355{margin-left:-3.008402pt;}
._27_c00355{margin-left:-1.721630pt;}
._b_c00355{width:1.362068pt;}
._10_c00355{width:2.361589pt;}
._f_c00355{width:3.851664pt;}
._0_c00355{width:5.003125pt;}
._5_c00355{width:6.355525pt;}
._c_c00355{width:7.356538pt;}
._3_c00355{width:8.344291pt;}
._4_c00355{width:9.489477pt;}
._d_c00355{width:10.847808pt;}
._e_c00355{width:11.990736pt;}
._1_c00355{width:13.020238pt;}
._11_c00355{width:13.929551pt;}
._8_c00355{width:15.968809pt;}
._9_c00355{width:17.745396pt;}
._a_c00355{width:19.095630pt;}
._6_c00355{width:19.999026pt;}
._2_c00355{width:21.625443pt;}
._13_c00355{width:22.569334pt;}
._7_c00355{width:23.727028pt;}
._14_c00355{width:24.710911pt;}
._12_c00355{width:25.979179pt;}
._15_c00355{width:27.837257pt;}
._18_c00355{width:29.091894pt;}
._17_c00355{width:30.640096pt;}
._16_c00355{width:32.810109pt;}
._29_c00355{width:34.036642pt;}
._1f_c00355{width:35.934394pt;}
._2b_c00355{width:37.848974pt;}
._2c_c00355{width:38.843185pt;}
._2a_c00355{width:41.305864pt;}
._28_c00355{width:42.945343pt;}
._1a_c00355{width:46.174774pt;}
._1b_c00355{width:48.295853pt;}
._1c_c00355{width:49.323823pt;}
._1d_c00355{width:50.943543pt;}
.fs3_c00355{font-size:62.666667pt;}
.fs7_c00355{font-size:67.333333pt;}
.fsb_c00355{font-size:68.000000pt;}
.fs6_c00355{font-size:68.666667pt;}
.fs4_c00355{font-size:69.333333pt;}
.fs0_c00355{font-size:70.000000pt;}
.fs8_c00355{font-size:70.666667pt;}
.fsa_c00355{font-size:71.333333pt;}
.fsf_c00355{font-size:72.666667pt;}
.fs9_c00355{font-size:73.333333pt;}
.fs5_c00355{font-size:74.000000pt;}
.fs10_c00355{font-size:74.666667pt;}
.fs1_c00355{font-size:75.333333pt;}
.fs2_c00355{font-size:76.000000pt;}
.fse_c00355{font-size:80.000000pt;}
.fsc_c00355{font-size:90.000000pt;}
.fsd_c00355{font-size:102.666667pt;}
.y0_c00355{bottom:0.000000pt;}
.y2f_c00355{bottom:187.199320pt;}
.y30_c00355{bottom:187.199733pt;}
.y2e_c00355{bottom:206.080120pt;}
.y2d_c00355{bottom:206.080227pt;}
.y2c_c00355{bottom:244.160133pt;}
.y2b_c00355{bottom:244.160240pt;}
.y2a_c00355{bottom:263.041040pt;}
.y28_c00355{bottom:338.560400pt;}
.y29_c00355{bottom:338.560520pt;}
.y27_c00355{bottom:357.119160pt;}
.y26_c00355{bottom:394.880773pt;}
.y25_c00355{bottom:394.881160pt;}
.y23_c00355{bottom:414.080133pt;}
.y24_c00355{bottom:414.080520pt;}
.y21_c00355{bottom:432.960333pt;}
.y22_c00355{bottom:432.960933pt;}
.y20_c00355{bottom:470.720067pt;}
.y1f_c00355{bottom:489.600893pt;}
.y1e_c00355{bottom:508.800253pt;}
.y1d_c00355{bottom:508.800880pt;}
.y1c_c00355{bottom:561.279787pt;}
.y1b_c00355{bottom:588.159707pt;}
.y1a_c00355{bottom:588.159893pt;}
.y19_c00355{bottom:614.080907pt;}
.y18_c00355{bottom:640.640667pt;}
.y17_c00355{bottom:667.199707pt;}
.y16_c00355{bottom:694.400387pt;}
.y15_c00355{bottom:694.401187pt;}
.y13_c00355{bottom:720.959573pt;}
.y14_c00355{bottom:720.960933pt;}
.y12_c00355{bottom:747.519333pt;}
.y10_c00355{bottom:773.440307pt;}
.y11_c00355{bottom:773.440347pt;}
.yf_c00355{bottom:800.320227pt;}
.ye_c00355{bottom:800.320800pt;}
.yd_c00355{bottom:826.560387pt;}
.yc_c00355{bottom:853.760747pt;}
.yb_c00355{bottom:853.760907pt;}
.y9_c00355{bottom:879.999813pt;}
.ya_c00355{bottom:880.000493pt;}
.y8_c00355{bottom:906.559573pt;}
.y7_c00355{bottom:906.559587pt;}
.y6_c00355{bottom:932.800787pt;}
.y5_c00355{bottom:959.359867pt;}
.y4_c00355{bottom:959.360027pt;}
.y2_c00355{bottom:985.599080pt;}
.y3_c00355{bottom:985.599613pt;}
.y1_c00355{bottom:1012.480880pt;}
.h5_c00355{height:65.359375pt;}
.h9_c00355{height:66.083984pt;}
.hf_c00355{height:66.738281pt;}
.h8_c00355{height:67.392578pt;}
.h6_c00355{height:68.046875pt;}
.h1_c00355{height:68.701172pt;}
.h16_c00355{height:69.355469pt;}
.ha_c00355{height:69.838542pt;}
.h10_c00355{height:70.009766pt;}
.hc_c00355{height:70.497396pt;}
.he_c00355{height:70.546875pt;}
.h13_c00355{height:71.318359pt;}
.hd_c00355{height:71.890625pt;}
.hb_c00355{height:71.972656pt;}
.h17_c00355{height:73.007812pt;}
.h7_c00355{height:73.132813pt;}
.h2_c00355{height:73.935547pt;}
.h3_c00355{height:74.589844pt;}
.h4_c00355{height:75.109375pt;}
.h14_c00355{height:77.875000pt;}
.h12_c00355{height:83.437500pt;}
.h15_c00355{height:93.867188pt;}
.h11_c00355{height:107.078125pt;}
.h0_c00355{height:1122.666667pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x14_c00355{left:120.639440pt;}
.x1_c00355{left:121.599613pt;}
.x37_c00355{left:169.279373pt;}
.x29_c00355{left:170.238347pt;}
.x1b_c00355{left:212.480000pt;}
.x17_c00355{left:222.399867pt;}
.x2a_c00355{left:228.159733pt;}
.x35_c00355{left:236.480000pt;}
.x21_c00355{left:240.319333pt;}
.x36_c00355{left:241.599587pt;}
.x18_c00355{left:244.798787pt;}
.x2b_c00355{left:246.399867pt;}
.x22_c00355{left:252.799867pt;}
.x12_c00355{left:257.598680pt;}
.x38_c00355{left:264.638667pt;}
.x13_c00355{left:270.399867pt;}
.x31_c00355{left:274.558533pt;}
.x27_c00355{left:281.279320pt;}
.x32_c00355{left:287.679200pt;}
.x28_c00355{left:300.479067pt;}
.x6_c00355{left:344.318813pt;}
.x1c_c00355{left:346.879307pt;}
.xa_c00355{left:349.759320pt;}
.x2f_c00355{left:353.919480pt;}
.x7_c00355{left:364.479453pt;}
.x30_c00355{left:367.038533pt;}
.x23_c00355{left:373.119187pt;}
.xe_c00355{left:375.358933pt;}
.x8_c00355{left:382.398920pt;}
.x19_c00355{left:389.119587pt;}
.xb_c00355{left:393.919840pt;}
.xf_c00355{left:399.999067pt;}
.x1a_c00355{left:411.839320pt;}
.x1d_c00355{left:431.679200pt;}
.x3b_c00355{left:449.598680pt;}
.x33_c00355{left:453.439453pt;}
.x3c_c00355{left:454.719720pt;}
.x2_c00355{left:458.239707pt;}
.x39_c00355{left:462.079067pt;}
.x2c_c00355{left:466.239173pt;}
.x34_c00355{left:471.358933pt;}
.x3_c00355{left:476.799320pt;}
.x3a_c00355{left:488.639613pt;}
.x1e_c00355{left:495.039587pt;}
.x2d_c00355{left:497.598680pt;}
.x10_c00355{left:513.279707pt;}
.x15_c00355{left:529.599573pt;}
.x11_c00355{left:533.119587pt;}
.x4_c00355{left:535.678707pt;}
.x2e_c00355{left:541.759320pt;}
.xc_c00355{left:548.479987pt;}
.x16_c00355{left:549.439453pt;}
.x5_c00355{left:557.119587pt;}
.x24_c00355{left:562.239173pt;}
.xd_c00355{left:572.159173pt;}
.x25_c00355{left:584.958907pt;}
.x1f_c00355{left:613.759320pt;}
.x26_c00355{left:628.158693pt;}
.x20_c00355{left:640.319867pt;}
.x9_c00355{left:671.039067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ca4c1d9aac95210b646efd4.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_0a4ffa6b528a378ca716e96b.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_c38d9fdbae4aeddf86d96df0.woff2')format("woff");}.ff3_c00356{font-family:ff3_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:ff4_c00356;src:url('chunks/assets/font_b212cac676a98fd4108500da.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_35f0bd43f8ffe362ffa76a07.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00356;src:url('chunks/assets/font_41c70fce67ccd1bb0adb10b8.woff2')format("woff");}.ff6_c00356{font-family:ff6_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00356{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m16_c00356{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1b_c00356{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202632,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m1a_c00356{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m13_c00356{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_c00356{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m18_c00356{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.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);}
.ma_c00356{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.md_c00356{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v1_c00356{vertical-align:-1.433520px;}
.v0_c00356{vertical-align:0.000000px;}
.ls12_c00356{letter-spacing:-12.935700px;}
.ls10_c00356{letter-spacing:-9.397575px;}
.ls16_c00356{letter-spacing:-7.576538px;}
.ls19_c00356{letter-spacing:-6.160478px;}
.ls14_c00356{letter-spacing:-6.055875px;}
.ls13_c00356{letter-spacing:-5.300663px;}
.lsf_c00356{letter-spacing:-5.221425px;}
.lsb_c00356{letter-spacing:-4.722300px;}
.ls18_c00356{letter-spacing:-4.543088px;}
.ls17_c00356{letter-spacing:-4.321403px;}
.lsd_c00356{letter-spacing:-4.230195px;}
.ls8_c00356{letter-spacing:-3.787875px;}
.ls4_c00356{letter-spacing:-3.031875px;}
.ls15_c00356{letter-spacing:-2.886000px;}
.ls1b_c00356{letter-spacing:-2.707215px;}
.lsa_c00356{letter-spacing:-2.430000px;}
.ls6_c00356{letter-spacing:-2.267213px;}
.ls3_c00356{letter-spacing:-1.574895px;}
.ls5_c00356{letter-spacing:-1.512000px;}
.lse_c00356{letter-spacing:-0.858600px;}
.ls7_c00356{letter-spacing:-0.756000px;}
.ls9_c00356{letter-spacing:0.000000px;}
.ls2_c00356{letter-spacing:0.756000px;}
.ls0_c00356{letter-spacing:1.512000px;}
.ls11_c00356{letter-spacing:3.057450px;}
.ls1a_c00356{letter-spacing:3.795825px;}
.ls1_c00356{letter-spacing:6.811875px;}
.lsc_c00356{letter-spacing:11.101463px;}
.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;}
._1c_c00356{margin-left:-31.813260px;}
._1a_c00356{margin-left:-13.021797px;}
._19_c00356{margin-left:-10.620952px;}
._1d_c00356{margin-left:-9.332057px;}
._8_c00356{margin-left:-7.073083px;}
._15_c00356{margin-left:-4.528367px;}
._14_c00356{margin-left:-2.865107px;}
._1_c00356{margin-left:-1.015512px;}
._7_c00356{width:1.317548px;}
._3_c00356{width:2.763883px;}
._d_c00356{width:4.084338px;}
._2_c00356{width:5.166424px;}
._5_c00356{width:6.329380px;}
._f_c00356{width:7.512326px;}
._16_c00356{width:8.646811px;}
._4_c00356{width:9.647057px;}
._b_c00356{width:11.134887px;}
._0_c00356{width:12.599697px;}
._18_c00356{width:13.800211px;}
._6_c00356{width:15.665374px;}
._e_c00356{width:16.988677px;}
._1b_c00356{width:18.102868px;}
._c_c00356{width:19.372500px;}
._13_c00356{width:20.916121px;}
._17_c00356{width:21.955318px;}
._9_c00356{width:22.963318px;}
._a_c00356{width:24.827755px;}
._11_c00356{width:26.507008px;}
._12_c00356{width:28.479695px;}
._10_c00356{width:31.697360px;}
.fc0_c00356{color:transparent;}
.fs5_c00356{font-size:71.250000px;}
.fsb_c00356{font-size:75.000000px;}
.fsd_c00356{font-size:75.750000px;}
.fs8_c00356{font-size:76.500000px;}
.fs9_c00356{font-size:78.000000px;}
.fs1_c00356{font-size:78.750000px;}
.fs0_c00356{font-size:79.500000px;}
.fsf_c00356{font-size:80.250000px;}
.fs4_c00356{font-size:81.000000px;}
.fs7_c00356{font-size:81.750000px;}
.fs6_c00356{font-size:82.500000px;}
.fs3_c00356{font-size:84.000000px;}
.fsa_c00356{font-size:84.750000px;}
.fse_c00356{font-size:88.500000px;}
.fsc_c00356{font-size:101.250000px;}
.fs2_c00356{font-size:115.500000px;}
.y0_c00356{bottom:0.000000px;}
.y2b_c00356{bottom:198.719355px;}
.y2c_c00356{bottom:198.719535px;}
.y2a_c00356{bottom:228.961365px;}
.y29_c00356{bottom:258.480900px;}
.y27_c00356{bottom:288.358380px;}
.y28_c00356{bottom:288.359850px;}
.y26_c00356{bottom:317.519535px;}
.y25_c00356{bottom:376.920600px;}
.y24_c00356{bottom:398.161050px;}
.y23_c00356{bottom:398.161155px;}
.y21_c00356{bottom:441.001005px;}
.y22_c00356{bottom:441.001050px;}
.y20_c00356{bottom:462.600285px;}
.y1e_c00356{bottom:505.078920px;}
.y1f_c00356{bottom:505.080000px;}
.y1d_c00356{bottom:526.319850px;}
.y1b_c00356{bottom:547.560270px;}
.y1c_c00356{bottom:547.560750px;}
.y19_c00356{bottom:590.039865px;}
.y1a_c00356{bottom:590.039985px;}
.y18_c00356{bottom:611.639145px;}
.y17_c00356{bottom:632.159385px;}
.y15_c00356{bottom:653.399850px;}
.y16_c00356{bottom:653.400285px;}
.y14_c00356{bottom:674.640750px;}
.y13_c00356{bottom:674.641140px;}
.y12_c00356{bottom:696.240420px;}
.y11_c00356{bottom:696.240735px;}
.y10_c00356{bottom:756.000180px;}
.ye_c00356{bottom:785.519205px;}
.yf_c00356{bottom:785.519715px;}
.yd_c00356{bottom:815.759130px;}
.yc_c00356{bottom:844.920270px;}
.yb_c00356{bottom:875.160180px;}
.y9_c00356{bottom:904.678230px;}
.ya_c00356{bottom:904.679715px;}
.y8_c00356{bottom:934.920255px;}
.y7_c00356{bottom:964.439775px;}
.y6_c00356{bottom:994.319505px;}
.y5_c00356{bottom:1054.081050px;}
.y4_c00356{bottom:1075.680720px;}
.y3_c00356{bottom:1117.800570px;}
.y2_c00356{bottom:1117.800960px;}
.y1_c00356{bottom:1139.400240px;}
.h7_c00356{height:74.311523px;}
.h12_c00356{height:74.344482px;}
.ha_c00356{height:75.080566px;}
.hc_c00356{height:76.552734px;}
.h2_c00356{height:77.288818px;}
.hb_c00356{height:77.986084px;}
.h1_c00356{height:78.024902px;}
.hf_c00356{height:78.222656px;}
.h14_c00356{height:78.760986px;}
.h6_c00356{height:80.121094px;}
.h9_c00356{height:80.233154px;}
.h11_c00356{height:80.969238px;}
.h8_c00356{height:81.533203px;}
.h5_c00356{height:81.632812px;}
.he_c00356{height:83.177490px;}
.hd_c00356{height:83.756836px;}
.h13_c00356{height:87.462891px;}
.h4_c00356{height:87.609375px;}
.h10_c00356{height:105.600586px;}
.h3_c00356{height:120.462891px;}
.h0_c00356{height:1263.000000px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x13_c00356{left:138.954420px;}
.x12_c00356{left:140.038680px;}
.x23_c00356{left:192.599445px;}
.x1a_c00356{left:193.679745px;}
.x3_c00356{left:194.759955px;}
.x1_c00356{left:195.838950px;}
.x14_c00356{left:216.359250px;}
.x2_c00356{left:226.078785px;}
.x7_c00356{left:263.159385px;}
.x8_c00356{left:287.278800px;}
.x4_c00356{left:300.599100px;}
.x5_c00356{left:306.719535px;}
.x6_c00356{left:320.399235px;}
.x9_c00356{left:332.999385px;}
.x1f_c00356{left:341.639700px;}
.x20_c00356{left:357.118785px;}
.xa_c00356{left:401.399235px;}
.x24_c00356{left:416.159820px;}
.x25_c00356{left:442.798920px;}
.x17_c00356{left:448.919535px;}
.x1b_c00356{left:462.599070px;}
.x18_c00356{left:468.358665px;}
.x1c_c00356{left:474.479235px;}
.xb_c00356{left:476.998950px;}
.x26_c00356{left:478.798515px;}
.x27_c00356{left:484.559685px;}
.x28_c00356{left:490.319235px;}
.x19_c00356{left:492.479685px;}
.x15_c00356{left:507.958920px;}
.xc_c00356{left:532.798515px;}
.x16_c00356{left:535.679070px;}
.xd_c00356{left:595.799520px;}
.xe_c00356{left:619.559685px;}
.x2c_c00356{left:654.479685px;}
.x1d_c00356{left:667.439250px;}
.x29_c00356{left:672.478635px;}
.x2d_c00356{left:682.199850px;}
.x1e_c00356{left:684.719520px;}
.xf_c00356{left:687.959385px;}
.x2a_c00356{left:700.559685px;}
.x10_c00356{left:703.438620px;}
.x21_c00356{left:748.080000px;}
.x22_c00356{left:753.839535px;}
.x11_c00356{left:766.078770px;}
.x2b_c00356{left:769.318815px;}
@media print{
.v1_c00356{vertical-align:-1.274240pt;}
.v0_c00356{vertical-align:0.000000pt;}
.ls12_c00356{letter-spacing:-11.498400pt;}
.ls10_c00356{letter-spacing:-8.353400pt;}
.ls16_c00356{letter-spacing:-6.734700pt;}
.ls19_c00356{letter-spacing:-5.475980pt;}
.ls14_c00356{letter-spacing:-5.383000pt;}
.ls13_c00356{letter-spacing:-4.711700pt;}
.lsf_c00356{letter-spacing:-4.641267pt;}
.lsb_c00356{letter-spacing:-4.197600pt;}
.ls18_c00356{letter-spacing:-4.038300pt;}
.ls17_c00356{letter-spacing:-3.841247pt;}
.lsd_c00356{letter-spacing:-3.760173pt;}
.ls8_c00356{letter-spacing:-3.367000pt;}
.ls4_c00356{letter-spacing:-2.695000pt;}
.ls15_c00356{letter-spacing:-2.565333pt;}
.ls1b_c00356{letter-spacing:-2.406413pt;}
.lsa_c00356{letter-spacing:-2.160000pt;}
.ls6_c00356{letter-spacing:-2.015300pt;}
.ls3_c00356{letter-spacing:-1.399907pt;}
.ls5_c00356{letter-spacing:-1.344000pt;}
.lse_c00356{letter-spacing:-0.763200pt;}
.ls7_c00356{letter-spacing:-0.672000pt;}
.ls9_c00356{letter-spacing:0.000000pt;}
.ls2_c00356{letter-spacing:0.672000pt;}
.ls0_c00356{letter-spacing:1.344000pt;}
.ls11_c00356{letter-spacing:2.717733pt;}
.ls1a_c00356{letter-spacing:3.374067pt;}
.ls1_c00356{letter-spacing:6.055000pt;}
.lsc_c00356{letter-spacing:9.867967pt;}
.ws0_c00356{word-spacing:0.000000pt;}
._1c_c00356{margin-left:-28.278453pt;}
._1a_c00356{margin-left:-11.574931pt;}
._19_c00356{margin-left:-9.440846pt;}
._1d_c00356{margin-left:-8.295162pt;}
._8_c00356{margin-left:-6.287185pt;}
._15_c00356{margin-left:-4.025215pt;}
._14_c00356{margin-left:-2.546762pt;}
._1_c00356{margin-left:-0.902677pt;}
._7_c00356{width:1.171154pt;}
._3_c00356{width:2.456785pt;}
._d_c00356{width:3.630523pt;}
._2_c00356{width:4.592377pt;}
._5_c00356{width:5.626115pt;}
._f_c00356{width:6.677623pt;}
._16_c00356{width:7.686054pt;}
._4_c00356{width:8.575162pt;}
._b_c00356{width:9.897677pt;}
._0_c00356{width:11.199731pt;}
._18_c00356{width:12.266854pt;}
._6_c00356{width:13.924777pt;}
._e_c00356{width:15.101046pt;}
._1b_c00356{width:16.091438pt;}
._c_c00356{width:17.220000pt;}
._13_c00356{width:18.592108pt;}
._17_c00356{width:19.515838pt;}
._9_c00356{width:20.411838pt;}
._a_c00356{width:22.069115pt;}
._11_c00356{width:23.561785pt;}
._12_c00356{width:25.315285pt;}
._10_c00356{width:28.175431pt;}
.fs5_c00356{font-size:63.333333pt;}
.fsb_c00356{font-size:66.666667pt;}
.fsd_c00356{font-size:67.333333pt;}
.fs8_c00356{font-size:68.000000pt;}
.fs9_c00356{font-size:69.333333pt;}
.fs1_c00356{font-size:70.000000pt;}
.fs0_c00356{font-size:70.666667pt;}
.fsf_c00356{font-size:71.333333pt;}
.fs4_c00356{font-size:72.000000pt;}
.fs7_c00356{font-size:72.666667pt;}
.fs6_c00356{font-size:73.333333pt;}
.fs3_c00356{font-size:74.666667pt;}
.fsa_c00356{font-size:75.333333pt;}
.fse_c00356{font-size:78.666667pt;}
.fsc_c00356{font-size:90.000000pt;}
.fs2_c00356{font-size:102.666667pt;}
.y0_c00356{bottom:0.000000pt;}
.y2b_c00356{bottom:176.639427pt;}
.y2c_c00356{bottom:176.639587pt;}
.y2a_c00356{bottom:203.521213pt;}
.y29_c00356{bottom:229.760800pt;}
.y27_c00356{bottom:256.318560pt;}
.y28_c00356{bottom:256.319867pt;}
.y26_c00356{bottom:282.239587pt;}
.y25_c00356{bottom:335.040533pt;}
.y24_c00356{bottom:353.920933pt;}
.y23_c00356{bottom:353.921027pt;}
.y21_c00356{bottom:392.000893pt;}
.y22_c00356{bottom:392.000933pt;}
.y20_c00356{bottom:411.200253pt;}
.y1e_c00356{bottom:448.959040pt;}
.y1f_c00356{bottom:448.960000pt;}
.y1d_c00356{bottom:467.839867pt;}
.y1b_c00356{bottom:486.720240pt;}
.y1c_c00356{bottom:486.720667pt;}
.y19_c00356{bottom:524.479880pt;}
.y1a_c00356{bottom:524.479987pt;}
.y18_c00356{bottom:543.679240pt;}
.y17_c00356{bottom:561.919453pt;}
.y15_c00356{bottom:580.799867pt;}
.y16_c00356{bottom:580.800253pt;}
.y14_c00356{bottom:599.680667pt;}
.y13_c00356{bottom:599.681013pt;}
.y12_c00356{bottom:618.880373pt;}
.y11_c00356{bottom:618.880653pt;}
.y10_c00356{bottom:672.000160pt;}
.ye_c00356{bottom:698.239293pt;}
.yf_c00356{bottom:698.239747pt;}
.yd_c00356{bottom:725.119227pt;}
.yc_c00356{bottom:751.040240pt;}
.yb_c00356{bottom:777.920160pt;}
.y9_c00356{bottom:804.158427pt;}
.ya_c00356{bottom:804.159747pt;}
.y8_c00356{bottom:831.040227pt;}
.y7_c00356{bottom:857.279800pt;}
.y6_c00356{bottom:883.839560pt;}
.y5_c00356{bottom:936.960933pt;}
.y4_c00356{bottom:956.160640pt;}
.y3_c00356{bottom:993.600507pt;}
.y2_c00356{bottom:993.600853pt;}
.y1_c00356{bottom:1012.800213pt;}
.h7_c00356{height:66.054688pt;}
.h12_c00356{height:66.083984pt;}
.ha_c00356{height:66.738281pt;}
.hc_c00356{height:68.046875pt;}
.h2_c00356{height:68.701172pt;}
.hb_c00356{height:69.320964pt;}
.h1_c00356{height:69.355469pt;}
.hf_c00356{height:69.531250pt;}
.h14_c00356{height:70.009766pt;}
.h6_c00356{height:71.218750pt;}
.h9_c00356{height:71.318359pt;}
.h11_c00356{height:71.972656pt;}
.h8_c00356{height:72.473958pt;}
.h5_c00356{height:72.562500pt;}
.he_c00356{height:73.935547pt;}
.hd_c00356{height:74.450521pt;}
.h13_c00356{height:77.744792pt;}
.h4_c00356{height:77.875000pt;}
.h10_c00356{height:93.867188pt;}
.h3_c00356{height:107.078125pt;}
.h0_c00356{height:1122.666667pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x13_c00356{left:123.515040pt;}
.x12_c00356{left:124.478827pt;}
.x23_c00356{left:171.199507pt;}
.x1a_c00356{left:172.159773pt;}
.x3_c00356{left:173.119960pt;}
.x1_c00356{left:174.079067pt;}
.x14_c00356{left:192.319333pt;}
.x2_c00356{left:200.958920pt;}
.x7_c00356{left:233.919453pt;}
.x8_c00356{left:255.358933pt;}
.x4_c00356{left:267.199200pt;}
.x5_c00356{left:272.639587pt;}
.x6_c00356{left:284.799320pt;}
.x9_c00356{left:295.999453pt;}
.x1f_c00356{left:303.679733pt;}
.x20_c00356{left:317.438920pt;}
.xa_c00356{left:356.799320pt;}
.x24_c00356{left:369.919840pt;}
.x25_c00356{left:393.599040pt;}
.x17_c00356{left:399.039587pt;}
.x1b_c00356{left:411.199173pt;}
.x18_c00356{left:416.318813pt;}
.x1c_c00356{left:421.759320pt;}
.xb_c00356{left:423.999067pt;}
.x26_c00356{left:425.598680pt;}
.x27_c00356{left:430.719720pt;}
.x28_c00356{left:435.839320pt;}
.x19_c00356{left:437.759720pt;}
.x15_c00356{left:451.519040pt;}
.xc_c00356{left:473.598680pt;}
.x16_c00356{left:476.159173pt;}
.xd_c00356{left:529.599573pt;}
.xe_c00356{left:550.719720pt;}
.x2c_c00356{left:581.759720pt;}
.x1d_c00356{left:593.279333pt;}
.x29_c00356{left:597.758787pt;}
.x2d_c00356{left:606.399867pt;}
.x1e_c00356{left:608.639573pt;}
.xf_c00356{left:611.519453pt;}
.x2a_c00356{left:622.719720pt;}
.x10_c00356{left:625.278773pt;}
.x21_c00356{left:664.960000pt;}
.x22_c00356{left:670.079587pt;}
.x11_c00356{left:680.958907pt;}
.x2b_c00356{left:683.838947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_300ce7a9500f08e6524b55a8.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_758374ac58dae1c91f3bb73c.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.364746;font-style:normal;font-weight:normal;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_9a53110597855f7bad0e3125.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00357;src:url('chunks/assets/font_2b6adb1a8871312358d04d47.woff2')format("woff");}.ff5_c00357{font-family:ff5_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:ff6_c00357;src:url('chunks/assets/font_259519857b02ecc4e8a3a436.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00357;src:url('chunks/assets/font_dc862521bb902b70e54b7a3a.woff2')format("woff");}.ff7_c00357{font-family:ff7_c00357;line-height:1.364746;font-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_c00357{transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162281,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172414,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m21_c00357{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m19_c00357{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m1f_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);}
.m4_c00357{transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.372807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372807,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435714,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.467593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467593,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.491379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491379,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492857,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661458,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(1.613281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.613281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.613281,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls1d_c00357{letter-spacing:-42.412935px;}
.ls17_c00357{letter-spacing:-12.028500px;}
.ls18_c00357{letter-spacing:-11.094825px;}
.ls12_c00357{letter-spacing:-10.921433px;}
.lsb_c00357{letter-spacing:-10.864950px;}
.ls14_c00357{letter-spacing:-8.175038px;}
.ls1c_c00357{letter-spacing:-7.670880px;}
.ls1b_c00357{letter-spacing:-7.632293px;}
.lsd_c00357{letter-spacing:-7.051275px;}
.ls16_c00357{letter-spacing:-6.686775px;}
.lsa_c00357{letter-spacing:-6.685875px;}
.ls1e_c00357{letter-spacing:-6.240150px;}
.ls10_c00357{letter-spacing:-5.945625px;}
.ls15_c00357{letter-spacing:-5.779800px;}
.ls8_c00357{letter-spacing:-5.196713px;}
.ls2b_c00357{letter-spacing:-5.151248px;}
.ls19_c00357{letter-spacing:-4.854675px;}
.lsf_c00357{letter-spacing:-4.456463px;}
.ls4_c00357{letter-spacing:-3.717000px;}
.ls3_c00357{letter-spacing:-2.968875px;}
.ls21_c00357{letter-spacing:-2.896163px;}
.ls13_c00357{letter-spacing:-2.317500px;}
.ls2c_c00357{letter-spacing:-2.315790px;}
.ls5_c00357{letter-spacing:-2.229413px;}
.ls6_c00357{letter-spacing:-1.489163px;}
.ls25_c00357{letter-spacing:-0.762713px;}
.ls7_c00357{letter-spacing:-0.740250px;}
.lsc_c00357{letter-spacing:0.000000px;}
.ls1a_c00357{letter-spacing:0.284400px;}
.ls2_c00357{letter-spacing:0.740250px;}
.ls22_c00357{letter-spacing:0.748800px;}
.ls23_c00357{letter-spacing:1.105020px;}
.ls0_c00357{letter-spacing:1.489163px;}
.ls11_c00357{letter-spacing:2.430000px;}
.ls27_c00357{letter-spacing:2.774153px;}
.ls20_c00357{letter-spacing:3.423000px;}
.ls2a_c00357{letter-spacing:3.607875px;}
.lse_c00357{letter-spacing:4.794075px;}
.ls24_c00357{letter-spacing:5.997810px;}
.ls1_c00357{letter-spacing:6.685875px;}
.ls28_c00357{letter-spacing:6.750900px;}
.ls9_c00357{letter-spacing:6.791048px;}
.ls26_c00357{letter-spacing:8.249850px;}
.ls1f_c00357{letter-spacing:9.749925px;}
.ls29_c00357{letter-spacing:9.750000px;}
.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;}
._19_c00357{margin-left:-8.730790px;}
._11_c00357{margin-left:-7.202312px;}
._c_c00357{margin-left:-5.271050px;}
._d_c00357{margin-left:-3.403976px;}
._6_c00357{margin-left:-2.391117px;}
._b_c00357{margin-left:-1.161681px;}
._f_c00357{width:1.343787px;}
._5_c00357{width:2.391177px;}
._7_c00357{width:4.281593px;}
._4_c00357{width:5.743772px;}
._1_c00357{width:7.174155px;}
._0_c00357{width:9.024245px;}
._3_c00357{width:10.214440px;}
._2_c00357{width:11.843272px;}
._9_c00357{width:13.591953px;}
._e_c00357{width:15.242880px;}
._14_c00357{width:16.976167px;}
._8_c00357{width:18.396357px;}
._16_c00357{width:19.609760px;}
._12_c00357{width:21.120988px;}
._a_c00357{width:22.443304px;}
._17_c00357{width:23.520203px;}
._13_c00357{width:24.525454px;}
._18_c00357{width:25.619678px;}
._10_c00357{width:53.553536px;}
._15_c00357{width:159.638075px;}
.fc0_c00357{color:transparent;}
.fs10_c00357{font-size:21.750000px;}
.fs14_c00357{font-size:26.250000px;}
.fsf_c00357{font-size:36.000000px;}
.fse_c00357{font-size:36.750000px;}
.fs1a_c00357{font-size:37.500000px;}
.fs13_c00357{font-size:38.250000px;}
.fs16_c00357{font-size:39.000000px;}
.fs18_c00357{font-size:39.750000px;}
.fsd_c00357{font-size:40.500000px;}
.fs15_c00357{font-size:41.250000px;}
.fs17_c00357{font-size:42.000000px;}
.fs19_c00357{font-size:42.750000px;}
.fs12_c00357{font-size:43.500000px;}
.fs11_c00357{font-size:48.000000px;}
.fs6_c00357{font-size:72.750000px;}
.fs9_c00357{font-size:74.250000px;}
.fsa_c00357{font-size:75.000000px;}
.fs1_c00357{font-size:77.250000px;}
.fsb_c00357{font-size:78.000000px;}
.fs0_c00357{font-size:78.750000px;}
.fs7_c00357{font-size:80.250000px;}
.fs8_c00357{font-size:81.000000px;}
.fs3_c00357{font-size:81.750000px;}
.fs5_c00357{font-size:82.500000px;}
.fs4_c00357{font-size:83.250000px;}
.fs2_c00357{font-size:84.750000px;}
.fsc_c00357{font-size:85.500000px;}
.y0_c00357{bottom:0.000000px;}
.y2d_c00357{bottom:184.679445px;}
.y2b_c00357{bottom:215.279595px;}
.y2c_c00357{bottom:215.279850px;}
.y2a_c00357{bottom:244.438635px;}
.y29_c00357{bottom:244.439535px;}
.y27_c00357{bottom:274.318545px;}
.y28_c00357{bottom:274.319250px;}
.y26_c00357{bottom:303.479685px;}
.y25_c00357{bottom:303.480105px;}
.y24_c00357{bottom:332.999640px;}
.y23_c00357{bottom:362.160780px;}
.y22_c00357{bottom:392.759085px;}
.y21_c00357{bottom:422.639700px;}
.y20_c00357{bottom:429.119385px;}
.y1f_c00357{bottom:482.039985px;}
.y1e_c00357{bottom:482.040075px;}
.y1d_c00357{bottom:541.799520px;}
.y1c_c00357{bottom:541.800585px;}
.y1b_c00357{bottom:571.680315px;}
.y19_c00357{bottom:601.199040px;}
.y1a_c00357{bottom:601.199850px;}
.y18_c00357{bottom:631.078770px;}
.y17_c00357{bottom:631.079070px;}
.y16_c00357{bottom:660.600405px;}
.y15_c00357{bottom:690.480120px;}
.y14_c00357{bottom:720.359850px;}
.y13_c00357{bottom:720.360810px;}
.y12_c00357{bottom:752.039985px;}
.y11_c00357{bottom:752.040000px;}
.y10_c00357{bottom:779.760090px;}
.yf_c00357{bottom:810.000000px;}
.ye_c00357{bottom:810.000225px;}
.yd_c00357{bottom:869.399490px;}
.yc_c00357{bottom:899.279205px;}
.yb_c00357{bottom:899.279520px;}
.ya_c00357{bottom:928.799055px;}
.y9_c00357{bottom:959.038965px;}
.y8_c00357{bottom:959.039775px;}
.y7_c00357{bottom:988.919490px;}
.y6_c00357{bottom:988.920390px;}
.y4_c00357{bottom:1018.799355px;}
.y5_c00357{bottom:1018.800105px;}
.y3_c00357{bottom:1048.679070px;}
.y2_c00357{bottom:1107.720015px;}
.y1_c00357{bottom:1137.959925px;}
.h12_c00357{height:22.684570px;}
.h16_c00357{height:27.377930px;}
.h1c_c00357{height:37.060547px;}
.h11_c00357{height:37.546875px;}
.h10_c00357{height:38.329102px;}
.h18_c00357{height:38.542969px;}
.h1a_c00357{height:39.284180px;}
.h15_c00357{height:39.893555px;}
.hf_c00357{height:40.025391px;}
.h17_c00357{height:40.766602px;}
.h19_c00357{height:41.507812px;}
.h14_c00357{height:42.990234px;}
.h1b_c00357{height:44.586914px;}
.h13_c00357{height:50.062500px;}
.h2_c00357{height:75.778931px;}
.h7_c00357{height:75.875977px;}
.hc_c00357{height:76.552734px;}
.h1_c00357{height:77.288818px;}
.ha_c00357{height:77.440430px;}
.hb_c00357{height:78.222656px;}
.h8_c00357{height:78.760986px;}
.h1d_c00357{height:79.497070px;}
.h4_c00357{height:80.233154px;}
.h6_c00357{height:80.969238px;}
.h9_c00357{height:81.632812px;}
.h5_c00357{height:81.705322px;}
.he_c00357{height:83.177490px;}
.h3_c00357{height:83.756836px;}
.hd_c00357{height:84.498047px;}
.h0_c00357{height:1263.000000px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:137.158815px;}
.x1_c00357{left:138.599100px;}
.x28_c00357{left:157.679100px;}
.x14_c00357{left:161.639835px;}
.x37_c00357{left:187.559685px;}
.x3_c00357{left:199.439685px;}
.x38_c00357{left:201.598500px;}
.x15_c00357{left:204.479250px;}
.x2f_c00357{left:206.998950px;}
.x26_c00357{left:218.519685px;}
.x29_c00357{left:228.598500px;}
.x20_c00357{left:245.158785px;}
.x27_c00357{left:251.279250px;}
.x30_c00357{left:252.719535px;}
.x16_c00357{left:258.838515px;}
.x17_c00357{left:281.519100px;}
.x21_c00357{left:304.559100px;}
.x24_c00357{left:309.959385px;}
.x39_c00357{left:311.759100px;}
.xe_c00357{left:312.838515px;}
.x18_c00357{left:321.119385px;}
.x25_c00357{left:330.479685px;}
.xf_c00357{left:334.078785px;}
.x19_c00357{left:345.599700px;}
.x2a_c00357{left:373.319850px;}
.x3a_c00357{left:384.838950px;}
.x8_c00357{left:420.479235px;}
.x4_c00357{left:421.919535px;}
.x1e_c00357{left:432.000000px;}
.x9_c00357{left:435.958335px;}
.x2b_c00357{left:438.118785px;}
.x1a_c00357{left:439.918350px;}
.x5_c00357{left:442.078815px;}
.x1f_c00357{left:449.639700px;}
.x1b_c00357{left:453.238770px;}
.xc_c00357{left:457.198785px;}
.x2c_c00357{left:460.438665px;}
.xd_c00357{left:482.758530px;}
.x33_c00357{left:483.839535px;}
.x12_c00357{left:498.239220px;}
.x34_c00357{left:500.399820px;}
.x13_c00357{left:514.438665px;}
.x6_c00357{left:516.958335px;}
.x35_c00357{left:564.839535px;}
.x7_c00357{left:578.878320px;}
.x36_c00357{left:582.119985px;}
.x22_c00357{left:583.558635px;}
.x23_c00357{left:600.479685px;}
.x1c_c00357{left:618.119385px;}
.xa_c00357{left:624.958335px;}
.x1d_c00357{left:636.479235px;}
.xb_c00357{left:646.198785px;}
.x31_c00357{left:656.999400px;}
.x32_c00357{left:676.079355px;}
.x2d_c00357{left:681.118785px;}
.x2e_c00357{left:698.399235px;}
.x10_c00357{left:708.838950px;}
.x11_c00357{left:722.879520px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls1d_c00357{letter-spacing:-37.700387pt;}
.ls17_c00357{letter-spacing:-10.692000pt;}
.ls18_c00357{letter-spacing:-9.862067pt;}
.ls12_c00357{letter-spacing:-9.707940pt;}
.lsb_c00357{letter-spacing:-9.657733pt;}
.ls14_c00357{letter-spacing:-7.266700pt;}
.ls1c_c00357{letter-spacing:-6.818560pt;}
.ls1b_c00357{letter-spacing:-6.784260pt;}
.lsd_c00357{letter-spacing:-6.267800pt;}
.ls16_c00357{letter-spacing:-5.943800pt;}
.lsa_c00357{letter-spacing:-5.943000pt;}
.ls1e_c00357{letter-spacing:-5.546800pt;}
.ls10_c00357{letter-spacing:-5.285000pt;}
.ls15_c00357{letter-spacing:-5.137600pt;}
.ls8_c00357{letter-spacing:-4.619300pt;}
.ls2b_c00357{letter-spacing:-4.578887pt;}
.ls19_c00357{letter-spacing:-4.315267pt;}
.lsf_c00357{letter-spacing:-3.961300pt;}
.ls4_c00357{letter-spacing:-3.304000pt;}
.ls3_c00357{letter-spacing:-2.639000pt;}
.ls21_c00357{letter-spacing:-2.574367pt;}
.ls13_c00357{letter-spacing:-2.060000pt;}
.ls2c_c00357{letter-spacing:-2.058480pt;}
.ls5_c00357{letter-spacing:-1.981700pt;}
.ls6_c00357{letter-spacing:-1.323700pt;}
.ls25_c00357{letter-spacing:-0.677967pt;}
.ls7_c00357{letter-spacing:-0.658000pt;}
.lsc_c00357{letter-spacing:0.000000pt;}
.ls1a_c00357{letter-spacing:0.252800pt;}
.ls2_c00357{letter-spacing:0.658000pt;}
.ls22_c00357{letter-spacing:0.665600pt;}
.ls23_c00357{letter-spacing:0.982240pt;}
.ls0_c00357{letter-spacing:1.323700pt;}
.ls11_c00357{letter-spacing:2.160000pt;}
.ls27_c00357{letter-spacing:2.465913pt;}
.ls20_c00357{letter-spacing:3.042667pt;}
.ls2a_c00357{letter-spacing:3.207000pt;}
.lse_c00357{letter-spacing:4.261400pt;}
.ls24_c00357{letter-spacing:5.331387pt;}
.ls1_c00357{letter-spacing:5.943000pt;}
.ls28_c00357{letter-spacing:6.000800pt;}
.ls9_c00357{letter-spacing:6.036487pt;}
.ls26_c00357{letter-spacing:7.333200pt;}
.ls1f_c00357{letter-spacing:8.666600pt;}
.ls29_c00357{letter-spacing:8.666667pt;}
.ws0_c00357{word-spacing:0.000000pt;}
._19_c00357{margin-left:-7.760702pt;}
._11_c00357{margin-left:-6.402055pt;}
._c_c00357{margin-left:-4.685377pt;}
._d_c00357{margin-left:-3.025757pt;}
._6_c00357{margin-left:-2.125438pt;}
._b_c00357{margin-left:-1.032606pt;}
._f_c00357{width:1.194477pt;}
._5_c00357{width:2.125491pt;}
._7_c00357{width:3.805860pt;}
._4_c00357{width:5.105575pt;}
._1_c00357{width:6.377026pt;}
._0_c00357{width:8.021551pt;}
._3_c00357{width:9.079502pt;}
._2_c00357{width:10.527353pt;}
._9_c00357{width:12.081736pt;}
._e_c00357{width:13.549226pt;}
._14_c00357{width:15.089926pt;}
._8_c00357{width:16.352317pt;}
._16_c00357{width:17.430898pt;}
._12_c00357{width:18.774211pt;}
._a_c00357{width:19.949604pt;}
._17_c00357{width:20.906847pt;}
._13_c00357{width:21.800404pt;}
._18_c00357{width:22.773047pt;}
._10_c00357{width:47.603143pt;}
._15_c00357{width:141.900511pt;}
.fs10_c00357{font-size:19.333333pt;}
.fs14_c00357{font-size:23.333333pt;}
.fsf_c00357{font-size:32.000000pt;}
.fse_c00357{font-size:32.666667pt;}
.fs1a_c00357{font-size:33.333333pt;}
.fs13_c00357{font-size:34.000000pt;}
.fs16_c00357{font-size:34.666667pt;}
.fs18_c00357{font-size:35.333333pt;}
.fsd_c00357{font-size:36.000000pt;}
.fs15_c00357{font-size:36.666667pt;}
.fs17_c00357{font-size:37.333333pt;}
.fs19_c00357{font-size:38.000000pt;}
.fs12_c00357{font-size:38.666667pt;}
.fs11_c00357{font-size:42.666667pt;}
.fs6_c00357{font-size:64.666667pt;}
.fs9_c00357{font-size:66.000000pt;}
.fsa_c00357{font-size:66.666667pt;}
.fs1_c00357{font-size:68.666667pt;}
.fsb_c00357{font-size:69.333333pt;}
.fs0_c00357{font-size:70.000000pt;}
.fs7_c00357{font-size:71.333333pt;}
.fs8_c00357{font-size:72.000000pt;}
.fs3_c00357{font-size:72.666667pt;}
.fs5_c00357{font-size:73.333333pt;}
.fs4_c00357{font-size:74.000000pt;}
.fs2_c00357{font-size:75.333333pt;}
.fsc_c00357{font-size:76.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y2d_c00357{bottom:164.159507pt;}
.y2b_c00357{bottom:191.359640pt;}
.y2c_c00357{bottom:191.359867pt;}
.y2a_c00357{bottom:217.278787pt;}
.y29_c00357{bottom:217.279587pt;}
.y27_c00357{bottom:243.838707pt;}
.y28_c00357{bottom:243.839333pt;}
.y26_c00357{bottom:269.759720pt;}
.y25_c00357{bottom:269.760093pt;}
.y24_c00357{bottom:295.999680pt;}
.y23_c00357{bottom:321.920693pt;}
.y22_c00357{bottom:349.119187pt;}
.y21_c00357{bottom:375.679733pt;}
.y20_c00357{bottom:381.439453pt;}
.y1f_c00357{bottom:428.479987pt;}
.y1e_c00357{bottom:428.480067pt;}
.y1d_c00357{bottom:481.599573pt;}
.y1c_c00357{bottom:481.600520pt;}
.y1b_c00357{bottom:508.160280pt;}
.y19_c00357{bottom:534.399147pt;}
.y1a_c00357{bottom:534.399867pt;}
.y18_c00357{bottom:560.958907pt;}
.y17_c00357{bottom:560.959173pt;}
.y16_c00357{bottom:587.200360pt;}
.y15_c00357{bottom:613.760107pt;}
.y14_c00357{bottom:640.319867pt;}
.y13_c00357{bottom:640.320720pt;}
.y12_c00357{bottom:668.479987pt;}
.y11_c00357{bottom:668.480000pt;}
.y10_c00357{bottom:693.120080pt;}
.yf_c00357{bottom:720.000000pt;}
.ye_c00357{bottom:720.000200pt;}
.yd_c00357{bottom:772.799547pt;}
.yc_c00357{bottom:799.359293pt;}
.yb_c00357{bottom:799.359573pt;}
.ya_c00357{bottom:825.599160pt;}
.y9_c00357{bottom:852.479080pt;}
.y8_c00357{bottom:852.479800pt;}
.y7_c00357{bottom:879.039547pt;}
.y6_c00357{bottom:879.040347pt;}
.y4_c00357{bottom:905.599427pt;}
.y5_c00357{bottom:905.600093pt;}
.y3_c00357{bottom:932.159173pt;}
.y2_c00357{bottom:984.640013pt;}
.y1_c00357{bottom:1011.519933pt;}
.h12_c00357{height:20.164062pt;}
.h16_c00357{height:24.335938pt;}
.h1c_c00357{height:32.942708pt;}
.h11_c00357{height:33.375000pt;}
.h10_c00357{height:34.070312pt;}
.h18_c00357{height:34.260417pt;}
.h1a_c00357{height:34.919271pt;}
.h15_c00357{height:35.460938pt;}
.hf_c00357{height:35.578125pt;}
.h17_c00357{height:36.236979pt;}
.h19_c00357{height:36.895833pt;}
.h14_c00357{height:38.213542pt;}
.h1b_c00357{height:39.632812pt;}
.h13_c00357{height:44.500000pt;}
.h2_c00357{height:67.359049pt;}
.h7_c00357{height:67.445312pt;}
.hc_c00357{height:68.046875pt;}
.h1_c00357{height:68.701172pt;}
.ha_c00357{height:68.835938pt;}
.hb_c00357{height:69.531250pt;}
.h8_c00357{height:70.009766pt;}
.h1d_c00357{height:70.664062pt;}
.h4_c00357{height:71.318359pt;}
.h6_c00357{height:71.972656pt;}
.h9_c00357{height:72.562500pt;}
.h5_c00357{height:72.626953pt;}
.he_c00357{height:73.935547pt;}
.h3_c00357{height:74.450521pt;}
.hd_c00357{height:75.109375pt;}
.h0_c00357{height:1122.666667pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:121.918947pt;}
.x1_c00357{left:123.199200pt;}
.x28_c00357{left:140.159200pt;}
.x14_c00357{left:143.679853pt;}
.x37_c00357{left:166.719720pt;}
.x3_c00357{left:177.279720pt;}
.x38_c00357{left:179.198667pt;}
.x15_c00357{left:181.759333pt;}
.x2f_c00357{left:183.999067pt;}
.x26_c00357{left:194.239720pt;}
.x29_c00357{left:203.198667pt;}
.x20_c00357{left:217.918920pt;}
.x27_c00357{left:223.359333pt;}
.x30_c00357{left:224.639587pt;}
.x16_c00357{left:230.078680pt;}
.x17_c00357{left:250.239200pt;}
.x21_c00357{left:270.719200pt;}
.x24_c00357{left:275.519453pt;}
.x39_c00357{left:277.119200pt;}
.xe_c00357{left:278.078680pt;}
.x18_c00357{left:285.439453pt;}
.x25_c00357{left:293.759720pt;}
.xf_c00357{left:296.958920pt;}
.x19_c00357{left:307.199733pt;}
.x2a_c00357{left:331.839867pt;}
.x3a_c00357{left:342.079067pt;}
.x8_c00357{left:373.759320pt;}
.x4_c00357{left:375.039587pt;}
.x1e_c00357{left:384.000000pt;}
.x9_c00357{left:387.518520pt;}
.x2b_c00357{left:389.438920pt;}
.x1a_c00357{left:391.038533pt;}
.x5_c00357{left:392.958947pt;}
.x1f_c00357{left:399.679733pt;}
.x1b_c00357{left:402.878907pt;}
.xc_c00357{left:406.398920pt;}
.x2c_c00357{left:409.278813pt;}
.xd_c00357{left:429.118693pt;}
.x33_c00357{left:430.079587pt;}
.x12_c00357{left:442.879307pt;}
.x34_c00357{left:444.799840pt;}
.x13_c00357{left:457.278813pt;}
.x6_c00357{left:459.518520pt;}
.x35_c00357{left:502.079587pt;}
.x7_c00357{left:514.558507pt;}
.x36_c00357{left:517.439987pt;}
.x22_c00357{left:518.718787pt;}
.x23_c00357{left:533.759720pt;}
.x1c_c00357{left:549.439453pt;}
.xa_c00357{left:555.518520pt;}
.x1d_c00357{left:565.759320pt;}
.xb_c00357{left:574.398920pt;}
.x31_c00357{left:583.999467pt;}
.x32_c00357{left:600.959427pt;}
.x2d_c00357{left:605.438920pt;}
.x2e_c00357{left:620.799320pt;}
.x10_c00357{left:630.079067pt;}
.x11_c00357{left:642.559573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb2a34a7e75e411cb1ae4bed.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_fc1410aa419d94fffba2aa87.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_8b50e63b48c34df24c83be21.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.364746;font-style:normal;font-weight:normal;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_9a293f04cc7dd23f32a0fba9.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_aaa5dddaea0be335eeede8ec.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00358;src:url('chunks/assets/font_4e0fdb993578cf8ce1e2af6a.woff2')format("woff");}.ff6_c00358{font-family:ff6_c00358;line-height:1.364746;font-style:normal;font-weight: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_c00358;src:url('chunks/assets/font_0016011fd6c21f57ea7650d6.woff2')format("woff");}.ff7_c00358{font-family:ff7_c00358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00358{transform:matrix(0.113839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113839,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.157188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157188,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174779,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.178922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178922,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186321,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{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);}
.m2_c00358{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m6_c00358{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m0_c00358{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290984,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{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_c00358{vertical-align:0.000000px;}
.ls24_c00358{letter-spacing:-15.106950px;}
.lsf_c00358{letter-spacing:-13.033703px;}
.ls22_c00358{letter-spacing:-12.687675px;}
.ls10_c00358{letter-spacing:-10.402875px;}
.ls2b_c00358{letter-spacing:-9.878400px;}
.ls2c_c00358{letter-spacing:-9.653873px;}
.ls20_c00358{letter-spacing:-8.175038px;}
.ls1b_c00358{letter-spacing:-7.486418px;}
.lsd_c00358{letter-spacing:-7.426125px;}
.ls12_c00358{letter-spacing:-7.195703px;}
.ls16_c00358{letter-spacing:-6.395453px;}
.ls21_c00358{letter-spacing:-6.000300px;}
.ls9_c00358{letter-spacing:-5.945625px;}
.ls18_c00358{letter-spacing:-5.594475px;}
.ls15_c00358{letter-spacing:-5.297400px;}
.lsa_c00358{letter-spacing:-5.196713px;}
.ls13_c00358{letter-spacing:-4.794225px;}
.lsc_c00358{letter-spacing:-4.456463px;}
.ls14_c00358{letter-spacing:-3.993975px;}
.ls3_c00358{letter-spacing:-3.717000px;}
.ls6_c00358{letter-spacing:-2.968875px;}
.ls2e_c00358{letter-spacing:-2.245620px;}
.ls5_c00358{letter-spacing:-2.229413px;}
.ls23_c00358{letter-spacing:-2.186190px;}
.ls1c_c00358{letter-spacing:-2.096100px;}
.ls27_c00358{letter-spacing:-1.897500px;}
.ls4_c00358{letter-spacing:-1.614218px;}
.lse_c00358{letter-spacing:-1.497600px;}
.ls7_c00358{letter-spacing:-1.489163px;}
.ls26_c00358{letter-spacing:-0.801698px;}
.ls11_c00358{letter-spacing:-0.793800px;}
.ls1f_c00358{letter-spacing:-0.779100px;}
.lsb_c00358{letter-spacing:-0.740250px;}
.ls8_c00358{letter-spacing:0.000000px;}
.ls17_c00358{letter-spacing:0.763200px;}
.ls29_c00358{letter-spacing:1.009650px;}
.ls25_c00358{letter-spacing:1.392300px;}
.ls1d_c00358{letter-spacing:1.501200px;}
.ls2d_c00358{letter-spacing:1.530323px;}
.ls2_c00358{letter-spacing:1.600500px;}
.ls1e_c00358{letter-spacing:2.029343px;}
.ls28_c00358{letter-spacing:4.670400px;}
.ls1_c00358{letter-spacing:4.794225px;}
.ls19_c00358{letter-spacing:6.441142px;}
.ls0_c00358{letter-spacing:8.914500px;}
.ls1a_c00358{letter-spacing:11.437500px;}
.ls2a_c00358{letter-spacing:39.696900px;}
.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;}
._9_c00358{margin-left:-36.267000px;}
._19_c00358{margin-left:-24.924422px;}
._16_c00358{margin-left:-17.879266px;}
._1e_c00358{margin-left:-12.252995px;}
._15_c00358{margin-left:-8.234457px;}
._1b_c00358{margin-left:-7.063652px;}
._6_c00358{margin-left:-5.693774px;}
._b_c00358{margin-left:-4.677869px;}
._1c_c00358{margin-left:-3.599514px;}
._e_c00358{margin-left:-2.546834px;}
._c_c00358{margin-left:-1.501242px;}
._a_c00358{width:1.928216px;}
._14_c00358{width:2.985739px;}
._f_c00358{width:4.457547px;}
._d_c00358{width:5.626078px;}
._5_c00358{width:7.083340px;}
._1_c00358{width:8.265570px;}
._2_c00358{width:9.401621px;}
._1d_c00358{width:10.408477px;}
._3_c00358{width:11.577676px;}
._0_c00358{width:12.607414px;}
._4_c00358{width:14.495884px;}
._11_c00358{width:15.572872px;}
._7_c00358{width:17.011070px;}
._17_c00358{width:18.264458px;}
._8_c00358{width:19.861300px;}
._18_c00358{width:21.471767px;}
._1f_c00358{width:22.630908px;}
._10_c00358{width:24.303067px;}
._12_c00358{width:26.083753px;}
._20_c00358{width:30.493976px;}
._13_c00358{width:33.396701px;}
._21_c00358{width:36.524517px;}
._1a_c00358{width:78.595974px;}
.fc0_c00358{color:transparent;}
.fsc_c00358{font-size:45.750000px;}
.fsd_c00358{font-size:53.250000px;}
.fsf_c00358{font-size:54.000000px;}
.fs12_c00358{font-size:58.500000px;}
.fs13_c00358{font-size:71.250000px;}
.fs4_c00358{font-size:72.750000px;}
.fsb_c00358{font-size:75.000000px;}
.fs10_c00358{font-size:75.750000px;}
.fs16_c00358{font-size:77.250000px;}
.fs8_c00358{font-size:78.000000px;}
.fs0_c00358{font-size:78.750000px;}
.fsa_c00358{font-size:79.500000px;}
.fs3_c00358{font-size:80.250000px;}
.fs9_c00358{font-size:81.000000px;}
.fs7_c00358{font-size:82.500000px;}
.fs1_c00358{font-size:83.250000px;}
.fs15_c00358{font-size:84.000000px;}
.fs14_c00358{font-size:84.313860px;}
.fs2_c00358{font-size:84.750000px;}
.fs11_c00358{font-size:88.500000px;}
.fs5_c00358{font-size:101.250000px;}
.fs6_c00358{font-size:115.500000px;}
.fse_c00358{font-size:153.000000px;}
.y0_c00358{bottom:0.000000px;}
.y2a_c00358{bottom:183.958950px;}
.y29_c00358{bottom:183.959100px;}
.y28_c00358{bottom:213.478635px;}
.y27_c00358{bottom:213.479400px;}
.y26_c00358{bottom:243.359115px;}
.y25_c00358{bottom:272.878650px;}
.y24_c00358{bottom:302.398185px;}
.y23_c00358{bottom:361.439055px;}
.y22_c00358{bottom:391.318770px;}
.y20_c00358{bottom:421.199385px;}
.y21_c00358{bottom:421.560285px;}
.y1f_c00358{bottom:451.080000px;}
.y1e_c00358{bottom:451.080090px;}
.y1d_c00358{bottom:481.678395px;}
.y1c_c00358{bottom:510.839535px;}
.y1b_c00358{bottom:510.839865px;}
.y1a_c00358{bottom:540.359385px;}
.y18_c00358{bottom:569.878185px;}
.y19_c00358{bottom:569.878920px;}
.y16_c00358{bottom:629.278560px;}
.y17_c00358{bottom:629.279250px;}
.y15_c00358{bottom:688.679625px;}
.y14_c00358{bottom:718.919535px;}
.y13_c00358{bottom:744.479235px;}
.y12_c00358{bottom:752.039985px;}
.y11_c00358{bottom:778.679070px;}
.y10_c00358{bottom:778.679625px;}
.yf_c00358{bottom:808.199160px;}
.ye_c00358{bottom:838.799565px;}
.yd_c00358{bottom:838.799655px;}
.yc_c00358{bottom:868.319190px;}
.yb_c00358{bottom:868.320075px;}
.ya_c00358{bottom:898.199805px;}
.y9_c00358{bottom:898.200825px;}
.y8_c00358{bottom:957.601875px;}
.y7_c00358{bottom:979.201170px;}
.y6_c00358{bottom:1000.079790px;}
.y5_c00358{bottom:1021.679070px;}
.y4_c00358{bottom:1080.720240px;}
.y2_c00358{bottom:1110.239025px;}
.y3_c00358{bottom:1110.239775px;}
.y1_c00358{bottom:1140.118740px;}
.he_c00358{height:47.715820px;}
.hf_c00358{height:52.625977px;}
.h11_c00358{height:56.320312px;}
.h17_c00358{height:57.814453px;}
.h18_c00358{height:74.311523px;}
.h5_c00358{height:75.875977px;}
.h9_c00358{height:76.552734px;}
.h1_c00358{height:77.288818px;}
.h1e_c00358{height:77.853516px;}
.h13_c00358{height:78.024902px;}
.hd_c00358{height:78.222656px;}
.h1d_c00358{height:78.568359px;}
.h4_c00358{height:78.760986px;}
.h12_c00358{height:79.004883px;}
.h1c_c00358{height:79.365234px;}
.h15_c00358{height:79.497070px;}
.hc_c00358{height:80.121094px;}
.h19_c00358{height:80.876953px;}
.h8_c00358{height:80.969238px;}
.h14_c00358{height:81.533203px;}
.hb_c00358{height:81.632812px;}
.h2_c00358{height:81.705322px;}
.h1b_c00358{height:83.015625px;}
.h3_c00358{height:83.177490px;}
.h1a_c00358{height:83.325807px;}
.ha_c00358{height:83.756836px;}
.h16_c00358{height:87.462891px;}
.h6_c00358{height:105.600586px;}
.h7_c00358{height:120.462891px;}
.h10_c00358{height:159.574219px;}
.h0_c00358{height:1263.000000px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.xf_c00358{left:135.711435px;}
.x1_c00358{left:137.158815px;}
.x1f_c00358{left:161.639100px;}
.x2_c00358{left:181.439250px;}
.xe_c00358{left:190.439250px;}
.x8_c00358{left:191.878950px;}
.x23_c00358{left:196.199850px;}
.x9_c00358{left:200.519100px;}
.xa_c00358{left:206.639700px;}
.x24_c00358{left:214.918950px;}
.x20_c00358{left:217.799535px;}
.xb_c00358{left:221.759535px;}
.x3_c00358{left:227.519100px;}
.x21_c00358{left:236.879535px;}
.x31_c00358{left:238.319850px;}
.x32_c00358{left:240.478635px;}
.x22_c00358{left:256.679700px;}
.x26_c00358{left:259.919535px;}
.x33_c00358{left:267.119385px;}
.x6_c00358{left:291.238785px;}
.x25_c00358{left:300.239850px;}
.x12_c00358{left:304.199850px;}
.x27_c00358{left:305.999385px;}
.x7_c00358{left:307.439685px;}
.x13_c00358{left:325.438635px;}
.x28_c00358{left:327.958350px;}
.x10_c00358{left:342.359850px;}
.x29_c00358{left:346.319850px;}
.x11_c00358{left:380.158785px;}
.x18_c00358{left:431.279850px;}
.x2a_c00358{left:439.559100px;}
.x2b_c00358{left:463.319235px;}
.x19_c00358{left:464.398635px;}
.x2c_c00358{left:481.319820px;}
.x14_c00358{left:496.439670px;}
.x2d_c00358{left:508.679070px;}
.x15_c00358{left:511.198785px;}
.x2e_c00358{left:540.718500px;}
.x34_c00358{left:551.159820px;}
.x35_c00358{left:568.438620px;}
.x2f_c00358{left:570.599070px;}
.x16_c00358{left:586.080000px;}
.x17_c00358{left:603.358605px;}
.x1a_c00358{left:621.000000px;}
.x4_c00358{left:624.239820px;}
.x5_c00358{left:640.080000px;}
.x1b_c00358{left:656.279250px;}
.x30_c00358{left:663.119985px;}
.x1c_c00358{left:689.759085px;}
.x1d_c00358{left:709.918350px;}
.xc_c00358{left:720.359850px;}
.xd_c00358{left:733.678530px;}
.x1e_c00358{left:741.959385px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls24_c00358{letter-spacing:-13.428400pt;}
.lsf_c00358{letter-spacing:-11.585513pt;}
.ls22_c00358{letter-spacing:-11.277933pt;}
.ls10_c00358{letter-spacing:-9.247000pt;}
.ls2b_c00358{letter-spacing:-8.780800pt;}
.ls2c_c00358{letter-spacing:-8.581220pt;}
.ls20_c00358{letter-spacing:-7.266700pt;}
.ls1b_c00358{letter-spacing:-6.654593pt;}
.lsd_c00358{letter-spacing:-6.601000pt;}
.ls12_c00358{letter-spacing:-6.396180pt;}
.ls16_c00358{letter-spacing:-5.684847pt;}
.ls21_c00358{letter-spacing:-5.333600pt;}
.ls9_c00358{letter-spacing:-5.285000pt;}
.ls18_c00358{letter-spacing:-4.972867pt;}
.ls15_c00358{letter-spacing:-4.708800pt;}
.lsa_c00358{letter-spacing:-4.619300pt;}
.ls13_c00358{letter-spacing:-4.261533pt;}
.lsc_c00358{letter-spacing:-3.961300pt;}
.ls14_c00358{letter-spacing:-3.550200pt;}
.ls3_c00358{letter-spacing:-3.304000pt;}
.ls6_c00358{letter-spacing:-2.639000pt;}
.ls2e_c00358{letter-spacing:-1.996107pt;}
.ls5_c00358{letter-spacing:-1.981700pt;}
.ls23_c00358{letter-spacing:-1.943280pt;}
.ls1c_c00358{letter-spacing:-1.863200pt;}
.ls27_c00358{letter-spacing:-1.686667pt;}
.ls4_c00358{letter-spacing:-1.434860pt;}
.lse_c00358{letter-spacing:-1.331200pt;}
.ls7_c00358{letter-spacing:-1.323700pt;}
.ls26_c00358{letter-spacing:-0.712620pt;}
.ls11_c00358{letter-spacing:-0.705600pt;}
.ls1f_c00358{letter-spacing:-0.692533pt;}
.lsb_c00358{letter-spacing:-0.658000pt;}
.ls8_c00358{letter-spacing:0.000000pt;}
.ls17_c00358{letter-spacing:0.678400pt;}
.ls29_c00358{letter-spacing:0.897467pt;}
.ls25_c00358{letter-spacing:1.237600pt;}
.ls1d_c00358{letter-spacing:1.334400pt;}
.ls2d_c00358{letter-spacing:1.360287pt;}
.ls2_c00358{letter-spacing:1.422667pt;}
.ls1e_c00358{letter-spacing:1.803860pt;}
.ls28_c00358{letter-spacing:4.151467pt;}
.ls1_c00358{letter-spacing:4.261533pt;}
.ls19_c00358{letter-spacing:5.725460pt;}
.ls0_c00358{letter-spacing:7.924000pt;}
.ls1a_c00358{letter-spacing:10.166667pt;}
.ls2a_c00358{letter-spacing:35.286133pt;}
.ws0_c00358{word-spacing:0.000000pt;}
._9_c00358{margin-left:-32.237333pt;}
._19_c00358{margin-left:-22.155042pt;}
._16_c00358{margin-left:-15.892681pt;}
._1e_c00358{margin-left:-10.891551pt;}
._15_c00358{margin-left:-7.319517pt;}
._1b_c00358{margin-left:-6.278802pt;}
._6_c00358{margin-left:-5.061132pt;}
._b_c00358{margin-left:-4.158106pt;}
._1c_c00358{margin-left:-3.199568pt;}
._e_c00358{margin-left:-2.263853pt;}
._c_c00358{margin-left:-1.334438pt;}
._a_c00358{width:1.713970pt;}
._14_c00358{width:2.653991pt;}
._f_c00358{width:3.962264pt;}
._d_c00358{width:5.000958pt;}
._5_c00358{width:6.296302pt;}
._1_c00358{width:7.347174pt;}
._2_c00358{width:8.356996pt;}
._1d_c00358{width:9.251979pt;}
._3_c00358{width:10.291268pt;}
._0_c00358{width:11.206591pt;}
._4_c00358{width:12.885230pt;}
._11_c00358{width:13.842553pt;}
._7_c00358{width:15.120951pt;}
._17_c00358{width:16.235074pt;}
._8_c00358{width:17.654489pt;}
._18_c00358{width:19.086015pt;}
._1f_c00358{width:20.116362pt;}
._10_c00358{width:21.602726pt;}
._12_c00358{width:23.185558pt;}
._20_c00358{width:27.105757pt;}
._13_c00358{width:29.685957pt;}
._21_c00358{width:32.466238pt;}
._1a_c00358{width:69.863088pt;}
.fsc_c00358{font-size:40.666667pt;}
.fsd_c00358{font-size:47.333333pt;}
.fsf_c00358{font-size:48.000000pt;}
.fs12_c00358{font-size:52.000000pt;}
.fs13_c00358{font-size:63.333333pt;}
.fs4_c00358{font-size:64.666667pt;}
.fsb_c00358{font-size:66.666667pt;}
.fs10_c00358{font-size:67.333333pt;}
.fs16_c00358{font-size:68.666667pt;}
.fs8_c00358{font-size:69.333333pt;}
.fs0_c00358{font-size:70.000000pt;}
.fsa_c00358{font-size:70.666667pt;}
.fs3_c00358{font-size:71.333333pt;}
.fs9_c00358{font-size:72.000000pt;}
.fs7_c00358{font-size:73.333333pt;}
.fs1_c00358{font-size:74.000000pt;}
.fs15_c00358{font-size:74.666667pt;}
.fs14_c00358{font-size:74.945653pt;}
.fs2_c00358{font-size:75.333333pt;}
.fs11_c00358{font-size:78.666667pt;}
.fs5_c00358{font-size:90.000000pt;}
.fs6_c00358{font-size:102.666667pt;}
.fse_c00358{font-size:136.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y2a_c00358{bottom:163.519067pt;}
.y29_c00358{bottom:163.519200pt;}
.y28_c00358{bottom:189.758787pt;}
.y27_c00358{bottom:189.759467pt;}
.y26_c00358{bottom:216.319213pt;}
.y25_c00358{bottom:242.558800pt;}
.y24_c00358{bottom:268.798387pt;}
.y23_c00358{bottom:321.279160pt;}
.y22_c00358{bottom:347.838907pt;}
.y20_c00358{bottom:374.399453pt;}
.y21_c00358{bottom:374.720253pt;}
.y1f_c00358{bottom:400.960000pt;}
.y1e_c00358{bottom:400.960080pt;}
.y1d_c00358{bottom:428.158573pt;}
.y1c_c00358{bottom:454.079587pt;}
.y1b_c00358{bottom:454.079880pt;}
.y1a_c00358{bottom:480.319453pt;}
.y18_c00358{bottom:506.558387pt;}
.y19_c00358{bottom:506.559040pt;}
.y16_c00358{bottom:559.358720pt;}
.y17_c00358{bottom:559.359333pt;}
.y15_c00358{bottom:612.159667pt;}
.y14_c00358{bottom:639.039587pt;}
.y13_c00358{bottom:661.759320pt;}
.y12_c00358{bottom:668.479987pt;}
.y11_c00358{bottom:692.159173pt;}
.y10_c00358{bottom:692.159667pt;}
.yf_c00358{bottom:718.399253pt;}
.ye_c00358{bottom:745.599613pt;}
.yd_c00358{bottom:745.599693pt;}
.yc_c00358{bottom:771.839280pt;}
.yb_c00358{bottom:771.840067pt;}
.ya_c00358{bottom:798.399827pt;}
.y9_c00358{bottom:798.400733pt;}
.y8_c00358{bottom:851.201667pt;}
.y7_c00358{bottom:870.401040pt;}
.y6_c00358{bottom:888.959813pt;}
.y5_c00358{bottom:908.159173pt;}
.y4_c00358{bottom:960.640213pt;}
.y2_c00358{bottom:986.879133pt;}
.y3_c00358{bottom:986.879800pt;}
.y1_c00358{bottom:1013.438880pt;}
.he_c00358{height:42.414062pt;}
.hf_c00358{height:46.778646pt;}
.h11_c00358{height:50.062500pt;}
.h17_c00358{height:51.390625pt;}
.h18_c00358{height:66.054688pt;}
.h5_c00358{height:67.445312pt;}
.h9_c00358{height:68.046875pt;}
.h1_c00358{height:68.701172pt;}
.h1e_c00358{height:69.203125pt;}
.h13_c00358{height:69.355469pt;}
.hd_c00358{height:69.531250pt;}
.h1d_c00358{height:69.838542pt;}
.h4_c00358{height:70.009766pt;}
.h12_c00358{height:70.226562pt;}
.h1c_c00358{height:70.546875pt;}
.h15_c00358{height:70.664062pt;}
.hc_c00358{height:71.218750pt;}
.h19_c00358{height:71.890625pt;}
.h8_c00358{height:71.972656pt;}
.h14_c00358{height:72.473958pt;}
.hb_c00358{height:72.562500pt;}
.h2_c00358{height:72.626953pt;}
.h1b_c00358{height:73.791667pt;}
.h3_c00358{height:73.935547pt;}
.h1a_c00358{height:74.067384pt;}
.ha_c00358{height:74.450521pt;}
.h16_c00358{height:77.744792pt;}
.h6_c00358{height:93.867188pt;}
.h7_c00358{height:107.078125pt;}
.h10_c00358{height:141.843750pt;}
.h0_c00358{height:1122.666667pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.xf_c00358{left:120.632387pt;}
.x1_c00358{left:121.918947pt;}
.x1f_c00358{left:143.679200pt;}
.x2_c00358{left:161.279333pt;}
.xe_c00358{left:169.279333pt;}
.x8_c00358{left:170.559067pt;}
.x23_c00358{left:174.399867pt;}
.x9_c00358{left:178.239200pt;}
.xa_c00358{left:183.679733pt;}
.x24_c00358{left:191.039067pt;}
.x20_c00358{left:193.599587pt;}
.xb_c00358{left:197.119587pt;}
.x3_c00358{left:202.239200pt;}
.x21_c00358{left:210.559587pt;}
.x31_c00358{left:211.839867pt;}
.x32_c00358{left:213.758787pt;}
.x22_c00358{left:228.159733pt;}
.x26_c00358{left:231.039587pt;}
.x33_c00358{left:237.439453pt;}
.x6_c00358{left:258.878920pt;}
.x25_c00358{left:266.879867pt;}
.x12_c00358{left:270.399867pt;}
.x27_c00358{left:271.999453pt;}
.x7_c00358{left:273.279720pt;}
.x13_c00358{left:289.278787pt;}
.x28_c00358{left:291.518533pt;}
.x10_c00358{left:304.319867pt;}
.x29_c00358{left:307.839867pt;}
.x11_c00358{left:337.918920pt;}
.x18_c00358{left:383.359867pt;}
.x2a_c00358{left:390.719200pt;}
.x2b_c00358{left:411.839320pt;}
.x19_c00358{left:412.798787pt;}
.x2c_c00358{left:427.839840pt;}
.x14_c00358{left:441.279707pt;}
.x2d_c00358{left:452.159173pt;}
.x15_c00358{left:454.398920pt;}
.x2e_c00358{left:480.638667pt;}
.x34_c00358{left:489.919840pt;}
.x35_c00358{left:505.278773pt;}
.x2f_c00358{left:507.199173pt;}
.x16_c00358{left:520.960000pt;}
.x17_c00358{left:536.318760pt;}
.x1a_c00358{left:552.000000pt;}
.x4_c00358{left:554.879840pt;}
.x5_c00358{left:568.960000pt;}
.x1b_c00358{left:583.359333pt;}
.x30_c00358{left:589.439987pt;}
.x1c_c00358{left:613.119187pt;}
.x1d_c00358{left:631.038533pt;}
.xc_c00358{left:640.319867pt;}
.xd_c00358{left:652.158693pt;}
.x1e_c00358{left:659.519453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17e1c5ba9ac89dc9aa353269.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_cded441d81e0d5a2b80b4817.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_319570990bcac72e59b89a8f.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_926ae61935cb2bc098dde36f.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00359;src:url('chunks/assets/font_45ca017c07708c7a98f64856.woff2')format("woff");}.ff6_c00359{font-family:ff6_c00359;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00359;src:url('chunks/assets/font_c9ec63ecc673b6c822af14fa.woff2')format("woff");}.ff7_c00359{font-family:ff7_c00359;line-height:1.281250;font-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_c00359{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);}
.m23_c00359{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00359{transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218565,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m1d_c00359{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m26_c00359{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m2b_c00359{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m1e_c00359{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m30_c00359{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m31_c00359{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m1a_c00359{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m21_c00359{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m29_c00359{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m19_c00359{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_c00359{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1c_c00359{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m28_c00359{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m27_c00359{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{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_c00359{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m2c_c00359{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls1c_c00359{letter-spacing:-11.343750px;}
.ls33_c00359{letter-spacing:-11.322900px;}
.ls15_c00359{letter-spacing:-10.288050px;}
.lse_c00359{letter-spacing:-8.914500px;}
.ls13_c00359{letter-spacing:-8.175038px;}
.lsc_c00359{letter-spacing:-7.500375px;}
.ls12_c00359{letter-spacing:-7.426125px;}
.ls27_c00359{letter-spacing:-7.073550px;}
.ls10_c00359{letter-spacing:-6.685875px;}
.ls32_c00359{letter-spacing:-6.662700px;}
.ls11_c00359{letter-spacing:-6.509250px;}
.ls1e_c00359{letter-spacing:-6.106500px;}
.ls23_c00359{letter-spacing:-5.951700px;}
.lsf_c00359{letter-spacing:-5.945625px;}
.ls9_c00359{letter-spacing:-5.800463px;}
.lsd_c00359{letter-spacing:-5.779463px;}
.ls2e_c00359{letter-spacing:-5.712300px;}
.lsb_c00359{letter-spacing:-5.196713px;}
.ls8_c00359{letter-spacing:-5.147220px;}
.ls34_c00359{letter-spacing:-4.502768px;}
.lsa_c00359{letter-spacing:-4.456463px;}
.ls1d_c00359{letter-spacing:-3.854475px;}
.ls2_c00359{letter-spacing:-3.717000px;}
.ls17_c00359{letter-spacing:-3.673118px;}
.ls2b_c00359{letter-spacing:-3.505500px;}
.ls20_c00359{letter-spacing:-3.050550px;}
.ls1_c00359{letter-spacing:-2.968875px;}
.ls26_c00359{letter-spacing:-2.855655px;}
.ls2f_c00359{letter-spacing:-2.740500px;}
.ls1b_c00359{letter-spacing:-2.730750px;}
.ls18_c00359{letter-spacing:-2.714250px;}
.ls16_c00359{letter-spacing:-2.536845px;}
.ls3_c00359{letter-spacing:-2.229413px;}
.ls30_c00359{letter-spacing:-1.905750px;}
.ls21_c00359{letter-spacing:-1.597920px;}
.ls14_c00359{letter-spacing:-1.556048px;}
.ls28_c00359{letter-spacing:-1.552500px;}
.ls4_c00359{letter-spacing:-1.489163px;}
.ls2c_c00359{letter-spacing:-0.825600px;}
.ls31_c00359{letter-spacing:-0.816000px;}
.ls2d_c00359{letter-spacing:-0.801120px;}
.ls24_c00359{letter-spacing:-0.799800px;}
.ls22_c00359{letter-spacing:-0.774000px;}
.ls2a_c00359{letter-spacing:-0.765000px;}
.ls6_c00359{letter-spacing:-0.740250px;}
.ls5_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:0.740250px;}
.ls1a_c00359{letter-spacing:0.756000px;}
.ls25_c00359{letter-spacing:0.845775px;}
.ls29_c00359{letter-spacing:0.846300px;}
.ls1f_c00359{letter-spacing:3.157500px;}
.ls19_c00359{letter-spacing:3.196800px;}
.ls7_c00359{letter-spacing:4.199850px;}
.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;}
._1a_c00359{margin-left:-23.941976px;}
._13_c00359{margin-left:-12.132507px;}
._16_c00359{margin-left:-9.788194px;}
._15_c00359{margin-left:-8.480469px;}
._1b_c00359{margin-left:-7.357241px;}
._14_c00359{margin-left:-5.993781px;}
._11_c00359{margin-left:-3.998450px;}
._18_c00359{margin-left:-2.583520px;}
._12_c00359{margin-left:-1.031387px;}
._10_c00359{width:1.098488px;}
._d_c00359{width:2.179800px;}
._b_c00359{width:3.523022px;}
._c_c00359{width:4.875665px;}
._6_c00359{width:6.615119px;}
._f_c00359{width:8.074029px;}
._7_c00359{width:9.877657px;}
._8_c00359{width:11.029354px;}
._9_c00359{width:12.943068px;}
._5_c00359{width:14.301624px;}
._a_c00359{width:16.108788px;}
._17_c00359{width:17.940260px;}
._e_c00359{width:19.256663px;}
._19_c00359{width:20.311096px;}
._4_c00359{width:21.829574px;}
._0_c00359{width:23.042399px;}
._2_c00359{width:25.346133px;}
._1_c00359{width:27.136775px;}
._3_c00359{width:29.556480px;}
.fc0_c00359{color:transparent;}
.fs12_c00359{font-size:39.750000px;}
.fs14_c00359{font-size:40.500000px;}
.fsf_c00359{font-size:42.750000px;}
.fs10_c00359{font-size:45.000000px;}
.fs13_c00359{font-size:46.500000px;}
.fs1a_c00359{font-size:46.711200px;}
.fs16_c00359{font-size:47.250000px;}
.fs11_c00359{font-size:48.000000px;}
.fs18_c00359{font-size:48.750000px;}
.fs17_c00359{font-size:49.500000px;}
.fs15_c00359{font-size:51.000000px;}
.fs1b_c00359{font-size:51.750000px;}
.fs19_c00359{font-size:53.250000px;}
.fs9_c00359{font-size:70.500000px;}
.fs5_c00359{font-size:71.250000px;}
.fsa_c00359{font-size:72.000000px;}
.fsb_c00359{font-size:72.750000px;}
.fsc_c00359{font-size:75.000000px;}
.fs8_c00359{font-size:75.750000px;}
.fs3_c00359{font-size:76.500000px;}
.fs4_c00359{font-size:78.000000px;}
.fs0_c00359{font-size:78.750000px;}
.fs7_c00359{font-size:79.500000px;}
.fs2_c00359{font-size:80.250000px;}
.fs6_c00359{font-size:82.500000px;}
.fsd_c00359{font-size:83.250000px;}
.fs1_c00359{font-size:84.750000px;}
.fse_c00359{font-size:86.250000px;}
.y0_c00359{bottom:0.000000px;}
.y27_c00359{bottom:178.201050px;}
.y26_c00359{bottom:217.081050px;}
.y25_c00359{bottom:278.641020px;}
.y24_c00359{bottom:308.520750px;}
.y23_c00359{bottom:338.040600px;}
.y22_c00359{bottom:338.041470px;}
.y21_c00359{bottom:367.921185px;}
.y20_c00359{bottom:397.800150px;}
.y1f_c00359{bottom:397.801005px;}
.y1e_c00359{bottom:427.680720px;}
.y1d_c00359{bottom:457.558920px;}
.y1c_c00359{bottom:516.959970px;}
.y1b_c00359{bottom:516.961050px;}
.y1a_c00359{bottom:546.840780px;}
.y19_c00359{bottom:576.360300px;}
.y18_c00359{bottom:576.362025px;}
.y17_c00359{bottom:606.601935px;}
.y16_c00359{bottom:635.763090px;}
.y15_c00359{bottom:666.003000px;}
.y14_c00359{bottom:695.522535px;}
.y13_c00359{bottom:754.561290px;}
.y12_c00359{bottom:784.441020px;}
.y11_c00359{bottom:814.680930px;}
.y10_c00359{bottom:844.920840px;}
.yf_c00359{bottom:874.800570px;}
.ye_c00359{bottom:904.320285px;}
.yd_c00359{bottom:904.321455px;}
.yc_c00359{bottom:933.840975px;}
.yb_c00359{bottom:963.720705px;}
.ya_c00359{bottom:963.721740px;}
.y9_c00359{bottom:993.241260px;}
.y8_c00359{bottom:1023.120990px;}
.y7_c00359{bottom:1053.360900px;}
.y6_c00359{bottom:1053.361080px;}
.y4_c00359{bottom:1082.879775px;}
.y5_c00359{bottom:1082.880615px;}
.y3_c00359{bottom:1112.759490px;}
.y2_c00359{bottom:1112.760390px;}
.y1_c00359{bottom:1142.640105px;}
.h19_c00359{height:40.816406px;}
.h17_c00359{height:41.458008px;}
.h13_c00359{height:44.586914px;}
.h16_c00359{height:45.351562px;}
.h1e_c00359{height:45.955078px;}
.h18_c00359{height:46.863281px;}
.h14_c00359{height:46.933594px;}
.h21_c00359{height:47.076131px;}
.h1b_c00359{height:47.619141px;}
.h15_c00359{height:48.375000px;}
.h1d_c00359{height:48.557373px;}
.h1c_c00359{height:48.919922px;}
.h1f_c00359{height:49.130859px;}
.h1a_c00359{height:50.402344px;}
.h22_c00359{height:51.143555px;}
.h20_c00359{height:52.625977px;}
.hd_c00359{height:70.664062px;}
.hc_c00359{height:71.050781px;}
.hf_c00359{height:71.400146px;}
.he_c00359{height:72.562500px;}
.h10_c00359{height:73.608398px;}
.h6_c00359{height:74.311523px;}
.h4_c00359{height:75.080566px;}
.hb_c00359{height:76.341797px;}
.h5_c00359{height:76.552734px;}
.h1_c00359{height:77.288818px;}
.h3_c00359{height:78.760986px;}
.h9_c00359{height:79.309570px;}
.ha_c00359{height:80.121094px;}
.h7_c00359{height:80.969238px;}
.h8_c00359{height:81.533203px;}
.h11_c00359{height:81.705322px;}
.h2_c00359{height:83.177490px;}
.h12_c00359{height:84.649658px;}
.h0_c00359{height:1263.000000px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.xe_c00359{left:137.518365px;}
.x1_c00359{left:138.599100px;}
.x39_c00359{left:169.199850px;}
.x19_c00359{left:172.439715px;}
.x26_c00359{left:182.159415px;}
.x2a_c00359{left:186.119415px;}
.xc_c00359{left:192.958350px;}
.x1a_c00359{left:195.838950px;}
.x8_c00359{left:197.279250px;}
.xf_c00359{left:203.759100px;}
.xd_c00359{left:210.599700px;}
.x23_c00359{left:214.198785px;}
.x3a_c00359{left:218.878950px;}
.x9_c00359{left:224.279250px;}
.x17_c00359{left:225.358635px;}
.x3b_c00359{left:232.199385px;}
.x18_c00359{left:240.478635px;}
.x2b_c00359{left:251.279250px;}
.x1b_c00359{left:253.439685px;}
.x15_c00359{left:273.958350px;}
.x2c_c00359{left:283.318800px;}
.x16_c00359{left:288.359850px;}
.xa_c00359{left:299.878950px;}
.x3c_c00359{left:307.439685px;}
.x2d_c00359{left:321.119385px;}
.xb_c00359{left:338.759100px;}
.x1c_c00359{left:350.639100px;}
.x3d_c00359{left:352.079385px;}
.x2e_c00359{left:358.918350px;}
.x1d_c00359{left:371.159385px;}
.x3e_c00359{left:379.438635px;}
.x2f_c00359{left:391.318770px;}
.x3f_c00359{left:417.959385px;}
.x30_c00359{left:428.039985px;}
.x1e_c00359{left:434.878920px;}
.x1f_c00359{left:459.718500px;}
.x40_c00359{left:463.678530px;}
.x31_c00359{left:473.759085px;}
.x27_c00359{left:486.718500px;}
.x32_c00359{left:488.158770px;}
.x4_c00359{left:491.759535px;}
.x41_c00359{left:502.919535px;}
.x28_c00359{left:506.879520px;}
.x5_c00359{left:509.039985px;}
.x33_c00359{left:521.279250px;}
.x20_c00359{left:535.679070px;}
.x21_c00359{left:553.318770px;}
.x10_c00359{left:556.558635px;}
.x34_c00359{left:559.439250px;}
.x24_c00359{left:572.759535px;}
.x42_c00359{left:574.199850px;}
.x35_c00359{left:579.239220px;}
.x11_c00359{left:580.318770px;}
.x25_c00359{left:584.278800px;}
.x43_c00359{left:593.279850px;}
.x22_c00359{left:607.679670px;}
.x36_c00359{left:623.158770px;}
.x12_c00359{left:624.958335px;}
.x44_c00359{left:628.918350px;}
.x13_c00359{left:639.719100px;}
.x37_c00359{left:654.118785px;}
.x38_c00359{left:663.838530px;}
.x45_c00359{left:685.078770px;}
.x6_c00359{left:708.479685px;}
.x46_c00359{left:711.719520px;}
.x2_c00359{left:722.159370px;}
.x7_c00359{left:729.359250px;}
.x47_c00359{left:739.078770px;}
.x3_c00359{left:741.239220px;}
.x48_c00359{left:747.719100px;}
.x29_c00359{left:761.759535px;}
.x14_c00359{left:763.918350px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls1c_c00359{letter-spacing:-10.083333pt;}
.ls33_c00359{letter-spacing:-10.064800pt;}
.ls15_c00359{letter-spacing:-9.144933pt;}
.lse_c00359{letter-spacing:-7.924000pt;}
.ls13_c00359{letter-spacing:-7.266700pt;}
.lsc_c00359{letter-spacing:-6.667000pt;}
.ls12_c00359{letter-spacing:-6.601000pt;}
.ls27_c00359{letter-spacing:-6.287600pt;}
.ls10_c00359{letter-spacing:-5.943000pt;}
.ls32_c00359{letter-spacing:-5.922400pt;}
.ls11_c00359{letter-spacing:-5.786000pt;}
.ls1e_c00359{letter-spacing:-5.428000pt;}
.ls23_c00359{letter-spacing:-5.290400pt;}
.lsf_c00359{letter-spacing:-5.285000pt;}
.ls9_c00359{letter-spacing:-5.155967pt;}
.lsd_c00359{letter-spacing:-5.137300pt;}
.ls2e_c00359{letter-spacing:-5.077600pt;}
.lsb_c00359{letter-spacing:-4.619300pt;}
.ls8_c00359{letter-spacing:-4.575307pt;}
.ls34_c00359{letter-spacing:-4.002460pt;}
.lsa_c00359{letter-spacing:-3.961300pt;}
.ls1d_c00359{letter-spacing:-3.426200pt;}
.ls2_c00359{letter-spacing:-3.304000pt;}
.ls17_c00359{letter-spacing:-3.264993pt;}
.ls2b_c00359{letter-spacing:-3.116000pt;}
.ls20_c00359{letter-spacing:-2.711600pt;}
.ls1_c00359{letter-spacing:-2.639000pt;}
.ls26_c00359{letter-spacing:-2.538360pt;}
.ls2f_c00359{letter-spacing:-2.436000pt;}
.ls1b_c00359{letter-spacing:-2.427333pt;}
.ls18_c00359{letter-spacing:-2.412667pt;}
.ls16_c00359{letter-spacing:-2.254973pt;}
.ls3_c00359{letter-spacing:-1.981700pt;}
.ls30_c00359{letter-spacing:-1.694000pt;}
.ls21_c00359{letter-spacing:-1.420373pt;}
.ls14_c00359{letter-spacing:-1.383153pt;}
.ls28_c00359{letter-spacing:-1.380000pt;}
.ls4_c00359{letter-spacing:-1.323700pt;}
.ls2c_c00359{letter-spacing:-0.733867pt;}
.ls31_c00359{letter-spacing:-0.725333pt;}
.ls2d_c00359{letter-spacing:-0.712107pt;}
.ls24_c00359{letter-spacing:-0.710933pt;}
.ls22_c00359{letter-spacing:-0.688000pt;}
.ls2a_c00359{letter-spacing:-0.680000pt;}
.ls6_c00359{letter-spacing:-0.658000pt;}
.ls5_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:0.658000pt;}
.ls1a_c00359{letter-spacing:0.672000pt;}
.ls25_c00359{letter-spacing:0.751800pt;}
.ls29_c00359{letter-spacing:0.752267pt;}
.ls1f_c00359{letter-spacing:2.806667pt;}
.ls19_c00359{letter-spacing:2.841600pt;}
.ls7_c00359{letter-spacing:3.733200pt;}
.ws0_c00359{word-spacing:0.000000pt;}
._1a_c00359{margin-left:-21.281757pt;}
._13_c00359{margin-left:-10.784451pt;}
._16_c00359{margin-left:-8.700617pt;}
._15_c00359{margin-left:-7.538194pt;}
._1b_c00359{margin-left:-6.539770pt;}
._14_c00359{margin-left:-5.327806pt;}
._11_c00359{margin-left:-3.554177pt;}
._18_c00359{margin-left:-2.296462pt;}
._12_c00359{margin-left:-0.916789pt;}
._10_c00359{width:0.976434pt;}
._d_c00359{width:1.937600pt;}
._b_c00359{width:3.131575pt;}
._c_c00359{width:4.333925pt;}
._6_c00359{width:5.880106pt;}
._f_c00359{width:7.176915pt;}
._7_c00359{width:8.780140pt;}
._8_c00359{width:9.803870pt;}
._9_c00359{width:11.504949pt;}
._5_c00359{width:12.712555pt;}
._a_c00359{width:14.318923pt;}
._17_c00359{width:15.946898pt;}
._e_c00359{width:17.117034pt;}
._19_c00359{width:18.054308pt;}
._4_c00359{width:19.404066pt;}
._0_c00359{width:20.482132pt;}
._2_c00359{width:22.529896pt;}
._1_c00359{width:24.121577pt;}
._3_c00359{width:26.272426pt;}
.fs12_c00359{font-size:35.333333pt;}
.fs14_c00359{font-size:36.000000pt;}
.fsf_c00359{font-size:38.000000pt;}
.fs10_c00359{font-size:40.000000pt;}
.fs13_c00359{font-size:41.333333pt;}
.fs1a_c00359{font-size:41.521067pt;}
.fs16_c00359{font-size:42.000000pt;}
.fs11_c00359{font-size:42.666667pt;}
.fs18_c00359{font-size:43.333333pt;}
.fs17_c00359{font-size:44.000000pt;}
.fs15_c00359{font-size:45.333333pt;}
.fs1b_c00359{font-size:46.000000pt;}
.fs19_c00359{font-size:47.333333pt;}
.fs9_c00359{font-size:62.666667pt;}
.fs5_c00359{font-size:63.333333pt;}
.fsa_c00359{font-size:64.000000pt;}
.fsb_c00359{font-size:64.666667pt;}
.fsc_c00359{font-size:66.666667pt;}
.fs8_c00359{font-size:67.333333pt;}
.fs3_c00359{font-size:68.000000pt;}
.fs4_c00359{font-size:69.333333pt;}
.fs0_c00359{font-size:70.000000pt;}
.fs7_c00359{font-size:70.666667pt;}
.fs2_c00359{font-size:71.333333pt;}
.fs6_c00359{font-size:73.333333pt;}
.fsd_c00359{font-size:74.000000pt;}
.fs1_c00359{font-size:75.333333pt;}
.fse_c00359{font-size:76.666667pt;}
.y0_c00359{bottom:0.000000pt;}
.y27_c00359{bottom:158.400933pt;}
.y26_c00359{bottom:192.960933pt;}
.y25_c00359{bottom:247.680907pt;}
.y24_c00359{bottom:274.240667pt;}
.y23_c00359{bottom:300.480533pt;}
.y22_c00359{bottom:300.481307pt;}
.y21_c00359{bottom:327.041053pt;}
.y20_c00359{bottom:353.600133pt;}
.y1f_c00359{bottom:353.600893pt;}
.y1e_c00359{bottom:380.160640pt;}
.y1d_c00359{bottom:406.719040pt;}
.y1c_c00359{bottom:459.519973pt;}
.y1b_c00359{bottom:459.520933pt;}
.y1a_c00359{bottom:486.080693pt;}
.y19_c00359{bottom:512.320267pt;}
.y18_c00359{bottom:512.321800pt;}
.y17_c00359{bottom:539.201720pt;}
.y16_c00359{bottom:565.122747pt;}
.y15_c00359{bottom:592.002667pt;}
.y14_c00359{bottom:618.242253pt;}
.y13_c00359{bottom:670.721147pt;}
.y12_c00359{bottom:697.280907pt;}
.y11_c00359{bottom:724.160827pt;}
.y10_c00359{bottom:751.040747pt;}
.yf_c00359{bottom:777.600507pt;}
.ye_c00359{bottom:803.840253pt;}
.yd_c00359{bottom:803.841293pt;}
.yc_c00359{bottom:830.080867pt;}
.yb_c00359{bottom:856.640627pt;}
.ya_c00359{bottom:856.641547pt;}
.y9_c00359{bottom:882.881120pt;}
.y8_c00359{bottom:909.440880pt;}
.y7_c00359{bottom:936.320800pt;}
.y6_c00359{bottom:936.320960pt;}
.y4_c00359{bottom:962.559800pt;}
.y5_c00359{bottom:962.560547pt;}
.y3_c00359{bottom:989.119547pt;}
.y2_c00359{bottom:989.120347pt;}
.y1_c00359{bottom:1015.680093pt;}
.h19_c00359{height:36.281250pt;}
.h17_c00359{height:36.851562pt;}
.h13_c00359{height:39.632812pt;}
.h16_c00359{height:40.312500pt;}
.h1e_c00359{height:40.848958pt;}
.h18_c00359{height:41.656250pt;}
.h14_c00359{height:41.718750pt;}
.h21_c00359{height:41.845450pt;}
.h1b_c00359{height:42.328125pt;}
.h15_c00359{height:43.000000pt;}
.h1d_c00359{height:43.162109pt;}
.h1c_c00359{height:43.484375pt;}
.h1f_c00359{height:43.671875pt;}
.h1a_c00359{height:44.802083pt;}
.h22_c00359{height:45.460938pt;}
.h20_c00359{height:46.778646pt;}
.hd_c00359{height:62.812500pt;}
.hc_c00359{height:63.156250pt;}
.hf_c00359{height:63.466797pt;}
.he_c00359{height:64.500000pt;}
.h10_c00359{height:65.429688pt;}
.h6_c00359{height:66.054688pt;}
.h4_c00359{height:66.738281pt;}
.hb_c00359{height:67.859375pt;}
.h5_c00359{height:68.046875pt;}
.h1_c00359{height:68.701172pt;}
.h3_c00359{height:70.009766pt;}
.h9_c00359{height:70.497396pt;}
.ha_c00359{height:71.218750pt;}
.h7_c00359{height:71.972656pt;}
.h8_c00359{height:72.473958pt;}
.h11_c00359{height:72.626953pt;}
.h2_c00359{height:73.935547pt;}
.h12_c00359{height:75.244141pt;}
.h0_c00359{height:1122.666667pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.xe_c00359{left:122.238547pt;}
.x1_c00359{left:123.199200pt;}
.x39_c00359{left:150.399867pt;}
.x19_c00359{left:153.279747pt;}
.x26_c00359{left:161.919480pt;}
.x2a_c00359{left:165.439480pt;}
.xc_c00359{left:171.518533pt;}
.x1a_c00359{left:174.079067pt;}
.x8_c00359{left:175.359333pt;}
.xf_c00359{left:181.119200pt;}
.xd_c00359{left:187.199733pt;}
.x23_c00359{left:190.398920pt;}
.x3a_c00359{left:194.559067pt;}
.x9_c00359{left:199.359333pt;}
.x17_c00359{left:200.318787pt;}
.x3b_c00359{left:206.399453pt;}
.x18_c00359{left:213.758787pt;}
.x2b_c00359{left:223.359333pt;}
.x1b_c00359{left:225.279720pt;}
.x15_c00359{left:243.518533pt;}
.x2c_c00359{left:251.838933pt;}
.x16_c00359{left:256.319867pt;}
.xa_c00359{left:266.559067pt;}
.x3c_c00359{left:273.279720pt;}
.x2d_c00359{left:285.439453pt;}
.xb_c00359{left:301.119200pt;}
.x1c_c00359{left:311.679200pt;}
.x3d_c00359{left:312.959453pt;}
.x2e_c00359{left:319.038533pt;}
.x1d_c00359{left:329.919453pt;}
.x3e_c00359{left:337.278787pt;}
.x2f_c00359{left:347.838907pt;}
.x3f_c00359{left:371.519453pt;}
.x30_c00359{left:380.479987pt;}
.x1e_c00359{left:386.559040pt;}
.x1f_c00359{left:408.638667pt;}
.x40_c00359{left:412.158693pt;}
.x31_c00359{left:421.119187pt;}
.x27_c00359{left:432.638667pt;}
.x32_c00359{left:433.918907pt;}
.x4_c00359{left:437.119587pt;}
.x41_c00359{left:447.039587pt;}
.x28_c00359{left:450.559573pt;}
.x5_c00359{left:452.479987pt;}
.x33_c00359{left:463.359333pt;}
.x20_c00359{left:476.159173pt;}
.x21_c00359{left:491.838907pt;}
.x10_c00359{left:494.718787pt;}
.x34_c00359{left:497.279333pt;}
.x24_c00359{left:509.119587pt;}
.x42_c00359{left:510.399867pt;}
.x35_c00359{left:514.879307pt;}
.x11_c00359{left:515.838907pt;}
.x25_c00359{left:519.358933pt;}
.x43_c00359{left:527.359867pt;}
.x22_c00359{left:540.159707pt;}
.x36_c00359{left:553.918907pt;}
.x12_c00359{left:555.518520pt;}
.x44_c00359{left:559.038533pt;}
.x13_c00359{left:568.639200pt;}
.x37_c00359{left:581.438920pt;}
.x38_c00359{left:590.078693pt;}
.x45_c00359{left:608.958907pt;}
.x6_c00359{left:629.759720pt;}
.x46_c00359{left:632.639573pt;}
.x2_c00359{left:641.919440pt;}
.x7_c00359{left:648.319333pt;}
.x47_c00359{left:656.958907pt;}
.x3_c00359{left:658.879307pt;}
.x48_c00359{left:664.639200pt;}
.x29_c00359{left:677.119587pt;}
.x14_c00359{left:679.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_902550bd2e516f1bfecddee9.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_facfdb46f9943c7ec8a019a3.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_716fe692ef4ccd9521bb5fd3.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_cc0143885d9879495a55ab1b.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00360{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.lsa_c00360{letter-spacing:-8.914500px;}
.lsb_c00360{letter-spacing:-8.175038px;}
.ls7_c00360{letter-spacing:-6.572700px;}
.lse_c00360{letter-spacing:-5.945625px;}
.ls2_c00360{letter-spacing:-5.196713px;}
.ls10_c00360{letter-spacing:-4.456463px;}
.lsf_c00360{letter-spacing:-4.330463px;}
.ls13_c00360{letter-spacing:-3.923640px;}
.lsd_c00360{letter-spacing:-3.787800px;}
.ls4_c00360{letter-spacing:-3.717000px;}
.ls5_c00360{letter-spacing:-2.968875px;}
.ls1_c00360{letter-spacing:-2.229413px;}
.ls12_c00360{letter-spacing:-2.186250px;}
.ls9_c00360{letter-spacing:-1.776750px;}
.ls6_c00360{letter-spacing:-1.489163px;}
.lsc_c00360{letter-spacing:-0.771728px;}
.ls3_c00360{letter-spacing:-0.740250px;}
.ls8_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:0.740250px;}
.ls11_c00360{letter-spacing:4.253400px;}
.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;}
._14_c00360{margin-left:-9.405023px;}
._d_c00360{margin-left:-5.367125px;}
._6_c00360{margin-left:-1.970578px;}
._c_c00360{width:1.673140px;}
._0_c00360{width:2.686371px;}
._12_c00360{width:4.441500px;}
._1_c00360{width:5.708810px;}
._3_c00360{width:7.103547px;}
._e_c00360{width:8.342106px;}
._4_c00360{width:9.832264px;}
._2_c00360{width:11.566518px;}
._13_c00360{width:12.592467px;}
._5_c00360{width:14.021125px;}
._f_c00360{width:18.399269px;}
._10_c00360{width:20.062825px;}
._9_c00360{width:21.408024px;}
._11_c00360{width:24.259888px;}
._8_c00360{width:27.276355px;}
._7_c00360{width:28.609429px;}
._b_c00360{width:32.647298px;}
._a_c00360{width:42.008459px;}
.fc0_c00360{color:transparent;}
.fs5_c00360{font-size:76.500000px;}
.fs4_c00360{font-size:77.250000px;}
.fs8_c00360{font-size:78.000000px;}
.fs0_c00360{font-size:78.750000px;}
.fs6_c00360{font-size:79.500000px;}
.fs2_c00360{font-size:80.250000px;}
.fs1_c00360{font-size:81.750000px;}
.fs7_c00360{font-size:84.000000px;}
.fs3_c00360{font-size:86.250000px;}
.y0_c00360{bottom:0.000000px;}
.y11_c00360{bottom:839.158815px;}
.y10_c00360{bottom:839.161170px;}
.yf_c00360{bottom:869.040900px;}
.ye_c00360{bottom:898.920615px;}
.yd_c00360{bottom:928.079655px;}
.yc_c00360{bottom:957.959385px;}
.yb_c00360{bottom:957.959655px;}
.y9_c00360{bottom:987.479145px;}
.ya_c00360{bottom:987.479190px;}
.y8_c00360{bottom:1017.719055px;}
.y7_c00360{bottom:1047.599670px;}
.y6_c00360{bottom:1047.599850px;}
.y5_c00360{bottom:1077.119385px;}
.y4_c00360{bottom:1077.120270px;}
.y2_c00360{bottom:1106.999865px;}
.y3_c00360{bottom:1107.000000px;}
.y1_c00360{bottom:1137.239775px;}
.h5_c00360{height:75.816650px;}
.h9_c00360{height:76.514648px;}
.h1_c00360{height:77.288818px;}
.h7_c00360{height:78.024902px;}
.h3_c00360{height:78.760986px;}
.h6_c00360{height:79.787109px;}
.h2_c00360{height:80.233154px;}
.h8_c00360{height:82.441406px;}
.h4_c00360{height:85.239258px;}
.h0_c00360{height:1263.000000px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x17_c00360{left:133.561920px;}
.x1_c00360{left:134.639100px;}
.x2_c00360{left:190.799565px;}
.x3_c00360{left:210.238785px;}
.xa_c00360{left:305.638500px;}
.x15_c00360{left:336.239250px;}
.xb_c00360{left:338.759100px;}
.x16_c00360{left:376.559685px;}
.xd_c00360{left:407.519670px;}
.x11_c00360{left:422.998950px;}
.xe_c00360{left:446.759085px;}
.x12_c00360{left:507.238770px;}
.x4_c00360{left:514.799520px;}
.x18_c00360{left:523.439670px;}
.x5_c00360{left:531.719100px;}
.xf_c00360{left:548.279250px;}
.x10_c00360{left:578.519070px;}
.x6_c00360{left:583.919535px;}
.x7_c00360{left:595.438620px;}
.x8_c00360{left:647.279850px;}
.x9_c00360{left:660.598530px;}
.x13_c00360{left:701.639100px;}
.x14_c00360{left:734.759535px;}
.xc_c00360{left:754.198785px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.lsa_c00360{letter-spacing:-7.924000pt;}
.lsb_c00360{letter-spacing:-7.266700pt;}
.ls7_c00360{letter-spacing:-5.842400pt;}
.lse_c00360{letter-spacing:-5.285000pt;}
.ls2_c00360{letter-spacing:-4.619300pt;}
.ls10_c00360{letter-spacing:-3.961300pt;}
.lsf_c00360{letter-spacing:-3.849300pt;}
.ls13_c00360{letter-spacing:-3.487680pt;}
.lsd_c00360{letter-spacing:-3.366933pt;}
.ls4_c00360{letter-spacing:-3.304000pt;}
.ls5_c00360{letter-spacing:-2.639000pt;}
.ls1_c00360{letter-spacing:-1.981700pt;}
.ls12_c00360{letter-spacing:-1.943333pt;}
.ls9_c00360{letter-spacing:-1.579333pt;}
.ls6_c00360{letter-spacing:-1.323700pt;}
.lsc_c00360{letter-spacing:-0.685980pt;}
.ls3_c00360{letter-spacing:-0.658000pt;}
.ls8_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:0.658000pt;}
.ls11_c00360{letter-spacing:3.780800pt;}
.ws0_c00360{word-spacing:0.000000pt;}
._14_c00360{margin-left:-8.360021pt;}
._d_c00360{margin-left:-4.770777pt;}
._6_c00360{margin-left:-1.751625pt;}
._c_c00360{width:1.487236pt;}
._0_c00360{width:2.387885pt;}
._12_c00360{width:3.948000pt;}
._1_c00360{width:5.074498pt;}
._3_c00360{width:6.314264pt;}
._e_c00360{width:7.415206pt;}
._4_c00360{width:8.739791pt;}
._2_c00360{width:10.281349pt;}
._13_c00360{width:11.193304pt;}
._5_c00360{width:12.463223pt;}
._f_c00360{width:16.354906pt;}
._10_c00360{width:17.833623pt;}
._9_c00360{width:19.029355pt;}
._11_c00360{width:21.564345pt;}
._8_c00360{width:24.245649pt;}
._7_c00360{width:25.430604pt;}
._b_c00360{width:29.019821pt;}
._a_c00360{width:37.340853pt;}
.fs5_c00360{font-size:68.000000pt;}
.fs4_c00360{font-size:68.666667pt;}
.fs8_c00360{font-size:69.333333pt;}
.fs0_c00360{font-size:70.000000pt;}
.fs6_c00360{font-size:70.666667pt;}
.fs2_c00360{font-size:71.333333pt;}
.fs1_c00360{font-size:72.666667pt;}
.fs7_c00360{font-size:74.666667pt;}
.fs3_c00360{font-size:76.666667pt;}
.y0_c00360{bottom:0.000000pt;}
.y11_c00360{bottom:745.918947pt;}
.y10_c00360{bottom:745.921040pt;}
.yf_c00360{bottom:772.480800pt;}
.ye_c00360{bottom:799.040547pt;}
.yd_c00360{bottom:824.959693pt;}
.yc_c00360{bottom:851.519453pt;}
.yb_c00360{bottom:851.519693pt;}
.y9_c00360{bottom:877.759240pt;}
.ya_c00360{bottom:877.759280pt;}
.y8_c00360{bottom:904.639160pt;}
.y7_c00360{bottom:931.199707pt;}
.y6_c00360{bottom:931.199867pt;}
.y5_c00360{bottom:957.439453pt;}
.y4_c00360{bottom:957.440240pt;}
.y2_c00360{bottom:983.999880pt;}
.y3_c00360{bottom:984.000000pt;}
.y1_c00360{bottom:1010.879800pt;}
.h5_c00360{height:67.392578pt;}
.h9_c00360{height:68.013021pt;}
.h1_c00360{height:68.701172pt;}
.h7_c00360{height:69.355469pt;}
.h3_c00360{height:70.009766pt;}
.h6_c00360{height:70.921875pt;}
.h2_c00360{height:71.318359pt;}
.h8_c00360{height:73.281250pt;}
.h4_c00360{height:75.768229pt;}
.h0_c00360{height:1122.666667pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x17_c00360{left:118.721707pt;}
.x1_c00360{left:119.679200pt;}
.x2_c00360{left:169.599613pt;}
.x3_c00360{left:186.878920pt;}
.xa_c00360{left:271.678667pt;}
.x15_c00360{left:298.879333pt;}
.xb_c00360{left:301.119200pt;}
.x16_c00360{left:334.719720pt;}
.xd_c00360{left:362.239707pt;}
.x11_c00360{left:375.999067pt;}
.xe_c00360{left:397.119187pt;}
.x12_c00360{left:450.878907pt;}
.x4_c00360{left:457.599573pt;}
.x18_c00360{left:465.279707pt;}
.x5_c00360{left:472.639200pt;}
.xf_c00360{left:487.359333pt;}
.x10_c00360{left:514.239173pt;}
.x6_c00360{left:519.039587pt;}
.x7_c00360{left:529.278773pt;}
.x8_c00360{left:575.359867pt;}
.x9_c00360{left:587.198693pt;}
.x13_c00360{left:623.679200pt;}
.x14_c00360{left:653.119587pt;}
.xc_c00360{left:670.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7298edcae414212bb49c9c6.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.364746;font-style:normal;font-weight:normal;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_cce7b2f038c5c3853313d966.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_898df99520a7258024e7fad4.woff2')format("woff");}.ff3_c00361{font-family:ff3_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:ff4_c00361;src:url('chunks/assets/font_932f216ccde2bfed0b355664.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00361{transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056202,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.071705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071705,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.124031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124031,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.133336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133336,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136905,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137640,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.150602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150602,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.155039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155039,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.163534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163534,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.166071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166071,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171260,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.207364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207364,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls5_c00361{letter-spacing:-4.085100px;}
.ls8_c00361{letter-spacing:-1.361700px;}
.ls3_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:1.361700px;}
.ls2_c00361{letter-spacing:2.723400px;}
.lsa_c00361{letter-spacing:4.085100px;}
.lsc_c00361{letter-spacing:4.980000px;}
.lsb_c00361{letter-spacing:8.176875px;}
.ls6_c00361{letter-spacing:10.803000px;}
.ls9_c00361{letter-spacing:10.900275px;}
.ls1_c00361{letter-spacing:63.458325px;}
.ls4_c00361{letter-spacing:65.538450px;}
.ls7_c00361{letter-spacing:102.796875px;}
.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;}
._3_c00361{margin-left:-58.088513px;}
._8_c00361{margin-left:-31.826400px;}
._5_c00361{margin-left:-21.360109px;}
._6_c00361{margin-left:-8.170418px;}
._2_c00361{width:4.578887px;}
._4_c00361{width:7.209000px;}
._a_c00361{width:10.465855px;}
._9_c00361{width:15.365469px;}
._1_c00361{width:88.510718px;}
._7_c00361{width:206.260938px;}
._0_c00361{width:355.396725px;}
.fc0_c00361{color:transparent;}
.fs1_c00361{font-size:57.750000px;}
.fs9_c00361{font-size:62.250000px;}
.fs5_c00361{font-size:63.000000px;}
.fs0_c00361{font-size:66.750000px;}
.fs4_c00361{font-size:72.412800px;}
.fs6_c00361{font-size:78.000000px;}
.fs7_c00361{font-size:95.250000px;}
.fs2_c00361{font-size:96.750000px;}
.fs3_c00361{font-size:99.750000px;}
.fs8_c00361{font-size:105.000000px;}
.y0_c00361{bottom:0.000000px;}
.y17_c00361{bottom:282.959565px;}
.y16_c00361{bottom:388.439715px;}
.y15_c00361{bottom:399.958920px;}
.y14_c00361{bottom:399.959475px;}
.y13_c00361{bottom:412.199850px;}
.y12_c00361{bottom:529.560285px;}
.y11_c00361{bottom:552.959385px;}
.y10_c00361{bottom:599.397540px;}
.yf_c00361{bottom:622.438080px;}
.ye_c00361{bottom:645.478635px;}
.yd_c00361{bottom:692.278800px;}
.yc_c00361{bottom:739.798920px;}
.yb_c00361{bottom:763.200300px;}
.ya_c00361{bottom:810.359250px;}
.y8_c00361{bottom:833.759475px;}
.y9_c00361{bottom:833.760135px;}
.y7_c00361{bottom:856.800015px;}
.y6_c00361{bottom:880.199340px;}
.y5_c00361{bottom:903.600135px;}
.y4_c00361{bottom:926.999355px;}
.y3_c00361{bottom:950.039340px;}
.y2_c00361{bottom:1008.719520px;}
.y1_c00361{bottom:1020.238770px;}
.h2_c00361{height:60.231445px;}
.h6_c00361{height:63.492188px;}
.ha_c00361{height:64.924805px;}
.h1_c00361{height:65.967773px;}
.h5_c00361{height:71.564213px;}
.h7_c00361{height:77.085938px;}
.h8_c00361{height:99.342773px;}
.h3_c00361{height:100.907227px;}
.h4_c00361{height:104.036133px;}
.h9_c00361{height:109.511719px;}
.h0_c00361{height:1263.000000px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:264.599700px;}
.x3_c00361{left:284.759100px;}
.x1_c00361{left:300.958350px;}
.xc_c00361{left:318.599700px;}
.x9_c00361{left:335.159850px;}
.xa_c00361{left:348.478635px;}
.xb_c00361{left:353.878950px;}
.x4_c00361{left:394.919535px;}
.x5_c00361{left:410.398635px;}
.x6_c00361{left:435.239820px;}
.x7_c00361{left:450.719100px;}
.x8_c00361{left:475.919535px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls5_c00361{letter-spacing:-3.631200pt;}
.ls8_c00361{letter-spacing:-1.210400pt;}
.ls3_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:1.210400pt;}
.ls2_c00361{letter-spacing:2.420800pt;}
.lsa_c00361{letter-spacing:3.631200pt;}
.lsc_c00361{letter-spacing:4.426667pt;}
.lsb_c00361{letter-spacing:7.268333pt;}
.ls6_c00361{letter-spacing:9.602667pt;}
.ls9_c00361{letter-spacing:9.689133pt;}
.ls1_c00361{letter-spacing:56.407400pt;}
.ls4_c00361{letter-spacing:58.256400pt;}
.ls7_c00361{letter-spacing:91.375000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
._3_c00361{margin-left:-51.634234pt;}
._8_c00361{margin-left:-28.290133pt;}
._5_c00361{margin-left:-18.986764pt;}
._6_c00361{margin-left:-7.262594pt;}
._2_c00361{width:4.070121pt;}
._4_c00361{width:6.408000pt;}
._a_c00361{width:9.302982pt;}
._9_c00361{width:13.658194pt;}
._1_c00361{width:78.676194pt;}
._7_c00361{width:183.343056pt;}
._0_c00361{width:315.908200pt;}
.fs1_c00361{font-size:51.333333pt;}
.fs9_c00361{font-size:55.333333pt;}
.fs5_c00361{font-size:56.000000pt;}
.fs0_c00361{font-size:59.333333pt;}
.fs4_c00361{font-size:64.366933pt;}
.fs6_c00361{font-size:69.333333pt;}
.fs7_c00361{font-size:84.666667pt;}
.fs2_c00361{font-size:86.000000pt;}
.fs3_c00361{font-size:88.666667pt;}
.fs8_c00361{font-size:93.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y17_c00361{bottom:251.519613pt;}
.y16_c00361{bottom:345.279747pt;}
.y15_c00361{bottom:355.519040pt;}
.y14_c00361{bottom:355.519533pt;}
.y13_c00361{bottom:366.399867pt;}
.y12_c00361{bottom:470.720253pt;}
.y11_c00361{bottom:491.519453pt;}
.y10_c00361{bottom:532.797813pt;}
.yf_c00361{bottom:553.278293pt;}
.ye_c00361{bottom:573.758787pt;}
.yd_c00361{bottom:615.358933pt;}
.yc_c00361{bottom:657.599040pt;}
.yb_c00361{bottom:678.400267pt;}
.ya_c00361{bottom:720.319333pt;}
.y8_c00361{bottom:741.119533pt;}
.y9_c00361{bottom:741.120120pt;}
.y7_c00361{bottom:761.600013pt;}
.y6_c00361{bottom:782.399413pt;}
.y5_c00361{bottom:803.200120pt;}
.y4_c00361{bottom:823.999427pt;}
.y3_c00361{bottom:844.479413pt;}
.y2_c00361{bottom:896.639573pt;}
.y1_c00361{bottom:906.878907pt;}
.h2_c00361{height:53.539062pt;}
.h6_c00361{height:56.437500pt;}
.ha_c00361{height:57.710938pt;}
.h1_c00361{height:58.638021pt;}
.h5_c00361{height:63.612633pt;}
.h7_c00361{height:68.520833pt;}
.h8_c00361{height:88.304688pt;}
.h3_c00361{height:89.695312pt;}
.h4_c00361{height:92.476562pt;}
.h9_c00361{height:97.343750pt;}
.h0_c00361{height:1122.666667pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:235.199733pt;}
.x3_c00361{left:253.119200pt;}
.x1_c00361{left:267.518533pt;}
.xc_c00361{left:283.199733pt;}
.x9_c00361{left:297.919867pt;}
.xa_c00361{left:309.758787pt;}
.xb_c00361{left:314.559067pt;}
.x4_c00361{left:351.039587pt;}
.x5_c00361{left:364.798787pt;}
.x6_c00361{left:386.879840pt;}
.x7_c00361{left:400.639200pt;}
.x8_c00361{left:423.039587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16b5b063844fb828dbfcdf6a.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.364746;font-style:normal;font-weight:normal;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_305ea9a168a7c5ec354b88e6.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_a460b6c28454c5955c71ac1a.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_5526015461f0a00a9353c466.woff2')format("woff");}.ff5_c00362{font-family:ff5_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;}
.m13_c00362{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1c_c00362{transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);}
.m20_c00362{transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m15_c00362{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1b_c00362{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m12_c00362{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m18_c00362{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1a_c00362{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m19_c00362{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m21_c00362{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m11_c00362{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m1d_c00362{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m14_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00362{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1e_c00362{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m6_c00362{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m1f_c00362{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);}
.me_c00362{transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329787,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{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_c00362{transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);}
.md_c00362{transform:matrix(0.415094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415094,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431250,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442308,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m10_c00362{transform:matrix(0.526042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526042,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls25_c00362{letter-spacing:-17.425200px;}
.ls19_c00362{letter-spacing:-15.656775px;}
.ls2a_c00362{letter-spacing:-13.242075px;}
.ls21_c00362{letter-spacing:-13.149045px;}
.ls12_c00362{letter-spacing:-12.687675px;}
.ls22_c00362{letter-spacing:-11.247173px;}
.ls26_c00362{letter-spacing:-10.288050px;}
.ls10_c00362{letter-spacing:-8.175038px;}
.ls1d_c00362{letter-spacing:-6.959700px;}
.ls16_c00362{letter-spacing:-5.945625px;}
.ls29_c00362{letter-spacing:-5.522400px;}
.ls14_c00362{letter-spacing:-5.196713px;}
.ls18_c00362{letter-spacing:-4.456463px;}
.ls24_c00362{letter-spacing:-4.378500px;}
.ls23_c00362{letter-spacing:-4.090500px;}
.ls17_c00362{letter-spacing:-3.717000px;}
.ls28_c00362{letter-spacing:-3.545700px;}
.ls11_c00362{letter-spacing:-2.968875px;}
.lsf_c00362{letter-spacing:-2.229413px;}
.ls20_c00362{letter-spacing:-1.560090px;}
.ls13_c00362{letter-spacing:-1.489163px;}
.ls1e_c00362{letter-spacing:-1.138575px;}
.lsd_c00362{letter-spacing:-0.740250px;}
.ls15_c00362{letter-spacing:0.000000px;}
.ls1f_c00362{letter-spacing:0.567525px;}
.ls27_c00362{letter-spacing:0.763875px;}
.ls2b_c00362{letter-spacing:0.826200px;}
.ls1_c00362{letter-spacing:1.368900px;}
.lse_c00362{letter-spacing:1.591200px;}
.lsc_c00362{letter-spacing:1.706100px;}
.ls6_c00362{letter-spacing:2.051400px;}
.lsb_c00362{letter-spacing:2.841150px;}
.ls1a_c00362{letter-spacing:3.390368px;}
.ls8_c00362{letter-spacing:3.420690px;}
.lsa_c00362{letter-spacing:3.979725px;}
.ls1c_c00362{letter-spacing:4.106700px;}
.ls0_c00362{letter-spacing:4.456463px;}
.ls3_c00362{letter-spacing:4.789200px;}
.ls1b_c00362{letter-spacing:5.893125px;}
.ls5_c00362{letter-spacing:6.158100px;}
.ls9_c00362{letter-spacing:9.098025px;}
.ls2_c00362{letter-spacing:9.578790px;}
.ls7_c00362{letter-spacing:10.947300px;}
.ls4_c00362{letter-spacing:25.314510px;}
.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;}
._1c_c00362{margin-left:-40.040407px;}
._20_c00362{margin-left:-21.984425px;}
._19_c00362{margin-left:-18.839456px;}
._15_c00362{margin-left:-15.958747px;}
._1b_c00362{margin-left:-14.215746px;}
._18_c00362{margin-left:-10.117989px;}
._16_c00362{margin-left:-8.320279px;}
._10_c00362{margin-left:-6.547914px;}
._5_c00362{margin-left:-4.795489px;}
._11_c00362{margin-left:-3.612262px;}
._2_c00362{margin-left:-2.585422px;}
._3_c00362{margin-left:-1.416296px;}
._1e_c00362{width:1.027806px;}
._6_c00362{width:2.302026px;}
._1_c00362{width:3.929506px;}
._9_c00362{width:5.551816px;}
._4_c00362{width:6.622771px;}
._b_c00362{width:8.276655px;}
._12_c00362{width:9.687394px;}
._f_c00362{width:11.771416px;}
._7_c00362{width:13.421095px;}
._14_c00362{width:15.094622px;}
._a_c00362{width:16.853094px;}
._c_c00362{width:18.719380px;}
._0_c00362{width:20.052053px;}
._8_c00362{width:21.301786px;}
._1f_c00362{width:22.652868px;}
._d_c00362{width:25.081459px;}
._e_c00362{width:26.123886px;}
._25_c00362{width:27.326413px;}
._13_c00362{width:29.548382px;}
._23_c00362{width:30.883150px;}
._24_c00362{width:33.068106px;}
._21_c00362{width:35.415168px;}
._17_c00362{width:38.247273px;}
._22_c00362{width:40.610929px;}
._1a_c00362{width:54.038159px;}
._1d_c00362{width:63.949394px;}
.fc0_c00362{color:transparent;}
.fsa_c00362{font-size:26.250000px;}
.fs7_c00362{font-size:27.000000px;}
.fsc_c00362{font-size:28.500000px;}
.fs9_c00362{font-size:29.250000px;}
.fsb_c00362{font-size:30.000000px;}
.fse_c00362{font-size:35.250000px;}
.fs10_c00362{font-size:36.000000px;}
.fs6_c00362{font-size:38.250000px;}
.fs8_c00362{font-size:39.000000px;}
.fsd_c00362{font-size:39.750000px;}
.fsf_c00362{font-size:51.000000px;}
.fs11_c00362{font-size:75.750000px;}
.fs5_c00362{font-size:76.500000px;}
.fs1_c00362{font-size:78.000000px;}
.fs0_c00362{font-size:78.750000px;}
.fs13_c00362{font-size:79.500000px;}
.fs4_c00362{font-size:80.250000px;}
.fs2_c00362{font-size:82.500000px;}
.fs3_c00362{font-size:84.750000px;}
.fs12_c00362{font-size:85.500000px;}
.y0_c00362{bottom:0.000000px;}
.y2a_c00362{bottom:182.518665px;}
.y29_c00362{bottom:212.040000px;}
.y28_c00362{bottom:212.040090px;}
.y27_c00362{bottom:241.919820px;}
.y26_c00362{bottom:271.799535px;}
.y25_c00362{bottom:271.800435px;}
.y23_c00362{bottom:301.679355px;}
.y24_c00362{bottom:301.680150px;}
.y22_c00362{bottom:360.357930px;}
.y21_c00362{bottom:389.519070px;}
.y20_c00362{bottom:389.520105px;}
.y1f_c00362{bottom:419.399820px;}
.y1e_c00362{bottom:419.400780px;}
.y1d_c00362{bottom:448.920315px;}
.y1b_c00362{bottom:479.517360px;}
.y1c_c00362{bottom:479.518620px;}
.y1a_c00362{bottom:509.759370px;}
.y19_c00362{bottom:539.639100px;}
.y18_c00362{bottom:539.639760px;}
.y17_c00362{bottom:568.438620px;}
.y16_c00362{bottom:568.438890px;}
.y15_c00362{bottom:625.320120px;}
.y13_c00362{bottom:655.199760px;}
.y14_c00362{bottom:655.199850px;}
.y12_c00362{bottom:685.439670px;}
.y11_c00362{bottom:685.439760px;}
.y10_c00362{bottom:715.679670px;}
.yf_c00362{bottom:745.560285px;}
.ye_c00362{bottom:752.039985px;}
.yd_c00362{bottom:804.957705px;}
.yc_c00362{bottom:864.358770px;}
.yb_c00362{bottom:894.959175px;}
.y9_c00362{bottom:924.838845px;}
.ya_c00362{bottom:924.838905px;}
.y7_c00362{bottom:955.078530px;}
.y8_c00362{bottom:955.078770px;}
.y6_c00362{bottom:984.239685px;}
.y4_c00362{bottom:1014.839340px;}
.y5_c00362{bottom:1014.840090px;}
.y2_c00362{bottom:1044.718320px;}
.y3_c00362{bottom:1044.719055px;}
.y1_c00362{bottom:1104.119385px;}
.hb_c00362{height:27.377930px;}
.h8_c00362{height:28.160156px;}
.hd_c00362{height:29.724609px;}
.ha_c00362{height:30.506836px;}
.hc_c00362{height:31.289062px;}
.hf_c00362{height:35.525391px;}
.h11_c00362{height:36.281250px;}
.he_c00362{height:39.284180px;}
.h7_c00362{height:39.893555px;}
.h9_c00362{height:40.675781px;}
.h10_c00362{height:51.398438px;}
.h12_c00362{height:74.344482px;}
.h6_c00362{height:75.080566px;}
.h2_c00362{height:76.552734px;}
.h15_c00362{height:77.085938px;}
.h1_c00362{height:77.288818px;}
.h18_c00362{height:78.024902px;}
.h16_c00362{height:78.760986px;}
.h5_c00362{height:79.309570px;}
.h17_c00362{height:79.365234px;}
.h13_c00362{height:80.969238px;}
.h3_c00362{height:81.533203px;}
.h4_c00362{height:83.177490px;}
.h14_c00362{height:84.498047px;}
.h0_c00362{height:1263.000000px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x1e_c00362{left:135.001305px;}
.x1_c00362{left:136.079400px;}
.xc_c00362{left:146.878350px;}
.xd_c00362{left:160.918950px;}
.x14_c00362{left:177.479250px;}
.x2_c00362{left:202.679700px;}
.x3b_c00362{left:217.079385px;}
.x1a_c00362{left:221.398635px;}
.x15_c00362{left:222.838950px;}
.x28_c00362{left:225.358635px;}
.x3_c00362{left:228.598500px;}
.x24_c00362{left:230.038950px;}
.x16_c00362{left:231.120000px;}
.x1b_c00362{left:243.718500px;}
.x29_c00362{left:248.759535px;}
.x17_c00362{left:251.638500px;}
.x3c_c00362{left:258.120000px;}
.x4_c00362{left:259.199385px;}
.x25_c00362{left:264.599700px;}
.x2c_c00362{left:265.679100px;}
.x5_c00362{left:278.638500px;}
.x6_c00362{left:292.319850px;}
.x18_c00362{left:296.639100px;}
.x7_c00362{left:309.598530px;}
.x19_c00362{left:320.758500px;}
.x1f_c00362{left:334.439685px;}
.x20_c00362{left:382.678530px;}
.x35_c00362{left:385.199850px;}
.x2d_c00362{left:394.919535px;}
.x36_c00362{left:402.119385px;}
.x2e_c00362{left:416.878320px;}
.x21_c00362{left:421.919535px;}
.x8_c00362{left:442.798920px;}
.x9_c00362{left:464.759535px;}
.x2a_c00362{left:482.758530px;}
.x2b_c00362{left:500.038920px;}
.x26_c00362{left:510.839535px;}
.xe_c00362{left:512.279850px;}
.x27_c00362{left:527.759085px;}
.xf_c00362{left:529.919535px;}
.x13_c00362{left:531.719100px;}
.x2f_c00362{left:545.759535px;}
.x31_c00362{left:567.718500px;}
.xa_c00362{left:570.958335px;}
.x10_c00362{left:574.918350px;}
.x33_c00362{left:577.439670px;}
.x37_c00362{left:580.318770px;}
.x22_c00362{left:585.719100px;}
.xb_c00362{left:588.599670px;}
.x34_c00362{left:597.599070px;}
.x23_c00362{left:600.479685px;}
.x30_c00362{left:604.798920px;}
.x38_c00362{left:615.599670px;}
.x32_c00362{left:621.359250px;}
.x1c_c00362{left:655.918350px;}
.x1d_c00362{left:669.958920px;}
.x39_c00362{left:718.558635px;}
.x11_c00362{left:735.479685px;}
.x3a_c00362{left:741.239220px;}
.x12_c00362{left:748.798560px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls25_c00362{letter-spacing:-15.489067pt;}
.ls19_c00362{letter-spacing:-13.917133pt;}
.ls2a_c00362{letter-spacing:-11.770733pt;}
.ls21_c00362{letter-spacing:-11.688040pt;}
.ls12_c00362{letter-spacing:-11.277933pt;}
.ls22_c00362{letter-spacing:-9.997487pt;}
.ls26_c00362{letter-spacing:-9.144933pt;}
.ls10_c00362{letter-spacing:-7.266700pt;}
.ls1d_c00362{letter-spacing:-6.186400pt;}
.ls16_c00362{letter-spacing:-5.285000pt;}
.ls29_c00362{letter-spacing:-4.908800pt;}
.ls14_c00362{letter-spacing:-4.619300pt;}
.ls18_c00362{letter-spacing:-3.961300pt;}
.ls24_c00362{letter-spacing:-3.892000pt;}
.ls23_c00362{letter-spacing:-3.636000pt;}
.ls17_c00362{letter-spacing:-3.304000pt;}
.ls28_c00362{letter-spacing:-3.151733pt;}
.ls11_c00362{letter-spacing:-2.639000pt;}
.lsf_c00362{letter-spacing:-1.981700pt;}
.ls20_c00362{letter-spacing:-1.386747pt;}
.ls13_c00362{letter-spacing:-1.323700pt;}
.ls1e_c00362{letter-spacing:-1.012067pt;}
.lsd_c00362{letter-spacing:-0.658000pt;}
.ls15_c00362{letter-spacing:0.000000pt;}
.ls1f_c00362{letter-spacing:0.504467pt;}
.ls27_c00362{letter-spacing:0.679000pt;}
.ls2b_c00362{letter-spacing:0.734400pt;}
.ls1_c00362{letter-spacing:1.216800pt;}
.lse_c00362{letter-spacing:1.414400pt;}
.lsc_c00362{letter-spacing:1.516533pt;}
.ls6_c00362{letter-spacing:1.823467pt;}
.lsb_c00362{letter-spacing:2.525467pt;}
.ls1a_c00362{letter-spacing:3.013660pt;}
.ls8_c00362{letter-spacing:3.040613pt;}
.lsa_c00362{letter-spacing:3.537533pt;}
.ls1c_c00362{letter-spacing:3.650400pt;}
.ls0_c00362{letter-spacing:3.961300pt;}
.ls3_c00362{letter-spacing:4.257067pt;}
.ls1b_c00362{letter-spacing:5.238333pt;}
.ls5_c00362{letter-spacing:5.473867pt;}
.ls9_c00362{letter-spacing:8.087133pt;}
.ls2_c00362{letter-spacing:8.514480pt;}
.ls7_c00362{letter-spacing:9.730933pt;}
.ls4_c00362{letter-spacing:22.501787pt;}
.ws0_c00362{word-spacing:0.000000pt;}
._1c_c00362{margin-left:-35.591473pt;}
._20_c00362{margin-left:-19.541711pt;}
._19_c00362{margin-left:-16.746183pt;}
._15_c00362{margin-left:-14.185553pt;}
._1b_c00362{margin-left:-12.636219pt;}
._18_c00362{margin-left:-8.993768pt;}
._16_c00362{margin-left:-7.395804pt;}
._10_c00362{margin-left:-5.820368pt;}
._5_c00362{margin-left:-4.262657pt;}
._11_c00362{margin-left:-3.210900pt;}
._2_c00362{margin-left:-2.298153pt;}
._3_c00362{margin-left:-1.258930pt;}
._1e_c00362{width:0.913606pt;}
._6_c00362{width:2.046245pt;}
._1_c00362{width:3.492894pt;}
._9_c00362{width:4.934947pt;}
._4_c00362{width:5.886908pt;}
._b_c00362{width:7.357026pt;}
._12_c00362{width:8.611017pt;}
._f_c00362{width:10.463481pt;}
._7_c00362{width:11.929862pt;}
._14_c00362{width:13.417442pt;}
._a_c00362{width:14.980528pt;}
._c_c00362{width:16.639449pt;}
._0_c00362{width:17.824047pt;}
._8_c00362{width:18.934921pt;}
._1f_c00362{width:20.135883pt;}
._d_c00362{width:22.294630pt;}
._e_c00362{width:23.221232pt;}
._25_c00362{width:24.290145pt;}
._13_c00362{width:26.265228pt;}
._23_c00362{width:27.451689pt;}
._24_c00362{width:29.393872pt;}
._21_c00362{width:31.480149pt;}
._17_c00362{width:33.997576pt;}
._22_c00362{width:36.098604pt;}
._1a_c00362{width:48.033919pt;}
._1d_c00362{width:56.843906pt;}
.fsa_c00362{font-size:23.333333pt;}
.fs7_c00362{font-size:24.000000pt;}
.fsc_c00362{font-size:25.333333pt;}
.fs9_c00362{font-size:26.000000pt;}
.fsb_c00362{font-size:26.666667pt;}
.fse_c00362{font-size:31.333333pt;}
.fs10_c00362{font-size:32.000000pt;}
.fs6_c00362{font-size:34.000000pt;}
.fs8_c00362{font-size:34.666667pt;}
.fsd_c00362{font-size:35.333333pt;}
.fsf_c00362{font-size:45.333333pt;}
.fs11_c00362{font-size:67.333333pt;}
.fs5_c00362{font-size:68.000000pt;}
.fs1_c00362{font-size:69.333333pt;}
.fs0_c00362{font-size:70.000000pt;}
.fs13_c00362{font-size:70.666667pt;}
.fs4_c00362{font-size:71.333333pt;}
.fs2_c00362{font-size:73.333333pt;}
.fs3_c00362{font-size:75.333333pt;}
.fs12_c00362{font-size:76.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y2a_c00362{bottom:162.238813pt;}
.y29_c00362{bottom:188.480000pt;}
.y28_c00362{bottom:188.480080pt;}
.y27_c00362{bottom:215.039840pt;}
.y26_c00362{bottom:241.599587pt;}
.y25_c00362{bottom:241.600387pt;}
.y23_c00362{bottom:268.159427pt;}
.y24_c00362{bottom:268.160133pt;}
.y22_c00362{bottom:320.318160pt;}
.y21_c00362{bottom:346.239173pt;}
.y20_c00362{bottom:346.240093pt;}
.y1f_c00362{bottom:372.799840pt;}
.y1e_c00362{bottom:372.800693pt;}
.y1d_c00362{bottom:399.040280pt;}
.y1b_c00362{bottom:426.237653pt;}
.y1c_c00362{bottom:426.238773pt;}
.y1a_c00362{bottom:453.119440pt;}
.y19_c00362{bottom:479.679200pt;}
.y18_c00362{bottom:479.679787pt;}
.y17_c00362{bottom:505.278773pt;}
.y16_c00362{bottom:505.279013pt;}
.y15_c00362{bottom:555.840107pt;}
.y13_c00362{bottom:582.399787pt;}
.y14_c00362{bottom:582.399867pt;}
.y12_c00362{bottom:609.279707pt;}
.y11_c00362{bottom:609.279787pt;}
.y10_c00362{bottom:636.159707pt;}
.yf_c00362{bottom:662.720253pt;}
.ye_c00362{bottom:668.479987pt;}
.yd_c00362{bottom:715.517960pt;}
.yc_c00362{bottom:768.318907pt;}
.yb_c00362{bottom:795.519267pt;}
.y9_c00362{bottom:822.078973pt;}
.ya_c00362{bottom:822.079027pt;}
.y7_c00362{bottom:848.958693pt;}
.y8_c00362{bottom:848.958907pt;}
.y6_c00362{bottom:874.879720pt;}
.y4_c00362{bottom:902.079413pt;}
.y5_c00362{bottom:902.080080pt;}
.y2_c00362{bottom:928.638507pt;}
.y3_c00362{bottom:928.639160pt;}
.y1_c00362{bottom:981.439453pt;}
.hb_c00362{height:24.335938pt;}
.h8_c00362{height:25.031250pt;}
.hd_c00362{height:26.421875pt;}
.ha_c00362{height:27.117188pt;}
.hc_c00362{height:27.812500pt;}
.hf_c00362{height:31.578125pt;}
.h11_c00362{height:32.250000pt;}
.he_c00362{height:34.919271pt;}
.h7_c00362{height:35.460938pt;}
.h9_c00362{height:36.156250pt;}
.h10_c00362{height:45.687500pt;}
.h12_c00362{height:66.083984pt;}
.h6_c00362{height:66.738281pt;}
.h2_c00362{height:68.046875pt;}
.h15_c00362{height:68.520833pt;}
.h1_c00362{height:68.701172pt;}
.h18_c00362{height:69.355469pt;}
.h16_c00362{height:70.009766pt;}
.h5_c00362{height:70.497396pt;}
.h17_c00362{height:70.546875pt;}
.h13_c00362{height:71.972656pt;}
.h3_c00362{height:72.473958pt;}
.h4_c00362{height:73.935547pt;}
.h14_c00362{height:75.109375pt;}
.h0_c00362{height:1122.666667pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x1e_c00362{left:120.001160pt;}
.x1_c00362{left:120.959467pt;}
.xc_c00362{left:130.558533pt;}
.xd_c00362{left:143.039067pt;}
.x14_c00362{left:157.759333pt;}
.x2_c00362{left:180.159733pt;}
.x3b_c00362{left:192.959453pt;}
.x1a_c00362{left:196.798787pt;}
.x15_c00362{left:198.079067pt;}
.x28_c00362{left:200.318787pt;}
.x3_c00362{left:203.198667pt;}
.x24_c00362{left:204.479067pt;}
.x16_c00362{left:205.440000pt;}
.x1b_c00362{left:216.638667pt;}
.x29_c00362{left:221.119587pt;}
.x17_c00362{left:223.678667pt;}
.x3c_c00362{left:229.440000pt;}
.x4_c00362{left:230.399453pt;}
.x25_c00362{left:235.199733pt;}
.x2c_c00362{left:236.159200pt;}
.x5_c00362{left:247.678667pt;}
.x6_c00362{left:259.839867pt;}
.x18_c00362{left:263.679200pt;}
.x7_c00362{left:275.198693pt;}
.x19_c00362{left:285.118667pt;}
.x1f_c00362{left:297.279720pt;}
.x20_c00362{left:340.158693pt;}
.x35_c00362{left:342.399867pt;}
.x2d_c00362{left:351.039587pt;}
.x36_c00362{left:357.439453pt;}
.x2e_c00362{left:370.558507pt;}
.x21_c00362{left:375.039587pt;}
.x8_c00362{left:393.599040pt;}
.x9_c00362{left:413.119587pt;}
.x2a_c00362{left:429.118693pt;}
.x2b_c00362{left:444.479040pt;}
.x26_c00362{left:454.079587pt;}
.xe_c00362{left:455.359867pt;}
.x27_c00362{left:469.119187pt;}
.xf_c00362{left:471.039587pt;}
.x13_c00362{left:472.639200pt;}
.x2f_c00362{left:485.119587pt;}
.x31_c00362{left:504.638667pt;}
.xa_c00362{left:507.518520pt;}
.x10_c00362{left:511.038533pt;}
.x33_c00362{left:513.279707pt;}
.x37_c00362{left:515.838907pt;}
.x22_c00362{left:520.639200pt;}
.xb_c00362{left:523.199707pt;}
.x34_c00362{left:531.199173pt;}
.x23_c00362{left:533.759720pt;}
.x30_c00362{left:537.599040pt;}
.x38_c00362{left:547.199707pt;}
.x32_c00362{left:552.319333pt;}
.x1c_c00362{left:583.038533pt;}
.x1d_c00362{left:595.519040pt;}
.x39_c00362{left:638.718787pt;}
.x11_c00362{left:653.759720pt;}
.x3a_c00362{left:658.879307pt;}
.x12_c00362{left:665.598720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1cb27796c4b60b29b959d24.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_b29c305ebba92346927afc5a.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_cc2c94730fcb678ed535fe66.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_7336c4c92667acd1f531e7ca.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_62f563ffc6693b7372c5794f.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_af00e4cf6b5d823085c07079.woff2')format("woff");}.ff6_c00363{font-family:ff6_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;}
@font-face{font-family:ff7_c00363;src:url('chunks/assets/font_724872e1a48664e751aa25b4.woff2')format("woff");}.ff7_c00363{font-family:ff7_c00363;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00363{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m21_c00363{transform:matrix(0.183453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183453,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m12_c00363{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m18_c00363{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1e_c00363{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m29_c00363{transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m1a_c00363{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m14_c00363{transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241453,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m28_c00363{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m15_c00363{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m20_c00363{transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.m1f_c00363{transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320652,0.000000,0.000000,0.250000,0,0);}
.m1d_c00363{transform:matrix(0.349138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349138,0.000000,0.000000,0.250000,0,0);}
.m16_c00363{transform:matrix(0.422840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422840,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.m1b_c00363{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m1c_c00363{transform:matrix(0.647727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647727,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.662338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662338,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls6_c00363{letter-spacing:-14.594850px;}
.ls13_c00363{letter-spacing:-12.687675px;}
.lsa_c00363{letter-spacing:-12.226305px;}
.ls29_c00363{letter-spacing:-11.757150px;}
.ls1e_c00363{letter-spacing:-9.749520px;}
.ls2c_c00363{letter-spacing:-8.777423px;}
.ls12_c00363{letter-spacing:-8.175038px;}
.lsc_c00363{letter-spacing:-7.426125px;}
.ls14_c00363{letter-spacing:-6.685875px;}
.ls18_c00363{letter-spacing:-6.572700px;}
.ls1c_c00363{letter-spacing:-6.212700px;}
.ls1a_c00363{letter-spacing:-6.160478px;}
.ls4_c00363{letter-spacing:-5.945625px;}
.ls1d_c00363{letter-spacing:-5.300400px;}
.ls8_c00363{letter-spacing:-5.196713px;}
.ls1b_c00363{letter-spacing:-5.103105px;}
.ls30_c00363{letter-spacing:-4.701150px;}
.ls10_c00363{letter-spacing:-4.456463px;}
.ls7_c00363{letter-spacing:-3.717000px;}
.ls19_c00363{letter-spacing:-3.611250px;}
.ls2f_c00363{letter-spacing:-3.037950px;}
.lsf_c00363{letter-spacing:-2.997000px;}
.ls17_c00363{letter-spacing:-2.971800px;}
.ls2_c00363{letter-spacing:-2.968875px;}
.ls2e_c00363{letter-spacing:-2.399400px;}
.ls3_c00363{letter-spacing:-2.229413px;}
.ls2b_c00363{letter-spacing:-2.212350px;}
.ls1f_c00363{letter-spacing:-1.834875px;}
.ls5_c00363{letter-spacing:-1.489163px;}
.ls15_c00363{letter-spacing:-0.796365px;}
.ls16_c00363{letter-spacing:-0.741600px;}
.lsb_c00363{letter-spacing:-0.740250px;}
.ls23_c00363{letter-spacing:-0.288750px;}
.ls9_c00363{letter-spacing:0.000000px;}
.ls22_c00363{letter-spacing:0.322200px;}
.lse_c00363{letter-spacing:0.826200px;}
.ls26_c00363{letter-spacing:1.450035px;}
.ls0_c00363{letter-spacing:1.489163px;}
.ls2d_c00363{letter-spacing:1.955123px;}
.ls27_c00363{letter-spacing:2.044343px;}
.ls11_c00363{letter-spacing:2.229413px;}
.lsd_c00363{letter-spacing:2.338088px;}
.ls25_c00363{letter-spacing:3.508650px;}
.ls28_c00363{letter-spacing:4.131960px;}
.ls24_c00363{letter-spacing:4.832850px;}
.ls21_c00363{letter-spacing:5.449125px;}
.ls1_c00363{letter-spacing:8.175038px;}
.ls2a_c00363{letter-spacing:8.914500px;}
.ls20_c00363{letter-spacing:9.429000px;}
.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;}
._23_c00363{margin-left:-209.020390px;}
._1d_c00363{margin-left:-22.625009px;}
._1f_c00363{margin-left:-16.812055px;}
._1e_c00363{margin-left:-11.363833px;}
._9_c00363{margin-left:-7.971595px;}
._22_c00363{margin-left:-6.791965px;}
._0_c00363{margin-left:-5.725392px;}
._3_c00363{margin-left:-4.013902px;}
._2_c00363{margin-left:-2.187096px;}
._16_c00363{margin-left:-1.081787px;}
._6_c00363{width:1.024285px;}
._5_c00363{width:2.709594px;}
._4_c00363{width:4.452807px;}
._b_c00363{width:5.736269px;}
._18_c00363{width:6.841711px;}
._7_c00363{width:7.847333px;}
._1_c00363{width:9.395410px;}
._21_c00363{width:10.457792px;}
._a_c00363{width:11.813570px;}
._8_c00363{width:12.839103px;}
._17_c00363{width:13.907235px;}
._19_c00363{width:15.807933px;}
._c_c00363{width:17.601502px;}
._24_c00363{width:19.667159px;}
._20_c00363{width:21.616132px;}
._f_c00363{width:22.697355px;}
._10_c00363{width:23.878842px;}
._12_c00363{width:26.568378px;}
._e_c00363{width:27.955150px;}
._d_c00363{width:29.747292px;}
._13_c00363{width:32.738708px;}
._11_c00363{width:36.435158px;}
._1a_c00363{width:38.511425px;}
._1c_c00363{width:39.960157px;}
._1b_c00363{width:41.402248px;}
._15_c00363{width:42.424869px;}
._14_c00363{width:45.657363px;}
.fc0_c00363{color:transparent;}
.fs14_c00363{font-size:16.500000px;}
.fs13_c00363{font-size:18.000000px;}
.fs17_c00363{font-size:34.500000px;}
.fs1b_c00363{font-size:36.750000px;}
.fs1a_c00363{font-size:40.500000px;}
.fs12_c00363{font-size:41.250000px;}
.fs11_c00363{font-size:42.000000px;}
.fs15_c00363{font-size:43.500000px;}
.fs1d_c00363{font-size:54.750000px;}
.fs1c_c00363{font-size:57.750000px;}
.fs1e_c00363{font-size:60.000000px;}
.fse_c00363{font-size:60.750000px;}
.fs1f_c00363{font-size:64.500000px;}
.fs20_c00363{font-size:69.750000px;}
.fsf_c00363{font-size:72.000000px;}
.fs10_c00363{font-size:74.250000px;}
.fs3_c00363{font-size:76.500000px;}
.fs9_c00363{font-size:77.250000px;}
.fs8_c00363{font-size:78.000000px;}
.fs0_c00363{font-size:78.750000px;}
.fs4_c00363{font-size:79.500000px;}
.fs5_c00363{font-size:80.250000px;}
.fs7_c00363{font-size:81.000000px;}
.fsa_c00363{font-size:81.750000px;}
.fs2_c00363{font-size:82.500000px;}
.fsd_c00363{font-size:84.000000px;}
.fsb_c00363{font-size:84.750000px;}
.fs1_c00363{font-size:85.500000px;}
.fsc_c00363{font-size:87.750000px;}
.fs6_c00363{font-size:96.000000px;}
.fs18_c00363{font-size:103.500000px;}
.fs19_c00363{font-size:104.250000px;}
.fs16_c00363{font-size:121.500000px;}
.y0_c00363{bottom:0.000000px;}
.y2a_c00363{bottom:305.999385px;}
.y29_c00363{bottom:335.519100px;}
.y28_c00363{bottom:335.520120px;}
.y27_c00363{bottom:365.399850px;}
.y26_c00363{bottom:365.400015px;}
.y25_c00363{bottom:394.919535px;}
.y24_c00363{bottom:424.439250px;}
.y23_c00363{bottom:429.478635px;}
.y21_c00363{bottom:453.958875px;}
.y22_c00363{bottom:453.958920px;}
.y20_c00363{bottom:484.198785px;}
.y1f_c00363{bottom:484.199685px;}
.y1e_c00363{bottom:514.079400px;}
.y1d_c00363{bottom:514.079730px;}
.y1c_c00363{bottom:544.680135px;}
.y1a_c00363{bottom:574.199040px;}
.y1b_c00363{bottom:574.199850px;}
.y18_c00363{bottom:604.078590px;}
.y19_c00363{bottom:604.078770px;}
.y17_c00363{bottom:633.239730px;}
.y16_c00363{bottom:663.840135px;}
.y15_c00363{bottom:663.841260px;}
.y14_c00363{bottom:723.959085px;}
.y13_c00363{bottom:783.360150px;}
.y12_c00363{bottom:813.239865px;}
.y11_c00363{bottom:813.240855px;}
.y10_c00363{bottom:842.760390px;}
.yf_c00363{bottom:873.000300px;}
.ye_c00363{bottom:902.880015px;}
.yc_c00363{bottom:933.119895px;}
.yd_c00363{bottom:933.119940px;}
.ya_c00363{bottom:963.359475px;}
.yb_c00363{bottom:963.359805px;}
.y9_c00363{bottom:992.520630px;}
.y8_c00363{bottom:1022.040165px;}
.y7_c00363{bottom:1051.559685px;}
.y6_c00363{bottom:1051.559880px;}
.y4_c00363{bottom:1081.079265px;}
.y5_c00363{bottom:1081.079400px;}
.y2_c00363{bottom:1111.319145px;}
.y3_c00363{bottom:1111.319190px;}
.y1_c00363{bottom:1141.559055px;}
.h18_c00363{height:17.208984px;}
.h17_c00363{height:18.773438px;}
.h1b_c00363{height:35.982422px;}
.h20_c00363{height:36.068115px;}
.h1f_c00363{height:40.025391px;}
.h19_c00363{height:42.990234px;}
.h16_c00363{height:43.022461px;}
.h15_c00363{height:43.804688px;}
.h22_c00363{height:55.177734px;}
.h21_c00363{height:56.678467px;}
.h11_c00363{height:60.038086px;}
.h23_c00363{height:60.468750px;}
.h24_c00363{height:65.003906px;}
.h25_c00363{height:72.747070px;}
.h4_c00363{height:75.080566px;}
.h12_c00363{height:75.093750px;}
.hb_c00363{height:75.816650px;}
.ha_c00363{height:76.552734px;}
.h1_c00363{height:77.288818px;}
.h14_c00363{height:77.440430px;}
.he_c00363{height:78.024902px;}
.h5_c00363{height:78.568359px;}
.h6_c00363{height:78.760986px;}
.h13_c00363{height:79.365234px;}
.h8_c00363{height:79.497070px;}
.hc_c00363{height:80.233154px;}
.h3_c00363{height:80.969238px;}
.h9_c00363{height:81.533203px;}
.h10_c00363{height:82.441406px;}
.hd_c00363{height:83.177490px;}
.h2_c00363{height:84.498047px;}
.hf_c00363{height:86.121826px;}
.h1e_c00363{height:87.609375px;}
.h7_c00363{height:100.125000px;}
.h1c_c00363{height:107.947266px;}
.h1d_c00363{height:108.729492px;}
.h1a_c00363{height:126.720703px;}
.h0_c00363{height:1263.000000px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x1a_c00363{left:139.319895px;}
.xe_c00363{left:140.760270px;}
.x1_c00363{left:142.559100px;}
.x44_c00363{left:154.439250px;}
.x24_c00363{left:162.000000px;}
.x25_c00363{left:200.159850px;}
.x26_c00363{left:219.958350px;}
.x2e_c00363{left:222.838950px;}
.x3f_c00363{left:231.479235px;}
.x12_c00363{left:250.918350px;}
.x2f_c00363{left:266.040000px;}
.x39_c00363{left:274.678500px;}
.x13_c00363{left:277.199850px;}
.x30_c00363{left:279.719535px;}
.x40_c00363{left:301.319250px;}
.x31_c00363{left:314.639700px;}
.x41_c00363{left:321.119385px;}
.xc_c00363{left:344.879535px;}
.x3a_c00363{left:356.759535px;}
.xd_c00363{left:359.999385px;}
.x32_c00363{left:394.558635px;}
.x29_c00363{left:399.958920px;}
.x14_c00363{left:405.718500px;}
.x2a_c00363{left:421.558635px;}
.x33_c00363{left:427.679070px;}
.x15_c00363{left:437.759535px;}
.x27_c00363{left:443.519070px;}
.x28_c00363{left:457.918950px;}
.x8_c00363{left:466.559100px;}
.x18_c00363{left:467.638500px;}
.x9_c00363{left:481.319820px;}
.x2b_c00363{left:493.199850px;}
.x4_c00363{left:496.439670px;}
.x5_c00363{left:510.478635px;}
.x2c_c00363{left:513.000000px;}
.x42_c00363{left:514.438665px;}
.x43_c00363{left:527.759085px;}
.x3e_c00363{left:530.278800px;}
.x34_c00363{left:532.080000px;}
.x1f_c00363{left:536.399235px;}
.x20_c00363{left:563.399235px;}
.x3b_c00363{left:565.918950px;}
.x16_c00363{left:592.198785px;}
.xa_c00363{left:599.759535px;}
.x35_c00363{left:605.878320px;}
.xb_c00363{left:620.639100px;}
.x17_c00363{left:622.079400px;}
.x23_c00363{left:624.239820px;}
.x6_c00363{left:625.319235px;}
.x2_c00363{left:627.479685px;}
.x7_c00363{left:637.199385px;}
.x3_c00363{left:646.559685px;}
.xf_c00363{left:648.359250px;}
.x1b_c00363{left:654.838950px;}
.x36_c00363{left:659.878320px;}
.x1c_c00363{left:679.319235px;}
.x1d_c00363{left:693.719100px;}
.x37_c00363{left:700.918950px;}
.x21_c00363{left:711.358605px;}
.x10_c00363{left:721.080000px;}
.x3c_c00363{left:730.799520px;}
.x38_c00363{left:731.878920px;}
.x22_c00363{left:732.958335px;}
.x2d_c00363{left:736.559100px;}
.x11_c00363{left:741.239220px;}
.x1e_c00363{left:754.198785px;}
.x19_c00363{left:756.359250px;}
.x3d_c00363{left:764.279250px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls6_c00363{letter-spacing:-12.973200pt;}
.ls13_c00363{letter-spacing:-11.277933pt;}
.lsa_c00363{letter-spacing:-10.867827pt;}
.ls29_c00363{letter-spacing:-10.450800pt;}
.ls1e_c00363{letter-spacing:-8.666240pt;}
.ls2c_c00363{letter-spacing:-7.802153pt;}
.ls12_c00363{letter-spacing:-7.266700pt;}
.lsc_c00363{letter-spacing:-6.601000pt;}
.ls14_c00363{letter-spacing:-5.943000pt;}
.ls18_c00363{letter-spacing:-5.842400pt;}
.ls1c_c00363{letter-spacing:-5.522400pt;}
.ls1a_c00363{letter-spacing:-5.475980pt;}
.ls4_c00363{letter-spacing:-5.285000pt;}
.ls1d_c00363{letter-spacing:-4.711467pt;}
.ls8_c00363{letter-spacing:-4.619300pt;}
.ls1b_c00363{letter-spacing:-4.536093pt;}
.ls30_c00363{letter-spacing:-4.178800pt;}
.ls10_c00363{letter-spacing:-3.961300pt;}
.ls7_c00363{letter-spacing:-3.304000pt;}
.ls19_c00363{letter-spacing:-3.210000pt;}
.ls2f_c00363{letter-spacing:-2.700400pt;}
.lsf_c00363{letter-spacing:-2.664000pt;}
.ls17_c00363{letter-spacing:-2.641600pt;}
.ls2_c00363{letter-spacing:-2.639000pt;}
.ls2e_c00363{letter-spacing:-2.132800pt;}
.ls3_c00363{letter-spacing:-1.981700pt;}
.ls2b_c00363{letter-spacing:-1.966533pt;}
.ls1f_c00363{letter-spacing:-1.631000pt;}
.ls5_c00363{letter-spacing:-1.323700pt;}
.ls15_c00363{letter-spacing:-0.707880pt;}
.ls16_c00363{letter-spacing:-0.659200pt;}
.lsb_c00363{letter-spacing:-0.658000pt;}
.ls23_c00363{letter-spacing:-0.256667pt;}
.ls9_c00363{letter-spacing:0.000000pt;}
.ls22_c00363{letter-spacing:0.286400pt;}
.lse_c00363{letter-spacing:0.734400pt;}
.ls26_c00363{letter-spacing:1.288920pt;}
.ls0_c00363{letter-spacing:1.323700pt;}
.ls2d_c00363{letter-spacing:1.737887pt;}
.ls27_c00363{letter-spacing:1.817193pt;}
.ls11_c00363{letter-spacing:1.981700pt;}
.lsd_c00363{letter-spacing:2.078300pt;}
.ls25_c00363{letter-spacing:3.118800pt;}
.ls28_c00363{letter-spacing:3.672853pt;}
.ls24_c00363{letter-spacing:4.295867pt;}
.ls21_c00363{letter-spacing:4.843667pt;}
.ls1_c00363{letter-spacing:7.266700pt;}
.ls2a_c00363{letter-spacing:7.924000pt;}
.ls20_c00363{letter-spacing:8.381333pt;}
.ws0_c00363{word-spacing:0.000000pt;}
._23_c00363{margin-left:-185.795902pt;}
._1d_c00363{margin-left:-20.111119pt;}
._1f_c00363{margin-left:-14.944049pt;}
._1e_c00363{margin-left:-10.101185pt;}
._9_c00363{margin-left:-7.085862pt;}
._22_c00363{margin-left:-6.037302pt;}
._0_c00363{margin-left:-5.089238pt;}
._3_c00363{margin-left:-3.567913pt;}
._2_c00363{margin-left:-1.944085pt;}
._16_c00363{margin-left:-0.961589pt;}
._6_c00363{width:0.910475pt;}
._5_c00363{width:2.408528pt;}
._4_c00363{width:3.958051pt;}
._b_c00363{width:5.098906pt;}
._18_c00363{width:6.081521pt;}
._7_c00363{width:6.975408pt;}
._1_c00363{width:8.351475pt;}
._21_c00363{width:9.295815pt;}
._a_c00363{width:10.500951pt;}
._8_c00363{width:11.412536pt;}
._17_c00363{width:12.361987pt;}
._19_c00363{width:14.051496pt;}
._c_c00363{width:15.645779pt;}
._24_c00363{width:17.481919pt;}
._20_c00363{width:19.214340pt;}
._f_c00363{width:20.175426pt;}
._10_c00363{width:21.225638pt;}
._12_c00363{width:23.616336pt;}
._e_c00363{width:24.849023pt;}
._d_c00363{width:26.442038pt;}
._13_c00363{width:29.101074pt;}
._11_c00363{width:32.386808pt;}
._1a_c00363{width:34.232377pt;}
._1c_c00363{width:35.520140pt;}
._1b_c00363{width:36.801998pt;}
._15_c00363{width:37.710994pt;}
._14_c00363{width:40.584323pt;}
.fs14_c00363{font-size:14.666667pt;}
.fs13_c00363{font-size:16.000000pt;}
.fs17_c00363{font-size:30.666667pt;}
.fs1b_c00363{font-size:32.666667pt;}
.fs1a_c00363{font-size:36.000000pt;}
.fs12_c00363{font-size:36.666667pt;}
.fs11_c00363{font-size:37.333333pt;}
.fs15_c00363{font-size:38.666667pt;}
.fs1d_c00363{font-size:48.666667pt;}
.fs1c_c00363{font-size:51.333333pt;}
.fs1e_c00363{font-size:53.333333pt;}
.fse_c00363{font-size:54.000000pt;}
.fs1f_c00363{font-size:57.333333pt;}
.fs20_c00363{font-size:62.000000pt;}
.fsf_c00363{font-size:64.000000pt;}
.fs10_c00363{font-size:66.000000pt;}
.fs3_c00363{font-size:68.000000pt;}
.fs9_c00363{font-size:68.666667pt;}
.fs8_c00363{font-size:69.333333pt;}
.fs0_c00363{font-size:70.000000pt;}
.fs4_c00363{font-size:70.666667pt;}
.fs5_c00363{font-size:71.333333pt;}
.fs7_c00363{font-size:72.000000pt;}
.fsa_c00363{font-size:72.666667pt;}
.fs2_c00363{font-size:73.333333pt;}
.fsd_c00363{font-size:74.666667pt;}
.fsb_c00363{font-size:75.333333pt;}
.fs1_c00363{font-size:76.000000pt;}
.fsc_c00363{font-size:78.000000pt;}
.fs6_c00363{font-size:85.333333pt;}
.fs18_c00363{font-size:92.000000pt;}
.fs19_c00363{font-size:92.666667pt;}
.fs16_c00363{font-size:108.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y2a_c00363{bottom:271.999453pt;}
.y29_c00363{bottom:298.239200pt;}
.y28_c00363{bottom:298.240107pt;}
.y27_c00363{bottom:324.799867pt;}
.y26_c00363{bottom:324.800013pt;}
.y25_c00363{bottom:351.039587pt;}
.y24_c00363{bottom:377.279333pt;}
.y23_c00363{bottom:381.758787pt;}
.y21_c00363{bottom:403.519000pt;}
.y22_c00363{bottom:403.519040pt;}
.y20_c00363{bottom:430.398920pt;}
.y1f_c00363{bottom:430.399720pt;}
.y1e_c00363{bottom:456.959467pt;}
.y1d_c00363{bottom:456.959760pt;}
.y1c_c00363{bottom:484.160120pt;}
.y1a_c00363{bottom:510.399147pt;}
.y1b_c00363{bottom:510.399867pt;}
.y18_c00363{bottom:536.958747pt;}
.y19_c00363{bottom:536.958907pt;}
.y17_c00363{bottom:562.879760pt;}
.y16_c00363{bottom:590.080120pt;}
.y15_c00363{bottom:590.081120pt;}
.y14_c00363{bottom:643.519187pt;}
.y13_c00363{bottom:696.320133pt;}
.y12_c00363{bottom:722.879880pt;}
.y11_c00363{bottom:722.880760pt;}
.y10_c00363{bottom:749.120347pt;}
.yf_c00363{bottom:776.000267pt;}
.ye_c00363{bottom:802.560013pt;}
.yc_c00363{bottom:829.439907pt;}
.yd_c00363{bottom:829.439947pt;}
.ya_c00363{bottom:856.319533pt;}
.yb_c00363{bottom:856.319827pt;}
.y9_c00363{bottom:882.240560pt;}
.y8_c00363{bottom:908.480147pt;}
.y7_c00363{bottom:934.719720pt;}
.y6_c00363{bottom:934.719893pt;}
.y4_c00363{bottom:960.959347pt;}
.y5_c00363{bottom:960.959467pt;}
.y2_c00363{bottom:987.839240pt;}
.y3_c00363{bottom:987.839280pt;}
.y1_c00363{bottom:1014.719160pt;}
.h18_c00363{height:15.296875pt;}
.h17_c00363{height:16.687500pt;}
.h1b_c00363{height:31.984375pt;}
.h20_c00363{height:32.060547pt;}
.h1f_c00363{height:35.578125pt;}
.h19_c00363{height:38.213542pt;}
.h16_c00363{height:38.242188pt;}
.h15_c00363{height:38.937500pt;}
.h22_c00363{height:49.046875pt;}
.h21_c00363{height:50.380859pt;}
.h11_c00363{height:53.367188pt;}
.h23_c00363{height:53.750000pt;}
.h24_c00363{height:57.781250pt;}
.h25_c00363{height:64.664062pt;}
.h4_c00363{height:66.738281pt;}
.h12_c00363{height:66.750000pt;}
.hb_c00363{height:67.392578pt;}
.ha_c00363{height:68.046875pt;}
.h1_c00363{height:68.701172pt;}
.h14_c00363{height:68.835938pt;}
.he_c00363{height:69.355469pt;}
.h5_c00363{height:69.838542pt;}
.h6_c00363{height:70.009766pt;}
.h13_c00363{height:70.546875pt;}
.h8_c00363{height:70.664062pt;}
.hc_c00363{height:71.318359pt;}
.h3_c00363{height:71.972656pt;}
.h9_c00363{height:72.473958pt;}
.h10_c00363{height:73.281250pt;}
.hd_c00363{height:73.935547pt;}
.h2_c00363{height:75.109375pt;}
.hf_c00363{height:76.552734pt;}
.h1e_c00363{height:77.875000pt;}
.h7_c00363{height:89.000000pt;}
.h1c_c00363{height:95.953125pt;}
.h1d_c00363{height:96.648438pt;}
.h1a_c00363{height:112.640625pt;}
.h0_c00363{height:1122.666667pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x1a_c00363{left:123.839907pt;}
.xe_c00363{left:125.120240pt;}
.x1_c00363{left:126.719200pt;}
.x44_c00363{left:137.279333pt;}
.x24_c00363{left:144.000000pt;}
.x25_c00363{left:177.919867pt;}
.x26_c00363{left:195.518533pt;}
.x2e_c00363{left:198.079067pt;}
.x3f_c00363{left:205.759320pt;}
.x12_c00363{left:223.038533pt;}
.x2f_c00363{left:236.480000pt;}
.x39_c00363{left:244.158667pt;}
.x13_c00363{left:246.399867pt;}
.x30_c00363{left:248.639587pt;}
.x40_c00363{left:267.839333pt;}
.x31_c00363{left:279.679733pt;}
.x41_c00363{left:285.439453pt;}
.xc_c00363{left:306.559587pt;}
.x3a_c00363{left:317.119587pt;}
.xd_c00363{left:319.999453pt;}
.x32_c00363{left:350.718787pt;}
.x29_c00363{left:355.519040pt;}
.x14_c00363{left:360.638667pt;}
.x2a_c00363{left:374.718787pt;}
.x33_c00363{left:380.159173pt;}
.x15_c00363{left:389.119587pt;}
.x27_c00363{left:394.239173pt;}
.x28_c00363{left:407.039067pt;}
.x8_c00363{left:414.719200pt;}
.x18_c00363{left:415.678667pt;}
.x9_c00363{left:427.839840pt;}
.x2b_c00363{left:438.399867pt;}
.x4_c00363{left:441.279707pt;}
.x5_c00363{left:453.758787pt;}
.x2c_c00363{left:456.000000pt;}
.x42_c00363{left:457.278813pt;}
.x43_c00363{left:469.119187pt;}
.x3e_c00363{left:471.358933pt;}
.x34_c00363{left:472.960000pt;}
.x1f_c00363{left:476.799320pt;}
.x20_c00363{left:500.799320pt;}
.x3b_c00363{left:503.039067pt;}
.x16_c00363{left:526.398920pt;}
.xa_c00363{left:533.119587pt;}
.x35_c00363{left:538.558507pt;}
.xb_c00363{left:551.679200pt;}
.x17_c00363{left:552.959467pt;}
.x23_c00363{left:554.879840pt;}
.x6_c00363{left:555.839320pt;}
.x2_c00363{left:557.759720pt;}
.x7_c00363{left:566.399453pt;}
.x3_c00363{left:574.719720pt;}
.xf_c00363{left:576.319333pt;}
.x1b_c00363{left:582.079067pt;}
.x36_c00363{left:586.558507pt;}
.x1c_c00363{left:603.839320pt;}
.x1d_c00363{left:616.639200pt;}
.x37_c00363{left:623.039067pt;}
.x21_c00363{left:632.318760pt;}
.x10_c00363{left:640.960000pt;}
.x3c_c00363{left:649.599573pt;}
.x38_c00363{left:650.559040pt;}
.x22_c00363{left:651.518520pt;}
.x2d_c00363{left:654.719200pt;}
.x11_c00363{left:658.879307pt;}
.x1e_c00363{left:670.398920pt;}
.x19_c00363{left:672.319333pt;}
.x3d_c00363{left:679.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28773e580dc75147eb01faa8.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_691a300ae68b1b2af625ef97.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_a7f08f8df3f9f56e6bc0d8a3.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_2a3263393d6ee5a45d28da7f.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.364746;font-style:normal;font-weight: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_c00364;src:url('chunks/assets/font_1a318f542a150a2137e280c1.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.364746;font-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_c00364{transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042636,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.049419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049419,0.000000,0.000000,0.250000,0,0);}
.m1d_c00364{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m2a_c00364{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{transform:matrix(0.172897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172897,0.000000,0.000000,0.250000,0,0);}
.m19_c00364{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m24_c00364{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m11_c00364{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m29_c00364{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m21_c00364{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m28_c00364{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1a_c00364{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m2b_c00364{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m1f_c00364{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m26_c00364{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m25_c00364{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m12_c00364{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m1c_c00364{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_c00364{transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);}
.m20_c00364{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.me_c00364{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m23_c00364{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m2d_c00364{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc_c00364{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m2c_c00364{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m2f_c00364{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{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);}
.m27_c00364{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m18_c00364{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m17_c00364{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00364{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c00364{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00364{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.m2e_c00364{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m22_c00364{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.md_c00364{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls2b_c00364{letter-spacing:-24.441750px;}
.ls15_c00364{letter-spacing:-14.082750px;}
.ls11_c00364{letter-spacing:-13.149045px;}
.ls1d_c00364{letter-spacing:-12.687675px;}
.ls10_c00364{letter-spacing:-10.561703px;}
.ls13_c00364{letter-spacing:-8.914500px;}
.ls17_c00364{letter-spacing:-8.175038px;}
.ls18_c00364{letter-spacing:-7.591650px;}
.ls1e_c00364{letter-spacing:-7.373513px;}
.ls19_c00364{letter-spacing:-6.452100px;}
.ls1a_c00364{letter-spacing:-6.051443px;}
.ls14_c00364{letter-spacing:-5.945625px;}
.ls12_c00364{letter-spacing:-5.196713px;}
.ls30_c00364{letter-spacing:-4.501575px;}
.ls1b_c00364{letter-spacing:-4.456463px;}
.ls4_c00364{letter-spacing:-4.371578px;}
.ls22_c00364{letter-spacing:-3.951975px;}
.lsf_c00364{letter-spacing:-3.717000px;}
.ls20_c00364{letter-spacing:-3.715575px;}
.ls2f_c00364{letter-spacing:-3.685050px;}
.ls0_c00364{letter-spacing:-3.608348px;}
.lse_c00364{letter-spacing:-2.968875px;}
.ls5_c00364{letter-spacing:-2.862600px;}
.ls2c_c00364{letter-spacing:-2.438400px;}
.ls16_c00364{letter-spacing:-2.433375px;}
.ls2e_c00364{letter-spacing:-2.406450px;}
.ls2d_c00364{letter-spacing:-2.361120px;}
.lsb_c00364{letter-spacing:-2.229413px;}
.ls2_c00364{letter-spacing:-2.208578px;}
.ls25_c00364{letter-spacing:-1.627680px;}
.ls21_c00364{letter-spacing:-1.606950px;}
.ls31_c00364{letter-spacing:-1.574625px;}
.ls27_c00364{letter-spacing:-1.525665px;}
.ls3_c00364{letter-spacing:-1.500165px;}
.ls8_c00364{letter-spacing:-1.489163px;}
.ls24_c00364{letter-spacing:-1.014000px;}
.ls29_c00364{letter-spacing:-0.994500px;}
.ls28_c00364{letter-spacing:-0.887250px;}
.ls23_c00364{letter-spacing:-0.800625px;}
.lsc_c00364{letter-spacing:-0.787050px;}
.ls1c_c00364{letter-spacing:-0.756743px;}
.lsd_c00364{letter-spacing:-0.740250px;}
.ls6_c00364{letter-spacing:-0.734400px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls2a_c00364{letter-spacing:1.132200px;}
.ls7_c00364{letter-spacing:1.485000px;}
.ls26_c00364{letter-spacing:2.442825px;}
.ls1f_c00364{letter-spacing:3.225000px;}
.lsa_c00364{letter-spacing:9.953250px;}
.ls9_c00364{letter-spacing:19.317375px;}
.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;}
._14_c00364{margin-left:-24.743101px;}
._16_c00364{margin-left:-21.666681px;}
._17_c00364{margin-left:-20.474941px;}
._f_c00364{margin-left:-18.215350px;}
._10_c00364{margin-left:-17.061306px;}
._3_c00364{margin-left:-5.434315px;}
._e_c00364{margin-left:-4.417533px;}
._4_c00364{margin-left:-1.745977px;}
._1_c00364{width:1.658386px;}
._5_c00364{width:3.479487px;}
._2_c00364{width:5.373677px;}
._18_c00364{width:6.533977px;}
._9_c00364{width:7.944241px;}
._6_c00364{width:9.075700px;}
._8_c00364{width:10.820577px;}
._a_c00364{width:11.954131px;}
._7_c00364{width:13.603394px;}
._0_c00364{width:15.419488px;}
._c_c00364{width:17.244081px;}
._15_c00364{width:18.503635px;}
._b_c00364{width:20.268021px;}
._12_c00364{width:21.602314px;}
._13_c00364{width:23.077702px;}
._d_c00364{width:25.693495px;}
._11_c00364{width:36.624025px;}
.fc0_c00364{color:transparent;}
.fs11_c00364{font-size:36.750000px;}
.fs1c_c00364{font-size:42.750000px;}
.fs12_c00364{font-size:45.000000px;}
.fs15_c00364{font-size:45.750000px;}
.fs19_c00364{font-size:46.500000px;}
.fs18_c00364{font-size:47.250000px;}
.fs17_c00364{font-size:48.000000px;}
.fs16_c00364{font-size:48.750000px;}
.fs1a_c00364{font-size:51.000000px;}
.fs14_c00364{font-size:52.500000px;}
.fs1b_c00364{font-size:53.250000px;}
.fs13_c00364{font-size:59.250000px;}
.fs1_c00364{font-size:73.500000px;}
.fs4_c00364{font-size:74.250000px;}
.fs7_c00364{font-size:75.000000px;}
.fsf_c00364{font-size:75.750000px;}
.fs2_c00364{font-size:76.500000px;}
.fs0_c00364{font-size:77.250000px;}
.fs3_c00364{font-size:78.000000px;}
.fs6_c00364{font-size:78.750000px;}
.fs8_c00364{font-size:79.500000px;}
.fs9_c00364{font-size:80.250000px;}
.fsb_c00364{font-size:82.500000px;}
.fse_c00364{font-size:83.250000px;}
.fsd_c00364{font-size:84.750000px;}
.fsa_c00364{font-size:85.500000px;}
.fs10_c00364{font-size:86.250000px;}
.fsc_c00364{font-size:87.750000px;}
.fs5_c00364{font-size:193.500000px;}
.y0_c00364{bottom:0.000000px;}
.y29_c00364{bottom:133.920600px;}
.y28_c00364{bottom:174.600150px;}
.y27_c00364{bottom:264.240435px;}
.y26_c00364{bottom:264.241155px;}
.y24_c00364{bottom:293.040000px;}
.y23_c00364{bottom:293.040690px;}
.y22_c00364{bottom:322.920405px;}
.y1d_c00364{bottom:382.320900px;}
.y1b_c00364{bottom:411.840450px;}
.y1c_c00364{bottom:411.840585px;}
.y1a_c00364{bottom:442.080375px;}
.y19_c00364{bottom:472.320285px;}
.y18_c00364{bottom:472.321305px;}
.y17_c00364{bottom:502.201035px;}
.y16_c00364{bottom:531.721590px;}
.y15_c00364{bottom:561.601320px;}
.y14_c00364{bottom:561.601500px;}
.y13_c00364{bottom:591.121035px;}
.y12_c00364{bottom:591.121215px;}
.y10_c00364{bottom:620.639940px;}
.y11_c00364{bottom:620.640750px;}
.yf_c00364{bottom:650.519670px;}
.ye_c00364{bottom:650.519685px;}
.yd_c00364{bottom:680.041035px;}
.yc_c00364{bottom:709.560750px;}
.yb_c00364{bottom:709.561530px;}
.y7_c00364{bottom:769.681455px;}
.y5_c00364{bottom:799.200435px;}
.y6_c00364{bottom:799.200990px;}
.y21_c00364{bottom:851.399865px;}
.y25_c00364{bottom:869.041170px;}
.y20_c00364{bottom:869.399370px;}
.y4_c00364{bottom:869.400240px;}
.ya_c00364{bottom:869.400495px;}
.y1f_c00364{bottom:909.719445px;}
.y9_c00364{bottom:909.720570px;}
.y1e_c00364{bottom:1031.400075px;}
.y3_c00364{bottom:1031.400240px;}
.y8_c00364{bottom:1031.401200px;}
.y2_c00364{bottom:1100.881170px;}
.y1_c00364{bottom:1131.121035px;}
.h15_c00364{height:36.319336px;}
.h21_c00364{height:44.586914px;}
.h19_c00364{height:46.107422px;}
.h1d_c00364{height:46.863281px;}
.h16_c00364{height:46.933594px;}
.h1c_c00364{height:47.619141px;}
.h1a_c00364{height:48.178711px;}
.h1b_c00364{height:48.375000px;}
.h1e_c00364{height:49.130859px;}
.h1f_c00364{height:50.402344px;}
.h18_c00364{height:51.884766px;}
.h20_c00364{height:52.625977px;}
.h17_c00364{height:58.555664px;}
.h8_c00364{height:73.608398px;}
.h12_c00364{height:74.344482px;}
.h2_c00364{height:76.658203px;}
.h3_c00364{height:77.097656px;}
.h7_c00364{height:77.288818px;}
.h5_c00364{height:77.440430px;}
.h1_c00364{height:77.853516px;}
.h9_c00364{height:78.024902px;}
.h4_c00364{height:78.609375px;}
.ha_c00364{height:78.760986px;}
.he_c00364{height:79.309570px;}
.hd_c00364{height:79.365234px;}
.h13_c00364{height:80.969238px;}
.hc_c00364{height:81.533203px;}
.h11_c00364{height:81.705322px;}
.h10_c00364{height:83.177490px;}
.hb_c00364{height:84.498047px;}
.h14_c00364{height:85.239258px;}
.hf_c00364{height:86.121826px;}
.h6_c00364{height:201.814453px;}
.h0_c00364{height:1263.000000px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x18_c00364{left:137.158815px;}
.x13_c00364{left:138.598725px;}
.x19_c00364{left:152.278800px;}
.x3b_c00364{left:168.479685px;}
.x29_c00364{left:182.159415px;}
.x3c_c00364{left:185.040000px;}
.x37_c00364{left:195.479685px;}
.x2b_c00364{left:198.719535px;}
.x3d_c00364{left:201.239250px;}
.x3e_c00364{left:212.758500px;}
.x1a_c00364{left:216.359250px;}
.x38_c00364{left:225.358635px;}
.x14_c00364{left:226.439685px;}
.x1b_c00364{left:237.238785px;}
.x3f_c00364{left:240.119385px;}
.x2f_c00364{left:242.639100px;}
.x15_c00364{left:250.918350px;}
.x40_c00364{left:253.439685px;}
.x23_c00364{left:255.239250px;}
.x8_c00364{left:258.120000px;}
.xe_c00364{left:267.119355px;}
.x1_c00364{left:268.559685px;}
.x9_c00364{left:269.639100px;}
.x24_c00364{left:271.799535px;}
.x16_c00364{left:293.399250px;}
.x41_c00364{left:305.279250px;}
.x25_c00364{left:318.599700px;}
.x2_c00364{left:327.239850px;}
.xf_c00364{left:330.118785px;}
.x26_c00364{left:333.719535px;}
.x42_c00364{left:337.318800px;}
.x2a_c00364{left:351.718500px;}
.x3_c00364{left:356.759535px;}
.x2c_c00364{left:371.518635px;}
.x34_c00364{left:374.758500px;}
.x21_c00364{left:376.198785px;}
.x43_c00364{left:386.279250px;}
.x35_c00364{left:390.959385px;}
.xa_c00364{left:395.278800px;}
.x22_c00364{left:397.798515px;}
.x33_c00364{left:410.759535px;}
.x10_c00364{left:413.279250px;}
.x44_c00364{left:420.119985px;}
.xb_c00364{left:427.319820px;}
.x4_c00364{left:433.079400px;}
.x45_c00364{left:463.319235px;}
.xc_c00364{left:468.719565px;}
.x17_c00364{left:473.038920px;}
.x1c_c00364{left:487.799565px;}
.xd_c00364{left:492.118785px;}
.x36_c00364{left:495.354375px;}
.x1d_c00364{left:500.399820px;}
.x1e_c00364{left:522.719565px;}
.x5_c00364{left:527.038920px;}
.x46_c00364{left:528.119985px;}
.x47_c00364{left:542.158770px;}
.x12_c00364{left:544.319115px;}
.x6_c00364{left:550.798920px;}
.x11_c00364{left:557.639280px;}
.x7_c00364{left:569.878920px;}
.x27_c00364{left:571.319235px;}
.x48_c00364{left:583.558635px;}
.x1f_c00364{left:585.719100px;}
.x28_c00364{left:591.839535px;}
.x20_c00364{left:599.759535px;}
.x2d_c00364{left:603.719520px;}
.x49_c00364{left:610.919535px;}
.x4a_c00364{left:624.958335px;}
.x31_c00364{left:627.480555px;}
.x2e_c00364{left:650.158770px;}
.x32_c00364{left:654.118785px;}
.x4b_c00364{left:659.878320px;}
.x39_c00364{left:686.159820px;}
.x4c_c00364{left:692.639700px;}
.x3a_c00364{left:699.839535px;}
.x4d_c00364{left:706.319235px;}
.x4e_c00364{left:751.319820px;}
.x30_c00364{left:753.478635px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls2b_c00364{letter-spacing:-21.726000pt;}
.ls15_c00364{letter-spacing:-12.518000pt;}
.ls11_c00364{letter-spacing:-11.688040pt;}
.ls1d_c00364{letter-spacing:-11.277933pt;}
.ls10_c00364{letter-spacing:-9.388180pt;}
.ls13_c00364{letter-spacing:-7.924000pt;}
.ls17_c00364{letter-spacing:-7.266700pt;}
.ls18_c00364{letter-spacing:-6.748133pt;}
.ls1e_c00364{letter-spacing:-6.554233pt;}
.ls19_c00364{letter-spacing:-5.735200pt;}
.ls1a_c00364{letter-spacing:-5.379060pt;}
.ls14_c00364{letter-spacing:-5.285000pt;}
.ls12_c00364{letter-spacing:-4.619300pt;}
.ls30_c00364{letter-spacing:-4.001400pt;}
.ls1b_c00364{letter-spacing:-3.961300pt;}
.ls4_c00364{letter-spacing:-3.885847pt;}
.ls22_c00364{letter-spacing:-3.512867pt;}
.lsf_c00364{letter-spacing:-3.304000pt;}
.ls20_c00364{letter-spacing:-3.302733pt;}
.ls2f_c00364{letter-spacing:-3.275600pt;}
.ls0_c00364{letter-spacing:-3.207420pt;}
.lse_c00364{letter-spacing:-2.639000pt;}
.ls5_c00364{letter-spacing:-2.544533pt;}
.ls2c_c00364{letter-spacing:-2.167467pt;}
.ls16_c00364{letter-spacing:-2.163000pt;}
.ls2e_c00364{letter-spacing:-2.139067pt;}
.ls2d_c00364{letter-spacing:-2.098773pt;}
.lsb_c00364{letter-spacing:-1.981700pt;}
.ls2_c00364{letter-spacing:-1.963180pt;}
.ls25_c00364{letter-spacing:-1.446827pt;}
.ls21_c00364{letter-spacing:-1.428400pt;}
.ls31_c00364{letter-spacing:-1.399667pt;}
.ls27_c00364{letter-spacing:-1.356147pt;}
.ls3_c00364{letter-spacing:-1.333480pt;}
.ls8_c00364{letter-spacing:-1.323700pt;}
.ls24_c00364{letter-spacing:-0.901333pt;}
.ls29_c00364{letter-spacing:-0.884000pt;}
.ls28_c00364{letter-spacing:-0.788667pt;}
.ls23_c00364{letter-spacing:-0.711667pt;}
.lsc_c00364{letter-spacing:-0.699600pt;}
.ls1c_c00364{letter-spacing:-0.672660pt;}
.lsd_c00364{letter-spacing:-0.658000pt;}
.ls6_c00364{letter-spacing:-0.652800pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls2a_c00364{letter-spacing:1.006400pt;}
.ls7_c00364{letter-spacing:1.320000pt;}
.ls26_c00364{letter-spacing:2.171400pt;}
.ls1f_c00364{letter-spacing:2.866667pt;}
.lsa_c00364{letter-spacing:8.847333pt;}
.ls9_c00364{letter-spacing:17.171000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
._14_c00364{margin-left:-21.993868pt;}
._16_c00364{margin-left:-19.259272pt;}
._17_c00364{margin-left:-18.199947pt;}
._f_c00364{margin-left:-16.191423pt;}
._10_c00364{margin-left:-15.165606pt;}
._3_c00364{margin-left:-4.830502pt;}
._e_c00364{margin-left:-3.926696pt;}
._4_c00364{margin-left:-1.551979pt;}
._1_c00364{width:1.474121pt;}
._5_c00364{width:3.092877pt;}
._2_c00364{width:4.776602pt;}
._18_c00364{width:5.807979pt;}
._9_c00364{width:7.061547pt;}
._6_c00364{width:8.067289pt;}
._8_c00364{width:9.618291pt;}
._a_c00364{width:10.625894pt;}
._7_c00364{width:12.091906pt;}
._0_c00364{width:13.706211pt;}
._c_c00364{width:15.328072pt;}
._15_c00364{width:16.447675pt;}
._b_c00364{width:18.016019pt;}
._12_c00364{width:19.202057pt;}
._13_c00364{width:20.513513pt;}
._d_c00364{width:22.838662pt;}
._11_c00364{width:32.554689pt;}
.fs11_c00364{font-size:32.666667pt;}
.fs1c_c00364{font-size:38.000000pt;}
.fs12_c00364{font-size:40.000000pt;}
.fs15_c00364{font-size:40.666667pt;}
.fs19_c00364{font-size:41.333333pt;}
.fs18_c00364{font-size:42.000000pt;}
.fs17_c00364{font-size:42.666667pt;}
.fs16_c00364{font-size:43.333333pt;}
.fs1a_c00364{font-size:45.333333pt;}
.fs14_c00364{font-size:46.666667pt;}
.fs1b_c00364{font-size:47.333333pt;}
.fs13_c00364{font-size:52.666667pt;}
.fs1_c00364{font-size:65.333333pt;}
.fs4_c00364{font-size:66.000000pt;}
.fs7_c00364{font-size:66.666667pt;}
.fsf_c00364{font-size:67.333333pt;}
.fs2_c00364{font-size:68.000000pt;}
.fs0_c00364{font-size:68.666667pt;}
.fs3_c00364{font-size:69.333333pt;}
.fs6_c00364{font-size:70.000000pt;}
.fs8_c00364{font-size:70.666667pt;}
.fs9_c00364{font-size:71.333333pt;}
.fsb_c00364{font-size:73.333333pt;}
.fse_c00364{font-size:74.000000pt;}
.fsd_c00364{font-size:75.333333pt;}
.fsa_c00364{font-size:76.000000pt;}
.fs10_c00364{font-size:76.666667pt;}
.fsc_c00364{font-size:78.000000pt;}
.fs5_c00364{font-size:172.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y29_c00364{bottom:119.040533pt;}
.y28_c00364{bottom:155.200133pt;}
.y27_c00364{bottom:234.880387pt;}
.y26_c00364{bottom:234.881027pt;}
.y24_c00364{bottom:260.480000pt;}
.y23_c00364{bottom:260.480613pt;}
.y22_c00364{bottom:287.040360pt;}
.y1d_c00364{bottom:339.840800pt;}
.y1b_c00364{bottom:366.080400pt;}
.y1c_c00364{bottom:366.080520pt;}
.y1a_c00364{bottom:392.960333pt;}
.y19_c00364{bottom:419.840253pt;}
.y18_c00364{bottom:419.841160pt;}
.y17_c00364{bottom:446.400920pt;}
.y16_c00364{bottom:472.641413pt;}
.y15_c00364{bottom:499.201173pt;}
.y14_c00364{bottom:499.201333pt;}
.y13_c00364{bottom:525.440920pt;}
.y12_c00364{bottom:525.441080pt;}
.y10_c00364{bottom:551.679947pt;}
.y11_c00364{bottom:551.680667pt;}
.yf_c00364{bottom:578.239707pt;}
.ye_c00364{bottom:578.239720pt;}
.yd_c00364{bottom:604.480920pt;}
.yc_c00364{bottom:630.720667pt;}
.yb_c00364{bottom:630.721360pt;}
.y7_c00364{bottom:684.161293pt;}
.y5_c00364{bottom:710.400387pt;}
.y6_c00364{bottom:710.400880pt;}
.y21_c00364{bottom:756.799880pt;}
.y25_c00364{bottom:772.481040pt;}
.y20_c00364{bottom:772.799440pt;}
.y4_c00364{bottom:772.800213pt;}
.ya_c00364{bottom:772.800440pt;}
.y1f_c00364{bottom:808.639507pt;}
.y9_c00364{bottom:808.640507pt;}
.y1e_c00364{bottom:916.800067pt;}
.y3_c00364{bottom:916.800213pt;}
.y8_c00364{bottom:916.801067pt;}
.y2_c00364{bottom:978.561040pt;}
.y1_c00364{bottom:1005.440920pt;}
.h15_c00364{height:32.283854pt;}
.h21_c00364{height:39.632812pt;}
.h19_c00364{height:40.984375pt;}
.h1d_c00364{height:41.656250pt;}
.h16_c00364{height:41.718750pt;}
.h1c_c00364{height:42.328125pt;}
.h1a_c00364{height:42.825521pt;}
.h1b_c00364{height:43.000000pt;}
.h1e_c00364{height:43.671875pt;}
.h1f_c00364{height:44.802083pt;}
.h18_c00364{height:46.119792pt;}
.h20_c00364{height:46.778646pt;}
.h17_c00364{height:52.049479pt;}
.h8_c00364{height:65.429688pt;}
.h12_c00364{height:66.083984pt;}
.h2_c00364{height:68.140625pt;}
.h3_c00364{height:68.531250pt;}
.h7_c00364{height:68.701172pt;}
.h5_c00364{height:68.835938pt;}
.h1_c00364{height:69.203125pt;}
.h9_c00364{height:69.355469pt;}
.h4_c00364{height:69.875000pt;}
.ha_c00364{height:70.009766pt;}
.he_c00364{height:70.497396pt;}
.hd_c00364{height:70.546875pt;}
.h13_c00364{height:71.972656pt;}
.hc_c00364{height:72.473958pt;}
.h11_c00364{height:72.626953pt;}
.h10_c00364{height:73.935547pt;}
.hb_c00364{height:75.109375pt;}
.h14_c00364{height:75.768229pt;}
.hf_c00364{height:76.552734pt;}
.h6_c00364{height:179.390625pt;}
.h0_c00364{height:1122.666667pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x18_c00364{left:121.918947pt;}
.x13_c00364{left:123.198867pt;}
.x19_c00364{left:135.358933pt;}
.x3b_c00364{left:149.759720pt;}
.x29_c00364{left:161.919480pt;}
.x3c_c00364{left:164.480000pt;}
.x37_c00364{left:173.759720pt;}
.x2b_c00364{left:176.639587pt;}
.x3d_c00364{left:178.879333pt;}
.x3e_c00364{left:189.118667pt;}
.x1a_c00364{left:192.319333pt;}
.x38_c00364{left:200.318787pt;}
.x14_c00364{left:201.279720pt;}
.x1b_c00364{left:210.878920pt;}
.x3f_c00364{left:213.439453pt;}
.x2f_c00364{left:215.679200pt;}
.x15_c00364{left:223.038533pt;}
.x40_c00364{left:225.279720pt;}
.x23_c00364{left:226.879333pt;}
.x8_c00364{left:229.440000pt;}
.xe_c00364{left:237.439427pt;}
.x1_c00364{left:238.719720pt;}
.x9_c00364{left:239.679200pt;}
.x24_c00364{left:241.599587pt;}
.x16_c00364{left:260.799333pt;}
.x41_c00364{left:271.359333pt;}
.x25_c00364{left:283.199733pt;}
.x2_c00364{left:290.879867pt;}
.xf_c00364{left:293.438920pt;}
.x26_c00364{left:296.639587pt;}
.x42_c00364{left:299.838933pt;}
.x2a_c00364{left:312.638667pt;}
.x3_c00364{left:317.119587pt;}
.x2c_c00364{left:330.238787pt;}
.x34_c00364{left:333.118667pt;}
.x21_c00364{left:334.398920pt;}
.x43_c00364{left:343.359333pt;}
.x35_c00364{left:347.519453pt;}
.xa_c00364{left:351.358933pt;}
.x22_c00364{left:353.598680pt;}
.x33_c00364{left:365.119587pt;}
.x10_c00364{left:367.359333pt;}
.x44_c00364{left:373.439987pt;}
.xb_c00364{left:379.839840pt;}
.x4_c00364{left:384.959467pt;}
.x45_c00364{left:411.839320pt;}
.xc_c00364{left:416.639613pt;}
.x17_c00364{left:420.479040pt;}
.x1c_c00364{left:433.599613pt;}
.xd_c00364{left:437.438920pt;}
.x36_c00364{left:440.315000pt;}
.x1d_c00364{left:444.799840pt;}
.x1e_c00364{left:464.639613pt;}
.x5_c00364{left:468.479040pt;}
.x46_c00364{left:469.439987pt;}
.x47_c00364{left:481.918907pt;}
.x12_c00364{left:483.839213pt;}
.x6_c00364{left:489.599040pt;}
.x11_c00364{left:495.679360pt;}
.x7_c00364{left:506.559040pt;}
.x27_c00364{left:507.839320pt;}
.x48_c00364{left:518.718787pt;}
.x1f_c00364{left:520.639200pt;}
.x28_c00364{left:526.079587pt;}
.x20_c00364{left:533.119587pt;}
.x2d_c00364{left:536.639573pt;}
.x49_c00364{left:543.039587pt;}
.x4a_c00364{left:555.518520pt;}
.x31_c00364{left:557.760493pt;}
.x2e_c00364{left:577.918907pt;}
.x32_c00364{left:581.438920pt;}
.x4b_c00364{left:586.558507pt;}
.x39_c00364{left:609.919840pt;}
.x4c_c00364{left:615.679733pt;}
.x3a_c00364{left:622.079587pt;}
.x4d_c00364{left:627.839320pt;}
.x4e_c00364{left:667.839840pt;}
.x30_c00364{left:669.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_829bc21d1c04457ba9791f22.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_239d02917f680eff25bdecc6.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.432129;font-style:normal;font-weight:normal;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_eb8810f91e52e87436b58d56.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_b30943a6eeccb738fa82e4f9.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_b6d279e4b07e7c70a621f6aa.woff2')format("woff");}.ff5_c00365{font-family:ff5_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:ff6_c00365;src:url('chunks/assets/font_383f735a8ca258f78ad019b6.woff2')format("woff");}.ff6_c00365{font-family:ff6_c00365;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00365;src:url('chunks/assets/font_8bf6e18353ae034ab0a9ca48.woff2')format("woff");}.ff7_c00365{font-family:ff7_c00365;line-height:1.281250;font-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_c00365{transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128571,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134328,0.000000,0.000000,0.250000,0,0);}
.m2f_c00365{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);}
.m44_c00365{transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.173387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173387,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.180917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180917,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.md_c00365{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m27_c00365{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);}
.m32_c00365{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4a_c00365{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m37_c00365{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m24_c00365{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m48_c00365{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m4c_c00365{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2e_c00365{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m42_c00365{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m28_c00365{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m3a_c00365{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m30_c00365{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m2a_c00365{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m21_c00365{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{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);}
.m45_c00365{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m31_c00365{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.m36_c00365{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m46_c00365{transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m3d_c00365{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m41_c00365{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);}
.v0_c00365{vertical-align:0.000000px;}
.ls1d_c00365{letter-spacing:-17.226000px;}
.ls56_c00365{letter-spacing:-15.555000px;}
.ls15_c00365{letter-spacing:-14.082750px;}
.ls12_c00365{letter-spacing:-13.599600px;}
.ls4f_c00365{letter-spacing:-13.330800px;}
.ls14_c00365{letter-spacing:-13.121693px;}
.ls20_c00365{letter-spacing:-12.803018px;}
.ls27_c00365{letter-spacing:-12.155475px;}
.ls1e_c00365{letter-spacing:-11.226600px;}
.ls53_c00365{letter-spacing:-10.537425px;}
.lsd_c00365{letter-spacing:-10.402875px;}
.ls65_c00365{letter-spacing:-9.732450px;}
.ls49_c00365{letter-spacing:-9.723375px;}
.ls67_c00365{letter-spacing:-9.118778px;}
.ls51_c00365{letter-spacing:-9.001800px;}
.ls62_c00365{letter-spacing:-8.914350px;}
.ls16_c00365{letter-spacing:-8.442428px;}
.ls25_c00365{letter-spacing:-8.175038px;}
.ls5d_c00365{letter-spacing:-8.105325px;}
.lsf_c00365{letter-spacing:-7.804500px;}
.ls17_c00365{letter-spacing:-7.791795px;}
.ls13_c00365{letter-spacing:-6.781500px;}
.lse_c00365{letter-spacing:-6.685875px;}
.ls2c_c00365{letter-spacing:-6.534900px;}
.ls1f_c00365{letter-spacing:-6.504750px;}
.ls3c_c00365{letter-spacing:-6.198450px;}
.ls4a_c00365{letter-spacing:-6.129600px;}
.lsb_c00365{letter-spacing:-5.945625px;}
.ls39_c00365{letter-spacing:-5.916750px;}
.ls48_c00365{letter-spacing:-5.673225px;}
.ls11_c00365{letter-spacing:-5.196713px;}
.ls26_c00365{letter-spacing:-5.109375px;}
.ls57_c00365{letter-spacing:-5.016480px;}
.ls3f_c00365{letter-spacing:-5.001750px;}
.ls5c_c00365{letter-spacing:-4.864200px;}
.ls59_c00365{letter-spacing:-4.847850px;}
.ls4e_c00365{letter-spacing:-4.747140px;}
.ls28_c00365{letter-spacing:-4.541348px;}
.ls10_c00365{letter-spacing:-4.456463px;}
.ls29_c00365{letter-spacing:-4.373250px;}
.ls41_c00365{letter-spacing:-4.300800px;}
.ls3b_c00365{letter-spacing:-3.998400px;}
.ls1a_c00365{letter-spacing:-3.927690px;}
.ls40_c00365{letter-spacing:-3.813000px;}
.ls36_c00365{letter-spacing:-3.811680px;}
.ls5_c00365{letter-spacing:-3.717000px;}
.ls6a_c00365{letter-spacing:-3.683213px;}
.ls5a_c00365{letter-spacing:-3.631185px;}
.ls47_c00365{letter-spacing:-3.555750px;}
.ls69_c00365{letter-spacing:-3.498600px;}
.ls64_c00365{letter-spacing:-3.457290px;}
.ls1c_c00365{letter-spacing:-3.192750px;}
.ls58_c00365{letter-spacing:-3.101550px;}
.ls1b_c00365{letter-spacing:-3.086550px;}
.ls34_c00365{letter-spacing:-3.048480px;}
.ls2d_c00365{letter-spacing:-3.001500px;}
.ls3_c00365{letter-spacing:-2.968875px;}
.ls4d_c00365{letter-spacing:-2.871000px;}
.ls63_c00365{letter-spacing:-2.793900px;}
.ls5b_c00365{letter-spacing:-2.742750px;}
.ls5f_c00365{letter-spacing:-2.438400px;}
.ls66_c00365{letter-spacing:-2.406450px;}
.ls9_c00365{letter-spacing:-2.338088px;}
.ls2e_c00365{letter-spacing:-2.325000px;}
.ls37_c00365{letter-spacing:-2.285280px;}
.ls6_c00365{letter-spacing:-2.229413px;}
.ls24_c00365{letter-spacing:-2.103750px;}
.ls50_c00365{letter-spacing:-1.672823px;}
.ls60_c00365{letter-spacing:-1.630125px;}
.ls22_c00365{letter-spacing:-1.620000px;}
.ls43_c00365{letter-spacing:-1.597920px;}
.ls3e_c00365{letter-spacing:-1.572953px;}
.ls44_c00365{letter-spacing:-1.550273px;}
.ls2f_c00365{letter-spacing:-1.547985px;}
.ls4c_c00365{letter-spacing:-1.529618px;}
.ls38_c00365{letter-spacing:-1.526400px;}
.ls68_c00365{letter-spacing:-1.523018px;}
.ls32_c00365{letter-spacing:-1.502400px;}
.ls8_c00365{letter-spacing:-1.489163px;}
.ls23_c00365{letter-spacing:-1.454250px;}
.ls42_c00365{letter-spacing:-0.994500px;}
.ls55_c00365{letter-spacing:-0.777750px;}
.ls3d_c00365{letter-spacing:-0.776085px;}
.ls33_c00365{letter-spacing:-0.763200px;}
.ls4_c00365{letter-spacing:-0.740250px;}
.ls7_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:0.776085px;}
.ls5e_c00365{letter-spacing:1.459500px;}
.lsc_c00365{letter-spacing:1.591200px;}
.ls19_c00365{letter-spacing:1.603118px;}
.ls2b_c00365{letter-spacing:2.464875px;}
.ls52_c00365{letter-spacing:2.999708px;}
.ls4b_c00365{letter-spacing:3.101550px;}
.ls35_c00365{letter-spacing:3.380085px;}
.ls2a_c00365{letter-spacing:3.772440px;}
.ls61_c00365{letter-spacing:3.811680px;}
.ls1_c00365{letter-spacing:3.873450px;}
.ls18_c00365{letter-spacing:4.088550px;}
.lsa_c00365{letter-spacing:4.514805px;}
.ls45_c00365{letter-spacing:6.301800px;}
.ls30_c00365{letter-spacing:6.751875px;}
.ls3a_c00365{letter-spacing:6.859200px;}
.ls46_c00365{letter-spacing:7.424505px;}
.ls54_c00365{letter-spacing:7.607400px;}
.ls21_c00365{letter-spacing:9.843518px;}
.ls2_c00365{letter-spacing:10.077015px;}
.ls31_c00365{letter-spacing:64.761600px;}
.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;}
._19_c00365{margin-left:-17.115345px;}
._7_c00365{margin-left:-15.962239px;}
._15_c00365{margin-left:-9.773648px;}
._16_c00365{margin-left:-5.515056px;}
._14_c00365{margin-left:-3.954810px;}
._3_c00365{margin-left:-2.062685px;}
._2_c00365{width:1.416371px;}
._4_c00365{width:3.231841px;}
._e_c00365{width:4.614423px;}
._5_c00365{width:6.503858px;}
._1_c00365{width:7.873247px;}
._0_c00365{width:9.054110px;}
._9_c00365{width:11.121120px;}
._6_c00365{width:12.507714px;}
._f_c00365{width:13.549695px;}
._8_c00365{width:14.857926px;}
._d_c00365{width:16.397429px;}
._a_c00365{width:18.164936px;}
._11_c00365{width:19.371861px;}
._10_c00365{width:21.219693px;}
._c_c00365{width:23.206808px;}
._12_c00365{width:24.697545px;}
._b_c00365{width:26.418173px;}
._13_c00365{width:33.069874px;}
._17_c00365{width:36.742016px;}
._18_c00365{width:39.640150px;}
.fc0_c00365{color:transparent;}
.fs1a_c00365{font-size:38.250000px;}
.fs1f_c00365{font-size:39.750000px;}
.fs19_c00365{font-size:41.250000px;}
.fs21_c00365{font-size:42.000000px;}
.fs1c_c00365{font-size:43.500000px;}
.fs1d_c00365{font-size:44.250000px;}
.fs12_c00365{font-size:45.000000px;}
.fs1e_c00365{font-size:45.750000px;}
.fs13_c00365{font-size:46.500000px;}
.fs16_c00365{font-size:47.250000px;}
.fs15_c00365{font-size:48.000000px;}
.fs14_c00365{font-size:48.750000px;}
.fs18_c00365{font-size:49.500000px;}
.fsf_c00365{font-size:50.250000px;}
.fs20_c00365{font-size:51.000000px;}
.fs1b_c00365{font-size:51.750000px;}
.fs10_c00365{font-size:52.500000px;}
.fs17_c00365{font-size:54.000000px;}
.fsa_c00365{font-size:72.750000px;}
.fsd_c00365{font-size:74.250000px;}
.fs3_c00365{font-size:75.000000px;}
.fs2_c00365{font-size:76.500000px;}
.fs5_c00365{font-size:78.000000px;}
.fs0_c00365{font-size:78.750000px;}
.fs4_c00365{font-size:79.500000px;}
.fs6_c00365{font-size:80.250000px;}
.fsb_c00365{font-size:81.000000px;}
.fs8_c00365{font-size:81.750000px;}
.fs1_c00365{font-size:82.500000px;}
.fse_c00365{font-size:83.250000px;}
.fs11_c00365{font-size:83.881140px;}
.fs7_c00365{font-size:84.000000px;}
.fsc_c00365{font-size:85.500000px;}
.fs9_c00365{font-size:87.750000px;}
.y0_c00365{bottom:0.000000px;}
.y27_c00365{bottom:172.080465px;}
.y26_c00365{bottom:188.279850px;}
.y25_c00365{bottom:227.519100px;}
.y24_c00365{bottom:266.399250px;}
.y23_c00365{bottom:305.999385px;}
.y22_c00365{bottom:383.039385px;}
.y20_c00365{bottom:397.438800px;}
.y21_c00365{bottom:397.439250px;}
.y1f_c00365{bottom:412.920000px;}
.y1e_c00365{bottom:483.119385px;}
.y1d_c00365{bottom:483.120270px;}
.y1c_c00365{bottom:513.000000px;}
.y1b_c00365{bottom:543.239955px;}
.y1a_c00365{bottom:572.759490px;}
.y19_c00365{bottom:602.999400px;}
.y18_c00365{bottom:602.999610px;}
.y17_c00365{bottom:631.800570px;}
.y16_c00365{bottom:631.800750px;}
.y14_c00365{bottom:661.319670px;}
.y15_c00365{bottom:661.320285px;}
.y13_c00365{bottom:691.199385px;}
.y12_c00365{bottom:691.200285px;}
.y11_c00365{bottom:721.080000px;}
.y10_c00365{bottom:751.319820px;}
.yf_c00365{bottom:811.079595px;}
.ye_c00365{bottom:840.599115px;}
.yd_c00365{bottom:870.120270px;}
.yc_c00365{bottom:929.519535px;}
.yb_c00365{bottom:960.119940px;}
.ya_c00365{bottom:960.120825px;}
.y9_c00365{bottom:990.000555px;}
.y8_c00365{bottom:1019.879520px;}
.y7_c00365{bottom:1019.879700px;}
.y6_c00365{bottom:1049.399235px;}
.y5_c00365{bottom:1049.400120px;}
.y4_c00365{bottom:1079.279850px;}
.y3_c00365{bottom:1108.799565px;}
.y2_c00365{bottom:1108.800360px;}
.y1_c00365{bottom:1138.680090px;}
.h2b_c00365{height:37.801758px;}
.h34_c00365{height:39.284180px;}
.h28_c00365{height:40.766602px;}
.h38_c00365{height:43.804688px;}
.h31_c00365{height:44.901123px;}
.h32_c00365{height:45.213867px;}
.h2e_c00365{height:45.369141px;}
.h36_c00365{height:45.955078px;}
.h37_c00365{height:46.107422px;}
.h30_c00365{height:46.151367px;}
.h25_c00365{height:46.373291px;}
.h33_c00365{height:46.696289px;}
.h1e_c00365{height:46.863281px;}
.h1d_c00365{height:46.933594px;}
.h22_c00365{height:47.437500px;}
.h23_c00365{height:47.619141px;}
.h1f_c00365{height:47.845459px;}
.h24_c00365{height:48.178711px;}
.h20_c00365{height:48.375000px;}
.h2a_c00365{height:49.130859px;}
.h29_c00365{height:49.280273px;}
.h18_c00365{height:49.661133px;}
.h27_c00365{height:49.886719px;}
.h35_c00365{height:50.402344px;}
.h2f_c00365{height:50.642578px;}
.h2d_c00365{height:51.143555px;}
.h21_c00365{height:51.500244px;}
.h19_c00365{height:51.884766px;}
.h2c_c00365{height:52.971680px;}
.h26_c00365{height:53.367188px;}
.h16_c00365{height:71.400146px;}
.h15_c00365{height:73.608398px;}
.h3_c00365{height:75.080566px;}
.hd_c00365{height:75.875977px;}
.h6_c00365{height:76.552734px;}
.h1_c00365{height:77.288818px;}
.h11_c00365{height:77.440430px;}
.h5_c00365{height:78.024902px;}
.h4_c00365{height:78.222656px;}
.h1b_c00365{height:78.568359px;}
.h8_c00365{height:78.760986px;}
.h12_c00365{height:79.365234px;}
.h14_c00365{height:79.497070px;}
.hc_c00365{height:80.121094px;}
.h17_c00365{height:80.233154px;}
.ha_c00365{height:80.791992px;}
.h2_c00365{height:80.969238px;}
.h7_c00365{height:81.533203px;}
.hf_c00365{height:81.632812px;}
.h13_c00365{height:82.274414px;}
.he_c00365{height:82.388672px;}
.h1a_c00365{height:82.441406px;}
.h9_c00365{height:83.015625px;}
.h10_c00365{height:84.498047px;}
.hb_c00365{height:86.721680px;}
.h1c_c00365{height:87.485408px;}
.h0_c00365{height:1263.000000px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:140.039400px;}
.x90_c00365{left:154.080000px;}
.x1d_c00365{left:163.438665px;}
.x21_c00365{left:165.239850px;}
.x60_c00365{left:167.039400px;}
.x3b_c00365{left:168.118815px;}
.x44_c00365{left:171.358665px;}
.x12_c00365{left:181.080000px;}
.x91_c00365{left:183.599700px;}
.x45_c00365{left:191.158785px;}
.x65_c00365{left:192.958350px;}
.x53_c00365{left:194.398635px;}
.x8_c00365{left:195.838950px;}
.x92_c00365{left:200.519100px;}
.x66_c00365{left:202.318800px;}
.x61_c00365{left:207.359850px;}
.x54_c00365{left:208.798515px;}
.x9_c00365{left:220.678500px;}
.x67_c00365{left:222.479685px;}
.x74_c00365{left:235.080000px;}
.x46_c00365{left:236.518635px;}
.x22_c00365{left:239.399250px;}
.x68_c00365{left:240.478635px;}
.x55_c00365{left:246.599100px;}
.x7f_c00365{left:251.638500px;}
.x62_c00365{left:253.078785px;}
.x69_c00365{left:256.318800px;}
.x75_c00365{left:260.998950px;}
.x83_c00365{left:262.080000px;}
.x13_c00365{left:264.238785px;}
.x80_c00365{left:268.198785px;}
.x47_c00365{left:269.279850px;}
.x56_c00365{left:275.398635px;}
.x63_c00365{left:276.838950px;}
.x14_c00365{left:278.279250px;}
.x6a_c00365{left:281.519100px;}
.x40_c00365{left:290.518635px;}
.x76_c00365{left:307.439685px;}
.x57_c00365{left:309.959385px;}
.x48_c00365{left:312.120000px;}
.x41_c00365{left:316.080000px;}
.x84_c00365{left:322.198785px;}
.x6b_c00365{left:324.359250px;}
.x49_c00365{left:326.878950px;}
.x64_c00365{left:329.759535px;}
.x34_c00365{left:334.078785px;}
.x23_c00365{left:335.878350px;}
.x85_c00365{left:338.759100px;}
.x6c_c00365{left:339.838515px;}
.x15_c00365{left:342.719100px;}
.x4a_c00365{left:344.159385px;}
.x35_c00365{left:348.119385px;}
.x37_c00365{left:353.878950px;}
.x24_c00365{left:356.759535px;}
.x86_c00365{left:360.358635px;}
.x16_c00365{left:362.519100px;}
.x87_c00365{left:369.359850px;}
.x38_c00365{left:381.599100px;}
.x4b_c00365{left:390.959385px;}
.x77_c00365{left:392.038920px;}
.x39_c00365{left:396.719100px;}
.x88_c00365{left:399.238770px;}
.x4_c00365{left:403.559685px;}
.x89_c00365{left:412.559100px;}
.x3c_c00365{left:415.798920px;}
.x1e_c00365{left:417.239220px;}
.x78_c00365{left:421.558635px;}
.x8a_c00365{left:428.039985px;}
.x5_c00365{left:433.438665px;}
.x1f_c00365{left:434.519670px;}
.x79_c00365{left:435.599070px;}
.x3d_c00365{left:440.638500px;}
.x6d_c00365{left:442.078815px;}
.x7a_c00365{left:446.759085px;}
.x81_c00365{left:451.439250px;}
.x20_c00365{left:452.518620px;}
.x6e_c00365{left:456.119385px;}
.x8b_c00365{left:462.239820px;}
.x6f_c00365{left:467.638500px;}
.x6_c00365{left:468.719565px;}
.x4c_c00365{left:470.878320px;}
.x36_c00365{left:472.318770px;}
.x7_c00365{left:475.558635px;}
.x17_c00365{left:477.359850px;}
.x4d_c00365{left:487.799565px;}
.x18_c00365{left:491.398635px;}
.x3a_c00365{left:493.199850px;}
.x70_c00365{left:495.719565px;}
.x58_c00365{left:496.798920px;}
.x25_c00365{left:498.959385px;}
.x19_c00365{left:500.759085px;}
.x82_c00365{left:503.998950px;}
.x59_c00365{left:510.119385px;}
.x1a_c00365{left:516.958335px;}
.x5a_c00365{left:520.559100px;}
.x26_c00365{left:531.359850px;}
.x71_c00365{left:540.000000px;}
.x7b_c00365{left:551.878320px;}
.x27_c00365{left:554.399820px;}
.x1b_c00365{left:556.919535px;}
.x5b_c00365{left:561.238770px;}
.x7c_c00365{left:565.559685px;}
.x4e_c00365{left:567.000000px;}
.x72_c00365{left:568.079400px;}
.x42_c00365{left:571.678530px;}
.x10_c00365{left:573.479685px;}
.x1c_c00365{left:577.078770px;}
.x5c_c00365{left:590.039985px;}
.x11_c00365{left:591.119385px;}
.x32_c00365{left:603.719520px;}
.x28_c00365{left:606.959385px;}
.x7d_c00365{left:616.679070px;}
.x8c_c00365{left:619.559685px;}
.x73_c00365{left:621.359250px;}
.x33_c00365{left:622.438620px;}
.x29_c00365{left:628.199850px;}
.x8d_c00365{left:635.759085px;}
.x30_c00365{left:637.919535px;}
.x4f_c00365{left:638.998950px;}
.xa_c00365{left:641.518620px;}
.x2c_c00365{left:651.599070px;}
.x31_c00365{left:654.118785px;}
.xb_c00365{left:668.159370px;}
.x2d_c00365{left:670.319820px;}
.x50_c00365{left:686.159820px;}
.x43_c00365{left:688.318770px;}
.x7e_c00365{left:690.119985px;}
.x2_c00365{left:693.719100px;}
.x3e_c00365{left:702.000000px;}
.xe_c00365{left:707.759535px;}
.x3_c00365{left:708.838950px;}
.x5d_c00365{left:712.078770px;}
.x8e_c00365{left:715.318770px;}
.x3f_c00365{left:721.798560px;}
.xc_c00365{left:723.599670px;}
.x5e_c00365{left:725.399235px;}
.x2a_c00365{left:726.478635px;}
.xf_c00365{left:728.279850px;}
.x2e_c00365{left:730.799520px;}
.xd_c00365{left:739.439670px;}
.x5f_c00365{left:740.878320px;}
.x51_c00365{left:742.318770px;}
.x8f_c00365{left:752.039985px;}
.x2f_c00365{left:753.839535px;}
.x52_c00365{left:756.718545px;}
.x2b_c00365{left:762.838950px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1d_c00365{letter-spacing:-15.312000pt;}
.ls56_c00365{letter-spacing:-13.826667pt;}
.ls15_c00365{letter-spacing:-12.518000pt;}
.ls12_c00365{letter-spacing:-12.088533pt;}
.ls4f_c00365{letter-spacing:-11.849600pt;}
.ls14_c00365{letter-spacing:-11.663727pt;}
.ls20_c00365{letter-spacing:-11.380460pt;}
.ls27_c00365{letter-spacing:-10.804867pt;}
.ls1e_c00365{letter-spacing:-9.979200pt;}
.ls53_c00365{letter-spacing:-9.366600pt;}
.lsd_c00365{letter-spacing:-9.247000pt;}
.ls65_c00365{letter-spacing:-8.651067pt;}
.ls49_c00365{letter-spacing:-8.643000pt;}
.ls67_c00365{letter-spacing:-8.105580pt;}
.ls51_c00365{letter-spacing:-8.001600pt;}
.ls62_c00365{letter-spacing:-7.923867pt;}
.ls16_c00365{letter-spacing:-7.504380pt;}
.ls25_c00365{letter-spacing:-7.266700pt;}
.ls5d_c00365{letter-spacing:-7.204733pt;}
.lsf_c00365{letter-spacing:-6.937333pt;}
.ls17_c00365{letter-spacing:-6.926040pt;}
.ls13_c00365{letter-spacing:-6.028000pt;}
.lse_c00365{letter-spacing:-5.943000pt;}
.ls2c_c00365{letter-spacing:-5.808800pt;}
.ls1f_c00365{letter-spacing:-5.782000pt;}
.ls3c_c00365{letter-spacing:-5.509733pt;}
.ls4a_c00365{letter-spacing:-5.448533pt;}
.lsb_c00365{letter-spacing:-5.285000pt;}
.ls39_c00365{letter-spacing:-5.259333pt;}
.ls48_c00365{letter-spacing:-5.042867pt;}
.ls11_c00365{letter-spacing:-4.619300pt;}
.ls26_c00365{letter-spacing:-4.541667pt;}
.ls57_c00365{letter-spacing:-4.459093pt;}
.ls3f_c00365{letter-spacing:-4.446000pt;}
.ls5c_c00365{letter-spacing:-4.323733pt;}
.ls59_c00365{letter-spacing:-4.309200pt;}
.ls4e_c00365{letter-spacing:-4.219680pt;}
.ls28_c00365{letter-spacing:-4.036753pt;}
.ls10_c00365{letter-spacing:-3.961300pt;}
.ls29_c00365{letter-spacing:-3.887333pt;}
.ls41_c00365{letter-spacing:-3.822933pt;}
.ls3b_c00365{letter-spacing:-3.554133pt;}
.ls1a_c00365{letter-spacing:-3.491280pt;}
.ls40_c00365{letter-spacing:-3.389333pt;}
.ls36_c00365{letter-spacing:-3.388160pt;}
.ls5_c00365{letter-spacing:-3.304000pt;}
.ls6a_c00365{letter-spacing:-3.273967pt;}
.ls5a_c00365{letter-spacing:-3.227720pt;}
.ls47_c00365{letter-spacing:-3.160667pt;}
.ls69_c00365{letter-spacing:-3.109867pt;}
.ls64_c00365{letter-spacing:-3.073147pt;}
.ls1c_c00365{letter-spacing:-2.838000pt;}
.ls58_c00365{letter-spacing:-2.756933pt;}
.ls1b_c00365{letter-spacing:-2.743600pt;}
.ls34_c00365{letter-spacing:-2.709760pt;}
.ls2d_c00365{letter-spacing:-2.668000pt;}
.ls3_c00365{letter-spacing:-2.639000pt;}
.ls4d_c00365{letter-spacing:-2.552000pt;}
.ls63_c00365{letter-spacing:-2.483467pt;}
.ls5b_c00365{letter-spacing:-2.438000pt;}
.ls5f_c00365{letter-spacing:-2.167467pt;}
.ls66_c00365{letter-spacing:-2.139067pt;}
.ls9_c00365{letter-spacing:-2.078300pt;}
.ls2e_c00365{letter-spacing:-2.066667pt;}
.ls37_c00365{letter-spacing:-2.031360pt;}
.ls6_c00365{letter-spacing:-1.981700pt;}
.ls24_c00365{letter-spacing:-1.870000pt;}
.ls50_c00365{letter-spacing:-1.486953pt;}
.ls60_c00365{letter-spacing:-1.449000pt;}
.ls22_c00365{letter-spacing:-1.440000pt;}
.ls43_c00365{letter-spacing:-1.420373pt;}
.ls3e_c00365{letter-spacing:-1.398180pt;}
.ls44_c00365{letter-spacing:-1.378020pt;}
.ls2f_c00365{letter-spacing:-1.375987pt;}
.ls4c_c00365{letter-spacing:-1.359660pt;}
.ls38_c00365{letter-spacing:-1.356800pt;}
.ls68_c00365{letter-spacing:-1.353793pt;}
.ls32_c00365{letter-spacing:-1.335467pt;}
.ls8_c00365{letter-spacing:-1.323700pt;}
.ls23_c00365{letter-spacing:-1.292667pt;}
.ls42_c00365{letter-spacing:-0.884000pt;}
.ls55_c00365{letter-spacing:-0.691333pt;}
.ls3d_c00365{letter-spacing:-0.689853pt;}
.ls33_c00365{letter-spacing:-0.678400pt;}
.ls4_c00365{letter-spacing:-0.658000pt;}
.ls7_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:0.689853pt;}
.ls5e_c00365{letter-spacing:1.297333pt;}
.lsc_c00365{letter-spacing:1.414400pt;}
.ls19_c00365{letter-spacing:1.424993pt;}
.ls2b_c00365{letter-spacing:2.191000pt;}
.ls52_c00365{letter-spacing:2.666407pt;}
.ls4b_c00365{letter-spacing:2.756933pt;}
.ls35_c00365{letter-spacing:3.004520pt;}
.ls2a_c00365{letter-spacing:3.353280pt;}
.ls61_c00365{letter-spacing:3.388160pt;}
.ls1_c00365{letter-spacing:3.443067pt;}
.ls18_c00365{letter-spacing:3.634267pt;}
.lsa_c00365{letter-spacing:4.013160pt;}
.ls45_c00365{letter-spacing:5.601600pt;}
.ls30_c00365{letter-spacing:6.001667pt;}
.ls3a_c00365{letter-spacing:6.097067pt;}
.ls46_c00365{letter-spacing:6.599560pt;}
.ls54_c00365{letter-spacing:6.762133pt;}
.ls21_c00365{letter-spacing:8.749793pt;}
.ls2_c00365{letter-spacing:8.957347pt;}
.ls31_c00365{letter-spacing:57.565867pt;}
.ws0_c00365{word-spacing:0.000000pt;}
._19_c00365{margin-left:-15.213640pt;}
._7_c00365{margin-left:-14.188657pt;}
._15_c00365{margin-left:-8.687687pt;}
._16_c00365{margin-left:-4.902272pt;}
._14_c00365{margin-left:-3.515387pt;}
._3_c00365{margin-left:-1.833498pt;}
._2_c00365{width:1.258996pt;}
._4_c00365{width:2.872747pt;}
._e_c00365{width:4.101709pt;}
._5_c00365{width:5.781208pt;}
._1_c00365{width:6.998442pt;}
._0_c00365{width:8.048098pt;}
._9_c00365{width:9.885440pt;}
._6_c00365{width:11.117968pt;}
._f_c00365{width:12.044174pt;}
._8_c00365{width:13.207045pt;}
._d_c00365{width:14.575492pt;}
._a_c00365{width:16.146609pt;}
._11_c00365{width:17.219432pt;}
._10_c00365{width:18.861949pt;}
._c_c00365{width:20.628274pt;}
._12_c00365{width:21.953374pt;}
._b_c00365{width:23.482821pt;}
._13_c00365{width:29.395443pt;}
._17_c00365{width:32.659570pt;}
._18_c00365{width:35.235689pt;}
.fs1a_c00365{font-size:34.000000pt;}
.fs1f_c00365{font-size:35.333333pt;}
.fs19_c00365{font-size:36.666667pt;}
.fs21_c00365{font-size:37.333333pt;}
.fs1c_c00365{font-size:38.666667pt;}
.fs1d_c00365{font-size:39.333333pt;}
.fs12_c00365{font-size:40.000000pt;}
.fs1e_c00365{font-size:40.666667pt;}
.fs13_c00365{font-size:41.333333pt;}
.fs16_c00365{font-size:42.000000pt;}
.fs15_c00365{font-size:42.666667pt;}
.fs14_c00365{font-size:43.333333pt;}
.fs18_c00365{font-size:44.000000pt;}
.fsf_c00365{font-size:44.666667pt;}
.fs20_c00365{font-size:45.333333pt;}
.fs1b_c00365{font-size:46.000000pt;}
.fs10_c00365{font-size:46.666667pt;}
.fs17_c00365{font-size:48.000000pt;}
.fsa_c00365{font-size:64.666667pt;}
.fsd_c00365{font-size:66.000000pt;}
.fs3_c00365{font-size:66.666667pt;}
.fs2_c00365{font-size:68.000000pt;}
.fs5_c00365{font-size:69.333333pt;}
.fs0_c00365{font-size:70.000000pt;}
.fs4_c00365{font-size:70.666667pt;}
.fs6_c00365{font-size:71.333333pt;}
.fsb_c00365{font-size:72.000000pt;}
.fs8_c00365{font-size:72.666667pt;}
.fs1_c00365{font-size:73.333333pt;}
.fse_c00365{font-size:74.000000pt;}
.fs11_c00365{font-size:74.561013pt;}
.fs7_c00365{font-size:74.666667pt;}
.fsc_c00365{font-size:76.000000pt;}
.fs9_c00365{font-size:78.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y27_c00365{bottom:152.960413pt;}
.y26_c00365{bottom:167.359867pt;}
.y25_c00365{bottom:202.239200pt;}
.y24_c00365{bottom:236.799333pt;}
.y23_c00365{bottom:271.999453pt;}
.y22_c00365{bottom:340.479453pt;}
.y20_c00365{bottom:353.278933pt;}
.y21_c00365{bottom:353.279333pt;}
.y1f_c00365{bottom:367.040000pt;}
.y1e_c00365{bottom:429.439453pt;}
.y1d_c00365{bottom:429.440240pt;}
.y1c_c00365{bottom:456.000000pt;}
.y1b_c00365{bottom:482.879960pt;}
.y1a_c00365{bottom:509.119547pt;}
.y19_c00365{bottom:535.999467pt;}
.y18_c00365{bottom:535.999653pt;}
.y17_c00365{bottom:561.600507pt;}
.y16_c00365{bottom:561.600667pt;}
.y14_c00365{bottom:587.839707pt;}
.y15_c00365{bottom:587.840253pt;}
.y13_c00365{bottom:614.399453pt;}
.y12_c00365{bottom:614.400253pt;}
.y11_c00365{bottom:640.960000pt;}
.y10_c00365{bottom:667.839840pt;}
.yf_c00365{bottom:720.959640pt;}
.ye_c00365{bottom:747.199213pt;}
.yd_c00365{bottom:773.440240pt;}
.yc_c00365{bottom:826.239587pt;}
.yb_c00365{bottom:853.439947pt;}
.ya_c00365{bottom:853.440733pt;}
.y9_c00365{bottom:880.000493pt;}
.y8_c00365{bottom:906.559573pt;}
.y7_c00365{bottom:906.559733pt;}
.y6_c00365{bottom:932.799320pt;}
.y5_c00365{bottom:932.800107pt;}
.y4_c00365{bottom:959.359867pt;}
.y3_c00365{bottom:985.599613pt;}
.y2_c00365{bottom:985.600320pt;}
.y1_c00365{bottom:1012.160080pt;}
.h2b_c00365{height:33.601562pt;}
.h34_c00365{height:34.919271pt;}
.h28_c00365{height:36.236979pt;}
.h38_c00365{height:38.937500pt;}
.h31_c00365{height:39.912109pt;}
.h32_c00365{height:40.190104pt;}
.h2e_c00365{height:40.328125pt;}
.h36_c00365{height:40.848958pt;}
.h37_c00365{height:40.984375pt;}
.h30_c00365{height:41.023438pt;}
.h25_c00365{height:41.220703pt;}
.h33_c00365{height:41.507812pt;}
.h1e_c00365{height:41.656250pt;}
.h1d_c00365{height:41.718750pt;}
.h22_c00365{height:42.166667pt;}
.h23_c00365{height:42.328125pt;}
.h1f_c00365{height:42.529297pt;}
.h24_c00365{height:42.825521pt;}
.h20_c00365{height:43.000000pt;}
.h2a_c00365{height:43.671875pt;}
.h29_c00365{height:43.804688pt;}
.h18_c00365{height:44.143229pt;}
.h27_c00365{height:44.343750pt;}
.h35_c00365{height:44.802083pt;}
.h2f_c00365{height:45.015625pt;}
.h2d_c00365{height:45.460938pt;}
.h21_c00365{height:45.777995pt;}
.h19_c00365{height:46.119792pt;}
.h2c_c00365{height:47.085938pt;}
.h26_c00365{height:47.437500pt;}
.h16_c00365{height:63.466797pt;}
.h15_c00365{height:65.429688pt;}
.h3_c00365{height:66.738281pt;}
.hd_c00365{height:67.445312pt;}
.h6_c00365{height:68.046875pt;}
.h1_c00365{height:68.701172pt;}
.h11_c00365{height:68.835938pt;}
.h5_c00365{height:69.355469pt;}
.h4_c00365{height:69.531250pt;}
.h1b_c00365{height:69.838542pt;}
.h8_c00365{height:70.009766pt;}
.h12_c00365{height:70.546875pt;}
.h14_c00365{height:70.664062pt;}
.hc_c00365{height:71.218750pt;}
.h17_c00365{height:71.318359pt;}
.ha_c00365{height:71.815104pt;}
.h2_c00365{height:71.972656pt;}
.h7_c00365{height:72.473958pt;}
.hf_c00365{height:72.562500pt;}
.h13_c00365{height:73.132813pt;}
.he_c00365{height:73.234375pt;}
.h1a_c00365{height:73.281250pt;}
.h9_c00365{height:73.791667pt;}
.h10_c00365{height:75.109375pt;}
.hb_c00365{height:77.085938pt;}
.h1c_c00365{height:77.764807pt;}
.h0_c00365{height:1122.666667pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:124.479467pt;}
.x90_c00365{left:136.960000pt;}
.x1d_c00365{left:145.278813pt;}
.x21_c00365{left:146.879867pt;}
.x60_c00365{left:148.479467pt;}
.x3b_c00365{left:149.438947pt;}
.x44_c00365{left:152.318813pt;}
.x12_c00365{left:160.960000pt;}
.x91_c00365{left:163.199733pt;}
.x45_c00365{left:169.918920pt;}
.x65_c00365{left:171.518533pt;}
.x53_c00365{left:172.798787pt;}
.x8_c00365{left:174.079067pt;}
.x92_c00365{left:178.239200pt;}
.x66_c00365{left:179.838933pt;}
.x61_c00365{left:184.319867pt;}
.x54_c00365{left:185.598680pt;}
.x9_c00365{left:196.158667pt;}
.x67_c00365{left:197.759720pt;}
.x74_c00365{left:208.960000pt;}
.x46_c00365{left:210.238787pt;}
.x22_c00365{left:212.799333pt;}
.x68_c00365{left:213.758787pt;}
.x55_c00365{left:219.199200pt;}
.x7f_c00365{left:223.678667pt;}
.x62_c00365{left:224.958920pt;}
.x69_c00365{left:227.838933pt;}
.x75_c00365{left:231.999067pt;}
.x83_c00365{left:232.960000pt;}
.x13_c00365{left:234.878920pt;}
.x80_c00365{left:238.398920pt;}
.x47_c00365{left:239.359867pt;}
.x56_c00365{left:244.798787pt;}
.x63_c00365{left:246.079067pt;}
.x14_c00365{left:247.359333pt;}
.x6a_c00365{left:250.239200pt;}
.x40_c00365{left:258.238787pt;}
.x76_c00365{left:273.279720pt;}
.x57_c00365{left:275.519453pt;}
.x48_c00365{left:277.440000pt;}
.x41_c00365{left:280.960000pt;}
.x84_c00365{left:286.398920pt;}
.x6b_c00365{left:288.319333pt;}
.x49_c00365{left:290.559067pt;}
.x64_c00365{left:293.119587pt;}
.x34_c00365{left:296.958920pt;}
.x23_c00365{left:298.558533pt;}
.x85_c00365{left:301.119200pt;}
.x6c_c00365{left:302.078680pt;}
.x15_c00365{left:304.639200pt;}
.x4a_c00365{left:305.919453pt;}
.x35_c00365{left:309.439453pt;}
.x37_c00365{left:314.559067pt;}
.x24_c00365{left:317.119587pt;}
.x86_c00365{left:320.318787pt;}
.x16_c00365{left:322.239200pt;}
.x87_c00365{left:328.319867pt;}
.x38_c00365{left:339.199200pt;}
.x4b_c00365{left:347.519453pt;}
.x77_c00365{left:348.479040pt;}
.x39_c00365{left:352.639200pt;}
.x88_c00365{left:354.878907pt;}
.x4_c00365{left:358.719720pt;}
.x89_c00365{left:366.719200pt;}
.x3c_c00365{left:369.599040pt;}
.x1e_c00365{left:370.879307pt;}
.x78_c00365{left:374.718787pt;}
.x8a_c00365{left:380.479987pt;}
.x5_c00365{left:385.278813pt;}
.x1f_c00365{left:386.239707pt;}
.x79_c00365{left:387.199173pt;}
.x3d_c00365{left:391.678667pt;}
.x6d_c00365{left:392.958947pt;}
.x7a_c00365{left:397.119187pt;}
.x81_c00365{left:401.279333pt;}
.x20_c00365{left:402.238773pt;}
.x6e_c00365{left:405.439453pt;}
.x8b_c00365{left:410.879840pt;}
.x6f_c00365{left:415.678667pt;}
.x6_c00365{left:416.639613pt;}
.x4c_c00365{left:418.558507pt;}
.x36_c00365{left:419.838907pt;}
.x7_c00365{left:422.718787pt;}
.x17_c00365{left:424.319867pt;}
.x4d_c00365{left:433.599613pt;}
.x18_c00365{left:436.798787pt;}
.x3a_c00365{left:438.399867pt;}
.x70_c00365{left:440.639613pt;}
.x58_c00365{left:441.599040pt;}
.x25_c00365{left:443.519453pt;}
.x19_c00365{left:445.119187pt;}
.x82_c00365{left:447.999067pt;}
.x59_c00365{left:453.439453pt;}
.x1a_c00365{left:459.518520pt;}
.x5a_c00365{left:462.719200pt;}
.x26_c00365{left:472.319867pt;}
.x71_c00365{left:480.000000pt;}
.x7b_c00365{left:490.558507pt;}
.x27_c00365{left:492.799840pt;}
.x1b_c00365{left:495.039587pt;}
.x5b_c00365{left:498.878907pt;}
.x7c_c00365{left:502.719720pt;}
.x4e_c00365{left:504.000000pt;}
.x72_c00365{left:504.959467pt;}
.x42_c00365{left:508.158693pt;}
.x10_c00365{left:509.759720pt;}
.x1c_c00365{left:512.958907pt;}
.x5c_c00365{left:524.479987pt;}
.x11_c00365{left:525.439453pt;}
.x32_c00365{left:536.639573pt;}
.x28_c00365{left:539.519453pt;}
.x7d_c00365{left:548.159173pt;}
.x8c_c00365{left:550.719720pt;}
.x73_c00365{left:552.319333pt;}
.x33_c00365{left:553.278773pt;}
.x29_c00365{left:558.399867pt;}
.x8d_c00365{left:565.119187pt;}
.x30_c00365{left:567.039587pt;}
.x4f_c00365{left:567.999067pt;}
.xa_c00365{left:570.238773pt;}
.x2c_c00365{left:579.199173pt;}
.x31_c00365{left:581.438920pt;}
.xb_c00365{left:593.919440pt;}
.x2d_c00365{left:595.839840pt;}
.x50_c00365{left:609.919840pt;}
.x43_c00365{left:611.838907pt;}
.x7e_c00365{left:613.439987pt;}
.x2_c00365{left:616.639200pt;}
.x3e_c00365{left:624.000000pt;}
.xe_c00365{left:629.119587pt;}
.x3_c00365{left:630.079067pt;}
.x5d_c00365{left:632.958907pt;}
.x8e_c00365{left:635.838907pt;}
.x3f_c00365{left:641.598720pt;}
.xc_c00365{left:643.199707pt;}
.x5e_c00365{left:644.799320pt;}
.x2a_c00365{left:645.758787pt;}
.xf_c00365{left:647.359867pt;}
.x2e_c00365{left:649.599573pt;}
.xd_c00365{left:657.279707pt;}
.x5f_c00365{left:658.558507pt;}
.x51_c00365{left:659.838907pt;}
.x8f_c00365{left:668.479987pt;}
.x2f_c00365{left:670.079587pt;}
.x52_c00365{left:672.638707pt;}
.x2b_c00365{left:678.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76059341c7e597fd62825209.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_b0d1e2db48915b629f5e69ae.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_1ff21182772b9147ad9c88d0.woff2')format("woff");}.ff3_c00366{font-family:ff3_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:ff4_c00366;src:url('chunks/assets/font_7e6339715268b1fbd871cf04.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_8d3d310510100f969647e3b9.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00366;src:url('chunks/assets/font_f5e056f3f8f2809d4624066b.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:1.364746;font-style:normal;font-weight: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_c00366;src:url('chunks/assets/font_f25d6ab142b23a233cdbbb8b.woff2')format("woff");}.ff7_c00366{font-family:ff7_c00366;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00366;src:url('chunks/assets/font_5a125e2132ebbc4712118c7b.woff2')format("woff");}.ff8_c00366{font-family:ff8_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00366;src:url('chunks/assets/font_64586d1d3ef5dd6c574dbaeb.woff2')format("woff");}.ff9_c00366{font-family:ff9_c00366;line-height:1.281250;font-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_c00366{transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);}
.m34_c00366{transform:matrix(0.147265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147265,0.000000,0.000000,0.250000,0,0);}
.m2a_c00366{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m45_c00366{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m44_c00366{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m38_c00366{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m43_c00366{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m3e_c00366{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m3b_c00366{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m39_c00366{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m42_c00366{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m3d_c00366{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m32_c00366{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m41_c00366{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m46_c00366{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m4b_c00366{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m1d_c00366{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m18_c00366{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.me_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.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3c_c00366{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m27_c00366{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00366{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m40_c00366{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m3f_c00366{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m47_c00366{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m35_c00366{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m37_c00366{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m10_c00366{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);}
.m2c_c00366{transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343220,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.345455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345455,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{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_c00366{transform:matrix(0.365854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365854,0.000000,0.000000,0.250000,0,0);}
.m48_c00366{transform:matrix(0.491935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491935,0.000000,0.000000,0.250000,0,0);}
.m28_c00366{transform:matrix(0.555556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555556,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls30_c00366{letter-spacing:-12.607238px;}
.ls36_c00366{letter-spacing:-10.013625px;}
.ls2b_c00366{letter-spacing:-9.949875px;}
.ls2d_c00366{letter-spacing:-9.132600px;}
.lse_c00366{letter-spacing:-8.175038px;}
.ls15_c00366{letter-spacing:-7.275728px;}
.ls5e_c00366{letter-spacing:-6.859215px;}
.lsd_c00366{letter-spacing:-6.685875px;}
.ls6_c00366{letter-spacing:-6.633000px;}
.lsc_c00366{letter-spacing:-5.945625px;}
.ls5d_c00366{letter-spacing:-5.693280px;}
.ls59_c00366{letter-spacing:-5.543700px;}
.ls5_c00366{letter-spacing:-5.196713px;}
.ls33_c00366{letter-spacing:-5.106450px;}
.ls2e_c00366{letter-spacing:-4.774050px;}
.ls24_c00366{letter-spacing:-4.582200px;}
.ls61_c00366{letter-spacing:-4.553790px;}
.lsb_c00366{letter-spacing:-4.456463px;}
.ls42_c00366{letter-spacing:-4.431375px;}
.ls45_c00366{letter-spacing:-4.343625px;}
.ls62_c00366{letter-spacing:-4.269375px;}
.ls10_c00366{letter-spacing:-4.190288px;}
.ls3d_c00366{letter-spacing:-4.111223px;}
.ls53_c00366{letter-spacing:-4.065600px;}
.ls28_c00366{letter-spacing:-3.997500px;}
.ls35_c00366{letter-spacing:-3.813000px;}
.ls37_c00366{letter-spacing:-3.806888px;}
.ls19_c00366{letter-spacing:-3.748478px;}
.ls7_c00366{letter-spacing:-3.717000px;}
.ls50_c00366{letter-spacing:-3.628500px;}
.ls23_c00366{letter-spacing:-3.415500px;}
.ls4a_c00366{letter-spacing:-3.301650px;}
.ls29_c00366{letter-spacing:-3.254400px;}
.ls3a_c00366{letter-spacing:-3.201600px;}
.ls41_c00366{letter-spacing:-3.148800px;}
.ls3_c00366{letter-spacing:-2.968875px;}
.ls4b_c00366{letter-spacing:-2.953125px;}
.ls18_c00366{letter-spacing:-2.905403px;}
.ls55_c00366{letter-spacing:-2.725853px;}
.ls21_c00366{letter-spacing:-2.682600px;}
.ls54_c00366{letter-spacing:-2.438400px;}
.ls26_c00366{letter-spacing:-2.400000px;}
.ls22_c00366{letter-spacing:-2.287335px;}
.ls2a_c00366{letter-spacing:-2.286000px;}
.ls4_c00366{letter-spacing:-2.229413px;}
.ls31_c00366{letter-spacing:-2.218500px;}
.ls4c_c00366{letter-spacing:-2.210175px;}
.ls2c_c00366{letter-spacing:-2.140875px;}
.ls5c_c00366{letter-spacing:-2.115000px;}
.ls43_c00366{letter-spacing:-2.113650px;}
.ls25_c00366{letter-spacing:-1.739565px;}
.ls3e_c00366{letter-spacing:-1.707750px;}
.ls38_c00366{letter-spacing:-1.597920px;}
.ls5b_c00366{letter-spacing:-1.550250px;}
.ls64_c00366{letter-spacing:-1.549350px;}
.ls27_c00366{letter-spacing:-1.525665px;}
.ls47_c00366{letter-spacing:-1.501058px;}
.lsa_c00366{letter-spacing:-1.489163px;}
.ls2f_c00366{letter-spacing:-1.474875px;}
.ls20_c00366{letter-spacing:-1.092975px;}
.ls39_c00366{letter-spacing:-1.040400px;}
.ls3b_c00366{letter-spacing:-0.994500px;}
.ls11_c00366{letter-spacing:-0.889973px;}
.ls14_c00366{letter-spacing:-0.849420px;}
.ls44_c00366{letter-spacing:-0.832350px;}
.ls60_c00366{letter-spacing:-0.788603px;}
.ls1f_c00366{letter-spacing:-0.760725px;}
.ls9_c00366{letter-spacing:-0.740250px;}
.ls3f_c00366{letter-spacing:-0.735300px;}
.ls4f_c00366{letter-spacing:-0.705120px;}
.ls49_c00366{letter-spacing:-0.703553px;}
.ls8_c00366{letter-spacing:0.000000px;}
.ls4e_c00366{letter-spacing:0.762600px;}
.ls12_c00366{letter-spacing:0.826875px;}
.ls16_c00366{letter-spacing:0.834750px;}
.ls1_c00366{letter-spacing:1.489163px;}
.ls57_c00366{letter-spacing:1.551383px;}
.ls56_c00366{letter-spacing:1.574880px;}
.ls13_c00366{letter-spacing:1.677375px;}
.ls51_c00366{letter-spacing:1.678545px;}
.ls32_c00366{letter-spacing:2.185875px;}
.ls46_c00366{letter-spacing:2.287335px;}
.ls1b_c00366{letter-spacing:2.441025px;}
.ls1a_c00366{letter-spacing:2.561475px;}
.ls63_c00366{letter-spacing:3.050400px;}
.ls5f_c00366{letter-spacing:3.325200px;}
.ls17_c00366{letter-spacing:3.354750px;}
.lsf_c00366{letter-spacing:3.570345px;}
.ls1e_c00366{letter-spacing:3.749700px;}
.ls5a_c00366{letter-spacing:3.813000px;}
.ls0_c00366{letter-spacing:5.196713px;}
.ls2_c00366{letter-spacing:5.338665px;}
.ls40_c00366{letter-spacing:5.543700px;}
.ls48_c00366{letter-spacing:5.754150px;}
.ls1d_c00366{letter-spacing:6.096150px;}
.ls52_c00366{letter-spacing:9.230880px;}
.ls34_c00366{letter-spacing:9.600000px;}
.ls1c_c00366{letter-spacing:11.629650px;}
.ls58_c00366{letter-spacing:12.601102px;}
.ls3c_c00366{letter-spacing:18.293100px;}
.ls4d_c00366{letter-spacing:22.344000px;}
.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;}
._d_c00366{margin-left:-23.301947px;}
._1b_c00366{margin-left:-14.403256px;}
._f_c00366{margin-left:-12.964018px;}
._10_c00366{margin-left:-9.841521px;}
._1d_c00366{margin-left:-8.337693px;}
._13_c00366{margin-left:-6.122500px;}
._1c_c00366{margin-left:-4.510785px;}
._9_c00366{margin-left:-2.926409px;}
._11_c00366{margin-left:-1.549265px;}
._2_c00366{width:1.665652px;}
._8_c00366{width:2.713666px;}
._7_c00366{width:4.546252px;}
._6_c00366{width:5.744872px;}
._5_c00366{width:6.773763px;}
._1_c00366{width:7.793783px;}
._4_c00366{width:8.827370px;}
._0_c00366{width:9.998130px;}
._3_c00366{width:11.205739px;}
._12_c00366{width:13.347798px;}
._a_c00366{width:14.852309px;}
._b_c00366{width:16.384056px;}
._15_c00366{width:19.222845px;}
._e_c00366{width:21.739443px;}
._1e_c00366{width:24.443926px;}
._c_c00366{width:25.570184px;}
._18_c00366{width:30.005236px;}
._19_c00366{width:32.637209px;}
._14_c00366{width:34.314183px;}
._17_c00366{width:36.935696px;}
._1a_c00366{width:37.975078px;}
._16_c00366{width:40.437620px;}
.fc0_c00366{color:transparent;}
.fsa_c00366{font-size:30.000000px;}
.fs9_c00366{font-size:30.750000px;}
.fs8_c00366{font-size:32.250000px;}
.fs18_c00366{font-size:33.750000px;}
.fs1c_c00366{font-size:34.500000px;}
.fs1d_c00366{font-size:35.250000px;}
.fs17_c00366{font-size:41.250000px;}
.fs13_c00366{font-size:42.000000px;}
.fsb_c00366{font-size:42.750000px;}
.fse_c00366{font-size:43.500000px;}
.fs10_c00366{font-size:44.250000px;}
.fs16_c00366{font-size:45.000000px;}
.fsc_c00366{font-size:45.750000px;}
.fsd_c00366{font-size:46.500000px;}
.fs7_c00366{font-size:47.250000px;}
.fs1b_c00366{font-size:47.888400px;}
.fsf_c00366{font-size:48.000000px;}
.fs14_c00366{font-size:48.750000px;}
.fs12_c00366{font-size:49.500000px;}
.fs19_c00366{font-size:50.250000px;}
.fs11_c00366{font-size:51.000000px;}
.fs1a_c00366{font-size:51.750000px;}
.fs15_c00366{font-size:72.000000px;}
.fs2_c00366{font-size:72.750000px;}
.fs6_c00366{font-size:76.500000px;}
.fs5_c00366{font-size:78.000000px;}
.fs0_c00366{font-size:78.750000px;}
.fs4_c00366{font-size:79.500000px;}
.fs3_c00366{font-size:80.250000px;}
.fs1_c00366{font-size:82.500000px;}
.y0_c00366{bottom:0.000000px;}
.y27_c00366{bottom:170.640150px;}
.y26_c00366{bottom:211.319850px;}
.y25_c00366{bottom:250.559100px;}
.y24_c00366{bottom:287.278800px;}
.y23_c00366{bottom:300.960000px;}
.y22_c00366{bottom:317.159385px;}
.y21_c00366{bottom:421.199385px;}
.y20_c00366{bottom:429.119385px;}
.y1e_c00366{bottom:451.079550px;}
.y1f_c00366{bottom:451.080000px;}
.y1d_c00366{bottom:480.959265px;}
.y1c_c00366{bottom:510.120420px;}
.y1b_c00366{bottom:540.000135px;}
.y1a_c00366{bottom:569.519670px;}
.y19_c00366{bottom:569.520060px;}
.y18_c00366{bottom:599.759970px;}
.y17_c00366{bottom:628.921125px;}
.y16_c00366{bottom:688.680570px;}
.y15_c00366{bottom:718.560285px;}
.y14_c00366{bottom:747.719100px;}
.y13_c00366{bottom:748.080000px;}
.y12_c00366{bottom:778.319820px;}
.y11_c00366{bottom:778.320900px;}
.y10_c00366{bottom:807.840435px;}
.ye_c00366{bottom:837.718455px;}
.yf_c00366{bottom:837.720150px;}
.yd_c00366{bottom:867.237990px;}
.yc_c00366{bottom:897.117720px;}
.yb_c00366{bottom:926.639055px;}
.ya_c00366{bottom:987.119175px;}
.y9_c00366{bottom:1016.998905px;}
.y8_c00366{bottom:1016.999085px;}
.y6_c00366{bottom:1046.517930px;}
.y7_c00366{bottom:1046.518620px;}
.y5_c00366{bottom:1075.679070px;}
.y4_c00366{bottom:1075.679970px;}
.y2_c00366{bottom:1105.558935px;}
.y3_c00366{bottom:1105.559685px;}
.y1_c00366{bottom:1135.438665px;}
.he_c00366{height:30.990234px;}
.hf_c00366{height:31.289062px;}
.hd_c00366{height:32.501953px;}
.h21_c00366{height:34.013672px;}
.h29_c00366{height:34.095703px;}
.h2c_c00366{height:34.595947px;}
.h28_c00366{height:40.464478px;}
.h2d_c00366{height:40.766602px;}
.h1f_c00366{height:43.022461px;}
.h2a_c00366{height:43.083984px;}
.h1a_c00366{height:43.804688px;}
.h10_c00366{height:44.586914px;}
.h1d_c00366{height:45.351562px;}
.h14_c00366{height:45.369141px;}
.h13_c00366{height:45.955078px;}
.h11_c00366{height:46.107422px;}
.h16_c00366{height:46.151367px;}
.hb_c00366{height:46.373291px;}
.h25_c00366{height:46.696289px;}
.h12_c00366{height:46.863281px;}
.h15_c00366{height:47.109375px;}
.h27_c00366{height:47.327208px;}
.h26_c00366{height:47.437500px;}
.h24_c00366{height:47.619141px;}
.h2b_c00366{height:47.845459px;}
.h1e_c00366{height:48.178711px;}
.h19_c00366{height:48.375000px;}
.h20_c00366{height:48.498047px;}
.h2e_c00366{height:48.581543px;}
.h1b_c00366{height:49.130859px;}
.h22_c00366{height:49.293091px;}
.h18_c00366{height:49.886719px;}
.h17_c00366{height:50.402344px;}
.h23_c00366{height:51.143555px;}
.hc_c00366{height:75.080566px;}
.h1c_c00366{height:75.093750px;}
.h3_c00366{height:75.875977px;}
.h6_c00366{height:76.552734px;}
.ha_c00366{height:77.097656px;}
.h1_c00366{height:77.288818px;}
.h5_c00366{height:78.024902px;}
.h9_c00366{height:78.609375px;}
.h4_c00366{height:78.760986px;}
.h8_c00366{height:79.365234px;}
.h7_c00366{height:80.876953px;}
.h2_c00366{height:80.969238px;}
.h0_c00366{height:1263.000000px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x20_c00366{left:137.878950px;}
.x8_c00366{left:138.957615px;}
.x1_c00366{left:140.039400px;}
.x5a_c00366{left:151.919565px;}
.x43_c00366{left:156.599700px;}
.x44_c00366{left:167.039400px;}
.x2a_c00366{left:169.918350px;}
.x79_c00366{left:188.279850px;}
.x2b_c00366{left:190.438665px;}
.x15_c00366{left:201.598500px;}
.x7a_c00366{left:203.399850px;}
.x2c_c00366{left:206.639700px;}
.x5b_c00366{left:208.080000px;}
.x63_c00366{left:218.519685px;}
.x2d_c00366{left:221.759535px;}
.x6b_c00366{left:224.999400px;}
.x45_c00366{left:226.439685px;}
.x7b_c00366{left:229.679700px;}
.x21_c00366{left:236.879535px;}
.x6c_c00366{left:238.319850px;}
.x46_c00366{left:239.399250px;}
.x2e_c00366{left:248.398635px;}
.x22_c00366{left:250.199850px;}
.x5c_c00366{left:253.439685px;}
.x16_c00366{left:254.878350px;}
.x27_c00366{left:258.120000px;}
.x2f_c00366{left:261.719100px;}
.xd_c00366{left:264.238785px;}
.x5d_c00366{left:269.639100px;}
.x11_c00366{left:271.079385px;}
.x30_c00366{left:272.878950px;}
.xe_c00366{left:280.439685px;}
.x6d_c00366{left:283.679700px;}
.x12_c00366{left:295.559685px;}
.x5e_c00366{left:300.599100px;}
.x28_c00366{left:303.118785px;}
.x17_c00366{left:306.719535px;}
.x29_c00366{left:311.399850px;}
.x6e_c00366{left:317.159385px;}
.x31_c00366{left:318.238785px;}
.x4_c00366{left:320.758500px;}
.x47_c00366{left:322.559685px;}
.x6f_c00366{left:327.958350px;}
.x18_c00366{left:331.559100px;}
.x48_c00366{left:333.358635px;}
.x7c_c00366{left:335.519100px;}
.x5_c00366{left:336.598530px;}
.x9_c00366{left:345.599700px;}
.x64_c00366{left:353.519685px;}
.x32_c00366{left:356.398635px;}
.x49_c00366{left:357.479685px;}
.xa_c00366{left:359.279250px;}
.x4a_c00366{left:371.159385px;}
.x65_c00366{left:375.478635px;}
.x66_c00366{left:384.838950px;}
.x67_c00366{left:396.359850px;}
.x33_c00366{left:398.159415px;}
.x5f_c00366{left:403.559685px;}
.x13_c00366{left:406.799565px;}
.x7d_c00366{left:408.239820px;}
.x34_c00366{left:414.358665px;}
.x60_c00366{left:418.679670px;}
.x4b_c00366{left:420.479235px;}
.x14_c00366{left:422.998950px;}
.x7e_c00366{left:427.319820px;}
.x4c_c00366{left:429.478635px;}
.x35_c00366{left:438.479685px;}
.x4d_c00366{left:440.279250px;}
.x36_c00366{left:451.439250px;}
.x68_c00366{left:456.478635px;}
.x61_c00366{left:462.239820px;}
.xb_c00366{left:471.239220px;}
.x70_c00366{left:475.919535px;}
.x37_c00366{left:476.998950px;}
.x4e_c00366{left:482.758530px;}
.xc_c00366{left:487.438665px;}
.x19_c00366{left:488.878920px;}
.x25_c00366{left:489.958335px;}
.x38_c00366{left:491.759535px;}
.x71_c00366{left:494.279250px;}
.x4f_c00366{left:496.078770px;}
.x1a_c00366{left:512.279850px;}
.x2_c00366{left:515.519670px;}
.x26_c00366{left:521.279250px;}
.x39_c00366{left:522.719565px;}
.x62_c00366{left:525.598530px;}
.x69_c00366{left:536.039985px;}
.x72_c00366{left:542.878920px;}
.x1b_c00366{left:547.559100px;}
.x3_c00366{left:548.999400px;}
.x6a_c00366{left:555.119985px;}
.x50_c00366{left:556.558635px;}
.x1c_c00366{left:563.399235px;}
.x3a_c00366{left:568.799520px;}
.x73_c00366{left:573.479685px;}
.x1d_c00366{left:579.239220px;}
.x3b_c00366{left:587.518620px;}
.x3c_c00366{left:598.319235px;}
.x51_c00366{left:601.199850px;}
.x74_c00366{left:610.919535px;}
.x52_c00366{left:611.998950px;}
.x75_c00366{left:619.918950px;}
.x53_c00366{left:633.239220px;}
.x1e_c00366{left:636.479235px;}
.x3d_c00366{left:646.198785px;}
.x54_c00366{left:649.438620px;}
.x3e_c00366{left:654.479685px;}
.x55_c00366{left:660.239220px;}
.x76_c00366{left:661.318770px;}
.x3f_c00366{left:669.958920px;}
.x6_c00366{left:674.279850px;}
.x23_c00366{left:685.798920px;}
.x7_c00366{left:689.399820px;}
.xf_c00366{left:696.958920px;}
.x1f_c00366{left:704.519670px;}
.x40_c00366{left:706.319235px;}
.x24_c00366{left:708.118785px;}
.x56_c00366{left:709.918350px;}
.x10_c00366{left:712.798920px;}
.x77_c00366{left:713.878320px;}
.x41_c00366{left:719.639700px;}
.x78_c00366{left:731.878920px;}
.x57_c00366{left:737.999355px;}
.x58_c00366{left:744.119985px;}
.x42_c00366{left:754.198785px;}
.x59_c00366{left:757.079355px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls30_c00366{letter-spacing:-11.206433pt;}
.ls36_c00366{letter-spacing:-8.901000pt;}
.ls2b_c00366{letter-spacing:-8.844333pt;}
.ls2d_c00366{letter-spacing:-8.117867pt;}
.lse_c00366{letter-spacing:-7.266700pt;}
.ls15_c00366{letter-spacing:-6.467313pt;}
.ls5e_c00366{letter-spacing:-6.097080pt;}
.lsd_c00366{letter-spacing:-5.943000pt;}
.ls6_c00366{letter-spacing:-5.896000pt;}
.lsc_c00366{letter-spacing:-5.285000pt;}
.ls5d_c00366{letter-spacing:-5.060693pt;}
.ls59_c00366{letter-spacing:-4.927733pt;}
.ls5_c00366{letter-spacing:-4.619300pt;}
.ls33_c00366{letter-spacing:-4.539067pt;}
.ls2e_c00366{letter-spacing:-4.243600pt;}
.ls24_c00366{letter-spacing:-4.073067pt;}
.ls61_c00366{letter-spacing:-4.047813pt;}
.lsb_c00366{letter-spacing:-3.961300pt;}
.ls42_c00366{letter-spacing:-3.939000pt;}
.ls45_c00366{letter-spacing:-3.861000pt;}
.ls62_c00366{letter-spacing:-3.795000pt;}
.ls10_c00366{letter-spacing:-3.724700pt;}
.ls3d_c00366{letter-spacing:-3.654420pt;}
.ls53_c00366{letter-spacing:-3.613867pt;}
.ls28_c00366{letter-spacing:-3.553333pt;}
.ls35_c00366{letter-spacing:-3.389333pt;}
.ls37_c00366{letter-spacing:-3.383900pt;}
.ls19_c00366{letter-spacing:-3.331980pt;}
.ls7_c00366{letter-spacing:-3.304000pt;}
.ls50_c00366{letter-spacing:-3.225333pt;}
.ls23_c00366{letter-spacing:-3.036000pt;}
.ls4a_c00366{letter-spacing:-2.934800pt;}
.ls29_c00366{letter-spacing:-2.892800pt;}
.ls3a_c00366{letter-spacing:-2.845867pt;}
.ls41_c00366{letter-spacing:-2.798933pt;}
.ls3_c00366{letter-spacing:-2.639000pt;}
.ls4b_c00366{letter-spacing:-2.625000pt;}
.ls18_c00366{letter-spacing:-2.582580pt;}
.ls55_c00366{letter-spacing:-2.422980pt;}
.ls21_c00366{letter-spacing:-2.384533pt;}
.ls54_c00366{letter-spacing:-2.167467pt;}
.ls26_c00366{letter-spacing:-2.133333pt;}
.ls22_c00366{letter-spacing:-2.033187pt;}
.ls2a_c00366{letter-spacing:-2.032000pt;}
.ls4_c00366{letter-spacing:-1.981700pt;}
.ls31_c00366{letter-spacing:-1.972000pt;}
.ls4c_c00366{letter-spacing:-1.964600pt;}
.ls2c_c00366{letter-spacing:-1.903000pt;}
.ls5c_c00366{letter-spacing:-1.880000pt;}
.ls43_c00366{letter-spacing:-1.878800pt;}
.ls25_c00366{letter-spacing:-1.546280pt;}
.ls3e_c00366{letter-spacing:-1.518000pt;}
.ls38_c00366{letter-spacing:-1.420373pt;}
.ls5b_c00366{letter-spacing:-1.378000pt;}
.ls64_c00366{letter-spacing:-1.377200pt;}
.ls27_c00366{letter-spacing:-1.356147pt;}
.ls47_c00366{letter-spacing:-1.334273pt;}
.lsa_c00366{letter-spacing:-1.323700pt;}
.ls2f_c00366{letter-spacing:-1.311000pt;}
.ls20_c00366{letter-spacing:-0.971533pt;}
.ls39_c00366{letter-spacing:-0.924800pt;}
.ls3b_c00366{letter-spacing:-0.884000pt;}
.ls11_c00366{letter-spacing:-0.791087pt;}
.ls14_c00366{letter-spacing:-0.755040pt;}
.ls44_c00366{letter-spacing:-0.739867pt;}
.ls60_c00366{letter-spacing:-0.700980pt;}
.ls1f_c00366{letter-spacing:-0.676200pt;}
.ls9_c00366{letter-spacing:-0.658000pt;}
.ls3f_c00366{letter-spacing:-0.653600pt;}
.ls4f_c00366{letter-spacing:-0.626773pt;}
.ls49_c00366{letter-spacing:-0.625380pt;}
.ls8_c00366{letter-spacing:0.000000pt;}
.ls4e_c00366{letter-spacing:0.677867pt;}
.ls12_c00366{letter-spacing:0.735000pt;}
.ls16_c00366{letter-spacing:0.742000pt;}
.ls1_c00366{letter-spacing:1.323700pt;}
.ls57_c00366{letter-spacing:1.379007pt;}
.ls56_c00366{letter-spacing:1.399893pt;}
.ls13_c00366{letter-spacing:1.491000pt;}
.ls51_c00366{letter-spacing:1.492040pt;}
.ls32_c00366{letter-spacing:1.943000pt;}
.ls46_c00366{letter-spacing:2.033187pt;}
.ls1b_c00366{letter-spacing:2.169800pt;}
.ls1a_c00366{letter-spacing:2.276867pt;}
.ls63_c00366{letter-spacing:2.711467pt;}
.ls5f_c00366{letter-spacing:2.955733pt;}
.ls17_c00366{letter-spacing:2.982000pt;}
.lsf_c00366{letter-spacing:3.173640pt;}
.ls1e_c00366{letter-spacing:3.333067pt;}
.ls5a_c00366{letter-spacing:3.389333pt;}
.ls0_c00366{letter-spacing:4.619300pt;}
.ls2_c00366{letter-spacing:4.745480pt;}
.ls40_c00366{letter-spacing:4.927733pt;}
.ls48_c00366{letter-spacing:5.114800pt;}
.ls1d_c00366{letter-spacing:5.418800pt;}
.ls52_c00366{letter-spacing:8.205227pt;}
.ls34_c00366{letter-spacing:8.533333pt;}
.ls1c_c00366{letter-spacing:10.337467pt;}
.ls58_c00366{letter-spacing:11.200980pt;}
.ls3c_c00366{letter-spacing:16.260533pt;}
.ls4d_c00366{letter-spacing:19.861333pt;}
.ws0_c00366{word-spacing:0.000000pt;}
._d_c00366{margin-left:-20.712842pt;}
._1b_c00366{margin-left:-12.802894pt;}
._f_c00366{margin-left:-11.523572pt;}
._10_c00366{margin-left:-8.748019pt;}
._1d_c00366{margin-left:-7.411283pt;}
._13_c00366{margin-left:-5.442223pt;}
._1c_c00366{margin-left:-4.009587pt;}
._9_c00366{margin-left:-2.601253pt;}
._11_c00366{margin-left:-1.377125pt;}
._2_c00366{width:1.480579pt;}
._8_c00366{width:2.412147pt;}
._7_c00366{width:4.041113pt;}
._6_c00366{width:5.106553pt;}
._5_c00366{width:6.021123pt;}
._1_c00366{width:6.927808pt;}
._4_c00366{width:7.846551pt;}
._0_c00366{width:8.887226pt;}
._3_c00366{width:9.960657pt;}
._12_c00366{width:11.864709pt;}
._a_c00366{width:13.202053pt;}
._b_c00366{width:14.563606pt;}
._15_c00366{width:17.086974pt;}
._e_c00366{width:19.323949pt;}
._1e_c00366{width:21.727934pt;}
._c_c00366{width:22.729053pt;}
._18_c00366{width:26.671321pt;}
._19_c00366{width:29.010853pt;}
._14_c00366{width:30.501496pt;}
._17_c00366{width:32.831730pt;}
._1a_c00366{width:33.755625pt;}
._16_c00366{width:35.944551pt;}
.fsa_c00366{font-size:26.666667pt;}
.fs9_c00366{font-size:27.333333pt;}
.fs8_c00366{font-size:28.666667pt;}
.fs18_c00366{font-size:30.000000pt;}
.fs1c_c00366{font-size:30.666667pt;}
.fs1d_c00366{font-size:31.333333pt;}
.fs17_c00366{font-size:36.666667pt;}
.fs13_c00366{font-size:37.333333pt;}
.fsb_c00366{font-size:38.000000pt;}
.fse_c00366{font-size:38.666667pt;}
.fs10_c00366{font-size:39.333333pt;}
.fs16_c00366{font-size:40.000000pt;}
.fsc_c00366{font-size:40.666667pt;}
.fsd_c00366{font-size:41.333333pt;}
.fs7_c00366{font-size:42.000000pt;}
.fs1b_c00366{font-size:42.567467pt;}
.fsf_c00366{font-size:42.666667pt;}
.fs14_c00366{font-size:43.333333pt;}
.fs12_c00366{font-size:44.000000pt;}
.fs19_c00366{font-size:44.666667pt;}
.fs11_c00366{font-size:45.333333pt;}
.fs1a_c00366{font-size:46.000000pt;}
.fs15_c00366{font-size:64.000000pt;}
.fs2_c00366{font-size:64.666667pt;}
.fs6_c00366{font-size:68.000000pt;}
.fs5_c00366{font-size:69.333333pt;}
.fs0_c00366{font-size:70.000000pt;}
.fs4_c00366{font-size:70.666667pt;}
.fs3_c00366{font-size:71.333333pt;}
.fs1_c00366{font-size:73.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y27_c00366{bottom:151.680133pt;}
.y26_c00366{bottom:187.839867pt;}
.y25_c00366{bottom:222.719200pt;}
.y24_c00366{bottom:255.358933pt;}
.y23_c00366{bottom:267.520000pt;}
.y22_c00366{bottom:281.919453pt;}
.y21_c00366{bottom:374.399453pt;}
.y20_c00366{bottom:381.439453pt;}
.y1e_c00366{bottom:400.959600pt;}
.y1f_c00366{bottom:400.960000pt;}
.y1d_c00366{bottom:427.519347pt;}
.y1c_c00366{bottom:453.440373pt;}
.y1b_c00366{bottom:480.000120pt;}
.y1a_c00366{bottom:506.239707pt;}
.y19_c00366{bottom:506.240053pt;}
.y18_c00366{bottom:533.119973pt;}
.y17_c00366{bottom:559.041000pt;}
.y16_c00366{bottom:612.160507pt;}
.y15_c00366{bottom:638.720253pt;}
.y14_c00366{bottom:664.639200pt;}
.y13_c00366{bottom:664.960000pt;}
.y12_c00366{bottom:691.839840pt;}
.y11_c00366{bottom:691.840800pt;}
.y10_c00366{bottom:718.080387pt;}
.ye_c00366{bottom:744.638627pt;}
.yf_c00366{bottom:744.640133pt;}
.yd_c00366{bottom:770.878213pt;}
.yc_c00366{bottom:797.437973pt;}
.yb_c00366{bottom:823.679160pt;}
.ya_c00366{bottom:877.439267pt;}
.y9_c00366{bottom:903.999027pt;}
.y8_c00366{bottom:903.999187pt;}
.y6_c00366{bottom:930.238160pt;}
.y7_c00366{bottom:930.238773pt;}
.y5_c00366{bottom:956.159173pt;}
.y4_c00366{bottom:956.159973pt;}
.y2_c00366{bottom:982.719053pt;}
.y3_c00366{bottom:982.719720pt;}
.y1_c00366{bottom:1009.278813pt;}
.he_c00366{height:27.546875pt;}
.hf_c00366{height:27.812500pt;}
.hd_c00366{height:28.890625pt;}
.h21_c00366{height:30.234375pt;}
.h29_c00366{height:30.307292pt;}
.h2c_c00366{height:30.751953pt;}
.h28_c00366{height:35.968424pt;}
.h2d_c00366{height:36.236979pt;}
.h1f_c00366{height:38.242188pt;}
.h2a_c00366{height:38.296875pt;}
.h1a_c00366{height:38.937500pt;}
.h10_c00366{height:39.632812pt;}
.h1d_c00366{height:40.312500pt;}
.h14_c00366{height:40.328125pt;}
.h13_c00366{height:40.848958pt;}
.h11_c00366{height:40.984375pt;}
.h16_c00366{height:41.023438pt;}
.hb_c00366{height:41.220703pt;}
.h25_c00366{height:41.507812pt;}
.h12_c00366{height:41.656250pt;}
.h15_c00366{height:41.875000pt;}
.h27_c00366{height:42.068629pt;}
.h26_c00366{height:42.166667pt;}
.h24_c00366{height:42.328125pt;}
.h2b_c00366{height:42.529297pt;}
.h1e_c00366{height:42.825521pt;}
.h19_c00366{height:43.000000pt;}
.h20_c00366{height:43.109375pt;}
.h2e_c00366{height:43.183594pt;}
.h1b_c00366{height:43.671875pt;}
.h22_c00366{height:43.816081pt;}
.h18_c00366{height:44.343750pt;}
.h17_c00366{height:44.802083pt;}
.h23_c00366{height:45.460938pt;}
.hc_c00366{height:66.738281pt;}
.h1c_c00366{height:66.750000pt;}
.h3_c00366{height:67.445312pt;}
.h6_c00366{height:68.046875pt;}
.ha_c00366{height:68.531250pt;}
.h1_c00366{height:68.701172pt;}
.h5_c00366{height:69.355469pt;}
.h9_c00366{height:69.875000pt;}
.h4_c00366{height:70.009766pt;}
.h8_c00366{height:70.546875pt;}
.h7_c00366{height:71.890625pt;}
.h2_c00366{height:71.972656pt;}
.h0_c00366{height:1122.666667pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x20_c00366{left:122.559067pt;}
.x8_c00366{left:123.517880pt;}
.x1_c00366{left:124.479467pt;}
.x5a_c00366{left:135.039613pt;}
.x43_c00366{left:139.199733pt;}
.x44_c00366{left:148.479467pt;}
.x2a_c00366{left:151.038533pt;}
.x79_c00366{left:167.359867pt;}
.x2b_c00366{left:169.278813pt;}
.x15_c00366{left:179.198667pt;}
.x7a_c00366{left:180.799867pt;}
.x2c_c00366{left:183.679733pt;}
.x5b_c00366{left:184.960000pt;}
.x63_c00366{left:194.239720pt;}
.x2d_c00366{left:197.119587pt;}
.x6b_c00366{left:199.999467pt;}
.x45_c00366{left:201.279720pt;}
.x7b_c00366{left:204.159733pt;}
.x21_c00366{left:210.559587pt;}
.x6c_c00366{left:211.839867pt;}
.x46_c00366{left:212.799333pt;}
.x2e_c00366{left:220.798787pt;}
.x22_c00366{left:222.399867pt;}
.x5c_c00366{left:225.279720pt;}
.x16_c00366{left:226.558533pt;}
.x27_c00366{left:229.440000pt;}
.x2f_c00366{left:232.639200pt;}
.xd_c00366{left:234.878920pt;}
.x5d_c00366{left:239.679200pt;}
.x11_c00366{left:240.959453pt;}
.x30_c00366{left:242.559067pt;}
.xe_c00366{left:249.279720pt;}
.x6d_c00366{left:252.159733pt;}
.x12_c00366{left:262.719720pt;}
.x5e_c00366{left:267.199200pt;}
.x28_c00366{left:269.438920pt;}
.x17_c00366{left:272.639587pt;}
.x29_c00366{left:276.799867pt;}
.x6e_c00366{left:281.919453pt;}
.x31_c00366{left:282.878920pt;}
.x4_c00366{left:285.118667pt;}
.x47_c00366{left:286.719720pt;}
.x6f_c00366{left:291.518533pt;}
.x18_c00366{left:294.719200pt;}
.x48_c00366{left:296.318787pt;}
.x7c_c00366{left:298.239200pt;}
.x5_c00366{left:299.198693pt;}
.x9_c00366{left:307.199733pt;}
.x64_c00366{left:314.239720pt;}
.x32_c00366{left:316.798787pt;}
.x49_c00366{left:317.759720pt;}
.xa_c00366{left:319.359333pt;}
.x4a_c00366{left:329.919453pt;}
.x65_c00366{left:333.758787pt;}
.x66_c00366{left:342.079067pt;}
.x67_c00366{left:352.319867pt;}
.x33_c00366{left:353.919480pt;}
.x5f_c00366{left:358.719720pt;}
.x13_c00366{left:361.599613pt;}
.x7d_c00366{left:362.879840pt;}
.x34_c00366{left:368.318813pt;}
.x60_c00366{left:372.159707pt;}
.x4b_c00366{left:373.759320pt;}
.x14_c00366{left:375.999067pt;}
.x7e_c00366{left:379.839840pt;}
.x4c_c00366{left:381.758787pt;}
.x35_c00366{left:389.759720pt;}
.x4d_c00366{left:391.359333pt;}
.x36_c00366{left:401.279333pt;}
.x68_c00366{left:405.758787pt;}
.x61_c00366{left:410.879840pt;}
.xb_c00366{left:418.879307pt;}
.x70_c00366{left:423.039587pt;}
.x37_c00366{left:423.999067pt;}
.x4e_c00366{left:429.118693pt;}
.xc_c00366{left:433.278813pt;}
.x19_c00366{left:434.559040pt;}
.x25_c00366{left:435.518520pt;}
.x38_c00366{left:437.119587pt;}
.x71_c00366{left:439.359333pt;}
.x4f_c00366{left:440.958907pt;}
.x1a_c00366{left:455.359867pt;}
.x2_c00366{left:458.239707pt;}
.x26_c00366{left:463.359333pt;}
.x39_c00366{left:464.639613pt;}
.x62_c00366{left:467.198693pt;}
.x69_c00366{left:476.479987pt;}
.x72_c00366{left:482.559040pt;}
.x1b_c00366{left:486.719200pt;}
.x3_c00366{left:487.999467pt;}
.x6a_c00366{left:493.439987pt;}
.x50_c00366{left:494.718787pt;}
.x1c_c00366{left:500.799320pt;}
.x3a_c00366{left:505.599573pt;}
.x73_c00366{left:509.759720pt;}
.x1d_c00366{left:514.879307pt;}
.x3b_c00366{left:522.238773pt;}
.x3c_c00366{left:531.839320pt;}
.x51_c00366{left:534.399867pt;}
.x74_c00366{left:543.039587pt;}
.x52_c00366{left:543.999067pt;}
.x75_c00366{left:551.039067pt;}
.x53_c00366{left:562.879307pt;}
.x1e_c00366{left:565.759320pt;}
.x3d_c00366{left:574.398920pt;}
.x54_c00366{left:577.278773pt;}
.x3e_c00366{left:581.759720pt;}
.x55_c00366{left:586.879307pt;}
.x76_c00366{left:587.838907pt;}
.x3f_c00366{left:595.519040pt;}
.x6_c00366{left:599.359867pt;}
.x23_c00366{left:609.599040pt;}
.x7_c00366{left:612.799840pt;}
.xf_c00366{left:619.519040pt;}
.x1f_c00366{left:626.239707pt;}
.x40_c00366{left:627.839320pt;}
.x24_c00366{left:629.438920pt;}
.x56_c00366{left:631.038533pt;}
.x10_c00366{left:633.599040pt;}
.x77_c00366{left:634.558507pt;}
.x41_c00366{left:639.679733pt;}
.x78_c00366{left:650.559040pt;}
.x57_c00366{left:655.999427pt;}
.x58_c00366{left:661.439987pt;}
.x42_c00366{left:670.398920pt;}
.x59_c00366{left:672.959427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74392422d3cb0eddcbbbbe81.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_711e34325fd49af9a81a7d11.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_bcee346746a82bf1910a4df1.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_14adc4c8be769ac44ef8b578.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00367;src:url('chunks/assets/font_3139a612a499bb8a22d41020.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00367;src:url('chunks/assets/font_b4a3512c08ed40568942c793.woff2')format("woff");}.ff7_c00367{font-family:ff7_c00367;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29_c00367{transform:matrix(0.163690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163690,0.000000,0.000000,0.250000,0,0);}
.mf_c00367{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{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);}
.m28_c00367{transform:matrix(0.176724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176724,0.000000,0.000000,0.250000,0,0);}
.m17_c00367{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.185606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185606,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m43_c00367{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m19_c00367{transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199755,0.000000,0.000000,0.250000,0,0);}
.m30_c00367{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1a_c00367{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00367{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m44_c00367{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{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);}
.m2b_c00367{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m36_c00367{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);}
.m48_c00367{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m39_c00367{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m22_c00367{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m32_c00367{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m42_c00367{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m15_c00367{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m3e_c00367{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m47_c00367{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m3d_c00367{transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m2a_c00367{transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);}
.m38_c00367{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.me_c00367{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{transform:matrix(0.290948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290948,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.459459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459459,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.lsb_c00367{letter-spacing:-16.095750px;}
.lsd_c00367{letter-spacing:-14.734500px;}
.lsf_c00367{letter-spacing:-14.082750px;}
.ls23_c00367{letter-spacing:-13.570650px;}
.ls1f_c00367{letter-spacing:-12.687675px;}
.ls5_c00367{letter-spacing:-11.343750px;}
.ls26_c00367{letter-spacing:-9.415725px;}
.ls14_c00367{letter-spacing:-8.914500px;}
.lse_c00367{letter-spacing:-7.499250px;}
.ls22_c00367{letter-spacing:-7.426125px;}
.ls19_c00367{letter-spacing:-6.975697px;}
.lsa_c00367{letter-spacing:-6.685875px;}
.ls48_c00367{letter-spacing:-5.965800px;}
.lsc_c00367{letter-spacing:-5.945625px;}
.ls1d_c00367{letter-spacing:-5.301450px;}
.ls36_c00367{letter-spacing:-5.250375px;}
.ls6_c00367{letter-spacing:-5.196713px;}
.ls4c_c00367{letter-spacing:-5.049495px;}
.ls1b_c00367{letter-spacing:-4.497675px;}
.ls9_c00367{letter-spacing:-4.456463px;}
.ls24_c00367{letter-spacing:-4.000200px;}
.ls27_c00367{letter-spacing:-3.889200px;}
.ls8_c00367{letter-spacing:-3.717000px;}
.ls3d_c00367{letter-spacing:-3.518175px;}
.ls2_c00367{letter-spacing:-2.968875px;}
.ls4d_c00367{letter-spacing:-2.865120px;}
.ls3b_c00367{letter-spacing:-2.820353px;}
.ls42_c00367{letter-spacing:-2.812500px;}
.ls34_c00367{letter-spacing:-2.812388px;}
.ls32_c00367{letter-spacing:-2.445900px;}
.ls35_c00367{letter-spacing:-2.356695px;}
.ls37_c00367{letter-spacing:-2.323200px;}
.ls40_c00367{letter-spacing:-2.252250px;}
.ls3a_c00367{letter-spacing:-2.249573px;}
.ls1_c00367{letter-spacing:-2.229413px;}
.ls44_c00367{letter-spacing:-2.184000px;}
.ls2d_c00367{letter-spacing:-2.110710px;}
.ls3e_c00367{letter-spacing:-2.079000px;}
.ls2f_c00367{letter-spacing:-1.665000px;}
.ls3c_c00367{letter-spacing:-1.579500px;}
.ls46_c00367{letter-spacing:-1.554000px;}
.ls45_c00367{letter-spacing:-1.526400px;}
.ls4_c00367{letter-spacing:-1.489163px;}
.ls41_c00367{letter-spacing:-1.478925px;}
.ls38_c00367{letter-spacing:-1.478880px;}
.ls43_c00367{letter-spacing:-1.429275px;}
.ls4a_c00367{letter-spacing:-1.409558px;}
.ls31_c00367{letter-spacing:-1.408500px;}
.ls3f_c00367{letter-spacing:-0.813750px;}
.ls33_c00367{letter-spacing:-0.784875px;}
.ls39_c00367{letter-spacing:-0.776085px;}
.ls47_c00367{letter-spacing:-0.775125px;}
.ls25_c00367{letter-spacing:-0.770310px;}
.ls4f_c00367{letter-spacing:-0.763200px;}
.ls20_c00367{letter-spacing:-0.756743px;}
.ls7_c00367{letter-spacing:-0.740250px;}
.ls3_c00367{letter-spacing:0.000000px;}
.ls2a_c00367{letter-spacing:0.505050px;}
.ls2e_c00367{letter-spacing:0.703110px;}
.ls13_c00367{letter-spacing:0.742050px;}
.ls2b_c00367{letter-spacing:0.750000px;}
.ls1c_c00367{letter-spacing:0.849420px;}
.ls49_c00367{letter-spacing:1.409558px;}
.ls10_c00367{letter-spacing:1.489163px;}
.ls15_c00367{letter-spacing:2.229413px;}
.ls28_c00367{letter-spacing:2.477025px;}
.ls29_c00367{letter-spacing:2.855752px;}
.ls21_c00367{letter-spacing:3.029400px;}
.ls1e_c00367{letter-spacing:3.219000px;}
.ls16_c00367{letter-spacing:3.333600px;}
.ls4e_c00367{letter-spacing:3.460500px;}
.ls1a_c00367{letter-spacing:4.060193px;}
.ls18_c00367{letter-spacing:4.187700px;}
.ls30_c00367{letter-spacing:4.361175px;}
.ls4b_c00367{letter-spacing:4.363200px;}
.ls0_c00367{letter-spacing:4.456463px;}
.ls11_c00367{letter-spacing:6.856980px;}
.ls12_c00367{letter-spacing:7.971300px;}
.ls17_c00367{letter-spacing:9.370725px;}
.ls2c_c00367{letter-spacing:10.306800px;}
.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;}
._1a_c00367{margin-left:-12.800415px;}
._f_c00367{margin-left:-9.043427px;}
._15_c00367{margin-left:-7.832059px;}
._14_c00367{margin-left:-5.166089px;}
._e_c00367{margin-left:-3.774562px;}
._10_c00367{margin-left:-2.674989px;}
._3_c00367{margin-left:-1.170448px;}
._2_c00367{width:1.414959px;}
._8_c00367{width:2.439883px;}
._0_c00367{width:4.097288px;}
._4_c00367{width:5.787976px;}
._1b_c00367{width:7.063890px;}
._6_c00367{width:8.067016px;}
._1_c00367{width:9.151731px;}
._d_c00367{width:10.550420px;}
._11_c00367{width:11.842410px;}
._b_c00367{width:13.178887px;}
._9_c00367{width:14.680530px;}
._17_c00367{width:16.117673px;}
._c_c00367{width:17.604176px;}
._7_c00367{width:19.326587px;}
._18_c00367{width:20.664446px;}
._a_c00367{width:22.057920px;}
._5_c00367{width:23.682101px;}
._16_c00367{width:24.942844px;}
._12_c00367{width:28.278858px;}
._19_c00367{width:32.753210px;}
._13_c00367{width:37.177474px;}
._1c_c00367{width:70.721540px;}
.fc0_c00367{color:transparent;}
.fs12_c00367{font-size:27.750000px;}
.fs13_c00367{font-size:37.500000px;}
.fs1f_c00367{font-size:42.000000px;}
.fs1e_c00367{font-size:44.250000px;}
.fs18_c00367{font-size:45.000000px;}
.fs1d_c00367{font-size:45.750000px;}
.fs19_c00367{font-size:46.500000px;}
.fs17_c00367{font-size:47.250000px;}
.fs1c_c00367{font-size:48.000000px;}
.fs1a_c00367{font-size:48.750000px;}
.fs1b_c00367{font-size:49.500000px;}
.fs14_c00367{font-size:63.000000px;}
.fs7_c00367{font-size:68.250000px;}
.fs15_c00367{font-size:69.000000px;}
.fs9_c00367{font-size:69.750000px;}
.fs3_c00367{font-size:70.500000px;}
.fs6_c00367{font-size:72.000000px;}
.fsa_c00367{font-size:74.250000px;}
.fsc_c00367{font-size:75.750000px;}
.fs5_c00367{font-size:76.500000px;}
.fs4_c00367{font-size:78.000000px;}
.fs0_c00367{font-size:78.750000px;}
.fsf_c00367{font-size:79.500000px;}
.fs2_c00367{font-size:80.250000px;}
.fs10_c00367{font-size:81.000000px;}
.fs8_c00367{font-size:81.750000px;}
.fs1_c00367{font-size:82.500000px;}
.fs16_c00367{font-size:83.250000px;}
.fsd_c00367{font-size:83.628600px;}
.fs11_c00367{font-size:84.000000px;}
.fse_c00367{font-size:84.750000px;}
.fsb_c00367{font-size:87.000000px;}
.y0_c00367{bottom:0.000000px;}
.y2a_c00367{bottom:171.360300px;}
.y29_c00367{bottom:211.319850px;}
.y28_c00367{bottom:250.199850px;}
.y27_c00367{bottom:331.199850px;}
.y26_c00367{bottom:331.200000px;}
.y25_c00367{bottom:360.719535px;}
.y24_c00367{bottom:426.960570px;}
.y23_c00367{bottom:429.121035px;}
.y22_c00367{bottom:450.359850px;}
.y21_c00367{bottom:481.319820px;}
.y20_c00367{bottom:481.320000px;}
.y1e_c00367{bottom:510.839280px;}
.y1f_c00367{bottom:510.839535px;}
.y1d_c00367{bottom:540.360630px;}
.y1c_c00367{bottom:569.519670px;}
.y1b_c00367{bottom:569.520555px;}
.y1a_c00367{bottom:599.400285px;}
.y19_c00367{bottom:629.280900px;}
.y18_c00367{bottom:629.281035px;}
.y16_c00367{bottom:658.799955px;}
.y17_c00367{bottom:658.800570px;}
.y15_c00367{bottom:688.679670px;}
.y14_c00367{bottom:718.560285px;}
.y13_c00367{bottom:748.080000px;}
.y12_c00367{bottom:777.960570px;}
.y11_c00367{bottom:808.200435px;}
.y10_c00367{bottom:808.200675px;}
.yf_c00367{bottom:838.080390px;}
.ye_c00367{bottom:897.479640px;}
.yd_c00367{bottom:897.480540px;}
.yc_c00367{bottom:927.360255px;}
.yb_c00367{bottom:927.361155px;}
.y9_c00367{bottom:957.240210px;}
.ya_c00367{bottom:957.240870px;}
.y8_c00367{bottom:987.119940px;}
.y7_c00367{bottom:987.120330px;}
.y6_c00367{bottom:1046.161200px;}
.y4_c00367{bottom:1075.680675px;}
.y5_c00367{bottom:1075.680720px;}
.y2_c00367{bottom:1105.920540px;}
.y3_c00367{bottom:1105.920600px;}
.y1_c00367{bottom:1136.160465px;}
.h18_c00367{height:28.942383px;}
.h19_c00367{height:39.111328px;}
.h2d_c00367{height:43.428955px;}
.h2e_c00367{height:43.804688px;}
.h20_c00367{height:44.165039px;}
.h2f_c00367{height:44.901123px;}
.h30_c00367{height:45.213867px;}
.h2a_c00367{height:45.351562px;}
.h27_c00367{height:45.637207px;}
.h29_c00367{height:46.107422px;}
.h1f_c00367{height:46.373291px;}
.h21_c00367{height:46.863281px;}
.h26_c00367{height:47.109375px;}
.h28_c00367{height:47.619141px;}
.h2c_c00367{height:47.845459px;}
.h23_c00367{height:48.178711px;}
.h25_c00367{height:48.375000px;}
.h24_c00367{height:48.581543px;}
.h31_c00367{height:48.919922px;}
.h22_c00367{height:49.130859px;}
.h2b_c00367{height:49.886719px;}
.h1c_c00367{height:61.800293px;}
.h1d_c00367{height:67.686035px;}
.ha_c00367{height:71.182617px;}
.hc_c00367{height:72.747070px;}
.h5_c00367{height:73.529297px;}
.h10_c00367{height:74.344482px;}
.he_c00367{height:74.830078px;}
.h8_c00367{height:75.080566px;}
.h9_c00367{height:75.093750px;}
.h6_c00367{height:76.552734px;}
.h7_c00367{height:77.097656px;}
.h1_c00367{height:77.288818px;}
.h13_c00367{height:78.024902px;}
.h14_c00367{height:78.568359px;}
.hd_c00367{height:78.609375px;}
.h4_c00367{height:78.760986px;}
.h1a_c00367{height:79.365234px;}
.h15_c00367{height:79.497070px;}
.h17_c00367{height:80.233154px;}
.hb_c00367{height:80.791992px;}
.h2_c00367{height:80.969238px;}
.h3_c00367{height:81.533203px;}
.h11_c00367{height:82.076897px;}
.h16_c00367{height:82.441406px;}
.h12_c00367{height:83.177490px;}
.h1e_c00367{height:83.900391px;}
.hf_c00367{height:85.385742px;}
.h1b_c00367{height:85.980469px;}
.h0_c00367{height:1263.000000px;}
.w0_c00367{width:892.500000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:136.438665px;}
.xe_c00367{left:137.521110px;}
.x1d_c00367{left:151.199415px;}
.x5e_c00367{left:168.838950px;}
.x41_c00367{left:184.319850px;}
.x49_c00367{left:187.918950px;}
.x52_c00367{left:189.718500px;}
.x6a_c00367{left:190.799565px;}
.x15_c00367{left:210.958950px;}
.x4a_c00367{left:212.040000px;}
.x1e_c00367{left:216.718500px;}
.x53_c00367{left:219.599100px;}
.x42_c00367{left:226.439685px;}
.x16_c00367{left:229.318800px;}
.x54_c00367{left:236.159385px;}
.x4b_c00367{left:237.238785px;}
.x1f_c00367{left:239.399250px;}
.x6b_c00367{left:248.039385px;}
.x2a_c00367{left:267.478635px;}
.x32_c00367{left:275.398635px;}
.x2_c00367{left:277.559100px;}
.x55_c00367{left:281.519100px;}
.x5f_c00367{left:286.558635px;}
.x33_c00367{left:289.439235px;}
.x3_c00367{left:291.599700px;}
.x43_c00367{left:294.478635px;}
.x60_c00367{left:303.118785px;}
.x3b_c00367{left:307.078785px;}
.x6c_c00367{left:312.838515px;}
.x61_c00367{left:320.399235px;}
.x6d_c00367{left:322.559685px;}
.x44_c00367{left:333.358635px;}
.x56_c00367{left:336.598530px;}
.x3f_c00367{left:339.479235px;}
.x20_c00367{left:345.599700px;}
.x57_c00367{left:350.639100px;}
.x1b_c00367{left:353.519685px;}
.x40_c00367{left:359.999385px;}
.x36_c00367{left:361.439685px;}
.x58_c00367{left:365.038950px;}
.x3c_c00367{left:367.919535px;}
.x1c_c00367{left:369.359850px;}
.x4c_c00367{left:370.798515px;}
.x21_c00367{left:377.639100px;}
.x62_c00367{left:379.799535px;}
.x11_c00367{left:380.878950px;}
.x3d_c00367{left:384.479685px;}
.x6e_c00367{left:392.399820px;}
.x22_c00367{left:397.439250px;}
.x3e_c00367{left:400.319820px;}
.x12_c00367{left:402.119385px;}
.x59_c00367{left:404.279850px;}
.x19_c00367{left:406.799565px;}
.x5a_c00367{left:418.679670px;}
.x6f_c00367{left:420.479235px;}
.x4_c00367{left:422.639700px;}
.x70_c00367{left:429.478635px;}
.x1a_c00367{left:432.718500px;}
.x4d_c00367{left:438.838950px;}
.x5_c00367{left:442.078815px;}
.x5b_c00367{left:446.399820px;}
.x71_c00367{left:452.518620px;}
.x23_c00367{left:456.478635px;}
.x63_c00367{left:458.279850px;}
.x45_c00367{left:467.999400px;}
.x24_c00367{left:470.519070px;}
.x72_c00367{left:483.839535px;}
.x46_c00367{left:489.599070px;}
.x5c_c00367{left:492.838950px;}
.x2b_c00367{left:497.519070px;}
.x6_c00367{left:499.679670px;}
.xa_c00367{left:503.639700px;}
.x17_c00367{left:506.159415px;}
.x2c_c00367{left:515.158770px;}
.x7_c00367{left:517.678530px;}
.xb_c00367{left:519.838950px;}
.x5d_c00367{left:521.999400px;}
.x73_c00367{left:523.078770px;}
.x18_c00367{left:525.239220px;}
.x64_c00367{left:528.479235px;}
.x25_c00367{left:542.519670px;}
.x65_c00367{left:555.838530px;}
.x47_c00367{left:573.838950px;}
.x74_c00367{left:575.999400px;}
.x8_c00367{left:580.679670px;}
.x4e_c00367{left:592.918950px;}
.x66_c00367{left:594.718500px;}
.x9_c00367{left:596.519670px;}
.x26_c00367{left:597.958335px;}
.x2d_c00367{left:606.239220px;}
.x34_c00367{left:614.879520px;}
.x27_c00367{left:622.438620px;}
.x2e_c00367{left:627.838950px;}
.x35_c00367{left:629.279250px;}
.x38_c00367{left:634.318770px;}
.xc_c00367{left:639.359850px;}
.x50_c00367{left:641.159370px;}
.x48_c00367{left:656.999400px;}
.x39_c00367{left:659.519070px;}
.xd_c00367{left:661.318770px;}
.x28_c00367{left:663.119985px;}
.xf_c00367{left:665.998950px;}
.x67_c00367{left:669.958920px;}
.x3a_c00367{left:675.718545px;}
.x51_c00367{left:677.878920px;}
.x68_c00367{left:683.279250px;}
.x10_c00367{left:687.239220px;}
.x2f_c00367{left:694.439250px;}
.x69_c00367{left:698.399235px;}
.x4f_c00367{left:714.239220px;}
.x30_c00367{left:732.239820px;}
.x13_c00367{left:743.759085px;}
.x31_c00367{left:745.558635px;}
.x29_c00367{left:751.679070px;}
.x14_c00367{left:759.239820px;}
.x37_c00367{left:761.759535px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.lsb_c00367{letter-spacing:-14.307333pt;}
.lsd_c00367{letter-spacing:-13.097333pt;}
.lsf_c00367{letter-spacing:-12.518000pt;}
.ls23_c00367{letter-spacing:-12.062800pt;}
.ls1f_c00367{letter-spacing:-11.277933pt;}
.ls5_c00367{letter-spacing:-10.083333pt;}
.ls26_c00367{letter-spacing:-8.369533pt;}
.ls14_c00367{letter-spacing:-7.924000pt;}
.lse_c00367{letter-spacing:-6.666000pt;}
.ls22_c00367{letter-spacing:-6.601000pt;}
.ls19_c00367{letter-spacing:-6.200620pt;}
.lsa_c00367{letter-spacing:-5.943000pt;}
.ls48_c00367{letter-spacing:-5.302933pt;}
.lsc_c00367{letter-spacing:-5.285000pt;}
.ls1d_c00367{letter-spacing:-4.712400pt;}
.ls36_c00367{letter-spacing:-4.667000pt;}
.ls6_c00367{letter-spacing:-4.619300pt;}
.ls4c_c00367{letter-spacing:-4.488440pt;}
.ls1b_c00367{letter-spacing:-3.997933pt;}
.ls9_c00367{letter-spacing:-3.961300pt;}
.ls24_c00367{letter-spacing:-3.555733pt;}
.ls27_c00367{letter-spacing:-3.457067pt;}
.ls8_c00367{letter-spacing:-3.304000pt;}
.ls3d_c00367{letter-spacing:-3.127267pt;}
.ls2_c00367{letter-spacing:-2.639000pt;}
.ls4d_c00367{letter-spacing:-2.546773pt;}
.ls3b_c00367{letter-spacing:-2.506980pt;}
.ls42_c00367{letter-spacing:-2.500000pt;}
.ls34_c00367{letter-spacing:-2.499900pt;}
.ls32_c00367{letter-spacing:-2.174133pt;}
.ls35_c00367{letter-spacing:-2.094840pt;}
.ls37_c00367{letter-spacing:-2.065067pt;}
.ls40_c00367{letter-spacing:-2.002000pt;}
.ls3a_c00367{letter-spacing:-1.999620pt;}
.ls1_c00367{letter-spacing:-1.981700pt;}
.ls44_c00367{letter-spacing:-1.941333pt;}
.ls2d_c00367{letter-spacing:-1.876187pt;}
.ls3e_c00367{letter-spacing:-1.848000pt;}
.ls2f_c00367{letter-spacing:-1.480000pt;}
.ls3c_c00367{letter-spacing:-1.404000pt;}
.ls46_c00367{letter-spacing:-1.381333pt;}
.ls45_c00367{letter-spacing:-1.356800pt;}
.ls4_c00367{letter-spacing:-1.323700pt;}
.ls41_c00367{letter-spacing:-1.314600pt;}
.ls38_c00367{letter-spacing:-1.314560pt;}
.ls43_c00367{letter-spacing:-1.270467pt;}
.ls4a_c00367{letter-spacing:-1.252940pt;}
.ls31_c00367{letter-spacing:-1.252000pt;}
.ls3f_c00367{letter-spacing:-0.723333pt;}
.ls33_c00367{letter-spacing:-0.697667pt;}
.ls39_c00367{letter-spacing:-0.689853pt;}
.ls47_c00367{letter-spacing:-0.689000pt;}
.ls25_c00367{letter-spacing:-0.684720pt;}
.ls4f_c00367{letter-spacing:-0.678400pt;}
.ls20_c00367{letter-spacing:-0.672660pt;}
.ls7_c00367{letter-spacing:-0.658000pt;}
.ls3_c00367{letter-spacing:0.000000pt;}
.ls2a_c00367{letter-spacing:0.448933pt;}
.ls2e_c00367{letter-spacing:0.624987pt;}
.ls13_c00367{letter-spacing:0.659600pt;}
.ls2b_c00367{letter-spacing:0.666667pt;}
.ls1c_c00367{letter-spacing:0.755040pt;}
.ls49_c00367{letter-spacing:1.252940pt;}
.ls10_c00367{letter-spacing:1.323700pt;}
.ls15_c00367{letter-spacing:1.981700pt;}
.ls28_c00367{letter-spacing:2.201800pt;}
.ls29_c00367{letter-spacing:2.538447pt;}
.ls21_c00367{letter-spacing:2.692800pt;}
.ls1e_c00367{letter-spacing:2.861333pt;}
.ls16_c00367{letter-spacing:2.963200pt;}
.ls4e_c00367{letter-spacing:3.076000pt;}
.ls1a_c00367{letter-spacing:3.609060pt;}
.ls18_c00367{letter-spacing:3.722400pt;}
.ls30_c00367{letter-spacing:3.876600pt;}
.ls4b_c00367{letter-spacing:3.878400pt;}
.ls0_c00367{letter-spacing:3.961300pt;}
.ls11_c00367{letter-spacing:6.095093pt;}
.ls12_c00367{letter-spacing:7.085600pt;}
.ls17_c00367{letter-spacing:8.329533pt;}
.ls2c_c00367{letter-spacing:9.161600pt;}
.ws0_c00367{word-spacing:0.000000pt;}
._1a_c00367{margin-left:-11.378147pt;}
._f_c00367{margin-left:-8.038602pt;}
._15_c00367{margin-left:-6.961830pt;}
._14_c00367{margin-left:-4.592079pt;}
._e_c00367{margin-left:-3.355166pt;}
._10_c00367{margin-left:-2.377768pt;}
._3_c00367{margin-left:-1.040398pt;}
._2_c00367{width:1.257742pt;}
._8_c00367{width:2.168785pt;}
._0_c00367{width:3.642034pt;}
._4_c00367{width:5.144868pt;}
._1b_c00367{width:6.279013pt;}
._6_c00367{width:7.170681pt;}
._1_c00367{width:8.134872pt;}
._d_c00367{width:9.378151pt;}
._11_c00367{width:10.526587pt;}
._b_c00367{width:11.714566pt;}
._9_c00367{width:13.049360pt;}
._17_c00367{width:14.326821pt;}
._c_c00367{width:15.648157pt;}
._7_c00367{width:17.179189pt;}
._18_c00367{width:18.368396pt;}
._a_c00367{width:19.607040pt;}
._5_c00367{width:21.050757pt;}
._16_c00367{width:22.171417pt;}
._12_c00367{width:25.136762pt;}
._19_c00367{width:29.113964pt;}
._13_c00367{width:33.046643pt;}
._1c_c00367{width:62.863591pt;}
.fs12_c00367{font-size:24.666667pt;}
.fs13_c00367{font-size:33.333333pt;}
.fs1f_c00367{font-size:37.333333pt;}
.fs1e_c00367{font-size:39.333333pt;}
.fs18_c00367{font-size:40.000000pt;}
.fs1d_c00367{font-size:40.666667pt;}
.fs19_c00367{font-size:41.333333pt;}
.fs17_c00367{font-size:42.000000pt;}
.fs1c_c00367{font-size:42.666667pt;}
.fs1a_c00367{font-size:43.333333pt;}
.fs1b_c00367{font-size:44.000000pt;}
.fs14_c00367{font-size:56.000000pt;}
.fs7_c00367{font-size:60.666667pt;}
.fs15_c00367{font-size:61.333333pt;}
.fs9_c00367{font-size:62.000000pt;}
.fs3_c00367{font-size:62.666667pt;}
.fs6_c00367{font-size:64.000000pt;}
.fsa_c00367{font-size:66.000000pt;}
.fsc_c00367{font-size:67.333333pt;}
.fs5_c00367{font-size:68.000000pt;}
.fs4_c00367{font-size:69.333333pt;}
.fs0_c00367{font-size:70.000000pt;}
.fsf_c00367{font-size:70.666667pt;}
.fs2_c00367{font-size:71.333333pt;}
.fs10_c00367{font-size:72.000000pt;}
.fs8_c00367{font-size:72.666667pt;}
.fs1_c00367{font-size:73.333333pt;}
.fs16_c00367{font-size:74.000000pt;}
.fsd_c00367{font-size:74.336533pt;}
.fs11_c00367{font-size:74.666667pt;}
.fse_c00367{font-size:75.333333pt;}
.fsb_c00367{font-size:77.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y2a_c00367{bottom:152.320267pt;}
.y29_c00367{bottom:187.839867pt;}
.y28_c00367{bottom:222.399867pt;}
.y27_c00367{bottom:294.399867pt;}
.y26_c00367{bottom:294.400000pt;}
.y25_c00367{bottom:320.639587pt;}
.y24_c00367{bottom:379.520507pt;}
.y23_c00367{bottom:381.440920pt;}
.y22_c00367{bottom:400.319867pt;}
.y21_c00367{bottom:427.839840pt;}
.y20_c00367{bottom:427.840000pt;}
.y1e_c00367{bottom:454.079360pt;}
.y1f_c00367{bottom:454.079587pt;}
.y1d_c00367{bottom:480.320560pt;}
.y1c_c00367{bottom:506.239707pt;}
.y1b_c00367{bottom:506.240493pt;}
.y1a_c00367{bottom:532.800253pt;}
.y19_c00367{bottom:559.360800pt;}
.y18_c00367{bottom:559.360920pt;}
.y16_c00367{bottom:585.599960pt;}
.y17_c00367{bottom:585.600507pt;}
.y15_c00367{bottom:612.159707pt;}
.y14_c00367{bottom:638.720253pt;}
.y13_c00367{bottom:664.960000pt;}
.y12_c00367{bottom:691.520507pt;}
.y11_c00367{bottom:718.400387pt;}
.y10_c00367{bottom:718.400600pt;}
.yf_c00367{bottom:744.960347pt;}
.ye_c00367{bottom:797.759680pt;}
.yd_c00367{bottom:797.760480pt;}
.yc_c00367{bottom:824.320227pt;}
.yb_c00367{bottom:824.321027pt;}
.y9_c00367{bottom:850.880187pt;}
.ya_c00367{bottom:850.880773pt;}
.y8_c00367{bottom:877.439947pt;}
.y7_c00367{bottom:877.440293pt;}
.y6_c00367{bottom:929.921067pt;}
.y4_c00367{bottom:956.160600pt;}
.y5_c00367{bottom:956.160640pt;}
.y2_c00367{bottom:983.040480pt;}
.y3_c00367{bottom:983.040533pt;}
.y1_c00367{bottom:1009.920413pt;}
.h18_c00367{height:25.726562pt;}
.h19_c00367{height:34.765625pt;}
.h2d_c00367{height:38.603516pt;}
.h2e_c00367{height:38.937500pt;}
.h20_c00367{height:39.257812pt;}
.h2f_c00367{height:39.912109pt;}
.h30_c00367{height:40.190104pt;}
.h2a_c00367{height:40.312500pt;}
.h27_c00367{height:40.566406pt;}
.h29_c00367{height:40.984375pt;}
.h1f_c00367{height:41.220703pt;}
.h21_c00367{height:41.656250pt;}
.h26_c00367{height:41.875000pt;}
.h28_c00367{height:42.328125pt;}
.h2c_c00367{height:42.529297pt;}
.h23_c00367{height:42.825521pt;}
.h25_c00367{height:43.000000pt;}
.h24_c00367{height:43.183594pt;}
.h31_c00367{height:43.484375pt;}
.h22_c00367{height:43.671875pt;}
.h2b_c00367{height:44.343750pt;}
.h1c_c00367{height:54.933594pt;}
.h1d_c00367{height:60.165365pt;}
.ha_c00367{height:63.273438pt;}
.hc_c00367{height:64.664062pt;}
.h5_c00367{height:65.359375pt;}
.h10_c00367{height:66.083984pt;}
.he_c00367{height:66.515625pt;}
.h8_c00367{height:66.738281pt;}
.h9_c00367{height:66.750000pt;}
.h6_c00367{height:68.046875pt;}
.h7_c00367{height:68.531250pt;}
.h1_c00367{height:68.701172pt;}
.h13_c00367{height:69.355469pt;}
.h14_c00367{height:69.838542pt;}
.hd_c00367{height:69.875000pt;}
.h4_c00367{height:70.009766pt;}
.h1a_c00367{height:70.546875pt;}
.h15_c00367{height:70.664062pt;}
.h17_c00367{height:71.318359pt;}
.hb_c00367{height:71.815104pt;}
.h2_c00367{height:71.972656pt;}
.h3_c00367{height:72.473958pt;}
.h11_c00367{height:72.957242pt;}
.h16_c00367{height:73.281250pt;}
.h12_c00367{height:73.935547pt;}
.h1e_c00367{height:74.578125pt;}
.hf_c00367{height:75.898438pt;}
.h1b_c00367{height:76.427083pt;}
.h0_c00367{height:1122.666667pt;}
.w0_c00367{width:793.333333pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:121.278813pt;}
.xe_c00367{left:122.240987pt;}
.x1d_c00367{left:134.399480pt;}
.x5e_c00367{left:150.079067pt;}
.x41_c00367{left:163.839867pt;}
.x49_c00367{left:167.039067pt;}
.x52_c00367{left:168.638667pt;}
.x6a_c00367{left:169.599613pt;}
.x15_c00367{left:187.519067pt;}
.x4a_c00367{left:188.480000pt;}
.x1e_c00367{left:192.638667pt;}
.x53_c00367{left:195.199200pt;}
.x42_c00367{left:201.279720pt;}
.x16_c00367{left:203.838933pt;}
.x54_c00367{left:209.919453pt;}
.x4b_c00367{left:210.878920pt;}
.x1f_c00367{left:212.799333pt;}
.x6b_c00367{left:220.479453pt;}
.x2a_c00367{left:237.758787pt;}
.x32_c00367{left:244.798787pt;}
.x2_c00367{left:246.719200pt;}
.x55_c00367{left:250.239200pt;}
.x5f_c00367{left:254.718787pt;}
.x33_c00367{left:257.279320pt;}
.x3_c00367{left:259.199733pt;}
.x43_c00367{left:261.758787pt;}
.x60_c00367{left:269.438920pt;}
.x3b_c00367{left:272.958920pt;}
.x6c_c00367{left:278.078680pt;}
.x61_c00367{left:284.799320pt;}
.x6d_c00367{left:286.719720pt;}
.x44_c00367{left:296.318787pt;}
.x56_c00367{left:299.198693pt;}
.x3f_c00367{left:301.759320pt;}
.x20_c00367{left:307.199733pt;}
.x57_c00367{left:311.679200pt;}
.x1b_c00367{left:314.239720pt;}
.x40_c00367{left:319.999453pt;}
.x36_c00367{left:321.279720pt;}
.x58_c00367{left:324.479067pt;}
.x3c_c00367{left:327.039587pt;}
.x1c_c00367{left:328.319867pt;}
.x4c_c00367{left:329.598680pt;}
.x21_c00367{left:335.679200pt;}
.x62_c00367{left:337.599587pt;}
.x11_c00367{left:338.559067pt;}
.x3d_c00367{left:341.759720pt;}
.x6e_c00367{left:348.799840pt;}
.x22_c00367{left:353.279333pt;}
.x3e_c00367{left:355.839840pt;}
.x12_c00367{left:357.439453pt;}
.x59_c00367{left:359.359867pt;}
.x19_c00367{left:361.599613pt;}
.x5a_c00367{left:372.159707pt;}
.x6f_c00367{left:373.759320pt;}
.x4_c00367{left:375.679733pt;}
.x70_c00367{left:381.758787pt;}
.x1a_c00367{left:384.638667pt;}
.x4d_c00367{left:390.079067pt;}
.x5_c00367{left:392.958947pt;}
.x5b_c00367{left:396.799840pt;}
.x71_c00367{left:402.238773pt;}
.x23_c00367{left:405.758787pt;}
.x63_c00367{left:407.359867pt;}
.x45_c00367{left:415.999467pt;}
.x24_c00367{left:418.239173pt;}
.x72_c00367{left:430.079587pt;}
.x46_c00367{left:435.199173pt;}
.x5c_c00367{left:438.079067pt;}
.x2b_c00367{left:442.239173pt;}
.x6_c00367{left:444.159707pt;}
.xa_c00367{left:447.679733pt;}
.x17_c00367{left:449.919480pt;}
.x2c_c00367{left:457.918907pt;}
.x7_c00367{left:460.158693pt;}
.xb_c00367{left:462.079067pt;}
.x5d_c00367{left:463.999467pt;}
.x73_c00367{left:464.958907pt;}
.x18_c00367{left:466.879307pt;}
.x64_c00367{left:469.759320pt;}
.x25_c00367{left:482.239707pt;}
.x65_c00367{left:494.078693pt;}
.x47_c00367{left:510.079067pt;}
.x74_c00367{left:511.999467pt;}
.x8_c00367{left:516.159707pt;}
.x4e_c00367{left:527.039067pt;}
.x66_c00367{left:528.638667pt;}
.x9_c00367{left:530.239707pt;}
.x26_c00367{left:531.518520pt;}
.x2d_c00367{left:538.879307pt;}
.x34_c00367{left:546.559573pt;}
.x27_c00367{left:553.278773pt;}
.x2e_c00367{left:558.079067pt;}
.x35_c00367{left:559.359333pt;}
.x38_c00367{left:563.838907pt;}
.xc_c00367{left:568.319867pt;}
.x50_c00367{left:569.919440pt;}
.x48_c00367{left:583.999467pt;}
.x39_c00367{left:586.239173pt;}
.xd_c00367{left:587.838907pt;}
.x28_c00367{left:589.439987pt;}
.xf_c00367{left:591.999067pt;}
.x67_c00367{left:595.519040pt;}
.x3a_c00367{left:600.638707pt;}
.x51_c00367{left:602.559040pt;}
.x68_c00367{left:607.359333pt;}
.x10_c00367{left:610.879307pt;}
.x2f_c00367{left:617.279333pt;}
.x69_c00367{left:620.799320pt;}
.x4f_c00367{left:634.879307pt;}
.x30_c00367{left:650.879840pt;}
.x13_c00367{left:661.119187pt;}
.x31_c00367{left:662.718787pt;}
.x29_c00367{left:668.159173pt;}
.x14_c00367{left:674.879840pt;}
.x37_c00367{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47139480d74678a3a8bd5c02.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.364746;font-style:normal;font-weight:normal;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_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.432129;font-style:normal;font-weight:normal;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_16f7d574f143a63c51b2a15f.woff2')format("woff");}.ff4_c00368{font-family:ff4_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:ff5_c00368;src:url('chunks/assets/font_6fe7776eb68539270d09c3fb.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.432129;font-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_c00368{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191589,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262887,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls14_c00368{letter-spacing:-18.224250px;}
.ls22_c00368{letter-spacing:-16.534725px;}
.ls12_c00368{letter-spacing:-15.656775px;}
.ls15_c00368{letter-spacing:-14.082750px;}
.ls8_c00368{letter-spacing:-12.687675px;}
.ls13_c00368{letter-spacing:-12.226305px;}
.ls11_c00368{letter-spacing:-8.175038px;}
.ls1b_c00368{letter-spacing:-7.426125px;}
.lsb_c00368{letter-spacing:-6.685875px;}
.ls1_c00368{letter-spacing:-6.160478px;}
.ls7_c00368{letter-spacing:-5.945625px;}
.ls19_c00368{letter-spacing:-5.296875px;}
.ls5_c00368{letter-spacing:-5.196713px;}
.lsd_c00368{letter-spacing:-5.054963px;}
.lsf_c00368{letter-spacing:-4.795875px;}
.ls1c_c00368{letter-spacing:-4.461900px;}
.ls9_c00368{letter-spacing:-4.456463px;}
.ls10_c00368{letter-spacing:-3.858600px;}
.ls2_c00368{letter-spacing:-3.717000px;}
.ls3_c00368{letter-spacing:-2.968875px;}
.lsc_c00368{letter-spacing:-2.943225px;}
.ls18_c00368{letter-spacing:-2.314343px;}
.ls1e_c00368{letter-spacing:-2.310398px;}
.ls21_c00368{letter-spacing:-2.250645px;}
.ls0_c00368{letter-spacing:-2.229413px;}
.ls1f_c00368{letter-spacing:-1.558995px;}
.lse_c00368{letter-spacing:-1.544288px;}
.ls20_c00368{letter-spacing:-1.541505px;}
.ls17_c00368{letter-spacing:-1.514100px;}
.ls6_c00368{letter-spacing:-1.489163px;}
.ls1d_c00368{letter-spacing:-0.748800px;}
.lsa_c00368{letter-spacing:-0.740250px;}
.ls16_c00368{letter-spacing:-0.712950px;}
.ls4_c00368{letter-spacing:0.000000px;}
.ls23_c00368{letter-spacing:5.945625px;}
.ls1a_c00368{letter-spacing:22.393875px;}
.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;}
._18_c00368{margin-left:-21.852174px;}
._d_c00368{margin-left:-10.030922px;}
._a_c00368{margin-left:-5.434315px;}
._c_c00368{margin-left:-3.244738px;}
._b_c00368{margin-left:-1.787417px;}
._12_c00368{width:1.560676px;}
._7_c00368{width:2.603534px;}
._11_c00368{width:4.163631px;}
._1_c00368{width:5.291762px;}
._8_c00368{width:6.520916px;}
._3_c00368{width:7.798464px;}
._6_c00368{width:9.096502px;}
._10_c00368{width:10.239446px;}
._4_c00368{width:11.252989px;}
._16_c00368{width:12.294093px;}
._5_c00368{width:13.430471px;}
._14_c00368{width:14.891164px;}
._13_c00368{width:16.213615px;}
._9_c00368{width:17.655869px;}
._2_c00368{width:19.158018px;}
._e_c00368{width:21.409733px;}
._0_c00368{width:22.814261px;}
._f_c00368{width:24.724677px;}
._17_c00368{width:26.515066px;}
._15_c00368{width:28.002460px;}
.fc0_c00368{color:transparent;}
.fsa_c00368{font-size:71.250000px;}
.fs8_c00368{font-size:72.750000px;}
.fs9_c00368{font-size:73.500000px;}
.fs4_c00368{font-size:77.250000px;}
.fsb_c00368{font-size:78.000000px;}
.fs0_c00368{font-size:78.750000px;}
.fs7_c00368{font-size:79.500000px;}
.fs3_c00368{font-size:80.250000px;}
.fs5_c00368{font-size:81.750000px;}
.fs2_c00368{font-size:82.500000px;}
.fs1_c00368{font-size:84.750000px;}
.fs6_c00368{font-size:96.000000px;}
.y0_c00368{bottom:0.000000px;}
.y1e_c00368{bottom:196.199775px;}
.y1f_c00368{bottom:196.199850px;}
.y1c_c00368{bottom:226.439070px;}
.y1d_c00368{bottom:226.439685px;}
.y1b_c00368{bottom:285.840135px;}
.y2a_c00368{bottom:354.960045px;}
.y32_c00368{bottom:355.321905px;}
.y2e_c00368{bottom:355.322340px;}
.y29_c00368{bottom:395.280150px;}
.y2d_c00368{bottom:395.281935px;}
.y24_c00368{bottom:395.642115px;}
.y31_c00368{bottom:435.959970px;}
.y23_c00368{bottom:435.960120px;}
.y28_c00368{bottom:435.960405px;}
.y2c_c00368{bottom:435.962220px;}
.y2b_c00368{bottom:476.642490px;}
.y27_c00368{bottom:477.000870px;}
.y22_c00368{bottom:477.358950px;}
.y30_c00368{bottom:516.959970px;}
.y26_c00368{bottom:516.960450px;}
.y21_c00368{bottom:517.320645px;}
.y25_c00368{bottom:557.280540px;}
.y2f_c00368{bottom:557.282640px;}
.y20_c00368{bottom:557.640720px;}
.y1a_c00368{bottom:627.120435px;}
.y19_c00368{bottom:695.520270px;}
.y18_c00368{bottom:695.520405px;}
.y17_c00368{bottom:725.400120px;}
.y16_c00368{bottom:755.279850px;}
.y15_c00368{bottom:785.160465px;}
.y14_c00368{bottom:785.161260px;}
.y12_c00368{bottom:815.040945px;}
.y13_c00368{bottom:815.040990px;}
.y11_c00368{bottom:845.280855px;}
.y10_c00368{bottom:845.281515px;}
.yf_c00368{bottom:904.320285px;}
.ye_c00368{bottom:904.320555px;}
.yd_c00368{bottom:933.840090px;}
.yc_c00368{bottom:933.840930px;}
.yb_c00368{bottom:964.080855px;}
.ya_c00368{bottom:993.960570px;}
.y9_c00368{bottom:993.960750px;}
.y8_c00368{bottom:1023.480285px;}
.y7_c00368{bottom:1053.000000px;}
.y6_c00368{bottom:1053.000900px;}
.y5_c00368{bottom:1082.880615px;}
.y4_c00368{bottom:1082.881410px;}
.y3_c00368{bottom:1112.761140px;}
.y2_c00368{bottom:1112.761320px;}
.y1_c00368{bottom:1142.280855px;}
.hb_c00368{height:71.400146px;}
.hc_c00368{height:74.074219px;}
.hd_c00368{height:74.311523px;}
.h6_c00368{height:75.816650px;}
.h1_c00368{height:77.288818px;}
.h13_c00368{height:78.024902px;}
.ha_c00368{height:78.568359px;}
.hf_c00368{height:78.609375px;}
.h5_c00368{height:78.760986px;}
.h8_c00368{height:79.309570px;}
.h10_c00368{height:79.365234px;}
.h11_c00368{height:80.121094px;}
.h7_c00368{height:80.233154px;}
.he_c00368{height:80.876953px;}
.h3_c00368{height:80.969238px;}
.h4_c00368{height:81.533203px;}
.h2_c00368{height:83.177490px;}
.h12_c00368{height:83.756836px;}
.h9_c00368{height:100.125000px;}
.h0_c00368{height:1263.000000px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.x18_c00368{left:138.598485px;}
.x1_c00368{left:139.678500px;}
.x27_c00368{left:154.798515px;}
.x1e_c00368{left:166.319250px;}
.x14_c00368{left:169.918350px;}
.x1f_c00368{left:177.120000px;}
.x2_c00368{left:191.878950px;}
.x30_c00368{left:192.958350px;}
.x3e_c00368{left:194.761500px;}
.x28_c00368{left:195.838950px;}
.x3_c00368{left:213.839535px;}
.x2c_c00368{left:234.359850px;}
.xc_c00368{left:240.478635px;}
.x31_c00368{left:251.638500px;}
.x29_c00368{left:258.838515px;}
.xd_c00368{left:265.319850px;}
.x2d_c00368{left:280.078785px;}
.x32_c00368{left:281.878350px;}
.x19_c00368{left:296.279850px;}
.x4_c00368{left:308.159850px;}
.x22_c00368{left:310.679700px;}
.x1a_c00368{left:315.719100px;}
.x5_c00368{left:326.158785px;}
.x37_c00368{left:337.679700px;}
.x2e_c00368{left:343.798515px;}
.x2a_c00368{left:348.119385px;}
.x38_c00368{left:356.759535px;}
.x2b_c00368{left:364.318800px;}
.x2f_c00368{left:375.839535px;}
.x3f_c00368{left:383.398995px;}
.x40_c00368{left:389.520495px;}
.x20_c00368{left:390.598530px;}
.xe_c00368{left:397.080000px;}
.x1d_c00368{left:406.079400px;}
.x21_c00368{left:412.199850px;}
.xf_c00368{left:416.878320px;}
.x33_c00368{left:419.038920px;}
.x1b_c00368{left:420.119985px;}
.x3b_c00368{left:430.198785px;}
.x1c_c00368{left:433.438665px;}
.x41_c00368{left:458.282040px;}
.x43_c00368{left:472.318590px;}
.x42_c00368{left:479.518620px;}
.x8_c00368{left:489.958335px;}
.x3c_c00368{left:493.199850px;}
.x34_c00368{left:503.278800px;}
.x3d_c00368{left:507.600180px;}
.x9_c00368{left:510.478635px;}
.x25_c00368{left:514.438665px;}
.x26_c00368{left:535.319820px;}
.x35_c00368{left:573.118785px;}
.x15_c00368{left:575.999400px;}
.x23_c00368{left:585.359850px;}
.x10_c00368{left:590.399235px;}
.x36_c00368{left:598.319235px;}
.x24_c00368{left:604.798920px;}
.x11_c00368{left:606.239220px;}
.x6_c00368{left:622.079400px;}
.x7_c00368{left:638.278800px;}
.x12_c00368{left:668.518620px;}
.xa_c00368{left:696.238770px;}
.x13_c00368{left:701.279850px;}
.xb_c00368{left:711.358605px;}
.x39_c00368{left:712.439670px;}
.x16_c00368{left:718.558635px;}
.x3a_c00368{left:726.839535px;}
.x17_c00368{left:739.439670px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls14_c00368{letter-spacing:-16.199333pt;}
.ls22_c00368{letter-spacing:-14.697533pt;}
.ls12_c00368{letter-spacing:-13.917133pt;}
.ls15_c00368{letter-spacing:-12.518000pt;}
.ls8_c00368{letter-spacing:-11.277933pt;}
.ls13_c00368{letter-spacing:-10.867827pt;}
.ls11_c00368{letter-spacing:-7.266700pt;}
.ls1b_c00368{letter-spacing:-6.601000pt;}
.lsb_c00368{letter-spacing:-5.943000pt;}
.ls1_c00368{letter-spacing:-5.475980pt;}
.ls7_c00368{letter-spacing:-5.285000pt;}
.ls19_c00368{letter-spacing:-4.708333pt;}
.ls5_c00368{letter-spacing:-4.619300pt;}
.lsd_c00368{letter-spacing:-4.493300pt;}
.lsf_c00368{letter-spacing:-4.263000pt;}
.ls1c_c00368{letter-spacing:-3.966133pt;}
.ls9_c00368{letter-spacing:-3.961300pt;}
.ls10_c00368{letter-spacing:-3.429867pt;}
.ls2_c00368{letter-spacing:-3.304000pt;}
.ls3_c00368{letter-spacing:-2.639000pt;}
.lsc_c00368{letter-spacing:-2.616200pt;}
.ls18_c00368{letter-spacing:-2.057193pt;}
.ls1e_c00368{letter-spacing:-2.053687pt;}
.ls21_c00368{letter-spacing:-2.000573pt;}
.ls0_c00368{letter-spacing:-1.981700pt;}
.ls1f_c00368{letter-spacing:-1.385773pt;}
.lse_c00368{letter-spacing:-1.372700pt;}
.ls20_c00368{letter-spacing:-1.370227pt;}
.ls17_c00368{letter-spacing:-1.345867pt;}
.ls6_c00368{letter-spacing:-1.323700pt;}
.ls1d_c00368{letter-spacing:-0.665600pt;}
.lsa_c00368{letter-spacing:-0.658000pt;}
.ls16_c00368{letter-spacing:-0.633733pt;}
.ls4_c00368{letter-spacing:0.000000pt;}
.ls23_c00368{letter-spacing:5.285000pt;}
.ls1a_c00368{letter-spacing:19.905667pt;}
.ws0_c00368{word-spacing:0.000000pt;}
._18_c00368{margin-left:-19.424155pt;}
._d_c00368{margin-left:-8.916375pt;}
._a_c00368{margin-left:-4.830502pt;}
._c_c00368{margin-left:-2.884211pt;}
._b_c00368{margin-left:-1.588815pt;}
._12_c00368{width:1.387268pt;}
._7_c00368{width:2.314253pt;}
._11_c00368{width:3.701006pt;}
._1_c00368{width:4.703789pt;}
._8_c00368{width:5.796370pt;}
._3_c00368{width:6.931968pt;}
._6_c00368{width:8.085779pt;}
._10_c00368{width:9.101730pt;}
._4_c00368{width:10.002657pt;}
._16_c00368{width:10.928083pt;}
._5_c00368{width:11.938196pt;}
._14_c00368{width:13.236591pt;}
._13_c00368{width:14.412102pt;}
._9_c00368{width:15.694106pt;}
._2_c00368{width:17.029349pt;}
._e_c00368{width:19.030874pt;}
._0_c00368{width:20.279343pt;}
._f_c00368{width:21.977491pt;}
._17_c00368{width:23.568947pt;}
._15_c00368{width:24.891075pt;}
.fsa_c00368{font-size:63.333333pt;}
.fs8_c00368{font-size:64.666667pt;}
.fs9_c00368{font-size:65.333333pt;}
.fs4_c00368{font-size:68.666667pt;}
.fsb_c00368{font-size:69.333333pt;}
.fs0_c00368{font-size:70.000000pt;}
.fs7_c00368{font-size:70.666667pt;}
.fs3_c00368{font-size:71.333333pt;}
.fs5_c00368{font-size:72.666667pt;}
.fs2_c00368{font-size:73.333333pt;}
.fs1_c00368{font-size:75.333333pt;}
.fs6_c00368{font-size:85.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y1e_c00368{bottom:174.399800pt;}
.y1f_c00368{bottom:174.399867pt;}
.y1c_c00368{bottom:201.279173pt;}
.y1d_c00368{bottom:201.279720pt;}
.y1b_c00368{bottom:254.080120pt;}
.y2a_c00368{bottom:315.520040pt;}
.y32_c00368{bottom:315.841693pt;}
.y2e_c00368{bottom:315.842080pt;}
.y29_c00368{bottom:351.360133pt;}
.y2d_c00368{bottom:351.361720pt;}
.y24_c00368{bottom:351.681880pt;}
.y31_c00368{bottom:387.519973pt;}
.y23_c00368{bottom:387.520107pt;}
.y28_c00368{bottom:387.520360pt;}
.y2c_c00368{bottom:387.521973pt;}
.y2b_c00368{bottom:423.682213pt;}
.y27_c00368{bottom:424.000773pt;}
.y22_c00368{bottom:424.319067pt;}
.y30_c00368{bottom:459.519973pt;}
.y26_c00368{bottom:459.520400pt;}
.y21_c00368{bottom:459.840573pt;}
.y25_c00368{bottom:495.360480pt;}
.y2f_c00368{bottom:495.362347pt;}
.y20_c00368{bottom:495.680640pt;}
.y1a_c00368{bottom:557.440387pt;}
.y19_c00368{bottom:618.240240pt;}
.y18_c00368{bottom:618.240360pt;}
.y17_c00368{bottom:644.800107pt;}
.y16_c00368{bottom:671.359867pt;}
.y15_c00368{bottom:697.920413pt;}
.y14_c00368{bottom:697.921120pt;}
.y12_c00368{bottom:724.480840pt;}
.y13_c00368{bottom:724.480880pt;}
.y11_c00368{bottom:751.360760pt;}
.y10_c00368{bottom:751.361347pt;}
.yf_c00368{bottom:803.840253pt;}
.ye_c00368{bottom:803.840493pt;}
.yd_c00368{bottom:830.080080pt;}
.yc_c00368{bottom:830.080827pt;}
.yb_c00368{bottom:856.960760pt;}
.ya_c00368{bottom:883.520507pt;}
.y9_c00368{bottom:883.520667pt;}
.y8_c00368{bottom:909.760253pt;}
.y7_c00368{bottom:936.000000pt;}
.y6_c00368{bottom:936.000800pt;}
.y5_c00368{bottom:962.560547pt;}
.y4_c00368{bottom:962.561253pt;}
.y3_c00368{bottom:989.121013pt;}
.y2_c00368{bottom:989.121173pt;}
.y1_c00368{bottom:1015.360760pt;}
.hb_c00368{height:63.466797pt;}
.hc_c00368{height:65.843750pt;}
.hd_c00368{height:66.054688pt;}
.h6_c00368{height:67.392578pt;}
.h1_c00368{height:68.701172pt;}
.h13_c00368{height:69.355469pt;}
.ha_c00368{height:69.838542pt;}
.hf_c00368{height:69.875000pt;}
.h5_c00368{height:70.009766pt;}
.h8_c00368{height:70.497396pt;}
.h10_c00368{height:70.546875pt;}
.h11_c00368{height:71.218750pt;}
.h7_c00368{height:71.318359pt;}
.he_c00368{height:71.890625pt;}
.h3_c00368{height:71.972656pt;}
.h4_c00368{height:72.473958pt;}
.h2_c00368{height:73.935547pt;}
.h12_c00368{height:74.450521pt;}
.h9_c00368{height:89.000000pt;}
.h0_c00368{height:1122.666667pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.x18_c00368{left:123.198653pt;}
.x1_c00368{left:124.158667pt;}
.x27_c00368{left:137.598680pt;}
.x1e_c00368{left:147.839333pt;}
.x14_c00368{left:151.038533pt;}
.x1f_c00368{left:157.440000pt;}
.x2_c00368{left:170.559067pt;}
.x30_c00368{left:171.518533pt;}
.x3e_c00368{left:173.121333pt;}
.x28_c00368{left:174.079067pt;}
.x3_c00368{left:190.079587pt;}
.x2c_c00368{left:208.319867pt;}
.xc_c00368{left:213.758787pt;}
.x31_c00368{left:223.678667pt;}
.x29_c00368{left:230.078680pt;}
.xd_c00368{left:235.839867pt;}
.x2d_c00368{left:248.958920pt;}
.x32_c00368{left:250.558533pt;}
.x19_c00368{left:263.359867pt;}
.x4_c00368{left:273.919867pt;}
.x22_c00368{left:276.159733pt;}
.x1a_c00368{left:280.639200pt;}
.x5_c00368{left:289.918920pt;}
.x37_c00368{left:300.159733pt;}
.x2e_c00368{left:305.598680pt;}
.x2a_c00368{left:309.439453pt;}
.x38_c00368{left:317.119587pt;}
.x2b_c00368{left:323.838933pt;}
.x2f_c00368{left:334.079587pt;}
.x3f_c00368{left:340.799107pt;}
.x40_c00368{left:346.240440pt;}
.x20_c00368{left:347.198693pt;}
.xe_c00368{left:352.960000pt;}
.x1d_c00368{left:360.959467pt;}
.x21_c00368{left:366.399867pt;}
.xf_c00368{left:370.558507pt;}
.x33_c00368{left:372.479040pt;}
.x1b_c00368{left:373.439987pt;}
.x3b_c00368{left:382.398920pt;}
.x1c_c00368{left:385.278813pt;}
.x41_c00368{left:407.361813pt;}
.x43_c00368{left:419.838747pt;}
.x42_c00368{left:426.238773pt;}
.x8_c00368{left:435.518520pt;}
.x3c_c00368{left:438.399867pt;}
.x34_c00368{left:447.358933pt;}
.x3d_c00368{left:451.200160pt;}
.x9_c00368{left:453.758787pt;}
.x25_c00368{left:457.278813pt;}
.x26_c00368{left:475.839840pt;}
.x35_c00368{left:509.438920pt;}
.x15_c00368{left:511.999467pt;}
.x23_c00368{left:520.319867pt;}
.x10_c00368{left:524.799320pt;}
.x36_c00368{left:531.839320pt;}
.x24_c00368{left:537.599040pt;}
.x11_c00368{left:538.879307pt;}
.x6_c00368{left:552.959467pt;}
.x7_c00368{left:567.358933pt;}
.x12_c00368{left:594.238773pt;}
.xa_c00368{left:618.878907pt;}
.x13_c00368{left:623.359867pt;}
.xb_c00368{left:632.318760pt;}
.x39_c00368{left:633.279707pt;}
.x16_c00368{left:638.718787pt;}
.x3a_c00368{left:646.079587pt;}
.x17_c00368{left:657.279707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b52d5367d1029b9c7a2b8f61.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_c7ff233dc0426d037fc30306.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.364746;font-style:normal;font-weight:normal;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_4081e5fa1a1616c362f220d5.woff2')format("woff");}.ff3_c00369{font-family:ff3_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:ff4_c00369;src:url('chunks/assets/font_0b6d39f5988e3881cfe7f133.woff2')format("woff");}.ff4_c00369{font-family:ff4_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;}
.m8_c00369{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m11_c00369{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.ma_c00369{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls6_c00369{letter-spacing:-15.082058px;}
.ls17_c00369{letter-spacing:-14.289900px;}
.ls12_c00369{letter-spacing:-13.496925px;}
.ls16_c00369{letter-spacing:-11.902800px;}
.ls15_c00369{letter-spacing:-10.317668px;}
.ls14_c00369{letter-spacing:-9.523875px;}
.ls9_c00369{letter-spacing:-6.000300px;}
.lse_c00369{letter-spacing:-3.751800px;}
.ls4_c00369{letter-spacing:-3.746400px;}
.ls18_c00369{letter-spacing:-3.114675px;}
.ls8_c00369{letter-spacing:-3.085500px;}
.lsb_c00369{letter-spacing:-3.003000px;}
.lsc_c00369{letter-spacing:-2.884050px;}
.ls7_c00369{letter-spacing:-2.447550px;}
.lsa_c00369{letter-spacing:-2.360355px;}
.ls10_c00369{letter-spacing:-2.272905px;}
.lsd_c00369{letter-spacing:-2.245620px;}
.ls5_c00369{letter-spacing:-1.590750px;}
.ls13_c00369{letter-spacing:-1.500165px;}
.lsf_c00369{letter-spacing:-1.497600px;}
.ls2_c00369{letter-spacing:-0.795375px;}
.ls3_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:0.795375px;}
.ls19_c00369{letter-spacing:0.842700px;}
.ls11_c00369{letter-spacing:1.590750px;}
.ls1_c00369{letter-spacing:3.977663px;}
.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;}
._a_c00369{margin-left:-18.097010px;}
._9_c00369{margin-left:-7.574620px;}
._6_c00369{width:2.043960px;}
._5_c00369{width:3.507840px;}
._8_c00369{width:5.597940px;}
._7_c00369{width:7.355160px;}
._4_c00369{width:8.465482px;}
._2_c00369{width:11.560118px;}
._1_c00369{width:14.332532px;}
._3_c00369{width:15.875873px;}
._0_c00369{width:17.668557px;}
.fc0_c00369{color:transparent;}
.fs9_c00369{font-size:76.500000px;}
.fsa_c00369{font-size:77.250000px;}
.fs8_c00369{font-size:78.000000px;}
.fs0_c00369{font-size:78.750000px;}
.fs6_c00369{font-size:79.500000px;}
.fs7_c00369{font-size:80.250000px;}
.fs2_c00369{font-size:81.750000px;}
.fs5_c00369{font-size:82.500000px;}
.fs3_c00369{font-size:83.250000px;}
.fs1_c00369{font-size:84.000000px;}
.fs4_c00369{font-size:84.750000px;}
.y0_c00369{bottom:0.000000px;}
.yd_c00369{bottom:584.639700px;}
.y9_c00369{bottom:703.079310px;}
.ya_c00369{bottom:703.079355px;}
.y17_c00369{bottom:772.919490px;}
.y12_c00369{bottom:772.920135px;}
.yc_c00369{bottom:772.920495px;}
.y18_c00369{bottom:773.281170px;}
.yb_c00369{bottom:813.600765px;}
.y16_c00369{bottom:813.960015px;}
.y11_c00369{bottom:813.960705px;}
.y19_c00369{bottom:814.320930px;}
.y10_c00369{bottom:854.639550px;}
.y8_c00369{bottom:854.639655px;}
.y15_c00369{bottom:855.001530px;}
.y7_c00369{bottom:894.239865px;}
.y14_c00369{bottom:894.600945px;}
.yf_c00369{bottom:894.601155px;}
.y13_c00369{bottom:933.840090px;}
.y6_c00369{bottom:933.840150px;}
.y5_c00369{bottom:934.200345px;}
.ye_c00369{bottom:934.200990px;}
.y4_c00369{bottom:974.880615px;}
.y3_c00369{bottom:1045.079955px;}
.y2_c00369{bottom:1113.840540px;}
.y1_c00369{bottom:1143.719520px;}
.hc_c00369{height:75.816650px;}
.ha_c00369{height:77.097656px;}
.h1_c00369{height:77.288818px;}
.he_c00369{height:77.853516px;}
.h7_c00369{height:78.024902px;}
.h9_c00369{height:78.609375px;}
.h8_c00369{height:78.760986px;}
.h10_c00369{height:80.121094px;}
.hf_c00369{height:80.193237px;}
.hd_c00369{height:80.233154px;}
.h3_c00369{height:80.791992px;}
.h6_c00369{height:80.969238px;}
.h4_c00369{height:81.705322px;}
.hb_c00369{height:82.388672px;}
.h2_c00369{height:82.441406px;}
.h5_c00369{height:83.177490px;}
.h0_c00369{height:1263.000000px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:138.958350px;}
.x11_c00369{left:171.719565px;}
.x17_c00369{left:173.161425px;}
.x18_c00369{left:194.759535px;}
.x12_c00369{left:230.399850px;}
.x1a_c00369{left:246.599100px;}
.xd_c00369{left:251.279250px;}
.x13_c00369{left:260.278800px;}
.xe_c00369{left:283.679700px;}
.x2_c00369{left:289.439235px;}
.x3_c00369{left:344.518635px;}
.x19_c00369{left:350.279850px;}
.x1e_c00369{left:356.398935px;}
.xf_c00369{left:366.120000px;}
.x1c_c00369{left:369.359850px;}
.x1d_c00369{left:378.718410px;}
.x10_c00369{left:381.239850px;}
.x14_c00369{left:397.798515px;}
.x4_c00369{left:406.438665px;}
.x15_c00369{left:412.918350px;}
.x1f_c00369{left:429.119385px;}
.x21_c00369{left:430.198785px;}
.x20_c00369{left:439.199850px;}
.x5_c00369{left:449.278800px;}
.x6_c00369{left:471.239220px;}
.x22_c00369{left:483.839535px;}
.x23_c00369{left:491.398635px;}
.x7_c00369{left:525.959385px;}
.x16_c00369{left:529.199385px;}
.x1b_c00369{left:595.079400px;}
.x8_c00369{left:614.879520px;}
.x9_c00369{left:631.798920px;}
.xa_c00369{left:711.719520px;}
.xb_c00369{left:729.359250px;}
.xc_c00369{left:764.279250px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls6_c00369{letter-spacing:-13.406273pt;}
.ls17_c00369{letter-spacing:-12.702133pt;}
.ls12_c00369{letter-spacing:-11.997267pt;}
.ls16_c00369{letter-spacing:-10.580267pt;}
.ls15_c00369{letter-spacing:-9.171260pt;}
.ls14_c00369{letter-spacing:-8.465667pt;}
.ls9_c00369{letter-spacing:-5.333600pt;}
.lse_c00369{letter-spacing:-3.334933pt;}
.ls4_c00369{letter-spacing:-3.330133pt;}
.ls18_c00369{letter-spacing:-2.768600pt;}
.ls8_c00369{letter-spacing:-2.742667pt;}
.lsb_c00369{letter-spacing:-2.669333pt;}
.lsc_c00369{letter-spacing:-2.563600pt;}
.ls7_c00369{letter-spacing:-2.175600pt;}
.lsa_c00369{letter-spacing:-2.098093pt;}
.ls10_c00369{letter-spacing:-2.020360pt;}
.lsd_c00369{letter-spacing:-1.996107pt;}
.ls5_c00369{letter-spacing:-1.414000pt;}
.ls13_c00369{letter-spacing:-1.333480pt;}
.lsf_c00369{letter-spacing:-1.331200pt;}
.ls2_c00369{letter-spacing:-0.707000pt;}
.ls3_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:0.707000pt;}
.ls19_c00369{letter-spacing:0.749067pt;}
.ls11_c00369{letter-spacing:1.414000pt;}
.ls1_c00369{letter-spacing:3.535700pt;}
.ws0_c00369{word-spacing:0.000000pt;}
._a_c00369{margin-left:-16.086231pt;}
._9_c00369{margin-left:-6.732996pt;}
._6_c00369{width:1.816853pt;}
._5_c00369{width:3.118080pt;}
._8_c00369{width:4.975947pt;}
._7_c00369{width:6.537920pt;}
._4_c00369{width:7.524873pt;}
._2_c00369{width:10.275661pt;}
._1_c00369{width:12.740028pt;}
._3_c00369{width:14.111887pt;}
._0_c00369{width:15.705384pt;}
.fs9_c00369{font-size:68.000000pt;}
.fsa_c00369{font-size:68.666667pt;}
.fs8_c00369{font-size:69.333333pt;}
.fs0_c00369{font-size:70.000000pt;}
.fs6_c00369{font-size:70.666667pt;}
.fs7_c00369{font-size:71.333333pt;}
.fs2_c00369{font-size:72.666667pt;}
.fs5_c00369{font-size:73.333333pt;}
.fs3_c00369{font-size:74.000000pt;}
.fs1_c00369{font-size:74.666667pt;}
.fs4_c00369{font-size:75.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.yd_c00369{bottom:519.679733pt;}
.y9_c00369{bottom:624.959387pt;}
.ya_c00369{bottom:624.959427pt;}
.y17_c00369{bottom:687.039547pt;}
.y12_c00369{bottom:687.040120pt;}
.yc_c00369{bottom:687.040440pt;}
.y18_c00369{bottom:687.361040pt;}
.yb_c00369{bottom:723.200680pt;}
.y16_c00369{bottom:723.520013pt;}
.y11_c00369{bottom:723.520627pt;}
.y19_c00369{bottom:723.840827pt;}
.y10_c00369{bottom:759.679600pt;}
.y8_c00369{bottom:759.679693pt;}
.y15_c00369{bottom:760.001360pt;}
.y7_c00369{bottom:794.879880pt;}
.y14_c00369{bottom:795.200840pt;}
.yf_c00369{bottom:795.201027pt;}
.y13_c00369{bottom:830.080080pt;}
.y6_c00369{bottom:830.080133pt;}
.y5_c00369{bottom:830.400307pt;}
.ye_c00369{bottom:830.400880pt;}
.y4_c00369{bottom:866.560547pt;}
.y3_c00369{bottom:928.959960pt;}
.y2_c00369{bottom:990.080480pt;}
.y1_c00369{bottom:1016.639573pt;}
.hc_c00369{height:67.392578pt;}
.ha_c00369{height:68.531250pt;}
.h1_c00369{height:68.701172pt;}
.he_c00369{height:69.203125pt;}
.h7_c00369{height:69.355469pt;}
.h9_c00369{height:69.875000pt;}
.h8_c00369{height:70.009766pt;}
.h10_c00369{height:71.218750pt;}
.hf_c00369{height:71.282878pt;}
.hd_c00369{height:71.318359pt;}
.h3_c00369{height:71.815104pt;}
.h6_c00369{height:71.972656pt;}
.h4_c00369{height:72.626953pt;}
.hb_c00369{height:73.234375pt;}
.h2_c00369{height:73.281250pt;}
.h5_c00369{height:73.935547pt;}
.h0_c00369{height:1122.666667pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:123.518533pt;}
.x11_c00369{left:152.639613pt;}
.x17_c00369{left:153.921267pt;}
.x18_c00369{left:173.119587pt;}
.x12_c00369{left:204.799867pt;}
.x1a_c00369{left:219.199200pt;}
.xd_c00369{left:223.359333pt;}
.x13_c00369{left:231.358933pt;}
.xe_c00369{left:252.159733pt;}
.x2_c00369{left:257.279320pt;}
.x3_c00369{left:306.238787pt;}
.x19_c00369{left:311.359867pt;}
.x1e_c00369{left:316.799053pt;}
.xf_c00369{left:325.440000pt;}
.x1c_c00369{left:328.319867pt;}
.x1d_c00369{left:336.638587pt;}
.x10_c00369{left:338.879867pt;}
.x14_c00369{left:353.598680pt;}
.x4_c00369{left:361.278813pt;}
.x15_c00369{left:367.038533pt;}
.x1f_c00369{left:381.439453pt;}
.x21_c00369{left:382.398920pt;}
.x20_c00369{left:390.399867pt;}
.x5_c00369{left:399.358933pt;}
.x6_c00369{left:418.879307pt;}
.x22_c00369{left:430.079587pt;}
.x23_c00369{left:436.798787pt;}
.x7_c00369{left:467.519453pt;}
.x16_c00369{left:470.399453pt;}
.x1b_c00369{left:528.959467pt;}
.x8_c00369{left:546.559573pt;}
.x9_c00369{left:561.599040pt;}
.xa_c00369{left:632.639573pt;}
.xb_c00369{left:648.319333pt;}
.xc_c00369{left:679.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49b4b584321f13b1a9ea2e72.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_88d1788c0ba94f6f77ba02ad.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.364746;font-style:normal;font-weight:normal;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_03bc69788470b20e415b1c93.woff2')format("woff");}.ff4_c00370{font-family:ff4_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:ff5_c00370;src:url('chunks/assets/font_802df13916ed157e4ba32583.woff2')format("woff");}.ff5_c00370{font-family:ff5_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:ff6_c00370;src:url('chunks/assets/font_41c70fce67ccd1bb0adb10b8.woff2')format("woff");}.ff6_c00370{font-family:ff6_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;}
.m6_c00370{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{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);}
.ma_c00370{transform:matrix(0.225166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225166,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{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_c00370{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.371212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371212,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.lsb_c00370{letter-spacing:-16.095750px;}
.ls10_c00370{letter-spacing:-12.689100px;}
.ls11_c00370{letter-spacing:-10.055250px;}
.ls1a_c00370{letter-spacing:-7.576538px;}
.ls7_c00370{letter-spacing:-6.055875px;}
.lsd_c00370{letter-spacing:-5.577000px;}
.lsc_c00370{letter-spacing:-5.300663px;}
.lse_c00370{letter-spacing:-5.248800px;}
.ls12_c00370{letter-spacing:-4.994325px;}
.lsf_c00370{letter-spacing:-4.543088px;}
.ls18_c00370{letter-spacing:-4.274025px;}
.ls13_c00370{letter-spacing:-4.039200px;}
.lsa_c00370{letter-spacing:-3.787875px;}
.ls6_c00370{letter-spacing:-3.031875px;}
.ls16_c00370{letter-spacing:-2.909520px;}
.ls5_c00370{letter-spacing:-2.380118px;}
.ls3_c00370{letter-spacing:-2.267213px;}
.ls4_c00370{letter-spacing:-1.512000px;}
.ls19_c00370{letter-spacing:-1.474980px;}
.ls14_c00370{letter-spacing:-1.445303px;}
.ls1_c00370{letter-spacing:-0.780360px;}
.ls8_c00370{letter-spacing:-0.756000px;}
.ls9_c00370{letter-spacing:0.000000px;}
.ls2_c00370{letter-spacing:2.089620px;}
.ls17_c00370{letter-spacing:2.909520px;}
.ls1b_c00370{letter-spacing:3.225000px;}
.ls15_c00370{letter-spacing:6.749828px;}
.ls0_c00370{letter-spacing:18.672413px;}
.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;}
._15_c00370{margin-left:-96.701996px;}
._14_c00370{margin-left:-23.610240px;}
._22_c00370{margin-left:-21.105969px;}
._21_c00370{margin-left:-16.692072px;}
._10_c00370{margin-left:-14.522712px;}
._13_c00370{margin-left:-10.365014px;}
._1b_c00370{margin-left:-6.965801px;}
._12_c00370{margin-left:-5.736332px;}
._f_c00370{margin-left:-4.685746px;}
._e_c00370{margin-left:-3.377769px;}
._1a_c00370{margin-left:-2.267879px;}
._c_c00370{margin-left:-1.097593px;}
._d_c00370{width:1.522177px;}
._11_c00370{width:2.550046px;}
._b_c00370{width:3.646186px;}
._0_c00370{width:5.642013px;}
._6_c00370{width:7.187149px;}
._3_c00370{width:8.592170px;}
._1_c00370{width:9.631186px;}
._1e_c00370{width:10.842663px;}
._5_c00370{width:12.188319px;}
._7_c00370{width:13.725822px;}
._4_c00370{width:15.043734px;}
._1f_c00370{width:16.058518px;}
._1c_c00370{width:17.745949px;}
._20_c00370{width:19.002072px;}
._9_c00370{width:20.245777px;}
._1d_c00370{width:21.681087px;}
._8_c00370{width:22.837863px;}
._2_c00370{width:25.845447px;}
._a_c00370{width:28.562564px;}
._17_c00370{width:29.790701px;}
._19_c00370{width:31.567907px;}
._16_c00370{width:35.738143px;}
._18_c00370{width:38.863004px;}
.fc0_c00370{color:transparent;}
.fsa_c00370{font-size:49.500000px;}
.fsc_c00370{font-size:52.500000px;}
.fs8_c00370{font-size:61.500000px;}
.fs7_c00370{font-size:69.000000px;}
.fsd_c00370{font-size:69.750000px;}
.fsb_c00370{font-size:72.000000px;}
.fsf_c00370{font-size:73.500000px;}
.fse_c00370{font-size:75.000000px;}
.fs1_c00370{font-size:78.000000px;}
.fs2_c00370{font-size:78.750000px;}
.fs5_c00370{font-size:80.250000px;}
.fs6_c00370{font-size:81.000000px;}
.fs10_c00370{font-size:81.750000px;}
.fs4_c00370{font-size:82.500000px;}
.fs3_c00370{font-size:83.250000px;}
.fs0_c00370{font-size:84.000000px;}
.fs9_c00370{font-size:113.250000px;}
.y0_c00370{bottom:0.000000px;}
.y28_c00370{bottom:258.480900px;}
.y27_c00370{bottom:258.481230px;}
.y26_c00370{bottom:288.000750px;}
.y25_c00370{bottom:317.520285px;}
.y24_c00370{bottom:317.520405px;}
.y23_c00370{bottom:377.279850px;}
.y22_c00370{bottom:377.280735px;}
.y21_c00370{bottom:407.160465px;}
.y20_c00370{bottom:407.161650px;}
.y1f_c00370{bottom:436.681185px;}
.y1e_c00370{bottom:466.921095px;}
.y1d_c00370{bottom:526.680540px;}
.y1c_c00370{bottom:555.841695px;}
.y1b_c00370{bottom:576.720315px;}
.y1a_c00370{bottom:597.600720px;}
.y19_c00370{bottom:597.602100px;}
.y18_c00370{bottom:619.201380px;}
.y16_c00370{bottom:640.079385px;}
.y17_c00370{bottom:640.080000px;}
.y14_c00370{bottom:661.319280px;}
.y15_c00370{bottom:661.320285px;}
.y13_c00370{bottom:683.459910px;}
.y12_c00370{bottom:704.519670px;}
.y11_c00370{bottom:704.519940px;}
.y10_c00370{bottom:726.121035px;}
.ye_c00370{bottom:747.000600px;}
.yf_c00370{bottom:747.359850px;}
.yd_c00370{bottom:768.240855px;}
.yb_c00370{bottom:789.479280px;}
.yc_c00370{bottom:789.479640px;}
.ya_c00370{bottom:811.080375px;}
.y9_c00370{bottom:870.479625px;}
.y8_c00370{bottom:900.719535px;}
.y6_c00370{bottom:930.240210px;}
.y7_c00370{bottom:930.240870px;}
.y5_c00370{bottom:960.119940px;}
.y4_c00370{bottom:989.639655px;}
.y3_c00370{bottom:989.639850px;}
.y2_c00370{bottom:1019.879775px;}
.y1_c00370{bottom:1138.680090px;}
.hb_c00370{height:51.626953px;}
.hf_c00370{height:52.910156px;}
.h9_c00370{height:61.980469px;}
.h8_c00370{height:71.964844px;}
.h10_c00370{height:72.747070px;}
.h16_c00370{height:73.608398px;}
.hd_c00370{height:75.093750px;}
.h11_c00370{height:76.552734px;}
.h14_c00370{height:76.658203px;}
.h3_c00370{height:77.288818px;}
.h13_c00370{height:78.222656px;}
.h6_c00370{height:78.760986px;}
.he_c00370{height:79.365234px;}
.h7_c00370{height:79.497070px;}
.h15_c00370{height:80.193237px;}
.hc_c00370{height:80.876953px;}
.h12_c00370{height:80.969238px;}
.h2_c00370{height:81.351562px;}
.h5_c00370{height:81.533203px;}
.h4_c00370{height:81.705322px;}
.h1_c00370{height:82.441406px;}
.ha_c00370{height:114.134766px;}
.h0_c00370{height:1263.000000px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:138.958350px;}
.xb_c00370{left:140.038680px;}
.x2_c00370{left:179.998950px;}
.xd_c00370{left:193.320900px;}
.xc_c00370{left:194.759835px;}
.x3_c00370{left:205.558635px;}
.xf_c00370{left:211.319850px;}
.x10_c00370{left:281.519100px;}
.x1d_c00370{left:286.919535px;}
.x1e_c00370{left:299.878950px;}
.x11_c00370{left:336.598530px;}
.x19_c00370{left:348.839535px;}
.x4_c00370{left:352.438635px;}
.x1a_c00370{left:364.679700px;}
.x27_c00370{left:365.759100px;}
.xe_c00370{left:367.558635px;}
.x21_c00370{left:382.678530px;}
.x22_c00370{left:395.639700px;}
.x12_c00370{left:404.639100px;}
.x5_c00370{left:409.678530px;}
.x13_c00370{left:431.279850px;}
.x1b_c00370{left:475.919535px;}
.x14_c00370{left:488.158770px;}
.x23_c00370{left:491.039385px;}
.x1c_c00370{left:492.479685px;}
.x2c_c00370{left:494.999400px;}
.x28_c00370{left:497.159820px;}
.x24_c00370{left:502.919535px;}
.x2d_c00370{left:510.839535px;}
.x29_c00370{left:511.918950px;}
.x2a_c00370{left:583.919535px;}
.x15_c00370{left:585.719100px;}
.x2b_c00370{left:599.039385px;}
.x7_c00370{left:619.198785px;}
.x8_c00370{left:633.239220px;}
.x16_c00370{left:661.318770px;}
.x1f_c00370{left:675.000000px;}
.x9_c00370{left:685.078770px;}
.x20_c00370{left:691.919535px;}
.x25_c00370{left:698.039985px;}
.xa_c00370{left:705.599070px;}
.x26_c00370{left:710.999400px;}
.x17_c00370{left:728.279850px;}
.x18_c00370{left:742.318770px;}
.x6_c00370{left:764.999355px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.lsb_c00370{letter-spacing:-14.307333pt;}
.ls10_c00370{letter-spacing:-11.279200pt;}
.ls11_c00370{letter-spacing:-8.938000pt;}
.ls1a_c00370{letter-spacing:-6.734700pt;}
.ls7_c00370{letter-spacing:-5.383000pt;}
.lsd_c00370{letter-spacing:-4.957333pt;}
.lsc_c00370{letter-spacing:-4.711700pt;}
.lse_c00370{letter-spacing:-4.665600pt;}
.ls12_c00370{letter-spacing:-4.439400pt;}
.lsf_c00370{letter-spacing:-4.038300pt;}
.ls18_c00370{letter-spacing:-3.799133pt;}
.ls13_c00370{letter-spacing:-3.590400pt;}
.lsa_c00370{letter-spacing:-3.367000pt;}
.ls6_c00370{letter-spacing:-2.695000pt;}
.ls16_c00370{letter-spacing:-2.586240pt;}
.ls5_c00370{letter-spacing:-2.115660pt;}
.ls3_c00370{letter-spacing:-2.015300pt;}
.ls4_c00370{letter-spacing:-1.344000pt;}
.ls19_c00370{letter-spacing:-1.311093pt;}
.ls14_c00370{letter-spacing:-1.284713pt;}
.ls1_c00370{letter-spacing:-0.693653pt;}
.ls8_c00370{letter-spacing:-0.672000pt;}
.ls9_c00370{letter-spacing:0.000000pt;}
.ls2_c00370{letter-spacing:1.857440pt;}
.ls17_c00370{letter-spacing:2.586240pt;}
.ls1b_c00370{letter-spacing:2.866667pt;}
.ls15_c00370{letter-spacing:5.999847pt;}
.ls0_c00370{letter-spacing:16.597700pt;}
.ws0_c00370{word-spacing:0.000000pt;}
._15_c00370{margin-left:-85.957330pt;}
._14_c00370{margin-left:-20.986880pt;}
._22_c00370{margin-left:-18.760862pt;}
._21_c00370{margin-left:-14.837397pt;}
._10_c00370{margin-left:-12.909077pt;}
._13_c00370{margin-left:-9.213346pt;}
._1b_c00370{margin-left:-6.191823pt;}
._12_c00370{margin-left:-5.098962pt;}
._f_c00370{margin-left:-4.165108pt;}
._e_c00370{margin-left:-3.002462pt;}
._1a_c00370{margin-left:-2.015892pt;}
._c_c00370{margin-left:-0.975638pt;}
._d_c00370{width:1.353046pt;}
._11_c00370{width:2.266708pt;}
._b_c00370{width:3.241054pt;}
._0_c00370{width:5.015123pt;}
._6_c00370{width:6.388577pt;}
._3_c00370{width:7.637485pt;}
._1_c00370{width:8.561054pt;}
._1e_c00370{width:9.637923pt;}
._5_c00370{width:10.834062pt;}
._7_c00370{width:12.200731pt;}
._4_c00370{width:13.372208pt;}
._1f_c00370{width:14.274238pt;}
._1c_c00370{width:15.774177pt;}
._20_c00370{width:16.890731pt;}
._9_c00370{width:17.996246pt;}
._1d_c00370{width:19.272077pt;}
._8_c00370{width:20.300323pt;}
._2_c00370{width:22.973731pt;}
._a_c00370{width:25.388946pt;}
._17_c00370{width:26.480623pt;}
._19_c00370{width:28.060362pt;}
._16_c00370{width:31.767238pt;}
._18_c00370{width:34.544892pt;}
.fsa_c00370{font-size:44.000000pt;}
.fsc_c00370{font-size:46.666667pt;}
.fs8_c00370{font-size:54.666667pt;}
.fs7_c00370{font-size:61.333333pt;}
.fsd_c00370{font-size:62.000000pt;}
.fsb_c00370{font-size:64.000000pt;}
.fsf_c00370{font-size:65.333333pt;}
.fse_c00370{font-size:66.666667pt;}
.fs1_c00370{font-size:69.333333pt;}
.fs2_c00370{font-size:70.000000pt;}
.fs5_c00370{font-size:71.333333pt;}
.fs6_c00370{font-size:72.000000pt;}
.fs10_c00370{font-size:72.666667pt;}
.fs4_c00370{font-size:73.333333pt;}
.fs3_c00370{font-size:74.000000pt;}
.fs0_c00370{font-size:74.666667pt;}
.fs9_c00370{font-size:100.666667pt;}
.y0_c00370{bottom:0.000000pt;}
.y28_c00370{bottom:229.760800pt;}
.y27_c00370{bottom:229.761093pt;}
.y26_c00370{bottom:256.000667pt;}
.y25_c00370{bottom:282.240253pt;}
.y24_c00370{bottom:282.240360pt;}
.y23_c00370{bottom:335.359867pt;}
.y22_c00370{bottom:335.360653pt;}
.y21_c00370{bottom:361.920413pt;}
.y20_c00370{bottom:361.921467pt;}
.y1f_c00370{bottom:388.161053pt;}
.y1e_c00370{bottom:415.040973pt;}
.y1d_c00370{bottom:468.160480pt;}
.y1c_c00370{bottom:494.081507pt;}
.y1b_c00370{bottom:512.640280pt;}
.y1a_c00370{bottom:531.200640pt;}
.y19_c00370{bottom:531.201867pt;}
.y18_c00370{bottom:550.401227pt;}
.y16_c00370{bottom:568.959453pt;}
.y17_c00370{bottom:568.960000pt;}
.y14_c00370{bottom:587.839360pt;}
.y15_c00370{bottom:587.840253pt;}
.y13_c00370{bottom:607.519920pt;}
.y12_c00370{bottom:626.239707pt;}
.y11_c00370{bottom:626.239947pt;}
.y10_c00370{bottom:645.440920pt;}
.ye_c00370{bottom:664.000533pt;}
.yf_c00370{bottom:664.319867pt;}
.yd_c00370{bottom:682.880760pt;}
.yb_c00370{bottom:701.759360pt;}
.yc_c00370{bottom:701.759680pt;}
.ya_c00370{bottom:720.960333pt;}
.y9_c00370{bottom:773.759667pt;}
.y8_c00370{bottom:800.639587pt;}
.y6_c00370{bottom:826.880187pt;}
.y7_c00370{bottom:826.880773pt;}
.y5_c00370{bottom:853.439947pt;}
.y4_c00370{bottom:879.679693pt;}
.y3_c00370{bottom:879.679867pt;}
.y2_c00370{bottom:906.559800pt;}
.y1_c00370{bottom:1012.160080pt;}
.hb_c00370{height:45.890625pt;}
.hf_c00370{height:47.031250pt;}
.h9_c00370{height:55.093750pt;}
.h8_c00370{height:63.968750pt;}
.h10_c00370{height:64.664062pt;}
.h16_c00370{height:65.429688pt;}
.hd_c00370{height:66.750000pt;}
.h11_c00370{height:68.046875pt;}
.h14_c00370{height:68.140625pt;}
.h3_c00370{height:68.701172pt;}
.h13_c00370{height:69.531250pt;}
.h6_c00370{height:70.009766pt;}
.he_c00370{height:70.546875pt;}
.h7_c00370{height:70.664062pt;}
.h15_c00370{height:71.282878pt;}
.hc_c00370{height:71.890625pt;}
.h12_c00370{height:71.972656pt;}
.h2_c00370{height:72.312500pt;}
.h5_c00370{height:72.473958pt;}
.h4_c00370{height:72.626953pt;}
.h1_c00370{height:73.281250pt;}
.ha_c00370{height:101.453125pt;}
.h0_c00370{height:1122.666667pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:123.518533pt;}
.xb_c00370{left:124.478827pt;}
.x2_c00370{left:159.999067pt;}
.xd_c00370{left:171.840800pt;}
.xc_c00370{left:173.119853pt;}
.x3_c00370{left:182.718787pt;}
.xf_c00370{left:187.839867pt;}
.x10_c00370{left:250.239200pt;}
.x1d_c00370{left:255.039587pt;}
.x1e_c00370{left:266.559067pt;}
.x11_c00370{left:299.198693pt;}
.x19_c00370{left:310.079587pt;}
.x4_c00370{left:313.278787pt;}
.x1a_c00370{left:324.159733pt;}
.x27_c00370{left:325.119200pt;}
.xe_c00370{left:326.718787pt;}
.x21_c00370{left:340.158693pt;}
.x22_c00370{left:351.679733pt;}
.x12_c00370{left:359.679200pt;}
.x5_c00370{left:364.158693pt;}
.x13_c00370{left:383.359867pt;}
.x1b_c00370{left:423.039587pt;}
.x14_c00370{left:433.918907pt;}
.x23_c00370{left:436.479453pt;}
.x1c_c00370{left:437.759720pt;}
.x2c_c00370{left:439.999467pt;}
.x28_c00370{left:441.919840pt;}
.x24_c00370{left:447.039587pt;}
.x2d_c00370{left:454.079587pt;}
.x29_c00370{left:455.039067pt;}
.x2a_c00370{left:519.039587pt;}
.x15_c00370{left:520.639200pt;}
.x2b_c00370{left:532.479453pt;}
.x7_c00370{left:550.398920pt;}
.x8_c00370{left:562.879307pt;}
.x16_c00370{left:587.838907pt;}
.x1f_c00370{left:600.000000pt;}
.x9_c00370{left:608.958907pt;}
.x20_c00370{left:615.039587pt;}
.x25_c00370{left:620.479987pt;}
.xa_c00370{left:627.199173pt;}
.x26_c00370{left:631.999467pt;}
.x17_c00370{left:647.359867pt;}
.x18_c00370{left:659.838907pt;}
.x6_c00370{left:679.999427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54d14acdfdcf960274120bbd.woff2')format("woff");}.ff1_c00371{font-family:ff1_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:ff2_c00371;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.364746;font-style:normal;font-weight:normal;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_5baa27eb2c25f2c7820bd47b.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;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_6ec4b78962427447fde48df4.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00371;src:url('chunks/assets/font_9a07efa5be0fc8998faa24a8.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00371;src:url('chunks/assets/font_b90e05bf4f7378d0b0e20538.woff2')format("woff");}.ff7_c00371{font-family:ff7_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;}
.m23_c00371{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182243,0.000000,0.000000,0.250000,0,0);}
.m2a_c00371{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);}
.ma_c00371{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m8_c00371{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2d_c00371{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00371{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m15_c00371{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m22_c00371{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m21_c00371{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{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);}
.m2c_c00371{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m26_c00371{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m16_c00371{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m10_c00371{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m1d_c00371{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_c00371{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{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_c00371{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m27_c00371{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m25_c00371{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m2b_c00371{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m28_c00371{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m29_c00371{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268692,0.000000,0.000000,0.250000,0,0);}
.mc_c00371{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293651,0.000000,0.000000,0.250000,0,0);}
.v1_c00371{vertical-align:-1.440780px;}
.v0_c00371{vertical-align:0.000000px;}
.ls11_c00371{letter-spacing:-15.510450px;}
.lsf_c00371{letter-spacing:-14.693625px;}
.lsc_c00371{letter-spacing:-13.570650px;}
.ls0_c00371{letter-spacing:-8.914500px;}
.ls17_c00371{letter-spacing:-8.233650px;}
.ls10_c00371{letter-spacing:-8.175038px;}
.ls3_c00371{letter-spacing:-7.500375px;}
.ls1e_c00371{letter-spacing:-7.496850px;}
.lsa_c00371{letter-spacing:-7.426125px;}
.ls1d_c00371{letter-spacing:-7.027800px;}
.ls15_c00371{letter-spacing:-6.693300px;}
.ls8_c00371{letter-spacing:-6.685875px;}
.ls2b_c00371{letter-spacing:-6.629288px;}
.ls13_c00371{letter-spacing:-6.282773px;}
.lsb_c00371{letter-spacing:-5.945625px;}
.lsd_c00371{letter-spacing:-5.196713px;}
.ls26_c00371{letter-spacing:-4.469850px;}
.ls7_c00371{letter-spacing:-4.456463px;}
.ls31_c00371{letter-spacing:-4.447200px;}
.lse_c00371{letter-spacing:-3.752325px;}
.ls4_c00371{letter-spacing:-3.717000px;}
.ls1f_c00371{letter-spacing:-3.617250px;}
.ls2d_c00371{letter-spacing:-3.533888px;}
.ls1_c00371{letter-spacing:-2.968875px;}
.ls2f_c00371{letter-spacing:-2.908320px;}
.ls16_c00371{letter-spacing:-2.314343px;}
.ls21_c00371{letter-spacing:-2.251463px;}
.ls2_c00371{letter-spacing:-2.229413px;}
.ls29_c00371{letter-spacing:-2.217600px;}
.ls18_c00371{letter-spacing:-1.500608px;}
.ls5_c00371{letter-spacing:-1.489163px;}
.ls2c_c00371{letter-spacing:-1.455450px;}
.ls2e_c00371{letter-spacing:-0.994500px;}
.ls19_c00371{letter-spacing:-0.854700px;}
.ls2a_c00371{letter-spacing:-0.787050px;}
.ls30_c00371{letter-spacing:-0.784875px;}
.ls25_c00371{letter-spacing:-0.757350px;}
.ls6_c00371{letter-spacing:-0.740250px;}
.ls23_c00371{letter-spacing:-0.735000px;}
.ls14_c00371{letter-spacing:-0.658125px;}
.ls9_c00371{letter-spacing:0.000000px;}
.ls1b_c00371{letter-spacing:0.810105px;}
.ls28_c00371{letter-spacing:1.238400px;}
.ls20_c00371{letter-spacing:1.485750px;}
.ls1c_c00371{letter-spacing:3.088800px;}
.ls12_c00371{letter-spacing:3.772440px;}
.ls24_c00371{letter-spacing:4.740000px;}
.ls27_c00371{letter-spacing:6.442350px;}
.ls22_c00371{letter-spacing:8.966550px;}
.ls1a_c00371{letter-spacing:15.919200px;}
.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;}
._1c_c00371{margin-left:-40.741500px;}
._4_c00371{margin-left:-36.581307px;}
._1f_c00371{margin-left:-34.830053px;}
._1e_c00371{margin-left:-12.946084px;}
._20_c00371{margin-left:-11.546994px;}
._21_c00371{margin-left:-8.422758px;}
._b_c00371{margin-left:-6.997547px;}
._a_c00371{margin-left:-5.828436px;}
._1d_c00371{margin-left:-4.564721px;}
._1b_c00371{margin-left:-2.603520px;}
._17_c00371{margin-left:-1.087300px;}
._9_c00371{width:1.992137px;}
._2_c00371{width:2.998651px;}
._1_c00371{width:4.303955px;}
._5_c00371{width:5.318805px;}
._18_c00371{width:6.363505px;}
._3_c00371{width:7.483598px;}
._8_c00371{width:8.696036px;}
._6_c00371{width:9.865607px;}
._1a_c00371{width:10.939445px;}
._12_c00371{width:12.172269px;}
._7_c00371{width:13.312539px;}
._15_c00371{width:14.600161px;}
._0_c00371{width:15.918495px;}
._22_c00371{width:17.600580px;}
._14_c00371{width:18.809259px;}
._16_c00371{width:20.129079px;}
._19_c00371{width:21.542107px;}
._d_c00371{width:23.070273px;}
._f_c00371{width:24.886025px;}
._13_c00371{width:26.804375px;}
._11_c00371{width:30.437261px;}
._10_c00371{width:31.638139px;}
._e_c00371{width:32.697446px;}
._c_c00371{width:36.500684px;}
.fc0_c00371{color:transparent;}
.fs16_c00371{font-size:41.250000px;}
.fs13_c00371{font-size:43.500000px;}
.fs17_c00371{font-size:46.500000px;}
.fs11_c00371{font-size:47.250000px;}
.fs14_c00371{font-size:48.000000px;}
.fs12_c00371{font-size:48.750000px;}
.fs15_c00371{font-size:49.500000px;}
.fse_c00371{font-size:72.000000px;}
.fs10_c00371{font-size:75.000000px;}
.fsd_c00371{font-size:75.750000px;}
.fs2_c00371{font-size:76.500000px;}
.fsf_c00371{font-size:78.000000px;}
.fs0_c00371{font-size:78.750000px;}
.fs4_c00371{font-size:79.500000px;}
.fs3_c00371{font-size:80.250000px;}
.fs5_c00371{font-size:81.000000px;}
.fs6_c00371{font-size:81.750000px;}
.fs7_c00371{font-size:82.500000px;}
.fs8_c00371{font-size:83.250000px;}
.fs9_c00371{font-size:84.000000px;}
.fs1_c00371{font-size:84.750000px;}
.fsa_c00371{font-size:101.250000px;}
.fsc_c00371{font-size:115.500000px;}
.fsb_c00371{font-size:129.750000px;}
.y0_c00371{bottom:0.000000px;}
.y2b_c00371{bottom:136.079400px;}
.y29_c00371{bottom:174.600150px;}
.y2a_c00371{bottom:174.959400px;}
.y27_c00371{bottom:258.478725px;}
.y28_c00371{bottom:258.479235px;}
.y25_c00371{bottom:288.720495px;}
.y26_c00371{bottom:288.720750px;}
.y24_c00371{bottom:317.879535px;}
.y23_c00371{bottom:347.760135px;}
.y21_c00371{bottom:376.919700px;}
.y22_c00371{bottom:376.920600px;}
.y20_c00371{bottom:437.039340px;}
.y1f_c00371{bottom:467.279250px;}
.y1e_c00371{bottom:467.280900px;}
.y1d_c00371{bottom:497.160615px;}
.y1c_c00371{bottom:556.199385px;}
.y1b_c00371{bottom:577.439670px;}
.y1a_c00371{bottom:577.439940px;}
.y19_c00371{bottom:598.318560px;}
.y17_c00371{bottom:620.278905px;}
.y18_c00371{bottom:620.279850px;}
.y16_c00371{bottom:641.519835px;}
.y15_c00371{bottom:662.760720px;}
.y14_c00371{bottom:722.878785px;}
.y13_c00371{bottom:782.279850px;}
.y12_c00371{bottom:782.280735px;}
.y10_c00371{bottom:812.159610px;}
.y11_c00371{bottom:812.160465px;}
.yf_c00371{bottom:842.039340px;}
.ye_c00371{bottom:871.919955px;}
.yd_c00371{bottom:901.439670px;}
.yc_c00371{bottom:901.439850px;}
.yb_c00371{bottom:930.959385px;}
.ya_c00371{bottom:930.959430px;}
.y9_c00371{bottom:961.199340px;}
.y8_c00371{bottom:961.201125px;}
.y7_c00371{bottom:991.080855px;}
.y6_c00371{bottom:1020.960570px;}
.y5_c00371{bottom:1050.840435px;}
.y4_c00371{bottom:1080.720150px;}
.y3_c00371{bottom:1080.721140px;}
.y2_c00371{bottom:1110.240675px;}
.y1_c00371{bottom:1140.120390px;}
.h1f_c00371{height:43.022461px;}
.h1c_c00371{height:45.369141px;}
.h20_c00371{height:45.637207px;}
.h1a_c00371{height:46.373291px;}
.h1b_c00371{height:47.845459px;}
.h21_c00371{height:48.178711px;}
.h1d_c00371{height:48.375000px;}
.h1e_c00371{height:48.581543px;}
.h17_c00371{height:73.608398px;}
.h13_c00371{height:74.344482px;}
.h3_c00371{height:75.080566px;}
.h14_c00371{height:75.093750px;}
.h18_c00371{height:77.097656px;}
.h1_c00371{height:77.288818px;}
.h7_c00371{height:77.986084px;}
.h5_c00371{height:78.568359px;}
.h16_c00371{height:78.609375px;}
.h4_c00371{height:78.760986px;}
.h10_c00371{height:79.309570px;}
.h6_c00371{height:79.497070px;}
.h15_c00371{height:80.121094px;}
.hf_c00371{height:80.193237px;}
.h8_c00371{height:80.233154px;}
.h22_c00371{height:80.791992px;}
.h9_c00371{height:80.969238px;}
.he_c00371{height:81.705322px;}
.ha_c00371{height:82.274414px;}
.hb_c00371{height:82.441406px;}
.h2_c00371{height:83.177490px;}
.h19_c00371{height:83.756836px;}
.h12_c00371{height:87.609375px;}
.hc_c00371{height:105.600586px;}
.h11_c00371{height:120.462891px;}
.hd_c00371{height:135.325195px;}
.h0_c00371{height:1263.000000px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.x42_c00371{left:135.719805px;}
.x10_c00371{left:136.799880px;}
.x4_c00371{left:137.879670px;}
.x1_c00371{left:138.958350px;}
.x7_c00371{left:158.399250px;}
.x44_c00371{left:167.398665px;}
.x45_c00371{left:188.639100px;}
.x27_c00371{left:190.800000px;}
.x22_c00371{left:192.239850px;}
.x34_c00371{left:194.759535px;}
.x16_c00371{left:204.120000px;}
.x23_c00371{left:206.998950px;}
.xe_c00371{left:209.518635px;}
.x24_c00371{left:224.638500px;}
.x17_c00371{left:228.598500px;}
.x46_c00371{left:230.759100px;}
.x20_c00371{left:253.439685px;}
.xf_c00371{left:257.759100px;}
.xa_c00371{left:262.080000px;}
.x28_c00371{left:263.159385px;}
.x47_c00371{left:268.559685px;}
.x8_c00371{left:274.678500px;}
.xb_c00371{left:276.838950px;}
.x48_c00371{left:279.358635px;}
.x21_c00371{left:281.159850px;}
.x35_c00371{left:284.399850px;}
.xc_c00371{left:291.958950px;}
.x9_c00371{left:300.599100px;}
.x49_c00371{left:303.118785px;}
.xd_c00371{left:306.719535px;}
.x4a_c00371{left:317.879535px;}
.x1c_c00371{left:329.398635px;}
.x4b_c00371{left:336.239250px;}
.x1d_c00371{left:343.798515px;}
.x29_c00371{left:349.198785px;}
.x4c_c00371{left:366.479235px;}
.x36_c00371{left:378.718530px;}
.x4d_c00371{left:379.799535px;}
.x2b_c00371{left:390.239220px;}
.x4e_c00371{left:394.558635px;}
.x2c_c00371{left:396.359850px;}
.x4f_c00371{left:407.158770px;}
.x2f_c00371{left:408.239820px;}
.x2d_c00371{left:410.039385px;}
.x2_c00371{left:419.399820px;}
.x30_c00371{left:422.639700px;}
.x3f_c00371{left:426.238770px;}
.x37_c00371{left:435.958335px;}
.x3_c00371{left:439.918350px;}
.x50_c00371{left:445.679670px;}
.x38_c00371{left:460.079400px;}
.x12_c00371{left:464.398635px;}
.x3d_c00371{left:469.078770px;}
.x13_c00371{left:478.798515px;}
.x3e_c00371{left:489.958335px;}
.x14_c00371{left:510.839535px;}
.x2e_c00371{left:516.599070px;}
.x39_c00371{left:530.639700px;}
.x40_c00371{left:543.239820px;}
.x18_c00371{left:546.838950px;}
.x19_c00371{left:561.958920px;}
.x41_c00371{left:572.039385px;}
.x3a_c00371{left:619.198785px;}
.x31_c00371{left:622.438620px;}
.x32_c00371{left:636.479235px;}
.x33_c00371{left:652.678530px;}
.x43_c00371{left:660.598530px;}
.x3b_c00371{left:667.798560px;}
.x1a_c00371{left:684.719520px;}
.x1e_c00371{left:696.238770px;}
.x5_c00371{left:700.918950px;}
.x1b_c00371{left:705.599070px;}
.x1f_c00371{left:711.719520px;}
.x6_c00371{left:716.038920px;}
.x25_c00371{left:729.718545px;}
.x2a_c00371{left:746.998950px;}
.x51_c00371{left:749.159370px;}
.x26_c00371{left:750.958920px;}
.x3c_c00371{left:752.039985px;}
.x15_c00371{left:762.479685px;}
.x11_c00371{left:768.598575px;}
@media print{
.v1_c00371{vertical-align:-1.280693pt;}
.v0_c00371{vertical-align:0.000000pt;}
.ls11_c00371{letter-spacing:-13.787067pt;}
.lsf_c00371{letter-spacing:-13.061000pt;}
.lsc_c00371{letter-spacing:-12.062800pt;}
.ls0_c00371{letter-spacing:-7.924000pt;}
.ls17_c00371{letter-spacing:-7.318800pt;}
.ls10_c00371{letter-spacing:-7.266700pt;}
.ls3_c00371{letter-spacing:-6.667000pt;}
.ls1e_c00371{letter-spacing:-6.663867pt;}
.lsa_c00371{letter-spacing:-6.601000pt;}
.ls1d_c00371{letter-spacing:-6.246933pt;}
.ls15_c00371{letter-spacing:-5.949600pt;}
.ls8_c00371{letter-spacing:-5.943000pt;}
.ls2b_c00371{letter-spacing:-5.892700pt;}
.ls13_c00371{letter-spacing:-5.584687pt;}
.lsb_c00371{letter-spacing:-5.285000pt;}
.lsd_c00371{letter-spacing:-4.619300pt;}
.ls26_c00371{letter-spacing:-3.973200pt;}
.ls7_c00371{letter-spacing:-3.961300pt;}
.ls31_c00371{letter-spacing:-3.953067pt;}
.lse_c00371{letter-spacing:-3.335400pt;}
.ls4_c00371{letter-spacing:-3.304000pt;}
.ls1f_c00371{letter-spacing:-3.215333pt;}
.ls2d_c00371{letter-spacing:-3.141233pt;}
.ls1_c00371{letter-spacing:-2.639000pt;}
.ls2f_c00371{letter-spacing:-2.585173pt;}
.ls16_c00371{letter-spacing:-2.057193pt;}
.ls21_c00371{letter-spacing:-2.001300pt;}
.ls2_c00371{letter-spacing:-1.981700pt;}
.ls29_c00371{letter-spacing:-1.971200pt;}
.ls18_c00371{letter-spacing:-1.333873pt;}
.ls5_c00371{letter-spacing:-1.323700pt;}
.ls2c_c00371{letter-spacing:-1.293733pt;}
.ls2e_c00371{letter-spacing:-0.884000pt;}
.ls19_c00371{letter-spacing:-0.759733pt;}
.ls2a_c00371{letter-spacing:-0.699600pt;}
.ls30_c00371{letter-spacing:-0.697667pt;}
.ls25_c00371{letter-spacing:-0.673200pt;}
.ls6_c00371{letter-spacing:-0.658000pt;}
.ls23_c00371{letter-spacing:-0.653333pt;}
.ls14_c00371{letter-spacing:-0.585000pt;}
.ls9_c00371{letter-spacing:0.000000pt;}
.ls1b_c00371{letter-spacing:0.720093pt;}
.ls28_c00371{letter-spacing:1.100800pt;}
.ls20_c00371{letter-spacing:1.320667pt;}
.ls1c_c00371{letter-spacing:2.745600pt;}
.ls12_c00371{letter-spacing:3.353280pt;}
.ls24_c00371{letter-spacing:4.213333pt;}
.ls27_c00371{letter-spacing:5.726533pt;}
.ls22_c00371{letter-spacing:7.970267pt;}
.ls1a_c00371{letter-spacing:14.150400pt;}
.ws0_c00371{word-spacing:0.000000pt;}
._1c_c00371{margin-left:-36.214667pt;}
._4_c00371{margin-left:-32.516717pt;}
._1f_c00371{margin-left:-30.960047pt;}
._1e_c00371{margin-left:-11.507630pt;}
._20_c00371{margin-left:-10.263994pt;}
._21_c00371{margin-left:-7.486896pt;}
._b_c00371{margin-left:-6.220042pt;}
._a_c00371{margin-left:-5.180832pt;}
._1d_c00371{margin-left:-4.057530pt;}
._1b_c00371{margin-left:-2.314240pt;}
._17_c00371{margin-left:-0.966489pt;}
._9_c00371{width:1.770789pt;}
._2_c00371{width:2.665468pt;}
._1_c00371{width:3.825738pt;}
._5_c00371{width:4.727826pt;}
._18_c00371{width:5.656449pt;}
._3_c00371{width:6.652087pt;}
._8_c00371{width:7.729809pt;}
._6_c00371{width:8.769428pt;}
._1a_c00371{width:9.723951pt;}
._12_c00371{width:10.819794pt;}
._7_c00371{width:11.833368pt;}
._15_c00371{width:12.977921pt;}
._0_c00371{width:14.149774pt;}
._22_c00371{width:15.644960pt;}
._14_c00371{width:16.719342pt;}
._16_c00371{width:17.892515pt;}
._19_c00371{width:19.148540pt;}
._d_c00371{width:20.506909pt;}
._f_c00371{width:22.120911pt;}
._13_c00371{width:23.826111pt;}
._11_c00371{width:27.055343pt;}
._10_c00371{width:28.122791pt;}
._e_c00371{width:29.064396pt;}
._c_c00371{width:32.445053pt;}
.fs16_c00371{font-size:36.666667pt;}
.fs13_c00371{font-size:38.666667pt;}
.fs17_c00371{font-size:41.333333pt;}
.fs11_c00371{font-size:42.000000pt;}
.fs14_c00371{font-size:42.666667pt;}
.fs12_c00371{font-size:43.333333pt;}
.fs15_c00371{font-size:44.000000pt;}
.fse_c00371{font-size:64.000000pt;}
.fs10_c00371{font-size:66.666667pt;}
.fsd_c00371{font-size:67.333333pt;}
.fs2_c00371{font-size:68.000000pt;}
.fsf_c00371{font-size:69.333333pt;}
.fs0_c00371{font-size:70.000000pt;}
.fs4_c00371{font-size:70.666667pt;}
.fs3_c00371{font-size:71.333333pt;}
.fs5_c00371{font-size:72.000000pt;}
.fs6_c00371{font-size:72.666667pt;}
.fs7_c00371{font-size:73.333333pt;}
.fs8_c00371{font-size:74.000000pt;}
.fs9_c00371{font-size:74.666667pt;}
.fs1_c00371{font-size:75.333333pt;}
.fsa_c00371{font-size:90.000000pt;}
.fsc_c00371{font-size:102.666667pt;}
.fsb_c00371{font-size:115.333333pt;}
.y0_c00371{bottom:0.000000pt;}
.y2b_c00371{bottom:120.959467pt;}
.y29_c00371{bottom:155.200133pt;}
.y2a_c00371{bottom:155.519467pt;}
.y27_c00371{bottom:229.758867pt;}
.y28_c00371{bottom:229.759320pt;}
.y25_c00371{bottom:256.640440pt;}
.y26_c00371{bottom:256.640667pt;}
.y24_c00371{bottom:282.559587pt;}
.y23_c00371{bottom:309.120120pt;}
.y21_c00371{bottom:335.039733pt;}
.y22_c00371{bottom:335.040533pt;}
.y20_c00371{bottom:388.479413pt;}
.y1f_c00371{bottom:415.359333pt;}
.y1e_c00371{bottom:415.360800pt;}
.y1d_c00371{bottom:441.920547pt;}
.y1c_c00371{bottom:494.399453pt;}
.y1b_c00371{bottom:513.279707pt;}
.y1a_c00371{bottom:513.279947pt;}
.y19_c00371{bottom:531.838720pt;}
.y17_c00371{bottom:551.359027pt;}
.y18_c00371{bottom:551.359867pt;}
.y16_c00371{bottom:570.239853pt;}
.y15_c00371{bottom:589.120640pt;}
.y14_c00371{bottom:642.558920pt;}
.y13_c00371{bottom:695.359867pt;}
.y12_c00371{bottom:695.360653pt;}
.y10_c00371{bottom:721.919653pt;}
.y11_c00371{bottom:721.920413pt;}
.yf_c00371{bottom:748.479413pt;}
.ye_c00371{bottom:775.039960pt;}
.yd_c00371{bottom:801.279707pt;}
.yc_c00371{bottom:801.279867pt;}
.yb_c00371{bottom:827.519453pt;}
.ya_c00371{bottom:827.519493pt;}
.y9_c00371{bottom:854.399413pt;}
.y8_c00371{bottom:854.401000pt;}
.y7_c00371{bottom:880.960760pt;}
.y6_c00371{bottom:907.520507pt;}
.y5_c00371{bottom:934.080387pt;}
.y4_c00371{bottom:960.640133pt;}
.y3_c00371{bottom:960.641013pt;}
.y2_c00371{bottom:986.880600pt;}
.y1_c00371{bottom:1013.440347pt;}
.h1f_c00371{height:38.242188pt;}
.h1c_c00371{height:40.328125pt;}
.h20_c00371{height:40.566406pt;}
.h1a_c00371{height:41.220703pt;}
.h1b_c00371{height:42.529297pt;}
.h21_c00371{height:42.825521pt;}
.h1d_c00371{height:43.000000pt;}
.h1e_c00371{height:43.183594pt;}
.h17_c00371{height:65.429688pt;}
.h13_c00371{height:66.083984pt;}
.h3_c00371{height:66.738281pt;}
.h14_c00371{height:66.750000pt;}
.h18_c00371{height:68.531250pt;}
.h1_c00371{height:68.701172pt;}
.h7_c00371{height:69.320964pt;}
.h5_c00371{height:69.838542pt;}
.h16_c00371{height:69.875000pt;}
.h4_c00371{height:70.009766pt;}
.h10_c00371{height:70.497396pt;}
.h6_c00371{height:70.664062pt;}
.h15_c00371{height:71.218750pt;}
.hf_c00371{height:71.282878pt;}
.h8_c00371{height:71.318359pt;}
.h22_c00371{height:71.815104pt;}
.h9_c00371{height:71.972656pt;}
.he_c00371{height:72.626953pt;}
.ha_c00371{height:73.132813pt;}
.hb_c00371{height:73.281250pt;}
.h2_c00371{height:73.935547pt;}
.h19_c00371{height:74.450521pt;}
.h12_c00371{height:77.875000pt;}
.hc_c00371{height:93.867188pt;}
.h11_c00371{height:107.078125pt;}
.hd_c00371{height:120.289062pt;}
.h0_c00371{height:1122.666667pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.x42_c00371{left:120.639827pt;}
.x10_c00371{left:121.599893pt;}
.x4_c00371{left:122.559707pt;}
.x1_c00371{left:123.518533pt;}
.x7_c00371{left:140.799333pt;}
.x44_c00371{left:148.798813pt;}
.x45_c00371{left:167.679200pt;}
.x27_c00371{left:169.600000pt;}
.x22_c00371{left:170.879867pt;}
.x34_c00371{left:173.119587pt;}
.x16_c00371{left:181.440000pt;}
.x23_c00371{left:183.999067pt;}
.xe_c00371{left:186.238787pt;}
.x24_c00371{left:199.678667pt;}
.x17_c00371{left:203.198667pt;}
.x46_c00371{left:205.119200pt;}
.x20_c00371{left:225.279720pt;}
.xf_c00371{left:229.119200pt;}
.xa_c00371{left:232.960000pt;}
.x28_c00371{left:233.919453pt;}
.x47_c00371{left:238.719720pt;}
.x8_c00371{left:244.158667pt;}
.xb_c00371{left:246.079067pt;}
.x48_c00371{left:248.318787pt;}
.x21_c00371{left:249.919867pt;}
.x35_c00371{left:252.799867pt;}
.xc_c00371{left:259.519067pt;}
.x9_c00371{left:267.199200pt;}
.x49_c00371{left:269.438920pt;}
.xd_c00371{left:272.639587pt;}
.x4a_c00371{left:282.559587pt;}
.x1c_c00371{left:292.798787pt;}
.x4b_c00371{left:298.879333pt;}
.x1d_c00371{left:305.598680pt;}
.x29_c00371{left:310.398920pt;}
.x4c_c00371{left:325.759320pt;}
.x36_c00371{left:336.638693pt;}
.x4d_c00371{left:337.599587pt;}
.x2b_c00371{left:346.879307pt;}
.x4e_c00371{left:350.718787pt;}
.x2c_c00371{left:352.319867pt;}
.x4f_c00371{left:361.918907pt;}
.x2f_c00371{left:362.879840pt;}
.x2d_c00371{left:364.479453pt;}
.x2_c00371{left:372.799840pt;}
.x30_c00371{left:375.679733pt;}
.x3f_c00371{left:378.878907pt;}
.x37_c00371{left:387.518520pt;}
.x3_c00371{left:391.038533pt;}
.x50_c00371{left:396.159707pt;}
.x38_c00371{left:408.959467pt;}
.x12_c00371{left:412.798787pt;}
.x3d_c00371{left:416.958907pt;}
.x13_c00371{left:425.598680pt;}
.x3e_c00371{left:435.518520pt;}
.x14_c00371{left:454.079587pt;}
.x2e_c00371{left:459.199173pt;}
.x39_c00371{left:471.679733pt;}
.x40_c00371{left:482.879840pt;}
.x18_c00371{left:486.079067pt;}
.x19_c00371{left:499.519040pt;}
.x41_c00371{left:508.479453pt;}
.x3a_c00371{left:550.398920pt;}
.x31_c00371{left:553.278773pt;}
.x32_c00371{left:565.759320pt;}
.x33_c00371{left:580.158693pt;}
.x43_c00371{left:587.198693pt;}
.x3b_c00371{left:593.598720pt;}
.x1a_c00371{left:608.639573pt;}
.x1e_c00371{left:618.878907pt;}
.x5_c00371{left:623.039067pt;}
.x1b_c00371{left:627.199173pt;}
.x1f_c00371{left:632.639573pt;}
.x6_c00371{left:636.479040pt;}
.x25_c00371{left:648.638707pt;}
.x2a_c00371{left:663.999067pt;}
.x51_c00371{left:665.919440pt;}
.x26_c00371{left:667.519040pt;}
.x3c_c00371{left:668.479987pt;}
.x15_c00371{left:677.759720pt;}
.x11_c00371{left:683.198733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e8a179bc0a923108110212b.woff2')format("woff");}.ff1_c00372{font-family:ff1_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:ff2_c00372;src:url('chunks/assets/font_194dbed5523a0a088178fd4d.woff2')format("woff");}.ff2_c00372{font-family:ff2_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;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_3e4c0b13792be587bfa3b930.woff2')format("woff");}.ff3_c00372{font-family:ff3_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;}
.m7_c00372{transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133721,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145349,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163889,0.000000,0.000000,0.250000,0,0);}
.mb_c00372{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls8_c00372{letter-spacing:-8.175038px;}
.lsd_c00372{letter-spacing:-5.945625px;}
.ls6_c00372{letter-spacing:-5.196713px;}
.lse_c00372{letter-spacing:-4.456463px;}
.lsa_c00372{letter-spacing:-3.717000px;}
.ls15_c00372{letter-spacing:-3.429000px;}
.ls1a_c00372{letter-spacing:-3.156000px;}
.ls5_c00372{letter-spacing:-2.968875px;}
.ls16_c00372{letter-spacing:-2.288925px;}
.ls7_c00372{letter-spacing:-2.229413px;}
.ls9_c00372{letter-spacing:-1.489163px;}
.lsc_c00372{letter-spacing:-0.740250px;}
.lsb_c00372{letter-spacing:0.000000px;}
.ls17_c00372{letter-spacing:0.881250px;}
.ls3_c00372{letter-spacing:1.147500px;}
.ls1_c00372{letter-spacing:2.288925px;}
.lsf_c00372{letter-spacing:2.543625px;}
.ls11_c00372{letter-spacing:2.805750px;}
.ls10_c00372{letter-spacing:3.187500px;}
.ls12_c00372{letter-spacing:3.429000px;}
.ls18_c00372{letter-spacing:3.870000px;}
.ls4_c00372{letter-spacing:4.575825px;}
.ls0_c00372{letter-spacing:5.717250px;}
.ls14_c00372{letter-spacing:6.864750px;}
.ls2_c00372{letter-spacing:8.006175px;}
.ls13_c00372{letter-spacing:9.002700px;}
.ls19_c00372{letter-spacing:11.440575px;}
.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;}
._0_c00372{margin-left:-4.210302px;}
._2_c00372{margin-left:-2.833455px;}
._3_c00372{margin-left:-1.650942px;}
._9_c00372{width:1.097047px;}
._6_c00372{width:2.890392px;}
._a_c00372{width:5.010238px;}
._5_c00372{width:6.286048px;}
._7_c00372{width:7.486792px;}
._1_c00372{width:9.998947px;}
._15_c00372{width:12.147540px;}
._12_c00372{width:15.431095px;}
._8_c00372{width:16.982928px;}
._4_c00372{width:18.049545px;}
._c_c00372{width:19.895623px;}
._e_c00372{width:21.896735px;}
._13_c00372{width:23.071271px;}
._11_c00372{width:24.243708px;}
._d_c00372{width:26.525110px;}
._b_c00372{width:27.830577px;}
._14_c00372{width:29.801319px;}
._16_c00372{width:32.231376px;}
._10_c00372{width:34.602631px;}
._f_c00372{width:40.067851px;}
.fc0_c00372{color:transparent;}
.fs9_c00372{font-size:54.000000px;}
.fsa_c00372{font-size:60.000000px;}
.fs7_c00372{font-size:63.000000px;}
.fs5_c00372{font-size:63.750000px;}
.fs6_c00372{font-size:64.500000px;}
.fs4_c00372{font-size:67.500000px;}
.fs8_c00372{font-size:70.500000px;}
.fs0_c00372{font-size:78.750000px;}
.fs1_c00372{font-size:80.250000px;}
.fs3_c00372{font-size:84.000000px;}
.fs2_c00372{font-size:115.500000px;}
.y0_c00372{bottom:0.000000px;}
.y29_c00372{bottom:221.039010px;}
.y2a_c00372{bottom:221.039400px;}
.yf_c00372{bottom:267.838800px;}
.y28_c00372{bottom:302.759535px;}
.y27_c00372{bottom:314.639700px;}
.y26_c00372{bottom:314.641665px;}
.y25_c00372{bottom:326.160570px;}
.y24_c00372{bottom:349.561185px;}
.y23_c00372{bottom:373.321260px;}
.y22_c00372{bottom:396.720090px;}
.y21_c00372{bottom:420.120705px;}
.y20_c00372{bottom:443.519535px;}
.y1f_c00372{bottom:455.039985px;}
.y1e_c00372{bottom:455.041620px;}
.y1d_c00372{bottom:478.440450px;}
.y1c_c00372{bottom:501.841065px;}
.y1b_c00372{bottom:524.880435px;}
.y1a_c00372{bottom:548.279250px;}
.y19_c00372{bottom:548.280900px;}
.y18_c00372{bottom:571.681500px;}
.y17_c00372{bottom:595.439775px;}
.y16_c00372{bottom:618.840405px;}
.y15_c00372{bottom:642.239220px;}
.y14_c00372{bottom:665.639850px;}
.y13_c00372{bottom:689.038680px;}
.ye_c00372{bottom:689.038920px;}
.yd_c00372{bottom:735.840045px;}
.yc_c00372{bottom:759.240645px;}
.y12_c00372{bottom:782.639355px;}
.y11_c00372{bottom:806.039985px;}
.y10_c00372{bottom:841.679970px;}
.yb_c00372{bottom:841.680090px;}
.ya_c00372{bottom:900.358605px;}
.y8_c00372{bottom:961.198785px;}
.y9_c00372{bottom:961.199340px;}
.y7_c00372{bottom:991.078515px;}
.y6_c00372{bottom:1020.958230px;}
.y5_c00372{bottom:1050.119385px;}
.y4_c00372{bottom:1050.119520px;}
.y2_c00372{bottom:1109.878830px;}
.y3_c00372{bottom:1109.878965px;}
.y1_c00372{bottom:1140.118740px;}
.ha_c00372{height:54.421875px;}
.hb_c00372{height:62.578125px;}
.h8_c00372{height:63.492188px;}
.h6_c00372{height:64.248047px;}
.h7_c00372{height:65.003906px;}
.h5_c00372{height:68.027344px;}
.h9_c00372{height:71.050781px;}
.h1_c00372{height:77.288818px;}
.h2_c00372{height:78.760986px;}
.h4_c00372{height:87.609375px;}
.h3_c00372{height:120.462891px;}
.h0_c00372{height:1263.000000px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:138.601155px;}
.x8_c00372{left:140.035920px;}
.x1_c00372{left:142.199850px;}
.x9_c00372{left:229.318800px;}
.xa_c00372{left:262.080000px;}
.x5_c00372{left:269.279850px;}
.x6_c00372{left:275.398635px;}
.x7_c00372{left:287.639700px;}
.xb_c00372{left:328.678500px;}
.xf_c00372{left:334.439685px;}
.x10_c00372{left:351.359235px;}
.xc_c00372{left:368.998950px;}
.x18_c00372{left:374.758500px;}
.xd_c00372{left:392.399820px;}
.x19_c00372{left:415.439670px;}
.x3_c00372{left:416.878320px;}
.x12_c00372{left:420.839490px;}
.x11_c00372{left:421.920315px;}
.x4_c00372{left:431.639100px;}
.x13_c00372{left:438.838950px;}
.x14_c00372{left:450.359850px;}
.x15_c00372{left:473.399820px;}
.x16_c00372{left:491.039385px;}
.x17_c00372{left:513.359250px;}
.xe_c00372{left:519.479685px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls8_c00372{letter-spacing:-7.266700pt;}
.lsd_c00372{letter-spacing:-5.285000pt;}
.ls6_c00372{letter-spacing:-4.619300pt;}
.lse_c00372{letter-spacing:-3.961300pt;}
.lsa_c00372{letter-spacing:-3.304000pt;}
.ls15_c00372{letter-spacing:-3.048000pt;}
.ls1a_c00372{letter-spacing:-2.805333pt;}
.ls5_c00372{letter-spacing:-2.639000pt;}
.ls16_c00372{letter-spacing:-2.034600pt;}
.ls7_c00372{letter-spacing:-1.981700pt;}
.ls9_c00372{letter-spacing:-1.323700pt;}
.lsc_c00372{letter-spacing:-0.658000pt;}
.lsb_c00372{letter-spacing:0.000000pt;}
.ls17_c00372{letter-spacing:0.783333pt;}
.ls3_c00372{letter-spacing:1.020000pt;}
.ls1_c00372{letter-spacing:2.034600pt;}
.lsf_c00372{letter-spacing:2.261000pt;}
.ls11_c00372{letter-spacing:2.494000pt;}
.ls10_c00372{letter-spacing:2.833333pt;}
.ls12_c00372{letter-spacing:3.048000pt;}
.ls18_c00372{letter-spacing:3.440000pt;}
.ls4_c00372{letter-spacing:4.067400pt;}
.ls0_c00372{letter-spacing:5.082000pt;}
.ls14_c00372{letter-spacing:6.102000pt;}
.ls2_c00372{letter-spacing:7.116600pt;}
.ls13_c00372{letter-spacing:8.002400pt;}
.ls19_c00372{letter-spacing:10.169400pt;}
.ws0_c00372{word-spacing:0.000000pt;}
._0_c00372{margin-left:-3.742491pt;}
._2_c00372{margin-left:-2.518626pt;}
._3_c00372{margin-left:-1.467504pt;}
._9_c00372{width:0.975153pt;}
._6_c00372{width:2.569238pt;}
._a_c00372{width:4.453545pt;}
._5_c00372{width:5.587598pt;}
._7_c00372{width:6.654926pt;}
._1_c00372{width:8.887953pt;}
._15_c00372{width:10.797814pt;}
._12_c00372{width:13.716529pt;}
._8_c00372{width:15.095936pt;}
._4_c00372{width:16.044040pt;}
._c_c00372{width:17.684998pt;}
._e_c00372{width:19.463764pt;}
._13_c00372{width:20.507797pt;}
._11_c00372{width:21.549962pt;}
._d_c00372{width:23.577875pt;}
._b_c00372{width:24.738291pt;}
._14_c00372{width:26.490061pt;}
._16_c00372{width:28.650112pt;}
._10_c00372{width:30.757894pt;}
._f_c00372{width:35.615868pt;}
.fs9_c00372{font-size:48.000000pt;}
.fsa_c00372{font-size:53.333333pt;}
.fs7_c00372{font-size:56.000000pt;}
.fs5_c00372{font-size:56.666667pt;}
.fs6_c00372{font-size:57.333333pt;}
.fs4_c00372{font-size:60.000000pt;}
.fs8_c00372{font-size:62.666667pt;}
.fs0_c00372{font-size:70.000000pt;}
.fs1_c00372{font-size:71.333333pt;}
.fs3_c00372{font-size:74.666667pt;}
.fs2_c00372{font-size:102.666667pt;}
.y0_c00372{bottom:0.000000pt;}
.y29_c00372{bottom:196.479120pt;}
.y2a_c00372{bottom:196.479467pt;}
.yf_c00372{bottom:238.078933pt;}
.y28_c00372{bottom:269.119587pt;}
.y27_c00372{bottom:279.679733pt;}
.y26_c00372{bottom:279.681480pt;}
.y25_c00372{bottom:289.920507pt;}
.y24_c00372{bottom:310.721053pt;}
.y23_c00372{bottom:331.841120pt;}
.y22_c00372{bottom:352.640080pt;}
.y21_c00372{bottom:373.440627pt;}
.y20_c00372{bottom:394.239587pt;}
.y1f_c00372{bottom:404.479987pt;}
.y1e_c00372{bottom:404.481440pt;}
.y1d_c00372{bottom:425.280400pt;}
.y1c_c00372{bottom:446.080947pt;}
.y1b_c00372{bottom:466.560387pt;}
.y1a_c00372{bottom:487.359333pt;}
.y19_c00372{bottom:487.360800pt;}
.y18_c00372{bottom:508.161333pt;}
.y17_c00372{bottom:529.279800pt;}
.y16_c00372{bottom:550.080360pt;}
.y15_c00372{bottom:570.879307pt;}
.y14_c00372{bottom:591.679867pt;}
.y13_c00372{bottom:612.478827pt;}
.ye_c00372{bottom:612.479040pt;}
.yd_c00372{bottom:654.080040pt;}
.yc_c00372{bottom:674.880573pt;}
.y12_c00372{bottom:695.679427pt;}
.y11_c00372{bottom:716.479987pt;}
.y10_c00372{bottom:748.159973pt;}
.yb_c00372{bottom:748.160080pt;}
.ya_c00372{bottom:800.318760pt;}
.y8_c00372{bottom:854.398920pt;}
.y9_c00372{bottom:854.399413pt;}
.y7_c00372{bottom:880.958680pt;}
.y6_c00372{bottom:907.518427pt;}
.y5_c00372{bottom:933.439453pt;}
.y4_c00372{bottom:933.439573pt;}
.y2_c00372{bottom:986.558960pt;}
.y3_c00372{bottom:986.559080pt;}
.y1_c00372{bottom:1013.438880pt;}
.ha_c00372{height:48.375000pt;}
.hb_c00372{height:55.625000pt;}
.h8_c00372{height:56.437500pt;}
.h6_c00372{height:57.109375pt;}
.h7_c00372{height:57.781250pt;}
.h5_c00372{height:60.468750pt;}
.h9_c00372{height:63.156250pt;}
.h1_c00372{height:68.701172pt;}
.h2_c00372{height:70.009766pt;}
.h4_c00372{height:77.875000pt;}
.h3_c00372{height:107.078125pt;}
.h0_c00372{height:1122.666667pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:123.201027pt;}
.x8_c00372{left:124.476373pt;}
.x1_c00372{left:126.399867pt;}
.x9_c00372{left:203.838933pt;}
.xa_c00372{left:232.960000pt;}
.x5_c00372{left:239.359867pt;}
.x6_c00372{left:244.798787pt;}
.x7_c00372{left:255.679733pt;}
.xb_c00372{left:292.158667pt;}
.xf_c00372{left:297.279720pt;}
.x10_c00372{left:312.319320pt;}
.xc_c00372{left:327.999067pt;}
.x18_c00372{left:333.118667pt;}
.xd_c00372{left:348.799840pt;}
.x19_c00372{left:369.279707pt;}
.x3_c00372{left:370.558507pt;}
.x12_c00372{left:374.079547pt;}
.x11_c00372{left:375.040280pt;}
.x4_c00372{left:383.679200pt;}
.x13_c00372{left:390.079067pt;}
.x14_c00372{left:400.319867pt;}
.x15_c00372{left:420.799840pt;}
.x16_c00372{left:436.479453pt;}
.x17_c00372{left:456.319333pt;}
.xe_c00372{left:461.759720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1f26a551113b9633ef08484.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_7b102776cc12b79274540f28.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_0a4ffa6b528a378ca716e96b.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_0894cfabeb9f70963c7d5bc4.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_ff84b417a6ce43b218712af2.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00373;src:url('chunks/assets/font_74703bbc934d944e47c53c23.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00373{transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174020,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.178218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178218,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m32_c00373{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217172,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m24_c00373{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{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);}
.m12_c00373{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{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);}
.m2d_c00373{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m30_c00373{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m25_c00373{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);}
.m22_c00373{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.m1f_c00373{transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.308333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308333,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.357955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357955,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.md_c00373{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390244,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.423077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423077,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460526,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.467105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467105,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls17_c00373{letter-spacing:-11.556450px;}
.ls14_c00373{letter-spacing:-11.127675px;}
.ls2e_c00373{letter-spacing:-10.115708px;}
.ls3_c00373{letter-spacing:-9.850050px;}
.ls2f_c00373{letter-spacing:-9.389250px;}
.ls12_c00373{letter-spacing:-8.175038px;}
.ls1f_c00373{letter-spacing:-7.857300px;}
.ls30_c00373{letter-spacing:-7.496850px;}
.ls2a_c00373{letter-spacing:-7.426125px;}
.lsb_c00373{letter-spacing:-6.685875px;}
.ls35_c00373{letter-spacing:-6.229350px;}
.ls7_c00373{letter-spacing:-5.945625px;}
.ls34_c00373{letter-spacing:-5.303257px;}
.ls8_c00373{letter-spacing:-5.196713px;}
.ls2b_c00373{letter-spacing:-4.921875px;}
.ls2d_c00373{letter-spacing:-4.873125px;}
.lsa_c00373{letter-spacing:-4.456463px;}
.ls1e_c00373{letter-spacing:-4.398900px;}
.ls24_c00373{letter-spacing:-3.989310px;}
.ls20_c00373{letter-spacing:-3.927000px;}
.ls9_c00373{letter-spacing:-3.717000px;}
.ls21_c00373{letter-spacing:-3.364357px;}
.ls13_c00373{letter-spacing:-3.235950px;}
.ls15_c00373{letter-spacing:-3.158775px;}
.ls4_c00373{letter-spacing:-2.968875px;}
.ls5_c00373{letter-spacing:-2.229413px;}
.ls31_c00373{letter-spacing:-1.709325px;}
.ls2c_c00373{letter-spacing:-1.637100px;}
.ls33_c00373{letter-spacing:-1.627500px;}
.ls6_c00373{letter-spacing:-1.489163px;}
.ls25_c00373{letter-spacing:-1.222365px;}
.lsd_c00373{letter-spacing:-0.861300px;}
.ls32_c00373{letter-spacing:-0.801900px;}
.lsf_c00373{letter-spacing:-0.795675px;}
.lsc_c00373{letter-spacing:-0.740250px;}
.lse_c00373{letter-spacing:0.000000px;}
.ls1a_c00373{letter-spacing:1.001700px;}
.ls28_c00373{letter-spacing:1.373850px;}
.ls22_c00373{letter-spacing:2.199773px;}
.ls29_c00373{letter-spacing:2.362500px;}
.ls10_c00373{letter-spacing:2.387025px;}
.ls23_c00373{letter-spacing:2.408250px;}
.ls18_c00373{letter-spacing:2.410830px;}
.ls1b_c00373{letter-spacing:3.416175px;}
.ls1_c00373{letter-spacing:3.620925px;}
.ls0_c00373{letter-spacing:5.796900px;}
.ls1c_c00373{letter-spacing:5.845425px;}
.ls11_c00373{letter-spacing:6.856980px;}
.ls19_c00373{letter-spacing:7.245698px;}
.ls1d_c00373{letter-spacing:7.412378px;}
.ls16_c00373{letter-spacing:8.379000px;}
.ls2_c00373{letter-spacing:9.389250px;}
.ls27_c00373{letter-spacing:13.813200px;}
.ls26_c00373{letter-spacing:25.215300px;}
.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;}
._a_c00373{margin-left:-39.732000px;}
._b_c00373{margin-left:-38.303280px;}
._19_c00373{margin-left:-9.449525px;}
._18_c00373{margin-left:-7.815428px;}
._1a_c00373{margin-left:-6.511867px;}
._9_c00373{margin-left:-5.274274px;}
._11_c00373{margin-left:-3.454673px;}
._1_c00373{margin-left:-1.753228px;}
._2_c00373{width:1.350221px;}
._6_c00373{width:3.073196px;}
._0_c00373{width:4.480429px;}
._8_c00373{width:6.087702px;}
._3_c00373{width:7.294122px;}
._5_c00373{width:9.244492px;}
._7_c00373{width:11.020958px;}
._4_c00373{width:12.245684px;}
._12_c00373{width:14.019045px;}
._10_c00373{width:16.182902px;}
._13_c00373{width:18.161667px;}
._16_c00373{width:19.310897px;}
._e_c00373{width:21.306659px;}
._c_c00373{width:22.763772px;}
._d_c00373{width:24.967375px;}
._15_c00373{width:26.060307px;}
._f_c00373{width:29.171645px;}
._17_c00373{width:30.367204px;}
._14_c00373{width:32.049834px;}
.fc0_c00373{color:transparent;}
.fsb_c00373{font-size:26.250000px;}
.fsd_c00373{font-size:27.000000px;}
.fs18_c00373{font-size:28.500000px;}
.fs1c_c00373{font-size:29.250000px;}
.fs16_c00373{font-size:30.750000px;}
.fsf_c00373{font-size:31.500000px;}
.fs17_c00373{font-size:32.250000px;}
.fs14_c00373{font-size:33.000000px;}
.fs19_c00373{font-size:39.000000px;}
.fs1a_c00373{font-size:39.750000px;}
.fs1b_c00373{font-size:40.500000px;}
.fs15_c00373{font-size:41.250000px;}
.fse_c00373{font-size:42.750000px;}
.fs11_c00373{font-size:44.250000px;}
.fsc_c00373{font-size:45.000000px;}
.fs12_c00373{font-size:45.750000px;}
.fs10_c00373{font-size:47.250000px;}
.fs13_c00373{font-size:50.250000px;}
.fs2_c00373{font-size:74.250000px;}
.fs1e_c00373{font-size:75.000000px;}
.fsa_c00373{font-size:75.750000px;}
.fs8_c00373{font-size:76.500000px;}
.fs6_c00373{font-size:77.250000px;}
.fs7_c00373{font-size:78.000000px;}
.fs1_c00373{font-size:78.750000px;}
.fs0_c00373{font-size:79.500000px;}
.fs3_c00373{font-size:80.250000px;}
.fs20_c00373{font-size:81.750000px;}
.fs1d_c00373{font-size:82.500000px;}
.fs1f_c00373{font-size:83.250000px;}
.fs9_c00373{font-size:84.750000px;}
.fs5_c00373{font-size:101.250000px;}
.fs4_c00373{font-size:115.500000px;}
.y0_c00373{bottom:0.000000px;}
.y32_c00373{bottom:184.680840px;}
.y31_c00373{bottom:214.560555px;}
.y2f_c00373{bottom:244.439880px;}
.y30_c00373{bottom:244.440285px;}
.y2e_c00373{bottom:273.959400px;}
.y2d_c00373{bottom:303.478935px;}
.y2c_c00373{bottom:362.880000px;}
.y2b_c00373{bottom:384.480495px;}
.y2a_c00373{bottom:405.360900px;}
.y29_c00373{bottom:426.960570px;}
.y28_c00373{bottom:447.480885px;}
.y27_c00373{bottom:447.481185px;}
.y25_c00373{bottom:469.079985px;}
.y26_c00373{bottom:469.080465px;}
.y23_c00373{bottom:490.320375px;}
.y24_c00373{bottom:490.320870px;}
.y22_c00373{bottom:512.279850px;}
.y21_c00373{bottom:512.280645px;}
.y1f_c00373{bottom:533.160855px;}
.y20_c00373{bottom:533.161050px;}
.y1e_c00373{bottom:554.760150px;}
.y1d_c00373{bottom:576.001050px;}
.y1c_c00373{bottom:576.001440px;}
.y1b_c00373{bottom:597.600720px;}
.y1a_c00373{bottom:657.001185px;}
.y19_c00373{bottom:686.520720px;}
.y17_c00373{bottom:745.921185px;}
.y18_c00373{bottom:746.639700px;}
.y16_c00373{bottom:752.039985px;}
.y14_c00373{bottom:767.159340px;}
.y15_c00373{bottom:767.159820px;}
.y13_c00373{bottom:788.400240px;}
.y12_c00373{bottom:788.400720px;}
.y10_c00373{bottom:809.999295px;}
.y11_c00373{bottom:810.000000px;}
.ye_c00373{bottom:831.960090px;}
.yf_c00373{bottom:831.960570px;}
.yd_c00373{bottom:853.200990px;}
.yc_c00373{bottom:853.202895px;}
.yb_c00373{bottom:874.441680px;}
.ya_c00373{bottom:934.561320px;}
.y9_c00373{bottom:964.080855px;}
.y7_c00373{bottom:993.959835px;}
.y8_c00373{bottom:993.960570px;}
.y6_c00373{bottom:1023.839565px;}
.y5_c00373{bottom:1053.360900px;}
.y4_c00373{bottom:1083.239865px;}
.y3_c00373{bottom:1083.240630px;}
.y2_c00373{bottom:1113.480540px;}
.y1_c00373{bottom:1143.360255px;}
.hc_c00373{height:27.377930px;}
.he_c00373{height:28.160156px;}
.h1d_c00373{height:28.907227px;}
.h19_c00373{height:29.724609px;}
.h17_c00373{height:32.071289px;}
.h10_c00373{height:32.853516px;}
.h18_c00373{height:33.635742px;}
.h15_c00373{height:34.417969px;}
.h1c_c00373{height:39.748535px;}
.h1b_c00373{height:40.060547px;}
.h1a_c00373{height:40.675781px;}
.h16_c00373{height:43.022461px;}
.hd_c00373{height:44.472656px;}
.hf_c00373{height:44.586914px;}
.h12_c00373{height:46.151367px;}
.h11_c00373{height:47.619141px;}
.h13_c00373{height:47.715820px;}
.h14_c00373{height:50.642578px;}
.h25_c00373{height:74.830078px;}
.hb_c00373{height:74.862305px;}
.h26_c00373{height:75.585938px;}
.h9_c00373{height:75.603516px;}
.h7_c00373{height:75.816650px;}
.h27_c00373{height:76.341797px;}
.h8_c00373{height:76.552734px;}
.h2_c00373{height:77.288818px;}
.h3_c00373{height:77.440430px;}
.h1_c00373{height:78.024902px;}
.h20_c00373{height:78.222656px;}
.h4_c00373{height:78.760986px;}
.h24_c00373{height:80.121094px;}
.h22_c00373{height:80.876953px;}
.h1f_c00373{height:80.969238px;}
.h5_c00373{height:82.133789px;}
.h28_c00373{height:82.388672px;}
.h21_c00373{height:83.177490px;}
.ha_c00373{height:83.756836px;}
.h23_c00373{height:83.900391px;}
.h1e_c00373{height:105.600586px;}
.h6_c00373{height:120.462891px;}
.h0_c00373{height:1263.000000px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:137.519685px;}
.x3_c00373{left:138.956340px;}
.x6_c00373{left:152.998950px;}
.x2_c00373{left:162.359250px;}
.xd_c00373{left:191.879430px;}
.xc_c00373{left:192.959055px;}
.x29_c00373{left:201.598500px;}
.x2a_c00373{left:207.359850px;}
.x2b_c00373{left:213.839535px;}
.x4_c00373{left:223.199850px;}
.x36_c00373{left:232.919535px;}
.x1a_c00373{left:241.918950px;}
.x3e_c00373{left:248.398635px;}
.x1b_c00373{left:261.359850px;}
.x3f_c00373{left:263.518635px;}
.x18_c00373{left:270.000000px;}
.x5_c00373{left:273.599100px;}
.x2f_c00373{left:284.399850px;}
.x19_c00373{left:297.000000px;}
.x37_c00373{left:300.958350px;}
.x30_c00373{left:304.559100px;}
.x1c_c00373{left:321.478635px;}
.x38_c00373{left:324.718500px;}
.x23_c00373{left:344.518635px;}
.x39_c00373{left:402.478635px;}
.x24_c00373{left:403.918950px;}
.x7_c00373{left:419.759085px;}
.x3a_c00373{left:425.518665px;}
.x8_c00373{left:427.679070px;}
.xa_c00373{left:446.038920px;}
.x9_c00373{left:451.439250px;}
.x32_c00373{left:464.759535px;}
.xb_c00373{left:476.278800px;}
.x16_c00373{left:480.238770px;}
.x1d_c00373{left:503.278800px;}
.x17_c00373{left:513.359250px;}
.x31_c00373{left:527.399820px;}
.x40_c00373{left:550.078770px;}
.x35_c00373{left:552.239220px;}
.x41_c00373{left:564.119385px;}
.x12_c00373{left:567.359250px;}
.x13_c00373{left:580.679670px;}
.x1e_c00373{left:590.039985px;}
.x25_c00373{left:599.759535px;}
.x26_c00373{left:608.759085px;}
.x14_c00373{left:624.958335px;}
.x3b_c00373{left:636.479235px;}
.x15_c00373{left:651.599070px;}
.x1f_c00373{left:659.519070px;}
.x2d_c00373{left:665.998950px;}
.x20_c00373{left:669.958920px;}
.xe_c00373{left:674.279850px;}
.x2e_c00373{left:677.519670px;}
.x33_c00373{left:691.558635px;}
.x10_c00373{left:693.359850px;}
.x21_c00373{left:698.039985px;}
.xf_c00373{left:699.478635px;}
.x3c_c00373{left:701.639100px;}
.x22_c00373{left:705.239820px;}
.x34_c00373{left:710.279250px;}
.x2c_c00373{left:711.719520px;}
.x11_c00373{left:719.278800px;}
.x3d_c00373{left:734.039385px;}
.x42_c00373{left:739.078770px;}
.x27_c00373{left:740.159820px;}
.x28_c00373{left:750.599670px;}
.x43_c00373{left:753.478635px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls17_c00373{letter-spacing:-10.272400pt;}
.ls14_c00373{letter-spacing:-9.891267pt;}
.ls2e_c00373{letter-spacing:-8.991740pt;}
.ls3_c00373{letter-spacing:-8.755600pt;}
.ls2f_c00373{letter-spacing:-8.346000pt;}
.ls12_c00373{letter-spacing:-7.266700pt;}
.ls1f_c00373{letter-spacing:-6.984267pt;}
.ls30_c00373{letter-spacing:-6.663867pt;}
.ls2a_c00373{letter-spacing:-6.601000pt;}
.lsb_c00373{letter-spacing:-5.943000pt;}
.ls35_c00373{letter-spacing:-5.537200pt;}
.ls7_c00373{letter-spacing:-5.285000pt;}
.ls34_c00373{letter-spacing:-4.714007pt;}
.ls8_c00373{letter-spacing:-4.619300pt;}
.ls2b_c00373{letter-spacing:-4.375000pt;}
.ls2d_c00373{letter-spacing:-4.331667pt;}
.lsa_c00373{letter-spacing:-3.961300pt;}
.ls1e_c00373{letter-spacing:-3.910133pt;}
.ls24_c00373{letter-spacing:-3.546053pt;}
.ls20_c00373{letter-spacing:-3.490667pt;}
.ls9_c00373{letter-spacing:-3.304000pt;}
.ls21_c00373{letter-spacing:-2.990540pt;}
.ls13_c00373{letter-spacing:-2.876400pt;}
.ls15_c00373{letter-spacing:-2.807800pt;}
.ls4_c00373{letter-spacing:-2.639000pt;}
.ls5_c00373{letter-spacing:-1.981700pt;}
.ls31_c00373{letter-spacing:-1.519400pt;}
.ls2c_c00373{letter-spacing:-1.455200pt;}
.ls33_c00373{letter-spacing:-1.446667pt;}
.ls6_c00373{letter-spacing:-1.323700pt;}
.ls25_c00373{letter-spacing:-1.086547pt;}
.lsd_c00373{letter-spacing:-0.765600pt;}
.ls32_c00373{letter-spacing:-0.712800pt;}
.lsf_c00373{letter-spacing:-0.707267pt;}
.lsc_c00373{letter-spacing:-0.658000pt;}
.lse_c00373{letter-spacing:0.000000pt;}
.ls1a_c00373{letter-spacing:0.890400pt;}
.ls28_c00373{letter-spacing:1.221200pt;}
.ls22_c00373{letter-spacing:1.955353pt;}
.ls29_c00373{letter-spacing:2.100000pt;}
.ls10_c00373{letter-spacing:2.121800pt;}
.ls23_c00373{letter-spacing:2.140667pt;}
.ls18_c00373{letter-spacing:2.142960pt;}
.ls1b_c00373{letter-spacing:3.036600pt;}
.ls1_c00373{letter-spacing:3.218600pt;}
.ls0_c00373{letter-spacing:5.152800pt;}
.ls1c_c00373{letter-spacing:5.195933pt;}
.ls11_c00373{letter-spacing:6.095093pt;}
.ls19_c00373{letter-spacing:6.440620pt;}
.ls1d_c00373{letter-spacing:6.588780pt;}
.ls16_c00373{letter-spacing:7.448000pt;}
.ls2_c00373{letter-spacing:8.346000pt;}
.ls27_c00373{letter-spacing:12.278400pt;}
.ls26_c00373{letter-spacing:22.413600pt;}
.ws0_c00373{word-spacing:0.000000pt;}
._a_c00373{margin-left:-35.317333pt;}
._b_c00373{margin-left:-34.047360pt;}
._19_c00373{margin-left:-8.399577pt;}
._18_c00373{margin-left:-6.947047pt;}
._1a_c00373{margin-left:-5.788326pt;}
._9_c00373{margin-left:-4.688243pt;}
._11_c00373{margin-left:-3.070821pt;}
._1_c00373{margin-left:-1.558425pt;}
._2_c00373{width:1.200196pt;}
._6_c00373{width:2.731730pt;}
._0_c00373{width:3.982604pt;}
._8_c00373{width:5.411291pt;}
._3_c00373{width:6.483664pt;}
._5_c00373{width:8.217326pt;}
._7_c00373{width:9.796408pt;}
._4_c00373{width:10.885053pt;}
._12_c00373{width:12.461374pt;}
._10_c00373{width:14.384802pt;}
._13_c00373{width:16.143704pt;}
._16_c00373{width:17.165242pt;}
._e_c00373{width:18.939253pt;}
._c_c00373{width:20.234464pt;}
._d_c00373{width:22.193223pt;}
._15_c00373{width:23.164717pt;}
._f_c00373{width:25.930351pt;}
._17_c00373{width:26.993070pt;}
._14_c00373{width:28.488742pt;}
.fsb_c00373{font-size:23.333333pt;}
.fsd_c00373{font-size:24.000000pt;}
.fs18_c00373{font-size:25.333333pt;}
.fs1c_c00373{font-size:26.000000pt;}
.fs16_c00373{font-size:27.333333pt;}
.fsf_c00373{font-size:28.000000pt;}
.fs17_c00373{font-size:28.666667pt;}
.fs14_c00373{font-size:29.333333pt;}
.fs19_c00373{font-size:34.666667pt;}
.fs1a_c00373{font-size:35.333333pt;}
.fs1b_c00373{font-size:36.000000pt;}
.fs15_c00373{font-size:36.666667pt;}
.fse_c00373{font-size:38.000000pt;}
.fs11_c00373{font-size:39.333333pt;}
.fsc_c00373{font-size:40.000000pt;}
.fs12_c00373{font-size:40.666667pt;}
.fs10_c00373{font-size:42.000000pt;}
.fs13_c00373{font-size:44.666667pt;}
.fs2_c00373{font-size:66.000000pt;}
.fs1e_c00373{font-size:66.666667pt;}
.fsa_c00373{font-size:67.333333pt;}
.fs8_c00373{font-size:68.000000pt;}
.fs6_c00373{font-size:68.666667pt;}
.fs7_c00373{font-size:69.333333pt;}
.fs1_c00373{font-size:70.000000pt;}
.fs0_c00373{font-size:70.666667pt;}
.fs3_c00373{font-size:71.333333pt;}
.fs20_c00373{font-size:72.666667pt;}
.fs1d_c00373{font-size:73.333333pt;}
.fs1f_c00373{font-size:74.000000pt;}
.fs9_c00373{font-size:75.333333pt;}
.fs5_c00373{font-size:90.000000pt;}
.fs4_c00373{font-size:102.666667pt;}
.y0_c00373{bottom:0.000000pt;}
.y32_c00373{bottom:164.160747pt;}
.y31_c00373{bottom:190.720493pt;}
.y2f_c00373{bottom:217.279893pt;}
.y30_c00373{bottom:217.280253pt;}
.y2e_c00373{bottom:243.519467pt;}
.y2d_c00373{bottom:269.759053pt;}
.y2c_c00373{bottom:322.560000pt;}
.y2b_c00373{bottom:341.760440pt;}
.y2a_c00373{bottom:360.320800pt;}
.y29_c00373{bottom:379.520507pt;}
.y28_c00373{bottom:397.760787pt;}
.y27_c00373{bottom:397.761053pt;}
.y25_c00373{bottom:416.959987pt;}
.y26_c00373{bottom:416.960413pt;}
.y23_c00373{bottom:435.840333pt;}
.y24_c00373{bottom:435.840773pt;}
.y22_c00373{bottom:455.359867pt;}
.y21_c00373{bottom:455.360573pt;}
.y1f_c00373{bottom:473.920760pt;}
.y20_c00373{bottom:473.920933pt;}
.y1e_c00373{bottom:493.120133pt;}
.y1d_c00373{bottom:512.000933pt;}
.y1c_c00373{bottom:512.001280pt;}
.y1b_c00373{bottom:531.200640pt;}
.y1a_c00373{bottom:584.001053pt;}
.y19_c00373{bottom:610.240640pt;}
.y17_c00373{bottom:663.041053pt;}
.y18_c00373{bottom:663.679733pt;}
.y16_c00373{bottom:668.479987pt;}
.y14_c00373{bottom:681.919413pt;}
.y15_c00373{bottom:681.919840pt;}
.y13_c00373{bottom:700.800213pt;}
.y12_c00373{bottom:700.800640pt;}
.y10_c00373{bottom:719.999373pt;}
.y11_c00373{bottom:720.000000pt;}
.ye_c00373{bottom:739.520080pt;}
.yf_c00373{bottom:739.520507pt;}
.yd_c00373{bottom:758.400880pt;}
.yc_c00373{bottom:758.402573pt;}
.yb_c00373{bottom:777.281493pt;}
.ya_c00373{bottom:830.721173pt;}
.y9_c00373{bottom:856.960760pt;}
.y7_c00373{bottom:883.519853pt;}
.y8_c00373{bottom:883.520507pt;}
.y6_c00373{bottom:910.079613pt;}
.y5_c00373{bottom:936.320800pt;}
.y4_c00373{bottom:962.879880pt;}
.y3_c00373{bottom:962.880560pt;}
.y2_c00373{bottom:989.760480pt;}
.y1_c00373{bottom:1016.320227pt;}
.hc_c00373{height:24.335938pt;}
.he_c00373{height:25.031250pt;}
.h1d_c00373{height:25.695312pt;}
.h19_c00373{height:26.421875pt;}
.h17_c00373{height:28.507812pt;}
.h10_c00373{height:29.203125pt;}
.h18_c00373{height:29.898438pt;}
.h15_c00373{height:30.593750pt;}
.h1c_c00373{height:35.332031pt;}
.h1b_c00373{height:35.609375pt;}
.h1a_c00373{height:36.156250pt;}
.h16_c00373{height:38.242188pt;}
.hd_c00373{height:39.531250pt;}
.hf_c00373{height:39.632812pt;}
.h12_c00373{height:41.023438pt;}
.h11_c00373{height:42.328125pt;}
.h13_c00373{height:42.414062pt;}
.h14_c00373{height:45.015625pt;}
.h25_c00373{height:66.515625pt;}
.hb_c00373{height:66.544271pt;}
.h26_c00373{height:67.187500pt;}
.h9_c00373{height:67.203125pt;}
.h7_c00373{height:67.392578pt;}
.h27_c00373{height:67.859375pt;}
.h8_c00373{height:68.046875pt;}
.h2_c00373{height:68.701172pt;}
.h3_c00373{height:68.835938pt;}
.h1_c00373{height:69.355469pt;}
.h20_c00373{height:69.531250pt;}
.h4_c00373{height:70.009766pt;}
.h24_c00373{height:71.218750pt;}
.h22_c00373{height:71.890625pt;}
.h1f_c00373{height:71.972656pt;}
.h5_c00373{height:73.007812pt;}
.h28_c00373{height:73.234375pt;}
.h21_c00373{height:73.935547pt;}
.ha_c00373{height:74.450521pt;}
.h23_c00373{height:74.578125pt;}
.h1e_c00373{height:93.867188pt;}
.h6_c00373{height:107.078125pt;}
.h0_c00373{height:1122.666667pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:122.239720pt;}
.x3_c00373{left:123.516747pt;}
.x6_c00373{left:135.999067pt;}
.x2_c00373{left:144.319333pt;}
.xd_c00373{left:170.559493pt;}
.xc_c00373{left:171.519160pt;}
.x29_c00373{left:179.198667pt;}
.x2a_c00373{left:184.319867pt;}
.x2b_c00373{left:190.079587pt;}
.x4_c00373{left:198.399867pt;}
.x36_c00373{left:207.039587pt;}
.x1a_c00373{left:215.039067pt;}
.x3e_c00373{left:220.798787pt;}
.x1b_c00373{left:232.319867pt;}
.x3f_c00373{left:234.238787pt;}
.x18_c00373{left:240.000000pt;}
.x5_c00373{left:243.199200pt;}
.x2f_c00373{left:252.799867pt;}
.x19_c00373{left:264.000000pt;}
.x37_c00373{left:267.518533pt;}
.x30_c00373{left:270.719200pt;}
.x1c_c00373{left:285.758787pt;}
.x38_c00373{left:288.638667pt;}
.x23_c00373{left:306.238787pt;}
.x39_c00373{left:357.758787pt;}
.x24_c00373{left:359.039067pt;}
.x7_c00373{left:373.119187pt;}
.x3a_c00373{left:378.238813pt;}
.x8_c00373{left:380.159173pt;}
.xa_c00373{left:396.479040pt;}
.x9_c00373{left:401.279333pt;}
.x32_c00373{left:413.119587pt;}
.xb_c00373{left:423.358933pt;}
.x16_c00373{left:426.878907pt;}
.x1d_c00373{left:447.358933pt;}
.x17_c00373{left:456.319333pt;}
.x31_c00373{left:468.799840pt;}
.x40_c00373{left:488.958907pt;}
.x35_c00373{left:490.879307pt;}
.x41_c00373{left:501.439453pt;}
.x12_c00373{left:504.319333pt;}
.x13_c00373{left:516.159707pt;}
.x1e_c00373{left:524.479987pt;}
.x25_c00373{left:533.119587pt;}
.x26_c00373{left:541.119187pt;}
.x14_c00373{left:555.518520pt;}
.x3b_c00373{left:565.759320pt;}
.x15_c00373{left:579.199173pt;}
.x1f_c00373{left:586.239173pt;}
.x2d_c00373{left:591.999067pt;}
.x20_c00373{left:595.519040pt;}
.xe_c00373{left:599.359867pt;}
.x2e_c00373{left:602.239707pt;}
.x33_c00373{left:614.718787pt;}
.x10_c00373{left:616.319867pt;}
.x21_c00373{left:620.479987pt;}
.xf_c00373{left:621.758787pt;}
.x3c_c00373{left:623.679200pt;}
.x22_c00373{left:626.879840pt;}
.x34_c00373{left:631.359333pt;}
.x2c_c00373{left:632.639573pt;}
.x11_c00373{left:639.358933pt;}
.x3d_c00373{left:652.479453pt;}
.x42_c00373{left:656.958907pt;}
.x27_c00373{left:657.919840pt;}
.x28_c00373{left:667.199707pt;}
.x43_c00373{left:669.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2651e0ddd0e19c7cf25b81be.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_4690244d1ab02f715f878b94.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_c80d1000378d21701b0c7fb4.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_51979f48fb3d2756307eb46a.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_f043533364a9c1e687ebd759.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_e9b28868a54df2450e36fd39.woff2')format("woff");}.ff6_c00374{font-family:ff6_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;}
@font-face{font-family:ff7_c00374;src:url('chunks/assets/font_814d62a267624be6655099f9.woff2')format("woff");}.ff7_c00374{font-family:ff7_c00374;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00374{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m2f_c00374{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);}
.m31_c00374{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2b_c00374{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.220497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220497,0.000000,0.000000,0.250000,0,0);}
.m23_c00374{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m2e_c00374{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m32_c00374{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m33_c00374{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m21_c00374{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m1f_c00374{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m34_c00374{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m25_c00374{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m29_c00374{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.286036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286036,0.000000,0.000000,0.250000,0,0);}
.m19_c00374{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{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);}
.m28_c00374{transform:matrix(0.398734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398734,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls1c_c00374{letter-spacing:-22.269150px;}
.lse_c00374{letter-spacing:-16.391925px;}
.ls29_c00374{letter-spacing:-9.430245px;}
.ls16_c00374{letter-spacing:-8.619075px;}
.lsc_c00374{letter-spacing:-8.175038px;}
.lsf_c00374{letter-spacing:-7.500375px;}
.ls18_c00374{letter-spacing:-7.426125px;}
.ls15_c00374{letter-spacing:-6.687150px;}
.ls10_c00374{letter-spacing:-6.685875px;}
.ls1a_c00374{letter-spacing:-6.300000px;}
.ls9_c00374{letter-spacing:-5.945625px;}
.lsd_c00374{letter-spacing:-5.216400px;}
.ls5_c00374{letter-spacing:-5.196713px;}
.ls17_c00374{letter-spacing:-5.015625px;}
.ls12_c00374{letter-spacing:-4.713240px;}
.ls13_c00374{letter-spacing:-4.456463px;}
.ls22_c00374{letter-spacing:-4.437510px;}
.ls14_c00374{letter-spacing:-4.420200px;}
.ls1b_c00374{letter-spacing:-4.280400px;}
.ls31_c00374{letter-spacing:-4.002075px;}
.ls3a_c00374{letter-spacing:-4.001400px;}
.ls30_c00374{letter-spacing:-3.935925px;}
.ls1e_c00374{letter-spacing:-3.749625px;}
.lsa_c00374{letter-spacing:-3.717000px;}
.ls2b_c00374{letter-spacing:-3.317423px;}
.ls3e_c00374{letter-spacing:-3.201600px;}
.ls1d_c00374{letter-spacing:-3.144375px;}
.ls26_c00374{letter-spacing:-3.101550px;}
.ls1f_c00374{letter-spacing:-3.098947px;}
.ls28_c00374{letter-spacing:-3.048480px;}
.ls6_c00374{letter-spacing:-2.968875px;}
.ls38_c00374{letter-spacing:-2.716320px;}
.ls19_c00374{letter-spacing:-2.371800px;}
.ls2d_c00374{letter-spacing:-2.325000px;}
.ls23_c00374{letter-spacing:-2.287335px;}
.ls4_c00374{letter-spacing:-2.229413px;}
.ls27_c00374{letter-spacing:-2.213865px;}
.ls40_c00374{letter-spacing:-2.182950px;}
.ls24_c00374{letter-spacing:-1.572953px;}
.ls11_c00374{letter-spacing:-1.560075px;}
.ls25_c00374{letter-spacing:-1.547985px;}
.ls7_c00374{letter-spacing:-1.489163px;}
.ls3c_c00374{letter-spacing:-1.474875px;}
.ls34_c00374{letter-spacing:-1.385025px;}
.ls20_c00374{letter-spacing:-0.914550px;}
.ls3b_c00374{letter-spacing:-0.812700px;}
.ls2a_c00374{letter-spacing:-0.799800px;}
.ls3f_c00374{letter-spacing:-0.790500px;}
.ls21_c00374{letter-spacing:-0.776085px;}
.ls39_c00374{letter-spacing:-0.761250px;}
.ls2c_c00374{letter-spacing:-0.760725px;}
.ls8_c00374{letter-spacing:-0.740250px;}
.ls2e_c00374{letter-spacing:-0.696600px;}
.ls33_c00374{letter-spacing:-0.468075px;}
.lsb_c00374{letter-spacing:0.000000px;}
.ls35_c00374{letter-spacing:0.812700px;}
.ls32_c00374{letter-spacing:1.547985px;}
.ls2_c00374{letter-spacing:3.101550px;}
.ls37_c00374{letter-spacing:3.523905px;}
.ls36_c00374{letter-spacing:4.650465px;}
.ls1_c00374{letter-spacing:6.198450px;}
.ls3d_c00374{letter-spacing:6.959700px;}
.ls0_c00374{letter-spacing:10.848915px;}
.ls3_c00374{letter-spacing:28.676550px;}
.ls2f_c00374{letter-spacing:32.945063px;}
.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;}
._6_c00374{margin-left:-66.232361px;}
._21_c00374{margin-left:-50.489514px;}
._20_c00374{margin-left:-15.915903px;}
._14_c00374{margin-left:-9.830793px;}
._c_c00374{margin-left:-6.403489px;}
._9_c00374{margin-left:-4.492331px;}
._f_c00374{margin-left:-3.120684px;}
._e_c00374{margin-left:-1.811428px;}
._12_c00374{width:1.511688px;}
._d_c00374{width:2.892250px;}
._7_c00374{width:3.893638px;}
._1_c00374{width:5.750295px;}
._0_c00374{width:7.168939px;}
._5_c00374{width:8.317828px;}
._4_c00374{width:10.198095px;}
._a_c00374{width:11.660423px;}
._b_c00374{width:12.875060px;}
._8_c00374{width:13.935570px;}
._3_c00374{width:15.790222px;}
._13_c00374{width:17.159387px;}
._2_c00374{width:18.510544px;}
._11_c00374{width:22.619333px;}
._10_c00374{width:23.711892px;}
._1f_c00374{width:30.262986px;}
._1c_c00374{width:32.067371px;}
._1b_c00374{width:33.478393px;}
._1d_c00374{width:37.168633px;}
._1e_c00374{width:39.400334px;}
._1a_c00374{width:41.332160px;}
._19_c00374{width:43.005167px;}
._16_c00374{width:45.910789px;}
._17_c00374{width:51.353024px;}
._18_c00374{width:57.130183px;}
._15_c00374{width:59.889226px;}
.fc0_c00374{color:transparent;}
.fs12_c00374{font-size:33.750000px;}
.fs19_c00374{font-size:40.500000px;}
.fs13_c00374{font-size:42.750000px;}
.fse_c00374{font-size:43.500000px;}
.fsc_c00374{font-size:44.250000px;}
.fs15_c00374{font-size:46.500000px;}
.fs11_c00374{font-size:47.250000px;}
.fs17_c00374{font-size:48.000000px;}
.fs10_c00374{font-size:48.750000px;}
.fs18_c00374{font-size:49.500000px;}
.fs14_c00374{font-size:50.250000px;}
.fs16_c00374{font-size:51.000000px;}
.fsd_c00374{font-size:52.500000px;}
.fsf_c00374{font-size:53.250000px;}
.fs1c_c00374{font-size:54.000000px;}
.fs1a_c00374{font-size:56.250000px;}
.fs1b_c00374{font-size:59.250000px;}
.fs0_c00374{font-size:78.750000px;}
.fsa_c00374{font-size:79.500000px;}
.fs2_c00374{font-size:80.250000px;}
.fsb_c00374{font-size:81.750000px;}
.fs9_c00374{font-size:82.500000px;}
.fs7_c00374{font-size:83.250000px;}
.fs5_c00374{font-size:84.000000px;}
.fs8_c00374{font-size:84.750000px;}
.fs3_c00374{font-size:90.000000px;}
.fs6_c00374{font-size:101.250000px;}
.fs1_c00374{font-size:115.500000px;}
.fs4_c00374{font-size:120.750000px;}
.y0_c00374{bottom:0.000000px;}
.y2a_c00374{bottom:174.959400px;}
.y29_c00374{bottom:188.639100px;}
.y27_c00374{bottom:202.679535px;}
.y28_c00374{bottom:202.679700px;}
.y26_c00374{bottom:218.519685px;}
.y25_c00374{bottom:226.078785px;}
.y23_c00374{bottom:291.238335px;}
.y24_c00374{bottom:291.238785px;}
.y22_c00374{bottom:312.479235px;}
.y21_c00374{bottom:312.480210px;}
.y20_c00374{bottom:333.000435px;}
.y1f_c00374{bottom:353.879055px;}
.y1e_c00374{bottom:413.638500px;}
.y1c_c00374{bottom:443.879355px;}
.y1d_c00374{bottom:443.879970px;}
.y1b_c00374{bottom:473.759085px;}
.y1a_c00374{bottom:533.160345px;}
.y19_c00374{bottom:563.400255px;}
.y18_c00374{bottom:593.279985px;}
.y17_c00374{bottom:622.799520px;}
.y16_c00374{bottom:622.800015px;}
.y15_c00374{bottom:652.319550px;}
.y14_c00374{bottom:682.199265px;}
.y13_c00374{bottom:741.598530px;}
.y12_c00374{bottom:771.479190px;}
.y11_c00374{bottom:771.480075px;}
.y10_c00374{bottom:801.359805px;}
.yf_c00374{bottom:861.478635px;}
.ye_c00374{bottom:861.479640px;}
.yd_c00374{bottom:882.720570px;}
.yc_c00374{bottom:925.200285px;}
.yb_c00374{bottom:946.799565px;}
.ya_c00374{bottom:946.800450px;}
.y8_c00374{bottom:967.678590px;}
.y9_c00374{bottom:967.679070px;}
.y7_c00374{bottom:988.919490px;}
.y6_c00374{bottom:988.919580px;}
.y5_c00374{bottom:1031.759490px;}
.y3_c00374{bottom:1052.999385px;}
.y4_c00374{bottom:1053.000000px;}
.y2_c00374{bottom:1112.398635px;}
.y1_c00374{bottom:1142.638545px;}
.h15_c00374{height:35.200195px;}
.h1d_c00374{height:42.240234px;}
.h20_c00374{height:43.428955px;}
.h22_c00374{height:43.839844px;}
.h16_c00374{height:44.586914px;}
.h11_c00374{height:45.369141px;}
.hf_c00374{height:46.151367px;}
.h14_c00374{height:46.373291px;}
.h18_c00374{height:46.863281px;}
.h21_c00374{height:47.437500px;}
.h1a_c00374{height:47.619141px;}
.h1b_c00374{height:48.375000px;}
.h1c_c00374{height:48.919922px;}
.h13_c00374{height:49.130859px;}
.h23_c00374{height:49.886719px;}
.h17_c00374{height:50.642578px;}
.h19_c00374{height:51.398438px;}
.h10_c00374{height:51.884766px;}
.h12_c00374{height:52.625977px;}
.h24_c00374{height:53.367188px;}
.h1e_c00374{height:55.590820px;}
.h1f_c00374{height:58.555664px;}
.h1_c00374{height:77.288818px;}
.hd_c00374{height:78.024902px;}
.h4_c00374{height:78.760986px;}
.he_c00374{height:80.233154px;}
.hb_c00374{height:80.969238px;}
.h9_c00374{height:81.705322px;}
.h2_c00374{height:82.133789px;}
.hc_c00374{height:82.441406px;}
.ha_c00374{height:83.177490px;}
.h7_c00374{height:87.609375px;}
.h5_c00374{height:93.867188px;}
.h8_c00374{height:105.600586px;}
.h3_c00374{height:120.462891px;}
.h6_c00374{height:125.938477px;}
.h0_c00374{height:1263.000000px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:140.398665px;}
.x36_c00374{left:141.478800px;}
.x25_c00374{left:156.599700px;}
.x20_c00374{left:164.519685px;}
.x16_c00374{left:165.599100px;}
.x29_c00374{left:172.439715px;}
.x3e_c00374{left:181.439250px;}
.x4c_c00374{left:184.679100px;}
.x37_c00374{left:189.000000px;}
.x23_c00374{left:190.438665px;}
.xb_c00374{left:194.398560px;}
.x8_c00374{left:195.479685px;}
.x2a_c00374{left:207.719100px;}
.x24_c00374{left:209.879535px;}
.x2_c00374{left:225.354150px;}
.x38_c00374{left:230.038950px;}
.x4d_c00374{left:241.918950px;}
.x3f_c00374{left:246.239850px;}
.x4e_c00374{left:251.279250px;}
.x2b_c00374{left:265.679100px;}
.x4f_c00374{left:271.079385px;}
.x21_c00374{left:275.039385px;}
.x3_c00374{left:280.798950px;}
.x4_c00374{left:288.719100px;}
.x2c_c00374{left:291.958950px;}
.x22_c00374{left:294.119385px;}
.x5_c00374{left:295.198785px;}
.x17_c00374{left:298.438635px;}
.x13_c00374{left:299.878950px;}
.x50_c00374{left:300.958350px;}
.x14_c00374{left:306.358635px;}
.x2d_c00374{left:308.878350px;}
.x51_c00374{left:309.959385px;}
.x1b_c00374{left:313.558635px;}
.x18_c00374{left:318.599700px;}
.x40_c00374{left:320.399235px;}
.x15_c00374{left:326.158785px;}
.x52_c00374{left:336.239250px;}
.x41_c00374{left:340.199385px;}
.x1c_c00374{left:351.718500px;}
.x2e_c00374{left:358.918350px;}
.x1e_c00374{left:370.080000px;}
.x39_c00374{left:374.040000px;}
.x2f_c00374{left:381.958350px;}
.x53_c00374{left:389.519070px;}
.x26_c00374{left:404.279850px;}
.x1f_c00374{left:411.479685px;}
.x27_c00374{left:419.759085px;}
.x30_c00374{left:426.599670px;}
.x42_c00374{left:428.758530px;}
.x3a_c00374{left:439.559100px;}
.x54_c00374{left:440.638500px;}
.x43_c00374{left:443.519070px;}
.x11_c00374{left:444.598530px;}
.x12_c00374{left:460.438665px;}
.x31_c00374{left:468.719565px;}
.xc_c00374{left:505.798515px;}
.xd_c00374{left:514.079400px;}
.x44_c00374{left:516.239820px;}
.xe_c00374{left:520.199850px;}
.xf_c00374{left:526.318770px;}
.x32_c00374{left:534.238770px;}
.x10_c00374{left:536.039985px;}
.x45_c00374{left:538.559685px;}
.x33_c00374{left:546.479685px;}
.x46_c00374{left:552.959385px;}
.x3b_c00374{left:555.838530px;}
.x34_c00374{left:560.518620px;}
.x3c_c00374{left:589.319820px;}
.x35_c00374{left:596.878920px;}
.x47_c00374{left:600.118785px;}
.x19_c00374{left:624.958335px;}
.x48_c00374{left:644.758530px;}
.x1a_c00374{left:668.518620px;}
.x49_c00374{left:682.918350px;}
.x9_c00374{left:695.879520px;}
.x4a_c00374{left:699.478635px;}
.xa_c00374{left:721.080000px;}
.x6_c00374{left:722.159370px;}
.x3d_c00374{left:732.239820px;}
.x4b_c00374{left:765.719520px;}
.x1d_c00374{left:767.159820px;}
.x28_c00374{left:768.959385px;}
.x7_c00374{left:772.919490px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls1c_c00374{letter-spacing:-19.794800pt;}
.lse_c00374{letter-spacing:-14.570600pt;}
.ls29_c00374{letter-spacing:-8.382440pt;}
.ls16_c00374{letter-spacing:-7.661400pt;}
.lsc_c00374{letter-spacing:-7.266700pt;}
.lsf_c00374{letter-spacing:-6.667000pt;}
.ls18_c00374{letter-spacing:-6.601000pt;}
.ls15_c00374{letter-spacing:-5.944133pt;}
.ls10_c00374{letter-spacing:-5.943000pt;}
.ls1a_c00374{letter-spacing:-5.600000pt;}
.ls9_c00374{letter-spacing:-5.285000pt;}
.lsd_c00374{letter-spacing:-4.636800pt;}
.ls5_c00374{letter-spacing:-4.619300pt;}
.ls17_c00374{letter-spacing:-4.458333pt;}
.ls12_c00374{letter-spacing:-4.189547pt;}
.ls13_c00374{letter-spacing:-3.961300pt;}
.ls22_c00374{letter-spacing:-3.944453pt;}
.ls14_c00374{letter-spacing:-3.929067pt;}
.ls1b_c00374{letter-spacing:-3.804800pt;}
.ls31_c00374{letter-spacing:-3.557400pt;}
.ls3a_c00374{letter-spacing:-3.556800pt;}
.ls30_c00374{letter-spacing:-3.498600pt;}
.ls1e_c00374{letter-spacing:-3.333000pt;}
.lsa_c00374{letter-spacing:-3.304000pt;}
.ls2b_c00374{letter-spacing:-2.948820pt;}
.ls3e_c00374{letter-spacing:-2.845867pt;}
.ls1d_c00374{letter-spacing:-2.795000pt;}
.ls26_c00374{letter-spacing:-2.756933pt;}
.ls1f_c00374{letter-spacing:-2.754620pt;}
.ls28_c00374{letter-spacing:-2.709760pt;}
.ls6_c00374{letter-spacing:-2.639000pt;}
.ls38_c00374{letter-spacing:-2.414507pt;}
.ls19_c00374{letter-spacing:-2.108267pt;}
.ls2d_c00374{letter-spacing:-2.066667pt;}
.ls23_c00374{letter-spacing:-2.033187pt;}
.ls4_c00374{letter-spacing:-1.981700pt;}
.ls27_c00374{letter-spacing:-1.967880pt;}
.ls40_c00374{letter-spacing:-1.940400pt;}
.ls24_c00374{letter-spacing:-1.398180pt;}
.ls11_c00374{letter-spacing:-1.386733pt;}
.ls25_c00374{letter-spacing:-1.375987pt;}
.ls7_c00374{letter-spacing:-1.323700pt;}
.ls3c_c00374{letter-spacing:-1.311000pt;}
.ls34_c00374{letter-spacing:-1.231133pt;}
.ls20_c00374{letter-spacing:-0.812933pt;}
.ls3b_c00374{letter-spacing:-0.722400pt;}
.ls2a_c00374{letter-spacing:-0.710933pt;}
.ls3f_c00374{letter-spacing:-0.702667pt;}
.ls21_c00374{letter-spacing:-0.689853pt;}
.ls39_c00374{letter-spacing:-0.676667pt;}
.ls2c_c00374{letter-spacing:-0.676200pt;}
.ls8_c00374{letter-spacing:-0.658000pt;}
.ls2e_c00374{letter-spacing:-0.619200pt;}
.ls33_c00374{letter-spacing:-0.416067pt;}
.lsb_c00374{letter-spacing:0.000000pt;}
.ls35_c00374{letter-spacing:0.722400pt;}
.ls32_c00374{letter-spacing:1.375987pt;}
.ls2_c00374{letter-spacing:2.756933pt;}
.ls37_c00374{letter-spacing:3.132360pt;}
.ls36_c00374{letter-spacing:4.133747pt;}
.ls1_c00374{letter-spacing:5.509733pt;}
.ls3d_c00374{letter-spacing:6.186400pt;}
.ls0_c00374{letter-spacing:9.643480pt;}
.ls3_c00374{letter-spacing:25.490267pt;}
.ls2f_c00374{letter-spacing:29.284500pt;}
.ws0_c00374{word-spacing:0.000000pt;}
._6_c00374{margin-left:-58.873209pt;}
._21_c00374{margin-left:-44.879568pt;}
._20_c00374{margin-left:-14.147469pt;}
._14_c00374{margin-left:-8.738483pt;}
._c_c00374{margin-left:-5.691991pt;}
._9_c00374{margin-left:-3.993183pt;}
._f_c00374{margin-left:-2.773942pt;}
._e_c00374{margin-left:-1.610158pt;}
._12_c00374{width:1.343723pt;}
._d_c00374{width:2.570889pt;}
._7_c00374{width:3.461011pt;}
._1_c00374{width:5.111374pt;}
._0_c00374{width:6.372391pt;}
._5_c00374{width:7.393625pt;}
._4_c00374{width:9.064974pt;}
._a_c00374{width:10.364821pt;}
._b_c00374{width:11.444498pt;}
._8_c00374{width:12.387174pt;}
._3_c00374{width:14.035753pt;}
._13_c00374{width:15.252789pt;}
._2_c00374{width:16.453817pt;}
._11_c00374{width:20.106074pt;}
._10_c00374{width:21.077238pt;}
._1f_c00374{width:26.900432pt;}
._1c_c00374{width:28.504330pt;}
._1b_c00374{width:29.758572pt;}
._1d_c00374{width:33.038785pt;}
._1e_c00374{width:35.022519pt;}
._1a_c00374{width:36.739698pt;}
._19_c00374{width:38.226815pt;}
._16_c00374{width:40.809591pt;}
._17_c00374{width:45.647132pt;}
._18_c00374{width:50.782385pt;}
._15_c00374{width:53.234868pt;}
.fs12_c00374{font-size:30.000000pt;}
.fs19_c00374{font-size:36.000000pt;}
.fs13_c00374{font-size:38.000000pt;}
.fse_c00374{font-size:38.666667pt;}
.fsc_c00374{font-size:39.333333pt;}
.fs15_c00374{font-size:41.333333pt;}
.fs11_c00374{font-size:42.000000pt;}
.fs17_c00374{font-size:42.666667pt;}
.fs10_c00374{font-size:43.333333pt;}
.fs18_c00374{font-size:44.000000pt;}
.fs14_c00374{font-size:44.666667pt;}
.fs16_c00374{font-size:45.333333pt;}
.fsd_c00374{font-size:46.666667pt;}
.fsf_c00374{font-size:47.333333pt;}
.fs1c_c00374{font-size:48.000000pt;}
.fs1a_c00374{font-size:50.000000pt;}
.fs1b_c00374{font-size:52.666667pt;}
.fs0_c00374{font-size:70.000000pt;}
.fsa_c00374{font-size:70.666667pt;}
.fs2_c00374{font-size:71.333333pt;}
.fsb_c00374{font-size:72.666667pt;}
.fs9_c00374{font-size:73.333333pt;}
.fs7_c00374{font-size:74.000000pt;}
.fs5_c00374{font-size:74.666667pt;}
.fs8_c00374{font-size:75.333333pt;}
.fs3_c00374{font-size:80.000000pt;}
.fs6_c00374{font-size:90.000000pt;}
.fs1_c00374{font-size:102.666667pt;}
.fs4_c00374{font-size:107.333333pt;}
.y0_c00374{bottom:0.000000pt;}
.y2a_c00374{bottom:155.519467pt;}
.y29_c00374{bottom:167.679200pt;}
.y27_c00374{bottom:180.159587pt;}
.y28_c00374{bottom:180.159733pt;}
.y26_c00374{bottom:194.239720pt;}
.y25_c00374{bottom:200.958920pt;}
.y23_c00374{bottom:258.878520pt;}
.y24_c00374{bottom:258.878920pt;}
.y22_c00374{bottom:277.759320pt;}
.y21_c00374{bottom:277.760187pt;}
.y20_c00374{bottom:296.000387pt;}
.y1f_c00374{bottom:314.559160pt;}
.y1e_c00374{bottom:367.678667pt;}
.y1c_c00374{bottom:394.559427pt;}
.y1d_c00374{bottom:394.559973pt;}
.y1b_c00374{bottom:421.119187pt;}
.y1a_c00374{bottom:473.920307pt;}
.y19_c00374{bottom:500.800227pt;}
.y18_c00374{bottom:527.359987pt;}
.y17_c00374{bottom:553.599573pt;}
.y16_c00374{bottom:553.600013pt;}
.y15_c00374{bottom:579.839600pt;}
.y14_c00374{bottom:606.399347pt;}
.y13_c00374{bottom:659.198693pt;}
.y12_c00374{bottom:685.759280pt;}
.y11_c00374{bottom:685.760067pt;}
.y10_c00374{bottom:712.319827pt;}
.yf_c00374{bottom:765.758787pt;}
.ye_c00374{bottom:765.759680pt;}
.yd_c00374{bottom:784.640507pt;}
.yc_c00374{bottom:822.400253pt;}
.yb_c00374{bottom:841.599613pt;}
.ya_c00374{bottom:841.600400pt;}
.y8_c00374{bottom:860.158747pt;}
.y9_c00374{bottom:860.159173pt;}
.y7_c00374{bottom:879.039547pt;}
.y6_c00374{bottom:879.039627pt;}
.y5_c00374{bottom:917.119547pt;}
.y3_c00374{bottom:935.999453pt;}
.y4_c00374{bottom:936.000000pt;}
.y2_c00374{bottom:988.798787pt;}
.y1_c00374{bottom:1015.678707pt;}
.h15_c00374{height:31.289062pt;}
.h1d_c00374{height:37.546875pt;}
.h20_c00374{height:38.603516pt;}
.h22_c00374{height:38.968750pt;}
.h16_c00374{height:39.632812pt;}
.h11_c00374{height:40.328125pt;}
.hf_c00374{height:41.023438pt;}
.h14_c00374{height:41.220703pt;}
.h18_c00374{height:41.656250pt;}
.h21_c00374{height:42.166667pt;}
.h1a_c00374{height:42.328125pt;}
.h1b_c00374{height:43.000000pt;}
.h1c_c00374{height:43.484375pt;}
.h13_c00374{height:43.671875pt;}
.h23_c00374{height:44.343750pt;}
.h17_c00374{height:45.015625pt;}
.h19_c00374{height:45.687500pt;}
.h10_c00374{height:46.119792pt;}
.h12_c00374{height:46.778646pt;}
.h24_c00374{height:47.437500pt;}
.h1e_c00374{height:49.414063pt;}
.h1f_c00374{height:52.049479pt;}
.h1_c00374{height:68.701172pt;}
.hd_c00374{height:69.355469pt;}
.h4_c00374{height:70.009766pt;}
.he_c00374{height:71.318359pt;}
.hb_c00374{height:71.972656pt;}
.h9_c00374{height:72.626953pt;}
.h2_c00374{height:73.007812pt;}
.hc_c00374{height:73.281250pt;}
.ha_c00374{height:73.935547pt;}
.h7_c00374{height:77.875000pt;}
.h5_c00374{height:83.437500pt;}
.h8_c00374{height:93.867188pt;}
.h3_c00374{height:107.078125pt;}
.h6_c00374{height:111.945312pt;}
.h0_c00374{height:1122.666667pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:124.798813pt;}
.x36_c00374{left:125.758933pt;}
.x25_c00374{left:139.199733pt;}
.x20_c00374{left:146.239720pt;}
.x16_c00374{left:147.199200pt;}
.x29_c00374{left:153.279747pt;}
.x3e_c00374{left:161.279333pt;}
.x4c_c00374{left:164.159200pt;}
.x37_c00374{left:168.000000pt;}
.x23_c00374{left:169.278813pt;}
.xb_c00374{left:172.798720pt;}
.x8_c00374{left:173.759720pt;}
.x2a_c00374{left:184.639200pt;}
.x24_c00374{left:186.559587pt;}
.x2_c00374{left:200.314800pt;}
.x38_c00374{left:204.479067pt;}
.x4d_c00374{left:215.039067pt;}
.x3f_c00374{left:218.879867pt;}
.x4e_c00374{left:223.359333pt;}
.x2b_c00374{left:236.159200pt;}
.x4f_c00374{left:240.959453pt;}
.x21_c00374{left:244.479453pt;}
.x3_c00374{left:249.599067pt;}
.x4_c00374{left:256.639200pt;}
.x2c_c00374{left:259.519067pt;}
.x22_c00374{left:261.439453pt;}
.x5_c00374{left:262.398920pt;}
.x17_c00374{left:265.278787pt;}
.x13_c00374{left:266.559067pt;}
.x50_c00374{left:267.518533pt;}
.x14_c00374{left:272.318787pt;}
.x2d_c00374{left:274.558533pt;}
.x51_c00374{left:275.519453pt;}
.x1b_c00374{left:278.718787pt;}
.x18_c00374{left:283.199733pt;}
.x40_c00374{left:284.799320pt;}
.x15_c00374{left:289.918920pt;}
.x52_c00374{left:298.879333pt;}
.x41_c00374{left:302.399453pt;}
.x1c_c00374{left:312.638667pt;}
.x2e_c00374{left:319.038533pt;}
.x1e_c00374{left:328.960000pt;}
.x39_c00374{left:332.480000pt;}
.x2f_c00374{left:339.518533pt;}
.x53_c00374{left:346.239173pt;}
.x26_c00374{left:359.359867pt;}
.x1f_c00374{left:365.759720pt;}
.x27_c00374{left:373.119187pt;}
.x30_c00374{left:379.199707pt;}
.x42_c00374{left:381.118693pt;}
.x3a_c00374{left:390.719200pt;}
.x54_c00374{left:391.678667pt;}
.x43_c00374{left:394.239173pt;}
.x11_c00374{left:395.198693pt;}
.x12_c00374{left:409.278813pt;}
.x31_c00374{left:416.639613pt;}
.xc_c00374{left:449.598680pt;}
.xd_c00374{left:456.959467pt;}
.x44_c00374{left:458.879840pt;}
.xe_c00374{left:462.399867pt;}
.xf_c00374{left:467.838907pt;}
.x32_c00374{left:474.878907pt;}
.x10_c00374{left:476.479987pt;}
.x45_c00374{left:478.719720pt;}
.x33_c00374{left:485.759720pt;}
.x46_c00374{left:491.519453pt;}
.x3b_c00374{left:494.078693pt;}
.x34_c00374{left:498.238773pt;}
.x3c_c00374{left:523.839840pt;}
.x35_c00374{left:530.559040pt;}
.x47_c00374{left:533.438920pt;}
.x19_c00374{left:555.518520pt;}
.x48_c00374{left:573.118693pt;}
.x1a_c00374{left:594.238773pt;}
.x49_c00374{left:607.038533pt;}
.x9_c00374{left:618.559573pt;}
.x4a_c00374{left:621.758787pt;}
.xa_c00374{left:640.960000pt;}
.x6_c00374{left:641.919440pt;}
.x3d_c00374{left:650.879840pt;}
.x4b_c00374{left:680.639573pt;}
.x1d_c00374{left:681.919840pt;}
.x28_c00374{left:683.519453pt;}
.x7_c00374{left:687.039547pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ca42c86b0ced150ed5d4a09.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_20e215e08222f4091cc18e0d.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_0afc9a18e87e28f6bdceadff.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_af29fd837fcee9d45bb96ef1.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00375{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m11_c00375{transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.mf_c00375{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{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);}
.v0_c00375{vertical-align:0.000000px;}
.ls8_c00375{letter-spacing:-10.402875px;}
.lsa_c00375{letter-spacing:-8.175038px;}
.ls10_c00375{letter-spacing:-7.426125px;}
.ls14_c00375{letter-spacing:-6.693300px;}
.lsc_c00375{letter-spacing:-6.685875px;}
.ls9_c00375{letter-spacing:-5.945625px;}
.ls11_c00375{letter-spacing:-5.731950px;}
.ls12_c00375{letter-spacing:-5.724338px;}
.lse_c00375{letter-spacing:-5.196713px;}
.ls4_c00375{letter-spacing:-4.456463px;}
.ls6_c00375{letter-spacing:-3.717000px;}
.ls3_c00375{letter-spacing:-3.025425px;}
.ls2_c00375{letter-spacing:-2.968875px;}
.ls7_c00375{letter-spacing:-2.229413px;}
.ls5_c00375{letter-spacing:-1.489163px;}
.lsf_c00375{letter-spacing:-0.764775px;}
.lsd_c00375{letter-spacing:-0.740250px;}
.lsb_c00375{letter-spacing:0.000000px;}
.ls15_c00375{letter-spacing:0.787178px;}
.ls0_c00375{letter-spacing:1.489163px;}
.ls13_c00375{letter-spacing:1.709400px;}
.ls1_c00375{letter-spacing:3.717000px;}
.ls16_c00375{letter-spacing:4.366643px;}
.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;}
._1_c00375{margin-left:-11.044569px;}
._1b_c00375{margin-left:-8.092603px;}
._10_c00375{margin-left:-6.145279px;}
._1f_c00375{margin-left:-5.014562px;}
._11_c00375{margin-left:-3.934885px;}
._c_c00375{margin-left:-1.886434px;}
._f_c00375{width:1.001641px;}
._b_c00375{width:2.210096px;}
._15_c00375{width:3.393085px;}
._d_c00375{width:4.402155px;}
._e_c00375{width:5.666612px;}
._7_c00375{width:7.150767px;}
._12_c00375{width:8.505728px;}
._1c_c00375{width:9.692803px;}
._8_c00375{width:10.856222px;}
._0_c00375{width:12.679805px;}
._13_c00375{width:13.988689px;}
._14_c00375{width:15.319862px;}
._1d_c00375{width:16.407488px;}
._20_c00375{width:18.363237px;}
._1e_c00375{width:19.986809px;}
._a_c00375{width:21.259261px;}
._9_c00375{width:23.313091px;}
._19_c00375{width:25.161502px;}
._4_c00375{width:26.310583px;}
._5_c00375{width:29.922400px;}
._18_c00375{width:34.186222px;}
._6_c00375{width:35.555892px;}
._16_c00375{width:36.816858px;}
._17_c00375{width:38.634215px;}
._2_c00375{width:42.367054px;}
._3_c00375{width:44.386397px;}
._1a_c00375{width:50.998738px;}
.fc0_c00375{color:transparent;}
.fs8_c00375{font-size:67.500000px;}
.fs7_c00375{font-size:69.750000px;}
.fsd_c00375{font-size:74.250000px;}
.fs5_c00375{font-size:75.000000px;}
.fs3_c00375{font-size:77.250000px;}
.fs9_c00375{font-size:78.000000px;}
.fs0_c00375{font-size:78.750000px;}
.fs4_c00375{font-size:79.500000px;}
.fs1_c00375{font-size:80.250000px;}
.fsc_c00375{font-size:81.750000px;}
.fs6_c00375{font-size:82.500000px;}
.fsb_c00375{font-size:83.250000px;}
.fs2_c00375{font-size:84.750000px;}
.fsa_c00375{font-size:115.500000px;}
.y0_c00375{bottom:0.000000px;}
.y2a_c00375{bottom:209.880435px;}
.y28_c00375{bottom:239.759145px;}
.y29_c00375{bottom:239.760150px;}
.y27_c00375{bottom:268.918185px;}
.y26_c00375{bottom:299.158110px;}
.y25_c00375{bottom:328.319250px;}
.y24_c00375{bottom:328.320210px;}
.y23_c00375{bottom:357.839745px;}
.y22_c00375{bottom:417.959385px;}
.y21_c00375{bottom:478.079205px;}
.y20_c00375{bottom:507.958920px;}
.y1f_c00375{bottom:507.959130px;}
.y1e_c00375{bottom:537.120270px;}
.y1d_c00375{bottom:567.000000px;}
.y1c_c00375{bottom:567.001035px;}
.y1b_c00375{bottom:626.039820px;}
.y1a_c00375{bottom:647.639100px;}
.y19_c00375{bottom:647.639490px;}
.y17_c00375{bottom:669.238335px;}
.y18_c00375{bottom:669.238770px;}
.y16_c00375{bottom:690.479235px;}
.y15_c00375{bottom:690.479985px;}
.y13_c00375{bottom:711.357720px;}
.y14_c00375{bottom:711.358605px;}
.y12_c00375{bottom:732.598635px;}
.y10_c00375{bottom:753.839055px;}
.y11_c00375{bottom:753.839535px;}
.yf_c00375{bottom:775.079955px;}
.yd_c00375{bottom:835.558935px;}
.ye_c00375{bottom:835.559685px;}
.yc_c00375{bottom:865.438665px;}
.ya_c00375{bottom:924.118125px;}
.yb_c00375{bottom:924.118740px;}
.y8_c00375{bottom:946.078920px;}
.y9_c00375{bottom:946.079400px;}
.y7_c00375{bottom:967.319820px;}
.y6_c00375{bottom:967.320720px;}
.y4_c00375{bottom:988.199250px;}
.y5_c00375{bottom:988.199340px;}
.y3_c00375{bottom:1048.679370px;}
.y2_c00375{bottom:1078.559100px;}
.y1_c00375{bottom:1137.239775px;}
.h9_c00375{height:66.247559px;}
.h8_c00375{height:68.455811px;}
.h4_c00375{height:75.816650px;}
.hb_c00375{height:76.552734px;}
.h1_c00375{height:77.288818px;}
.hf_c00375{height:77.440430px;}
.ha_c00375{height:78.024902px;}
.h6_c00375{height:78.222656px;}
.h2_c00375{height:78.760986px;}
.h5_c00375{height:80.121094px;}
.he_c00375{height:80.233154px;}
.h7_c00375{height:80.969238px;}
.hd_c00375{height:81.705322px;}
.h3_c00375{height:83.177490px;}
.hc_c00375{height:120.462891px;}
.h0_c00375{height:1263.000000px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.x26_c00375{left:137.160000px;}
.x5_c00375{left:138.599595px;}
.x4_c00375{left:139.678620px;}
.x21_c00375{left:191.520120px;}
.x8_c00375{left:192.599265px;}
.x1_c00375{left:194.039400px;}
.x30_c00375{left:218.878950px;}
.x10_c00375{left:237.238785px;}
.x1b_c00375{left:266.399250px;}
.xd_c00375{left:284.038950px;}
.x2_c00375{left:300.958350px;}
.x1c_c00375{left:304.199850px;}
.x2b_c00375{left:312.838515px;}
.x6_c00375{left:326.878950px;}
.x3_c00375{left:332.279250px;}
.x7_c00375{left:340.199385px;}
.x27_c00375{left:354.239850px;}
.x13_c00375{left:357.838950px;}
.x22_c00375{left:368.278800px;}
.x28_c00375{left:369.719100px;}
.x14_c00375{left:373.319850px;}
.x23_c00375{left:383.759535px;}
.xe_c00375{left:390.598530px;}
.x11_c00375{left:409.678530px;}
.x12_c00375{left:425.159415px;}
.x29_c00375{left:449.998950px;}
.x2a_c00375{left:470.878320px;}
.x15_c00375{left:486.718500px;}
.x2c_c00375{left:496.078770px;}
.x16_c00375{left:502.558635px;}
.x2d_c00375{left:540.359250px;}
.x33_c00375{left:557.278800px;}
.x19_c00375{left:566.279850px;}
.x34_c00375{left:569.878920px;}
.x1d_c00375{left:570.958335px;}
.x1e_c00375{left:586.439250px;}
.xf_c00375{left:590.039985px;}
.x1a_c00375{left:592.918950px;}
.x1f_c00375{left:600.838950px;}
.x20_c00375{left:614.879520px;}
.x9_c00375{left:666.719100px;}
.xb_c00375{left:669.958920px;}
.xa_c00375{left:680.759535px;}
.xc_c00375{left:683.638545px;}
.x24_c00375{left:685.439670px;}
.x2e_c00375{left:687.598530px;}
.x2f_c00375{left:702.359250px;}
.x25_c00375{left:705.599070px;}
.x17_c00375{left:715.318770px;}
.x18_c00375{left:731.519670px;}
.x31_c00375{left:748.080000px;}
.x32_c00375{left:765.719520px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls8_c00375{letter-spacing:-9.247000pt;}
.lsa_c00375{letter-spacing:-7.266700pt;}
.ls10_c00375{letter-spacing:-6.601000pt;}
.ls14_c00375{letter-spacing:-5.949600pt;}
.lsc_c00375{letter-spacing:-5.943000pt;}
.ls9_c00375{letter-spacing:-5.285000pt;}
.ls11_c00375{letter-spacing:-5.095067pt;}
.ls12_c00375{letter-spacing:-5.088300pt;}
.lse_c00375{letter-spacing:-4.619300pt;}
.ls4_c00375{letter-spacing:-3.961300pt;}
.ls6_c00375{letter-spacing:-3.304000pt;}
.ls3_c00375{letter-spacing:-2.689267pt;}
.ls2_c00375{letter-spacing:-2.639000pt;}
.ls7_c00375{letter-spacing:-1.981700pt;}
.ls5_c00375{letter-spacing:-1.323700pt;}
.lsf_c00375{letter-spacing:-0.679800pt;}
.lsd_c00375{letter-spacing:-0.658000pt;}
.lsb_c00375{letter-spacing:0.000000pt;}
.ls15_c00375{letter-spacing:0.699713pt;}
.ls0_c00375{letter-spacing:1.323700pt;}
.ls13_c00375{letter-spacing:1.519467pt;}
.ls1_c00375{letter-spacing:3.304000pt;}
.ls16_c00375{letter-spacing:3.881460pt;}
.ws0_c00375{word-spacing:0.000000pt;}
._1_c00375{margin-left:-9.817394pt;}
._1b_c00375{margin-left:-7.193425pt;}
._10_c00375{margin-left:-5.462470pt;}
._1f_c00375{margin-left:-4.457389pt;}
._11_c00375{margin-left:-3.497675pt;}
._c_c00375{margin-left:-1.676830pt;}
._f_c00375{width:0.890347pt;}
._b_c00375{width:1.964530pt;}
._15_c00375{width:3.016075pt;}
._d_c00375{width:3.913026pt;}
._e_c00375{width:5.036989pt;}
._7_c00375{width:6.356238pt;}
._12_c00375{width:7.560647pt;}
._1c_c00375{width:8.615825pt;}
._8_c00375{width:9.649975pt;}
._0_c00375{width:11.270938pt;}
._13_c00375{width:12.434391pt;}
._14_c00375{width:13.617655pt;}
._1d_c00375{width:14.584434pt;}
._20_c00375{width:16.322877pt;}
._1e_c00375{width:17.766053pt;}
._a_c00375{width:18.897121pt;}
._9_c00375{width:20.722747pt;}
._19_c00375{width:22.365779pt;}
._4_c00375{width:23.387185pt;}
._5_c00375{width:26.597689pt;}
._18_c00375{width:30.387753pt;}
._6_c00375{width:31.605238pt;}
._16_c00375{width:32.726096pt;}
._17_c00375{width:34.341525pt;}
._2_c00375{width:37.659604pt;}
._3_c00375{width:39.454575pt;}
._1a_c00375{width:45.332211pt;}
.fs8_c00375{font-size:60.000000pt;}
.fs7_c00375{font-size:62.000000pt;}
.fsd_c00375{font-size:66.000000pt;}
.fs5_c00375{font-size:66.666667pt;}
.fs3_c00375{font-size:68.666667pt;}
.fs9_c00375{font-size:69.333333pt;}
.fs0_c00375{font-size:70.000000pt;}
.fs4_c00375{font-size:70.666667pt;}
.fs1_c00375{font-size:71.333333pt;}
.fsc_c00375{font-size:72.666667pt;}
.fs6_c00375{font-size:73.333333pt;}
.fsb_c00375{font-size:74.000000pt;}
.fs2_c00375{font-size:75.333333pt;}
.fsa_c00375{font-size:102.666667pt;}
.y0_c00375{bottom:0.000000pt;}
.y2a_c00375{bottom:186.560387pt;}
.y28_c00375{bottom:213.119240pt;}
.y29_c00375{bottom:213.120133pt;}
.y27_c00375{bottom:239.038387pt;}
.y26_c00375{bottom:265.918320pt;}
.y25_c00375{bottom:291.839333pt;}
.y24_c00375{bottom:291.840187pt;}
.y23_c00375{bottom:318.079773pt;}
.y22_c00375{bottom:371.519453pt;}
.y21_c00375{bottom:424.959293pt;}
.y20_c00375{bottom:451.519040pt;}
.y1f_c00375{bottom:451.519227pt;}
.y1e_c00375{bottom:477.440240pt;}
.y1d_c00375{bottom:504.000000pt;}
.y1c_c00375{bottom:504.000920pt;}
.y1b_c00375{bottom:556.479840pt;}
.y1a_c00375{bottom:575.679200pt;}
.y19_c00375{bottom:575.679547pt;}
.y17_c00375{bottom:594.878520pt;}
.y18_c00375{bottom:594.878907pt;}
.y16_c00375{bottom:613.759320pt;}
.y15_c00375{bottom:613.759987pt;}
.y13_c00375{bottom:632.317973pt;}
.y14_c00375{bottom:632.318760pt;}
.y12_c00375{bottom:651.198787pt;}
.y10_c00375{bottom:670.079160pt;}
.y11_c00375{bottom:670.079587pt;}
.yf_c00375{bottom:688.959960pt;}
.yd_c00375{bottom:742.719053pt;}
.ye_c00375{bottom:742.719720pt;}
.yc_c00375{bottom:769.278813pt;}
.ya_c00375{bottom:821.438333pt;}
.yb_c00375{bottom:821.438880pt;}
.y8_c00375{bottom:840.959040pt;}
.y9_c00375{bottom:840.959467pt;}
.y7_c00375{bottom:859.839840pt;}
.y6_c00375{bottom:859.840640pt;}
.y4_c00375{bottom:878.399333pt;}
.y5_c00375{bottom:878.399413pt;}
.y3_c00375{bottom:932.159440pt;}
.y2_c00375{bottom:958.719200pt;}
.y1_c00375{bottom:1010.879800pt;}
.h9_c00375{height:58.886719pt;}
.h8_c00375{height:60.849609pt;}
.h4_c00375{height:67.392578pt;}
.hb_c00375{height:68.046875pt;}
.h1_c00375{height:68.701172pt;}
.hf_c00375{height:68.835938pt;}
.ha_c00375{height:69.355469pt;}
.h6_c00375{height:69.531250pt;}
.h2_c00375{height:70.009766pt;}
.h5_c00375{height:71.218750pt;}
.he_c00375{height:71.318359pt;}
.h7_c00375{height:71.972656pt;}
.hd_c00375{height:72.626953pt;}
.h3_c00375{height:73.935547pt;}
.hc_c00375{height:107.078125pt;}
.h0_c00375{height:1122.666667pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.x26_c00375{left:121.920000pt;}
.x5_c00375{left:123.199640pt;}
.x4_c00375{left:124.158773pt;}
.x21_c00375{left:170.240107pt;}
.x8_c00375{left:171.199347pt;}
.x1_c00375{left:172.479467pt;}
.x30_c00375{left:194.559067pt;}
.x10_c00375{left:210.878920pt;}
.x1b_c00375{left:236.799333pt;}
.xd_c00375{left:252.479067pt;}
.x2_c00375{left:267.518533pt;}
.x1c_c00375{left:270.399867pt;}
.x2b_c00375{left:278.078680pt;}
.x6_c00375{left:290.559067pt;}
.x3_c00375{left:295.359333pt;}
.x7_c00375{left:302.399453pt;}
.x27_c00375{left:314.879867pt;}
.x13_c00375{left:318.079067pt;}
.x22_c00375{left:327.358933pt;}
.x28_c00375{left:328.639200pt;}
.x14_c00375{left:331.839867pt;}
.x23_c00375{left:341.119587pt;}
.xe_c00375{left:347.198693pt;}
.x11_c00375{left:364.158693pt;}
.x12_c00375{left:377.919480pt;}
.x29_c00375{left:399.999067pt;}
.x2a_c00375{left:418.558507pt;}
.x15_c00375{left:432.638667pt;}
.x2c_c00375{left:440.958907pt;}
.x16_c00375{left:446.718787pt;}
.x2d_c00375{left:480.319333pt;}
.x33_c00375{left:495.358933pt;}
.x19_c00375{left:503.359867pt;}
.x34_c00375{left:506.559040pt;}
.x1d_c00375{left:507.518520pt;}
.x1e_c00375{left:521.279333pt;}
.xf_c00375{left:524.479987pt;}
.x1a_c00375{left:527.039067pt;}
.x1f_c00375{left:534.079067pt;}
.x20_c00375{left:546.559573pt;}
.x9_c00375{left:592.639200pt;}
.xb_c00375{left:595.519040pt;}
.xa_c00375{left:605.119587pt;}
.xc_c00375{left:607.678707pt;}
.x24_c00375{left:609.279707pt;}
.x2e_c00375{left:611.198693pt;}
.x2f_c00375{left:624.319333pt;}
.x25_c00375{left:627.199173pt;}
.x17_c00375{left:635.838907pt;}
.x18_c00375{left:650.239707pt;}
.x31_c00375{left:664.960000pt;}
.x32_c00375{left:680.639573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7da834a976cd89f38d56b7c9.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_a582d9d2340069a22aa15e07.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_fcdf43faf040ae5a1fdafd1c.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_7c338d233ae991b0bc4ac0d2.woff2')format("woff");}.ff4_c00376{font-family:ff4_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:ff5_c00376;src:url('chunks/assets/font_a55c05d03552861f389e2ff0.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00376;src:url('chunks/assets/font_b114a491d91a30e5b77164ff.woff2')format("woff");}.ff6_c00376{font-family:ff6_c00376;line-height:1.364746;font-style:normal;font-weight: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_c00376;src:url('chunks/assets/font_e40e89ba07bdadbc910a4379.woff2')format("woff");}.ff7_c00376{font-family:ff7_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:ff8_c00376;src:url('chunks/assets/font_b5fab0b7dfbd17d68bb2c859.woff2')format("woff");}.ff8_c00376{font-family:ff8_c00376;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2d_c00376{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m34_c00376{transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);}
.m32_c00376{transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180147,0.000000,0.000000,0.250000,0,0);}
.m2e_c00376{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m20_c00376{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m21_c00376{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00376{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m1c_c00376{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m12_c00376{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m22_c00376{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1b_c00376{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m28_c00376{transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214953,0.000000,0.000000,0.250000,0,0);}
.m27_c00376{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m19_c00376{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m26_c00376{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.me_c00376{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_c00376{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2c_c00376{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m2b_c00376{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m35_c00376{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m29_c00376{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m30_c00376{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m17_c00376{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m14_c00376{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1d_c00376{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1a_c00376{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m2f_c00376{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m5_c00376{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m18_c00376{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m37_c00376{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m38_c00376{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m33_c00376{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m10_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1e_c00376{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m31_c00376{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m36_c00376{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m25_c00376{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m24_c00376{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m16_c00376{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m2a_c00376{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m23_c00376{transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364286,0.000000,0.000000,0.250000,0,0);}
.m11_c00376{transform:matrix(0.377451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377451,0.000000,0.000000,0.250000,0,0);}
.m15_c00376{transform:matrix(0.419192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419192,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls1b_c00376{letter-spacing:-17.198100px;}
.ls22_c00376{letter-spacing:-14.785200px;}
.ls18_c00376{letter-spacing:-13.209150px;}
.ls23_c00376{letter-spacing:-11.099378px;}
.ls21_c00376{letter-spacing:-10.269518px;}
.ls34_c00376{letter-spacing:-9.600000px;}
.ls19_c00376{letter-spacing:-8.914500px;}
.lse_c00376{letter-spacing:-8.175038px;}
.ls32_c00376{letter-spacing:-7.426125px;}
.ls1a_c00376{letter-spacing:-6.685875px;}
.ls1d_c00376{letter-spacing:-6.216600px;}
.lsc_c00376{letter-spacing:-5.945625px;}
.ls27_c00376{letter-spacing:-5.729640px;}
.ls1f_c00376{letter-spacing:-5.444550px;}
.ls20_c00376{letter-spacing:-5.248800px;}
.ls9_c00376{letter-spacing:-5.196713px;}
.ls16_c00376{letter-spacing:-4.675395px;}
.ls10_c00376{letter-spacing:-4.456463px;}
.lsa_c00376{letter-spacing:-3.717000px;}
.ls2e_c00376{letter-spacing:-3.483000px;}
.ls2d_c00376{letter-spacing:-3.149213px;}
.ls35_c00376{letter-spacing:-3.087525px;}
.ls42_c00376{letter-spacing:-3.000000px;}
.ls25_c00376{letter-spacing:-2.971800px;}
.ls8_c00376{letter-spacing:-2.968875px;}
.ls3e_c00376{letter-spacing:-2.820353px;}
.ls6_c00376{letter-spacing:-2.668050px;}
.ls30_c00376{letter-spacing:-2.433375px;}
.ls43_c00376{letter-spacing:-2.324228px;}
.ls3a_c00376{letter-spacing:-2.321550px;}
.lsb_c00376{letter-spacing:-2.229413px;}
.ls28_c00376{letter-spacing:-2.058000px;}
.ls12_c00376{letter-spacing:-1.709325px;}
.ls2c_c00376{letter-spacing:-1.693350px;}
.ls2b_c00376{letter-spacing:-1.629975px;}
.ls40_c00376{letter-spacing:-1.547985px;}
.lsf_c00376{letter-spacing:-1.489163px;}
.ls38_c00376{letter-spacing:-1.454400px;}
.ls2a_c00376{letter-spacing:-1.400618px;}
.ls3b_c00376{letter-spacing:-1.070325px;}
.ls39_c00376{letter-spacing:-1.040400px;}
.ls2f_c00376{letter-spacing:-0.873923px;}
.ls13_c00376{letter-spacing:-0.850650px;}
.ls44_c00376{letter-spacing:-0.813750px;}
.ls3d_c00376{letter-spacing:-0.813638px;}
.ls17_c00376{letter-spacing:-0.811125px;}
.ls37_c00376{letter-spacing:-0.810900px;}
.ls41_c00376{letter-spacing:-0.790500px;}
.lsd_c00376{letter-spacing:-0.740250px;}
.ls31_c00376{letter-spacing:-0.658125px;}
.ls7_c00376{letter-spacing:0.000000px;}
.ls3c_c00376{letter-spacing:0.790500px;}
.ls5_c00376{letter-spacing:0.813750px;}
.ls1_c00376{letter-spacing:0.850650px;}
.ls33_c00376{letter-spacing:1.632150px;}
.ls2_c00376{letter-spacing:1.709325px;}
.ls4_c00376{letter-spacing:2.229413px;}
.ls3f_c00376{letter-spacing:2.445900px;}
.ls14_c00376{letter-spacing:2.644455px;}
.ls36_c00376{letter-spacing:3.152235px;}
.ls1e_c00376{letter-spacing:3.197250px;}
.ls24_c00376{letter-spacing:3.502980px;}
.ls26_c00376{letter-spacing:3.637710px;}
.ls29_c00376{letter-spacing:6.922530px;}
.ls11_c00376{letter-spacing:7.087500px;}
.ls0_c00376{letter-spacing:8.538600px;}
.ls3_c00376{letter-spacing:9.654750px;}
.ls1c_c00376{letter-spacing:12.737400px;}
.ls15_c00376{letter-spacing:12.835463px;}
.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;}
._9_c00376{margin-left:-61.045731px;}
._0_c00376{margin-left:-40.741500px;}
._12_c00376{margin-left:-26.071153px;}
._15_c00376{margin-left:-16.111789px;}
._14_c00376{margin-left:-11.955156px;}
._e_c00376{margin-left:-9.172265px;}
._f_c00376{margin-left:-4.709607px;}
._c_c00376{margin-left:-2.244672px;}
._8_c00376{width:1.222661px;}
._7_c00376{width:2.668644px;}
._3_c00376{width:3.863891px;}
._5_c00376{width:5.181572px;}
._4_c00376{width:6.937340px;}
._2_c00376{width:8.359075px;}
._11_c00376{width:10.090044px;}
._b_c00376{width:11.227596px;}
._6_c00376{width:12.503182px;}
._1_c00376{width:14.221745px;}
._18_c00376{width:16.255055px;}
._13_c00376{width:18.077107px;}
._a_c00376{width:20.236531px;}
._16_c00376{width:21.560546px;}
._10_c00376{width:22.680654px;}
._d_c00376{width:24.231613px;}
._19_c00376{width:29.484802px;}
._1a_c00376{width:31.255756px;}
._17_c00376{width:36.089570px;}
.fc0_c00376{color:transparent;}
.fs11_c00376{font-size:26.250000px;}
.fs12_c00376{font-size:27.000000px;}
.fs15_c00376{font-size:46.500000px;}
.fs16_c00376{font-size:47.250000px;}
.fs17_c00376{font-size:48.000000px;}
.fs1b_c00376{font-size:48.750000px;}
.fs1a_c00376{font-size:50.250000px;}
.fs19_c00376{font-size:51.000000px;}
.fs18_c00376{font-size:52.500000px;}
.fs6_c00376{font-size:70.500000px;}
.fsb_c00376{font-size:72.750000px;}
.fsd_c00376{font-size:73.500000px;}
.fsc_c00376{font-size:74.250000px;}
.fs9_c00376{font-size:75.000000px;}
.fs13_c00376{font-size:75.750000px;}
.fsa_c00376{font-size:76.500000px;}
.fs7_c00376{font-size:77.250000px;}
.fs8_c00376{font-size:78.000000px;}
.fs2_c00376{font-size:78.750000px;}
.fs3_c00376{font-size:79.500000px;}
.fs5_c00376{font-size:80.250000px;}
.fsf_c00376{font-size:81.000000px;}
.fs4_c00376{font-size:82.500000px;}
.fse_c00376{font-size:83.250000px;}
.fs10_c00376{font-size:84.000000px;}
.fs14_c00376{font-size:101.250000px;}
.fs0_c00376{font-size:115.500000px;}
.fs1_c00376{font-size:129.750000px;}
.y0_c00376{bottom:0.000000px;}
.y25_c00376{bottom:170.999400px;}
.y24_c00376{bottom:210.238785px;}
.y23_c00376{bottom:309.238785px;}
.y22_c00376{bottom:330.479685px;}
.y21_c00376{bottom:390.600135px;}
.y20_c00376{bottom:425.879520px;}
.y1f_c00376{bottom:429.119385px;}
.y1e_c00376{bottom:449.639700px;}
.y1d_c00376{bottom:449.640585px;}
.y1c_c00376{bottom:479.520315px;}
.y1b_c00376{bottom:479.520405px;}
.y1a_c00376{bottom:509.400120px;}
.y18_c00376{bottom:539.279385px;}
.y19_c00376{bottom:539.279850px;}
.y17_c00376{bottom:568.798920px;}
.y16_c00376{bottom:598.678635px;}
.y15_c00376{bottom:628.558365px;}
.y14_c00376{bottom:657.719520px;}
.y13_c00376{bottom:687.600135px;}
.y12_c00376{bottom:717.119985px;}
.y11_c00376{bottom:747.719100px;}
.y10_c00376{bottom:807.839535px;}
.yf_c00376{bottom:837.359250px;}
.ye_c00376{bottom:837.359370px;}
.yd_c00376{bottom:867.239085px;}
.yc_c00376{bottom:896.400240px;}
.yb_c00376{bottom:926.279565px;}
.ya_c00376{bottom:986.399205px;}
.y9_c00376{bottom:1007.640105px;}
.y8_c00376{bottom:1028.878965px;}
.y7_c00376{bottom:1028.879190px;}
.y6_c00376{bottom:1050.480285px;}
.y5_c00376{bottom:1071.719055px;}
.y3_c00376{bottom:1092.959355px;}
.y4_c00376{bottom:1092.959385px;}
.y2_c00376{bottom:1114.558665px;}
.y1_c00376{bottom:1135.799565px;}
.h19_c00376{height:25.942383px;}
.h1a_c00376{height:26.683594px;}
.h27_c00376{height:46.373291px;}
.h1d_c00376{height:46.863281px;}
.h1f_c00376{height:47.437500px;}
.h1e_c00376{height:47.619141px;}
.h26_c00376{height:47.845459px;}
.h22_c00376{height:48.375000px;}
.h24_c00376{height:49.317627px;}
.h25_c00376{height:49.661133px;}
.h21_c00376{height:50.053711px;}
.h23_c00376{height:50.402344px;}
.h20_c00376{height:51.884766px;}
.h8_c00376{height:73.529297px;}
.h10_c00376{height:75.875977px;}
.h1b_c00376{height:76.341797px;}
.hc_c00376{height:76.552734px;}
.h13_c00376{height:76.658203px;}
.h3_c00376{height:77.288818px;}
.h12_c00376{height:77.440430px;}
.ha_c00376{height:77.853516px;}
.h4_c00376{height:77.986084px;}
.hd_c00376{height:78.222656px;}
.h11_c00376{height:78.609375px;}
.hf_c00376{height:78.760986px;}
.hb_c00376{height:79.309570px;}
.h6_c00376{height:79.365234px;}
.h17_c00376{height:79.497070px;}
.he_c00376{height:79.787109px;}
.h9_c00376{height:80.121094px;}
.h7_c00376{height:80.876953px;}
.h5_c00376{height:80.969238px;}
.h15_c00376{height:81.632812px;}
.h14_c00376{height:81.664673px;}
.h16_c00376{height:82.274414px;}
.h18_c00376{height:83.015625px;}
.h1c_c00376{height:105.600586px;}
.h1_c00376{height:120.462891px;}
.h2_c00376{height:135.325195px;}
.h0_c00376{height:1263.000000px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.x17_c00376{left:136.436190px;}
.x33_c00376{left:137.879265px;}
.x18_c00376{left:150.479250px;}
.x2c_c00376{left:161.639100px;}
.x1c_c00376{left:163.079400px;}
.x49_c00376{left:169.559100px;}
.x3b_c00376{left:176.759100px;}
.x3e_c00376{left:188.279850px;}
.x4_c00376{left:190.799565px;}
.x1_c00376{left:192.599100px;}
.x1d_c00376{left:200.159850px;}
.x16_c00376{left:205.919535px;}
.x2_c00376{left:206.998950px;}
.x3c_c00376{left:208.080000px;}
.x3d_c00376{left:214.198785px;}
.x1e_c00376{left:219.239850px;}
.x3_c00376{left:223.199850px;}
.x3f_c00376{left:230.759100px;}
.x9_c00376{left:240.119385px;}
.x40_c00376{left:247.319250px;}
.x26_c00376{left:255.959400px;}
.x28_c00376{left:272.878950px;}
.x31_c00376{left:273.958350px;}
.x41_c00376{left:278.999385px;}
.x27_c00376{left:280.439685px;}
.x29_c00376{left:284.759100px;}
.x32_c00376{left:287.998950px;}
.x4a_c00376{left:289.080000px;}
.x1f_c00376{left:291.599700px;}
.x42_c00376{left:299.158785px;}
.x43_c00376{left:313.919535px;}
.x4b_c00376{left:316.080000px;}
.x13_c00376{left:325.438635px;}
.x14_c00376{left:331.199850px;}
.x44_c00376{left:332.279250px;}
.x15_c00376{left:337.679700px;}
.x5_c00376{left:348.478635px;}
.x35_c00376{left:351.359235px;}
.x6_c00376{left:362.878350px;}
.x36_c00376{left:372.238785px;}
.x45_c00376{left:376.918950px;}
.x20_c00376{left:385.199850px;}
.x46_c00376{left:390.598530px;}
.x37_c00376{left:391.679670px;}
.x4c_c00376{left:395.639700px;}
.x21_c00376{left:404.279850px;}
.x2d_c00376{left:423.359850px;}
.x2e_c00376{left:446.759085px;}
.x47_c00376{left:453.958920px;}
.x48_c00376{left:468.719565px;}
.x7_c00376{left:482.039985px;}
.x8_c00376{left:495.358665px;}
.x22_c00376{left:503.998950px;}
.x19_c00376{left:507.599670px;}
.x10_c00376{left:511.198785px;}
.x23_c00376{left:518.759535px;}
.x1a_c00376{left:521.638500px;}
.xa_c00376{left:525.959385px;}
.x34_c00376{left:527.399820px;}
.x38_c00376{left:535.319820px;}
.x24_c00376{left:545.759535px;}
.xb_c00376{left:567.718500px;}
.x11_c00376{left:579.239220px;}
.x2f_c00376{left:590.399235px;}
.x12_c00376{left:592.198785px;}
.x30_c00376{left:622.799520px;}
.xc_c00376{left:643.319820px;}
.x39_c00376{left:648.359250px;}
.x25_c00376{left:657.719520px;}
.x2a_c00376{left:672.119385px;}
.x2b_c00376{left:685.078770px;}
.xd_c00376{left:687.239220px;}
.x3a_c00376{left:691.919535px;}
.xe_c00376{left:710.999400px;}
.xf_c00376{left:762.118785px;}
.x1b_c00376{left:768.598575px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls1b_c00376{letter-spacing:-15.287200pt;}
.ls22_c00376{letter-spacing:-13.142400pt;}
.ls18_c00376{letter-spacing:-11.741467pt;}
.ls23_c00376{letter-spacing:-9.866113pt;}
.ls21_c00376{letter-spacing:-9.128460pt;}
.ls34_c00376{letter-spacing:-8.533333pt;}
.ls19_c00376{letter-spacing:-7.924000pt;}
.lse_c00376{letter-spacing:-7.266700pt;}
.ls32_c00376{letter-spacing:-6.601000pt;}
.ls1a_c00376{letter-spacing:-5.943000pt;}
.ls1d_c00376{letter-spacing:-5.525867pt;}
.lsc_c00376{letter-spacing:-5.285000pt;}
.ls27_c00376{letter-spacing:-5.093013pt;}
.ls1f_c00376{letter-spacing:-4.839600pt;}
.ls20_c00376{letter-spacing:-4.665600pt;}
.ls9_c00376{letter-spacing:-4.619300pt;}
.ls16_c00376{letter-spacing:-4.155907pt;}
.ls10_c00376{letter-spacing:-3.961300pt;}
.lsa_c00376{letter-spacing:-3.304000pt;}
.ls2e_c00376{letter-spacing:-3.096000pt;}
.ls2d_c00376{letter-spacing:-2.799300pt;}
.ls35_c00376{letter-spacing:-2.744467pt;}
.ls42_c00376{letter-spacing:-2.666667pt;}
.ls25_c00376{letter-spacing:-2.641600pt;}
.ls8_c00376{letter-spacing:-2.639000pt;}
.ls3e_c00376{letter-spacing:-2.506980pt;}
.ls6_c00376{letter-spacing:-2.371600pt;}
.ls30_c00376{letter-spacing:-2.163000pt;}
.ls43_c00376{letter-spacing:-2.065980pt;}
.ls3a_c00376{letter-spacing:-2.063600pt;}
.lsb_c00376{letter-spacing:-1.981700pt;}
.ls28_c00376{letter-spacing:-1.829333pt;}
.ls12_c00376{letter-spacing:-1.519400pt;}
.ls2c_c00376{letter-spacing:-1.505200pt;}
.ls2b_c00376{letter-spacing:-1.448867pt;}
.ls40_c00376{letter-spacing:-1.375987pt;}
.lsf_c00376{letter-spacing:-1.323700pt;}
.ls38_c00376{letter-spacing:-1.292800pt;}
.ls2a_c00376{letter-spacing:-1.244993pt;}
.ls3b_c00376{letter-spacing:-0.951400pt;}
.ls39_c00376{letter-spacing:-0.924800pt;}
.ls2f_c00376{letter-spacing:-0.776820pt;}
.ls13_c00376{letter-spacing:-0.756133pt;}
.ls44_c00376{letter-spacing:-0.723333pt;}
.ls3d_c00376{letter-spacing:-0.723233pt;}
.ls17_c00376{letter-spacing:-0.721000pt;}
.ls37_c00376{letter-spacing:-0.720800pt;}
.ls41_c00376{letter-spacing:-0.702667pt;}
.lsd_c00376{letter-spacing:-0.658000pt;}
.ls31_c00376{letter-spacing:-0.585000pt;}
.ls7_c00376{letter-spacing:0.000000pt;}
.ls3c_c00376{letter-spacing:0.702667pt;}
.ls5_c00376{letter-spacing:0.723333pt;}
.ls1_c00376{letter-spacing:0.756133pt;}
.ls33_c00376{letter-spacing:1.450800pt;}
.ls2_c00376{letter-spacing:1.519400pt;}
.ls4_c00376{letter-spacing:1.981700pt;}
.ls3f_c00376{letter-spacing:2.174133pt;}
.ls14_c00376{letter-spacing:2.350627pt;}
.ls36_c00376{letter-spacing:2.801987pt;}
.ls1e_c00376{letter-spacing:2.842000pt;}
.ls24_c00376{letter-spacing:3.113760pt;}
.ls26_c00376{letter-spacing:3.233520pt;}
.ls29_c00376{letter-spacing:6.153360pt;}
.ls11_c00376{letter-spacing:6.300000pt;}
.ls0_c00376{letter-spacing:7.589867pt;}
.ls3_c00376{letter-spacing:8.582000pt;}
.ls1c_c00376{letter-spacing:11.322133pt;}
.ls15_c00376{letter-spacing:11.409300pt;}
.ws0_c00376{word-spacing:0.000000pt;}
._9_c00376{margin-left:-54.262872pt;}
._0_c00376{margin-left:-36.214667pt;}
._12_c00376{margin-left:-23.174358pt;}
._15_c00376{margin-left:-14.321591pt;}
._14_c00376{margin-left:-10.626806pt;}
._e_c00376{margin-left:-8.153125pt;}
._f_c00376{margin-left:-4.186317pt;}
._c_c00376{margin-left:-1.995264pt;}
._8_c00376{width:1.086809pt;}
._7_c00376{width:2.372128pt;}
._3_c00376{width:3.434570pt;}
._5_c00376{width:4.605842pt;}
._4_c00376{width:6.166525pt;}
._2_c00376{width:7.430289pt;}
._11_c00376{width:8.968928pt;}
._b_c00376{width:9.980085pt;}
._6_c00376{width:11.113940pt;}
._1_c00376{width:12.641551pt;}
._18_c00376{width:14.448938pt;}
._13_c00376{width:16.068540pt;}
._a_c00376{width:17.988027pt;}
._16_c00376{width:19.164930pt;}
._10_c00376{width:20.160581pt;}
._d_c00376{width:21.539211pt;}
._19_c00376{width:26.208713pt;}
._1a_c00376{width:27.782894pt;}
._17_c00376{width:32.079618pt;}
.fs11_c00376{font-size:23.333333pt;}
.fs12_c00376{font-size:24.000000pt;}
.fs15_c00376{font-size:41.333333pt;}
.fs16_c00376{font-size:42.000000pt;}
.fs17_c00376{font-size:42.666667pt;}
.fs1b_c00376{font-size:43.333333pt;}
.fs1a_c00376{font-size:44.666667pt;}
.fs19_c00376{font-size:45.333333pt;}
.fs18_c00376{font-size:46.666667pt;}
.fs6_c00376{font-size:62.666667pt;}
.fsb_c00376{font-size:64.666667pt;}
.fsd_c00376{font-size:65.333333pt;}
.fsc_c00376{font-size:66.000000pt;}
.fs9_c00376{font-size:66.666667pt;}
.fs13_c00376{font-size:67.333333pt;}
.fsa_c00376{font-size:68.000000pt;}
.fs7_c00376{font-size:68.666667pt;}
.fs8_c00376{font-size:69.333333pt;}
.fs2_c00376{font-size:70.000000pt;}
.fs3_c00376{font-size:70.666667pt;}
.fs5_c00376{font-size:71.333333pt;}
.fsf_c00376{font-size:72.000000pt;}
.fs4_c00376{font-size:73.333333pt;}
.fse_c00376{font-size:74.000000pt;}
.fs10_c00376{font-size:74.666667pt;}
.fs14_c00376{font-size:90.000000pt;}
.fs0_c00376{font-size:102.666667pt;}
.fs1_c00376{font-size:115.333333pt;}
.y0_c00376{bottom:0.000000pt;}
.y25_c00376{bottom:151.999467pt;}
.y24_c00376{bottom:186.878920pt;}
.y23_c00376{bottom:274.878920pt;}
.y22_c00376{bottom:293.759720pt;}
.y21_c00376{bottom:347.200120pt;}
.y20_c00376{bottom:378.559573pt;}
.y1f_c00376{bottom:381.439453pt;}
.y1e_c00376{bottom:399.679733pt;}
.y1d_c00376{bottom:399.680520pt;}
.y1c_c00376{bottom:426.240280pt;}
.y1b_c00376{bottom:426.240360pt;}
.y1a_c00376{bottom:452.800107pt;}
.y18_c00376{bottom:479.359453pt;}
.y19_c00376{bottom:479.359867pt;}
.y17_c00376{bottom:505.599040pt;}
.y16_c00376{bottom:532.158787pt;}
.y15_c00376{bottom:558.718547pt;}
.y14_c00376{bottom:584.639573pt;}
.y13_c00376{bottom:611.200120pt;}
.y12_c00376{bottom:637.439987pt;}
.y11_c00376{bottom:664.639200pt;}
.y10_c00376{bottom:718.079587pt;}
.yf_c00376{bottom:744.319333pt;}
.ye_c00376{bottom:744.319440pt;}
.yd_c00376{bottom:770.879187pt;}
.yc_c00376{bottom:796.800213pt;}
.yb_c00376{bottom:823.359613pt;}
.ya_c00376{bottom:876.799293pt;}
.y9_c00376{bottom:895.680093pt;}
.y8_c00376{bottom:914.559080pt;}
.y7_c00376{bottom:914.559280pt;}
.y6_c00376{bottom:933.760253pt;}
.y5_c00376{bottom:952.639160pt;}
.y3_c00376{bottom:971.519427pt;}
.y4_c00376{bottom:971.519453pt;}
.y2_c00376{bottom:990.718813pt;}
.y1_c00376{bottom:1009.599613pt;}
.h19_c00376{height:23.059896pt;}
.h1a_c00376{height:23.718750pt;}
.h27_c00376{height:41.220703pt;}
.h1d_c00376{height:41.656250pt;}
.h1f_c00376{height:42.166667pt;}
.h1e_c00376{height:42.328125pt;}
.h26_c00376{height:42.529297pt;}
.h22_c00376{height:43.000000pt;}
.h24_c00376{height:43.837891pt;}
.h25_c00376{height:44.143229pt;}
.h21_c00376{height:44.492188pt;}
.h23_c00376{height:44.802083pt;}
.h20_c00376{height:46.119792pt;}
.h8_c00376{height:65.359375pt;}
.h10_c00376{height:67.445312pt;}
.h1b_c00376{height:67.859375pt;}
.hc_c00376{height:68.046875pt;}
.h13_c00376{height:68.140625pt;}
.h3_c00376{height:68.701172pt;}
.h12_c00376{height:68.835938pt;}
.ha_c00376{height:69.203125pt;}
.h4_c00376{height:69.320964pt;}
.hd_c00376{height:69.531250pt;}
.h11_c00376{height:69.875000pt;}
.hf_c00376{height:70.009766pt;}
.hb_c00376{height:70.497396pt;}
.h6_c00376{height:70.546875pt;}
.h17_c00376{height:70.664062pt;}
.he_c00376{height:70.921875pt;}
.h9_c00376{height:71.218750pt;}
.h7_c00376{height:71.890625pt;}
.h5_c00376{height:71.972656pt;}
.h15_c00376{height:72.562500pt;}
.h14_c00376{height:72.590820pt;}
.h16_c00376{height:73.132813pt;}
.h18_c00376{height:73.791667pt;}
.h1c_c00376{height:93.867188pt;}
.h1_c00376{height:107.078125pt;}
.h2_c00376{height:120.289062pt;}
.h0_c00376{height:1122.666667pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.x17_c00376{left:121.276613pt;}
.x33_c00376{left:122.559347pt;}
.x18_c00376{left:133.759333pt;}
.x2c_c00376{left:143.679200pt;}
.x1c_c00376{left:144.959467pt;}
.x49_c00376{left:150.719200pt;}
.x3b_c00376{left:157.119200pt;}
.x3e_c00376{left:167.359867pt;}
.x4_c00376{left:169.599613pt;}
.x1_c00376{left:171.199200pt;}
.x1d_c00376{left:177.919867pt;}
.x16_c00376{left:183.039587pt;}
.x2_c00376{left:183.999067pt;}
.x3c_c00376{left:184.960000pt;}
.x3d_c00376{left:190.398920pt;}
.x1e_c00376{left:194.879867pt;}
.x3_c00376{left:198.399867pt;}
.x3f_c00376{left:205.119200pt;}
.x9_c00376{left:213.439453pt;}
.x40_c00376{left:219.839333pt;}
.x26_c00376{left:227.519467pt;}
.x28_c00376{left:242.559067pt;}
.x31_c00376{left:243.518533pt;}
.x41_c00376{left:247.999453pt;}
.x27_c00376{left:249.279720pt;}
.x29_c00376{left:253.119200pt;}
.x32_c00376{left:255.999067pt;}
.x4a_c00376{left:256.960000pt;}
.x1f_c00376{left:259.199733pt;}
.x42_c00376{left:265.918920pt;}
.x43_c00376{left:279.039587pt;}
.x4b_c00376{left:280.960000pt;}
.x13_c00376{left:289.278787pt;}
.x14_c00376{left:294.399867pt;}
.x44_c00376{left:295.359333pt;}
.x15_c00376{left:300.159733pt;}
.x5_c00376{left:309.758787pt;}
.x35_c00376{left:312.319320pt;}
.x6_c00376{left:322.558533pt;}
.x36_c00376{left:330.878920pt;}
.x45_c00376{left:335.039067pt;}
.x20_c00376{left:342.399867pt;}
.x46_c00376{left:347.198693pt;}
.x37_c00376{left:348.159707pt;}
.x4c_c00376{left:351.679733pt;}
.x21_c00376{left:359.359867pt;}
.x2d_c00376{left:376.319867pt;}
.x2e_c00376{left:397.119187pt;}
.x47_c00376{left:403.519040pt;}
.x48_c00376{left:416.639613pt;}
.x7_c00376{left:428.479987pt;}
.x8_c00376{left:440.318813pt;}
.x22_c00376{left:447.999067pt;}
.x19_c00376{left:451.199707pt;}
.x10_c00376{left:454.398920pt;}
.x23_c00376{left:461.119587pt;}
.x1a_c00376{left:463.678667pt;}
.xa_c00376{left:467.519453pt;}
.x34_c00376{left:468.799840pt;}
.x38_c00376{left:475.839840pt;}
.x24_c00376{left:485.119587pt;}
.xb_c00376{left:504.638667pt;}
.x11_c00376{left:514.879307pt;}
.x2f_c00376{left:524.799320pt;}
.x12_c00376{left:526.398920pt;}
.x30_c00376{left:553.599573pt;}
.xc_c00376{left:571.839840pt;}
.x39_c00376{left:576.319333pt;}
.x25_c00376{left:584.639573pt;}
.x2a_c00376{left:597.439453pt;}
.x2b_c00376{left:608.958907pt;}
.xd_c00376{left:610.879307pt;}
.x3a_c00376{left:615.039587pt;}
.xe_c00376{left:631.999467pt;}
.xf_c00376{left:677.438920pt;}
.x1b_c00376{left:683.198733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea6968a5bccaef856abf3c66.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_6ac733a6f011e0f6498ca22a.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_d7cf02c62ec3c7f106d8a198.woff2')format("woff");}.ff3_c00377{font-family:ff3_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:ff4_c00377;src:url('chunks/assets/font_2710d616f67f7f28e08a12c7.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00377{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{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_c00377{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m1b_c00377{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.276882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276882,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279570,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls8_c00377{letter-spacing:-11.964473px;}
.ls10_c00377{letter-spacing:-7.576538px;}
.ls11_c00377{letter-spacing:-6.817200px;}
.ls7_c00377{letter-spacing:-6.811875px;}
.lsc_c00377{letter-spacing:-6.055875px;}
.lsa_c00377{letter-spacing:-5.300663px;}
.lse_c00377{letter-spacing:-5.056200px;}
.ls16_c00377{letter-spacing:-4.921875px;}
.ls1a_c00377{letter-spacing:-4.824600px;}
.lsd_c00377{letter-spacing:-4.545300px;}
.lsb_c00377{letter-spacing:-4.543088px;}
.ls12_c00377{letter-spacing:-4.088880px;}
.ls19_c00377{letter-spacing:-3.818588px;}
.ls9_c00377{letter-spacing:-3.787875px;}
.ls18_c00377{letter-spacing:-3.091365px;}
.ls6_c00377{letter-spacing:-3.031875px;}
.ls1_c00377{letter-spacing:-2.267213px;}
.ls1d_c00377{letter-spacing:-2.250600px;}
.ls1c_c00377{letter-spacing:-1.602248px;}
.ls1e_c00377{letter-spacing:-1.597920px;}
.lsf_c00377{letter-spacing:-1.585133px;}
.ls20_c00377{letter-spacing:-1.547985px;}
.ls15_c00377{letter-spacing:-1.515465px;}
.ls2_c00377{letter-spacing:-1.512000px;}
.ls3_c00377{letter-spacing:-0.756000px;}
.ls22_c00377{letter-spacing:-0.750300px;}
.ls13_c00377{letter-spacing:-0.668880px;}
.ls5_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.756000px;}
.ls14_c00377{letter-spacing:0.772500px;}
.ls21_c00377{letter-spacing:1.547985px;}
.ls1b_c00377{letter-spacing:2.325000px;}
.ls4_c00377{letter-spacing:3.031875px;}
.ls1f_c00377{letter-spacing:4.569600px;}
.ls17_c00377{letter-spacing:7.425743px;}
.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;}
._12_c00377{margin-left:-8.618339px;}
._13_c00377{margin-left:-6.692357px;}
._7_c00377{margin-left:-4.727060px;}
._6_c00377{margin-left:-2.516123px;}
._f_c00377{margin-left:-1.414653px;}
._10_c00377{width:1.583360px;}
._3_c00377{width:2.740258px;}
._0_c00377{width:4.328342px;}
._16_c00377{width:5.337069px;}
._2_c00377{width:6.507355px;}
._11_c00377{width:7.680003px;}
._4_c00377{width:9.025477px;}
._1_c00377{width:10.204243px;}
._9_c00377{width:12.247139px;}
._b_c00377{width:14.312086px;}
._5_c00377{width:15.836807px;}
._d_c00377{width:17.250793px;}
._18_c00377{width:18.492862px;}
._8_c00377{width:20.113295px;}
._a_c00377{width:22.002871px;}
._c_c00377{width:23.085199px;}
._e_c00377{width:24.717081px;}
._17_c00377{width:25.798439px;}
._14_c00377{width:27.162874px;}
._15_c00377{width:28.310746px;}
.fc0_c00377{color:transparent;}
.fs12_c00377{font-size:45.750000px;}
.fsf_c00377{font-size:46.500000px;}
.fs10_c00377{font-size:47.250000px;}
.fs11_c00377{font-size:48.000000px;}
.fse_c00377{font-size:51.000000px;}
.fsa_c00377{font-size:69.750000px;}
.fs9_c00377{font-size:72.000000px;}
.fsd_c00377{font-size:74.250000px;}
.fsb_c00377{font-size:75.000000px;}
.fsc_c00377{font-size:76.500000px;}
.fs8_c00377{font-size:78.000000px;}
.fs0_c00377{font-size:78.750000px;}
.fs7_c00377{font-size:79.500000px;}
.fs2_c00377{font-size:80.250000px;}
.fs6_c00377{font-size:81.750000px;}
.fs1_c00377{font-size:82.500000px;}
.fs4_c00377{font-size:84.000000px;}
.fs3_c00377{font-size:84.750000px;}
.fs5_c00377{font-size:115.500000px;}
.y0_c00377{bottom:0.000000px;}
.y23_c00377{bottom:169.920000px;}
.y22_c00377{bottom:309.239250px;}
.y20_c00377{bottom:338.399025px;}
.y21_c00377{bottom:338.399850px;}
.y1f_c00377{bottom:368.638935px;}
.y1e_c00377{bottom:398.518665px;}
.y1d_c00377{bottom:398.519505px;}
.y1c_c00377{bottom:428.399235px;}
.y1a_c00377{bottom:488.158155px;}
.y1b_c00377{bottom:488.158770px;}
.y19_c00377{bottom:509.399055px;}
.y18_c00377{bottom:530.277675px;}
.y17_c00377{bottom:551.518575px;}
.y16_c00377{bottom:610.919625px;}
.y15_c00377{bottom:670.679070px;}
.y14_c00377{bottom:670.680615px;}
.y13_c00377{bottom:692.279910px;}
.y12_c00377{bottom:713.160330px;}
.y11_c00377{bottom:734.038950px;}
.y10_c00377{bottom:755.279850px;}
.yf_c00377{bottom:755.280240px;}
.ye_c00377{bottom:776.879520px;}
.yd_c00377{bottom:837.000000px;}
.yc_c00377{bottom:837.001530px;}
.yb_c00377{bottom:866.881260px;}
.ya_c00377{bottom:896.760975px;}
.y9_c00377{bottom:926.280510px;}
.y8_c00377{bottom:956.160240px;}
.y7_c00377{bottom:985.679760px;}
.y6_c00377{bottom:1015.559490px;}
.y4_c00377{bottom:1045.439160px;}
.y5_c00377{bottom:1045.439205px;}
.y3_c00377{bottom:1075.679070px;}
.y2_c00377{bottom:1075.679220px;}
.y1_c00377{bottom:1135.438665px;}
.h16_c00377{height:46.107422px;}
.h13_c00377{height:46.863281px;}
.h14_c00377{height:47.619141px;}
.h15_c00377{height:48.375000px;}
.h12_c00377{height:50.053711px;}
.hc_c00377{height:68.455811px;}
.hb_c00377{height:72.562500px;}
.hf_c00377{height:72.872314px;}
.hd_c00377{height:73.608398px;}
.he_c00377{height:75.080566px;}
.ha_c00377{height:75.093750px;}
.h10_c00377{height:77.097656px;}
.h1_c00377{height:77.288818px;}
.h8_c00377{height:78.024902px;}
.h9_c00377{height:78.609375px;}
.h3_c00377{height:78.760986px;}
.h11_c00377{height:79.365234px;}
.h7_c00377{height:80.233154px;}
.h2_c00377{height:80.969238px;}
.h4_c00377{height:83.177490px;}
.h5_c00377{height:87.609375px;}
.h6_c00377{height:120.462891px;}
.h0_c00377{height:1263.000000px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.x22_c00377{left:137.158395px;}
.x2_c00377{left:138.243435px;}
.x28_c00377{left:169.559100px;}
.x18_c00377{left:174.239250px;}
.x29_c00377{left:190.799565px;}
.xd_c00377{left:191.883615px;}
.x1_c00377{left:192.958350px;}
.x9_c00377{left:201.598500px;}
.xa_c00377{left:208.080000px;}
.x19_c00377{left:211.679100px;}
.xb_c00377{left:213.839535px;}
.xc_c00377{left:223.918350px;}
.x3_c00377{left:225.719535px;}
.x2a_c00377{left:234.359850px;}
.x4_c00377{left:240.119385px;}
.x1a_c00377{left:250.559100px;}
.x7_c00377{left:251.638500px;}
.x1b_c00377{left:264.599700px;}
.x8_c00377{left:266.399250px;}
.x10_c00377{left:285.479235px;}
.x2b_c00377{left:292.679100px;}
.x1c_c00377{left:304.918350px;}
.x11_c00377{left:318.238785px;}
.x2c_c00377{left:320.399235px;}
.x1d_c00377{left:327.958350px;}
.x2d_c00377{left:366.479235px;}
.x1e_c00377{left:368.278800px;}
.x5_c00377{left:385.199850px;}
.x2e_c00377{left:399.599670px;}
.x23_c00377{left:400.679070px;}
.x6_c00377{left:413.279250px;}
.x1f_c00377{left:416.878320px;}
.x24_c00377{left:431.639100px;}
.x2f_c00377{left:474.479235px;}
.x30_c00377{left:500.038920px;}
.x12_c00377{left:508.679070px;}
.x13_c00377{left:546.118785px;}
.xe_c00377{left:550.078770px;}
.x14_c00377{left:560.518620px;}
.x25_c00377{left:583.199385px;}
.xf_c00377{left:588.958920px;}
.x15_c00377{left:593.279850px;}
.x16_c00377{left:599.398635px;}
.x26_c00377{left:604.439670px;}
.x17_c00377{left:613.080000px;}
.x20_c00377{left:681.479685px;}
.x21_c00377{left:700.918950px;}
.x27_c00377{left:729.718545px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls8_c00377{letter-spacing:-10.635087pt;}
.ls10_c00377{letter-spacing:-6.734700pt;}
.ls11_c00377{letter-spacing:-6.059733pt;}
.ls7_c00377{letter-spacing:-6.055000pt;}
.lsc_c00377{letter-spacing:-5.383000pt;}
.lsa_c00377{letter-spacing:-4.711700pt;}
.lse_c00377{letter-spacing:-4.494400pt;}
.ls16_c00377{letter-spacing:-4.375000pt;}
.ls1a_c00377{letter-spacing:-4.288533pt;}
.lsd_c00377{letter-spacing:-4.040267pt;}
.lsb_c00377{letter-spacing:-4.038300pt;}
.ls12_c00377{letter-spacing:-3.634560pt;}
.ls19_c00377{letter-spacing:-3.394300pt;}
.ls9_c00377{letter-spacing:-3.367000pt;}
.ls18_c00377{letter-spacing:-2.747880pt;}
.ls6_c00377{letter-spacing:-2.695000pt;}
.ls1_c00377{letter-spacing:-2.015300pt;}
.ls1d_c00377{letter-spacing:-2.000533pt;}
.ls1c_c00377{letter-spacing:-1.424220pt;}
.ls1e_c00377{letter-spacing:-1.420373pt;}
.lsf_c00377{letter-spacing:-1.409007pt;}
.ls20_c00377{letter-spacing:-1.375987pt;}
.ls15_c00377{letter-spacing:-1.347080pt;}
.ls2_c00377{letter-spacing:-1.344000pt;}
.ls3_c00377{letter-spacing:-0.672000pt;}
.ls22_c00377{letter-spacing:-0.666933pt;}
.ls13_c00377{letter-spacing:-0.594560pt;}
.ls5_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.672000pt;}
.ls14_c00377{letter-spacing:0.686667pt;}
.ls21_c00377{letter-spacing:1.375987pt;}
.ls1b_c00377{letter-spacing:2.066667pt;}
.ls4_c00377{letter-spacing:2.695000pt;}
.ls1f_c00377{letter-spacing:4.061867pt;}
.ls17_c00377{letter-spacing:6.600660pt;}
.ws0_c00377{word-spacing:0.000000pt;}
._12_c00377{margin-left:-7.660746pt;}
._13_c00377{margin-left:-5.948762pt;}
._7_c00377{margin-left:-4.201831pt;}
._6_c00377{margin-left:-2.236554pt;}
._f_c00377{margin-left:-1.257469pt;}
._10_c00377{width:1.407431pt;}
._3_c00377{width:2.435785pt;}
._0_c00377{width:3.847415pt;}
._16_c00377{width:4.744062pt;}
._2_c00377{width:5.784315pt;}
._11_c00377{width:6.826669pt;}
._4_c00377{width:8.022646pt;}
._1_c00377{width:9.070438pt;}
._9_c00377{width:10.886346pt;}
._b_c00377{width:12.721854pt;}
._5_c00377{width:14.077162pt;}
._d_c00377{width:15.334038pt;}
._18_c00377{width:16.438100pt;}
._8_c00377{width:17.878485pt;}
._a_c00377{width:19.558108pt;}
._c_c00377{width:20.520177pt;}
._e_c00377{width:21.970738pt;}
._17_c00377{width:22.931946pt;}
._14_c00377{width:24.144777pt;}
._15_c00377{width:25.165108pt;}
.fs12_c00377{font-size:40.666667pt;}
.fsf_c00377{font-size:41.333333pt;}
.fs10_c00377{font-size:42.000000pt;}
.fs11_c00377{font-size:42.666667pt;}
.fse_c00377{font-size:45.333333pt;}
.fsa_c00377{font-size:62.000000pt;}
.fs9_c00377{font-size:64.000000pt;}
.fsd_c00377{font-size:66.000000pt;}
.fsb_c00377{font-size:66.666667pt;}
.fsc_c00377{font-size:68.000000pt;}
.fs8_c00377{font-size:69.333333pt;}
.fs0_c00377{font-size:70.000000pt;}
.fs7_c00377{font-size:70.666667pt;}
.fs2_c00377{font-size:71.333333pt;}
.fs6_c00377{font-size:72.666667pt;}
.fs1_c00377{font-size:73.333333pt;}
.fs4_c00377{font-size:74.666667pt;}
.fs3_c00377{font-size:75.333333pt;}
.fs5_c00377{font-size:102.666667pt;}
.y0_c00377{bottom:0.000000pt;}
.y23_c00377{bottom:151.040000pt;}
.y22_c00377{bottom:274.879333pt;}
.y20_c00377{bottom:300.799133pt;}
.y21_c00377{bottom:300.799867pt;}
.y1f_c00377{bottom:327.679053pt;}
.y1e_c00377{bottom:354.238813pt;}
.y1d_c00377{bottom:354.239560pt;}
.y1c_c00377{bottom:380.799320pt;}
.y1a_c00377{bottom:433.918360pt;}
.y1b_c00377{bottom:433.918907pt;}
.y19_c00377{bottom:452.799160pt;}
.y18_c00377{bottom:471.357933pt;}
.y17_c00377{bottom:490.238733pt;}
.y16_c00377{bottom:543.039667pt;}
.y15_c00377{bottom:596.159173pt;}
.y14_c00377{bottom:596.160547pt;}
.y13_c00377{bottom:615.359920pt;}
.y12_c00377{bottom:633.920293pt;}
.y11_c00377{bottom:652.479067pt;}
.y10_c00377{bottom:671.359867pt;}
.yf_c00377{bottom:671.360213pt;}
.ye_c00377{bottom:690.559573pt;}
.yd_c00377{bottom:744.000000pt;}
.yc_c00377{bottom:744.001360pt;}
.yb_c00377{bottom:770.561120pt;}
.ya_c00377{bottom:797.120867pt;}
.y9_c00377{bottom:823.360453pt;}
.y8_c00377{bottom:849.920213pt;}
.y7_c00377{bottom:876.159787pt;}
.y6_c00377{bottom:902.719547pt;}
.y4_c00377{bottom:929.279253pt;}
.y5_c00377{bottom:929.279293pt;}
.y3_c00377{bottom:956.159173pt;}
.y2_c00377{bottom:956.159307pt;}
.y1_c00377{bottom:1009.278813pt;}
.h16_c00377{height:40.984375pt;}
.h13_c00377{height:41.656250pt;}
.h14_c00377{height:42.328125pt;}
.h15_c00377{height:43.000000pt;}
.h12_c00377{height:44.492188pt;}
.hc_c00377{height:60.849609pt;}
.hb_c00377{height:64.500000pt;}
.hf_c00377{height:64.775391pt;}
.hd_c00377{height:65.429688pt;}
.he_c00377{height:66.738281pt;}
.ha_c00377{height:66.750000pt;}
.h10_c00377{height:68.531250pt;}
.h1_c00377{height:68.701172pt;}
.h8_c00377{height:69.355469pt;}
.h9_c00377{height:69.875000pt;}
.h3_c00377{height:70.009766pt;}
.h11_c00377{height:70.546875pt;}
.h7_c00377{height:71.318359pt;}
.h2_c00377{height:71.972656pt;}
.h4_c00377{height:73.935547pt;}
.h5_c00377{height:77.875000pt;}
.h6_c00377{height:107.078125pt;}
.h0_c00377{height:1122.666667pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.x22_c00377{left:121.918573pt;}
.x2_c00377{left:122.883053pt;}
.x28_c00377{left:150.719200pt;}
.x18_c00377{left:154.879333pt;}
.x29_c00377{left:169.599613pt;}
.xd_c00377{left:170.563213pt;}
.x1_c00377{left:171.518533pt;}
.x9_c00377{left:179.198667pt;}
.xa_c00377{left:184.960000pt;}
.x19_c00377{left:188.159200pt;}
.xb_c00377{left:190.079587pt;}
.xc_c00377{left:199.038533pt;}
.x3_c00377{left:200.639587pt;}
.x2a_c00377{left:208.319867pt;}
.x4_c00377{left:213.439453pt;}
.x1a_c00377{left:222.719200pt;}
.x7_c00377{left:223.678667pt;}
.x1b_c00377{left:235.199733pt;}
.x8_c00377{left:236.799333pt;}
.x10_c00377{left:253.759320pt;}
.x2b_c00377{left:260.159200pt;}
.x1c_c00377{left:271.038533pt;}
.x11_c00377{left:282.878920pt;}
.x2c_c00377{left:284.799320pt;}
.x1d_c00377{left:291.518533pt;}
.x2d_c00377{left:325.759320pt;}
.x1e_c00377{left:327.358933pt;}
.x5_c00377{left:342.399867pt;}
.x2e_c00377{left:355.199707pt;}
.x23_c00377{left:356.159173pt;}
.x6_c00377{left:367.359333pt;}
.x1f_c00377{left:370.558507pt;}
.x24_c00377{left:383.679200pt;}
.x2f_c00377{left:421.759320pt;}
.x30_c00377{left:444.479040pt;}
.x12_c00377{left:452.159173pt;}
.x13_c00377{left:485.438920pt;}
.xe_c00377{left:488.958907pt;}
.x14_c00377{left:498.238773pt;}
.x25_c00377{left:518.399453pt;}
.xf_c00377{left:523.519040pt;}
.x15_c00377{left:527.359867pt;}
.x16_c00377{left:532.798787pt;}
.x26_c00377{left:537.279707pt;}
.x17_c00377{left:544.960000pt;}
.x20_c00377{left:605.759720pt;}
.x21_c00377{left:623.039067pt;}
.x27_c00377{left:648.638707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ded2a78699ed55511f8cc14.woff2')format("woff");}.ff1_c00378{font-family:ff1_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:ff2_c00378;src:url('chunks/assets/font_0d2d7465614f2afb028fb5c8.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_1ad9e7ece4b28c222269288b.woff2')format("woff");}.ff3_c00378{font-family:ff3_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:ff4_c00378;src:url('chunks/assets/font_5ee44e8a02fce5a14d0551ce.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.364746;font-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_c00378{transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154762,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.229786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229786,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m1a_c00378{transform:matrix(0.231258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231258,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m11_c00378{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m18_c00378{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls11_c00378{letter-spacing:-10.836000px;}
.lsf_c00378{letter-spacing:-10.111500px;}
.ls19_c00378{letter-spacing:-7.946663px;}
.ls12_c00378{letter-spacing:-7.796250px;}
.ls1a_c00378{letter-spacing:-7.222163px;}
.ls9_c00378{letter-spacing:-6.504750px;}
.lsd_c00378{letter-spacing:-5.998200px;}
.ls5_c00378{letter-spacing:-5.779463px;}
.ls8_c00378{letter-spacing:-5.054963px;}
.ls14_c00378{letter-spacing:-4.842338px;}
.ls4_c00378{letter-spacing:-4.330463px;}
.ls15_c00378{letter-spacing:-3.782220px;}
.ls3_c00378{letter-spacing:-3.614625px;}
.lsc_c00378{letter-spacing:-3.241350px;}
.ls6_c00378{letter-spacing:-2.890125px;}
.ls17_c00378{letter-spacing:-2.315820px;}
.ls7_c00378{letter-spacing:-2.165625px;}
.ls13_c00378{letter-spacing:-1.573703px;}
.ls18_c00378{letter-spacing:-1.560000px;}
.lsb_c00378{letter-spacing:-1.441125px;}
.lse_c00378{letter-spacing:-0.724500px;}
.ls2_c00378{letter-spacing:0.000000px;}
.lsa_c00378{letter-spacing:0.724500px;}
.ls0_c00378{letter-spacing:1.441125px;}
.ls16_c00378{letter-spacing:2.998800px;}
.ls10_c00378{letter-spacing:3.630825px;}
.ls1_c00378{letter-spacing:4.330463px;}
.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;}
._4_c00378{margin-left:-14.293096px;}
._16_c00378{margin-left:-10.323164px;}
._5_c00378{margin-left:-7.402673px;}
._10_c00378{margin-left:-6.354778px;}
._1b_c00378{margin-left:-3.456966px;}
._3_c00378{margin-left:-1.244438px;}
._11_c00378{width:1.270548px;}
._15_c00378{width:2.296509px;}
._c_c00378{width:3.331255px;}
._14_c00378{width:4.440409px;}
._a_c00378{width:5.465077px;}
._d_c00378{width:6.523932px;}
._0_c00378{width:7.544452px;}
._8_c00378{width:8.943464px;}
._7_c00378{width:10.148115px;}
._2_c00378{width:11.402899px;}
._9_c00378{width:12.625691px;}
._12_c00378{width:13.703331px;}
._1_c00378{width:14.928890px;}
._b_c00378{width:16.288881px;}
._e_c00378{width:18.113642px;}
._f_c00378{width:19.930137px;}
._17_c00378{width:21.931572px;}
._6_c00378{width:23.381056px;}
._19_c00378{width:25.769760px;}
._1a_c00378{width:27.050553px;}
._13_c00378{width:29.281844px;}
._18_c00378{width:33.383187px;}
.fc0_c00378{color:transparent;}
.fs9_c00378{font-size:69.000000px;}
.fs5_c00378{font-size:73.500000px;}
.fsc_c00378{font-size:76.500000px;}
.fs6_c00378{font-size:78.000000px;}
.fs1_c00378{font-size:78.750000px;}
.fsd_c00378{font-size:79.327800px;}
.fs2_c00378{font-size:80.250000px;}
.fs0_c00378{font-size:80.282400px;}
.fsb_c00378{font-size:81.750000px;}
.fs7_c00378{font-size:82.500000px;}
.fsa_c00378{font-size:84.000000px;}
.fs4_c00378{font-size:90.000000px;}
.fs3_c00378{font-size:96.000000px;}
.fs8_c00378{font-size:115.500000px;}
.y0_c00378{bottom:0.000000px;}
.y27_c00378{bottom:271.437285px;}
.y26_c00378{bottom:301.679310px;}
.y25_c00378{bottom:331.559025px;}
.y24_c00378{bottom:361.798950px;}
.y23_c00378{bottom:361.799235px;}
.y22_c00378{bottom:391.318770px;}
.y21_c00378{bottom:391.318800px;}
.y1f_c00378{bottom:420.479235px;}
.y20_c00378{bottom:420.840135px;}
.y1e_c00378{bottom:450.360630px;}
.y1d_c00378{bottom:480.958920px;}
.y1c_c00378{bottom:480.959820px;}
.y1b_c00378{bottom:510.839535px;}
.y1a_c00378{bottom:510.839715px;}
.y19_c00378{bottom:540.359250px;}
.y18_c00378{bottom:540.360150px;}
.y17_c00378{bottom:570.600060px;}
.y16_c00378{bottom:600.479775px;}
.y15_c00378{bottom:629.999310px;}
.y14_c00378{bottom:660.239220px;}
.y12_c00378{bottom:779.399190px;}
.y13_c00378{bottom:779.399235px;}
.y10_c00378{bottom:809.639055px;}
.y11_c00378{bottom:809.639100px;}
.yf_c00378{bottom:839.878965px;}
.yd_c00378{bottom:870.118695px;}
.ye_c00378{bottom:870.118740px;}
.yc_c00378{bottom:900.358605px;}
.yb_c00378{bottom:900.359505px;}
.ya_c00378{bottom:930.239220px;}
.y9_c00378{bottom:959.759040px;}
.y8_c00378{bottom:959.759400px;}
.y7_c00378{bottom:990.359805px;}
.y6_c00378{bottom:990.359895px;}
.y5_c00378{bottom:1020.239610px;}
.y4_c00378{bottom:1050.119340px;}
.y3_c00378{bottom:1080.359250px;}
.y2_c00378{bottom:1110.599025px;}
.y1_c00378{bottom:1140.479640px;}
.ha_c00378{height:71.964844px;}
.h10_c00378{height:75.080566px;}
.h7_c00378{height:76.552734px;}
.h6_c00378{height:76.658203px;}
.h11_c00378{height:77.097656px;}
.h2_c00378{height:77.288818px;}
.h12_c00378{height:77.855897px;}
.hf_c00378{height:78.609375px;}
.h3_c00378{height:78.760986px;}
.h1_c00378{height:78.792785px;}
.hc_c00378{height:79.365234px;}
.he_c00378{height:80.791992px;}
.hd_c00378{height:80.876953px;}
.h8_c00378{height:80.969238px;}
.hb_c00378{height:82.441406px;}
.h5_c00378{height:93.867188px;}
.h4_c00378{height:100.125000px;}
.h9_c00378{height:120.462891px;}
.h0_c00378{height:1263.000000px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.x1d_c00378{left:133.559685px;}
.x1e_c00378{left:134.634630px;}
.xe_c00378{left:186.476370px;}
.x3_c00378{left:187.918950px;}
.x1_c00378{left:189.359250px;}
.x4_c00378{left:200.519100px;}
.x27_c00378{left:211.679100px;}
.x23_c00378{left:217.438635px;}
.x24_c00378{left:235.439250px;}
.x28_c00378{left:246.958350px;}
.xf_c00378{left:262.080000px;}
.x29_c00378{left:269.279850px;}
.x1a_c00378{left:275.039385px;}
.x10_c00378{left:276.118785px;}
.x35_c00378{left:289.080000px;}
.x1c_c00378{left:309.239250px;}
.x5_c00378{left:316.080000px;}
.x6_c00378{left:325.079385px;}
.x2_c00378{left:334.439685px;}
.x2a_c00378{left:342.359850px;}
.x33_c00378{left:355.319250px;}
.x2b_c00378{left:358.199850px;}
.x34_c00378{left:371.159385px;}
.x2c_c00378{left:388.439715px;}
.x25_c00378{left:414.719565px;}
.x36_c00378{left:420.838530px;}
.xa_c00378{left:427.319820px;}
.x26_c00378{left:442.439670px;}
.xb_c00378{left:443.519070px;}
.x2d_c00378{left:461.878920px;}
.x16_c00378{left:483.478635px;}
.x11_c00378{left:486.000000px;}
.x12_c00378{left:499.679670px;}
.x17_c00378{left:504.719100px;}
.x21_c00378{left:506.518620px;}
.x22_c00378{left:524.159820px;}
.x7_c00378{left:571.678530px;}
.x2e_c00378{left:575.279250px;}
.x8_c00378{left:579.239220px;}
.x15_c00378{left:594.359250px;}
.x18_c00378{left:597.599070px;}
.x19_c00378{left:610.199385px;}
.x2f_c00378{left:622.799520px;}
.x30_c00378{left:665.998950px;}
.x31_c00378{left:687.959385px;}
.x1b_c00378{left:696.958920px;}
.x13_c00378{left:701.639100px;}
.x32_c00378{left:713.519070px;}
.x14_c00378{left:715.679670px;}
.x1f_c00378{left:742.318770px;}
.xc_c00378{left:749.879520px;}
.x20_c00378{left:760.319235px;}
.xd_c00378{left:761.398635px;}
.x9_c00378{left:769.679715px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls11_c00378{letter-spacing:-9.632000pt;}
.lsf_c00378{letter-spacing:-8.988000pt;}
.ls19_c00378{letter-spacing:-7.063700pt;}
.ls12_c00378{letter-spacing:-6.930000pt;}
.ls1a_c00378{letter-spacing:-6.419700pt;}
.ls9_c00378{letter-spacing:-5.782000pt;}
.lsd_c00378{letter-spacing:-5.331733pt;}
.ls5_c00378{letter-spacing:-5.137300pt;}
.ls8_c00378{letter-spacing:-4.493300pt;}
.ls14_c00378{letter-spacing:-4.304300pt;}
.ls4_c00378{letter-spacing:-3.849300pt;}
.ls15_c00378{letter-spacing:-3.361973pt;}
.ls3_c00378{letter-spacing:-3.213000pt;}
.lsc_c00378{letter-spacing:-2.881200pt;}
.ls6_c00378{letter-spacing:-2.569000pt;}
.ls17_c00378{letter-spacing:-2.058507pt;}
.ls7_c00378{letter-spacing:-1.925000pt;}
.ls13_c00378{letter-spacing:-1.398847pt;}
.ls18_c00378{letter-spacing:-1.386667pt;}
.lsb_c00378{letter-spacing:-1.281000pt;}
.lse_c00378{letter-spacing:-0.644000pt;}
.ls2_c00378{letter-spacing:0.000000pt;}
.lsa_c00378{letter-spacing:0.644000pt;}
.ls0_c00378{letter-spacing:1.281000pt;}
.ls16_c00378{letter-spacing:2.665600pt;}
.ls10_c00378{letter-spacing:3.227400pt;}
.ls1_c00378{letter-spacing:3.849300pt;}
.ws0_c00378{word-spacing:0.000000pt;}
._4_c00378{margin-left:-12.704974pt;}
._16_c00378{margin-left:-9.176146pt;}
._5_c00378{margin-left:-6.580154pt;}
._10_c00378{margin-left:-5.648692pt;}
._1b_c00378{margin-left:-3.072859pt;}
._3_c00378{margin-left:-1.106167pt;}
._11_c00378{width:1.129376pt;}
._15_c00378{width:2.041341pt;}
._c_c00378{width:2.961116pt;}
._14_c00378{width:3.947030pt;}
._a_c00378{width:4.857846pt;}
._d_c00378{width:5.799050pt;}
._0_c00378{width:6.706180pt;}
._8_c00378{width:7.949746pt;}
._7_c00378{width:9.020547pt;}
._2_c00378{width:10.135910pt;}
._9_c00378{width:11.222837pt;}
._12_c00378{width:12.180739pt;}
._1_c00378{width:13.270125pt;}
._b_c00378{width:14.479006pt;}
._e_c00378{width:16.101015pt;}
._f_c00378{width:17.715677pt;}
._17_c00378{width:19.494730pt;}
._6_c00378{width:20.783161pt;}
._19_c00378{width:22.906453pt;}
._1a_c00378{width:24.044936pt;}
._13_c00378{width:26.028306pt;}
._18_c00378{width:29.673944pt;}
.fs9_c00378{font-size:61.333333pt;}
.fs5_c00378{font-size:65.333333pt;}
.fsc_c00378{font-size:68.000000pt;}
.fs6_c00378{font-size:69.333333pt;}
.fs1_c00378{font-size:70.000000pt;}
.fsd_c00378{font-size:70.513600pt;}
.fs2_c00378{font-size:71.333333pt;}
.fs0_c00378{font-size:71.362133pt;}
.fsb_c00378{font-size:72.666667pt;}
.fs7_c00378{font-size:73.333333pt;}
.fsa_c00378{font-size:74.666667pt;}
.fs4_c00378{font-size:80.000000pt;}
.fs3_c00378{font-size:85.333333pt;}
.fs8_c00378{font-size:102.666667pt;}
.y0_c00378{bottom:0.000000pt;}
.y27_c00378{bottom:241.277587pt;}
.y26_c00378{bottom:268.159387pt;}
.y25_c00378{bottom:294.719133pt;}
.y24_c00378{bottom:321.599067pt;}
.y23_c00378{bottom:321.599320pt;}
.y22_c00378{bottom:347.838907pt;}
.y21_c00378{bottom:347.838933pt;}
.y1f_c00378{bottom:373.759320pt;}
.y20_c00378{bottom:374.080120pt;}
.y1e_c00378{bottom:400.320560pt;}
.y1d_c00378{bottom:427.519040pt;}
.y1c_c00378{bottom:427.519840pt;}
.y1b_c00378{bottom:454.079587pt;}
.y1a_c00378{bottom:454.079747pt;}
.y19_c00378{bottom:480.319333pt;}
.y18_c00378{bottom:480.320133pt;}
.y17_c00378{bottom:507.200053pt;}
.y16_c00378{bottom:533.759800pt;}
.y15_c00378{bottom:559.999387pt;}
.y14_c00378{bottom:586.879307pt;}
.y12_c00378{bottom:692.799280pt;}
.y13_c00378{bottom:692.799320pt;}
.y10_c00378{bottom:719.679160pt;}
.y11_c00378{bottom:719.679200pt;}
.yf_c00378{bottom:746.559080pt;}
.yd_c00378{bottom:773.438840pt;}
.ye_c00378{bottom:773.438880pt;}
.yc_c00378{bottom:800.318760pt;}
.yb_c00378{bottom:800.319560pt;}
.ya_c00378{bottom:826.879307pt;}
.y9_c00378{bottom:853.119147pt;}
.y8_c00378{bottom:853.119467pt;}
.y7_c00378{bottom:880.319827pt;}
.y6_c00378{bottom:880.319907pt;}
.y5_c00378{bottom:906.879653pt;}
.y4_c00378{bottom:933.439413pt;}
.y3_c00378{bottom:960.319333pt;}
.y2_c00378{bottom:987.199133pt;}
.y1_c00378{bottom:1013.759680pt;}
.ha_c00378{height:63.968750pt;}
.h10_c00378{height:66.738281pt;}
.h7_c00378{height:68.046875pt;}
.h6_c00378{height:68.140625pt;}
.h11_c00378{height:68.531250pt;}
.h2_c00378{height:68.701172pt;}
.h12_c00378{height:69.205242pt;}
.hf_c00378{height:69.875000pt;}
.h3_c00378{height:70.009766pt;}
.h1_c00378{height:70.038031pt;}
.hc_c00378{height:70.546875pt;}
.he_c00378{height:71.815104pt;}
.hd_c00378{height:71.890625pt;}
.h8_c00378{height:71.972656pt;}
.hb_c00378{height:73.281250pt;}
.h5_c00378{height:83.437500pt;}
.h4_c00378{height:89.000000pt;}
.h9_c00378{height:107.078125pt;}
.h0_c00378{height:1122.666667pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.x1d_c00378{left:118.719720pt;}
.x1e_c00378{left:119.675227pt;}
.xe_c00378{left:165.756773pt;}
.x3_c00378{left:167.039067pt;}
.x1_c00378{left:168.319333pt;}
.x4_c00378{left:178.239200pt;}
.x27_c00378{left:188.159200pt;}
.x23_c00378{left:193.278787pt;}
.x24_c00378{left:209.279333pt;}
.x28_c00378{left:219.518533pt;}
.xf_c00378{left:232.960000pt;}
.x29_c00378{left:239.359867pt;}
.x1a_c00378{left:244.479453pt;}
.x10_c00378{left:245.438920pt;}
.x35_c00378{left:256.960000pt;}
.x1c_c00378{left:274.879333pt;}
.x5_c00378{left:280.960000pt;}
.x6_c00378{left:288.959453pt;}
.x2_c00378{left:297.279720pt;}
.x2a_c00378{left:304.319867pt;}
.x33_c00378{left:315.839333pt;}
.x2b_c00378{left:318.399867pt;}
.x34_c00378{left:329.919453pt;}
.x2c_c00378{left:345.279747pt;}
.x25_c00378{left:368.639613pt;}
.x36_c00378{left:374.078693pt;}
.xa_c00378{left:379.839840pt;}
.x26_c00378{left:393.279707pt;}
.xb_c00378{left:394.239173pt;}
.x2d_c00378{left:410.559040pt;}
.x16_c00378{left:429.758787pt;}
.x11_c00378{left:432.000000pt;}
.x12_c00378{left:444.159707pt;}
.x17_c00378{left:448.639200pt;}
.x21_c00378{left:450.238773pt;}
.x22_c00378{left:465.919840pt;}
.x7_c00378{left:508.158693pt;}
.x2e_c00378{left:511.359333pt;}
.x8_c00378{left:514.879307pt;}
.x15_c00378{left:528.319333pt;}
.x18_c00378{left:531.199173pt;}
.x19_c00378{left:542.399453pt;}
.x2f_c00378{left:553.599573pt;}
.x30_c00378{left:591.999067pt;}
.x31_c00378{left:611.519453pt;}
.x1b_c00378{left:619.519040pt;}
.x13_c00378{left:623.679200pt;}
.x32_c00378{left:634.239173pt;}
.x14_c00378{left:636.159707pt;}
.x1f_c00378{left:659.838907pt;}
.xc_c00378{left:666.559573pt;}
.x20_c00378{left:675.839320pt;}
.xd_c00378{left:676.798787pt;}
.x9_c00378{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_066aa36e292fc8c105d03195.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_26159b0e38be278e44aab2e7.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_36964ec44de992d12f711b04.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_dc2b47b9dee05dfb8ad57a73.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_e787879fe3853af847deb7eb.woff2')format("woff");}.ff5_c00379{font-family:ff5_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;}
@font-face{font-family:ff6_c00379;src:url('chunks/assets/font_1796bb5468866be68775c74c.woff2')format("woff");}.ff6_c00379{font-family:ff6_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;}
.m25_c00379{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m26_c00379{transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.181604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181604,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.189778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189778,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209821,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m30_c00379{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m27_c00379{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00379{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m2f_c00379{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{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_c00379{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{transform:matrix(0.274074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274074,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{transform:matrix(0.320588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320588,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{transform:matrix(0.402344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402344,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.lsc_c00379{letter-spacing:-14.866500px;}
.ls25_c00379{letter-spacing:-13.516800px;}
.ls18_c00379{letter-spacing:-12.284625px;}
.ls14_c00379{letter-spacing:-10.052198px;}
.lsd_c00379{letter-spacing:-9.828000px;}
.ls1c_c00379{letter-spacing:-8.914500px;}
.ls9_c00379{letter-spacing:-7.426125px;}
.ls11_c00379{letter-spacing:-6.687150px;}
.lsf_c00379{letter-spacing:-6.685875px;}
.lsa_c00379{letter-spacing:-6.219803px;}
.ls2_c00379{letter-spacing:-5.945625px;}
.ls17_c00379{letter-spacing:-5.645760px;}
.ls6_c00379{letter-spacing:-5.196713px;}
.ls2d_c00379{letter-spacing:-5.070577px;}
.lse_c00379{letter-spacing:-4.921875px;}
.ls16_c00379{letter-spacing:-4.634850px;}
.ls12_c00379{letter-spacing:-4.498905px;}
.ls8_c00379{letter-spacing:-4.456463px;}
.ls29_c00379{letter-spacing:-4.276275px;}
.ls1a_c00379{letter-spacing:-4.141155px;}
.ls4_c00379{letter-spacing:-3.717000px;}
.ls21_c00379{letter-spacing:-3.556800px;}
.ls32_c00379{letter-spacing:-3.445650px;}
.ls35_c00379{letter-spacing:-3.422738px;}
.ls2b_c00379{letter-spacing:-3.317423px;}
.ls0_c00379{letter-spacing:-3.113550px;}
.ls1_c00379{letter-spacing:-2.968875px;}
.ls23_c00379{letter-spacing:-2.362500px;}
.ls26_c00379{letter-spacing:-2.362200px;}
.ls2a_c00379{letter-spacing:-2.325000px;}
.ls15_c00379{letter-spacing:-2.293553px;}
.ls1d_c00379{letter-spacing:-2.251463px;}
.ls5_c00379{letter-spacing:-2.229413px;}
.ls13_c00379{letter-spacing:-2.205000px;}
.ls19_c00379{letter-spacing:-1.637700px;}
.ls30_c00379{letter-spacing:-1.604250px;}
.ls33_c00379{letter-spacing:-1.550400px;}
.ls20_c00379{letter-spacing:-1.547985px;}
.ls7_c00379{letter-spacing:-1.489163px;}
.ls24_c00379{letter-spacing:-1.478925px;}
.ls2f_c00379{letter-spacing:-0.994500px;}
.ls31_c00379{letter-spacing:-0.859200px;}
.ls2e_c00379{letter-spacing:-0.803250px;}
.ls1f_c00379{letter-spacing:-0.791700px;}
.ls3_c00379{letter-spacing:-0.740250px;}
.ls22_c00379{letter-spacing:-0.724935px;}
.lsb_c00379{letter-spacing:0.000000px;}
.ls10_c00379{letter-spacing:0.735750px;}
.ls28_c00379{letter-spacing:0.776085px;}
.ls34_c00379{letter-spacing:1.547985px;}
.ls1b_c00379{letter-spacing:3.100500px;}
.ls2c_c00379{letter-spacing:3.101550px;}
.ls1e_c00379{letter-spacing:3.874500px;}
.ls27_c00379{letter-spacing:4.635900px;}
.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;}
._9_c00379{margin-left:-5.861080px;}
._c_c00379{margin-left:-3.919967px;}
._a_c00379{margin-left:-2.230586px;}
._8_c00379{margin-left:-1.142350px;}
._b_c00379{width:1.940965px;}
._0_c00379{width:3.606869px;}
._2_c00379{width:4.723960px;}
._18_c00379{width:6.030512px;}
._1_c00379{width:7.316083px;}
._7_c00379{width:8.745098px;}
._4_c00379{width:9.959438px;}
._f_c00379{width:11.910596px;}
._5_c00379{width:13.003081px;}
._d_c00379{width:14.666667px;}
._19_c00379{width:16.149292px;}
._e_c00379{width:17.196385px;}
._13_c00379{width:18.711267px;}
._3_c00379{width:19.846070px;}
._16_c00379{width:21.567099px;}
._15_c00379{width:23.690303px;}
._6_c00379{width:24.743176px;}
._10_c00379{width:26.551380px;}
._14_c00379{width:27.671145px;}
._11_c00379{width:29.101112px;}
._12_c00379{width:30.228529px;}
._17_c00379{width:31.662076px;}
.fc0_c00379{color:transparent;}
.fs17_c00379{font-size:42.750000px;}
.fs11_c00379{font-size:43.500000px;}
.fs16_c00379{font-size:45.000000px;}
.fs12_c00379{font-size:46.500000px;}
.fs10_c00379{font-size:47.250000px;}
.fs13_c00379{font-size:48.000000px;}
.fs18_c00379{font-size:48.750000px;}
.fs15_c00379{font-size:50.250000px;}
.fs14_c00379{font-size:51.000000px;}
.fse_c00379{font-size:63.750000px;}
.fsf_c00379{font-size:72.750000px;}
.fsb_c00379{font-size:75.000000px;}
.fs8_c00379{font-size:77.250000px;}
.fsa_c00379{font-size:78.000000px;}
.fs1_c00379{font-size:78.750000px;}
.fs6_c00379{font-size:79.500000px;}
.fs3_c00379{font-size:80.250000px;}
.fs9_c00379{font-size:81.750000px;}
.fs4_c00379{font-size:82.500000px;}
.fs0_c00379{font-size:83.250000px;}
.fs7_c00379{font-size:84.000000px;}
.fs2_c00379{font-size:84.750000px;}
.fs5_c00379{font-size:87.456000px;}
.fsd_c00379{font-size:96.000000px;}
.fsc_c00379{font-size:101.250000px;}
.y0_c00379{bottom:0.000000px;}
.y25_c00379{bottom:172.439715px;}
.y24_c00379{bottom:188.639100px;}
.y23_c00379{bottom:303.479625px;}
.y22_c00379{bottom:333.719535px;}
.y21_c00379{bottom:333.720720px;}
.y20_c00379{bottom:363.240255px;}
.y1f_c00379{bottom:393.119985px;}
.y1c_c00379{bottom:422.639700px;}
.y1d_c00379{bottom:423.359850px;}
.y1e_c00379{bottom:424.080000px;}
.y1b_c00379{bottom:452.879520px;}
.y1a_c00379{bottom:482.760135px;}
.y19_c00379{bottom:542.879100px;}
.y18_c00379{bottom:572.398635px;}
.y17_c00379{bottom:572.398890px;}
.y16_c00379{bottom:601.920225px;}
.y15_c00379{bottom:631.799955px;}
.y14_c00379{bottom:661.679670px;}
.y13_c00379{bottom:661.679850px;}
.y11_c00379{bottom:691.199295px;}
.y12_c00379{bottom:691.199385px;}
.y10_c00379{bottom:721.439205px;}
.yf_c00379{bottom:780.478095px;}
.ye_c00379{bottom:810.720105px;}
.yd_c00379{bottom:840.960015px;}
.yc_c00379{bottom:870.838905px;}
.yb_c00379{bottom:900.719520px;}
.ya_c00379{bottom:900.719700px;}
.y9_c00379{bottom:930.239220px;}
.y8_c00379{bottom:930.240345px;}
.y7_c00379{bottom:960.120075px;}
.y6_c00379{bottom:989.639610px;}
.y5_c00379{bottom:1019.879520px;}
.y3_c00379{bottom:1049.038815px;}
.y4_c00379{bottom:1049.039985px;}
.y2_c00379{bottom:1078.918530px;}
.y1_c00379{bottom:1138.680090px;}
.h15_c00379{height:43.839844px;}
.h1b_c00379{height:44.586914px;}
.h1a_c00379{height:45.351562px;}
.h16_c00379{height:46.863281px;}
.h14_c00379{height:47.619141px;}
.h1c_c00379{height:48.178711px;}
.h17_c00379{height:48.375000px;}
.h1d_c00379{height:49.130859px;}
.h19_c00379{height:49.661133px;}
.h18_c00379{height:50.402344px;}
.h12_c00379{height:64.248047px;}
.hd_c00379{height:73.571777px;}
.h9_c00379{height:75.816650px;}
.h13_c00379{height:75.875977px;}
.hc_c00379{height:76.552734px;}
.h2_c00379{height:77.288818px;}
.he_c00379{height:77.853516px;}
.h7_c00379{height:78.024902px;}
.h4_c00379{height:78.760986px;}
.h10_c00379{height:80.121094px;}
.hb_c00379{height:80.233154px;}
.h5_c00379{height:80.969238px;}
.h1_c00379{height:81.705322px;}
.h8_c00379{height:83.015625px;}
.ha_c00379{height:83.177490px;}
.h3_c00379{height:83.756836px;}
.h6_c00379{height:85.833281px;}
.h11_c00379{height:96.750000px;}
.hf_c00379{height:102.041016px;}
.h0_c00379{height:1263.000000px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.x19_c00379{left:138.602580px;}
.x1_c00379{left:139.678500px;}
.x21_c00379{left:160.559685px;}
.x12_c00379{left:165.958350px;}
.x30_c00379{left:192.599100px;}
.x1e_c00379{left:195.838950px;}
.x2_c00379{left:206.639700px;}
.x3f_c00379{left:220.319250px;}
.x31_c00379{left:236.879535px;}
.x22_c00379{left:240.839535px;}
.x8_c00379{left:242.639100px;}
.x32_c00379{left:255.959400px;}
.x40_c00379{left:257.399850px;}
.x9_c00379{left:263.159385px;}
.x23_c00379{left:273.958350px;}
.x41_c00379{left:297.718500px;}
.x24_c00379{left:298.799535px;}
.x15_c00379{left:312.479235px;}
.x16_c00379{left:326.519685px;}
.x42_c00379{left:329.759535px;}
.x33_c00379{left:331.199850px;}
.x2c_c00379{left:347.399235px;}
.x43_c00379{left:357.118785px;}
.x6_c00379{left:359.999385px;}
.x25_c00379{left:367.919535px;}
.x7_c00379{left:380.519685px;}
.x34_c00379{left:390.239220px;}
.xa_c00379{left:399.238770px;}
.x35_c00379{left:401.399235px;}
.x2d_c00379{left:407.519670px;}
.xe_c00379{left:424.080000px;}
.xb_c00379{left:429.119385px;}
.x36_c00379{left:436.319235px;}
.x26_c00379{left:438.118785px;}
.xf_c00379{left:449.278800px;}
.x27_c00379{left:471.239220px;}
.x37_c00379{left:494.999400px;}
.x28_c00379{left:499.318770px;}
.x2e_c00379{left:510.478635px;}
.x1f_c00379{left:534.958920px;}
.x2f_c00379{left:545.759535px;}
.x29_c00379{left:561.958920px;}
.x17_c00379{left:565.559685px;}
.x4_c00379{left:576.719520px;}
.x18_c00379{left:589.319820px;}
.x5_c00379{left:590.758530px;}
.x1a_c00379{left:594.718500px;}
.x38_c00379{left:596.519670px;}
.x20_c00379{left:597.599070px;}
.x1b_c00379{left:609.479235px;}
.x39_c00379{left:615.599670px;}
.x3a_c00379{left:653.759535px;}
.x3b_c00379{left:666.719100px;}
.x2a_c00379{left:685.078770px;}
.x1c_c00379{left:702.718545px;}
.x10_c00379{left:712.078770px;}
.x1d_c00379{left:717.479235px;}
.x3c_c00379{left:727.198785px;}
.x11_c00379{left:731.158770px;}
.x3_c00379{left:746.639700px;}
.x13_c00379{left:749.518620px;}
.xc_c00379{left:753.119385px;}
.x3d_c00379{left:759.599070px;}
.x14_c00379{left:766.078770px;}
.x3e_c00379{left:769.318815px;}
.xd_c00379{left:770.399865px;}
.x2b_c00379{left:771.479190px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.lsc_c00379{letter-spacing:-13.214667pt;}
.ls25_c00379{letter-spacing:-12.014933pt;}
.ls18_c00379{letter-spacing:-10.919667pt;}
.ls14_c00379{letter-spacing:-8.935287pt;}
.lsd_c00379{letter-spacing:-8.736000pt;}
.ls1c_c00379{letter-spacing:-7.924000pt;}
.ls9_c00379{letter-spacing:-6.601000pt;}
.ls11_c00379{letter-spacing:-5.944133pt;}
.lsf_c00379{letter-spacing:-5.943000pt;}
.lsa_c00379{letter-spacing:-5.528713pt;}
.ls2_c00379{letter-spacing:-5.285000pt;}
.ls17_c00379{letter-spacing:-5.018453pt;}
.ls6_c00379{letter-spacing:-4.619300pt;}
.ls2d_c00379{letter-spacing:-4.507180pt;}
.lse_c00379{letter-spacing:-4.375000pt;}
.ls16_c00379{letter-spacing:-4.119867pt;}
.ls12_c00379{letter-spacing:-3.999027pt;}
.ls8_c00379{letter-spacing:-3.961300pt;}
.ls29_c00379{letter-spacing:-3.801133pt;}
.ls1a_c00379{letter-spacing:-3.681027pt;}
.ls4_c00379{letter-spacing:-3.304000pt;}
.ls21_c00379{letter-spacing:-3.161600pt;}
.ls32_c00379{letter-spacing:-3.062800pt;}
.ls35_c00379{letter-spacing:-3.042433pt;}
.ls2b_c00379{letter-spacing:-2.948820pt;}
.ls0_c00379{letter-spacing:-2.767600pt;}
.ls1_c00379{letter-spacing:-2.639000pt;}
.ls23_c00379{letter-spacing:-2.100000pt;}
.ls26_c00379{letter-spacing:-2.099733pt;}
.ls2a_c00379{letter-spacing:-2.066667pt;}
.ls15_c00379{letter-spacing:-2.038713pt;}
.ls1d_c00379{letter-spacing:-2.001300pt;}
.ls5_c00379{letter-spacing:-1.981700pt;}
.ls13_c00379{letter-spacing:-1.960000pt;}
.ls19_c00379{letter-spacing:-1.455733pt;}
.ls30_c00379{letter-spacing:-1.426000pt;}
.ls33_c00379{letter-spacing:-1.378133pt;}
.ls20_c00379{letter-spacing:-1.375987pt;}
.ls7_c00379{letter-spacing:-1.323700pt;}
.ls24_c00379{letter-spacing:-1.314600pt;}
.ls2f_c00379{letter-spacing:-0.884000pt;}
.ls31_c00379{letter-spacing:-0.763733pt;}
.ls2e_c00379{letter-spacing:-0.714000pt;}
.ls1f_c00379{letter-spacing:-0.703733pt;}
.ls3_c00379{letter-spacing:-0.658000pt;}
.ls22_c00379{letter-spacing:-0.644387pt;}
.lsb_c00379{letter-spacing:0.000000pt;}
.ls10_c00379{letter-spacing:0.654000pt;}
.ls28_c00379{letter-spacing:0.689853pt;}
.ls34_c00379{letter-spacing:1.375987pt;}
.ls1b_c00379{letter-spacing:2.756000pt;}
.ls2c_c00379{letter-spacing:2.756933pt;}
.ls1e_c00379{letter-spacing:3.444000pt;}
.ls27_c00379{letter-spacing:4.120800pt;}
.ws0_c00379{word-spacing:0.000000pt;}
._9_c00379{margin-left:-5.209849pt;}
._c_c00379{margin-left:-3.484415pt;}
._a_c00379{margin-left:-1.982743pt;}
._8_c00379{margin-left:-1.015423pt;}
._b_c00379{width:1.725302pt;}
._0_c00379{width:3.206106pt;}
._2_c00379{width:4.199075pt;}
._18_c00379{width:5.360455pt;}
._1_c00379{width:6.503185pt;}
._7_c00379{width:7.773421pt;}
._4_c00379{width:8.852834pt;}
._f_c00379{width:10.587196pt;}
._5_c00379{width:11.558294pt;}
._d_c00379{width:13.037038pt;}
._19_c00379{width:14.354926pt;}
._e_c00379{width:15.285675pt;}
._13_c00379{width:16.632238pt;}
._3_c00379{width:17.640951pt;}
._16_c00379{width:19.170755pt;}
._15_c00379{width:21.058047pt;}
._6_c00379{width:21.993934pt;}
._10_c00379{width:23.601226pt;}
._14_c00379{width:24.596574pt;}
._11_c00379{width:25.867655pt;}
._12_c00379{width:26.869804pt;}
._17_c00379{width:28.144068pt;}
.fs17_c00379{font-size:38.000000pt;}
.fs11_c00379{font-size:38.666667pt;}
.fs16_c00379{font-size:40.000000pt;}
.fs12_c00379{font-size:41.333333pt;}
.fs10_c00379{font-size:42.000000pt;}
.fs13_c00379{font-size:42.666667pt;}
.fs18_c00379{font-size:43.333333pt;}
.fs15_c00379{font-size:44.666667pt;}
.fs14_c00379{font-size:45.333333pt;}
.fse_c00379{font-size:56.666667pt;}
.fsf_c00379{font-size:64.666667pt;}
.fsb_c00379{font-size:66.666667pt;}
.fs8_c00379{font-size:68.666667pt;}
.fsa_c00379{font-size:69.333333pt;}
.fs1_c00379{font-size:70.000000pt;}
.fs6_c00379{font-size:70.666667pt;}
.fs3_c00379{font-size:71.333333pt;}
.fs9_c00379{font-size:72.666667pt;}
.fs4_c00379{font-size:73.333333pt;}
.fs0_c00379{font-size:74.000000pt;}
.fs7_c00379{font-size:74.666667pt;}
.fs2_c00379{font-size:75.333333pt;}
.fs5_c00379{font-size:77.738667pt;}
.fsd_c00379{font-size:85.333333pt;}
.fsc_c00379{font-size:90.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y25_c00379{bottom:153.279747pt;}
.y24_c00379{bottom:167.679200pt;}
.y23_c00379{bottom:269.759667pt;}
.y22_c00379{bottom:296.639587pt;}
.y21_c00379{bottom:296.640640pt;}
.y20_c00379{bottom:322.880227pt;}
.y1f_c00379{bottom:349.439987pt;}
.y1c_c00379{bottom:375.679733pt;}
.y1d_c00379{bottom:376.319867pt;}
.y1e_c00379{bottom:376.960000pt;}
.y1b_c00379{bottom:402.559573pt;}
.y1a_c00379{bottom:429.120120pt;}
.y19_c00379{bottom:482.559200pt;}
.y18_c00379{bottom:508.798787pt;}
.y17_c00379{bottom:508.799013pt;}
.y16_c00379{bottom:535.040200pt;}
.y15_c00379{bottom:561.599960pt;}
.y14_c00379{bottom:588.159707pt;}
.y13_c00379{bottom:588.159867pt;}
.y11_c00379{bottom:614.399373pt;}
.y12_c00379{bottom:614.399453pt;}
.y10_c00379{bottom:641.279293pt;}
.yf_c00379{bottom:693.758307pt;}
.ye_c00379{bottom:720.640093pt;}
.yd_c00379{bottom:747.520013pt;}
.yc_c00379{bottom:774.079027pt;}
.yb_c00379{bottom:800.639573pt;}
.ya_c00379{bottom:800.639733pt;}
.y9_c00379{bottom:826.879307pt;}
.y8_c00379{bottom:826.880307pt;}
.y7_c00379{bottom:853.440067pt;}
.y6_c00379{bottom:879.679653pt;}
.y5_c00379{bottom:906.559573pt;}
.y3_c00379{bottom:932.478947pt;}
.y4_c00379{bottom:932.479987pt;}
.y2_c00379{bottom:959.038693pt;}
.y1_c00379{bottom:1012.160080pt;}
.h15_c00379{height:38.968750pt;}
.h1b_c00379{height:39.632812pt;}
.h1a_c00379{height:40.312500pt;}
.h16_c00379{height:41.656250pt;}
.h14_c00379{height:42.328125pt;}
.h1c_c00379{height:42.825521pt;}
.h17_c00379{height:43.000000pt;}
.h1d_c00379{height:43.671875pt;}
.h19_c00379{height:44.143229pt;}
.h18_c00379{height:44.802083pt;}
.h12_c00379{height:57.109375pt;}
.hd_c00379{height:65.397135pt;}
.h9_c00379{height:67.392578pt;}
.h13_c00379{height:67.445312pt;}
.hc_c00379{height:68.046875pt;}
.h2_c00379{height:68.701172pt;}
.he_c00379{height:69.203125pt;}
.h7_c00379{height:69.355469pt;}
.h4_c00379{height:70.009766pt;}
.h10_c00379{height:71.218750pt;}
.hb_c00379{height:71.318359pt;}
.h5_c00379{height:71.972656pt;}
.h1_c00379{height:72.626953pt;}
.h8_c00379{height:73.791667pt;}
.ha_c00379{height:73.935547pt;}
.h3_c00379{height:74.450521pt;}
.h6_c00379{height:76.296250pt;}
.h11_c00379{height:86.000000pt;}
.hf_c00379{height:90.703125pt;}
.h0_c00379{height:1122.666667pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.x19_c00379{left:123.202293pt;}
.x1_c00379{left:124.158667pt;}
.x21_c00379{left:142.719720pt;}
.x12_c00379{left:147.518533pt;}
.x30_c00379{left:171.199200pt;}
.x1e_c00379{left:174.079067pt;}
.x2_c00379{left:183.679733pt;}
.x3f_c00379{left:195.839333pt;}
.x31_c00379{left:210.559587pt;}
.x22_c00379{left:214.079587pt;}
.x8_c00379{left:215.679200pt;}
.x32_c00379{left:227.519467pt;}
.x40_c00379{left:228.799867pt;}
.x9_c00379{left:233.919453pt;}
.x23_c00379{left:243.518533pt;}
.x41_c00379{left:264.638667pt;}
.x24_c00379{left:265.599587pt;}
.x15_c00379{left:277.759320pt;}
.x16_c00379{left:290.239720pt;}
.x42_c00379{left:293.119587pt;}
.x33_c00379{left:294.399867pt;}
.x2c_c00379{left:308.799320pt;}
.x43_c00379{left:317.438920pt;}
.x6_c00379{left:319.999453pt;}
.x25_c00379{left:327.039587pt;}
.x7_c00379{left:338.239720pt;}
.x34_c00379{left:346.879307pt;}
.xa_c00379{left:354.878907pt;}
.x35_c00379{left:356.799320pt;}
.x2d_c00379{left:362.239707pt;}
.xe_c00379{left:376.960000pt;}
.xb_c00379{left:381.439453pt;}
.x36_c00379{left:387.839320pt;}
.x26_c00379{left:389.438920pt;}
.xf_c00379{left:399.358933pt;}
.x27_c00379{left:418.879307pt;}
.x37_c00379{left:439.999467pt;}
.x28_c00379{left:443.838907pt;}
.x2e_c00379{left:453.758787pt;}
.x1f_c00379{left:475.519040pt;}
.x2f_c00379{left:485.119587pt;}
.x29_c00379{left:499.519040pt;}
.x17_c00379{left:502.719720pt;}
.x4_c00379{left:512.639573pt;}
.x18_c00379{left:523.839840pt;}
.x5_c00379{left:525.118693pt;}
.x1a_c00379{left:528.638667pt;}
.x38_c00379{left:530.239707pt;}
.x20_c00379{left:531.199173pt;}
.x1b_c00379{left:541.759320pt;}
.x39_c00379{left:547.199707pt;}
.x3a_c00379{left:581.119587pt;}
.x3b_c00379{left:592.639200pt;}
.x2a_c00379{left:608.958907pt;}
.x1c_c00379{left:624.638707pt;}
.x10_c00379{left:632.958907pt;}
.x1d_c00379{left:637.759320pt;}
.x3c_c00379{left:646.398920pt;}
.x11_c00379{left:649.918907pt;}
.x3_c00379{left:663.679733pt;}
.x13_c00379{left:666.238773pt;}
.xc_c00379{left:669.439453pt;}
.x3d_c00379{left:675.199173pt;}
.x14_c00379{left:680.958907pt;}
.x3e_c00379{left:683.838947pt;}
.xd_c00379{left:684.799880pt;}
.x2b_c00379{left:685.759280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cef04e1d255a0c4129973629.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_aa90046a2484431c64aa92c8.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_9ce18580e90e7cda76494ccb.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.364746;font-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_c00380{transform:matrix(0.182497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182497,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls13_c00380{letter-spacing:-16.309425px;}
.ls17_c00380{letter-spacing:-10.402875px;}
.ls9_c00380{letter-spacing:-8.175038px;}
.lsc_c00380{letter-spacing:-6.685875px;}
.ls12_c00380{letter-spacing:-6.489000px;}
.lsd_c00380{letter-spacing:-6.331500px;}
.ls7_c00380{letter-spacing:-5.945625px;}
.ls4_c00380{letter-spacing:-5.196713px;}
.lsa_c00380{letter-spacing:-4.456463px;}
.lsb_c00380{letter-spacing:-4.334498px;}
.ls11_c00380{letter-spacing:-4.199850px;}
.ls1_c00380{letter-spacing:-3.717000px;}
.ls3_c00380{letter-spacing:-2.968875px;}
.ls14_c00380{letter-spacing:-2.879250px;}
.ls2_c00380{letter-spacing:-2.229413px;}
.lsf_c00380{letter-spacing:-1.622250px;}
.ls6_c00380{letter-spacing:-1.489163px;}
.ls8_c00380{letter-spacing:-0.740250px;}
.ls5_c00380{letter-spacing:0.000000px;}
.ls10_c00380{letter-spacing:0.929250px;}
.ls0_c00380{letter-spacing:1.850625px;}
.ls16_c00380{letter-spacing:2.470950px;}
.ls18_c00380{letter-spacing:3.637710px;}
.lse_c00380{letter-spacing:3.772440px;}
.ls15_c00380{letter-spacing:6.489000px;}
.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;}
._3_c00380{margin-left:-8.859954px;}
._2_c00380{margin-left:-4.604631px;}
._1f_c00380{margin-left:-3.239418px;}
._1_c00380{margin-left:-1.694462px;}
._f_c00380{width:1.678564px;}
._0_c00380{width:2.757260px;}
._16_c00380{width:4.646889px;}
._8_c00380{width:6.132723px;}
._7_c00380{width:7.347642px;}
._9_c00380{width:8.704133px;}
._5_c00380{width:10.070268px;}
._4_c00380{width:11.262394px;}
._6_c00380{width:13.090018px;}
._1b_c00380{width:14.162846px;}
._b_c00380{width:15.167012px;}
._a_c00380{width:16.254520px;}
._1c_c00380{width:17.758066px;}
._15_c00380{width:18.808249px;}
._d_c00380{width:20.314008px;}
._c_c00380{width:22.327854px;}
._13_c00380{width:23.979464px;}
._1e_c00380{width:25.001624px;}
._11_c00380{width:26.664483px;}
._1a_c00380{width:27.960083px;}
._17_c00380{width:30.227994px;}
._12_c00380{width:31.273378px;}
._10_c00380{width:32.564581px;}
._18_c00380{width:34.034071px;}
._e_c00380{width:35.920148px;}
._19_c00380{width:36.939634px;}
._14_c00380{width:39.217871px;}
._1d_c00380{width:105.446028px;}
.fc0_c00380{color:transparent;}
.fs9_c00380{font-size:76.500000px;}
.fs3_c00380{font-size:77.250000px;}
.fs1_c00380{font-size:78.000000px;}
.fs0_c00380{font-size:78.750000px;}
.fs8_c00380{font-size:79.500000px;}
.fs2_c00380{font-size:80.250000px;}
.fsb_c00380{font-size:81.000000px;}
.fs4_c00380{font-size:81.750000px;}
.fs5_c00380{font-size:82.500000px;}
.fs7_c00380{font-size:84.000000px;}
.fs6_c00380{font-size:84.750000px;}
.fsa_c00380{font-size:85.251600px;}
.y0_c00380{bottom:0.000000px;}
.y2a_c00380{bottom:184.319850px;}
.y28_c00380{bottom:213.479685px;}
.y29_c00380{bottom:213.480285px;}
.y27_c00380{bottom:243.359415px;}
.y25_c00380{bottom:272.878185px;}
.y26_c00380{bottom:272.878950px;}
.y24_c00380{bottom:332.279250px;}
.y23_c00380{bottom:332.280420px;}
.y22_c00380{bottom:362.160135px;}
.y21_c00380{bottom:391.679670px;}
.y20_c00380{bottom:428.399235px;}
.y1f_c00380{bottom:451.439250px;}
.y1e_c00380{bottom:481.679070px;}
.y1d_c00380{bottom:481.679970px;}
.y1c_c00380{bottom:511.559685px;}
.y1b_c00380{bottom:511.560585px;}
.y19_c00380{bottom:541.439715px;}
.y1a_c00380{bottom:541.440315px;}
.y18_c00380{bottom:571.319430px;}
.y17_c00380{bottom:601.199160px;}
.y15_c00380{bottom:630.359505px;}
.y16_c00380{bottom:630.360300px;}
.y14_c00380{bottom:660.239220px;}
.y13_c00380{bottom:660.239550px;}
.y11_c00380{bottom:689.759040px;}
.y12_c00380{bottom:689.759085px;}
.yf_c00380{bottom:719.997780px;}
.y10_c00380{bottom:719.998950px;}
.ye_c00380{bottom:809.999250px;}
.yc_c00380{bottom:839.878905px;}
.yd_c00380{bottom:839.878965px;}
.yb_c00380{bottom:869.400240px;}
.ya_c00380{bottom:869.400375px;}
.y9_c00380{bottom:899.640285px;}
.y8_c00380{bottom:929.159820px;}
.y7_c00380{bottom:959.399775px;}
.y6_c00380{bottom:1019.160255px;}
.y5_c00380{bottom:1049.039985px;}
.y4_c00380{bottom:1049.040120px;}
.y3_c00380{bottom:1078.919835px;}
.y2_c00380{bottom:1108.799565px;}
.y1_c00380{bottom:1138.319190px;}
.he_c00380{height:75.080566px;}
.h4_c00380{height:75.816650px;}
.h2_c00380{height:76.552734px;}
.hb_c00380{height:77.097656px;}
.h1_c00380{height:77.288818px;}
.h3_c00380{height:78.760986px;}
.h9_c00380{height:79.365234px;}
.hf_c00380{height:79.497070px;}
.ha_c00380{height:80.121094px;}
.h5_c00380{height:80.233154px;}
.h6_c00380{height:80.969238px;}
.hd_c00380{height:81.533203px;}
.h8_c00380{height:82.441406px;}
.h7_c00380{height:83.177490px;}
.hc_c00380{height:84.252558px;}
.h0_c00380{height:1263.000000px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.x28_c00380{left:134.641290px;}
.x10_c00380{left:135.713955px;}
.x5_c00380{left:137.158815px;}
.x1_c00380{left:138.599100px;}
.x2_c00380{left:154.080000px;}
.x6_c00380{left:168.479685px;}
.x16_c00380{left:195.118785px;}
.x17_c00380{left:211.319850px;}
.x23_c00380{left:272.519685px;}
.x24_c00380{left:287.278800px;}
.xe_c00380{left:289.439235px;}
.x8_c00380{left:296.639100px;}
.xf_c00380{left:307.439685px;}
.x9_c00380{left:313.919535px;}
.x18_c00380{left:316.080000px;}
.x11_c00380{left:323.639100px;}
.x19_c00380{left:332.279250px;}
.x14_c00380{left:338.759100px;}
.x1c_c00380{left:352.438635px;}
.x15_c00380{left:364.679700px;}
.x1d_c00380{left:371.159385px;}
.x25_c00380{left:372.958950px;}
.x3_c00380{left:378.000000px;}
.x26_c00380{left:388.078815px;}
.x4_c00380{left:395.998950px;}
.x1e_c00380{left:481.679070px;}
.x1f_c00380{left:527.399820px;}
.x20_c00380{left:551.159820px;}
.x27_c00380{left:558.719100px;}
.x1a_c00380{left:561.238770px;}
.xa_c00380{left:570.599070px;}
.x1b_c00380{left:577.078770px;}
.xb_c00380{left:586.798515px;}
.xc_c00380{left:611.998950px;}
.x21_c00380{left:621.359250px;}
.xd_c00380{left:631.798920px;}
.x12_c00380{left:654.838950px;}
.x13_c00380{left:675.718545px;}
.x22_c00380{left:715.318770px;}
.x7_c00380{left:757.799520px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls13_c00380{letter-spacing:-14.497267pt;}
.ls17_c00380{letter-spacing:-9.247000pt;}
.ls9_c00380{letter-spacing:-7.266700pt;}
.lsc_c00380{letter-spacing:-5.943000pt;}
.ls12_c00380{letter-spacing:-5.768000pt;}
.lsd_c00380{letter-spacing:-5.628000pt;}
.ls7_c00380{letter-spacing:-5.285000pt;}
.ls4_c00380{letter-spacing:-4.619300pt;}
.lsa_c00380{letter-spacing:-3.961300pt;}
.lsb_c00380{letter-spacing:-3.852887pt;}
.ls11_c00380{letter-spacing:-3.733200pt;}
.ls1_c00380{letter-spacing:-3.304000pt;}
.ls3_c00380{letter-spacing:-2.639000pt;}
.ls14_c00380{letter-spacing:-2.559333pt;}
.ls2_c00380{letter-spacing:-1.981700pt;}
.lsf_c00380{letter-spacing:-1.442000pt;}
.ls6_c00380{letter-spacing:-1.323700pt;}
.ls8_c00380{letter-spacing:-0.658000pt;}
.ls5_c00380{letter-spacing:0.000000pt;}
.ls10_c00380{letter-spacing:0.826000pt;}
.ls0_c00380{letter-spacing:1.645000pt;}
.ls16_c00380{letter-spacing:2.196400pt;}
.ls18_c00380{letter-spacing:3.233520pt;}
.lse_c00380{letter-spacing:3.353280pt;}
.ls15_c00380{letter-spacing:5.768000pt;}
.ws0_c00380{word-spacing:0.000000pt;}
._3_c00380{margin-left:-7.875515pt;}
._2_c00380{margin-left:-4.093006pt;}
._1f_c00380{margin-left:-2.879483pt;}
._1_c00380{margin-left:-1.506189pt;}
._f_c00380{width:1.492057pt;}
._0_c00380{width:2.450898pt;}
._16_c00380{width:4.130568pt;}
._8_c00380{width:5.451309pt;}
._7_c00380{width:6.531238pt;}
._9_c00380{width:7.737008pt;}
._5_c00380{width:8.951349pt;}
._4_c00380{width:10.011017pt;}
._6_c00380{width:11.635572pt;}
._1b_c00380{width:12.589196pt;}
._b_c00380{width:13.481789pt;}
._a_c00380{width:14.448462pt;}
._1c_c00380{width:15.784947pt;}
._15_c00380{width:16.718443pt;}
._d_c00380{width:18.056896pt;}
._c_c00380{width:19.846981pt;}
._13_c00380{width:21.315079pt;}
._1e_c00380{width:22.223666pt;}
._11_c00380{width:23.701762pt;}
._1a_c00380{width:24.853408pt;}
._17_c00380{width:26.869328pt;}
._12_c00380{width:27.798558pt;}
._10_c00380{width:28.946294pt;}
._18_c00380{width:30.252508pt;}
._e_c00380{width:31.929021pt;}
._19_c00380{width:32.835230pt;}
._14_c00380{width:34.860330pt;}
._1d_c00380{width:93.729802pt;}
.fs9_c00380{font-size:68.000000pt;}
.fs3_c00380{font-size:68.666667pt;}
.fs1_c00380{font-size:69.333333pt;}
.fs0_c00380{font-size:70.000000pt;}
.fs8_c00380{font-size:70.666667pt;}
.fs2_c00380{font-size:71.333333pt;}
.fsb_c00380{font-size:72.000000pt;}
.fs4_c00380{font-size:72.666667pt;}
.fs5_c00380{font-size:73.333333pt;}
.fs7_c00380{font-size:74.666667pt;}
.fs6_c00380{font-size:75.333333pt;}
.fsa_c00380{font-size:75.779200pt;}
.y0_c00380{bottom:0.000000pt;}
.y2a_c00380{bottom:163.839867pt;}
.y28_c00380{bottom:189.759720pt;}
.y29_c00380{bottom:189.760253pt;}
.y27_c00380{bottom:216.319480pt;}
.y25_c00380{bottom:242.558387pt;}
.y26_c00380{bottom:242.559067pt;}
.y24_c00380{bottom:295.359333pt;}
.y23_c00380{bottom:295.360373pt;}
.y22_c00380{bottom:321.920120pt;}
.y21_c00380{bottom:348.159707pt;}
.y20_c00380{bottom:380.799320pt;}
.y1f_c00380{bottom:401.279333pt;}
.y1e_c00380{bottom:428.159173pt;}
.y1d_c00380{bottom:428.159973pt;}
.y1c_c00380{bottom:454.719720pt;}
.y1b_c00380{bottom:454.720520pt;}
.y19_c00380{bottom:481.279747pt;}
.y1a_c00380{bottom:481.280280pt;}
.y18_c00380{bottom:507.839493pt;}
.y17_c00380{bottom:534.399253pt;}
.y15_c00380{bottom:560.319560pt;}
.y16_c00380{bottom:560.320267pt;}
.y14_c00380{bottom:586.879307pt;}
.y13_c00380{bottom:586.879600pt;}
.y11_c00380{bottom:613.119147pt;}
.y12_c00380{bottom:613.119187pt;}
.yf_c00380{bottom:639.998027pt;}
.y10_c00380{bottom:639.999067pt;}
.ye_c00380{bottom:719.999333pt;}
.yc_c00380{bottom:746.559027pt;}
.yd_c00380{bottom:746.559080pt;}
.yb_c00380{bottom:772.800213pt;}
.ya_c00380{bottom:772.800333pt;}
.y9_c00380{bottom:799.680253pt;}
.y8_c00380{bottom:825.919840pt;}
.y7_c00380{bottom:852.799800pt;}
.y6_c00380{bottom:905.920227pt;}
.y5_c00380{bottom:932.479987pt;}
.y4_c00380{bottom:932.480107pt;}
.y3_c00380{bottom:959.039853pt;}
.y2_c00380{bottom:985.599613pt;}
.y1_c00380{bottom:1011.839280pt;}
.he_c00380{height:66.738281pt;}
.h4_c00380{height:67.392578pt;}
.h2_c00380{height:68.046875pt;}
.hb_c00380{height:68.531250pt;}
.h1_c00380{height:68.701172pt;}
.h3_c00380{height:70.009766pt;}
.h9_c00380{height:70.546875pt;}
.hf_c00380{height:70.664062pt;}
.ha_c00380{height:71.218750pt;}
.h5_c00380{height:71.318359pt;}
.h6_c00380{height:71.972656pt;}
.hd_c00380{height:72.473958pt;}
.h8_c00380{height:73.281250pt;}
.h7_c00380{height:73.935547pt;}
.hc_c00380{height:74.891162pt;}
.h0_c00380{height:1122.666667pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.x28_c00380{left:119.681147pt;}
.x10_c00380{left:120.634627pt;}
.x5_c00380{left:121.918947pt;}
.x1_c00380{left:123.199200pt;}
.x2_c00380{left:136.960000pt;}
.x6_c00380{left:149.759720pt;}
.x16_c00380{left:173.438920pt;}
.x17_c00380{left:187.839867pt;}
.x23_c00380{left:242.239720pt;}
.x24_c00380{left:255.358933pt;}
.xe_c00380{left:257.279320pt;}
.x8_c00380{left:263.679200pt;}
.xf_c00380{left:273.279720pt;}
.x9_c00380{left:279.039587pt;}
.x18_c00380{left:280.960000pt;}
.x11_c00380{left:287.679200pt;}
.x19_c00380{left:295.359333pt;}
.x14_c00380{left:301.119200pt;}
.x1c_c00380{left:313.278787pt;}
.x15_c00380{left:324.159733pt;}
.x1d_c00380{left:329.919453pt;}
.x25_c00380{left:331.519067pt;}
.x3_c00380{left:336.000000pt;}
.x26_c00380{left:344.958947pt;}
.x4_c00380{left:351.999067pt;}
.x1e_c00380{left:428.159173pt;}
.x1f_c00380{left:468.799840pt;}
.x20_c00380{left:489.919840pt;}
.x27_c00380{left:496.639200pt;}
.x1a_c00380{left:498.878907pt;}
.xa_c00380{left:507.199173pt;}
.x1b_c00380{left:512.958907pt;}
.xb_c00380{left:521.598680pt;}
.xc_c00380{left:543.999067pt;}
.x21_c00380{left:552.319333pt;}
.xd_c00380{left:561.599040pt;}
.x12_c00380{left:582.079067pt;}
.x13_c00380{left:600.638707pt;}
.x22_c00380{left:635.838907pt;}
.x7_c00380{left:673.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7b4e75c6b22bdd7a2526e70.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_8f5addb993007c46aa93d75b.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.311035;font-style:normal;font-weight:normal;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_84c36429c658161168228cd3.woff2')format("woff");}.ff3_c00381{font-family:ff3_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:ff4_c00381;src:url('chunks/assets/font_0af8d3f2dbb538e9e602be93.woff2')format("woff");}.ff4_c00381{font-family:ff4_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:ff5_c00381;src:url('chunks/assets/font_1e522cf4d76537576e425407.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00381;src:url('chunks/assets/font_99868ea4ed0cf4c3e0c5fae9.woff2')format("woff");}.ff6_c00381{font-family:ff6_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;}
.m16_c00381{transform:matrix(0.178947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178947,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.181081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181081,0.000000,0.000000,0.250000,0,0);}
.m2c_c00381{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1f_c00381{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.195988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195988,0.000000,0.000000,0.250000,0,0);}
.m2a_c00381{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m26_c00381{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m20_c00381{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m22_c00381{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m7_c00381{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m28_c00381{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m8_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.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m27_c00381{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m23_c00381{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m10_c00381{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m2b_c00381{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m24_c00381{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m1a_c00381{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);}
.m29_c00381{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316406,0.000000,0.000000,0.250000,0,0);}
.m13_c00381{transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318627,0.000000,0.000000,0.250000,0,0);}
.m17_c00381{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m12_c00381{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);}
.m1c_c00381{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);}
.m25_c00381{transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);}
.m1e_c00381{transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379808,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.422222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422222,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480769,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.505952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505952,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{transform:matrix(0.715909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715909,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls20_c00381{letter-spacing:-15.526500px;}
.ls18_c00381{letter-spacing:-11.693850px;}
.ls31_c00381{letter-spacing:-9.281250px;}
.ls26_c00381{letter-spacing:-8.914500px;}
.ls30_c00381{letter-spacing:-8.175038px;}
.ls24_c00381{letter-spacing:-7.426125px;}
.ls2f_c00381{letter-spacing:-6.685875px;}
.ls21_c00381{letter-spacing:-5.945625px;}
.ls1e_c00381{letter-spacing:-5.358750px;}
.ls2c_c00381{letter-spacing:-5.345190px;}
.ls10_c00381{letter-spacing:-5.247533px;}
.lsf_c00381{letter-spacing:-5.196713px;}
.ls2e_c00381{letter-spacing:-5.109375px;}
.ls7_c00381{letter-spacing:-4.750200px;}
.ls29_c00381{letter-spacing:-4.521248px;}
.ls25_c00381{letter-spacing:-4.456463px;}
.ls27_c00381{letter-spacing:-4.406250px;}
.ls3_c00381{letter-spacing:-3.787875px;}
.lsb_c00381{letter-spacing:-3.717000px;}
.ls1_c00381{letter-spacing:-3.125925px;}
.ls4_c00381{letter-spacing:-3.028950px;}
.ls9_c00381{letter-spacing:-2.968875px;}
.ls1f_c00381{letter-spacing:-2.960100px;}
.ls2a_c00381{letter-spacing:-2.637735px;}
.ls1b_c00381{letter-spacing:-2.620530px;}
.ls2_c00381{letter-spacing:-2.267213px;}
.ls8_c00381{letter-spacing:-2.229413px;}
.ls5_c00381{letter-spacing:-1.512000px;}
.lsc_c00381{letter-spacing:-1.489163px;}
.ls28_c00381{letter-spacing:-1.413675px;}
.ls16_c00381{letter-spacing:-1.178483px;}
.ls23_c00381{letter-spacing:-0.742050px;}
.lsa_c00381{letter-spacing:-0.740250px;}
.lsd_c00381{letter-spacing:0.000000px;}
.ls2d_c00381{letter-spacing:0.640448px;}
.ls15_c00381{letter-spacing:1.087875px;}
.ls22_c00381{letter-spacing:1.637700px;}
.ls0_c00381{letter-spacing:2.721810px;}
.ls1a_c00381{letter-spacing:3.627000px;}
.ls13_c00381{letter-spacing:3.651825px;}
.ls6_c00381{letter-spacing:3.993975px;}
.lse_c00381{letter-spacing:4.017000px;}
.ls14_c00381{letter-spacing:5.332800px;}
.ls12_c00381{letter-spacing:6.637800px;}
.ls1c_c00381{letter-spacing:7.073550px;}
.ls19_c00381{letter-spacing:7.332338px;}
.ls17_c00381{letter-spacing:8.291430px;}
.ls2b_c00381{letter-spacing:14.718375px;}
.ls1d_c00381{letter-spacing:40.374150px;}
.ls11_c00381{letter-spacing:190.066837px;}
.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;}
._12_c00381{margin-left:-6.145352px;}
._d_c00381{margin-left:-4.577529px;}
._6_c00381{margin-left:-3.050151px;}
._e_c00381{margin-left:-1.094863px;}
._8_c00381{width:1.097047px;}
._4_c00381{width:2.338548px;}
._0_c00381{width:4.169873px;}
._11_c00381{width:5.372059px;}
._7_c00381{width:6.595595px;}
._3_c00381{width:7.614531px;}
._f_c00381{width:8.901841px;}
._2_c00381{width:10.027594px;}
._1_c00381{width:11.673988px;}
._5_c00381{width:13.015280px;}
._9_c00381{width:14.176070px;}
._a_c00381{width:15.954661px;}
._10_c00381{width:17.937913px;}
._b_c00381{width:20.038279px;}
._19_c00381{width:21.421605px;}
._13_c00381{width:22.763044px;}
._c_c00381{width:24.368252px;}
._16_c00381{width:25.673570px;}
._14_c00381{width:26.988294px;}
._15_c00381{width:28.272379px;}
._18_c00381{width:30.448569px;}
._17_c00381{width:32.882939px;}
.fc0_c00381{color:transparent;}
.fs17_c00381{font-size:25.500000px;}
.fs18_c00381{font-size:29.250000px;}
.fsb_c00381{font-size:31.500000px;}
.fs15_c00381{font-size:33.000000px;}
.fsa_c00381{font-size:33.750000px;}
.fsf_c00381{font-size:37.500000px;}
.fs10_c00381{font-size:38.250000px;}
.fsc_c00381{font-size:39.000000px;}
.fs14_c00381{font-size:45.000000px;}
.fse_c00381{font-size:48.000000px;}
.fs16_c00381{font-size:49.500000px;}
.fsd_c00381{font-size:54.750000px;}
.fs1c_c00381{font-size:57.750000px;}
.fs1d_c00381{font-size:61.500000px;}
.fs11_c00381{font-size:63.000000px;}
.fs1a_c00381{font-size:70.500000px;}
.fs13_c00381{font-size:71.250000px;}
.fs3_c00381{font-size:72.750000px;}
.fs12_c00381{font-size:73.500000px;}
.fs0_c00381{font-size:74.250000px;}
.fs19_c00381{font-size:76.500000px;}
.fs1b_c00381{font-size:77.250000px;}
.fs4_c00381{font-size:78.000000px;}
.fs1_c00381{font-size:78.750000px;}
.fs2_c00381{font-size:79.500000px;}
.fs20_c00381{font-size:80.250000px;}
.fs1e_c00381{font-size:81.000000px;}
.fs7_c00381{font-size:81.750000px;}
.fs5_c00381{font-size:82.500000px;}
.fs1f_c00381{font-size:84.750000px;}
.fs6_c00381{font-size:101.250000px;}
.fs8_c00381{font-size:121.500000px;}
.fs9_c00381{font-size:138.750000px;}
.y0_c00381{bottom:0.000000px;}
.y26_c00381{bottom:184.320720px;}
.y27_c00381{bottom:184.321515px;}
.y24_c00381{bottom:214.199685px;}
.y25_c00381{bottom:214.200435px;}
.y23_c00381{bottom:244.439595px;}
.y22_c00381{bottom:273.600750px;}
.y21_c00381{bottom:273.600840px;}
.y20_c00381{bottom:303.840750px;}
.y1f_c00381{bottom:333.360285px;}
.y1e_c00381{bottom:362.880000px;}
.y1d_c00381{bottom:392.401515px;}
.y1b_c00381{bottom:422.640105px;}
.y1c_c00381{bottom:422.641335px;}
.y1a_c00381{bottom:452.519835px;}
.y19_c00381{bottom:482.759745px;}
.y18_c00381{bottom:512.279280px;}
.y17_c00381{bottom:541.800615px;}
.y16_c00381{bottom:601.560060px;}
.y14_c00381{bottom:630.720405px;}
.y15_c00381{bottom:630.721200px;}
.y13_c00381{bottom:660.600135px;}
.y12_c00381{bottom:660.601155px;}
.y11_c00381{bottom:690.480885px;}
.y10_c00381{bottom:720.720750px;}
.ye_c00381{bottom:750.240420px;}
.yf_c00381{bottom:750.960570px;}
.yd_c00381{bottom:754.200435px;}
.yc_c00381{bottom:756.360900px;}
.yb_c00381{bottom:780.120990px;}
.y9_c00381{bottom:810.360150px;}
.ya_c00381{bottom:810.360900px;}
.y8_c00381{bottom:840.239865px;}
.y7_c00381{bottom:899.640105px;}
.y6_c00381{bottom:959.401515px;}
.y5_c00381{bottom:1019.161200px;}
.y3_c00381{bottom:1048.680675px;}
.y4_c00381{bottom:1048.680720px;}
.y2_c00381{bottom:1078.920600px;}
.y1_c00381{bottom:1138.320825px;}
.h1a_c00381{height:26.595703px;}
.h1c_c00381{height:30.506836px;}
.hd_c00381{height:32.853516px;}
.h18_c00381{height:33.257812px;}
.hc_c00381{height:33.354492px;}
.h1b_c00381{height:37.060547px;}
.h17_c00381{height:38.542969px;}
.h11_c00381{height:39.111328px;}
.he_c00381{height:39.304688px;}
.h12_c00381{height:39.893555px;}
.h16_c00381{height:44.472656px;}
.h19_c00381{height:48.919922px;}
.h10_c00381{height:50.062500px;}
.hf_c00381{height:55.177734px;}
.h25_c00381{height:56.678467px;}
.h22_c00381{height:58.201172px;}
.h23_c00381{height:61.980469px;}
.h13_c00381{height:63.492188px;}
.h4_c00381{height:71.400146px;}
.h20_c00381{height:73.529297px;}
.h15_c00381{height:74.311523px;}
.h1f_c00381{height:75.080566px;}
.h21_c00381{height:75.816650px;}
.h5_c00381{height:76.552734px;}
.h14_c00381{height:76.658203px;}
.h6_c00381{height:77.288818px;}
.h1_c00381{height:77.440430px;}
.h1e_c00381{height:78.024902px;}
.h27_c00381{height:78.760986px;}
.h2_c00381{height:79.365234px;}
.h3_c00381{height:80.121094px;}
.h9_c00381{height:80.233154px;}
.h7_c00381{height:80.969238px;}
.h1d_c00381{height:81.533203px;}
.h24_c00381{height:81.632812px;}
.h26_c00381{height:83.177490px;}
.h8_c00381{height:105.600586px;}
.ha_c00381{height:126.720703px;}
.hb_c00381{height:144.711914px;}
.h0_c00381{height:1263.000000px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:140.398665px;}
.x27_c00381{left:154.439250px;}
.xe_c00381{left:162.718500px;}
.x5_c00381{left:167.398665px;}
.xb_c00381{left:171.358665px;}
.x1c_c00381{left:179.998950px;}
.x2_c00381{left:191.519685px;}
.x9_c00381{left:196.559100px;}
.x6_c00381{left:201.959400px;}
.xa_c00381{left:206.639700px;}
.xc_c00381{left:207.719100px;}
.xd_c00381{left:228.598500px;}
.xf_c00381{left:233.278800px;}
.x1d_c00381{left:261.719100px;}
.x28_c00381{left:279.719535px;}
.x19_c00381{left:288.719100px;}
.x29_c00381{left:294.119385px;}
.x1e_c00381{left:320.399235px;}
.x10_c00381{left:339.838515px;}
.x2e_c00381{left:358.559100px;}
.x2c_c00381{left:359.638530px;}
.x11_c00381{left:370.439235px;}
.x2f_c00381{left:373.319850px;}
.x2d_c00381{left:381.958350px;}
.x30_c00381{left:405.359250px;}
.x31_c00381{left:420.479235px;}
.x3_c00381{left:433.079400px;}
.x12_c00381{left:434.158770px;}
.x2a_c00381{left:447.479235px;}
.x13_c00381{left:452.159415px;}
.x2b_c00381{left:466.918350px;}
.x4_c00381{left:516.958335px;}
.x20_c00381{left:532.439250px;}
.x1a_c00381{left:541.438620px;}
.x1b_c00381{left:560.518620px;}
.x21_c00381{left:564.478635px;}
.x14_c00381{left:569.158770px;}
.x15_c00381{left:591.478635px;}
.x7_c00381{left:606.239220px;}
.x16_c00381{left:608.759085px;}
.x8_c00381{left:620.279850px;}
.x22_c00381{left:623.878920px;}
.x23_c00381{left:655.199850px;}
.x1f_c00381{left:659.878320px;}
.x24_c00381{left:673.559685px;}
.x17_c00381{left:685.798920px;}
.x18_c00381{left:708.838950px;}
.x25_c00381{left:740.519070px;}
.x26_c00381{left:762.838950px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls20_c00381{letter-spacing:-13.801333pt;}
.ls18_c00381{letter-spacing:-10.394533pt;}
.ls31_c00381{letter-spacing:-8.250000pt;}
.ls26_c00381{letter-spacing:-7.924000pt;}
.ls30_c00381{letter-spacing:-7.266700pt;}
.ls24_c00381{letter-spacing:-6.601000pt;}
.ls2f_c00381{letter-spacing:-5.943000pt;}
.ls21_c00381{letter-spacing:-5.285000pt;}
.ls1e_c00381{letter-spacing:-4.763333pt;}
.ls2c_c00381{letter-spacing:-4.751280pt;}
.ls10_c00381{letter-spacing:-4.664473pt;}
.lsf_c00381{letter-spacing:-4.619300pt;}
.ls2e_c00381{letter-spacing:-4.541667pt;}
.ls7_c00381{letter-spacing:-4.222400pt;}
.ls29_c00381{letter-spacing:-4.018887pt;}
.ls25_c00381{letter-spacing:-3.961300pt;}
.ls27_c00381{letter-spacing:-3.916667pt;}
.ls3_c00381{letter-spacing:-3.367000pt;}
.lsb_c00381{letter-spacing:-3.304000pt;}
.ls1_c00381{letter-spacing:-2.778600pt;}
.ls4_c00381{letter-spacing:-2.692400pt;}
.ls9_c00381{letter-spacing:-2.639000pt;}
.ls1f_c00381{letter-spacing:-2.631200pt;}
.ls2a_c00381{letter-spacing:-2.344653pt;}
.ls1b_c00381{letter-spacing:-2.329360pt;}
.ls2_c00381{letter-spacing:-2.015300pt;}
.ls8_c00381{letter-spacing:-1.981700pt;}
.ls5_c00381{letter-spacing:-1.344000pt;}
.lsc_c00381{letter-spacing:-1.323700pt;}
.ls28_c00381{letter-spacing:-1.256600pt;}
.ls16_c00381{letter-spacing:-1.047540pt;}
.ls23_c00381{letter-spacing:-0.659600pt;}
.lsa_c00381{letter-spacing:-0.658000pt;}
.lsd_c00381{letter-spacing:0.000000pt;}
.ls2d_c00381{letter-spacing:0.569287pt;}
.ls15_c00381{letter-spacing:0.967000pt;}
.ls22_c00381{letter-spacing:1.455733pt;}
.ls0_c00381{letter-spacing:2.419387pt;}
.ls1a_c00381{letter-spacing:3.224000pt;}
.ls13_c00381{letter-spacing:3.246067pt;}
.ls6_c00381{letter-spacing:3.550200pt;}
.lse_c00381{letter-spacing:3.570667pt;}
.ls14_c00381{letter-spacing:4.740267pt;}
.ls12_c00381{letter-spacing:5.900267pt;}
.ls1c_c00381{letter-spacing:6.287600pt;}
.ls19_c00381{letter-spacing:6.517633pt;}
.ls17_c00381{letter-spacing:7.370160pt;}
.ls2b_c00381{letter-spacing:13.083000pt;}
.ls1d_c00381{letter-spacing:35.888133pt;}
.ls11_c00381{letter-spacing:168.948300pt;}
.ws0_c00381{word-spacing:0.000000pt;}
._12_c00381{margin-left:-5.462535pt;}
._d_c00381{margin-left:-4.068915pt;}
._6_c00381{margin-left:-2.711245pt;}
._e_c00381{margin-left:-0.973211pt;}
._8_c00381{width:0.975153pt;}
._4_c00381{width:2.078709pt;}
._0_c00381{width:3.706554pt;}
._11_c00381{width:4.775163pt;}
._7_c00381{width:5.862751pt;}
._3_c00381{width:6.768472pt;}
._f_c00381{width:7.912747pt;}
._2_c00381{width:8.913417pt;}
._1_c00381{width:10.376878pt;}
._5_c00381{width:11.569138pt;}
._9_c00381{width:12.600951pt;}
._a_c00381{width:14.181921pt;}
._10_c00381{width:15.944811pt;}
._b_c00381{width:17.811804pt;}
._19_c00381{width:19.041426pt;}
._13_c00381{width:20.233817pt;}
._c_c00381{width:21.660669pt;}
._16_c00381{width:22.820951pt;}
._14_c00381{width:23.989594pt;}
._15_c00381{width:25.131004pt;}
._18_c00381{width:27.065394pt;}
._17_c00381{width:29.229279pt;}
.fs17_c00381{font-size:22.666667pt;}
.fs18_c00381{font-size:26.000000pt;}
.fsb_c00381{font-size:28.000000pt;}
.fs15_c00381{font-size:29.333333pt;}
.fsa_c00381{font-size:30.000000pt;}
.fsf_c00381{font-size:33.333333pt;}
.fs10_c00381{font-size:34.000000pt;}
.fsc_c00381{font-size:34.666667pt;}
.fs14_c00381{font-size:40.000000pt;}
.fse_c00381{font-size:42.666667pt;}
.fs16_c00381{font-size:44.000000pt;}
.fsd_c00381{font-size:48.666667pt;}
.fs1c_c00381{font-size:51.333333pt;}
.fs1d_c00381{font-size:54.666667pt;}
.fs11_c00381{font-size:56.000000pt;}
.fs1a_c00381{font-size:62.666667pt;}
.fs13_c00381{font-size:63.333333pt;}
.fs3_c00381{font-size:64.666667pt;}
.fs12_c00381{font-size:65.333333pt;}
.fs0_c00381{font-size:66.000000pt;}
.fs19_c00381{font-size:68.000000pt;}
.fs1b_c00381{font-size:68.666667pt;}
.fs4_c00381{font-size:69.333333pt;}
.fs1_c00381{font-size:70.000000pt;}
.fs2_c00381{font-size:70.666667pt;}
.fs20_c00381{font-size:71.333333pt;}
.fs1e_c00381{font-size:72.000000pt;}
.fs7_c00381{font-size:72.666667pt;}
.fs5_c00381{font-size:73.333333pt;}
.fs1f_c00381{font-size:75.333333pt;}
.fs6_c00381{font-size:90.000000pt;}
.fs8_c00381{font-size:108.000000pt;}
.fs9_c00381{font-size:123.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y26_c00381{bottom:163.840640pt;}
.y27_c00381{bottom:163.841347pt;}
.y24_c00381{bottom:190.399720pt;}
.y25_c00381{bottom:190.400387pt;}
.y23_c00381{bottom:217.279640pt;}
.y22_c00381{bottom:243.200667pt;}
.y21_c00381{bottom:243.200747pt;}
.y20_c00381{bottom:270.080667pt;}
.y1f_c00381{bottom:296.320253pt;}
.y1e_c00381{bottom:322.560000pt;}
.y1d_c00381{bottom:348.801347pt;}
.y1b_c00381{bottom:375.680093pt;}
.y1c_c00381{bottom:375.681187pt;}
.y1a_c00381{bottom:402.239853pt;}
.y19_c00381{bottom:429.119773pt;}
.y18_c00381{bottom:455.359360pt;}
.y17_c00381{bottom:481.600547pt;}
.y16_c00381{bottom:534.720053pt;}
.y14_c00381{bottom:560.640360pt;}
.y15_c00381{bottom:560.641067pt;}
.y13_c00381{bottom:587.200120pt;}
.y12_c00381{bottom:587.201027pt;}
.y11_c00381{bottom:613.760787pt;}
.y10_c00381{bottom:640.640667pt;}
.ye_c00381{bottom:666.880373pt;}
.yf_c00381{bottom:667.520507pt;}
.yd_c00381{bottom:670.400387pt;}
.yc_c00381{bottom:672.320800pt;}
.yb_c00381{bottom:693.440880pt;}
.y9_c00381{bottom:720.320133pt;}
.ya_c00381{bottom:720.320800pt;}
.y8_c00381{bottom:746.879880pt;}
.y7_c00381{bottom:799.680093pt;}
.y6_c00381{bottom:852.801347pt;}
.y5_c00381{bottom:905.921067pt;}
.y3_c00381{bottom:932.160600pt;}
.y4_c00381{bottom:932.160640pt;}
.y2_c00381{bottom:959.040533pt;}
.y1_c00381{bottom:1011.840733pt;}
.h1a_c00381{height:23.640625pt;}
.h1c_c00381{height:27.117188pt;}
.hd_c00381{height:29.203125pt;}
.h18_c00381{height:29.562500pt;}
.hc_c00381{height:29.648437pt;}
.h1b_c00381{height:32.942708pt;}
.h17_c00381{height:34.260417pt;}
.h11_c00381{height:34.765625pt;}
.he_c00381{height:34.937500pt;}
.h12_c00381{height:35.460938pt;}
.h16_c00381{height:39.531250pt;}
.h19_c00381{height:43.484375pt;}
.h10_c00381{height:44.500000pt;}
.hf_c00381{height:49.046875pt;}
.h25_c00381{height:50.380859pt;}
.h22_c00381{height:51.734375pt;}
.h23_c00381{height:55.093750pt;}
.h13_c00381{height:56.437500pt;}
.h4_c00381{height:63.466797pt;}
.h20_c00381{height:65.359375pt;}
.h15_c00381{height:66.054688pt;}
.h1f_c00381{height:66.738281pt;}
.h21_c00381{height:67.392578pt;}
.h5_c00381{height:68.046875pt;}
.h14_c00381{height:68.140625pt;}
.h6_c00381{height:68.701172pt;}
.h1_c00381{height:68.835938pt;}
.h1e_c00381{height:69.355469pt;}
.h27_c00381{height:70.009766pt;}
.h2_c00381{height:70.546875pt;}
.h3_c00381{height:71.218750pt;}
.h9_c00381{height:71.318359pt;}
.h7_c00381{height:71.972656pt;}
.h1d_c00381{height:72.473958pt;}
.h24_c00381{height:72.562500pt;}
.h26_c00381{height:73.935547pt;}
.h8_c00381{height:93.867188pt;}
.ha_c00381{height:112.640625pt;}
.hb_c00381{height:128.632812pt;}
.h0_c00381{height:1122.666667pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:124.798813pt;}
.x27_c00381{left:137.279333pt;}
.xe_c00381{left:144.638667pt;}
.x5_c00381{left:148.798813pt;}
.xb_c00381{left:152.318813pt;}
.x1c_c00381{left:159.999067pt;}
.x2_c00381{left:170.239720pt;}
.x9_c00381{left:174.719200pt;}
.x6_c00381{left:179.519467pt;}
.xa_c00381{left:183.679733pt;}
.xc_c00381{left:184.639200pt;}
.xd_c00381{left:203.198667pt;}
.xf_c00381{left:207.358933pt;}
.x1d_c00381{left:232.639200pt;}
.x28_c00381{left:248.639587pt;}
.x19_c00381{left:256.639200pt;}
.x29_c00381{left:261.439453pt;}
.x1e_c00381{left:284.799320pt;}
.x10_c00381{left:302.078680pt;}
.x2e_c00381{left:318.719200pt;}
.x2c_c00381{left:319.678693pt;}
.x11_c00381{left:329.279320pt;}
.x2f_c00381{left:331.839867pt;}
.x2d_c00381{left:339.518533pt;}
.x30_c00381{left:360.319333pt;}
.x31_c00381{left:373.759320pt;}
.x3_c00381{left:384.959467pt;}
.x12_c00381{left:385.918907pt;}
.x2a_c00381{left:397.759320pt;}
.x13_c00381{left:401.919480pt;}
.x2b_c00381{left:415.038533pt;}
.x4_c00381{left:459.518520pt;}
.x20_c00381{left:473.279333pt;}
.x1a_c00381{left:481.278773pt;}
.x1b_c00381{left:498.238773pt;}
.x21_c00381{left:501.758787pt;}
.x14_c00381{left:505.918907pt;}
.x15_c00381{left:525.758787pt;}
.x7_c00381{left:538.879307pt;}
.x16_c00381{left:541.119187pt;}
.x8_c00381{left:551.359867pt;}
.x22_c00381{left:554.559040pt;}
.x23_c00381{left:582.399867pt;}
.x1f_c00381{left:586.558507pt;}
.x24_c00381{left:598.719720pt;}
.x17_c00381{left:609.599040pt;}
.x18_c00381{left:630.079067pt;}
.x25_c00381{left:658.239173pt;}
.x26_c00381{left:678.079067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee0a614fb6a2306ba535ef62.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_18353148ccf2ea6c783daa78.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.364746;font-style:normal;font-weight:normal;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_c4117f59ebf326336517df52.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;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_45906c8d608fd8c5933a54c6.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_235a75b051e5ea2d45c9d597.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_2f2950e6df492e048ff4cb1b.woff2')format("woff");}.ff6_c00382{font-family:ff6_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;}
.m5_c00382{transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);}
.m17_c00382{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m6_c00382{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m10_c00382{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m19_c00382{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m14_c00382{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m3_c00382{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.ma_c00382{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m11_c00382{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m12_c00382{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m7_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00382{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.m9_c00382{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m18_c00382{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m13_c00382{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.me_c00382{transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);}
.md_c00382{transform:matrix(0.436047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436047,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.463415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463415,0.000000,0.000000,0.250000,0,0);}
.m15_c00382{transform:matrix(0.516667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516667,0.000000,0.000000,0.250000,0,0);}
.m16_c00382{transform:matrix(0.554688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554688,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls2e_c00382{letter-spacing:-12.799500px;}
.ls10_c00382{letter-spacing:-8.914500px;}
.ls17_c00382{letter-spacing:-8.175038px;}
.ls16_c00382{letter-spacing:-7.426125px;}
.ls14_c00382{letter-spacing:-6.685875px;}
.ls19_c00382{letter-spacing:-5.945625px;}
.ls1f_c00382{letter-spacing:-5.440103px;}
.ls11_c00382{letter-spacing:-5.196713px;}
.ls1d_c00382{letter-spacing:-5.109375px;}
.ls1e_c00382{letter-spacing:-4.504500px;}
.ls1c_c00382{letter-spacing:-4.496625px;}
.ls12_c00382{letter-spacing:-4.456463px;}
.lse_c00382{letter-spacing:-3.717000px;}
.ls1a_c00382{letter-spacing:-3.086550px;}
.lsc_c00382{letter-spacing:-2.968875px;}
.lsb_c00382{letter-spacing:-2.229413px;}
.ls18_c00382{letter-spacing:-1.574895px;}
.lsd_c00382{letter-spacing:-1.489163px;}
.ls27_c00382{letter-spacing:-0.809025px;}
.lsf_c00382{letter-spacing:-0.740250px;}
.ls21_c00382{letter-spacing:-0.405900px;}
.ls15_c00382{letter-spacing:0.000000px;}
.ls29_c00382{letter-spacing:0.767550px;}
.ls28_c00382{letter-spacing:0.776085px;}
.ls2f_c00382{letter-spacing:1.598325px;}
.ls2d_c00382{letter-spacing:1.689600px;}
.ls20_c00382{letter-spacing:2.935950px;}
.ls24_c00382{letter-spacing:3.266550px;}
.ls2c_c00382{letter-spacing:3.267000px;}
.ls3_c00382{letter-spacing:3.365250px;}
.lsa_c00382{letter-spacing:4.036988px;}
.ls1b_c00382{letter-spacing:4.614375px;}
.ls13_c00382{letter-spacing:5.090775px;}
.ls4_c00382{letter-spacing:6.730238px;}
.ls5_c00382{letter-spacing:7.405125px;}
.ls26_c00382{letter-spacing:8.859375px;}
.ls22_c00382{letter-spacing:9.542700px;}
.ls8_c00382{letter-spacing:10.095750px;}
.ls2a_c00382{letter-spacing:10.237343px;}
.ls25_c00382{letter-spacing:11.743455px;}
.ls7_c00382{letter-spacing:12.114375px;}
.ls9_c00382{letter-spacing:12.789000px;}
.ls2_c00382{letter-spacing:13.213500px;}
.ls2b_c00382{letter-spacing:14.135625px;}
.ls23_c00382{letter-spacing:15.414255px;}
.ls0_c00382{letter-spacing:17.615700px;}
.ls1_c00382{letter-spacing:24.222450px;}
.ls6_c00382{letter-spacing:28.268625px;}
.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;}
._1c_c00382{margin-left:-66.385061px;}
._1f_c00382{margin-left:-35.171278px;}
._1e_c00382{margin-left:-32.909682px;}
._1b_c00382{margin-left:-14.827924px;}
._1d_c00382{margin-left:-13.230823px;}
._f_c00382{margin-left:-6.284354px;}
._1_c00382{margin-left:-4.797509px;}
._e_c00382{margin-left:-3.270473px;}
._2_c00382{margin-left:-1.849986px;}
._3_c00382{width:1.881887px;}
._7_c00382{width:2.919040px;}
._0_c00382{width:4.017454px;}
._6_c00382{width:5.733178px;}
._8_c00382{width:7.767083px;}
._1a_c00382{width:8.902613px;}
._4_c00382{width:9.963762px;}
._12_c00382{width:11.357370px;}
._10_c00382{width:12.456630px;}
._11_c00382{width:14.214420px;}
._a_c00382{width:15.490288px;}
._9_c00382{width:16.521527px;}
._5_c00382{width:19.270690px;}
._19_c00382{width:20.363041px;}
._13_c00382{width:21.387534px;}
._20_c00382{width:22.453601px;}
._d_c00382{width:23.620780px;}
._b_c00382{width:25.853833px;}
._c_c00382{width:28.051835px;}
._18_c00382{width:29.453852px;}
._15_c00382{width:30.849050px;}
._14_c00382{width:33.859974px;}
._17_c00382{width:37.150922px;}
._16_c00382{width:40.017719px;}
.fc0_c00382{color:transparent;}
.fs11_c00382{font-size:15.750000px;}
.fs12_c00382{font-size:22.500000px;}
.fs13_c00382{font-size:24.000000px;}
.fs10_c00382{font-size:26.250000px;}
.fsa_c00382{font-size:30.750000px;}
.fsb_c00382{font-size:32.250000px;}
.fs9_c00382{font-size:34.500000px;}
.fsc_c00382{font-size:45.750000px;}
.fsf_c00382{font-size:46.500000px;}
.fsd_c00382{font-size:47.250000px;}
.fse_c00382{font-size:50.250000px;}
.fs6_c00382{font-size:72.750000px;}
.fs14_c00382{font-size:75.750000px;}
.fs1_c00382{font-size:77.250000px;}
.fs0_c00382{font-size:78.750000px;}
.fs3_c00382{font-size:79.500000px;}
.fs2_c00382{font-size:80.250000px;}
.fs7_c00382{font-size:81.750000px;}
.fs4_c00382{font-size:82.500000px;}
.fs8_c00382{font-size:84.750000px;}
.fs5_c00382{font-size:85.500000px;}
.y0_c00382{bottom:0.000000px;}
.y2f_c00382{bottom:156.958950px;}
.y2e_c00382{bottom:156.959130px;}
.y2d_c00382{bottom:186.478665px;}
.y2c_c00382{bottom:186.479535px;}
.y2b_c00382{bottom:216.359250px;}
.y2a_c00382{bottom:216.359415px;}
.y29_c00382{bottom:245.878950px;}
.y27_c00382{bottom:305.278545px;}
.y28_c00382{bottom:305.279250px;}
.y25_c00382{bottom:334.439070px;}
.y26_c00382{bottom:334.439685px;}
.y24_c00382{bottom:364.318800px;}
.y23_c00382{bottom:364.319670px;}
.y22_c00382{bottom:394.199385px;}
.y21_c00382{bottom:424.080000px;}
.y20_c00382{bottom:429.119385px;}
.y1f_c00382{bottom:453.599670px;}
.y1e_c00382{bottom:453.600495px;}
.y1d_c00382{bottom:484.198785px;}
.y1b_c00382{bottom:513.718665px;}
.y1c_c00382{bottom:513.720150px;}
.y1a_c00382{bottom:543.598395px;}
.y19_c00382{bottom:572.759535px;}
.y18_c00382{bottom:572.760840px;}
.y17_c00382{bottom:602.640570px;}
.y16_c00382{bottom:662.039820px;}
.y15_c00382{bottom:691.919535px;}
.y14_c00382{bottom:691.919625px;}
.y13_c00382{bottom:721.799355px;}
.y12_c00382{bottom:751.679070px;}
.y10_c00382{bottom:781.558545px;}
.y11_c00382{bottom:781.559685px;}
.yf_c00382{bottom:811.438275px;}
.ye_c00382{bottom:841.317990px;}
.yd_c00382{bottom:870.479145px;}
.yc_c00382{bottom:900.358860px;}
.yb_c00382{bottom:929.520015px;}
.ya_c00382{bottom:959.759925px;}
.y9_c00382{bottom:989.639655px;}
.y8_c00382{bottom:1019.879520px;}
.y7_c00382{bottom:1019.880585px;}
.y6_c00382{bottom:1049.760315px;}
.y5_c00382{bottom:1079.279850px;}
.y4_c00382{bottom:1079.280030px;}
.y3_c00382{bottom:1108.799565px;}
.y2_c00382{bottom:1108.800360px;}
.y1_c00382{bottom:1138.680090px;}
.h13_c00382{height:16.426758px;}
.h14_c00382{height:23.466797px;}
.h15_c00382{height:23.542969px;}
.h12_c00382{height:25.750122px;}
.h11_c00382{height:31.872070px;}
.hb_c00382{height:32.071289px;}
.hc_c00382{height:33.635742px;}
.ha_c00382{height:35.982422px;}
.hd_c00382{height:47.715820px;}
.h10_c00382{height:48.498047px;}
.he_c00382{height:49.280273px;}
.hf_c00382{height:52.409180px;}
.h7_c00382{height:71.400146px;}
.h16_c00382{height:74.344482px;}
.h2_c00382{height:75.816650px;}
.h1_c00382{height:77.288818px;}
.h4_c00382{height:78.024902px;}
.h3_c00382{height:78.760986px;}
.h8_c00382{height:80.233154px;}
.h5_c00382{height:80.969238px;}
.h9_c00382{height:83.177490px;}
.h6_c00382{height:84.498047px;}
.h0_c00382{height:1263.000000px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:156.238785px;}
.x2e_c00382{left:157.318650px;}
.x17_c00382{left:158.399250px;}
.x27_c00382{left:178.919535px;}
.x33_c00382{left:182.879565px;}
.xf_c00382{left:187.559685px;}
.x9_c00382{left:213.478635px;}
.xa_c00382{left:226.439685px;}
.x1c_c00382{left:235.080000px;}
.x18_c00382{left:248.039385px;}
.x1d_c00382{left:259.199385px;}
.x1e_c00382{left:279.358635px;}
.x10_c00382{left:282.239250px;}
.xb_c00382{left:287.998950px;}
.x11_c00382{left:316.798515px;}
.xc_c00382{left:318.238785px;}
.xd_c00382{left:335.878350px;}
.x1f_c00382{left:347.040000px;}
.x14_c00382{left:351.000000px;}
.xe_c00382{left:360.719535px;}
.x15_c00382{left:364.679700px;}
.x2a_c00382{left:372.599700px;}
.x19_c00382{left:383.039385px;}
.x2b_c00382{left:390.239220px;}
.x1a_c00382{left:425.518665px;}
.x1b_c00382{left:439.559100px;}
.x2f_c00382{left:445.318770px;}
.x30_c00382{left:460.079400px;}
.x28_c00382{left:463.319235px;}
.x2c_c00382{left:475.558635px;}
.x2_c00382{left:477.359850px;}
.x20_c00382{left:484.559685px;}
.x34_c00382{left:488.878920px;}
.x2d_c00382{left:489.958335px;}
.x3_c00382{left:502.199385px;}
.x21_c00382{left:538.559685px;}
.x12_c00382{left:560.518620px;}
.x22_c00382{left:563.039985px;}
.x35_c00382{left:571.678530px;}
.x13_c00382{left:581.399820px;}
.x23_c00382{left:582.838530px;}
.x36_c00382{left:589.319820px;}
.x31_c00382{left:621.000000px;}
.x32_c00382{left:636.479235px;}
.x24_c00382{left:651.958335px;}
.x4_c00382{left:654.479685px;}
.x5_c00382{left:672.839535px;}
.x25_c00382{left:676.438620px;}
.x7_c00382{left:683.638545px;}
.x26_c00382{left:696.238770px;}
.x8_c00382{left:702.359250px;}
.x6_c00382{left:771.120030px;}
.x37_c00382{left:772.558590px;}
.x29_c00382{left:773.639655px;}
.x16_c00382{left:781.918950px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls2e_c00382{letter-spacing:-11.377333pt;}
.ls10_c00382{letter-spacing:-7.924000pt;}
.ls17_c00382{letter-spacing:-7.266700pt;}
.ls16_c00382{letter-spacing:-6.601000pt;}
.ls14_c00382{letter-spacing:-5.943000pt;}
.ls19_c00382{letter-spacing:-5.285000pt;}
.ls1f_c00382{letter-spacing:-4.835647pt;}
.ls11_c00382{letter-spacing:-4.619300pt;}
.ls1d_c00382{letter-spacing:-4.541667pt;}
.ls1e_c00382{letter-spacing:-4.004000pt;}
.ls1c_c00382{letter-spacing:-3.997000pt;}
.ls12_c00382{letter-spacing:-3.961300pt;}
.lse_c00382{letter-spacing:-3.304000pt;}
.ls1a_c00382{letter-spacing:-2.743600pt;}
.lsc_c00382{letter-spacing:-2.639000pt;}
.lsb_c00382{letter-spacing:-1.981700pt;}
.ls18_c00382{letter-spacing:-1.399907pt;}
.lsd_c00382{letter-spacing:-1.323700pt;}
.ls27_c00382{letter-spacing:-0.719133pt;}
.lsf_c00382{letter-spacing:-0.658000pt;}
.ls21_c00382{letter-spacing:-0.360800pt;}
.ls15_c00382{letter-spacing:0.000000pt;}
.ls29_c00382{letter-spacing:0.682267pt;}
.ls28_c00382{letter-spacing:0.689853pt;}
.ls2f_c00382{letter-spacing:1.420733pt;}
.ls2d_c00382{letter-spacing:1.501867pt;}
.ls20_c00382{letter-spacing:2.609733pt;}
.ls24_c00382{letter-spacing:2.903600pt;}
.ls2c_c00382{letter-spacing:2.904000pt;}
.ls3_c00382{letter-spacing:2.991333pt;}
.lsa_c00382{letter-spacing:3.588433pt;}
.ls1b_c00382{letter-spacing:4.101667pt;}
.ls13_c00382{letter-spacing:4.525133pt;}
.ls4_c00382{letter-spacing:5.982433pt;}
.ls5_c00382{letter-spacing:6.582333pt;}
.ls26_c00382{letter-spacing:7.875000pt;}
.ls22_c00382{letter-spacing:8.482400pt;}
.ls8_c00382{letter-spacing:8.974000pt;}
.ls2a_c00382{letter-spacing:9.099860pt;}
.ls25_c00382{letter-spacing:10.438627pt;}
.ls7_c00382{letter-spacing:10.768333pt;}
.ls9_c00382{letter-spacing:11.368000pt;}
.ls2_c00382{letter-spacing:11.745333pt;}
.ls2b_c00382{letter-spacing:12.565000pt;}
.ls23_c00382{letter-spacing:13.701560pt;}
.ls0_c00382{letter-spacing:15.658400pt;}
.ls1_c00382{letter-spacing:21.531067pt;}
.ls6_c00382{letter-spacing:25.127667pt;}
.ws0_c00382{word-spacing:0.000000pt;}
._1c_c00382{margin-left:-59.008944pt;}
._1f_c00382{margin-left:-31.263358pt;}
._1e_c00382{margin-left:-29.253051pt;}
._1b_c00382{margin-left:-13.180377pt;}
._1d_c00382{margin-left:-11.760732pt;}
._f_c00382{margin-left:-5.586092pt;}
._1_c00382{margin-left:-4.264453pt;}
._e_c00382{margin-left:-2.907087pt;}
._2_c00382{margin-left:-1.644432pt;}
._3_c00382{width:1.672789pt;}
._7_c00382{width:2.594702pt;}
._0_c00382{width:3.571070pt;}
._6_c00382{width:5.096158pt;}
._8_c00382{width:6.904074pt;}
._1a_c00382{width:7.913434pt;}
._4_c00382{width:8.856677pt;}
._12_c00382{width:10.095440pt;}
._10_c00382{width:11.072560pt;}
._11_c00382{width:12.635040pt;}
._a_c00382{width:13.769145pt;}
._9_c00382{width:14.685802pt;}
._5_c00382{width:17.129502pt;}
._19_c00382{width:18.100481pt;}
._13_c00382{width:19.011142pt;}
._20_c00382{width:19.958757pt;}
._d_c00382{width:20.996249pt;}
._b_c00382{width:22.981185pt;}
._c_c00382{width:24.934964pt;}
._18_c00382{width:26.181202pt;}
._15_c00382{width:27.421377pt;}
._14_c00382{width:30.097755pt;}
._17_c00382{width:33.023042pt;}
._16_c00382{width:35.571306pt;}
.fs11_c00382{font-size:14.000000pt;}
.fs12_c00382{font-size:20.000000pt;}
.fs13_c00382{font-size:21.333333pt;}
.fs10_c00382{font-size:23.333333pt;}
.fsa_c00382{font-size:27.333333pt;}
.fsb_c00382{font-size:28.666667pt;}
.fs9_c00382{font-size:30.666667pt;}
.fsc_c00382{font-size:40.666667pt;}
.fsf_c00382{font-size:41.333333pt;}
.fsd_c00382{font-size:42.000000pt;}
.fse_c00382{font-size:44.666667pt;}
.fs6_c00382{font-size:64.666667pt;}
.fs14_c00382{font-size:67.333333pt;}
.fs1_c00382{font-size:68.666667pt;}
.fs0_c00382{font-size:70.000000pt;}
.fs3_c00382{font-size:70.666667pt;}
.fs2_c00382{font-size:71.333333pt;}
.fs7_c00382{font-size:72.666667pt;}
.fs4_c00382{font-size:73.333333pt;}
.fs8_c00382{font-size:75.333333pt;}
.fs5_c00382{font-size:76.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y2f_c00382{bottom:139.519067pt;}
.y2e_c00382{bottom:139.519227pt;}
.y2d_c00382{bottom:165.758813pt;}
.y2c_c00382{bottom:165.759587pt;}
.y2b_c00382{bottom:192.319333pt;}
.y2a_c00382{bottom:192.319480pt;}
.y29_c00382{bottom:218.559067pt;}
.y27_c00382{bottom:271.358707pt;}
.y28_c00382{bottom:271.359333pt;}
.y25_c00382{bottom:297.279173pt;}
.y26_c00382{bottom:297.279720pt;}
.y24_c00382{bottom:323.838933pt;}
.y23_c00382{bottom:323.839707pt;}
.y22_c00382{bottom:350.399453pt;}
.y21_c00382{bottom:376.960000pt;}
.y20_c00382{bottom:381.439453pt;}
.y1f_c00382{bottom:403.199707pt;}
.y1e_c00382{bottom:403.200440pt;}
.y1d_c00382{bottom:430.398920pt;}
.y1b_c00382{bottom:456.638813pt;}
.y1c_c00382{bottom:456.640133pt;}
.y1a_c00382{bottom:483.198573pt;}
.y19_c00382{bottom:509.119587pt;}
.y18_c00382{bottom:509.120747pt;}
.y17_c00382{bottom:535.680507pt;}
.y16_c00382{bottom:588.479840pt;}
.y15_c00382{bottom:615.039587pt;}
.y14_c00382{bottom:615.039667pt;}
.y13_c00382{bottom:641.599427pt;}
.y12_c00382{bottom:668.159173pt;}
.y10_c00382{bottom:694.718707pt;}
.y11_c00382{bottom:694.719720pt;}
.yf_c00382{bottom:721.278467pt;}
.ye_c00382{bottom:747.838213pt;}
.yd_c00382{bottom:773.759240pt;}
.yc_c00382{bottom:800.318987pt;}
.yb_c00382{bottom:826.240013pt;}
.ya_c00382{bottom:853.119933pt;}
.y9_c00382{bottom:879.679693pt;}
.y8_c00382{bottom:906.559573pt;}
.y7_c00382{bottom:906.560520pt;}
.y6_c00382{bottom:933.120280pt;}
.y5_c00382{bottom:959.359867pt;}
.y4_c00382{bottom:959.360027pt;}
.y3_c00382{bottom:985.599613pt;}
.y2_c00382{bottom:985.600320pt;}
.y1_c00382{bottom:1012.160080pt;}
.h13_c00382{height:14.601562pt;}
.h14_c00382{height:20.859375pt;}
.h15_c00382{height:20.927083pt;}
.h12_c00382{height:22.888997pt;}
.h11_c00382{height:28.330729pt;}
.hb_c00382{height:28.507812pt;}
.hc_c00382{height:29.898438pt;}
.ha_c00382{height:31.984375pt;}
.hd_c00382{height:42.414062pt;}
.h10_c00382{height:43.109375pt;}
.he_c00382{height:43.804688pt;}
.hf_c00382{height:46.585938pt;}
.h7_c00382{height:63.466797pt;}
.h16_c00382{height:66.083984pt;}
.h2_c00382{height:67.392578pt;}
.h1_c00382{height:68.701172pt;}
.h4_c00382{height:69.355469pt;}
.h3_c00382{height:70.009766pt;}
.h8_c00382{height:71.318359pt;}
.h5_c00382{height:71.972656pt;}
.h9_c00382{height:73.935547pt;}
.h6_c00382{height:75.109375pt;}
.h0_c00382{height:1122.666667pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:138.878920pt;}
.x2e_c00382{left:139.838800pt;}
.x17_c00382{left:140.799333pt;}
.x27_c00382{left:159.039587pt;}
.x33_c00382{left:162.559613pt;}
.xf_c00382{left:166.719720pt;}
.x9_c00382{left:189.758787pt;}
.xa_c00382{left:201.279720pt;}
.x1c_c00382{left:208.960000pt;}
.x18_c00382{left:220.479453pt;}
.x1d_c00382{left:230.399453pt;}
.x1e_c00382{left:248.318787pt;}
.x10_c00382{left:250.879333pt;}
.xb_c00382{left:255.999067pt;}
.x11_c00382{left:281.598680pt;}
.xc_c00382{left:282.878920pt;}
.xd_c00382{left:298.558533pt;}
.x1f_c00382{left:308.480000pt;}
.x14_c00382{left:312.000000pt;}
.xe_c00382{left:320.639587pt;}
.x15_c00382{left:324.159733pt;}
.x2a_c00382{left:331.199733pt;}
.x19_c00382{left:340.479453pt;}
.x2b_c00382{left:346.879307pt;}
.x1a_c00382{left:378.238813pt;}
.x1b_c00382{left:390.719200pt;}
.x2f_c00382{left:395.838907pt;}
.x30_c00382{left:408.959467pt;}
.x28_c00382{left:411.839320pt;}
.x2c_c00382{left:422.718787pt;}
.x2_c00382{left:424.319867pt;}
.x20_c00382{left:430.719720pt;}
.x34_c00382{left:434.559040pt;}
.x2d_c00382{left:435.518520pt;}
.x3_c00382{left:446.399453pt;}
.x21_c00382{left:478.719720pt;}
.x12_c00382{left:498.238773pt;}
.x22_c00382{left:500.479987pt;}
.x35_c00382{left:508.158693pt;}
.x13_c00382{left:516.799840pt;}
.x23_c00382{left:518.078693pt;}
.x36_c00382{left:523.839840pt;}
.x31_c00382{left:552.000000pt;}
.x32_c00382{left:565.759320pt;}
.x24_c00382{left:579.518520pt;}
.x4_c00382{left:581.759720pt;}
.x5_c00382{left:598.079587pt;}
.x25_c00382{left:601.278773pt;}
.x7_c00382{left:607.678707pt;}
.x26_c00382{left:618.878907pt;}
.x8_c00382{left:624.319333pt;}
.x6_c00382{left:685.440027pt;}
.x37_c00382{left:686.718747pt;}
.x29_c00382{left:687.679693pt;}
.x16_c00382{left:695.039067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_143e0e94a1b7200a5f79f0d3.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_b523b2610558e5bc18fbf7ea.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_cf3d8ef34ec21f61fa09fafd.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_025ee4ade9d543fdfe2c42df.woff2')format("woff");}.ff4_c00383{font-family:ff4_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:ff5_c00383;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.364746;font-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_c00383{transform:matrix(0.165816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165816,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235149,0.000000,0.000000,0.250000,0,0);}
.m13_c00383{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.md_c00383{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281579,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls1e_c00383{letter-spacing:-13.579500px;}
.ls22_c00383{letter-spacing:-11.102100px;}
.ls1a_c00383{letter-spacing:-9.958320px;}
.ls26_c00383{letter-spacing:-9.754725px;}
.lse_c00383{letter-spacing:-8.914500px;}
.ls6_c00383{letter-spacing:-8.175038px;}
.ls9_c00383{letter-spacing:-7.426125px;}
.ls20_c00383{letter-spacing:-6.751575px;}
.ls24_c00383{letter-spacing:-6.685875px;}
.ls17_c00383{letter-spacing:-6.000300px;}
.lsd_c00383{letter-spacing:-5.945625px;}
.ls16_c00383{letter-spacing:-5.247533px;}
.ls12_c00383{letter-spacing:-5.247000px;}
.lsa_c00383{letter-spacing:-5.196713px;}
.ls11_c00383{letter-spacing:-4.921875px;}
.ls7_c00383{letter-spacing:-4.456463px;}
.ls25_c00383{letter-spacing:-4.418663px;}
.ls2_c00383{letter-spacing:-3.717000px;}
.ls1b_c00383{letter-spacing:-3.149213px;}
.ls13_c00383{letter-spacing:-3.080250px;}
.lsc_c00383{letter-spacing:-3.028950px;}
.ls1d_c00383{letter-spacing:-2.972700px;}
.ls5_c00383{letter-spacing:-2.968875px;}
.ls4_c00383{letter-spacing:-2.229413px;}
.ls10_c00383{letter-spacing:-1.995000px;}
.ls8_c00383{letter-spacing:-1.489163px;}
.lsb_c00383{letter-spacing:-0.740250px;}
.ls3_c00383{letter-spacing:0.000000px;}
.lsf_c00383{letter-spacing:0.740250px;}
.ls19_c00383{letter-spacing:0.772650px;}
.ls21_c00383{letter-spacing:0.874500px;}
.ls14_c00383{letter-spacing:1.526963px;}
.ls15_c00383{letter-spacing:1.621800px;}
.ls1_c00383{letter-spacing:1.757250px;}
.ls18_c00383{letter-spacing:3.772440px;}
.ls0_c00383{letter-spacing:5.945625px;}
.ls23_c00383{letter-spacing:9.567225px;}
.ls1c_c00383{letter-spacing:10.179750px;}
.ls1f_c00383{letter-spacing:10.402875px;}
.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;}
._1a_c00383{margin-left:-136.768557px;}
._1e_c00383{margin-left:-14.885994px;}
._12_c00383{margin-left:-9.062149px;}
._4_c00383{margin-left:-7.372293px;}
._5_c00383{margin-left:-6.142693px;}
._1_c00383{margin-left:-4.333063px;}
._c_c00383{margin-left:-3.104756px;}
._2_c00383{margin-left:-1.828649px;}
._0_c00383{width:1.290995px;}
._b_c00383{width:2.424133px;}
._17_c00383{width:3.438047px;}
._6_c00383{width:4.631154px;}
._a_c00383{width:6.610810px;}
._9_c00383{width:7.806844px;}
._8_c00383{width:9.118715px;}
._3_c00383{width:10.429457px;}
._7_c00383{width:12.156638px;}
._d_c00383{width:13.896596px;}
._f_c00383{width:16.412763px;}
._e_c00383{width:18.478450px;}
._1d_c00383{width:19.488471px;}
._11_c00383{width:21.134286px;}
._10_c00383{width:22.451982px;}
._15_c00383{width:24.020800px;}
._1b_c00383{width:25.293608px;}
._1c_c00383{width:26.424637px;}
._14_c00383{width:27.873132px;}
._16_c00383{width:29.291850px;}
._19_c00383{width:31.007010px;}
._13_c00383{width:35.067018px;}
._18_c00383{width:40.214029px;}
.fc0_c00383{color:transparent;}
.fsd_c00383{font-size:69.000000px;}
.fs3_c00383{font-size:71.250000px;}
.fsa_c00383{font-size:72.000000px;}
.fsb_c00383{font-size:73.500000px;}
.fse_c00383{font-size:75.750000px;}
.fs9_c00383{font-size:76.500000px;}
.fs0_c00383{font-size:78.750000px;}
.fs2_c00383{font-size:79.500000px;}
.fs4_c00383{font-size:80.250000px;}
.fsc_c00383{font-size:81.000000px;}
.fs7_c00383{font-size:81.750000px;}
.fs5_c00383{font-size:82.500000px;}
.fs6_c00383{font-size:83.250000px;}
.fs8_c00383{font-size:84.000000px;}
.fs1_c00383{font-size:84.750000px;}
.y0_c00383{bottom:0.000000px;}
.y2b_c00383{bottom:156.959835px;}
.y2a_c00383{bottom:186.839565px;}
.y29_c00383{bottom:186.840585px;}
.y28_c00383{bottom:216.360120px;}
.y26_c00383{bottom:246.239130px;}
.y27_c00383{bottom:246.239850px;}
.y25_c00383{bottom:275.400285px;}
.y24_c00383{bottom:275.400885px;}
.y23_c00383{bottom:305.280600px;}
.y22_c00383{bottom:334.800135px;}
.y21_c00383{bottom:364.679850px;}
.y20_c00383{bottom:394.199385px;}
.y1f_c00383{bottom:424.439250px;}
.y1d_c00383{bottom:453.958605px;}
.y1e_c00383{bottom:453.958920px;}
.y1c_c00383{bottom:484.200630px;}
.y1b_c00383{bottom:513.720150px;}
.y1a_c00383{bottom:513.720285px;}
.y18_c00383{bottom:543.239775px;}
.y19_c00383{bottom:543.239820px;}
.y17_c00383{bottom:573.479685px;}
.y16_c00383{bottom:603.360030px;}
.y15_c00383{bottom:632.519070px;}
.y13_c00383{bottom:662.039820px;}
.y14_c00383{bottom:662.040570px;}
.y11_c00383{bottom:691.919445px;}
.y12_c00383{bottom:691.919535px;}
.y10_c00383{bottom:722.159370px;}
.yf_c00383{bottom:752.039985px;}
.ye_c00383{bottom:752.042535px;}
.yd_c00383{bottom:781.562070px;}
.yc_c00383{bottom:841.681710px;}
.yb_c00383{bottom:871.201245px;}
.ya_c00383{bottom:900.720765px;}
.y9_c00383{bottom:930.600495px;}
.y8_c00383{bottom:960.480210px;}
.y7_c00383{bottom:990.359940px;}
.y6_c00383{bottom:1020.239655px;}
.y5_c00383{bottom:1050.119385px;}
.y4_c00383{bottom:1050.121260px;}
.y3_c00383{bottom:1080.000990px;}
.y2_c00383{bottom:1109.520510px;}
.y1_c00383{bottom:1139.400240px;}
.h4_c00383{height:69.927979px;}
.h11_c00383{height:71.964844px;}
.hb_c00383{height:75.080566px;}
.hc_c00383{height:75.093750px;}
.h12_c00383{height:76.341797px;}
.he_c00383{height:76.658203px;}
.h8_c00383{height:77.250366px;}
.h1_c00383{height:77.288818px;}
.h3_c00383{height:78.024902px;}
.h5_c00383{height:78.760986px;}
.hd_c00383{height:79.365234px;}
.hf_c00383{height:79.497070px;}
.h9_c00383{height:80.233154px;}
.h6_c00383{height:80.969238px;}
.h10_c00383{height:81.533203px;}
.h7_c00383{height:81.705322px;}
.ha_c00383{height:82.441406px;}
.h2_c00383{height:83.177490px;}
.h0_c00383{height:1263.000000px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.x7_c00383{left:151.924095px;}
.x1b_c00383{left:152.999820px;}
.x8_c00383{left:154.080030px;}
.x4_c00383{left:155.521035px;}
.x1_c00383{left:156.958950px;}
.x20_c00383{left:178.919535px;}
.x2_c00383{left:204.120000px;}
.x21_c00383{left:208.439250px;}
.x12_c00383{left:216.000000px;}
.x3_c00383{left:217.079385px;}
.x22_c00383{left:273.599100px;}
.xb_c00383{left:274.678500px;}
.xc_c00383{left:294.478635px;}
.x15_c00383{left:317.159385px;}
.x16_c00383{left:336.598530px;}
.x23_c00383{left:338.038950px;}
.x2f_c00383{left:341.998950px;}
.x30_c00383{left:365.759100px;}
.x24_c00383{left:367.919535px;}
.x1c_c00383{left:369.719100px;}
.x1d_c00383{left:388.439715px;}
.x25_c00383{left:404.639100px;}
.x13_c00383{left:428.399235px;}
.x14_c00383{left:452.159415px;}
.x26_c00383{left:460.799565px;}
.x27_c00383{left:483.119385px;}
.x2d_c00383{left:499.318770px;}
.x2e_c00383{left:514.799520px;}
.x1e_c00383{left:522.358665px;}
.x31_c00383{left:532.798515px;}
.x1f_c00383{left:543.958335px;}
.x2b_c00383{left:553.679670px;}
.x32_c00383{left:556.558635px;}
.x28_c00383{left:559.439250px;}
.xd_c00383{left:563.399235px;}
.x2c_c00383{left:568.438620px;}
.x29_c00383{left:584.639700px;}
.xe_c00383{left:603.358605px;}
.x17_c00383{left:623.878920px;}
.x18_c00383{left:637.199385px;}
.xf_c00383{left:663.479235px;}
.x10_c00383{left:700.198785px;}
.x5_c00383{left:701.279850px;}
.x9_c00383{left:710.279250px;}
.x2a_c00383{left:713.159820px;}
.x6_c00383{left:725.399235px;}
.x19_c00383{left:735.118785px;}
.x1a_c00383{left:748.798560px;}
.x11_c00383{left:779.399235px;}
.xa_c00383{left:780.478635px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls1e_c00383{letter-spacing:-12.070667pt;}
.ls22_c00383{letter-spacing:-9.868533pt;}
.ls1a_c00383{letter-spacing:-8.851840pt;}
.ls26_c00383{letter-spacing:-8.670867pt;}
.lse_c00383{letter-spacing:-7.924000pt;}
.ls6_c00383{letter-spacing:-7.266700pt;}
.ls9_c00383{letter-spacing:-6.601000pt;}
.ls20_c00383{letter-spacing:-6.001400pt;}
.ls24_c00383{letter-spacing:-5.943000pt;}
.ls17_c00383{letter-spacing:-5.333600pt;}
.lsd_c00383{letter-spacing:-5.285000pt;}
.ls16_c00383{letter-spacing:-4.664473pt;}
.ls12_c00383{letter-spacing:-4.664000pt;}
.lsa_c00383{letter-spacing:-4.619300pt;}
.ls11_c00383{letter-spacing:-4.375000pt;}
.ls7_c00383{letter-spacing:-3.961300pt;}
.ls25_c00383{letter-spacing:-3.927700pt;}
.ls2_c00383{letter-spacing:-3.304000pt;}
.ls1b_c00383{letter-spacing:-2.799300pt;}
.ls13_c00383{letter-spacing:-2.738000pt;}
.lsc_c00383{letter-spacing:-2.692400pt;}
.ls1d_c00383{letter-spacing:-2.642400pt;}
.ls5_c00383{letter-spacing:-2.639000pt;}
.ls4_c00383{letter-spacing:-1.981700pt;}
.ls10_c00383{letter-spacing:-1.773333pt;}
.ls8_c00383{letter-spacing:-1.323700pt;}
.lsb_c00383{letter-spacing:-0.658000pt;}
.ls3_c00383{letter-spacing:0.000000pt;}
.lsf_c00383{letter-spacing:0.658000pt;}
.ls19_c00383{letter-spacing:0.686800pt;}
.ls21_c00383{letter-spacing:0.777333pt;}
.ls14_c00383{letter-spacing:1.357300pt;}
.ls15_c00383{letter-spacing:1.441600pt;}
.ls1_c00383{letter-spacing:1.562000pt;}
.ls18_c00383{letter-spacing:3.353280pt;}
.ls0_c00383{letter-spacing:5.285000pt;}
.ls23_c00383{letter-spacing:8.504200pt;}
.ls1c_c00383{letter-spacing:9.048667pt;}
.ls1f_c00383{letter-spacing:9.247000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
._1a_c00383{margin-left:-121.572051pt;}
._1e_c00383{margin-left:-13.231994pt;}
._12_c00383{margin-left:-8.055243pt;}
._4_c00383{margin-left:-6.553149pt;}
._5_c00383{margin-left:-5.460172pt;}
._1_c00383{margin-left:-3.851611pt;}
._c_c00383{margin-left:-2.759783pt;}
._2_c00383{margin-left:-1.625466pt;}
._0_c00383{width:1.147551pt;}
._b_c00383{width:2.154785pt;}
._17_c00383{width:3.056042pt;}
._6_c00383{width:4.116581pt;}
._a_c00383{width:5.876275pt;}
._9_c00383{width:6.939417pt;}
._8_c00383{width:8.105525pt;}
._3_c00383{width:9.270628pt;}
._7_c00383{width:10.805900pt;}
._d_c00383{width:12.352530pt;}
._f_c00383{width:14.589123pt;}
._e_c00383{width:16.425289pt;}
._1d_c00383{width:17.323085pt;}
._11_c00383{width:18.786032pt;}
._10_c00383{width:19.957317pt;}
._15_c00383{width:21.351823pt;}
._1b_c00383{width:22.483208pt;}
._1c_c00383{width:23.488566pt;}
._14_c00383{width:24.776117pt;}
._16_c00383{width:26.037200pt;}
._19_c00383{width:27.561787pt;}
._13_c00383{width:31.170683pt;}
._18_c00383{width:35.745804pt;}
.fsd_c00383{font-size:61.333333pt;}
.fs3_c00383{font-size:63.333333pt;}
.fsa_c00383{font-size:64.000000pt;}
.fsb_c00383{font-size:65.333333pt;}
.fse_c00383{font-size:67.333333pt;}
.fs9_c00383{font-size:68.000000pt;}
.fs0_c00383{font-size:70.000000pt;}
.fs2_c00383{font-size:70.666667pt;}
.fs4_c00383{font-size:71.333333pt;}
.fsc_c00383{font-size:72.000000pt;}
.fs7_c00383{font-size:72.666667pt;}
.fs5_c00383{font-size:73.333333pt;}
.fs6_c00383{font-size:74.000000pt;}
.fs8_c00383{font-size:74.666667pt;}
.fs1_c00383{font-size:75.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y2b_c00383{bottom:139.519853pt;}
.y2a_c00383{bottom:166.079613pt;}
.y29_c00383{bottom:166.080520pt;}
.y28_c00383{bottom:192.320107pt;}
.y26_c00383{bottom:218.879227pt;}
.y27_c00383{bottom:218.879867pt;}
.y25_c00383{bottom:244.800253pt;}
.y24_c00383{bottom:244.800787pt;}
.y23_c00383{bottom:271.360533pt;}
.y22_c00383{bottom:297.600120pt;}
.y21_c00383{bottom:324.159867pt;}
.y20_c00383{bottom:350.399453pt;}
.y1f_c00383{bottom:377.279333pt;}
.y1d_c00383{bottom:403.518760pt;}
.y1e_c00383{bottom:403.519040pt;}
.y1c_c00383{bottom:430.400560pt;}
.y1b_c00383{bottom:456.640133pt;}
.y1a_c00383{bottom:456.640253pt;}
.y18_c00383{bottom:482.879800pt;}
.y19_c00383{bottom:482.879840pt;}
.y17_c00383{bottom:509.759720pt;}
.y16_c00383{bottom:536.320027pt;}
.y15_c00383{bottom:562.239173pt;}
.y13_c00383{bottom:588.479840pt;}
.y14_c00383{bottom:588.480507pt;}
.y11_c00383{bottom:615.039507pt;}
.y12_c00383{bottom:615.039587pt;}
.y10_c00383{bottom:641.919440pt;}
.yf_c00383{bottom:668.479987pt;}
.ye_c00383{bottom:668.482253pt;}
.yd_c00383{bottom:694.721840pt;}
.yc_c00383{bottom:748.161520pt;}
.yb_c00383{bottom:774.401107pt;}
.ya_c00383{bottom:800.640680pt;}
.y9_c00383{bottom:827.200440pt;}
.y8_c00383{bottom:853.760187pt;}
.y7_c00383{bottom:880.319947pt;}
.y6_c00383{bottom:906.879693pt;}
.y5_c00383{bottom:933.439453pt;}
.y4_c00383{bottom:933.441120pt;}
.y3_c00383{bottom:960.000880pt;}
.y2_c00383{bottom:986.240453pt;}
.y1_c00383{bottom:1012.800213pt;}
.h4_c00383{height:62.158203pt;}
.h11_c00383{height:63.968750pt;}
.hb_c00383{height:66.738281pt;}
.hc_c00383{height:66.750000pt;}
.h12_c00383{height:67.859375pt;}
.he_c00383{height:68.140625pt;}
.h8_c00383{height:68.666992pt;}
.h1_c00383{height:68.701172pt;}
.h3_c00383{height:69.355469pt;}
.h5_c00383{height:70.009766pt;}
.hd_c00383{height:70.546875pt;}
.hf_c00383{height:70.664062pt;}
.h9_c00383{height:71.318359pt;}
.h6_c00383{height:71.972656pt;}
.h10_c00383{height:72.473958pt;}
.h7_c00383{height:72.626953pt;}
.ha_c00383{height:73.281250pt;}
.h2_c00383{height:73.935547pt;}
.h0_c00383{height:1122.666667pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.x7_c00383{left:135.043640pt;}
.x1b_c00383{left:135.999840pt;}
.x8_c00383{left:136.960027pt;}
.x4_c00383{left:138.240920pt;}
.x1_c00383{left:139.519067pt;}
.x20_c00383{left:159.039587pt;}
.x2_c00383{left:181.440000pt;}
.x21_c00383{left:185.279333pt;}
.x12_c00383{left:192.000000pt;}
.x3_c00383{left:192.959453pt;}
.x22_c00383{left:243.199200pt;}
.xb_c00383{left:244.158667pt;}
.xc_c00383{left:261.758787pt;}
.x15_c00383{left:281.919453pt;}
.x16_c00383{left:299.198693pt;}
.x23_c00383{left:300.479067pt;}
.x2f_c00383{left:303.999067pt;}
.x30_c00383{left:325.119200pt;}
.x24_c00383{left:327.039587pt;}
.x1c_c00383{left:328.639200pt;}
.x1d_c00383{left:345.279747pt;}
.x25_c00383{left:359.679200pt;}
.x13_c00383{left:380.799320pt;}
.x14_c00383{left:401.919480pt;}
.x26_c00383{left:409.599613pt;}
.x27_c00383{left:429.439453pt;}
.x2d_c00383{left:443.838907pt;}
.x2e_c00383{left:457.599573pt;}
.x1e_c00383{left:464.318813pt;}
.x31_c00383{left:473.598680pt;}
.x1f_c00383{left:483.518520pt;}
.x2b_c00383{left:492.159707pt;}
.x32_c00383{left:494.718787pt;}
.x28_c00383{left:497.279333pt;}
.xd_c00383{left:500.799320pt;}
.x2c_c00383{left:505.278773pt;}
.x29_c00383{left:519.679733pt;}
.xe_c00383{left:536.318760pt;}
.x17_c00383{left:554.559040pt;}
.x18_c00383{left:566.399453pt;}
.xf_c00383{left:589.759320pt;}
.x10_c00383{left:622.398920pt;}
.x5_c00383{left:623.359867pt;}
.x9_c00383{left:631.359333pt;}
.x2a_c00383{left:633.919840pt;}
.x6_c00383{left:644.799320pt;}
.x19_c00383{left:653.438920pt;}
.x1a_c00383{left:665.598720pt;}
.x11_c00383{left:692.799320pt;}
.xa_c00383{left:693.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17d5f8466882dad5eac230d8.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_95b361f50ae4cedf777492f1.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_8a3569d2f542bb3feaba33cd.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_a11e4bf3570435a73761cfbd.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_aab2632a41233270721e0fc9.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00384{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m23_c00384{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.214674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214674,0.000000,0.000000,0.250000,0,0);}
.m21_c00384{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m12_c00384{transform:matrix(0.230603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230603,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m1d_c00384{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.236957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236957,0.000000,0.000000,0.250000,0,0);}
.m1a_c00384{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.m1b_c00384{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m15_c00384{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m16_c00384{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m13_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m19_c00384{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m25_c00384{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m20_c00384{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.m1c_c00384{transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285354,0.000000,0.000000,0.250000,0,0);}
.m10_c00384{transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m11_c00384{transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);}
.m1e_c00384{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_c00384{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls1c_c00384{letter-spacing:-17.681160px;}
.ls1a_c00384{letter-spacing:-13.053150px;}
.ls1f_c00384{letter-spacing:-12.482168px;}
.ls11_c00384{letter-spacing:-10.402875px;}
.ls27_c00384{letter-spacing:-8.914500px;}
.ls24_c00384{letter-spacing:-8.175038px;}
.ls14_c00384{letter-spacing:-7.426125px;}
.ls19_c00384{letter-spacing:-6.876900px;}
.ls22_c00384{letter-spacing:-6.685875px;}
.ls12_c00384{letter-spacing:-6.400208px;}
.ls16_c00384{letter-spacing:-6.000300px;}
.ls4_c00384{letter-spacing:-5.945625px;}
.ls13_c00384{letter-spacing:-5.778855px;}
.ls3_c00384{letter-spacing:-5.536388px;}
.ls23_c00384{letter-spacing:-5.423723px;}
.ls21_c00384{letter-spacing:-5.355000px;}
.ls25_c00384{letter-spacing:-5.343818px;}
.ls10_c00384{letter-spacing:-5.196713px;}
.lse_c00384{letter-spacing:-5.109375px;}
.ls26_c00384{letter-spacing:-5.015625px;}
.ls17_c00384{letter-spacing:-4.668300px;}
.lsd_c00384{letter-spacing:-4.545450px;}
.lsc_c00384{letter-spacing:-4.463550px;}
.lsf_c00384{letter-spacing:-4.456463px;}
.ls8_c00384{letter-spacing:-4.418663px;}
.lsb_c00384{letter-spacing:-4.380750px;}
.ls7_c00384{letter-spacing:-3.717000px;}
.ls1d_c00384{letter-spacing:-3.164625px;}
.ls1e_c00384{letter-spacing:-3.128250px;}
.ls2_c00384{letter-spacing:-2.968875px;}
.ls15_c00384{letter-spacing:-2.436000px;}
.ls1_c00384{letter-spacing:-2.229413px;}
.ls9_c00384{letter-spacing:-2.224028px;}
.ls6_c00384{letter-spacing:-1.489163px;}
.ls1b_c00384{letter-spacing:-0.811125px;}
.ls5_c00384{letter-spacing:-0.740250px;}
.lsa_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:0.740250px;}
.ls20_c00384{letter-spacing:8.827500px;}
.ls18_c00384{letter-spacing:9.261000px;}
.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;}
._19_c00384{margin-left:-16.214655px;}
._11_c00384{margin-left:-9.278370px;}
._10_c00384{margin-left:-7.627146px;}
._a_c00384{margin-left:-4.013501px;}
._9_c00384{margin-left:-2.659120px;}
._16_c00384{margin-left:-1.136645px;}
._b_c00384{width:2.112506px;}
._e_c00384{width:3.307678px;}
._f_c00384{width:4.463491px;}
._0_c00384{width:5.595886px;}
._15_c00384{width:6.790821px;}
._6_c00384{width:8.340071px;}
._3_c00384{width:10.072214px;}
._c_c00384{width:11.181861px;}
._5_c00384{width:12.507714px;}
._7_c00384{width:13.997931px;}
._4_c00384{width:15.582768px;}
._1a_c00384{width:16.647260px;}
._1_c00384{width:18.519623px;}
._8_c00384{width:19.937866px;}
._13_c00384{width:21.320760px;}
._d_c00384{width:22.930217px;}
._17_c00384{width:24.672018px;}
._2_c00384{width:25.885392px;}
._12_c00384{width:28.078877px;}
._14_c00384{width:29.853798px;}
._18_c00384{width:31.582361px;}
.fc0_c00384{color:transparent;}
.fs12_c00384{font-size:63.750000px;}
.fs13_c00384{font-size:69.000000px;}
.fsa_c00384{font-size:72.000000px;}
.fs11_c00384{font-size:72.750000px;}
.fsf_c00384{font-size:74.250000px;}
.fs2_c00384{font-size:77.250000px;}
.fs7_c00384{font-size:78.000000px;}
.fs0_c00384{font-size:78.750000px;}
.fs9_c00384{font-size:79.500000px;}
.fs3_c00384{font-size:80.250000px;}
.fse_c00384{font-size:81.000000px;}
.fs5_c00384{font-size:81.750000px;}
.fs8_c00384{font-size:82.500000px;}
.fs6_c00384{font-size:83.250000px;}
.fs10_c00384{font-size:84.000000px;}
.fsb_c00384{font-size:84.750000px;}
.fsd_c00384{font-size:85.500000px;}
.fs1_c00384{font-size:86.250000px;}
.fsc_c00384{font-size:87.000000px;}
.fs4_c00384{font-size:88.500000px;}
.y0_c00384{bottom:0.000000px;}
.y28_c00384{bottom:159.480465px;}
.y27_c00384{bottom:189.000000px;}
.y26_c00384{bottom:189.000165px;}
.y25_c00384{bottom:218.519685px;}
.y24_c00384{bottom:218.519850px;}
.y23_c00384{bottom:248.039385px;}
.y22_c00384{bottom:248.040270px;}
.y20_c00384{bottom:277.919220px;}
.y21_c00384{bottom:277.920000px;}
.y1f_c00384{bottom:307.798950px;}
.y1e_c00384{bottom:337.320285px;}
.y1d_c00384{bottom:367.199385px;}
.y1c_c00384{bottom:367.199565px;}
.y1b_c00384{bottom:396.719100px;}
.y1a_c00384{bottom:426.599670px;}
.y19_c00384{bottom:456.480285px;}
.y18_c00384{bottom:487.079400px;}
.y17_c00384{bottom:487.080750px;}
.y16_c00384{bottom:516.960480px;}
.y15_c00384{bottom:546.480015px;}
.y14_c00384{bottom:575.999535px;}
.y13_c00384{bottom:605.519070px;}
.y12_c00384{bottom:635.040000px;}
.y11_c00384{bottom:664.919730px;}
.y10_c00384{bottom:694.439250px;}
.yf_c00384{bottom:694.440195px;}
.ye_c00384{bottom:724.319910px;}
.yd_c00384{bottom:784.079355px;}
.yc_c00384{bottom:814.319280px;}
.yb_c00384{bottom:844.199985px;}
.ya_c00384{bottom:873.719520px;}
.y9_c00384{bottom:873.719700px;}
.y8_c00384{bottom:903.239220px;}
.y7_c00384{bottom:933.119940px;}
.y6_c00384{bottom:963.359805px;}
.y5_c00384{bottom:963.360690px;}
.y4_c00384{bottom:993.240420px;}
.y3_c00384{bottom:1052.639175px;}
.y2_c00384{bottom:1111.680045px;}
.y1_c00384{bottom:1141.919955px;}
.h16_c00384{height:66.489258px;}
.h17_c00384{height:71.964844px;}
.hb_c00384{height:75.093750px;}
.h3_c00384{height:75.816650px;}
.h14_c00384{height:75.875977px;}
.h8_c00384{height:76.552734px;}
.h1_c00384{height:77.288818px;}
.h12_c00384{height:77.440430px;}
.ha_c00384{height:78.024902px;}
.h4_c00384{height:78.760986px;}
.h10_c00384{height:79.365234px;}
.h6_c00384{height:80.233154px;}
.hd_c00384{height:80.569336px;}
.h15_c00384{height:80.876953px;}
.h9_c00384{height:80.969238px;}
.h11_c00384{height:81.632812px;}
.h7_c00384{height:81.705322px;}
.h13_c00384{height:83.015625px;}
.hc_c00384{height:83.177490px;}
.hf_c00384{height:83.913574px;}
.h2_c00384{height:84.649658px;}
.he_c00384{height:85.385742px;}
.h5_c00384{height:87.462891px;}
.h0_c00384{height:1263.000000px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.x11_c00384{left:154.800390px;}
.x1_c00384{left:155.879565px;}
.x7_c00384{left:177.479250px;}
.x10_c00384{left:180.359850px;}
.x4_c00384{left:183.599700px;}
.xa_c00384{left:186.119415px;}
.x1e_c00384{left:190.438665px;}
.x8_c00384{left:219.958350px;}
.x9_c00384{left:235.080000px;}
.xb_c00384{left:250.199850px;}
.x1f_c00384{left:251.279250px;}
.x22_c00384{left:262.080000px;}
.x35_c00384{left:272.158785px;}
.x20_c00384{left:274.319250px;}
.x23_c00384{left:289.080000px;}
.xc_c00384{left:291.238785px;}
.x24_c00384{left:312.120000px;}
.xd_c00384{left:313.199385px;}
.x14_c00384{left:344.518635px;}
.x21_c00384{left:346.319850px;}
.xe_c00384{left:353.878950px;}
.x15_c00384{left:358.199850px;}
.x16_c00384{left:387.719565px;}
.x17_c00384{left:398.879565px;}
.x2_c00384{left:403.918950px;}
.x32_c00384{left:409.678530px;}
.x18_c00384{left:412.918350px;}
.xf_c00384{left:417.598530px;}
.x25_c00384{left:418.679670px;}
.x3_c00384{left:426.599670px;}
.x33_c00384{left:430.559685px;}
.x5_c00384{left:442.798920px;}
.x26_c00384{left:450.359850px;}
.x34_c00384{left:458.279850px;}
.x6_c00384{left:470.159820px;}
.x2c_c00384{left:499.679670px;}
.x27_c00384{left:514.799520px;}
.x2d_c00384{left:550.798920px;}
.x2e_c00384{left:567.718500px;}
.x28_c00384{left:593.279850px;}
.x2f_c00384{left:612.359850px;}
.x29_c00384{left:619.559685px;}
.x30_c00384{left:623.878920px;}
.x12_c00384{left:659.519070px;}
.x31_c00384{left:668.159370px;}
.x13_c00384{left:677.519670px;}
.x2a_c00384{left:684.358605px;}
.x19_c00384{left:691.558635px;}
.x1a_c00384{left:705.239820px;}
.x1b_c00384{left:734.759535px;}
.x1c_c00384{left:746.278800px;}
.x1d_c00384{left:759.958335px;}
.x2b_c00384{left:772.558590px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls1c_c00384{letter-spacing:-15.716587pt;}
.ls1a_c00384{letter-spacing:-11.602800pt;}
.ls1f_c00384{letter-spacing:-11.095260pt;}
.ls11_c00384{letter-spacing:-9.247000pt;}
.ls27_c00384{letter-spacing:-7.924000pt;}
.ls24_c00384{letter-spacing:-7.266700pt;}
.ls14_c00384{letter-spacing:-6.601000pt;}
.ls19_c00384{letter-spacing:-6.112800pt;}
.ls22_c00384{letter-spacing:-5.943000pt;}
.ls12_c00384{letter-spacing:-5.689073pt;}
.ls16_c00384{letter-spacing:-5.333600pt;}
.ls4_c00384{letter-spacing:-5.285000pt;}
.ls13_c00384{letter-spacing:-5.136760pt;}
.ls3_c00384{letter-spacing:-4.921233pt;}
.ls23_c00384{letter-spacing:-4.821087pt;}
.ls21_c00384{letter-spacing:-4.760000pt;}
.ls25_c00384{letter-spacing:-4.750060pt;}
.ls10_c00384{letter-spacing:-4.619300pt;}
.lse_c00384{letter-spacing:-4.541667pt;}
.ls26_c00384{letter-spacing:-4.458333pt;}
.ls17_c00384{letter-spacing:-4.149600pt;}
.lsd_c00384{letter-spacing:-4.040400pt;}
.lsc_c00384{letter-spacing:-3.967600pt;}
.lsf_c00384{letter-spacing:-3.961300pt;}
.ls8_c00384{letter-spacing:-3.927700pt;}
.lsb_c00384{letter-spacing:-3.894000pt;}
.ls7_c00384{letter-spacing:-3.304000pt;}
.ls1d_c00384{letter-spacing:-2.813000pt;}
.ls1e_c00384{letter-spacing:-2.780667pt;}
.ls2_c00384{letter-spacing:-2.639000pt;}
.ls15_c00384{letter-spacing:-2.165333pt;}
.ls1_c00384{letter-spacing:-1.981700pt;}
.ls9_c00384{letter-spacing:-1.976913pt;}
.ls6_c00384{letter-spacing:-1.323700pt;}
.ls1b_c00384{letter-spacing:-0.721000pt;}
.ls5_c00384{letter-spacing:-0.658000pt;}
.lsa_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:0.658000pt;}
.ls20_c00384{letter-spacing:7.846667pt;}
.ls18_c00384{letter-spacing:8.232000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
._19_c00384{margin-left:-14.413026pt;}
._11_c00384{margin-left:-8.247440pt;}
._10_c00384{margin-left:-6.779685pt;}
._a_c00384{margin-left:-3.567557pt;}
._9_c00384{margin-left:-2.363662pt;}
._16_c00384{margin-left:-1.010351pt;}
._b_c00384{width:1.877783pt;}
._e_c00384{width:2.940158pt;}
._f_c00384{width:3.967547pt;}
._0_c00384{width:4.974121pt;}
._15_c00384{width:6.036285pt;}
._6_c00384{width:7.413396pt;}
._3_c00384{width:8.953079pt;}
._c_c00384{width:9.939432pt;}
._5_c00384{width:11.117968pt;}
._7_c00384{width:12.442606pt;}
._4_c00384{width:13.851349pt;}
._1a_c00384{width:14.797564pt;}
._1_c00384{width:16.461887pt;}
._8_c00384{width:17.722547pt;}
._13_c00384{width:18.951787pt;}
._d_c00384{width:20.382415pt;}
._17_c00384{width:21.930683pt;}
._2_c00384{width:23.009238pt;}
._12_c00384{width:24.959002pt;}
._14_c00384{width:26.536709pt;}
._18_c00384{width:28.073209pt;}
.fs12_c00384{font-size:56.666667pt;}
.fs13_c00384{font-size:61.333333pt;}
.fsa_c00384{font-size:64.000000pt;}
.fs11_c00384{font-size:64.666667pt;}
.fsf_c00384{font-size:66.000000pt;}
.fs2_c00384{font-size:68.666667pt;}
.fs7_c00384{font-size:69.333333pt;}
.fs0_c00384{font-size:70.000000pt;}
.fs9_c00384{font-size:70.666667pt;}
.fs3_c00384{font-size:71.333333pt;}
.fse_c00384{font-size:72.000000pt;}
.fs5_c00384{font-size:72.666667pt;}
.fs8_c00384{font-size:73.333333pt;}
.fs6_c00384{font-size:74.000000pt;}
.fs10_c00384{font-size:74.666667pt;}
.fsb_c00384{font-size:75.333333pt;}
.fsd_c00384{font-size:76.000000pt;}
.fs1_c00384{font-size:76.666667pt;}
.fsc_c00384{font-size:77.333333pt;}
.fs4_c00384{font-size:78.666667pt;}
.y0_c00384{bottom:0.000000pt;}
.y28_c00384{bottom:141.760413pt;}
.y27_c00384{bottom:168.000000pt;}
.y26_c00384{bottom:168.000147pt;}
.y25_c00384{bottom:194.239720pt;}
.y24_c00384{bottom:194.239867pt;}
.y23_c00384{bottom:220.479453pt;}
.y22_c00384{bottom:220.480240pt;}
.y20_c00384{bottom:247.039307pt;}
.y21_c00384{bottom:247.040000pt;}
.y1f_c00384{bottom:273.599067pt;}
.y1e_c00384{bottom:299.840253pt;}
.y1d_c00384{bottom:326.399453pt;}
.y1c_c00384{bottom:326.399613pt;}
.y1b_c00384{bottom:352.639200pt;}
.y1a_c00384{bottom:379.199707pt;}
.y19_c00384{bottom:405.760253pt;}
.y18_c00384{bottom:432.959467pt;}
.y17_c00384{bottom:432.960667pt;}
.y16_c00384{bottom:459.520427pt;}
.y15_c00384{bottom:485.760013pt;}
.y14_c00384{bottom:511.999587pt;}
.y13_c00384{bottom:538.239173pt;}
.y12_c00384{bottom:564.480000pt;}
.y11_c00384{bottom:591.039760pt;}
.y10_c00384{bottom:617.279333pt;}
.yf_c00384{bottom:617.280173pt;}
.ye_c00384{bottom:643.839920pt;}
.yd_c00384{bottom:696.959427pt;}
.yc_c00384{bottom:723.839360pt;}
.yb_c00384{bottom:750.399987pt;}
.ya_c00384{bottom:776.639573pt;}
.y9_c00384{bottom:776.639733pt;}
.y8_c00384{bottom:802.879307pt;}
.y7_c00384{bottom:829.439947pt;}
.y6_c00384{bottom:856.319827pt;}
.y5_c00384{bottom:856.320613pt;}
.y4_c00384{bottom:882.880373pt;}
.y3_c00384{bottom:935.679267pt;}
.y2_c00384{bottom:988.160040pt;}
.y1_c00384{bottom:1015.039960pt;}
.h16_c00384{height:59.101562pt;}
.h17_c00384{height:63.968750pt;}
.hb_c00384{height:66.750000pt;}
.h3_c00384{height:67.392578pt;}
.h14_c00384{height:67.445312pt;}
.h8_c00384{height:68.046875pt;}
.h1_c00384{height:68.701172pt;}
.h12_c00384{height:68.835938pt;}
.ha_c00384{height:69.355469pt;}
.h4_c00384{height:70.009766pt;}
.h10_c00384{height:70.546875pt;}
.h6_c00384{height:71.318359pt;}
.hd_c00384{height:71.617188pt;}
.h15_c00384{height:71.890625pt;}
.h9_c00384{height:71.972656pt;}
.h11_c00384{height:72.562500pt;}
.h7_c00384{height:72.626953pt;}
.h13_c00384{height:73.791667pt;}
.hc_c00384{height:73.935547pt;}
.hf_c00384{height:74.589844pt;}
.h2_c00384{height:75.244141pt;}
.he_c00384{height:75.898438pt;}
.h5_c00384{height:77.744792pt;}
.h0_c00384{height:1122.666667pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.x11_c00384{left:137.600347pt;}
.x1_c00384{left:138.559613pt;}
.x7_c00384{left:157.759333pt;}
.x10_c00384{left:160.319867pt;}
.x4_c00384{left:163.199733pt;}
.xa_c00384{left:165.439480pt;}
.x1e_c00384{left:169.278813pt;}
.x8_c00384{left:195.518533pt;}
.x9_c00384{left:208.960000pt;}
.xb_c00384{left:222.399867pt;}
.x1f_c00384{left:223.359333pt;}
.x22_c00384{left:232.960000pt;}
.x35_c00384{left:241.918920pt;}
.x20_c00384{left:243.839333pt;}
.x23_c00384{left:256.960000pt;}
.xc_c00384{left:258.878920pt;}
.x24_c00384{left:277.440000pt;}
.xd_c00384{left:278.399453pt;}
.x14_c00384{left:306.238787pt;}
.x21_c00384{left:307.839867pt;}
.xe_c00384{left:314.559067pt;}
.x15_c00384{left:318.399867pt;}
.x16_c00384{left:344.639613pt;}
.x17_c00384{left:354.559613pt;}
.x2_c00384{left:359.039067pt;}
.x32_c00384{left:364.158693pt;}
.x18_c00384{left:367.038533pt;}
.xf_c00384{left:371.198693pt;}
.x25_c00384{left:372.159707pt;}
.x3_c00384{left:379.199707pt;}
.x33_c00384{left:382.719720pt;}
.x5_c00384{left:393.599040pt;}
.x26_c00384{left:400.319867pt;}
.x34_c00384{left:407.359867pt;}
.x6_c00384{left:417.919840pt;}
.x2c_c00384{left:444.159707pt;}
.x27_c00384{left:457.599573pt;}
.x2d_c00384{left:489.599040pt;}
.x2e_c00384{left:504.638667pt;}
.x28_c00384{left:527.359867pt;}
.x2f_c00384{left:544.319867pt;}
.x29_c00384{left:550.719720pt;}
.x30_c00384{left:554.559040pt;}
.x12_c00384{left:586.239173pt;}
.x31_c00384{left:593.919440pt;}
.x13_c00384{left:602.239707pt;}
.x2a_c00384{left:608.318760pt;}
.x19_c00384{left:614.718787pt;}
.x1a_c00384{left:626.879840pt;}
.x1b_c00384{left:653.119587pt;}
.x1c_c00384{left:663.358933pt;}
.x1d_c00384{left:675.518520pt;}
.x2b_c00384{left:686.718747pt;}
}





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

.ir_c00385:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_5758feb64702ebfbd45210e3.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_a8d92420f0992232d83323ec.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_dbc688c620210d07852efbc2.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_adec8b434d9f7bf1cee1ed78.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_1de01070d54b045703236b55.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_4ec77e49058dd331100a1fd8.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00385{transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);}
.mf_c00385{transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172330,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{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_c00385{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m20_c00385{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m7_c00385{transform:matrix(0.221739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221739,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m18_c00385{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m21_c00385{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m6_c00385{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m1f_c00385{transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);}
.m13_c00385{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275773,0.000000,0.000000,0.250000,0,0);}
.me_c00385{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m12_c00385{transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{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_c00385{transform:matrix(0.370536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370536,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.404412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404412,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{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);}
.m15_c00385{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);}
.m17_c00385{transform:matrix(0.540541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540541,0.000000,0.000000,0.250000,0,0);}
.m1d_c00385{transform:matrix(0.572581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572581,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(1.081395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.081395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.081395,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.v1_c00385{vertical-align:1.444380px;}
.ls19_c00385{letter-spacing:-8.914500px;}
.ls15_c00385{letter-spacing:-8.175038px;}
.ls34_c00385{letter-spacing:-7.965653px;}
.ls33_c00385{letter-spacing:-7.426125px;}
.ls1a_c00385{letter-spacing:-6.802853px;}
.ls1d_c00385{letter-spacing:-6.789600px;}
.ls14_c00385{letter-spacing:-6.762000px;}
.ls1b_c00385{letter-spacing:-6.685875px;}
.ls1f_c00385{letter-spacing:-6.572700px;}
.ls13_c00385{letter-spacing:-5.945625px;}
.ls22_c00385{letter-spacing:-5.642258px;}
.ls26_c00385{letter-spacing:-5.249400px;}
.ls32_c00385{letter-spacing:-5.247533px;}
.ls17_c00385{letter-spacing:-5.205750px;}
.ls11_c00385{letter-spacing:-5.196713px;}
.ls25_c00385{letter-spacing:-5.014575px;}
.ls28_c00385{letter-spacing:-4.509652px;}
.ls35_c00385{letter-spacing:-4.495433px;}
.ls10_c00385{letter-spacing:-4.456463px;}
.lsa_c00385{letter-spacing:-3.717000px;}
.lse_c00385{letter-spacing:-3.057450px;}
.lsb_c00385{letter-spacing:-2.968875px;}
.ls12_c00385{letter-spacing:-2.913750px;}
.ls1c_c00385{letter-spacing:-2.912325px;}
.ls36_c00385{letter-spacing:-2.230020px;}
.ls8_c00385{letter-spacing:-2.229413px;}
.ls30_c00385{letter-spacing:-1.636800px;}
.ls24_c00385{letter-spacing:-1.560900px;}
.lsf_c00385{letter-spacing:-1.489163px;}
.ls9_c00385{letter-spacing:-0.740250px;}
.ls21_c00385{letter-spacing:-0.681525px;}
.lsc_c00385{letter-spacing:0.000000px;}
.lsd_c00385{letter-spacing:0.740250px;}
.ls0_c00385{letter-spacing:1.489163px;}
.ls1e_c00385{letter-spacing:2.178450px;}
.ls16_c00385{letter-spacing:2.305350px;}
.ls20_c00385{letter-spacing:4.391483px;}
.ls18_c00385{letter-spacing:4.685175px;}
.ls23_c00385{letter-spacing:5.014575px;}
.ls27_c00385{letter-spacing:6.896475px;}
.ls29_c00385{letter-spacing:7.523775px;}
.ls4_c00385{letter-spacing:10.086750px;}
.ls2_c00385{letter-spacing:10.660275px;}
.ls2b_c00385{letter-spacing:11.250000px;}
.ls5_c00385{letter-spacing:13.189500px;}
.ls2a_c00385{letter-spacing:14.742000px;}
.ls2c_c00385{letter-spacing:15.518250px;}
.ls31_c00385{letter-spacing:16.292475px;}
.ls1_c00385{letter-spacing:16.929450px;}
.ls2d_c00385{letter-spacing:18.621225px;}
.ls2f_c00385{letter-spacing:20.947500px;}
.ls7_c00385{letter-spacing:22.500000px;}
.ls6_c00385{letter-spacing:25.602525px;}
.ls3_c00385{letter-spacing:27.931275px;}
.ls2e_c00385{letter-spacing:28.282050px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:0.000000px;}
._20_c00385{margin-left:-105.577575px;}
._21_c00385{margin-left:-58.806227px;}
._22_c00385{margin-left:-54.269263px;}
._23_c00385{margin-left:-33.870778px;}
._17_c00385{margin-left:-7.712210px;}
._1e_c00385{margin-left:-6.651388px;}
._18_c00385{margin-left:-4.973939px;}
._19_c00385{margin-left:-3.933042px;}
._16_c00385{margin-left:-2.561529px;}
._9_c00385{margin-left:-1.465433px;}
._6_c00385{width:1.734848px;}
._8_c00385{width:3.781709px;}
._7_c00385{width:5.429515px;}
._1_c00385{width:6.615119px;}
._3_c00385{width:8.143909px;}
._0_c00385{width:9.551082px;}
._2_c00385{width:11.029294px;}
._12_c00385{width:12.389515px;}
._4_c00385{width:13.828767px;}
._c_c00385{width:14.903720px;}
._5_c00385{width:16.348500px;}
._d_c00385{width:18.424320px;}
._14_c00385{width:19.488827px;}
._15_c00385{width:21.462154px;}
._13_c00385{width:22.491416px;}
._a_c00385{width:24.301091px;}
._1f_c00385{width:25.491732px;}
._1b_c00385{width:26.547071px;}
._b_c00385{width:28.039532px;}
._1d_c00385{width:29.334152px;}
._10_c00385{width:31.862428px;}
._f_c00385{width:36.762654px;}
._11_c00385{width:38.898993px;}
._1c_c00385{width:41.314850px;}
._e_c00385{width:43.753084px;}
._1a_c00385{width:51.977407px;}
.fc0_c00385{color:transparent;}
.fs11_c00385{font-size:22.500000px;}
.fs15_c00385{font-size:23.250000px;}
.fs12_c00385{font-size:24.000000px;}
.fs14_c00385{font-size:25.500000px;}
.fs13_c00385{font-size:26.250000px;}
.fs10_c00385{font-size:27.750000px;}
.fsc_c00385{font-size:29.250000px;}
.fsd_c00385{font-size:32.250000px;}
.fsb_c00385{font-size:38.250000px;}
.fse_c00385{font-size:39.000000px;}
.fsf_c00385{font-size:42.000000px;}
.fs2_c00385{font-size:67.500000px;}
.fs4_c00385{font-size:72.000000px;}
.fs7_c00385{font-size:72.750000px;}
.fs8_c00385{font-size:77.250000px;}
.fs9_c00385{font-size:78.000000px;}
.fs0_c00385{font-size:78.750000px;}
.fs5_c00385{font-size:80.250000px;}
.fs1_c00385{font-size:81.750000px;}
.fs3_c00385{font-size:82.500000px;}
.fsa_c00385{font-size:84.750000px;}
.fs6_c00385{font-size:86.250000px;}
.y0_c00385{bottom:0.000000px;}
.y30_c00385{bottom:187.198035px;}
.y2f_c00385{bottom:216.719370px;}
.y2e_c00385{bottom:246.599100px;}
.y2d_c00385{bottom:246.599265px;}
.y2c_c00385{bottom:276.118785px;}
.y2b_c00385{bottom:276.118980px;}
.y2a_c00385{bottom:335.159850px;}
.y29_c00385{bottom:365.038950px;}
.y28_c00385{bottom:394.560285px;}
.y26_c00385{bottom:424.439250px;}
.y27_c00385{bottom:424.800150px;}
.y25_c00385{bottom:429.119385px;}
.y24_c00385{bottom:454.679220px;}
.y23_c00385{bottom:484.919130px;}
.y21_c00385{bottom:514.438635px;}
.y22_c00385{bottom:514.438665px;}
.y20_c00385{bottom:543.959970px;}
.y1f_c00385{bottom:543.960075px;}
.y1e_c00385{bottom:573.839790px;}
.y1d_c00385{bottom:603.719520px;}
.y1c_c00385{bottom:603.720015px;}
.y1b_c00385{bottom:633.239550px;}
.y1a_c00385{bottom:662.759085px;}
.y19_c00385{bottom:692.278800px;}
.y18_c00385{bottom:692.279640px;}
.y17_c00385{bottom:722.159370px;}
.y16_c00385{bottom:722.160255px;}
.y14_c00385{bottom:752.039220px;}
.y15_c00385{bottom:752.039985px;}
.y12_c00385{bottom:781.918755px;}
.y13_c00385{bottom:781.918950px;}
.y11_c00385{bottom:812.158680px;}
.y10_c00385{bottom:842.398590px;}
.yf_c00385{bottom:842.398800px;}
.ye_c00385{bottom:871.920135px;}
.yd_c00385{bottom:901.439670px;}
.yc_c00385{bottom:901.439850px;}
.yb_c00385{bottom:930.959385px;}
.ya_c00385{bottom:930.959430px;}
.y9_c00385{bottom:961.199340px;}
.y8_c00385{bottom:990.359805px;}
.y7_c00385{bottom:990.359895px;}
.y6_c00385{bottom:1020.599805px;}
.y4_c00385{bottom:1080.359115px;}
.y5_c00385{bottom:1080.359250px;}
.y3_c00385{bottom:1110.599025px;}
.y2_c00385{bottom:1110.599220px;}
.y1_c00385{bottom:1140.118740px;}
.h12_c00385{height:23.466797px;}
.h17_c00385{height:24.249023px;}
.h14_c00385{height:24.911177px;}
.h13_c00385{height:25.031250px;}
.h16_c00385{height:25.201172px;}
.h15_c00385{height:25.750122px;}
.h11_c00385{height:28.942383px;}
.hd_c00385{height:30.506836px;}
.he_c00385{height:33.635742px;}
.hc_c00385{height:39.893555px;}
.hf_c00385{height:40.675781px;}
.h10_c00385{height:43.804688px;}
.h3_c00385{height:70.400391px;}
.h5_c00385{height:75.093750px;}
.h9_c00385{height:75.816650px;}
.h8_c00385{height:75.875977px;}
.ha_c00385{height:76.552734px;}
.h1_c00385{height:77.288818px;}
.h6_c00385{height:78.760986px;}
.h2_c00385{height:80.233154px;}
.h4_c00385{height:80.969238px;}
.hb_c00385{height:83.177490px;}
.h7_c00385{height:85.239258px;}
.h0_c00385{height:1263.000000px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.x1b_c00385{left:154.796715px;}
.xc_c00385{left:155.879565px;}
.x1_c00385{left:156.958950px;}
.x37_c00385{left:176.399850px;}
.x28_c00385{left:227.878350px;}
.x29_c00385{left:246.958350px;}
.x35_c00385{left:255.239250px;}
.x38_c00385{left:267.839535px;}
.x36_c00385{left:270.718500px;}
.x22_c00385{left:275.039385px;}
.x4_c00385{left:281.159850px;}
.x5_c00385{left:294.478635px;}
.x3c_c00385{left:296.639100px;}
.x23_c00385{left:303.838950px;}
.x31_c00385{left:309.598530px;}
.x3d_c00385{left:312.838515px;}
.x39_c00385{left:329.398635px;}
.x32_c00385{left:330.479685px;}
.x24_c00385{left:332.638530px;}
.x6_c00385{left:334.078785px;}
.x7_c00385{left:345.238785px;}
.x3a_c00385{left:354.958350px;}
.x8_c00385{left:358.918350px;}
.x13_c00385{left:382.319235px;}
.x14_c00385{left:398.159415px;}
.x17_c00385{left:405.000000px;}
.x15_c00385{left:421.558635px;}
.x16_c00385{left:450.359850px;}
.x18_c00385{left:451.439250px;}
.x33_c00385{left:456.478635px;}
.x11_c00385{left:457.918950px;}
.x9_c00385{left:459.359250px;}
.x34_c00385{left:465.118785px;}
.xa_c00385{left:474.838530px;}
.xf_c00385{left:478.439250px;}
.x2a_c00385{left:484.559685px;}
.x12_c00385{left:486.000000px;}
.x10_c00385{left:493.918350px;}
.x25_c00385{left:500.038920px;}
.x2b_c00385{left:503.998950px;}
.x1c_c00385{left:506.518620px;}
.xd_c00385{left:513.359250px;}
.x26_c00385{left:520.199850px;}
.x3b_c00385{left:527.399820px;}
.x1d_c00385{left:535.319820px;}
.xe_c00385{left:554.038920px;}
.x1e_c00385{left:575.638545px;}
.x3e_c00385{left:576.719520px;}
.x19_c00385{left:580.679670px;}
.x1a_c00385{left:603.719520px;}
.x20_c00385{left:611.278800px;}
.x2c_c00385{left:617.039985px;}
.x27_c00385{left:622.438620px;}
.x1f_c00385{left:624.599070px;}
.x2d_c00385{left:646.559685px;}
.x2e_c00385{left:664.199385px;}
.x2f_c00385{left:693.359850px;}
.x30_c00385{left:706.319235px;}
.x2_c00385{left:738.358605px;}
.x3_c00385{left:777.599670px;}
.x21_c00385{left:781.559685px;}
.xb_c00385{left:782.639100px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.v1_c00385{vertical-align:1.283893pt;}
.ls19_c00385{letter-spacing:-7.924000pt;}
.ls15_c00385{letter-spacing:-7.266700pt;}
.ls34_c00385{letter-spacing:-7.080580pt;}
.ls33_c00385{letter-spacing:-6.601000pt;}
.ls1a_c00385{letter-spacing:-6.046980pt;}
.ls1d_c00385{letter-spacing:-6.035200pt;}
.ls14_c00385{letter-spacing:-6.010667pt;}
.ls1b_c00385{letter-spacing:-5.943000pt;}
.ls1f_c00385{letter-spacing:-5.842400pt;}
.ls13_c00385{letter-spacing:-5.285000pt;}
.ls22_c00385{letter-spacing:-5.015340pt;}
.ls26_c00385{letter-spacing:-4.666133pt;}
.ls32_c00385{letter-spacing:-4.664473pt;}
.ls17_c00385{letter-spacing:-4.627333pt;}
.ls11_c00385{letter-spacing:-4.619300pt;}
.ls25_c00385{letter-spacing:-4.457400pt;}
.ls28_c00385{letter-spacing:-4.008580pt;}
.ls35_c00385{letter-spacing:-3.995940pt;}
.ls10_c00385{letter-spacing:-3.961300pt;}
.lsa_c00385{letter-spacing:-3.304000pt;}
.lse_c00385{letter-spacing:-2.717733pt;}
.lsb_c00385{letter-spacing:-2.639000pt;}
.ls12_c00385{letter-spacing:-2.590000pt;}
.ls1c_c00385{letter-spacing:-2.588733pt;}
.ls36_c00385{letter-spacing:-1.982240pt;}
.ls8_c00385{letter-spacing:-1.981700pt;}
.ls30_c00385{letter-spacing:-1.454933pt;}
.ls24_c00385{letter-spacing:-1.387467pt;}
.lsf_c00385{letter-spacing:-1.323700pt;}
.ls9_c00385{letter-spacing:-0.658000pt;}
.ls21_c00385{letter-spacing:-0.605800pt;}
.lsc_c00385{letter-spacing:0.000000pt;}
.lsd_c00385{letter-spacing:0.658000pt;}
.ls0_c00385{letter-spacing:1.323700pt;}
.ls1e_c00385{letter-spacing:1.936400pt;}
.ls16_c00385{letter-spacing:2.049200pt;}
.ls20_c00385{letter-spacing:3.903540pt;}
.ls18_c00385{letter-spacing:4.164600pt;}
.ls23_c00385{letter-spacing:4.457400pt;}
.ls27_c00385{letter-spacing:6.130200pt;}
.ls29_c00385{letter-spacing:6.687800pt;}
.ls4_c00385{letter-spacing:8.966000pt;}
.ls2_c00385{letter-spacing:9.475800pt;}
.ls2b_c00385{letter-spacing:10.000000pt;}
.ls5_c00385{letter-spacing:11.724000pt;}
.ls2a_c00385{letter-spacing:13.104000pt;}
.ls2c_c00385{letter-spacing:13.794000pt;}
.ls31_c00385{letter-spacing:14.482200pt;}
.ls1_c00385{letter-spacing:15.048400pt;}
.ls2d_c00385{letter-spacing:16.552200pt;}
.ls2f_c00385{letter-spacing:18.620000pt;}
.ls7_c00385{letter-spacing:20.000000pt;}
.ls6_c00385{letter-spacing:22.757800pt;}
.ls3_c00385{letter-spacing:24.827800pt;}
.ls2e_c00385{letter-spacing:25.139600pt;}
.ws0_c00385{word-spacing:0.000000pt;}
._20_c00385{margin-left:-93.846733pt;}
._21_c00385{margin-left:-52.272201pt;}
._22_c00385{margin-left:-48.239345pt;}
._23_c00385{margin-left:-30.107359pt;}
._17_c00385{margin-left:-6.855298pt;}
._1e_c00385{margin-left:-5.912345pt;}
._18_c00385{margin-left:-4.421279pt;}
._19_c00385{margin-left:-3.496038pt;}
._16_c00385{margin-left:-2.276915pt;}
._9_c00385{margin-left:-1.302608pt;}
._6_c00385{width:1.542087pt;}
._8_c00385{width:3.361519pt;}
._7_c00385{width:4.826236pt;}
._1_c00385{width:5.880106pt;}
._3_c00385{width:7.239030pt;}
._0_c00385{width:8.489851pt;}
._2_c00385{width:9.803817pt;}
._12_c00385{width:11.012902pt;}
._4_c00385{width:12.292238pt;}
._c_c00385{width:13.247751pt;}
._5_c00385{width:14.532000pt;}
._d_c00385{width:16.377174pt;}
._14_c00385{width:17.323402pt;}
._15_c00385{width:19.077470pt;}
._13_c00385{width:19.992370pt;}
._a_c00385{width:21.600970pt;}
._1f_c00385{width:22.659317pt;}
._1b_c00385{width:23.597396pt;}
._b_c00385{width:24.924028pt;}
._1d_c00385{width:26.074802pt;}
._10_c00385{width:28.322158pt;}
._f_c00385{width:32.677915pt;}
._11_c00385{width:34.576883pt;}
._1c_c00385{width:36.724311pt;}
._e_c00385{width:38.891630pt;}
._1a_c00385{width:46.202140pt;}
.fs11_c00385{font-size:20.000000pt;}
.fs15_c00385{font-size:20.666667pt;}
.fs12_c00385{font-size:21.333333pt;}
.fs14_c00385{font-size:22.666667pt;}
.fs13_c00385{font-size:23.333333pt;}
.fs10_c00385{font-size:24.666667pt;}
.fsc_c00385{font-size:26.000000pt;}
.fsd_c00385{font-size:28.666667pt;}
.fsb_c00385{font-size:34.000000pt;}
.fse_c00385{font-size:34.666667pt;}
.fsf_c00385{font-size:37.333333pt;}
.fs2_c00385{font-size:60.000000pt;}
.fs4_c00385{font-size:64.000000pt;}
.fs7_c00385{font-size:64.666667pt;}
.fs8_c00385{font-size:68.666667pt;}
.fs9_c00385{font-size:69.333333pt;}
.fs0_c00385{font-size:70.000000pt;}
.fs5_c00385{font-size:71.333333pt;}
.fs1_c00385{font-size:72.666667pt;}
.fs3_c00385{font-size:73.333333pt;}
.fsa_c00385{font-size:75.333333pt;}
.fs6_c00385{font-size:76.666667pt;}
.y0_c00385{bottom:0.000000pt;}
.y30_c00385{bottom:166.398253pt;}
.y2f_c00385{bottom:192.639440pt;}
.y2e_c00385{bottom:219.199200pt;}
.y2d_c00385{bottom:219.199347pt;}
.y2c_c00385{bottom:245.438920pt;}
.y2b_c00385{bottom:245.439093pt;}
.y2a_c00385{bottom:297.919867pt;}
.y29_c00385{bottom:324.479067pt;}
.y28_c00385{bottom:350.720253pt;}
.y26_c00385{bottom:377.279333pt;}
.y27_c00385{bottom:377.600133pt;}
.y25_c00385{bottom:381.439453pt;}
.y24_c00385{bottom:404.159307pt;}
.y23_c00385{bottom:431.039227pt;}
.y21_c00385{bottom:457.278787pt;}
.y22_c00385{bottom:457.278813pt;}
.y20_c00385{bottom:483.519973pt;}
.y1f_c00385{bottom:483.520067pt;}
.y1e_c00385{bottom:510.079813pt;}
.y1d_c00385{bottom:536.639573pt;}
.y1c_c00385{bottom:536.640013pt;}
.y1b_c00385{bottom:562.879600pt;}
.y1a_c00385{bottom:589.119187pt;}
.y19_c00385{bottom:615.358933pt;}
.y18_c00385{bottom:615.359680pt;}
.y17_c00385{bottom:641.919440pt;}
.y16_c00385{bottom:641.920227pt;}
.y14_c00385{bottom:668.479307pt;}
.y15_c00385{bottom:668.479987pt;}
.y12_c00385{bottom:695.038893pt;}
.y13_c00385{bottom:695.039067pt;}
.y11_c00385{bottom:721.918827pt;}
.y10_c00385{bottom:748.798747pt;}
.yf_c00385{bottom:748.798933pt;}
.ye_c00385{bottom:775.040120pt;}
.yd_c00385{bottom:801.279707pt;}
.yc_c00385{bottom:801.279867pt;}
.yb_c00385{bottom:827.519453pt;}
.ya_c00385{bottom:827.519493pt;}
.y9_c00385{bottom:854.399413pt;}
.y8_c00385{bottom:880.319827pt;}
.y7_c00385{bottom:880.319907pt;}
.y6_c00385{bottom:907.199827pt;}
.y4_c00385{bottom:960.319213pt;}
.y5_c00385{bottom:960.319333pt;}
.y3_c00385{bottom:987.199133pt;}
.y2_c00385{bottom:987.199307pt;}
.y1_c00385{bottom:1013.438880pt;}
.h12_c00385{height:20.859375pt;}
.h17_c00385{height:21.554687pt;}
.h14_c00385{height:22.143268pt;}
.h13_c00385{height:22.250000pt;}
.h16_c00385{height:22.401042pt;}
.h15_c00385{height:22.888997pt;}
.h11_c00385{height:25.726562pt;}
.hd_c00385{height:27.117188pt;}
.he_c00385{height:29.898438pt;}
.hc_c00385{height:35.460938pt;}
.hf_c00385{height:36.156250pt;}
.h10_c00385{height:38.937500pt;}
.h3_c00385{height:62.578125pt;}
.h5_c00385{height:66.750000pt;}
.h9_c00385{height:67.392578pt;}
.h8_c00385{height:67.445312pt;}
.ha_c00385{height:68.046875pt;}
.h1_c00385{height:68.701172pt;}
.h6_c00385{height:70.009766pt;}
.h2_c00385{height:71.318359pt;}
.h4_c00385{height:71.972656pt;}
.hb_c00385{height:73.935547pt;}
.h7_c00385{height:75.768229pt;}
.h0_c00385{height:1122.666667pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.x1b_c00385{left:137.597080pt;}
.xc_c00385{left:138.559613pt;}
.x1_c00385{left:139.519067pt;}
.x37_c00385{left:156.799867pt;}
.x28_c00385{left:202.558533pt;}
.x29_c00385{left:219.518533pt;}
.x35_c00385{left:226.879333pt;}
.x38_c00385{left:238.079587pt;}
.x36_c00385{left:240.638667pt;}
.x22_c00385{left:244.479453pt;}
.x4_c00385{left:249.919867pt;}
.x5_c00385{left:261.758787pt;}
.x3c_c00385{left:263.679200pt;}
.x23_c00385{left:270.079067pt;}
.x31_c00385{left:275.198693pt;}
.x3d_c00385{left:278.078680pt;}
.x39_c00385{left:292.798787pt;}
.x32_c00385{left:293.759720pt;}
.x24_c00385{left:295.678693pt;}
.x6_c00385{left:296.958920pt;}
.x7_c00385{left:306.878920pt;}
.x3a_c00385{left:315.518533pt;}
.x8_c00385{left:319.038533pt;}
.x13_c00385{left:339.839320pt;}
.x14_c00385{left:353.919480pt;}
.x17_c00385{left:360.000000pt;}
.x15_c00385{left:374.718787pt;}
.x16_c00385{left:400.319867pt;}
.x18_c00385{left:401.279333pt;}
.x33_c00385{left:405.758787pt;}
.x11_c00385{left:407.039067pt;}
.x9_c00385{left:408.319333pt;}
.x34_c00385{left:413.438920pt;}
.xa_c00385{left:422.078693pt;}
.xf_c00385{left:425.279333pt;}
.x2a_c00385{left:430.719720pt;}
.x12_c00385{left:432.000000pt;}
.x10_c00385{left:439.038533pt;}
.x25_c00385{left:444.479040pt;}
.x2b_c00385{left:447.999067pt;}
.x1c_c00385{left:450.238773pt;}
.xd_c00385{left:456.319333pt;}
.x26_c00385{left:462.399867pt;}
.x3b_c00385{left:468.799840pt;}
.x1d_c00385{left:475.839840pt;}
.xe_c00385{left:492.479040pt;}
.x1e_c00385{left:511.678707pt;}
.x3e_c00385{left:512.639573pt;}
.x19_c00385{left:516.159707pt;}
.x1a_c00385{left:536.639573pt;}
.x20_c00385{left:543.358933pt;}
.x2c_c00385{left:548.479987pt;}
.x27_c00385{left:553.278773pt;}
.x1f_c00385{left:555.199173pt;}
.x2d_c00385{left:574.719720pt;}
.x2e_c00385{left:590.399453pt;}
.x2f_c00385{left:616.319867pt;}
.x30_c00385{left:627.839320pt;}
.x2_c00385{left:656.318760pt;}
.x3_c00385{left:691.199707pt;}
.x21_c00385{left:694.719720pt;}
.xb_c00385{left:695.679200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d706759a74724be22f7da84.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.364746;font-style:normal;font-weight:normal;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_9d05f1593cba27f4192ef802.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_f0714d9dd3141f349e16e201.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_f86476570052eaefe03e94cb.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_9c9ace78973a1cf43955150c.woff2')format("woff");}.ff5_c00386{font-family:ff5_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:ff6_c00386;src:url('chunks/assets/font_1d24e819148659d61d6b1a2c.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00386{transform:matrix(0.047927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047927,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.129213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129213,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135870,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139785,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140110,0.000000,0.000000,0.250000,0,0);}
.m9_c00386{transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156977,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.164894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164894,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170588,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170732,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls6_c00386{letter-spacing:-7.959450px;}
.lsc_c00386{letter-spacing:-7.255725px;}
.ls12_c00386{letter-spacing:-2.685375px;}
.ls9_c00386{letter-spacing:-2.199375px;}
.ls7_c00386{letter-spacing:-1.339200px;}
.ls11_c00386{letter-spacing:-1.338383px;}
.ls4_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:1.448475px;}
.ls2_c00386{letter-spacing:2.903625px;}
.ls5_c00386{letter-spacing:3.547935px;}
.ls1_c00386{letter-spacing:4.352100px;}
.ls3_c00386{letter-spacing:5.807918px;}
.lsf_c00386{letter-spacing:6.403200px;}
.lse_c00386{letter-spacing:8.358555px;}
.ls8_c00386{letter-spacing:9.414600px;}
.lsd_c00386{letter-spacing:9.552450px;}
.lsa_c00386{letter-spacing:10.983900px;}
.lsb_c00386{letter-spacing:11.607825px;}
.ls10_c00386{letter-spacing:28.164352px;}
.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;}
._2_c00386{margin-left:-26.386507px;}
._1_c00386{margin-left:-10.302075px;}
._5_c00386{margin-left:-3.731151px;}
._7_c00386{width:1.733962px;}
._0_c00386{width:2.782918px;}
._a_c00386{width:4.886332px;}
._c_c00386{width:6.040350px;}
._b_c00386{width:34.107750px;}
._d_c00386{width:37.961015px;}
._8_c00386{width:92.988787px;}
._4_c00386{width:149.506882px;}
._6_c00386{width:179.884749px;}
._3_c00386{width:240.834348px;}
._9_c00386{width:628.631649px;}
.fc0_c00386{color:transparent;}
.fs5_c00386{font-size:60.000000px;}
.fs1_c00386{font-size:61.500000px;}
.fs7_c00386{font-size:63.750000px;}
.fs8_c00386{font-size:64.500000px;}
.fs4_c00386{font-size:66.750000px;}
.fs6_c00386{font-size:67.500000px;}
.fsb_c00386{font-size:68.250000px;}
.fs3_c00386{font-size:69.000000px;}
.fs0_c00386{font-size:69.750000px;}
.fs2_c00386{font-size:70.500000px;}
.fsa_c00386{font-size:96.000000px;}
.fs9_c00386{font-size:144.750000px;}
.y0_c00386{bottom:0.000000px;}
.y18_c00386{bottom:372.599925px;}
.y17_c00386{bottom:407.880570px;}
.y16_c00386{bottom:687.599970px;}
.y15_c00386{bottom:710.999400px;}
.y14_c00386{bottom:817.560705px;}
.y13_c00386{bottom:1004.400240px;}
.yc_c00386{bottom:1028.880615px;}
.yb_c00386{bottom:1052.279850px;}
.ya_c00386{bottom:1052.280735px;}
.y11_c00386{bottom:1052.640660px;}
.y12_c00386{bottom:1052.640750px;}
.y4_c00386{bottom:1063.439670px;}
.y6_c00386{bottom:1063.800570px;}
.y10_c00386{bottom:1064.160165px;}
.y9_c00386{bottom:1064.160555px;}
.y3_c00386{bottom:1075.319820px;}
.yf_c00386{bottom:1076.039985px;}
.y8_c00386{bottom:1076.040360px;}
.y2_c00386{bottom:1086.479640px;}
.y5_c00386{bottom:1086.840525px;}
.y7_c00386{bottom:1086.840540px;}
.ye_c00386{bottom:1087.199805px;}
.yd_c00386{bottom:1087.200030px;}
.y1_c00386{bottom:1144.800570px;}
.h9_c00386{height:60.358887px;}
.h8_c00386{height:62.536011px;}
.h6_c00386{height:62.578125px;}
.h2_c00386{height:64.142578px;}
.ha_c00386{height:65.003906px;}
.h5_c00386{height:65.967773px;}
.hd_c00386{height:67.450195px;}
.h7_c00386{height:68.027344px;}
.h4_c00386{height:68.191406px;}
.h1_c00386{height:68.932617px;}
.h3_c00386{height:69.673828px;}
.hc_c00386{height:100.125000px;}
.hb_c00386{height:150.969727px;}
.h0_c00386{height:1263.000000px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.x13_c00386{left:141.479715px;}
.x1_c00386{left:147.598500px;}
.x12_c00386{left:149.038950px;}
.x14_c00386{left:181.798515px;}
.x2_c00386{left:188.639100px;}
.x15_c00386{left:205.199385px;}
.x3_c00386{left:211.319850px;}
.x7_c00386{left:240.839535px;}
.x4_c00386{left:251.999400px;}
.x16_c00386{left:268.918950px;}
.x17_c00386{left:286.919535px;}
.x5_c00386{left:304.199850px;}
.x8_c00386{left:315.359895px;}
.x6_c00386{left:322.198785px;}
.x9_c00386{left:344.879535px;}
.xa_c00386{left:391.318770px;}
.xb_c00386{left:523.078770px;}
.xc_c00386{left:547.199850px;}
.xd_c00386{left:552.239220px;}
.xe_c00386{left:586.439025px;}
.x10_c00386{left:610.919535px;}
.x11_c00386{left:726.119385px;}
.xf_c00386{left:784.438665px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls6_c00386{letter-spacing:-7.075067pt;}
.lsc_c00386{letter-spacing:-6.449533pt;}
.ls12_c00386{letter-spacing:-2.387000pt;}
.ls9_c00386{letter-spacing:-1.955000pt;}
.ls7_c00386{letter-spacing:-1.190400pt;}
.ls11_c00386{letter-spacing:-1.189673pt;}
.ls4_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:1.287533pt;}
.ls2_c00386{letter-spacing:2.581000pt;}
.ls5_c00386{letter-spacing:3.153720pt;}
.ls1_c00386{letter-spacing:3.868533pt;}
.ls3_c00386{letter-spacing:5.162593pt;}
.lsf_c00386{letter-spacing:5.691733pt;}
.lse_c00386{letter-spacing:7.429827pt;}
.ls8_c00386{letter-spacing:8.368533pt;}
.lsd_c00386{letter-spacing:8.491067pt;}
.lsa_c00386{letter-spacing:9.763467pt;}
.lsb_c00386{letter-spacing:10.318067pt;}
.ls10_c00386{letter-spacing:25.034980pt;}
.ws0_c00386{word-spacing:0.000000pt;}
._2_c00386{margin-left:-23.454673pt;}
._1_c00386{margin-left:-9.157400pt;}
._5_c00386{margin-left:-3.316579pt;}
._7_c00386{width:1.541299pt;}
._0_c00386{width:2.473705pt;}
._a_c00386{width:4.343406pt;}
._c_c00386{width:5.369200pt;}
._b_c00386{width:30.318000pt;}
._d_c00386{width:33.743125pt;}
._8_c00386{width:82.656699pt;}
._4_c00386{width:132.895006pt;}
._6_c00386{width:159.897555pt;}
._3_c00386{width:214.074976pt;}
._9_c00386{width:558.783688pt;}
.fs5_c00386{font-size:53.333333pt;}
.fs1_c00386{font-size:54.666667pt;}
.fs7_c00386{font-size:56.666667pt;}
.fs8_c00386{font-size:57.333333pt;}
.fs4_c00386{font-size:59.333333pt;}
.fs6_c00386{font-size:60.000000pt;}
.fsb_c00386{font-size:60.666667pt;}
.fs3_c00386{font-size:61.333333pt;}
.fs0_c00386{font-size:62.000000pt;}
.fs2_c00386{font-size:62.666667pt;}
.fsa_c00386{font-size:85.333333pt;}
.fs9_c00386{font-size:128.666667pt;}
.y0_c00386{bottom:0.000000pt;}
.y18_c00386{bottom:331.199933pt;}
.y17_c00386{bottom:362.560507pt;}
.y16_c00386{bottom:611.199973pt;}
.y15_c00386{bottom:631.999467pt;}
.y14_c00386{bottom:726.720627pt;}
.y13_c00386{bottom:892.800213pt;}
.yc_c00386{bottom:914.560547pt;}
.yb_c00386{bottom:935.359867pt;}
.ya_c00386{bottom:935.360653pt;}
.y11_c00386{bottom:935.680587pt;}
.y12_c00386{bottom:935.680667pt;}
.y4_c00386{bottom:945.279707pt;}
.y6_c00386{bottom:945.600507pt;}
.y10_c00386{bottom:945.920147pt;}
.y9_c00386{bottom:945.920493pt;}
.y3_c00386{bottom:955.839840pt;}
.yf_c00386{bottom:956.479987pt;}
.y8_c00386{bottom:956.480320pt;}
.y2_c00386{bottom:965.759680pt;}
.y5_c00386{bottom:966.080467pt;}
.y7_c00386{bottom:966.080480pt;}
.ye_c00386{bottom:966.399827pt;}
.yd_c00386{bottom:966.400027pt;}
.y1_c00386{bottom:1017.600507pt;}
.h9_c00386{height:53.652344pt;}
.h8_c00386{height:55.587565pt;}
.h6_c00386{height:55.625000pt;}
.h2_c00386{height:57.015625pt;}
.ha_c00386{height:57.781250pt;}
.h5_c00386{height:58.638021pt;}
.hd_c00386{height:59.955729pt;}
.h7_c00386{height:60.468750pt;}
.h4_c00386{height:60.614583pt;}
.h1_c00386{height:61.273438pt;}
.h3_c00386{height:61.932292pt;}
.hc_c00386{height:89.000000pt;}
.hb_c00386{height:134.195312pt;}
.h0_c00386{height:1122.666667pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.x13_c00386{left:125.759747pt;}
.x1_c00386{left:131.198667pt;}
.x12_c00386{left:132.479067pt;}
.x14_c00386{left:161.598680pt;}
.x2_c00386{left:167.679200pt;}
.x15_c00386{left:182.399453pt;}
.x3_c00386{left:187.839867pt;}
.x7_c00386{left:214.079587pt;}
.x4_c00386{left:223.999467pt;}
.x16_c00386{left:239.039067pt;}
.x17_c00386{left:255.039587pt;}
.x5_c00386{left:270.399867pt;}
.x8_c00386{left:280.319907pt;}
.x6_c00386{left:286.398920pt;}
.x9_c00386{left:306.559587pt;}
.xa_c00386{left:347.838907pt;}
.xb_c00386{left:464.958907pt;}
.xc_c00386{left:486.399867pt;}
.xd_c00386{left:490.879307pt;}
.xe_c00386{left:521.279133pt;}
.x10_c00386{left:543.039587pt;}
.x11_c00386{left:645.439453pt;}
.xf_c00386{left:697.278813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81674644e886857fd8df30e8.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_8c280e94b46467620ac967ea.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_2a5f11514c48869aaabfdaff.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_2c82ef3e6ed9b91349c49f9f.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_f6a4439ba3646abbe9ed43b5.woff2')format("woff");}.ff5_c00387{font-family:ff5_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;}
@font-face{font-family:ff6_c00387;src:url('chunks/assets/font_9cf875ec613caf0d8671d010.woff2')format("woff");}.ff6_c00387{font-family:ff6_c00387;line-height:1.364746;font-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_c00387{transform:matrix(0.095070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095070,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.100610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100610,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.102703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102703,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.113861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113861,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.115116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115116,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.123418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123418,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.126238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126238,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167647,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.174699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174699,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.202247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202247,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(1.293243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.293243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.293243,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls16_c00387{letter-spacing:-17.785448px;}
.ls13_c00387{letter-spacing:-7.896600px;}
.lsa_c00387{letter-spacing:-2.943675px;}
.ls17_c00387{letter-spacing:-1.485660px;}
.ls19_c00387{letter-spacing:-1.435013px;}
.ls18_c00387{letter-spacing:-0.779625px;}
.ls1b_c00387{letter-spacing:-0.714000px;}
.lsc_c00387{letter-spacing:0.000000px;}
.lsf_c00387{letter-spacing:0.871200px;}
.ls1a_c00387{letter-spacing:0.984000px;}
.ls6_c00387{letter-spacing:2.237625px;}
.ls10_c00387{letter-spacing:2.531925px;}
.ls5_c00387{letter-spacing:3.353250px;}
.ls8_c00387{letter-spacing:4.475888px;}
.ls15_c00387{letter-spacing:4.556325px;}
.lsd_c00387{letter-spacing:5.560275px;}
.ls14_c00387{letter-spacing:5.591513px;}
.ls2_c00387{letter-spacing:6.712875px;}
.ls9_c00387{letter-spacing:7.412400px;}
.ls4_c00387{letter-spacing:7.828500px;}
.ls7_c00387{letter-spacing:8.950500px;}
.lse_c00387{letter-spacing:12.303113px;}
.ls1_c00387{letter-spacing:13.418738px;}
.lsb_c00387{letter-spacing:16.779000px;}
.ls11_c00387{letter-spacing:17.894625px;}
.ls3_c00387{letter-spacing:20.132250px;}
.ls12_c00387{letter-spacing:21.247875px;}
.ls0_c00387{letter-spacing:29.076375px;}
.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:-35.272651px;}
._2_c00387{margin-left:-23.581013px;}
._3_c00387{width:1.039147px;}
._7_c00387{width:5.903205px;}
._5_c00387{width:11.972272px;}
._8_c00387{width:13.532101px;}
._4_c00387{width:16.887308px;}
._6_c00387{width:20.234183px;}
._1_c00387{width:65.062299px;}
.fc0_c00387{color:transparent;}
.fsf_c00387{font-size:57.750000px;}
.fs7_c00387{font-size:58.500000px;}
.fsb_c00387{font-size:59.250000px;}
.fs9_c00387{font-size:60.000000px;}
.fs8_c00387{font-size:60.750000px;}
.fse_c00387{font-size:61.500000px;}
.fs4_c00387{font-size:62.250000px;}
.fs3_c00387{font-size:63.000000px;}
.fs2_c00387{font-size:63.750000px;}
.fs0_c00387{font-size:65.250000px;}
.fs5_c00387{font-size:66.000000px;}
.fs1_c00387{font-size:66.750000px;}
.fs6_c00387{font-size:67.500000px;}
.fs13_c00387{font-size:72.750000px;}
.fs11_c00387{font-size:75.750000px;}
.fs12_c00387{font-size:104.250000px;}
.fs10_c00387{font-size:121.500000px;}
.fsc_c00387{font-size:138.750000px;}
.fsd_c00387{font-size:159.750000px;}
.fsa_c00387{font-size:161.250000px;}
.y0_c00387{bottom:0.000000px;}
.y10_c00387{bottom:382.320900px;}
.yf_c00387{bottom:382.321110px;}
.ye_c00387{bottom:394.201035px;}
.y17_c00387{bottom:533.879520px;}
.y1c_c00387{bottom:534.960570px;}
.y12_c00387{bottom:534.960840px;}
.y1f_c00387{bottom:535.319820px;}
.y26_c00387{bottom:535.680720px;}
.y1a_c00387{bottom:539.279850px;}
.y21_c00387{bottom:539.640750px;}
.y24_c00387{bottom:540.000000px;}
.y20_c00387{bottom:558.000645px;}
.y19_c00387{bottom:558.359430px;}
.y28_c00387{bottom:558.359625px;}
.y16_c00387{bottom:558.359850px;}
.y1e_c00387{bottom:558.359895px;}
.y25_c00387{bottom:558.720750px;}
.y23_c00387{bottom:558.720795px;}
.y15_c00387{bottom:569.880570px;}
.y18_c00387{bottom:570.239370px;}
.y27_c00387{bottom:570.239550px;}
.y1d_c00387{bottom:570.239820px;}
.y22_c00387{bottom:570.600720px;}
.y1b_c00387{bottom:581.760720px;}
.y14_c00387{bottom:582.119985px;}
.y13_c00387{bottom:608.040570px;}
.yd_c00387{bottom:617.040090px;}
.y11_c00387{bottom:617.400720px;}
.yc_c00387{bottom:781.201005px;}
.yb_c00387{bottom:804.960615px;}
.ya_c00387{bottom:816.840540px;}
.y9_c00387{bottom:863.640750px;}
.y8_c00387{bottom:879.480840px;}
.y7_c00387{bottom:933.840090px;}
.y6_c00387{bottom:957.240870px;}
.y5_c00387{bottom:1025.640750px;}
.y4_c00387{bottom:1039.320285px;}
.y3_c00387{bottom:1098.000555px;}
.y2_c00387{bottom:1098.001230px;}
.y1_c00387{bottom:1121.040525px;}
.h8_c00387{height:57.414551px;}
.h11_c00387{height:60.231445px;}
.h10_c00387{height:60.358887px;}
.hc_c00387{height:61.795898px;}
.h3_c00387{height:62.567139px;}
.ha_c00387{height:62.578125px;}
.h9_c00387{height:63.360352px;}
.h1_c00387{height:64.039307px;}
.h6_c00387{height:64.775391px;}
.h5_c00387{height:64.924805px;}
.h2_c00387{height:65.511475px;}
.h4_c00387{height:65.707031px;}
.h7_c00387{height:66.247559px;}
.h15_c00387{height:71.897461px;}
.h13_c00387{height:74.862305px;}
.h14_c00387{height:108.729492px;}
.h12_c00387{height:126.720703px;}
.he_c00387{height:139.833984px;}
.hd_c00387{height:144.711914px;}
.hf_c00387{height:156.785889px;}
.hb_c00387{height:168.178711px;}
.h0_c00387{height:1263.000000px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.x13_c00387{left:256.679700px;}
.x12_c00387{left:259.199385px;}
.x1_c00387{left:261.359850px;}
.x10_c00387{left:267.478635px;}
.x11_c00387{left:279.719535px;}
.x14_c00387{left:285.838515px;}
.x2_c00387{left:301.678500px;}
.x17_c00387{left:319.679100px;}
.x3_c00387{left:325.079385px;}
.x18_c00387{left:326.519685px;}
.x19_c00387{left:331.559100px;}
.x16_c00387{left:348.839535px;}
.x1a_c00387{left:354.240195px;}
.x1b_c00387{left:361.440420px;}
.x1c_c00387{left:383.398635px;}
.x1d_c00387{left:395.278800px;}
.x1e_c00387{left:401.758530px;}
.xc_c00387{left:406.079400px;}
.xd_c00387{left:423.359850px;}
.x20_c00387{left:429.478635px;}
.x21_c00387{left:436.319775px;}
.x4_c00387{left:440.638500px;}
.x5_c00387{left:458.639100px;}
.x22_c00387{left:470.519070px;}
.x6_c00387{left:475.199385px;}
.x23_c00387{left:477.359850px;}
.xe_c00387{left:480.958920px;}
.x1f_c00387{left:499.318770px;}
.x24_c00387{left:504.359850px;}
.x25_c00387{left:511.560075px;}
.x26_c00387{left:533.518620px;}
.x27_c00387{left:545.759535px;}
.x28_c00387{left:552.239220px;}
.x7_c00387{left:555.838530px;}
.x8_c00387{left:574.199850px;}
.x2a_c00387{left:579.959385px;}
.x2b_c00387{left:587.159610px;}
.x9_c00387{left:602.638545px;}
.x2c_c00387{left:609.119985px;}
.x2d_c00387{left:621.359250px;}
.x2e_c00387{left:627.838950px;}
.x29_c00387{left:650.158770px;}
.x2f_c00387{left:655.559325px;}
.x30_c00387{left:662.759565px;}
.xa_c00387{left:666.359850px;}
.xb_c00387{left:684.358605px;}
.x15_c00387{left:690.119985px;}
.xf_c00387{left:691.558635px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls16_c00387{letter-spacing:-15.809287pt;}
.ls13_c00387{letter-spacing:-7.019200pt;}
.lsa_c00387{letter-spacing:-2.616600pt;}
.ls17_c00387{letter-spacing:-1.320587pt;}
.ls19_c00387{letter-spacing:-1.275567pt;}
.ls18_c00387{letter-spacing:-0.693000pt;}
.ls1b_c00387{letter-spacing:-0.634667pt;}
.lsc_c00387{letter-spacing:0.000000pt;}
.lsf_c00387{letter-spacing:0.774400pt;}
.ls1a_c00387{letter-spacing:0.874667pt;}
.ls6_c00387{letter-spacing:1.989000pt;}
.ls10_c00387{letter-spacing:2.250600pt;}
.ls5_c00387{letter-spacing:2.980667pt;}
.ls8_c00387{letter-spacing:3.978567pt;}
.ls15_c00387{letter-spacing:4.050067pt;}
.lsd_c00387{letter-spacing:4.942467pt;}
.ls14_c00387{letter-spacing:4.970233pt;}
.ls2_c00387{letter-spacing:5.967000pt;}
.ls9_c00387{letter-spacing:6.588800pt;}
.ls4_c00387{letter-spacing:6.958667pt;}
.ls7_c00387{letter-spacing:7.956000pt;}
.lse_c00387{letter-spacing:10.936100pt;}
.ls1_c00387{letter-spacing:11.927767pt;}
.lsb_c00387{letter-spacing:14.914667pt;}
.ls11_c00387{letter-spacing:15.906333pt;}
.ls3_c00387{letter-spacing:17.895333pt;}
.ls12_c00387{letter-spacing:18.887000pt;}
.ls0_c00387{letter-spacing:25.845667pt;}
.ws0_c00387{word-spacing:0.000000pt;}
._0_c00387{margin-left:-31.353468pt;}
._2_c00387{margin-left:-20.960901pt;}
._3_c00387{width:0.923687pt;}
._7_c00387{width:5.247294pt;}
._5_c00387{width:10.642020pt;}
._8_c00387{width:12.028534pt;}
._4_c00387{width:15.010940pt;}
._6_c00387{width:17.985940pt;}
._1_c00387{width:57.833155pt;}
.fsf_c00387{font-size:51.333333pt;}
.fs7_c00387{font-size:52.000000pt;}
.fsb_c00387{font-size:52.666667pt;}
.fs9_c00387{font-size:53.333333pt;}
.fs8_c00387{font-size:54.000000pt;}
.fse_c00387{font-size:54.666667pt;}
.fs4_c00387{font-size:55.333333pt;}
.fs3_c00387{font-size:56.000000pt;}
.fs2_c00387{font-size:56.666667pt;}
.fs0_c00387{font-size:58.000000pt;}
.fs5_c00387{font-size:58.666667pt;}
.fs1_c00387{font-size:59.333333pt;}
.fs6_c00387{font-size:60.000000pt;}
.fs13_c00387{font-size:64.666667pt;}
.fs11_c00387{font-size:67.333333pt;}
.fs12_c00387{font-size:92.666667pt;}
.fs10_c00387{font-size:108.000000pt;}
.fsc_c00387{font-size:123.333333pt;}
.fsd_c00387{font-size:142.000000pt;}
.fsa_c00387{font-size:143.333333pt;}
.y0_c00387{bottom:0.000000pt;}
.y10_c00387{bottom:339.840800pt;}
.yf_c00387{bottom:339.840987pt;}
.ye_c00387{bottom:350.400920pt;}
.y17_c00387{bottom:474.559573pt;}
.y1c_c00387{bottom:475.520507pt;}
.y12_c00387{bottom:475.520747pt;}
.y1f_c00387{bottom:475.839840pt;}
.y26_c00387{bottom:476.160640pt;}
.y1a_c00387{bottom:479.359867pt;}
.y21_c00387{bottom:479.680667pt;}
.y24_c00387{bottom:480.000000pt;}
.y20_c00387{bottom:496.000573pt;}
.y19_c00387{bottom:496.319493pt;}
.y28_c00387{bottom:496.319667pt;}
.y16_c00387{bottom:496.319867pt;}
.y1e_c00387{bottom:496.319907pt;}
.y25_c00387{bottom:496.640667pt;}
.y23_c00387{bottom:496.640707pt;}
.y15_c00387{bottom:506.560507pt;}
.y18_c00387{bottom:506.879440pt;}
.y27_c00387{bottom:506.879600pt;}
.y1d_c00387{bottom:506.879840pt;}
.y22_c00387{bottom:507.200640pt;}
.y1b_c00387{bottom:517.120640pt;}
.y14_c00387{bottom:517.439987pt;}
.y13_c00387{bottom:540.480507pt;}
.yd_c00387{bottom:548.480080pt;}
.y11_c00387{bottom:548.800640pt;}
.yc_c00387{bottom:694.400893pt;}
.yb_c00387{bottom:715.520547pt;}
.ya_c00387{bottom:726.080480pt;}
.y9_c00387{bottom:767.680667pt;}
.y8_c00387{bottom:781.760747pt;}
.y7_c00387{bottom:830.080080pt;}
.y6_c00387{bottom:850.880773pt;}
.y5_c00387{bottom:911.680667pt;}
.y4_c00387{bottom:923.840253pt;}
.y3_c00387{bottom:976.000493pt;}
.y2_c00387{bottom:976.001093pt;}
.y1_c00387{bottom:996.480467pt;}
.h8_c00387{height:51.035156pt;}
.h11_c00387{height:53.539062pt;}
.h10_c00387{height:53.652344pt;}
.hc_c00387{height:54.929688pt;}
.h3_c00387{height:55.615234pt;}
.ha_c00387{height:55.625000pt;}
.h9_c00387{height:56.320312pt;}
.h1_c00387{height:56.923828pt;}
.h6_c00387{height:57.578125pt;}
.h5_c00387{height:57.710938pt;}
.h2_c00387{height:58.232422pt;}
.h4_c00387{height:58.406250pt;}
.h7_c00387{height:58.886719pt;}
.h15_c00387{height:63.908854pt;}
.h13_c00387{height:66.544271pt;}
.h14_c00387{height:96.648438pt;}
.h12_c00387{height:112.640625pt;}
.he_c00387{height:124.296875pt;}
.hd_c00387{height:128.632812pt;}
.hf_c00387{height:139.365234pt;}
.hb_c00387{height:149.492188pt;}
.h0_c00387{height:1122.666667pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.x13_c00387{left:228.159733pt;}
.x12_c00387{left:230.399453pt;}
.x1_c00387{left:232.319867pt;}
.x10_c00387{left:237.758787pt;}
.x11_c00387{left:248.639587pt;}
.x14_c00387{left:254.078680pt;}
.x2_c00387{left:268.158667pt;}
.x17_c00387{left:284.159200pt;}
.x3_c00387{left:288.959453pt;}
.x18_c00387{left:290.239720pt;}
.x19_c00387{left:294.719200pt;}
.x16_c00387{left:310.079587pt;}
.x1a_c00387{left:314.880173pt;}
.x1b_c00387{left:321.280373pt;}
.x1c_c00387{left:340.798787pt;}
.x1d_c00387{left:351.358933pt;}
.x1e_c00387{left:357.118693pt;}
.xc_c00387{left:360.959467pt;}
.xd_c00387{left:376.319867pt;}
.x20_c00387{left:381.758787pt;}
.x21_c00387{left:387.839800pt;}
.x4_c00387{left:391.678667pt;}
.x5_c00387{left:407.679200pt;}
.x22_c00387{left:418.239173pt;}
.x6_c00387{left:422.399453pt;}
.x23_c00387{left:424.319867pt;}
.xe_c00387{left:427.519040pt;}
.x1f_c00387{left:443.838907pt;}
.x24_c00387{left:448.319867pt;}
.x25_c00387{left:454.720067pt;}
.x26_c00387{left:474.238773pt;}
.x27_c00387{left:485.119587pt;}
.x28_c00387{left:490.879307pt;}
.x7_c00387{left:494.078693pt;}
.x8_c00387{left:510.399867pt;}
.x2a_c00387{left:515.519453pt;}
.x2b_c00387{left:521.919653pt;}
.x9_c00387{left:535.678707pt;}
.x2c_c00387{left:541.439987pt;}
.x2d_c00387{left:552.319333pt;}
.x2e_c00387{left:558.079067pt;}
.x29_c00387{left:577.918907pt;}
.x2f_c00387{left:582.719400pt;}
.x30_c00387{left:589.119613pt;}
.xa_c00387{left:592.319867pt;}
.xb_c00387{left:608.318760pt;}
.x15_c00387{left:613.439987pt;}
.xf_c00387{left:614.718787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7740408dd7fcf5d6ddc14820.woff2')format("woff");}.ff1_c00388{font-family:ff1_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:ff2_c00388;src:url('chunks/assets/font_36efa5579234c37c499b13d9.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_4b10e031f0e149b1177cab6b.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_585ed35a6f0b338817c2bb42.woff2')format("woff");}.ff4_c00388{font-family:ff4_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:ff5_c00388;src:url('chunks/assets/font_bc9f31240ecb77a68eac29d5.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.364746;font-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_c00388{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{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_c00388{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206186,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c00388{transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);}
.m11_c00388{transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.lsb_c00388{letter-spacing:-8.914500px;}
.ls9_c00388{letter-spacing:-8.175038px;}
.ls13_c00388{letter-spacing:-7.633125px;}
.lse_c00388{letter-spacing:-7.426125px;}
.ls1a_c00388{letter-spacing:-6.876900px;}
.lsd_c00388{letter-spacing:-6.685875px;}
.ls8_c00388{letter-spacing:-5.945625px;}
.ls1c_c00388{letter-spacing:-5.422125px;}
.ls2_c00388{letter-spacing:-5.196713px;}
.lsa_c00388{letter-spacing:-4.456463px;}
.ls7_c00388{letter-spacing:-3.717000px;}
.ls10_c00388{letter-spacing:-3.556080px;}
.ls18_c00388{letter-spacing:-3.450600px;}
.ls11_c00388{letter-spacing:-3.152415px;}
.ls15_c00388{letter-spacing:-3.080250px;}
.ls6_c00388{letter-spacing:-2.968875px;}
.ls14_c00388{letter-spacing:-2.294348px;}
.ls4_c00388{letter-spacing:-2.229413px;}
.ls3_c00388{letter-spacing:-1.489163px;}
.ls1d_c00388{letter-spacing:-1.339500px;}
.ls19_c00388{letter-spacing:-0.858600px;}
.lsc_c00388{letter-spacing:-0.740250px;}
.ls5_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:1.489163px;}
.ls1b_c00388{letter-spacing:1.741500px;}
.lsf_c00388{letter-spacing:3.283800px;}
.ls12_c00388{letter-spacing:3.717000px;}
.ls1_c00388{letter-spacing:4.456463px;}
.ls16_c00388{letter-spacing:15.978450px;}
.ls17_c00388{letter-spacing:20.678693px;}
.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;}
._1b_c00388{margin-left:-16.336613px;}
._1e_c00388{margin-left:-13.924813px;}
._1d_c00388{margin-left:-10.461091px;}
._8_c00388{margin-left:-9.154970px;}
._1f_c00388{margin-left:-7.800306px;}
._19_c00388{margin-left:-5.650595px;}
._2_c00388{margin-left:-4.489077px;}
._11_c00388{margin-left:-2.797051px;}
._1_c00388{margin-left:-1.391512px;}
._3_c00388{width:1.914769px;}
._10_c00388{width:2.930451px;}
._6_c00388{width:4.347238px;}
._7_c00388{width:5.740667px;}
._e_c00388{width:7.591886px;}
._4_c00388{width:9.387594px;}
._0_c00388{width:11.117078px;}
._a_c00388{width:12.688571px;}
._9_c00388{width:14.529375px;}
._5_c00388{width:15.979757px;}
._d_c00388{width:18.487751px;}
._20_c00388{width:19.844970px;}
._12_c00388{width:20.902330px;}
._f_c00388{width:22.173682px;}
._c_c00388{width:23.273300px;}
._1a_c00388{width:26.195578px;}
._1c_c00388{width:28.628597px;}
._b_c00388{width:30.827653px;}
._13_c00388{width:33.262514px;}
._17_c00388{width:34.272178px;}
._16_c00388{width:36.100456px;}
._14_c00388{width:39.863428px;}
._15_c00388{width:45.084078px;}
._18_c00388{width:50.110111px;}
.fc0_c00388{color:transparent;}
.fsd_c00388{font-size:55.500000px;}
.fse_c00388{font-size:60.750000px;}
.fs9_c00388{font-size:70.500000px;}
.fs10_c00388{font-size:71.250000px;}
.fs7_c00388{font-size:72.000000px;}
.fs6_c00388{font-size:72.750000px;}
.fs8_c00388{font-size:73.500000px;}
.fsa_c00388{font-size:75.000000px;}
.fs5_c00388{font-size:78.000000px;}
.fs0_c00388{font-size:78.750000px;}
.fs1_c00388{font-size:79.500000px;}
.fs3_c00388{font-size:80.250000px;}
.fsf_c00388{font-size:81.000000px;}
.fs4_c00388{font-size:82.500000px;}
.fsc_c00388{font-size:83.250000px;}
.fs2_c00388{font-size:84.750000px;}
.fsb_c00388{font-size:86.250000px;}
.y0_c00388{bottom:0.000000px;}
.y2b_c00388{bottom:160.919835px;}
.y29_c00388{bottom:190.799370px;}
.y2a_c00388{bottom:190.799565px;}
.y28_c00388{bottom:219.239850px;}
.y27_c00388{bottom:219.240900px;}
.y26_c00388{bottom:249.120615px;}
.y25_c00388{bottom:278.640150px;}
.y23_c00388{bottom:338.399775px;}
.y24_c00388{bottom:338.399850px;}
.y22_c00388{bottom:368.639700px;}
.y21_c00388{bottom:427.680720px;}
.y20_c00388{bottom:456.839535px;}
.y1f_c00388{bottom:456.839910px;}
.y1e_c00388{bottom:487.440315px;}
.y1d_c00388{bottom:487.441155px;}
.y1c_c00388{bottom:517.320870px;}
.y1b_c00388{bottom:517.321065px;}
.y1a_c00388{bottom:546.840585px;}
.y19_c00388{bottom:546.841005px;}
.y18_c00388{bottom:576.720720px;}
.y17_c00388{bottom:606.600450px;}
.y16_c00388{bottom:636.119985px;}
.y15_c00388{bottom:636.120870px;}
.y14_c00388{bottom:666.000600px;}
.y12_c00388{bottom:695.160255px;}
.y13_c00388{bottom:695.161005px;}
.y11_c00388{bottom:725.400165px;}
.y10_c00388{bottom:754.919700px;}
.yf_c00388{bottom:785.159610px;}
.ye_c00388{bottom:815.039340px;}
.yd_c00388{bottom:874.080375px;}
.yc_c00388{bottom:904.320285px;}
.yb_c00388{bottom:904.320645px;}
.ya_c00388{bottom:934.200375px;}
.y9_c00388{bottom:964.440285px;}
.y8_c00388{bottom:993.959820px;}
.y7_c00388{bottom:1023.839535px;}
.y6_c00388{bottom:1023.839835px;}
.y5_c00388{bottom:1053.000990px;}
.y4_c00388{bottom:1082.880705px;}
.y2_c00388{bottom:1112.400195px;}
.y3_c00388{bottom:1112.400240px;}
.y1_c00388{bottom:1142.640105px;}
.he_c00388{height:55.933594px;}
.hf_c00388{height:60.038086px;}
.h12_c00388{height:69.191895px;}
.ha_c00388{height:73.529297px;}
.h11_c00388{height:74.311523px;}
.h8_c00388{height:75.093750px;}
.h7_c00388{height:75.875977px;}
.h6_c00388{height:76.552734px;}
.h9_c00388{height:76.658203px;}
.h1_c00388{height:77.288818px;}
.h2_c00388{height:78.024902px;}
.hb_c00388{height:78.222656px;}
.h4_c00388{height:78.760986px;}
.h5_c00388{height:80.969238px;}
.h10_c00388{height:81.632812px;}
.hd_c00388{height:81.705322px;}
.h3_c00388{height:83.177490px;}
.hc_c00388{height:84.649658px;}
.h0_c00388{height:1263.000000px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.xa_c00388{left:158.393985px;}
.x1_c00388{left:159.478665px;}
.xd_c00388{left:183.958950px;}
.x21_c00388{left:190.438665px;}
.x11_c00388{left:202.679700px;}
.x12_c00388{left:222.838950px;}
.x2_c00388{left:243.359250px;}
.x24_c00388{left:275.398635px;}
.x3_c00388{left:286.558635px;}
.x25_c00388{left:295.198785px;}
.x28_c00388{left:298.799535px;}
.x1c_c00388{left:305.279250px;}
.x15_c00388{left:323.639100px;}
.x16_c00388{left:341.639700px;}
.x22_c00388{left:343.439235px;}
.x17_c00388{left:352.438635px;}
.x6_c00388{left:356.759535px;}
.x18_c00388{left:368.278800px;}
.x7_c00388{left:371.159385px;}
.x19_c00388{left:387.719565px;}
.x23_c00388{left:405.359250px;}
.x29_c00388{left:438.838950px;}
.x1d_c00388{left:455.399235px;}
.x2a_c00388{left:456.478635px;}
.x1e_c00388{left:473.038920px;}
.xb_c00388{left:524.878320px;}
.xc_c00388{left:538.198785px;}
.x13_c00388{left:542.519670px;}
.x14_c00388{left:557.639700px;}
.x26_c00388{left:655.918350px;}
.x27_c00388{left:675.359250px;}
.x1f_c00388{left:687.959385px;}
.x4_c00388{left:693.359850px;}
.xf_c00388{left:705.599070px;}
.x5_c00388{left:707.398635px;}
.x20_c00388{left:718.199385px;}
.x10_c00388{left:723.238770px;}
.x8_c00388{left:726.839535px;}
.x1a_c00388{left:739.078770px;}
.x9_c00388{left:740.878320px;}
.x1b_c00388{left:757.799520px;}
.x2b_c00388{left:765.719520px;}
.x2c_c00388{left:780.478635px;}
.xe_c00388{left:784.799565px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.lsb_c00388{letter-spacing:-7.924000pt;}
.ls9_c00388{letter-spacing:-7.266700pt;}
.ls13_c00388{letter-spacing:-6.785000pt;}
.lse_c00388{letter-spacing:-6.601000pt;}
.ls1a_c00388{letter-spacing:-6.112800pt;}
.lsd_c00388{letter-spacing:-5.943000pt;}
.ls8_c00388{letter-spacing:-5.285000pt;}
.ls1c_c00388{letter-spacing:-4.819667pt;}
.ls2_c00388{letter-spacing:-4.619300pt;}
.lsa_c00388{letter-spacing:-3.961300pt;}
.ls7_c00388{letter-spacing:-3.304000pt;}
.ls10_c00388{letter-spacing:-3.160960pt;}
.ls18_c00388{letter-spacing:-3.067200pt;}
.ls11_c00388{letter-spacing:-2.802147pt;}
.ls15_c00388{letter-spacing:-2.738000pt;}
.ls6_c00388{letter-spacing:-2.639000pt;}
.ls14_c00388{letter-spacing:-2.039420pt;}
.ls4_c00388{letter-spacing:-1.981700pt;}
.ls3_c00388{letter-spacing:-1.323700pt;}
.ls1d_c00388{letter-spacing:-1.190667pt;}
.ls19_c00388{letter-spacing:-0.763200pt;}
.lsc_c00388{letter-spacing:-0.658000pt;}
.ls5_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:1.323700pt;}
.ls1b_c00388{letter-spacing:1.548000pt;}
.lsf_c00388{letter-spacing:2.918933pt;}
.ls12_c00388{letter-spacing:3.304000pt;}
.ls1_c00388{letter-spacing:3.961300pt;}
.ls16_c00388{letter-spacing:14.203067pt;}
.ls17_c00388{letter-spacing:18.381060pt;}
.ws0_c00388{word-spacing:0.000000pt;}
._1b_c00388{margin-left:-14.521434pt;}
._1e_c00388{margin-left:-12.377611pt;}
._1d_c00388{margin-left:-9.298747pt;}
._8_c00388{margin-left:-8.137751pt;}
._1f_c00388{margin-left:-6.933606pt;}
._19_c00388{margin-left:-5.022751pt;}
._2_c00388{margin-left:-3.990291pt;}
._11_c00388{margin-left:-2.486268pt;}
._1_c00388{margin-left:-1.236900pt;}
._3_c00388{width:1.702017pt;}
._10_c00388{width:2.604845pt;}
._6_c00388{width:3.864211pt;}
._7_c00388{width:5.102815pt;}
._e_c00388{width:6.748343pt;}
._4_c00388{width:8.344528pt;}
._0_c00388{width:9.881847pt;}
._a_c00388{width:11.278730pt;}
._9_c00388{width:12.915000pt;}
._5_c00388{width:14.204228pt;}
._d_c00388{width:16.433557pt;}
._20_c00388{width:17.639974pt;}
._12_c00388{width:18.579849pt;}
._f_c00388{width:19.709940pt;}
._c_c00388{width:20.687377pt;}
._1a_c00388{width:23.284958pt;}
._1c_c00388{width:25.447642pt;}
._b_c00388{width:27.402358pt;}
._13_c00388{width:29.566679pt;}
._17_c00388{width:30.464158pt;}
._16_c00388{width:32.089294pt;}
._14_c00388{width:35.434158pt;}
._15_c00388{width:40.074736pt;}
._18_c00388{width:44.542321pt;}
.fsd_c00388{font-size:49.333333pt;}
.fse_c00388{font-size:54.000000pt;}
.fs9_c00388{font-size:62.666667pt;}
.fs10_c00388{font-size:63.333333pt;}
.fs7_c00388{font-size:64.000000pt;}
.fs6_c00388{font-size:64.666667pt;}
.fs8_c00388{font-size:65.333333pt;}
.fsa_c00388{font-size:66.666667pt;}
.fs5_c00388{font-size:69.333333pt;}
.fs0_c00388{font-size:70.000000pt;}
.fs1_c00388{font-size:70.666667pt;}
.fs3_c00388{font-size:71.333333pt;}
.fsf_c00388{font-size:72.000000pt;}
.fs4_c00388{font-size:73.333333pt;}
.fsc_c00388{font-size:74.000000pt;}
.fs2_c00388{font-size:75.333333pt;}
.fsb_c00388{font-size:76.666667pt;}
.y0_c00388{bottom:0.000000pt;}
.y2b_c00388{bottom:143.039853pt;}
.y29_c00388{bottom:169.599440pt;}
.y2a_c00388{bottom:169.599613pt;}
.y28_c00388{bottom:194.879867pt;}
.y27_c00388{bottom:194.880800pt;}
.y26_c00388{bottom:221.440547pt;}
.y25_c00388{bottom:247.680133pt;}
.y23_c00388{bottom:300.799800pt;}
.y24_c00388{bottom:300.799867pt;}
.y22_c00388{bottom:327.679733pt;}
.y21_c00388{bottom:380.160640pt;}
.y20_c00388{bottom:406.079587pt;}
.y1f_c00388{bottom:406.079920pt;}
.y1e_c00388{bottom:433.280280pt;}
.y1d_c00388{bottom:433.281027pt;}
.y1c_c00388{bottom:459.840773pt;}
.y1b_c00388{bottom:459.840947pt;}
.y1a_c00388{bottom:486.080520pt;}
.y19_c00388{bottom:486.080893pt;}
.y18_c00388{bottom:512.640640pt;}
.y17_c00388{bottom:539.200400pt;}
.y16_c00388{bottom:565.439987pt;}
.y15_c00388{bottom:565.440773pt;}
.y14_c00388{bottom:592.000533pt;}
.y12_c00388{bottom:617.920227pt;}
.y13_c00388{bottom:617.920893pt;}
.y11_c00388{bottom:644.800147pt;}
.y10_c00388{bottom:671.039733pt;}
.yf_c00388{bottom:697.919653pt;}
.ye_c00388{bottom:724.479413pt;}
.yd_c00388{bottom:776.960333pt;}
.yc_c00388{bottom:803.840253pt;}
.yb_c00388{bottom:803.840573pt;}
.ya_c00388{bottom:830.400333pt;}
.y9_c00388{bottom:857.280253pt;}
.y8_c00388{bottom:883.519840pt;}
.y7_c00388{bottom:910.079587pt;}
.y6_c00388{bottom:910.079853pt;}
.y5_c00388{bottom:936.000880pt;}
.y4_c00388{bottom:962.560627pt;}
.y2_c00388{bottom:988.800173pt;}
.y3_c00388{bottom:988.800213pt;}
.y1_c00388{bottom:1015.680093pt;}
.he_c00388{height:49.718750pt;}
.hf_c00388{height:53.367188pt;}
.h12_c00388{height:61.503906pt;}
.ha_c00388{height:65.359375pt;}
.h11_c00388{height:66.054688pt;}
.h8_c00388{height:66.750000pt;}
.h7_c00388{height:67.445312pt;}
.h6_c00388{height:68.046875pt;}
.h9_c00388{height:68.140625pt;}
.h1_c00388{height:68.701172pt;}
.h2_c00388{height:69.355469pt;}
.hb_c00388{height:69.531250pt;}
.h4_c00388{height:70.009766pt;}
.h5_c00388{height:71.972656pt;}
.h10_c00388{height:72.562500pt;}
.hd_c00388{height:72.626953pt;}
.h3_c00388{height:73.935547pt;}
.hc_c00388{height:75.244141pt;}
.h0_c00388{height:1122.666667pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.xa_c00388{left:140.794653pt;}
.x1_c00388{left:141.758813pt;}
.xd_c00388{left:163.519067pt;}
.x21_c00388{left:169.278813pt;}
.x11_c00388{left:180.159733pt;}
.x12_c00388{left:198.079067pt;}
.x2_c00388{left:216.319333pt;}
.x24_c00388{left:244.798787pt;}
.x3_c00388{left:254.718787pt;}
.x25_c00388{left:262.398920pt;}
.x28_c00388{left:265.599587pt;}
.x1c_c00388{left:271.359333pt;}
.x15_c00388{left:287.679200pt;}
.x16_c00388{left:303.679733pt;}
.x22_c00388{left:305.279320pt;}
.x17_c00388{left:313.278787pt;}
.x6_c00388{left:317.119587pt;}
.x18_c00388{left:327.358933pt;}
.x7_c00388{left:329.919453pt;}
.x19_c00388{left:344.639613pt;}
.x23_c00388{left:360.319333pt;}
.x29_c00388{left:390.079067pt;}
.x1d_c00388{left:404.799320pt;}
.x2a_c00388{left:405.758787pt;}
.x1e_c00388{left:420.479040pt;}
.xb_c00388{left:466.558507pt;}
.xc_c00388{left:478.398920pt;}
.x13_c00388{left:482.239707pt;}
.x14_c00388{left:495.679733pt;}
.x26_c00388{left:583.038533pt;}
.x27_c00388{left:600.319333pt;}
.x1f_c00388{left:611.519453pt;}
.x4_c00388{left:616.319867pt;}
.xf_c00388{left:627.199173pt;}
.x5_c00388{left:628.798787pt;}
.x20_c00388{left:638.399453pt;}
.x10_c00388{left:642.878907pt;}
.x8_c00388{left:646.079587pt;}
.x1a_c00388{left:656.958907pt;}
.x9_c00388{left:658.558507pt;}
.x1b_c00388{left:673.599573pt;}
.x2b_c00388{left:680.639573pt;}
.x2c_c00388{left:693.758787pt;}
.xe_c00388{left:697.599613pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_570915ec810d0682e0b322bc.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.364746;font-style:normal;font-weight:normal;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_3ecefe21a6517ff7fc04ccf4.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.364746;font-style:normal;font-weight:normal;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_84fd4f65fb15d63f905c54da.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;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00389{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176606,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m16_c00389{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m8_c00389{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.421053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421053,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls1b_c00389{letter-spacing:-14.082750px;}
.lsf_c00389{letter-spacing:-13.490828px;}
.ls19_c00389{letter-spacing:-10.402875px;}
.ls1c_c00389{letter-spacing:-8.914500px;}
.ls1d_c00389{letter-spacing:-8.175038px;}
.ls16_c00389{letter-spacing:-7.431075px;}
.lsc_c00389{letter-spacing:-7.426125px;}
.ls18_c00389{letter-spacing:-7.028100px;}
.ls14_c00389{letter-spacing:-6.781500px;}
.ls12_c00389{letter-spacing:-6.112800px;}
.ls10_c00389{letter-spacing:-5.945625px;}
.lsb_c00389{letter-spacing:-5.196713px;}
.ls1e_c00389{letter-spacing:-5.109375px;}
.ls23_c00389{letter-spacing:-5.054963px;}
.ls5_c00389{letter-spacing:-4.456463px;}
.ls1a_c00389{letter-spacing:-4.410975px;}
.lsd_c00389{letter-spacing:-4.282500px;}
.ls13_c00389{letter-spacing:-4.074480px;}
.ls4_c00389{letter-spacing:-3.717000px;}
.ls20_c00389{letter-spacing:-3.116902px;}
.ls6_c00389{letter-spacing:-3.028950px;}
.ls3_c00389{letter-spacing:-2.968875px;}
.ls11_c00389{letter-spacing:-2.714400px;}
.ls2_c00389{letter-spacing:-2.229413px;}
.ls17_c00389{letter-spacing:-2.180843px;}
.ls15_c00389{letter-spacing:-2.038320px;}
.ls9_c00389{letter-spacing:-1.489163px;}
.ls7_c00389{letter-spacing:-0.740250px;}
.ls1f_c00389{letter-spacing:-0.445027px;}
.lsa_c00389{letter-spacing:0.000000px;}
.ls1_c00389{letter-spacing:1.489163px;}
.ls22_c00389{letter-spacing:1.660875px;}
.ls21_c00389{letter-spacing:3.159000px;}
.lse_c00389{letter-spacing:3.717000px;}
.ls8_c00389{letter-spacing:4.102800px;}
.ls0_c00389{letter-spacing:8.175038px;}
.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;}
._2_c00389{margin-left:-65.847095px;}
._20_c00389{margin-left:-62.988500px;}
._3_c00389{margin-left:-39.848986px;}
._1b_c00389{margin-left:-35.592964px;}
._1f_c00389{margin-left:-7.185105px;}
._5_c00389{margin-left:-4.055001px;}
._6_c00389{margin-left:-2.266960px;}
._1e_c00389{margin-left:-1.260626px;}
._11_c00389{width:1.151845px;}
._7_c00389{width:3.092884px;}
._16_c00389{width:4.407073px;}
._0_c00389{width:5.428297px;}
._4_c00389{width:6.685429px;}
._1a_c00389{width:7.701260px;}
._1_c00389{width:8.827429px;}
._9_c00389{width:10.795213px;}
._a_c00389{width:11.795784px;}
._17_c00389{width:12.870677px;}
._8_c00389{width:14.478693px;}
._19_c00389{width:15.962089px;}
._13_c00389{width:17.695066px;}
._12_c00389{width:19.931120px;}
._18_c00389{width:21.902693px;}
._15_c00389{width:22.911644px;}
._14_c00389{width:24.458517px;}
._c_c00389{width:27.244855px;}
._b_c00389{width:30.823121px;}
._10_c00389{width:33.088670px;}
._e_c00389{width:34.496735px;}
._d_c00389{width:35.838486px;}
._f_c00389{width:37.550823px;}
._1d_c00389{width:43.699356px;}
._1c_c00389{width:44.829938px;}
.fc0_c00389{color:transparent;}
.fsc_c00389{font-size:42.750000px;}
.fsd_c00389{font-size:51.750000px;}
.fs6_c00389{font-size:72.000000px;}
.fs4_c00389{font-size:75.000000px;}
.fs8_c00389{font-size:75.750000px;}
.fsa_c00389{font-size:77.250000px;}
.fs2_c00389{font-size:78.000000px;}
.fs0_c00389{font-size:78.750000px;}
.fs1_c00389{font-size:79.500000px;}
.fs5_c00389{font-size:80.250000px;}
.fs7_c00389{font-size:81.750000px;}
.fs3_c00389{font-size:82.500000px;}
.fsb_c00389{font-size:84.000000px;}
.fs9_c00389{font-size:85.500000px;}
.fse_c00389{font-size:87.750000px;}
.y0_c00389{bottom:0.000000px;}
.y29_c00389{bottom:156.958950px;}
.y28_c00389{bottom:186.478665px;}
.y27_c00389{bottom:186.478815px;}
.y26_c00389{bottom:215.639970px;}
.y24_c00389{bottom:245.518155px;}
.y25_c00389{bottom:245.519685px;}
.y23_c00389{bottom:304.919220px;}
.y22_c00389{bottom:334.798950px;}
.y21_c00389{bottom:364.678980px;}
.y20_c00389{bottom:393.840135px;}
.y1f_c00389{bottom:419.759085px;}
.y1e_c00389{bottom:423.719100px;}
.y1d_c00389{bottom:483.840570px;}
.y1c_c00389{bottom:513.720285px;}
.y1b_c00389{bottom:543.239820px;}
.y1a_c00389{bottom:543.240900px;}
.y19_c00389{bottom:572.760435px;}
.y17_c00389{bottom:602.639355px;}
.y18_c00389{bottom:602.640150px;}
.y16_c00389{bottom:632.519070px;}
.y15_c00389{bottom:632.519595px;}
.y14_c00389{bottom:691.560465px;}
.y13_c00389{bottom:721.080000px;}
.y12_c00389{bottom:755.279850px;}
.y11_c00389{bottom:780.839760px;}
.y10_c00389{bottom:811.079685px;}
.yf_c00389{bottom:841.680090px;}
.ye_c00389{bottom:841.680270px;}
.yc_c00389{bottom:871.198395px;}
.yd_c00389{bottom:871.199805px;}
.yb_c00389{bottom:930.599460px;}
.ya_c00389{bottom:960.479190px;}
.y9_c00389{bottom:960.479370px;}
.y7_c00389{bottom:989.998860px;}
.y8_c00389{bottom:989.998905px;}
.y5_c00389{bottom:1020.238080px;}
.y6_c00389{bottom:1020.238770px;}
.y4_c00389{bottom:1049.399235px;}
.y3_c00389{bottom:1049.399640px;}
.y2_c00389{bottom:1079.279370px;}
.y1_c00389{bottom:1139.759490px;}
.hf_c00389{height:43.083984px;}
.h10_c00389{height:53.973633px;}
.h7_c00389{height:70.664062px;}
.h5_c00389{height:73.608398px;}
.ha_c00389{height:74.344482px;}
.hc_c00389{height:75.816650px;}
.h3_c00389{height:76.552734px;}
.h1_c00389{height:77.288818px;}
.h12_c00389{height:77.853516px;}
.h2_c00389{height:78.024902px;}
.h6_c00389{height:78.760986px;}
.he_c00389{height:80.233154px;}
.h9_c00389{height:80.791992px;}
.h4_c00389{height:80.969238px;}
.h8_c00389{height:81.533203px;}
.hd_c00389{height:82.441406px;}
.hb_c00389{height:84.498047px;}
.h11_c00389{height:86.721680px;}
.h0_c00389{height:1263.000000px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.x1c_c00389{left:152.997855px;}
.x2_c00389{left:154.080075px;}
.x1_c00389{left:155.159415px;}
.x28_c00389{left:170.279250px;}
.x27_c00389{left:184.319850px;}
.xf_c00389{left:225.358635px;}
.x1d_c00389{left:226.439685px;}
.x1e_c00389{left:252.719535px;}
.x10_c00389{left:253.798950px;}
.xd_c00389{left:260.278800px;}
.xe_c00389{left:273.958350px;}
.x11_c00389{left:321.478635px;}
.x2b_c00389{left:326.519685px;}
.x15_c00389{left:332.279250px;}
.x12_c00389{left:339.120000px;}
.x2c_c00389{left:341.278800px;}
.x13_c00389{left:348.839535px;}
.x16_c00389{left:352.438635px;}
.x21_c00389{left:362.519100px;}
.x26_c00389{left:366.838515px;}
.x14_c00389{left:374.399235px;}
.x22_c00389{left:383.039385px;}
.x1f_c00389{left:391.679670px;}
.x20_c00389{left:407.158770px;}
.xb_c00389{left:418.318770px;}
.xc_c00389{left:440.279250px;}
.x17_c00389{left:446.759085px;}
.x3_c00389{left:473.759085px;}
.x18_c00389{left:475.919535px;}
.x23_c00389{left:507.238770px;}
.x4_c00389{left:513.000000px;}
.x19_c00389{left:527.038920px;}
.x24_c00389{left:528.119985px;}
.x1a_c00389{left:563.039985px;}
.x1b_c00389{left:583.919535px;}
.x5_c00389{left:599.759535px;}
.x25_c00389{left:615.599670px;}
.x6_c00389{left:626.759535px;}
.x9_c00389{left:640.798515px;}
.x29_c00389{left:650.158770px;}
.xa_c00389{left:656.999400px;}
.x7_c00389{left:686.519070px;}
.x2a_c00389{left:702.359250px;}
.x8_c00389{left:703.438620px;}
.x2d_c00389{left:758.878920px;}
.x2e_c00389{left:774.719055px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls1b_c00389{letter-spacing:-12.518000pt;}
.lsf_c00389{letter-spacing:-11.991847pt;}
.ls19_c00389{letter-spacing:-9.247000pt;}
.ls1c_c00389{letter-spacing:-7.924000pt;}
.ls1d_c00389{letter-spacing:-7.266700pt;}
.ls16_c00389{letter-spacing:-6.605400pt;}
.lsc_c00389{letter-spacing:-6.601000pt;}
.ls18_c00389{letter-spacing:-6.247200pt;}
.ls14_c00389{letter-spacing:-6.028000pt;}
.ls12_c00389{letter-spacing:-5.433600pt;}
.ls10_c00389{letter-spacing:-5.285000pt;}
.lsb_c00389{letter-spacing:-4.619300pt;}
.ls1e_c00389{letter-spacing:-4.541667pt;}
.ls23_c00389{letter-spacing:-4.493300pt;}
.ls5_c00389{letter-spacing:-3.961300pt;}
.ls1a_c00389{letter-spacing:-3.920867pt;}
.lsd_c00389{letter-spacing:-3.806667pt;}
.ls13_c00389{letter-spacing:-3.621760pt;}
.ls4_c00389{letter-spacing:-3.304000pt;}
.ls20_c00389{letter-spacing:-2.770580pt;}
.ls6_c00389{letter-spacing:-2.692400pt;}
.ls3_c00389{letter-spacing:-2.639000pt;}
.ls11_c00389{letter-spacing:-2.412800pt;}
.ls2_c00389{letter-spacing:-1.981700pt;}
.ls17_c00389{letter-spacing:-1.938527pt;}
.ls15_c00389{letter-spacing:-1.811840pt;}
.ls9_c00389{letter-spacing:-1.323700pt;}
.ls7_c00389{letter-spacing:-0.658000pt;}
.ls1f_c00389{letter-spacing:-0.395580pt;}
.lsa_c00389{letter-spacing:0.000000pt;}
.ls1_c00389{letter-spacing:1.323700pt;}
.ls22_c00389{letter-spacing:1.476333pt;}
.ls21_c00389{letter-spacing:2.808000pt;}
.lse_c00389{letter-spacing:3.304000pt;}
.ls8_c00389{letter-spacing:3.646933pt;}
.ls0_c00389{letter-spacing:7.266700pt;}
.ws0_c00389{word-spacing:0.000000pt;}
._2_c00389{margin-left:-58.530751pt;}
._20_c00389{margin-left:-55.989777pt;}
._3_c00389{margin-left:-35.421321pt;}
._1b_c00389{margin-left:-31.638191pt;}
._1f_c00389{margin-left:-6.386760pt;}
._5_c00389{margin-left:-3.604445pt;}
._6_c00389{margin-left:-2.015075pt;}
._1e_c00389{margin-left:-1.120557pt;}
._11_c00389{width:1.023862pt;}
._7_c00389{width:2.749230pt;}
._16_c00389{width:3.917398pt;}
._0_c00389{width:4.825153pt;}
._4_c00389{width:5.942604pt;}
._1a_c00389{width:6.845564pt;}
._1_c00389{width:7.846604pt;}
._9_c00389{width:9.595745pt;}
._a_c00389{width:10.485142pt;}
._17_c00389{width:11.440602pt;}
._8_c00389{width:12.869949pt;}
._19_c00389{width:14.188524pt;}
._13_c00389{width:15.728947pt;}
._12_c00389{width:17.716551pt;}
._18_c00389{width:19.469060pt;}
._15_c00389{width:20.365906pt;}
._14_c00389{width:21.740904pt;}
._c_c00389{width:24.217649pt;}
._b_c00389{width:27.398330pt;}
._10_c00389{width:29.412151pt;}
._e_c00389{width:30.663764pt;}
._d_c00389{width:31.856432pt;}
._f_c00389{width:33.378509pt;}
._1d_c00389{width:38.843872pt;}
._1c_c00389{width:39.848834pt;}
.fsc_c00389{font-size:38.000000pt;}
.fsd_c00389{font-size:46.000000pt;}
.fs6_c00389{font-size:64.000000pt;}
.fs4_c00389{font-size:66.666667pt;}
.fs8_c00389{font-size:67.333333pt;}
.fsa_c00389{font-size:68.666667pt;}
.fs2_c00389{font-size:69.333333pt;}
.fs0_c00389{font-size:70.000000pt;}
.fs1_c00389{font-size:70.666667pt;}
.fs5_c00389{font-size:71.333333pt;}
.fs7_c00389{font-size:72.666667pt;}
.fs3_c00389{font-size:73.333333pt;}
.fsb_c00389{font-size:74.666667pt;}
.fs9_c00389{font-size:76.000000pt;}
.fse_c00389{font-size:78.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y29_c00389{bottom:139.519067pt;}
.y28_c00389{bottom:165.758813pt;}
.y27_c00389{bottom:165.758947pt;}
.y26_c00389{bottom:191.679973pt;}
.y24_c00389{bottom:218.238360pt;}
.y25_c00389{bottom:218.239720pt;}
.y23_c00389{bottom:271.039307pt;}
.y22_c00389{bottom:297.599067pt;}
.y21_c00389{bottom:324.159093pt;}
.y20_c00389{bottom:350.080120pt;}
.y1f_c00389{bottom:373.119187pt;}
.y1e_c00389{bottom:376.639200pt;}
.y1d_c00389{bottom:430.080507pt;}
.y1c_c00389{bottom:456.640253pt;}
.y1b_c00389{bottom:482.879840pt;}
.y1a_c00389{bottom:482.880800pt;}
.y19_c00389{bottom:509.120387pt;}
.y17_c00389{bottom:535.679427pt;}
.y18_c00389{bottom:535.680133pt;}
.y16_c00389{bottom:562.239173pt;}
.y15_c00389{bottom:562.239640pt;}
.y14_c00389{bottom:614.720413pt;}
.y13_c00389{bottom:640.960000pt;}
.y12_c00389{bottom:671.359867pt;}
.y11_c00389{bottom:694.079787pt;}
.y10_c00389{bottom:720.959720pt;}
.yf_c00389{bottom:748.160080pt;}
.ye_c00389{bottom:748.160240pt;}
.yc_c00389{bottom:774.398573pt;}
.yd_c00389{bottom:774.399827pt;}
.yb_c00389{bottom:827.199520pt;}
.ya_c00389{bottom:853.759280pt;}
.y9_c00389{bottom:853.759440pt;}
.y7_c00389{bottom:879.998987pt;}
.y8_c00389{bottom:879.999027pt;}
.y5_c00389{bottom:906.878293pt;}
.y6_c00389{bottom:906.878907pt;}
.y4_c00389{bottom:932.799320pt;}
.y3_c00389{bottom:932.799680pt;}
.y2_c00389{bottom:959.359440pt;}
.y1_c00389{bottom:1013.119547pt;}
.hf_c00389{height:38.296875pt;}
.h10_c00389{height:47.976562pt;}
.h7_c00389{height:62.812500pt;}
.h5_c00389{height:65.429688pt;}
.ha_c00389{height:66.083984pt;}
.hc_c00389{height:67.392578pt;}
.h3_c00389{height:68.046875pt;}
.h1_c00389{height:68.701172pt;}
.h12_c00389{height:69.203125pt;}
.h2_c00389{height:69.355469pt;}
.h6_c00389{height:70.009766pt;}
.he_c00389{height:71.318359pt;}
.h9_c00389{height:71.815104pt;}
.h4_c00389{height:71.972656pt;}
.h8_c00389{height:72.473958pt;}
.hd_c00389{height:73.281250pt;}
.hb_c00389{height:75.109375pt;}
.h11_c00389{height:77.085938pt;}
.h0_c00389{height:1122.666667pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.x1c_c00389{left:135.998093pt;}
.x2_c00389{left:136.960067pt;}
.x1_c00389{left:137.919480pt;}
.x28_c00389{left:151.359333pt;}
.x27_c00389{left:163.839867pt;}
.xf_c00389{left:200.318787pt;}
.x1d_c00389{left:201.279720pt;}
.x1e_c00389{left:224.639587pt;}
.x10_c00389{left:225.599067pt;}
.xd_c00389{left:231.358933pt;}
.xe_c00389{left:243.518533pt;}
.x11_c00389{left:285.758787pt;}
.x2b_c00389{left:290.239720pt;}
.x15_c00389{left:295.359333pt;}
.x12_c00389{left:301.440000pt;}
.x2c_c00389{left:303.358933pt;}
.x13_c00389{left:310.079587pt;}
.x16_c00389{left:313.278787pt;}
.x21_c00389{left:322.239200pt;}
.x26_c00389{left:326.078680pt;}
.x14_c00389{left:332.799320pt;}
.x22_c00389{left:340.479453pt;}
.x1f_c00389{left:348.159707pt;}
.x20_c00389{left:361.918907pt;}
.xb_c00389{left:371.838907pt;}
.xc_c00389{left:391.359333pt;}
.x17_c00389{left:397.119187pt;}
.x3_c00389{left:421.119187pt;}
.x18_c00389{left:423.039587pt;}
.x23_c00389{left:450.878907pt;}
.x4_c00389{left:456.000000pt;}
.x19_c00389{left:468.479040pt;}
.x24_c00389{left:469.439987pt;}
.x1a_c00389{left:500.479987pt;}
.x1b_c00389{left:519.039587pt;}
.x5_c00389{left:533.119587pt;}
.x25_c00389{left:547.199707pt;}
.x6_c00389{left:557.119587pt;}
.x9_c00389{left:569.598680pt;}
.x29_c00389{left:577.918907pt;}
.xa_c00389{left:583.999467pt;}
.x7_c00389{left:610.239173pt;}
.x2a_c00389{left:624.319333pt;}
.x8_c00389{left:625.278773pt;}
.x2d_c00389{left:674.559040pt;}
.x2e_c00389{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_179937f6cc6a9f812a8ce515.woff2')format("woff");}.ff1_c00390{font-family:ff1_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:ff2_c00390;src:url('chunks/assets/font_b3da9d1004d975aacaaacc98.woff2')format("woff");}.ff2_c00390{font-family:ff2_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:ff3_c00390;src:url('chunks/assets/font_90b842c00ba5cf6b8e8734fa.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.364746;font-style:normal;font-weight:normal;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_72ab1333b5771c6434a938a5.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_3a094c60e944dc5fa0af8b37.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:1.364746;font-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_c00390{transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168780,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.me_c00390{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_c00390{transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179545,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m1a_c00390{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{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_c00390{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m12_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.369898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369898,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.425573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425573,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls7_c00390{letter-spacing:-15.287250px;}
.ls25_c00390{letter-spacing:-13.579500px;}
.ls1d_c00390{letter-spacing:-13.500000px;}
.ls11_c00390{letter-spacing:-12.218250px;}
.ls22_c00390{letter-spacing:-12.003600px;}
.lsf_c00390{letter-spacing:-11.343750px;}
.ls16_c00390{letter-spacing:-9.417060px;}
.lse_c00390{letter-spacing:-8.914500px;}
.ls19_c00390{letter-spacing:-8.175038px;}
.ls18_c00390{letter-spacing:-7.499250px;}
.ls1b_c00390{letter-spacing:-7.426125px;}
.ls10_c00390{letter-spacing:-6.742500px;}
.ls8_c00390{letter-spacing:-6.685875px;}
.lsc_c00390{letter-spacing:-5.945625px;}
.ls24_c00390{letter-spacing:-5.786025px;}
.ls9_c00390{letter-spacing:-5.196713px;}
.ls1e_c00390{letter-spacing:-4.496625px;}
.lsd_c00390{letter-spacing:-4.456463px;}
.ls23_c00390{letter-spacing:-4.453800px;}
.ls5_c00390{letter-spacing:-4.445415px;}
.ls26_c00390{letter-spacing:-4.410975px;}
.ls1f_c00390{letter-spacing:-4.334498px;}
.ls14_c00390{letter-spacing:-3.723525px;}
.ls2_c00390{letter-spacing:-3.717000px;}
.ls21_c00390{letter-spacing:-3.715725px;}
.ls4_c00390{letter-spacing:-2.968875px;}
.ls13_c00390{letter-spacing:-2.452403px;}
.ls3_c00390{letter-spacing:-2.229413px;}
.ls1a_c00390{letter-spacing:-2.224028px;}
.lsa_c00390{letter-spacing:-1.489163px;}
.ls17_c00390{letter-spacing:-0.884250px;}
.lsb_c00390{letter-spacing:-0.740250px;}
.ls6_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.740250px;}
.ls12_c00390{letter-spacing:2.229413px;}
.ls1c_c00390{letter-spacing:2.821328px;}
.ls20_c00390{letter-spacing:3.726810px;}
.ls15_c00390{letter-spacing:6.685875px;}
.ls1_c00390{letter-spacing:14.860913px;}
.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;}
._1f_c00390{margin-left:-75.762879px;}
._11_c00390{margin-left:-5.527804px;}
._f_c00390{margin-left:-2.929039px;}
._e_c00390{margin-left:-1.153806px;}
._10_c00390{width:2.035271px;}
._c_c00390{width:3.110402px;}
._1_c00390{width:4.329645px;}
._b_c00390{width:6.187313px;}
._3_c00390{width:7.253142px;}
._d_c00390{width:8.721577px;}
._0_c00390{width:9.891059px;}
._7_c00390{width:11.594987px;}
._9_c00390{width:13.576158px;}
._6_c00390{width:14.944848px;}
._a_c00390{width:16.966153px;}
._2_c00390{width:18.993965px;}
._19_c00390{width:20.123626px;}
._5_c00390{width:21.663709px;}
._8_c00390{width:23.462953px;}
._4_c00390{width:25.748457px;}
._14_c00390{width:26.863958px;}
._18_c00390{width:28.454604px;}
._16_c00390{width:30.279301px;}
._13_c00390{width:31.468084px;}
._12_c00390{width:32.565369px;}
._1b_c00390{width:34.410630px;}
._15_c00390{width:35.831131px;}
._1e_c00390{width:37.351125px;}
._1c_c00390{width:38.410260px;}
._1a_c00390{width:40.518257px;}
._1d_c00390{width:43.537978px;}
._17_c00390{width:59.882094px;}
.fc0_c00390{color:transparent;}
.fs9_c00390{font-size:50.250000px;}
.fsa_c00390{font-size:54.000000px;}
.fse_c00390{font-size:72.000000px;}
.fs8_c00390{font-size:72.750000px;}
.fs4_c00390{font-size:73.500000px;}
.fs7_c00390{font-size:75.000000px;}
.fs1_c00390{font-size:76.500000px;}
.fsd_c00390{font-size:77.250000px;}
.fs10_c00390{font-size:78.000000px;}
.fs0_c00390{font-size:78.750000px;}
.fs6_c00390{font-size:80.250000px;}
.fsf_c00390{font-size:81.000000px;}
.fs3_c00390{font-size:81.750000px;}
.fs5_c00390{font-size:82.500000px;}
.fs11_c00390{font-size:84.000000px;}
.fsc_c00390{font-size:84.750000px;}
.fsb_c00390{font-size:98.250000px;}
.fs2_c00390{font-size:99.662400px;}
.y0_c00390{bottom:0.000000px;}
.y33_c00390{bottom:154.439250px;}
.y32_c00390{bottom:154.439415px;}
.y31_c00390{bottom:183.958950px;}
.y30_c00390{bottom:213.839535px;}
.y2f_c00390{bottom:213.840435px;}
.y2d_c00390{bottom:243.719370px;}
.y2e_c00390{bottom:243.720150px;}
.y2c_c00390{bottom:273.599100px;}
.y2b_c00390{bottom:273.599265px;}
.y29_c00390{bottom:303.118035px;}
.y2a_c00390{bottom:303.118785px;}
.y28_c00390{bottom:332.639370px;}
.y27_c00390{bottom:362.519100px;}
.y26_c00390{bottom:362.519400px;}
.y24_c00390{bottom:392.038605px;}
.y25_c00390{bottom:392.038920px;}
.y22_c00390{bottom:451.800060px;}
.y23_c00390{bottom:451.800150px;}
.y21_c00390{bottom:482.039985px;}
.y1f_c00390{bottom:511.558890px;}
.y20_c00390{bottom:511.559685px;}
.y1e_c00390{bottom:541.438620px;}
.y1c_c00390{bottom:570.959175px;}
.y1d_c00390{bottom:570.959970px;}
.y1b_c00390{bottom:600.838905px;}
.y19_c00390{bottom:629.999400px;}
.y1a_c00390{bottom:630.179070px;}
.y18_c00390{bottom:660.239220px;}
.y17_c00390{bottom:660.239550px;}
.y15_c00390{bottom:689.759040px;}
.y16_c00390{bottom:689.759085px;}
.y14_c00390{bottom:719.998950px;}
.y13_c00390{bottom:749.518620px;}
.y12_c00390{bottom:752.039985px;}
.y11_c00390{bottom:752.040480px;}
.y10_c00390{bottom:809.279805px;}
.ye_c00390{bottom:839.518860px;}
.yf_c00390{bottom:839.519715px;}
.yd_c00390{bottom:869.398590px;}
.yc_c00390{bottom:869.398800px;}
.yb_c00390{bottom:899.278515px;}
.y9_c00390{bottom:928.439100px;}
.ya_c00390{bottom:928.439670px;}
.y7_c00390{bottom:958.318125px;}
.y8_c00390{bottom:958.318815px;}
.y6_c00390{bottom:987.839475px;}
.y5_c00390{bottom:1017.719190px;}
.y4_c00390{bottom:1047.598920px;}
.y3_c00390{bottom:1077.478635px;}
.y2_c00390{bottom:1077.479400px;}
.y1_c00390{bottom:1137.599025px;}
.hb_c00390{height:52.409180px;}
.hc_c00390{height:56.320312px;}
.h5_c00390{height:72.136230px;}
.h9_c00390{height:75.585938px;}
.h10_c00390{height:75.816650px;}
.ha_c00390{height:75.875977px;}
.h12_c00390{height:76.552734px;}
.h2_c00390{height:77.097656px;}
.h1_c00390{height:77.288818px;}
.he_c00390{height:78.005038px;}
.h8_c00390{height:78.760986px;}
.h11_c00390{height:79.497070px;}
.h4_c00390{height:80.233154px;}
.h7_c00390{height:80.969238px;}
.h6_c00390{height:81.533203px;}
.h13_c00390{height:83.015625px;}
.hf_c00390{height:83.177490px;}
.h3_c00390{height:97.813195px;}
.hd_c00390{height:102.471680px;}
.h0_c00390{height:1263.000000px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.xb_c00390{left:158.755560px;}
.x1_c00390{left:159.839565px;}
.x37_c00390{left:179.998950px;}
.x8_c00390{left:189.718500px;}
.x2_c00390{left:208.080000px;}
.x26_c00390{left:209.159385px;}
.x10_c00390{left:210.238785px;}
.xe_c00390{left:214.918950px;}
.x2c_c00390{left:218.158785px;}
.x3_c00390{left:226.439685px;}
.xf_c00390{left:232.199385px;}
.x2d_c00390{left:237.599700px;}
.x11_c00390{left:238.679100px;}
.x33_c00390{left:245.158785px;}
.x4_c00390{left:260.278800px;}
.x34_c00390{left:261.359850px;}
.x38_c00390{left:262.798515px;}
.x12_c00390{left:268.559685px;}
.x27_c00390{left:270.718500px;}
.x39_c00390{left:278.279250px;}
.x2a_c00390{left:289.798515px;}
.x32_c00390{left:294.478635px;}
.x3a_c00390{left:298.799535px;}
.x2b_c00390{left:312.838515px;}
.x1f_c00390{left:324.000000px;}
.x9_c00390{left:328.678500px;}
.x5_c00390{left:332.999385px;}
.x20_c00390{left:339.838515px;}
.xa_c00390{left:347.758500px;}
.x1c_c00390{left:351.359235px;}
.x3b_c00390{left:367.919535px;}
.x1d_c00390{left:371.879535px;}
.x23_c00390{left:386.638500px;}
.x2e_c00390{left:416.519070px;}
.x21_c00390{left:429.119385px;}
.x24_c00390{left:433.438665px;}
.x2f_c00390{left:438.479685px;}
.x22_c00390{left:450.719100px;}
.x25_c00390{left:454.319820px;}
.x13_c00390{left:505.798515px;}
.xc_c00390{left:514.079400px;}
.x18_c00390{left:518.759535px;}
.xd_c00390{left:530.639700px;}
.x1a_c00390{left:532.798515px;}
.x19_c00390{left:539.279850px;}
.x6_c00390{left:558.719100px;}
.x7_c00390{left:585.359850px;}
.x28_c00390{left:600.838950px;}
.x14_c00390{left:612.359850px;}
.x35_c00390{left:620.639100px;}
.x29_c00390{left:629.279250px;}
.x15_c00390{left:643.679070px;}
.x36_c00390{left:646.918950px;}
.x3c_c00390{left:675.718545px;}
.x16_c00390{left:690.479235px;}
.x30_c00390{left:707.759535px;}
.x31_c00390{left:740.878320px;}
.x1e_c00390{left:774.719055px;}
.x17_c00390{left:781.918950px;}
.x1b_c00390{left:785.519715px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls7_c00390{letter-spacing:-13.588667pt;}
.ls25_c00390{letter-spacing:-12.070667pt;}
.ls1d_c00390{letter-spacing:-12.000000pt;}
.ls11_c00390{letter-spacing:-10.860667pt;}
.ls22_c00390{letter-spacing:-10.669867pt;}
.lsf_c00390{letter-spacing:-10.083333pt;}
.ls16_c00390{letter-spacing:-8.370720pt;}
.lse_c00390{letter-spacing:-7.924000pt;}
.ls19_c00390{letter-spacing:-7.266700pt;}
.ls18_c00390{letter-spacing:-6.666000pt;}
.ls1b_c00390{letter-spacing:-6.601000pt;}
.ls10_c00390{letter-spacing:-5.993333pt;}
.ls8_c00390{letter-spacing:-5.943000pt;}
.lsc_c00390{letter-spacing:-5.285000pt;}
.ls24_c00390{letter-spacing:-5.143133pt;}
.ls9_c00390{letter-spacing:-4.619300pt;}
.ls1e_c00390{letter-spacing:-3.997000pt;}
.lsd_c00390{letter-spacing:-3.961300pt;}
.ls23_c00390{letter-spacing:-3.958933pt;}
.ls5_c00390{letter-spacing:-3.951480pt;}
.ls26_c00390{letter-spacing:-3.920867pt;}
.ls1f_c00390{letter-spacing:-3.852887pt;}
.ls14_c00390{letter-spacing:-3.309800pt;}
.ls2_c00390{letter-spacing:-3.304000pt;}
.ls21_c00390{letter-spacing:-3.302867pt;}
.ls4_c00390{letter-spacing:-2.639000pt;}
.ls13_c00390{letter-spacing:-2.179913pt;}
.ls3_c00390{letter-spacing:-1.981700pt;}
.ls1a_c00390{letter-spacing:-1.976913pt;}
.lsa_c00390{letter-spacing:-1.323700pt;}
.ls17_c00390{letter-spacing:-0.786000pt;}
.lsb_c00390{letter-spacing:-0.658000pt;}
.ls6_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.658000pt;}
.ls12_c00390{letter-spacing:1.981700pt;}
.ls1c_c00390{letter-spacing:2.507847pt;}
.ls20_c00390{letter-spacing:3.312720pt;}
.ls15_c00390{letter-spacing:5.943000pt;}
.ls1_c00390{letter-spacing:13.209700pt;}
.ws0_c00390{word-spacing:0.000000pt;}
._1f_c00390{margin-left:-67.344781pt;}
._11_c00390{margin-left:-4.913604pt;}
._f_c00390{margin-left:-2.603591pt;}
._e_c00390{margin-left:-1.025606pt;}
._10_c00390{width:1.809130pt;}
._c_c00390{width:2.764802pt;}
._1_c00390{width:3.848574pt;}
._b_c00390{width:5.499834pt;}
._3_c00390{width:6.447238pt;}
._d_c00390{width:7.752513pt;}
._0_c00390{width:8.792053pt;}
._7_c00390{width:10.306655pt;}
._9_c00390{width:12.067696pt;}
._6_c00390{width:13.284309pt;}
._a_c00390{width:15.081025pt;}
._2_c00390{width:16.883525pt;}
._19_c00390{width:17.887668pt;}
._5_c00390{width:19.256630pt;}
._8_c00390{width:20.855958pt;}
._4_c00390{width:22.887517pt;}
._14_c00390{width:23.879074pt;}
._18_c00390{width:25.292981pt;}
._16_c00390{width:26.914934pt;}
._13_c00390{width:27.971630pt;}
._12_c00390{width:28.946994pt;}
._1b_c00390{width:30.587226pt;}
._15_c00390{width:31.849894pt;}
._1e_c00390{width:33.201000pt;}
._1c_c00390{width:34.142453pt;}
._1a_c00390{width:36.016228pt;}
._1d_c00390{width:38.700425pt;}
._17_c00390{width:53.228528pt;}
.fs9_c00390{font-size:44.666667pt;}
.fsa_c00390{font-size:48.000000pt;}
.fse_c00390{font-size:64.000000pt;}
.fs8_c00390{font-size:64.666667pt;}
.fs4_c00390{font-size:65.333333pt;}
.fs7_c00390{font-size:66.666667pt;}
.fs1_c00390{font-size:68.000000pt;}
.fsd_c00390{font-size:68.666667pt;}
.fs10_c00390{font-size:69.333333pt;}
.fs0_c00390{font-size:70.000000pt;}
.fs6_c00390{font-size:71.333333pt;}
.fsf_c00390{font-size:72.000000pt;}
.fs3_c00390{font-size:72.666667pt;}
.fs5_c00390{font-size:73.333333pt;}
.fs11_c00390{font-size:74.666667pt;}
.fsc_c00390{font-size:75.333333pt;}
.fsb_c00390{font-size:87.333333pt;}
.fs2_c00390{font-size:88.588800pt;}
.y0_c00390{bottom:0.000000pt;}
.y33_c00390{bottom:137.279333pt;}
.y32_c00390{bottom:137.279480pt;}
.y31_c00390{bottom:163.519067pt;}
.y30_c00390{bottom:190.079587pt;}
.y2f_c00390{bottom:190.080387pt;}
.y2d_c00390{bottom:216.639440pt;}
.y2e_c00390{bottom:216.640133pt;}
.y2c_c00390{bottom:243.199200pt;}
.y2b_c00390{bottom:243.199347pt;}
.y29_c00390{bottom:269.438253pt;}
.y2a_c00390{bottom:269.438920pt;}
.y28_c00390{bottom:295.679440pt;}
.y27_c00390{bottom:322.239200pt;}
.y26_c00390{bottom:322.239467pt;}
.y24_c00390{bottom:348.478760pt;}
.y25_c00390{bottom:348.479040pt;}
.y22_c00390{bottom:401.600053pt;}
.y23_c00390{bottom:401.600133pt;}
.y21_c00390{bottom:428.479987pt;}
.y1f_c00390{bottom:454.719013pt;}
.y20_c00390{bottom:454.719720pt;}
.y1e_c00390{bottom:481.278773pt;}
.y1c_c00390{bottom:507.519267pt;}
.y1d_c00390{bottom:507.519973pt;}
.y1b_c00390{bottom:534.079027pt;}
.y19_c00390{bottom:559.999467pt;}
.y1a_c00390{bottom:560.159173pt;}
.y18_c00390{bottom:586.879307pt;}
.y17_c00390{bottom:586.879600pt;}
.y15_c00390{bottom:613.119147pt;}
.y16_c00390{bottom:613.119187pt;}
.y14_c00390{bottom:639.999067pt;}
.y13_c00390{bottom:666.238773pt;}
.y12_c00390{bottom:668.479987pt;}
.y11_c00390{bottom:668.480427pt;}
.y10_c00390{bottom:719.359827pt;}
.ye_c00390{bottom:746.238987pt;}
.yf_c00390{bottom:746.239747pt;}
.yd_c00390{bottom:772.798747pt;}
.yc_c00390{bottom:772.798933pt;}
.yb_c00390{bottom:799.358680pt;}
.y9_c00390{bottom:825.279200pt;}
.ya_c00390{bottom:825.279707pt;}
.y7_c00390{bottom:851.838333pt;}
.y8_c00390{bottom:851.838947pt;}
.y6_c00390{bottom:878.079533pt;}
.y5_c00390{bottom:904.639280pt;}
.y4_c00390{bottom:931.199040pt;}
.y3_c00390{bottom:957.758787pt;}
.y2_c00390{bottom:957.759467pt;}
.y1_c00390{bottom:1011.199133pt;}
.hb_c00390{height:46.585938pt;}
.hc_c00390{height:50.062500pt;}
.h5_c00390{height:64.121094pt;}
.h9_c00390{height:67.187500pt;}
.h10_c00390{height:67.392578pt;}
.ha_c00390{height:67.445312pt;}
.h12_c00390{height:68.046875pt;}
.h2_c00390{height:68.531250pt;}
.h1_c00390{height:68.701172pt;}
.he_c00390{height:69.337812pt;}
.h8_c00390{height:70.009766pt;}
.h11_c00390{height:70.664062pt;}
.h4_c00390{height:71.318359pt;}
.h7_c00390{height:71.972656pt;}
.h6_c00390{height:72.473958pt;}
.h13_c00390{height:73.791667pt;}
.hf_c00390{height:73.935547pt;}
.h3_c00390{height:86.945063pt;}
.hd_c00390{height:91.085938pt;}
.h0_c00390{height:1122.666667pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.xb_c00390{left:141.116053pt;}
.x1_c00390{left:142.079613pt;}
.x37_c00390{left:159.999067pt;}
.x8_c00390{left:168.638667pt;}
.x2_c00390{left:184.960000pt;}
.x26_c00390{left:185.919453pt;}
.x10_c00390{left:186.878920pt;}
.xe_c00390{left:191.039067pt;}
.x2c_c00390{left:193.918920pt;}
.x3_c00390{left:201.279720pt;}
.xf_c00390{left:206.399453pt;}
.x2d_c00390{left:211.199733pt;}
.x11_c00390{left:212.159200pt;}
.x33_c00390{left:217.918920pt;}
.x4_c00390{left:231.358933pt;}
.x34_c00390{left:232.319867pt;}
.x38_c00390{left:233.598680pt;}
.x12_c00390{left:238.719720pt;}
.x27_c00390{left:240.638667pt;}
.x39_c00390{left:247.359333pt;}
.x2a_c00390{left:257.598680pt;}
.x32_c00390{left:261.758787pt;}
.x3a_c00390{left:265.599587pt;}
.x2b_c00390{left:278.078680pt;}
.x1f_c00390{left:288.000000pt;}
.x9_c00390{left:292.158667pt;}
.x5_c00390{left:295.999453pt;}
.x20_c00390{left:302.078680pt;}
.xa_c00390{left:309.118667pt;}
.x1c_c00390{left:312.319320pt;}
.x3b_c00390{left:327.039587pt;}
.x1d_c00390{left:330.559587pt;}
.x23_c00390{left:343.678667pt;}
.x2e_c00390{left:370.239173pt;}
.x21_c00390{left:381.439453pt;}
.x24_c00390{left:385.278813pt;}
.x2f_c00390{left:389.759720pt;}
.x22_c00390{left:400.639200pt;}
.x25_c00390{left:403.839840pt;}
.x13_c00390{left:449.598680pt;}
.xc_c00390{left:456.959467pt;}
.x18_c00390{left:461.119587pt;}
.xd_c00390{left:471.679733pt;}
.x1a_c00390{left:473.598680pt;}
.x19_c00390{left:479.359867pt;}
.x6_c00390{left:496.639200pt;}
.x7_c00390{left:520.319867pt;}
.x28_c00390{left:534.079067pt;}
.x14_c00390{left:544.319867pt;}
.x35_c00390{left:551.679200pt;}
.x29_c00390{left:559.359333pt;}
.x15_c00390{left:572.159173pt;}
.x36_c00390{left:575.039067pt;}
.x3c_c00390{left:600.638707pt;}
.x16_c00390{left:613.759320pt;}
.x30_c00390{left:629.119587pt;}
.x31_c00390{left:658.558507pt;}
.x1e_c00390{left:688.639160pt;}
.x17_c00390{left:695.039067pt;}
.x1b_c00390{left:698.239747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f3060d4df510047eb6fbc8c.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.364746;font-style:normal;font-weight:normal;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_68466434aef5a841a1b8b324.woff2')format("woff");}.ff3_c00391{font-family:ff3_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:ff4_c00391;src:url('chunks/assets/font_c83a551c1802a578f43d2a0c.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.364746;font-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_c00391{transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160088,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m0_c00391{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00391{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls17_c00391{letter-spacing:-13.175250px;}
.lsf_c00391{letter-spacing:-12.572333px;}
.ls6_c00391{letter-spacing:-12.226305px;}
.ls18_c00391{letter-spacing:-8.914500px;}
.ls11_c00391{letter-spacing:-8.175038px;}
.ls10_c00391{letter-spacing:-7.500375px;}
.ls1_c00391{letter-spacing:-7.028100px;}
.lsb_c00391{letter-spacing:-6.781500px;}
.lsa_c00391{letter-spacing:-6.685875px;}
.ls4_c00391{letter-spacing:-5.945625px;}
.ls14_c00391{letter-spacing:-5.214000px;}
.ls2_c00391{letter-spacing:-5.196713px;}
.lsd_c00391{letter-spacing:-4.456463px;}
.ls15_c00391{letter-spacing:-4.211700px;}
.ls12_c00391{letter-spacing:-3.972375px;}
.ls8_c00391{letter-spacing:-3.717000px;}
.ls3_c00391{letter-spacing:-2.968875px;}
.ls16_c00391{letter-spacing:-2.288805px;}
.ls0_c00391{letter-spacing:-2.229413px;}
.ls7_c00391{letter-spacing:-1.489163px;}
.ls13_c00391{letter-spacing:-0.757328px;}
.lsc_c00391{letter-spacing:-0.740250px;}
.ls5_c00391{letter-spacing:0.000000px;}
.ls19_c00391{letter-spacing:3.726810px;}
.lse_c00391{letter-spacing:4.928550px;}
.ls9_c00391{letter-spacing:8.175038px;}
.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;}
._16_c00391{margin-left:-8.527451px;}
._15_c00391{margin-left:-7.353645px;}
._11_c00391{margin-left:-6.283923px;}
._12_c00391{margin-left:-4.998471px;}
._3_c00391{margin-left:-3.747772px;}
._13_c00391{margin-left:-2.175432px;}
._14_c00391{margin-left:-1.072129px;}
._8_c00391{width:1.953966px;}
._9_c00391{width:3.502146px;}
._0_c00391{width:5.093907px;}
._1_c00391{width:6.713304px;}
._a_c00391{width:8.641119px;}
._5_c00391{width:10.017059px;}
._b_c00391{width:11.787553px;}
._6_c00391{width:12.986142px;}
._c_c00391{width:14.058495px;}
._4_c00391{width:15.095959px;}
._2_c00391{width:17.748200px;}
._d_c00391{width:19.050650px;}
._7_c00391{width:20.152482px;}
._10_c00391{width:21.661317px;}
._e_c00391{width:22.944451px;}
._f_c00391{width:31.271863px;}
.fc0_c00391{color:transparent;}
.fs8_c00391{font-size:72.750000px;}
.fsa_c00391{font-size:75.000000px;}
.fs9_c00391{font-size:75.750000px;}
.fs2_c00391{font-size:77.250000px;}
.fs0_c00391{font-size:78.750000px;}
.fs5_c00391{font-size:79.500000px;}
.fs4_c00391{font-size:80.250000px;}
.fsb_c00391{font-size:81.000000px;}
.fs6_c00391{font-size:81.750000px;}
.fs3_c00391{font-size:82.500000px;}
.fs7_c00391{font-size:84.750000px;}
.fs1_c00391{font-size:85.500000px;}
.y0_c00391{bottom:0.000000px;}
.y2a_c00391{bottom:156.240435px;}
.y29_c00391{bottom:156.241500px;}
.y28_c00391{bottom:186.121215px;}
.y27_c00391{bottom:215.640750px;}
.y26_c00391{bottom:215.640840px;}
.y25_c00391{bottom:245.520555px;}
.y24_c00391{bottom:275.400285px;}
.y23_c00391{bottom:275.400930px;}
.y22_c00391{bottom:305.280645px;}
.y21_c00391{bottom:334.439685px;}
.y20_c00391{bottom:393.480030px;}
.y1e_c00391{bottom:453.599655px;}
.y1f_c00391{bottom:453.599670px;}
.y1d_c00391{bottom:483.839565px;}
.y1b_c00391{bottom:513.360285px;}
.y1c_c00391{bottom:513.360900px;}
.y1a_c00391{bottom:543.240000px;}
.y19_c00391{bottom:572.759535px;}
.y18_c00391{bottom:572.759970px;}
.y17_c00391{bottom:632.161035px;}
.y16_c00391{bottom:662.040750px;}
.y14_c00391{bottom:691.560195px;}
.y15_c00391{bottom:691.560285px;}
.y12_c00391{bottom:721.800060px;}
.y13_c00391{bottom:721.800105px;}
.y11_c00391{bottom:752.039985px;}
.yf_c00391{bottom:781.200390px;}
.y10_c00391{bottom:781.200435px;}
.ye_c00391{bottom:811.440315px;}
.yd_c00391{bottom:841.320930px;}
.yc_c00391{bottom:841.322610px;}
.yb_c00391{bottom:870.481665px;}
.ya_c00391{bottom:900.361380px;}
.y9_c00391{bottom:930.241110px;}
.y8_c00391{bottom:960.120825px;}
.y6_c00391{bottom:989.999820px;}
.y7_c00391{bottom:990.000555px;}
.y5_c00391{bottom:1049.400885px;}
.y4_c00391{bottom:1079.279850px;}
.y3_c00391{bottom:1109.160465px;}
.y2_c00391{bottom:1109.161260px;}
.y1_c00391{bottom:1139.040990px;}
.hb_c00391{height:73.318359px;}
.he_c00391{height:73.608398px;}
.hc_c00391{height:74.344482px;}
.h3_c00391{height:75.816650px;}
.h1_c00391{height:77.288818px;}
.h7_c00391{height:77.853516px;}
.hd_c00391{height:78.024902px;}
.h6_c00391{height:78.568359px;}
.h5_c00391{height:78.760986px;}
.hf_c00391{height:79.497070px;}
.h9_c00391{height:80.791992px;}
.h4_c00391{height:80.969238px;}
.h8_c00391{height:81.533203px;}
.ha_c00391{height:83.177490px;}
.h2_c00391{height:84.498047px;}
.h0_c00391{height:1263.000000px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:153.359850px;}
.x19_c00391{left:173.519100px;}
.x28_c00391{left:181.080000px;}
.xe_c00391{left:200.878350px;}
.x22_c00391{left:226.439685px;}
.x14_c00391{left:227.519100px;}
.xf_c00391{left:231.838515px;}
.x15_c00391{left:241.559685px;}
.x2_c00391{left:250.199850px;}
.x23_c00391{left:252.719535px;}
.x2a_c00391{left:255.598500px;}
.x16_c00391{left:259.919535px;}
.x3_c00391{left:271.079385px;}
.x1a_c00391{left:280.439685px;}
.x20_c00391{left:285.479235px;}
.x6_c00391{left:296.639100px;}
.x21_c00391{left:299.878950px;}
.x1b_c00391{left:305.279250px;}
.x7_c00391{left:329.039385px;}
.x24_c00391{left:354.239850px;}
.x25_c00391{left:368.278800px;}
.x8_c00391{left:456.119385px;}
.x2b_c00391{left:470.878320px;}
.x9_c00391{left:472.679670px;}
.x2c_c00391{left:492.838950px;}
.x1c_c00391{left:563.039985px;}
.x29_c00391{left:570.239820px;}
.x17_c00391{left:573.118785px;}
.x1d_c00391{left:582.838530px;}
.xa_c00391{left:584.278800px;}
.x18_c00391{left:587.159370px;}
.x12_c00391{left:588.238770px;}
.xb_c00391{left:602.638545px;}
.x1e_c00391{left:607.679670px;}
.x13_c00391{left:613.439250px;}
.x1f_c00391{left:621.359250px;}
.x4_c00391{left:675.359250px;}
.x10_c00391{left:683.999400px;}
.x5_c00391{left:695.518620px;}
.x11_c00391{left:704.519670px;}
.x26_c00391{left:728.639100px;}
.x27_c00391{left:754.559685px;}
.xc_c00391{left:772.919490px;}
.xd_c00391{left:778.679070px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls17_c00391{letter-spacing:-11.711333pt;}
.lsf_c00391{letter-spacing:-11.175407pt;}
.ls6_c00391{letter-spacing:-10.867827pt;}
.ls18_c00391{letter-spacing:-7.924000pt;}
.ls11_c00391{letter-spacing:-7.266700pt;}
.ls10_c00391{letter-spacing:-6.667000pt;}
.ls1_c00391{letter-spacing:-6.247200pt;}
.lsb_c00391{letter-spacing:-6.028000pt;}
.lsa_c00391{letter-spacing:-5.943000pt;}
.ls4_c00391{letter-spacing:-5.285000pt;}
.ls14_c00391{letter-spacing:-4.634667pt;}
.ls2_c00391{letter-spacing:-4.619300pt;}
.lsd_c00391{letter-spacing:-3.961300pt;}
.ls15_c00391{letter-spacing:-3.743733pt;}
.ls12_c00391{letter-spacing:-3.531000pt;}
.ls8_c00391{letter-spacing:-3.304000pt;}
.ls3_c00391{letter-spacing:-2.639000pt;}
.ls16_c00391{letter-spacing:-2.034493pt;}
.ls0_c00391{letter-spacing:-1.981700pt;}
.ls7_c00391{letter-spacing:-1.323700pt;}
.ls13_c00391{letter-spacing:-0.673180pt;}
.lsc_c00391{letter-spacing:-0.658000pt;}
.ls5_c00391{letter-spacing:0.000000pt;}
.ls19_c00391{letter-spacing:3.312720pt;}
.lse_c00391{letter-spacing:4.380933pt;}
.ls9_c00391{letter-spacing:7.266700pt;}
.ws0_c00391{word-spacing:0.000000pt;}
._16_c00391{margin-left:-7.579957pt;}
._15_c00391{margin-left:-6.536574pt;}
._11_c00391{margin-left:-5.585709pt;}
._12_c00391{margin-left:-4.443085pt;}
._3_c00391{margin-left:-3.331353pt;}
._13_c00391{margin-left:-1.933717pt;}
._14_c00391{margin-left:-0.953004pt;}
._8_c00391{width:1.736858pt;}
._9_c00391{width:3.113019pt;}
._0_c00391{width:4.527917pt;}
._1_c00391{width:5.967381pt;}
._a_c00391{width:7.680994pt;}
._5_c00391{width:8.904053pt;}
._b_c00391{width:10.477825pt;}
._6_c00391{width:11.543238pt;}
._c_c00391{width:12.496440pt;}
._4_c00391{width:13.418630pt;}
._2_c00391{width:15.776177pt;}
._d_c00391{width:16.933911pt;}
._7_c00391{width:17.913317pt;}
._10_c00391{width:19.254504pt;}
._e_c00391{width:20.395068pt;}
._f_c00391{width:27.797211pt;}
.fs8_c00391{font-size:64.666667pt;}
.fsa_c00391{font-size:66.666667pt;}
.fs9_c00391{font-size:67.333333pt;}
.fs2_c00391{font-size:68.666667pt;}
.fs0_c00391{font-size:70.000000pt;}
.fs5_c00391{font-size:70.666667pt;}
.fs4_c00391{font-size:71.333333pt;}
.fsb_c00391{font-size:72.000000pt;}
.fs6_c00391{font-size:72.666667pt;}
.fs3_c00391{font-size:73.333333pt;}
.fs7_c00391{font-size:75.333333pt;}
.fs1_c00391{font-size:76.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y2a_c00391{bottom:138.880387pt;}
.y29_c00391{bottom:138.881333pt;}
.y28_c00391{bottom:165.441080pt;}
.y27_c00391{bottom:191.680667pt;}
.y26_c00391{bottom:191.680747pt;}
.y25_c00391{bottom:218.240493pt;}
.y24_c00391{bottom:244.800253pt;}
.y23_c00391{bottom:244.800827pt;}
.y22_c00391{bottom:271.360573pt;}
.y21_c00391{bottom:297.279720pt;}
.y20_c00391{bottom:349.760027pt;}
.y1e_c00391{bottom:403.199693pt;}
.y1f_c00391{bottom:403.199707pt;}
.y1d_c00391{bottom:430.079613pt;}
.y1b_c00391{bottom:456.320253pt;}
.y1c_c00391{bottom:456.320800pt;}
.y1a_c00391{bottom:482.880000pt;}
.y19_c00391{bottom:509.119587pt;}
.y18_c00391{bottom:509.119973pt;}
.y17_c00391{bottom:561.920920pt;}
.y16_c00391{bottom:588.480667pt;}
.y14_c00391{bottom:614.720173pt;}
.y15_c00391{bottom:614.720253pt;}
.y12_c00391{bottom:641.600053pt;}
.y13_c00391{bottom:641.600093pt;}
.y11_c00391{bottom:668.479987pt;}
.yf_c00391{bottom:694.400347pt;}
.y10_c00391{bottom:694.400387pt;}
.ye_c00391{bottom:721.280280pt;}
.yd_c00391{bottom:747.840827pt;}
.yc_c00391{bottom:747.842320pt;}
.yb_c00391{bottom:773.761480pt;}
.ya_c00391{bottom:800.321227pt;}
.y9_c00391{bottom:826.880987pt;}
.y8_c00391{bottom:853.440733pt;}
.y6_c00391{bottom:879.999840pt;}
.y7_c00391{bottom:880.000493pt;}
.y5_c00391{bottom:932.800787pt;}
.y4_c00391{bottom:959.359867pt;}
.y3_c00391{bottom:985.920413pt;}
.y2_c00391{bottom:985.921120pt;}
.y1_c00391{bottom:1012.480880pt;}
.hb_c00391{height:65.171875pt;}
.he_c00391{height:65.429688pt;}
.hc_c00391{height:66.083984pt;}
.h3_c00391{height:67.392578pt;}
.h1_c00391{height:68.701172pt;}
.h7_c00391{height:69.203125pt;}
.hd_c00391{height:69.355469pt;}
.h6_c00391{height:69.838542pt;}
.h5_c00391{height:70.009766pt;}
.hf_c00391{height:70.664062pt;}
.h9_c00391{height:71.815104pt;}
.h4_c00391{height:71.972656pt;}
.h8_c00391{height:72.473958pt;}
.ha_c00391{height:73.935547pt;}
.h2_c00391{height:75.109375pt;}
.h0_c00391{height:1122.666667pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:136.319867pt;}
.x19_c00391{left:154.239200pt;}
.x28_c00391{left:160.960000pt;}
.xe_c00391{left:178.558533pt;}
.x22_c00391{left:201.279720pt;}
.x14_c00391{left:202.239200pt;}
.xf_c00391{left:206.078680pt;}
.x15_c00391{left:214.719720pt;}
.x2_c00391{left:222.399867pt;}
.x23_c00391{left:224.639587pt;}
.x2a_c00391{left:227.198667pt;}
.x16_c00391{left:231.039587pt;}
.x3_c00391{left:240.959453pt;}
.x1a_c00391{left:249.279720pt;}
.x20_c00391{left:253.759320pt;}
.x6_c00391{left:263.679200pt;}
.x21_c00391{left:266.559067pt;}
.x1b_c00391{left:271.359333pt;}
.x7_c00391{left:292.479453pt;}
.x24_c00391{left:314.879867pt;}
.x25_c00391{left:327.358933pt;}
.x8_c00391{left:405.439453pt;}
.x2b_c00391{left:418.558507pt;}
.x9_c00391{left:420.159707pt;}
.x2c_c00391{left:438.079067pt;}
.x1c_c00391{left:500.479987pt;}
.x29_c00391{left:506.879840pt;}
.x17_c00391{left:509.438920pt;}
.x1d_c00391{left:518.078693pt;}
.xa_c00391{left:519.358933pt;}
.x18_c00391{left:521.919440pt;}
.x12_c00391{left:522.878907pt;}
.xb_c00391{left:535.678707pt;}
.x1e_c00391{left:540.159707pt;}
.x13_c00391{left:545.279333pt;}
.x1f_c00391{left:552.319333pt;}
.x4_c00391{left:600.319333pt;}
.x10_c00391{left:607.999467pt;}
.x5_c00391{left:618.238773pt;}
.x11_c00391{left:626.239707pt;}
.x26_c00391{left:647.679200pt;}
.x27_c00391{left:670.719720pt;}
.xc_c00391{left:687.039547pt;}
.xd_c00391{left:692.159173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42c9755d426e01553a87413e.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_0bcf4f02bc18878d9e85acdf.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_73cbdb9ad9766ee58b672bac.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_5165f602e6f976306798dd0f.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_401a7ab3c0cd81a183f9e86b.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00392;src:url('chunks/assets/font_7d86b44a26fab970a469447a.woff2')format("woff");}.ff6_c00392{font-family:ff6_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:ff7_c00392;src:url('chunks/assets/font_87276aefecfb3f2b6aa20ecc.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e_c00392{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00392{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.me_c00392{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_c00392{transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.311594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311594,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.323077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323077,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.358974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358974,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.391667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391667,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls1e_c00392{letter-spacing:-26.592600px;}
.ls27_c00392{letter-spacing:-16.192215px;}
.ls1f_c00392{letter-spacing:-11.434500px;}
.ls1a_c00392{letter-spacing:-10.650000px;}
.ls15_c00392{letter-spacing:-9.024683px;}
.ls11_c00392{letter-spacing:-8.914500px;}
.ls25_c00392{letter-spacing:-8.488800px;}
.lsf_c00392{letter-spacing:-8.175038px;}
.ls1d_c00392{letter-spacing:-7.824600px;}
.lsd_c00392{letter-spacing:-7.426125px;}
.ls7_c00392{letter-spacing:-6.685875px;}
.ls21_c00392{letter-spacing:-6.572700px;}
.ls26_c00392{letter-spacing:-6.461385px;}
.ls8_c00392{letter-spacing:-5.945625px;}
.ls2c_c00392{letter-spacing:-5.640000px;}
.ls24_c00392{letter-spacing:-5.452725px;}
.ls4_c00392{letter-spacing:-5.440103px;}
.ls16_c00392{letter-spacing:-5.413050px;}
.ls31_c00392{letter-spacing:-5.247533px;}
.ls3_c00392{letter-spacing:-5.196713px;}
.lsc_c00392{letter-spacing:-5.015625px;}
.ls20_c00392{letter-spacing:-4.456463px;}
.ls1c_c00392{letter-spacing:-4.212968px;}
.ls10_c00392{letter-spacing:-4.039200px;}
.ls5_c00392{letter-spacing:-3.717000px;}
.ls18_c00392{letter-spacing:-3.611633px;}
.lsa_c00392{letter-spacing:-3.064950px;}
.ls2_c00392{letter-spacing:-2.968875px;}
.ls29_c00392{letter-spacing:-2.779088px;}
.ls23_c00392{letter-spacing:-2.526075px;}
.lse_c00392{letter-spacing:-2.427158px;}
.ls28_c00392{letter-spacing:-2.315790px;}
.ls1_c00392{letter-spacing:-2.229413px;}
.ls14_c00392{letter-spacing:-1.806075px;}
.ls22_c00392{letter-spacing:-1.555200px;}
.lsb_c00392{letter-spacing:-1.489163px;}
.ls2d_c00392{letter-spacing:-0.809325px;}
.ls9_c00392{letter-spacing:-0.740250px;}
.ls19_c00392{letter-spacing:-0.600300px;}
.ls6_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:0.600300px;}
.ls1b_c00392{letter-spacing:1.740375px;}
.ls2a_c00392{letter-spacing:2.519400px;}
.ls2f_c00392{letter-spacing:3.637710px;}
.ls2e_c00392{letter-spacing:3.705075px;}
.ls12_c00392{letter-spacing:4.181700px;}
.ls30_c00392{letter-spacing:4.619745px;}
.ls13_c00392{letter-spacing:11.607375px;}
.ls2b_c00392{letter-spacing:14.253750px;}
.ls17_c00392{letter-spacing:27.357750px;}
.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;}
._1b_c00392{margin-left:-9.820511px;}
._e_c00392{margin-left:-5.139448px;}
._d_c00392{margin-left:-3.229835px;}
._10_c00392{margin-left:-2.196709px;}
._f_c00392{margin-left:-1.143673px;}
._1a_c00392{width:1.528968px;}
._7_c00392{width:2.760143px;}
._5_c00392{width:3.929476px;}
._0_c00392{width:5.356204px;}
._1_c00392{width:7.178969px;}
._1c_c00392{width:8.290250px;}
._2_c00392{width:9.307775px;}
._4_c00392{width:10.938598px;}
._3_c00392{width:12.686714px;}
._9_c00392{width:13.994380px;}
._18_c00392{width:15.619483px;}
._6_c00392{width:16.813274px;}
._19_c00392{width:17.815479px;}
._b_c00392{width:19.928059px;}
._17_c00392{width:21.942380px;}
._c_c00392{width:23.018120px;}
._14_c00392{width:24.097842px;}
._a_c00392{width:25.438241px;}
._8_c00392{width:26.562434px;}
._12_c00392{width:27.593019px;}
._1e_c00392{width:28.904355px;}
._15_c00392{width:30.004894px;}
._13_c00392{width:32.266906px;}
._1d_c00392{width:35.311277px;}
._11_c00392{width:37.104162px;}
._16_c00392{width:42.016676px;}
.fc0_c00392{color:transparent;}
.fs12_c00392{font-size:22.500000px;}
.fsd_c00392{font-size:38.250000px;}
.fs10_c00392{font-size:40.500000px;}
.fsb_c00392{font-size:47.250000px;}
.fs8_c00392{font-size:48.750000px;}
.fs9_c00392{font-size:51.750000px;}
.fsa_c00392{font-size:52.500000px;}
.fsc_c00392{font-size:53.250000px;}
.fs13_c00392{font-size:58.500000px;}
.fse_c00392{font-size:60.000000px;}
.fs15_c00392{font-size:70.500000px;}
.fs3_c00392{font-size:73.500000px;}
.fs6_c00392{font-size:74.250000px;}
.fs14_c00392{font-size:78.000000px;}
.fs0_c00392{font-size:78.750000px;}
.fs7_c00392{font-size:79.500000px;}
.fs4_c00392{font-size:80.250000px;}
.fs11_c00392{font-size:81.000000px;}
.fs5_c00392{font-size:81.750000px;}
.fs2_c00392{font-size:82.500000px;}
.fs1_c00392{font-size:84.750000px;}
.fsf_c00392{font-size:115.500000px;}
.y0_c00392{bottom:0.000000px;}
.y2e_c00392{bottom:154.080000px;}
.y2d_c00392{bottom:154.080165px;}
.y2b_c00392{bottom:183.598920px;}
.y2c_c00392{bottom:183.599700px;}
.y2a_c00392{bottom:213.478635px;}
.y29_c00392{bottom:213.480165px;}
.y28_c00392{bottom:243.359895px;}
.y27_c00392{bottom:273.239610px;}
.y26_c00392{bottom:302.398665px;}
.y24_c00392{bottom:331.919520px;}
.y25_c00392{bottom:331.920000px;}
.y23_c00392{bottom:361.799235px;}
.y22_c00392{bottom:391.318770px;}
.y20_c00392{bottom:421.560285px;}
.y21_c00392{bottom:421.919535px;}
.y1f_c00392{bottom:451.439250px;}
.y1e_c00392{bottom:481.679175px;}
.y1d_c00392{bottom:511.198695px;}
.y1b_c00392{bottom:541.437330px;}
.y1c_c00392{bottom:541.438620px;}
.y1a_c00392{bottom:570.598485px;}
.y19_c00392{bottom:629.999535px;}
.y18_c00392{bottom:659.519070px;}
.y17_c00392{bottom:659.520105px;}
.y16_c00392{bottom:689.399820px;}
.y15_c00392{bottom:689.400015px;}
.y14_c00392{bottom:718.919535px;}
.y13_c00392{bottom:744.840135px;}
.y12_c00392{bottom:748.800105px;}
.y11_c00392{bottom:752.039985px;}
.y10_c00392{bottom:779.400120px;}
.ye_c00392{bottom:809.278320px;}
.yf_c00392{bottom:809.279850px;}
.yd_c00392{bottom:839.158035px;}
.yc_c00392{bottom:868.319190px;}
.yb_c00392{bottom:868.320210px;}
.ya_c00392{bottom:898.199940px;}
.y9_c00392{bottom:928.079655px;}
.y8_c00392{bottom:957.959385px;}
.y7_c00392{bottom:988.199295px;}
.y5_c00392{bottom:1018.438515px;}
.y6_c00392{bottom:1018.439205px;}
.y3_c00392{bottom:1047.598095px;}
.y4_c00392{bottom:1047.599670px;}
.y2_c00392{bottom:1106.999160px;}
.y1_c00392{bottom:1136.878875px;}
.h14_c00392{height:23.466797px;}
.h11_c00392{height:39.728760px;}
.he_c00392{height:39.893555px;}
.hc_c00392{height:49.280273px;}
.h9_c00392{height:50.844727px;}
.ha_c00392{height:53.973633px;}
.hb_c00392{height:54.755859px;}
.hd_c00392{height:55.538086px;}
.h16_c00392{height:57.814453px;}
.hf_c00392{height:59.296875px;}
.h19_c00392{height:71.050781px;}
.h4_c00392{height:76.658203px;}
.h1_c00392{height:77.288818px;}
.h7_c00392{height:77.440430px;}
.h8_c00392{height:78.024902px;}
.h18_c00392{height:78.609375px;}
.h5_c00392{height:78.760986px;}
.h17_c00392{height:79.365234px;}
.h1a_c00392{height:79.497070px;}
.h6_c00392{height:80.193237px;}
.h12_c00392{height:80.233154px;}
.h3_c00392{height:80.969238px;}
.h13_c00392{height:81.632812px;}
.h15_c00392{height:82.388672px;}
.h2_c00392{height:83.177490px;}
.h10_c00392{height:120.462891px;}
.h0_c00392{height:1263.000000px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.xa_c00392{left:152.998470px;}
.x1_c00392{left:154.439250px;}
.x29_c00392{left:169.199850px;}
.x2a_c00392{left:195.479685px;}
.x27_c00392{left:203.759100px;}
.x1c_c00392{left:210.958950px;}
.xb_c00392{left:224.279250px;}
.x15_c00392{left:230.759100px;}
.x1d_c00392{left:237.599700px;}
.xf_c00392{left:253.078785px;}
.x1e_c00392{left:278.999385px;}
.x28_c00392{left:281.519100px;}
.x2_c00392{left:339.838515px;}
.x1f_c00392{left:350.639100px;}
.x3_c00392{left:360.719535px;}
.x10_c00392{left:371.518635px;}
.x16_c00392{left:383.039385px;}
.x17_c00392{left:399.599670px;}
.x20_c00392{left:435.958335px;}
.x11_c00392{left:442.439670px;}
.x21_c00392{left:454.319820px;}
.xc_c00392{left:456.478635px;}
.x22_c00392{left:477.719100px;}
.x8_c00392{left:496.078770px;}
.x9_c00392{left:519.838950px;}
.x23_c00392{left:524.159820px;}
.x12_c00392{left:552.598530px;}
.x2f_c00392{left:555.479235px;}
.x24_c00392{left:568.799520px;}
.x4_c00392{left:570.239820px;}
.x30_c00392{left:575.999400px;}
.x5_c00392{left:586.080000px;}
.x13_c00392{left:593.279850px;}
.x6_c00392{left:618.839535px;}
.x2d_c00392{left:627.479685px;}
.x25_c00392{left:640.798515px;}
.x2e_c00392{left:657.719520px;}
.x2b_c00392{left:660.239220px;}
.xd_c00392{left:667.080000px;}
.x7_c00392{left:673.198785px;}
.x14_c00392{left:676.799520px;}
.x2c_c00392{left:686.878320px;}
.xe_c00392{left:693.359850px;}
.x26_c00392{left:721.798560px;}
.x1a_c00392{left:733.319235px;}
.x1b_c00392{left:753.839535px;}
.x18_c00392{left:761.039385px;}
.x19_c00392{left:775.079955px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls1e_c00392{letter-spacing:-23.637867pt;}
.ls27_c00392{letter-spacing:-14.393080pt;}
.ls1f_c00392{letter-spacing:-10.164000pt;}
.ls1a_c00392{letter-spacing:-9.466667pt;}
.ls15_c00392{letter-spacing:-8.021940pt;}
.ls11_c00392{letter-spacing:-7.924000pt;}
.ls25_c00392{letter-spacing:-7.545600pt;}
.lsf_c00392{letter-spacing:-7.266700pt;}
.ls1d_c00392{letter-spacing:-6.955200pt;}
.lsd_c00392{letter-spacing:-6.601000pt;}
.ls7_c00392{letter-spacing:-5.943000pt;}
.ls21_c00392{letter-spacing:-5.842400pt;}
.ls26_c00392{letter-spacing:-5.743453pt;}
.ls8_c00392{letter-spacing:-5.285000pt;}
.ls2c_c00392{letter-spacing:-5.013333pt;}
.ls24_c00392{letter-spacing:-4.846867pt;}
.ls4_c00392{letter-spacing:-4.835647pt;}
.ls16_c00392{letter-spacing:-4.811600pt;}
.ls31_c00392{letter-spacing:-4.664473pt;}
.ls3_c00392{letter-spacing:-4.619300pt;}
.lsc_c00392{letter-spacing:-4.458333pt;}
.ls20_c00392{letter-spacing:-3.961300pt;}
.ls1c_c00392{letter-spacing:-3.744860pt;}
.ls10_c00392{letter-spacing:-3.590400pt;}
.ls5_c00392{letter-spacing:-3.304000pt;}
.ls18_c00392{letter-spacing:-3.210340pt;}
.lsa_c00392{letter-spacing:-2.724400pt;}
.ls2_c00392{letter-spacing:-2.639000pt;}
.ls29_c00392{letter-spacing:-2.470300pt;}
.ls23_c00392{letter-spacing:-2.245400pt;}
.lse_c00392{letter-spacing:-2.157473pt;}
.ls28_c00392{letter-spacing:-2.058480pt;}
.ls1_c00392{letter-spacing:-1.981700pt;}
.ls14_c00392{letter-spacing:-1.605400pt;}
.ls22_c00392{letter-spacing:-1.382400pt;}
.lsb_c00392{letter-spacing:-1.323700pt;}
.ls2d_c00392{letter-spacing:-0.719400pt;}
.ls9_c00392{letter-spacing:-0.658000pt;}
.ls19_c00392{letter-spacing:-0.533600pt;}
.ls6_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:0.533600pt;}
.ls1b_c00392{letter-spacing:1.547000pt;}
.ls2a_c00392{letter-spacing:2.239467pt;}
.ls2f_c00392{letter-spacing:3.233520pt;}
.ls2e_c00392{letter-spacing:3.293400pt;}
.ls12_c00392{letter-spacing:3.717067pt;}
.ls30_c00392{letter-spacing:4.106440pt;}
.ls13_c00392{letter-spacing:10.317667pt;}
.ls2b_c00392{letter-spacing:12.670000pt;}
.ls17_c00392{letter-spacing:24.318000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
._1b_c00392{margin-left:-8.729343pt;}
._e_c00392{margin-left:-4.568398pt;}
._d_c00392{margin-left:-2.870964pt;}
._10_c00392{margin-left:-1.952630pt;}
._f_c00392{margin-left:-1.016598pt;}
._1a_c00392{width:1.359083pt;}
._7_c00392{width:2.453460pt;}
._5_c00392{width:3.492868pt;}
._0_c00392{width:4.761070pt;}
._1_c00392{width:6.381306pt;}
._1c_c00392{width:7.369111pt;}
._2_c00392{width:8.273577pt;}
._4_c00392{width:9.723198pt;}
._3_c00392{width:11.277079pt;}
._9_c00392{width:12.439449pt;}
._18_c00392{width:13.883985pt;}
._6_c00392{width:14.945132pt;}
._19_c00392{width:15.835981pt;}
._b_c00392{width:17.713830pt;}
._17_c00392{width:19.504338pt;}
._c_c00392{width:20.460551pt;}
._14_c00392{width:21.420304pt;}
._a_c00392{width:22.611770pt;}
._8_c00392{width:23.611053pt;}
._12_c00392{width:24.527128pt;}
._1e_c00392{width:25.692760pt;}
._15_c00392{width:26.671017pt;}
._13_c00392{width:28.681694pt;}
._1d_c00392{width:31.387802pt;}
._11_c00392{width:32.981477pt;}
._16_c00392{width:37.348157pt;}
.fs12_c00392{font-size:20.000000pt;}
.fsd_c00392{font-size:34.000000pt;}
.fs10_c00392{font-size:36.000000pt;}
.fsb_c00392{font-size:42.000000pt;}
.fs8_c00392{font-size:43.333333pt;}
.fs9_c00392{font-size:46.000000pt;}
.fsa_c00392{font-size:46.666667pt;}
.fsc_c00392{font-size:47.333333pt;}
.fs13_c00392{font-size:52.000000pt;}
.fse_c00392{font-size:53.333333pt;}
.fs15_c00392{font-size:62.666667pt;}
.fs3_c00392{font-size:65.333333pt;}
.fs6_c00392{font-size:66.000000pt;}
.fs14_c00392{font-size:69.333333pt;}
.fs0_c00392{font-size:70.000000pt;}
.fs7_c00392{font-size:70.666667pt;}
.fs4_c00392{font-size:71.333333pt;}
.fs11_c00392{font-size:72.000000pt;}
.fs5_c00392{font-size:72.666667pt;}
.fs2_c00392{font-size:73.333333pt;}
.fs1_c00392{font-size:75.333333pt;}
.fsf_c00392{font-size:102.666667pt;}
.y0_c00392{bottom:0.000000pt;}
.y2e_c00392{bottom:136.960000pt;}
.y2d_c00392{bottom:136.960147pt;}
.y2b_c00392{bottom:163.199040pt;}
.y2c_c00392{bottom:163.199733pt;}
.y2a_c00392{bottom:189.758787pt;}
.y29_c00392{bottom:189.760147pt;}
.y28_c00392{bottom:216.319907pt;}
.y27_c00392{bottom:242.879653pt;}
.y26_c00392{bottom:268.798813pt;}
.y24_c00392{bottom:295.039573pt;}
.y25_c00392{bottom:295.040000pt;}
.y23_c00392{bottom:321.599320pt;}
.y22_c00392{bottom:347.838907pt;}
.y20_c00392{bottom:374.720253pt;}
.y21_c00392{bottom:375.039587pt;}
.y1f_c00392{bottom:401.279333pt;}
.y1e_c00392{bottom:428.159267pt;}
.y1d_c00392{bottom:454.398840pt;}
.y1b_c00392{bottom:481.277627pt;}
.y1c_c00392{bottom:481.278773pt;}
.y1a_c00392{bottom:507.198653pt;}
.y19_c00392{bottom:559.999587pt;}
.y18_c00392{bottom:586.239173pt;}
.y17_c00392{bottom:586.240093pt;}
.y16_c00392{bottom:612.799840pt;}
.y15_c00392{bottom:612.800013pt;}
.y14_c00392{bottom:639.039587pt;}
.y13_c00392{bottom:662.080120pt;}
.y12_c00392{bottom:665.600093pt;}
.y11_c00392{bottom:668.479987pt;}
.y10_c00392{bottom:692.800107pt;}
.ye_c00392{bottom:719.358507pt;}
.yf_c00392{bottom:719.359867pt;}
.yd_c00392{bottom:745.918253pt;}
.yc_c00392{bottom:771.839280pt;}
.yb_c00392{bottom:771.840187pt;}
.ya_c00392{bottom:798.399947pt;}
.y9_c00392{bottom:824.959693pt;}
.y8_c00392{bottom:851.519453pt;}
.y7_c00392{bottom:878.399373pt;}
.y5_c00392{bottom:905.278680pt;}
.y6_c00392{bottom:905.279293pt;}
.y3_c00392{bottom:931.198307pt;}
.y4_c00392{bottom:931.199707pt;}
.y2_c00392{bottom:983.999253pt;}
.y1_c00392{bottom:1010.559000pt;}
.h14_c00392{height:20.859375pt;}
.h11_c00392{height:35.314453pt;}
.he_c00392{height:35.460938pt;}
.hc_c00392{height:43.804688pt;}
.h9_c00392{height:45.195312pt;}
.ha_c00392{height:47.976562pt;}
.hb_c00392{height:48.671875pt;}
.hd_c00392{height:49.367188pt;}
.h16_c00392{height:51.390625pt;}
.hf_c00392{height:52.708333pt;}
.h19_c00392{height:63.156250pt;}
.h4_c00392{height:68.140625pt;}
.h1_c00392{height:68.701172pt;}
.h7_c00392{height:68.835938pt;}
.h8_c00392{height:69.355469pt;}
.h18_c00392{height:69.875000pt;}
.h5_c00392{height:70.009766pt;}
.h17_c00392{height:70.546875pt;}
.h1a_c00392{height:70.664062pt;}
.h6_c00392{height:71.282878pt;}
.h12_c00392{height:71.318359pt;}
.h3_c00392{height:71.972656pt;}
.h13_c00392{height:72.562500pt;}
.h15_c00392{height:73.234375pt;}
.h2_c00392{height:73.935547pt;}
.h10_c00392{height:107.078125pt;}
.h0_c00392{height:1122.666667pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.xa_c00392{left:135.998640pt;}
.x1_c00392{left:137.279333pt;}
.x29_c00392{left:150.399867pt;}
.x2a_c00392{left:173.759720pt;}
.x27_c00392{left:181.119200pt;}
.x1c_c00392{left:187.519067pt;}
.xb_c00392{left:199.359333pt;}
.x15_c00392{left:205.119200pt;}
.x1d_c00392{left:211.199733pt;}
.xf_c00392{left:224.958920pt;}
.x1e_c00392{left:247.999453pt;}
.x28_c00392{left:250.239200pt;}
.x2_c00392{left:302.078680pt;}
.x1f_c00392{left:311.679200pt;}
.x3_c00392{left:320.639587pt;}
.x10_c00392{left:330.238787pt;}
.x16_c00392{left:340.479453pt;}
.x17_c00392{left:355.199707pt;}
.x20_c00392{left:387.518520pt;}
.x11_c00392{left:393.279707pt;}
.x21_c00392{left:403.839840pt;}
.xc_c00392{left:405.758787pt;}
.x22_c00392{left:424.639200pt;}
.x8_c00392{left:440.958907pt;}
.x9_c00392{left:462.079067pt;}
.x23_c00392{left:465.919840pt;}
.x12_c00392{left:491.198693pt;}
.x2f_c00392{left:493.759320pt;}
.x24_c00392{left:505.599573pt;}
.x4_c00392{left:506.879840pt;}
.x30_c00392{left:511.999467pt;}
.x5_c00392{left:520.960000pt;}
.x13_c00392{left:527.359867pt;}
.x6_c00392{left:550.079587pt;}
.x2d_c00392{left:557.759720pt;}
.x25_c00392{left:569.598680pt;}
.x2e_c00392{left:584.639573pt;}
.x2b_c00392{left:586.879307pt;}
.xd_c00392{left:592.960000pt;}
.x7_c00392{left:598.398920pt;}
.x14_c00392{left:601.599573pt;}
.x2c_c00392{left:610.558507pt;}
.xe_c00392{left:616.319867pt;}
.x26_c00392{left:641.598720pt;}
.x1a_c00392{left:651.839320pt;}
.x1b_c00392{left:670.079587pt;}
.x18_c00392{left:676.479453pt;}
.x19_c00392{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1ead02fcc1c5cb3c018d97c.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;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_73e6dbc849cea4e5508f67ef.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_d1837567169fef2f313c2f5b.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_b55b655bc52a44e3320c5501.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00393;src:url('chunks/assets/font_89e5ca22d05418ac68e09a99.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00393{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mb_c00393{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m13_c00393{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls1a_c00393{letter-spacing:-15.559425px;}
.ls13_c00393{letter-spacing:-10.576500px;}
.lsd_c00393{letter-spacing:-10.500000px;}
.ls10_c00393{letter-spacing:-10.035900px;}
.ls8_c00393{letter-spacing:-8.914500px;}
.ls1f_c00393{letter-spacing:-8.522550px;}
.lsc_c00393{letter-spacing:-8.175038px;}
.lsa_c00393{letter-spacing:-6.685875px;}
.lsb_c00393{letter-spacing:-5.945625px;}
.ls17_c00393{letter-spacing:-5.618303px;}
.lse_c00393{letter-spacing:-5.196713px;}
.ls20_c00393{letter-spacing:-5.109375px;}
.ls16_c00393{letter-spacing:-5.032500px;}
.ls7_c00393{letter-spacing:-4.456463px;}
.ls4_c00393{letter-spacing:-3.717000px;}
.ls15_c00393{letter-spacing:-3.213000px;}
.ls19_c00393{letter-spacing:-3.003000px;}
.ls5_c00393{letter-spacing:-2.968875px;}
.ls2_c00393{letter-spacing:-2.229413px;}
.ls14_c00393{letter-spacing:-1.618088px;}
.ls11_c00393{letter-spacing:-1.574258px;}
.ls18_c00393{letter-spacing:-1.560038px;}
.ls1d_c00393{letter-spacing:-1.512420px;}
.ls6_c00393{letter-spacing:-1.489163px;}
.ls1b_c00393{letter-spacing:-0.742050px;}
.ls3_c00393{letter-spacing:-0.740250px;}
.ls9_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:1.489163px;}
.ls1e_c00393{letter-spacing:2.746425px;}
.ls1c_c00393{letter-spacing:3.637710px;}
.lsf_c00393{letter-spacing:3.839805px;}
.ls12_c00393{letter-spacing:6.058800px;}
.ls1_c00393{letter-spacing:6.817200px;}
.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;}
._18_c00393{margin-left:-7.772402px;}
._10_c00393{margin-left:-6.517603px;}
._c_c00393{margin-left:-5.243873px;}
._e_c00393{margin-left:-3.756910px;}
._d_c00393{margin-left:-2.417075px;}
._f_c00393{margin-left:-1.239272px;}
._1a_c00393{width:1.201680px;}
._b_c00393{width:2.269456px;}
._8_c00393{width:4.192962px;}
._a_c00393{width:5.413973px;}
._3_c00393{width:6.615178px;}
._2_c00393{width:8.198187px;}
._9_c00393{width:9.204300px;}
._19_c00393{width:10.220814px;}
._1_c00393{width:11.419835px;}
._0_c00393{width:13.233893px;}
._4_c00393{width:15.426144px;}
._11_c00393{width:17.020921px;}
._5_c00393{width:18.631953px;}
._1c_c00393{width:19.659685px;}
._1b_c00393{width:20.740655px;}
._6_c00393{width:22.298597px;}
._17_c00393{width:23.423786px;}
._16_c00393{width:25.580437px;}
._14_c00393{width:28.323195px;}
._12_c00393{width:30.704387px;}
._7_c00393{width:31.886128px;}
._15_c00393{width:32.956756px;}
._1d_c00393{width:35.606619px;}
._13_c00393{width:39.350900px;}
.fc0_c00393{color:transparent;}
.fs8_c00393{font-size:71.250000px;}
.fs7_c00393{font-size:74.250000px;}
.fsb_c00393{font-size:76.500000px;}
.fsa_c00393{font-size:78.000000px;}
.fs0_c00393{font-size:78.750000px;}
.fs9_c00393{font-size:80.250000px;}
.fs4_c00393{font-size:81.000000px;}
.fsc_c00393{font-size:81.750000px;}
.fs5_c00393{font-size:82.500000px;}
.fs6_c00393{font-size:83.250000px;}
.fs2_c00393{font-size:84.000000px;}
.fs1_c00393{font-size:84.750000px;}
.fs3_c00393{font-size:85.500000px;}
.y0_c00393{bottom:0.000000px;}
.y26_c00393{bottom:162.000000px;}
.y25_c00393{bottom:162.001920px;}
.y24_c00393{bottom:191.881650px;}
.y23_c00393{bottom:221.761365px;}
.y21_c00393{bottom:251.279415px;}
.y22_c00393{bottom:251.280900px;}
.y20_c00393{bottom:280.440555px;}
.y1f_c00393{bottom:310.320285px;}
.y1e_c00393{bottom:340.201035px;}
.y1d_c00393{bottom:340.202025px;}
.y1c_c00393{bottom:370.262880px;}
.y1b_c00393{bottom:399.961470px;}
.y1a_c00393{bottom:429.841185px;}
.y19_c00393{bottom:459.360120px;}
.y18_c00393{bottom:518.761185px;}
.y17_c00393{bottom:578.880315px;}
.y16_c00393{bottom:608.760045px;}
.y15_c00393{bottom:637.921185px;}
.y14_c00393{bottom:637.922310px;}
.y13_c00393{bottom:668.162220px;}
.y12_c00393{bottom:697.681755px;}
.y11_c00393{bottom:727.561485px;}
.y10_c00393{bottom:757.081005px;}
.yf_c00393{bottom:757.081335px;}
.ye_c00393{bottom:786.600855px;}
.yc_c00393{bottom:816.120000px;}
.yd_c00393{bottom:816.120390px;}
.yb_c00393{bottom:846.720405px;}
.ya_c00393{bottom:876.600135px;}
.y9_c00393{bottom:906.840615px;}
.y8_c00393{bottom:936.361950px;}
.y7_c00393{bottom:995.761215px;}
.y6_c00393{bottom:1025.640930px;}
.y5_c00393{bottom:1055.160465px;}
.y4_c00393{bottom:1055.160525px;}
.y3_c00393{bottom:1085.400450px;}
.y2_c00393{bottom:1114.919970px;}
.y1_c00393{bottom:1144.441320px;}
.ha_c00393{height:74.311523px;}
.hf_c00393{height:75.080566px;}
.h1_c00393{height:77.288818px;}
.h8_c00393{height:77.440430px;}
.hd_c00393{height:78.609375px;}
.h10_c00393{height:78.760986px;}
.hb_c00393{height:79.365234px;}
.h5_c00393{height:79.497070px;}
.h11_c00393{height:80.233154px;}
.hc_c00393{height:80.876953px;}
.h6_c00393{height:80.969238px;}
.h9_c00393{height:81.533203px;}
.h7_c00393{height:81.705322px;}
.he_c00393{height:82.274414px;}
.h3_c00393{height:83.015625px;}
.h2_c00393{height:83.177490px;}
.h4_c00393{height:83.913574px;}
.h0_c00393{height:1263.000000px;}
.w0_c00393{width:892.500000px;}
.x0_c00393{left:0.000000px;}
.xf_c00393{left:152.640465px;}
.x4_c00393{left:153.717225px;}
.x1_c00393{left:154.798515px;}
.xe_c00393{left:219.599100px;}
.x10_c00393{left:233.639700px;}
.x2_c00393{left:241.918950px;}
.x6_c00393{left:250.918350px;}
.x3_c00393{left:257.038950px;}
.x7_c00393{left:273.599100px;}
.x1c_c00393{left:290.518635px;}
.x1d_c00393{left:313.199385px;}
.x11_c00393{left:332.279250px;}
.x19_c00393{left:344.518635px;}
.x5_c00393{left:353.519685px;}
.x1a_c00393{left:371.159385px;}
.xc_c00393{left:423.359850px;}
.xd_c00393{left:439.199850px;}
.xa_c00393{left:448.919535px;}
.x12_c00393{left:473.759085px;}
.xb_c00393{left:475.558635px;}
.x13_c00393{left:494.999400px;}
.x14_c00393{left:534.238770px;}
.x15_c00393{left:604.798920px;}
.x1f_c00393{left:613.798515px;}
.x16_c00393{left:633.598530px;}
.x8_c00393{left:635.759085px;}
.x9_c00393{left:649.438620px;}
.x1e_c00393{left:680.039385px;}
.x17_c00393{left:690.119985px;}
.x18_c00393{left:707.398635px;}
.x1b_c00393{left:719.998950px;}
.x20_c00393{left:779.039985px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls1a_c00393{letter-spacing:-13.830600pt;}
.ls13_c00393{letter-spacing:-9.401333pt;}
.lsd_c00393{letter-spacing:-9.333333pt;}
.ls10_c00393{letter-spacing:-8.920800pt;}
.ls8_c00393{letter-spacing:-7.924000pt;}
.ls1f_c00393{letter-spacing:-7.575600pt;}
.lsc_c00393{letter-spacing:-7.266700pt;}
.lsa_c00393{letter-spacing:-5.943000pt;}
.lsb_c00393{letter-spacing:-5.285000pt;}
.ls17_c00393{letter-spacing:-4.994047pt;}
.lse_c00393{letter-spacing:-4.619300pt;}
.ls20_c00393{letter-spacing:-4.541667pt;}
.ls16_c00393{letter-spacing:-4.473333pt;}
.ls7_c00393{letter-spacing:-3.961300pt;}
.ls4_c00393{letter-spacing:-3.304000pt;}
.ls15_c00393{letter-spacing:-2.856000pt;}
.ls19_c00393{letter-spacing:-2.669333pt;}
.ls5_c00393{letter-spacing:-2.639000pt;}
.ls2_c00393{letter-spacing:-1.981700pt;}
.ls14_c00393{letter-spacing:-1.438300pt;}
.ls11_c00393{letter-spacing:-1.399340pt;}
.ls18_c00393{letter-spacing:-1.386700pt;}
.ls1d_c00393{letter-spacing:-1.344373pt;}
.ls6_c00393{letter-spacing:-1.323700pt;}
.ls1b_c00393{letter-spacing:-0.659600pt;}
.ls3_c00393{letter-spacing:-0.658000pt;}
.ls9_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:1.323700pt;}
.ls1e_c00393{letter-spacing:2.441267pt;}
.ls1c_c00393{letter-spacing:3.233520pt;}
.lsf_c00393{letter-spacing:3.413160pt;}
.ls12_c00393{letter-spacing:5.385600pt;}
.ls1_c00393{letter-spacing:6.059733pt;}
.ws0_c00393{word-spacing:0.000000pt;}
._18_c00393{margin-left:-6.908802pt;}
._10_c00393{margin-left:-5.793425pt;}
._c_c00393{margin-left:-4.661221pt;}
._e_c00393{margin-left:-3.339475pt;}
._d_c00393{margin-left:-2.148511pt;}
._f_c00393{margin-left:-1.101575pt;}
._1a_c00393{width:1.068160pt;}
._b_c00393{width:2.017294pt;}
._8_c00393{width:3.727077pt;}
._a_c00393{width:4.812421pt;}
._3_c00393{width:5.880158pt;}
._2_c00393{width:7.287277pt;}
._9_c00393{width:8.181600pt;}
._19_c00393{width:9.085168pt;}
._1_c00393{width:10.150964pt;}
._0_c00393{width:11.763460pt;}
._4_c00393{width:13.712128pt;}
._11_c00393{width:15.129708pt;}
._5_c00393{width:16.561736pt;}
._1c_c00393{width:17.475275pt;}
._1b_c00393{width:18.436138pt;}
._6_c00393{width:19.820975pt;}
._17_c00393{width:20.821143pt;}
._16_c00393{width:22.738166pt;}
._14_c00393{width:25.176174pt;}
._12_c00393{width:27.292789pt;}
._7_c00393{width:28.343225pt;}
._15_c00393{width:29.294894pt;}
._1d_c00393{width:31.650328pt;}
._13_c00393{width:34.978577pt;}
.fs8_c00393{font-size:63.333333pt;}
.fs7_c00393{font-size:66.000000pt;}
.fsb_c00393{font-size:68.000000pt;}
.fsa_c00393{font-size:69.333333pt;}
.fs0_c00393{font-size:70.000000pt;}
.fs9_c00393{font-size:71.333333pt;}
.fs4_c00393{font-size:72.000000pt;}
.fsc_c00393{font-size:72.666667pt;}
.fs5_c00393{font-size:73.333333pt;}
.fs6_c00393{font-size:74.000000pt;}
.fs2_c00393{font-size:74.666667pt;}
.fs1_c00393{font-size:75.333333pt;}
.fs3_c00393{font-size:76.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y26_c00393{bottom:144.000000pt;}
.y25_c00393{bottom:144.001707pt;}
.y24_c00393{bottom:170.561467pt;}
.y23_c00393{bottom:197.121213pt;}
.y21_c00393{bottom:223.359480pt;}
.y22_c00393{bottom:223.360800pt;}
.y20_c00393{bottom:249.280493pt;}
.y1f_c00393{bottom:275.840253pt;}
.y1e_c00393{bottom:302.400920pt;}
.y1d_c00393{bottom:302.401800pt;}
.y1c_c00393{bottom:329.122560pt;}
.y1b_c00393{bottom:355.521307pt;}
.y1a_c00393{bottom:382.081053pt;}
.y19_c00393{bottom:408.320107pt;}
.y18_c00393{bottom:461.121053pt;}
.y17_c00393{bottom:514.560280pt;}
.y16_c00393{bottom:541.120040pt;}
.y15_c00393{bottom:567.041053pt;}
.y14_c00393{bottom:567.042053pt;}
.y13_c00393{bottom:593.921973pt;}
.y12_c00393{bottom:620.161560pt;}
.y11_c00393{bottom:646.721320pt;}
.y10_c00393{bottom:672.960893pt;}
.yf_c00393{bottom:672.961187pt;}
.ye_c00393{bottom:699.200760pt;}
.yc_c00393{bottom:725.440000pt;}
.yd_c00393{bottom:725.440347pt;}
.yb_c00393{bottom:752.640360pt;}
.ya_c00393{bottom:779.200120pt;}
.y9_c00393{bottom:806.080547pt;}
.y8_c00393{bottom:832.321733pt;}
.y7_c00393{bottom:885.121080pt;}
.y6_c00393{bottom:911.680827pt;}
.y5_c00393{bottom:937.920413pt;}
.y4_c00393{bottom:937.920467pt;}
.y3_c00393{bottom:964.800400pt;}
.y2_c00393{bottom:991.039973pt;}
.y1_c00393{bottom:1017.281173pt;}
.ha_c00393{height:66.054688pt;}
.hf_c00393{height:66.738281pt;}
.h1_c00393{height:68.701172pt;}
.h8_c00393{height:68.835938pt;}
.hd_c00393{height:69.875000pt;}
.h10_c00393{height:70.009766pt;}
.hb_c00393{height:70.546875pt;}
.h5_c00393{height:70.664062pt;}
.h11_c00393{height:71.318359pt;}
.hc_c00393{height:71.890625pt;}
.h6_c00393{height:71.972656pt;}
.h9_c00393{height:72.473958pt;}
.h7_c00393{height:72.626953pt;}
.he_c00393{height:73.132813pt;}
.h3_c00393{height:73.791667pt;}
.h2_c00393{height:73.935547pt;}
.h4_c00393{height:74.589844pt;}
.h0_c00393{height:1122.666667pt;}
.w0_c00393{width:793.333333pt;}
.x0_c00393{left:0.000000pt;}
.xf_c00393{left:135.680413pt;}
.x4_c00393{left:136.637533pt;}
.x1_c00393{left:137.598680pt;}
.xe_c00393{left:195.199200pt;}
.x10_c00393{left:207.679733pt;}
.x2_c00393{left:215.039067pt;}
.x6_c00393{left:223.038533pt;}
.x3_c00393{left:228.479067pt;}
.x7_c00393{left:243.199200pt;}
.x1c_c00393{left:258.238787pt;}
.x1d_c00393{left:278.399453pt;}
.x11_c00393{left:295.359333pt;}
.x19_c00393{left:306.238787pt;}
.x5_c00393{left:314.239720pt;}
.x1a_c00393{left:329.919453pt;}
.xc_c00393{left:376.319867pt;}
.xd_c00393{left:390.399867pt;}
.xa_c00393{left:399.039587pt;}
.x12_c00393{left:421.119187pt;}
.xb_c00393{left:422.718787pt;}
.x13_c00393{left:439.999467pt;}
.x14_c00393{left:474.878907pt;}
.x15_c00393{left:537.599040pt;}
.x1f_c00393{left:545.598680pt;}
.x16_c00393{left:563.198693pt;}
.x8_c00393{left:565.119187pt;}
.x9_c00393{left:577.278773pt;}
.x1e_c00393{left:604.479453pt;}
.x17_c00393{left:613.439987pt;}
.x18_c00393{left:628.798787pt;}
.x1b_c00393{left:639.999067pt;}
.x20_c00393{left:692.479987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9b9eddaedf531cde4d74d20.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_8c8f4705cdd66a6958a9f6a0.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.364746;font-style:normal;font-weight:normal;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_c7376eb4f4d85b46a70f2854.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_53b3e44902f7ab894d7f7ce5.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_f4943508c9d8c659eb569b26.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00394{transform:matrix(0.169192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169192,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m19_c00394{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{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_c00394{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269444,0.000000,0.000000,0.250000,0,0);}
.m1f_c00394{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289720,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);}
.m1a_c00394{transform:matrix(0.532828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532828,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.lsf_c00394{letter-spacing:-18.846968px;}
.lse_c00394{letter-spacing:-18.065250px;}
.lsd_c00394{letter-spacing:-16.828425px;}
.ls22_c00394{letter-spacing:-9.510165px;}
.ls26_c00394{letter-spacing:-8.914500px;}
.ls1a_c00394{letter-spacing:-8.175038px;}
.ls9_c00394{letter-spacing:-7.426125px;}
.ls1c_c00394{letter-spacing:-7.371000px;}
.ls5_c00394{letter-spacing:-6.685875px;}
.ls1f_c00394{letter-spacing:-6.300000px;}
.lsc_c00394{letter-spacing:-6.160478px;}
.ls21_c00394{letter-spacing:-6.058125px;}
.ls8_c00394{letter-spacing:-5.945625px;}
.ls27_c00394{letter-spacing:-5.894175px;}
.ls20_c00394{letter-spacing:-5.628893px;}
.ls6_c00394{letter-spacing:-5.196713px;}
.ls18_c00394{letter-spacing:-5.109375px;}
.ls24_c00394{letter-spacing:-4.571250px;}
.ls7_c00394{letter-spacing:-4.496625px;}
.ls19_c00394{letter-spacing:-4.456463px;}
.ls17_c00394{letter-spacing:-4.418663px;}
.ls14_c00394{letter-spacing:-4.334498px;}
.ls1d_c00394{letter-spacing:-4.324800px;}
.ls4_c00394{letter-spacing:-3.717000px;}
.ls23_c00394{letter-spacing:-3.326400px;}
.ls10_c00394{letter-spacing:-3.119220px;}
.ls1_c00394{letter-spacing:-2.968875px;}
.ls25_c00394{letter-spacing:-2.673000px;}
.ls12_c00394{letter-spacing:-2.297010px;}
.ls2_c00394{letter-spacing:-2.229413px;}
.ls11_c00394{letter-spacing:-1.637700px;}
.ls3_c00394{letter-spacing:-1.489163px;}
.ls1e_c00394{letter-spacing:-0.865755px;}
.lsb_c00394{letter-spacing:-0.740250px;}
.lsa_c00394{letter-spacing:0.000000px;}
.ls16_c00394{letter-spacing:0.779625px;}
.ls0_c00394{letter-spacing:1.489163px;}
.ls13_c00394{letter-spacing:2.971350px;}
.ls15_c00394{letter-spacing:3.476250px;}
.ls1b_c00394{letter-spacing:4.405725px;}
.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;}
._5_c00394{margin-left:-48.072908px;}
._11_c00394{margin-left:-13.312628px;}
._12_c00394{margin-left:-12.071112px;}
._1f_c00394{margin-left:-5.429917px;}
._b_c00394{margin-left:-3.771813px;}
._9_c00394{margin-left:-2.609626px;}
._a_c00394{margin-left:-1.565401px;}
._6_c00394{width:1.503025px;}
._1_c00394{width:2.522154px;}
._4_c00394{width:4.384443px;}
._3_c00394{width:6.235336px;}
._0_c00394{width:7.954285px;}
._20_c00394{width:9.186202px;}
._2_c00394{width:10.341227px;}
._7_c00394{width:12.254317px;}
._10_c00394{width:13.402433px;}
._1e_c00394{width:14.546819px;}
._1a_c00394{width:15.639067px;}
._1d_c00394{width:17.766505px;}
._1c_c00394{width:19.402782px;}
._e_c00394{width:20.635427px;}
._8_c00394{width:22.128839px;}
._1b_c00394{width:24.082701px;}
._f_c00394{width:25.533306px;}
._c_c00394{width:27.436322px;}
._d_c00394{width:28.526920px;}
._15_c00394{width:29.747486px;}
._18_c00394{width:31.579255px;}
._16_c00394{width:33.453535px;}
._14_c00394{width:34.904689px;}
._17_c00394{width:36.657486px;}
._13_c00394{width:38.697512px;}
._19_c00394{width:40.154476px;}
._21_c00394{width:78.491581px;}
._22_c00394{width:87.465554px;}
.fc0_c00394{color:transparent;}
.fse_c00394{font-size:33.750000px;}
.fsa_c00394{font-size:67.500000px;}
.fs7_c00394{font-size:69.000000px;}
.fs8_c00394{font-size:69.750000px;}
.fsf_c00394{font-size:73.500000px;}
.fsb_c00394{font-size:74.250000px;}
.fsd_c00394{font-size:75.000000px;}
.fs9_c00394{font-size:77.250000px;}
.fs5_c00394{font-size:78.000000px;}
.fs0_c00394{font-size:78.750000px;}
.fs6_c00394{font-size:79.500000px;}
.fs1_c00394{font-size:80.250000px;}
.fsc_c00394{font-size:81.750000px;}
.fs3_c00394{font-size:82.500000px;}
.fs4_c00394{font-size:83.250000px;}
.fs2_c00394{font-size:84.750000px;}
.y0_c00394{bottom:0.000000px;}
.y27_c00394{bottom:304.920870px;}
.y25_c00394{bottom:334.799970px;}
.y26_c00394{bottom:334.800585px;}
.y24_c00394{bottom:364.679700px;}
.y23_c00394{bottom:364.679850px;}
.y22_c00394{bottom:394.199385px;}
.y21_c00394{bottom:429.480285px;}
.y20_c00394{bottom:453.599670px;}
.y1f_c00394{bottom:453.601365px;}
.y1e_c00394{bottom:483.841275px;}
.y1d_c00394{bottom:513.721005px;}
.y1b_c00394{bottom:543.600495px;}
.y1c_c00394{bottom:543.600720px;}
.y19_c00394{bottom:572.759490px;}
.y1a_c00394{bottom:572.759535px;}
.y18_c00394{bottom:602.999400px;}
.y17_c00394{bottom:603.000570px;}
.y16_c00394{bottom:632.880300px;}
.y15_c00394{bottom:662.399820px;}
.y14_c00394{bottom:721.800105px;}
.y13_c00394{bottom:721.801005px;}
.y12_c00394{bottom:751.680720px;}
.y10_c00394{bottom:781.200390px;}
.y11_c00394{bottom:781.200435px;}
.yf_c00394{bottom:811.440315px;}
.ye_c00394{bottom:841.318500px;}
.yc_c00394{bottom:870.479370px;}
.yd_c00394{bottom:870.479640px;}
.yb_c00394{bottom:900.719280px;}
.ya_c00394{bottom:960.480840px;}
.y9_c00394{bottom:990.000555px;}
.y8_c00394{bottom:990.000735px;}
.y7_c00394{bottom:1019.520270px;}
.y6_c00394{bottom:1019.520810px;}
.y5_c00394{bottom:1049.040345px;}
.y4_c00394{bottom:1079.640750px;}
.y3_c00394{bottom:1079.640795px;}
.y2_c00394{bottom:1109.520510px;}
.y1_c00394{bottom:1139.400240px;}
.h13_c00394{height:35.200195px;}
.hc_c00394{height:66.247559px;}
.ha_c00394{height:70.294922px;}
.h9_c00394{height:71.964844px;}
.hd_c00394{height:72.872314px;}
.h10_c00394{height:73.608398px;}
.hf_c00394{height:75.816650px;}
.h14_c00394{height:76.658203px;}
.h1_c00394{height:77.288818px;}
.h12_c00394{height:77.440430px;}
.hb_c00394{height:77.853516px;}
.h6_c00394{height:78.609375px;}
.h2_c00394{height:78.760986px;}
.h7_c00394{height:79.365234px;}
.h8_c00394{height:80.121094px;}
.he_c00394{height:80.233154px;}
.h4_c00394{height:80.969238px;}
.h11_c00394{height:82.133789px;}
.h5_c00394{height:82.274414px;}
.h3_c00394{height:83.177490px;}
.h0_c00394{height:1263.000000px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.x4_c00394{left:157.679925px;}
.x1_c00394{left:158.758500px;}
.x10_c00394{left:177.838515px;}
.x22_c00394{left:186.119415px;}
.x31_c00394{left:205.919535px;}
.x1e_c00394{left:228.598500px;}
.x25_c00394{left:230.038950px;}
.x26_c00394{left:243.359250px;}
.x1f_c00394{left:254.878350px;}
.x8_c00394{left:266.758500px;}
.x9_c00394{left:281.878350px;}
.xa_c00394{left:303.479685px;}
.x20_c00394{left:320.399235px;}
.x2e_c00394{left:323.639100px;}
.xb_c00394{left:325.438635px;}
.x2b_c00394{left:331.559100px;}
.x29_c00394{left:338.038950px;}
.x21_c00394{left:341.278800px;}
.x2f_c00394{left:342.359850px;}
.x2c_c00394{left:347.399235px;}
.x15_c00394{left:348.839535px;}
.x2a_c00394{left:351.359235px;}
.x5_c00394{left:377.279850px;}
.x16_c00394{left:388.078815px;}
.x6_c00394{left:397.080000px;}
.xc_c00394{left:405.718500px;}
.x32_c00394{left:428.758530px;}
.xd_c00394{left:433.079400px;}
.x23_c00394{left:456.478635px;}
.x30_c00394{left:459.359250px;}
.x17_c00394{left:462.599070px;}
.x24_c00394{left:474.119985px;}
.x18_c00394{left:482.039985px;}
.x37_c00394{left:486.359250px;}
.x33_c00394{left:492.838950px;}
.x11_c00394{left:496.078770px;}
.x38_c00394{left:502.919535px;}
.x12_c00394{left:514.438665px;}
.x2_c00394{left:539.639100px;}
.x3_c00394{left:566.279850px;}
.x19_c00394{left:572.398635px;}
.x13_c00394{left:587.879520px;}
.x34_c00394{left:590.039985px;}
.x1a_c00394{left:596.158770px;}
.x14_c00394{left:607.318770px;}
.x39_c00394{left:635.038920px;}
.x35_c00394{left:646.198785px;}
.x1b_c00394{left:664.558635px;}
.x27_c00394{left:686.519070px;}
.x1c_c00394{left:688.679670px;}
.x28_c00394{left:700.198785px;}
.x2d_c00394{left:707.759535px;}
.x36_c00394{left:723.958920px;}
.x1d_c00394{left:741.239220px;}
.xe_c00394{left:747.719100px;}
.xf_c00394{left:764.999355px;}
.x7_c00394{left:784.079400px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.lsf_c00394{letter-spacing:-16.752860pt;}
.lse_c00394{letter-spacing:-16.058000pt;}
.lsd_c00394{letter-spacing:-14.958600pt;}
.ls22_c00394{letter-spacing:-8.453480pt;}
.ls26_c00394{letter-spacing:-7.924000pt;}
.ls1a_c00394{letter-spacing:-7.266700pt;}
.ls9_c00394{letter-spacing:-6.601000pt;}
.ls1c_c00394{letter-spacing:-6.552000pt;}
.ls5_c00394{letter-spacing:-5.943000pt;}
.ls1f_c00394{letter-spacing:-5.600000pt;}
.lsc_c00394{letter-spacing:-5.475980pt;}
.ls21_c00394{letter-spacing:-5.385000pt;}
.ls8_c00394{letter-spacing:-5.285000pt;}
.ls27_c00394{letter-spacing:-5.239267pt;}
.ls20_c00394{letter-spacing:-5.003460pt;}
.ls6_c00394{letter-spacing:-4.619300pt;}
.ls18_c00394{letter-spacing:-4.541667pt;}
.ls24_c00394{letter-spacing:-4.063333pt;}
.ls7_c00394{letter-spacing:-3.997000pt;}
.ls19_c00394{letter-spacing:-3.961300pt;}
.ls17_c00394{letter-spacing:-3.927700pt;}
.ls14_c00394{letter-spacing:-3.852887pt;}
.ls1d_c00394{letter-spacing:-3.844267pt;}
.ls4_c00394{letter-spacing:-3.304000pt;}
.ls23_c00394{letter-spacing:-2.956800pt;}
.ls10_c00394{letter-spacing:-2.772640pt;}
.ls1_c00394{letter-spacing:-2.639000pt;}
.ls25_c00394{letter-spacing:-2.376000pt;}
.ls12_c00394{letter-spacing:-2.041787pt;}
.ls2_c00394{letter-spacing:-1.981700pt;}
.ls11_c00394{letter-spacing:-1.455733pt;}
.ls3_c00394{letter-spacing:-1.323700pt;}
.ls1e_c00394{letter-spacing:-0.769560pt;}
.lsb_c00394{letter-spacing:-0.658000pt;}
.lsa_c00394{letter-spacing:0.000000pt;}
.ls16_c00394{letter-spacing:0.693000pt;}
.ls0_c00394{letter-spacing:1.323700pt;}
.ls13_c00394{letter-spacing:2.641200pt;}
.ls15_c00394{letter-spacing:3.090000pt;}
.ls1b_c00394{letter-spacing:3.916200pt;}
.ws0_c00394{word-spacing:0.000000pt;}
._5_c00394{margin-left:-42.731474pt;}
._11_c00394{margin-left:-11.833447pt;}
._12_c00394{margin-left:-10.729877pt;}
._1f_c00394{margin-left:-4.826592pt;}
._b_c00394{margin-left:-3.352723pt;}
._9_c00394{margin-left:-2.319668pt;}
._a_c00394{margin-left:-1.391468pt;}
._6_c00394{width:1.336023pt;}
._1_c00394{width:2.241915pt;}
._4_c00394{width:3.897283pt;}
._3_c00394{width:5.542521pt;}
._0_c00394{width:7.070475pt;}
._20_c00394{width:8.165513pt;}
._2_c00394{width:9.192202pt;}
._7_c00394{width:10.892726pt;}
._10_c00394{width:11.913274pt;}
._1e_c00394{width:12.930506pt;}
._1a_c00394{width:13.901392pt;}
._1d_c00394{width:15.792449pt;}
._1c_c00394{width:17.246917pt;}
._e_c00394{width:18.342602pt;}
._8_c00394{width:19.670079pt;}
._1b_c00394{width:21.406845pt;}
._f_c00394{width:22.696272pt;}
._c_c00394{width:24.387842pt;}
._d_c00394{width:25.357262pt;}
._15_c00394{width:26.442209pt;}
._18_c00394{width:28.070449pt;}
._16_c00394{width:29.736475pt;}
._14_c00394{width:31.026391pt;}
._17_c00394{width:32.584432pt;}
._13_c00394{width:34.397789pt;}
._19_c00394{width:35.692868pt;}
._21_c00394{width:69.770294pt;}
._22_c00394{width:77.747159pt;}
.fse_c00394{font-size:30.000000pt;}
.fsa_c00394{font-size:60.000000pt;}
.fs7_c00394{font-size:61.333333pt;}
.fs8_c00394{font-size:62.000000pt;}
.fsf_c00394{font-size:65.333333pt;}
.fsb_c00394{font-size:66.000000pt;}
.fsd_c00394{font-size:66.666667pt;}
.fs9_c00394{font-size:68.666667pt;}
.fs5_c00394{font-size:69.333333pt;}
.fs0_c00394{font-size:70.000000pt;}
.fs6_c00394{font-size:70.666667pt;}
.fs1_c00394{font-size:71.333333pt;}
.fsc_c00394{font-size:72.666667pt;}
.fs3_c00394{font-size:73.333333pt;}
.fs4_c00394{font-size:74.000000pt;}
.fs2_c00394{font-size:75.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y27_c00394{bottom:271.040773pt;}
.y25_c00394{bottom:297.599973pt;}
.y26_c00394{bottom:297.600520pt;}
.y24_c00394{bottom:324.159733pt;}
.y23_c00394{bottom:324.159867pt;}
.y22_c00394{bottom:350.399453pt;}
.y21_c00394{bottom:381.760253pt;}
.y20_c00394{bottom:403.199707pt;}
.y1f_c00394{bottom:403.201213pt;}
.y1e_c00394{bottom:430.081133pt;}
.y1d_c00394{bottom:456.640893pt;}
.y1b_c00394{bottom:483.200440pt;}
.y1c_c00394{bottom:483.200640pt;}
.y19_c00394{bottom:509.119547pt;}
.y1a_c00394{bottom:509.119587pt;}
.y18_c00394{bottom:535.999467pt;}
.y17_c00394{bottom:536.000507pt;}
.y16_c00394{bottom:562.560267pt;}
.y15_c00394{bottom:588.799840pt;}
.y14_c00394{bottom:641.600093pt;}
.y13_c00394{bottom:641.600893pt;}
.y12_c00394{bottom:668.160640pt;}
.y10_c00394{bottom:694.400347pt;}
.y11_c00394{bottom:694.400387pt;}
.yf_c00394{bottom:721.280280pt;}
.ye_c00394{bottom:747.838667pt;}
.yc_c00394{bottom:773.759440pt;}
.yd_c00394{bottom:773.759680pt;}
.yb_c00394{bottom:800.639360pt;}
.ya_c00394{bottom:853.760747pt;}
.y9_c00394{bottom:880.000493pt;}
.y8_c00394{bottom:880.000653pt;}
.y7_c00394{bottom:906.240240pt;}
.y6_c00394{bottom:906.240720pt;}
.y5_c00394{bottom:932.480307pt;}
.y4_c00394{bottom:959.680667pt;}
.y3_c00394{bottom:959.680707pt;}
.y2_c00394{bottom:986.240453pt;}
.y1_c00394{bottom:1012.800213pt;}
.h13_c00394{height:31.289062pt;}
.hc_c00394{height:58.886719pt;}
.ha_c00394{height:62.484375pt;}
.h9_c00394{height:63.968750pt;}
.hd_c00394{height:64.775391pt;}
.h10_c00394{height:65.429688pt;}
.hf_c00394{height:67.392578pt;}
.h14_c00394{height:68.140625pt;}
.h1_c00394{height:68.701172pt;}
.h12_c00394{height:68.835938pt;}
.hb_c00394{height:69.203125pt;}
.h6_c00394{height:69.875000pt;}
.h2_c00394{height:70.009766pt;}
.h7_c00394{height:70.546875pt;}
.h8_c00394{height:71.218750pt;}
.he_c00394{height:71.318359pt;}
.h4_c00394{height:71.972656pt;}
.h11_c00394{height:73.007812pt;}
.h5_c00394{height:73.132813pt;}
.h3_c00394{height:73.935547pt;}
.h0_c00394{height:1122.666667pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.x4_c00394{left:140.159933pt;}
.x1_c00394{left:141.118667pt;}
.x10_c00394{left:158.078680pt;}
.x22_c00394{left:165.439480pt;}
.x31_c00394{left:183.039587pt;}
.x1e_c00394{left:203.198667pt;}
.x25_c00394{left:204.479067pt;}
.x26_c00394{left:216.319333pt;}
.x1f_c00394{left:226.558533pt;}
.x8_c00394{left:237.118667pt;}
.x9_c00394{left:250.558533pt;}
.xa_c00394{left:269.759720pt;}
.x20_c00394{left:284.799320pt;}
.x2e_c00394{left:287.679200pt;}
.xb_c00394{left:289.278787pt;}
.x2b_c00394{left:294.719200pt;}
.x29_c00394{left:300.479067pt;}
.x21_c00394{left:303.358933pt;}
.x2f_c00394{left:304.319867pt;}
.x2c_c00394{left:308.799320pt;}
.x15_c00394{left:310.079587pt;}
.x2a_c00394{left:312.319320pt;}
.x5_c00394{left:335.359867pt;}
.x16_c00394{left:344.958947pt;}
.x6_c00394{left:352.960000pt;}
.xc_c00394{left:360.638667pt;}
.x32_c00394{left:381.118693pt;}
.xd_c00394{left:384.959467pt;}
.x23_c00394{left:405.758787pt;}
.x30_c00394{left:408.319333pt;}
.x17_c00394{left:411.199173pt;}
.x24_c00394{left:421.439987pt;}
.x18_c00394{left:428.479987pt;}
.x37_c00394{left:432.319333pt;}
.x33_c00394{left:438.079067pt;}
.x11_c00394{left:440.958907pt;}
.x38_c00394{left:447.039587pt;}
.x12_c00394{left:457.278813pt;}
.x2_c00394{left:479.679200pt;}
.x3_c00394{left:503.359867pt;}
.x19_c00394{left:508.798787pt;}
.x13_c00394{left:522.559573pt;}
.x34_c00394{left:524.479987pt;}
.x1a_c00394{left:529.918907pt;}
.x14_c00394{left:539.838907pt;}
.x39_c00394{left:564.479040pt;}
.x35_c00394{left:574.398920pt;}
.x1b_c00394{left:590.718787pt;}
.x27_c00394{left:610.239173pt;}
.x1c_c00394{left:612.159707pt;}
.x28_c00394{left:622.398920pt;}
.x2d_c00394{left:629.119587pt;}
.x36_c00394{left:643.519040pt;}
.x1d_c00394{left:658.879307pt;}
.xe_c00394{left:664.639200pt;}
.xf_c00394{left:679.999427pt;}
.x7_c00394{left:696.959467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d82d451d2e1afc2bf28bd30b.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_95d4c526fbf4fef7e0cd91f4.woff2')format("woff");}.ff2_c00395{font-family:ff2_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:ff3_c00395;src:url('chunks/assets/font_9aef9679faa417e89147f5d0.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_179b5a0541341adedb3b1b64.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_322d6ae3394f9439b2102a79.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00395;src:url('chunks/assets/font_7cdaa77d5ed70dc5afcc3ce2.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00395{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m19_c00395{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m9_c00395{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286458,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308511,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317164,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318468,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.353960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353960,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354167,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.381944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381944,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.417910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417910,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.476923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476923,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.504697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504697,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls25_c00395{letter-spacing:-19.341585px;}
.ls21_c00395{letter-spacing:-19.253850px;}
.ls1d_c00395{letter-spacing:-18.280950px;}
.ls1e_c00395{letter-spacing:-16.250625px;}
.ls17_c00395{letter-spacing:-9.141278px;}
.ls1a_c00395{letter-spacing:-9.006675px;}
.ls1f_c00395{letter-spacing:-8.914500px;}
.ls18_c00395{letter-spacing:-8.646750px;}
.ls31_c00395{letter-spacing:-8.175038px;}
.ls1b_c00395{letter-spacing:-8.129325px;}
.ls14_c00395{letter-spacing:-7.426125px;}
.ls1c_c00395{letter-spacing:-6.090975px;}
.lsd_c00395{letter-spacing:-5.945625px;}
.ls22_c00395{letter-spacing:-5.250300px;}
.ls10_c00395{letter-spacing:-5.196713px;}
.ls7_c00395{letter-spacing:-4.671158px;}
.lse_c00395{letter-spacing:-4.456463px;}
.ls16_c00395{letter-spacing:-4.429620px;}
.ls20_c00395{letter-spacing:-3.751800px;}
.ls12_c00395{letter-spacing:-3.717000px;}
.ls13_c00395{letter-spacing:-3.469200px;}
.ls6_c00395{letter-spacing:-3.259200px;}
.ls9_c00395{letter-spacing:-3.166800px;}
.lsb_c00395{letter-spacing:-2.968875px;}
.ls2a_c00395{letter-spacing:-2.609640px;}
.lsa_c00395{letter-spacing:-2.444400px;}
.ls8_c00395{letter-spacing:-2.380118px;}
.lsc_c00395{letter-spacing:-2.229413px;}
.ls5_c00395{letter-spacing:-1.628760px;}
.lsf_c00395{letter-spacing:-1.489163px;}
.ls23_c00395{letter-spacing:-1.058400px;}
.ls26_c00395{letter-spacing:-0.983070px;}
.ls32_c00395{letter-spacing:-0.749250px;}
.ls11_c00395{letter-spacing:-0.740250px;}
.ls24_c00395{letter-spacing:-0.713700px;}
.ls4_c00395{letter-spacing:0.000000px;}
.ls28_c00395{letter-spacing:0.394875px;}
.ls19_c00395{letter-spacing:1.019175px;}
.ls29_c00395{letter-spacing:1.499625px;}
.ls0_c00395{letter-spacing:3.048698px;}
.ls2d_c00395{letter-spacing:3.080505px;}
.ls2f_c00395{letter-spacing:3.140625px;}
.ls1_c00395{letter-spacing:4.060650px;}
.ls27_c00395{letter-spacing:4.811625px;}
.ls15_c00395{letter-spacing:4.928550px;}
.ls2b_c00395{letter-spacing:6.587775px;}
.ls2_c00395{letter-spacing:6.749625px;}
.ls3_c00395{letter-spacing:8.235473px;}
.ls2e_c00395{letter-spacing:9.060075px;}
.ls30_c00395{letter-spacing:11.532878px;}
.ls2c_c00395{letter-spacing:11.548253px;}
.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;}
._17_c00395{margin-left:-122.084569px;}
._16_c00395{margin-left:-25.511861px;}
._18_c00395{margin-left:-17.067235px;}
._1a_c00395{margin-left:-14.405302px;}
._15_c00395{margin-left:-6.094805px;}
._4_c00395{margin-left:-4.951562px;}
._6_c00395{margin-left:-3.651726px;}
._5_c00395{margin-left:-2.484904px;}
._7_c00395{margin-left:-1.413741px;}
._0_c00395{width:1.040385px;}
._3_c00395{width:2.597383px;}
._14_c00395{width:3.626051px;}
._9_c00395{width:4.948130px;}
._1_c00395{width:6.802989px;}
._2_c00395{width:8.543697px;}
._13_c00395{width:10.008418px;}
._d_c00395{width:12.070042px;}
._a_c00395{width:13.869668px;}
._1c_c00395{width:14.877474px;}
._8_c00395{width:15.962833px;}
._b_c00395{width:17.947719px;}
._c_c00395{width:19.672047px;}
._e_c00395{width:20.830653px;}
._f_c00395{width:22.411537px;}
._11_c00395{width:23.940297px;}
._12_c00395{width:25.893535px;}
._10_c00395{width:29.618767px;}
._1b_c00395{width:32.652662px;}
._19_c00395{width:198.050714px;}
.fc0_c00395{color:transparent;}
.fs10_c00395{font-size:26.250000px;}
.fsd_c00395{font-size:27.000000px;}
.fse_c00395{font-size:29.250000px;}
.fs17_c00395{font-size:33.341400px;}
.fs16_c00395{font-size:34.500000px;}
.fs15_c00395{font-size:35.250000px;}
.fsa_c00395{font-size:36.000000px;}
.fs12_c00395{font-size:37.500000px;}
.fs13_c00395{font-size:38.216400px;}
.fs11_c00395{font-size:48.750000px;}
.fs14_c00395{font-size:50.250000px;}
.fs18_c00395{font-size:54.000000px;}
.fsc_c00395{font-size:55.500000px;}
.fs5_c00395{font-size:73.500000px;}
.fs19_c00395{font-size:75.000000px;}
.fs9_c00395{font-size:75.750000px;}
.fs7_c00395{font-size:77.250000px;}
.fs4_c00395{font-size:78.000000px;}
.fs3_c00395{font-size:78.750000px;}
.fs6_c00395{font-size:80.250000px;}
.fs8_c00395{font-size:81.750000px;}
.fs0_c00395{font-size:82.500000px;}
.fs2_c00395{font-size:83.250000px;}
.fs1_c00395{font-size:84.000000px;}
.fsb_c00395{font-size:115.500000px;}
.fsf_c00395{font-size:121.500000px;}
.y0_c00395{bottom:0.000000px;}
.y28_c00395{bottom:154.800240px;}
.y27_c00395{bottom:184.679970px;}
.y25_c00395{bottom:214.559010px;}
.y26_c00395{bottom:214.559685px;}
.y23_c00395{bottom:243.719370px;}
.y24_c00395{bottom:243.720150px;}
.y22_c00395{bottom:273.599100px;}
.y21_c00395{bottom:273.599190px;}
.y20_c00395{bottom:303.478905px;}
.y1f_c00395{bottom:333.358635px;}
.y1e_c00395{bottom:333.360540px;}
.y1d_c00395{bottom:363.240255px;}
.y1c_c00395{bottom:393.119985px;}
.y1b_c00395{bottom:422.998950px;}
.y1a_c00395{bottom:429.119385px;}
.y19_c00395{bottom:482.039985px;}
.y18_c00395{bottom:482.040945px;}
.y17_c00395{bottom:512.280855px;}
.y16_c00395{bottom:541.439895px;}
.y15_c00395{bottom:571.681920px;}
.y14_c00395{bottom:601.921830px;}
.y13_c00395{bottom:630.720675px;}
.y12_c00395{bottom:660.600405px;}
.y11_c00395{bottom:690.119940px;}
.y10_c00395{bottom:720.359850px;}
.yf_c00395{bottom:749.879520px;}
.ye_c00395{bottom:780.119520px;}
.yd_c00395{bottom:809.999250px;}
.yc_c00395{bottom:839.878965px;}
.yb_c00395{bottom:898.919565px;}
.ya_c00395{bottom:928.439100px;}
.y9_c00395{bottom:958.318815px;}
.y8_c00395{bottom:958.319625px;}
.y7_c00395{bottom:988.199340px;}
.y6_c00395{bottom:988.199520px;}
.y5_c00395{bottom:1017.719055px;}
.y4_c00395{bottom:1017.719190px;}
.y3_c00395{bottom:1047.598920px;}
.y2_c00395{bottom:1077.478635px;}
.y1_c00395{bottom:1136.878875px;}
.h14_c00395{height:27.377930px;}
.h11_c00395{height:28.160156px;}
.h12_c00395{height:30.506836px;}
.h1c_c00395{height:33.601880px;}
.h1b_c00395{height:34.769531px;}
.h1a_c00395{height:35.525391px;}
.h18_c00395{height:36.281250px;}
.he_c00395{height:37.546875px;}
.h16_c00395{height:39.111328px;}
.h17_c00395{height:39.858511px;}
.h19_c00395{height:50.642578px;}
.h15_c00395{height:50.844727px;}
.h1d_c00395{height:54.421875px;}
.h10_c00395{height:57.884766px;}
.h6_c00395{height:72.136230px;}
.h1f_c00395{height:73.608398px;}
.hd_c00395{height:74.344482px;}
.h8_c00395{height:75.816650px;}
.h5_c00395{height:76.552734px;}
.h4_c00395{height:77.288818px;}
.hb_c00395{height:77.827148px;}
.h9_c00395{height:78.609375px;}
.h7_c00395{height:78.760986px;}
.ha_c00395{height:79.309570px;}
.hc_c00395{height:80.791992px;}
.h1e_c00395{height:80.969238px;}
.h1_c00395{height:83.144531px;}
.h3_c00395{height:83.900391px;}
.h2_c00395{height:84.656250px;}
.hf_c00395{height:120.462891px;}
.h13_c00395{height:126.720703px;}
.h0_c00395{height:1263.000000px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.x16_c00395{left:154.437930px;}
.xb_c00395{left:155.518245px;}
.x1_c00395{left:156.599700px;}
.x1d_c00395{left:166.678500px;}
.xf_c00395{left:172.798950px;}
.xe_c00395{left:183.238785px;}
.x1e_c00395{left:189.000000px;}
.x2_c00395{left:207.719100px;}
.x10_c00395{left:241.918950px;}
.xc_c00395{left:257.038950px;}
.x11_c00395{left:266.399250px;}
.x1f_c00395{left:270.718500px;}
.xd_c00395{left:274.319250px;}
.x12_c00395{left:318.599700px;}
.x3_c00395{left:322.559685px;}
.x26_c00395{left:324.000000px;}
.x13_c00395{left:335.519100px;}
.x17_c00395{left:338.038950px;}
.x4_c00395{left:342.719100px;}
.x14_c00395{left:361.439685px;}
.x18_c00395{left:363.598530px;}
.x20_c00395{left:388.439715px;}
.x5_c00395{left:397.439250px;}
.x2e_c00395{left:405.718500px;}
.x19_c00395{left:413.279250px;}
.x21_c00395{left:421.558635px;}
.x1a_c00395{left:428.039985px;}
.x15_c00395{left:446.038920px;}
.x29_c00395{left:457.559685px;}
.x6_c00395{left:471.239220px;}
.x22_c00395{left:480.238770px;}
.x2f_c00395{left:501.479235px;}
.x7_c00395{left:503.278800px;}
.x30_c00395{left:516.958335px;}
.x8_c00395{left:520.918350px;}
.x1b_c00395{left:531.719100px;}
.x1c_c00395{left:547.199850px;}
.x23_c00395{left:603.719520px;}
.x2a_c00395{left:614.518620px;}
.x31_c00395{left:623.519670px;}
.x2b_c00395{left:627.838950px;}
.x24_c00395{left:632.878320px;}
.x27_c00395{left:673.559685px;}
.x9_c00395{left:680.398635px;}
.x2c_c00395{left:699.478635px;}
.xa_c00395{left:705.958335px;}
.x2d_c00395{left:713.159820px;}
.x28_c00395{left:752.758530px;}
.x25_c00395{left:769.679715px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls25_c00395{letter-spacing:-17.192520pt;}
.ls21_c00395{letter-spacing:-17.114533pt;}
.ls1d_c00395{letter-spacing:-16.249733pt;}
.ls1e_c00395{letter-spacing:-14.445000pt;}
.ls17_c00395{letter-spacing:-8.125580pt;}
.ls1a_c00395{letter-spacing:-8.005933pt;}
.ls1f_c00395{letter-spacing:-7.924000pt;}
.ls18_c00395{letter-spacing:-7.686000pt;}
.ls31_c00395{letter-spacing:-7.266700pt;}
.ls1b_c00395{letter-spacing:-7.226067pt;}
.ls14_c00395{letter-spacing:-6.601000pt;}
.ls1c_c00395{letter-spacing:-5.414200pt;}
.lsd_c00395{letter-spacing:-5.285000pt;}
.ls22_c00395{letter-spacing:-4.666933pt;}
.ls10_c00395{letter-spacing:-4.619300pt;}
.ls7_c00395{letter-spacing:-4.152140pt;}
.lse_c00395{letter-spacing:-3.961300pt;}
.ls16_c00395{letter-spacing:-3.937440pt;}
.ls20_c00395{letter-spacing:-3.334933pt;}
.ls12_c00395{letter-spacing:-3.304000pt;}
.ls13_c00395{letter-spacing:-3.083733pt;}
.ls6_c00395{letter-spacing:-2.897067pt;}
.ls9_c00395{letter-spacing:-2.814933pt;}
.lsb_c00395{letter-spacing:-2.639000pt;}
.ls2a_c00395{letter-spacing:-2.319680pt;}
.lsa_c00395{letter-spacing:-2.172800pt;}
.ls8_c00395{letter-spacing:-2.115660pt;}
.lsc_c00395{letter-spacing:-1.981700pt;}
.ls5_c00395{letter-spacing:-1.447787pt;}
.lsf_c00395{letter-spacing:-1.323700pt;}
.ls23_c00395{letter-spacing:-0.940800pt;}
.ls26_c00395{letter-spacing:-0.873840pt;}
.ls32_c00395{letter-spacing:-0.666000pt;}
.ls11_c00395{letter-spacing:-0.658000pt;}
.ls24_c00395{letter-spacing:-0.634400pt;}
.ls4_c00395{letter-spacing:0.000000pt;}
.ls28_c00395{letter-spacing:0.351000pt;}
.ls19_c00395{letter-spacing:0.905933pt;}
.ls29_c00395{letter-spacing:1.333000pt;}
.ls0_c00395{letter-spacing:2.709953pt;}
.ls2d_c00395{letter-spacing:2.738227pt;}
.ls2f_c00395{letter-spacing:2.791667pt;}
.ls1_c00395{letter-spacing:3.609467pt;}
.ls27_c00395{letter-spacing:4.277000pt;}
.ls15_c00395{letter-spacing:4.380933pt;}
.ls2b_c00395{letter-spacing:5.855800pt;}
.ls2_c00395{letter-spacing:5.999667pt;}
.ls3_c00395{letter-spacing:7.320420pt;}
.ls2e_c00395{letter-spacing:8.053400pt;}
.ls30_c00395{letter-spacing:10.251447pt;}
.ls2c_c00395{letter-spacing:10.265113pt;}
.ws0_c00395{word-spacing:0.000000pt;}
._17_c00395{margin-left:-108.519617pt;}
._16_c00395{margin-left:-22.677210pt;}
._18_c00395{margin-left:-15.170875pt;}
._1a_c00395{margin-left:-12.804713pt;}
._15_c00395{margin-left:-5.417605pt;}
._4_c00395{margin-left:-4.401389pt;}
._6_c00395{margin-left:-3.245978pt;}
._5_c00395{margin-left:-2.208804pt;}
._7_c00395{margin-left:-1.256658pt;}
._0_c00395{width:0.924787pt;}
._3_c00395{width:2.308785pt;}
._14_c00395{width:3.223157pt;}
._9_c00395{width:4.398338pt;}
._1_c00395{width:6.047101pt;}
._2_c00395{width:7.594397pt;}
._13_c00395{width:8.896372pt;}
._d_c00395{width:10.728926pt;}
._a_c00395{width:12.328594pt;}
._1c_c00395{width:13.224422pt;}
._8_c00395{width:14.189185pt;}
._b_c00395{width:15.953528pt;}
._c_c00395{width:17.486264pt;}
._e_c00395{width:18.516136pt;}
._f_c00395{width:19.921366pt;}
._11_c00395{width:21.280264pt;}
._12_c00395{width:23.016475pt;}
._10_c00395{width:26.327792pt;}
._1b_c00395{width:29.024589pt;}
._19_c00395{width:176.045079pt;}
.fs10_c00395{font-size:23.333333pt;}
.fsd_c00395{font-size:24.000000pt;}
.fse_c00395{font-size:26.000000pt;}
.fs17_c00395{font-size:29.636800pt;}
.fs16_c00395{font-size:30.666667pt;}
.fs15_c00395{font-size:31.333333pt;}
.fsa_c00395{font-size:32.000000pt;}
.fs12_c00395{font-size:33.333333pt;}
.fs13_c00395{font-size:33.970133pt;}
.fs11_c00395{font-size:43.333333pt;}
.fs14_c00395{font-size:44.666667pt;}
.fs18_c00395{font-size:48.000000pt;}
.fsc_c00395{font-size:49.333333pt;}
.fs5_c00395{font-size:65.333333pt;}
.fs19_c00395{font-size:66.666667pt;}
.fs9_c00395{font-size:67.333333pt;}
.fs7_c00395{font-size:68.666667pt;}
.fs4_c00395{font-size:69.333333pt;}
.fs3_c00395{font-size:70.000000pt;}
.fs6_c00395{font-size:71.333333pt;}
.fs8_c00395{font-size:72.666667pt;}
.fs0_c00395{font-size:73.333333pt;}
.fs2_c00395{font-size:74.000000pt;}
.fs1_c00395{font-size:74.666667pt;}
.fsb_c00395{font-size:102.666667pt;}
.fsf_c00395{font-size:108.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y28_c00395{bottom:137.600213pt;}
.y27_c00395{bottom:164.159973pt;}
.y25_c00395{bottom:190.719120pt;}
.y26_c00395{bottom:190.719720pt;}
.y23_c00395{bottom:216.639440pt;}
.y24_c00395{bottom:216.640133pt;}
.y22_c00395{bottom:243.199200pt;}
.y21_c00395{bottom:243.199280pt;}
.y20_c00395{bottom:269.759027pt;}
.y1f_c00395{bottom:296.318787pt;}
.y1e_c00395{bottom:296.320480pt;}
.y1d_c00395{bottom:322.880227pt;}
.y1c_c00395{bottom:349.439987pt;}
.y1b_c00395{bottom:375.999067pt;}
.y1a_c00395{bottom:381.439453pt;}
.y19_c00395{bottom:428.479987pt;}
.y18_c00395{bottom:428.480840pt;}
.y17_c00395{bottom:455.360760pt;}
.y16_c00395{bottom:481.279907pt;}
.y15_c00395{bottom:508.161707pt;}
.y14_c00395{bottom:535.041627pt;}
.y13_c00395{bottom:560.640600pt;}
.y12_c00395{bottom:587.200360pt;}
.y11_c00395{bottom:613.439947pt;}
.y10_c00395{bottom:640.319867pt;}
.yf_c00395{bottom:666.559573pt;}
.ye_c00395{bottom:693.439573pt;}
.yd_c00395{bottom:719.999333pt;}
.yc_c00395{bottom:746.559080pt;}
.yb_c00395{bottom:799.039613pt;}
.ya_c00395{bottom:825.279200pt;}
.y9_c00395{bottom:851.838947pt;}
.y8_c00395{bottom:851.839667pt;}
.y7_c00395{bottom:878.399413pt;}
.y6_c00395{bottom:878.399573pt;}
.y5_c00395{bottom:904.639160pt;}
.y4_c00395{bottom:904.639280pt;}
.y3_c00395{bottom:931.199040pt;}
.y2_c00395{bottom:957.758787pt;}
.y1_c00395{bottom:1010.559000pt;}
.h14_c00395{height:24.335938pt;}
.h11_c00395{height:25.031250pt;}
.h12_c00395{height:27.117188pt;}
.h1c_c00395{height:29.868337pt;}
.h1b_c00395{height:30.906250pt;}
.h1a_c00395{height:31.578125pt;}
.h18_c00395{height:32.250000pt;}
.he_c00395{height:33.375000pt;}
.h16_c00395{height:34.765625pt;}
.h17_c00395{height:35.429787pt;}
.h19_c00395{height:45.015625pt;}
.h15_c00395{height:45.195312pt;}
.h1d_c00395{height:48.375000pt;}
.h10_c00395{height:51.453125pt;}
.h6_c00395{height:64.121094pt;}
.h1f_c00395{height:65.429688pt;}
.hd_c00395{height:66.083984pt;}
.h8_c00395{height:67.392578pt;}
.h5_c00395{height:68.046875pt;}
.h4_c00395{height:68.701172pt;}
.hb_c00395{height:69.179688pt;}
.h9_c00395{height:69.875000pt;}
.h7_c00395{height:70.009766pt;}
.ha_c00395{height:70.497396pt;}
.hc_c00395{height:71.815104pt;}
.h1e_c00395{height:71.972656pt;}
.h1_c00395{height:73.906250pt;}
.h3_c00395{height:74.578125pt;}
.h2_c00395{height:75.250000pt;}
.hf_c00395{height:107.078125pt;}
.h13_c00395{height:112.640625pt;}
.h0_c00395{height:1122.666667pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.x16_c00395{left:137.278160pt;}
.xb_c00395{left:138.238440pt;}
.x1_c00395{left:139.199733pt;}
.x1d_c00395{left:148.158667pt;}
.xf_c00395{left:153.599067pt;}
.xe_c00395{left:162.878920pt;}
.x1e_c00395{left:168.000000pt;}
.x2_c00395{left:184.639200pt;}
.x10_c00395{left:215.039067pt;}
.xc_c00395{left:228.479067pt;}
.x11_c00395{left:236.799333pt;}
.x1f_c00395{left:240.638667pt;}
.xd_c00395{left:243.839333pt;}
.x12_c00395{left:283.199733pt;}
.x3_c00395{left:286.719720pt;}
.x26_c00395{left:288.000000pt;}
.x13_c00395{left:298.239200pt;}
.x17_c00395{left:300.479067pt;}
.x4_c00395{left:304.639200pt;}
.x14_c00395{left:321.279720pt;}
.x18_c00395{left:323.198693pt;}
.x20_c00395{left:345.279747pt;}
.x5_c00395{left:353.279333pt;}
.x2e_c00395{left:360.638667pt;}
.x19_c00395{left:367.359333pt;}
.x21_c00395{left:374.718787pt;}
.x1a_c00395{left:380.479987pt;}
.x15_c00395{left:396.479040pt;}
.x29_c00395{left:406.719720pt;}
.x6_c00395{left:418.879307pt;}
.x22_c00395{left:426.878907pt;}
.x2f_c00395{left:445.759320pt;}
.x7_c00395{left:447.358933pt;}
.x30_c00395{left:459.518520pt;}
.x8_c00395{left:463.038533pt;}
.x1b_c00395{left:472.639200pt;}
.x1c_c00395{left:486.399867pt;}
.x23_c00395{left:536.639573pt;}
.x2a_c00395{left:546.238773pt;}
.x31_c00395{left:554.239707pt;}
.x2b_c00395{left:558.079067pt;}
.x24_c00395{left:562.558507pt;}
.x27_c00395{left:598.719720pt;}
.x9_c00395{left:604.798787pt;}
.x2c_c00395{left:621.758787pt;}
.xa_c00395{left:627.518520pt;}
.x2d_c00395{left:633.919840pt;}
.x28_c00395{left:669.118693pt;}
.x25_c00395{left:684.159747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ab3da16c80eaee491fb4f92.woff2')format("woff");}.ff1_c00396{font-family:ff1_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:ff2_c00396;src:url('chunks/assets/font_25eb4021b25734fd0606980d.woff2')format("woff");}.ff2_c00396{font-family:ff2_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:ff3_c00396;src:url('chunks/assets/font_1d7d1288343b004a1535dad3.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_b3b594ec0212f857b3d8dba4.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_fd331a4d5dde24e98a996c29.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00396;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:1.364746;font-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_c00396{transform:matrix(0.179293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179293,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1d_c00396{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m1c_c00396{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245495,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379717,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.525641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525641,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls1b_c00396{letter-spacing:-28.143000px;}
.ls19_c00396{letter-spacing:-13.121693px;}
.ls1d_c00396{letter-spacing:-11.882588px;}
.ls13_c00396{letter-spacing:-9.271665px;}
.lsf_c00396{letter-spacing:-8.175038px;}
.ls20_c00396{letter-spacing:-6.685875px;}
.ls7_c00396{letter-spacing:-6.286575px;}
.ls23_c00396{letter-spacing:-6.269513px;}
.ls10_c00396{letter-spacing:-5.945625px;}
.ls1f_c00396{letter-spacing:-5.343818px;}
.lsc_c00396{letter-spacing:-5.196713px;}
.ls11_c00396{letter-spacing:-5.161275px;}
.lsd_c00396{letter-spacing:-4.456463px;}
.lsa_c00396{letter-spacing:-4.414020px;}
.ls22_c00396{letter-spacing:-3.860025px;}
.ls9_c00396{letter-spacing:-3.717000px;}
.lsb_c00396{letter-spacing:-3.712800px;}
.ls1e_c00396{letter-spacing:-3.633038px;}
.ls1c_c00396{letter-spacing:-3.608348px;}
.ls17_c00396{letter-spacing:-3.212595px;}
.ls4_c00396{letter-spacing:-2.968875px;}
.ls16_c00396{letter-spacing:-2.378475px;}
.ls12_c00396{letter-spacing:-2.267213px;}
.ls3_c00396{letter-spacing:-2.229413px;}
.ls5_c00396{letter-spacing:-1.489163px;}
.ls21_c00396{letter-spacing:-0.756000px;}
.ls8_c00396{letter-spacing:-0.740250px;}
.ls6_c00396{letter-spacing:0.000000px;}
.ls14_c00396{letter-spacing:0.711788px;}
.ls0_c00396{letter-spacing:0.740250px;}
.ls1a_c00396{letter-spacing:0.786713px;}
.lse_c00396{letter-spacing:1.483335px;}
.ls2_c00396{letter-spacing:1.489163px;}
.ls24_c00396{letter-spacing:3.283800px;}
.ls18_c00396{letter-spacing:3.935250px;}
.ls15_c00396{letter-spacing:4.141155px;}
.ls1_c00396{letter-spacing:4.456463px;}
.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;}
._21_c00396{margin-left:-12.584740px;}
._12_c00396{margin-left:-7.829176px;}
._f_c00396{margin-left:-5.469217px;}
._b_c00396{margin-left:-3.679170px;}
._5_c00396{margin-left:-1.827877px;}
._7_c00396{width:1.564272px;}
._4_c00396{width:2.867065px;}
._6_c00396{width:4.453833px;}
._e_c00396{width:5.557536px;}
._d_c00396{width:7.168880px;}
._3_c00396{width:8.954246px;}
._8_c00396{width:10.373827px;}
._9_c00396{width:12.012748px;}
._10_c00396{width:13.236434px;}
._1_c00396{width:14.655286px;}
._a_c00396{width:15.920308px;}
._11_c00396{width:17.028603px;}
._1a_c00396{width:19.014574px;}
._19_c00396{width:20.464183px;}
._c_c00396{width:23.127716px;}
._17_c00396{width:24.669136px;}
._14_c00396{width:26.062030px;}
._0_c00396{width:27.916236px;}
._13_c00396{width:28.994264px;}
._16_c00396{width:31.359899px;}
._1b_c00396{width:32.852271px;}
._18_c00396{width:34.370735px;}
._15_c00396{width:36.103071px;}
._2_c00396{width:37.522221px;}
._1d_c00396{width:39.443364px;}
._1c_c00396{width:44.367988px;}
._1e_c00396{width:46.774320px;}
._1f_c00396{width:50.947030px;}
._20_c00396{width:52.419655px;}
.fc0_c00396{color:transparent;}
.fsb_c00396{font-size:58.500000px;}
.fs5_c00396{font-size:68.250000px;}
.fse_c00396{font-size:69.750000px;}
.fsc_c00396{font-size:71.250000px;}
.fsa_c00396{font-size:74.250000px;}
.fs9_c00396{font-size:75.750000px;}
.fs7_c00396{font-size:76.500000px;}
.fsf_c00396{font-size:77.250000px;}
.fs3_c00396{font-size:78.000000px;}
.fs0_c00396{font-size:78.750000px;}
.fsd_c00396{font-size:79.500000px;}
.fs6_c00396{font-size:80.250000px;}
.fs2_c00396{font-size:81.750000px;}
.fs1_c00396{font-size:82.500000px;}
.fs10_c00396{font-size:83.250000px;}
.fs4_c00396{font-size:84.000000px;}
.fs8_c00396{font-size:84.750000px;}
.fs11_c00396{font-size:86.250000px;}
.y0_c00396{bottom:0.000000px;}
.y2f_c00396{bottom:153.359850px;}
.y2e_c00396{bottom:153.359865px;}
.y2c_c00396{bottom:182.880435px;}
.y2d_c00396{bottom:182.881215px;}
.y2b_c00396{bottom:212.760150px;}
.y2a_c00396{bottom:212.761185px;}
.y29_c00396{bottom:242.640900px;}
.y28_c00396{bottom:272.160435px;}
.y27_c00396{bottom:272.161485px;}
.y26_c00396{bottom:302.041215px;}
.y24_c00396{bottom:331.559970px;}
.y25_c00396{bottom:331.560750px;}
.y23_c00396{bottom:361.439685px;}
.y22_c00396{bottom:391.320285px;}
.y20_c00396{bottom:421.199685px;}
.y21_c00396{bottom:421.201035px;}
.y1f_c00396{bottom:450.719220px;}
.y1e_c00396{bottom:510.120270px;}
.y1d_c00396{bottom:540.000000px;}
.y1c_c00396{bottom:540.000510px;}
.y1b_c00396{bottom:569.520030px;}
.y19_c00396{bottom:600.119745px;}
.y1a_c00396{bottom:600.120435px;}
.y17_c00396{bottom:629.280105px;}
.y18_c00396{bottom:629.280900px;}
.y15_c00396{bottom:659.159460px;}
.y16_c00396{bottom:659.159820px;}
.y14_c00396{bottom:717.840135px;}
.y13_c00396{bottom:748.440900px;}
.y12_c00396{bottom:778.319820px;}
.y11_c00396{bottom:778.320720px;}
.y10_c00396{bottom:808.200435px;}
.yf_c00396{bottom:867.960015px;}
.ye_c00396{bottom:867.961005px;}
.yd_c00396{bottom:897.840735px;}
.yc_c00396{bottom:927.360255px;}
.yb_c00396{bottom:927.360450px;}
.y9_c00396{bottom:956.879700px;}
.ya_c00396{bottom:956.879970px;}
.y8_c00396{bottom:986.399235px;}
.y7_c00396{bottom:1016.639145px;}
.y6_c00396{bottom:1046.881170px;}
.y5_c00396{bottom:1046.881830px;}
.y4_c00396{bottom:1076.580420px;}
.y3_c00396{bottom:1106.640750px;}
.y2_c00396{bottom:1106.640930px;}
.y1_c00396{bottom:1136.160465px;}
.hc_c00396{height:58.957031px;}
.h6_c00396{height:71.182617px;}
.h16_c00396{height:71.806641px;}
.hf_c00396{height:72.747070px;}
.hd_c00396{height:74.311523px;}
.ha_c00396{height:74.344482px;}
.h8_c00396{height:75.043213px;}
.h15_c00396{height:75.816650px;}
.h19_c00396{height:76.552734px;}
.h1_c00396{height:77.288818px;}
.hb_c00396{height:77.440430px;}
.he_c00396{height:77.986084px;}
.h14_c00396{height:78.568359px;}
.h4_c00396{height:78.609375px;}
.h7_c00396{height:78.760986px;}
.h12_c00396{height:79.365234px;}
.h10_c00396{height:80.121094px;}
.h3_c00396{height:80.233154px;}
.h11_c00396{height:80.791992px;}
.h13_c00396{height:80.876953px;}
.h2_c00396{height:80.969238px;}
.h17_c00396{height:81.705322px;}
.h5_c00396{height:83.015625px;}
.h9_c00396{height:83.177490px;}
.h18_c00396{height:84.649658px;}
.h0_c00396{height:1263.000000px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x28_c00396{left:156.600750px;}
.x10_c00396{left:157.681710px;}
.x1_c00396{left:158.758500px;}
.x1c_c00396{left:175.679700px;}
.x19_c00396{left:188.639100px;}
.x11_c00396{left:207.359850px;}
.x12_c00396{left:222.118785px;}
.x1d_c00396{left:239.399250px;}
.x34_c00396{left:240.839535px;}
.x15_c00396{left:244.438635px;}
.x35_c00396{left:255.598500px;}
.x16_c00396{left:259.558635px;}
.x13_c00396{left:263.518635px;}
.x4_c00396{left:271.079385px;}
.x14_c00396{left:280.078785px;}
.x5_c00396{left:291.958950px;}
.x1e_c00396{left:295.559685px;}
.x8_c00396{left:299.519685px;}
.x9_c00396{left:320.758500px;}
.x36_c00396{left:332.999385px;}
.x37_c00396{left:390.959385px;}
.x1f_c00396{left:394.199385px;}
.x20_c00396{left:434.519670px;}
.x17_c00396{left:467.999400px;}
.xe_c00396{left:472.318770px;}
.x2b_c00396{left:482.758530px;}
.x18_c00396{left:488.878920px;}
.x2c_c00396{left:495.719565px;}
.xa_c00396{left:506.159415px;}
.x21_c00396{left:512.279850px;}
.x38_c00396{left:520.199850px;}
.x26_c00396{left:521.279250px;}
.x2d_c00396{left:527.038920px;}
.xf_c00396{left:528.479235px;}
.x2e_c00396{left:544.678530px;}
.xb_c00396{left:546.479685px;}
.x33_c00396{left:550.439670px;}
.x27_c00396{left:558.359850px;}
.x22_c00396{left:584.998950px;}
.x6_c00396{left:590.399235px;}
.x7_c00396{left:605.519070px;}
.x39_c00396{left:607.679670px;}
.x1a_c00396{left:619.918950px;}
.x23_c00396{left:628.559100px;}
.x3a_c00396{left:633.959385px;}
.x2_c00396{left:647.639100px;}
.x2f_c00396{left:661.679670px;}
.x24_c00396{left:665.998950px;}
.x3_c00396{left:667.439250px;}
.x1b_c00396{left:669.958920px;}
.x30_c00396{left:679.319235px;}
.xc_c00396{left:698.039985px;}
.xd_c00396{left:715.318770px;}
.x31_c00396{left:740.159820px;}
.x29_c00396{left:763.199850px;}
.x25_c00396{left:768.239220px;}
.x32_c00396{left:777.599670px;}
.x2a_c00396{left:779.039985px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls1b_c00396{letter-spacing:-25.016000pt;}
.ls19_c00396{letter-spacing:-11.663727pt;}
.ls1d_c00396{letter-spacing:-10.562300pt;}
.ls13_c00396{letter-spacing:-8.241480pt;}
.lsf_c00396{letter-spacing:-7.266700pt;}
.ls20_c00396{letter-spacing:-5.943000pt;}
.ls7_c00396{letter-spacing:-5.588067pt;}
.ls23_c00396{letter-spacing:-5.572900pt;}
.ls10_c00396{letter-spacing:-5.285000pt;}
.ls1f_c00396{letter-spacing:-4.750060pt;}
.lsc_c00396{letter-spacing:-4.619300pt;}
.ls11_c00396{letter-spacing:-4.587800pt;}
.lsd_c00396{letter-spacing:-3.961300pt;}
.lsa_c00396{letter-spacing:-3.923573pt;}
.ls22_c00396{letter-spacing:-3.431133pt;}
.ls9_c00396{letter-spacing:-3.304000pt;}
.lsb_c00396{letter-spacing:-3.300267pt;}
.ls1e_c00396{letter-spacing:-3.229367pt;}
.ls1c_c00396{letter-spacing:-3.207420pt;}
.ls17_c00396{letter-spacing:-2.855640pt;}
.ls4_c00396{letter-spacing:-2.639000pt;}
.ls16_c00396{letter-spacing:-2.114200pt;}
.ls12_c00396{letter-spacing:-2.015300pt;}
.ls3_c00396{letter-spacing:-1.981700pt;}
.ls5_c00396{letter-spacing:-1.323700pt;}
.ls21_c00396{letter-spacing:-0.672000pt;}
.ls8_c00396{letter-spacing:-0.658000pt;}
.ls6_c00396{letter-spacing:0.000000pt;}
.ls14_c00396{letter-spacing:0.632700pt;}
.ls0_c00396{letter-spacing:0.658000pt;}
.ls1a_c00396{letter-spacing:0.699300pt;}
.lse_c00396{letter-spacing:1.318520pt;}
.ls2_c00396{letter-spacing:1.323700pt;}
.ls24_c00396{letter-spacing:2.918933pt;}
.ls18_c00396{letter-spacing:3.498000pt;}
.ls15_c00396{letter-spacing:3.681027pt;}
.ls1_c00396{letter-spacing:3.961300pt;}
.ws0_c00396{word-spacing:0.000000pt;}
._21_c00396{margin-left:-11.186436pt;}
._12_c00396{margin-left:-6.959268pt;}
._f_c00396{margin-left:-4.861526pt;}
._b_c00396{margin-left:-3.270374pt;}
._5_c00396{margin-left:-1.624779pt;}
._7_c00396{width:1.390464pt;}
._4_c00396{width:2.548502pt;}
._6_c00396{width:3.958962pt;}
._e_c00396{width:4.940032pt;}
._d_c00396{width:6.372338pt;}
._3_c00396{width:7.959330pt;}
._8_c00396{width:9.221179pt;}
._9_c00396{width:10.677998pt;}
._10_c00396{width:11.765719pt;}
._1_c00396{width:13.026921pt;}
._a_c00396{width:14.151385pt;}
._11_c00396{width:15.136536pt;}
._1a_c00396{width:16.901843pt;}
._19_c00396{width:18.190385pt;}
._c_c00396{width:20.557970pt;}
._17_c00396{width:21.928121pt;}
._14_c00396{width:23.166249pt;}
._0_c00396{width:24.814432pt;}
._13_c00396{width:25.772679pt;}
._16_c00396{width:27.875466pt;}
._1b_c00396{width:29.202019pt;}
._18_c00396{width:30.551764pt;}
._15_c00396{width:32.091619pt;}
._2_c00396{width:33.353085pt;}
._1d_c00396{width:35.060768pt;}
._1c_c00396{width:39.438211pt;}
._1e_c00396{width:41.577174pt;}
._1f_c00396{width:45.286249pt;}
._20_c00396{width:46.595249pt;}
.fsb_c00396{font-size:52.000000pt;}
.fs5_c00396{font-size:60.666667pt;}
.fse_c00396{font-size:62.000000pt;}
.fsc_c00396{font-size:63.333333pt;}
.fsa_c00396{font-size:66.000000pt;}
.fs9_c00396{font-size:67.333333pt;}
.fs7_c00396{font-size:68.000000pt;}
.fsf_c00396{font-size:68.666667pt;}
.fs3_c00396{font-size:69.333333pt;}
.fs0_c00396{font-size:70.000000pt;}
.fsd_c00396{font-size:70.666667pt;}
.fs6_c00396{font-size:71.333333pt;}
.fs2_c00396{font-size:72.666667pt;}
.fs1_c00396{font-size:73.333333pt;}
.fs10_c00396{font-size:74.000000pt;}
.fs4_c00396{font-size:74.666667pt;}
.fs8_c00396{font-size:75.333333pt;}
.fs11_c00396{font-size:76.666667pt;}
.y0_c00396{bottom:0.000000pt;}
.y2f_c00396{bottom:136.319867pt;}
.y2e_c00396{bottom:136.319880pt;}
.y2c_c00396{bottom:162.560387pt;}
.y2d_c00396{bottom:162.561080pt;}
.y2b_c00396{bottom:189.120133pt;}
.y2a_c00396{bottom:189.121053pt;}
.y29_c00396{bottom:215.680800pt;}
.y28_c00396{bottom:241.920387pt;}
.y27_c00396{bottom:241.921320pt;}
.y26_c00396{bottom:268.481080pt;}
.y24_c00396{bottom:294.719973pt;}
.y25_c00396{bottom:294.720667pt;}
.y23_c00396{bottom:321.279720pt;}
.y22_c00396{bottom:347.840253pt;}
.y20_c00396{bottom:374.399720pt;}
.y21_c00396{bottom:374.400920pt;}
.y1f_c00396{bottom:400.639307pt;}
.y1e_c00396{bottom:453.440240pt;}
.y1d_c00396{bottom:480.000000pt;}
.y1c_c00396{bottom:480.000453pt;}
.y1b_c00396{bottom:506.240027pt;}
.y19_c00396{bottom:533.439773pt;}
.y1a_c00396{bottom:533.440387pt;}
.y17_c00396{bottom:559.360093pt;}
.y18_c00396{bottom:559.360800pt;}
.y15_c00396{bottom:585.919520pt;}
.y16_c00396{bottom:585.919840pt;}
.y14_c00396{bottom:638.080120pt;}
.y13_c00396{bottom:665.280800pt;}
.y12_c00396{bottom:691.839840pt;}
.y11_c00396{bottom:691.840640pt;}
.y10_c00396{bottom:718.400387pt;}
.yf_c00396{bottom:771.520013pt;}
.ye_c00396{bottom:771.520893pt;}
.yd_c00396{bottom:798.080653pt;}
.yc_c00396{bottom:824.320227pt;}
.yb_c00396{bottom:824.320400pt;}
.y9_c00396{bottom:850.559733pt;}
.ya_c00396{bottom:850.559973pt;}
.y8_c00396{bottom:876.799320pt;}
.y7_c00396{bottom:903.679240pt;}
.y6_c00396{bottom:930.561040pt;}
.y5_c00396{bottom:930.561627pt;}
.y4_c00396{bottom:956.960373pt;}
.y3_c00396{bottom:983.680667pt;}
.y2_c00396{bottom:983.680827pt;}
.y1_c00396{bottom:1009.920413pt;}
.hc_c00396{height:52.406250pt;}
.h6_c00396{height:63.273438pt;}
.h16_c00396{height:63.828125pt;}
.hf_c00396{height:64.664062pt;}
.hd_c00396{height:66.054688pt;}
.ha_c00396{height:66.083984pt;}
.h8_c00396{height:66.705078pt;}
.h15_c00396{height:67.392578pt;}
.h19_c00396{height:68.046875pt;}
.h1_c00396{height:68.701172pt;}
.hb_c00396{height:68.835938pt;}
.he_c00396{height:69.320964pt;}
.h14_c00396{height:69.838542pt;}
.h4_c00396{height:69.875000pt;}
.h7_c00396{height:70.009766pt;}
.h12_c00396{height:70.546875pt;}
.h10_c00396{height:71.218750pt;}
.h3_c00396{height:71.318359pt;}
.h11_c00396{height:71.815104pt;}
.h13_c00396{height:71.890625pt;}
.h2_c00396{height:71.972656pt;}
.h17_c00396{height:72.626953pt;}
.h5_c00396{height:73.791667pt;}
.h9_c00396{height:73.935547pt;}
.h18_c00396{height:75.244141pt;}
.h0_c00396{height:1122.666667pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x28_c00396{left:139.200667pt;}
.x10_c00396{left:140.161520pt;}
.x1_c00396{left:141.118667pt;}
.x1c_c00396{left:156.159733pt;}
.x19_c00396{left:167.679200pt;}
.x11_c00396{left:184.319867pt;}
.x12_c00396{left:197.438920pt;}
.x1d_c00396{left:212.799333pt;}
.x34_c00396{left:214.079587pt;}
.x15_c00396{left:217.278787pt;}
.x35_c00396{left:227.198667pt;}
.x16_c00396{left:230.718787pt;}
.x13_c00396{left:234.238787pt;}
.x4_c00396{left:240.959453pt;}
.x14_c00396{left:248.958920pt;}
.x5_c00396{left:259.519067pt;}
.x1e_c00396{left:262.719720pt;}
.x8_c00396{left:266.239720pt;}
.x9_c00396{left:285.118667pt;}
.x36_c00396{left:295.999453pt;}
.x37_c00396{left:347.519453pt;}
.x1f_c00396{left:350.399453pt;}
.x20_c00396{left:386.239707pt;}
.x17_c00396{left:415.999467pt;}
.xe_c00396{left:419.838907pt;}
.x2b_c00396{left:429.118693pt;}
.x18_c00396{left:434.559040pt;}
.x2c_c00396{left:440.639613pt;}
.xa_c00396{left:449.919480pt;}
.x21_c00396{left:455.359867pt;}
.x38_c00396{left:462.399867pt;}
.x26_c00396{left:463.359333pt;}
.x2d_c00396{left:468.479040pt;}
.xf_c00396{left:469.759320pt;}
.x2e_c00396{left:484.158693pt;}
.xb_c00396{left:485.759720pt;}
.x33_c00396{left:489.279707pt;}
.x27_c00396{left:496.319867pt;}
.x22_c00396{left:519.999067pt;}
.x6_c00396{left:524.799320pt;}
.x7_c00396{left:538.239173pt;}
.x39_c00396{left:540.159707pt;}
.x1a_c00396{left:551.039067pt;}
.x23_c00396{left:558.719200pt;}
.x3a_c00396{left:563.519453pt;}
.x2_c00396{left:575.679200pt;}
.x2f_c00396{left:588.159707pt;}
.x24_c00396{left:591.999067pt;}
.x3_c00396{left:593.279333pt;}
.x1b_c00396{left:595.519040pt;}
.x30_c00396{left:603.839320pt;}
.xc_c00396{left:620.479987pt;}
.xd_c00396{left:635.838907pt;}
.x31_c00396{left:657.919840pt;}
.x29_c00396{left:678.399867pt;}
.x25_c00396{left:682.879307pt;}
.x32_c00396{left:691.199707pt;}
.x2a_c00396{left:692.479987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36003071ceea3c8056181e17.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_9b4194e7eaee27aebfec4d11.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.364746;font-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_c00397{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls5_c00397{letter-spacing:-10.180800px;}
.ls9_c00397{letter-spacing:-8.914500px;}
.ls3_c00397{letter-spacing:-6.105960px;}
.ls8_c00397{letter-spacing:-5.196713px;}
.ls7_c00397{letter-spacing:-3.717000px;}
.ls1_c00397{letter-spacing:-2.968875px;}
.ls2_c00397{letter-spacing:-2.229413px;}
.lsa_c00397{letter-spacing:-1.510500px;}
.ls4_c00397{letter-spacing:-1.489163px;}
.ls0_c00397{letter-spacing:-0.740250px;}
.ls6_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;}
._f_c00397{margin-left:-3.602545px;}
._5_c00397{margin-left:-2.100396px;}
._7_c00397{width:1.277904px;}
._b_c00397{width:2.571470px;}
._8_c00397{width:3.658621px;}
._10_c00397{width:4.903020px;}
._6_c00397{width:5.984406px;}
._d_c00397{width:7.769936px;}
._9_c00397{width:9.102965px;}
._e_c00397{width:11.424114px;}
._a_c00397{width:13.370264px;}
._12_c00397{width:14.650650px;}
._11_c00397{width:15.751144px;}
._c_c00397{width:17.991641px;}
._3_c00397{width:19.588186px;}
._1_c00397{width:21.658939px;}
._4_c00397{width:23.508643px;}
._0_c00397{width:24.909190px;}
._2_c00397{width:26.290390px;}
._13_c00397{width:35.300683px;}
.fc0_c00397{color:transparent;}
.fs0_c00397{font-size:78.750000px;}
.fs3_c00397{font-size:79.500000px;}
.fs4_c00397{font-size:80.250000px;}
.fs2_c00397{font-size:82.500000px;}
.fs1_c00397{font-size:84.000000px;}
.y0_c00397{bottom:0.000000px;}
.y9_c00397{bottom:933.120825px;}
.y8_c00397{bottom:963.000555px;}
.y7_c00397{bottom:992.161005px;}
.y6_c00397{bottom:992.161095px;}
.y5_c00397{bottom:1022.401020px;}
.y4_c00397{bottom:1082.160465px;}
.y3_c00397{bottom:1082.161260px;}
.y2_c00397{bottom:1112.040990px;}
.y1_c00397{bottom:1142.280855px;}
.h1_c00397{height:77.288818px;}
.h5_c00397{height:78.024902px;}
.h6_c00397{height:78.760986px;}
.h4_c00397{height:80.969238px;}
.h2_c00397{height:82.441406px;}
.h3_c00397{height:83.015625px;}
.h0_c00397{height:1263.000000px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.xb_c00397{left:157.681095px;}
.x1_c00397{left:158.758500px;}
.xa_c00397{left:176.759100px;}
.x3_c00397{left:308.519100px;}
.x4_c00397{left:342.359850px;}
.x5_c00397{left:356.759535px;}
.x8_c00397{left:372.599700px;}
.x9_c00397{left:437.039385px;}
.x6_c00397{left:599.759535px;}
.x7_c00397{left:614.159370px;}
.x2_c00397{left:761.759535px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls5_c00397{letter-spacing:-9.049600pt;}
.ls9_c00397{letter-spacing:-7.924000pt;}
.ls3_c00397{letter-spacing:-5.427520pt;}
.ls8_c00397{letter-spacing:-4.619300pt;}
.ls7_c00397{letter-spacing:-3.304000pt;}
.ls1_c00397{letter-spacing:-2.639000pt;}
.ls2_c00397{letter-spacing:-1.981700pt;}
.lsa_c00397{letter-spacing:-1.342667pt;}
.ls4_c00397{letter-spacing:-1.323700pt;}
.ls0_c00397{letter-spacing:-0.658000pt;}
.ls6_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
._f_c00397{margin-left:-3.202262pt;}
._5_c00397{margin-left:-1.867019pt;}
._7_c00397{width:1.135915pt;}
._b_c00397{width:2.285751pt;}
._8_c00397{width:3.252108pt;}
._10_c00397{width:4.358240pt;}
._6_c00397{width:5.319472pt;}
._d_c00397{width:6.906609pt;}
._9_c00397{width:8.091525pt;}
._e_c00397{width:10.154768pt;}
._a_c00397{width:11.884679pt;}
._12_c00397{width:13.022800pt;}
._11_c00397{width:14.001017pt;}
._c_c00397{width:15.992570pt;}
._3_c00397{width:17.411721pt;}
._1_c00397{width:19.252391pt;}
._4_c00397{width:20.896572pt;}
._0_c00397{width:22.141502pt;}
._2_c00397{width:23.369236pt;}
._13_c00397{width:31.378385pt;}
.fs0_c00397{font-size:70.000000pt;}
.fs3_c00397{font-size:70.666667pt;}
.fs4_c00397{font-size:71.333333pt;}
.fs2_c00397{font-size:73.333333pt;}
.fs1_c00397{font-size:74.666667pt;}
.y0_c00397{bottom:0.000000pt;}
.y9_c00397{bottom:829.440733pt;}
.y8_c00397{bottom:856.000493pt;}
.y7_c00397{bottom:881.920893pt;}
.y6_c00397{bottom:881.920973pt;}
.y5_c00397{bottom:908.800907pt;}
.y4_c00397{bottom:961.920413pt;}
.y3_c00397{bottom:961.921120pt;}
.y2_c00397{bottom:988.480880pt;}
.y1_c00397{bottom:1015.360760pt;}
.h1_c00397{height:68.701172pt;}
.h5_c00397{height:69.355469pt;}
.h6_c00397{height:70.009766pt;}
.h4_c00397{height:71.972656pt;}
.h2_c00397{height:73.281250pt;}
.h3_c00397{height:73.791667pt;}
.h0_c00397{height:1122.666667pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.xb_c00397{left:140.160973pt;}
.x1_c00397{left:141.118667pt;}
.xa_c00397{left:157.119200pt;}
.x3_c00397{left:274.239200pt;}
.x4_c00397{left:304.319867pt;}
.x5_c00397{left:317.119587pt;}
.x8_c00397{left:331.199733pt;}
.x9_c00397{left:388.479453pt;}
.x6_c00397{left:533.119587pt;}
.x7_c00397{left:545.919440pt;}
.x2_c00397{left:677.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9812714655c8282443b14d8.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_79a974232a93ea4882d6eb76.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_6c012959c13607c68224e165.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_4fb2afddb3a140baf00cfdb7.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_b6b58c8fe2df62e4e0d8ee28.woff2')format("woff");}.ff5_c00398{font-family:ff5_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:ff6_c00398;src:url('chunks/assets/font_0b09e4bcd4e35fe72cf043c4.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00398{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c00398{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m1d_c00398{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.me_c00398{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);}
.m23_c00398{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m19_c00398{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.md_c00398{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m9_c00398{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{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_c00398{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m22_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m21_c00398{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m1f_c00398{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m18_c00398{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m16_c00398{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m13_c00398{transform:matrix(0.316327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316327,0.000000,0.000000,0.250000,0,0);}
.m17_c00398{transform:matrix(0.377273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377273,0.000000,0.000000,0.250000,0,0);}
.m1c_c00398{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);}
.m12_c00398{transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448980,0.000000,0.000000,0.250000,0,0);}
.m1e_c00398{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_c00398{vertical-align:0.000000px;}
.ls3_c00398{letter-spacing:-30.555428px;}
.ls24_c00398{letter-spacing:-19.016400px;}
.ls26_c00398{letter-spacing:-9.568912px;}
.ls2a_c00398{letter-spacing:-8.835750px;}
.ls7_c00398{letter-spacing:-8.095500px;}
.ls10_c00398{letter-spacing:-7.363913px;}
.lsc_c00398{letter-spacing:-6.623663px;}
.ls19_c00398{letter-spacing:-6.197625px;}
.lsd_c00398{letter-spacing:-5.890500px;}
.ls29_c00398{letter-spacing:-5.247533px;}
.ls13_c00398{letter-spacing:-5.151248px;}
.ls9_c00398{letter-spacing:-5.150250px;}
.ls11_c00398{letter-spacing:-5.115825px;}
.ls28_c00398{letter-spacing:-5.109375px;}
.ls27_c00398{letter-spacing:-5.103105px;}
.lsf_c00398{letter-spacing:-4.418663px;}
.ls15_c00398{letter-spacing:-4.412948px;}
.ls4_c00398{letter-spacing:-3.913950px;}
.ls14_c00398{letter-spacing:-3.683475px;}
.ls8_c00398{letter-spacing:-3.678413px;}
.ls2_c00398{letter-spacing:-3.234000px;}
.ls18_c00398{letter-spacing:-3.195075px;}
.ls12_c00398{letter-spacing:-3.055500px;}
.ls6_c00398{letter-spacing:-2.945250px;}
.ls1b_c00398{letter-spacing:-2.921625px;}
.lse_c00398{letter-spacing:-2.205000px;}
.lsb_c00398{letter-spacing:-1.473413px;}
.lsa_c00398{letter-spacing:-0.731588px;}
.ls20_c00398{letter-spacing:-0.707550px;}
.ls16_c00398{letter-spacing:0.000000px;}
.ls25_c00398{letter-spacing:0.374400px;}
.ls0_c00398{letter-spacing:0.731588px;}
.ls17_c00398{letter-spacing:0.833250px;}
.ls22_c00398{letter-spacing:1.530000px;}
.ls5_c00398{letter-spacing:1.621050px;}
.ls1c_c00398{letter-spacing:2.370375px;}
.ls1d_c00398{letter-spacing:2.653500px;}
.ls1_c00398{letter-spacing:3.502980px;}
.ls1a_c00398{letter-spacing:6.585000px;}
.ls1e_c00398{letter-spacing:7.765200px;}
.ls1f_c00398{letter-spacing:8.448000px;}
.ls21_c00398{letter-spacing:23.476875px;}
.ls23_c00398{letter-spacing:45.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;}
._16_c00398{margin-left:-9.046219px;}
._17_c00398{margin-left:-5.883081px;}
._15_c00398{margin-left:-4.844030px;}
._14_c00398{margin-left:-3.700396px;}
._1d_c00398{margin-left:-2.661514px;}
._10_c00398{margin-left:-1.409934px;}
._18_c00398{width:1.058278px;}
._f_c00398{width:3.157801px;}
._e_c00398{width:4.197861px;}
._a_c00398{width:6.071757px;}
._1b_c00398{width:7.072995px;}
._7_c00398{width:8.087110px;}
._11_c00398{width:9.339779px;}
._8_c00398{width:10.587202px;}
._1c_c00398{width:11.732249px;}
._13_c00398{width:13.017831px;}
._9_c00398{width:14.869847px;}
._19_c00398{width:16.091326px;}
._12_c00398{width:17.347992px;}
._1a_c00398{width:19.011648px;}
._6_c00398{width:20.322571px;}
._1e_c00398{width:21.910495px;}
._0_c00398{width:22.995177px;}
._d_c00398{width:24.089228px;}
._3_c00398{width:25.300145px;}
._1_c00398{width:26.861757px;}
._4_c00398{width:28.452714px;}
._5_c00398{width:30.232022px;}
._b_c00398{width:32.697177px;}
._c_c00398{width:34.732724px;}
._2_c00398{width:36.240308px;}
.fc0_c00398{color:transparent;}
.fs16_c00398{font-size:29.250000px;}
.fsa_c00398{font-size:30.000000px;}
.fse_c00398{font-size:36.000000px;}
.fsb_c00398{font-size:36.750000px;}
.fs12_c00398{font-size:37.500000px;}
.fsd_c00398{font-size:38.250000px;}
.fsf_c00398{font-size:41.250000px;}
.fs13_c00398{font-size:45.000000px;}
.fsc_c00398{font-size:45.750000px;}
.fs10_c00398{font-size:66.750000px;}
.fs11_c00398{font-size:71.250000px;}
.fs3_c00398{font-size:72.750000px;}
.fs0_c00398{font-size:78.000000px;}
.fs5_c00398{font-size:78.750000px;}
.fs6_c00398{font-size:79.500000px;}
.fs4_c00398{font-size:80.250000px;}
.fs9_c00398{font-size:81.000000px;}
.fs17_c00398{font-size:81.750000px;}
.fs1_c00398{font-size:82.500000px;}
.fs7_c00398{font-size:84.750000px;}
.fs8_c00398{font-size:87.000000px;}
.fs2_c00398{font-size:87.750000px;}
.fs14_c00398{font-size:150.000000px;}
.fs15_c00398{font-size:159.000000px;}
.y0_c00398{bottom:0.000000px;}
.y22_c00398{bottom:158.400285px;}
.y21_c00398{bottom:188.280000px;}
.y20_c00398{bottom:217.799535px;}
.y1f_c00398{bottom:247.680150px;}
.y1e_c00398{bottom:277.199850px;}
.y1d_c00398{bottom:277.199865px;}
.y1c_c00398{bottom:307.439775px;}
.y1b_c00398{bottom:336.600930px;}
.y1a_c00398{bottom:395.639700px;}
.y19_c00398{bottom:425.879520px;}
.y18_c00398{bottom:432.720150px;}
.y16_c00398{bottom:455.939235px;}
.y17_c00398{bottom:455.939670px;}
.y15_c00398{bottom:486.000090px;}
.y14_c00398{bottom:515.879820px;}
.y13_c00398{bottom:545.759535px;}
.y12_c00398{bottom:545.759880px;}
.y11_c00398{bottom:575.281215px;}
.y10_c00398{bottom:604.800750px;}
.yf_c00398{bottom:634.320285px;}
.ye_c00398{bottom:634.320690px;}
.yd_c00398{bottom:663.840225px;}
.yc_c00398{bottom:693.719955px;}
.yb_c00398{bottom:723.599670px;}
.ya_c00398{bottom:783.360900px;}
.y9_c00398{bottom:843.120390px;}
.y8_c00398{bottom:902.522160px;}
.y7_c00398{bottom:931.681200px;}
.y6_c00398{bottom:962.281605px;}
.y5_c00398{bottom:992.161335px;}
.y4_c00398{bottom:1022.041050px;}
.y3_c00398{bottom:1051.560585px;}
.y2_c00398{bottom:1081.440315px;}
.y1_c00398{bottom:1140.479640px;}
.hf_c00398{height:30.234375px;}
.h1c_c00398{height:30.506836px;}
.h10_c00398{height:36.319336px;}
.h14_c00398{height:37.546875px;}
.h18_c00398{height:37.792969px;}
.h11_c00398{height:38.329102px;}
.h13_c00398{height:38.548828px;}
.h15_c00398{height:43.022461px;}
.h19_c00398{height:45.351562px;}
.h12_c00398{height:46.107422px;}
.h16_c00398{height:67.271484px;}
.h17_c00398{height:74.311523px;}
.h4_c00398{height:75.875977px;}
.h6_c00398{height:77.288818px;}
.h8_c00398{height:78.024902px;}
.h9_c00398{height:78.760986px;}
.h7_c00398{height:79.365234px;}
.hc_c00398{height:79.497070px;}
.h1d_c00398{height:80.233154px;}
.h5_c00398{height:80.876953px;}
.hd_c00398{height:80.969238px;}
.h1_c00398{height:81.351562px;}
.he_c00398{height:82.133789px;}
.h2_c00398{height:83.144531px;}
.ha_c00398{height:83.177490px;}
.hb_c00398{height:85.385742px;}
.h3_c00398{height:86.721680px;}
.h1a_c00398{height:156.445312px;}
.h1b_c00398{height:165.832031px;}
.h0_c00398{height:1263.000000px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x8_c00398{left:159.477795px;}
.x6_c00398{left:160.559745px;}
.x1_c00398{left:161.639100px;}
.x20_c00398{left:176.038950px;}
.x2_c00398{left:183.599700px;}
.x3_c00398{left:188.639100px;}
.x4_c00398{left:251.999400px;}
.x7_c00398{left:310.318800px;}
.xf_c00398{left:335.159850px;}
.x5_c00398{left:339.479235px;}
.xd_c00398{left:356.398635px;}
.x9_c00398{left:363.239250px;}
.x10_c00398{left:365.038950px;}
.xe_c00398{left:372.958950px;}
.xa_c00398{left:378.359235px;}
.x1c_c00398{left:434.158770px;}
.x15_c00398{left:456.478635px;}
.x11_c00398{left:474.479235px;}
.x1e_c00398{left:483.839535px;}
.x12_c00398{left:503.639700px;}
.x1d_c00398{left:515.878920px;}
.x1f_c00398{left:520.199850px;}
.x16_c00398{left:523.078770px;}
.x17_c00398{left:563.039985px;}
.x13_c00398{left:591.119385px;}
.x18_c00398{left:622.799520px;}
.x22_c00398{left:645.839535px;}
.xb_c00398{left:653.398635px;}
.x23_c00398{left:666.719100px;}
.xc_c00398{left:669.238770px;}
.x19_c00398{left:695.518620px;}
.x24_c00398{left:699.478635px;}
.x14_c00398{left:710.999400px;}
.x1a_c00398{left:712.078770px;}
.x25_c00398{left:713.519070px;}
.x1b_c00398{left:736.559100px;}
.x21_c00398{left:781.198785px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls3_c00398{letter-spacing:-27.160380pt;}
.ls24_c00398{letter-spacing:-16.903467pt;}
.ls26_c00398{letter-spacing:-8.505700pt;}
.ls2a_c00398{letter-spacing:-7.854000pt;}
.ls7_c00398{letter-spacing:-7.196000pt;}
.ls10_c00398{letter-spacing:-6.545700pt;}
.lsc_c00398{letter-spacing:-5.887700pt;}
.ls19_c00398{letter-spacing:-5.509000pt;}
.lsd_c00398{letter-spacing:-5.236000pt;}
.ls29_c00398{letter-spacing:-4.664473pt;}
.ls13_c00398{letter-spacing:-4.578887pt;}
.ls9_c00398{letter-spacing:-4.578000pt;}
.ls11_c00398{letter-spacing:-4.547400pt;}
.ls28_c00398{letter-spacing:-4.541667pt;}
.ls27_c00398{letter-spacing:-4.536093pt;}
.lsf_c00398{letter-spacing:-3.927700pt;}
.ls15_c00398{letter-spacing:-3.922620pt;}
.ls4_c00398{letter-spacing:-3.479067pt;}
.ls14_c00398{letter-spacing:-3.274200pt;}
.ls8_c00398{letter-spacing:-3.269700pt;}
.ls2_c00398{letter-spacing:-2.874667pt;}
.ls18_c00398{letter-spacing:-2.840067pt;}
.ls12_c00398{letter-spacing:-2.716000pt;}
.ls6_c00398{letter-spacing:-2.618000pt;}
.ls1b_c00398{letter-spacing:-2.597000pt;}
.lse_c00398{letter-spacing:-1.960000pt;}
.lsb_c00398{letter-spacing:-1.309700pt;}
.lsa_c00398{letter-spacing:-0.650300pt;}
.ls20_c00398{letter-spacing:-0.628933pt;}
.ls16_c00398{letter-spacing:0.000000pt;}
.ls25_c00398{letter-spacing:0.332800pt;}
.ls0_c00398{letter-spacing:0.650300pt;}
.ls17_c00398{letter-spacing:0.740667pt;}
.ls22_c00398{letter-spacing:1.360000pt;}
.ls5_c00398{letter-spacing:1.440933pt;}
.ls1c_c00398{letter-spacing:2.107000pt;}
.ls1d_c00398{letter-spacing:2.358667pt;}
.ls1_c00398{letter-spacing:3.113760pt;}
.ls1a_c00398{letter-spacing:5.853333pt;}
.ls1e_c00398{letter-spacing:6.902400pt;}
.ls1f_c00398{letter-spacing:7.509333pt;}
.ls21_c00398{letter-spacing:20.868333pt;}
.ls23_c00398{letter-spacing:40.000000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
._16_c00398{margin-left:-8.041083pt;}
._17_c00398{margin-left:-5.229406pt;}
._15_c00398{margin-left:-4.305805pt;}
._14_c00398{margin-left:-3.289241pt;}
._1d_c00398{margin-left:-2.365791pt;}
._10_c00398{margin-left:-1.253275pt;}
._18_c00398{width:0.940692pt;}
._f_c00398{width:2.806935pt;}
._e_c00398{width:3.731432pt;}
._a_c00398{width:5.397118pt;}
._1b_c00398{width:6.287106pt;}
._7_c00398{width:7.188542pt;}
._11_c00398{width:8.302026pt;}
._8_c00398{width:9.410846pt;}
._1c_c00398{width:10.428665pt;}
._13_c00398{width:11.571406pt;}
._9_c00398{width:13.217642pt;}
._19_c00398{width:14.303401pt;}
._12_c00398{width:15.420437pt;}
._1a_c00398{width:16.899243pt;}
._6_c00398{width:18.064507pt;}
._1e_c00398{width:19.475995pt;}
._0_c00398{width:20.440157pt;}
._d_c00398{width:21.412647pt;}
._3_c00398{width:22.489018pt;}
._1_c00398{width:23.877118pt;}
._4_c00398{width:25.291301pt;}
._5_c00398{width:26.872908pt;}
._b_c00398{width:29.064157pt;}
._c_c00398{width:30.873533pt;}
._2_c00398{width:32.213607pt;}
.fs16_c00398{font-size:26.000000pt;}
.fsa_c00398{font-size:26.666667pt;}
.fse_c00398{font-size:32.000000pt;}
.fsb_c00398{font-size:32.666667pt;}
.fs12_c00398{font-size:33.333333pt;}
.fsd_c00398{font-size:34.000000pt;}
.fsf_c00398{font-size:36.666667pt;}
.fs13_c00398{font-size:40.000000pt;}
.fsc_c00398{font-size:40.666667pt;}
.fs10_c00398{font-size:59.333333pt;}
.fs11_c00398{font-size:63.333333pt;}
.fs3_c00398{font-size:64.666667pt;}
.fs0_c00398{font-size:69.333333pt;}
.fs5_c00398{font-size:70.000000pt;}
.fs6_c00398{font-size:70.666667pt;}
.fs4_c00398{font-size:71.333333pt;}
.fs9_c00398{font-size:72.000000pt;}
.fs17_c00398{font-size:72.666667pt;}
.fs1_c00398{font-size:73.333333pt;}
.fs7_c00398{font-size:75.333333pt;}
.fs8_c00398{font-size:77.333333pt;}
.fs2_c00398{font-size:78.000000pt;}
.fs14_c00398{font-size:133.333333pt;}
.fs15_c00398{font-size:141.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.y22_c00398{bottom:140.800253pt;}
.y21_c00398{bottom:167.360000pt;}
.y20_c00398{bottom:193.599587pt;}
.y1f_c00398{bottom:220.160133pt;}
.y1e_c00398{bottom:246.399867pt;}
.y1d_c00398{bottom:246.399880pt;}
.y1c_c00398{bottom:273.279800pt;}
.y1b_c00398{bottom:299.200827pt;}
.y1a_c00398{bottom:351.679733pt;}
.y19_c00398{bottom:378.559573pt;}
.y18_c00398{bottom:384.640133pt;}
.y16_c00398{bottom:405.279320pt;}
.y17_c00398{bottom:405.279707pt;}
.y15_c00398{bottom:432.000080pt;}
.y14_c00398{bottom:458.559840pt;}
.y13_c00398{bottom:485.119587pt;}
.y12_c00398{bottom:485.119893pt;}
.y11_c00398{bottom:511.361080pt;}
.y10_c00398{bottom:537.600667pt;}
.yf_c00398{bottom:563.840253pt;}
.ye_c00398{bottom:563.840613pt;}
.yd_c00398{bottom:590.080200pt;}
.yc_c00398{bottom:616.639960pt;}
.yb_c00398{bottom:643.199707pt;}
.ya_c00398{bottom:696.320800pt;}
.y9_c00398{bottom:749.440347pt;}
.y8_c00398{bottom:802.241920pt;}
.y7_c00398{bottom:828.161067pt;}
.y6_c00398{bottom:855.361427pt;}
.y5_c00398{bottom:881.921187pt;}
.y4_c00398{bottom:908.480933pt;}
.y3_c00398{bottom:934.720520pt;}
.y2_c00398{bottom:961.280280pt;}
.y1_c00398{bottom:1013.759680pt;}
.hf_c00398{height:26.875000pt;}
.h1c_c00398{height:27.117188pt;}
.h10_c00398{height:32.283854pt;}
.h14_c00398{height:33.375000pt;}
.h18_c00398{height:33.593750pt;}
.h11_c00398{height:34.070312pt;}
.h13_c00398{height:34.265625pt;}
.h15_c00398{height:38.242188pt;}
.h19_c00398{height:40.312500pt;}
.h12_c00398{height:40.984375pt;}
.h16_c00398{height:59.796875pt;}
.h17_c00398{height:66.054688pt;}
.h4_c00398{height:67.445312pt;}
.h6_c00398{height:68.701172pt;}
.h8_c00398{height:69.355469pt;}
.h9_c00398{height:70.009766pt;}
.h7_c00398{height:70.546875pt;}
.hc_c00398{height:70.664062pt;}
.h1d_c00398{height:71.318359pt;}
.h5_c00398{height:71.890625pt;}
.hd_c00398{height:71.972656pt;}
.h1_c00398{height:72.312500pt;}
.he_c00398{height:73.007812pt;}
.h2_c00398{height:73.906250pt;}
.ha_c00398{height:73.935547pt;}
.hb_c00398{height:75.898438pt;}
.h3_c00398{height:77.085938pt;}
.h1a_c00398{height:139.062500pt;}
.h1b_c00398{height:147.406250pt;}
.h0_c00398{height:1122.666667pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x8_c00398{left:141.758040pt;}
.x6_c00398{left:142.719773pt;}
.x1_c00398{left:143.679200pt;}
.x20_c00398{left:156.479067pt;}
.x2_c00398{left:163.199733pt;}
.x3_c00398{left:167.679200pt;}
.x4_c00398{left:223.999467pt;}
.x7_c00398{left:275.838933pt;}
.xf_c00398{left:297.919867pt;}
.x5_c00398{left:301.759320pt;}
.xd_c00398{left:316.798787pt;}
.x9_c00398{left:322.879333pt;}
.x10_c00398{left:324.479067pt;}
.xe_c00398{left:331.519067pt;}
.xa_c00398{left:336.319320pt;}
.x1c_c00398{left:385.918907pt;}
.x15_c00398{left:405.758787pt;}
.x11_c00398{left:421.759320pt;}
.x1e_c00398{left:430.079587pt;}
.x12_c00398{left:447.679733pt;}
.x1d_c00398{left:458.559040pt;}
.x1f_c00398{left:462.399867pt;}
.x16_c00398{left:464.958907pt;}
.x17_c00398{left:500.479987pt;}
.x13_c00398{left:525.439453pt;}
.x18_c00398{left:553.599573pt;}
.x22_c00398{left:574.079587pt;}
.xb_c00398{left:580.798787pt;}
.x23_c00398{left:592.639200pt;}
.xc_c00398{left:594.878907pt;}
.x19_c00398{left:618.238773pt;}
.x24_c00398{left:621.758787pt;}
.x14_c00398{left:631.999467pt;}
.x1a_c00398{left:632.958907pt;}
.x25_c00398{left:634.239173pt;}
.x1b_c00398{left:654.719200pt;}
.x21_c00398{left:694.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1f2036fb4f503477038ef6c.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_85e6966d2105120e80828318.woff2')format("woff");}.ff3_c00399{font-family:ff3_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;}
.m14_c00399{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mc_c00399{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m11_c00399{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.lsb_c00399{letter-spacing:-14.082750px;}
.ls4_c00399{letter-spacing:-9.754725px;}
.lsd_c00399{letter-spacing:-9.307463px;}
.ls9_c00399{letter-spacing:-8.914500px;}
.lsf_c00399{letter-spacing:-8.175038px;}
.lse_c00399{letter-spacing:-7.426125px;}
.ls1b_c00399{letter-spacing:-6.781500px;}
.ls10_c00399{letter-spacing:-6.685875px;}
.ls8_c00399{letter-spacing:-5.945625px;}
.ls17_c00399{letter-spacing:-5.346450px;}
.ls12_c00399{letter-spacing:-5.205750px;}
.ls6_c00399{letter-spacing:-5.196713px;}
.ls7_c00399{letter-spacing:-4.456463px;}
.ls1a_c00399{letter-spacing:-3.889200px;}
.ls16_c00399{letter-spacing:-3.860025px;}
.ls5_c00399{letter-spacing:-3.717000px;}
.ls2_c00399{letter-spacing:-2.968875px;}
.ls14_c00399{letter-spacing:-2.310398px;}
.ls18_c00399{letter-spacing:-2.294348px;}
.ls19_c00399{letter-spacing:-2.230950px;}
.ls0_c00399{letter-spacing:-2.229413px;}
.ls15_c00399{letter-spacing:-1.540800px;}
.ls3_c00399{letter-spacing:-1.489163px;}
.lsa_c00399{letter-spacing:-0.740250px;}
.ls1_c00399{letter-spacing:0.000000px;}
.lsc_c00399{letter-spacing:1.621800px;}
.ls11_c00399{letter-spacing:3.418650px;}
.ls13_c00399{letter-spacing:3.637710px;}
.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;}
._1a_c00399{margin-left:-9.016058px;}
._f_c00399{margin-left:-7.142075px;}
._11_c00399{margin-left:-6.058713px;}
._d_c00399{margin-left:-4.723856px;}
._e_c00399{margin-left:-3.124280px;}
._10_c00399{margin-left:-1.416356px;}
._c_c00399{width:1.660228px;}
._12_c00399{width:2.851894px;}
._8_c00399{width:4.640099px;}
._9_c00399{width:5.843280px;}
._7_c00399{width:6.917058px;}
._2_c00399{width:8.028280px;}
._4_c00399{width:9.315605px;}
._1_c00399{width:10.936874px;}
._3_c00399{width:12.722642px;}
._5_c00399{width:13.730122px;}
._13_c00399{width:14.783009px;}
._0_c00399{width:15.990143px;}
._6_c00399{width:17.491742px;}
._14_c00399{width:18.572563px;}
._16_c00399{width:19.620878px;}
._19_c00399{width:20.975672px;}
._a_c00399{width:22.084947px;}
._b_c00399{width:23.211013px;}
._15_c00399{width:25.115843px;}
._21_c00399{width:27.163743px;}
._17_c00399{width:28.311830px;}
._18_c00399{width:29.862119px;}
._1c_c00399{width:32.414154px;}
._1d_c00399{width:34.259341px;}
._22_c00399{width:35.520945px;}
._1f_c00399{width:36.526821px;}
._20_c00399{width:37.824219px;}
._1b_c00399{width:39.507642px;}
._1e_c00399{width:41.021113px;}
.fc0_c00399{color:transparent;}
.fs2_c00399{font-size:74.250000px;}
.fs7_c00399{font-size:75.750000px;}
.fs0_c00399{font-size:78.750000px;}
.fs4_c00399{font-size:79.500000px;}
.fs5_c00399{font-size:80.250000px;}
.fs6_c00399{font-size:81.000000px;}
.fs8_c00399{font-size:81.750000px;}
.fs3_c00399{font-size:82.500000px;}
.fs9_c00399{font-size:84.000000px;}
.fs1_c00399{font-size:84.750000px;}
.y0_c00399{bottom:0.000000px;}
.y24_c00399{bottom:155.878950px;}
.y25_c00399{bottom:155.879565px;}
.y23_c00399{bottom:185.398470px;}
.y22_c00399{bottom:214.919820px;}
.y21_c00399{bottom:244.799535px;}
.y20_c00399{bottom:303.840585px;}
.y1f_c00399{bottom:363.599895px;}
.y1e_c00399{bottom:393.480885px;}
.y1d_c00399{bottom:453.240375px;}
.y1b_c00399{bottom:483.479595px;}
.y1c_c00399{bottom:483.480285px;}
.y1a_c00399{bottom:512.640750px;}
.y19_c00399{bottom:512.640840px;}
.y18_c00399{bottom:572.400285px;}
.y17_c00399{bottom:602.279235px;}
.y15_c00399{bottom:631.799265px;}
.y16_c00399{bottom:631.800570px;}
.y14_c00399{bottom:661.678980px;}
.y13_c00399{bottom:690.840135px;}
.y12_c00399{bottom:690.841020px;}
.y11_c00399{bottom:720.720750px;}
.yf_c00399{bottom:780.838875px;}
.y10_c00399{bottom:780.839535px;}
.ye_c00399{bottom:811.078785px;}
.yd_c00399{bottom:841.318710px;}
.yc_c00399{bottom:870.840045px;}
.yb_c00399{bottom:900.359580px;}
.y9_c00399{bottom:929.520060px;}
.ya_c00399{bottom:929.520720px;}
.y8_c00399{bottom:959.399775px;}
.y7_c00399{bottom:959.401710px;}
.y6_c00399{bottom:989.281425px;}
.y5_c00399{bottom:1049.040870px;}
.y4_c00399{bottom:1078.920600px;}
.y3_c00399{bottom:1078.920645px;}
.y2_c00399{bottom:1108.440165px;}
.y1_c00399{bottom:1138.680090px;}
.h3_c00399{height:72.872314px;}
.ha_c00399{height:76.341797px;}
.h1_c00399{height:77.288818px;}
.h6_c00399{height:78.024902px;}
.h7_c00399{height:78.760986px;}
.h8_c00399{height:79.497070px;}
.hc_c00399{height:80.121094px;}
.h9_c00399{height:80.876953px;}
.h4_c00399{height:80.969238px;}
.h5_c00399{height:81.533203px;}
.hb_c00399{height:82.388672px;}
.hd_c00399{height:82.441406px;}
.h2_c00399{height:83.177490px;}
.h0_c00399{height:1263.000000px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.xe_c00399{left:152.639700px;}
.x1_c00399{left:153.719100px;}
.x14_c00399{left:168.118815px;}
.xf_c00399{left:178.558665px;}
.x1d_c00399{left:186.478665px;}
.x2_c00399{left:235.798515px;}
.x3_c00399{left:252.358635px;}
.x12_c00399{left:315.719100px;}
.x26_c00399{left:320.040000px;}
.x13_c00399{left:343.439235px;}
.x27_c00399{left:347.758500px;}
.xc_c00399{left:428.758530px;}
.x8_c00399{left:434.158770px;}
.xd_c00399{left:443.878320px;}
.x9_c00399{left:448.919535px;}
.x15_c00399{left:464.398635px;}
.x16_c00399{left:485.639100px;}
.x19_c00399{left:511.559685px;}
.x1e_c00399{left:513.000000px;}
.x6_c00399{left:514.438665px;}
.x1b_c00399{left:520.559100px;}
.x7_c00399{left:532.080000px;}
.x1a_c00399{left:537.478635px;}
.x1c_c00399{left:540.000000px;}
.xa_c00399{left:553.318770px;}
.xb_c00399{left:575.279250px;}
.x10_c00399{left:578.878320px;}
.x1f_c00399{left:586.439250px;}
.x11_c00399{left:596.158770px;}
.x20_c00399{left:601.559100px;}
.x4_c00399{left:613.798515px;}
.x21_c00399{left:621.000000px;}
.x5_c00399{left:637.919535px;}
.x23_c00399{left:672.119385px;}
.x22_c00399{left:684.719520px;}
.x24_c00399{left:691.199385px;}
.x17_c00399{left:692.278800px;}
.x25_c00399{left:727.559685px;}
.x18_c00399{left:734.759535px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.lsb_c00399{letter-spacing:-12.518000pt;}
.ls4_c00399{letter-spacing:-8.670867pt;}
.lsd_c00399{letter-spacing:-8.273300pt;}
.ls9_c00399{letter-spacing:-7.924000pt;}
.lsf_c00399{letter-spacing:-7.266700pt;}
.lse_c00399{letter-spacing:-6.601000pt;}
.ls1b_c00399{letter-spacing:-6.028000pt;}
.ls10_c00399{letter-spacing:-5.943000pt;}
.ls8_c00399{letter-spacing:-5.285000pt;}
.ls17_c00399{letter-spacing:-4.752400pt;}
.ls12_c00399{letter-spacing:-4.627333pt;}
.ls6_c00399{letter-spacing:-4.619300pt;}
.ls7_c00399{letter-spacing:-3.961300pt;}
.ls1a_c00399{letter-spacing:-3.457067pt;}
.ls16_c00399{letter-spacing:-3.431133pt;}
.ls5_c00399{letter-spacing:-3.304000pt;}
.ls2_c00399{letter-spacing:-2.639000pt;}
.ls14_c00399{letter-spacing:-2.053687pt;}
.ls18_c00399{letter-spacing:-2.039420pt;}
.ls19_c00399{letter-spacing:-1.983067pt;}
.ls0_c00399{letter-spacing:-1.981700pt;}
.ls15_c00399{letter-spacing:-1.369600pt;}
.ls3_c00399{letter-spacing:-1.323700pt;}
.lsa_c00399{letter-spacing:-0.658000pt;}
.ls1_c00399{letter-spacing:0.000000pt;}
.lsc_c00399{letter-spacing:1.441600pt;}
.ls11_c00399{letter-spacing:3.038800pt;}
.ls13_c00399{letter-spacing:3.233520pt;}
.ws0_c00399{word-spacing:0.000000pt;}
._1a_c00399{margin-left:-8.014274pt;}
._f_c00399{margin-left:-6.348511pt;}
._11_c00399{margin-left:-5.385523pt;}
._d_c00399{margin-left:-4.198983pt;}
._e_c00399{margin-left:-2.777138pt;}
._10_c00399{margin-left:-1.258983pt;}
._c_c00399{width:1.475758pt;}
._12_c00399{width:2.535017pt;}
._8_c00399{width:4.124532pt;}
._9_c00399{width:5.194026pt;}
._7_c00399{width:6.148496pt;}
._2_c00399{width:7.136249pt;}
._4_c00399{width:8.280538pt;}
._1_c00399{width:9.721666pt;}
._3_c00399{width:11.309015pt;}
._5_c00399{width:12.204553pt;}
._13_c00399{width:13.140453pt;}
._0_c00399{width:14.213460pt;}
._6_c00399{width:15.548215pt;}
._14_c00399{width:16.508945pt;}
._16_c00399{width:17.440781pt;}
._19_c00399{width:18.645042pt;}
._a_c00399{width:19.631064pt;}
._b_c00399{width:20.632011pt;}
._15_c00399{width:22.325193pt;}
._21_c00399{width:24.145549pt;}
._17_c00399{width:25.166071pt;}
._18_c00399{width:26.544106pt;}
._1c_c00399{width:28.812581pt;}
._1d_c00399{width:30.452747pt;}
._22_c00399{width:31.574174pt;}
._1f_c00399{width:32.468285pt;}
._20_c00399{width:33.621528pt;}
._1b_c00399{width:35.117904pt;}
._1e_c00399{width:36.463211pt;}
.fs2_c00399{font-size:66.000000pt;}
.fs7_c00399{font-size:67.333333pt;}
.fs0_c00399{font-size:70.000000pt;}
.fs4_c00399{font-size:70.666667pt;}
.fs5_c00399{font-size:71.333333pt;}
.fs6_c00399{font-size:72.000000pt;}
.fs8_c00399{font-size:72.666667pt;}
.fs3_c00399{font-size:73.333333pt;}
.fs9_c00399{font-size:74.666667pt;}
.fs1_c00399{font-size:75.333333pt;}
.y0_c00399{bottom:0.000000pt;}
.y24_c00399{bottom:138.559067pt;}
.y25_c00399{bottom:138.559613pt;}
.y23_c00399{bottom:164.798640pt;}
.y22_c00399{bottom:191.039840pt;}
.y21_c00399{bottom:217.599587pt;}
.y20_c00399{bottom:270.080520pt;}
.y1f_c00399{bottom:323.199907pt;}
.y1e_c00399{bottom:349.760787pt;}
.y1d_c00399{bottom:402.880333pt;}
.y1b_c00399{bottom:429.759640pt;}
.y1c_c00399{bottom:429.760253pt;}
.y1a_c00399{bottom:455.680667pt;}
.y19_c00399{bottom:455.680747pt;}
.y18_c00399{bottom:508.800253pt;}
.y17_c00399{bottom:535.359320pt;}
.y15_c00399{bottom:561.599347pt;}
.y16_c00399{bottom:561.600507pt;}
.y14_c00399{bottom:588.159093pt;}
.y13_c00399{bottom:614.080120pt;}
.y12_c00399{bottom:614.080907pt;}
.y11_c00399{bottom:640.640667pt;}
.yf_c00399{bottom:694.079000pt;}
.y10_c00399{bottom:694.079587pt;}
.ye_c00399{bottom:720.958920pt;}
.yd_c00399{bottom:747.838853pt;}
.yc_c00399{bottom:774.080040pt;}
.yb_c00399{bottom:800.319627pt;}
.y9_c00399{bottom:826.240053pt;}
.ya_c00399{bottom:826.240640pt;}
.y8_c00399{bottom:852.799800pt;}
.y7_c00399{bottom:852.801520pt;}
.y6_c00399{bottom:879.361267pt;}
.y5_c00399{bottom:932.480773pt;}
.y4_c00399{bottom:959.040533pt;}
.y3_c00399{bottom:959.040573pt;}
.y2_c00399{bottom:985.280147pt;}
.y1_c00399{bottom:1012.160080pt;}
.h3_c00399{height:64.775391pt;}
.ha_c00399{height:67.859375pt;}
.h1_c00399{height:68.701172pt;}
.h6_c00399{height:69.355469pt;}
.h7_c00399{height:70.009766pt;}
.h8_c00399{height:70.664062pt;}
.hc_c00399{height:71.218750pt;}
.h9_c00399{height:71.890625pt;}
.h4_c00399{height:71.972656pt;}
.h5_c00399{height:72.473958pt;}
.hb_c00399{height:73.234375pt;}
.hd_c00399{height:73.281250pt;}
.h2_c00399{height:73.935547pt;}
.h0_c00399{height:1122.666667pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.xe_c00399{left:135.679733pt;}
.x1_c00399{left:136.639200pt;}
.x14_c00399{left:149.438947pt;}
.xf_c00399{left:158.718813pt;}
.x1d_c00399{left:165.758813pt;}
.x2_c00399{left:209.598680pt;}
.x3_c00399{left:224.318787pt;}
.x12_c00399{left:280.639200pt;}
.x26_c00399{left:284.480000pt;}
.x13_c00399{left:305.279320pt;}
.x27_c00399{left:309.118667pt;}
.xc_c00399{left:381.118693pt;}
.x8_c00399{left:385.918907pt;}
.xd_c00399{left:394.558507pt;}
.x9_c00399{left:399.039587pt;}
.x15_c00399{left:412.798787pt;}
.x16_c00399{left:431.679200pt;}
.x19_c00399{left:454.719720pt;}
.x1e_c00399{left:456.000000pt;}
.x6_c00399{left:457.278813pt;}
.x1b_c00399{left:462.719200pt;}
.x7_c00399{left:472.960000pt;}
.x1a_c00399{left:477.758787pt;}
.x1c_c00399{left:480.000000pt;}
.xa_c00399{left:491.838907pt;}
.xb_c00399{left:511.359333pt;}
.x10_c00399{left:514.558507pt;}
.x1f_c00399{left:521.279333pt;}
.x11_c00399{left:529.918907pt;}
.x20_c00399{left:534.719200pt;}
.x4_c00399{left:545.598680pt;}
.x21_c00399{left:552.000000pt;}
.x5_c00399{left:567.039587pt;}
.x23_c00399{left:597.439453pt;}
.x22_c00399{left:608.639573pt;}
.x24_c00399{left:614.399453pt;}
.x17_c00399{left:615.358933pt;}
.x25_c00399{left:646.719720pt;}
.x18_c00399{left:653.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94d8134aa9ef507658f8d870.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_e7d2db2b645a6bbfb2f74de8.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_90f6aa3da3a2231fa906cc4c.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.364746;font-style:normal;font-weight:normal;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_a60e2a08f2a01777d250fde0.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_bc6d39ac65930060fbff6593.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00400;src:url('chunks/assets/font_5fe096c03d77b4da457f5d73.woff2')format("woff");}.ff7_c00400{font-family:ff7_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;}
.m1e_c00400{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.mc_c00400{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1b_c00400{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m5_c00400{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m1d_c00400{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m10_c00400{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m9_c00400{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.me_c00400{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m7_c00400{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m16_c00400{transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273684,0.000000,0.000000,0.250000,0,0);}
.m18_c00400{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m19_c00400{transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);}
.m17_c00400{transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303763,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364865,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);}
.m12_c00400{transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407895,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls26_c00400{letter-spacing:-16.095750px;}
.ls6_c00400{letter-spacing:-13.490828px;}
.ls20_c00400{letter-spacing:-12.993750px;}
.lsc_c00400{letter-spacing:-9.654750px;}
.ls25_c00400{letter-spacing:-8.914500px;}
.lse_c00400{letter-spacing:-8.667450px;}
.lsa_c00400{letter-spacing:-8.175038px;}
.lsb_c00400{letter-spacing:-7.426125px;}
.ls16_c00400{letter-spacing:-6.874200px;}
.ls13_c00400{letter-spacing:-6.685875px;}
.ls14_c00400{letter-spacing:-5.945625px;}
.ls24_c00400{letter-spacing:-5.577000px;}
.ls7_c00400{letter-spacing:-5.196713px;}
.ls10_c00400{letter-spacing:-5.109375px;}
.lsd_c00400{letter-spacing:-4.456463px;}
.ls1c_c00400{letter-spacing:-4.110413px;}
.ls2_c00400{letter-spacing:-3.717000px;}
.lsf_c00400{letter-spacing:-3.713445px;}
.ls1e_c00400{letter-spacing:-3.403583px;}
.ls21_c00400{letter-spacing:-3.269183px;}
.ls12_c00400{letter-spacing:-2.971800px;}
.ls8_c00400{letter-spacing:-2.968875px;}
.ls22_c00400{letter-spacing:-2.452500px;}
.ls17_c00400{letter-spacing:-2.378925px;}
.ls4_c00400{letter-spacing:-2.229413px;}
.ls9_c00400{letter-spacing:-1.489163px;}
.ls1f_c00400{letter-spacing:-1.259700px;}
.ls1d_c00400{letter-spacing:-1.234575px;}
.ls3_c00400{letter-spacing:-0.740250px;}
.ls1b_c00400{letter-spacing:-0.540638px;}
.ls5_c00400{letter-spacing:0.000000px;}
.ls1a_c00400{letter-spacing:1.521450px;}
.ls1_c00400{letter-spacing:2.229413px;}
.ls23_c00400{letter-spacing:2.455200px;}
.ls18_c00400{letter-spacing:3.596122px;}
.ls15_c00400{letter-spacing:3.637710px;}
.ls19_c00400{letter-spacing:3.676500px;}
.ls11_c00400{letter-spacing:5.346450px;}
.ls0_c00400{letter-spacing:5.945625px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:0.000000px;}
._14_c00400{margin-left:-6.182677px;}
._15_c00400{margin-left:-4.244150px;}
._9_c00400{margin-left:-2.170291px;}
._b_c00400{width:1.894294px;}
._a_c00400{width:3.255971px;}
._8_c00400{width:4.875621px;}
._1_c00400{width:6.615178px;}
._e_c00400{width:7.727931px;}
._d_c00400{width:8.806122px;}
._6_c00400{width:10.668367px;}
._7_c00400{width:12.094678px;}
._19_c00400{width:13.209094px;}
._2_c00400{width:14.247628px;}
._11_c00400{width:15.568771px;}
._0_c00400{width:16.986583px;}
._3_c00400{width:18.467440px;}
._5_c00400{width:20.010048px;}
._4_c00400{width:21.283376px;}
._10_c00400{width:23.234519px;}
._12_c00400{width:24.574056px;}
._13_c00400{width:27.028605px;}
._f_c00400{width:28.100348px;}
._c_c00400{width:29.570506px;}
._16_c00400{width:31.124229px;}
._18_c00400{width:36.064513px;}
._17_c00400{width:40.784432px;}
.fc0_c00400{color:transparent;}
.fsb_c00400{font-size:27.750000px;}
.fsc_c00400{font-size:28.500000px;}
.fs13_c00400{font-size:39.000000px;}
.fsf_c00400{font-size:39.750000px;}
.fse_c00400{font-size:48.750000px;}
.fsd_c00400{font-size:51.750000px;}
.fs12_c00400{font-size:66.750000px;}
.fs11_c00400{font-size:69.750000px;}
.fs10_c00400{font-size:71.250000px;}
.fs2_c00400{font-size:72.000000px;}
.fs14_c00400{font-size:74.250000px;}
.fs5_c00400{font-size:77.250000px;}
.fs4_c00400{font-size:78.000000px;}
.fs0_c00400{font-size:78.750000px;}
.fs6_c00400{font-size:79.500000px;}
.fs1_c00400{font-size:80.250000px;}
.fs9_c00400{font-size:81.000000px;}
.fs7_c00400{font-size:81.750000px;}
.fs3_c00400{font-size:82.500000px;}
.fs8_c00400{font-size:84.750000px;}
.fsa_c00400{font-size:85.500000px;}
.y0_c00400{bottom:0.000000px;}
.y28_c00400{bottom:155.881575px;}
.y27_c00400{bottom:185.401110px;}
.y26_c00400{bottom:215.641020px;}
.y25_c00400{bottom:275.400465px;}
.y24_c00400{bottom:304.920000px;}
.y23_c00400{bottom:304.920180px;}
.y22_c00400{bottom:334.441515px;}
.y21_c00400{bottom:363.961050px;}
.y20_c00400{bottom:423.361545px;}
.y1f_c00400{bottom:432.720150px;}
.y1e_c00400{bottom:453.960570px;}
.y1d_c00400{bottom:453.961560px;}
.y1c_c00400{bottom:484.201470px;}
.y1b_c00400{bottom:513.721005px;}
.y1a_c00400{bottom:543.600720px;}
.y19_c00400{bottom:543.601620px;}
.y18_c00400{bottom:573.481335px;}
.y17_c00400{bottom:603.360675px;}
.y16_c00400{bottom:633.061335px;}
.y15_c00400{bottom:633.061455px;}
.y14_c00400{bottom:662.401650px;}
.y13_c00400{bottom:691.921185px;}
.y12_c00400{bottom:752.039985px;}
.y11_c00400{bottom:781.921125px;}
.y10_c00400{bottom:812.161035px;}
.yf_c00400{bottom:842.040750px;}
.yd_c00400{bottom:871.199295px;}
.ye_c00400{bottom:871.199805px;}
.yc_c00400{bottom:901.441320px;}
.yb_c00400{bottom:901.441500px;}
.ya_c00400{bottom:930.961035px;}
.y9_c00400{bottom:930.961305px;}
.y7_c00400{bottom:960.480015px;}
.y8_c00400{bottom:960.480840px;}
.y6_c00400{bottom:990.719925px;}
.y5_c00400{bottom:1050.120990px;}
.y4_c00400{bottom:1080.360900px;}
.y3_c00400{bottom:1080.361170px;}
.y2_c00400{bottom:1109.880705px;}
.y1_c00400{bottom:1139.400240px;}
.hc_c00400{height:27.966797px;}
.hd_c00400{height:28.166016px;}
.h10_c00400{height:39.284180px;}
.h14_c00400{height:40.675781px;}
.hf_c00400{height:48.178711px;}
.he_c00400{height:53.973633px;}
.h13_c00400{height:67.271484px;}
.h12_c00400{height:68.455811px;}
.h3_c00400{height:70.664062px;}
.h11_c00400{height:71.806641px;}
.h15_c00400{height:74.311523px;}
.h18_c00400{height:75.093750px;}
.h6_c00400{height:75.816650px;}
.h5_c00400{height:76.552734px;}
.h1_c00400{height:77.288818px;}
.h16_c00400{height:77.440430px;}
.h7_c00400{height:78.024902px;}
.h2_c00400{height:78.760986px;}
.ha_c00400{height:79.497070px;}
.h8_c00400{height:80.233154px;}
.h4_c00400{height:80.969238px;}
.h19_c00400{height:81.533203px;}
.h17_c00400{height:82.388672px;}
.h9_c00400{height:83.177490px;}
.hb_c00400{height:83.913574px;}
.h0_c00400{height:1263.000000px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x8_c00400{left:158.400975px;}
.x1_c00400{left:159.839565px;}
.x18_c00400{left:182.518665px;}
.x14_c00400{left:188.639100px;}
.x2e_c00400{left:213.478470px;}
.x1b_c00400{left:218.519685px;}
.x1c_c00400{left:247.678500px;}
.x13_c00400{left:272.878950px;}
.x19_c00400{left:307.078785px;}
.x1a_c00400{left:323.639100px;}
.x2b_c00400{left:350.639100px;}
.x24_c00400{left:359.638530px;}
.x1f_c00400{left:362.159850px;}
.x2c_c00400{left:372.238785px;}
.x25_c00400{left:409.319235px;}
.x20_c00400{left:411.479685px;}
.x2_c00400{left:416.159820px;}
.x26_c00400{left:432.359250px;}
.x21_c00400{left:434.158770px;}
.x3_c00400{left:443.878320px;}
.x22_c00400{left:461.158770px;}
.xd_c00400{left:472.679670px;}
.x4_c00400{left:477.719100px;}
.x5_c00400{left:496.439670px;}
.xe_c00400{left:500.399820px;}
.x15_c00400{left:501.838530px;}
.x16_c00400{left:521.279250px;}
.x27_c00400{left:524.519070px;}
.x23_c00400{left:525.598530px;}
.xf_c00400{left:568.438620px;}
.x9_c00400{left:580.679670px;}
.x28_c00400{left:594.000000px;}
.xa_c00400{left:597.239820px;}
.x10_c00400{left:609.479235px;}
.x29_c00400{left:613.439250px;}
.x11_c00400{left:649.079355px;}
.x1d_c00400{left:664.558635px;}
.x12_c00400{left:673.198785px;}
.x2a_c00400{left:697.319820px;}
.x2d_c00400{left:717.479235px;}
.xb_c00400{left:735.118785px;}
.xc_c00400{left:750.238770px;}
.x17_c00400{left:761.039385px;}
.x6_c00400{left:762.838950px;}
.x1e_c00400{left:771.120030px;}
.x7_c00400{left:781.198785px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls26_c00400{letter-spacing:-14.307333pt;}
.ls6_c00400{letter-spacing:-11.991847pt;}
.ls20_c00400{letter-spacing:-11.550000pt;}
.lsc_c00400{letter-spacing:-8.582000pt;}
.ls25_c00400{letter-spacing:-7.924000pt;}
.lse_c00400{letter-spacing:-7.704400pt;}
.lsa_c00400{letter-spacing:-7.266700pt;}
.lsb_c00400{letter-spacing:-6.601000pt;}
.ls16_c00400{letter-spacing:-6.110400pt;}
.ls13_c00400{letter-spacing:-5.943000pt;}
.ls14_c00400{letter-spacing:-5.285000pt;}
.ls24_c00400{letter-spacing:-4.957333pt;}
.ls7_c00400{letter-spacing:-4.619300pt;}
.ls10_c00400{letter-spacing:-4.541667pt;}
.lsd_c00400{letter-spacing:-3.961300pt;}
.ls1c_c00400{letter-spacing:-3.653700pt;}
.ls2_c00400{letter-spacing:-3.304000pt;}
.lsf_c00400{letter-spacing:-3.300840pt;}
.ls1e_c00400{letter-spacing:-3.025407pt;}
.ls21_c00400{letter-spacing:-2.905940pt;}
.ls12_c00400{letter-spacing:-2.641600pt;}
.ls8_c00400{letter-spacing:-2.639000pt;}
.ls22_c00400{letter-spacing:-2.180000pt;}
.ls17_c00400{letter-spacing:-2.114600pt;}
.ls4_c00400{letter-spacing:-1.981700pt;}
.ls9_c00400{letter-spacing:-1.323700pt;}
.ls1f_c00400{letter-spacing:-1.119733pt;}
.ls1d_c00400{letter-spacing:-1.097400pt;}
.ls3_c00400{letter-spacing:-0.658000pt;}
.ls1b_c00400{letter-spacing:-0.480567pt;}
.ls5_c00400{letter-spacing:0.000000pt;}
.ls1a_c00400{letter-spacing:1.352400pt;}
.ls1_c00400{letter-spacing:1.981700pt;}
.ls23_c00400{letter-spacing:2.182400pt;}
.ls18_c00400{letter-spacing:3.196553pt;}
.ls15_c00400{letter-spacing:3.233520pt;}
.ls19_c00400{letter-spacing:3.268000pt;}
.ls11_c00400{letter-spacing:4.752400pt;}
.ls0_c00400{letter-spacing:5.285000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
._14_c00400{margin-left:-5.495713pt;}
._15_c00400{margin-left:-3.772577pt;}
._9_c00400{margin-left:-1.929147pt;}
._b_c00400{width:1.683817pt;}
._a_c00400{width:2.894196pt;}
._8_c00400{width:4.333885pt;}
._1_c00400{width:5.880158pt;}
._e_c00400{width:6.869272pt;}
._d_c00400{width:7.827664pt;}
._6_c00400{width:9.482992pt;}
._7_c00400{width:10.750825pt;}
._19_c00400{width:11.741417pt;}
._2_c00400{width:12.664558pt;}
._11_c00400{width:13.838908pt;}
._0_c00400{width:15.099185pt;}
._3_c00400{width:16.415502pt;}
._5_c00400{width:17.786709pt;}
._4_c00400{width:18.918557pt;}
._10_c00400{width:20.652906pt;}
._12_c00400{width:21.843606pt;}
._13_c00400{width:24.025426pt;}
._f_c00400{width:24.978087pt;}
._c_c00400{width:26.284894pt;}
._16_c00400{width:27.665981pt;}
._18_c00400{width:32.057345pt;}
._17_c00400{width:36.252828pt;}
.fsb_c00400{font-size:24.666667pt;}
.fsc_c00400{font-size:25.333333pt;}
.fs13_c00400{font-size:34.666667pt;}
.fsf_c00400{font-size:35.333333pt;}
.fse_c00400{font-size:43.333333pt;}
.fsd_c00400{font-size:46.000000pt;}
.fs12_c00400{font-size:59.333333pt;}
.fs11_c00400{font-size:62.000000pt;}
.fs10_c00400{font-size:63.333333pt;}
.fs2_c00400{font-size:64.000000pt;}
.fs14_c00400{font-size:66.000000pt;}
.fs5_c00400{font-size:68.666667pt;}
.fs4_c00400{font-size:69.333333pt;}
.fs0_c00400{font-size:70.000000pt;}
.fs6_c00400{font-size:70.666667pt;}
.fs1_c00400{font-size:71.333333pt;}
.fs9_c00400{font-size:72.000000pt;}
.fs7_c00400{font-size:72.666667pt;}
.fs3_c00400{font-size:73.333333pt;}
.fs8_c00400{font-size:75.333333pt;}
.fsa_c00400{font-size:76.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y28_c00400{bottom:138.561400pt;}
.y27_c00400{bottom:164.800987pt;}
.y26_c00400{bottom:191.680907pt;}
.y25_c00400{bottom:244.800413pt;}
.y24_c00400{bottom:271.040000pt;}
.y23_c00400{bottom:271.040160pt;}
.y22_c00400{bottom:297.281347pt;}
.y21_c00400{bottom:323.520933pt;}
.y20_c00400{bottom:376.321373pt;}
.y1f_c00400{bottom:384.640133pt;}
.y1e_c00400{bottom:403.520507pt;}
.y1d_c00400{bottom:403.521387pt;}
.y1c_c00400{bottom:430.401307pt;}
.y1b_c00400{bottom:456.640893pt;}
.y1a_c00400{bottom:483.200640pt;}
.y19_c00400{bottom:483.201440pt;}
.y18_c00400{bottom:509.761187pt;}
.y17_c00400{bottom:536.320600pt;}
.y16_c00400{bottom:562.721187pt;}
.y15_c00400{bottom:562.721293pt;}
.y14_c00400{bottom:588.801467pt;}
.y13_c00400{bottom:615.041053pt;}
.y12_c00400{bottom:668.479987pt;}
.y11_c00400{bottom:695.041000pt;}
.y10_c00400{bottom:721.920920pt;}
.yf_c00400{bottom:748.480667pt;}
.yd_c00400{bottom:774.399373pt;}
.ye_c00400{bottom:774.399827pt;}
.yc_c00400{bottom:801.281173pt;}
.yb_c00400{bottom:801.281333pt;}
.ya_c00400{bottom:827.520920pt;}
.y9_c00400{bottom:827.521160pt;}
.y7_c00400{bottom:853.760013pt;}
.y8_c00400{bottom:853.760747pt;}
.y6_c00400{bottom:880.639933pt;}
.y5_c00400{bottom:933.440880pt;}
.y4_c00400{bottom:960.320800pt;}
.y3_c00400{bottom:960.321040pt;}
.y2_c00400{bottom:986.560627pt;}
.y1_c00400{bottom:1012.800213pt;}
.hc_c00400{height:24.859375pt;}
.hd_c00400{height:25.036458pt;}
.h10_c00400{height:34.919271pt;}
.h14_c00400{height:36.156250pt;}
.hf_c00400{height:42.825521pt;}
.he_c00400{height:47.976562pt;}
.h13_c00400{height:59.796875pt;}
.h12_c00400{height:60.849609pt;}
.h3_c00400{height:62.812500pt;}
.h11_c00400{height:63.828125pt;}
.h15_c00400{height:66.054688pt;}
.h18_c00400{height:66.750000pt;}
.h6_c00400{height:67.392578pt;}
.h5_c00400{height:68.046875pt;}
.h1_c00400{height:68.701172pt;}
.h16_c00400{height:68.835938pt;}
.h7_c00400{height:69.355469pt;}
.h2_c00400{height:70.009766pt;}
.ha_c00400{height:70.664062pt;}
.h8_c00400{height:71.318359pt;}
.h4_c00400{height:71.972656pt;}
.h19_c00400{height:72.473958pt;}
.h17_c00400{height:73.234375pt;}
.h9_c00400{height:73.935547pt;}
.hb_c00400{height:74.589844pt;}
.h0_c00400{height:1122.666667pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x8_c00400{left:140.800867pt;}
.x1_c00400{left:142.079613pt;}
.x18_c00400{left:162.238813pt;}
.x14_c00400{left:167.679200pt;}
.x2e_c00400{left:189.758640pt;}
.x1b_c00400{left:194.239720pt;}
.x1c_c00400{left:220.158667pt;}
.x13_c00400{left:242.559067pt;}
.x19_c00400{left:272.958920pt;}
.x1a_c00400{left:287.679200pt;}
.x2b_c00400{left:311.679200pt;}
.x24_c00400{left:319.678693pt;}
.x1f_c00400{left:321.919867pt;}
.x2c_c00400{left:330.878920pt;}
.x25_c00400{left:363.839320pt;}
.x20_c00400{left:365.759720pt;}
.x2_c00400{left:369.919840pt;}
.x26_c00400{left:384.319333pt;}
.x21_c00400{left:385.918907pt;}
.x3_c00400{left:394.558507pt;}
.x22_c00400{left:409.918907pt;}
.xd_c00400{left:420.159707pt;}
.x4_c00400{left:424.639200pt;}
.x5_c00400{left:441.279707pt;}
.xe_c00400{left:444.799840pt;}
.x15_c00400{left:446.078693pt;}
.x16_c00400{left:463.359333pt;}
.x27_c00400{left:466.239173pt;}
.x23_c00400{left:467.198693pt;}
.xf_c00400{left:505.278773pt;}
.x9_c00400{left:516.159707pt;}
.x28_c00400{left:528.000000pt;}
.xa_c00400{left:530.879840pt;}
.x10_c00400{left:541.759320pt;}
.x29_c00400{left:545.279333pt;}
.x11_c00400{left:576.959427pt;}
.x1d_c00400{left:590.718787pt;}
.x12_c00400{left:598.398920pt;}
.x2a_c00400{left:619.839840pt;}
.x2d_c00400{left:637.759320pt;}
.xb_c00400{left:653.438920pt;}
.xc_c00400{left:666.878907pt;}
.x17_c00400{left:676.479453pt;}
.x6_c00400{left:678.079067pt;}
.x1e_c00400{left:685.440027pt;}
.x7_c00400{left:694.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b7899b874ecc89f8cfbe4fb.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_24d89457707a17657a8ac48a.woff2')format("woff");}.ff2_c00401{font-family:ff2_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:ff3_c00401;src:url('chunks/assets/font_e079a47b4053f4f6595d6f48.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.364746;font-style:normal;font-weight:normal;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_bfe9892707968e121f4e0718.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;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_4a582d9e1c60cbd2e3b68333.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00401;src:url('chunks/assets/font_317af5269cf978b70478d97b.woff2')format("woff");}.ff6_c00401{font-family:ff6_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;}
.m25_c00401{transform:matrix(0.088129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088129,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178899,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m30_c00401{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m0_c00401{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m32_c00401{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m2e_c00401{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.310811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310811,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(0.318966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318966,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.397541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397541,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.434211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434211,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls16_c00401{letter-spacing:-18.261945px;}
.ls3b_c00401{letter-spacing:-16.534725px;}
.ls23_c00401{letter-spacing:-16.095750px;}
.lsb_c00401{letter-spacing:-12.687675px;}
.ls24_c00401{letter-spacing:-12.572333px;}
.lsd_c00401{letter-spacing:-12.238125px;}
.ls12_c00401{letter-spacing:-12.226305px;}
.ls10_c00401{letter-spacing:-8.914500px;}
.lsf_c00401{letter-spacing:-8.175038px;}
.ls21_c00401{letter-spacing:-7.426125px;}
.ls2c_c00401{letter-spacing:-7.239697px;}
.lse_c00401{letter-spacing:-5.945625px;}
.ls19_c00401{letter-spacing:-5.710950px;}
.ls3_c00401{letter-spacing:-5.196713px;}
.ls18_c00401{letter-spacing:-5.195850px;}
.ls39_c00401{letter-spacing:-4.921875px;}
.ls28_c00401{letter-spacing:-4.716825px;}
.ls6_c00401{letter-spacing:-4.539450px;}
.ls13_c00401{letter-spacing:-4.456463px;}
.ls1b_c00401{letter-spacing:-4.114125px;}
.ls2a_c00401{letter-spacing:-3.901883px;}
.ls34_c00401{letter-spacing:-3.808200px;}
.ls8_c00401{letter-spacing:-3.787800px;}
.ls0_c00401{letter-spacing:-3.717000px;}
.lsc_c00401{letter-spacing:-3.614625px;}
.ls29_c00401{letter-spacing:-3.121200px;}
.ls15_c00401{letter-spacing:-3.081975px;}
.ls7_c00401{letter-spacing:-3.025425px;}
.ls2_c00401{letter-spacing:-2.968875px;}
.ls36_c00401{letter-spacing:-2.571120px;}
.ls9_c00401{letter-spacing:-2.271878px;}
.ls1_c00401{letter-spacing:-2.229413px;}
.ls1d_c00401{letter-spacing:-1.784100px;}
.ls2b_c00401{letter-spacing:-1.498500px;}
.ls4_c00401{letter-spacing:-1.489163px;}
.ls27_c00401{letter-spacing:-1.156275px;}
.ls1e_c00401{letter-spacing:-1.031250px;}
.ls11_c00401{letter-spacing:-0.740250px;}
.ls1f_c00401{letter-spacing:-0.735000px;}
.ls1a_c00401{letter-spacing:-0.666750px;}
.ls5_c00401{letter-spacing:0.000000px;}
.ls22_c00401{letter-spacing:0.740250px;}
.ls25_c00401{letter-spacing:1.296750px;}
.ls35_c00401{letter-spacing:1.332000px;}
.ls14_c00401{letter-spacing:1.545300px;}
.ls3a_c00401{letter-spacing:1.591200px;}
.lsa_c00401{letter-spacing:1.621800px;}
.ls30_c00401{letter-spacing:1.649700px;}
.ls38_c00401{letter-spacing:1.823310px;}
.ls20_c00401{letter-spacing:2.213400px;}
.ls31_c00401{letter-spacing:3.001200px;}
.ls26_c00401{letter-spacing:3.527850px;}
.ls37_c00401{letter-spacing:3.726810px;}
.ls1c_c00401{letter-spacing:4.282200px;}
.ls2d_c00401{letter-spacing:4.882200px;}
.ls2e_c00401{letter-spacing:5.139225px;}
.ls32_c00401{letter-spacing:5.463150px;}
.ls33_c00401{letter-spacing:9.503917px;}
.ls17_c00401{letter-spacing:11.688300px;}
.ls2f_c00401{letter-spacing:13.279125px;}
.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;}
._18_c00401{margin-left:-7.464965px;}
._17_c00401{margin-left:-5.060180px;}
._16_c00401{margin-left:-3.887263px;}
._d_c00401{margin-left:-1.967801px;}
._8_c00401{width:1.083254px;}
._c_c00401{width:2.307241px;}
._6_c00401{width:3.891676px;}
._9_c00401{width:5.457659px;}
._7_c00401{width:7.331447px;}
._e_c00401{width:8.394496px;}
._1_c00401{width:9.537442px;}
._5_c00401{width:11.335721px;}
._3_c00401{width:13.438078px;}
._2_c00401{width:14.725091px;}
._a_c00401{width:16.208013px;}
._1c_c00401{width:17.954673px;}
._0_c00401{width:19.467416px;}
._4_c00401{width:21.227048px;}
._b_c00401{width:22.354272px;}
._1a_c00401{width:24.261553px;}
._1f_c00401{width:25.653451px;}
._1b_c00401{width:27.094160px;}
._11_c00401{width:28.790450px;}
._20_c00401{width:29.879221px;}
._14_c00401{width:31.495929px;}
._13_c00401{width:32.598280px;}
._10_c00401{width:33.964964px;}
._f_c00401{width:35.384975px;}
._1e_c00401{width:37.048398px;}
._19_c00401{width:41.629018px;}
._15_c00401{width:43.672135px;}
._12_c00401{width:52.400725px;}
._1d_c00401{width:67.465225px;}
.fc0_c00401{color:transparent;}
.fs15_c00401{font-size:20.250000px;}
.fs14_c00401{font-size:21.750000px;}
.fs1b_c00401{font-size:27.750000px;}
.fs13_c00401{font-size:28.500000px;}
.fs23_c00401{font-size:33.000000px;}
.fs17_c00401{font-size:33.750000px;}
.fs22_c00401{font-size:36.750000px;}
.fs19_c00401{font-size:38.250000px;}
.fs16_c00401{font-size:39.000000px;}
.fs1a_c00401{font-size:40.500000px;}
.fs18_c00401{font-size:45.750000px;}
.fsc_c00401{font-size:51.750000px;}
.fsb_c00401{font-size:52.500000px;}
.fse_c00401{font-size:57.000000px;}
.fs21_c00401{font-size:57.750000px;}
.fsd_c00401{font-size:58.500000px;}
.fs24_c00401{font-size:60.000000px;}
.fs20_c00401{font-size:61.500000px;}
.fs1f_c00401{font-size:63.750000px;}
.fs1e_c00401{font-size:68.250000px;}
.fs9_c00401{font-size:70.500000px;}
.fs25_c00401{font-size:72.000000px;}
.fsa_c00401{font-size:73.500000px;}
.fs5_c00401{font-size:74.250000px;}
.fs4_c00401{font-size:75.750000px;}
.fs1d_c00401{font-size:77.250000px;}
.fs26_c00401{font-size:78.000000px;}
.fs0_c00401{font-size:78.750000px;}
.fs2_c00401{font-size:79.500000px;}
.fs3_c00401{font-size:80.250000px;}
.fs8_c00401{font-size:81.000000px;}
.fs6_c00401{font-size:81.750000px;}
.fs1_c00401{font-size:82.500000px;}
.fs27_c00401{font-size:84.750000px;}
.fs7_c00401{font-size:85.500000px;}
.fs11_c00401{font-size:87.000000px;}
.fs12_c00401{font-size:87.750000px;}
.fs10_c00401{font-size:89.250000px;}
.fs1c_c00401{font-size:104.250000px;}
.fsf_c00401{font-size:105.000000px;}
.y0_c00401{bottom:0.000000px;}
.y29_c00401{bottom:155.160990px;}
.y28_c00401{bottom:185.400900px;}
.y27_c00401{bottom:185.401065px;}
.y25_c00401{bottom:214.919835px;}
.y26_c00401{bottom:214.920600px;}
.y24_c00401{bottom:245.159745px;}
.y23_c00401{bottom:274.320900px;}
.y22_c00401{bottom:274.321170px;}
.y21_c00401{bottom:303.840705px;}
.y20_c00401{bottom:334.080615px;}
.y1f_c00401{bottom:363.600150px;}
.y1e_c00401{bottom:393.119985px;}
.y1d_c00401{bottom:423.000600px;}
.y1c_c00401{bottom:431.279850px;}
.y1a_c00401{bottom:452.880405px;}
.y1b_c00401{bottom:452.881215px;}
.y19_c00401{bottom:482.760135px;}
.y18_c00401{bottom:482.761110px;}
.y17_c00401{bottom:542.520555px;}
.y16_c00401{bottom:572.400285px;}
.y15_c00401{bottom:572.400465px;}
.y14_c00401{bottom:601.920000px;}
.y13_c00401{bottom:601.922235px;}
.y12_c00401{bottom:631.801965px;}
.y11_c00401{bottom:661.321500px;}
.y10_c00401{bottom:690.841020px;}
.yf_c00401{bottom:720.720750px;}
.ye_c00401{bottom:747.000600px;}
.yd_c00401{bottom:751.501050px;}
.yc_c00401{bottom:780.839535px;}
.yb_c00401{bottom:780.839790px;}
.ya_c00401{bottom:840.240855px;}
.y9_c00401{bottom:869.760390px;}
.y8_c00401{bottom:899.640105px;}
.y7_c00401{bottom:899.641005px;}
.y6_c00401{bottom:929.520720px;}
.y5_c00401{bottom:959.399775px;}
.y4_c00401{bottom:1019.161005px;}
.y3_c00401{bottom:1078.559805px;}
.y2_c00401{bottom:1107.720960px;}
.y1_c00401{bottom:1137.600675px;}
.h1b_c00401{height:21.120117px;}
.h1a_c00401{height:21.495117px;}
.h19_c00401{height:28.166016px;}
.h21_c00401{height:28.942383px;}
.h1d_c00401{height:34.013672px;}
.h29_c00401{height:34.417969px;}
.h28_c00401{height:37.037109px;}
.h1c_c00401{height:38.542969px;}
.h1f_c00401{height:38.548828px;}
.h20_c00401{height:42.240234px;}
.h1e_c00401{height:47.715820px;}
.h11_c00401{height:51.143555px;}
.h10_c00401{height:54.755859px;}
.h27_c00401{height:58.201172px;}
.h12_c00401{height:58.957031px;}
.h13_c00401{height:59.449219px;}
.h26_c00401{height:60.779297px;}
.h2a_c00401{height:62.578125px;}
.h25_c00401{height:64.248047px;}
.h24_c00401{height:68.783203px;}
.he_c00401{height:73.529297px;}
.h2b_c00401{height:75.093750px;}
.h23_c00401{height:75.816650px;}
.h2d_c00401{height:76.552734px;}
.hf_c00401{height:76.658203px;}
.h1_c00401{height:77.288818px;}
.ha_c00401{height:77.440430px;}
.h5_c00401{height:78.024902px;}
.h8_c00401{height:78.568359px;}
.h7_c00401{height:78.760986px;}
.h9_c00401{height:79.004883px;}
.h2c_c00401{height:79.497070px;}
.h3_c00401{height:80.121094px;}
.h16_c00401{height:80.791992px;}
.h4_c00401{height:80.876953px;}
.h2_c00401{height:80.969238px;}
.h6_c00401{height:81.533203px;}
.hd_c00401{height:81.632812px;}
.hb_c00401{height:82.388672px;}
.h2e_c00401{height:83.756836px;}
.hc_c00401{height:84.498047px;}
.h17_c00401{height:85.385742px;}
.h18_c00401{height:86.121826px;}
.h15_c00401{height:93.084961px;}
.h22_c00401{height:108.729492px;}
.h14_c00401{height:109.511719px;}
.h0_c00401{height:1263.000000px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x4_c00401{left:154.439250px;}
.x39_c00401{left:155.518665px;}
.x3a_c00401{left:174.959400px;}
.x6_c00401{left:183.238785px;}
.x5_c00401{left:188.279850px;}
.x1_c00401{left:209.879535px;}
.x37_c00401{left:221.398635px;}
.x30_c00401{left:234.359850px;}
.x38_c00401{left:244.079385px;}
.x31_c00401{left:257.038950px;}
.x12_c00401{left:265.319850px;}
.x27_c00401{left:275.759535px;}
.x23_c00401{left:286.199385px;}
.xc_c00401{left:289.798515px;}
.x13_c00401{left:291.599700px;}
.x24_c00401{left:312.120000px;}
.xd_c00401{left:315.359850px;}
.x28_c00401{left:327.239850px;}
.x14_c00401{left:358.199850px;}
.x3e_c00401{left:361.798950px;}
.x3f_c00401{left:381.599100px;}
.x32_c00401{left:407.519670px;}
.x29_c00401{left:420.838530px;}
.x15_c00401{left:439.559100px;}
.x33_c00401{left:466.918350px;}
.x2a_c00401{left:467.999400px;}
.x3b_c00401{left:474.119985px;}
.x16_c00401{left:478.080000px;}
.x2b_c00401{left:484.198785px;}
.x2c_c00401{left:494.638500px;}
.x3c_c00401{left:496.798920px;}
.x7_c00401{left:500.759085px;}
.x8_c00401{left:524.159820px;}
.x17_c00401{left:526.679670px;}
.x34_c00401{left:554.038920px;}
.x10_c00401{left:564.478635px;}
.x22_c00401{left:573.118785px;}
.x2d_c00401{left:577.078770px;}
.x11_c00401{left:591.839535px;}
.x18_c00401{left:595.438620px;}
.x3d_c00401{left:599.039385px;}
.x35_c00401{left:603.719520px;}
.x19_c00401{left:622.438620px;}
.x1e_c00401{left:636.479235px;}
.x1f_c00401{left:651.599070px;}
.x1a_c00401{left:673.918950px;}
.x2e_c00401{left:683.638545px;}
.x1b_c00401{left:708.838950px;}
.x1d_c00401{left:709.918350px;}
.x2_c00401{left:711.358605px;}
.x25_c00401{left:712.798920px;}
.xa_c00401{left:715.318770px;}
.x20_c00401{left:718.919535px;}
.x3_c00401{left:727.918950px;}
.x26_c00401{left:730.799520px;}
.x21_c00401{left:744.119985px;}
.x2f_c00401{left:748.798560px;}
.xb_c00401{left:757.079355px;}
.xe_c00401{left:759.958335px;}
.x1c_c00401{left:763.918350px;}
.x36_c00401{left:773.278755px;}
.xf_c00401{left:775.439205px;}
.x9_c00401{left:781.198785px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls16_c00401{letter-spacing:-16.232840pt;}
.ls3b_c00401{letter-spacing:-14.697533pt;}
.ls23_c00401{letter-spacing:-14.307333pt;}
.lsb_c00401{letter-spacing:-11.277933pt;}
.ls24_c00401{letter-spacing:-11.175407pt;}
.lsd_c00401{letter-spacing:-10.878333pt;}
.ls12_c00401{letter-spacing:-10.867827pt;}
.ls10_c00401{letter-spacing:-7.924000pt;}
.lsf_c00401{letter-spacing:-7.266700pt;}
.ls21_c00401{letter-spacing:-6.601000pt;}
.ls2c_c00401{letter-spacing:-6.435287pt;}
.lse_c00401{letter-spacing:-5.285000pt;}
.ls19_c00401{letter-spacing:-5.076400pt;}
.ls3_c00401{letter-spacing:-4.619300pt;}
.ls18_c00401{letter-spacing:-4.618533pt;}
.ls39_c00401{letter-spacing:-4.375000pt;}
.ls28_c00401{letter-spacing:-4.192733pt;}
.ls6_c00401{letter-spacing:-4.035067pt;}
.ls13_c00401{letter-spacing:-3.961300pt;}
.ls1b_c00401{letter-spacing:-3.657000pt;}
.ls2a_c00401{letter-spacing:-3.468340pt;}
.ls34_c00401{letter-spacing:-3.385067pt;}
.ls8_c00401{letter-spacing:-3.366933pt;}
.ls0_c00401{letter-spacing:-3.304000pt;}
.lsc_c00401{letter-spacing:-3.213000pt;}
.ls29_c00401{letter-spacing:-2.774400pt;}
.ls15_c00401{letter-spacing:-2.739533pt;}
.ls7_c00401{letter-spacing:-2.689267pt;}
.ls2_c00401{letter-spacing:-2.639000pt;}
.ls36_c00401{letter-spacing:-2.285440pt;}
.ls9_c00401{letter-spacing:-2.019447pt;}
.ls1_c00401{letter-spacing:-1.981700pt;}
.ls1d_c00401{letter-spacing:-1.585867pt;}
.ls2b_c00401{letter-spacing:-1.332000pt;}
.ls4_c00401{letter-spacing:-1.323700pt;}
.ls27_c00401{letter-spacing:-1.027800pt;}
.ls1e_c00401{letter-spacing:-0.916667pt;}
.ls11_c00401{letter-spacing:-0.658000pt;}
.ls1f_c00401{letter-spacing:-0.653333pt;}
.ls1a_c00401{letter-spacing:-0.592667pt;}
.ls5_c00401{letter-spacing:0.000000pt;}
.ls22_c00401{letter-spacing:0.658000pt;}
.ls25_c00401{letter-spacing:1.152667pt;}
.ls35_c00401{letter-spacing:1.184000pt;}
.ls14_c00401{letter-spacing:1.373600pt;}
.ls3a_c00401{letter-spacing:1.414400pt;}
.lsa_c00401{letter-spacing:1.441600pt;}
.ls30_c00401{letter-spacing:1.466400pt;}
.ls38_c00401{letter-spacing:1.620720pt;}
.ls20_c00401{letter-spacing:1.967467pt;}
.ls31_c00401{letter-spacing:2.667733pt;}
.ls26_c00401{letter-spacing:3.135867pt;}
.ls37_c00401{letter-spacing:3.312720pt;}
.ls1c_c00401{letter-spacing:3.806400pt;}
.ls2d_c00401{letter-spacing:4.339733pt;}
.ls2e_c00401{letter-spacing:4.568200pt;}
.ls32_c00401{letter-spacing:4.856133pt;}
.ls33_c00401{letter-spacing:8.447927pt;}
.ls17_c00401{letter-spacing:10.389600pt;}
.ls2f_c00401{letter-spacing:11.803667pt;}
.ws0_c00401{word-spacing:0.000000pt;}
._18_c00401{margin-left:-6.635525pt;}
._17_c00401{margin-left:-4.497937pt;}
._16_c00401{margin-left:-3.455345pt;}
._d_c00401{margin-left:-1.749156pt;}
._8_c00401{width:0.962892pt;}
._c_c00401{width:2.050881pt;}
._6_c00401{width:3.459268pt;}
._9_c00401{width:4.851253pt;}
._7_c00401{width:6.516842pt;}
._e_c00401{width:7.461774pt;}
._1_c00401{width:8.477726pt;}
._5_c00401{width:10.076196pt;}
._3_c00401{width:11.944958pt;}
._2_c00401{width:13.088970pt;}
._a_c00401{width:14.407123pt;}
._1c_c00401{width:15.959709pt;}
._0_c00401{width:17.304370pt;}
._4_c00401{width:18.868487pt;}
._b_c00401{width:19.870464pt;}
._1a_c00401{width:21.565825pt;}
._1f_c00401{width:22.803068pt;}
._1b_c00401{width:24.083698pt;}
._11_c00401{width:25.591511pt;}
._20_c00401{width:26.559308pt;}
._14_c00401{width:27.996381pt;}
._13_c00401{width:28.976249pt;}
._10_c00401{width:30.191079pt;}
._f_c00401{width:31.453311pt;}
._1e_c00401{width:32.931909pt;}
._19_c00401{width:37.003572pt;}
._15_c00401{width:38.819675pt;}
._12_c00401{width:46.578423pt;}
._1d_c00401{width:59.969089pt;}
.fs15_c00401{font-size:18.000000pt;}
.fs14_c00401{font-size:19.333333pt;}
.fs1b_c00401{font-size:24.666667pt;}
.fs13_c00401{font-size:25.333333pt;}
.fs23_c00401{font-size:29.333333pt;}
.fs17_c00401{font-size:30.000000pt;}
.fs22_c00401{font-size:32.666667pt;}
.fs19_c00401{font-size:34.000000pt;}
.fs16_c00401{font-size:34.666667pt;}
.fs1a_c00401{font-size:36.000000pt;}
.fs18_c00401{font-size:40.666667pt;}
.fsc_c00401{font-size:46.000000pt;}
.fsb_c00401{font-size:46.666667pt;}
.fse_c00401{font-size:50.666667pt;}
.fs21_c00401{font-size:51.333333pt;}
.fsd_c00401{font-size:52.000000pt;}
.fs24_c00401{font-size:53.333333pt;}
.fs20_c00401{font-size:54.666667pt;}
.fs1f_c00401{font-size:56.666667pt;}
.fs1e_c00401{font-size:60.666667pt;}
.fs9_c00401{font-size:62.666667pt;}
.fs25_c00401{font-size:64.000000pt;}
.fsa_c00401{font-size:65.333333pt;}
.fs5_c00401{font-size:66.000000pt;}
.fs4_c00401{font-size:67.333333pt;}
.fs1d_c00401{font-size:68.666667pt;}
.fs26_c00401{font-size:69.333333pt;}
.fs0_c00401{font-size:70.000000pt;}
.fs2_c00401{font-size:70.666667pt;}
.fs3_c00401{font-size:71.333333pt;}
.fs8_c00401{font-size:72.000000pt;}
.fs6_c00401{font-size:72.666667pt;}
.fs1_c00401{font-size:73.333333pt;}
.fs27_c00401{font-size:75.333333pt;}
.fs7_c00401{font-size:76.000000pt;}
.fs11_c00401{font-size:77.333333pt;}
.fs12_c00401{font-size:78.000000pt;}
.fs10_c00401{font-size:79.333333pt;}
.fs1c_c00401{font-size:92.666667pt;}
.fsf_c00401{font-size:93.333333pt;}
.y0_c00401{bottom:0.000000pt;}
.y29_c00401{bottom:137.920880pt;}
.y28_c00401{bottom:164.800800pt;}
.y27_c00401{bottom:164.800947pt;}
.y25_c00401{bottom:191.039853pt;}
.y26_c00401{bottom:191.040533pt;}
.y24_c00401{bottom:217.919773pt;}
.y23_c00401{bottom:243.840800pt;}
.y22_c00401{bottom:243.841040pt;}
.y21_c00401{bottom:270.080627pt;}
.y20_c00401{bottom:296.960547pt;}
.y1f_c00401{bottom:323.200133pt;}
.y1e_c00401{bottom:349.439987pt;}
.y1d_c00401{bottom:376.000533pt;}
.y1c_c00401{bottom:383.359867pt;}
.y1a_c00401{bottom:402.560360pt;}
.y1b_c00401{bottom:402.561080pt;}
.y19_c00401{bottom:429.120120pt;}
.y18_c00401{bottom:429.120987pt;}
.y17_c00401{bottom:482.240493pt;}
.y16_c00401{bottom:508.800253pt;}
.y15_c00401{bottom:508.800413pt;}
.y14_c00401{bottom:535.040000pt;}
.y13_c00401{bottom:535.041987pt;}
.y12_c00401{bottom:561.601747pt;}
.y11_c00401{bottom:587.841333pt;}
.y10_c00401{bottom:614.080907pt;}
.yf_c00401{bottom:640.640667pt;}
.ye_c00401{bottom:664.000533pt;}
.yd_c00401{bottom:668.000933pt;}
.yc_c00401{bottom:694.079587pt;}
.yb_c00401{bottom:694.079813pt;}
.ya_c00401{bottom:746.880760pt;}
.y9_c00401{bottom:773.120347pt;}
.y8_c00401{bottom:799.680093pt;}
.y7_c00401{bottom:799.680893pt;}
.y6_c00401{bottom:826.240640pt;}
.y5_c00401{bottom:852.799800pt;}
.y4_c00401{bottom:905.920893pt;}
.y3_c00401{bottom:958.719827pt;}
.y2_c00401{bottom:984.640853pt;}
.y1_c00401{bottom:1011.200600pt;}
.h1b_c00401{height:18.773437pt;}
.h1a_c00401{height:19.106771pt;}
.h19_c00401{height:25.036458pt;}
.h21_c00401{height:25.726562pt;}
.h1d_c00401{height:30.234375pt;}
.h29_c00401{height:30.593750pt;}
.h28_c00401{height:32.921875pt;}
.h1c_c00401{height:34.260417pt;}
.h1f_c00401{height:34.265625pt;}
.h20_c00401{height:37.546875pt;}
.h1e_c00401{height:42.414062pt;}
.h11_c00401{height:45.460938pt;}
.h10_c00401{height:48.671875pt;}
.h27_c00401{height:51.734375pt;}
.h12_c00401{height:52.406250pt;}
.h13_c00401{height:52.843750pt;}
.h26_c00401{height:54.026042pt;}
.h2a_c00401{height:55.625000pt;}
.h25_c00401{height:57.109375pt;}
.h24_c00401{height:61.140625pt;}
.he_c00401{height:65.359375pt;}
.h2b_c00401{height:66.750000pt;}
.h23_c00401{height:67.392578pt;}
.h2d_c00401{height:68.046875pt;}
.hf_c00401{height:68.140625pt;}
.h1_c00401{height:68.701172pt;}
.ha_c00401{height:68.835938pt;}
.h5_c00401{height:69.355469pt;}
.h8_c00401{height:69.838542pt;}
.h7_c00401{height:70.009766pt;}
.h9_c00401{height:70.226562pt;}
.h2c_c00401{height:70.664062pt;}
.h3_c00401{height:71.218750pt;}
.h16_c00401{height:71.815104pt;}
.h4_c00401{height:71.890625pt;}
.h2_c00401{height:71.972656pt;}
.h6_c00401{height:72.473958pt;}
.hd_c00401{height:72.562500pt;}
.hb_c00401{height:73.234375pt;}
.h2e_c00401{height:74.450521pt;}
.hc_c00401{height:75.109375pt;}
.h17_c00401{height:75.898438pt;}
.h18_c00401{height:76.552734pt;}
.h15_c00401{height:82.742188pt;}
.h22_c00401{height:96.648438pt;}
.h14_c00401{height:97.343750pt;}
.h0_c00401{height:1122.666667pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x4_c00401{left:137.279333pt;}
.x39_c00401{left:138.238813pt;}
.x3a_c00401{left:155.519467pt;}
.x6_c00401{left:162.878920pt;}
.x5_c00401{left:167.359867pt;}
.x1_c00401{left:186.559587pt;}
.x37_c00401{left:196.798787pt;}
.x30_c00401{left:208.319867pt;}
.x38_c00401{left:216.959453pt;}
.x31_c00401{left:228.479067pt;}
.x12_c00401{left:235.839867pt;}
.x27_c00401{left:245.119587pt;}
.x23_c00401{left:254.399453pt;}
.xc_c00401{left:257.598680pt;}
.x13_c00401{left:259.199733pt;}
.x24_c00401{left:277.440000pt;}
.xd_c00401{left:280.319867pt;}
.x28_c00401{left:290.879867pt;}
.x14_c00401{left:318.399867pt;}
.x3e_c00401{left:321.599067pt;}
.x3f_c00401{left:339.199200pt;}
.x32_c00401{left:362.239707pt;}
.x29_c00401{left:374.078693pt;}
.x15_c00401{left:390.719200pt;}
.x33_c00401{left:415.038533pt;}
.x2a_c00401{left:415.999467pt;}
.x3b_c00401{left:421.439987pt;}
.x16_c00401{left:424.960000pt;}
.x2b_c00401{left:430.398920pt;}
.x2c_c00401{left:439.678667pt;}
.x3c_c00401{left:441.599040pt;}
.x7_c00401{left:445.119187pt;}
.x8_c00401{left:465.919840pt;}
.x17_c00401{left:468.159707pt;}
.x34_c00401{left:492.479040pt;}
.x10_c00401{left:501.758787pt;}
.x22_c00401{left:509.438920pt;}
.x2d_c00401{left:512.958907pt;}
.x11_c00401{left:526.079587pt;}
.x18_c00401{left:529.278773pt;}
.x3d_c00401{left:532.479453pt;}
.x35_c00401{left:536.639573pt;}
.x19_c00401{left:553.278773pt;}
.x1e_c00401{left:565.759320pt;}
.x1f_c00401{left:579.199173pt;}
.x1a_c00401{left:599.039067pt;}
.x2e_c00401{left:607.678707pt;}
.x1b_c00401{left:630.079067pt;}
.x1d_c00401{left:631.038533pt;}
.x2_c00401{left:632.318760pt;}
.x25_c00401{left:633.599040pt;}
.xa_c00401{left:635.838907pt;}
.x20_c00401{left:639.039587pt;}
.x3_c00401{left:647.039067pt;}
.x26_c00401{left:649.599573pt;}
.x21_c00401{left:661.439987pt;}
.x2f_c00401{left:665.598720pt;}
.xb_c00401{left:672.959427pt;}
.xe_c00401{left:675.518520pt;}
.x1c_c00401{left:679.038533pt;}
.x36_c00401{left:687.358893pt;}
.xf_c00401{left:689.279293pt;}
.x9_c00401{left:694.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84accd1917f3a1808cb1a406.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_39232ac149a9a62ecb2e6af5.woff2')format("woff");}.ff2_c00402{font-family:ff2_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:ff3_c00402;src:url('chunks/assets/font_45f36491d96ee9012b3638b2.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.364746;font-style:normal;font-weight:normal;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_2f3cbd1a3fa3b9fe2517c8fc.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00402{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{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);}
.m10_c00402{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203431,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234513,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m0_c00402{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299451,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls1c_c00402{letter-spacing:-20.789175px;}
.ls16_c00402{letter-spacing:-13.149045px;}
.ls20_c00402{letter-spacing:-9.644250px;}
.ls12_c00402{letter-spacing:-8.588580px;}
.ls3_c00402{letter-spacing:-8.175038px;}
.lse_c00402{letter-spacing:-7.426125px;}
.ls1e_c00402{letter-spacing:-6.813225px;}
.ls18_c00402{letter-spacing:-6.172125px;}
.lsf_c00402{letter-spacing:-5.945625px;}
.ls1a_c00402{letter-spacing:-5.652675px;}
.ls19_c00402{letter-spacing:-5.601600px;}
.lsc_c00402{letter-spacing:-5.196713px;}
.ls4_c00402{letter-spacing:-4.456463px;}
.ls1f_c00402{letter-spacing:-4.374000px;}
.ls13_c00402{letter-spacing:-3.891323px;}
.lsb_c00402{letter-spacing:-3.860025px;}
.ls7_c00402{letter-spacing:-3.784995px;}
.lsd_c00402{letter-spacing:-3.717000px;}
.lsa_c00402{letter-spacing:-3.089625px;}
.ls10_c00402{letter-spacing:-3.063600px;}
.ls1_c00402{letter-spacing:-2.968875px;}
.ls11_c00402{letter-spacing:-2.560778px;}
.ls14_c00402{letter-spacing:-2.504775px;}
.ls17_c00402{letter-spacing:-2.452500px;}
.ls8_c00402{letter-spacing:-2.310398px;}
.ls0_c00402{letter-spacing:-2.229413px;}
.ls1b_c00402{letter-spacing:-1.716000px;}
.ls9_c00402{letter-spacing:-1.540800px;}
.ls6_c00402{letter-spacing:-1.489163px;}
.ls5_c00402{letter-spacing:-0.740250px;}
.ls2_c00402{letter-spacing:0.000000px;}
.ls15_c00402{letter-spacing:1.596375px;}
.ls1d_c00402{letter-spacing:7.597800px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:0.000000px;}
._1d_c00402{margin-left:-19.678696px;}
._13_c00402{margin-left:-10.719807px;}
._17_c00402{margin-left:-9.630501px;}
._1f_c00402{margin-left:-7.535693px;}
._6_c00402{margin-left:-5.612006px;}
._15_c00402{margin-left:-3.691949px;}
._16_c00402{margin-left:-2.326542px;}
._7_c00402{margin-left:-1.115660px;}
._0_c00402{width:1.971841px;}
._4_c00402{width:3.028666px;}
._3_c00402{width:4.729190px;}
._2_c00402{width:6.532030px;}
._8_c00402{width:8.217970px;}
._9_c00402{width:9.677589px;}
._5_c00402{width:11.086321px;}
._14_c00402{width:12.145264px;}
._f_c00402{width:13.554844px;}
._1_c00402{width:14.713219px;}
._1e_c00402{width:17.127436px;}
._d_c00402{width:18.639976px;}
._b_c00402{width:20.207458px;}
._11_c00402{width:21.287216px;}
._e_c00402{width:23.965958px;}
._10_c00402{width:25.412803px;}
._a_c00402{width:26.937804px;}
._c_c00402{width:28.086425px;}
._20_c00402{width:32.660686px;}
._22_c00402{width:33.904000px;}
._21_c00402{width:35.382553px;}
._1b_c00402{width:36.831836px;}
._19_c00402{width:38.953271px;}
._1c_c00402{width:41.424788px;}
._12_c00402{width:42.427885px;}
._1a_c00402{width:45.383298px;}
._18_c00402{width:48.021839px;}
.fc0_c00402{color:transparent;}
.fs7_c00402{font-size:68.250000px;}
.fs5_c00402{font-size:69.000000px;}
.fsb_c00402{font-size:72.000000px;}
.fsc_c00402{font-size:72.750000px;}
.fs8_c00402{font-size:74.250000px;}
.fsd_c00402{font-size:76.500000px;}
.fs6_c00402{font-size:78.000000px;}
.fs0_c00402{font-size:78.750000px;}
.fs3_c00402{font-size:79.500000px;}
.fs4_c00402{font-size:80.250000px;}
.fse_c00402{font-size:81.000000px;}
.fsa_c00402{font-size:81.750000px;}
.fs1_c00402{font-size:82.500000px;}
.fs2_c00402{font-size:84.750000px;}
.fs9_c00402{font-size:85.500000px;}
.y0_c00402{bottom:0.000000px;}
.y21_c00402{bottom:306.359595px;}
.y20_c00402{bottom:335.520750px;}
.y1f_c00402{bottom:335.520990px;}
.y1e_c00402{bottom:365.760915px;}
.y1d_c00402{bottom:395.280435px;}
.y1c_c00402{bottom:425.520315px;}
.y1b_c00402{bottom:455.039985px;}
.y1a_c00402{bottom:455.041665px;}
.y19_c00402{bottom:485.281590px;}
.y18_c00402{bottom:515.161305px;}
.y16_c00402{bottom:545.040795px;}
.y17_c00402{bottom:545.041035px;}
.y15_c00402{bottom:574.199850px;}
.y14_c00402{bottom:574.201080px;}
.y13_c00402{bottom:604.440990px;}
.y12_c00402{bottom:633.241950px;}
.y11_c00402{bottom:663.121680px;}
.y10_c00402{bottom:723.241305px;}
.yf_c00402{bottom:753.121035px;}
.ye_c00402{bottom:782.639985px;}
.yc_c00402{bottom:812.518845px;}
.yd_c00402{bottom:812.519715px;}
.yb_c00402{bottom:842.758755px;}
.ya_c00402{bottom:872.280105px;}
.y9_c00402{bottom:902.159820px;}
.y8_c00402{bottom:902.160120px;}
.y7_c00402{bottom:931.321260px;}
.y6_c00402{bottom:961.200990px;}
.y5_c00402{bottom:961.201170px;}
.y4_c00402{bottom:990.720705px;}
.y3_c00402{bottom:1050.839535px;}
.y2_c00402{bottom:1110.239730px;}
.y1_c00402{bottom:1140.479640px;}
.h9_c00402{height:66.983643px;}
.h7_c00402{height:71.964844px;}
.ha_c00402{height:72.872314px;}
.he_c00402{height:75.093750px;}
.hf_c00402{height:75.875977px;}
.h1_c00402{height:77.288818px;}
.hd_c00402{height:77.440430px;}
.h8_c00402{height:78.609375px;}
.h6_c00402{height:78.760986px;}
.h14_c00402{height:79.497070px;}
.h11_c00402{height:79.787109px;}
.h4_c00402{height:80.121094px;}
.h12_c00402{height:80.233154px;}
.h5_c00402{height:80.876953px;}
.h2_c00402{height:80.969238px;}
.h15_c00402{height:81.533203px;}
.h13_c00402{height:81.632812px;}
.hc_c00402{height:82.388672px;}
.h10_c00402{height:83.144531px;}
.h3_c00402{height:83.177490px;}
.hb_c00402{height:84.498047px;}
.h0_c00402{height:1263.000000px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x17_c00402{left:157.677405px;}
.x8_c00402{left:158.758500px;}
.x1_c00402{left:159.839565px;}
.x1e_c00402{left:188.639100px;}
.x9_c00402{left:192.958350px;}
.x1f_c00402{left:222.838950px;}
.xc_c00402{left:229.679700px;}
.x10_c00402{left:241.559685px;}
.xd_c00402{left:244.438635px;}
.x29_c00402{left:282.959400px;}
.x2c_c00402{left:290.518635px;}
.x18_c00402{left:294.478635px;}
.x2a_c00402{left:305.638500px;}
.x19_c00402{left:307.078785px;}
.x2d_c00402{left:311.038950px;}
.x20_c00402{left:325.438635px;}
.x11_c00402{left:327.958350px;}
.x2_c00402{left:339.479235px;}
.x3_c00402{left:353.878950px;}
.x12_c00402{left:388.078815px;}
.x21_c00402{left:406.438665px;}
.x13_c00402{left:421.558635px;}
.xa_c00402{left:429.478635px;}
.x22_c00402{left:437.039385px;}
.xb_c00402{left:445.318770px;}
.x4_c00402{left:457.198785px;}
.x23_c00402{left:469.078770px;}
.x5_c00402{left:472.318770px;}
.x14_c00402{left:490.319235px;}
.x15_c00402{left:511.198785px;}
.xe_c00402{left:520.199850px;}
.x6_c00402{left:522.719565px;}
.x7_c00402{left:537.119385px;}
.xf_c00402{left:542.878920px;}
.x24_c00402{left:549.719565px;}
.x1a_c00402{left:557.998950px;}
.x1b_c00402{left:578.519070px;}
.x2b_c00402{left:590.758530px;}
.x25_c00402{left:598.319235px;}
.x16_c00402{left:601.918350px;}
.x26_c00402{left:621.359250px;}
.x27_c00402{left:679.319235px;}
.x1c_c00402{left:705.599070px;}
.x1d_c00402{left:720.719100px;}
.x28_c00402{left:776.159370px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls1c_c00402{letter-spacing:-18.479267pt;}
.ls16_c00402{letter-spacing:-11.688040pt;}
.ls20_c00402{letter-spacing:-8.572667pt;}
.ls12_c00402{letter-spacing:-7.634293pt;}
.ls3_c00402{letter-spacing:-7.266700pt;}
.lse_c00402{letter-spacing:-6.601000pt;}
.ls1e_c00402{letter-spacing:-6.056200pt;}
.ls18_c00402{letter-spacing:-5.486333pt;}
.lsf_c00402{letter-spacing:-5.285000pt;}
.ls1a_c00402{letter-spacing:-5.024600pt;}
.ls19_c00402{letter-spacing:-4.979200pt;}
.lsc_c00402{letter-spacing:-4.619300pt;}
.ls4_c00402{letter-spacing:-3.961300pt;}
.ls1f_c00402{letter-spacing:-3.888000pt;}
.ls13_c00402{letter-spacing:-3.458953pt;}
.lsb_c00402{letter-spacing:-3.431133pt;}
.ls7_c00402{letter-spacing:-3.364440pt;}
.lsd_c00402{letter-spacing:-3.304000pt;}
.lsa_c00402{letter-spacing:-2.746333pt;}
.ls10_c00402{letter-spacing:-2.723200pt;}
.ls1_c00402{letter-spacing:-2.639000pt;}
.ls11_c00402{letter-spacing:-2.276247pt;}
.ls14_c00402{letter-spacing:-2.226467pt;}
.ls17_c00402{letter-spacing:-2.180000pt;}
.ls8_c00402{letter-spacing:-2.053687pt;}
.ls0_c00402{letter-spacing:-1.981700pt;}
.ls1b_c00402{letter-spacing:-1.525333pt;}
.ls9_c00402{letter-spacing:-1.369600pt;}
.ls6_c00402{letter-spacing:-1.323700pt;}
.ls5_c00402{letter-spacing:-0.658000pt;}
.ls2_c00402{letter-spacing:0.000000pt;}
.ls15_c00402{letter-spacing:1.419000pt;}
.ls1d_c00402{letter-spacing:6.753600pt;}
.ws0_c00402{word-spacing:0.000000pt;}
._1d_c00402{margin-left:-17.492174pt;}
._13_c00402{margin-left:-9.528717pt;}
._17_c00402{margin-left:-8.560445pt;}
._1f_c00402{margin-left:-6.698394pt;}
._6_c00402{margin-left:-4.988450pt;}
._15_c00402{margin-left:-3.281732pt;}
._16_c00402{margin-left:-2.068038pt;}
._7_c00402{margin-left:-0.991698pt;}
._0_c00402{width:1.752747pt;}
._4_c00402{width:2.692147pt;}
._3_c00402{width:4.203725pt;}
._2_c00402{width:5.806249pt;}
._8_c00402{width:7.304863pt;}
._9_c00402{width:8.602302pt;}
._5_c00402{width:9.854508pt;}
._14_c00402{width:10.795790pt;}
._f_c00402{width:12.048751pt;}
._1_c00402{width:13.078417pt;}
._1e_c00402{width:15.224388pt;}
._d_c00402{width:16.568868pt;}
._b_c00402{width:17.962185pt;}
._11_c00402{width:18.921970pt;}
._e_c00402{width:21.303074pt;}
._10_c00402{width:22.589158pt;}
._a_c00402{width:23.944715pt;}
._c_c00402{width:24.965711pt;}
._20_c00402{width:29.031721pt;}
._22_c00402{width:30.136889pt;}
._21_c00402{width:31.451158pt;}
._1b_c00402{width:32.739409pt;}
._19_c00402{width:34.625130pt;}
._1c_c00402{width:36.822034pt;}
._12_c00402{width:37.713675pt;}
._1a_c00402{width:40.340709pt;}
._18_c00402{width:42.686079pt;}
.fs7_c00402{font-size:60.666667pt;}
.fs5_c00402{font-size:61.333333pt;}
.fsb_c00402{font-size:64.000000pt;}
.fsc_c00402{font-size:64.666667pt;}
.fs8_c00402{font-size:66.000000pt;}
.fsd_c00402{font-size:68.000000pt;}
.fs6_c00402{font-size:69.333333pt;}
.fs0_c00402{font-size:70.000000pt;}
.fs3_c00402{font-size:70.666667pt;}
.fs4_c00402{font-size:71.333333pt;}
.fse_c00402{font-size:72.000000pt;}
.fsa_c00402{font-size:72.666667pt;}
.fs1_c00402{font-size:73.333333pt;}
.fs2_c00402{font-size:75.333333pt;}
.fs9_c00402{font-size:76.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y21_c00402{bottom:272.319640pt;}
.y20_c00402{bottom:298.240667pt;}
.y1f_c00402{bottom:298.240880pt;}
.y1e_c00402{bottom:325.120813pt;}
.y1d_c00402{bottom:351.360387pt;}
.y1c_c00402{bottom:378.240280pt;}
.y1b_c00402{bottom:404.479987pt;}
.y1a_c00402{bottom:404.481480pt;}
.y19_c00402{bottom:431.361413pt;}
.y18_c00402{bottom:457.921160pt;}
.y16_c00402{bottom:484.480707pt;}
.y17_c00402{bottom:484.480920pt;}
.y15_c00402{bottom:510.399867pt;}
.y14_c00402{bottom:510.400960pt;}
.y13_c00402{bottom:537.280880pt;}
.y12_c00402{bottom:562.881733pt;}
.y11_c00402{bottom:589.441493pt;}
.y10_c00402{bottom:642.881160pt;}
.yf_c00402{bottom:669.440920pt;}
.ye_c00402{bottom:695.679987pt;}
.yc_c00402{bottom:722.238973pt;}
.yd_c00402{bottom:722.239747pt;}
.yb_c00402{bottom:749.118893pt;}
.ya_c00402{bottom:775.360093pt;}
.y9_c00402{bottom:801.919840pt;}
.y8_c00402{bottom:801.920107pt;}
.y7_c00402{bottom:827.841120pt;}
.y6_c00402{bottom:854.400880pt;}
.y5_c00402{bottom:854.401040pt;}
.y4_c00402{bottom:880.640627pt;}
.y3_c00402{bottom:934.079587pt;}
.y2_c00402{bottom:986.879760pt;}
.y1_c00402{bottom:1013.759680pt;}
.h9_c00402{height:59.541016pt;}
.h7_c00402{height:63.968750pt;}
.ha_c00402{height:64.775391pt;}
.he_c00402{height:66.750000pt;}
.hf_c00402{height:67.445312pt;}
.h1_c00402{height:68.701172pt;}
.hd_c00402{height:68.835938pt;}
.h8_c00402{height:69.875000pt;}
.h6_c00402{height:70.009766pt;}
.h14_c00402{height:70.664062pt;}
.h11_c00402{height:70.921875pt;}
.h4_c00402{height:71.218750pt;}
.h12_c00402{height:71.318359pt;}
.h5_c00402{height:71.890625pt;}
.h2_c00402{height:71.972656pt;}
.h15_c00402{height:72.473958pt;}
.h13_c00402{height:72.562500pt;}
.hc_c00402{height:73.234375pt;}
.h10_c00402{height:73.906250pt;}
.h3_c00402{height:73.935547pt;}
.hb_c00402{height:75.109375pt;}
.h0_c00402{height:1122.666667pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x17_c00402{left:140.157693pt;}
.x8_c00402{left:141.118667pt;}
.x1_c00402{left:142.079613pt;}
.x1e_c00402{left:167.679200pt;}
.x9_c00402{left:171.518533pt;}
.x1f_c00402{left:198.079067pt;}
.xc_c00402{left:204.159733pt;}
.x10_c00402{left:214.719720pt;}
.xd_c00402{left:217.278787pt;}
.x29_c00402{left:251.519467pt;}
.x2c_c00402{left:258.238787pt;}
.x18_c00402{left:261.758787pt;}
.x2a_c00402{left:271.678667pt;}
.x19_c00402{left:272.958920pt;}
.x2d_c00402{left:276.479067pt;}
.x20_c00402{left:289.278787pt;}
.x11_c00402{left:291.518533pt;}
.x2_c00402{left:301.759320pt;}
.x3_c00402{left:314.559067pt;}
.x12_c00402{left:344.958947pt;}
.x21_c00402{left:361.278813pt;}
.x13_c00402{left:374.718787pt;}
.xa_c00402{left:381.758787pt;}
.x22_c00402{left:388.479453pt;}
.xb_c00402{left:395.838907pt;}
.x4_c00402{left:406.398920pt;}
.x23_c00402{left:416.958907pt;}
.x5_c00402{left:419.838907pt;}
.x14_c00402{left:435.839320pt;}
.x15_c00402{left:454.398920pt;}
.xe_c00402{left:462.399867pt;}
.x6_c00402{left:464.639613pt;}
.x7_c00402{left:477.439453pt;}
.xf_c00402{left:482.559040pt;}
.x24_c00402{left:488.639613pt;}
.x1a_c00402{left:495.999067pt;}
.x1b_c00402{left:514.239173pt;}
.x2b_c00402{left:525.118693pt;}
.x25_c00402{left:531.839320pt;}
.x16_c00402{left:535.038533pt;}
.x26_c00402{left:552.319333pt;}
.x27_c00402{left:603.839320pt;}
.x1c_c00402{left:627.199173pt;}
.x1d_c00402{left:640.639200pt;}
.x28_c00402{left:689.919440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d08787c15ee7fac303b03dc.woff2')format("woff");}.ff1_c00403{font-family:ff1_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:ff2_c00403;src:url('chunks/assets/font_6fa9c0359cf0c523084d10a2.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_edc094ba62f53c55f9b204fa.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_c552d41b2dc8b5ab0ad28108.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_0016011fd6c21f57ea7650d6.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_4e1a559c86e8cd0f5fdb9a74.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.364746;font-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_c00403{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m27_c00403{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m29_c00403{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m26_c00403{transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);}
.m1c_c00403{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m1e_c00403{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m24_c00403{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m20_c00403{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m1d_c00403{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1f_c00403{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m14_c00403{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m22_c00403{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m23_c00403{transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m3_c00403{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262376,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.334211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334211,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls2d_c00403{letter-spacing:-23.173200px;}
.ls22_c00403{letter-spacing:-15.287250px;}
.ls15_c00403{letter-spacing:-10.980900px;}
.ls2a_c00403{letter-spacing:-9.939375px;}
.ls11_c00403{letter-spacing:-8.175038px;}
.ls2e_c00403{letter-spacing:-6.685875px;}
.lsb_c00403{letter-spacing:-5.945625px;}
.ls1c_c00403{letter-spacing:-5.345190px;}
.ls29_c00403{letter-spacing:-5.309850px;}
.ls20_c00403{letter-spacing:-5.296875px;}
.ls1f_c00403{letter-spacing:-5.196713px;}
.ls28_c00403{letter-spacing:-4.634850px;}
.ls0_c00403{letter-spacing:-4.629075px;}
.lsd_c00403{letter-spacing:-4.456463px;}
.ls13_c00403{letter-spacing:-4.438125px;}
.ls16_c00403{letter-spacing:-4.044900px;}
.ls1e_c00403{letter-spacing:-3.784995px;}
.ls5_c00403{letter-spacing:-3.717000px;}
.ls18_c00403{letter-spacing:-3.588750px;}
.lsc_c00403{letter-spacing:-3.575400px;}
.ls25_c00403{letter-spacing:-3.427920px;}
.ls9_c00403{letter-spacing:-3.114675px;}
.ls14_c00403{letter-spacing:-3.052500px;}
.ls2_c00403{letter-spacing:-3.031875px;}
.lse_c00403{letter-spacing:-3.029400px;}
.lsf_c00403{letter-spacing:-2.997000px;}
.ls7_c00403{letter-spacing:-2.968875px;}
.ls19_c00403{letter-spacing:-2.592075px;}
.ls27_c00403{letter-spacing:-2.431905px;}
.ls30_c00403{letter-spacing:-2.403450px;}
.ls1_c00403{letter-spacing:-2.267213px;}
.ls6_c00403{letter-spacing:-2.229413px;}
.ls3_c00403{letter-spacing:-1.512000px;}
.ls8_c00403{letter-spacing:-1.489163px;}
.ls23_c00403{letter-spacing:-0.866550px;}
.ls1a_c00403{letter-spacing:-0.843210px;}
.ls1d_c00403{letter-spacing:-0.794475px;}
.lsa_c00403{letter-spacing:-0.740250px;}
.ls2c_c00403{letter-spacing:-0.734400px;}
.ls4_c00403{letter-spacing:0.000000px;}
.ls10_c00403{letter-spacing:1.591200px;}
.ls21_c00403{letter-spacing:1.890840px;}
.ls24_c00403{letter-spacing:2.408850px;}
.ls2f_c00403{letter-spacing:3.637710px;}
.ls2b_c00403{letter-spacing:3.892118px;}
.ls1b_c00403{letter-spacing:6.295605px;}
.ls26_c00403{letter-spacing:14.309205px;}
.ls17_c00403{letter-spacing:14.584875px;}
.ls12_c00403{letter-spacing:30.774713px;}
.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;}
._1a_c00403{margin-left:-7.696089px;}
._10_c00403{margin-left:-4.359957px;}
._0_c00403{margin-left:-2.668111px;}
._c_c00403{margin-left:-1.022129px;}
._11_c00403{width:1.051668px;}
._d_c00403{width:2.096667px;}
._2_c00403{width:3.520488px;}
._f_c00403{width:4.793095px;}
._1_c00403{width:6.654072px;}
._12_c00403{width:7.889306px;}
._e_c00403{width:8.992857px;}
._8_c00403{width:10.388239px;}
._9_c00403{width:12.108689px;}
._19_c00403{width:13.237221px;}
._a_c00403{width:14.302976px;}
._14_c00403{width:15.951429px;}
._1c_c00403{width:17.162508px;}
._13_c00403{width:19.260460px;}
._1b_c00403{width:20.535904px;}
._17_c00403{width:22.006539px;}
._b_c00403{width:23.576026px;}
._15_c00403{width:24.617131px;}
._18_c00403{width:26.070618px;}
._16_c00403{width:27.118543px;}
._4_c00403{width:28.849854px;}
._1d_c00403{width:29.980133px;}
._6_c00403{width:31.549568px;}
._5_c00403{width:34.697161px;}
._7_c00403{width:37.088397px;}
._3_c00403{width:39.665989px;}
.fc0_c00403{color:transparent;}
.fs8_c00403{font-size:56.250000px;}
.fs12_c00403{font-size:61.500000px;}
.fs10_c00403{font-size:68.250000px;}
.fsb_c00403{font-size:71.250000px;}
.fse_c00403{font-size:72.000000px;}
.fsa_c00403{font-size:72.750000px;}
.fs9_c00403{font-size:73.500000px;}
.fs2_c00403{font-size:75.750000px;}
.fs11_c00403{font-size:76.500000px;}
.fsf_c00403{font-size:77.250000px;}
.fs7_c00403{font-size:78.000000px;}
.fs1_c00403{font-size:78.750000px;}
.fsc_c00403{font-size:79.500000px;}
.fs5_c00403{font-size:80.250000px;}
.fs6_c00403{font-size:81.000000px;}
.fs3_c00403{font-size:81.750000px;}
.fs0_c00403{font-size:82.500000px;}
.fsd_c00403{font-size:84.000000px;}
.fs4_c00403{font-size:84.750000px;}
.y0_c00403{bottom:0.000000px;}
.y2d_c00403{bottom:102.240465px;}
.y2c_c00403{bottom:156.240435px;}
.y2b_c00403{bottom:156.240780px;}
.y2a_c00403{bottom:185.760315px;}
.y29_c00403{bottom:215.279850px;}
.y28_c00403{bottom:215.280720px;}
.y26_c00403{bottom:245.158260px;}
.y27_c00403{bottom:245.160435px;}
.y25_c00403{bottom:274.319415px;}
.y24_c00403{bottom:304.199130px;}
.y23_c00403{bottom:333.360285px;}
.y21_c00403{bottom:363.240255px;}
.y22_c00403{bottom:363.240900px;}
.y20_c00403{bottom:393.119985px;}
.y1f_c00403{bottom:423.720750px;}
.y1e_c00403{bottom:453.599670px;}
.y1d_c00403{bottom:453.599850px;}
.y1c_c00403{bottom:483.119385px;}
.y1b_c00403{bottom:483.119415px;}
.y19_c00403{bottom:512.639940px;}
.y1a_c00403{bottom:512.640750px;}
.y18_c00403{bottom:542.519670px;}
.y17_c00403{bottom:542.519850px;}
.y16_c00403{bottom:572.039385px;}
.y15_c00403{bottom:572.041125px;}
.y14_c00403{bottom:601.920840px;}
.y13_c00403{bottom:631.800570px;}
.y12_c00403{bottom:691.201035px;}
.y11_c00403{bottom:752.400885px;}
.y10_c00403{bottom:780.119940px;}
.yf_c00403{bottom:810.720330px;}
.ye_c00403{bottom:840.239865px;}
.yd_c00403{bottom:840.240675px;}
.yb_c00403{bottom:870.119655px;}
.yc_c00403{bottom:870.120390px;}
.ya_c00403{bottom:900.359580px;}
.y9_c00403{bottom:929.520720px;}
.y8_c00403{bottom:959.760450px;}
.y7_c00403{bottom:988.919490px;}
.y6_c00403{bottom:988.920570px;}
.y5_c00403{bottom:1018.800300px;}
.y4_c00403{bottom:1048.319820px;}
.y3_c00403{bottom:1048.320195px;}
.y2_c00403{bottom:1078.920600px;}
.y1_c00403{bottom:1137.959925px;}
.hb_c00403{height:58.666992px;}
.h19_c00403{height:60.779297px;}
.h16_c00403{height:71.182617px;}
.he_c00403{height:74.311523px;}
.h7_c00403{height:74.344482px;}
.h18_c00403{height:75.080566px;}
.h14_c00403{height:75.093750px;}
.hd_c00403{height:75.875977px;}
.h3_c00403{height:76.341797px;}
.ha_c00403{height:76.552734px;}
.hc_c00403{height:76.658203px;}
.h4_c00403{height:77.288818px;}
.h15_c00403{height:77.853516px;}
.h8_c00403{height:78.760986px;}
.h2_c00403{height:79.365234px;}
.h9_c00403{height:79.497070px;}
.h11_c00403{height:80.121094px;}
.h5_c00403{height:80.233154px;}
.h17_c00403{height:80.791992px;}
.hf_c00403{height:80.876953px;}
.h1a_c00403{height:80.969238px;}
.h10_c00403{height:81.632812px;}
.h13_c00403{height:82.388672px;}
.h12_c00403{height:82.441406px;}
.h1_c00403{height:83.144531px;}
.h6_c00403{height:83.177490px;}
.h0_c00403{height:1263.000000px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x11_c00403{left:153.355230px;}
.x1_c00403{left:154.439250px;}
.xb_c00403{left:168.118815px;}
.x2_c00403{left:187.918950px;}
.x12_c00403{left:217.079385px;}
.x13_c00403{left:241.918950px;}
.x5_c00403{left:245.158785px;}
.xc_c00403{left:255.239250px;}
.x31_c00403{left:263.879535px;}
.x6_c00403{left:273.599100px;}
.x32_c00403{left:278.279250px;}
.xd_c00403{left:285.838515px;}
.x27_c00403{left:287.278800px;}
.x28_c00403{left:311.399850px;}
.x14_c00403{left:313.919535px;}
.x1f_c00403{left:342.359850px;}
.x29_c00403{left:349.918950px;}
.x20_c00403{left:370.080000px;}
.x15_c00403{left:374.399235px;}
.xe_c00403{left:422.639700px;}
.x16_c00403{left:433.079400px;}
.xf_c00403{left:459.359250px;}
.x17_c00403{left:462.599070px;}
.x2a_c00403{left:465.479685px;}
.x1d_c00403{left:484.559685px;}
.x18_c00403{left:487.799565px;}
.x1e_c00403{left:502.558635px;}
.x3_c00403{left:525.959385px;}
.x34_c00403{left:531.719100px;}
.x4_c00403{left:541.079400px;}
.x2b_c00403{left:542.519670px;}
.x10_c00403{left:551.519070px;}
.x35_c00403{left:557.278800px;}
.x2c_c00403{left:566.639100px;}
.x7_c00403{left:574.559100px;}
.x19_c00403{left:580.679670px;}
.x36_c00403{left:587.879520px;}
.x8_c00403{left:592.198785px;}
.x2d_c00403{left:595.079400px;}
.x1a_c00403{left:601.559100px;}
.x9_c00403{left:607.318770px;}
.x23_c00403{left:609.119985px;}
.xa_c00403{left:629.638545px;}
.x24_c00403{left:631.439670px;}
.x21_c00403{left:645.839535px;}
.x22_c00403{left:665.639700px;}
.x25_c00403{left:675.718545px;}
.x2e_c00403{left:682.199850px;}
.x37_c00403{left:697.679070px;}
.x1b_c00403{left:702.000000px;}
.x26_c00403{left:705.239820px;}
.x38_c00403{left:710.999400px;}
.x1c_c00403{left:728.639100px;}
.x2f_c00403{left:729.718545px;}
.x30_c00403{left:753.478635px;}
.x39_c00403{left:763.199850px;}
.x33_c00403{left:780.119385px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls2d_c00403{letter-spacing:-20.598400pt;}
.ls22_c00403{letter-spacing:-13.588667pt;}
.ls15_c00403{letter-spacing:-9.760800pt;}
.ls2a_c00403{letter-spacing:-8.835000pt;}
.ls11_c00403{letter-spacing:-7.266700pt;}
.ls2e_c00403{letter-spacing:-5.943000pt;}
.lsb_c00403{letter-spacing:-5.285000pt;}
.ls1c_c00403{letter-spacing:-4.751280pt;}
.ls29_c00403{letter-spacing:-4.719867pt;}
.ls20_c00403{letter-spacing:-4.708333pt;}
.ls1f_c00403{letter-spacing:-4.619300pt;}
.ls28_c00403{letter-spacing:-4.119867pt;}
.ls0_c00403{letter-spacing:-4.114733pt;}
.lsd_c00403{letter-spacing:-3.961300pt;}
.ls13_c00403{letter-spacing:-3.945000pt;}
.ls16_c00403{letter-spacing:-3.595467pt;}
.ls1e_c00403{letter-spacing:-3.364440pt;}
.ls5_c00403{letter-spacing:-3.304000pt;}
.ls18_c00403{letter-spacing:-3.190000pt;}
.lsc_c00403{letter-spacing:-3.178133pt;}
.ls25_c00403{letter-spacing:-3.047040pt;}
.ls9_c00403{letter-spacing:-2.768600pt;}
.ls14_c00403{letter-spacing:-2.713333pt;}
.ls2_c00403{letter-spacing:-2.695000pt;}
.lse_c00403{letter-spacing:-2.692800pt;}
.lsf_c00403{letter-spacing:-2.664000pt;}
.ls7_c00403{letter-spacing:-2.639000pt;}
.ls19_c00403{letter-spacing:-2.304067pt;}
.ls27_c00403{letter-spacing:-2.161693pt;}
.ls30_c00403{letter-spacing:-2.136400pt;}
.ls1_c00403{letter-spacing:-2.015300pt;}
.ls6_c00403{letter-spacing:-1.981700pt;}
.ls3_c00403{letter-spacing:-1.344000pt;}
.ls8_c00403{letter-spacing:-1.323700pt;}
.ls23_c00403{letter-spacing:-0.770267pt;}
.ls1a_c00403{letter-spacing:-0.749520pt;}
.ls1d_c00403{letter-spacing:-0.706200pt;}
.lsa_c00403{letter-spacing:-0.658000pt;}
.ls2c_c00403{letter-spacing:-0.652800pt;}
.ls4_c00403{letter-spacing:0.000000pt;}
.ls10_c00403{letter-spacing:1.414400pt;}
.ls21_c00403{letter-spacing:1.680747pt;}
.ls24_c00403{letter-spacing:2.141200pt;}
.ls2f_c00403{letter-spacing:3.233520pt;}
.ls2b_c00403{letter-spacing:3.459660pt;}
.ls1b_c00403{letter-spacing:5.596093pt;}
.ls26_c00403{letter-spacing:12.719293pt;}
.ls17_c00403{letter-spacing:12.964333pt;}
.ls12_c00403{letter-spacing:27.355300pt;}
.ws0_c00403{word-spacing:0.000000pt;}
._1a_c00403{margin-left:-6.840968pt;}
._10_c00403{margin-left:-3.875517pt;}
._0_c00403{margin-left:-2.371654pt;}
._c_c00403{margin-left:-0.908559pt;}
._11_c00403{width:0.934816pt;}
._d_c00403{width:1.863704pt;}
._2_c00403{width:3.129323pt;}
._f_c00403{width:4.260529pt;}
._1_c00403{width:5.914731pt;}
._12_c00403{width:7.012717pt;}
._e_c00403{width:7.993651pt;}
._8_c00403{width:9.233991pt;}
._9_c00403{width:10.763279pt;}
._19_c00403{width:11.766419pt;}
._a_c00403{width:12.713757pt;}
._14_c00403{width:14.179048pt;}
._1c_c00403{width:15.255562pt;}
._13_c00403{width:17.120409pt;}
._1b_c00403{width:18.254137pt;}
._17_c00403{width:19.561368pt;}
._b_c00403{width:20.956468pt;}
._15_c00403{width:21.881894pt;}
._18_c00403{width:23.173883pt;}
._16_c00403{width:24.105372pt;}
._4_c00403{width:25.644315pt;}
._1d_c00403{width:26.649007pt;}
._6_c00403{width:28.044060pt;}
._5_c00403{width:30.841921pt;}
._7_c00403{width:32.967464pt;}
._3_c00403{width:35.258657pt;}
.fs8_c00403{font-size:50.000000pt;}
.fs12_c00403{font-size:54.666667pt;}
.fs10_c00403{font-size:60.666667pt;}
.fsb_c00403{font-size:63.333333pt;}
.fse_c00403{font-size:64.000000pt;}
.fsa_c00403{font-size:64.666667pt;}
.fs9_c00403{font-size:65.333333pt;}
.fs2_c00403{font-size:67.333333pt;}
.fs11_c00403{font-size:68.000000pt;}
.fsf_c00403{font-size:68.666667pt;}
.fs7_c00403{font-size:69.333333pt;}
.fs1_c00403{font-size:70.000000pt;}
.fsc_c00403{font-size:70.666667pt;}
.fs5_c00403{font-size:71.333333pt;}
.fs6_c00403{font-size:72.000000pt;}
.fs3_c00403{font-size:72.666667pt;}
.fs0_c00403{font-size:73.333333pt;}
.fsd_c00403{font-size:74.666667pt;}
.fs4_c00403{font-size:75.333333pt;}
.y0_c00403{bottom:0.000000pt;}
.y2d_c00403{bottom:90.880413pt;}
.y2c_c00403{bottom:138.880387pt;}
.y2b_c00403{bottom:138.880693pt;}
.y2a_c00403{bottom:165.120280pt;}
.y29_c00403{bottom:191.359867pt;}
.y28_c00403{bottom:191.360640pt;}
.y26_c00403{bottom:217.918453pt;}
.y27_c00403{bottom:217.920387pt;}
.y25_c00403{bottom:243.839480pt;}
.y24_c00403{bottom:270.399227pt;}
.y23_c00403{bottom:296.320253pt;}
.y21_c00403{bottom:322.880227pt;}
.y22_c00403{bottom:322.880800pt;}
.y20_c00403{bottom:349.439987pt;}
.y1f_c00403{bottom:376.640667pt;}
.y1e_c00403{bottom:403.199707pt;}
.y1d_c00403{bottom:403.199867pt;}
.y1c_c00403{bottom:429.439453pt;}
.y1b_c00403{bottom:429.439480pt;}
.y19_c00403{bottom:455.679947pt;}
.y1a_c00403{bottom:455.680667pt;}
.y18_c00403{bottom:482.239707pt;}
.y17_c00403{bottom:482.239867pt;}
.y16_c00403{bottom:508.479453pt;}
.y15_c00403{bottom:508.481000pt;}
.y14_c00403{bottom:535.040747pt;}
.y13_c00403{bottom:561.600507pt;}
.y12_c00403{bottom:614.400920pt;}
.y11_c00403{bottom:668.800787pt;}
.y10_c00403{bottom:693.439947pt;}
.yf_c00403{bottom:720.640293pt;}
.ye_c00403{bottom:746.879880pt;}
.yd_c00403{bottom:746.880600pt;}
.yb_c00403{bottom:773.439693pt;}
.yc_c00403{bottom:773.440347pt;}
.ya_c00403{bottom:800.319627pt;}
.y9_c00403{bottom:826.240640pt;}
.y8_c00403{bottom:853.120400pt;}
.y7_c00403{bottom:879.039547pt;}
.y6_c00403{bottom:879.040507pt;}
.y5_c00403{bottom:905.600267pt;}
.y4_c00403{bottom:931.839840pt;}
.y3_c00403{bottom:931.840173pt;}
.y2_c00403{bottom:959.040533pt;}
.y1_c00403{bottom:1011.519933pt;}
.hb_c00403{height:52.148438pt;}
.h19_c00403{height:54.026042pt;}
.h16_c00403{height:63.273438pt;}
.he_c00403{height:66.054688pt;}
.h7_c00403{height:66.083984pt;}
.h18_c00403{height:66.738281pt;}
.h14_c00403{height:66.750000pt;}
.hd_c00403{height:67.445312pt;}
.h3_c00403{height:67.859375pt;}
.ha_c00403{height:68.046875pt;}
.hc_c00403{height:68.140625pt;}
.h4_c00403{height:68.701172pt;}
.h15_c00403{height:69.203125pt;}
.h8_c00403{height:70.009766pt;}
.h2_c00403{height:70.546875pt;}
.h9_c00403{height:70.664062pt;}
.h11_c00403{height:71.218750pt;}
.h5_c00403{height:71.318359pt;}
.h17_c00403{height:71.815104pt;}
.hf_c00403{height:71.890625pt;}
.h1a_c00403{height:71.972656pt;}
.h10_c00403{height:72.562500pt;}
.h13_c00403{height:73.234375pt;}
.h12_c00403{height:73.281250pt;}
.h1_c00403{height:73.906250pt;}
.h6_c00403{height:73.935547pt;}
.h0_c00403{height:1122.666667pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x11_c00403{left:136.315760pt;}
.x1_c00403{left:137.279333pt;}
.xb_c00403{left:149.438947pt;}
.x2_c00403{left:167.039067pt;}
.x12_c00403{left:192.959453pt;}
.x13_c00403{left:215.039067pt;}
.x5_c00403{left:217.918920pt;}
.xc_c00403{left:226.879333pt;}
.x31_c00403{left:234.559587pt;}
.x6_c00403{left:243.199200pt;}
.x32_c00403{left:247.359333pt;}
.xd_c00403{left:254.078680pt;}
.x27_c00403{left:255.358933pt;}
.x28_c00403{left:276.799867pt;}
.x14_c00403{left:279.039587pt;}
.x1f_c00403{left:304.319867pt;}
.x29_c00403{left:311.039067pt;}
.x20_c00403{left:328.960000pt;}
.x15_c00403{left:332.799320pt;}
.xe_c00403{left:375.679733pt;}
.x16_c00403{left:384.959467pt;}
.xf_c00403{left:408.319333pt;}
.x17_c00403{left:411.199173pt;}
.x2a_c00403{left:413.759720pt;}
.x1d_c00403{left:430.719720pt;}
.x18_c00403{left:433.599613pt;}
.x1e_c00403{left:446.718787pt;}
.x3_c00403{left:467.519453pt;}
.x34_c00403{left:472.639200pt;}
.x4_c00403{left:480.959467pt;}
.x2b_c00403{left:482.239707pt;}
.x10_c00403{left:490.239173pt;}
.x35_c00403{left:495.358933pt;}
.x2c_c00403{left:503.679200pt;}
.x7_c00403{left:510.719200pt;}
.x19_c00403{left:516.159707pt;}
.x36_c00403{left:522.559573pt;}
.x8_c00403{left:526.398920pt;}
.x2d_c00403{left:528.959467pt;}
.x1a_c00403{left:534.719200pt;}
.x9_c00403{left:539.838907pt;}
.x23_c00403{left:541.439987pt;}
.xa_c00403{left:559.678707pt;}
.x24_c00403{left:561.279707pt;}
.x21_c00403{left:574.079587pt;}
.x22_c00403{left:591.679733pt;}
.x25_c00403{left:600.638707pt;}
.x2e_c00403{left:606.399867pt;}
.x37_c00403{left:620.159173pt;}
.x1b_c00403{left:624.000000pt;}
.x26_c00403{left:626.879840pt;}
.x38_c00403{left:631.999467pt;}
.x1c_c00403{left:647.679200pt;}
.x2f_c00403{left:648.638707pt;}
.x30_c00403{left:669.758787pt;}
.x39_c00403{left:678.399867pt;}
.x33_c00403{left:693.439453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_571992367d655de0f74a478f.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_4ffdb8fb46a84cb48ff9f6ab.woff2')format("woff");}.ff2_c00404{font-family:ff2_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:ff3_c00404;src:url('chunks/assets/font_07dc04967f1b3da9b20fdc45.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_2acee13a06d275e4cd770955.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_dafcc562e5b3e6a771dda928.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_7394a33ae7d6f143296c7f36.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00404;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff7_c00404{font-family:ff7_c00404;line-height:1.364746;font-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_c00404{transform:matrix(0.161392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161392,0.000000,0.000000,0.250000,0,0);}
.m1c_c00404{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.m20_c00404{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m19_c00404{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.m1d_c00404{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mb_c00404{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m1b_c00404{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m2c_c00404{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m18_c00404{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.md_c00404{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m29_c00404{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m28_c00404{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m24_c00404{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m22_c00404{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m11_c00404{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.mf_c00404{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m17_c00404{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m26_c00404{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m10_c00404{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m27_c00404{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m21_c00404{transform:matrix(0.245108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245108,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1a_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me_c00404{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1f_c00404{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m2b_c00404{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m1e_c00404{transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265766,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290404,0.000000,0.000000,0.250000,0,0);}
.m13_c00404{transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302885,0.000000,0.000000,0.250000,0,0);}
.m2a_c00404{transform:matrix(0.323113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323113,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326531,0.000000,0.000000,0.250000,0,0);}
.m12_c00404{transform:matrix(0.384921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384921,0.000000,0.000000,0.250000,0,0);}
.m14_c00404{transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402778,0.000000,0.000000,0.250000,0,0);}
.m23_c00404{transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);}
.m15_c00404{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_c00404{vertical-align:0.000000px;}
.lsf_c00404{letter-spacing:-14.866500px;}
.ls24_c00404{letter-spacing:-14.594850px;}
.ls20_c00404{letter-spacing:-13.570650px;}
.ls7_c00404{letter-spacing:-13.490828px;}
.ls1d_c00404{letter-spacing:-13.121693px;}
.ls1a_c00404{letter-spacing:-12.780225px;}
.ls1e_c00404{letter-spacing:-11.247173px;}
.ls26_c00404{letter-spacing:-9.937350px;}
.ls15_c00404{letter-spacing:-8.835750px;}
.ls23_c00404{letter-spacing:-8.175038px;}
.lsb_c00404{letter-spacing:-6.685875px;}
.ls1f_c00404{letter-spacing:-6.509250px;}
.ls10_c00404{letter-spacing:-5.945625px;}
.ls17_c00404{letter-spacing:-5.678348px;}
.ls2b_c00404{letter-spacing:-5.223150px;}
.ls8_c00404{letter-spacing:-5.196713px;}
.ls29_c00404{letter-spacing:-4.792200px;}
.ls12_c00404{letter-spacing:-4.456463px;}
.ls22_c00404{letter-spacing:-4.410975px;}
.ls11_c00404{letter-spacing:-4.334498px;}
.ls21_c00404{letter-spacing:-4.229100px;}
.lsc_c00404{letter-spacing:-3.717000px;}
.ls18_c00404{letter-spacing:-3.712800px;}
.lse_c00404{letter-spacing:-3.447885px;}
.ls4_c00404{letter-spacing:-2.968875px;}
.ls2a_c00404{letter-spacing:-2.340000px;}
.ls5_c00404{letter-spacing:-2.310398px;}
.ls2_c00404{letter-spacing:-2.229413px;}
.ls2c_c00404{letter-spacing:-2.184000px;}
.ls25_c00404{letter-spacing:-1.677375px;}
.ls6_c00404{letter-spacing:-1.540800px;}
.lsa_c00404{letter-spacing:-1.489163px;}
.ls19_c00404{letter-spacing:-0.928800px;}
.ls3_c00404{letter-spacing:-0.740250px;}
.ls1_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.740250px;}
.lsd_c00404{letter-spacing:3.148200px;}
.ls9_c00404{letter-spacing:3.772440px;}
.ls14_c00404{letter-spacing:4.463550px;}
.ls27_c00404{letter-spacing:5.071800px;}
.ls16_c00404{letter-spacing:8.642183px;}
.ls1b_c00404{letter-spacing:8.832450px;}
.ls13_c00404{letter-spacing:9.843750px;}
.ls1c_c00404{letter-spacing:15.843600px;}
.ls28_c00404{letter-spacing:63.275850px;}
.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;}
._c_c00404{margin-left:-4.855383px;}
._11_c00404{margin-left:-3.224857px;}
._12_c00404{margin-left:-2.097737px;}
._13_c00404{width:1.100078px;}
._d_c00404{width:2.264375px;}
._1_c00404{width:4.101092px;}
._0_c00404{width:5.671545px;}
._8_c00404{width:7.559198px;}
._6_c00404{width:8.585295px;}
._7_c00404{width:10.316087px;}
._2_c00404{width:11.608077px;}
._a_c00404{width:12.691112px;}
._4_c00404{width:13.752172px;}
._14_c00404{width:14.809235px;}
._b_c00404{width:15.960426px;}
._9_c00404{width:17.771022px;}
._3_c00404{width:19.671869px;}
._5_c00404{width:21.120185px;}
._1b_c00404{width:22.442784px;}
._10_c00404{width:23.769915px;}
._1c_c00404{width:24.789906px;}
._1a_c00404{width:26.947893px;}
._15_c00404{width:28.444381px;}
._18_c00404{width:30.478999px;}
._f_c00404{width:31.641334px;}
._17_c00404{width:33.699592px;}
._e_c00404{width:34.957303px;}
._19_c00404{width:37.048428px;}
._16_c00404{width:43.067751px;}
.fc0_c00404{color:transparent;}
.fsc_c00404{font-size:39.000000px;}
.fsb_c00404{font-size:47.250000px;}
.fsd_c00404{font-size:54.000000px;}
.fse_c00404{font-size:59.250000px;}
.fsa_c00404{font-size:69.750000px;}
.fs6_c00404{font-size:73.500000px;}
.fs13_c00404{font-size:74.250000px;}
.fs12_c00404{font-size:76.500000px;}
.fs11_c00404{font-size:76.936800px;}
.fs7_c00404{font-size:77.250000px;}
.fs14_c00404{font-size:78.000000px;}
.fs1_c00404{font-size:78.750000px;}
.fs5_c00404{font-size:79.500000px;}
.fs2_c00404{font-size:80.250000px;}
.fsf_c00404{font-size:81.000000px;}
.fs3_c00404{font-size:81.750000px;}
.fs8_c00404{font-size:82.500000px;}
.fs9_c00404{font-size:83.250000px;}
.fs4_c00404{font-size:84.000000px;}
.fs0_c00404{font-size:84.750000px;}
.fs10_c00404{font-size:85.500000px;}
.y0_c00404{bottom:0.000000px;}
.y24_c00404{bottom:212.760150px;}
.y22_c00404{bottom:241.918695px;}
.y23_c00404{bottom:241.918950px;}
.y21_c00404{bottom:271.079835px;}
.y20_c00404{bottom:301.680240px;}
.y1f_c00404{bottom:331.199775px;}
.y1e_c00404{bottom:361.439685px;}
.y1c_c00404{bottom:420.840135px;}
.y1d_c00404{bottom:421.199385px;}
.y1a_c00404{bottom:450.719025px;}
.y1b_c00404{bottom:450.719100px;}
.y19_c00404{bottom:480.958950px;}
.y18_c00404{bottom:510.480285px;}
.y17_c00404{bottom:510.480465px;}
.y16_c00404{bottom:540.000000px;}
.y15_c00404{bottom:599.759535px;}
.y14_c00404{bottom:659.159820px;}
.y13_c00404{bottom:659.160855px;}
.y12_c00404{bottom:689.040570px;}
.y11_c00404{bottom:718.919535px;}
.y10_c00404{bottom:750.958920px;}
.yf_c00404{bottom:778.319820px;}
.ye_c00404{bottom:778.320720px;}
.yc_c00404{bottom:808.199685px;}
.yd_c00404{bottom:808.200435px;}
.yb_c00404{bottom:838.079400px;}
.ya_c00404{bottom:838.079460px;}
.y9_c00404{bottom:867.959175px;}
.y7_c00404{bottom:897.838395px;}
.y8_c00404{bottom:897.838905px;}
.y6_c00404{bottom:928.080420px;}
.y5_c00404{bottom:957.958095px;}
.y4_c00404{bottom:987.119250px;}
.y3_c00404{bottom:1016.280390px;}
.y2_c00404{bottom:1076.039985px;}
.y1_c00404{bottom:1136.878875px;}
.h11_c00404{height:40.675781px;}
.h10_c00404{height:49.280273px;}
.h12_c00404{height:56.320312px;}
.h13_c00404{height:58.555664px;}
.hf_c00404{height:72.747070px;}
.h1d_c00404{height:72.872314px;}
.h1b_c00404{height:75.509262px;}
.ha_c00404{height:75.816650px;}
.h1f_c00404{height:76.552734px;}
.h8_c00404{height:76.658203px;}
.h1c_c00404{height:77.097656px;}
.h2_c00404{height:77.288818px;}
.h7_c00404{height:77.986084px;}
.h9_c00404{height:78.024902px;}
.h18_c00404{height:78.568359px;}
.h1e_c00404{height:78.609375px;}
.h5_c00404{height:78.760986px;}
.hd_c00404{height:79.365234px;}
.h14_c00404{height:80.121094px;}
.hc_c00404{height:80.193237px;}
.h16_c00404{height:80.791992px;}
.h3_c00404{height:80.876953px;}
.hb_c00404{height:80.969238px;}
.h17_c00404{height:81.533203px;}
.h15_c00404{height:81.632812px;}
.h19_c00404{height:81.705322px;}
.h4_c00404{height:82.388672px;}
.h6_c00404{height:82.441406px;}
.h1_c00404{height:83.177490px;}
.he_c00404{height:83.900391px;}
.h1a_c00404{height:84.498047px;}
.h0_c00404{height:1263.000000px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:153.359850px;}
.x39_c00404{left:154.438845px;}
.x2_c00404{left:168.479685px;}
.x2b_c00404{left:178.199415px;}
.x5_c00404{left:181.080000px;}
.x2e_c00404{left:183.958950px;}
.x2d_c00404{left:187.559685px;}
.x2c_c00404{left:199.078785px;}
.x3_c00404{left:213.839535px;}
.x8_c00404{left:220.678500px;}
.x32_c00404{left:221.759535px;}
.x4_c00404{left:228.959400px;}
.x16_c00404{left:249.479685px;}
.x27_c00404{left:309.239250px;}
.x28_c00404{left:322.559685px;}
.x10_c00404{left:325.799535px;}
.x17_c00404{left:331.918350px;}
.x3b_c00404{left:339.838515px;}
.x33_c00404{left:344.159385px;}
.x11_c00404{left:346.319850px;}
.x3c_c00404{left:354.239850px;}
.x18_c00404{left:376.198785px;}
.x12_c00404{left:379.799535px;}
.x13_c00404{left:413.279250px;}
.x9_c00404{left:419.038920px;}
.x19_c00404{left:422.998950px;}
.xa_c00404{left:440.279250px;}
.x1a_c00404{left:453.599670px;}
.x34_c00404{left:459.718500px;}
.xb_c00404{left:464.398635px;}
.x20_c00404{left:479.518620px;}
.x1b_c00404{left:481.319820px;}
.x35_c00404{left:482.758530px;}
.x2f_c00404{left:492.479685px;}
.x21_c00404{left:493.559100px;}
.x1c_c00404{left:508.319820px;}
.x36_c00404{left:509.399235px;}
.x30_c00404{left:512.279850px;}
.x1d_c00404{left:533.879520px;}
.x29_c00404{left:550.439670px;}
.x2a_c00404{left:571.678530px;}
.x37_c00404{left:577.439670px;}
.x14_c00404{left:582.119985px;}
.x38_c00404{left:592.559685px;}
.x31_c00404{left:594.718500px;}
.x15_c00404{left:596.878920px;}
.x22_c00404{left:601.559100px;}
.x1e_c00404{left:613.080000px;}
.xe_c00404{left:614.879520px;}
.x23_c00404{left:615.958920px;}
.xf_c00404{left:633.239220px;}
.x6_c00404{left:692.998950px;}
.x24_c00404{left:703.079355px;}
.x1f_c00404{left:714.598530px;}
.xc_c00404{left:715.679670px;}
.x7_c00404{left:718.558635px;}
.x25_c00404{left:722.159370px;}
.xd_c00404{left:745.919535px;}
.x3a_c00404{left:753.478635px;}
.x26_c00404{left:771.838530px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.lsf_c00404{letter-spacing:-13.214667pt;}
.ls24_c00404{letter-spacing:-12.973200pt;}
.ls20_c00404{letter-spacing:-12.062800pt;}
.ls7_c00404{letter-spacing:-11.991847pt;}
.ls1d_c00404{letter-spacing:-11.663727pt;}
.ls1a_c00404{letter-spacing:-11.360200pt;}
.ls1e_c00404{letter-spacing:-9.997487pt;}
.ls26_c00404{letter-spacing:-8.833200pt;}
.ls15_c00404{letter-spacing:-7.854000pt;}
.ls23_c00404{letter-spacing:-7.266700pt;}
.lsb_c00404{letter-spacing:-5.943000pt;}
.ls1f_c00404{letter-spacing:-5.786000pt;}
.ls10_c00404{letter-spacing:-5.285000pt;}
.ls17_c00404{letter-spacing:-5.047420pt;}
.ls2b_c00404{letter-spacing:-4.642800pt;}
.ls8_c00404{letter-spacing:-4.619300pt;}
.ls29_c00404{letter-spacing:-4.259733pt;}
.ls12_c00404{letter-spacing:-3.961300pt;}
.ls22_c00404{letter-spacing:-3.920867pt;}
.ls11_c00404{letter-spacing:-3.852887pt;}
.ls21_c00404{letter-spacing:-3.759200pt;}
.lsc_c00404{letter-spacing:-3.304000pt;}
.ls18_c00404{letter-spacing:-3.300267pt;}
.lse_c00404{letter-spacing:-3.064787pt;}
.ls4_c00404{letter-spacing:-2.639000pt;}
.ls2a_c00404{letter-spacing:-2.080000pt;}
.ls5_c00404{letter-spacing:-2.053687pt;}
.ls2_c00404{letter-spacing:-1.981700pt;}
.ls2c_c00404{letter-spacing:-1.941333pt;}
.ls25_c00404{letter-spacing:-1.491000pt;}
.ls6_c00404{letter-spacing:-1.369600pt;}
.lsa_c00404{letter-spacing:-1.323700pt;}
.ls19_c00404{letter-spacing:-0.825600pt;}
.ls3_c00404{letter-spacing:-0.658000pt;}
.ls1_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.658000pt;}
.lsd_c00404{letter-spacing:2.798400pt;}
.ls9_c00404{letter-spacing:3.353280pt;}
.ls14_c00404{letter-spacing:3.967600pt;}
.ls27_c00404{letter-spacing:4.508267pt;}
.ls16_c00404{letter-spacing:7.681940pt;}
.ls1b_c00404{letter-spacing:7.851067pt;}
.ls13_c00404{letter-spacing:8.750000pt;}
.ls1c_c00404{letter-spacing:14.083200pt;}
.ls28_c00404{letter-spacing:56.245200pt;}
.ws0_c00404{word-spacing:0.000000pt;}
._c_c00404{margin-left:-4.315896pt;}
._11_c00404{margin-left:-2.866540pt;}
._12_c00404{margin-left:-1.864655pt;}
._13_c00404{width:0.977847pt;}
._d_c00404{width:2.012777pt;}
._1_c00404{width:3.645415pt;}
._0_c00404{width:5.041374pt;}
._8_c00404{width:6.719287pt;}
._6_c00404{width:7.631374pt;}
._7_c00404{width:9.169855pt;}
._2_c00404{width:10.318291pt;}
._a_c00404{width:11.280989pt;}
._4_c00404{width:12.224153pt;}
._14_c00404{width:13.163764pt;}
._b_c00404{width:14.187045pt;}
._9_c00404{width:15.796464pt;}
._3_c00404{width:17.486106pt;}
._5_c00404{width:18.773498pt;}
._1b_c00404{width:19.949142pt;}
._10_c00404{width:21.128813pt;}
._1c_c00404{width:22.035472pt;}
._1a_c00404{width:23.953683pt;}
._15_c00404{width:25.283894pt;}
._18_c00404{width:27.092443pt;}
._f_c00404{width:28.125630pt;}
._17_c00404{width:29.955192pt;}
._e_c00404{width:31.073158pt;}
._19_c00404{width:32.931936pt;}
._16_c00404{width:38.282445pt;}
.fsc_c00404{font-size:34.666667pt;}
.fsb_c00404{font-size:42.000000pt;}
.fsd_c00404{font-size:48.000000pt;}
.fse_c00404{font-size:52.666667pt;}
.fsa_c00404{font-size:62.000000pt;}
.fs6_c00404{font-size:65.333333pt;}
.fs13_c00404{font-size:66.000000pt;}
.fs12_c00404{font-size:68.000000pt;}
.fs11_c00404{font-size:68.388267pt;}
.fs7_c00404{font-size:68.666667pt;}
.fs14_c00404{font-size:69.333333pt;}
.fs1_c00404{font-size:70.000000pt;}
.fs5_c00404{font-size:70.666667pt;}
.fs2_c00404{font-size:71.333333pt;}
.fsf_c00404{font-size:72.000000pt;}
.fs3_c00404{font-size:72.666667pt;}
.fs8_c00404{font-size:73.333333pt;}
.fs9_c00404{font-size:74.000000pt;}
.fs4_c00404{font-size:74.666667pt;}
.fs0_c00404{font-size:75.333333pt;}
.fs10_c00404{font-size:76.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y24_c00404{bottom:189.120133pt;}
.y22_c00404{bottom:215.038840pt;}
.y23_c00404{bottom:215.039067pt;}
.y21_c00404{bottom:240.959853pt;}
.y20_c00404{bottom:268.160213pt;}
.y1f_c00404{bottom:294.399800pt;}
.y1e_c00404{bottom:321.279720pt;}
.y1c_c00404{bottom:374.080120pt;}
.y1d_c00404{bottom:374.399453pt;}
.y1a_c00404{bottom:400.639133pt;}
.y1b_c00404{bottom:400.639200pt;}
.y19_c00404{bottom:427.519067pt;}
.y18_c00404{bottom:453.760253pt;}
.y17_c00404{bottom:453.760413pt;}
.y16_c00404{bottom:480.000000pt;}
.y15_c00404{bottom:533.119587pt;}
.y14_c00404{bottom:585.919840pt;}
.y13_c00404{bottom:585.920760pt;}
.y12_c00404{bottom:612.480507pt;}
.y11_c00404{bottom:639.039587pt;}
.y10_c00404{bottom:667.519040pt;}
.yf_c00404{bottom:691.839840pt;}
.ye_c00404{bottom:691.840640pt;}
.yc_c00404{bottom:718.399720pt;}
.yd_c00404{bottom:718.400387pt;}
.yb_c00404{bottom:744.959467pt;}
.ya_c00404{bottom:744.959520pt;}
.y9_c00404{bottom:771.519267pt;}
.y7_c00404{bottom:798.078573pt;}
.y8_c00404{bottom:798.079027pt;}
.y6_c00404{bottom:824.960373pt;}
.y5_c00404{bottom:851.518307pt;}
.y4_c00404{bottom:877.439333pt;}
.y3_c00404{bottom:903.360347pt;}
.y2_c00404{bottom:956.479987pt;}
.y1_c00404{bottom:1010.559000pt;}
.h11_c00404{height:36.156250pt;}
.h10_c00404{height:43.804688pt;}
.h12_c00404{height:50.062500pt;}
.h13_c00404{height:52.049479pt;}
.hf_c00404{height:64.664062pt;}
.h1d_c00404{height:64.775391pt;}
.h1b_c00404{height:67.119344pt;}
.ha_c00404{height:67.392578pt;}
.h1f_c00404{height:68.046875pt;}
.h8_c00404{height:68.140625pt;}
.h1c_c00404{height:68.531250pt;}
.h2_c00404{height:68.701172pt;}
.h7_c00404{height:69.320964pt;}
.h9_c00404{height:69.355469pt;}
.h18_c00404{height:69.838542pt;}
.h1e_c00404{height:69.875000pt;}
.h5_c00404{height:70.009766pt;}
.hd_c00404{height:70.546875pt;}
.h14_c00404{height:71.218750pt;}
.hc_c00404{height:71.282878pt;}
.h16_c00404{height:71.815104pt;}
.h3_c00404{height:71.890625pt;}
.hb_c00404{height:71.972656pt;}
.h17_c00404{height:72.473958pt;}
.h15_c00404{height:72.562500pt;}
.h19_c00404{height:72.626953pt;}
.h4_c00404{height:73.234375pt;}
.h6_c00404{height:73.281250pt;}
.h1_c00404{height:73.935547pt;}
.he_c00404{height:74.578125pt;}
.h1a_c00404{height:75.109375pt;}
.h0_c00404{height:1122.666667pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:136.319867pt;}
.x39_c00404{left:137.278973pt;}
.x2_c00404{left:149.759720pt;}
.x2b_c00404{left:158.399480pt;}
.x5_c00404{left:160.960000pt;}
.x2e_c00404{left:163.519067pt;}
.x2d_c00404{left:166.719720pt;}
.x2c_c00404{left:176.958920pt;}
.x3_c00404{left:190.079587pt;}
.x8_c00404{left:196.158667pt;}
.x32_c00404{left:197.119587pt;}
.x4_c00404{left:203.519467pt;}
.x16_c00404{left:221.759720pt;}
.x27_c00404{left:274.879333pt;}
.x28_c00404{left:286.719720pt;}
.x10_c00404{left:289.599587pt;}
.x17_c00404{left:295.038533pt;}
.x3b_c00404{left:302.078680pt;}
.x33_c00404{left:305.919453pt;}
.x11_c00404{left:307.839867pt;}
.x3c_c00404{left:314.879867pt;}
.x18_c00404{left:334.398920pt;}
.x12_c00404{left:337.599587pt;}
.x13_c00404{left:367.359333pt;}
.x9_c00404{left:372.479040pt;}
.x19_c00404{left:375.999067pt;}
.xa_c00404{left:391.359333pt;}
.x1a_c00404{left:403.199707pt;}
.x34_c00404{left:408.638667pt;}
.xb_c00404{left:412.798787pt;}
.x20_c00404{left:426.238773pt;}
.x1b_c00404{left:427.839840pt;}
.x35_c00404{left:429.118693pt;}
.x2f_c00404{left:437.759720pt;}
.x21_c00404{left:438.719200pt;}
.x1c_c00404{left:451.839840pt;}
.x36_c00404{left:452.799320pt;}
.x30_c00404{left:455.359867pt;}
.x1d_c00404{left:474.559573pt;}
.x29_c00404{left:489.279707pt;}
.x2a_c00404{left:508.158693pt;}
.x37_c00404{left:513.279707pt;}
.x14_c00404{left:517.439987pt;}
.x38_c00404{left:526.719720pt;}
.x31_c00404{left:528.638667pt;}
.x15_c00404{left:530.559040pt;}
.x22_c00404{left:534.719200pt;}
.x1e_c00404{left:544.960000pt;}
.xe_c00404{left:546.559573pt;}
.x23_c00404{left:547.519040pt;}
.xf_c00404{left:562.879307pt;}
.x6_c00404{left:615.999067pt;}
.x24_c00404{left:624.959427pt;}
.x1f_c00404{left:635.198693pt;}
.xc_c00404{left:636.159707pt;}
.x7_c00404{left:638.718787pt;}
.x25_c00404{left:641.919440pt;}
.xd_c00404{left:663.039587pt;}
.x3a_c00404{left:669.758787pt;}
.x26_c00404{left:686.078693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_365859b182d61160c7fcb674.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_cc74faaf512aea4a056367a1.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_ffe15f9acc05a577b2221ca1.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_4491fa19c6c9eae8ffd03cdd.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00405;src:url('chunks/assets/font_5c3627ec049c5e6f3593c2e0.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b_c00405{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m13_c00405{transform:matrix(0.208763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208763,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m1c_c00405{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{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_c00405{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m1a_c00405{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2b_c00405{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m29_c00405{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1e_c00405{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m22_c00405{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m18_c00405{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m2a_c00405{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m24_c00405{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m19_c00405{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m16_c00405{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m23_c00405{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m25_c00405{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m12_c00405{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m10_c00405{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m11_c00405{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2c_c00405{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1d_c00405{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);}
.m17_c00405{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m2e_c00405{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.mf_c00405{transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266509,0.000000,0.000000,0.250000,0,0);}
.m28_c00405{transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);}
.m26_c00405{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00405{transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306180,0.000000,0.000000,0.250000,0,0);}
.m2d_c00405{transform:matrix(0.314904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314904,0.000000,0.000000,0.250000,0,0);}
.m27_c00405{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m1f_c00405{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.v1_c00405{vertical-align:1.433520px;}
.ls2f_c00405{letter-spacing:-17.088750px;}
.ls2c_c00405{letter-spacing:-11.437500px;}
.ls27_c00405{letter-spacing:-11.020425px;}
.ls16_c00405{letter-spacing:-9.850050px;}
.ls23_c00405{letter-spacing:-9.039000px;}
.lsc_c00405{letter-spacing:-8.914500px;}
.ls25_c00405{letter-spacing:-8.175038px;}
.ls30_c00405{letter-spacing:-7.426125px;}
.ls22_c00405{letter-spacing:-7.308840px;}
.ls1d_c00405{letter-spacing:-7.230525px;}
.ls2e_c00405{letter-spacing:-7.020000px;}
.ls17_c00405{letter-spacing:-6.693300px;}
.ls36_c00405{letter-spacing:-6.685875px;}
.ls14_c00405{letter-spacing:-6.517643px;}
.ls1a_c00405{letter-spacing:-6.285600px;}
.ls13_c00405{letter-spacing:-5.945625px;}
.ls24_c00405{letter-spacing:-5.700000px;}
.ls5_c00405{letter-spacing:-5.502750px;}
.ls6_c00405{letter-spacing:-5.346450px;}
.lse_c00405{letter-spacing:-5.196713px;}
.ls20_c00405{letter-spacing:-5.132400px;}
.ls1e_c00405{letter-spacing:-4.722300px;}
.ls2d_c00405{letter-spacing:-4.633988px;}
.lsf_c00405{letter-spacing:-4.456463px;}
.ls12_c00405{letter-spacing:-4.418663px;}
.ls35_c00405{letter-spacing:-4.289220px;}
.ls29_c00405{letter-spacing:-3.927690px;}
.ls0_c00405{letter-spacing:-3.858600px;}
.ls8_c00405{letter-spacing:-3.717000px;}
.ls33_c00405{letter-spacing:-3.685500px;}
.ls9_c00405{letter-spacing:-3.646050px;}
.ls4_c00405{letter-spacing:-3.368250px;}
.ls26_c00405{letter-spacing:-3.364133px;}
.ls2a_c00405{letter-spacing:-3.177900px;}
.ls7_c00405{letter-spacing:-2.968875px;}
.ls31_c00405{letter-spacing:-2.471783px;}
.ls2_c00405{letter-spacing:-2.378925px;}
.ls15_c00405{letter-spacing:-2.353583px;}
.lsa_c00405{letter-spacing:-2.229413px;}
.lsb_c00405{letter-spacing:-2.165625px;}
.ls1_c00405{letter-spacing:-1.585133px;}
.ls10_c00405{letter-spacing:-1.489163px;}
.ls28_c00405{letter-spacing:-0.817748px;}
.ls32_c00405{letter-spacing:-0.795375px;}
.ls1b_c00405{letter-spacing:-0.783750px;}
.ls11_c00405{letter-spacing:-0.740250px;}
.lsd_c00405{letter-spacing:0.000000px;}
.ls21_c00405{letter-spacing:0.842625px;}
.ls2b_c00405{letter-spacing:1.558673px;}
.ls19_c00405{letter-spacing:2.317950px;}
.ls1f_c00405{letter-spacing:2.488980px;}
.ls34_c00405{letter-spacing:4.165980px;}
.ls18_c00405{letter-spacing:5.946600px;}
.ls1c_c00405{letter-spacing:16.523475px;}
.ls3_c00405{letter-spacing:20.838675px;}
.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;}
._1a_c00405{margin-left:-8.838262px;}
._c_c00405{margin-left:-6.483948px;}
._19_c00405{margin-left:-3.909635px;}
._12_c00405{margin-left:-2.570701px;}
._b_c00405{margin-left:-1.553351px;}
._a_c00405{width:2.134671px;}
._0_c00405{width:3.331813px;}
._9_c00405{width:4.579565px;}
._3_c00405{width:5.607505px;}
._5_c00405{width:6.773704px;}
._2_c00405{width:8.292226px;}
._1_c00405{width:9.394518px;}
._13_c00405{width:10.535513px;}
._f_c00405{width:11.595269px;}
._8_c00405{width:12.767143px;}
._1b_c00405{width:14.492407px;}
._6_c00405{width:15.574506px;}
._14_c00405{width:17.160294px;}
._11_c00405{width:18.633097px;}
._d_c00405{width:19.804615px;}
._10_c00405{width:21.109636px;}
._4_c00405{width:22.451239px;}
._e_c00405{width:23.578671px;}
._7_c00405{width:25.568862px;}
._17_c00405{width:27.424940px;}
._15_c00405{width:28.738876px;}
._16_c00405{width:31.781242px;}
._18_c00405{width:36.500566px;}
.fc0_c00405{color:transparent;}
.fs10_c00405{font-size:57.750000px;}
.fs12_c00405{font-size:60.000000px;}
.fs11_c00405{font-size:63.750000px;}
.fse_c00405{font-size:66.750000px;}
.fsa_c00405{font-size:71.250000px;}
.fs9_c00405{font-size:72.750000px;}
.fs13_c00405{font-size:74.250000px;}
.fs2_c00405{font-size:75.000000px;}
.fs8_c00405{font-size:76.500000px;}
.fsb_c00405{font-size:78.000000px;}
.fs3_c00405{font-size:78.750000px;}
.fs7_c00405{font-size:79.500000px;}
.fs4_c00405{font-size:80.250000px;}
.fsf_c00405{font-size:81.000000px;}
.fs0_c00405{font-size:81.750000px;}
.fs1_c00405{font-size:82.500000px;}
.fs5_c00405{font-size:83.250000px;}
.fsc_c00405{font-size:84.000000px;}
.fs6_c00405{font-size:84.750000px;}
.fsd_c00405{font-size:86.250000px;}
.y0_c00405{bottom:0.000000px;}
.y28_c00405{bottom:186.839280px;}
.y27_c00405{bottom:216.358815px;}
.y26_c00405{bottom:245.878350px;}
.y25_c00405{bottom:275.399685px;}
.y24_c00405{bottom:305.279415px;}
.y23_c00405{bottom:334.798950px;}
.y21_c00405{bottom:364.319670px;}
.y22_c00405{bottom:364.320285px;}
.y20_c00405{bottom:394.199385px;}
.y1e_c00405{bottom:424.079865px;}
.y1f_c00405{bottom:424.080000px;}
.y1d_c00405{bottom:454.319775px;}
.y1b_c00405{bottom:484.559010px;}
.y1c_c00405{bottom:484.559685px;}
.y19_c00405{bottom:513.719355px;}
.y1a_c00405{bottom:513.720150px;}
.y18_c00405{bottom:543.599070px;}
.y17_c00405{bottom:543.599280px;}
.y16_c00405{bottom:573.118815px;}
.y14_c00405{bottom:602.639880px;}
.y15_c00405{bottom:602.640150px;}
.y13_c00405{bottom:631.798920px;}
.y12_c00405{bottom:631.800225px;}
.y11_c00405{bottom:691.919865px;}
.y10_c00405{bottom:722.520270px;}
.yf_c00405{bottom:752.399235px;}
.ye_c00405{bottom:781.559685px;}
.yd_c00405{bottom:841.319190px;}
.yc_c00405{bottom:841.319325px;}
.yb_c00405{bottom:870.838845px;}
.ya_c00405{bottom:901.078770px;}
.y9_c00405{bottom:901.078785px;}
.y8_c00405{bottom:930.600135px;}
.y7_c00405{bottom:930.600180px;}
.y6_c00405{bottom:960.840090px;}
.y5_c00405{bottom:1019.880405px;}
.y3_c00405{bottom:1049.760090px;}
.y4_c00405{bottom:1049.760135px;}
.y2_c00405{bottom:1080.000000px;}
.y1_c00405{bottom:1139.400240px;}
.h18_c00405{height:58.201172px;}
.h1a_c00405{height:60.468750px;}
.h19_c00405{height:64.248047px;}
.h16_c00405{height:67.271484px;}
.he_c00405{height:74.311523px;}
.hc_c00405{height:75.080566px;}
.hd_c00405{height:75.875977px;}
.h1d_c00405{height:76.552734px;}
.h12_c00405{height:77.085938px;}
.h4_c00405{height:77.288818px;}
.h1b_c00405{height:77.440430px;}
.ha_c00405{height:78.024902px;}
.h3_c00405{height:78.222656px;}
.h11_c00405{height:78.609375px;}
.h15_c00405{height:78.722338px;}
.h6_c00405{height:78.760986px;}
.h10_c00405{height:79.365234px;}
.h1c_c00405{height:79.497070px;}
.hb_c00405{height:80.121094px;}
.h5_c00405{height:80.233154px;}
.hf_c00405{height:80.876953px;}
.h7_c00405{height:80.969238px;}
.h17_c00405{height:81.632812px;}
.h8_c00405{height:81.705322px;}
.h1_c00405{height:82.388672px;}
.h13_c00405{height:82.441406px;}
.h2_c00405{height:83.144531px;}
.h9_c00405{height:83.177490px;}
.h14_c00405{height:85.239258px;}
.h0_c00405{height:1263.000000px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x26_c00405{left:155.158305px;}
.x1_c00405{left:156.238785px;}
.xc_c00405{left:178.919535px;}
.x15_c00405{left:180.719100px;}
.x3_c00405{left:206.998950px;}
.x25_c00405{left:208.080000px;}
.x4_c00405{left:229.679700px;}
.x18_c00405{left:234.359850px;}
.x11_c00405{left:243.000000px;}
.x2_c00405{left:249.118785px;}
.x19_c00405{left:258.479235px;}
.xb_c00405{left:264.958950px;}
.x12_c00405{left:280.439685px;}
.x5_c00405{left:283.679700px;}
.x1a_c00405{left:286.558635px;}
.x6_c00405{left:358.918350px;}
.x3b_c00405{left:366.479235px;}
.x1b_c00405{left:368.639700px;}
.x3c_c00405{left:390.959385px;}
.x1c_c00405{left:405.359250px;}
.x13_c00405{left:415.439670px;}
.x27_c00405{left:422.998950px;}
.x14_c00405{left:430.559685px;}
.x3d_c00405{left:435.958335px;}
.x7_c00405{left:437.398635px;}
.x29_c00405{left:439.559100px;}
.x28_c00405{left:442.078815px;}
.x1d_c00405{left:452.879520px;}
.x2a_c00405{left:456.119385px;}
.x36_c00405{left:460.799565px;}
.x2d_c00405{left:477.719100px;}
.x8_c00405{left:480.599670px;}
.x37_c00405{left:497.878320px;}
.x2e_c00405{left:502.558635px;}
.x1e_c00405{left:525.959385px;}
.x2f_c00405{left:536.758530px;}
.x23_c00405{left:552.598530px;}
.x30_c00405{left:557.998950px;}
.x1f_c00405{left:579.959385px;}
.x24_c00405{left:582.838530px;}
.x9_c00405{left:586.080000px;}
.x20_c00405{left:604.078770px;}
.xa_c00405{left:605.878320px;}
.xf_c00405{left:611.639700px;}
.xd_c00405{left:630.358605px;}
.x10_c00405{left:635.399820px;}
.x31_c00405{left:636.479235px;}
.x38_c00405{left:646.559685px;}
.xe_c00405{left:649.438620px;}
.x32_c00405{left:662.038920px;}
.x16_c00405{left:672.839535px;}
.x33_c00405{left:688.318770px;}
.x17_c00405{left:692.998950px;}
.x2b_c00405{left:694.080000px;}
.x21_c00405{left:697.319820px;}
.x2c_c00405{left:719.998950px;}
.x39_c00405{left:721.798560px;}
.x34_c00405{left:739.078770px;}
.x22_c00405{left:765.719520px;}
.x35_c00405{left:773.278755px;}
.x3a_c00405{left:774.719055px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.v1_c00405{vertical-align:1.274240pt;}
.ls2f_c00405{letter-spacing:-15.190000pt;}
.ls2c_c00405{letter-spacing:-10.166667pt;}
.ls27_c00405{letter-spacing:-9.795933pt;}
.ls16_c00405{letter-spacing:-8.755600pt;}
.ls23_c00405{letter-spacing:-8.034667pt;}
.lsc_c00405{letter-spacing:-7.924000pt;}
.ls25_c00405{letter-spacing:-7.266700pt;}
.ls30_c00405{letter-spacing:-6.601000pt;}
.ls22_c00405{letter-spacing:-6.496747pt;}
.ls1d_c00405{letter-spacing:-6.427133pt;}
.ls2e_c00405{letter-spacing:-6.240000pt;}
.ls17_c00405{letter-spacing:-5.949600pt;}
.ls36_c00405{letter-spacing:-5.943000pt;}
.ls14_c00405{letter-spacing:-5.793460pt;}
.ls1a_c00405{letter-spacing:-5.587200pt;}
.ls13_c00405{letter-spacing:-5.285000pt;}
.ls24_c00405{letter-spacing:-5.066667pt;}
.ls5_c00405{letter-spacing:-4.891333pt;}
.ls6_c00405{letter-spacing:-4.752400pt;}
.lse_c00405{letter-spacing:-4.619300pt;}
.ls20_c00405{letter-spacing:-4.562133pt;}
.ls1e_c00405{letter-spacing:-4.197600pt;}
.ls2d_c00405{letter-spacing:-4.119100pt;}
.lsf_c00405{letter-spacing:-3.961300pt;}
.ls12_c00405{letter-spacing:-3.927700pt;}
.ls35_c00405{letter-spacing:-3.812640pt;}
.ls29_c00405{letter-spacing:-3.491280pt;}
.ls0_c00405{letter-spacing:-3.429867pt;}
.ls8_c00405{letter-spacing:-3.304000pt;}
.ls33_c00405{letter-spacing:-3.276000pt;}
.ls9_c00405{letter-spacing:-3.240933pt;}
.ls4_c00405{letter-spacing:-2.994000pt;}
.ls26_c00405{letter-spacing:-2.990340pt;}
.ls2a_c00405{letter-spacing:-2.824800pt;}
.ls7_c00405{letter-spacing:-2.639000pt;}
.ls31_c00405{letter-spacing:-2.197140pt;}
.ls2_c00405{letter-spacing:-2.114600pt;}
.ls15_c00405{letter-spacing:-2.092073pt;}
.lsa_c00405{letter-spacing:-1.981700pt;}
.lsb_c00405{letter-spacing:-1.925000pt;}
.ls1_c00405{letter-spacing:-1.409007pt;}
.ls10_c00405{letter-spacing:-1.323700pt;}
.ls28_c00405{letter-spacing:-0.726887pt;}
.ls32_c00405{letter-spacing:-0.707000pt;}
.ls1b_c00405{letter-spacing:-0.696667pt;}
.ls11_c00405{letter-spacing:-0.658000pt;}
.lsd_c00405{letter-spacing:0.000000pt;}
.ls21_c00405{letter-spacing:0.749000pt;}
.ls2b_c00405{letter-spacing:1.385487pt;}
.ls19_c00405{letter-spacing:2.060400pt;}
.ls1f_c00405{letter-spacing:2.212427pt;}
.ls34_c00405{letter-spacing:3.703093pt;}
.ls18_c00405{letter-spacing:5.285867pt;}
.ls1c_c00405{letter-spacing:14.687533pt;}
.ls3_c00405{letter-spacing:18.523267pt;}
.ws0_c00405{word-spacing:0.000000pt;}
._1a_c00405{margin-left:-7.856233pt;}
._c_c00405{margin-left:-5.763509pt;}
._19_c00405{margin-left:-3.475231pt;}
._12_c00405{margin-left:-2.285068pt;}
._b_c00405{margin-left:-1.380757pt;}
._a_c00405{width:1.897485pt;}
._0_c00405{width:2.961611pt;}
._9_c00405{width:4.070725pt;}
._3_c00405{width:4.984449pt;}
._5_c00405{width:6.021070pt;}
._2_c00405{width:7.370868pt;}
._1_c00405{width:8.350683pt;}
._13_c00405{width:9.364900pt;}
._f_c00405{width:10.306906pt;}
._8_c00405{width:11.348572pt;}
._1b_c00405{width:12.882140pt;}
._6_c00405{width:13.844006pt;}
._14_c00405{width:15.253594pt;}
._11_c00405{width:16.562753pt;}
._d_c00405{width:17.604102pt;}
._10_c00405{width:18.764121pt;}
._4_c00405{width:19.956657pt;}
._e_c00405{width:20.958819pt;}
._7_c00405{width:22.727877pt;}
._17_c00405{width:24.377725pt;}
._15_c00405{width:25.545668pt;}
._16_c00405{width:28.249992pt;}
._18_c00405{width:32.444947pt;}
.fs10_c00405{font-size:51.333333pt;}
.fs12_c00405{font-size:53.333333pt;}
.fs11_c00405{font-size:56.666667pt;}
.fse_c00405{font-size:59.333333pt;}
.fsa_c00405{font-size:63.333333pt;}
.fs9_c00405{font-size:64.666667pt;}
.fs13_c00405{font-size:66.000000pt;}
.fs2_c00405{font-size:66.666667pt;}
.fs8_c00405{font-size:68.000000pt;}
.fsb_c00405{font-size:69.333333pt;}
.fs3_c00405{font-size:70.000000pt;}
.fs7_c00405{font-size:70.666667pt;}
.fs4_c00405{font-size:71.333333pt;}
.fsf_c00405{font-size:72.000000pt;}
.fs0_c00405{font-size:72.666667pt;}
.fs1_c00405{font-size:73.333333pt;}
.fs5_c00405{font-size:74.000000pt;}
.fsc_c00405{font-size:74.666667pt;}
.fs6_c00405{font-size:75.333333pt;}
.fsd_c00405{font-size:76.666667pt;}
.y0_c00405{bottom:0.000000pt;}
.y28_c00405{bottom:166.079360pt;}
.y27_c00405{bottom:192.318947pt;}
.y26_c00405{bottom:218.558533pt;}
.y25_c00405{bottom:244.799720pt;}
.y24_c00405{bottom:271.359480pt;}
.y23_c00405{bottom:297.599067pt;}
.y21_c00405{bottom:323.839707pt;}
.y22_c00405{bottom:323.840253pt;}
.y20_c00405{bottom:350.399453pt;}
.y1e_c00405{bottom:376.959880pt;}
.y1f_c00405{bottom:376.960000pt;}
.y1d_c00405{bottom:403.839800pt;}
.y1b_c00405{bottom:430.719120pt;}
.y1c_c00405{bottom:430.719720pt;}
.y19_c00405{bottom:456.639427pt;}
.y1a_c00405{bottom:456.640133pt;}
.y18_c00405{bottom:483.199173pt;}
.y17_c00405{bottom:483.199360pt;}
.y16_c00405{bottom:509.438947pt;}
.y14_c00405{bottom:535.679893pt;}
.y15_c00405{bottom:535.680133pt;}
.y13_c00405{bottom:561.599040pt;}
.y12_c00405{bottom:561.600200pt;}
.y11_c00405{bottom:615.039880pt;}
.y10_c00405{bottom:642.240240pt;}
.yf_c00405{bottom:668.799320pt;}
.ye_c00405{bottom:694.719720pt;}
.yd_c00405{bottom:747.839280pt;}
.yc_c00405{bottom:747.839400pt;}
.yb_c00405{bottom:774.078973pt;}
.ya_c00405{bottom:800.958907pt;}
.y9_c00405{bottom:800.958920pt;}
.y8_c00405{bottom:827.200120pt;}
.y7_c00405{bottom:827.200160pt;}
.y6_c00405{bottom:854.080080pt;}
.y5_c00405{bottom:906.560360pt;}
.y3_c00405{bottom:933.120080pt;}
.y4_c00405{bottom:933.120120pt;}
.y2_c00405{bottom:960.000000pt;}
.y1_c00405{bottom:1012.800213pt;}
.h18_c00405{height:51.734375pt;}
.h1a_c00405{height:53.750000pt;}
.h19_c00405{height:57.109375pt;}
.h16_c00405{height:59.796875pt;}
.he_c00405{height:66.054688pt;}
.hc_c00405{height:66.738281pt;}
.hd_c00405{height:67.445312pt;}
.h1d_c00405{height:68.046875pt;}
.h12_c00405{height:68.520833pt;}
.h4_c00405{height:68.701172pt;}
.h1b_c00405{height:68.835938pt;}
.ha_c00405{height:69.355469pt;}
.h3_c00405{height:69.531250pt;}
.h11_c00405{height:69.875000pt;}
.h15_c00405{height:69.975412pt;}
.h6_c00405{height:70.009766pt;}
.h10_c00405{height:70.546875pt;}
.h1c_c00405{height:70.664062pt;}
.hb_c00405{height:71.218750pt;}
.h5_c00405{height:71.318359pt;}
.hf_c00405{height:71.890625pt;}
.h7_c00405{height:71.972656pt;}
.h17_c00405{height:72.562500pt;}
.h8_c00405{height:72.626953pt;}
.h1_c00405{height:73.234375pt;}
.h13_c00405{height:73.281250pt;}
.h2_c00405{height:73.906250pt;}
.h9_c00405{height:73.935547pt;}
.h14_c00405{height:75.768229pt;}
.h0_c00405{height:1122.666667pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x26_c00405{left:137.918493pt;}
.x1_c00405{left:138.878920pt;}
.xc_c00405{left:159.039587pt;}
.x15_c00405{left:160.639200pt;}
.x3_c00405{left:183.999067pt;}
.x25_c00405{left:184.960000pt;}
.x4_c00405{left:204.159733pt;}
.x18_c00405{left:208.319867pt;}
.x11_c00405{left:216.000000pt;}
.x2_c00405{left:221.438920pt;}
.x19_c00405{left:229.759320pt;}
.xb_c00405{left:235.519067pt;}
.x12_c00405{left:249.279720pt;}
.x5_c00405{left:252.159733pt;}
.x1a_c00405{left:254.718787pt;}
.x6_c00405{left:319.038533pt;}
.x3b_c00405{left:325.759320pt;}
.x1b_c00405{left:327.679733pt;}
.x3c_c00405{left:347.519453pt;}
.x1c_c00405{left:360.319333pt;}
.x13_c00405{left:369.279707pt;}
.x27_c00405{left:375.999067pt;}
.x14_c00405{left:382.719720pt;}
.x3d_c00405{left:387.518520pt;}
.x7_c00405{left:388.798787pt;}
.x29_c00405{left:390.719200pt;}
.x28_c00405{left:392.958947pt;}
.x1d_c00405{left:402.559573pt;}
.x2a_c00405{left:405.439453pt;}
.x36_c00405{left:409.599613pt;}
.x2d_c00405{left:424.639200pt;}
.x8_c00405{left:427.199707pt;}
.x37_c00405{left:442.558507pt;}
.x2e_c00405{left:446.718787pt;}
.x1e_c00405{left:467.519453pt;}
.x2f_c00405{left:477.118693pt;}
.x23_c00405{left:491.198693pt;}
.x30_c00405{left:495.999067pt;}
.x1f_c00405{left:515.519453pt;}
.x24_c00405{left:518.078693pt;}
.x9_c00405{left:520.960000pt;}
.x20_c00405{left:536.958907pt;}
.xa_c00405{left:538.558507pt;}
.xf_c00405{left:543.679733pt;}
.xd_c00405{left:560.318760pt;}
.x10_c00405{left:564.799840pt;}
.x31_c00405{left:565.759320pt;}
.x38_c00405{left:574.719720pt;}
.xe_c00405{left:577.278773pt;}
.x32_c00405{left:588.479040pt;}
.x16_c00405{left:598.079587pt;}
.x33_c00405{left:611.838907pt;}
.x17_c00405{left:615.999067pt;}
.x2b_c00405{left:616.960000pt;}
.x21_c00405{left:619.839840pt;}
.x2c_c00405{left:639.999067pt;}
.x39_c00405{left:641.598720pt;}
.x34_c00405{left:656.958907pt;}
.x22_c00405{left:680.639573pt;}
.x35_c00405{left:687.358893pt;}
.x3a_c00405{left:688.639160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f15be0d770d04eedfa9c6a4a.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_73ea44ab4d8c77f41c7f1be6.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_07dfd9560b35047f62485049.woff2')format("woff");}.ff3_c00406{font-family:ff3_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:ff4_c00406;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_59e551ebabf58e3677163b39.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_9ff387364b2ec9fc075a2d3d.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00406;src:url('chunks/assets/font_736de5cc3fff03876583acad.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00406{transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{transform:matrix(0.173423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173423,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177632,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{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);}
.mb_c00406{transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m20_c00406{transform:matrix(0.204054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204054,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m21_c00406{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232323,0.000000,0.000000,0.250000,0,0);}
.m19_c00406{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m24_c00406{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253049,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m1f_c00406{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m1e_c00406{transform:matrix(0.294776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294776,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);}
.m17_c00406{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.386792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386792,0.000000,0.000000,0.250000,0,0);}
.m1c_c00406{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);}
.m1b_c00406{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.513514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513514,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.606061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606061,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls16_c00406{letter-spacing:-16.465125px;}
.ls1f_c00406{letter-spacing:-16.041600px;}
.ls13_c00406{letter-spacing:-13.362458px;}
.ls15_c00406{letter-spacing:-13.325625px;}
.ls29_c00406{letter-spacing:-11.946825px;}
.ls1a_c00406{letter-spacing:-11.705475px;}
.lsc_c00406{letter-spacing:-10.979625px;}
.ls2f_c00406{letter-spacing:-9.942975px;}
.ls9_c00406{letter-spacing:-8.914500px;}
.ls17_c00406{letter-spacing:-7.840125px;}
.ls6_c00406{letter-spacing:-6.685875px;}
.ls14_c00406{letter-spacing:-6.269513px;}
.lse_c00406{letter-spacing:-6.057675px;}
.lsd_c00406{letter-spacing:-5.945625px;}
.lsb_c00406{letter-spacing:-5.196713px;}
.ls2e_c00406{letter-spacing:-4.921875px;}
.lsa_c00406{letter-spacing:-4.743000px;}
.ls7_c00406{letter-spacing:-4.456463px;}
.ls5_c00406{letter-spacing:-3.717000px;}
.ls26_c00406{letter-spacing:-3.337200px;}
.ls21_c00406{letter-spacing:-3.202500px;}
.ls2_c00406{letter-spacing:-2.968875px;}
.ls2b_c00406{letter-spacing:-2.914650px;}
.ls25_c00406{letter-spacing:-2.761125px;}
.ls10_c00406{letter-spacing:-2.477025px;}
.ls1_c00406{letter-spacing:-2.229413px;}
.ls12_c00406{letter-spacing:-2.189250px;}
.ls2a_c00406{letter-spacing:-1.560000px;}
.ls4_c00406{letter-spacing:-1.489163px;}
.ls27_c00406{letter-spacing:-1.456088px;}
.ls28_c00406{letter-spacing:-1.082250px;}
.ls11_c00406{letter-spacing:-1.051650px;}
.ls8_c00406{letter-spacing:-0.740250px;}
.ls3_c00406{letter-spacing:0.000000px;}
.ls1e_c00406{letter-spacing:0.539857px;}
.ls1b_c00406{letter-spacing:0.546000px;}
.ls1d_c00406{letter-spacing:0.805350px;}
.lsf_c00406{letter-spacing:0.819788px;}
.ls24_c00406{letter-spacing:1.303050px;}
.ls19_c00406{letter-spacing:1.566450px;}
.ls2c_c00406{letter-spacing:1.873958px;}
.ls23_c00406{letter-spacing:1.908998px;}
.ls20_c00406{letter-spacing:3.635100px;}
.ls2d_c00406{letter-spacing:3.717000px;}
.ls22_c00406{letter-spacing:4.039200px;}
.ls18_c00406{letter-spacing:5.184450px;}
.ls0_c00406{letter-spacing:23.774625px;}
.ls1c_c00406{letter-spacing:35.415000px;}
.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;}
._1d_c00406{margin-left:-172.465546px;}
._1c_c00406{margin-left:-11.349584px;}
._1b_c00406{margin-left:-7.363808px;}
._9_c00406{margin-left:-5.938121px;}
._15_c00406{margin-left:-4.837048px;}
._7_c00406{margin-left:-3.000345px;}
._6_c00406{margin-left:-1.173078px;}
._8_c00406{width:1.583053px;}
._d_c00406{width:2.708643px;}
._5_c00406{width:4.425928px;}
._c_c00406{width:5.435191px;}
._a_c00406{width:6.933299px;}
._0_c00406{width:8.296253px;}
._19_c00406{width:10.035885px;}
._2_c00406{width:11.263464px;}
._1_c00406{width:12.481845px;}
._1a_c00406{width:13.717448px;}
._3_c00406{width:14.765595px;}
._e_c00406{width:17.471891px;}
._16_c00406{width:18.598967px;}
._13_c00406{width:19.840854px;}
._12_c00406{width:21.287314px;}
._17_c00406{width:22.332504px;}
._b_c00406{width:23.473577px;}
._18_c00406{width:24.489229px;}
._10_c00406{width:25.713584px;}
._4_c00406{width:27.571162px;}
._11_c00406{width:29.448280px;}
._14_c00406{width:31.380270px;}
._f_c00406{width:35.893121px;}
.fc0_c00406{color:transparent;}
.fsa_c00406{font-size:24.750000px;}
.fs11_c00406{font-size:30.000000px;}
.fs16_c00406{font-size:31.500000px;}
.fs15_c00406{font-size:36.000000px;}
.fs14_c00406{font-size:36.750000px;}
.fs12_c00406{font-size:37.500000px;}
.fsf_c00406{font-size:38.250000px;}
.fsd_c00406{font-size:39.750000px;}
.fs13_c00406{font-size:44.250000px;}
.fsc_c00406{font-size:45.000000px;}
.fs18_c00406{font-size:50.250000px;}
.fs19_c00406{font-size:54.750000px;}
.fsb_c00406{font-size:61.500000px;}
.fs10_c00406{font-size:72.750000px;}
.fs17_c00406{font-size:74.250000px;}
.fs2_c00406{font-size:76.500000px;}
.fs1b_c00406{font-size:78.000000px;}
.fs0_c00406{font-size:78.750000px;}
.fs8_c00406{font-size:79.500000px;}
.fs1_c00406{font-size:80.250000px;}
.fs1a_c00406{font-size:81.000000px;}
.fs4_c00406{font-size:81.750000px;}
.fs5_c00406{font-size:82.500000px;}
.fs7_c00406{font-size:83.250000px;}
.fs9_c00406{font-size:84.750000px;}
.fs6_c00406{font-size:85.500000px;}
.fs3_c00406{font-size:86.250000px;}
.fse_c00406{font-size:138.750000px;}
.y0_c00406{bottom:0.000000px;}
.y2d_c00406{bottom:160.919835px;}
.y2c_c00406{bottom:190.799565px;}
.y2b_c00406{bottom:190.799655px;}
.y2a_c00406{bottom:220.319190px;}
.y29_c00406{bottom:250.559100px;}
.y28_c00406{bottom:250.559265px;}
.y27_c00406{bottom:280.078785px;}
.y26_c00406{bottom:339.479235px;}
.y25_c00406{bottom:369.359850px;}
.y24_c00406{bottom:369.360030px;}
.y23_c00406{bottom:398.879565px;}
.y22_c00406{bottom:432.000000px;}
.y21_c00406{bottom:457.918950px;}
.y20_c00406{bottom:457.920255px;}
.y1f_c00406{bottom:488.520660px;}
.y1e_c00406{bottom:518.400375px;}
.y1d_c00406{bottom:548.640285px;}
.y1b_c00406{bottom:578.159205px;}
.y1c_c00406{bottom:578.159820px;}
.y19_c00406{bottom:608.038245px;}
.y1a_c00406{bottom:608.038920px;}
.y18_c00406{bottom:637.199385px;}
.y17_c00406{bottom:637.199550px;}
.y16_c00406{bottom:666.719085px;}
.y15_c00406{bottom:696.240420px;}
.y14_c00406{bottom:756.359250px;}
.y13_c00406{bottom:756.360150px;}
.y11_c00406{bottom:786.239730px;}
.y12_c00406{bottom:786.239865px;}
.y10_c00406{bottom:816.479640px;}
.yf_c00406{bottom:816.480210px;}
.ye_c00406{bottom:846.359940px;}
.yd_c00406{bottom:875.879475px;}
.yc_c00406{bottom:905.759190px;}
.yb_c00406{bottom:935.280540px;}
.ya_c00406{bottom:965.160255px;}
.y9_c00406{bottom:995.039985px;}
.y8_c00406{bottom:995.040165px;}
.y7_c00406{bottom:1024.559685px;}
.y6_c00406{bottom:1024.560585px;}
.y5_c00406{bottom:1054.440315px;}
.y4_c00406{bottom:1054.441470px;}
.y3_c00406{bottom:1083.961005px;}
.y2_c00406{bottom:1113.480540px;}
.y1_c00406{bottom:1143.360255px;}
.hc_c00406{height:25.813477px;}
.h14_c00406{height:31.289062px;}
.h19_c00406{height:32.853516px;}
.h18_c00406{height:37.546875px;}
.h17_c00406{height:38.329102px;}
.h15_c00406{height:39.111328px;}
.h12_c00406{height:39.893555px;}
.h10_c00406{height:41.458008px;}
.h16_c00406{height:46.151367px;}
.he_c00406{height:46.933594px;}
.h1b_c00406{height:50.642578px;}
.h1c_c00406{height:57.102539px;}
.hd_c00406{height:61.980469px;}
.h3_c00406{height:75.080566px;}
.h13_c00406{height:75.875977px;}
.h1e_c00406{height:76.552734px;}
.h1_c00406{height:77.288818px;}
.h1a_c00406{height:77.440430px;}
.ha_c00406{height:78.024902px;}
.h2_c00406{height:78.760986px;}
.h5_c00406{height:80.233154px;}
.h6_c00406{height:80.969238px;}
.h1d_c00406{height:81.632812px;}
.h1f_c00406{height:81.705322px;}
.h9_c00406{height:82.274414px;}
.h7_c00406{height:82.388672px;}
.hf_c00406{height:83.144531px;}
.hb_c00406{height:83.177490px;}
.h8_c00406{height:84.498047px;}
.h4_c00406{height:85.239258px;}
.h11_c00406{height:144.711914px;}
.h0_c00406{height:1263.000000px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x15_c00406{left:158.398470px;}
.x7_c00406{left:159.476985px;}
.x1_c00406{left:160.559685px;}
.x14_c00406{left:184.679100px;}
.x34_c00406{left:186.478665px;}
.x20_c00406{left:190.438665px;}
.x21_c00406{left:217.438635px;}
.x10_c00406{left:232.919535px;}
.x22_c00406{left:271.438635px;}
.x11_c00406{left:272.519685px;}
.x12_c00406{left:304.918350px;}
.x23_c00406{left:305.999385px;}
.x31_c00406{left:307.798950px;}
.x1c_c00406{left:332.279250px;}
.x13_c00406{left:338.399850px;}
.x24_c00406{left:340.199385px;}
.x37_c00406{left:355.678530px;}
.x2_c00406{left:359.999385px;}
.x8_c00406{left:372.958950px;}
.x1d_c00406{left:377.279850px;}
.x38_c00406{left:383.039385px;}
.x3_c00406{left:388.439715px;}
.x25_c00406{left:392.038920px;}
.x35_c00406{left:409.319235px;}
.x26_c00406{left:415.439670px;}
.x9_c00406{left:418.318770px;}
.x16_c00406{left:424.080000px;}
.x36_c00406{left:430.198785px;}
.x27_c00406{left:442.078815px;}
.x17_c00406{left:462.239820px;}
.x1a_c00406{left:463.678530px;}
.x28_c00406{left:472.318770px;}
.x18_c00406{left:477.719100px;}
.xa_c00406{left:489.958335px;}
.x29_c00406{left:493.918350px;}
.x1b_c00406{left:512.639100px;}
.xb_c00406{left:515.878920px;}
.x19_c00406{left:521.279250px;}
.x2a_c00406{left:524.878320px;}
.x4_c00406{left:534.599670px;}
.x5_c00406{left:556.919535px;}
.x2b_c00406{left:561.958920px;}
.x6_c00406{left:570.239820px;}
.x2c_c00406{left:606.598530px;}
.xc_c00406{left:609.838530px;}
.xd_c00406{left:636.119985px;}
.x2d_c00406{left:637.199385px;}
.x32_c00406{left:667.798560px;}
.x2e_c00406{left:669.599670px;}
.x33_c00406{left:687.239220px;}
.x1e_c00406{left:710.638545px;}
.x1f_c00406{left:727.559685px;}
.x2f_c00406{left:758.158770px;}
.xe_c00406{left:759.239820px;}
.xf_c00406{left:772.558590px;}
.x30_c00406{left:781.198785px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls16_c00406{letter-spacing:-14.635667pt;}
.ls1f_c00406{letter-spacing:-14.259200pt;}
.ls13_c00406{letter-spacing:-11.877740pt;}
.ls15_c00406{letter-spacing:-11.845000pt;}
.ls29_c00406{letter-spacing:-10.619400pt;}
.ls1a_c00406{letter-spacing:-10.404867pt;}
.lsc_c00406{letter-spacing:-9.759667pt;}
.ls2f_c00406{letter-spacing:-8.838200pt;}
.ls9_c00406{letter-spacing:-7.924000pt;}
.ls17_c00406{letter-spacing:-6.969000pt;}
.ls6_c00406{letter-spacing:-5.943000pt;}
.ls14_c00406{letter-spacing:-5.572900pt;}
.lse_c00406{letter-spacing:-5.384600pt;}
.lsd_c00406{letter-spacing:-5.285000pt;}
.lsb_c00406{letter-spacing:-4.619300pt;}
.ls2e_c00406{letter-spacing:-4.375000pt;}
.lsa_c00406{letter-spacing:-4.216000pt;}
.ls7_c00406{letter-spacing:-3.961300pt;}
.ls5_c00406{letter-spacing:-3.304000pt;}
.ls26_c00406{letter-spacing:-2.966400pt;}
.ls21_c00406{letter-spacing:-2.846667pt;}
.ls2_c00406{letter-spacing:-2.639000pt;}
.ls2b_c00406{letter-spacing:-2.590800pt;}
.ls25_c00406{letter-spacing:-2.454333pt;}
.ls10_c00406{letter-spacing:-2.201800pt;}
.ls1_c00406{letter-spacing:-1.981700pt;}
.ls12_c00406{letter-spacing:-1.946000pt;}
.ls2a_c00406{letter-spacing:-1.386667pt;}
.ls4_c00406{letter-spacing:-1.323700pt;}
.ls27_c00406{letter-spacing:-1.294300pt;}
.ls28_c00406{letter-spacing:-0.962000pt;}
.ls11_c00406{letter-spacing:-0.934800pt;}
.ls8_c00406{letter-spacing:-0.658000pt;}
.ls3_c00406{letter-spacing:0.000000pt;}
.ls1e_c00406{letter-spacing:0.479873pt;}
.ls1b_c00406{letter-spacing:0.485333pt;}
.ls1d_c00406{letter-spacing:0.715867pt;}
.lsf_c00406{letter-spacing:0.728700pt;}
.ls24_c00406{letter-spacing:1.158267pt;}
.ls19_c00406{letter-spacing:1.392400pt;}
.ls2c_c00406{letter-spacing:1.665740pt;}
.ls23_c00406{letter-spacing:1.696887pt;}
.ls20_c00406{letter-spacing:3.231200pt;}
.ls2d_c00406{letter-spacing:3.304000pt;}
.ls22_c00406{letter-spacing:3.590400pt;}
.ls18_c00406{letter-spacing:4.608400pt;}
.ls0_c00406{letter-spacing:21.133000pt;}
.ls1c_c00406{letter-spacing:31.480000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
._1d_c00406{margin-left:-153.302708pt;}
._1c_c00406{margin-left:-10.088519pt;}
._1b_c00406{margin-left:-6.545608pt;}
._9_c00406{margin-left:-5.278330pt;}
._15_c00406{margin-left:-4.299598pt;}
._7_c00406{margin-left:-2.666974pt;}
._6_c00406{margin-left:-1.042736pt;}
._8_c00406{width:1.407158pt;}
._d_c00406{width:2.407683pt;}
._5_c00406{width:3.934158pt;}
._c_c00406{width:4.831281pt;}
._a_c00406{width:6.162932pt;}
._0_c00406{width:7.374447pt;}
._19_c00406{width:8.920787pt;}
._2_c00406{width:10.011968pt;}
._1_c00406{width:11.094974pt;}
._1a_c00406{width:12.193287pt;}
._3_c00406{width:13.124974pt;}
._e_c00406{width:15.530570pt;}
._16_c00406{width:16.532415pt;}
._13_c00406{width:17.636315pt;}
._12_c00406{width:18.922057pt;}
._17_c00406{width:19.851115pt;}
._b_c00406{width:20.865402pt;}
._18_c00406{width:21.768204pt;}
._10_c00406{width:22.856519pt;}
._4_c00406{width:24.507700pt;}
._11_c00406{width:26.176249pt;}
._14_c00406{width:27.893574pt;}
._f_c00406{width:31.904996pt;}
.fsa_c00406{font-size:22.000000pt;}
.fs11_c00406{font-size:26.666667pt;}
.fs16_c00406{font-size:28.000000pt;}
.fs15_c00406{font-size:32.000000pt;}
.fs14_c00406{font-size:32.666667pt;}
.fs12_c00406{font-size:33.333333pt;}
.fsf_c00406{font-size:34.000000pt;}
.fsd_c00406{font-size:35.333333pt;}
.fs13_c00406{font-size:39.333333pt;}
.fsc_c00406{font-size:40.000000pt;}
.fs18_c00406{font-size:44.666667pt;}
.fs19_c00406{font-size:48.666667pt;}
.fsb_c00406{font-size:54.666667pt;}
.fs10_c00406{font-size:64.666667pt;}
.fs17_c00406{font-size:66.000000pt;}
.fs2_c00406{font-size:68.000000pt;}
.fs1b_c00406{font-size:69.333333pt;}
.fs0_c00406{font-size:70.000000pt;}
.fs8_c00406{font-size:70.666667pt;}
.fs1_c00406{font-size:71.333333pt;}
.fs1a_c00406{font-size:72.000000pt;}
.fs4_c00406{font-size:72.666667pt;}
.fs5_c00406{font-size:73.333333pt;}
.fs7_c00406{font-size:74.000000pt;}
.fs9_c00406{font-size:75.333333pt;}
.fs6_c00406{font-size:76.000000pt;}
.fs3_c00406{font-size:76.666667pt;}
.fse_c00406{font-size:123.333333pt;}
.y0_c00406{bottom:0.000000pt;}
.y2d_c00406{bottom:143.039853pt;}
.y2c_c00406{bottom:169.599613pt;}
.y2b_c00406{bottom:169.599693pt;}
.y2a_c00406{bottom:195.839280pt;}
.y29_c00406{bottom:222.719200pt;}
.y28_c00406{bottom:222.719347pt;}
.y27_c00406{bottom:248.958920pt;}
.y26_c00406{bottom:301.759320pt;}
.y25_c00406{bottom:328.319867pt;}
.y24_c00406{bottom:328.320027pt;}
.y23_c00406{bottom:354.559613pt;}
.y22_c00406{bottom:384.000000pt;}
.y21_c00406{bottom:407.039067pt;}
.y20_c00406{bottom:407.040227pt;}
.y1f_c00406{bottom:434.240587pt;}
.y1e_c00406{bottom:460.800333pt;}
.y1d_c00406{bottom:487.680253pt;}
.y1b_c00406{bottom:513.919293pt;}
.y1c_c00406{bottom:513.919840pt;}
.y19_c00406{bottom:540.478440pt;}
.y1a_c00406{bottom:540.479040pt;}
.y18_c00406{bottom:566.399453pt;}
.y17_c00406{bottom:566.399600pt;}
.y16_c00406{bottom:592.639187pt;}
.y15_c00406{bottom:618.880373pt;}
.y14_c00406{bottom:672.319333pt;}
.y13_c00406{bottom:672.320133pt;}
.y11_c00406{bottom:698.879760pt;}
.y12_c00406{bottom:698.879880pt;}
.y10_c00406{bottom:725.759680pt;}
.yf_c00406{bottom:725.760187pt;}
.ye_c00406{bottom:752.319947pt;}
.yd_c00406{bottom:778.559533pt;}
.yc_c00406{bottom:805.119280pt;}
.yb_c00406{bottom:831.360480pt;}
.ya_c00406{bottom:857.920227pt;}
.y9_c00406{bottom:884.479987pt;}
.y8_c00406{bottom:884.480147pt;}
.y7_c00406{bottom:910.719720pt;}
.y6_c00406{bottom:910.720520pt;}
.y5_c00406{bottom:937.280280pt;}
.y4_c00406{bottom:937.281307pt;}
.y3_c00406{bottom:963.520893pt;}
.y2_c00406{bottom:989.760480pt;}
.y1_c00406{bottom:1016.320227pt;}
.hc_c00406{height:22.945312pt;}
.h14_c00406{height:27.812500pt;}
.h19_c00406{height:29.203125pt;}
.h18_c00406{height:33.375000pt;}
.h17_c00406{height:34.070312pt;}
.h15_c00406{height:34.765625pt;}
.h12_c00406{height:35.460938pt;}
.h10_c00406{height:36.851562pt;}
.h16_c00406{height:41.023438pt;}
.he_c00406{height:41.718750pt;}
.h1b_c00406{height:45.015625pt;}
.h1c_c00406{height:50.757812pt;}
.hd_c00406{height:55.093750pt;}
.h3_c00406{height:66.738281pt;}
.h13_c00406{height:67.445312pt;}
.h1e_c00406{height:68.046875pt;}
.h1_c00406{height:68.701172pt;}
.h1a_c00406{height:68.835938pt;}
.ha_c00406{height:69.355469pt;}
.h2_c00406{height:70.009766pt;}
.h5_c00406{height:71.318359pt;}
.h6_c00406{height:71.972656pt;}
.h1d_c00406{height:72.562500pt;}
.h1f_c00406{height:72.626953pt;}
.h9_c00406{height:73.132813pt;}
.h7_c00406{height:73.234375pt;}
.hf_c00406{height:73.906250pt;}
.hb_c00406{height:73.935547pt;}
.h8_c00406{height:75.109375pt;}
.h4_c00406{height:75.768229pt;}
.h11_c00406{height:128.632812pt;}
.h0_c00406{height:1122.666667pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x15_c00406{left:140.798640pt;}
.x7_c00406{left:141.757320pt;}
.x1_c00406{left:142.719720pt;}
.x14_c00406{left:164.159200pt;}
.x34_c00406{left:165.758813pt;}
.x20_c00406{left:169.278813pt;}
.x21_c00406{left:193.278787pt;}
.x10_c00406{left:207.039587pt;}
.x22_c00406{left:241.278787pt;}
.x11_c00406{left:242.239720pt;}
.x12_c00406{left:271.038533pt;}
.x23_c00406{left:271.999453pt;}
.x31_c00406{left:273.599067pt;}
.x1c_c00406{left:295.359333pt;}
.x13_c00406{left:300.799867pt;}
.x24_c00406{left:302.399453pt;}
.x37_c00406{left:316.158693pt;}
.x2_c00406{left:319.999453pt;}
.x8_c00406{left:331.519067pt;}
.x1d_c00406{left:335.359867pt;}
.x38_c00406{left:340.479453pt;}
.x3_c00406{left:345.279747pt;}
.x25_c00406{left:348.479040pt;}
.x35_c00406{left:363.839320pt;}
.x26_c00406{left:369.279707pt;}
.x9_c00406{left:371.838907pt;}
.x16_c00406{left:376.960000pt;}
.x36_c00406{left:382.398920pt;}
.x27_c00406{left:392.958947pt;}
.x17_c00406{left:410.879840pt;}
.x1a_c00406{left:412.158693pt;}
.x28_c00406{left:419.838907pt;}
.x18_c00406{left:424.639200pt;}
.xa_c00406{left:435.518520pt;}
.x29_c00406{left:439.038533pt;}
.x1b_c00406{left:455.679200pt;}
.xb_c00406{left:458.559040pt;}
.x19_c00406{left:463.359333pt;}
.x2a_c00406{left:466.558507pt;}
.x4_c00406{left:475.199707pt;}
.x5_c00406{left:495.039587pt;}
.x2b_c00406{left:499.519040pt;}
.x6_c00406{left:506.879840pt;}
.x2c_c00406{left:539.198693pt;}
.xc_c00406{left:542.078693pt;}
.xd_c00406{left:565.439987pt;}
.x2d_c00406{left:566.399453pt;}
.x32_c00406{left:593.598720pt;}
.x2e_c00406{left:595.199707pt;}
.x33_c00406{left:610.879307pt;}
.x1e_c00406{left:631.678707pt;}
.x1f_c00406{left:646.719720pt;}
.x2f_c00406{left:673.918907pt;}
.xe_c00406{left:674.879840pt;}
.xf_c00406{left:686.718747pt;}
.x30_c00406{left:694.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf64c8b733c2c797e95cad4a.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_ffd67fe87a195ebdc9296ff9.woff2')format("woff");}.ff2_c00407{font-family:ff2_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:ff3_c00407;src:url('chunks/assets/font_f611c4b3aef0ef168fc96cd3.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00407{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188073,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{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_c00407{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls5_c00407{letter-spacing:-10.450913px;}
.ls16_c00407{letter-spacing:-8.976150px;}
.lsb_c00407{letter-spacing:-8.914500px;}
.ls6_c00407{letter-spacing:-8.175038px;}
.ls10_c00407{letter-spacing:-5.945625px;}
.lsa_c00407{letter-spacing:-5.894175px;}
.ls7_c00407{letter-spacing:-5.196713px;}
.ls19_c00407{letter-spacing:-5.109375px;}
.ls11_c00407{letter-spacing:-4.719503px;}
.lsc_c00407{letter-spacing:-4.456463px;}
.ls4_c00407{letter-spacing:-3.717000px;}
.lsd_c00407{letter-spacing:-3.646050px;}
.lsf_c00407{letter-spacing:-2.971800px;}
.ls3_c00407{letter-spacing:-2.968875px;}
.ls15_c00407{letter-spacing:-2.431575px;}
.ls2_c00407{letter-spacing:-2.229413px;}
.ls14_c00407{letter-spacing:-1.497690px;}
.ls8_c00407{letter-spacing:-1.489163px;}
.ls1c_c00407{letter-spacing:-1.431315px;}
.ls13_c00407{letter-spacing:-0.874800px;}
.ls9_c00407{letter-spacing:-0.740250px;}
.lse_c00407{letter-spacing:0.000000px;}
.ls1a_c00407{letter-spacing:1.606800px;}
.ls1b_c00407{letter-spacing:1.612500px;}
.ls18_c00407{letter-spacing:1.815000px;}
.ls17_c00407{letter-spacing:2.112000px;}
.ls0_c00407{letter-spacing:2.616300px;}
.ls1_c00407{letter-spacing:6.344250px;}
.ls12_c00407{letter-spacing:9.908100px;}
.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;}
._10_c00407{margin-left:-18.714061px;}
._f_c00407{margin-left:-10.341019px;}
._e_c00407{margin-left:-4.144850px;}
._5_c00407{margin-left:-3.014253px;}
._9_c00407{margin-left:-1.656558px;}
._3_c00407{width:1.103704px;}
._a_c00407{width:2.309143px;}
._1_c00407{width:3.861781px;}
._2_c00407{width:5.494610px;}
._0_c00407{width:6.774045px;}
._4_c00407{width:8.121606px;}
._6_c00407{width:9.783425px;}
._c_c00407{width:11.549222px;}
._8_c00407{width:12.680370px;}
._20_c00407{width:14.493432px;}
._1d_c00407{width:15.843861px;}
._1c_c00407{width:18.825425px;}
._1b_c00407{width:20.351571px;}
._7_c00407{width:21.658018px;}
._1e_c00407{width:23.286494px;}
._1f_c00407{width:24.524934px;}
._b_c00407{width:25.569516px;}
._13_c00407{width:27.478980px;}
._d_c00407{width:28.604006px;}
._12_c00407{width:30.947056px;}
._11_c00407{width:34.500791px;}
._17_c00407{width:39.703952px;}
._16_c00407{width:42.368986px;}
._15_c00407{width:45.343923px;}
._18_c00407{width:47.770285px;}
._1a_c00407{width:49.870800px;}
._14_c00407{width:51.564891px;}
._19_c00407{width:53.237140px;}
.fc0_c00407{color:transparent;}
.fs9_c00407{font-size:75.000000px;}
.fsa_c00407{font-size:76.500000px;}
.fs8_c00407{font-size:77.250000px;}
.fs3_c00407{font-size:78.000000px;}
.fs0_c00407{font-size:78.750000px;}
.fs2_c00407{font-size:80.250000px;}
.fs4_c00407{font-size:81.000000px;}
.fs1_c00407{font-size:81.750000px;}
.fs5_c00407{font-size:82.500000px;}
.fs7_c00407{font-size:101.250000px;}
.fs6_c00407{font-size:115.500000px;}
.y0_c00407{bottom:0.000000px;}
.y1e_c00407{bottom:185.040000px;}
.y1d_c00407{bottom:214.198785px;}
.y1c_c00407{bottom:243.359250px;}
.y1b_c00407{bottom:272.878950px;}
.y1a_c00407{bottom:303.118785px;}
.y19_c00407{bottom:332.640150px;}
.y18_c00407{bottom:362.519100px;}
.y17_c00407{bottom:481.319820px;}
.y16_c00407{bottom:510.839535px;}
.y15_c00407{bottom:510.840015px;}
.y14_c00407{bottom:541.079940px;}
.y13_c00407{bottom:570.959655px;}
.y12_c00407{bottom:600.839385px;}
.y11_c00407{bottom:719.639700px;}
.y10_c00407{bottom:749.518620px;}
.yf_c00407{bottom:779.399235px;}
.ye_c00407{bottom:809.639145px;}
.yd_c00407{bottom:839.518860px;}
.yb_c00407{bottom:868.861590px;}
.yc_c00407{bottom:869.398590px;}
.ya_c00407{bottom:898.560180px;}
.y9_c00407{bottom:928.439895px;}
.y8_c00407{bottom:988.199340px;}
.y7_c00407{bottom:988.199520px;}
.y6_c00407{bottom:1017.719055px;}
.y5_c00407{bottom:1017.719265px;}
.y4_c00407{bottom:1047.238785px;}
.y2_c00407{bottom:1076.759235px;}
.y3_c00407{bottom:1076.760135px;}
.y1_c00407{bottom:1136.878875px;}
.hf_c00407{height:73.608398px;}
.h10_c00407{height:75.080566px;}
.he_c00407{height:75.816650px;}
.h5_c00407{height:76.552734px;}
.h1_c00407{height:77.288818px;}
.h4_c00407{height:78.760986px;}
.h2_c00407{height:79.365234px;}
.h3_c00407{height:80.233154px;}
.h9_c00407{height:80.791992px;}
.h6_c00407{height:80.876953px;}
.hb_c00407{height:80.969238px;}
.ha_c00407{height:81.533203px;}
.h8_c00407{height:81.632812px;}
.h7_c00407{height:82.388672px;}
.hd_c00407{height:105.600586px;}
.hc_c00407{height:120.462891px;}
.h0_c00407{height:1263.000000px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:154.798515px;}
.x4_c00407{left:205.919535px;}
.x18_c00407{left:210.599700px;}
.x6_c00407{left:221.398635px;}
.xc_c00407{left:229.318800px;}
.x14_c00407{left:236.159385px;}
.x5_c00407{left:246.958350px;}
.x7_c00407{left:256.318800px;}
.xd_c00407{left:266.399250px;}
.x8_c00407{left:289.439235px;}
.x19_c00407{left:296.279850px;}
.x9_c00407{left:310.318800px;}
.x15_c00407{left:311.399850px;}
.x16_c00407{left:328.678500px;}
.xe_c00407{left:329.759535px;}
.xf_c00407{left:357.118785px;}
.x1c_c00407{left:374.040000px;}
.x1d_c00407{left:389.519070px;}
.x10_c00407{left:399.238770px;}
.x1a_c00407{left:402.478635px;}
.x1e_c00407{left:408.599070px;}
.x1b_c00407{left:417.598530px;}
.x11_c00407{left:470.519070px;}
.xa_c00407{left:534.958920px;}
.x12_c00407{left:546.838950px;}
.xb_c00407{left:567.718500px;}
.x13_c00407{left:570.599070px;}
.x2_c00407{left:684.358605px;}
.x3_c00407{left:722.159370px;}
.x17_c00407{left:775.079955px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls5_c00407{letter-spacing:-9.289700pt;}
.ls16_c00407{letter-spacing:-7.978800pt;}
.lsb_c00407{letter-spacing:-7.924000pt;}
.ls6_c00407{letter-spacing:-7.266700pt;}
.ls10_c00407{letter-spacing:-5.285000pt;}
.lsa_c00407{letter-spacing:-5.239267pt;}
.ls7_c00407{letter-spacing:-4.619300pt;}
.ls19_c00407{letter-spacing:-4.541667pt;}
.ls11_c00407{letter-spacing:-4.195113pt;}
.lsc_c00407{letter-spacing:-3.961300pt;}
.ls4_c00407{letter-spacing:-3.304000pt;}
.lsd_c00407{letter-spacing:-3.240933pt;}
.lsf_c00407{letter-spacing:-2.641600pt;}
.ls3_c00407{letter-spacing:-2.639000pt;}
.ls15_c00407{letter-spacing:-2.161400pt;}
.ls2_c00407{letter-spacing:-1.981700pt;}
.ls14_c00407{letter-spacing:-1.331280pt;}
.ls8_c00407{letter-spacing:-1.323700pt;}
.ls1c_c00407{letter-spacing:-1.272280pt;}
.ls13_c00407{letter-spacing:-0.777600pt;}
.ls9_c00407{letter-spacing:-0.658000pt;}
.lse_c00407{letter-spacing:0.000000pt;}
.ls1a_c00407{letter-spacing:1.428267pt;}
.ls1b_c00407{letter-spacing:1.433333pt;}
.ls18_c00407{letter-spacing:1.613333pt;}
.ls17_c00407{letter-spacing:1.877333pt;}
.ls0_c00407{letter-spacing:2.325600pt;}
.ls1_c00407{letter-spacing:5.639333pt;}
.ls12_c00407{letter-spacing:8.807200pt;}
.ws0_c00407{word-spacing:0.000000pt;}
._10_c00407{margin-left:-16.634721pt;}
._f_c00407{margin-left:-9.192017pt;}
._e_c00407{margin-left:-3.684311pt;}
._5_c00407{margin-left:-2.679336pt;}
._9_c00407{margin-left:-1.472496pt;}
._3_c00407{width:0.981070pt;}
._a_c00407{width:2.052572pt;}
._1_c00407{width:3.432694pt;}
._2_c00407{width:4.884098pt;}
._0_c00407{width:6.021374pt;}
._4_c00407{width:7.219206pt;}
._6_c00407{width:8.696377pt;}
._c_c00407{width:10.265975pt;}
._8_c00407{width:11.271440pt;}
._20_c00407{width:12.883051pt;}
._1d_c00407{width:14.083432pt;}
._1c_c00407{width:16.733711pt;}
._1b_c00407{width:18.090285pt;}
._7_c00407{width:19.251572pt;}
._1e_c00407{width:20.699106pt;}
._1f_c00407{width:21.799942pt;}
._b_c00407{width:22.728458pt;}
._13_c00407{width:24.425760pt;}
._d_c00407{width:25.425783pt;}
._12_c00407{width:27.508494pt;}
._11_c00407{width:30.667370pt;}
._17_c00407{width:35.292402pt;}
._16_c00407{width:37.661321pt;}
._15_c00407{width:40.305709pt;}
._18_c00407{width:42.462475pt;}
._1a_c00407{width:44.329600pt;}
._14_c00407{width:45.835458pt;}
._19_c00407{width:47.321902pt;}
.fs9_c00407{font-size:66.666667pt;}
.fsa_c00407{font-size:68.000000pt;}
.fs8_c00407{font-size:68.666667pt;}
.fs3_c00407{font-size:69.333333pt;}
.fs0_c00407{font-size:70.000000pt;}
.fs2_c00407{font-size:71.333333pt;}
.fs4_c00407{font-size:72.000000pt;}
.fs1_c00407{font-size:72.666667pt;}
.fs5_c00407{font-size:73.333333pt;}
.fs7_c00407{font-size:90.000000pt;}
.fs6_c00407{font-size:102.666667pt;}
.y0_c00407{bottom:0.000000pt;}
.y1e_c00407{bottom:164.480000pt;}
.y1d_c00407{bottom:190.398920pt;}
.y1c_c00407{bottom:216.319333pt;}
.y1b_c00407{bottom:242.559067pt;}
.y1a_c00407{bottom:269.438920pt;}
.y19_c00407{bottom:295.680133pt;}
.y18_c00407{bottom:322.239200pt;}
.y17_c00407{bottom:427.839840pt;}
.y16_c00407{bottom:454.079587pt;}
.y15_c00407{bottom:454.080013pt;}
.y14_c00407{bottom:480.959947pt;}
.y13_c00407{bottom:507.519693pt;}
.y12_c00407{bottom:534.079453pt;}
.y11_c00407{bottom:639.679733pt;}
.y10_c00407{bottom:666.238773pt;}
.yf_c00407{bottom:692.799320pt;}
.ye_c00407{bottom:719.679240pt;}
.yd_c00407{bottom:746.238987pt;}
.yb_c00407{bottom:772.321413pt;}
.yc_c00407{bottom:772.798747pt;}
.ya_c00407{bottom:798.720160pt;}
.y9_c00407{bottom:825.279907pt;}
.y8_c00407{bottom:878.399413pt;}
.y7_c00407{bottom:878.399573pt;}
.y6_c00407{bottom:904.639160pt;}
.y5_c00407{bottom:904.639347pt;}
.y4_c00407{bottom:930.878920pt;}
.y2_c00407{bottom:957.119320pt;}
.y3_c00407{bottom:957.120120pt;}
.y1_c00407{bottom:1010.559000pt;}
.hf_c00407{height:65.429688pt;}
.h10_c00407{height:66.738281pt;}
.he_c00407{height:67.392578pt;}
.h5_c00407{height:68.046875pt;}
.h1_c00407{height:68.701172pt;}
.h4_c00407{height:70.009766pt;}
.h2_c00407{height:70.546875pt;}
.h3_c00407{height:71.318359pt;}
.h9_c00407{height:71.815104pt;}
.h6_c00407{height:71.890625pt;}
.hb_c00407{height:71.972656pt;}
.ha_c00407{height:72.473958pt;}
.h8_c00407{height:72.562500pt;}
.h7_c00407{height:73.234375pt;}
.hd_c00407{height:93.867188pt;}
.hc_c00407{height:107.078125pt;}
.h0_c00407{height:1122.666667pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:137.598680pt;}
.x4_c00407{left:183.039587pt;}
.x18_c00407{left:187.199733pt;}
.x6_c00407{left:196.798787pt;}
.xc_c00407{left:203.838933pt;}
.x14_c00407{left:209.919453pt;}
.x5_c00407{left:219.518533pt;}
.x7_c00407{left:227.838933pt;}
.xd_c00407{left:236.799333pt;}
.x8_c00407{left:257.279320pt;}
.x19_c00407{left:263.359867pt;}
.x9_c00407{left:275.838933pt;}
.x15_c00407{left:276.799867pt;}
.x16_c00407{left:292.158667pt;}
.xe_c00407{left:293.119587pt;}
.xf_c00407{left:317.438920pt;}
.x1c_c00407{left:332.480000pt;}
.x1d_c00407{left:346.239173pt;}
.x10_c00407{left:354.878907pt;}
.x1a_c00407{left:357.758787pt;}
.x1e_c00407{left:363.199173pt;}
.x1b_c00407{left:371.198693pt;}
.x11_c00407{left:418.239173pt;}
.xa_c00407{left:475.519040pt;}
.x12_c00407{left:486.079067pt;}
.xb_c00407{left:504.638667pt;}
.x13_c00407{left:507.199173pt;}
.x2_c00407{left:608.318760pt;}
.x3_c00407{left:641.919440pt;}
.x17_c00407{left:688.959960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6934b7a55c78b7b68a9d7bcd.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_0d2d7465614f2afb028fb5c8.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_9b02435b5a50374fbe0bc8c1.woff2')format("woff");}.ff3_c00408{font-family:ff3_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;}
.m1_c00408{transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195087,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280844,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.319892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319892,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.lsd_c00408{letter-spacing:-8.914500px;}
.lse_c00408{letter-spacing:-8.175038px;}
.ls11_c00408{letter-spacing:-7.426125px;}
.lsa_c00408{letter-spacing:-6.171225px;}
.lsf_c00408{letter-spacing:-5.945625px;}
.ls3_c00408{letter-spacing:-5.196713px;}
.ls7_c00408{letter-spacing:-4.687200px;}
.lsc_c00408{letter-spacing:-4.453800px;}
.ls8_c00408{letter-spacing:-3.860025px;}
.ls5_c00408{letter-spacing:-3.717000px;}
.ls1_c00408{letter-spacing:-2.968875px;}
.ls9_c00408{letter-spacing:-2.294348px;}
.ls0_c00408{letter-spacing:-2.229413px;}
.lsb_c00408{letter-spacing:-1.619468px;}
.ls4_c00408{letter-spacing:-1.489163px;}
.ls6_c00408{letter-spacing:-0.740250px;}
.ls2_c00408{letter-spacing:0.000000px;}
.ls10_c00408{letter-spacing:2.671523px;}
.ls12_c00408{letter-spacing:3.637710px;}
.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;}
._14_c00408{margin-left:-4.658315px;}
._13_c00408{margin-left:-2.553001px;}
._d_c00408{margin-left:-1.137744px;}
._11_c00408{width:1.505626px;}
._0_c00408{width:2.587264px;}
._2_c00408{width:3.938704px;}
._15_c00408{width:5.298731px;}
._5_c00408{width:6.305394px;}
._1_c00408{width:7.339025px;}
._e_c00408{width:8.578490px;}
._3_c00408{width:9.813052px;}
._12_c00408{width:11.079501px;}
._4_c00408{width:12.596181px;}
._8_c00408{width:14.034260px;}
._10_c00408{width:15.167012px;}
._9_c00408{width:16.338649px;}
._6_c00408{width:18.500931px;}
._7_c00408{width:20.047313px;}
._a_c00408{width:21.826781px;}
._b_c00408{width:22.990542px;}
._c_c00408{width:25.380843px;}
._f_c00408{width:26.382023px;}
.fc0_c00408{color:transparent;}
.fs8_c00408{font-size:54.000000px;}
.fs6_c00408{font-size:69.750000px;}
.fsa_c00408{font-size:78.000000px;}
.fs0_c00408{font-size:78.750000px;}
.fs3_c00408{font-size:80.250000px;}
.fsb_c00408{font-size:81.000000px;}
.fs9_c00408{font-size:81.750000px;}
.fs5_c00408{font-size:82.500000px;}
.fs4_c00408{font-size:84.750000px;}
.fs7_c00408{font-size:101.250000px;}
.fs2_c00408{font-size:115.500000px;}
.fs1_c00408{font-size:129.750000px;}
.y0_c00408{bottom:0.000000px;}
.y20_c00408{bottom:153.359775px;}
.y21_c00408{bottom:153.359850px;}
.y1f_c00408{bottom:183.599700px;}
.y1e_c00408{bottom:183.599850px;}
.y1d_c00408{bottom:213.119385px;}
.y1c_c00408{bottom:213.120030px;}
.y1b_c00408{bottom:242.999745px;}
.y1a_c00408{bottom:272.158785px;}
.y19_c00408{bottom:272.158815px;}
.y18_c00408{bottom:301.680150px;}
.y17_c00408{bottom:301.680315px;}
.y16_c00408{bottom:331.199850px;}
.y15_c00408{bottom:390.600135px;}
.y14_c00408{bottom:450.719100px;}
.y13_c00408{bottom:540.359250px;}
.y12_c00408{bottom:569.878920px;}
.y11_c00408{bottom:599.759535px;}
.y10_c00408{bottom:628.920000px;}
.yf_c00408{bottom:658.439670px;}
.ye_c00408{bottom:718.560375px;}
.yd_c00408{bottom:778.319820px;}
.yb_c00408{bottom:808.198740px;}
.yc_c00408{bottom:808.198785px;}
.ya_c00408{bottom:838.438665px;}
.y9_c00408{bottom:867.960015px;}
.y8_c00408{bottom:897.479640px;}
.y7_c00408{bottom:926.999355px;}
.y6_c00408{bottom:957.240210px;}
.y4_c00408{bottom:987.119175px;}
.y5_c00408{bottom:987.119940px;}
.y3_c00408{bottom:1016.998905px;}
.y2_c00408{bottom:1046.518620px;}
.y1_c00408{bottom:1105.559685px;}
.h9_c00408{height:56.320312px;}
.h7_c00408{height:72.747070px;}
.hc_c00408{height:76.552734px;}
.h1_c00408{height:77.288818px;}
.h4_c00408{height:78.760986px;}
.hd_c00408{height:79.497070px;}
.ha_c00408{height:80.876953px;}
.h6_c00408{height:80.969238px;}
.hb_c00408{height:82.388672px;}
.h5_c00408{height:83.177490px;}
.h8_c00408{height:105.600586px;}
.h3_c00408{height:120.462891px;}
.h2_c00408{height:135.325195px;}
.h0_c00408{height:1263.000000px;}
.w0_c00408{width:892.500000px;}
.x0_c00408{left:0.000000px;}
.x13_c00408{left:153.719100px;}
.xd_c00408{left:154.796175px;}
.x1_c00408{left:155.879565px;}
.x5_c00408{left:209.158590px;}
.x2_c00408{left:210.958950px;}
.x14_c00408{left:216.000000px;}
.x3_c00408{left:221.759535px;}
.x4_c00408{left:224.279250px;}
.x15_c00408{left:240.119385px;}
.x17_c00408{left:276.118785px;}
.x12_c00408{left:282.598500px;}
.x10_c00408{left:295.918950px;}
.xa_c00408{left:298.799535px;}
.x18_c00408{left:302.039385px;}
.x1d_c00408{left:304.918350px;}
.x11_c00408{left:311.399850px;}
.xb_c00408{left:313.919535px;}
.x1e_c00408{left:319.319850px;}
.x19_c00408{left:338.399850px;}
.x8_c00408{left:340.919535px;}
.x9_c00408{left:356.039385px;}
.x1a_c00408{left:359.638530px;}
.x6_c00408{left:361.798950px;}
.x16_c00408{left:376.918950px;}
.x7_c00408{left:380.878950px;}
.xc_c00408{left:433.799565px;}
.xe_c00408{left:435.958335px;}
.xf_c00408{left:451.080000px;}
.x1b_c00408{left:537.839535px;}
.x1c_c00408{left:554.759085px;}
.x1f_c00408{left:592.198785px;}
.x20_c00408{left:617.039985px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.lsd_c00408{letter-spacing:-7.924000pt;}
.lse_c00408{letter-spacing:-7.266700pt;}
.ls11_c00408{letter-spacing:-6.601000pt;}
.lsa_c00408{letter-spacing:-5.485533pt;}
.lsf_c00408{letter-spacing:-5.285000pt;}
.ls3_c00408{letter-spacing:-4.619300pt;}
.ls7_c00408{letter-spacing:-4.166400pt;}
.lsc_c00408{letter-spacing:-3.958933pt;}
.ls8_c00408{letter-spacing:-3.431133pt;}
.ls5_c00408{letter-spacing:-3.304000pt;}
.ls1_c00408{letter-spacing:-2.639000pt;}
.ls9_c00408{letter-spacing:-2.039420pt;}
.ls0_c00408{letter-spacing:-1.981700pt;}
.lsb_c00408{letter-spacing:-1.439527pt;}
.ls4_c00408{letter-spacing:-1.323700pt;}
.ls6_c00408{letter-spacing:-0.658000pt;}
.ls2_c00408{letter-spacing:0.000000pt;}
.ls10_c00408{letter-spacing:2.374687pt;}
.ls12_c00408{letter-spacing:3.233520pt;}
.ws0_c00408{word-spacing:0.000000pt;}
._14_c00408{margin-left:-4.140725pt;}
._13_c00408{margin-left:-2.269334pt;}
._d_c00408{margin-left:-1.011328pt;}
._11_c00408{width:1.338334pt;}
._0_c00408{width:2.299791pt;}
._2_c00408{width:3.501070pt;}
._15_c00408{width:4.709983pt;}
._5_c00408{width:5.604794pt;}
._1_c00408{width:6.523577pt;}
._e_c00408{width:7.625325pt;}
._3_c00408{width:8.722713pt;}
._12_c00408{width:9.848445pt;}
._4_c00408{width:11.196606pt;}
._8_c00408{width:12.474898pt;}
._10_c00408{width:13.481789pt;}
._9_c00408{width:14.523243pt;}
._6_c00408{width:16.445272pt;}
._7_c00408{width:17.819834pt;}
._a_c00408{width:19.401583pt;}
._b_c00408{width:20.436038pt;}
._c_c00408{width:22.560749pt;}
._f_c00408{width:23.450687pt;}
.fs8_c00408{font-size:48.000000pt;}
.fs6_c00408{font-size:62.000000pt;}
.fsa_c00408{font-size:69.333333pt;}
.fs0_c00408{font-size:70.000000pt;}
.fs3_c00408{font-size:71.333333pt;}
.fsb_c00408{font-size:72.000000pt;}
.fs9_c00408{font-size:72.666667pt;}
.fs5_c00408{font-size:73.333333pt;}
.fs4_c00408{font-size:75.333333pt;}
.fs7_c00408{font-size:90.000000pt;}
.fs2_c00408{font-size:102.666667pt;}
.fs1_c00408{font-size:115.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.y20_c00408{bottom:136.319800pt;}
.y21_c00408{bottom:136.319867pt;}
.y1f_c00408{bottom:163.199733pt;}
.y1e_c00408{bottom:163.199867pt;}
.y1d_c00408{bottom:189.439453pt;}
.y1c_c00408{bottom:189.440027pt;}
.y1b_c00408{bottom:215.999773pt;}
.y1a_c00408{bottom:241.918920pt;}
.y19_c00408{bottom:241.918947pt;}
.y18_c00408{bottom:268.160133pt;}
.y17_c00408{bottom:268.160280pt;}
.y16_c00408{bottom:294.399867pt;}
.y15_c00408{bottom:347.200120pt;}
.y14_c00408{bottom:400.639200pt;}
.y13_c00408{bottom:480.319333pt;}
.y12_c00408{bottom:506.559040pt;}
.y11_c00408{bottom:533.119587pt;}
.y10_c00408{bottom:559.040000pt;}
.yf_c00408{bottom:585.279707pt;}
.ye_c00408{bottom:638.720333pt;}
.yd_c00408{bottom:691.839840pt;}
.yb_c00408{bottom:718.398880pt;}
.yc_c00408{bottom:718.398920pt;}
.ya_c00408{bottom:745.278813pt;}
.y9_c00408{bottom:771.520013pt;}
.y8_c00408{bottom:797.759680pt;}
.y7_c00408{bottom:823.999427pt;}
.y6_c00408{bottom:850.880187pt;}
.y4_c00408{bottom:877.439267pt;}
.y5_c00408{bottom:877.439947pt;}
.y3_c00408{bottom:903.999027pt;}
.y2_c00408{bottom:930.238773pt;}
.y1_c00408{bottom:982.719720pt;}
.h9_c00408{height:50.062500pt;}
.h7_c00408{height:64.664062pt;}
.hc_c00408{height:68.046875pt;}
.h1_c00408{height:68.701172pt;}
.h4_c00408{height:70.009766pt;}
.hd_c00408{height:70.664062pt;}
.ha_c00408{height:71.890625pt;}
.h6_c00408{height:71.972656pt;}
.hb_c00408{height:73.234375pt;}
.h5_c00408{height:73.935547pt;}
.h8_c00408{height:93.867188pt;}
.h3_c00408{height:107.078125pt;}
.h2_c00408{height:120.289062pt;}
.h0_c00408{height:1122.666667pt;}
.w0_c00408{width:793.333333pt;}
.x0_c00408{left:0.000000pt;}
.x13_c00408{left:136.639200pt;}
.xd_c00408{left:137.596600pt;}
.x1_c00408{left:138.559613pt;}
.x5_c00408{left:185.918747pt;}
.x2_c00408{left:187.519067pt;}
.x14_c00408{left:192.000000pt;}
.x3_c00408{left:197.119587pt;}
.x4_c00408{left:199.359333pt;}
.x15_c00408{left:213.439453pt;}
.x17_c00408{left:245.438920pt;}
.x12_c00408{left:251.198667pt;}
.x10_c00408{left:263.039067pt;}
.xa_c00408{left:265.599587pt;}
.x18_c00408{left:268.479453pt;}
.x1d_c00408{left:271.038533pt;}
.x11_c00408{left:276.799867pt;}
.xb_c00408{left:279.039587pt;}
.x1e_c00408{left:283.839867pt;}
.x19_c00408{left:300.799867pt;}
.x8_c00408{left:303.039587pt;}
.x9_c00408{left:316.479453pt;}
.x1a_c00408{left:319.678693pt;}
.x6_c00408{left:321.599067pt;}
.x16_c00408{left:335.039067pt;}
.x7_c00408{left:338.559067pt;}
.xc_c00408{left:385.599613pt;}
.xe_c00408{left:387.518520pt;}
.xf_c00408{left:400.960000pt;}
.x1b_c00408{left:478.079587pt;}
.x1c_c00408{left:493.119187pt;}
.x1f_c00408{left:526.398920pt;}
.x20_c00408{left:548.479987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66ecdf19775babb4c4d08c3b.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_c9215d7653d67310a399fb84.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.364746;font-style:normal;font-weight:normal;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_33ba98e7f02ae8ca2461a1c7.woff2')format("woff");}.ff3_c00409{font-family:ff3_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:ff4_c00409;src:url('chunks/assets/font_9f903e8818e2d9cd776e3895.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_67a92720c6a64e41a325c818.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_8ac4f91c9f5600045626fbe3.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00409;src:url('chunks/assets/font_a6c1333b8ae3be8722572b79.woff2')format("woff");}.ff7_c00409{font-family:ff7_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d_c00409{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172566,0.000000,0.000000,0.250000,0,0);}
.m17_c00409{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);}
.m1c_c00409{transform:matrix(0.181193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181193,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.185135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185135,0.000000,0.000000,0.250000,0,0);}
.m2b_c00409{transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191441,0.000000,0.000000,0.250000,0,0);}
.m16_c00409{transform:matrix(0.193243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193243,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m2f_c00409{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m10_c00409{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m2d_c00409{transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202273,0.000000,0.000000,0.250000,0,0);}
.m1e_c00409{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m27_c00409{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m25_c00409{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1a_c00409{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m23_c00409{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m24_c00409{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m19_c00409{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m2c_c00409{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m1b_c00409{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m28_c00409{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m20_c00409{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00409{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m21_c00409{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.m26_c00409{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.mb_c00409{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);}
.m1f_c00409{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.m18_c00409{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332031,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.383178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383178,0.000000,0.000000,0.250000,0,0);}
.m29_c00409{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);}
.m22_c00409{transform:matrix(0.628788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628788,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls22_c00409{letter-spacing:-13.149045px;}
.lsf_c00409{letter-spacing:-13.033703px;}
.ls20_c00409{letter-spacing:-11.380418px;}
.ls37_c00409{letter-spacing:-9.754725px;}
.ls6_c00409{letter-spacing:-9.654750px;}
.ls1e_c00409{letter-spacing:-8.984250px;}
.lsd_c00409{letter-spacing:-8.914500px;}
.ls23_c00409{letter-spacing:-8.175038px;}
.ls24_c00409{letter-spacing:-7.683683px;}
.ls21_c00409{letter-spacing:-7.426125px;}
.ls13_c00409{letter-spacing:-7.114800px;}
.ls3_c00409{letter-spacing:-6.685875px;}
.lsc_c00409{letter-spacing:-5.945625px;}
.ls7_c00409{letter-spacing:-5.196713px;}
.ls2a_c00409{letter-spacing:-4.774275px;}
.ls4_c00409{letter-spacing:-4.456463px;}
.ls9_c00409{letter-spacing:-4.416225px;}
.ls28_c00409{letter-spacing:-4.376580px;}
.ls39_c00409{letter-spacing:-4.282500px;}
.ls12_c00409{letter-spacing:-4.208250px;}
.ls2d_c00409{letter-spacing:-4.030658px;}
.ls11_c00409{letter-spacing:-3.717000px;}
.ls26_c00409{letter-spacing:-3.715725px;}
.ls34_c00409{letter-spacing:-3.649050px;}
.ls18_c00409{letter-spacing:-3.595853px;}
.ls30_c00409{letter-spacing:-3.583125px;}
.ls1d_c00409{letter-spacing:-3.209198px;}
.ls1f_c00409{letter-spacing:-3.142800px;}
.ls32_c00409{letter-spacing:-3.029400px;}
.ls29_c00409{letter-spacing:-2.974125px;}
.ls1_c00409{letter-spacing:-2.968875px;}
.ls15_c00409{letter-spacing:-2.937953px;}
.ls2e_c00409{letter-spacing:-2.464800px;}
.ls10_c00409{letter-spacing:-2.267213px;}
.ls2_c00409{letter-spacing:-2.229413px;}
.ls25_c00409{letter-spacing:-2.224028px;}
.ls17_c00409{letter-spacing:-2.184075px;}
.ls35_c00409{letter-spacing:-1.956375px;}
.ls33_c00409{letter-spacing:-1.764675px;}
.ls2f_c00409{letter-spacing:-1.645800px;}
.ls8_c00409{letter-spacing:-1.540800px;}
.ls0_c00409{letter-spacing:-1.489163px;}
.ls27_c00409{letter-spacing:-1.483200px;}
.ls1b_c00409{letter-spacing:-0.971250px;}
.ls31_c00409{letter-spacing:-0.898425px;}
.ls2b_c00409{letter-spacing:-0.811125px;}
.ls36_c00409{letter-spacing:-0.801900px;}
.lsa_c00409{letter-spacing:-0.787178px;}
.lse_c00409{letter-spacing:-0.771728px;}
.lsb_c00409{letter-spacing:-0.740250px;}
.ls5_c00409{letter-spacing:0.000000px;}
.ls19_c00409{letter-spacing:1.011488px;}
.ls38_c00409{letter-spacing:3.705075px;}
.ls16_c00409{letter-spacing:12.988800px;}
.ls2c_c00409{letter-spacing:17.050163px;}
.ls1c_c00409{letter-spacing:17.109375px;}
.ls1a_c00409{letter-spacing:24.106478px;}
.ls14_c00409{letter-spacing:40.115250px;}
.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;}
._12_c00409{margin-left:-7.043103px;}
._13_c00409{margin-left:-4.433268px;}
._14_c00409{margin-left:-2.659447px;}
._7_c00409{margin-left:-1.473041px;}
._f_c00409{width:1.278187px;}
._3_c00409{width:2.436406px;}
._e_c00409{width:3.629483px;}
._2_c00409{width:4.997802px;}
._0_c00409{width:6.087910px;}
._4_c00409{width:8.027240px;}
._10_c00409{width:9.093322px;}
._1_c00409{width:11.150941px;}
._6_c00409{width:13.083347px;}
._11_c00409{width:15.095959px;}
._17_c00409{width:17.250069px;}
._5_c00409{width:18.524585px;}
._8_c00409{width:20.057179px;}
._d_c00409{width:21.337907px;}
._b_c00409{width:23.286613px;}
._a_c00409{width:25.081340px;}
._c_c00409{width:27.044875px;}
._18_c00409{width:29.023639px;}
._9_c00409{width:30.531256px;}
._19_c00409{width:32.214114px;}
._16_c00409{width:33.436844px;}
._15_c00409{width:34.889267px;}
.fc0_c00409{color:transparent;}
.fsd_c00409{font-size:35.250000px;}
.fsc_c00409{font-size:38.250000px;}
.fsf_c00409{font-size:47.250000px;}
.fsb_c00409{font-size:48.000000px;}
.fs10_c00409{font-size:54.750000px;}
.fs2_c00409{font-size:67.500000px;}
.fs8_c00409{font-size:72.750000px;}
.fs9_c00409{font-size:73.500000px;}
.fsa_c00409{font-size:74.250000px;}
.fs6_c00409{font-size:75.000000px;}
.fs3_c00409{font-size:75.750000px;}
.fs4_c00409{font-size:77.250000px;}
.fs15_c00409{font-size:78.000000px;}
.fs0_c00409{font-size:78.750000px;}
.fs7_c00409{font-size:79.500000px;}
.fs1_c00409{font-size:80.250000px;}
.fs12_c00409{font-size:81.000000px;}
.fs13_c00409{font-size:81.750000px;}
.fs11_c00409{font-size:82.500000px;}
.fs16_c00409{font-size:83.250000px;}
.fs5_c00409{font-size:84.750000px;}
.fs14_c00409{font-size:85.500000px;}
.fse_c00409{font-size:138.750000px;}
.y0_c00409{bottom:0.000000px;}
.y28_c00409{bottom:153.720885px;}
.y27_c00409{bottom:183.240420px;}
.y26_c00409{bottom:213.120135px;}
.y24_c00409{bottom:241.019160px;}
.y25_c00409{bottom:242.100150px;}
.y23_c00409{bottom:272.158785px;}
.y22_c00409{bottom:272.158980px;}
.y21_c00409{bottom:301.680315px;}
.y20_c00409{bottom:331.199850px;}
.y1f_c00409{bottom:361.078785px;}
.y1e_c00409{bottom:361.079655px;}
.y1d_c00409{bottom:390.959385px;}
.y1c_c00409{bottom:427.319820px;}
.y1b_c00409{bottom:480.599670px;}
.y1a_c00409{bottom:480.600075px;}
.y19_c00409{bottom:510.480285px;}
.y18_c00409{bottom:569.520555px;}
.y17_c00409{bottom:599.400285px;}
.y16_c00409{bottom:599.400465px;}
.y15_c00409{bottom:628.920000px;}
.y14_c00409{bottom:658.799910px;}
.y13_c00409{bottom:688.679625px;}
.y12_c00409{bottom:718.919535px;}
.y11_c00409{bottom:748.259535px;}
.yf_c00409{bottom:777.958875px;}
.y10_c00409{bottom:777.958920px;}
.ye_c00409{bottom:808.198785px;}
.yd_c00409{bottom:808.199685px;}
.yc_c00409{bottom:838.079400px;}
.yb_c00409{bottom:867.599115px;}
.ya_c00409{bottom:897.838905px;}
.y9_c00409{bottom:926.999355px;}
.y8_c00409{bottom:927.000255px;}
.y7_c00409{bottom:956.879970px;}
.y6_c00409{bottom:1016.639655px;}
.y5_c00409{bottom:1046.159370px;}
.y4_c00409{bottom:1076.399235px;}
.y3_c00409{bottom:1076.400300px;}
.y2_c00409{bottom:1105.919835px;}
.y1_c00409{bottom:1135.799565px;}
.h10_c00409{height:36.764648px;}
.hf_c00409{height:39.893555px;}
.h12_c00409{height:49.280273px;}
.he_c00409{height:50.062500px;}
.h14_c00409{height:57.102539px;}
.h3_c00409{height:66.247559px;}
.h8_c00409{height:73.608398px;}
.h4_c00409{height:74.344482px;}
.h5_c00409{height:75.816650px;}
.ha_c00409{height:75.875977px;}
.h1e_c00409{height:76.341797px;}
.h1f_c00409{height:76.552734px;}
.hb_c00409{height:76.658203px;}
.h1_c00409{height:77.288818px;}
.hd_c00409{height:77.440430px;}
.h1c_c00409{height:77.853516px;}
.h21_c00409{height:78.024902px;}
.h13_c00409{height:78.222656px;}
.h1d_c00409{height:78.609375px;}
.h2_c00409{height:78.760986px;}
.hc_c00409{height:79.309570px;}
.h20_c00409{height:79.365234px;}
.h9_c00409{height:80.121094px;}
.h1b_c00409{height:80.233154px;}
.h18_c00409{height:80.791992px;}
.h15_c00409{height:80.876953px;}
.h1a_c00409{height:80.969238px;}
.h17_c00409{height:81.632812px;}
.h16_c00409{height:83.144531px;}
.h6_c00409{height:83.177490px;}
.h7_c00409{height:83.756836px;}
.h22_c00409{height:83.900391px;}
.h19_c00409{height:84.498047px;}
.h11_c00409{height:144.711914px;}
.h0_c00409{height:1263.000000px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:153.719100px;}
.x11_c00409{left:154.797690px;}
.x3c_c00409{left:155.879820px;}
.x6_c00409{left:172.439715px;}
.x24_c00409{left:174.598500px;}
.x9_c00409{left:179.998950px;}
.xa_c00409{left:183.958950px;}
.x2b_c00409{left:190.799565px;}
.x2_c00409{left:209.879535px;}
.x3_c00409{left:224.279250px;}
.x14_c00409{left:233.278800px;}
.x35_c00409{left:249.479685px;}
.x36_c00409{left:263.879535px;}
.x15_c00409{left:301.319250px;}
.x2c_c00409{left:307.798950px;}
.x29_c00409{left:315.359850px;}
.x25_c00409{left:317.518635px;}
.xf_c00409{left:327.599100px;}
.x26_c00409{left:331.559100px;}
.x2a_c00409{left:335.519100px;}
.x16_c00409{left:339.120000px;}
.x39_c00409{left:345.599700px;}
.x10_c00409{left:352.438635px;}
.x2d_c00409{left:362.159850px;}
.x17_c00409{left:405.359250px;}
.x3d_c00409{left:434.878920px;}
.x18_c00409{left:436.678530px;}
.x3a_c00409{left:444.959385px;}
.x37_c00409{left:447.838530px;}
.x2e_c00409{left:455.399235px;}
.x19_c00409{left:457.559685px;}
.x3b_c00409{left:469.439670px;}
.x38_c00409{left:470.519070px;}
.x2f_c00409{left:482.399235px;}
.x1a_c00409{left:489.599070px;}
.x30_c00409{left:505.439250px;}
.x1b_c00409{left:511.198785px;}
.x1c_c00409{left:512.279850px;}
.x4_c00409{left:513.359250px;}
.x5_c00409{left:527.759085px;}
.x1d_c00409{left:542.519670px;}
.x12_c00409{left:552.239220px;}
.x1e_c00409{left:557.639700px;}
.x13_c00409{left:578.159820px;}
.x27_c00409{left:579.959385px;}
.x31_c00409{left:590.399235px;}
.x7_c00409{left:597.599070px;}
.x28_c00409{left:599.039385px;}
.x8_c00409{left:636.119985px;}
.x1f_c00409{left:649.438620px;}
.x32_c00409{left:663.838530px;}
.xc_c00409{left:685.078770px;}
.x33_c00409{left:690.479235px;}
.xd_c00409{left:699.839535px;}
.x20_c00409{left:713.519070px;}
.x21_c00409{left:736.918350px;}
.x34_c00409{left:750.958920px;}
.x23_c00409{left:757.438620px;}
.x22_c00409{left:772.558590px;}
.xe_c00409{left:774.719055px;}
.xb_c00409{left:780.478635px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls22_c00409{letter-spacing:-11.688040pt;}
.lsf_c00409{letter-spacing:-11.585513pt;}
.ls20_c00409{letter-spacing:-10.115927pt;}
.ls37_c00409{letter-spacing:-8.670867pt;}
.ls6_c00409{letter-spacing:-8.582000pt;}
.ls1e_c00409{letter-spacing:-7.986000pt;}
.lsd_c00409{letter-spacing:-7.924000pt;}
.ls23_c00409{letter-spacing:-7.266700pt;}
.ls24_c00409{letter-spacing:-6.829940pt;}
.ls21_c00409{letter-spacing:-6.601000pt;}
.ls13_c00409{letter-spacing:-6.324267pt;}
.ls3_c00409{letter-spacing:-5.943000pt;}
.lsc_c00409{letter-spacing:-5.285000pt;}
.ls7_c00409{letter-spacing:-4.619300pt;}
.ls2a_c00409{letter-spacing:-4.243800pt;}
.ls4_c00409{letter-spacing:-3.961300pt;}
.ls9_c00409{letter-spacing:-3.925533pt;}
.ls28_c00409{letter-spacing:-3.890293pt;}
.ls39_c00409{letter-spacing:-3.806667pt;}
.ls12_c00409{letter-spacing:-3.740667pt;}
.ls2d_c00409{letter-spacing:-3.582807pt;}
.ls11_c00409{letter-spacing:-3.304000pt;}
.ls26_c00409{letter-spacing:-3.302867pt;}
.ls34_c00409{letter-spacing:-3.243600pt;}
.ls18_c00409{letter-spacing:-3.196313pt;}
.ls30_c00409{letter-spacing:-3.185000pt;}
.ls1d_c00409{letter-spacing:-2.852620pt;}
.ls1f_c00409{letter-spacing:-2.793600pt;}
.ls32_c00409{letter-spacing:-2.692800pt;}
.ls29_c00409{letter-spacing:-2.643667pt;}
.ls1_c00409{letter-spacing:-2.639000pt;}
.ls15_c00409{letter-spacing:-2.611513pt;}
.ls2e_c00409{letter-spacing:-2.190933pt;}
.ls10_c00409{letter-spacing:-2.015300pt;}
.ls2_c00409{letter-spacing:-1.981700pt;}
.ls25_c00409{letter-spacing:-1.976913pt;}
.ls17_c00409{letter-spacing:-1.941400pt;}
.ls35_c00409{letter-spacing:-1.739000pt;}
.ls33_c00409{letter-spacing:-1.568600pt;}
.ls2f_c00409{letter-spacing:-1.462933pt;}
.ls8_c00409{letter-spacing:-1.369600pt;}
.ls0_c00409{letter-spacing:-1.323700pt;}
.ls27_c00409{letter-spacing:-1.318400pt;}
.ls1b_c00409{letter-spacing:-0.863333pt;}
.ls31_c00409{letter-spacing:-0.798600pt;}
.ls2b_c00409{letter-spacing:-0.721000pt;}
.ls36_c00409{letter-spacing:-0.712800pt;}
.lsa_c00409{letter-spacing:-0.699713pt;}
.lse_c00409{letter-spacing:-0.685980pt;}
.lsb_c00409{letter-spacing:-0.658000pt;}
.ls5_c00409{letter-spacing:0.000000pt;}
.ls19_c00409{letter-spacing:0.899100pt;}
.ls38_c00409{letter-spacing:3.293400pt;}
.ls16_c00409{letter-spacing:11.545600pt;}
.ls2c_c00409{letter-spacing:15.155700pt;}
.ls1c_c00409{letter-spacing:15.208333pt;}
.ls1a_c00409{letter-spacing:21.427980pt;}
.ls14_c00409{letter-spacing:35.658000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
._12_c00409{margin-left:-6.260536pt;}
._13_c00409{margin-left:-3.940683pt;}
._14_c00409{margin-left:-2.363953pt;}
._7_c00409{margin-left:-1.309370pt;}
._f_c00409{width:1.136166pt;}
._3_c00409{width:2.165694pt;}
._e_c00409{width:3.226208pt;}
._2_c00409{width:4.442491pt;}
._0_c00409{width:5.411475pt;}
._4_c00409{width:7.135325pt;}
._10_c00409{width:8.082953pt;}
._1_c00409{width:9.911947pt;}
._6_c00409{width:11.629642pt;}
._11_c00409{width:13.418630pt;}
._17_c00409{width:15.333394pt;}
._5_c00409{width:16.466298pt;}
._8_c00409{width:17.828604pt;}
._d_c00409{width:18.967028pt;}
._b_c00409{width:20.699211pt;}
._a_c00409{width:22.294525pt;}
._c_c00409{width:24.039889pt;}
._18_c00409{width:25.798791pt;}
._9_c00409{width:27.138894pt;}
._19_c00409{width:28.634768pt;}
._16_c00409{width:29.721639pt;}
._15_c00409{width:31.012682pt;}
.fsd_c00409{font-size:31.333333pt;}
.fsc_c00409{font-size:34.000000pt;}
.fsf_c00409{font-size:42.000000pt;}
.fsb_c00409{font-size:42.666667pt;}
.fs10_c00409{font-size:48.666667pt;}
.fs2_c00409{font-size:60.000000pt;}
.fs8_c00409{font-size:64.666667pt;}
.fs9_c00409{font-size:65.333333pt;}
.fsa_c00409{font-size:66.000000pt;}
.fs6_c00409{font-size:66.666667pt;}
.fs3_c00409{font-size:67.333333pt;}
.fs4_c00409{font-size:68.666667pt;}
.fs15_c00409{font-size:69.333333pt;}
.fs0_c00409{font-size:70.000000pt;}
.fs7_c00409{font-size:70.666667pt;}
.fs1_c00409{font-size:71.333333pt;}
.fs12_c00409{font-size:72.000000pt;}
.fs13_c00409{font-size:72.666667pt;}
.fs11_c00409{font-size:73.333333pt;}
.fs16_c00409{font-size:74.000000pt;}
.fs5_c00409{font-size:75.333333pt;}
.fs14_c00409{font-size:76.000000pt;}
.fse_c00409{font-size:123.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y28_c00409{bottom:136.640787pt;}
.y27_c00409{bottom:162.880373pt;}
.y26_c00409{bottom:189.440120pt;}
.y24_c00409{bottom:214.239253pt;}
.y25_c00409{bottom:215.200133pt;}
.y23_c00409{bottom:241.918920pt;}
.y22_c00409{bottom:241.919093pt;}
.y21_c00409{bottom:268.160280pt;}
.y20_c00409{bottom:294.399867pt;}
.y1f_c00409{bottom:320.958920pt;}
.y1e_c00409{bottom:320.959693pt;}
.y1d_c00409{bottom:347.519453pt;}
.y1c_c00409{bottom:379.839840pt;}
.y1b_c00409{bottom:427.199707pt;}
.y1a_c00409{bottom:427.200067pt;}
.y19_c00409{bottom:453.760253pt;}
.y18_c00409{bottom:506.240493pt;}
.y17_c00409{bottom:532.800253pt;}
.y16_c00409{bottom:532.800413pt;}
.y15_c00409{bottom:559.040000pt;}
.y14_c00409{bottom:585.599920pt;}
.y13_c00409{bottom:612.159667pt;}
.y12_c00409{bottom:639.039587pt;}
.y11_c00409{bottom:665.119587pt;}
.yf_c00409{bottom:691.519000pt;}
.y10_c00409{bottom:691.519040pt;}
.ye_c00409{bottom:718.398920pt;}
.yd_c00409{bottom:718.399720pt;}
.yc_c00409{bottom:744.959467pt;}
.yb_c00409{bottom:771.199213pt;}
.ya_c00409{bottom:798.079027pt;}
.y9_c00409{bottom:823.999427pt;}
.y8_c00409{bottom:824.000227pt;}
.y7_c00409{bottom:850.559973pt;}
.y6_c00409{bottom:903.679693pt;}
.y5_c00409{bottom:929.919440pt;}
.y4_c00409{bottom:956.799320pt;}
.y3_c00409{bottom:956.800267pt;}
.y2_c00409{bottom:983.039853pt;}
.y1_c00409{bottom:1009.599613pt;}
.h10_c00409{height:32.679688pt;}
.hf_c00409{height:35.460938pt;}
.h12_c00409{height:43.804688pt;}
.he_c00409{height:44.500000pt;}
.h14_c00409{height:50.757812pt;}
.h3_c00409{height:58.886719pt;}
.h8_c00409{height:65.429688pt;}
.h4_c00409{height:66.083984pt;}
.h5_c00409{height:67.392578pt;}
.ha_c00409{height:67.445312pt;}
.h1e_c00409{height:67.859375pt;}
.h1f_c00409{height:68.046875pt;}
.hb_c00409{height:68.140625pt;}
.h1_c00409{height:68.701172pt;}
.hd_c00409{height:68.835938pt;}
.h1c_c00409{height:69.203125pt;}
.h21_c00409{height:69.355469pt;}
.h13_c00409{height:69.531250pt;}
.h1d_c00409{height:69.875000pt;}
.h2_c00409{height:70.009766pt;}
.hc_c00409{height:70.497396pt;}
.h20_c00409{height:70.546875pt;}
.h9_c00409{height:71.218750pt;}
.h1b_c00409{height:71.318359pt;}
.h18_c00409{height:71.815104pt;}
.h15_c00409{height:71.890625pt;}
.h1a_c00409{height:71.972656pt;}
.h17_c00409{height:72.562500pt;}
.h16_c00409{height:73.906250pt;}
.h6_c00409{height:73.935547pt;}
.h7_c00409{height:74.450521pt;}
.h22_c00409{height:74.578125pt;}
.h19_c00409{height:75.109375pt;}
.h11_c00409{height:128.632812pt;}
.h0_c00409{height:1122.666667pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:136.639200pt;}
.x11_c00409{left:137.597947pt;}
.x3c_c00409{left:138.559840pt;}
.x6_c00409{left:153.279747pt;}
.x24_c00409{left:155.198667pt;}
.x9_c00409{left:159.999067pt;}
.xa_c00409{left:163.519067pt;}
.x2b_c00409{left:169.599613pt;}
.x2_c00409{left:186.559587pt;}
.x3_c00409{left:199.359333pt;}
.x14_c00409{left:207.358933pt;}
.x35_c00409{left:221.759720pt;}
.x36_c00409{left:234.559587pt;}
.x15_c00409{left:267.839333pt;}
.x2c_c00409{left:273.599067pt;}
.x29_c00409{left:280.319867pt;}
.x25_c00409{left:282.238787pt;}
.xf_c00409{left:291.199200pt;}
.x26_c00409{left:294.719200pt;}
.x2a_c00409{left:298.239200pt;}
.x16_c00409{left:301.440000pt;}
.x39_c00409{left:307.199733pt;}
.x10_c00409{left:313.278787pt;}
.x2d_c00409{left:321.919867pt;}
.x17_c00409{left:360.319333pt;}
.x3d_c00409{left:386.559040pt;}
.x18_c00409{left:388.158693pt;}
.x3a_c00409{left:395.519453pt;}
.x37_c00409{left:398.078693pt;}
.x2e_c00409{left:404.799320pt;}
.x19_c00409{left:406.719720pt;}
.x3b_c00409{left:417.279707pt;}
.x38_c00409{left:418.239173pt;}
.x2f_c00409{left:428.799320pt;}
.x1a_c00409{left:435.199173pt;}
.x30_c00409{left:449.279333pt;}
.x1b_c00409{left:454.398920pt;}
.x1c_c00409{left:455.359867pt;}
.x4_c00409{left:456.319333pt;}
.x5_c00409{left:469.119187pt;}
.x1d_c00409{left:482.239707pt;}
.x12_c00409{left:490.879307pt;}
.x1e_c00409{left:495.679733pt;}
.x13_c00409{left:513.919840pt;}
.x27_c00409{left:515.519453pt;}
.x31_c00409{left:524.799320pt;}
.x7_c00409{left:531.199173pt;}
.x28_c00409{left:532.479453pt;}
.x8_c00409{left:565.439987pt;}
.x1f_c00409{left:577.278773pt;}
.x32_c00409{left:590.078693pt;}
.xc_c00409{left:608.958907pt;}
.x33_c00409{left:613.759320pt;}
.xd_c00409{left:622.079587pt;}
.x20_c00409{left:634.239173pt;}
.x21_c00409{left:655.038533pt;}
.x34_c00409{left:667.519040pt;}
.x23_c00409{left:673.278773pt;}
.x22_c00409{left:686.718747pt;}
.xe_c00409{left:688.639160pt;}
.xb_c00409{left:693.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a49a772c04f1c4bc309f0d0.woff2')format("woff");}.ff1_c00410{font-family:ff1_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:ff2_c00410;src:url('chunks/assets/font_a85bf81e821f55bd73dc5526.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.364746;font-style:normal;font-weight:normal;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_8811bc41b36b304cff0e4fb4.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;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_9dd6c967d6f5e3da26c1ed81.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_37fe7c064d04a8ae8ebfbdb2.woff2')format("woff");}.ff5_c00410{font-family:ff5_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:ff6_c00410;src:url('chunks/assets/font_0af554082324d16140e29825.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12_c00410{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.213362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213362,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287634,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls5_c00410{letter-spacing:-10.128825px;}
.ls1c_c00410{letter-spacing:-8.914500px;}
.ls1b_c00410{letter-spacing:-7.426125px;}
.ls12_c00410{letter-spacing:-7.290945px;}
.lsc_c00410{letter-spacing:-6.752513px;}
.lsd_c00410{letter-spacing:-6.685875px;}
.ls8_c00410{letter-spacing:-5.945625px;}
.ls7_c00410{letter-spacing:-5.196713px;}
.lsf_c00410{letter-spacing:-5.054963px;}
.ls10_c00410{letter-spacing:-5.054400px;}
.lsb_c00410{letter-spacing:-4.456463px;}
.ls17_c00410{letter-spacing:-4.420200px;}
.ls19_c00410{letter-spacing:-3.858750px;}
.ls6_c00410{letter-spacing:-3.717000px;}
.ls1_c00410{letter-spacing:-2.968875px;}
.ls15_c00410{letter-spacing:-2.608650px;}
.ls11_c00410{letter-spacing:-2.245620px;}
.ls4_c00410{letter-spacing:-2.229413px;}
.ls13_c00410{letter-spacing:-1.757400px;}
.ls18_c00410{letter-spacing:-1.539000px;}
.ls3_c00410{letter-spacing:-1.489163px;}
.lse_c00410{letter-spacing:-0.771728px;}
.ls9_c00410{letter-spacing:-0.740250px;}
.ls2_c00410{letter-spacing:0.000000px;}
.ls16_c00410{letter-spacing:0.772650px;}
.ls0_c00410{letter-spacing:1.489163px;}
.ls14_c00410{letter-spacing:2.488500px;}
.lsa_c00410{letter-spacing:3.637710px;}
.ls1d_c00410{letter-spacing:4.102088px;}
.ls1a_c00410{letter-spacing:36.451500px;}
.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;}
._14_c00410{margin-left:-6.359300px;}
._16_c00410{margin-left:-4.671287px;}
._13_c00410{margin-left:-2.342114px;}
._1a_c00410{margin-left:-1.314248px;}
._11_c00410{width:1.277904px;}
._5_c00410{width:3.224530px;}
._10_c00410{width:5.200457px;}
._0_c00410{width:6.373297px;}
._17_c00410{width:7.413807px;}
._3_c00410{width:8.647166px;}
._2_c00410{width:9.815459px;}
._1_c00410{width:11.652147px;}
._4_c00410{width:13.313534px;}
._9_c00410{width:14.731332px;}
._15_c00410{width:16.135414px;}
._7_c00410{width:17.828614px;}
._18_c00410{width:18.970281px;}
._8_c00410{width:20.182184px;}
._f_c00410{width:21.697453px;}
._6_c00410{width:22.743550px;}
._19_c00410{width:24.428844px;}
._12_c00410{width:26.933971px;}
._e_c00410{width:29.609584px;}
._b_c00410{width:31.053725px;}
._d_c00410{width:33.447696px;}
._c_c00410{width:35.815470px;}
._a_c00410{width:37.012441px;}
.fc0_c00410{color:transparent;}
.fs9_c00410{font-size:69.750000px;}
.fsb_c00410{font-size:71.250000px;}
.fsa_c00410{font-size:76.500000px;}
.fs5_c00410{font-size:77.250000px;}
.fs6_c00410{font-size:78.000000px;}
.fs0_c00410{font-size:78.750000px;}
.fs7_c00410{font-size:79.500000px;}
.fsd_c00410{font-size:80.250000px;}
.fs3_c00410{font-size:81.000000px;}
.fs2_c00410{font-size:81.750000px;}
.fsc_c00410{font-size:82.500000px;}
.fs1_c00410{font-size:84.750000px;}
.fs4_c00410{font-size:86.250000px;}
.fs8_c00410{font-size:87.000000px;}
.y0_c00410{bottom:0.000000px;}
.y26_c00410{bottom:211.679100px;}
.y25_c00410{bottom:241.198785px;}
.y23_c00410{bottom:270.719370px;}
.y24_c00410{bottom:270.720150px;}
.y22_c00410{bottom:300.599100px;}
.y21_c00410{bottom:300.600285px;}
.y20_c00410{bottom:330.480015px;}
.y1f_c00410{bottom:359.999535px;}
.y1e_c00410{bottom:389.519070px;}
.y1d_c00410{bottom:420.119985px;}
.y1c_c00410{bottom:450.359850px;}
.y1b_c00410{bottom:450.359940px;}
.y1a_c00410{bottom:480.599850px;}
.y19_c00410{bottom:510.119385px;}
.y18_c00410{bottom:569.159850px;}
.y17_c00410{bottom:599.039565px;}
.y16_c00410{bottom:628.559100px;}
.y15_c00410{bottom:628.559940px;}
.y14_c00410{bottom:658.439670px;}
.y12_c00410{bottom:688.318275px;}
.y13_c00410{bottom:688.318770px;}
.y10_c00410{bottom:718.558890px;}
.y11_c00410{bottom:718.560285px;}
.yf_c00410{bottom:778.318335px;}
.ye_c00410{bottom:808.558245px;}
.yd_c00410{bottom:838.437975px;}
.yc_c00410{bottom:867.599115px;}
.yb_c00410{bottom:897.838905px;}
.ya_c00410{bottom:897.839085px;}
.y9_c00410{bottom:927.358605px;}
.y8_c00410{bottom:957.239220px;}
.y7_c00410{bottom:957.240210px;}
.y5_c00410{bottom:987.119220px;}
.y6_c00410{bottom:987.119940px;}
.y4_c00410{bottom:1016.998950px;}
.y3_c00410{bottom:1046.518485px;}
.y2_c00410{bottom:1106.280030px;}
.y1_c00410{bottom:1135.799565px;}
.hb_c00410{height:72.747070px;}
.hf_c00410{height:74.311523px;}
.hc_c00410{height:75.080566px;}
.h6_c00410{height:75.778931px;}
.h7_c00410{height:76.552734px;}
.ha_c00410{height:77.250366px;}
.h1_c00410{height:77.288818px;}
.h8_c00410{height:78.024902px;}
.h11_c00410{height:78.760986px;}
.he_c00410{height:79.365234px;}
.h4_c00410{height:79.497070px;}
.hd_c00410{height:80.121094px;}
.h3_c00410{height:80.233154px;}
.h10_c00410{height:80.969238px;}
.h2_c00410{height:83.177490px;}
.h5_c00410{height:85.239258px;}
.h9_c00410{height:85.343262px;}
.h0_c00410{height:1263.000000px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x6_c00410{left:150.839490px;}
.x1_c00410{left:152.278800px;}
.x22_c00410{left:171.358665px;}
.x12_c00410{left:185.399250px;}
.x16_c00410{left:204.479250px;}
.x10_c00410{left:218.878950px;}
.x11_c00410{left:244.799535px;}
.x2_c00410{left:246.958350px;}
.x3_c00410{left:262.798515px;}
.xb_c00410{left:299.878950px;}
.x7_c00410{left:338.038950px;}
.x8_c00410{left:364.679700px;}
.xc_c00410{left:366.120000px;}
.x1f_c00410{left:385.918350px;}
.x17_c00410{left:388.078815px;}
.x20_c00410{left:401.399235px;}
.x4_c00410{left:412.559100px;}
.x18_c00410{left:414.358665px;}
.x5_c00410{left:439.199850px;}
.x19_c00410{left:505.439250px;}
.x1a_c00410{left:529.199385px;}
.x1d_c00410{left:558.359850px;}
.x13_c00410{left:563.758530px;}
.x1e_c00410{left:572.759535px;}
.x14_c00410{left:592.198785px;}
.xd_c00410{left:595.438620px;}
.xe_c00410{left:618.119385px;}
.x1b_c00410{left:626.398635px;}
.x1c_c00410{left:682.559100px;}
.xa_c00410{left:721.080000px;}
.x15_c00410{left:738.358605px;}
.xf_c00410{left:766.078770px;}
.x9_c00410{left:767.519070px;}
.x21_c00410{left:777.958920px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls5_c00410{letter-spacing:-9.003400pt;}
.ls1c_c00410{letter-spacing:-7.924000pt;}
.ls1b_c00410{letter-spacing:-6.601000pt;}
.ls12_c00410{letter-spacing:-6.480840pt;}
.lsc_c00410{letter-spacing:-6.002233pt;}
.lsd_c00410{letter-spacing:-5.943000pt;}
.ls8_c00410{letter-spacing:-5.285000pt;}
.ls7_c00410{letter-spacing:-4.619300pt;}
.lsf_c00410{letter-spacing:-4.493300pt;}
.ls10_c00410{letter-spacing:-4.492800pt;}
.lsb_c00410{letter-spacing:-3.961300pt;}
.ls17_c00410{letter-spacing:-3.929067pt;}
.ls19_c00410{letter-spacing:-3.430000pt;}
.ls6_c00410{letter-spacing:-3.304000pt;}
.ls1_c00410{letter-spacing:-2.639000pt;}
.ls15_c00410{letter-spacing:-2.318800pt;}
.ls11_c00410{letter-spacing:-1.996107pt;}
.ls4_c00410{letter-spacing:-1.981700pt;}
.ls13_c00410{letter-spacing:-1.562133pt;}
.ls18_c00410{letter-spacing:-1.368000pt;}
.ls3_c00410{letter-spacing:-1.323700pt;}
.lse_c00410{letter-spacing:-0.685980pt;}
.ls9_c00410{letter-spacing:-0.658000pt;}
.ls2_c00410{letter-spacing:0.000000pt;}
.ls16_c00410{letter-spacing:0.686800pt;}
.ls0_c00410{letter-spacing:1.323700pt;}
.ls14_c00410{letter-spacing:2.212000pt;}
.lsa_c00410{letter-spacing:3.233520pt;}
.ls1d_c00410{letter-spacing:3.646300pt;}
.ls1a_c00410{letter-spacing:32.401333pt;}
.ws0_c00410{word-spacing:0.000000pt;}
._14_c00410{margin-left:-5.652711pt;}
._16_c00410{margin-left:-4.152255pt;}
._13_c00410{margin-left:-2.081879pt;}
._1a_c00410{margin-left:-1.168221pt;}
._11_c00410{width:1.135915pt;}
._5_c00410{width:2.866249pt;}
._10_c00410{width:4.622628pt;}
._0_c00410{width:5.665153pt;}
._17_c00410{width:6.590051pt;}
._3_c00410{width:7.686370pt;}
._2_c00410{width:8.724853pt;}
._1_c00410{width:10.357464pt;}
._4_c00410{width:11.834253pt;}
._9_c00410{width:13.094517pt;}
._15_c00410{width:14.342591pt;}
._7_c00410{width:15.847657pt;}
._18_c00410{width:16.862472pt;}
._8_c00410{width:17.939719pt;}
._f_c00410{width:19.286625pt;}
._6_c00410{width:20.216489pt;}
._19_c00410{width:21.714528pt;}
._12_c00410{width:23.941308pt;}
._e_c00410{width:26.319630pt;}
._b_c00410{width:27.603311pt;}
._d_c00410{width:29.731285pt;}
._c_c00410{width:31.835974pt;}
._a_c00410{width:32.899947pt;}
.fs9_c00410{font-size:62.000000pt;}
.fsb_c00410{font-size:63.333333pt;}
.fsa_c00410{font-size:68.000000pt;}
.fs5_c00410{font-size:68.666667pt;}
.fs6_c00410{font-size:69.333333pt;}
.fs0_c00410{font-size:70.000000pt;}
.fs7_c00410{font-size:70.666667pt;}
.fsd_c00410{font-size:71.333333pt;}
.fs3_c00410{font-size:72.000000pt;}
.fs2_c00410{font-size:72.666667pt;}
.fsc_c00410{font-size:73.333333pt;}
.fs1_c00410{font-size:75.333333pt;}
.fs4_c00410{font-size:76.666667pt;}
.fs8_c00410{font-size:77.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.y26_c00410{bottom:188.159200pt;}
.y25_c00410{bottom:214.398920pt;}
.y23_c00410{bottom:240.639440pt;}
.y24_c00410{bottom:240.640133pt;}
.y22_c00410{bottom:267.199200pt;}
.y21_c00410{bottom:267.200253pt;}
.y20_c00410{bottom:293.760013pt;}
.y1f_c00410{bottom:319.999587pt;}
.y1e_c00410{bottom:346.239173pt;}
.y1d_c00410{bottom:373.439987pt;}
.y1c_c00410{bottom:400.319867pt;}
.y1b_c00410{bottom:400.319947pt;}
.y1a_c00410{bottom:427.199867pt;}
.y19_c00410{bottom:453.439453pt;}
.y18_c00410{bottom:505.919867pt;}
.y17_c00410{bottom:532.479613pt;}
.y16_c00410{bottom:558.719200pt;}
.y15_c00410{bottom:558.719947pt;}
.y14_c00410{bottom:585.279707pt;}
.y12_c00410{bottom:611.838467pt;}
.y13_c00410{bottom:611.838907pt;}
.y10_c00410{bottom:638.719013pt;}
.y11_c00410{bottom:638.720253pt;}
.yf_c00410{bottom:691.838520pt;}
.ye_c00410{bottom:718.718440pt;}
.yd_c00410{bottom:745.278200pt;}
.yc_c00410{bottom:771.199213pt;}
.yb_c00410{bottom:798.079027pt;}
.ya_c00410{bottom:798.079187pt;}
.y9_c00410{bottom:824.318760pt;}
.y8_c00410{bottom:850.879307pt;}
.y7_c00410{bottom:850.880187pt;}
.y5_c00410{bottom:877.439307pt;}
.y6_c00410{bottom:877.439947pt;}
.y4_c00410{bottom:903.999067pt;}
.y3_c00410{bottom:930.238653pt;}
.y2_c00410{bottom:983.360027pt;}
.y1_c00410{bottom:1009.599613pt;}
.hb_c00410{height:64.664062pt;}
.hf_c00410{height:66.054688pt;}
.hc_c00410{height:66.738281pt;}
.h6_c00410{height:67.359049pt;}
.h7_c00410{height:68.046875pt;}
.ha_c00410{height:68.666992pt;}
.h1_c00410{height:68.701172pt;}
.h8_c00410{height:69.355469pt;}
.h11_c00410{height:70.009766pt;}
.he_c00410{height:70.546875pt;}
.h4_c00410{height:70.664062pt;}
.hd_c00410{height:71.218750pt;}
.h3_c00410{height:71.318359pt;}
.h10_c00410{height:71.972656pt;}
.h2_c00410{height:73.935547pt;}
.h5_c00410{height:75.768229pt;}
.h9_c00410{height:75.860677pt;}
.h0_c00410{height:1122.666667pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x6_c00410{left:134.079547pt;}
.x1_c00410{left:135.358933pt;}
.x22_c00410{left:152.318813pt;}
.x12_c00410{left:164.799333pt;}
.x16_c00410{left:181.759333pt;}
.x10_c00410{left:194.559067pt;}
.x11_c00410{left:217.599587pt;}
.x2_c00410{left:219.518533pt;}
.x3_c00410{left:233.598680pt;}
.xb_c00410{left:266.559067pt;}
.x7_c00410{left:300.479067pt;}
.x8_c00410{left:324.159733pt;}
.xc_c00410{left:325.440000pt;}
.x1f_c00410{left:343.038533pt;}
.x17_c00410{left:344.958947pt;}
.x20_c00410{left:356.799320pt;}
.x4_c00410{left:366.719200pt;}
.x18_c00410{left:368.318813pt;}
.x5_c00410{left:390.399867pt;}
.x19_c00410{left:449.279333pt;}
.x1a_c00410{left:470.399453pt;}
.x1d_c00410{left:496.319867pt;}
.x13_c00410{left:501.118693pt;}
.x1e_c00410{left:509.119587pt;}
.x14_c00410{left:526.398920pt;}
.xd_c00410{left:529.278773pt;}
.xe_c00410{left:549.439453pt;}
.x1b_c00410{left:556.798787pt;}
.x1c_c00410{left:606.719200pt;}
.xa_c00410{left:640.960000pt;}
.x15_c00410{left:656.318760pt;}
.xf_c00410{left:680.958907pt;}
.x9_c00410{left:682.239173pt;}
.x21_c00410{left:691.519040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a7e159c81627dd29b4e9490.woff2')format("woff");}.ff1_c00411{font-family:ff1_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;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_6c1602878a09ea6b3898e7f9.woff2')format("woff");}.ff2_c00411{font-family:ff2_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:ff3_c00411;src:url('chunks/assets/font_163b286fa6a947ac04c6980e.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_62d5b9e2afd524c5b7f767dc.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_0cd3aaa087389cdc4ccee76b.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00411;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff6_c00411{font-family:ff6_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00411;src:url('chunks/assets/font_41fd3dcc7b4a33337342e21b.woff2')format("woff");}.ff7_c00411{font-family:ff7_c00411;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00411{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.169471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169471,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177273,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.188172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188172,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{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_c00411{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m19_c00411{transform:matrix(0.317460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317460,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.335366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335366,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.336806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336806,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.376087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376087,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.492188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492188,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls30_c00411{letter-spacing:-12.687675px;}
.ls19_c00411{letter-spacing:-12.678750px;}
.ls25_c00411{letter-spacing:-11.844788px;}
.ls2b_c00411{letter-spacing:-9.933000px;}
.ls2c_c00411{letter-spacing:-8.970000px;}
.ls2d_c00411{letter-spacing:-8.914500px;}
.ls1f_c00411{letter-spacing:-8.385832px;}
.lse_c00411{letter-spacing:-8.175038px;}
.ls9_c00411{letter-spacing:-7.426125px;}
.ls0_c00411{letter-spacing:-7.133693px;}
.ls17_c00411{letter-spacing:-6.686745px;}
.ls8_c00411{letter-spacing:-6.685875px;}
.ls22_c00411{letter-spacing:-6.496875px;}
.ls18_c00411{letter-spacing:-6.241800px;}
.ls1c_c00411{letter-spacing:-6.106500px;}
.ls13_c00411{letter-spacing:-5.945625px;}
.ls11_c00411{letter-spacing:-5.861520px;}
.ls14_c00411{letter-spacing:-5.577000px;}
.ls1b_c00411{letter-spacing:-5.203125px;}
.ls10_c00411{letter-spacing:-5.196713px;}
.ls2f_c00411{letter-spacing:-5.054963px;}
.ls7_c00411{letter-spacing:-4.586993px;}
.ls2e_c00411{letter-spacing:-4.503600px;}
.lsf_c00411{letter-spacing:-4.456463px;}
.ls1a_c00411{letter-spacing:-4.418663px;}
.ls3_c00411{letter-spacing:-3.860025px;}
.ls26_c00411{letter-spacing:-3.748478px;}
.lsd_c00411{letter-spacing:-3.717000px;}
.ls4_c00411{letter-spacing:-3.089625px;}
.ls15_c00411{letter-spacing:-2.978250px;}
.lsc_c00411{letter-spacing:-2.968875px;}
.ls28_c00411{letter-spacing:-2.781000px;}
.ls2_c00411{letter-spacing:-2.310398px;}
.lsb_c00411{letter-spacing:-2.229413px;}
.ls1_c00411{letter-spacing:-1.540800px;}
.lsa_c00411{letter-spacing:-1.489163px;}
.ls5_c00411{letter-spacing:-0.770400px;}
.ls27_c00411{letter-spacing:-0.757050px;}
.ls12_c00411{letter-spacing:-0.740250px;}
.ls6_c00411{letter-spacing:0.000000px;}
.ls1e_c00411{letter-spacing:1.142640px;}
.ls16_c00411{letter-spacing:1.591200px;}
.ls1d_c00411{letter-spacing:2.073053px;}
.ls23_c00411{letter-spacing:2.876475px;}
.ls24_c00411{letter-spacing:3.182108px;}
.ls2a_c00411{letter-spacing:4.916250px;}
.ls20_c00411{letter-spacing:7.010550px;}
.ls29_c00411{letter-spacing:7.426800px;}
.ls21_c00411{letter-spacing:7.972425px;}
.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;}
._6_c00411{margin-left:-5.853620px;}
._15_c00411{margin-left:-4.739143px;}
._11_c00411{margin-left:-3.062810px;}
._7_c00411{margin-left:-1.023434px;}
._a_c00411{width:1.253505px;}
._16_c00411{width:2.253892px;}
._13_c00411{width:3.255570px;}
._8_c00411{width:4.403811px;}
._18_c00411{width:5.857670px;}
._9_c00411{width:7.567328px;}
._12_c00411{width:8.630294px;}
._10_c00411{width:10.314822px;}
._0_c00411{width:11.483713px;}
._f_c00411{width:12.507773px;}
._c_c00411{width:13.604042px;}
._e_c00411{width:15.131691px;}
._1a_c00411{width:16.141194px;}
._17_c00411{width:17.154766px;}
._d_c00411{width:18.608304px;}
._14_c00411{width:19.686621px;}
._4_c00411{width:20.936793px;}
._2_c00411{width:22.146531px;}
._1_c00411{width:23.673009px;}
._3_c00411{width:26.045261px;}
._19_c00411{width:27.727951px;}
._5_c00411{width:29.797195px;}
._b_c00411{width:32.696911px;}
.fc0_c00411{color:transparent;}
.fsc_c00411{font-size:24.000000px;}
.fs18_c00411{font-size:30.000000px;}
.fse_c00411{font-size:30.750000px;}
.fsb_c00411{font-size:35.250000px;}
.fs16_c00411{font-size:36.000000px;}
.fs17_c00411{font-size:37.500000px;}
.fs14_c00411{font-size:38.250000px;}
.fsf_c00411{font-size:40.500000px;}
.fs11_c00411{font-size:47.250000px;}
.fs13_c00411{font-size:51.750000px;}
.fs12_c00411{font-size:52.500000px;}
.fs15_c00411{font-size:54.000000px;}
.fs10_c00411{font-size:69.750000px;}
.fs5_c00411{font-size:72.000000px;}
.fs2_c00411{font-size:77.250000px;}
.fs7_c00411{font-size:78.000000px;}
.fs4_c00411{font-size:78.750000px;}
.fs8_c00411{font-size:79.500000px;}
.fs1_c00411{font-size:80.250000px;}
.fs1a_c00411{font-size:81.000000px;}
.fs3_c00411{font-size:81.750000px;}
.fs6_c00411{font-size:82.500000px;}
.fs0_c00411{font-size:83.250000px;}
.fs1b_c00411{font-size:84.000000px;}
.fsa_c00411{font-size:86.250000px;}
.fs9_c00411{font-size:104.250000px;}
.fs19_c00411{font-size:115.500000px;}
.fsd_c00411{font-size:156.000000px;}
.y0_c00411{bottom:0.000000px;}
.y2c_c00411{bottom:159.841215px;}
.y2b_c00411{bottom:159.841365px;}
.y2a_c00411{bottom:189.360900px;}
.y29_c00411{bottom:189.361215px;}
.y28_c00411{bottom:218.880750px;}
.y26_c00411{bottom:248.399595px;}
.y27_c00411{bottom:248.400285px;}
.y25_c00411{bottom:277.560750px;}
.y24_c00411{bottom:307.439685px;}
.y23_c00411{bottom:307.440840px;}
.y22_c00411{bottom:367.560465px;}
.y21_c00411{bottom:397.080000px;}
.y1f_c00411{bottom:427.319820px;}
.y20_c00411{bottom:427.680720px;}
.y1e_c00411{bottom:431.640750px;}
.y1d_c00411{bottom:433.799565px;}
.y1b_c00411{bottom:456.120180px;}
.y1c_c00411{bottom:456.121035px;}
.y1a_c00411{bottom:485.999910px;}
.y19_c00411{bottom:516.239820px;}
.y18_c00411{bottom:575.280810px;}
.y16_c00411{bottom:605.520120px;}
.y17_c00411{bottom:605.520720px;}
.y15_c00411{bottom:634.679175px;}
.y14_c00411{bottom:664.921185px;}
.y13_c00411{bottom:723.960570px;}
.y11_c00411{bottom:784.080300px;}
.y12_c00411{bottom:784.081050px;}
.y10_c00411{bottom:813.960015px;}
.yf_c00411{bottom:813.960825px;}
.yd_c00411{bottom:843.839790px;}
.ye_c00411{bottom:843.840540px;}
.yc_c00411{bottom:873.719520px;}
.yb_c00411{bottom:873.719895px;}
.ya_c00411{bottom:903.599625px;}
.y9_c00411{bottom:933.479340px;}
.y8_c00411{bottom:963.359070px;}
.y7_c00411{bottom:992.880405px;}
.y6_c00411{bottom:1022.760135px;}
.y5_c00411{bottom:1022.760315px;}
.y4_c00411{bottom:1052.279850px;}
.y2_c00411{bottom:1112.040795px;}
.y3_c00411{bottom:1112.040990px;}
.y1_c00411{bottom:1141.919955px;}
.h10_c00411{height:25.031250px;}
.h1e_c00411{height:30.234375px;}
.h12_c00411{height:30.389648px;}
.hf_c00411{height:36.764648px;}
.h1d_c00411{height:37.060547px;}
.h1c_c00411{height:37.546875px;}
.h18_c00411{height:38.548828px;}
.h13_c00411{height:42.240234px;}
.h15_c00411{height:49.280273px;}
.h17_c00411{height:53.973633px;}
.h16_c00411{height:54.755859px;}
.h1b_c00411{height:56.320312px;}
.h14_c00411{height:72.747070px;}
.h6_c00411{height:75.093750px;}
.h1a_c00411{height:75.816650px;}
.ha_c00411{height:76.552734px;}
.h5_c00411{height:77.288818px;}
.h3_c00411{height:77.853516px;}
.h7_c00411{height:78.760986px;}
.h19_c00411{height:79.365234px;}
.h21_c00411{height:79.497070px;}
.hb_c00411{height:80.121094px;}
.h2_c00411{height:80.876953px;}
.h8_c00411{height:80.969238px;}
.h9_c00411{height:81.533203px;}
.hd_c00411{height:81.705322px;}
.h4_c00411{height:82.388672px;}
.h22_c00411{height:82.441406px;}
.h1_c00411{height:83.900391px;}
.he_c00411{height:84.649658px;}
.h20_c00411{height:89.956055px;}
.hc_c00411{height:108.729492px;}
.h1f_c00411{height:120.462891px;}
.h11_c00411{height:162.703125px;}
.h0_c00411{height:1263.000000px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.xb_c00411{left:158.760015px;}
.x1_c00411{left:159.839565px;}
.x16_c00411{left:173.878350px;}
.x1c_c00411{left:185.040000px;}
.x15_c00411{left:186.119415px;}
.x2_c00411{left:188.279850px;}
.x17_c00411{left:203.038950px;}
.xe_c00411{left:210.958950px;}
.x30_c00411{left:212.758500px;}
.x2b_c00411{left:226.078785px;}
.xf_c00411{left:232.558635px;}
.x2c_c00411{left:260.278800px;}
.x31_c00411{left:262.439250px;}
.x7_c00411{left:282.959400px;}
.x8_c00411{left:322.559685px;}
.xc_c00411{left:325.799535px;}
.x2d_c00411{left:334.078785px;}
.xd_c00411{left:338.759100px;}
.x10_c00411{left:341.278800px;}
.x11_c00411{left:354.599100px;}
.x12_c00411{left:366.120000px;}
.x21_c00411{left:381.239850px;}
.x1a_c00411{left:386.638500px;}
.x13_c00411{left:397.439250px;}
.x1b_c00411{left:401.399235px;}
.x14_c00411{left:423.719100px;}
.x2e_c00411{left:429.119385px;}
.x22_c00411{left:437.398635px;}
.x3_c00411{left:446.399820px;}
.x9_c00411{left:458.279850px;}
.x4_c00411{left:462.239820px;}
.x23_c00411{left:472.679670px;}
.xa_c00411{left:475.199385px;}
.x24_c00411{left:487.079400px;}
.x25_c00411{left:507.238770px;}
.x18_c00411{left:512.639100px;}
.x19_c00411{left:541.079400px;}
.x32_c00411{left:543.958335px;}
.x33_c00411{left:564.119385px;}
.x26_c00411{left:584.278800px;}
.x27_c00411{left:627.479685px;}
.x28_c00411{left:645.839535px;}
.x1d_c00411{left:661.679670px;}
.x5_c00411{left:672.839535px;}
.x1f_c00411{left:675.000000px;}
.x1e_c00411{left:683.279250px;}
.x6_c00411{left:692.998950px;}
.x20_c00411{left:698.399235px;}
.x29_c00411{left:705.599070px;}
.x34_c00411{left:723.238770px;}
.x35_c00411{left:737.638545px;}
.x2a_c00411{left:776.518620px;}
.x2f_c00411{left:777.599670px;}
.x36_c00411{left:780.478635px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls30_c00411{letter-spacing:-11.277933pt;}
.ls19_c00411{letter-spacing:-11.270000pt;}
.ls25_c00411{letter-spacing:-10.528700pt;}
.ls2b_c00411{letter-spacing:-8.829333pt;}
.ls2c_c00411{letter-spacing:-7.973333pt;}
.ls2d_c00411{letter-spacing:-7.924000pt;}
.ls1f_c00411{letter-spacing:-7.454073pt;}
.lse_c00411{letter-spacing:-7.266700pt;}
.ls9_c00411{letter-spacing:-6.601000pt;}
.ls0_c00411{letter-spacing:-6.341060pt;}
.ls17_c00411{letter-spacing:-5.943773pt;}
.ls8_c00411{letter-spacing:-5.943000pt;}
.ls22_c00411{letter-spacing:-5.775000pt;}
.ls18_c00411{letter-spacing:-5.548267pt;}
.ls1c_c00411{letter-spacing:-5.428000pt;}
.ls13_c00411{letter-spacing:-5.285000pt;}
.ls11_c00411{letter-spacing:-5.210240pt;}
.ls14_c00411{letter-spacing:-4.957333pt;}
.ls1b_c00411{letter-spacing:-4.625000pt;}
.ls10_c00411{letter-spacing:-4.619300pt;}
.ls2f_c00411{letter-spacing:-4.493300pt;}
.ls7_c00411{letter-spacing:-4.077327pt;}
.ls2e_c00411{letter-spacing:-4.003200pt;}
.lsf_c00411{letter-spacing:-3.961300pt;}
.ls1a_c00411{letter-spacing:-3.927700pt;}
.ls3_c00411{letter-spacing:-3.431133pt;}
.ls26_c00411{letter-spacing:-3.331980pt;}
.lsd_c00411{letter-spacing:-3.304000pt;}
.ls4_c00411{letter-spacing:-2.746333pt;}
.ls15_c00411{letter-spacing:-2.647333pt;}
.lsc_c00411{letter-spacing:-2.639000pt;}
.ls28_c00411{letter-spacing:-2.472000pt;}
.ls2_c00411{letter-spacing:-2.053687pt;}
.lsb_c00411{letter-spacing:-1.981700pt;}
.ls1_c00411{letter-spacing:-1.369600pt;}
.lsa_c00411{letter-spacing:-1.323700pt;}
.ls5_c00411{letter-spacing:-0.684800pt;}
.ls27_c00411{letter-spacing:-0.672933pt;}
.ls12_c00411{letter-spacing:-0.658000pt;}
.ls6_c00411{letter-spacing:0.000000pt;}
.ls1e_c00411{letter-spacing:1.015680pt;}
.ls16_c00411{letter-spacing:1.414400pt;}
.ls1d_c00411{letter-spacing:1.842713pt;}
.ls23_c00411{letter-spacing:2.556867pt;}
.ls24_c00411{letter-spacing:2.828540pt;}
.ls2a_c00411{letter-spacing:4.370000pt;}
.ls20_c00411{letter-spacing:6.231600pt;}
.ls29_c00411{letter-spacing:6.601600pt;}
.ls21_c00411{letter-spacing:7.086600pt;}
.ws0_c00411{word-spacing:0.000000pt;}
._6_c00411{margin-left:-5.203218pt;}
._15_c00411{margin-left:-4.212572pt;}
._11_c00411{margin-left:-2.722498pt;}
._7_c00411{margin-left:-0.909719pt;}
._a_c00411{width:1.114227pt;}
._16_c00411{width:2.003460pt;}
._13_c00411{width:2.893840pt;}
._8_c00411{width:3.914499pt;}
._18_c00411{width:5.206818pt;}
._9_c00411{width:6.726514pt;}
._12_c00411{width:7.671373pt;}
._10_c00411{width:9.168730pt;}
._0_c00411{width:10.207745pt;}
._f_c00411{width:11.118021pt;}
._c_c00411{width:12.092481pt;}
._e_c00411{width:13.450392pt;}
._1a_c00411{width:14.347728pt;}
._17_c00411{width:15.248681pt;}
._d_c00411{width:16.540715pt;}
._14_c00411{width:17.499219pt;}
._4_c00411{width:18.610483pt;}
._2_c00411{width:19.685805pt;}
._1_c00411{width:21.042675pt;}
._3_c00411{width:23.151343pt;}
._19_c00411{width:24.647068pt;}
._5_c00411{width:26.486396pt;}
._b_c00411{width:29.063921pt;}
.fsc_c00411{font-size:21.333333pt;}
.fs18_c00411{font-size:26.666667pt;}
.fse_c00411{font-size:27.333333pt;}
.fsb_c00411{font-size:31.333333pt;}
.fs16_c00411{font-size:32.000000pt;}
.fs17_c00411{font-size:33.333333pt;}
.fs14_c00411{font-size:34.000000pt;}
.fsf_c00411{font-size:36.000000pt;}
.fs11_c00411{font-size:42.000000pt;}
.fs13_c00411{font-size:46.000000pt;}
.fs12_c00411{font-size:46.666667pt;}
.fs15_c00411{font-size:48.000000pt;}
.fs10_c00411{font-size:62.000000pt;}
.fs5_c00411{font-size:64.000000pt;}
.fs2_c00411{font-size:68.666667pt;}
.fs7_c00411{font-size:69.333333pt;}
.fs4_c00411{font-size:70.000000pt;}
.fs8_c00411{font-size:70.666667pt;}
.fs1_c00411{font-size:71.333333pt;}
.fs1a_c00411{font-size:72.000000pt;}
.fs3_c00411{font-size:72.666667pt;}
.fs6_c00411{font-size:73.333333pt;}
.fs0_c00411{font-size:74.000000pt;}
.fs1b_c00411{font-size:74.666667pt;}
.fsa_c00411{font-size:76.666667pt;}
.fs9_c00411{font-size:92.666667pt;}
.fs19_c00411{font-size:102.666667pt;}
.fsd_c00411{font-size:138.666667pt;}
.y0_c00411{bottom:0.000000pt;}
.y2c_c00411{bottom:142.081080pt;}
.y2b_c00411{bottom:142.081213pt;}
.y2a_c00411{bottom:168.320800pt;}
.y29_c00411{bottom:168.321080pt;}
.y28_c00411{bottom:194.560667pt;}
.y26_c00411{bottom:220.799640pt;}
.y27_c00411{bottom:220.800253pt;}
.y25_c00411{bottom:246.720667pt;}
.y24_c00411{bottom:273.279720pt;}
.y23_c00411{bottom:273.280747pt;}
.y22_c00411{bottom:326.720413pt;}
.y21_c00411{bottom:352.960000pt;}
.y1f_c00411{bottom:379.839840pt;}
.y20_c00411{bottom:380.160640pt;}
.y1e_c00411{bottom:383.680667pt;}
.y1d_c00411{bottom:385.599613pt;}
.y1b_c00411{bottom:405.440160pt;}
.y1c_c00411{bottom:405.440920pt;}
.y1a_c00411{bottom:431.999920pt;}
.y19_c00411{bottom:458.879840pt;}
.y18_c00411{bottom:511.360720pt;}
.y16_c00411{bottom:538.240107pt;}
.y17_c00411{bottom:538.240640pt;}
.y15_c00411{bottom:564.159267pt;}
.y14_c00411{bottom:591.041053pt;}
.y13_c00411{bottom:643.520507pt;}
.y11_c00411{bottom:696.960267pt;}
.y12_c00411{bottom:696.960933pt;}
.y10_c00411{bottom:723.520013pt;}
.yf_c00411{bottom:723.520733pt;}
.yd_c00411{bottom:750.079813pt;}
.ye_c00411{bottom:750.080480pt;}
.yc_c00411{bottom:776.639573pt;}
.yb_c00411{bottom:776.639907pt;}
.ya_c00411{bottom:803.199667pt;}
.y9_c00411{bottom:829.759413pt;}
.y8_c00411{bottom:856.319173pt;}
.y7_c00411{bottom:882.560360pt;}
.y6_c00411{bottom:909.120120pt;}
.y5_c00411{bottom:909.120280pt;}
.y4_c00411{bottom:935.359867pt;}
.y2_c00411{bottom:988.480707pt;}
.y3_c00411{bottom:988.480880pt;}
.y1_c00411{bottom:1015.039960pt;}
.h10_c00411{height:22.250000pt;}
.h1e_c00411{height:26.875000pt;}
.h12_c00411{height:27.013021pt;}
.hf_c00411{height:32.679688pt;}
.h1d_c00411{height:32.942708pt;}
.h1c_c00411{height:33.375000pt;}
.h18_c00411{height:34.265625pt;}
.h13_c00411{height:37.546875pt;}
.h15_c00411{height:43.804688pt;}
.h17_c00411{height:47.976562pt;}
.h16_c00411{height:48.671875pt;}
.h1b_c00411{height:50.062500pt;}
.h14_c00411{height:64.664062pt;}
.h6_c00411{height:66.750000pt;}
.h1a_c00411{height:67.392578pt;}
.ha_c00411{height:68.046875pt;}
.h5_c00411{height:68.701172pt;}
.h3_c00411{height:69.203125pt;}
.h7_c00411{height:70.009766pt;}
.h19_c00411{height:70.546875pt;}
.h21_c00411{height:70.664062pt;}
.hb_c00411{height:71.218750pt;}
.h2_c00411{height:71.890625pt;}
.h8_c00411{height:71.972656pt;}
.h9_c00411{height:72.473958pt;}
.hd_c00411{height:72.626953pt;}
.h4_c00411{height:73.234375pt;}
.h22_c00411{height:73.281250pt;}
.h1_c00411{height:74.578125pt;}
.he_c00411{height:75.244141pt;}
.h20_c00411{height:79.960938pt;}
.hc_c00411{height:96.648438pt;}
.h1f_c00411{height:107.078125pt;}
.h11_c00411{height:144.625000pt;}
.h0_c00411{height:1122.666667pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.xb_c00411{left:141.120013pt;}
.x1_c00411{left:142.079613pt;}
.x16_c00411{left:154.558533pt;}
.x1c_c00411{left:164.480000pt;}
.x15_c00411{left:165.439480pt;}
.x2_c00411{left:167.359867pt;}
.x17_c00411{left:180.479067pt;}
.xe_c00411{left:187.519067pt;}
.x30_c00411{left:189.118667pt;}
.x2b_c00411{left:200.958920pt;}
.xf_c00411{left:206.718787pt;}
.x2c_c00411{left:231.358933pt;}
.x31_c00411{left:233.279333pt;}
.x7_c00411{left:251.519467pt;}
.x8_c00411{left:286.719720pt;}
.xc_c00411{left:289.599587pt;}
.x2d_c00411{left:296.958920pt;}
.xd_c00411{left:301.119200pt;}
.x10_c00411{left:303.358933pt;}
.x11_c00411{left:315.199200pt;}
.x12_c00411{left:325.440000pt;}
.x21_c00411{left:338.879867pt;}
.x1a_c00411{left:343.678667pt;}
.x13_c00411{left:353.279333pt;}
.x1b_c00411{left:356.799320pt;}
.x14_c00411{left:376.639200pt;}
.x2e_c00411{left:381.439453pt;}
.x22_c00411{left:388.798787pt;}
.x3_c00411{left:396.799840pt;}
.x9_c00411{left:407.359867pt;}
.x4_c00411{left:410.879840pt;}
.x23_c00411{left:420.159707pt;}
.xa_c00411{left:422.399453pt;}
.x24_c00411{left:432.959467pt;}
.x25_c00411{left:450.878907pt;}
.x18_c00411{left:455.679200pt;}
.x19_c00411{left:480.959467pt;}
.x32_c00411{left:483.518520pt;}
.x33_c00411{left:501.439453pt;}
.x26_c00411{left:519.358933pt;}
.x27_c00411{left:557.759720pt;}
.x28_c00411{left:574.079587pt;}
.x1d_c00411{left:588.159707pt;}
.x5_c00411{left:598.079587pt;}
.x1f_c00411{left:600.000000pt;}
.x1e_c00411{left:607.359333pt;}
.x6_c00411{left:615.999067pt;}
.x20_c00411{left:620.799320pt;}
.x29_c00411{left:627.199173pt;}
.x34_c00411{left:642.878907pt;}
.x35_c00411{left:655.678707pt;}
.x2a_c00411{left:690.238773pt;}
.x2f_c00411{left:691.199707pt;}
.x36_c00411{left:693.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f297727e3c36a8fd5a8d1406.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_a4e273870c9f0dfacc212581.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_0f508a83bd4bec669d6edc87.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_d71476361451d88fd07da716.woff2')format("woff");}.ff4_c00412{font-family:ff4_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:ff5_c00412;src:url('chunks/assets/font_a2658b136d4b16b93652e2ef.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00412{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{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);}
.m19_c00412{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.310345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310345,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322115,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{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);}
.m20_c00412{transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.598485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.601351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601351,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.991379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.991379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.991379,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(1.633929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.633929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.633929,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(1.674107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.674107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.674107,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls23_c00412{letter-spacing:-33.081825px;}
.ls21_c00412{letter-spacing:-29.127488px;}
.ls27_c00412{letter-spacing:-27.749925px;}
.ls24_c00412{letter-spacing:-23.587500px;}
.ls29_c00412{letter-spacing:-14.097600px;}
.lsf_c00412{letter-spacing:-8.175038px;}
.ls15_c00412{letter-spacing:-7.426125px;}
.ls2a_c00412{letter-spacing:-7.249275px;}
.ls2b_c00412{letter-spacing:-7.170877px;}
.ls22_c00412{letter-spacing:-7.169400px;}
.ls38_c00412{letter-spacing:-6.572700px;}
.lse_c00412{letter-spacing:-5.945625px;}
.lsb_c00412{letter-spacing:-5.680815px;}
.ls14_c00412{letter-spacing:-5.390625px;}
.ls25_c00412{letter-spacing:-5.249475px;}
.ls1e_c00412{letter-spacing:-5.247533px;}
.ls16_c00412{letter-spacing:-5.196713px;}
.ls8_c00412{letter-spacing:-4.496625px;}
.lsc_c00412{letter-spacing:-4.456463px;}
.ls1c_c00412{letter-spacing:-4.412948px;}
.ls17_c00412{letter-spacing:-4.378500px;}
.ls12_c00412{letter-spacing:-4.253400px;}
.ls2d_c00412{letter-spacing:-4.114800px;}
.lsa_c00412{letter-spacing:-3.717000px;}
.ls26_c00412{letter-spacing:-3.593318px;}
.ls13_c00412{letter-spacing:-3.545775px;}
.ls20_c00412{letter-spacing:-3.325980px;}
.ls6_c00412{letter-spacing:-2.968875px;}
.ls18_c00412{letter-spacing:-2.477790px;}
.ls36_c00412{letter-spacing:-2.396250px;}
.ls1a_c00412{letter-spacing:-2.294348px;}
.ls11_c00412{letter-spacing:-2.245620px;}
.ls9_c00412{letter-spacing:-2.229413px;}
.ls28_c00412{letter-spacing:-1.608750px;}
.ls19_c00412{letter-spacing:-1.590750px;}
.lsd_c00412{letter-spacing:-1.489163px;}
.ls7_c00412{letter-spacing:-0.740250px;}
.ls10_c00412{letter-spacing:0.000000px;}
.ls4_c00412{letter-spacing:0.795375px;}
.ls1f_c00412{letter-spacing:1.293750px;}
.ls0_c00412{letter-spacing:1.590750px;}
.ls1d_c00412{letter-spacing:1.621800px;}
.ls1b_c00412{letter-spacing:1.890840px;}
.ls35_c00412{letter-spacing:2.006550px;}
.ls2_c00412{letter-spacing:2.386125px;}
.ls33_c00412{letter-spacing:2.909400px;}
.ls2e_c00412{letter-spacing:3.156000px;}
.ls31_c00412{letter-spacing:5.671800px;}
.ls37_c00412{letter-spacing:5.891078px;}
.ls32_c00412{letter-spacing:6.479640px;}
.ls30_c00412{letter-spacing:7.566000px;}
.ls3_c00412{letter-spacing:7.953750px;}
.ls5_c00412{letter-spacing:10.339875px;}
.ls34_c00412{letter-spacing:11.120063px;}
.ls2c_c00412{letter-spacing:11.785538px;}
.ls2f_c00412{letter-spacing:20.189025px;}
.ls1_c00412{letter-spacing:21.475912px;}
.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;}
._12_c00412{margin-left:-32.038133px;}
._e_c00412{margin-left:-5.522455px;}
._d_c00412{margin-left:-3.485742px;}
._3_c00412{margin-left:-1.953015px;}
._1_c00412{width:1.888900px;}
._0_c00412{width:3.698130px;}
._2_c00412{width:5.338760px;}
._4_c00412{width:7.431221px;}
._8_c00412{width:8.929685px;}
._5_c00412{width:10.812494px;}
._11_c00412{width:11.865812px;}
._6_c00412{width:12.868404px;}
._7_c00412{width:15.595828px;}
._10_c00412{width:16.781476px;}
._a_c00412{width:18.579547px;}
._9_c00412{width:19.687143px;}
._c_c00412{width:21.854923px;}
._13_c00412{width:22.908345px;}
._b_c00412{width:23.914503px;}
._f_c00412{width:26.025270px;}
.fc0_c00412{color:transparent;}
.fs14_c00412{font-size:21.750000px;}
.fs16_c00412{font-size:24.750000px;}
.fs12_c00412{font-size:25.500000px;}
.fs17_c00412{font-size:27.750000px;}
.fs18_c00412{font-size:36.000000px;}
.fs1e_c00412{font-size:36.750000px;}
.fsf_c00412{font-size:37.500000px;}
.fs1a_c00412{font-size:39.000000px;}
.fs1b_c00412{font-size:39.750000px;}
.fs15_c00412{font-size:41.250000px;}
.fs10_c00412{font-size:42.000000px;}
.fs11_c00412{font-size:45.750000px;}
.fs13_c00412{font-size:47.250000px;}
.fs1c_c00412{font-size:51.750000px;}
.fs1d_c00412{font-size:56.250000px;}
.fs1f_c00412{font-size:57.750000px;}
.fs19_c00412{font-size:60.000000px;}
.fs4_c00412{font-size:76.500000px;}
.fs6_c00412{font-size:77.250000px;}
.fs3_c00412{font-size:78.000000px;}
.fs0_c00412{font-size:78.750000px;}
.fsd_c00412{font-size:79.500000px;}
.fsa_c00412{font-size:80.250000px;}
.fs8_c00412{font-size:81.000000px;}
.fse_c00412{font-size:81.750000px;}
.fs7_c00412{font-size:82.500000px;}
.fsb_c00412{font-size:84.000000px;}
.fs5_c00412{font-size:84.750000px;}
.fs2_c00412{font-size:86.250000px;}
.fs9_c00412{font-size:87.750000px;}
.fs1_c00412{font-size:88.500000px;}
.fsc_c00412{font-size:104.250000px;}
.y0_c00412{bottom:0.000000px;}
.y23_c00412{bottom:273.240000px;}
.y22_c00412{bottom:302.759535px;}
.y21_c00412{bottom:302.759955px;}
.y20_c00412{bottom:332.279475px;}
.y1f_c00412{bottom:362.159205px;}
.y1e_c00412{bottom:392.038920px;}
.y1d_c00412{bottom:421.919535px;}
.y1c_c00412{bottom:429.119385px;}
.y1a_c00412{bottom:451.799355px;}
.y1b_c00412{bottom:451.800150px;}
.y19_c00412{bottom:481.679070px;}
.y18_c00412{bottom:541.437885px;}
.y17_c00412{bottom:570.599025px;}
.y16_c00412{bottom:600.838950px;}
.y15_c00412{bottom:600.839100px;}
.y14_c00412{bottom:630.358635px;}
.y12_c00412{bottom:659.879310px;}
.y13_c00412{bottom:659.879970px;}
.y11_c00412{bottom:719.998950px;}
.y10_c00412{bottom:749.518620px;}
.yf_c00412{bottom:779.399415px;}
.ye_c00412{bottom:808.918950px;}
.yd_c00412{bottom:808.919925px;}
.yc_c00412{bottom:838.439460px;}
.yb_c00412{bottom:868.319190px;}
.ya_c00412{bottom:898.559055px;}
.y9_c00412{bottom:898.559415px;}
.y8_c00412{bottom:929.159820px;}
.y7_c00412{bottom:959.038965px;}
.y6_c00412{bottom:959.039130px;}
.y5_c00412{bottom:987.840090px;}
.y4_c00412{bottom:1046.879430px;}
.y3_c00412{bottom:1077.119340px;}
.y2_c00412{bottom:1107.359250px;}
.y1_c00412{bottom:1137.239775px;}
.h16_c00412{height:22.684570px;}
.h18_c00412{height:24.459961px;}
.h14_c00412{height:26.595703px;}
.h19_c00412{height:27.424805px;}
.h1f_c00412{height:36.281250px;}
.h21_c00412{height:37.037109px;}
.h1a_c00412{height:37.546875px;}
.h11_c00412{height:37.792969px;}
.h1c_c00412{height:39.304688px;}
.h1d_c00412{height:40.060547px;}
.h17_c00412{height:41.572266px;}
.h12_c00412{height:43.804688px;}
.h13_c00412{height:47.715820px;}
.h15_c00412{height:49.280273px;}
.h1e_c00412{height:52.154297px;}
.h20_c00412{height:56.689453px;}
.h22_c00412{height:58.201172px;}
.h1b_c00412{height:60.468750px;}
.h5_c00412{height:75.080566px;}
.h7_c00412{height:75.816650px;}
.h4_c00412{height:76.552734px;}
.h1_c00412{height:77.288818px;}
.hf_c00412{height:78.024902px;}
.hc_c00412{height:78.760986px;}
.h10_c00412{height:80.233154px;}
.h8_c00412{height:80.969238px;}
.ha_c00412{height:81.632812px;}
.hd_c00412{height:82.441406px;}
.h6_c00412{height:83.177490px;}
.h9_c00412{height:84.649658px;}
.hb_c00412{height:86.721680px;}
.h2_c00412{height:87.462891px;}
.h3_c00412{height:89.956055px;}
.he_c00412{height:108.729492px;}
.h0_c00412{height:1263.000000px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x5_c00412{left:153.001530px;}
.x1_c00412{left:154.080000px;}
.x1d_c00412{left:163.799565px;}
.x6_c00412{left:165.958350px;}
.x1e_c00412{left:188.639100px;}
.x4_c00412{left:192.958350px;}
.x14_c00412{left:222.118785px;}
.x24_c00412{left:230.759100px;}
.x15_c00412{left:241.918950px;}
.x25_c00412{left:250.199850px;}
.x26_c00412{left:305.999385px;}
.x16_c00412{left:327.958350px;}
.x17_c00412{left:349.918950px;}
.x2_c00412{left:368.639700px;}
.x27_c00412{left:389.878320px;}
.x3_c00412{left:393.119985px;}
.x1f_c00412{left:399.238770px;}
.x20_c00412{left:423.719100px;}
.x8_c00412{left:440.999400px;}
.x9_c00412{left:454.319820px;}
.x19_c00412{left:473.759085px;}
.x21_c00412{left:482.399235px;}
.x28_c00412{left:497.159820px;}
.x1a_c00412{left:498.959385px;}
.x22_c00412{left:502.199385px;}
.x11_c00412{left:569.158770px;}
.x29_c00412{left:583.199385px;}
.x12_c00412{left:584.639700px;}
.x2a_c00412{left:605.159820px;}
.xc_c00412{left:607.318770px;}
.xd_c00412{left:626.398635px;}
.x2b_c00412{left:631.439670px;}
.xf_c00412{left:669.238770px;}
.xa_c00412{left:671.399235px;}
.x1b_c00412{left:675.718545px;}
.x10_c00412{left:684.719520px;}
.x2c_c00412{left:689.759085px;}
.xb_c00412{left:692.639700px;}
.x2d_c00412{left:693.719100px;}
.x13_c00412{left:713.519070px;}
.x1c_c00412{left:725.039985px;}
.x18_c00412{left:727.198785px;}
.x7_c00412{left:756.359250px;}
.x2e_c00412{left:758.878920px;}
.x23_c00412{left:768.959385px;}
.xe_c00412{left:773.639655px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls23_c00412{letter-spacing:-29.406067pt;}
.ls21_c00412{letter-spacing:-25.891100pt;}
.ls27_c00412{letter-spacing:-24.666600pt;}
.ls24_c00412{letter-spacing:-20.966667pt;}
.ls29_c00412{letter-spacing:-12.531200pt;}
.lsf_c00412{letter-spacing:-7.266700pt;}
.ls15_c00412{letter-spacing:-6.601000pt;}
.ls2a_c00412{letter-spacing:-6.443800pt;}
.ls2b_c00412{letter-spacing:-6.374113pt;}
.ls22_c00412{letter-spacing:-6.372800pt;}
.ls38_c00412{letter-spacing:-5.842400pt;}
.lse_c00412{letter-spacing:-5.285000pt;}
.lsb_c00412{letter-spacing:-5.049613pt;}
.ls14_c00412{letter-spacing:-4.791667pt;}
.ls25_c00412{letter-spacing:-4.666200pt;}
.ls1e_c00412{letter-spacing:-4.664473pt;}
.ls16_c00412{letter-spacing:-4.619300pt;}
.ls8_c00412{letter-spacing:-3.997000pt;}
.lsc_c00412{letter-spacing:-3.961300pt;}
.ls1c_c00412{letter-spacing:-3.922620pt;}
.ls17_c00412{letter-spacing:-3.892000pt;}
.ls12_c00412{letter-spacing:-3.780800pt;}
.ls2d_c00412{letter-spacing:-3.657600pt;}
.lsa_c00412{letter-spacing:-3.304000pt;}
.ls26_c00412{letter-spacing:-3.194060pt;}
.ls13_c00412{letter-spacing:-3.151800pt;}
.ls20_c00412{letter-spacing:-2.956427pt;}
.ls6_c00412{letter-spacing:-2.639000pt;}
.ls18_c00412{letter-spacing:-2.202480pt;}
.ls36_c00412{letter-spacing:-2.130000pt;}
.ls1a_c00412{letter-spacing:-2.039420pt;}
.ls11_c00412{letter-spacing:-1.996107pt;}
.ls9_c00412{letter-spacing:-1.981700pt;}
.ls28_c00412{letter-spacing:-1.430000pt;}
.ls19_c00412{letter-spacing:-1.414000pt;}
.lsd_c00412{letter-spacing:-1.323700pt;}
.ls7_c00412{letter-spacing:-0.658000pt;}
.ls10_c00412{letter-spacing:0.000000pt;}
.ls4_c00412{letter-spacing:0.707000pt;}
.ls1f_c00412{letter-spacing:1.150000pt;}
.ls0_c00412{letter-spacing:1.414000pt;}
.ls1d_c00412{letter-spacing:1.441600pt;}
.ls1b_c00412{letter-spacing:1.680747pt;}
.ls35_c00412{letter-spacing:1.783600pt;}
.ls2_c00412{letter-spacing:2.121000pt;}
.ls33_c00412{letter-spacing:2.586133pt;}
.ls2e_c00412{letter-spacing:2.805333pt;}
.ls31_c00412{letter-spacing:5.041600pt;}
.ls37_c00412{letter-spacing:5.236513pt;}
.ls32_c00412{letter-spacing:5.759680pt;}
.ls30_c00412{letter-spacing:6.725333pt;}
.ls3_c00412{letter-spacing:7.070000pt;}
.ls5_c00412{letter-spacing:9.191000pt;}
.ls34_c00412{letter-spacing:9.884500pt;}
.ls2c_c00412{letter-spacing:10.476033pt;}
.ls2f_c00412{letter-spacing:17.945800pt;}
.ls1_c00412{letter-spacing:19.089700pt;}
.ws0_c00412{word-spacing:0.000000pt;}
._12_c00412{margin-left:-28.478341pt;}
._e_c00412{margin-left:-4.908849pt;}
._d_c00412{margin-left:-3.098438pt;}
._3_c00412{margin-left:-1.736013pt;}
._1_c00412{width:1.679023pt;}
._0_c00412{width:3.287226pt;}
._2_c00412{width:4.745564pt;}
._4_c00412{width:6.605530pt;}
._8_c00412{width:7.937498pt;}
._5_c00412{width:9.611106pt;}
._11_c00412{width:10.547389pt;}
._6_c00412{width:11.438581pt;}
._7_c00412{width:13.862958pt;}
._10_c00412{width:14.916868pt;}
._a_c00412{width:16.515153pt;}
._9_c00412{width:17.499683pt;}
._c_c00412{width:19.426598pt;}
._13_c00412{width:20.362974pt;}
._b_c00412{width:21.257336pt;}
._f_c00412{width:23.133574pt;}
.fs14_c00412{font-size:19.333333pt;}
.fs16_c00412{font-size:22.000000pt;}
.fs12_c00412{font-size:22.666667pt;}
.fs17_c00412{font-size:24.666667pt;}
.fs18_c00412{font-size:32.000000pt;}
.fs1e_c00412{font-size:32.666667pt;}
.fsf_c00412{font-size:33.333333pt;}
.fs1a_c00412{font-size:34.666667pt;}
.fs1b_c00412{font-size:35.333333pt;}
.fs15_c00412{font-size:36.666667pt;}
.fs10_c00412{font-size:37.333333pt;}
.fs11_c00412{font-size:40.666667pt;}
.fs13_c00412{font-size:42.000000pt;}
.fs1c_c00412{font-size:46.000000pt;}
.fs1d_c00412{font-size:50.000000pt;}
.fs1f_c00412{font-size:51.333333pt;}
.fs19_c00412{font-size:53.333333pt;}
.fs4_c00412{font-size:68.000000pt;}
.fs6_c00412{font-size:68.666667pt;}
.fs3_c00412{font-size:69.333333pt;}
.fs0_c00412{font-size:70.000000pt;}
.fsd_c00412{font-size:70.666667pt;}
.fsa_c00412{font-size:71.333333pt;}
.fs8_c00412{font-size:72.000000pt;}
.fse_c00412{font-size:72.666667pt;}
.fs7_c00412{font-size:73.333333pt;}
.fsb_c00412{font-size:74.666667pt;}
.fs5_c00412{font-size:75.333333pt;}
.fs2_c00412{font-size:76.666667pt;}
.fs9_c00412{font-size:78.000000pt;}
.fs1_c00412{font-size:78.666667pt;}
.fsc_c00412{font-size:92.666667pt;}
.y0_c00412{bottom:0.000000pt;}
.y23_c00412{bottom:242.880000pt;}
.y22_c00412{bottom:269.119587pt;}
.y21_c00412{bottom:269.119960pt;}
.y20_c00412{bottom:295.359533pt;}
.y1f_c00412{bottom:321.919293pt;}
.y1e_c00412{bottom:348.479040pt;}
.y1d_c00412{bottom:375.039587pt;}
.y1c_c00412{bottom:381.439453pt;}
.y1a_c00412{bottom:401.599427pt;}
.y1b_c00412{bottom:401.600133pt;}
.y19_c00412{bottom:428.159173pt;}
.y18_c00412{bottom:481.278120pt;}
.y17_c00412{bottom:507.199133pt;}
.y16_c00412{bottom:534.079067pt;}
.y15_c00412{bottom:534.079200pt;}
.y14_c00412{bottom:560.318787pt;}
.y12_c00412{bottom:586.559387pt;}
.y13_c00412{bottom:586.559973pt;}
.y11_c00412{bottom:639.999067pt;}
.y10_c00412{bottom:666.238773pt;}
.yf_c00412{bottom:692.799480pt;}
.ye_c00412{bottom:719.039067pt;}
.yd_c00412{bottom:719.039933pt;}
.yc_c00412{bottom:745.279520pt;}
.yb_c00412{bottom:771.839280pt;}
.ya_c00412{bottom:798.719160pt;}
.y9_c00412{bottom:798.719480pt;}
.y8_c00412{bottom:825.919840pt;}
.y7_c00412{bottom:852.479080pt;}
.y6_c00412{bottom:852.479227pt;}
.y5_c00412{bottom:878.080080pt;}
.y4_c00412{bottom:930.559493pt;}
.y3_c00412{bottom:957.439413pt;}
.y2_c00412{bottom:984.319333pt;}
.y1_c00412{bottom:1010.879800pt;}
.h16_c00412{height:20.164062pt;}
.h18_c00412{height:21.742187pt;}
.h14_c00412{height:23.640625pt;}
.h19_c00412{height:24.377604pt;}
.h1f_c00412{height:32.250000pt;}
.h21_c00412{height:32.921875pt;}
.h1a_c00412{height:33.375000pt;}
.h11_c00412{height:33.593750pt;}
.h1c_c00412{height:34.937500pt;}
.h1d_c00412{height:35.609375pt;}
.h17_c00412{height:36.953125pt;}
.h12_c00412{height:38.937500pt;}
.h13_c00412{height:42.414062pt;}
.h15_c00412{height:43.804688pt;}
.h1e_c00412{height:46.359375pt;}
.h20_c00412{height:50.390625pt;}
.h22_c00412{height:51.734375pt;}
.h1b_c00412{height:53.750000pt;}
.h5_c00412{height:66.738281pt;}
.h7_c00412{height:67.392578pt;}
.h4_c00412{height:68.046875pt;}
.h1_c00412{height:68.701172pt;}
.hf_c00412{height:69.355469pt;}
.hc_c00412{height:70.009766pt;}
.h10_c00412{height:71.318359pt;}
.h8_c00412{height:71.972656pt;}
.ha_c00412{height:72.562500pt;}
.hd_c00412{height:73.281250pt;}
.h6_c00412{height:73.935547pt;}
.h9_c00412{height:75.244141pt;}
.hb_c00412{height:77.085938pt;}
.h2_c00412{height:77.744792pt;}
.h3_c00412{height:79.960938pt;}
.he_c00412{height:96.648438pt;}
.h0_c00412{height:1122.666667pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x5_c00412{left:136.001360pt;}
.x1_c00412{left:136.960000pt;}
.x1d_c00412{left:145.599613pt;}
.x6_c00412{left:147.518533pt;}
.x1e_c00412{left:167.679200pt;}
.x4_c00412{left:171.518533pt;}
.x14_c00412{left:197.438920pt;}
.x24_c00412{left:205.119200pt;}
.x15_c00412{left:215.039067pt;}
.x25_c00412{left:222.399867pt;}
.x26_c00412{left:271.999453pt;}
.x16_c00412{left:291.518533pt;}
.x17_c00412{left:311.039067pt;}
.x2_c00412{left:327.679733pt;}
.x27_c00412{left:346.558507pt;}
.x3_c00412{left:349.439987pt;}
.x1f_c00412{left:354.878907pt;}
.x20_c00412{left:376.639200pt;}
.x8_c00412{left:391.999467pt;}
.x9_c00412{left:403.839840pt;}
.x19_c00412{left:421.119187pt;}
.x21_c00412{left:428.799320pt;}
.x28_c00412{left:441.919840pt;}
.x1a_c00412{left:443.519453pt;}
.x22_c00412{left:446.399453pt;}
.x11_c00412{left:505.918907pt;}
.x29_c00412{left:518.399453pt;}
.x12_c00412{left:519.679733pt;}
.x2a_c00412{left:537.919840pt;}
.xc_c00412{left:539.838907pt;}
.xd_c00412{left:556.798787pt;}
.x2b_c00412{left:561.279707pt;}
.xf_c00412{left:594.878907pt;}
.xa_c00412{left:596.799320pt;}
.x1b_c00412{left:600.638707pt;}
.x10_c00412{left:608.639573pt;}
.x2c_c00412{left:613.119187pt;}
.xb_c00412{left:615.679733pt;}
.x2d_c00412{left:616.639200pt;}
.x13_c00412{left:634.239173pt;}
.x1c_c00412{left:644.479987pt;}
.x18_c00412{left:646.398920pt;}
.x7_c00412{left:672.319333pt;}
.x2e_c00412{left:674.559040pt;}
.x23_c00412{left:683.519453pt;}
.xe_c00412{left:687.679693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_354b2a5826e204722220ef16.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.364746;font-style:normal;font-weight:normal;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_2afe4d950b9a8b203a15a4b1.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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_0ef9416c929f3ff5b14560f5.woff2')format("woff");}.ff4_c00413{font-family:ff4_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:ff5_c00413;src:url('chunks/assets/font_ee370d663d0fd75bbbf1f647.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.364746;font-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_c00413{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112385,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.113839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113839,0.000000,0.000000,0.250000,0,0);}
.m13_c00413{transform:matrix(0.115909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115909,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130631,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178058,0.000000,0.000000,0.250000,0,0);}
.m20_c00413{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{transform:matrix(0.181193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181193,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183962,0.000000,0.000000,0.250000,0,0);}
.m1c_c00413{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m1e_c00413{transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192130,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.mc_c00413{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00413{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m21_c00413{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1d_c00413{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m1b_c00413{transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);}
.m1a_c00413{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.me_c00413{transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls1e_c00413{letter-spacing:-27.997200px;}
.ls0_c00413{letter-spacing:-19.502018px;}
.ls19_c00413{letter-spacing:-16.179075px;}
.ls21_c00413{letter-spacing:-13.763400px;}
.ls1f_c00413{letter-spacing:-11.151000px;}
.ls13_c00413{letter-spacing:-10.191900px;}
.ls11_c00413{letter-spacing:-8.914500px;}
.ls20_c00413{letter-spacing:-8.175038px;}
.ls18_c00413{letter-spacing:-6.854400px;}
.ls10_c00413{letter-spacing:-6.685875px;}
.ls26_c00413{letter-spacing:-6.272550px;}
.ls1d_c00413{letter-spacing:-6.204825px;}
.lsf_c00413{letter-spacing:-5.945625px;}
.ls22_c00413{letter-spacing:-5.890500px;}
.ls17_c00413{letter-spacing:-5.850000px;}
.ls24_c00413{letter-spacing:-5.553075px;}
.ls12_c00413{letter-spacing:-5.196713px;}
.ls23_c00413{letter-spacing:-4.907925px;}
.ls25_c00413{letter-spacing:-4.876200px;}
.ls3_c00413{letter-spacing:-4.667925px;}
.ls7_c00413{letter-spacing:-4.591125px;}
.ls14_c00413{letter-spacing:-4.456463px;}
.lsa_c00413{letter-spacing:-4.410975px;}
.ls4_c00413{letter-spacing:-3.785025px;}
.lsc_c00413{letter-spacing:-3.717000px;}
.ls1_c00413{letter-spacing:-3.085500px;}
.ls9_c00413{letter-spacing:-2.968875px;}
.ls1c_c00413{letter-spacing:-2.872125px;}
.ls5_c00413{letter-spacing:-2.358675px;}
.ls2_c00413{letter-spacing:-2.314343px;}
.ls8_c00413{letter-spacing:-2.229413px;}
.ls1b_c00413{letter-spacing:-1.667700px;}
.lse_c00413{letter-spacing:-1.489163px;}
.lsb_c00413{letter-spacing:-0.740250px;}
.ls6_c00413{letter-spacing:0.000000px;}
.ls27_c00413{letter-spacing:1.661400px;}
.ls1a_c00413{letter-spacing:3.105683px;}
.lsd_c00413{letter-spacing:3.772440px;}
.ls15_c00413{letter-spacing:3.795825px;}
.ls16_c00413{letter-spacing:4.398900px;}
.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;}
._18_c00413{margin-left:-8.312880px;}
._1c_c00413{margin-left:-5.508934px;}
._19_c00413{margin-left:-3.534865px;}
._4_c00413{margin-left:-1.756095px;}
._0_c00413{width:1.577348px;}
._17_c00413{width:2.583461px;}
._2_c00413{width:3.938585px;}
._1a_c00413{width:5.035260px;}
._b_c00413{width:6.477633px;}
._5_c00413{width:8.095411px;}
._3_c00413{width:9.681837px;}
._1_c00413{width:10.867946px;}
._a_c00413{width:12.127025px;}
._12_c00413{width:14.014707px;}
._8_c00413{width:15.175571px;}
._1e_c00413{width:16.303880px;}
._11_c00413{width:17.871317px;}
._15_c00413{width:18.882645px;}
._7_c00413{width:20.220013px;}
._13_c00413{width:21.563756px;}
._1b_c00413{width:23.228635px;}
._6_c00413{width:24.288536px;}
._f_c00413{width:25.516144px;}
._14_c00413{width:27.324541px;}
._c_c00413{width:28.413832px;}
._e_c00413{width:29.442352px;}
._9_c00413{width:30.566783px;}
._16_c00413{width:31.572138px;}
._20_c00413{width:33.511424px;}
._1d_c00413{width:36.861226px;}
._1f_c00413{width:39.339399px;}
._d_c00413{width:41.257422px;}
._10_c00413{width:44.523660px;}
.fc0_c00413{color:transparent;}
.fsa_c00413{font-size:29.250000px;}
.fs9_c00413{font-size:33.000000px;}
.fs8_c00413{font-size:51.750000px;}
.fsc_c00413{font-size:76.500000px;}
.fs5_c00413{font-size:77.250000px;}
.fsd_c00413{font-size:78.000000px;}
.fs4_c00413{font-size:78.750000px;}
.fs7_c00413{font-size:79.500000px;}
.fse_c00413{font-size:80.250000px;}
.fs10_c00413{font-size:81.000000px;}
.fs2_c00413{font-size:81.750000px;}
.fs1_c00413{font-size:82.500000px;}
.fsb_c00413{font-size:83.250000px;}
.fs6_c00413{font-size:84.000000px;}
.fsf_c00413{font-size:84.750000px;}
.fs0_c00413{font-size:89.250000px;}
.fs3_c00413{font-size:104.250000px;}
.y0_c00413{bottom:0.000000px;}
.y28_c00413{bottom:211.319850px;}
.y27_c00413{bottom:241.198785px;}
.y26_c00413{bottom:241.200555px;}
.y25_c00413{bottom:271.080270px;}
.y24_c00413{bottom:300.960000px;}
.y22_c00413{bottom:330.118245px;}
.y23_c00413{bottom:330.118785px;}
.y21_c00413{bottom:388.798920px;}
.y1f_c00413{bottom:419.038875px;}
.y20_c00413{bottom:419.038920px;}
.y1e_c00413{bottom:449.278800px;}
.y1d_c00413{bottom:479.879520px;}
.y1c_c00413{bottom:479.880000px;}
.y1b_c00413{bottom:509.399535px;}
.y1a_c00413{bottom:539.639445px;}
.y19_c00413{bottom:569.158980px;}
.y18_c00413{bottom:598.680315px;}
.y16_c00413{bottom:628.199040px;}
.y17_c00413{bottom:628.199850px;}
.y15_c00413{bottom:658.078770px;}
.y14_c00413{bottom:658.078785px;}
.y12_c00413{bottom:687.599505px;}
.y13_c00413{bottom:687.600135px;}
.y11_c00413{bottom:717.479235px;}
.y10_c00413{bottom:747.359850px;}
.yf_c00413{bottom:752.039985px;}
.ye_c00413{bottom:807.119340px;}
.yd_c00413{bottom:837.359250px;}
.yc_c00413{bottom:837.360420px;}
.yb_c00413{bottom:866.879955px;}
.ya_c00413{bottom:896.759670px;}
.y9_c00413{bottom:926.279205px;}
.y8_c00413{bottom:926.279415px;}
.y7_c00413{bottom:956.159130px;}
.y6_c00413{bottom:986.038860px;}
.y5_c00413{bottom:1015.200000px;}
.y4_c00413{bottom:1044.898590px;}
.y3_c00413{bottom:1044.898770px;}
.y2_c00413{bottom:1075.319820px;}
.y1_c00413{bottom:1135.079400px;}
.hc_c00413{height:28.907227px;}
.hb_c00413{height:32.613281px;}
.ha_c00413{height:53.973633px;}
.h11_c00413{height:75.080566px;}
.h6_c00413{height:75.816650px;}
.h12_c00413{height:76.552734px;}
.h5_c00413{height:77.288818px;}
.h8_c00413{height:78.568359px;}
.h16_c00413{height:78.609375px;}
.h13_c00413{height:78.760986px;}
.h15_c00413{height:80.050781px;}
.hd_c00413{height:80.791992px;}
.h9_c00413{height:80.969238px;}
.hf_c00413{height:81.533203px;}
.h10_c00413{height:82.274414px;}
.h3_c00413{height:82.388672px;}
.h7_c00413{height:82.441406px;}
.he_c00413{height:83.015625px;}
.h2_c00413{height:83.144531px;}
.h14_c00413{height:83.756836px;}
.h1_c00413{height:88.204102px;}
.h4_c00413{height:108.729492px;}
.h0_c00413{height:1263.000000px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.xd_c00413{left:155.878920px;}
.x1_c00413{left:157.319850px;}
.x7_c00413{left:169.199850px;}
.x1e_c00413{left:178.199415px;}
.x2_c00413{left:184.319850px;}
.x14_c00413{left:190.438665px;}
.x8_c00413{left:194.759535px;}
.x15_c00413{left:233.278800px;}
.x10_c00413{left:237.238785px;}
.x11_c00413{left:253.439685px;}
.x3_c00413{left:268.918950px;}
.x21_c00413{left:273.958350px;}
.x36_c00413{left:279.358635px;}
.x22_c00413{left:286.919535px;}
.x37_c00413{left:297.000000px;}
.x2e_c00413{left:310.318800px;}
.x16_c00413{left:327.958350px;}
.x2a_c00413{left:343.080000px;}
.x17_c00413{left:349.198785px;}
.x4_c00413{left:358.199850px;}
.x18_c00413{left:366.838515px;}
.x5_c00413{left:381.958350px;}
.x2b_c00413{left:390.959385px;}
.x25_c00413{left:395.278800px;}
.x9_c00413{left:404.639100px;}
.x6_c00413{left:408.958335px;}
.x26_c00413{left:411.479685px;}
.xa_c00413{left:428.399235px;}
.x2f_c00413{left:451.080000px;}
.xe_c00413{left:459.718500px;}
.x3b_c00413{left:462.599070px;}
.x30_c00413{left:466.199850px;}
.x2c_c00413{left:470.878320px;}
.x19_c00413{left:471.959385px;}
.x3c_c00413{left:477.359850px;}
.x23_c00413{left:482.039985px;}
.xf_c00413{left:484.559685px;}
.x38_c00413{left:490.678530px;}
.x1a_c00413{left:492.838950px;}
.x2d_c00413{left:494.999400px;}
.x24_c00413{left:506.159415px;}
.x1b_c00413{left:515.519670px;}
.x39_c00413{left:541.079400px;}
.x27_c00413{left:580.318770px;}
.x1c_c00413{left:601.199850px;}
.x33_c00413{left:632.878320px;}
.x28_c00413{left:654.118785px;}
.x31_c00413{left:664.919535px;}
.xb_c00413{left:670.319820px;}
.x1f_c00413{left:675.359250px;}
.x34_c00413{left:681.838950px;}
.x12_c00413{left:686.159820px;}
.x20_c00413{left:693.719100px;}
.xc_c00413{left:698.758530px;}
.x13_c00413{left:710.279250px;}
.x1d_c00413{left:717.479235px;}
.x29_c00413{left:749.159370px;}
.x32_c00413{left:767.159820px;}
.x35_c00413{left:783.359250px;}
.x3a_c00413{left:784.438665px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1e_c00413{letter-spacing:-24.886400pt;}
.ls0_c00413{letter-spacing:-17.335127pt;}
.ls19_c00413{letter-spacing:-14.381400pt;}
.ls21_c00413{letter-spacing:-12.234133pt;}
.ls1f_c00413{letter-spacing:-9.912000pt;}
.ls13_c00413{letter-spacing:-9.059467pt;}
.ls11_c00413{letter-spacing:-7.924000pt;}
.ls20_c00413{letter-spacing:-7.266700pt;}
.ls18_c00413{letter-spacing:-6.092800pt;}
.ls10_c00413{letter-spacing:-5.943000pt;}
.ls26_c00413{letter-spacing:-5.575600pt;}
.ls1d_c00413{letter-spacing:-5.515400pt;}
.lsf_c00413{letter-spacing:-5.285000pt;}
.ls22_c00413{letter-spacing:-5.236000pt;}
.ls17_c00413{letter-spacing:-5.200000pt;}
.ls24_c00413{letter-spacing:-4.936067pt;}
.ls12_c00413{letter-spacing:-4.619300pt;}
.ls23_c00413{letter-spacing:-4.362600pt;}
.ls25_c00413{letter-spacing:-4.334400pt;}
.ls3_c00413{letter-spacing:-4.149267pt;}
.ls7_c00413{letter-spacing:-4.081000pt;}
.ls14_c00413{letter-spacing:-3.961300pt;}
.lsa_c00413{letter-spacing:-3.920867pt;}
.ls4_c00413{letter-spacing:-3.364467pt;}
.lsc_c00413{letter-spacing:-3.304000pt;}
.ls1_c00413{letter-spacing:-2.742667pt;}
.ls9_c00413{letter-spacing:-2.639000pt;}
.ls1c_c00413{letter-spacing:-2.553000pt;}
.ls5_c00413{letter-spacing:-2.096600pt;}
.ls2_c00413{letter-spacing:-2.057193pt;}
.ls8_c00413{letter-spacing:-1.981700pt;}
.ls1b_c00413{letter-spacing:-1.482400pt;}
.lse_c00413{letter-spacing:-1.323700pt;}
.lsb_c00413{letter-spacing:-0.658000pt;}
.ls6_c00413{letter-spacing:0.000000pt;}
.ls27_c00413{letter-spacing:1.476800pt;}
.ls1a_c00413{letter-spacing:2.760607pt;}
.lsd_c00413{letter-spacing:3.353280pt;}
.ls15_c00413{letter-spacing:3.374067pt;}
.ls16_c00413{letter-spacing:3.910133pt;}
.ws0_c00413{word-spacing:0.000000pt;}
._18_c00413{margin-left:-7.389226pt;}
._1c_c00413{margin-left:-4.896830pt;}
._19_c00413{margin-left:-3.142102pt;}
._4_c00413{margin-left:-1.560974pt;}
._0_c00413{width:1.402087pt;}
._17_c00413{width:2.296409pt;}
._2_c00413{width:3.500964pt;}
._1a_c00413{width:4.475787pt;}
._b_c00413{width:5.757896pt;}
._5_c00413{width:7.195921pt;}
._3_c00413{width:8.606077pt;}
._1_c00413{width:9.660396pt;}
._a_c00413{width:10.779577pt;}
._12_c00413{width:12.457517pt;}
._8_c00413{width:13.489396pt;}
._1e_c00413{width:14.492338pt;}
._11_c00413{width:15.885615pt;}
._15_c00413{width:16.784574pt;}
._7_c00413{width:17.973345pt;}
._13_c00413{width:19.167783pt;}
._1b_c00413{width:20.647675pt;}
._6_c00413{width:21.589809pt;}
._f_c00413{width:22.681017pt;}
._14_c00413{width:24.288481pt;}
._c_c00413{width:25.256740pt;}
._e_c00413{width:26.170979pt;}
._9_c00413{width:27.170474pt;}
._16_c00413{width:28.064123pt;}
._20_c00413{width:29.787932pt;}
._1d_c00413{width:32.765534pt;}
._1f_c00413{width:34.968355pt;}
._d_c00413{width:36.673264pt;}
._10_c00413{width:39.576587pt;}
.fsa_c00413{font-size:26.000000pt;}
.fs9_c00413{font-size:29.333333pt;}
.fs8_c00413{font-size:46.000000pt;}
.fsc_c00413{font-size:68.000000pt;}
.fs5_c00413{font-size:68.666667pt;}
.fsd_c00413{font-size:69.333333pt;}
.fs4_c00413{font-size:70.000000pt;}
.fs7_c00413{font-size:70.666667pt;}
.fse_c00413{font-size:71.333333pt;}
.fs10_c00413{font-size:72.000000pt;}
.fs2_c00413{font-size:72.666667pt;}
.fs1_c00413{font-size:73.333333pt;}
.fsb_c00413{font-size:74.000000pt;}
.fs6_c00413{font-size:74.666667pt;}
.fsf_c00413{font-size:75.333333pt;}
.fs0_c00413{font-size:79.333333pt;}
.fs3_c00413{font-size:92.666667pt;}
.y0_c00413{bottom:0.000000pt;}
.y28_c00413{bottom:187.839867pt;}
.y27_c00413{bottom:214.398920pt;}
.y26_c00413{bottom:214.400493pt;}
.y25_c00413{bottom:240.960240pt;}
.y24_c00413{bottom:267.520000pt;}
.y22_c00413{bottom:293.438440pt;}
.y23_c00413{bottom:293.438920pt;}
.y21_c00413{bottom:345.599040pt;}
.y1f_c00413{bottom:372.479000pt;}
.y20_c00413{bottom:372.479040pt;}
.y1e_c00413{bottom:399.358933pt;}
.y1d_c00413{bottom:426.559573pt;}
.y1c_c00413{bottom:426.560000pt;}
.y1b_c00413{bottom:452.799587pt;}
.y1a_c00413{bottom:479.679507pt;}
.y19_c00413{bottom:505.919093pt;}
.y18_c00413{bottom:532.160280pt;}
.y16_c00413{bottom:558.399147pt;}
.y17_c00413{bottom:558.399867pt;}
.y15_c00413{bottom:584.958907pt;}
.y14_c00413{bottom:584.958920pt;}
.y12_c00413{bottom:611.199560pt;}
.y13_c00413{bottom:611.200120pt;}
.y11_c00413{bottom:637.759320pt;}
.y10_c00413{bottom:664.319867pt;}
.yf_c00413{bottom:668.479987pt;}
.ye_c00413{bottom:717.439413pt;}
.yd_c00413{bottom:744.319333pt;}
.yc_c00413{bottom:744.320373pt;}
.yb_c00413{bottom:770.559960pt;}
.ya_c00413{bottom:797.119707pt;}
.y9_c00413{bottom:823.359293pt;}
.y8_c00413{bottom:823.359480pt;}
.y7_c00413{bottom:849.919227pt;}
.y6_c00413{bottom:876.478987pt;}
.y5_c00413{bottom:902.400000pt;}
.y4_c00413{bottom:928.798747pt;}
.y3_c00413{bottom:928.798907pt;}
.y2_c00413{bottom:955.839840pt;}
.y1_c00413{bottom:1008.959467pt;}
.hc_c00413{height:25.695312pt;}
.hb_c00413{height:28.989583pt;}
.ha_c00413{height:47.976562pt;}
.h11_c00413{height:66.738281pt;}
.h6_c00413{height:67.392578pt;}
.h12_c00413{height:68.046875pt;}
.h5_c00413{height:68.701172pt;}
.h8_c00413{height:69.838542pt;}
.h16_c00413{height:69.875000pt;}
.h13_c00413{height:70.009766pt;}
.h15_c00413{height:71.156250pt;}
.hd_c00413{height:71.815104pt;}
.h9_c00413{height:71.972656pt;}
.hf_c00413{height:72.473958pt;}
.h10_c00413{height:73.132813pt;}
.h3_c00413{height:73.234375pt;}
.h7_c00413{height:73.281250pt;}
.he_c00413{height:73.791667pt;}
.h2_c00413{height:73.906250pt;}
.h14_c00413{height:74.450521pt;}
.h1_c00413{height:78.403646pt;}
.h4_c00413{height:96.648438pt;}
.h0_c00413{height:1122.666667pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.xd_c00413{left:138.559040pt;}
.x1_c00413{left:139.839867pt;}
.x7_c00413{left:150.399867pt;}
.x1e_c00413{left:158.399480pt;}
.x2_c00413{left:163.839867pt;}
.x14_c00413{left:169.278813pt;}
.x8_c00413{left:173.119587pt;}
.x15_c00413{left:207.358933pt;}
.x10_c00413{left:210.878920pt;}
.x11_c00413{left:225.279720pt;}
.x3_c00413{left:239.039067pt;}
.x21_c00413{left:243.518533pt;}
.x36_c00413{left:248.318787pt;}
.x22_c00413{left:255.039587pt;}
.x37_c00413{left:264.000000pt;}
.x2e_c00413{left:275.838933pt;}
.x16_c00413{left:291.518533pt;}
.x2a_c00413{left:304.960000pt;}
.x17_c00413{left:310.398920pt;}
.x4_c00413{left:318.399867pt;}
.x18_c00413{left:326.078680pt;}
.x5_c00413{left:339.518533pt;}
.x2b_c00413{left:347.519453pt;}
.x25_c00413{left:351.358933pt;}
.x9_c00413{left:359.679200pt;}
.x6_c00413{left:363.518520pt;}
.x26_c00413{left:365.759720pt;}
.xa_c00413{left:380.799320pt;}
.x2f_c00413{left:400.960000pt;}
.xe_c00413{left:408.638667pt;}
.x3b_c00413{left:411.199173pt;}
.x30_c00413{left:414.399867pt;}
.x2c_c00413{left:418.558507pt;}
.x19_c00413{left:419.519453pt;}
.x3c_c00413{left:424.319867pt;}
.x23_c00413{left:428.479987pt;}
.xf_c00413{left:430.719720pt;}
.x38_c00413{left:436.158693pt;}
.x1a_c00413{left:438.079067pt;}
.x2d_c00413{left:439.999467pt;}
.x24_c00413{left:449.919480pt;}
.x1b_c00413{left:458.239707pt;}
.x39_c00413{left:480.959467pt;}
.x27_c00413{left:515.838907pt;}
.x1c_c00413{left:534.399867pt;}
.x33_c00413{left:562.558507pt;}
.x28_c00413{left:581.438920pt;}
.x31_c00413{left:591.039587pt;}
.xb_c00413{left:595.839840pt;}
.x1f_c00413{left:600.319333pt;}
.x34_c00413{left:606.079067pt;}
.x12_c00413{left:609.919840pt;}
.x20_c00413{left:616.639200pt;}
.xc_c00413{left:621.118693pt;}
.x13_c00413{left:631.359333pt;}
.x1d_c00413{left:637.759320pt;}
.x29_c00413{left:665.919440pt;}
.x32_c00413{left:681.919840pt;}
.x35_c00413{left:696.319333pt;}
.x3a_c00413{left:697.278813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac8312cc09839bda406f0a65.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_d8237fec3193b1021d8040d4.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_5bc7ab4996ece7cafdc8e0e5.woff2')format("woff");}.ff3_c00414{font-family:ff3_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:ff4_c00414;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_2f308a7042db005e8e03c749.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_f45adbf5a47e8f8b0024a1b9.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00414;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.364746;font-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_c00414{transform:matrix(0.154661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154661,0.000000,0.000000,0.250000,0,0);}
.m1a_c00414{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m6_c00414{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m1d_c00414{transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196121,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1b_c00414{transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209524,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m1c_c00414{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m15_c00414{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m1f_c00414{transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);}
.m8_c00414{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m21_c00414{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m18_c00414{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{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_c00414{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.340517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340517,0.000000,0.000000,0.250000,0,0);}
.m16_c00414{transform:matrix(0.362745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362745,0.000000,0.000000,0.250000,0,0);}
.me_c00414{transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378571,0.000000,0.000000,0.250000,0,0);}
.m17_c00414{transform:matrix(0.385135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385135,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.398305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398305,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{transform:matrix(0.456140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456140,0.000000,0.000000,0.250000,0,0);}
.mb_c00414{transform:matrix(0.493243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493243,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls2a_c00414{letter-spacing:-12.803018px;}
.ls13_c00414{letter-spacing:-12.382500px;}
.ls2c_c00414{letter-spacing:-8.914500px;}
.ls1a_c00414{letter-spacing:-8.175038px;}
.ls19_c00414{letter-spacing:-7.426125px;}
.ls2e_c00414{letter-spacing:-7.274700px;}
.ls7_c00414{letter-spacing:-6.685875px;}
.lsd_c00414{letter-spacing:-5.945625px;}
.ls11_c00414{letter-spacing:-5.196713px;}
.ls15_c00414{letter-spacing:-4.456463px;}
.ls30_c00414{letter-spacing:-4.453800px;}
.ls2f_c00414{letter-spacing:-4.247978px;}
.lsb_c00414{letter-spacing:-3.717000px;}
.ls1d_c00414{letter-spacing:-3.296183px;}
.ls18_c00414{letter-spacing:-3.057525px;}
.lsa_c00414{letter-spacing:-2.968875px;}
.ls17_c00414{letter-spacing:-2.294348px;}
.ls14_c00414{letter-spacing:-2.277075px;}
.ls9_c00414{letter-spacing:-2.229413px;}
.ls16_c00414{letter-spacing:-2.210100px;}
.ls1f_c00414{letter-spacing:-1.981875px;}
.ls12_c00414{letter-spacing:-1.513200px;}
.ls8_c00414{letter-spacing:-1.489163px;}
.ls1c_c00414{letter-spacing:-1.140803px;}
.lse_c00414{letter-spacing:-0.740250px;}
.lsf_c00414{letter-spacing:0.000000px;}
.ls24_c00414{letter-spacing:1.100550px;}
.ls23_c00414{letter-spacing:1.239750px;}
.ls20_c00414{letter-spacing:1.719900px;}
.ls2d_c00414{letter-spacing:1.914000px;}
.ls25_c00414{letter-spacing:2.513700px;}
.ls2b_c00414{letter-spacing:2.685375px;}
.ls10_c00414{letter-spacing:2.768625px;}
.ls26_c00414{letter-spacing:3.102075px;}
.lsc_c00414{letter-spacing:3.692303px;}
.ls22_c00414{letter-spacing:5.317358px;}
.ls21_c00414{letter-spacing:6.309225px;}
.ls3_c00414{letter-spacing:6.765795px;}
.ls1b_c00414{letter-spacing:7.441650px;}
.ls28_c00414{letter-spacing:7.635180px;}
.ls29_c00414{letter-spacing:8.175038px;}
.ls1_c00414{letter-spacing:8.794050px;}
.ls6_c00414{letter-spacing:9.470595px;}
.ls2_c00414{letter-spacing:10.146450px;}
.ls0_c00414{letter-spacing:10.822995px;}
.ls4_c00414{letter-spacing:12.175395px;}
.ls27_c00414{letter-spacing:14.605102px;}
.ls5_c00414{letter-spacing:15.559500px;}
.ls1e_c00414{letter-spacing:25.479450px;}
.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;}
._15_c00414{margin-left:-25.568180px;}
._14_c00414{margin-left:-20.784823px;}
._13_c00414{margin-left:-16.966834px;}
._11_c00414{margin-left:-13.869156px;}
._5_c00414{margin-left:-9.314000px;}
._1d_c00414{margin-left:-8.219984px;}
._8_c00414{margin-left:-7.100694px;}
._1b_c00414{margin-left:-5.927423px;}
._4_c00414{margin-left:-4.611882px;}
._d_c00414{margin-left:-3.261691px;}
._1_c00414{margin-left:-2.187096px;}
._3_c00414{margin-left:-1.039084px;}
._12_c00414{width:1.059296px;}
._2_c00414{width:2.116399px;}
._10_c00414{width:3.345879px;}
._7_c00414{width:4.403626px;}
._17_c00414{width:5.419322px;}
._a_c00414{width:6.483354px;}
._6_c00414{width:8.016483px;}
._9_c00414{width:9.116174px;}
._0_c00414{width:11.300744px;}
._e_c00414{width:12.425487px;}
._1c_c00414{width:13.534049px;}
._b_c00414{width:15.151337px;}
._20_c00414{width:16.432118px;}
._f_c00414{width:17.671857px;}
._c_c00414{width:19.009462px;}
._1e_c00414{width:20.052053px;}
._18_c00414{width:21.908666px;}
._1f_c00414{width:22.928027px;}
._16_c00414{width:24.270919px;}
._1a_c00414{width:25.898343px;}
._19_c00414{width:27.232166px;}
._21_c00414{width:293.874154px;}
.fc0_c00414{color:transparent;}
.fsd_c00414{font-size:26.250000px;}
.fsa_c00414{font-size:27.750000px;}
.fs11_c00414{font-size:28.500000px;}
.fsf_c00414{font-size:29.250000px;}
.fsc_c00414{font-size:30.750000px;}
.fse_c00414{font-size:31.500000px;}
.fs9_c00414{font-size:34.500000px;}
.fs13_c00414{font-size:38.250000px;}
.fs14_c00414{font-size:42.000000px;}
.fs10_c00414{font-size:42.750000px;}
.fs12_c00414{font-size:43.500000px;}
.fsb_c00414{font-size:44.250000px;}
.fs6_c00414{font-size:57.750000px;}
.fs5_c00414{font-size:72.000000px;}
.fs3_c00414{font-size:72.750000px;}
.fs4_c00414{font-size:75.000000px;}
.fs19_c00414{font-size:77.250000px;}
.fs8_c00414{font-size:78.000000px;}
.fs0_c00414{font-size:78.750000px;}
.fs7_c00414{font-size:79.500000px;}
.fs1_c00414{font-size:80.250000px;}
.fs2_c00414{font-size:82.500000px;}
.fs15_c00414{font-size:83.250000px;}
.fs16_c00414{font-size:87.000000px;}
.fs18_c00414{font-size:87.750000px;}
.fs17_c00414{font-size:88.500000px;}
.y0_c00414{bottom:0.000000px;}
.y30_c00414{bottom:151.739955px;}
.y2f_c00414{bottom:180.719970px;}
.y2e_c00414{bottom:210.599700px;}
.y2d_c00414{bottom:210.601875px;}
.y2c_c00414{bottom:240.121395px;}
.y2b_c00414{bottom:270.001125px;}
.y2a_c00414{bottom:329.400375px;}
.y29_c00414{bottom:359.280105px;}
.y28_c00414{bottom:389.159820px;}
.y27_c00414{bottom:418.318770px;}
.y26_c00414{bottom:418.318800px;}
.y24_c00414{bottom:447.840090px;}
.y25_c00414{bottom:447.840135px;}
.y22_c00414{bottom:478.079910px;}
.y23_c00414{bottom:478.080000px;}
.y20_c00414{bottom:508.319070px;}
.y21_c00414{bottom:508.319820px;}
.y1e_c00414{bottom:538.198200px;}
.y1f_c00414{bottom:538.198785px;}
.y1d_c00414{bottom:568.438110px;}
.y1c_c00414{bottom:627.118785px;}
.y1b_c00414{bottom:627.118815px;}
.y19_c00414{bottom:656.640060px;}
.y1a_c00414{bottom:656.640150px;}
.y18_c00414{bottom:686.879970px;}
.y17_c00414{bottom:716.399820px;}
.y16_c00414{bottom:716.400645px;}
.y13_c00414{bottom:745.019670px;}
.y14_c00414{bottom:746.099070px;}
.yf_c00414{bottom:746.278800px;}
.y10_c00414{bottom:746.459970px;}
.y11_c00414{bottom:746.639700px;}
.y12_c00414{bottom:746.819235px;}
.y15_c00414{bottom:746.998950px;}
.ye_c00414{bottom:752.039985px;}
.yd_c00414{bottom:776.159310px;}
.yc_c00414{bottom:806.399235px;}
.yb_c00414{bottom:806.399490px;}
.ya_c00414{bottom:835.919010px;}
.y9_c00414{bottom:866.158935px;}
.y8_c00414{bottom:895.320075px;}
.y7_c00414{bottom:925.199805px;}
.y6_c00414{bottom:984.239220px;}
.y5_c00414{bottom:1044.359805px;}
.y4_c00414{bottom:1074.958920px;}
.y3_c00414{bottom:1103.760135px;}
.y2_c00414{bottom:1103.760960px;}
.y1_c00414{bottom:1134.359250px;}
.h17_c00414{height:25.762939px;}
.h16_c00414{height:27.235107px;}
.hf_c00414{height:27.377930px;}
.h13_c00414{height:27.971191px;}
.h11_c00414{height:28.707275px;}
.hc_c00414{height:28.942383px;}
.he_c00414{height:30.179443px;}
.h10_c00414{height:30.915527px;}
.hb_c00414{height:35.982422px;}
.h15_c00414{height:37.540283px;}
.h18_c00414{height:41.220703px;}
.h12_c00414{height:41.956787px;}
.h14_c00414{height:42.692871px;}
.hd_c00414{height:43.428955px;}
.h7_c00414{height:60.231445px;}
.h6_c00414{height:72.562500px;}
.h4_c00414{height:73.318359px;}
.h5_c00414{height:75.585938px;}
.ha_c00414{height:76.552734px;}
.h1_c00414{height:77.288818px;}
.h1d_c00414{height:77.853516px;}
.h8_c00414{height:78.024902px;}
.h1e_c00414{height:78.609375px;}
.h2_c00414{height:78.721802px;}
.h9_c00414{height:80.876953px;}
.h3_c00414{height:80.969238px;}
.h19_c00414{height:82.274414px;}
.h1a_c00414{height:85.385742px;}
.h1c_c00414{height:86.121826px;}
.h1b_c00414{height:87.462891px;}
.h0_c00414{height:1263.000000px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x25_c00414{left:154.077555px;}
.x1_c00414{left:155.159415px;}
.x12_c00414{left:176.759100px;}
.x21_c00414{left:179.998950px;}
.xd_c00414{left:181.439250px;}
.x29_c00414{left:200.519100px;}
.x27_c00414{left:221.398635px;}
.x28_c00414{left:235.080000px;}
.x7_c00414{left:237.958950px;}
.x13_c00414{left:248.759535px;}
.x31_c00414{left:262.439250px;}
.x14_c00414{left:263.879535px;}
.x8_c00414{left:271.079385px;}
.x32_c00414{left:276.838950px;}
.x15_c00414{left:316.080000px;}
.x22_c00414{left:325.799535px;}
.x16_c00414{left:334.798950px;}
.x9_c00414{left:342.359850px;}
.x23_c00414{left:356.039385px;}
.x2a_c00414{left:367.199385px;}
.x2b_c00414{left:388.439715px;}
.x17_c00414{left:390.598530px;}
.x4_c00414{left:401.039985px;}
.x18_c00414{left:402.839535px;}
.x5_c00414{left:414.719565px;}
.x24_c00414{left:419.038920px;}
.xa_c00414{left:421.919535px;}
.x19_c00414{left:428.039985px;}
.xb_c00414{left:438.118785px;}
.x6_c00414{left:475.919535px;}
.x26_c00414{left:478.798515px;}
.x10_c00414{left:493.918350px;}
.x11_c00414{left:545.398635px;}
.xe_c00414{left:580.679670px;}
.x1a_c00414{left:587.159370px;}
.xf_c00414{left:595.079400px;}
.x2e_c00414{left:619.559685px;}
.x1b_c00414{left:624.239820px;}
.x2f_c00414{left:637.558635px;}
.x1e_c00414{left:641.518620px;}
.x1c_c00414{left:648.359250px;}
.x1f_c00414{left:657.358605px;}
.x2_c00414{left:664.199385px;}
.x2c_c00414{left:684.358605px;}
.x2d_c00414{left:699.119385px;}
.x1d_c00414{left:718.558635px;}
.x3_c00414{left:729.359250px;}
.x30_c00414{left:770.399865px;}
.x20_c00414{left:780.839535px;}
.xc_c00414{left:804.958920px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2a_c00414{letter-spacing:-11.380460pt;}
.ls13_c00414{letter-spacing:-11.006667pt;}
.ls2c_c00414{letter-spacing:-7.924000pt;}
.ls1a_c00414{letter-spacing:-7.266700pt;}
.ls19_c00414{letter-spacing:-6.601000pt;}
.ls2e_c00414{letter-spacing:-6.466400pt;}
.ls7_c00414{letter-spacing:-5.943000pt;}
.lsd_c00414{letter-spacing:-5.285000pt;}
.ls11_c00414{letter-spacing:-4.619300pt;}
.ls15_c00414{letter-spacing:-3.961300pt;}
.ls30_c00414{letter-spacing:-3.958933pt;}
.ls2f_c00414{letter-spacing:-3.775980pt;}
.lsb_c00414{letter-spacing:-3.304000pt;}
.ls1d_c00414{letter-spacing:-2.929940pt;}
.ls18_c00414{letter-spacing:-2.717800pt;}
.lsa_c00414{letter-spacing:-2.639000pt;}
.ls17_c00414{letter-spacing:-2.039420pt;}
.ls14_c00414{letter-spacing:-2.024067pt;}
.ls9_c00414{letter-spacing:-1.981700pt;}
.ls16_c00414{letter-spacing:-1.964533pt;}
.ls1f_c00414{letter-spacing:-1.761667pt;}
.ls12_c00414{letter-spacing:-1.345067pt;}
.ls8_c00414{letter-spacing:-1.323700pt;}
.ls1c_c00414{letter-spacing:-1.014047pt;}
.lse_c00414{letter-spacing:-0.658000pt;}
.lsf_c00414{letter-spacing:0.000000pt;}
.ls24_c00414{letter-spacing:0.978267pt;}
.ls23_c00414{letter-spacing:1.102000pt;}
.ls20_c00414{letter-spacing:1.528800pt;}
.ls2d_c00414{letter-spacing:1.701333pt;}
.ls25_c00414{letter-spacing:2.234400pt;}
.ls2b_c00414{letter-spacing:2.387000pt;}
.ls10_c00414{letter-spacing:2.461000pt;}
.ls26_c00414{letter-spacing:2.757400pt;}
.lsc_c00414{letter-spacing:3.282047pt;}
.ls22_c00414{letter-spacing:4.726540pt;}
.ls21_c00414{letter-spacing:5.608200pt;}
.ls3_c00414{letter-spacing:6.014040pt;}
.ls1b_c00414{letter-spacing:6.614800pt;}
.ls28_c00414{letter-spacing:6.786827pt;}
.ls29_c00414{letter-spacing:7.266700pt;}
.ls1_c00414{letter-spacing:7.816933pt;}
.ls6_c00414{letter-spacing:8.418307pt;}
.ls2_c00414{letter-spacing:9.019067pt;}
.ls0_c00414{letter-spacing:9.620440pt;}
.ls4_c00414{letter-spacing:10.822573pt;}
.ls27_c00414{letter-spacing:12.982313pt;}
.ls5_c00414{letter-spacing:13.830667pt;}
.ls1e_c00414{letter-spacing:22.648400pt;}
.ws0_c00414{word-spacing:0.000000pt;}
._15_c00414{margin-left:-22.727271pt;}
._14_c00414{margin-left:-18.475398pt;}
._13_c00414{margin-left:-15.081631pt;}
._11_c00414{margin-left:-12.328138pt;}
._5_c00414{margin-left:-8.279111pt;}
._1d_c00414{margin-left:-7.306653pt;}
._8_c00414{margin-left:-6.311728pt;}
._1b_c00414{margin-left:-5.268821pt;}
._4_c00414{margin-left:-4.099451pt;}
._d_c00414{margin-left:-2.899281pt;}
._1_c00414{margin-left:-1.944085pt;}
._3_c00414{margin-left:-0.923630pt;}
._12_c00414{width:0.941596pt;}
._2_c00414{width:1.881243pt;}
._10_c00414{width:2.974115pt;}
._7_c00414{width:3.914334pt;}
._17_c00414{width:4.817175pt;}
._a_c00414{width:5.762981pt;}
._6_c00414{width:7.125762pt;}
._9_c00414{width:8.103266pt;}
._0_c00414{width:10.045106pt;}
._e_c00414{width:11.044877pt;}
._1c_c00414{width:12.030266pt;}
._b_c00414{width:13.467855pt;}
._20_c00414{width:14.606327pt;}
._f_c00414{width:15.708317pt;}
._c_c00414{width:16.897300pt;}
._1e_c00414{width:17.824047pt;}
._18_c00414{width:19.474370pt;}
._1f_c00414{width:20.380469pt;}
._16_c00414{width:21.574150pt;}
._1a_c00414{width:23.020750pt;}
._19_c00414{width:24.206370pt;}
._21_c00414{width:261.221470pt;}
.fsd_c00414{font-size:23.333333pt;}
.fsa_c00414{font-size:24.666667pt;}
.fs11_c00414{font-size:25.333333pt;}
.fsf_c00414{font-size:26.000000pt;}
.fsc_c00414{font-size:27.333333pt;}
.fse_c00414{font-size:28.000000pt;}
.fs9_c00414{font-size:30.666667pt;}
.fs13_c00414{font-size:34.000000pt;}
.fs14_c00414{font-size:37.333333pt;}
.fs10_c00414{font-size:38.000000pt;}
.fs12_c00414{font-size:38.666667pt;}
.fsb_c00414{font-size:39.333333pt;}
.fs6_c00414{font-size:51.333333pt;}
.fs5_c00414{font-size:64.000000pt;}
.fs3_c00414{font-size:64.666667pt;}
.fs4_c00414{font-size:66.666667pt;}
.fs19_c00414{font-size:68.666667pt;}
.fs8_c00414{font-size:69.333333pt;}
.fs0_c00414{font-size:70.000000pt;}
.fs7_c00414{font-size:70.666667pt;}
.fs1_c00414{font-size:71.333333pt;}
.fs2_c00414{font-size:73.333333pt;}
.fs15_c00414{font-size:74.000000pt;}
.fs16_c00414{font-size:77.333333pt;}
.fs18_c00414{font-size:78.000000pt;}
.fs17_c00414{font-size:78.666667pt;}
.y0_c00414{bottom:0.000000pt;}
.y30_c00414{bottom:134.879960pt;}
.y2f_c00414{bottom:160.639973pt;}
.y2e_c00414{bottom:187.199733pt;}
.y2d_c00414{bottom:187.201667pt;}
.y2c_c00414{bottom:213.441240pt;}
.y2b_c00414{bottom:240.001000pt;}
.y2a_c00414{bottom:292.800333pt;}
.y29_c00414{bottom:319.360093pt;}
.y28_c00414{bottom:345.919840pt;}
.y27_c00414{bottom:371.838907pt;}
.y26_c00414{bottom:371.838933pt;}
.y24_c00414{bottom:398.080080pt;}
.y25_c00414{bottom:398.080120pt;}
.y22_c00414{bottom:424.959920pt;}
.y23_c00414{bottom:424.960000pt;}
.y20_c00414{bottom:451.839173pt;}
.y21_c00414{bottom:451.839840pt;}
.y1e_c00414{bottom:478.398400pt;}
.y1f_c00414{bottom:478.398920pt;}
.y1d_c00414{bottom:505.278320pt;}
.y1c_c00414{bottom:557.438920pt;}
.y1b_c00414{bottom:557.438947pt;}
.y19_c00414{bottom:583.680053pt;}
.y1a_c00414{bottom:583.680133pt;}
.y18_c00414{bottom:610.559973pt;}
.y17_c00414{bottom:636.799840pt;}
.y16_c00414{bottom:636.800573pt;}
.y13_c00414{bottom:662.239707pt;}
.y14_c00414{bottom:663.199173pt;}
.yf_c00414{bottom:663.358933pt;}
.y10_c00414{bottom:663.519973pt;}
.y11_c00414{bottom:663.679733pt;}
.y12_c00414{bottom:663.839320pt;}
.y15_c00414{bottom:663.999067pt;}
.ye_c00414{bottom:668.479987pt;}
.yd_c00414{bottom:689.919387pt;}
.yc_c00414{bottom:716.799320pt;}
.yb_c00414{bottom:716.799547pt;}
.ya_c00414{bottom:743.039120pt;}
.y9_c00414{bottom:769.919053pt;}
.y8_c00414{bottom:795.840067pt;}
.y7_c00414{bottom:822.399827pt;}
.y6_c00414{bottom:874.879307pt;}
.y5_c00414{bottom:928.319827pt;}
.y4_c00414{bottom:955.519040pt;}
.y3_c00414{bottom:981.120120pt;}
.y2_c00414{bottom:981.120853pt;}
.y1_c00414{bottom:1008.319333pt;}
.h17_c00414{height:22.900391pt;}
.h16_c00414{height:24.208984pt;}
.hf_c00414{height:24.335938pt;}
.h13_c00414{height:24.863281pt;}
.h11_c00414{height:25.517578pt;}
.hc_c00414{height:25.726562pt;}
.he_c00414{height:26.826172pt;}
.h10_c00414{height:27.480469pt;}
.hb_c00414{height:31.984375pt;}
.h15_c00414{height:33.369141pt;}
.h18_c00414{height:36.640625pt;}
.h12_c00414{height:37.294922pt;}
.h14_c00414{height:37.949219pt;}
.hd_c00414{height:38.603516pt;}
.h7_c00414{height:53.539062pt;}
.h6_c00414{height:64.500000pt;}
.h4_c00414{height:65.171875pt;}
.h5_c00414{height:67.187500pt;}
.ha_c00414{height:68.046875pt;}
.h1_c00414{height:68.701172pt;}
.h1d_c00414{height:69.203125pt;}
.h8_c00414{height:69.355469pt;}
.h1e_c00414{height:69.875000pt;}
.h2_c00414{height:69.974935pt;}
.h9_c00414{height:71.890625pt;}
.h3_c00414{height:71.972656pt;}
.h19_c00414{height:73.132813pt;}
.h1a_c00414{height:75.898438pt;}
.h1c_c00414{height:76.552734pt;}
.h1b_c00414{height:77.744792pt;}
.h0_c00414{height:1122.666667pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x25_c00414{left:136.957827pt;}
.x1_c00414{left:137.919480pt;}
.x12_c00414{left:157.119200pt;}
.x21_c00414{left:159.999067pt;}
.xd_c00414{left:161.279333pt;}
.x29_c00414{left:178.239200pt;}
.x27_c00414{left:196.798787pt;}
.x28_c00414{left:208.960000pt;}
.x7_c00414{left:211.519067pt;}
.x13_c00414{left:221.119587pt;}
.x31_c00414{left:233.279333pt;}
.x14_c00414{left:234.559587pt;}
.x8_c00414{left:240.959453pt;}
.x32_c00414{left:246.079067pt;}
.x15_c00414{left:280.960000pt;}
.x22_c00414{left:289.599587pt;}
.x16_c00414{left:297.599067pt;}
.x9_c00414{left:304.319867pt;}
.x23_c00414{left:316.479453pt;}
.x2a_c00414{left:326.399453pt;}
.x2b_c00414{left:345.279747pt;}
.x17_c00414{left:347.198693pt;}
.x4_c00414{left:356.479987pt;}
.x18_c00414{left:358.079587pt;}
.x5_c00414{left:368.639613pt;}
.x24_c00414{left:372.479040pt;}
.xa_c00414{left:375.039587pt;}
.x19_c00414{left:380.479987pt;}
.xb_c00414{left:389.438920pt;}
.x6_c00414{left:423.039587pt;}
.x26_c00414{left:425.598680pt;}
.x10_c00414{left:439.038533pt;}
.x11_c00414{left:484.798787pt;}
.xe_c00414{left:516.159707pt;}
.x1a_c00414{left:521.919440pt;}
.xf_c00414{left:528.959467pt;}
.x2e_c00414{left:550.719720pt;}
.x1b_c00414{left:554.879840pt;}
.x2f_c00414{left:566.718787pt;}
.x1e_c00414{left:570.238773pt;}
.x1c_c00414{left:576.319333pt;}
.x1f_c00414{left:584.318760pt;}
.x2_c00414{left:590.399453pt;}
.x2c_c00414{left:608.318760pt;}
.x2d_c00414{left:621.439453pt;}
.x1d_c00414{left:638.718787pt;}
.x3_c00414{left:648.319333pt;}
.x30_c00414{left:684.799880pt;}
.x20_c00414{left:694.079587pt;}
.xc_c00414{left:715.519040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63197c6aa8e5451d5ade3468.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00415{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m0_c00415{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271028,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.323113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323113,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls7_c00415{letter-spacing:-22.633650px;}
.ls9_c00415{letter-spacing:-6.917550px;}
.ls3_c00415{letter-spacing:-6.000300px;}
.ls1_c00415{letter-spacing:-5.945625px;}
.ls4_c00415{letter-spacing:-5.196713px;}
.lsb_c00415{letter-spacing:-4.456463px;}
.ls6_c00415{letter-spacing:-3.717000px;}
.ls2_c00415{letter-spacing:-2.968875px;}
.ls0_c00415{letter-spacing:-2.229413px;}
.ls8_c00415{letter-spacing:-1.489163px;}
.ls5_c00415{letter-spacing:-0.740250px;}
.lsa_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;}
._10_c00415{margin-left:-9.900613px;}
._f_c00415{margin-left:-7.240364px;}
._4_c00415{margin-left:-6.184446px;}
._11_c00415{margin-left:-4.599996px;}
._e_c00415{margin-left:-2.164392px;}
._14_c00415{margin-left:-1.099083px;}
._0_c00415{width:1.103644px;}
._d_c00415{width:2.711779px;}
._3_c00415{width:4.644229px;}
._13_c00415{width:6.464751px;}
._1_c00415{width:7.527178px;}
._2_c00415{width:9.395410px;}
._5_c00415{width:11.020542px;}
._12_c00415{width:12.339650px;}
._a_c00415{width:13.529339px;}
._8_c00415{width:14.685181px;}
._b_c00415{width:15.701234px;}
._7_c00415{width:17.353588px;}
._9_c00415{width:18.623989px;}
._6_c00415{width:20.399103px;}
._c_c00415{width:24.314791px;}
._16_c00415{width:25.719750px;}
._15_c00415{width:27.168705px;}
.fc0_c00415{color:transparent;}
.fs0_c00415{font-size:78.750000px;}
.fs2_c00415{font-size:79.500000px;}
.fs3_c00415{font-size:80.250000px;}
.fs4_c00415{font-size:82.500000px;}
.fs1_c00415{font-size:84.750000px;}
.y0_c00415{bottom:0.000000px;}
.yb_c00415{bottom:870.479835px;}
.ya_c00415{bottom:899.999355px;}
.y9_c00415{bottom:900.000135px;}
.y8_c00415{bottom:929.519670px;}
.y7_c00415{bottom:960.120075px;}
.y6_c00415{bottom:989.999790px;}
.y5_c00415{bottom:1019.879520px;}
.y4_c00415{bottom:1079.279160px;}
.y2_c00415{bottom:1108.439460px;}
.y3_c00415{bottom:1108.440315px;}
.y1_c00415{bottom:1138.319190px;}
.h1_c00415{height:77.288818px;}
.h3_c00415{height:78.024902px;}
.h4_c00415{height:78.760986px;}
.h5_c00415{height:80.969238px;}
.h2_c00415{height:83.177490px;}
.h0_c00415{height:1263.000000px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:155.879565px;}
.x6_c00415{left:185.758500px;}
.x4_c00415{left:408.599070px;}
.x7_c00415{left:417.239220px;}
.x5_c00415{left:436.319235px;}
.x2_c00415{left:488.878920px;}
.x3_c00415{left:508.679070px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls7_c00415{letter-spacing:-20.118800pt;}
.ls9_c00415{letter-spacing:-6.148933pt;}
.ls3_c00415{letter-spacing:-5.333600pt;}
.ls1_c00415{letter-spacing:-5.285000pt;}
.ls4_c00415{letter-spacing:-4.619300pt;}
.lsb_c00415{letter-spacing:-3.961300pt;}
.ls6_c00415{letter-spacing:-3.304000pt;}
.ls2_c00415{letter-spacing:-2.639000pt;}
.ls0_c00415{letter-spacing:-1.981700pt;}
.ls8_c00415{letter-spacing:-1.323700pt;}
.ls5_c00415{letter-spacing:-0.658000pt;}
.lsa_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
._10_c00415{margin-left:-8.800545pt;}
._f_c00415{margin-left:-6.435879pt;}
._4_c00415{margin-left:-5.497285pt;}
._11_c00415{margin-left:-4.088885pt;}
._e_c00415{margin-left:-1.923904pt;}
._14_c00415{margin-left:-0.976962pt;}
._0_c00415{width:0.981017pt;}
._d_c00415{width:2.410470pt;}
._3_c00415{width:4.128204pt;}
._13_c00415{width:5.746445pt;}
._1_c00415{width:6.690825pt;}
._2_c00415{width:8.351475pt;}
._5_c00415{width:9.796038pt;}
._12_c00415{width:10.968577pt;}
._a_c00415{width:12.026079pt;}
._8_c00415{width:13.053494pt;}
._b_c00415{width:13.956653pt;}
._7_c00415{width:15.425411pt;}
._9_c00415{width:16.554657pt;}
._6_c00415{width:18.132536pt;}
._c_c00415{width:21.613147pt;}
._16_c00415{width:22.862000pt;}
._15_c00415{width:24.149960pt;}
.fs0_c00415{font-size:70.000000pt;}
.fs2_c00415{font-size:70.666667pt;}
.fs3_c00415{font-size:71.333333pt;}
.fs4_c00415{font-size:73.333333pt;}
.fs1_c00415{font-size:75.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.yb_c00415{bottom:773.759853pt;}
.ya_c00415{bottom:799.999427pt;}
.y9_c00415{bottom:800.000120pt;}
.y8_c00415{bottom:826.239707pt;}
.y7_c00415{bottom:853.440067pt;}
.y6_c00415{bottom:879.999813pt;}
.y5_c00415{bottom:906.559573pt;}
.y4_c00415{bottom:959.359253pt;}
.y2_c00415{bottom:985.279520pt;}
.y3_c00415{bottom:985.280280pt;}
.y1_c00415{bottom:1011.839280pt;}
.h1_c00415{height:68.701172pt;}
.h3_c00415{height:69.355469pt;}
.h4_c00415{height:70.009766pt;}
.h5_c00415{height:71.972656pt;}
.h2_c00415{height:73.935547pt;}
.h0_c00415{height:1122.666667pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:138.559613pt;}
.x6_c00415{left:165.118667pt;}
.x4_c00415{left:363.199173pt;}
.x7_c00415{left:370.879307pt;}
.x5_c00415{left:387.839320pt;}
.x2_c00415{left:434.559040pt;}
.x3_c00415{left:452.159173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b29315461092963ff6bbf9af.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_ba399508b8f9aabe4ba20cbf.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_9f0cd9c25e84ec54a3cb36df.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc_c00416{transform:matrix(0.200382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200382,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{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_c00416{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls14_c00416{letter-spacing:-13.966800px;}
.lsd_c00416{letter-spacing:-3.717000px;}
.lsa_c00416{letter-spacing:-3.678413px;}
.ls9_c00416{letter-spacing:-3.149213px;}
.ls3_c00416{letter-spacing:-3.055500px;}
.ls7_c00416{letter-spacing:-2.968875px;}
.lsc_c00416{letter-spacing:-2.465048px;}
.ls5_c00416{letter-spacing:-2.293553px;}
.ls13_c00416{letter-spacing:-2.236800px;}
.ls12_c00416{letter-spacing:-2.232450px;}
.lse_c00416{letter-spacing:-2.229413px;}
.ls4_c00416{letter-spacing:-1.645425px;}
.ls11_c00416{letter-spacing:-1.564688px;}
.lsf_c00416{letter-spacing:-1.556048px;}
.lsb_c00416{letter-spacing:-1.489163px;}
.ls15_c00416{letter-spacing:-0.818850px;}
.ls10_c00416{letter-spacing:-0.778125px;}
.ls2_c00416{letter-spacing:0.000000px;}
.ls16_c00416{letter-spacing:0.818850px;}
.ls8_c00416{letter-spacing:1.377000px;}
.ls1_c00416{letter-spacing:1.645425px;}
.ls6_c00416{letter-spacing:4.028100px;}
.ls0_c00416{letter-spacing:5.754353px;}
.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;}
._d_c00416{width:2.445009px;}
._2_c00416{width:4.721701px;}
._3_c00416{width:7.522735px;}
._1_c00416{width:9.287953px;}
._4_c00416{width:10.356190px;}
._0_c00416{width:12.158821px;}
._a_c00416{width:15.656187px;}
._7_c00416{width:19.405750px;}
._b_c00416{width:21.562500px;}
._c_c00416{width:23.999187px;}
._5_c00416{width:25.312875px;}
._8_c00416{width:30.937500px;}
._6_c00416{width:32.643313px;}
._9_c00416{width:34.688625px;}
.fc0_c00416{color:transparent;}
.fs3_c00416{font-size:67.500000px;}
.fs0_c00416{font-size:77.250000px;}
.fs1_c00416{font-size:78.750000px;}
.fs4_c00416{font-size:80.250000px;}
.fs5_c00416{font-size:82.500000px;}
.fs2_c00416{font-size:87.000000px;}
.fs8_c00416{font-size:92.250000px;}
.fs6_c00416{font-size:93.750000px;}
.fs9_c00416{font-size:96.000000px;}
.fs7_c00416{font-size:98.250000px;}
.y0_c00416{bottom:0.000000px;}
.y9_c00416{bottom:287.280435px;}
.y8_c00416{bottom:673.559685px;}
.y7_c00416{bottom:765.719520px;}
.y6_c00416{bottom:765.720150px;}
.y5_c00416{bottom:800.639655px;}
.y4_c00416{bottom:835.918950px;}
.y3_c00416{bottom:1047.240420px;}
.y2_c00416{bottom:1077.119385px;}
.y1_c00416{bottom:1136.160465px;}
.h5_c00416{height:66.247559px;}
.h4_c00416{height:77.288818px;}
.h1_c00416{height:77.853516px;}
.h8_c00416{height:78.760986px;}
.h2_c00416{height:79.365234px;}
.h6_c00416{height:80.876953px;}
.h7_c00416{height:80.969238px;}
.h3_c00416{height:85.980469px;}
.hb_c00416{height:90.538330px;}
.h9_c00416{height:92.010498px;}
.hc_c00416{height:94.218750px;}
.ha_c00416{height:96.427002px;}
.h0_c00416{height:1263.000000px;}
.w0_c00416{width:892.500000px;}
.x0_c00416{left:0.000000px;}
.x15_c00416{left:157.319850px;}
.xb_c00416{left:159.839565px;}
.x1_c00416{left:160.918950px;}
.x7_c00416{left:229.679700px;}
.x11_c00416{left:235.798515px;}
.x8_c00416{left:253.439685px;}
.x2_c00416{left:291.599700px;}
.x12_c00416{left:304.918350px;}
.x3_c00416{left:322.918950px;}
.x9_c00416{left:331.918350px;}
.xc_c00416{left:338.038950px;}
.xa_c00416{left:345.599700px;}
.x16_c00416{left:387.719565px;}
.xd_c00416{left:396.359850px;}
.xe_c00416{left:411.479685px;}
.x17_c00416{left:413.638500px;}
.x13_c00416{left:429.839535px;}
.x4_c00416{left:442.798920px;}
.x5_c00416{left:474.119985px;}
.x14_c00416{left:479.159415px;}
.x6_c00416{left:531.719100px;}
.xf_c00416{left:582.479235px;}
.x10_c00416{left:813.958380px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls14_c00416{letter-spacing:-12.414933pt;}
.lsd_c00416{letter-spacing:-3.304000pt;}
.lsa_c00416{letter-spacing:-3.269700pt;}
.ls9_c00416{letter-spacing:-2.799300pt;}
.ls3_c00416{letter-spacing:-2.716000pt;}
.ls7_c00416{letter-spacing:-2.639000pt;}
.lsc_c00416{letter-spacing:-2.191153pt;}
.ls5_c00416{letter-spacing:-2.038713pt;}
.ls13_c00416{letter-spacing:-1.988267pt;}
.ls12_c00416{letter-spacing:-1.984400pt;}
.lse_c00416{letter-spacing:-1.981700pt;}
.ls4_c00416{letter-spacing:-1.462600pt;}
.ls11_c00416{letter-spacing:-1.390833pt;}
.lsf_c00416{letter-spacing:-1.383153pt;}
.lsb_c00416{letter-spacing:-1.323700pt;}
.ls15_c00416{letter-spacing:-0.727867pt;}
.ls10_c00416{letter-spacing:-0.691667pt;}
.ls2_c00416{letter-spacing:0.000000pt;}
.ls16_c00416{letter-spacing:0.727867pt;}
.ls8_c00416{letter-spacing:1.224000pt;}
.ls1_c00416{letter-spacing:1.462600pt;}
.ls6_c00416{letter-spacing:3.580533pt;}
.ls0_c00416{letter-spacing:5.114980pt;}
.ws0_c00416{word-spacing:0.000000pt;}
._d_c00416{width:2.173342pt;}
._2_c00416{width:4.197068pt;}
._3_c00416{width:6.686875pt;}
._1_c00416{width:8.255958pt;}
._4_c00416{width:9.205502pt;}
._0_c00416{width:10.807841pt;}
._a_c00416{width:13.916611pt;}
._7_c00416{width:17.249556pt;}
._b_c00416{width:19.166667pt;}
._c_c00416{width:21.332611pt;}
._5_c00416{width:22.500333pt;}
._8_c00416{width:27.500000pt;}
._6_c00416{width:29.016278pt;}
._9_c00416{width:30.834333pt;}
.fs3_c00416{font-size:60.000000pt;}
.fs0_c00416{font-size:68.666667pt;}
.fs1_c00416{font-size:70.000000pt;}
.fs4_c00416{font-size:71.333333pt;}
.fs5_c00416{font-size:73.333333pt;}
.fs2_c00416{font-size:77.333333pt;}
.fs8_c00416{font-size:82.000000pt;}
.fs6_c00416{font-size:83.333333pt;}
.fs9_c00416{font-size:85.333333pt;}
.fs7_c00416{font-size:87.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y9_c00416{bottom:255.360387pt;}
.y8_c00416{bottom:598.719720pt;}
.y7_c00416{bottom:680.639573pt;}
.y6_c00416{bottom:680.640133pt;}
.y5_c00416{bottom:711.679693pt;}
.y4_c00416{bottom:743.039067pt;}
.y3_c00416{bottom:930.880373pt;}
.y2_c00416{bottom:957.439453pt;}
.y1_c00416{bottom:1009.920413pt;}
.h5_c00416{height:58.886719pt;}
.h4_c00416{height:68.701172pt;}
.h1_c00416{height:69.203125pt;}
.h8_c00416{height:70.009766pt;}
.h2_c00416{height:70.546875pt;}
.h6_c00416{height:71.890625pt;}
.h7_c00416{height:71.972656pt;}
.h3_c00416{height:76.427083pt;}
.hb_c00416{height:80.478516pt;}
.h9_c00416{height:81.787109pt;}
.hc_c00416{height:83.750000pt;}
.ha_c00416{height:85.712891pt;}
.h0_c00416{height:1122.666667pt;}
.w0_c00416{width:793.333333pt;}
.x0_c00416{left:0.000000pt;}
.x15_c00416{left:139.839867pt;}
.xb_c00416{left:142.079613pt;}
.x1_c00416{left:143.039067pt;}
.x7_c00416{left:204.159733pt;}
.x11_c00416{left:209.598680pt;}
.x8_c00416{left:225.279720pt;}
.x2_c00416{left:259.199733pt;}
.x12_c00416{left:271.038533pt;}
.x3_c00416{left:287.039067pt;}
.x9_c00416{left:295.038533pt;}
.xc_c00416{left:300.479067pt;}
.xa_c00416{left:307.199733pt;}
.x16_c00416{left:344.639613pt;}
.xd_c00416{left:352.319867pt;}
.xe_c00416{left:365.759720pt;}
.x17_c00416{left:367.678667pt;}
.x13_c00416{left:382.079587pt;}
.x4_c00416{left:393.599040pt;}
.x5_c00416{left:421.439987pt;}
.x14_c00416{left:425.919480pt;}
.x6_c00416{left:472.639200pt;}
.xf_c00416{left:517.759320pt;}
.x10_c00416{left:723.518560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00417{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
}
.y0_c00417{bottom:0.000000px;}
.h0_c00417{height:1263.000000px;}
.w0_c00417{width:892.500000px;}
.x0_c00417{left:0.000000px;}
@media print{
.y0_c00417{bottom:0.000000pt;}
.h0_c00417{height:1122.666667pt;}
.w0_c00417{width:793.333333pt;}
.x0_c00417{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_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_26ef7126a2efa6378edc4d4d.woff2')format("woff");}.ff1_c00418{font-family:ff1_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:ff2_c00418;src:url('chunks/assets/font_0609d27fb5098118776e7eee.woff2')format("woff");}.ff2_c00418{font-family:ff2_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:ff3_c00418;src:url('chunks/assets/font_0571120f93d78a66dd05ad28.woff2')format("woff");}.ff3_c00418{font-family:ff3_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:ff4_c00418;src:url('chunks/assets/font_ce8ba0587df92b33c68a6689.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.364746;font-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_c00418{transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174528,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m3_c00418{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280952,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{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_c00418{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls16_c00418{letter-spacing:-14.043278px;}
.ls15_c00418{letter-spacing:-10.880123px;}
.ls14_c00418{letter-spacing:-7.802250px;}
.lsf_c00418{letter-spacing:-5.196713px;}
.ls13_c00418{letter-spacing:-4.456463px;}
.lsd_c00418{letter-spacing:-3.717000px;}
.ls12_c00418{letter-spacing:-3.680850px;}
.ls19_c00418{letter-spacing:-3.108000px;}
.ls9_c00418{letter-spacing:-2.968875px;}
.ls17_c00418{letter-spacing:-2.916375px;}
.lsa_c00418{letter-spacing:-2.229413px;}
.ls11_c00418{letter-spacing:-1.560450px;}
.lsc_c00418{letter-spacing:-1.489163px;}
.ls8_c00418{letter-spacing:-0.801698px;}
.lsb_c00418{letter-spacing:-0.780225px;}
.lse_c00418{letter-spacing:-0.740250px;}
.ls7_c00418{letter-spacing:0.000000px;}
.ls6_c00418{letter-spacing:0.780225px;}
.ls4_c00418{letter-spacing:1.560450px;}
.ls1a_c00418{letter-spacing:1.638000px;}
.ls18_c00418{letter-spacing:1.741275px;}
.ls2_c00418{letter-spacing:2.340675px;}
.ls1_c00418{letter-spacing:3.121673px;}
.ls3_c00418{letter-spacing:3.901898px;}
.ls10_c00418{letter-spacing:4.514805px;}
.ls5_c00418{letter-spacing:5.460803px;}
.ls1b_c00418{letter-spacing:8.582475px;}
.ls0_c00418{letter-spacing:12.840000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:0.000000px;}
._0_c00418{margin-left:-20.464264px;}
._f_c00418{margin-left:-16.956016px;}
._11_c00418{margin-left:-15.629212px;}
._e_c00418{margin-left:-9.978960px;}
._10_c00418{margin-left:-8.487770px;}
._d_c00418{margin-left:-5.309299px;}
._a_c00418{margin-left:-4.305189px;}
._b_c00418{margin-left:-3.043728px;}
._2_c00418{margin-left:-1.396543px;}
._4_c00418{width:1.263031px;}
._1_c00418{width:2.307990px;}
._3_c00418{width:3.850459px;}
._7_c00418{width:5.336403px;}
._6_c00418{width:6.616866px;}
._5_c00418{width:8.262970px;}
._9_c00418{width:10.487200px;}
._8_c00418{width:12.477551px;}
._c_c00418{width:18.285875px;}
.fc0_c00418{color:transparent;}
.fs8_c00418{font-size:67.500000px;}
.fs6_c00418{font-size:72.000000px;}
.fsa_c00418{font-size:75.750000px;}
.fsb_c00418{font-size:76.500000px;}
.fs3_c00418{font-size:77.250000px;}
.fs1_c00418{font-size:78.750000px;}
.fs4_c00418{font-size:79.500000px;}
.fs0_c00418{font-size:80.250000px;}
.fs5_c00418{font-size:81.750000px;}
.fs2_c00418{font-size:82.500000px;}
.fs9_c00418{font-size:84.000000px;}
.fs7_c00418{font-size:87.750000px;}
.fsc_c00418{font-size:90.000000px;}
.y0_c00418{bottom:0.000000px;}
.y30_c00418{bottom:203.399850px;}
.y2f_c00418{bottom:224.640150px;}
.y2e_c00418{bottom:245.160435px;}
.y2c_c00418{bottom:288.359250px;}
.y2d_c00418{bottom:288.359850px;}
.y2b_c00418{bottom:309.600150px;}
.y2a_c00418{bottom:352.442040px;}
.y29_c00418{bottom:374.041005px;}
.y28_c00418{bottom:394.921800px;}
.y27_c00418{bottom:415.800570px;}
.y26_c00418{bottom:437.041035px;}
.y25_c00418{bottom:437.041815px;}
.y24_c00418{bottom:459.000000px;}
.y23_c00418{bottom:479.879520px;}
.y22_c00418{bottom:501.119985px;}
.y21_c00418{bottom:501.120600px;}
.y20_c00418{bottom:522.719565px;}
.y1f_c00418{bottom:522.720240px;}
.y1e_c00418{bottom:543.959970px;}
.y1d_c00418{bottom:565.200435px;}
.y1c_c00418{bottom:586.440900px;}
.y1b_c00418{bottom:608.040570px;}
.y1a_c00418{bottom:608.041230px;}
.y19_c00418{bottom:628.920000px;}
.y18_c00418{bottom:649.799520px;}
.y17_c00418{bottom:649.799865px;}
.y16_c00418{bottom:671.400885px;}
.y15_c00418{bottom:671.402250px;}
.y14_c00418{bottom:692.640240px;}
.y13_c00418{bottom:713.879970px;}
.y12_c00418{bottom:735.120435px;}
.y11_c00418{bottom:756.000000px;}
.y10_c00418{bottom:756.000750px;}
.yf_c00418{bottom:776.879520px;}
.ye_c00418{bottom:798.840090px;}
.yd_c00418{bottom:798.840690px;}
.yc_c00418{bottom:820.080420px;}
.yb_c00418{bottom:862.559685px;}
.ya_c00418{bottom:905.761350px;}
.y9_c00418{bottom:926.640105px;}
.y8_c00418{bottom:926.640960px;}
.y7_c00418{bottom:947.519715px;}
.y6_c00418{bottom:990.359805px;}
.y5_c00418{bottom:990.360420px;}
.y4_c00418{bottom:1011.240855px;}
.y3_c00418{bottom:1032.479640px;}
.y2_c00418{bottom:1053.720150px;}
.y1_c00418{bottom:1138.320825px;}
.ha_c00418{height:70.400391px;}
.hd_c00418{height:74.344482px;}
.he_c00418{height:75.080566px;}
.h8_c00418{height:75.093750px;}
.h4_c00418{height:75.816650px;}
.h2_c00418{height:77.288818px;}
.h5_c00418{height:78.024902px;}
.h6_c00418{height:78.760986px;}
.h11_c00418{height:79.365234px;}
.h7_c00418{height:80.233154px;}
.h1_c00418{height:80.876953px;}
.h3_c00418{height:80.969238px;}
.hc_c00418{height:82.133789px;}
.h10_c00418{height:82.388672px;}
.h12_c00418{height:82.441406px;}
.h9_c00418{height:86.721680px;}
.hb_c00418{height:87.609375px;}
.hf_c00418{height:93.867188px;}
.h0_c00418{height:1263.000000px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:138.958350px;}
.x3_c00418{left:140.039400px;}
.x35_c00418{left:141.118815px;}
.x10_c00418{left:151.199415px;}
.x34_c00418{left:158.038860px;}
.x13_c00418{left:163.439550px;}
.x1d_c00418{left:169.560615px;}
.x2_c00418{left:175.318800px;}
.x3e_c00418{left:176.759100px;}
.x20_c00418{left:182.160375px;}
.x2f_c00418{left:188.638320px;}
.x9_c00418{left:194.398635px;}
.xb_c00418{left:202.318800px;}
.xa_c00418{left:209.159385px;}
.xd_c00418{left:212.399250px;}
.xc_c00418{left:217.438635px;}
.x37_c00418{left:222.118785px;}
.xe_c00418{left:227.519100px;}
.xf_c00418{left:246.958350px;}
.x4_c00418{left:268.559685px;}
.x5_c00418{left:283.679700px;}
.x11_c00418{left:303.838950px;}
.x19_c00418{left:316.080000px;}
.x12_c00418{left:318.599700px;}
.x1e_c00418{left:322.559685px;}
.x14_c00418{left:331.199850px;}
.x1f_c00418{left:337.318800px;}
.x16_c00418{left:341.998950px;}
.x1b_c00418{left:343.798515px;}
.x38_c00418{left:345.599700px;}
.x36_c00418{left:346.679100px;}
.x26_c00418{left:348.478635px;}
.x21_c00418{left:349.918950px;}
.x39_c00418{left:352.799535px;}
.x17_c00418{left:356.759535px;}
.x23_c00418{left:360.719535px;}
.x2c_c00418{left:362.519100px;}
.x1a_c00418{left:363.598530px;}
.x18_c00418{left:374.399235px;}
.x24_c00418{left:375.478635px;}
.x2e_c00418{left:377.279850px;}
.x32_c00418{left:380.878950px;}
.x30_c00418{left:383.039385px;}
.x15_c00418{left:385.199850px;}
.x1c_c00418{left:397.439250px;}
.x31_c00418{left:399.238770px;}
.x27_c00418{left:400.319820px;}
.x22_c00418{left:403.918950px;}
.x25_c00418{left:407.878920px;}
.x2d_c00418{left:417.959385px;}
.x33_c00418{left:434.878920px;}
.x6_c00418{left:496.439670px;}
.x7_c00418{left:525.598530px;}
.x8_c00418{left:550.078770px;}
.x3a_c00418{left:562.679070px;}
.x3b_c00418{left:577.439670px;}
.x28_c00418{left:579.959385px;}
.x3c_c00418{left:584.639700px;}
.x29_c00418{left:594.718500px;}
.x3d_c00418{left:600.838950px;}
.x2a_c00418{left:601.918350px;}
.x2b_c00418{left:633.598530px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls16_c00418{letter-spacing:-12.482913pt;}
.ls15_c00418{letter-spacing:-9.671220pt;}
.ls14_c00418{letter-spacing:-6.935333pt;}
.lsf_c00418{letter-spacing:-4.619300pt;}
.ls13_c00418{letter-spacing:-3.961300pt;}
.lsd_c00418{letter-spacing:-3.304000pt;}
.ls12_c00418{letter-spacing:-3.271867pt;}
.ls19_c00418{letter-spacing:-2.762667pt;}
.ls9_c00418{letter-spacing:-2.639000pt;}
.ls17_c00418{letter-spacing:-2.592333pt;}
.lsa_c00418{letter-spacing:-1.981700pt;}
.ls11_c00418{letter-spacing:-1.387067pt;}
.lsc_c00418{letter-spacing:-1.323700pt;}
.ls8_c00418{letter-spacing:-0.712620pt;}
.lsb_c00418{letter-spacing:-0.693533pt;}
.lse_c00418{letter-spacing:-0.658000pt;}
.ls7_c00418{letter-spacing:0.000000pt;}
.ls6_c00418{letter-spacing:0.693533pt;}
.ls4_c00418{letter-spacing:1.387067pt;}
.ls1a_c00418{letter-spacing:1.456000pt;}
.ls18_c00418{letter-spacing:1.547800pt;}
.ls2_c00418{letter-spacing:2.080600pt;}
.ls1_c00418{letter-spacing:2.774820pt;}
.ls3_c00418{letter-spacing:3.468353pt;}
.ls10_c00418{letter-spacing:4.013160pt;}
.ls5_c00418{letter-spacing:4.854047pt;}
.ls1b_c00418{letter-spacing:7.628867pt;}
.ls0_c00418{letter-spacing:11.413333pt;}
.ws0_c00418{word-spacing:0.000000pt;}
._0_c00418{margin-left:-18.190457pt;}
._f_c00418{margin-left:-15.072014pt;}
._11_c00418{margin-left:-13.892633pt;}
._e_c00418{margin-left:-8.870187pt;}
._10_c00418{margin-left:-7.544684pt;}
._d_c00418{margin-left:-4.719377pt;}
._a_c00418{margin-left:-3.826835pt;}
._b_c00418{margin-left:-2.705536pt;}
._2_c00418{margin-left:-1.241371pt;}
._4_c00418{width:1.122694pt;}
._1_c00418{width:2.051547pt;}
._3_c00418{width:3.422630pt;}
._7_c00418{width:4.743469pt;}
._6_c00418{width:5.881659pt;}
._5_c00418{width:7.344862pt;}
._9_c00418{width:9.321956pt;}
._8_c00418{width:11.091157pt;}
._c_c00418{width:16.254111pt;}
.fs8_c00418{font-size:60.000000pt;}
.fs6_c00418{font-size:64.000000pt;}
.fsa_c00418{font-size:67.333333pt;}
.fsb_c00418{font-size:68.000000pt;}
.fs3_c00418{font-size:68.666667pt;}
.fs1_c00418{font-size:70.000000pt;}
.fs4_c00418{font-size:70.666667pt;}
.fs0_c00418{font-size:71.333333pt;}
.fs5_c00418{font-size:72.666667pt;}
.fs2_c00418{font-size:73.333333pt;}
.fs9_c00418{font-size:74.666667pt;}
.fs7_c00418{font-size:78.000000pt;}
.fsc_c00418{font-size:80.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y30_c00418{bottom:180.799867pt;}
.y2f_c00418{bottom:199.680133pt;}
.y2e_c00418{bottom:217.920387pt;}
.y2c_c00418{bottom:256.319333pt;}
.y2d_c00418{bottom:256.319867pt;}
.y2b_c00418{bottom:275.200133pt;}
.y2a_c00418{bottom:313.281813pt;}
.y29_c00418{bottom:332.480893pt;}
.y28_c00418{bottom:351.041600pt;}
.y27_c00418{bottom:369.600507pt;}
.y26_c00418{bottom:388.480920pt;}
.y25_c00418{bottom:388.481613pt;}
.y24_c00418{bottom:408.000000pt;}
.y23_c00418{bottom:426.559573pt;}
.y22_c00418{bottom:445.439987pt;}
.y21_c00418{bottom:445.440533pt;}
.y20_c00418{bottom:464.639613pt;}
.y1f_c00418{bottom:464.640213pt;}
.y1e_c00418{bottom:483.519973pt;}
.y1d_c00418{bottom:502.400387pt;}
.y1c_c00418{bottom:521.280800pt;}
.y1b_c00418{bottom:540.480507pt;}
.y1a_c00418{bottom:540.481093pt;}
.y19_c00418{bottom:559.040000pt;}
.y18_c00418{bottom:577.599573pt;}
.y17_c00418{bottom:577.599880pt;}
.y16_c00418{bottom:596.800787pt;}
.y15_c00418{bottom:596.802000pt;}
.y14_c00418{bottom:615.680213pt;}
.y13_c00418{bottom:634.559973pt;}
.y12_c00418{bottom:653.440387pt;}
.y11_c00418{bottom:672.000000pt;}
.y10_c00418{bottom:672.000667pt;}
.yf_c00418{bottom:690.559573pt;}
.ye_c00418{bottom:710.080080pt;}
.yd_c00418{bottom:710.080613pt;}
.yc_c00418{bottom:728.960373pt;}
.yb_c00418{bottom:766.719720pt;}
.ya_c00418{bottom:805.121200pt;}
.y9_c00418{bottom:823.680093pt;}
.y8_c00418{bottom:823.680853pt;}
.y7_c00418{bottom:842.239747pt;}
.y6_c00418{bottom:880.319827pt;}
.y5_c00418{bottom:880.320373pt;}
.y4_c00418{bottom:898.880760pt;}
.y3_c00418{bottom:917.759680pt;}
.y2_c00418{bottom:936.640133pt;}
.y1_c00418{bottom:1011.840733pt;}
.ha_c00418{height:62.578125pt;}
.hd_c00418{height:66.083984pt;}
.he_c00418{height:66.738281pt;}
.h8_c00418{height:66.750000pt;}
.h4_c00418{height:67.392578pt;}
.h2_c00418{height:68.701172pt;}
.h5_c00418{height:69.355469pt;}
.h6_c00418{height:70.009766pt;}
.h11_c00418{height:70.546875pt;}
.h7_c00418{height:71.318359pt;}
.h1_c00418{height:71.890625pt;}
.h3_c00418{height:71.972656pt;}
.hc_c00418{height:73.007812pt;}
.h10_c00418{height:73.234375pt;}
.h12_c00418{height:73.281250pt;}
.h9_c00418{height:77.085938pt;}
.hb_c00418{height:77.875000pt;}
.hf_c00418{height:83.437500pt;}
.h0_c00418{height:1122.666667pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:123.518533pt;}
.x3_c00418{left:124.479467pt;}
.x35_c00418{left:125.438947pt;}
.x10_c00418{left:134.399480pt;}
.x34_c00418{left:140.478987pt;}
.x13_c00418{left:145.279600pt;}
.x1d_c00418{left:150.720547pt;}
.x2_c00418{left:155.838933pt;}
.x3e_c00418{left:157.119200pt;}
.x20_c00418{left:161.920333pt;}
.x2f_c00418{left:167.678507pt;}
.x9_c00418{left:172.798787pt;}
.xb_c00418{left:179.838933pt;}
.xa_c00418{left:185.919453pt;}
.xd_c00418{left:188.799333pt;}
.xc_c00418{left:193.278787pt;}
.x37_c00418{left:197.438920pt;}
.xe_c00418{left:202.239200pt;}
.xf_c00418{left:219.518533pt;}
.x4_c00418{left:238.719720pt;}
.x5_c00418{left:252.159733pt;}
.x11_c00418{left:270.079067pt;}
.x19_c00418{left:280.960000pt;}
.x12_c00418{left:283.199733pt;}
.x1e_c00418{left:286.719720pt;}
.x14_c00418{left:294.399867pt;}
.x1f_c00418{left:299.838933pt;}
.x16_c00418{left:303.999067pt;}
.x1b_c00418{left:305.598680pt;}
.x38_c00418{left:307.199733pt;}
.x36_c00418{left:308.159200pt;}
.x26_c00418{left:309.758787pt;}
.x21_c00418{left:311.039067pt;}
.x39_c00418{left:313.599587pt;}
.x17_c00418{left:317.119587pt;}
.x23_c00418{left:320.639587pt;}
.x2c_c00418{left:322.239200pt;}
.x1a_c00418{left:323.198693pt;}
.x18_c00418{left:332.799320pt;}
.x24_c00418{left:333.758787pt;}
.x2e_c00418{left:335.359867pt;}
.x32_c00418{left:338.559067pt;}
.x30_c00418{left:340.479453pt;}
.x15_c00418{left:342.399867pt;}
.x1c_c00418{left:353.279333pt;}
.x31_c00418{left:354.878907pt;}
.x27_c00418{left:355.839840pt;}
.x22_c00418{left:359.039067pt;}
.x25_c00418{left:362.559040pt;}
.x2d_c00418{left:371.519453pt;}
.x33_c00418{left:386.559040pt;}
.x6_c00418{left:441.279707pt;}
.x7_c00418{left:467.198693pt;}
.x8_c00418{left:488.958907pt;}
.x3a_c00418{left:500.159173pt;}
.x3b_c00418{left:513.279707pt;}
.x28_c00418{left:515.519453pt;}
.x3c_c00418{left:519.679733pt;}
.x29_c00418{left:528.638667pt;}
.x3d_c00418{left:534.079067pt;}
.x2a_c00418{left:535.038533pt;}
.x2b_c00418{left:563.198693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd1cfa36d44b4078ba814755.woff2')format("woff");}.ff1_c00419{font-family:ff1_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:ff2_c00419;src:url('chunks/assets/font_b2e57b97ab4ef38b96955f74.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_902c9be0ff536ad9b124cf47.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_a5c1855fccc52332200e0f26.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.364746;font-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_c00419{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.158879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158879,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m17_c00419{transform:matrix(0.191748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191748,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.201563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201563,0.000000,0.000000,0.250000,0,0);}
.me_c00419{transform:matrix(0.209302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209302,0.000000,0.000000,0.250000,0,0);}
.m18_c00419{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.mc_c00419{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.mf_c00419{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m11_c00419{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m14_c00419{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.m12_c00419{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m10_c00419{transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);}
.md_c00419{transform:matrix(0.411585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411585,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(1.534091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.534091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.534091,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls8_c00419{letter-spacing:-9.173400px;}
.ls7_c00419{letter-spacing:-3.650400px;}
.lsf_c00419{letter-spacing:-3.283875px;}
.ls10_c00419{letter-spacing:-3.190050px;}
.ls4_c00419{letter-spacing:-2.464875px;}
.ls9_c00419{letter-spacing:-2.269238px;}
.ls12_c00419{letter-spacing:-1.741275px;}
.lse_c00419{letter-spacing:-1.638000px;}
.lsd_c00419{letter-spacing:-1.515465px;}
.ls13_c00419{letter-spacing:-0.866550px;}
.lsc_c00419{letter-spacing:-0.826875px;}
.ls11_c00419{letter-spacing:-0.826200px;}
.ls5_c00419{letter-spacing:-0.819788px;}
.ls2_c00419{letter-spacing:-0.819000px;}
.ls3_c00419{letter-spacing:0.000000px;}
.ls14_c00419{letter-spacing:0.866550px;}
.lsb_c00419{letter-spacing:1.793100px;}
.ls0_c00419{letter-spacing:2.464875px;}
.ls6_c00419{letter-spacing:3.283875px;}
.ls1_c00419{letter-spacing:3.482550px;}
.lsa_c00419{letter-spacing:15.110100px;}
.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:0.000000px;}
._0_c00419{margin-left:-7.693875px;}
._7_c00419{margin-left:-1.406378px;}
._5_c00419{width:3.023541px;}
._1_c00419{width:4.347000px;}
._6_c00419{width:6.041499px;}
._3_c00419{width:7.247166px;}
._4_c00419{width:8.424150px;}
._2_c00419{width:10.236975px;}
.fc0_c00419{color:transparent;}
.fs4_c00419{font-size:16.500000px;}
.fse_c00419{font-size:32.250000px;}
.fs5_c00419{font-size:34.500000px;}
.fs9_c00419{font-size:54.000000px;}
.fsa_c00419{font-size:60.000000px;}
.fsd_c00419{font-size:61.500000px;}
.fs11_c00419{font-size:75.750000px;}
.fs10_c00419{font-size:76.500000px;}
.fsc_c00419{font-size:77.250000px;}
.fs0_c00419{font-size:78.000000px;}
.fs1_c00419{font-size:78.750000px;}
.fs3_c00419{font-size:80.250000px;}
.fs12_c00419{font-size:81.750000px;}
.fsf_c00419{font-size:84.000000px;}
.fsb_c00419{font-size:86.250000px;}
.fs2_c00419{font-size:96.750000px;}
.fs13_c00419{font-size:101.250000px;}
.fs8_c00419{font-size:120.000000px;}
.fs7_c00419{font-size:128.250000px;}
.fs6_c00419{font-size:132.000000px;}
.y0_c00419{bottom:0.000000px;}
.y14_c00419{bottom:737.280900px;}
.y13_c00419{bottom:758.880570px;}
.y12_c00419{bottom:779.760135px;}
.y11_c00419{bottom:822.600135px;}
.y10_c00419{bottom:843.841695px;}
.yf_c00419{bottom:887.039985px;}
.ye_c00419{bottom:929.159820px;}
.yd_c00419{bottom:929.161515px;}
.yc_c00419{bottom:950.041920px;}
.yb_c00419{bottom:971.641230px;}
.ya_c00419{bottom:1014.481140px;}
.y9_c00419{bottom:1036.080420px;}
.y8_c00419{bottom:1057.680090px;}
.y7_c00419{bottom:1075.680720px;}
.y6_c00419{bottom:1079.279850px;}
.y4_c00419{bottom:1099.799625px;}
.y5_c00419{bottom:1099.800105px;}
.y3_c00419{bottom:1121.040525px;}
.y1_c00419{bottom:1142.280855px;}
.y2_c00419{bottom:1150.200990px;}
.h5_c00419{height:17.208984px;}
.hf_c00419{height:32.501953px;}
.h6_c00419{height:35.982422px;}
.ha_c00419{height:56.320312px;}
.hb_c00419{height:59.296875px;}
.he_c00419{height:64.142578px;}
.h12_c00419{height:77.097656px;}
.hd_c00419{height:77.853516px;}
.h1_c00419{height:78.609375px;}
.h14_c00419{height:79.004883px;}
.h2_c00419{height:79.365234px;}
.h10_c00419{height:80.569336px;}
.h4_c00419{height:80.876953px;}
.h13_c00419{height:82.133789px;}
.h15_c00419{height:82.388672px;}
.hc_c00419{height:85.239258px;}
.h11_c00419{height:87.609375px;}
.h3_c00419{height:100.907227px;}
.h16_c00419{height:105.600586px;}
.h9_c00419{height:125.156250px;}
.h8_c00419{height:133.760742px;}
.h7_c00419{height:137.671875px;}
.h0_c00419{height:1263.000000px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x8_c00419{left:140.758755px;}
.x10_c00419{left:142.199850px;}
.x14_c00419{left:157.319850px;}
.x1_c00419{left:159.119415px;}
.x7_c00419{left:160.198785px;}
.x11_c00419{left:163.079400px;}
.x1f_c00419{left:173.519100px;}
.x2_c00419{left:182.159415px;}
.x12_c00419{left:183.599700px;}
.x13_c00419{left:213.839535px;}
.x20_c00419{left:241.918950px;}
.x24_c00419{left:243.359250px;}
.x3_c00419{left:312.838515px;}
.x25_c00419{left:316.439235px;}
.x21_c00419{left:322.198785px;}
.x1d_c00419{left:327.599100px;}
.x4_c00419{left:329.039385px;}
.x15_c00419{left:331.918350px;}
.x9_c00419{left:342.359850px;}
.x16_c00419{left:346.679100px;}
.x17_c00419{left:353.878950px;}
.x5_c00419{left:366.120000px;}
.x18_c00419{left:370.080000px;}
.x6_c00419{left:375.119385px;}
.x1e_c00419{left:381.599100px;}
.x26_c00419{left:396.359850px;}
.x19_c00419{left:405.359250px;}
.x1a_c00419{left:419.399820px;}
.x27_c00419{left:467.999400px;}
.xa_c00419{left:471.959385px;}
.xb_c00419{left:485.639100px;}
.x22_c00419{left:511.198785px;}
.x23_c00419{left:517.319235px;}
.x1b_c00419{left:548.638500px;}
.x1c_c00419{left:562.679070px;}
.xc_c00419{left:595.799520px;}
.xd_c00419{left:609.479235px;}
.xe_c00419{left:733.678530px;}
.xf_c00419{left:747.359850px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls8_c00419{letter-spacing:-8.154133pt;}
.ls7_c00419{letter-spacing:-3.244800pt;}
.lsf_c00419{letter-spacing:-2.919000pt;}
.ls10_c00419{letter-spacing:-2.835600pt;}
.ls4_c00419{letter-spacing:-2.191000pt;}
.ls9_c00419{letter-spacing:-2.017100pt;}
.ls12_c00419{letter-spacing:-1.547800pt;}
.lse_c00419{letter-spacing:-1.456000pt;}
.lsd_c00419{letter-spacing:-1.347080pt;}
.ls13_c00419{letter-spacing:-0.770267pt;}
.lsc_c00419{letter-spacing:-0.735000pt;}
.ls11_c00419{letter-spacing:-0.734400pt;}
.ls5_c00419{letter-spacing:-0.728700pt;}
.ls2_c00419{letter-spacing:-0.728000pt;}
.ls3_c00419{letter-spacing:0.000000pt;}
.ls14_c00419{letter-spacing:0.770267pt;}
.lsb_c00419{letter-spacing:1.593867pt;}
.ls0_c00419{letter-spacing:2.191000pt;}
.ls6_c00419{letter-spacing:2.919000pt;}
.ls1_c00419{letter-spacing:3.095600pt;}
.lsa_c00419{letter-spacing:13.431200pt;}
.ws0_c00419{word-spacing:0.000000pt;}
._0_c00419{margin-left:-6.839000pt;}
._7_c00419{margin-left:-1.250114pt;}
._5_c00419{width:2.687592pt;}
._1_c00419{width:3.864000pt;}
._6_c00419{width:5.370221pt;}
._3_c00419{width:6.441925pt;}
._4_c00419{width:7.488133pt;}
._2_c00419{width:9.099533pt;}
.fs4_c00419{font-size:14.666667pt;}
.fse_c00419{font-size:28.666667pt;}
.fs5_c00419{font-size:30.666667pt;}
.fs9_c00419{font-size:48.000000pt;}
.fsa_c00419{font-size:53.333333pt;}
.fsd_c00419{font-size:54.666667pt;}
.fs11_c00419{font-size:67.333333pt;}
.fs10_c00419{font-size:68.000000pt;}
.fsc_c00419{font-size:68.666667pt;}
.fs0_c00419{font-size:69.333333pt;}
.fs1_c00419{font-size:70.000000pt;}
.fs3_c00419{font-size:71.333333pt;}
.fs12_c00419{font-size:72.666667pt;}
.fsf_c00419{font-size:74.666667pt;}
.fsb_c00419{font-size:76.666667pt;}
.fs2_c00419{font-size:86.000000pt;}
.fs13_c00419{font-size:90.000000pt;}
.fs8_c00419{font-size:106.666667pt;}
.fs7_c00419{font-size:114.000000pt;}
.fs6_c00419{font-size:117.333333pt;}
.y0_c00419{bottom:0.000000pt;}
.y14_c00419{bottom:655.360800pt;}
.y13_c00419{bottom:674.560507pt;}
.y12_c00419{bottom:693.120120pt;}
.y11_c00419{bottom:731.200120pt;}
.y10_c00419{bottom:750.081507pt;}
.yf_c00419{bottom:788.479987pt;}
.ye_c00419{bottom:825.919840pt;}
.yd_c00419{bottom:825.921347pt;}
.yc_c00419{bottom:844.481707pt;}
.yb_c00419{bottom:863.681093pt;}
.ya_c00419{bottom:901.761013pt;}
.y9_c00419{bottom:920.960373pt;}
.y8_c00419{bottom:940.160080pt;}
.y7_c00419{bottom:956.160640pt;}
.y6_c00419{bottom:959.359867pt;}
.y4_c00419{bottom:977.599667pt;}
.y5_c00419{bottom:977.600093pt;}
.y3_c00419{bottom:996.480467pt;}
.y1_c00419{bottom:1015.360760pt;}
.y2_c00419{bottom:1022.400880pt;}
.h5_c00419{height:15.296875pt;}
.hf_c00419{height:28.890625pt;}
.h6_c00419{height:31.984375pt;}
.ha_c00419{height:50.062500pt;}
.hb_c00419{height:52.708333pt;}
.he_c00419{height:57.015625pt;}
.h12_c00419{height:68.531250pt;}
.hd_c00419{height:69.203125pt;}
.h1_c00419{height:69.875000pt;}
.h14_c00419{height:70.226562pt;}
.h2_c00419{height:70.546875pt;}
.h10_c00419{height:71.617188pt;}
.h4_c00419{height:71.890625pt;}
.h13_c00419{height:73.007812pt;}
.h15_c00419{height:73.234375pt;}
.hc_c00419{height:75.768229pt;}
.h11_c00419{height:77.875000pt;}
.h3_c00419{height:89.695312pt;}
.h16_c00419{height:93.867188pt;}
.h9_c00419{height:111.250000pt;}
.h8_c00419{height:118.898438pt;}
.h7_c00419{height:122.375000pt;}
.h0_c00419{height:1122.666667pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x8_c00419{left:125.118893pt;}
.x10_c00419{left:126.399867pt;}
.x14_c00419{left:139.839867pt;}
.x1_c00419{left:141.439480pt;}
.x7_c00419{left:142.398920pt;}
.x11_c00419{left:144.959467pt;}
.x1f_c00419{left:154.239200pt;}
.x2_c00419{left:161.919480pt;}
.x12_c00419{left:163.199733pt;}
.x13_c00419{left:190.079587pt;}
.x20_c00419{left:215.039067pt;}
.x24_c00419{left:216.319333pt;}
.x3_c00419{left:278.078680pt;}
.x25_c00419{left:281.279320pt;}
.x21_c00419{left:286.398920pt;}
.x1d_c00419{left:291.199200pt;}
.x4_c00419{left:292.479453pt;}
.x15_c00419{left:295.038533pt;}
.x9_c00419{left:304.319867pt;}
.x16_c00419{left:308.159200pt;}
.x17_c00419{left:314.559067pt;}
.x5_c00419{left:325.440000pt;}
.x18_c00419{left:328.960000pt;}
.x6_c00419{left:333.439453pt;}
.x1e_c00419{left:339.199200pt;}
.x26_c00419{left:352.319867pt;}
.x19_c00419{left:360.319333pt;}
.x1a_c00419{left:372.799840pt;}
.x27_c00419{left:415.999467pt;}
.xa_c00419{left:419.519453pt;}
.xb_c00419{left:431.679200pt;}
.x22_c00419{left:454.398920pt;}
.x23_c00419{left:459.839320pt;}
.x1b_c00419{left:487.678667pt;}
.x1c_c00419{left:500.159173pt;}
.xc_c00419{left:529.599573pt;}
.xd_c00419{left:541.759320pt;}
.xe_c00419{left:652.158693pt;}
.xf_c00419{left:664.319867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95b8db6cc51cac4ba95bdf04.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_142c4d5b7fa0a499cab93664.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_4f38d25b9de86e749839870e.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_1178fe7f828fb2f85e4a6078.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_b395c9e6c2abefd5db27359a.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00420;src:url('chunks/assets/font_c3db2c3416f3326979a847cf.woff2')format("woff");}.ff6_c00420{font-family:ff6_c00420;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18_c00420{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m13_c00420{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1e_c00420{transform:matrix(0.210432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210432,0.000000,0.000000,0.250000,0,0);}
.m20_c00420{transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);}
.m1f_c00420{transform:matrix(0.218519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218519,0.000000,0.000000,0.250000,0,0);}
.m29_c00420{transform:matrix(0.223282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223282,0.000000,0.000000,0.250000,0,0);}
.m28_c00420{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_c00420{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1d_c00420{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m14_c00420{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m24_c00420{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m22_c00420{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m26_c00420{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m1b_c00420{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1a_c00420{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m21_c00420{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m23_c00420{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m17_c00420{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m25_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27_c00420{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1c_c00420{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m16_c00420{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.md_c00420{transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.334239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334239,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);}
.m15_c00420{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_c00420{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m10_c00420{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls5_c00420{letter-spacing:-8.991900px;}
.lsf_c00420{letter-spacing:-8.113500px;}
.lsd_c00420{letter-spacing:-8.096400px;}
.ls8_c00420{letter-spacing:-7.352378px;}
.ls9_c00420{letter-spacing:-6.400800px;}
.ls1d_c00420{letter-spacing:-5.627700px;}
.ls7_c00420{letter-spacing:-5.524500px;}
.ls4_c00420{letter-spacing:-5.400900px;}
.ls1e_c00420{letter-spacing:-5.300663px;}
.ls11_c00420{letter-spacing:-5.166450px;}
.ls13_c00420{letter-spacing:-4.940040px;}
.ls1a_c00420{letter-spacing:-4.543088px;}
.ls10_c00420{letter-spacing:-3.900390px;}
.ls16_c00420{letter-spacing:-3.787875px;}
.ls1c_c00420{letter-spacing:-3.371625px;}
.ls22_c00420{letter-spacing:-3.086100px;}
.ls14_c00420{letter-spacing:-3.031875px;}
.lsa_c00420{letter-spacing:-2.344253px;}
.ls1_c00420{letter-spacing:-2.267213px;}
.ls18_c00420{letter-spacing:-2.246918px;}
.ls2_c00420{letter-spacing:-1.512000px;}
.ls27_c00420{letter-spacing:-1.500165px;}
.ls26_c00420{letter-spacing:-1.483200px;}
.ls23_c00420{letter-spacing:-0.802950px;}
.ls3_c00420{letter-spacing:-0.756000px;}
.ls6_c00420{letter-spacing:0.000000px;}
.lse_c00420{letter-spacing:0.481478px;}
.lsc_c00420{letter-spacing:0.593400px;}
.lsb_c00420{letter-spacing:0.619200px;}
.ls1b_c00420{letter-spacing:0.756000px;}
.ls25_c00420{letter-spacing:0.795375px;}
.ls19_c00420{letter-spacing:0.826800px;}
.ls20_c00420{letter-spacing:2.014875px;}
.ls21_c00420{letter-spacing:2.174063px;}
.ls28_c00420{letter-spacing:2.340000px;}
.ls29_c00420{letter-spacing:2.358000px;}
.ls1f_c00420{letter-spacing:2.470725px;}
.ls0_c00420{letter-spacing:3.031875px;}
.ls15_c00420{letter-spacing:6.811875px;}
.ls24_c00420{letter-spacing:8.251950px;}
.ls17_c00420{letter-spacing:17.128650px;}
.ls12_c00420{letter-spacing:57.664035px;}
.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;}
._d_c00420{margin-left:-32.019326px;}
._c_c00420{margin-left:-21.207193px;}
._3_c00420{margin-left:-11.872895px;}
._e_c00420{margin-left:-9.946358px;}
._f_c00420{margin-left:-2.437737px;}
._6_c00420{margin-left:-1.244371px;}
._1_c00420{width:1.958513px;}
._0_c00420{width:4.230874px;}
._9_c00420{width:5.394981px;}
._5_c00420{width:7.255904px;}
._2_c00420{width:9.276992px;}
._8_c00420{width:10.393546px;}
._7_c00420{width:11.835883px;}
._4_c00420{width:16.694879px;}
._a_c00420{width:52.809265px;}
._b_c00420{width:78.762842px;}
.fc0_c00420{color:transparent;}
.fsa_c00420{font-size:32.250000px;}
.fsc_c00420{font-size:34.500000px;}
.fsd_c00420{font-size:39.000000px;}
.fs4_c00420{font-size:43.500000px;}
.fs10_c00420{font-size:45.000000px;}
.fsf_c00420{font-size:47.250000px;}
.fs5_c00420{font-size:54.750000px;}
.fs13_c00420{font-size:57.750000px;}
.fs12_c00420{font-size:67.500000px;}
.fs8_c00420{font-size:69.000000px;}
.fs15_c00420{font-size:69.750000px;}
.fsb_c00420{font-size:72.000000px;}
.fs2_c00420{font-size:72.750000px;}
.fs1_c00420{font-size:76.500000px;}
.fs3_c00420{font-size:77.250000px;}
.fs14_c00420{font-size:78.000000px;}
.fs0_c00420{font-size:78.750000px;}
.fs9_c00420{font-size:79.500000px;}
.fs1a_c00420{font-size:81.000000px;}
.fs7_c00420{font-size:83.250000px;}
.fs11_c00420{font-size:84.000000px;}
.fs19_c00420{font-size:84.750000px;}
.fse_c00420{font-size:86.250000px;}
.fs16_c00420{font-size:93.750000px;}
.fs1b_c00420{font-size:97.500000px;}
.fs1c_c00420{font-size:98.250000px;}
.fs18_c00420{font-size:101.250000px;}
.fs17_c00420{font-size:104.250000px;}
.fs6_c00420{font-size:114.000000px;}
.y0_c00420{bottom:0.000000px;}
.y28_c00420{bottom:179.639700px;}
.y27_c00420{bottom:195.838950px;}
.y26_c00420{bottom:222.479685px;}
.y25_c00420{bottom:259.199385px;}
.y23_c00420{bottom:280.798485px;}
.y24_c00420{bottom:280.798950px;}
.y22_c00420{bottom:302.039385px;}
.y21_c00420{bottom:323.279730px;}
.y20_c00420{bottom:365.399250px;}
.y1f_c00420{bottom:386.640150px;}
.y1d_c00420{bottom:407.878905px;}
.y1e_c00420{bottom:407.878920px;}
.y1c_c00420{bottom:429.119820px;}
.y1b_c00420{bottom:450.719100px;}
.y1a_c00420{bottom:493.559355px;}
.y19_c00420{bottom:515.158650px;}
.y18_c00420{bottom:536.399550px;}
.y17_c00420{bottom:557.640450px;}
.y16_c00420{bottom:578.519070px;}
.y15_c00420{bottom:626.759535px;}
.y14_c00420{bottom:641.879520px;}
.y13_c00420{bottom:641.880450px;}
.y12_c00420{bottom:662.759085px;}
.y11_c00420{bottom:689.399820px;}
.y10_c00420{bottom:727.198785px;}
.yf_c00420{bottom:796.679715px;}
.ye_c00420{bottom:812.878965px;}
.yd_c00420{bottom:833.939670px;}
.yc_c00420{bottom:855.180090px;}
.yb_c00420{bottom:876.239220px;}
.ya_c00420{bottom:897.479640px;}
.y9_c00420{bottom:924.118740px;}
.y8_c00420{bottom:961.201380px;}
.y7_c00420{bottom:1003.681065px;}
.y6_c00420{bottom:1024.559685px;}
.y5_c00420{bottom:1024.560075px;}
.y4_c00420{bottom:1046.159370px;}
.y3_c00420{bottom:1067.759040px;}
.y2_c00420{bottom:1074.958920px;}
.y1_c00420{bottom:1088.640105px;}
.hb_c00420{height:33.635742px;}
.hd_c00420{height:33.843018px;}
.he_c00420{height:38.542969px;}
.h12_c00420{height:40.675781px;}
.h13_c00420{height:42.990234px;}
.h5_c00420{height:43.839844px;}
.h11_c00420{height:44.472656px;}
.h23_c00420{height:45.369141px;}
.h10_c00420{height:46.696289px;}
.h6_c00420{height:55.177734px;}
.h16_c00420{height:60.231445px;}
.h15_c00420{height:70.400391px;}
.h9_c00420{height:71.964844px;}
.h1a_c00420{height:72.747070px;}
.h3_c00420{height:73.318359px;}
.h25_c00420{height:75.080566px;}
.hc_c00420{height:75.093750px;}
.h24_c00420{height:75.816650px;}
.h18_c00420{height:76.552734px;}
.h2_c00420{height:77.097656px;}
.h1_c00420{height:77.288818px;}
.h4_c00420{height:77.853516px;}
.h22_c00420{height:78.024902px;}
.h21_c00420{height:79.497070px;}
.ha_c00420{height:80.121094px;}
.h1f_c00420{height:80.569336px;}
.h8_c00420{height:81.664673px;}
.h1c_c00420{height:82.133789px;}
.h17_c00420{height:82.274414px;}
.h14_c00420{height:83.015625px;}
.h20_c00420{height:83.177490px;}
.h19_c00420{height:87.609375px;}
.hf_c00420{height:89.956055px;}
.h1b_c00420{height:97.778320px;}
.h26_c00420{height:101.689453px;}
.h27_c00420{height:102.471680px;}
.h1e_c00420{height:105.600586px;}
.h1d_c00420{height:108.729492px;}
.h7_c00420{height:112.664062px;}
.h0_c00420{height:1263.000000px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x16_c00420{left:140.397165px;}
.x1_c00420{left:142.199850px;}
.x17_c00420{left:144.358665px;}
.x1f_c00420{left:158.040000px;}
.x18_c00420{left:162.718500px;}
.x2f_c00420{left:172.439715px;}
.x13_c00420{left:173.519100px;}
.x2d_c00420{left:178.558665px;}
.x32_c00420{left:190.799565px;}
.x29_c00420{left:196.199850px;}
.x19_c00420{left:202.318800px;}
.x33_c00420{left:204.120000px;}
.x20_c00420{left:205.199385px;}
.x2_c00420{left:208.080000px;}
.x30_c00420{left:209.879535px;}
.x2e_c00420{left:222.118785px;}
.x2a_c00420{left:227.519100px;}
.x3_c00420{left:233.278800px;}
.x21_c00420{left:236.518635px;}
.x31_c00420{left:240.839535px;}
.x14_c00420{left:252.358635px;}
.x15_c00420{left:267.478635px;}
.x4_c00420{left:279.719535px;}
.x2b_c00420{left:281.878350px;}
.x1d_c00420{left:295.198785px;}
.x2c_c00420{left:296.279850px;}
.x22_c00420{left:303.838950px;}
.x1e_c00420{left:310.318800px;}
.x5_c00420{left:317.879535px;}
.x23_c00420{left:319.319850px;}
.x24_c00420{left:369.359850px;}
.x6_c00420{left:379.079385px;}
.x7_c00420{left:398.159415px;}
.x25_c00420{left:404.639100px;}
.x8_c00420{left:412.918350px;}
.x26_c00420{left:425.159415px;}
.x9_c00420{left:437.759535px;}
.x12_c00420{left:452.518620px;}
.xa_c00420{left:453.599670px;}
.x1a_c00420{left:473.399820px;}
.xb_c00420{left:474.838530px;}
.xc_c00420{left:490.319235px;}
.x1b_c00420{left:500.759085px;}
.xd_c00420{left:510.119385px;}
.xe_c00420{left:528.838530px;}
.xf_c00420{left:543.958335px;}
.x10_c00420{left:557.998950px;}
.x11_c00420{left:578.878320px;}
.x27_c00420{left:649.438620px;}
.x1c_c00420{left:676.438620px;}
.x28_c00420{left:682.918350px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls5_c00420{letter-spacing:-7.992800pt;}
.lsf_c00420{letter-spacing:-7.212000pt;}
.lsd_c00420{letter-spacing:-7.196800pt;}
.ls8_c00420{letter-spacing:-6.535447pt;}
.ls9_c00420{letter-spacing:-5.689600pt;}
.ls1d_c00420{letter-spacing:-5.002400pt;}
.ls7_c00420{letter-spacing:-4.910667pt;}
.ls4_c00420{letter-spacing:-4.800800pt;}
.ls1e_c00420{letter-spacing:-4.711700pt;}
.ls11_c00420{letter-spacing:-4.592400pt;}
.ls13_c00420{letter-spacing:-4.391147pt;}
.ls1a_c00420{letter-spacing:-4.038300pt;}
.ls10_c00420{letter-spacing:-3.467013pt;}
.ls16_c00420{letter-spacing:-3.367000pt;}
.ls1c_c00420{letter-spacing:-2.997000pt;}
.ls22_c00420{letter-spacing:-2.743200pt;}
.ls14_c00420{letter-spacing:-2.695000pt;}
.lsa_c00420{letter-spacing:-2.083780pt;}
.ls1_c00420{letter-spacing:-2.015300pt;}
.ls18_c00420{letter-spacing:-1.997260pt;}
.ls2_c00420{letter-spacing:-1.344000pt;}
.ls27_c00420{letter-spacing:-1.333480pt;}
.ls26_c00420{letter-spacing:-1.318400pt;}
.ls23_c00420{letter-spacing:-0.713733pt;}
.ls3_c00420{letter-spacing:-0.672000pt;}
.ls6_c00420{letter-spacing:0.000000pt;}
.lse_c00420{letter-spacing:0.427980pt;}
.lsc_c00420{letter-spacing:0.527467pt;}
.lsb_c00420{letter-spacing:0.550400pt;}
.ls1b_c00420{letter-spacing:0.672000pt;}
.ls25_c00420{letter-spacing:0.707000pt;}
.ls19_c00420{letter-spacing:0.734933pt;}
.ls20_c00420{letter-spacing:1.791000pt;}
.ls21_c00420{letter-spacing:1.932500pt;}
.ls28_c00420{letter-spacing:2.080000pt;}
.ls29_c00420{letter-spacing:2.096000pt;}
.ls1f_c00420{letter-spacing:2.196200pt;}
.ls0_c00420{letter-spacing:2.695000pt;}
.ls15_c00420{letter-spacing:6.055000pt;}
.ls24_c00420{letter-spacing:7.335067pt;}
.ls17_c00420{letter-spacing:15.225467pt;}
.ls12_c00420{letter-spacing:51.256920pt;}
.ws0_c00420{word-spacing:0.000000pt;}
._d_c00420{margin-left:-28.461623pt;}
._c_c00420{margin-left:-18.850838pt;}
._3_c00420{margin-left:-10.553685pt;}
._e_c00420{margin-left:-8.841207pt;}
._f_c00420{margin-left:-2.166877pt;}
._6_c00420{margin-left:-1.106108pt;}
._1_c00420{width:1.740900pt;}
._0_c00420{width:3.760777pt;}
._9_c00420{width:4.795538pt;}
._5_c00420{width:6.449692pt;}
._2_c00420{width:8.246215pt;}
._8_c00420{width:9.238708pt;}
._7_c00420{width:10.520785pt;}
._4_c00420{width:14.839892pt;}
._a_c00420{width:46.941569pt;}
._b_c00420{width:70.011415pt;}
.fsa_c00420{font-size:28.666667pt;}
.fsc_c00420{font-size:30.666667pt;}
.fsd_c00420{font-size:34.666667pt;}
.fs4_c00420{font-size:38.666667pt;}
.fs10_c00420{font-size:40.000000pt;}
.fsf_c00420{font-size:42.000000pt;}
.fs5_c00420{font-size:48.666667pt;}
.fs13_c00420{font-size:51.333333pt;}
.fs12_c00420{font-size:60.000000pt;}
.fs8_c00420{font-size:61.333333pt;}
.fs15_c00420{font-size:62.000000pt;}
.fsb_c00420{font-size:64.000000pt;}
.fs2_c00420{font-size:64.666667pt;}
.fs1_c00420{font-size:68.000000pt;}
.fs3_c00420{font-size:68.666667pt;}
.fs14_c00420{font-size:69.333333pt;}
.fs0_c00420{font-size:70.000000pt;}
.fs9_c00420{font-size:70.666667pt;}
.fs1a_c00420{font-size:72.000000pt;}
.fs7_c00420{font-size:74.000000pt;}
.fs11_c00420{font-size:74.666667pt;}
.fs19_c00420{font-size:75.333333pt;}
.fse_c00420{font-size:76.666667pt;}
.fs16_c00420{font-size:83.333333pt;}
.fs1b_c00420{font-size:86.666667pt;}
.fs1c_c00420{font-size:87.333333pt;}
.fs18_c00420{font-size:90.000000pt;}
.fs17_c00420{font-size:92.666667pt;}
.fs6_c00420{font-size:101.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y28_c00420{bottom:159.679733pt;}
.y27_c00420{bottom:174.079067pt;}
.y26_c00420{bottom:197.759720pt;}
.y25_c00420{bottom:230.399453pt;}
.y23_c00420{bottom:249.598653pt;}
.y24_c00420{bottom:249.599067pt;}
.y22_c00420{bottom:268.479453pt;}
.y21_c00420{bottom:287.359760pt;}
.y20_c00420{bottom:324.799333pt;}
.y1f_c00420{bottom:343.680133pt;}
.y1d_c00420{bottom:362.559027pt;}
.y1e_c00420{bottom:362.559040pt;}
.y1c_c00420{bottom:381.439840pt;}
.y1b_c00420{bottom:400.639200pt;}
.y1a_c00420{bottom:438.719427pt;}
.y19_c00420{bottom:457.918800pt;}
.y18_c00420{bottom:476.799600pt;}
.y17_c00420{bottom:495.680400pt;}
.y16_c00420{bottom:514.239173pt;}
.y15_c00420{bottom:557.119587pt;}
.y14_c00420{bottom:570.559573pt;}
.y13_c00420{bottom:570.560400pt;}
.y12_c00420{bottom:589.119187pt;}
.y11_c00420{bottom:612.799840pt;}
.y10_c00420{bottom:646.398920pt;}
.yf_c00420{bottom:708.159747pt;}
.ye_c00420{bottom:722.559080pt;}
.yd_c00420{bottom:741.279707pt;}
.yc_c00420{bottom:760.160080pt;}
.yb_c00420{bottom:778.879307pt;}
.ya_c00420{bottom:797.759680pt;}
.y9_c00420{bottom:821.438880pt;}
.y8_c00420{bottom:854.401227pt;}
.y7_c00420{bottom:892.160947pt;}
.y6_c00420{bottom:910.719720pt;}
.y5_c00420{bottom:910.720067pt;}
.y4_c00420{bottom:929.919440pt;}
.y3_c00420{bottom:949.119147pt;}
.y2_c00420{bottom:955.519040pt;}
.y1_c00420{bottom:967.680093pt;}
.hb_c00420{height:29.898438pt;}
.hd_c00420{height:30.082682pt;}
.he_c00420{height:34.260417pt;}
.h12_c00420{height:36.156250pt;}
.h13_c00420{height:38.213542pt;}
.h5_c00420{height:38.968750pt;}
.h11_c00420{height:39.531250pt;}
.h23_c00420{height:40.328125pt;}
.h10_c00420{height:41.507812pt;}
.h6_c00420{height:49.046875pt;}
.h16_c00420{height:53.539062pt;}
.h15_c00420{height:62.578125pt;}
.h9_c00420{height:63.968750pt;}
.h1a_c00420{height:64.664062pt;}
.h3_c00420{height:65.171875pt;}
.h25_c00420{height:66.738281pt;}
.hc_c00420{height:66.750000pt;}
.h24_c00420{height:67.392578pt;}
.h18_c00420{height:68.046875pt;}
.h2_c00420{height:68.531250pt;}
.h1_c00420{height:68.701172pt;}
.h4_c00420{height:69.203125pt;}
.h22_c00420{height:69.355469pt;}
.h21_c00420{height:70.664062pt;}
.ha_c00420{height:71.218750pt;}
.h1f_c00420{height:71.617188pt;}
.h8_c00420{height:72.590820pt;}
.h1c_c00420{height:73.007812pt;}
.h17_c00420{height:73.132813pt;}
.h14_c00420{height:73.791667pt;}
.h20_c00420{height:73.935547pt;}
.h19_c00420{height:77.875000pt;}
.hf_c00420{height:79.960938pt;}
.h1b_c00420{height:86.914062pt;}
.h26_c00420{height:90.390625pt;}
.h27_c00420{height:91.085938pt;}
.h1e_c00420{height:93.867188pt;}
.h1d_c00420{height:96.648438pt;}
.h7_c00420{height:100.145833pt;}
.h0_c00420{height:1122.666667pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x16_c00420{left:124.797480pt;}
.x1_c00420{left:126.399867pt;}
.x17_c00420{left:128.318813pt;}
.x1f_c00420{left:140.480000pt;}
.x18_c00420{left:144.638667pt;}
.x2f_c00420{left:153.279747pt;}
.x13_c00420{left:154.239200pt;}
.x2d_c00420{left:158.718813pt;}
.x32_c00420{left:169.599613pt;}
.x29_c00420{left:174.399867pt;}
.x19_c00420{left:179.838933pt;}
.x33_c00420{left:181.440000pt;}
.x20_c00420{left:182.399453pt;}
.x2_c00420{left:184.960000pt;}
.x30_c00420{left:186.559587pt;}
.x2e_c00420{left:197.438920pt;}
.x2a_c00420{left:202.239200pt;}
.x3_c00420{left:207.358933pt;}
.x21_c00420{left:210.238787pt;}
.x31_c00420{left:214.079587pt;}
.x14_c00420{left:224.318787pt;}
.x15_c00420{left:237.758787pt;}
.x4_c00420{left:248.639587pt;}
.x2b_c00420{left:250.558533pt;}
.x1d_c00420{left:262.398920pt;}
.x2c_c00420{left:263.359867pt;}
.x22_c00420{left:270.079067pt;}
.x1e_c00420{left:275.838933pt;}
.x5_c00420{left:282.559587pt;}
.x23_c00420{left:283.839867pt;}
.x24_c00420{left:328.319867pt;}
.x6_c00420{left:336.959453pt;}
.x7_c00420{left:353.919480pt;}
.x25_c00420{left:359.679200pt;}
.x8_c00420{left:367.038533pt;}
.x26_c00420{left:377.919480pt;}
.x9_c00420{left:389.119587pt;}
.x12_c00420{left:402.238773pt;}
.xa_c00420{left:403.199707pt;}
.x1a_c00420{left:420.799840pt;}
.xb_c00420{left:422.078693pt;}
.xc_c00420{left:435.839320pt;}
.x1b_c00420{left:445.119187pt;}
.xd_c00420{left:453.439453pt;}
.xe_c00420{left:470.078693pt;}
.xf_c00420{left:483.518520pt;}
.x10_c00420{left:495.999067pt;}
.x11_c00420{left:514.558507pt;}
.x27_c00420{left:577.278773pt;}
.x1c_c00420{left:601.278773pt;}
.x28_c00420{left:607.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c583cad351b934346d9890c2.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_f1108864ec75d552c9dabf97.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_520f1d778a93d9e2c1ecec75.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_4a76f2ec2864f7001be954d0.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_fac7aec6ac9099be91818ef1.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00421{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.228516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228516,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m17_c00421{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{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_c00421{vertical-align:0.000000px;}
.ls9_c00421{letter-spacing:-15.134018px;}
.lsa_c00421{letter-spacing:-6.882750px;}
.lsf_c00421{letter-spacing:-6.811230px;}
.lsb_c00421{letter-spacing:-6.118875px;}
.lsc_c00421{letter-spacing:-3.818588px;}
.ls6_c00421{letter-spacing:-3.341250px;}
.ls4_c00421{letter-spacing:-3.055500px;}
.ls15_c00421{letter-spacing:-2.706788px;}
.ls2_c00421{letter-spacing:-2.291625px;}
.ls1_c00421{letter-spacing:-1.526963px;}
.ls7_c00421{letter-spacing:-0.763875px;}
.ls5_c00421{letter-spacing:0.000000px;}
.ls12_c00421{letter-spacing:0.763875px;}
.lsd_c00421{letter-spacing:1.526963px;}
.ls13_c00421{letter-spacing:2.016000px;}
.lse_c00421{letter-spacing:2.090400px;}
.ls0_c00421{letter-spacing:2.291625px;}
.ls16_c00421{letter-spacing:2.323200px;}
.ls10_c00421{letter-spacing:2.341350px;}
.ls8_c00421{letter-spacing:2.366100px;}
.ls14_c00421{letter-spacing:3.055500px;}
.ls3_c00421{letter-spacing:6.717750px;}
.ls11_c00421{letter-spacing:32.917500px;}
.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;}
._2_c00421{margin-left:-4.300056px;}
._9_c00421{margin-left:-2.880423px;}
._3_c00421{margin-left:-1.655837px;}
._6_c00421{width:1.252049px;}
._1_c00421{width:2.971000px;}
._0_c00421{width:4.626891px;}
._4_c00421{width:6.249891px;}
._8_c00421{width:7.297778px;}
._a_c00421{width:8.460732px;}
._5_c00421{width:10.646182px;}
._7_c00421{width:14.217212px;}
.fc0_c00421{color:transparent;}
.fsd_c00421{font-size:18.750000px;}
.fse_c00421{font-size:61.500000px;}
.fs2_c00421{font-size:67.500000px;}
.fs8_c00421{font-size:69.750000px;}
.fs12_c00421{font-size:71.250000px;}
.fs6_c00421{font-size:72.000000px;}
.fs0_c00421{font-size:78.750000px;}
.fs1_c00421{font-size:79.500000px;}
.fs7_c00421{font-size:80.250000px;}
.fs3_c00421{font-size:82.500000px;}
.fs5_c00421{font-size:83.250000px;}
.fsf_c00421{font-size:84.000000px;}
.fsa_c00421{font-size:87.000000px;}
.fs11_c00421{font-size:93.750000px;}
.fs10_c00421{font-size:96.000000px;}
.fsc_c00421{font-size:96.750000px;}
.fs4_c00421{font-size:99.000000px;}
.fs9_c00421{font-size:100.500000px;}
.fsb_c00421{font-size:136.500000px;}
.y0_c00421{bottom:0.000000px;}
.y25_c00421{bottom:203.040600px;}
.y23_c00421{bottom:218.160435px;}
.y24_c00421{bottom:218.880585px;}
.y22_c00421{bottom:282.240900px;}
.y21_c00421{bottom:303.479685px;}
.y20_c00421{bottom:351.360900px;}
.y1f_c00421{bottom:367.560285px;}
.y1e_c00421{bottom:371.520285px;}
.y1d_c00421{bottom:393.840135px;}
.y1c_c00421{bottom:430.559685px;}
.y1b_c00421{bottom:430.560330px;}
.y19_c00421{bottom:473.760150px;}
.y1a_c00421{bottom:473.760720px;}
.y18_c00421{bottom:495.001050px;}
.y17_c00421{bottom:495.001950px;}
.y16_c00421{bottom:516.601230px;}
.y15_c00421{bottom:537.479850px;}
.y13_c00421{bottom:558.720585px;}
.y14_c00421{bottom:558.720750px;}
.y12_c00421{bottom:600.840105px;}
.y11_c00421{bottom:643.319820px;}
.y10_c00421{bottom:691.560285px;}
.yf_c00421{bottom:707.400285px;}
.ye_c00421{bottom:767.521845px;}
.yd_c00421{bottom:792.720015px;}
.yb_c00421{bottom:834.839055px;}
.yc_c00421{bottom:834.839535px;}
.ya_c00421{bottom:856.079955px;}
.y9_c00421{bottom:899.280855px;}
.y8_c00421{bottom:899.282040px;}
.y7_c00421{bottom:920.160645px;}
.y6_c00421{bottom:963.000555px;}
.y5_c00421{bottom:1011.240870px;}
.y4_c00421{bottom:1027.081050px;}
.y3_c00421{bottom:1090.439670px;}
.y2_c00421{bottom:1111.680090px;}
.y1_c00421{bottom:1133.640750px;}
.hf_c00421{height:18.392944px;}
.h10_c00421{height:64.142578px;}
.h3_c00421{height:70.400391px;}
.ha_c00421{height:72.747070px;}
.h14_c00421{height:74.311523px;}
.h8_c00421{height:75.093750px;}
.h1_c00421{height:77.288818px;}
.h2_c00421{height:78.024902px;}
.h9_c00421{height:78.760986px;}
.h4_c00421{height:81.533203px;}
.h5_c00421{height:82.133789px;}
.h7_c00421{height:82.274414px;}
.hc_c00421{height:85.980469px;}
.h11_c00421{height:87.609375px;}
.h13_c00421{height:97.778320px;}
.h12_c00421{height:100.125000px;}
.he_c00421{height:100.907227px;}
.h6_c00421{height:103.253906px;}
.hb_c00421{height:104.818359px;}
.hd_c00421{height:142.365234px;}
.h0_c00421{height:1263.000000px;}
.w0_c00421{width:892.500000px;}
.x0_c00421{left:0.000000px;}
.x1e_c00421{left:92.519100px;}
.x1_c00421{left:135.000000px;}
.x8_c00421{left:136.079400px;}
.x1d_c00421{left:137.158815px;}
.x9_c00421{left:141.118245px;}
.xc_c00421{left:142.199850px;}
.x13_c00421{left:148.318365px;}
.x12_c00421{left:149.399850px;}
.x14_c00421{left:154.438380px;}
.xd_c00421{left:158.040000px;}
.x3_c00421{left:159.119415px;}
.x17_c00421{left:161.280240px;}
.x18_c00421{left:173.518815px;}
.xe_c00421{left:188.639100px;}
.xa_c00421{left:189.718500px;}
.x4_c00421{left:197.279250px;}
.x1f_c00421{left:198.719535px;}
.xb_c00421{left:204.838515px;}
.x2_c00421{left:206.639700px;}
.x19_c00421{left:214.918950px;}
.xf_c00421{left:219.958350px;}
.x28_c00421{left:221.398635px;}
.x5_c00421{left:228.598500px;}
.x1a_c00421{left:230.399850px;}
.x26_c00421{left:235.080000px;}
.x20_c00421{left:243.000000px;}
.x27_c00421{left:255.959400px;}
.x15_c00421{left:258.120000px;}
.x16_c00421{left:271.438635px;}
.x21_c00421{left:287.998950px;}
.x22_c00421{left:296.639100px;}
.x10_c00421{left:350.639100px;}
.x11_c00421{left:359.279250px;}
.x6_c00421{left:422.998950px;}
.x7_c00421{left:431.639100px;}
.x29_c00421{left:451.798515px;}
.x1b_c00421{left:459.718500px;}
.x2a_c00421{left:460.799565px;}
.x1c_c00421{left:474.119985px;}
.x23_c00421{left:491.759535px;}
.x24_c00421{left:503.998950px;}
.x25_c00421{left:513.000000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls9_c00421{letter-spacing:-13.452460pt;}
.lsa_c00421{letter-spacing:-6.118000pt;}
.lsf_c00421{letter-spacing:-6.054427pt;}
.lsb_c00421{letter-spacing:-5.439000pt;}
.lsc_c00421{letter-spacing:-3.394300pt;}
.ls6_c00421{letter-spacing:-2.970000pt;}
.ls4_c00421{letter-spacing:-2.716000pt;}
.ls15_c00421{letter-spacing:-2.406033pt;}
.ls2_c00421{letter-spacing:-2.037000pt;}
.ls1_c00421{letter-spacing:-1.357300pt;}
.ls7_c00421{letter-spacing:-0.679000pt;}
.ls5_c00421{letter-spacing:0.000000pt;}
.ls12_c00421{letter-spacing:0.679000pt;}
.lsd_c00421{letter-spacing:1.357300pt;}
.ls13_c00421{letter-spacing:1.792000pt;}
.lse_c00421{letter-spacing:1.858133pt;}
.ls0_c00421{letter-spacing:2.037000pt;}
.ls16_c00421{letter-spacing:2.065067pt;}
.ls10_c00421{letter-spacing:2.081200pt;}
.ls8_c00421{letter-spacing:2.103200pt;}
.ls14_c00421{letter-spacing:2.716000pt;}
.ls3_c00421{letter-spacing:5.971333pt;}
.ls11_c00421{letter-spacing:29.260000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
._2_c00421{margin-left:-3.822272pt;}
._9_c00421{margin-left:-2.560376pt;}
._3_c00421{margin-left:-1.471855pt;}
._6_c00421{width:1.112932pt;}
._1_c00421{width:2.640889pt;}
._0_c00421{width:4.112792pt;}
._4_c00421{width:5.555458pt;}
._8_c00421{width:6.486914pt;}
._a_c00421{width:7.520650pt;}
._5_c00421{width:9.463273pt;}
._7_c00421{width:12.637521pt;}
.fsd_c00421{font-size:16.666667pt;}
.fse_c00421{font-size:54.666667pt;}
.fs2_c00421{font-size:60.000000pt;}
.fs8_c00421{font-size:62.000000pt;}
.fs12_c00421{font-size:63.333333pt;}
.fs6_c00421{font-size:64.000000pt;}
.fs0_c00421{font-size:70.000000pt;}
.fs1_c00421{font-size:70.666667pt;}
.fs7_c00421{font-size:71.333333pt;}
.fs3_c00421{font-size:73.333333pt;}
.fs5_c00421{font-size:74.000000pt;}
.fsf_c00421{font-size:74.666667pt;}
.fsa_c00421{font-size:77.333333pt;}
.fs11_c00421{font-size:83.333333pt;}
.fs10_c00421{font-size:85.333333pt;}
.fsc_c00421{font-size:86.000000pt;}
.fs4_c00421{font-size:88.000000pt;}
.fs9_c00421{font-size:89.333333pt;}
.fsb_c00421{font-size:121.333333pt;}
.y0_c00421{bottom:0.000000pt;}
.y25_c00421{bottom:180.480533pt;}
.y23_c00421{bottom:193.920387pt;}
.y24_c00421{bottom:194.560520pt;}
.y22_c00421{bottom:250.880800pt;}
.y21_c00421{bottom:269.759720pt;}
.y20_c00421{bottom:312.320800pt;}
.y1f_c00421{bottom:326.720253pt;}
.y1e_c00421{bottom:330.240253pt;}
.y1d_c00421{bottom:350.080120pt;}
.y1c_c00421{bottom:382.719720pt;}
.y1b_c00421{bottom:382.720293pt;}
.y19_c00421{bottom:421.120133pt;}
.y1a_c00421{bottom:421.120640pt;}
.y18_c00421{bottom:440.000933pt;}
.y17_c00421{bottom:440.001733pt;}
.y16_c00421{bottom:459.201093pt;}
.y15_c00421{bottom:477.759867pt;}
.y13_c00421{bottom:496.640520pt;}
.y14_c00421{bottom:496.640667pt;}
.y12_c00421{bottom:534.080093pt;}
.y11_c00421{bottom:571.839840pt;}
.y10_c00421{bottom:614.720253pt;}
.yf_c00421{bottom:628.800253pt;}
.ye_c00421{bottom:682.241640pt;}
.yd_c00421{bottom:704.640013pt;}
.yb_c00421{bottom:742.079160pt;}
.yc_c00421{bottom:742.079587pt;}
.ya_c00421{bottom:760.959960pt;}
.y9_c00421{bottom:799.360760pt;}
.y8_c00421{bottom:799.361813pt;}
.y7_c00421{bottom:817.920573pt;}
.y6_c00421{bottom:856.000493pt;}
.y5_c00421{bottom:898.880773pt;}
.y4_c00421{bottom:912.960933pt;}
.y3_c00421{bottom:969.279707pt;}
.y2_c00421{bottom:988.160080pt;}
.y1_c00421{bottom:1007.680667pt;}
.hf_c00421{height:16.349284pt;}
.h10_c00421{height:57.015625pt;}
.h3_c00421{height:62.578125pt;}
.ha_c00421{height:64.664062pt;}
.h14_c00421{height:66.054688pt;}
.h8_c00421{height:66.750000pt;}
.h1_c00421{height:68.701172pt;}
.h2_c00421{height:69.355469pt;}
.h9_c00421{height:70.009766pt;}
.h4_c00421{height:72.473958pt;}
.h5_c00421{height:73.007812pt;}
.h7_c00421{height:73.132813pt;}
.hc_c00421{height:76.427083pt;}
.h11_c00421{height:77.875000pt;}
.h13_c00421{height:86.914062pt;}
.h12_c00421{height:89.000000pt;}
.he_c00421{height:89.695312pt;}
.h6_c00421{height:91.781250pt;}
.hb_c00421{height:93.171875pt;}
.hd_c00421{height:126.546875pt;}
.h0_c00421{height:1122.666667pt;}
.w0_c00421{width:793.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1e_c00421{left:82.239200pt;}
.x1_c00421{left:120.000000pt;}
.x8_c00421{left:120.959467pt;}
.x1d_c00421{left:121.918947pt;}
.x9_c00421{left:125.438440pt;}
.xc_c00421{left:126.399867pt;}
.x13_c00421{left:131.838547pt;}
.x12_c00421{left:132.799867pt;}
.x14_c00421{left:137.278560pt;}
.xd_c00421{left:140.480000pt;}
.x3_c00421{left:141.439480pt;}
.x17_c00421{left:143.360213pt;}
.x18_c00421{left:154.238947pt;}
.xe_c00421{left:167.679200pt;}
.xa_c00421{left:168.638667pt;}
.x4_c00421{left:175.359333pt;}
.x1f_c00421{left:176.639587pt;}
.xb_c00421{left:182.078680pt;}
.x2_c00421{left:183.679733pt;}
.x19_c00421{left:191.039067pt;}
.xf_c00421{left:195.518533pt;}
.x28_c00421{left:196.798787pt;}
.x5_c00421{left:203.198667pt;}
.x1a_c00421{left:204.799867pt;}
.x26_c00421{left:208.960000pt;}
.x20_c00421{left:216.000000pt;}
.x27_c00421{left:227.519467pt;}
.x15_c00421{left:229.440000pt;}
.x16_c00421{left:241.278787pt;}
.x21_c00421{left:255.999067pt;}
.x22_c00421{left:263.679200pt;}
.x10_c00421{left:311.679200pt;}
.x11_c00421{left:319.359333pt;}
.x6_c00421{left:375.999067pt;}
.x7_c00421{left:383.679200pt;}
.x29_c00421{left:401.598680pt;}
.x1b_c00421{left:408.638667pt;}
.x2a_c00421{left:409.599613pt;}
.x1c_c00421{left:421.439987pt;}
.x23_c00421{left:437.119587pt;}
.x24_c00421{left:447.999067pt;}
.x25_c00421{left:456.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_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_0d08772ad3067392280ce684.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_ed63c1e27e48d9c4a8072161.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.432129;font-style:normal;font-weight:normal;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_b518b6d836a4c2dcea1bf733.woff2')format("woff");}.ff3_c00422{font-family:ff3_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:ff4_c00422;src:url('chunks/assets/font_bd38eff23e5fd22324be3357.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_a22be3f93770789ba684e7cd.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.364746;font-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_c00422{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.221805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221805,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{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_c00422{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls12_c00422{letter-spacing:-8.765243px;}
.ls4_c00422{letter-spacing:-8.658225px;}
.lsd_c00422{letter-spacing:-8.358975px;}
.ls13_c00422{letter-spacing:-7.529625px;}
.ls8_c00422{letter-spacing:-6.236213px;}
.ls3_c00422{letter-spacing:-5.458163px;}
.lsb_c00422{letter-spacing:-4.677750px;}
.ls17_c00422{letter-spacing:-3.975000px;}
.ls1_c00422{letter-spacing:-3.898125px;}
.ls16_c00422{letter-spacing:-3.213600px;}
.lsa_c00422{letter-spacing:-3.118500px;}
.ls7_c00422{letter-spacing:-2.338088px;}
.ls10_c00422{letter-spacing:-1.661400px;}
.lse_c00422{letter-spacing:-1.560038px;}
.ls14_c00422{letter-spacing:-0.833085px;}
.ls6_c00422{letter-spacing:-0.810000px;}
.ls5_c00422{letter-spacing:-0.802950px;}
.ls9_c00422{letter-spacing:-0.779625px;}
.ls2_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:1.560038px;}
.lsf_c00422{letter-spacing:2.023928px;}
.ls11_c00422{letter-spacing:2.068500px;}
.ls15_c00422{letter-spacing:2.397000px;}
.lsc_c00422{letter-spacing:3.898125px;}
.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;}
._7_c00422{margin-left:-15.687530px;}
._2_c00422{margin-left:-9.497500px;}
._6_c00422{margin-left:-4.310377px;}
._4_c00422{width:2.417672px;}
._3_c00422{width:3.554159px;}
._0_c00422{width:6.390399px;}
._5_c00422{width:9.575595px;}
._1_c00422{width:15.502335px;}
.fc0_c00422{color:transparent;}
.fs12_c00422{font-size:33.750000px;}
.fs9_c00422{font-size:50.250000px;}
.fs6_c00422{font-size:71.250000px;}
.fs4_c00422{font-size:72.000000px;}
.fs7_c00422{font-size:72.750000px;}
.fsc_c00422{font-size:74.250000px;}
.fs3_c00422{font-size:75.000000px;}
.fs2_c00422{font-size:75.750000px;}
.fs11_c00422{font-size:76.500000px;}
.fsa_c00422{font-size:78.000000px;}
.fs0_c00422{font-size:78.750000px;}
.fs15_c00422{font-size:79.500000px;}
.fse_c00422{font-size:81.750000px;}
.fsb_c00422{font-size:83.250000px;}
.fs8_c00422{font-size:84.000000px;}
.fsf_c00422{font-size:89.250000px;}
.fs1_c00422{font-size:99.750000px;}
.fs13_c00422{font-size:101.250000px;}
.fs14_c00422{font-size:102.000000px;}
.fsd_c00422{font-size:105.000000px;}
.fs10_c00422{font-size:128.250000px;}
.fs5_c00422{font-size:132.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1b_c00422{bottom:499.318770px;}
.y1a_c00422{bottom:499.319430px;}
.y19_c00422{bottom:520.199850px;}
.y18_c00422{bottom:568.438620px;}
.y16_c00422{bottom:583.918920px;}
.y17_c00422{bottom:583.919535px;}
.y13_c00422{bottom:604.798260px;}
.y14_c00422{bottom:604.798920px;}
.y15_c00422{bottom:605.159820px;}
.y12_c00422{bottom:626.759535px;}
.y11_c00422{bottom:626.759625px;}
.y10_c00422{bottom:647.279850px;}
.yf_c00422{bottom:668.518620px;}
.ye_c00422{bottom:695.518620px;}
.yd_c00422{bottom:732.959970px;}
.yc_c00422{bottom:753.839535px;}
.yb_c00422{bottom:796.679715px;}
.ya_c00422{bottom:839.519715px;}
.y9_c00422{bottom:860.760135px;}
.y8_c00422{bottom:908.639655px;}
.y7_c00422{bottom:924.118740px;}
.y5_c00422{bottom:988.559625px;}
.y6_c00422{bottom:988.560240px;}
.y4_c00422{bottom:1031.039340px;}
.y3_c00422{bottom:1073.518620px;}
.y2_c00422{bottom:1094.399775px;}
.y1_c00422{bottom:1137.239775px;}
.h15_c00422{height:35.200195px;}
.hb_c00422{height:52.409180px;}
.h8_c00422{height:74.311523px;}
.h3_c00422{height:74.344482px;}
.he_c00422{height:74.830078px;}
.h6_c00422{height:75.093750px;}
.h5_c00422{height:75.585938px;}
.h9_c00422{height:75.875977px;}
.h4_c00422{height:76.341797px;}
.h14_c00422{height:77.097656px;}
.hc_c00422{height:78.609375px;}
.h1_c00422{height:79.365234px;}
.h18_c00422{height:80.121094px;}
.h13_c00422{height:82.133789px;}
.h10_c00422{height:82.388672px;}
.hd_c00422{height:83.900391px;}
.ha_c00422{height:87.609375px;}
.h11_c00422{height:88.204102px;}
.h2_c00422{height:104.036133px;}
.h16_c00422{height:105.600586px;}
.h17_c00422{height:106.382812px;}
.hf_c00422{height:109.511719px;}
.h12_c00422{height:133.760742px;}
.h7_c00422{height:137.671875px;}
.h0_c00422{height:1263.000000px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.xb_c00422{left:136.799565px;}
.x11_c00422{left:137.878950px;}
.x6_c00422{left:149.038950px;}
.x15_c00422{left:150.838515px;}
.x3_c00422{left:155.879565px;}
.xc_c00422{left:158.758500px;}
.x1_c00422{left:174.598500px;}
.x13_c00422{left:186.478665px;}
.xd_c00422{left:189.718500px;}
.x16_c00422{left:192.599100px;}
.x20_c00422{left:196.199850px;}
.x14_c00422{left:200.159850px;}
.x21_c00422{left:201.239250px;}
.x4_c00422{left:217.079385px;}
.x7_c00422{left:220.319250px;}
.x17_c00422{left:223.559100px;}
.xe_c00422{left:227.159850px;}
.x25_c00422{left:230.038950px;}
.x22_c00422{left:232.558635px;}
.x8_c00422{left:233.998950px;}
.x2_c00422{left:238.679100px;}
.x1e_c00422{left:248.759535px;}
.x12_c00422{left:250.199850px;}
.x5_c00422{left:261.719100px;}
.x1f_c00422{left:274.319250px;}
.x18_c00422{left:281.519100px;}
.x19_c00422{left:282.598500px;}
.x1b_c00422{left:283.679700px;}
.x1a_c00422{left:291.238785px;}
.x1c_c00422{left:292.319850px;}
.x9_c00422{left:304.559100px;}
.x1d_c00422{left:306.719535px;}
.xa_c00422{left:318.238785px;}
.xf_c00422{left:462.239820px;}
.x10_c00422{left:471.598530px;}
.x23_c00422{left:505.080000px;}
.x24_c00422{left:511.198785px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls12_c00422{letter-spacing:-7.791327pt;}
.ls4_c00422{letter-spacing:-7.696200pt;}
.lsd_c00422{letter-spacing:-7.430200pt;}
.ls13_c00422{letter-spacing:-6.693000pt;}
.ls8_c00422{letter-spacing:-5.543300pt;}
.ls3_c00422{letter-spacing:-4.851700pt;}
.lsb_c00422{letter-spacing:-4.158000pt;}
.ls17_c00422{letter-spacing:-3.533333pt;}
.ls1_c00422{letter-spacing:-3.465000pt;}
.ls16_c00422{letter-spacing:-2.856533pt;}
.lsa_c00422{letter-spacing:-2.772000pt;}
.ls7_c00422{letter-spacing:-2.078300pt;}
.ls10_c00422{letter-spacing:-1.476800pt;}
.lse_c00422{letter-spacing:-1.386700pt;}
.ls14_c00422{letter-spacing:-0.740520pt;}
.ls6_c00422{letter-spacing:-0.720000pt;}
.ls5_c00422{letter-spacing:-0.713733pt;}
.ls9_c00422{letter-spacing:-0.693000pt;}
.ls2_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:1.386700pt;}
.lsf_c00422{letter-spacing:1.799047pt;}
.ls11_c00422{letter-spacing:1.838667pt;}
.ls15_c00422{letter-spacing:2.130667pt;}
.lsc_c00422{letter-spacing:3.465000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
._7_c00422{margin-left:-13.944471pt;}
._2_c00422{margin-left:-8.442222pt;}
._6_c00422{margin-left:-3.831447pt;}
._4_c00422{width:2.149042pt;}
._3_c00422{width:3.159252pt;}
._0_c00422{width:5.680354pt;}
._5_c00422{width:8.511640pt;}
._1_c00422{width:13.779853pt;}
.fs12_c00422{font-size:30.000000pt;}
.fs9_c00422{font-size:44.666667pt;}
.fs6_c00422{font-size:63.333333pt;}
.fs4_c00422{font-size:64.000000pt;}
.fs7_c00422{font-size:64.666667pt;}
.fsc_c00422{font-size:66.000000pt;}
.fs3_c00422{font-size:66.666667pt;}
.fs2_c00422{font-size:67.333333pt;}
.fs11_c00422{font-size:68.000000pt;}
.fsa_c00422{font-size:69.333333pt;}
.fs0_c00422{font-size:70.000000pt;}
.fs15_c00422{font-size:70.666667pt;}
.fse_c00422{font-size:72.666667pt;}
.fsb_c00422{font-size:74.000000pt;}
.fs8_c00422{font-size:74.666667pt;}
.fsf_c00422{font-size:79.333333pt;}
.fs1_c00422{font-size:88.666667pt;}
.fs13_c00422{font-size:90.000000pt;}
.fs14_c00422{font-size:90.666667pt;}
.fsd_c00422{font-size:93.333333pt;}
.fs10_c00422{font-size:114.000000pt;}
.fs5_c00422{font-size:117.333333pt;}
.y0_c00422{bottom:0.000000pt;}
.y1b_c00422{bottom:443.838907pt;}
.y1a_c00422{bottom:443.839493pt;}
.y19_c00422{bottom:462.399867pt;}
.y18_c00422{bottom:505.278773pt;}
.y16_c00422{bottom:519.039040pt;}
.y17_c00422{bottom:519.039587pt;}
.y13_c00422{bottom:537.598453pt;}
.y14_c00422{bottom:537.599040pt;}
.y15_c00422{bottom:537.919840pt;}
.y12_c00422{bottom:557.119587pt;}
.y11_c00422{bottom:557.119667pt;}
.y10_c00422{bottom:575.359867pt;}
.yf_c00422{bottom:594.238773pt;}
.ye_c00422{bottom:618.238773pt;}
.yd_c00422{bottom:651.519973pt;}
.yc_c00422{bottom:670.079587pt;}
.yb_c00422{bottom:708.159747pt;}
.ya_c00422{bottom:746.239747pt;}
.y9_c00422{bottom:765.120120pt;}
.y8_c00422{bottom:807.679693pt;}
.y7_c00422{bottom:821.438880pt;}
.y5_c00422{bottom:878.719667pt;}
.y6_c00422{bottom:878.720213pt;}
.y4_c00422{bottom:916.479413pt;}
.y3_c00422{bottom:954.238773pt;}
.y2_c00422{bottom:972.799800pt;}
.y1_c00422{bottom:1010.879800pt;}
.h15_c00422{height:31.289062pt;}
.hb_c00422{height:46.585938pt;}
.h8_c00422{height:66.054688pt;}
.h3_c00422{height:66.083984pt;}
.he_c00422{height:66.515625pt;}
.h6_c00422{height:66.750000pt;}
.h5_c00422{height:67.187500pt;}
.h9_c00422{height:67.445312pt;}
.h4_c00422{height:67.859375pt;}
.h14_c00422{height:68.531250pt;}
.hc_c00422{height:69.875000pt;}
.h1_c00422{height:70.546875pt;}
.h18_c00422{height:71.218750pt;}
.h13_c00422{height:73.007812pt;}
.h10_c00422{height:73.234375pt;}
.hd_c00422{height:74.578125pt;}
.ha_c00422{height:77.875000pt;}
.h11_c00422{height:78.403646pt;}
.h2_c00422{height:92.476562pt;}
.h16_c00422{height:93.867188pt;}
.h17_c00422{height:94.562500pt;}
.hf_c00422{height:97.343750pt;}
.h12_c00422{height:118.898438pt;}
.h7_c00422{height:122.375000pt;}
.h0_c00422{height:1122.666667pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.xb_c00422{left:121.599613pt;}
.x11_c00422{left:122.559067pt;}
.x6_c00422{left:132.479067pt;}
.x15_c00422{left:134.078680pt;}
.x3_c00422{left:138.559613pt;}
.xc_c00422{left:141.118667pt;}
.x1_c00422{left:155.198667pt;}
.x13_c00422{left:165.758813pt;}
.xd_c00422{left:168.638667pt;}
.x16_c00422{left:171.199200pt;}
.x20_c00422{left:174.399867pt;}
.x14_c00422{left:177.919867pt;}
.x21_c00422{left:178.879333pt;}
.x4_c00422{left:192.959453pt;}
.x7_c00422{left:195.839333pt;}
.x17_c00422{left:198.719200pt;}
.xe_c00422{left:201.919867pt;}
.x25_c00422{left:204.479067pt;}
.x22_c00422{left:206.718787pt;}
.x8_c00422{left:207.999067pt;}
.x2_c00422{left:212.159200pt;}
.x1e_c00422{left:221.119587pt;}
.x12_c00422{left:222.399867pt;}
.x5_c00422{left:232.639200pt;}
.x1f_c00422{left:243.839333pt;}
.x18_c00422{left:250.239200pt;}
.x19_c00422{left:251.198667pt;}
.x1b_c00422{left:252.159733pt;}
.x1a_c00422{left:258.878920pt;}
.x1c_c00422{left:259.839867pt;}
.x9_c00422{left:270.719200pt;}
.x1d_c00422{left:272.639587pt;}
.xa_c00422{left:282.878920pt;}
.xf_c00422{left:410.879840pt;}
.x10_c00422{left:419.198693pt;}
.x23_c00422{left:448.960000pt;}
.x24_c00422{left:454.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1eb5933fff28f543db2b6a56.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_96789022f0034f3dfe9ef64b.woff2')format("woff");}.ff2_c00423{font-family:ff2_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:ff3_c00423;src:url('chunks/assets/font_ef7f49b876468ef7955c70e9.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_1057f6675d8021d3d027bba5.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_8c8a6a27c45ebabdea36d9ce.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00423{transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{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);}
.m19_c00423{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{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_c00423{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m1b_c00423{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m17_c00423{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{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_c00423{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1e_c00423{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls19_c00423{letter-spacing:-13.726125px;}
.ls1d_c00423{letter-spacing:-11.459250px;}
.lsc_c00423{letter-spacing:-9.394088px;}
.ls1_c00423{letter-spacing:-7.946663px;}
.ls21_c00423{letter-spacing:-7.222163px;}
.lsa_c00423{letter-spacing:-6.504750px;}
.ls6_c00423{letter-spacing:-5.779463px;}
.ls1c_c00423{letter-spacing:-5.426550px;}
.ls1a_c00423{letter-spacing:-5.335200px;}
.ls0_c00423{letter-spacing:-5.054963px;}
.ls14_c00423{letter-spacing:-4.665600px;}
.ls2_c00423{letter-spacing:-4.330463px;}
.ls13_c00423{letter-spacing:-4.219290px;}
.ls7_c00423{letter-spacing:-3.614625px;}
.ls8_c00423{letter-spacing:-2.890125px;}
.ls17_c00423{letter-spacing:-2.362500px;}
.ls10_c00423{letter-spacing:-2.293200px;}
.ls16_c00423{letter-spacing:-2.272905px;}
.ls12_c00423{letter-spacing:-2.165693px;}
.ls9_c00423{letter-spacing:-2.165625px;}
.ls5_c00423{letter-spacing:-1.441125px;}
.lsd_c00423{letter-spacing:-0.794475px;}
.lse_c00423{letter-spacing:-0.724500px;}
.ls4_c00423{letter-spacing:0.000000px;}
.ls11_c00423{letter-spacing:0.757500px;}
.ls18_c00423{letter-spacing:1.798500px;}
.ls3_c00423{letter-spacing:2.041425px;}
.ls15_c00423{letter-spacing:2.291250px;}
.lsf_c00423{letter-spacing:2.519400px;}
.lsb_c00423{letter-spacing:3.564810px;}
.ls1e_c00423{letter-spacing:15.258128px;}
.ls1f_c00423{letter-spacing:19.334123px;}
.ls20_c00423{letter-spacing:20.439000px;}
.ls1b_c00423{letter-spacing:22.118250px;}
.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;}
._0_c00423{margin-left:-13.875678px;}
._12_c00423{margin-left:-12.402634px;}
._16_c00423{margin-left:-10.670611px;}
._f_c00423{margin-left:-7.764663px;}
._e_c00423{margin-left:-6.370803px;}
._10_c00423{margin-left:-4.496206px;}
._d_c00423{margin-left:-2.992673px;}
._17_c00423{margin-left:-1.544324px;}
._5_c00423{width:1.030267px;}
._1_c00423{width:2.292145px;}
._7_c00423{width:3.686064px;}
._4_c00423{width:4.924895px;}
._14_c00423{width:6.276606px;}
._3_c00423{width:7.517908px;}
._9_c00423{width:8.970911px;}
._13_c00423{width:10.572845px;}
._b_c00423{width:11.698074px;}
._11_c00423{width:12.796470px;}
._c_c00423{width:14.686456px;}
._6_c00423{width:16.427416px;}
._2_c00423{width:19.132695px;}
._a_c00423{width:20.655533px;}
._8_c00423{width:22.042284px;}
._15_c00423{width:33.791495px;}
.fc0_c00423{color:transparent;}
.fs12_c00423{font-size:57.750000px;}
.fs13_c00423{font-size:67.500000px;}
.fs2_c00423{font-size:69.750000px;}
.fsb_c00423{font-size:72.000000px;}
.fs9_c00423{font-size:75.000000px;}
.fsa_c00423{font-size:75.750000px;}
.fsd_c00423{font-size:76.500000px;}
.fs8_c00423{font-size:77.250000px;}
.fs6_c00423{font-size:78.000000px;}
.fs0_c00423{font-size:78.750000px;}
.fsf_c00423{font-size:79.500000px;}
.fs4_c00423{font-size:80.250000px;}
.fs3_c00423{font-size:81.000000px;}
.fse_c00423{font-size:81.750000px;}
.fs10_c00423{font-size:82.500000px;}
.fs5_c00423{font-size:84.000000px;}
.fs7_c00423{font-size:93.750000px;}
.fs1_c00423{font-size:96.750000px;}
.fsc_c00423{font-size:97.500000px;}
.fs11_c00423{font-size:101.250000px;}
.y0_c00423{bottom:0.000000px;}
.y26_c00423{bottom:177.119415px;}
.y27_c00423{bottom:177.120000px;}
.y25_c00423{bottom:198.360300px;}
.y24_c00423{bottom:224.280900px;}
.y22_c00423{bottom:241.200000px;}
.y23_c00423{bottom:241.200435px;}
.y21_c00423{bottom:262.440900px;}
.y20_c00423{bottom:283.679700px;}
.y1f_c00423{bottom:311.040600px;}
.y1e_c00423{bottom:347.040000px;}
.y1d_c00423{bottom:368.280435px;}
.y1c_c00423{bottom:389.159820px;}
.y1a_c00423{bottom:411.119955px;}
.y1b_c00423{bottom:411.120435px;}
.y19_c00423{bottom:453.599670px;}
.y18_c00423{bottom:475.200870px;}
.y17_c00423{bottom:496.439670px;}
.y15_c00423{bottom:517.319850px;}
.y16_c00423{bottom:517.320870px;}
.y14_c00423{bottom:539.279325px;}
.y13_c00423{bottom:560.159745px;}
.y12_c00423{bottom:602.639460px;}
.y11_c00423{bottom:623.880360px;}
.y10_c00423{bottom:645.121260px;}
.yf_c00423{bottom:665.639700px;}
.ye_c00423{bottom:713.879970px;}
.yd_c00423{bottom:730.440255px;}
.yb_c00423{bottom:751.680570px;}
.yc_c00423{bottom:751.680720px;}
.ya_c00423{bottom:815.040990px;}
.y9_c00423{bottom:815.759490px;}
.y8_c00423{bottom:815.760345px;}
.y7_c00423{bottom:836.640750px;}
.y6_c00423{bottom:900.719520px;}
.y5_c00423{bottom:921.960015px;}
.y4_c00423{bottom:943.200435px;}
.y3_c00423{bottom:970.559685px;}
.y2_c00423{bottom:1006.920315px;}
.y1_c00423{bottom:1135.440315px;}
.h17_c00423{height:60.231445px;}
.h18_c00423{height:70.400391px;}
.hf_c00423{height:72.562500px;}
.h3_c00423{height:72.747070px;}
.hb_c00423{height:73.608398px;}
.h14_c00423{height:74.121094px;}
.hc_c00423{height:74.344482px;}
.h11_c00423{height:75.080566px;}
.ha_c00423{height:75.816650px;}
.hd_c00423{height:76.341797px;}
.h7_c00423{height:76.552734px;}
.h1_c00423{height:77.288818px;}
.h13_c00423{height:78.024902px;}
.h5_c00423{height:78.760986px;}
.h4_c00423{height:79.497070px;}
.h12_c00423{height:80.233154px;}
.h15_c00423{height:81.533203px;}
.he_c00423{height:81.632812px;}
.h8_c00423{height:82.133789px;}
.h6_c00423{height:87.609375px;}
.h9_c00423{height:97.778320px;}
.h2_c00423{height:100.907227px;}
.h10_c00423{height:101.689453px;}
.h16_c00423{height:105.600586px;}
.h0_c00423{height:1263.000000px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x1b_c00423{left:136.438665px;}
.x11_c00423{left:137.517930px;}
.x2_c00423{left:138.598665px;}
.x1_c00423{left:140.039400px;}
.x3_c00423{left:160.559685px;}
.x1c_c00423{left:168.479685px;}
.x1a_c00423{left:172.439715px;}
.x20_c00423{left:178.558665px;}
.xa_c00423{left:181.080000px;}
.x21_c00423{left:207.719100px;}
.x12_c00423{left:224.638500px;}
.x22_c00423{left:228.239250px;}
.x29_c00423{left:229.318800px;}
.xb_c00423{left:238.679100px;}
.xd_c00423{left:250.918350px;}
.xc_c00423{left:251.999400px;}
.x4_c00423{left:261.359850px;}
.xe_c00423{left:265.679100px;}
.x13_c00423{left:272.519685px;}
.x5_c00423{left:286.199385px;}
.x1d_c00423{left:288.719100px;}
.x23_c00423{left:289.798515px;}
.x14_c00423{left:295.559685px;}
.x24_c00423{left:298.799535px;}
.x1f_c00423{left:309.598530px;}
.x1e_c00423{left:319.319850px;}
.x15_c00423{left:339.838515px;}
.x16_c00423{left:353.878950px;}
.x17_c00423{left:391.318770px;}
.x27_c00423{left:473.759085px;}
.x18_c00423{left:500.038920px;}
.x9_c00423{left:501.119985px;}
.x25_c00423{left:505.080000px;}
.x26_c00423{left:511.198785px;}
.x6_c00423{left:532.080000px;}
.x19_c00423{left:554.038920px;}
.x7_c00423{left:570.599070px;}
.x28_c00423{left:572.759535px;}
.x8_c00423{left:639.719100px;}
.xf_c00423{left:675.000000px;}
.x10_c00423{left:688.318770px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls19_c00423{letter-spacing:-12.201000pt;}
.ls1d_c00423{letter-spacing:-10.186000pt;}
.lsc_c00423{letter-spacing:-8.350300pt;}
.ls1_c00423{letter-spacing:-7.063700pt;}
.ls21_c00423{letter-spacing:-6.419700pt;}
.lsa_c00423{letter-spacing:-5.782000pt;}
.ls6_c00423{letter-spacing:-5.137300pt;}
.ls1c_c00423{letter-spacing:-4.823600pt;}
.ls1a_c00423{letter-spacing:-4.742400pt;}
.ls0_c00423{letter-spacing:-4.493300pt;}
.ls14_c00423{letter-spacing:-4.147200pt;}
.ls2_c00423{letter-spacing:-3.849300pt;}
.ls13_c00423{letter-spacing:-3.750480pt;}
.ls7_c00423{letter-spacing:-3.213000pt;}
.ls8_c00423{letter-spacing:-2.569000pt;}
.ls17_c00423{letter-spacing:-2.100000pt;}
.ls10_c00423{letter-spacing:-2.038400pt;}
.ls16_c00423{letter-spacing:-2.020360pt;}
.ls12_c00423{letter-spacing:-1.925060pt;}
.ls9_c00423{letter-spacing:-1.925000pt;}
.ls5_c00423{letter-spacing:-1.281000pt;}
.lsd_c00423{letter-spacing:-0.706200pt;}
.lse_c00423{letter-spacing:-0.644000pt;}
.ls4_c00423{letter-spacing:0.000000pt;}
.ls11_c00423{letter-spacing:0.673333pt;}
.ls18_c00423{letter-spacing:1.598667pt;}
.ls3_c00423{letter-spacing:1.814600pt;}
.ls15_c00423{letter-spacing:2.036667pt;}
.lsf_c00423{letter-spacing:2.239467pt;}
.lsb_c00423{letter-spacing:3.168720pt;}
.ls1e_c00423{letter-spacing:13.562780pt;}
.ls1f_c00423{letter-spacing:17.185887pt;}
.ls20_c00423{letter-spacing:18.168000pt;}
.ls1b_c00423{letter-spacing:19.660667pt;}
.ws0_c00423{word-spacing:0.000000pt;}
._0_c00423{margin-left:-12.333936pt;}
._12_c00423{margin-left:-11.024563pt;}
._16_c00423{margin-left:-9.484987pt;}
._f_c00423{margin-left:-6.901923pt;}
._e_c00423{margin-left:-5.662936pt;}
._10_c00423{margin-left:-3.996628pt;}
._d_c00423{margin-left:-2.660154pt;}
._17_c00423{margin-left:-1.372732pt;}
._5_c00423{width:0.915793pt;}
._1_c00423{width:2.037462pt;}
._7_c00423{width:3.276501pt;}
._4_c00423{width:4.377684pt;}
._14_c00423{width:5.579206pt;}
._3_c00423{width:6.682585pt;}
._9_c00423{width:7.974143pt;}
._13_c00423{width:9.398084pt;}
._b_c00423{width:10.398288pt;}
._11_c00423{width:11.374640pt;}
._c_c00423{width:13.054628pt;}
._6_c00423{width:14.602148pt;}
._2_c00423{width:17.006840pt;}
._a_c00423{width:18.360473pt;}
._8_c00423{width:19.593141pt;}
._15_c00423{width:30.036884pt;}
.fs12_c00423{font-size:51.333333pt;}
.fs13_c00423{font-size:60.000000pt;}
.fs2_c00423{font-size:62.000000pt;}
.fsb_c00423{font-size:64.000000pt;}
.fs9_c00423{font-size:66.666667pt;}
.fsa_c00423{font-size:67.333333pt;}
.fsd_c00423{font-size:68.000000pt;}
.fs8_c00423{font-size:68.666667pt;}
.fs6_c00423{font-size:69.333333pt;}
.fs0_c00423{font-size:70.000000pt;}
.fsf_c00423{font-size:70.666667pt;}
.fs4_c00423{font-size:71.333333pt;}
.fs3_c00423{font-size:72.000000pt;}
.fse_c00423{font-size:72.666667pt;}
.fs10_c00423{font-size:73.333333pt;}
.fs5_c00423{font-size:74.666667pt;}
.fs7_c00423{font-size:83.333333pt;}
.fs1_c00423{font-size:86.000000pt;}
.fsc_c00423{font-size:86.666667pt;}
.fs11_c00423{font-size:90.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y26_c00423{bottom:157.439480pt;}
.y27_c00423{bottom:157.440000pt;}
.y25_c00423{bottom:176.320267pt;}
.y24_c00423{bottom:199.360800pt;}
.y22_c00423{bottom:214.400000pt;}
.y23_c00423{bottom:214.400387pt;}
.y21_c00423{bottom:233.280800pt;}
.y20_c00423{bottom:252.159733pt;}
.y1f_c00423{bottom:276.480533pt;}
.y1e_c00423{bottom:308.480000pt;}
.y1d_c00423{bottom:327.360387pt;}
.y1c_c00423{bottom:345.919840pt;}
.y1a_c00423{bottom:365.439960pt;}
.y1b_c00423{bottom:365.440387pt;}
.y19_c00423{bottom:403.199707pt;}
.y18_c00423{bottom:422.400773pt;}
.y17_c00423{bottom:441.279707pt;}
.y15_c00423{bottom:459.839867pt;}
.y16_c00423{bottom:459.840773pt;}
.y14_c00423{bottom:479.359400pt;}
.y13_c00423{bottom:497.919773pt;}
.y12_c00423{bottom:535.679520pt;}
.y11_c00423{bottom:554.560320pt;}
.y10_c00423{bottom:573.441120pt;}
.yf_c00423{bottom:591.679733pt;}
.ye_c00423{bottom:634.559973pt;}
.yd_c00423{bottom:649.280227pt;}
.yb_c00423{bottom:668.160507pt;}
.yc_c00423{bottom:668.160640pt;}
.ya_c00423{bottom:724.480880pt;}
.y9_c00423{bottom:725.119547pt;}
.y8_c00423{bottom:725.120307pt;}
.y7_c00423{bottom:743.680667pt;}
.y6_c00423{bottom:800.639573pt;}
.y5_c00423{bottom:819.520013pt;}
.y4_c00423{bottom:838.400387pt;}
.y3_c00423{bottom:862.719720pt;}
.y2_c00423{bottom:895.040280pt;}
.y1_c00423{bottom:1009.280280pt;}
.h17_c00423{height:53.539062pt;}
.h18_c00423{height:62.578125pt;}
.hf_c00423{height:64.500000pt;}
.h3_c00423{height:64.664062pt;}
.hb_c00423{height:65.429688pt;}
.h14_c00423{height:65.885417pt;}
.hc_c00423{height:66.083984pt;}
.h11_c00423{height:66.738281pt;}
.ha_c00423{height:67.392578pt;}
.hd_c00423{height:67.859375pt;}
.h7_c00423{height:68.046875pt;}
.h1_c00423{height:68.701172pt;}
.h13_c00423{height:69.355469pt;}
.h5_c00423{height:70.009766pt;}
.h4_c00423{height:70.664062pt;}
.h12_c00423{height:71.318359pt;}
.h15_c00423{height:72.473958pt;}
.he_c00423{height:72.562500pt;}
.h8_c00423{height:73.007812pt;}
.h6_c00423{height:77.875000pt;}
.h9_c00423{height:86.914062pt;}
.h2_c00423{height:89.695312pt;}
.h10_c00423{height:90.390625pt;}
.h16_c00423{height:93.867188pt;}
.h0_c00423{height:1122.666667pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1b_c00423{left:121.278813pt;}
.x11_c00423{left:122.238160pt;}
.x2_c00423{left:123.198813pt;}
.x1_c00423{left:124.479467pt;}
.x3_c00423{left:142.719720pt;}
.x1c_c00423{left:149.759720pt;}
.x1a_c00423{left:153.279747pt;}
.x20_c00423{left:158.718813pt;}
.xa_c00423{left:160.960000pt;}
.x21_c00423{left:184.639200pt;}
.x12_c00423{left:199.678667pt;}
.x22_c00423{left:202.879333pt;}
.x29_c00423{left:203.838933pt;}
.xb_c00423{left:212.159200pt;}
.xd_c00423{left:223.038533pt;}
.xc_c00423{left:223.999467pt;}
.x4_c00423{left:232.319867pt;}
.xe_c00423{left:236.159200pt;}
.x13_c00423{left:242.239720pt;}
.x5_c00423{left:254.399453pt;}
.x1d_c00423{left:256.639200pt;}
.x23_c00423{left:257.598680pt;}
.x14_c00423{left:262.719720pt;}
.x24_c00423{left:265.599587pt;}
.x1f_c00423{left:275.198693pt;}
.x1e_c00423{left:283.839867pt;}
.x15_c00423{left:302.078680pt;}
.x16_c00423{left:314.559067pt;}
.x17_c00423{left:347.838907pt;}
.x27_c00423{left:421.119187pt;}
.x18_c00423{left:444.479040pt;}
.x9_c00423{left:445.439987pt;}
.x25_c00423{left:448.960000pt;}
.x26_c00423{left:454.398920pt;}
.x6_c00423{left:472.960000pt;}
.x19_c00423{left:492.479040pt;}
.x7_c00423{left:507.199173pt;}
.x28_c00423{left:509.119587pt;}
.x8_c00423{left:568.639200pt;}
.xf_c00423{left:600.000000pt;}
.x10_c00423{left:611.838907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1cc19644979e161e3054853.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_9a118c0ad8bdf5062a7553e2.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_c2be249d5d51cc5e3016c74e.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_e47dd49ee431bf6aaa1f3a87.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_6349ffd08a74efff969d102c.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_1a95af034bc867f267ff9c4d.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00424;src:url('chunks/assets/font_4ec77e49058dd331100a1fd8.woff2')format("woff");}.ff7_c00424{font-family:ff7_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24_c00424{transform:matrix(0.168269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168269,0.000000,0.000000,0.250000,0,0);}
.m27_c00424{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m21_c00424{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1b_c00424{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m1d_c00424{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m2d_c00424{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m2f_c00424{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m23_c00424{transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);}
.m25_c00424{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m2c_c00424{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.me_c00424{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m34_c00424{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m1a_c00424{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.236641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236641,0.000000,0.000000,0.250000,0,0);}
.m1f_c00424{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m2b_c00424{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m2e_c00424{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m22_c00424{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m19_c00424{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m33_c00424{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m2a_c00424{transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);}
.mb_c00424{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m15_c00424{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m12_c00424{transform:matrix(0.365385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365385,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);}
.m31_c00424{transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);}
.m32_c00424{transform:matrix(0.414474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414474,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.md_c00424{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);}
.m9_c00424{transform:matrix(0.441964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441964,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.493056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493056,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.507353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507353,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.521186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521186,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.563830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563830,0.000000,0.000000,0.250000,0,0);}
.m11_c00424{transform:matrix(0.573171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573171,0.000000,0.000000,0.250000,0,0);}
.m14_c00424{transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls17_c00424{letter-spacing:-10.111500px;}
.ls28_c00424{letter-spacing:-10.090350px;}
.ls25_c00424{letter-spacing:-9.394088px;}
.ls30_c00424{letter-spacing:-8.671163px;}
.ls7_c00424{letter-spacing:-8.460600px;}
.ls1c_c00424{letter-spacing:-8.445150px;}
.ls19_c00424{letter-spacing:-7.946663px;}
.ls20_c00424{letter-spacing:-7.607250px;}
.ls14_c00424{letter-spacing:-7.489350px;}
.ls1f_c00424{letter-spacing:-7.222163px;}
.ls12_c00424{letter-spacing:-6.671925px;}
.ls21_c00424{letter-spacing:-6.504750px;}
.ls11_c00424{letter-spacing:-6.214575px;}
.ls22_c00424{letter-spacing:-5.779463px;}
.ls2f_c00424{letter-spacing:-5.300400px;}
.ls15_c00424{letter-spacing:-5.209627px;}
.ls18_c00424{letter-spacing:-5.054963px;}
.ls4_c00424{letter-spacing:-4.330463px;}
.lse_c00424{letter-spacing:-4.172775px;}
.ls29_c00424{letter-spacing:-3.923925px;}
.ls2_c00424{letter-spacing:-3.614625px;}
.ls26_c00424{letter-spacing:-3.081975px;}
.ls3_c00424{letter-spacing:-2.890125px;}
.ls16_c00424{letter-spacing:-2.165625px;}
.ls23_c00424{letter-spacing:-1.574895px;}
.ls24_c00424{letter-spacing:-1.441125px;}
.lsf_c00424{letter-spacing:-0.856800px;}
.ls13_c00424{letter-spacing:-0.739755px;}
.ls1d_c00424{letter-spacing:-0.731588px;}
.ls1b_c00424{letter-spacing:-0.724500px;}
.ls6_c00424{letter-spacing:-0.666578px;}
.ls5_c00424{letter-spacing:-0.380700px;}
.lsb_c00424{letter-spacing:0.000000px;}
.ls1a_c00424{letter-spacing:0.068775px;}
.ls8_c00424{letter-spacing:0.780225px;}
.ls2e_c00424{letter-spacing:0.799200px;}
.ls1_c00424{letter-spacing:1.628550px;}
.ls1e_c00424{letter-spacing:1.782000px;}
.ls2a_c00424{letter-spacing:2.060400px;}
.ls27_c00424{letter-spacing:4.237500px;}
.lsd_c00424{letter-spacing:4.501350px;}
.ls0_c00424{letter-spacing:5.693280px;}
.lsc_c00424{letter-spacing:7.402650px;}
.ls2c_c00424{letter-spacing:12.562800px;}
.ls2b_c00424{letter-spacing:14.198700px;}
.ls2d_c00424{letter-spacing:16.958400px;}
.ls9_c00424{letter-spacing:18.559380px;}
.ls10_c00424{letter-spacing:26.846400px;}
.lsa_c00424{letter-spacing:70.153950px;}
.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;}
._3_c00424{margin-left:-46.013329px;}
._18_c00424{margin-left:-25.704231px;}
._4_c00424{margin-left:-22.146248px;}
._17_c00424{margin-left:-20.270351px;}
._6_c00424{margin-left:-8.347558px;}
._16_c00424{margin-left:-5.945596px;}
._15_c00424{margin-left:-4.886871px;}
._f_c00424{margin-left:-2.992673px;}
._19_c00424{margin-left:-1.023504px;}
._b_c00424{width:1.697973px;}
._0_c00424{width:3.552954px;}
._8_c00424{width:4.638072px;}
._a_c00424{width:5.879020px;}
._1a_c00424{width:7.129606px;}
._9_c00424{width:8.525901px;}
._12_c00424{width:10.132336px;}
._d_c00424{width:11.973555px;}
._10_c00424{width:14.230660px;}
._e_c00424{width:16.080259px;}
._1_c00424{width:17.708997px;}
._c_c00424{width:19.142088px;}
._13_c00424{width:21.055344px;}
._7_c00424{width:25.300713px;}
._2_c00424{width:29.812523px;}
._11_c00424{width:52.219486px;}
._5_c00424{width:57.071207px;}
._14_c00424{width:78.939737px;}
.fc0_c00424{color:transparent;}
.fs10_c00424{font-size:24.750000px;}
.fs9_c00424{font-size:25.500000px;}
.fs1_c00424{font-size:27.000000px;}
.fsd_c00424{font-size:28.500000px;}
.fsf_c00424{font-size:29.250000px;}
.fse_c00424{font-size:30.750000px;}
.fsa_c00424{font-size:31.500000px;}
.fs2_c00424{font-size:35.250000px;}
.fsb_c00424{font-size:36.000000px;}
.fs5_c00424{font-size:42.000000px;}
.fs6_c00424{font-size:44.250000px;}
.fsc_c00424{font-size:48.000000px;}
.fs3_c00424{font-size:60.000000px;}
.fs18_c00424{font-size:63.000000px;}
.fs13_c00424{font-size:64.500000px;}
.fs11_c00424{font-size:67.500000px;}
.fs8_c00424{font-size:71.250000px;}
.fs14_c00424{font-size:73.500000px;}
.fs1c_c00424{font-size:76.500000px;}
.fs4_c00424{font-size:77.250000px;}
.fs17_c00424{font-size:78.000000px;}
.fs0_c00424{font-size:78.750000px;}
.fs19_c00424{font-size:79.500000px;}
.fs1a_c00424{font-size:80.250000px;}
.fs15_c00424{font-size:81.000000px;}
.fs1b_c00424{font-size:81.750000px;}
.fs21_c00424{font-size:83.250000px;}
.fs16_c00424{font-size:84.000000px;}
.fs7_c00424{font-size:84.750000px;}
.fs1f_c00424{font-size:85.500000px;}
.fs1e_c00424{font-size:96.750000px;}
.fs12_c00424{font-size:98.250000px;}
.fs1d_c00424{font-size:99.750000px;}
.fs20_c00424{font-size:102.000000px;}
.y0_c00424{bottom:0.000000px;}
.y2a_c00424{bottom:221.400150px;}
.y29_c00424{bottom:242.278755px;}
.y28_c00424{bottom:263.519670px;}
.y27_c00424{bottom:306.359580px;}
.y26_c00424{bottom:327.598365px;}
.y25_c00424{bottom:369.719700px;}
.y24_c00424{bottom:390.958485px;}
.y23_c00424{bottom:412.199415px;}
.y22_c00424{bottom:433.440315px;}
.y21_c00424{bottom:455.039985px;}
.y20_c00424{bottom:455.040510px;}
.y1f_c00424{bottom:498.238785px;}
.y1e_c00424{bottom:519.479715px;}
.y1d_c00424{bottom:582.840135px;}
.y1b_c00424{bottom:604.438770px;}
.y1c_c00424{bottom:604.439670px;}
.y1a_c00424{bottom:625.679700px;}
.y19_c00424{bottom:646.920600px;}
.y17_c00424{bottom:673.200435px;}
.y18_c00424{bottom:673.920600px;}
.y15_c00424{bottom:710.279250px;}
.y16_c00424{bottom:710.640150px;}
.y14_c00424{bottom:731.160420px;}
.y13_c00424{bottom:779.760135px;}
.y12_c00424{bottom:795.959385px;}
.y11_c00424{bottom:817.199805px;}
.y10_c00424{bottom:838.620030px;}
.yf_c00424{bottom:860.039985px;}
.ye_c00424{bottom:881.639655px;}
.yd_c00424{bottom:902.879970px;}
.yc_c00424{bottom:929.519070px;}
.yb_c00424{bottom:966.239805px;}
.y9_c00424{bottom:1008.719130px;}
.ya_c00424{bottom:1008.719520px;}
.y7_c00424{bottom:1029.959535px;}
.y8_c00424{bottom:1029.960015px;}
.y6_c00424{bottom:1051.200435px;}
.y5_c00424{bottom:1072.079955px;}
.y2_c00424{bottom:1072.800105px;}
.y4_c00424{bottom:1076.760135px;}
.y3_c00424{bottom:1077.480285px;}
.y1_c00424{bottom:1093.679715px;}
.h14_c00424{height:24.459961px;}
.ha_c00424{height:25.699219px;}
.h13_c00424{height:26.595703px;}
.h10_c00424{height:27.957275px;}
.h2_c00424{height:28.160156px;}
.h12_c00424{height:28.907227px;}
.h2b_c00424{height:29.724609px;}
.h11_c00424{height:30.990234px;}
.hf_c00424{height:31.130859px;}
.hb_c00424{height:32.853516px;}
.h3_c00424{height:35.525391px;}
.hd_c00424{height:37.546875px;}
.h6_c00424{height:43.804688px;}
.h7_c00424{height:44.595703px;}
.hc_c00424{height:46.151367px;}
.he_c00424{height:50.062500px;}
.h4_c00424{height:59.296875px;}
.h1c_c00424{height:65.707031px;}
.h17_c00424{height:67.271484px;}
.h15_c00424{height:70.400391px;}
.h9_c00424{height:74.311523px;}
.h1b_c00424{height:76.552734px;}
.h18_c00424{height:76.658203px;}
.h1_c00424{height:77.288818px;}
.h5_c00424{height:77.853516px;}
.h1d_c00424{height:78.024902px;}
.h1e_c00424{height:78.760986px;}
.h19_c00424{height:79.497070px;}
.h22_c00424{height:79.787109px;}
.h1f_c00424{height:80.233154px;}
.h26_c00424{height:80.569336px;}
.h2a_c00424{height:80.876953px;}
.h21_c00424{height:81.351562px;}
.h29_c00424{height:82.133789px;}
.h2d_c00424{height:82.441406px;}
.h23_c00424{height:83.177490px;}
.h8_c00424{height:83.756836px;}
.h2c_c00424{height:83.900391px;}
.h27_c00424{height:83.913574px;}
.h20_c00424{height:85.412109px;}
.h1a_c00424{height:87.609375px;}
.h25_c00424{height:100.907227px;}
.h16_c00424{height:102.471680px;}
.h24_c00424{height:104.036133px;}
.h28_c00424{height:106.382812px;}
.h0_c00424{height:1263.000000px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x3b_c00424{left:137.878950px;}
.x12_c00424{left:138.957345px;}
.x1_c00424{left:141.118815px;}
.x33_c00424{left:142.559100px;}
.x2_c00424{left:149.038950px;}
.x1e_c00424{left:156.238785px;}
.x13_c00424{left:160.918950px;}
.x3c_c00424{left:164.519685px;}
.x10_c00424{left:177.120000px;}
.x24_c00424{left:187.559685px;}
.x11_c00424{left:191.158785px;}
.x38_c00424{left:194.039400px;}
.x34_c00424{left:196.559100px;}
.x14_c00424{left:200.878350px;}
.x1f_c00424{left:203.759100px;}
.x3_c00424{left:209.159385px;}
.x39_c00424{left:225.358635px;}
.x3d_c00424{left:231.120000px;}
.x15_c00424{left:232.199385px;}
.x20_c00424{left:234.719100px;}
.x4_c00424{left:236.518635px;}
.x35_c00424{left:241.918950px;}
.x36_c00424{left:260.278800px;}
.x18_c00424{left:262.439250px;}
.x2e_c00424{left:270.000000px;}
.x2f_c00424{left:283.318800px;}
.x5_c00424{left:285.120000px;}
.x19_c00424{left:287.278800px;}
.x21_c00424{left:296.639100px;}
.x25_c00424{left:302.039385px;}
.x30_c00424{left:303.479685px;}
.x37_c00424{left:305.279250px;}
.x22_c00424{left:311.399850px;}
.x26_c00424{left:317.518635px;}
.x6_c00424{left:327.599100px;}
.x3a_c00424{left:331.918350px;}
.x27_c00424{left:367.558635px;}
.x28_c00424{left:385.918350px;}
.x7_c00424{left:390.959385px;}
.x29_c00424{left:402.839535px;}
.x8_c00424{left:412.559100px;}
.x2a_c00424{left:422.998950px;}
.x9_c00424{left:428.758530px;}
.xf_c00424{left:432.000000px;}
.x16_c00424{left:433.079400px;}
.xa_c00424{left:449.998950px;}
.x17_c00424{left:452.159415px;}
.xb_c00424{left:467.279250px;}
.x1b_c00424{left:502.558635px;}
.x1c_c00424{left:506.879520px;}
.xc_c00424{left:526.318770px;}
.x1d_c00424{left:545.039385px;}
.xd_c00424{left:547.559100px;}
.x2b_c00424{left:557.278800px;}
.x2c_c00424{left:573.118785px;}
.xe_c00424{left:602.279250px;}
.x1a_c00424{left:641.159370px;}
.x2d_c00424{left:648.000000px;}
.x23_c00424{left:658.439670px;}
.x31_c00424{left:669.238770px;}
.x32_c00424{left:682.199850px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls17_c00424{letter-spacing:-8.988000pt;}
.ls28_c00424{letter-spacing:-8.969200pt;}
.ls25_c00424{letter-spacing:-8.350300pt;}
.ls30_c00424{letter-spacing:-7.707700pt;}
.ls7_c00424{letter-spacing:-7.520533pt;}
.ls1c_c00424{letter-spacing:-7.506800pt;}
.ls19_c00424{letter-spacing:-7.063700pt;}
.ls20_c00424{letter-spacing:-6.762000pt;}
.ls14_c00424{letter-spacing:-6.657200pt;}
.ls1f_c00424{letter-spacing:-6.419700pt;}
.ls12_c00424{letter-spacing:-5.930600pt;}
.ls21_c00424{letter-spacing:-5.782000pt;}
.ls11_c00424{letter-spacing:-5.524067pt;}
.ls22_c00424{letter-spacing:-5.137300pt;}
.ls2f_c00424{letter-spacing:-4.711467pt;}
.ls15_c00424{letter-spacing:-4.630780pt;}
.ls18_c00424{letter-spacing:-4.493300pt;}
.ls4_c00424{letter-spacing:-3.849300pt;}
.lse_c00424{letter-spacing:-3.709133pt;}
.ls29_c00424{letter-spacing:-3.487933pt;}
.ls2_c00424{letter-spacing:-3.213000pt;}
.ls26_c00424{letter-spacing:-2.739533pt;}
.ls3_c00424{letter-spacing:-2.569000pt;}
.ls16_c00424{letter-spacing:-1.925000pt;}
.ls23_c00424{letter-spacing:-1.399907pt;}
.ls24_c00424{letter-spacing:-1.281000pt;}
.lsf_c00424{letter-spacing:-0.761600pt;}
.ls13_c00424{letter-spacing:-0.657560pt;}
.ls1d_c00424{letter-spacing:-0.650300pt;}
.ls1b_c00424{letter-spacing:-0.644000pt;}
.ls6_c00424{letter-spacing:-0.592513pt;}
.ls5_c00424{letter-spacing:-0.338400pt;}
.lsb_c00424{letter-spacing:0.000000pt;}
.ls1a_c00424{letter-spacing:0.061133pt;}
.ls8_c00424{letter-spacing:0.693533pt;}
.ls2e_c00424{letter-spacing:0.710400pt;}
.ls1_c00424{letter-spacing:1.447600pt;}
.ls1e_c00424{letter-spacing:1.584000pt;}
.ls2a_c00424{letter-spacing:1.831467pt;}
.ls27_c00424{letter-spacing:3.766667pt;}
.lsd_c00424{letter-spacing:4.001200pt;}
.ls0_c00424{letter-spacing:5.060693pt;}
.lsc_c00424{letter-spacing:6.580133pt;}
.ls2c_c00424{letter-spacing:11.166933pt;}
.ls2b_c00424{letter-spacing:12.621067pt;}
.ls2d_c00424{letter-spacing:15.074133pt;}
.ls9_c00424{letter-spacing:16.497227pt;}
.ls10_c00424{letter-spacing:23.863467pt;}
.lsa_c00424{letter-spacing:62.359067pt;}
.ws0_c00424{word-spacing:0.000000pt;}
._3_c00424{margin-left:-40.900737pt;}
._18_c00424{margin-left:-22.848206pt;}
._4_c00424{margin-left:-19.685554pt;}
._17_c00424{margin-left:-18.018090pt;}
._6_c00424{margin-left:-7.420051pt;}
._16_c00424{margin-left:-5.284974pt;}
._15_c00424{margin-left:-4.343885pt;}
._f_c00424{margin-left:-2.660154pt;}
._19_c00424{margin-left:-0.909782pt;}
._b_c00424{width:1.509309pt;}
._0_c00424{width:3.158182pt;}
._8_c00424{width:4.122730pt;}
._a_c00424{width:5.225795pt;}
._1a_c00424{width:6.337428pt;}
._9_c00424{width:7.578579pt;}
._12_c00424{width:9.006521pt;}
._d_c00424{width:10.643160pt;}
._10_c00424{width:12.649475pt;}
._e_c00424{width:14.293563pt;}
._1_c00424{width:15.741330pt;}
._c_c00424{width:17.015189pt;}
._13_c00424{width:18.715861pt;}
._7_c00424{width:22.489523pt;}
._2_c00424{width:26.500021pt;}
._11_c00424{width:46.417321pt;}
._5_c00424{width:50.729962pt;}
._14_c00424{width:70.168655pt;}
.fs10_c00424{font-size:22.000000pt;}
.fs9_c00424{font-size:22.666667pt;}
.fs1_c00424{font-size:24.000000pt;}
.fsd_c00424{font-size:25.333333pt;}
.fsf_c00424{font-size:26.000000pt;}
.fse_c00424{font-size:27.333333pt;}
.fsa_c00424{font-size:28.000000pt;}
.fs2_c00424{font-size:31.333333pt;}
.fsb_c00424{font-size:32.000000pt;}
.fs5_c00424{font-size:37.333333pt;}
.fs6_c00424{font-size:39.333333pt;}
.fsc_c00424{font-size:42.666667pt;}
.fs3_c00424{font-size:53.333333pt;}
.fs18_c00424{font-size:56.000000pt;}
.fs13_c00424{font-size:57.333333pt;}
.fs11_c00424{font-size:60.000000pt;}
.fs8_c00424{font-size:63.333333pt;}
.fs14_c00424{font-size:65.333333pt;}
.fs1c_c00424{font-size:68.000000pt;}
.fs4_c00424{font-size:68.666667pt;}
.fs17_c00424{font-size:69.333333pt;}
.fs0_c00424{font-size:70.000000pt;}
.fs19_c00424{font-size:70.666667pt;}
.fs1a_c00424{font-size:71.333333pt;}
.fs15_c00424{font-size:72.000000pt;}
.fs1b_c00424{font-size:72.666667pt;}
.fs21_c00424{font-size:74.000000pt;}
.fs16_c00424{font-size:74.666667pt;}
.fs7_c00424{font-size:75.333333pt;}
.fs1f_c00424{font-size:76.000000pt;}
.fs1e_c00424{font-size:86.000000pt;}
.fs12_c00424{font-size:87.333333pt;}
.fs1d_c00424{font-size:88.666667pt;}
.fs20_c00424{font-size:90.666667pt;}
.y0_c00424{bottom:0.000000pt;}
.y2a_c00424{bottom:196.800133pt;}
.y29_c00424{bottom:215.358893pt;}
.y28_c00424{bottom:234.239707pt;}
.y27_c00424{bottom:272.319627pt;}
.y26_c00424{bottom:291.198547pt;}
.y25_c00424{bottom:328.639733pt;}
.y24_c00424{bottom:347.518653pt;}
.y23_c00424{bottom:366.399480pt;}
.y22_c00424{bottom:385.280280pt;}
.y21_c00424{bottom:404.479987pt;}
.y20_c00424{bottom:404.480453pt;}
.y1f_c00424{bottom:442.878920pt;}
.y1e_c00424{bottom:461.759747pt;}
.y1d_c00424{bottom:518.080120pt;}
.y1b_c00424{bottom:537.278907pt;}
.y1c_c00424{bottom:537.279707pt;}
.y1a_c00424{bottom:556.159733pt;}
.y19_c00424{bottom:575.040533pt;}
.y17_c00424{bottom:598.400387pt;}
.y18_c00424{bottom:599.040533pt;}
.y15_c00424{bottom:631.359333pt;}
.y16_c00424{bottom:631.680133pt;}
.y14_c00424{bottom:649.920373pt;}
.y13_c00424{bottom:693.120120pt;}
.y12_c00424{bottom:707.519453pt;}
.y11_c00424{bottom:726.399827pt;}
.y10_c00424{bottom:745.440027pt;}
.yf_c00424{bottom:764.479987pt;}
.ye_c00424{bottom:783.679693pt;}
.yd_c00424{bottom:802.559973pt;}
.yc_c00424{bottom:826.239173pt;}
.yb_c00424{bottom:858.879827pt;}
.y9_c00424{bottom:896.639227pt;}
.ya_c00424{bottom:896.639573pt;}
.y7_c00424{bottom:915.519587pt;}
.y8_c00424{bottom:915.520013pt;}
.y6_c00424{bottom:934.400387pt;}
.y5_c00424{bottom:952.959960pt;}
.y2_c00424{bottom:953.600093pt;}
.y4_c00424{bottom:957.120120pt;}
.y3_c00424{bottom:957.760253pt;}
.y1_c00424{bottom:972.159747pt;}
.h14_c00424{height:21.742187pt;}
.ha_c00424{height:22.843750pt;}
.h13_c00424{height:23.640625pt;}
.h10_c00424{height:24.850911pt;}
.h2_c00424{height:25.031250pt;}
.h12_c00424{height:25.695312pt;}
.h2b_c00424{height:26.421875pt;}
.h11_c00424{height:27.546875pt;}
.hf_c00424{height:27.671875pt;}
.hb_c00424{height:29.203125pt;}
.h3_c00424{height:31.578125pt;}
.hd_c00424{height:33.375000pt;}
.h6_c00424{height:38.937500pt;}
.h7_c00424{height:39.640625pt;}
.hc_c00424{height:41.023438pt;}
.he_c00424{height:44.500000pt;}
.h4_c00424{height:52.708333pt;}
.h1c_c00424{height:58.406250pt;}
.h17_c00424{height:59.796875pt;}
.h15_c00424{height:62.578125pt;}
.h9_c00424{height:66.054688pt;}
.h1b_c00424{height:68.046875pt;}
.h18_c00424{height:68.140625pt;}
.h1_c00424{height:68.701172pt;}
.h5_c00424{height:69.203125pt;}
.h1d_c00424{height:69.355469pt;}
.h1e_c00424{height:70.009766pt;}
.h19_c00424{height:70.664062pt;}
.h22_c00424{height:70.921875pt;}
.h1f_c00424{height:71.318359pt;}
.h26_c00424{height:71.617188pt;}
.h2a_c00424{height:71.890625pt;}
.h21_c00424{height:72.312500pt;}
.h29_c00424{height:73.007812pt;}
.h2d_c00424{height:73.281250pt;}
.h23_c00424{height:73.935547pt;}
.h8_c00424{height:74.450521pt;}
.h2c_c00424{height:74.578125pt;}
.h27_c00424{height:74.589844pt;}
.h20_c00424{height:75.921875pt;}
.h1a_c00424{height:77.875000pt;}
.h25_c00424{height:89.695312pt;}
.h16_c00424{height:91.085938pt;}
.h24_c00424{height:92.476562pt;}
.h28_c00424{height:94.562500pt;}
.h0_c00424{height:1122.666667pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x3b_c00424{left:122.559067pt;}
.x12_c00424{left:123.517640pt;}
.x1_c00424{left:125.438947pt;}
.x33_c00424{left:126.719200pt;}
.x2_c00424{left:132.479067pt;}
.x1e_c00424{left:138.878920pt;}
.x13_c00424{left:143.039067pt;}
.x3c_c00424{left:146.239720pt;}
.x10_c00424{left:157.440000pt;}
.x24_c00424{left:166.719720pt;}
.x11_c00424{left:169.918920pt;}
.x38_c00424{left:172.479467pt;}
.x34_c00424{left:174.719200pt;}
.x14_c00424{left:178.558533pt;}
.x1f_c00424{left:181.119200pt;}
.x3_c00424{left:185.919453pt;}
.x39_c00424{left:200.318787pt;}
.x3d_c00424{left:205.440000pt;}
.x15_c00424{left:206.399453pt;}
.x20_c00424{left:208.639200pt;}
.x4_c00424{left:210.238787pt;}
.x35_c00424{left:215.039067pt;}
.x36_c00424{left:231.358933pt;}
.x18_c00424{left:233.279333pt;}
.x2e_c00424{left:240.000000pt;}
.x2f_c00424{left:251.838933pt;}
.x5_c00424{left:253.440000pt;}
.x19_c00424{left:255.358933pt;}
.x21_c00424{left:263.679200pt;}
.x25_c00424{left:268.479453pt;}
.x30_c00424{left:269.759720pt;}
.x37_c00424{left:271.359333pt;}
.x22_c00424{left:276.799867pt;}
.x26_c00424{left:282.238787pt;}
.x6_c00424{left:291.199200pt;}
.x3a_c00424{left:295.038533pt;}
.x27_c00424{left:326.718787pt;}
.x28_c00424{left:343.038533pt;}
.x7_c00424{left:347.519453pt;}
.x29_c00424{left:358.079587pt;}
.x8_c00424{left:366.719200pt;}
.x2a_c00424{left:375.999067pt;}
.x9_c00424{left:381.118693pt;}
.xf_c00424{left:384.000000pt;}
.x16_c00424{left:384.959467pt;}
.xa_c00424{left:399.999067pt;}
.x17_c00424{left:401.919480pt;}
.xb_c00424{left:415.359333pt;}
.x1b_c00424{left:446.718787pt;}
.x1c_c00424{left:450.559573pt;}
.xc_c00424{left:467.838907pt;}
.x1d_c00424{left:484.479453pt;}
.xd_c00424{left:486.719200pt;}
.x2b_c00424{left:495.358933pt;}
.x2c_c00424{left:509.438920pt;}
.xe_c00424{left:535.359333pt;}
.x1a_c00424{left:569.919440pt;}
.x2d_c00424{left:576.000000pt;}
.x23_c00424{left:585.279707pt;}
.x31_c00424{left:594.878907pt;}
.x32_c00424{left:606.399867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03563007d70ef89e324a831d.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_4153960ac5b745a0401fb7b5.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_1b6265616f07d26aeda22dc9.woff2')format("woff");}.ff3_c00425{font-family:ff3_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:ff4_c00425;src:url('chunks/assets/font_5a61b4b02ab4b0ff7a457a03.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_3177a692b03bb16b632ce3b9.woff2')format("woff");}.ff5_c00425{font-family:ff5_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:ff6_c00425;src:url('chunks/assets/font_4ec77e49058dd331100a1fd8.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00425{transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162844,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.176647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176647,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.178218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178218,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.me_c00425{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.270661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270661,0.000000,0.000000,0.250000,0,0);}
.m14_c00425{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315534,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.383065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383065,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.391566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391566,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.955224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955224,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls15_c00425{letter-spacing:-15.407955px;}
.ls1d_c00425{letter-spacing:-7.647413px;}
.ls14_c00425{letter-spacing:-6.882750px;}
.ls16_c00425{letter-spacing:-5.734800px;}
.ls18_c00425{letter-spacing:-5.354213px;}
.ls17_c00425{letter-spacing:-5.257050px;}
.ls8_c00425{letter-spacing:-4.916175px;}
.ls19_c00425{letter-spacing:-4.645950px;}
.lse_c00425{letter-spacing:-4.591125px;}
.ls1a_c00425{letter-spacing:-3.915300px;}
.ls11_c00425{letter-spacing:-3.818588px;}
.ls6_c00425{letter-spacing:-3.055500px;}
.ls4_c00425{letter-spacing:-2.291625px;}
.lsd_c00425{letter-spacing:-1.526963px;}
.lsb_c00425{letter-spacing:-1.241175px;}
.ls12_c00425{letter-spacing:-0.763875px;}
.ls20_c00425{letter-spacing:-0.703800px;}
.lsf_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:0.763875px;}
.ls10_c00425{letter-spacing:0.825390px;}
.ls9_c00425{letter-spacing:1.162800px;}
.ls13_c00425{letter-spacing:2.108700px;}
.ls1f_c00425{letter-spacing:2.211128px;}
.ls1e_c00425{letter-spacing:2.230268px;}
.ls3_c00425{letter-spacing:2.291625px;}
.ls0_c00425{letter-spacing:3.055500px;}
.ls2_c00425{letter-spacing:3.818588px;}
.ls1c_c00425{letter-spacing:4.247228px;}
.lsc_c00425{letter-spacing:6.812400px;}
.ls7_c00425{letter-spacing:6.907875px;}
.ls5_c00425{letter-spacing:7.647413px;}
.lsa_c00425{letter-spacing:9.915517px;}
.ls1b_c00425{letter-spacing:20.664600px;}
.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;}
._d_c00425{margin-left:-11.133079px;}
._e_c00425{margin-left:-9.182311px;}
._c_c00425{margin-left:-7.203782px;}
._2_c00425{margin-left:-3.155237px;}
._6_c00425{width:2.086309px;}
._a_c00425{width:3.306636px;}
._0_c00425{width:4.626891px;}
._5_c00425{width:5.832936px;}
._8_c00425{width:6.851265px;}
._9_c00425{width:8.818677px;}
._b_c00425{width:10.309507px;}
._4_c00425{width:11.398550px;}
._3_c00425{width:13.585484px;}
._1_c00425{width:18.322296px;}
._7_c00425{width:24.113372px;}
.fc0_c00425{color:transparent;}
.fs19_c00425{font-size:36.000000px;}
.fs4_c00425{font-size:36.750000px;}
.fs12_c00425{font-size:42.750000px;}
.fs2_c00425{font-size:44.250000px;}
.fs10_c00425{font-size:46.500000px;}
.fsf_c00425{font-size:49.500000px;}
.fs5_c00425{font-size:50.250000px;}
.fs3_c00425{font-size:57.000000px;}
.fs16_c00425{font-size:62.250000px;}
.fs7_c00425{font-size:64.500000px;}
.fs11_c00425{font-size:66.000000px;}
.fsa_c00425{font-size:67.500000px;}
.fse_c00425{font-size:70.500000px;}
.fsc_c00425{font-size:72.000000px;}
.fs1b_c00425{font-size:74.250000px;}
.fsd_c00425{font-size:75.750000px;}
.fs18_c00425{font-size:76.500000px;}
.fs14_c00425{font-size:77.250000px;}
.fs0_c00425{font-size:78.750000px;}
.fs8_c00425{font-size:81.000000px;}
.fs1_c00425{font-size:81.750000px;}
.fs15_c00425{font-size:83.250000px;}
.fs6_c00425{font-size:84.000000px;}
.fs17_c00425{font-size:84.750000px;}
.fsb_c00425{font-size:85.500000px;}
.fs1c_c00425{font-size:90.750000px;}
.fs1a_c00425{font-size:93.750000px;}
.fs9_c00425{font-size:99.000000px;}
.fs13_c00425{font-size:125.250000px;}
.y0_c00425{bottom:0.000000px;}
.y24_c00425{bottom:242.999535px;}
.y23_c00425{bottom:264.240435px;}
.y21_c00425{bottom:285.480285px;}
.y22_c00425{bottom:285.480900px;}
.y20_c00425{bottom:306.721185px;}
.y1f_c00425{bottom:348.841185px;}
.y1e_c00425{bottom:370.080000px;}
.y1d_c00425{bottom:370.082385px;}
.y1c_c00425{bottom:411.843525px;}
.y1b_c00425{bottom:433.442820px;}
.y1a_c00425{bottom:476.643225px;}
.y19_c00425{bottom:497.521815px;}
.y18_c00425{bottom:519.121125px;}
.y17_c00425{bottom:561.600840px;}
.y16_c00425{bottom:663.839970px;}
.y15_c00425{bottom:689.039955px;}
.y14_c00425{bottom:710.280870px;}
.y13_c00425{bottom:731.519670px;}
.y12_c00425{bottom:748.440900px;}
.y11_c00425{bottom:756.000000px;}
.y10_c00425{bottom:774.000555px;}
.yf_c00425{bottom:795.240870px;}
.ye_c00425{bottom:816.840540px;}
.yd_c00425{bottom:838.081050px;}
.yc_c00425{bottom:838.081530px;}
.yb_c00425{bottom:859.680810px;}
.ya_c00425{bottom:902.520720px;}
.y9_c00425{bottom:950.400240px;}
.y8_c00425{bottom:966.601320px;}
.y7_c00425{bottom:1029.960015px;}
.y6_c00425{bottom:1051.559685px;}
.y5_c00425{bottom:1072.800105px;}
.y4_c00425{bottom:1079.279850px;}
.y3_c00425{bottom:1094.040525px;}
.y2_c00425{bottom:1115.280855px;}
.y1_c00425{bottom:1136.880615px;}
.h5_c00425{height:37.037109px;}
.h1d_c00425{height:37.546875px;}
.h15_c00425{height:41.935913px;}
.h3_c00425{height:44.595703px;}
.h13_c00425{height:48.498047px;}
.h12_c00425{height:48.581543px;}
.h6_c00425{height:49.661133px;}
.h16_c00425{height:52.409180px;}
.h4_c00425{height:59.449219px;}
.h1a_c00425{height:64.924805px;}
.h14_c00425{height:65.226562px;}
.h8_c00425{height:67.271484px;}
.hc_c00425{height:70.400391px;}
.h20_c00425{height:72.872314px;}
.h11_c00425{height:73.529297px;}
.h1f_c00425{height:75.080566px;}
.he_c00425{height:75.093750px;}
.h1c_c00425{height:77.097656px;}
.h1_c00425{height:77.288818px;}
.h10_c00425{height:79.004883px;}
.hf_c00425{height:79.497070px;}
.h2_c00425{height:80.233154px;}
.h18_c00425{height:80.569336px;}
.h9_c00425{height:81.632812px;}
.h19_c00425{height:82.274414px;}
.h7_c00425{height:82.441406px;}
.h1b_c00425{height:83.756836px;}
.hd_c00425{height:84.498047px;}
.ha_c00425{height:87.609375px;}
.h21_c00425{height:94.649414px;}
.h1e_c00425{height:97.778320px;}
.hb_c00425{height:103.253906px;}
.h17_c00425{height:130.631836px;}
.h0_c00425{height:1263.000000px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x4_c00425{left:137.878950px;}
.x1_c00425{left:138.958350px;}
.xa_c00425{left:144.358170px;}
.x11_c00425{left:145.439775px;}
.x12_c00425{left:150.478290px;}
.x13_c00425{left:156.598320px;}
.x6_c00425{left:162.000000px;}
.x14_c00425{left:163.798080px;}
.xb_c00425{left:176.038950px;}
.x15_c00425{left:182.517675px;}
.xc_c00425{left:191.519685px;}
.x2_c00425{left:193.319250px;}
.x3_c00425{left:199.078785px;}
.x7_c00425{left:200.159850px;}
.x16_c00425{left:204.479250px;}
.xf_c00425{left:207.719100px;}
.x10_c00425{left:208.798515px;}
.xd_c00425{left:211.319850px;}
.x17_c00425{left:218.519685px;}
.x1a_c00425{left:221.398635px;}
.xe_c00425{left:224.999400px;}
.x5_c00425{left:228.598500px;}
.x1c_c00425{left:231.120000px;}
.x1b_c00425{left:243.000000px;}
.x1d_c00425{left:245.519685px;}
.x18_c00425{left:254.878350px;}
.x19_c00425{left:361.798950px;}
.x8_c00425{left:363.239250px;}
.x9_c00425{left:371.879535px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls15_c00425{letter-spacing:-13.695960pt;}
.ls1d_c00425{letter-spacing:-6.797700pt;}
.ls14_c00425{letter-spacing:-6.118000pt;}
.ls16_c00425{letter-spacing:-5.097600pt;}
.ls18_c00425{letter-spacing:-4.759300pt;}
.ls17_c00425{letter-spacing:-4.672933pt;}
.ls8_c00425{letter-spacing:-4.369933pt;}
.ls19_c00425{letter-spacing:-4.129733pt;}
.lse_c00425{letter-spacing:-4.081000pt;}
.ls1a_c00425{letter-spacing:-3.480267pt;}
.ls11_c00425{letter-spacing:-3.394300pt;}
.ls6_c00425{letter-spacing:-2.716000pt;}
.ls4_c00425{letter-spacing:-2.037000pt;}
.lsd_c00425{letter-spacing:-1.357300pt;}
.lsb_c00425{letter-spacing:-1.103267pt;}
.ls12_c00425{letter-spacing:-0.679000pt;}
.ls20_c00425{letter-spacing:-0.625600pt;}
.lsf_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:0.679000pt;}
.ls10_c00425{letter-spacing:0.733680pt;}
.ls9_c00425{letter-spacing:1.033600pt;}
.ls13_c00425{letter-spacing:1.874400pt;}
.ls1f_c00425{letter-spacing:1.965447pt;}
.ls1e_c00425{letter-spacing:1.982460pt;}
.ls3_c00425{letter-spacing:2.037000pt;}
.ls0_c00425{letter-spacing:2.716000pt;}
.ls2_c00425{letter-spacing:3.394300pt;}
.ls1c_c00425{letter-spacing:3.775313pt;}
.lsc_c00425{letter-spacing:6.055467pt;}
.ls7_c00425{letter-spacing:6.140333pt;}
.ls5_c00425{letter-spacing:6.797700pt;}
.lsa_c00425{letter-spacing:8.813793pt;}
.ls1b_c00425{letter-spacing:18.368533pt;}
.ws0_c00425{word-spacing:0.000000pt;}
._d_c00425{margin-left:-9.896070pt;}
._e_c00425{margin-left:-8.162054pt;}
._c_c00425{margin-left:-6.403362pt;}
._2_c00425{margin-left:-2.804655pt;}
._6_c00425{width:1.854497pt;}
._a_c00425{width:2.939232pt;}
._0_c00425{width:4.112792pt;}
._5_c00425{width:5.184832pt;}
._8_c00425{width:6.090014pt;}
._9_c00425{width:7.838824pt;}
._b_c00425{width:9.164006pt;}
._4_c00425{width:10.132045pt;}
._3_c00425{width:12.075985pt;}
._1_c00425{width:16.286485pt;}
._7_c00425{width:21.434109pt;}
.fs19_c00425{font-size:32.000000pt;}
.fs4_c00425{font-size:32.666667pt;}
.fs12_c00425{font-size:38.000000pt;}
.fs2_c00425{font-size:39.333333pt;}
.fs10_c00425{font-size:41.333333pt;}
.fsf_c00425{font-size:44.000000pt;}
.fs5_c00425{font-size:44.666667pt;}
.fs3_c00425{font-size:50.666667pt;}
.fs16_c00425{font-size:55.333333pt;}
.fs7_c00425{font-size:57.333333pt;}
.fs11_c00425{font-size:58.666667pt;}
.fsa_c00425{font-size:60.000000pt;}
.fse_c00425{font-size:62.666667pt;}
.fsc_c00425{font-size:64.000000pt;}
.fs1b_c00425{font-size:66.000000pt;}
.fsd_c00425{font-size:67.333333pt;}
.fs18_c00425{font-size:68.000000pt;}
.fs14_c00425{font-size:68.666667pt;}
.fs0_c00425{font-size:70.000000pt;}
.fs8_c00425{font-size:72.000000pt;}
.fs1_c00425{font-size:72.666667pt;}
.fs15_c00425{font-size:74.000000pt;}
.fs6_c00425{font-size:74.666667pt;}
.fs17_c00425{font-size:75.333333pt;}
.fsb_c00425{font-size:76.000000pt;}
.fs1c_c00425{font-size:80.666667pt;}
.fs1a_c00425{font-size:83.333333pt;}
.fs9_c00425{font-size:88.000000pt;}
.fs13_c00425{font-size:111.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y24_c00425{bottom:215.999587pt;}
.y23_c00425{bottom:234.880387pt;}
.y21_c00425{bottom:253.760253pt;}
.y22_c00425{bottom:253.760800pt;}
.y20_c00425{bottom:272.641053pt;}
.y1f_c00425{bottom:310.081053pt;}
.y1e_c00425{bottom:328.960000pt;}
.y1d_c00425{bottom:328.962120pt;}
.y1c_c00425{bottom:366.083133pt;}
.y1b_c00425{bottom:385.282507pt;}
.y1a_c00425{bottom:423.682867pt;}
.y19_c00425{bottom:442.241613pt;}
.y18_c00425{bottom:461.441000pt;}
.y17_c00425{bottom:499.200747pt;}
.y16_c00425{bottom:590.079973pt;}
.y15_c00425{bottom:612.479960pt;}
.y14_c00425{bottom:631.360773pt;}
.y13_c00425{bottom:650.239707pt;}
.y12_c00425{bottom:665.280800pt;}
.y11_c00425{bottom:672.000000pt;}
.y10_c00425{bottom:688.000493pt;}
.yf_c00425{bottom:706.880773pt;}
.ye_c00425{bottom:726.080480pt;}
.yd_c00425{bottom:744.960933pt;}
.yc_c00425{bottom:744.961360pt;}
.yb_c00425{bottom:764.160720pt;}
.ya_c00425{bottom:802.240640pt;}
.y9_c00425{bottom:844.800213pt;}
.y8_c00425{bottom:859.201173pt;}
.y7_c00425{bottom:915.520013pt;}
.y6_c00425{bottom:934.719720pt;}
.y5_c00425{bottom:953.600093pt;}
.y4_c00425{bottom:959.359867pt;}
.y3_c00425{bottom:972.480467pt;}
.y2_c00425{bottom:991.360760pt;}
.y1_c00425{bottom:1010.560547pt;}
.h5_c00425{height:32.921875pt;}
.h1d_c00425{height:33.375000pt;}
.h15_c00425{height:37.276367pt;}
.h3_c00425{height:39.640625pt;}
.h13_c00425{height:43.109375pt;}
.h12_c00425{height:43.183594pt;}
.h6_c00425{height:44.143229pt;}
.h16_c00425{height:46.585938pt;}
.h4_c00425{height:52.843750pt;}
.h1a_c00425{height:57.710938pt;}
.h14_c00425{height:57.979167pt;}
.h8_c00425{height:59.796875pt;}
.hc_c00425{height:62.578125pt;}
.h20_c00425{height:64.775391pt;}
.h11_c00425{height:65.359375pt;}
.h1f_c00425{height:66.738281pt;}
.he_c00425{height:66.750000pt;}
.h1c_c00425{height:68.531250pt;}
.h1_c00425{height:68.701172pt;}
.h10_c00425{height:70.226562pt;}
.hf_c00425{height:70.664062pt;}
.h2_c00425{height:71.318359pt;}
.h18_c00425{height:71.617188pt;}
.h9_c00425{height:72.562500pt;}
.h19_c00425{height:73.132813pt;}
.h7_c00425{height:73.281250pt;}
.h1b_c00425{height:74.450521pt;}
.hd_c00425{height:75.109375pt;}
.ha_c00425{height:77.875000pt;}
.h21_c00425{height:84.132812pt;}
.h1e_c00425{height:86.914062pt;}
.hb_c00425{height:91.781250pt;}
.h17_c00425{height:116.117188pt;}
.h0_c00425{height:1122.666667pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x4_c00425{left:122.559067pt;}
.x1_c00425{left:123.518533pt;}
.xa_c00425{left:128.318373pt;}
.x11_c00425{left:129.279800pt;}
.x12_c00425{left:133.758480pt;}
.x13_c00425{left:139.198507pt;}
.x6_c00425{left:144.000000pt;}
.x14_c00425{left:145.598293pt;}
.xb_c00425{left:156.479067pt;}
.x15_c00425{left:162.237933pt;}
.xc_c00425{left:170.239720pt;}
.x2_c00425{left:171.839333pt;}
.x3_c00425{left:176.958920pt;}
.x7_c00425{left:177.919867pt;}
.x16_c00425{left:181.759333pt;}
.xf_c00425{left:184.639200pt;}
.x10_c00425{left:185.598680pt;}
.xd_c00425{left:187.839867pt;}
.x17_c00425{left:194.239720pt;}
.x1a_c00425{left:196.798787pt;}
.xe_c00425{left:199.999467pt;}
.x5_c00425{left:203.198667pt;}
.x1c_c00425{left:205.440000pt;}
.x1b_c00425{left:216.000000pt;}
.x1d_c00425{left:218.239720pt;}
.x18_c00425{left:226.558533pt;}
.x19_c00425{left:321.599067pt;}
.x8_c00425{left:322.879333pt;}
.x9_c00425{left:330.559587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed5219a6cd7326e1e1af2f46.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_80d528d9bb4b76ceaa05a981.woff2')format("woff");}.ff2_c00426{font-family:ff2_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:ff3_c00426;src:url('chunks/assets/font_0efd6fe60cbc6222b290a733.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_54ef4eff9b9150ba30a4b938.woff2')format("woff");}.ff4_c00426{font-family:ff4_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:ff5_c00426;src:url('chunks/assets/font_c5f4ed4eb3f9fb374d36cabf.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00426;src:url('chunks/assets/font_1f760e9d6926acf162047445.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00426{transform:matrix(0.153727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153727,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{transform:matrix(0.204082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204082,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204762,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215074,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243478,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.267391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267391,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334034,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338542,0.000000,0.000000,0.250000,0,0);}
.m1d_c00426{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls12_c00426{letter-spacing:-17.965133px;}
.lse_c00426{letter-spacing:-13.091888px;}
.lsc_c00426{letter-spacing:-10.324988px;}
.ls9_c00426{letter-spacing:-8.323125px;}
.ls14_c00426{letter-spacing:-6.876900px;}
.ls1c_c00426{letter-spacing:-6.745950px;}
.ls5_c00426{letter-spacing:-5.625900px;}
.ls1d_c00426{letter-spacing:-4.644000px;}
.ls13_c00426{letter-spacing:-3.911625px;}
.ls10_c00426{letter-spacing:-3.880200px;}
.ls1e_c00426{letter-spacing:-3.675000px;}
.ls16_c00426{letter-spacing:-2.999250px;}
.ls1b_c00426{letter-spacing:-2.803125px;}
.ls18_c00426{letter-spacing:-2.512913px;}
.lsa_c00426{letter-spacing:-2.310638px;}
.ls6_c00426{letter-spacing:-1.677375px;}
.lsf_c00426{letter-spacing:-1.545000px;}
.lsd_c00426{letter-spacing:-0.834750px;}
.ls15_c00426{letter-spacing:-0.827595px;}
.ls4_c00426{letter-spacing:0.000000px;}
.ls1_c00426{letter-spacing:0.834750px;}
.ls8_c00426{letter-spacing:1.677375px;}
.ls17_c00426{letter-spacing:2.054588px;}
.ls1a_c00426{letter-spacing:2.295810px;}
.ls1f_c00426{letter-spacing:2.417400px;}
.ls0_c00426{letter-spacing:2.512913px;}
.ls2_c00426{letter-spacing:3.354750px;}
.lsb_c00426{letter-spacing:3.846750px;}
.ls11_c00426{letter-spacing:4.879508px;}
.ls3_c00426{letter-spacing:5.866088px;}
.ls7_c00426{letter-spacing:6.701625px;}
.ls19_c00426{letter-spacing:7.536375px;}
.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;}
._0_c00426{margin-left:-10.365561px;}
._7_c00426{margin-left:-8.663505px;}
._5_c00426{margin-left:-5.045982px;}
._6_c00426{margin-left:-3.598841px;}
._2_c00426{margin-left:-1.472659px;}
._4_c00426{width:2.724750px;}
._1_c00426{width:5.370549px;}
._3_c00426{width:10.617460px;}
.fc0_c00426{color:transparent;}
.fs5_c00426{font-size:61.500000px;}
.fs0_c00426{font-size:63.000000px;}
.fsb_c00426{font-size:64.500000px;}
.fse_c00426{font-size:71.250000px;}
.fs13_c00426{font-size:72.000000px;}
.fs14_c00426{font-size:73.500000px;}
.fs11_c00426{font-size:75.000000px;}
.fs8_c00426{font-size:77.250000px;}
.fs1_c00426{font-size:78.750000px;}
.fs10_c00426{font-size:79.500000px;}
.fsa_c00426{font-size:81.000000px;}
.fs3_c00426{font-size:84.000000px;}
.fs2_c00426{font-size:85.500000px;}
.fs6_c00426{font-size:86.250000px;}
.fs9_c00426{font-size:87.000000px;}
.fsf_c00426{font-size:87.750000px;}
.fsd_c00426{font-size:89.250000px;}
.fs7_c00426{font-size:93.750000px;}
.fs12_c00426{font-size:99.000000px;}
.fs15_c00426{font-size:101.250000px;}
.fs16_c00426{font-size:102.000000px;}
.fsc_c00426{font-size:120.750000px;}
.fs4_c00426{font-size:136.500000px;}
.y0_c00426{bottom:0.000000px;}
.y19_c00426{bottom:420.840135px;}
.y18_c00426{bottom:436.680135px;}
.y17_c00426{bottom:458.279850px;}
.y16_c00426{bottom:458.280240px;}
.y15_c00426{bottom:479.879520px;}
.y13_c00426{bottom:543.239385px;}
.y14_c00426{bottom:543.239820px;}
.y12_c00426{bottom:564.480285px;}
.y11_c00426{bottom:606.600135px;}
.y10_c00426{bottom:649.079640px;}
.yf_c00426{bottom:670.680720px;}
.ye_c00426{bottom:718.919535px;}
.yc_c00426{bottom:734.400285px;}
.yb_c00426{bottom:734.400450px;}
.yd_c00426{bottom:735.479685px;}
.y9_c00426{bottom:754.559685px;}
.ya_c00426{bottom:756.720105px;}
.y8_c00426{bottom:884.159370px;}
.y7_c00426{bottom:926.640105px;}
.y6_c00426{bottom:947.160465px;}
.y5_c00426{bottom:990.720705px;}
.y4_c00426{bottom:1011.959385px;}
.y2_c00426{bottom:1095.840090px;}
.y3_c00426{bottom:1096.919490px;}
.y1_c00426{bottom:1118.159820px;}
.h6_c00426{height:64.142578px;}
.h1_c00426{height:65.707031px;}
.hc_c00426{height:67.271484px;}
.hf_c00426{height:74.311523px;}
.h15_c00426{height:75.093750px;}
.h12_c00426{height:75.585938px;}
.h16_c00426{height:76.658203px;}
.h9_c00426{height:77.853516px;}
.h2_c00426{height:79.365234px;}
.h11_c00426{height:80.121094px;}
.hb_c00426{height:81.632812px;}
.h13_c00426{height:82.133789px;}
.h3_c00426{height:84.498047px;}
.h7_c00426{height:85.239258px;}
.ha_c00426{height:85.980469px;}
.h10_c00426{height:86.721680px;}
.he_c00426{height:87.550415px;}
.h4_c00426{height:87.609375px;}
.h8_c00426{height:97.778320px;}
.h14_c00426{height:103.253906px;}
.h17_c00426{height:105.600586px;}
.h18_c00426{height:106.382812px;}
.hd_c00426{height:118.450562px;}
.h5_c00426{height:142.365234px;}
.h0_c00426{height:1263.000000px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:139.319250px;}
.x28_c00426{left:140.759565px;}
.xf_c00426{left:150.479250px;}
.x1f_c00426{left:151.558665px;}
.xe_c00426{left:156.958950px;}
.x2_c00426{left:161.279850px;}
.xa_c00426{left:175.318800px;}
.x21_c00426{left:187.198785px;}
.x3_c00426{left:192.239850px;}
.x1b_c00426{left:195.118785px;}
.x22_c00426{left:201.239250px;}
.x25_c00426{left:204.479250px;}
.x20_c00426{left:210.238785px;}
.x10_c00426{left:221.398635px;}
.x4_c00426{left:223.199850px;}
.x24_c00426{left:226.439685px;}
.x12_c00426{left:229.318800px;}
.x1c_c00426{left:232.199385px;}
.xb_c00426{left:236.518635px;}
.xc_c00426{left:252.719535px;}
.x11_c00426{left:262.798515px;}
.xd_c00426{left:267.478635px;}
.x13_c00426{left:282.959400px;}
.x5_c00426{left:299.878950px;}
.x14_c00426{left:305.999385px;}
.x6_c00426{left:308.878350px;}
.x7_c00426{left:322.918950px;}
.x15_c00426{left:325.079385px;}
.x23_c00426{left:341.639700px;}
.x8_c00426{left:348.478635px;}
.x9_c00426{left:357.479685px;}
.x16_c00426{left:407.158770px;}
.x17_c00426{left:488.519670px;}
.x1d_c00426{left:491.039385px;}
.x18_c00426{left:497.159820px;}
.x1e_c00426{left:500.038920px;}
.x26_c00426{left:508.679070px;}
.x27_c00426{left:515.158770px;}
.x19_c00426{left:600.479685px;}
.x1a_c00426{left:624.958335px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls12_c00426{letter-spacing:-15.969007pt;}
.lse_c00426{letter-spacing:-11.637233pt;}
.lsc_c00426{letter-spacing:-9.177767pt;}
.ls9_c00426{letter-spacing:-7.398333pt;}
.ls14_c00426{letter-spacing:-6.112800pt;}
.ls1c_c00426{letter-spacing:-5.996400pt;}
.ls5_c00426{letter-spacing:-5.000800pt;}
.ls1d_c00426{letter-spacing:-4.128000pt;}
.ls13_c00426{letter-spacing:-3.477000pt;}
.ls10_c00426{letter-spacing:-3.449067pt;}
.ls1e_c00426{letter-spacing:-3.266667pt;}
.ls16_c00426{letter-spacing:-2.666000pt;}
.ls1b_c00426{letter-spacing:-2.491667pt;}
.ls18_c00426{letter-spacing:-2.233700pt;}
.lsa_c00426{letter-spacing:-2.053900pt;}
.ls6_c00426{letter-spacing:-1.491000pt;}
.lsf_c00426{letter-spacing:-1.373333pt;}
.lsd_c00426{letter-spacing:-0.742000pt;}
.ls15_c00426{letter-spacing:-0.735640pt;}
.ls4_c00426{letter-spacing:0.000000pt;}
.ls1_c00426{letter-spacing:0.742000pt;}
.ls8_c00426{letter-spacing:1.491000pt;}
.ls17_c00426{letter-spacing:1.826300pt;}
.ls1a_c00426{letter-spacing:2.040720pt;}
.ls1f_c00426{letter-spacing:2.148800pt;}
.ls0_c00426{letter-spacing:2.233700pt;}
.ls2_c00426{letter-spacing:2.982000pt;}
.lsb_c00426{letter-spacing:3.419333pt;}
.ls11_c00426{letter-spacing:4.337340pt;}
.ls3_c00426{letter-spacing:5.214300pt;}
.ls7_c00426{letter-spacing:5.957000pt;}
.ls19_c00426{letter-spacing:6.699000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._0_c00426{margin-left:-9.213832pt;}
._7_c00426{margin-left:-7.700894pt;}
._5_c00426{margin-left:-4.485317pt;}
._6_c00426{margin-left:-3.198970pt;}
._2_c00426{margin-left:-1.309030pt;}
._4_c00426{width:2.422000pt;}
._1_c00426{width:4.773821pt;}
._3_c00426{width:9.437743pt;}
.fs5_c00426{font-size:54.666667pt;}
.fs0_c00426{font-size:56.000000pt;}
.fsb_c00426{font-size:57.333333pt;}
.fse_c00426{font-size:63.333333pt;}
.fs13_c00426{font-size:64.000000pt;}
.fs14_c00426{font-size:65.333333pt;}
.fs11_c00426{font-size:66.666667pt;}
.fs8_c00426{font-size:68.666667pt;}
.fs1_c00426{font-size:70.000000pt;}
.fs10_c00426{font-size:70.666667pt;}
.fsa_c00426{font-size:72.000000pt;}
.fs3_c00426{font-size:74.666667pt;}
.fs2_c00426{font-size:76.000000pt;}
.fs6_c00426{font-size:76.666667pt;}
.fs9_c00426{font-size:77.333333pt;}
.fsf_c00426{font-size:78.000000pt;}
.fsd_c00426{font-size:79.333333pt;}
.fs7_c00426{font-size:83.333333pt;}
.fs12_c00426{font-size:88.000000pt;}
.fs15_c00426{font-size:90.000000pt;}
.fs16_c00426{font-size:90.666667pt;}
.fsc_c00426{font-size:107.333333pt;}
.fs4_c00426{font-size:121.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y19_c00426{bottom:374.080120pt;}
.y18_c00426{bottom:388.160120pt;}
.y17_c00426{bottom:407.359867pt;}
.y16_c00426{bottom:407.360213pt;}
.y15_c00426{bottom:426.559573pt;}
.y13_c00426{bottom:482.879453pt;}
.y14_c00426{bottom:482.879840pt;}
.y12_c00426{bottom:501.760253pt;}
.y11_c00426{bottom:539.200120pt;}
.y10_c00426{bottom:576.959680pt;}
.yf_c00426{bottom:596.160640pt;}
.ye_c00426{bottom:639.039587pt;}
.yc_c00426{bottom:652.800253pt;}
.yb_c00426{bottom:652.800400pt;}
.yd_c00426{bottom:653.759720pt;}
.y9_c00426{bottom:670.719720pt;}
.ya_c00426{bottom:672.640093pt;}
.y8_c00426{bottom:785.919440pt;}
.y7_c00426{bottom:823.680093pt;}
.y6_c00426{bottom:841.920413pt;}
.y5_c00426{bottom:880.640627pt;}
.y4_c00426{bottom:899.519453pt;}
.y2_c00426{bottom:974.080080pt;}
.y3_c00426{bottom:975.039547pt;}
.y1_c00426{bottom:993.919840pt;}
.h6_c00426{height:57.015625pt;}
.h1_c00426{height:58.406250pt;}
.hc_c00426{height:59.796875pt;}
.hf_c00426{height:66.054688pt;}
.h15_c00426{height:66.750000pt;}
.h12_c00426{height:67.187500pt;}
.h16_c00426{height:68.140625pt;}
.h9_c00426{height:69.203125pt;}
.h2_c00426{height:70.546875pt;}
.h11_c00426{height:71.218750pt;}
.hb_c00426{height:72.562500pt;}
.h13_c00426{height:73.007812pt;}
.h3_c00426{height:75.109375pt;}
.h7_c00426{height:75.768229pt;}
.ha_c00426{height:76.427083pt;}
.h10_c00426{height:77.085938pt;}
.he_c00426{height:77.822591pt;}
.h4_c00426{height:77.875000pt;}
.h8_c00426{height:86.914062pt;}
.h14_c00426{height:91.781250pt;}
.h17_c00426{height:93.867188pt;}
.h18_c00426{height:94.562500pt;}
.hd_c00426{height:105.289388pt;}
.h5_c00426{height:126.546875pt;}
.h0_c00426{height:1122.666667pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:123.839333pt;}
.x28_c00426{left:125.119613pt;}
.xf_c00426{left:133.759333pt;}
.x1f_c00426{left:134.718813pt;}
.xe_c00426{left:139.519067pt;}
.x2_c00426{left:143.359867pt;}
.xa_c00426{left:155.838933pt;}
.x21_c00426{left:166.398920pt;}
.x3_c00426{left:170.879867pt;}
.x1b_c00426{left:173.438920pt;}
.x22_c00426{left:178.879333pt;}
.x25_c00426{left:181.759333pt;}
.x20_c00426{left:186.878920pt;}
.x10_c00426{left:196.798787pt;}
.x4_c00426{left:198.399867pt;}
.x24_c00426{left:201.279720pt;}
.x12_c00426{left:203.838933pt;}
.x1c_c00426{left:206.399453pt;}
.xb_c00426{left:210.238787pt;}
.xc_c00426{left:224.639587pt;}
.x11_c00426{left:233.598680pt;}
.xd_c00426{left:237.758787pt;}
.x13_c00426{left:251.519467pt;}
.x5_c00426{left:266.559067pt;}
.x14_c00426{left:271.999453pt;}
.x6_c00426{left:274.558533pt;}
.x7_c00426{left:287.039067pt;}
.x15_c00426{left:288.959453pt;}
.x23_c00426{left:303.679733pt;}
.x8_c00426{left:309.758787pt;}
.x9_c00426{left:317.759720pt;}
.x16_c00426{left:361.918907pt;}
.x17_c00426{left:434.239707pt;}
.x1d_c00426{left:436.479453pt;}
.x18_c00426{left:441.919840pt;}
.x1e_c00426{left:444.479040pt;}
.x26_c00426{left:452.159173pt;}
.x27_c00426{left:457.918907pt;}
.x19_c00426{left:533.759720pt;}
.x1a_c00426{left:555.518520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee833d9ca4e6dd558ba527a5.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_673fe9850c13d1c804a964a4.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_53ca641ebbe5f1c92d79cd9b.woff2')format("woff");}.ff3_c00427{font-family:ff3_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:ff4_c00427;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_41c70fce67ccd1bb0adb10b8.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_b3f56a9e5ad434f0490fcf49.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00427{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.181373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181373,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls4_c00427{letter-spacing:-22.983240px;}
.lsd_c00427{letter-spacing:-9.347535px;}
.ls5_c00427{letter-spacing:-3.685500px;}
.lsb_c00427{letter-spacing:-2.512913px;}
.ls3_c00427{letter-spacing:-1.570590px;}
.ls6_c00427{letter-spacing:-0.834750px;}
.ls2_c00427{letter-spacing:-0.816683px;}
.ls1_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:0.834750px;}
.lsa_c00427{letter-spacing:4.317450px;}
.ls7_c00427{letter-spacing:4.976400px;}
.ls9_c00427{letter-spacing:5.352675px;}
.lsc_c00427{letter-spacing:5.523300px;}
.ls8_c00427{letter-spacing:6.829275px;}
.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;}
._0_c00427{width:2.339043px;}
._1_c00427{width:3.402134px;}
._3_c00427{width:4.662134px;}
._2_c00427{width:6.047866px;}
._4_c00427{width:7.654433px;}
._5_c00427{width:10.253552px;}
.fc0_c00427{color:transparent;}
.fs7_c00427{font-size:74.250000px;}
.fs6_c00427{font-size:76.500000px;}
.fs5_c00427{font-size:78.000000px;}
.fs4_c00427{font-size:78.750000px;}
.fsa_c00427{font-size:79.500000px;}
.fs0_c00427{font-size:80.250000px;}
.fs2_c00427{font-size:81.000000px;}
.fs1_c00427{font-size:81.750000px;}
.fsb_c00427{font-size:82.500000px;}
.fs9_c00427{font-size:83.250000px;}
.fs3_c00427{font-size:84.000000px;}
.fs8_c00427{font-size:114.750000px;}
.y0_c00427{bottom:0.000000px;}
.y16_c00427{bottom:452.518620px;}
.y15_c00427{bottom:488.158770px;}
.y14_c00427{bottom:520.199850px;}
.y13_c00427{bottom:552.239220px;}
.y12_c00427{bottom:584.278800px;}
.y11_c00427{bottom:616.679070px;}
.y10_c00427{bottom:649.079355px;}
.yf_c00427{bottom:681.118785px;}
.ye_c00427{bottom:713.159820px;}
.yd_c00427{bottom:745.919535px;}
.yc_c00427{bottom:775.799865px;}
.yb_c00427{bottom:797.399145px;}
.ya_c00427{bottom:818.998440px;}
.y9_c00427{bottom:882.719055px;}
.y8_c00427{bottom:903.959385px;}
.y6_c00427{bottom:925.199520px;}
.y7_c00427{bottom:925.199805px;}
.y5_c00427{bottom:989.998905px;}
.y4_c00427{bottom:1010.519070px;}
.y3_c00427{bottom:1031.759490px;}
.y2_c00427{bottom:1074.958920px;}
.y1_c00427{bottom:1138.678530px;}
.h7_c00427{height:75.080566px;}
.h8_c00427{height:77.440430px;}
.hc_c00427{height:77.986084px;}
.hb_c00427{height:78.568359px;}
.h6_c00427{height:78.609375px;}
.h5_c00427{height:79.365234px;}
.hd_c00427{height:79.787109px;}
.he_c00427{height:80.121094px;}
.h1_c00427{height:80.876953px;}
.hf_c00427{height:81.533203px;}
.h3_c00427{height:81.632812px;}
.ha_c00427{height:82.274414px;}
.h2_c00427{height:82.388672px;}
.h4_c00427{height:83.015625px;}
.h9_c00427{height:112.620850px;}
.h0_c00427{height:1263.000000px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:138.958350px;}
.x6_c00427{left:140.039400px;}
.x9_c00427{left:141.118815px;}
.xa_c00427{left:142.200735px;}
.x2_c00427{left:174.598500px;}
.x5_c00427{left:190.079400px;}
.x7_c00427{left:227.519100px;}
.x8_c00427{left:228.959400px;}
.x3_c00427{left:270.718500px;}
.x4_c00427{left:295.198785px;}
.xb_c00427{left:353.519685px;}
.xe_c00427{left:354.599100px;}
.xc_c00427{left:355.678530px;}
.x10_c00427{left:356.759535px;}
.xf_c00427{left:358.199850px;}
.xd_c00427{left:362.878350px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls4_c00427{letter-spacing:-20.429547pt;}
.lsd_c00427{letter-spacing:-8.308920pt;}
.ls5_c00427{letter-spacing:-3.276000pt;}
.lsb_c00427{letter-spacing:-2.233700pt;}
.ls3_c00427{letter-spacing:-1.396080pt;}
.ls6_c00427{letter-spacing:-0.742000pt;}
.ls2_c00427{letter-spacing:-0.725940pt;}
.ls1_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:0.742000pt;}
.lsa_c00427{letter-spacing:3.837733pt;}
.ls7_c00427{letter-spacing:4.423467pt;}
.ls9_c00427{letter-spacing:4.757933pt;}
.lsc_c00427{letter-spacing:4.909600pt;}
.ls8_c00427{letter-spacing:6.070467pt;}
.ws0_c00427{word-spacing:0.000000pt;}
._0_c00427{width:2.079149pt;}
._1_c00427{width:3.024119pt;}
._3_c00427{width:4.144119pt;}
._2_c00427{width:5.375881pt;}
._4_c00427{width:6.803940pt;}
._5_c00427{width:9.114268pt;}
.fs7_c00427{font-size:66.000000pt;}
.fs6_c00427{font-size:68.000000pt;}
.fs5_c00427{font-size:69.333333pt;}
.fs4_c00427{font-size:70.000000pt;}
.fsa_c00427{font-size:70.666667pt;}
.fs0_c00427{font-size:71.333333pt;}
.fs2_c00427{font-size:72.000000pt;}
.fs1_c00427{font-size:72.666667pt;}
.fsb_c00427{font-size:73.333333pt;}
.fs9_c00427{font-size:74.000000pt;}
.fs3_c00427{font-size:74.666667pt;}
.fs8_c00427{font-size:102.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y16_c00427{bottom:402.238773pt;}
.y15_c00427{bottom:433.918907pt;}
.y14_c00427{bottom:462.399867pt;}
.y13_c00427{bottom:490.879307pt;}
.y12_c00427{bottom:519.358933pt;}
.y11_c00427{bottom:548.159173pt;}
.y10_c00427{bottom:576.959427pt;}
.yf_c00427{bottom:605.438920pt;}
.ye_c00427{bottom:633.919840pt;}
.yd_c00427{bottom:663.039587pt;}
.yc_c00427{bottom:689.599880pt;}
.yb_c00427{bottom:708.799240pt;}
.ya_c00427{bottom:727.998613pt;}
.y9_c00427{bottom:784.639160pt;}
.y8_c00427{bottom:803.519453pt;}
.y6_c00427{bottom:822.399573pt;}
.y7_c00427{bottom:822.399827pt;}
.y5_c00427{bottom:879.999027pt;}
.y4_c00427{bottom:898.239173pt;}
.y3_c00427{bottom:917.119547pt;}
.y2_c00427{bottom:955.519040pt;}
.y1_c00427{bottom:1012.158693pt;}
.h7_c00427{height:66.738281pt;}
.h8_c00427{height:68.835938pt;}
.hc_c00427{height:69.320964pt;}
.hb_c00427{height:69.838542pt;}
.h6_c00427{height:69.875000pt;}
.h5_c00427{height:70.546875pt;}
.hd_c00427{height:70.921875pt;}
.he_c00427{height:71.218750pt;}
.h1_c00427{height:71.890625pt;}
.hf_c00427{height:72.473958pt;}
.h3_c00427{height:72.562500pt;}
.ha_c00427{height:73.132813pt;}
.h2_c00427{height:73.234375pt;}
.h4_c00427{height:73.791667pt;}
.h9_c00427{height:100.107422pt;}
.h0_c00427{height:1122.666667pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:123.518533pt;}
.x6_c00427{left:124.479467pt;}
.x9_c00427{left:125.438947pt;}
.xa_c00427{left:126.400653pt;}
.x2_c00427{left:155.198667pt;}
.x5_c00427{left:168.959467pt;}
.x7_c00427{left:202.239200pt;}
.x8_c00427{left:203.519467pt;}
.x3_c00427{left:240.638667pt;}
.x4_c00427{left:262.398920pt;}
.xb_c00427{left:314.239720pt;}
.xe_c00427{left:315.199200pt;}
.xc_c00427{left:316.158693pt;}
.x10_c00427{left:317.119587pt;}
.xf_c00427{left:318.399867pt;}
.xd_c00427{left:322.558533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21a20f955eff7c88e99df27f.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_0c6d4dbbf31233b6901f1bf6.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.364746;font-style:normal;font-weight:normal;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_1091200bc41504f56c910b67.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_f33c2950e9811d1f57e252c5.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_f6b45eaafe7c20835ace1571.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00428{transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183239,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.lsa_c00428{letter-spacing:-20.250000px;}
.lsb_c00428{letter-spacing:-11.996100px;}
.lsc_c00428{letter-spacing:-10.496790px;}
.ls8_c00428{letter-spacing:-9.753210px;}
.ls10_c00428{letter-spacing:-7.187565px;}
.ls12_c00428{letter-spacing:-7.114223px;}
.ls5_c00428{letter-spacing:-4.541348px;}
.ls9_c00428{letter-spacing:-3.630825px;}
.lsd_c00428{letter-spacing:-3.182700px;}
.ls4_c00428{letter-spacing:-2.431905px;}
.lsf_c00428{letter-spacing:-1.693350px;}
.ls11_c00428{letter-spacing:-1.677450px;}
.ls3_c00428{letter-spacing:-1.677375px;}
.lse_c00428{letter-spacing:-1.591350px;}
.ls2_c00428{letter-spacing:-0.834750px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:1.677375px;}
.ls7_c00428{letter-spacing:4.357800px;}
.ls6_c00428{letter-spacing:25.058400px;}
.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;}
._3_c00428{width:2.890427px;}
._0_c00428{width:3.937500px;}
._1_c00428{width:5.149915px;}
._2_c00428{width:8.677915px;}
.fc0_c00428{color:transparent;}
.fs8_c00428{font-size:72.750000px;}
.fs7_c00428{font-size:73.500000px;}
.fs1_c00428{font-size:77.250000px;}
.fs0_c00428{font-size:78.750000px;}
.fs2_c00428{font-size:79.500000px;}
.fs3_c00428{font-size:80.250000px;}
.fs4_c00428{font-size:81.000000px;}
.fs5_c00428{font-size:82.500000px;}
.fs6_c00428{font-size:132.000000px;}
.y0_c00428{bottom:0.000000px;}
.y16_c00428{bottom:392.760720px;}
.y15_c00428{bottom:425.161050px;}
.y14_c00428{bottom:457.200435px;}
.y13_c00428{bottom:490.320945px;}
.y12_c00428{bottom:522.360300px;}
.y11_c00428{bottom:554.040570px;}
.y10_c00428{bottom:586.440900px;}
.y8_c00428{bottom:616.321545px;}
.yf_c00428{bottom:618.121035px;}
.y7_c00428{bottom:689.401650px;}
.y6_c00428{bottom:718.921185px;}
.y5_c00428{bottom:749.881170px;}
.ye_c00428{bottom:842.400240px;}
.yd_c00428{bottom:875.161680px;}
.yc_c00428{bottom:907.559625px;}
.yb_c00428{bottom:939.601320px;}
.ya_c00428{bottom:972.000000px;}
.y4_c00428{bottom:1001.521365px;}
.y9_c00428{bottom:1003.320780px;}
.y3_c00428{bottom:1076.400885px;}
.y2_c00428{bottom:1096.559670px;}
.y1_c00428{bottom:1117.800570px;}
.ha_c00428{height:75.816650px;}
.hc_c00428{height:75.875977px;}
.hb_c00428{height:76.658203px;}
.h2_c00428{height:77.853516px;}
.h1_c00428{height:79.365234px;}
.h6_c00428{height:80.050781px;}
.h3_c00428{height:80.121094px;}
.h9_c00428{height:80.569336px;}
.h4_c00428{height:80.876953px;}
.h7_c00428{height:81.533203px;}
.h5_c00428{height:81.632812px;}
.h8_c00428{height:137.671875px;}
.h0_c00428{height:1263.000000px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:131.758500px;}
.x3_c00428{left:135.000000px;}
.x4_c00428{left:201.598500px;}
.x5_c00428{left:229.679700px;}
.x6_c00428{left:290.518635px;}
.x2_c00428{left:333.358635px;}
.x7_c00428{left:336.959445px;}
.x10_c00428{left:471.598530px;}
.x8_c00428{left:518.759490px;}
.xd_c00428{left:530.640015px;}
.xc_c00428{left:531.719310px;}
.xa_c00428{left:538.918950px;}
.xe_c00428{left:540.718500px;}
.x9_c00428{left:547.559100px;}
.x12_c00428{left:549.358665px;}
.x11_c00428{left:550.439670px;}
.xf_c00428{left:554.759085px;}
.xb_c00428{left:556.199385px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.lsa_c00428{letter-spacing:-18.000000pt;}
.lsb_c00428{letter-spacing:-10.663200pt;}
.lsc_c00428{letter-spacing:-9.330480pt;}
.ls8_c00428{letter-spacing:-8.669520pt;}
.ls10_c00428{letter-spacing:-6.388947pt;}
.ls12_c00428{letter-spacing:-6.323753pt;}
.ls5_c00428{letter-spacing:-4.036753pt;}
.ls9_c00428{letter-spacing:-3.227400pt;}
.lsd_c00428{letter-spacing:-2.829067pt;}
.ls4_c00428{letter-spacing:-2.161693pt;}
.lsf_c00428{letter-spacing:-1.505200pt;}
.ls11_c00428{letter-spacing:-1.491067pt;}
.ls3_c00428{letter-spacing:-1.491000pt;}
.lse_c00428{letter-spacing:-1.414533pt;}
.ls2_c00428{letter-spacing:-0.742000pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:1.491000pt;}
.ls7_c00428{letter-spacing:3.873600pt;}
.ls6_c00428{letter-spacing:22.274133pt;}
.ws0_c00428{word-spacing:0.000000pt;}
._3_c00428{width:2.569268pt;}
._0_c00428{width:3.500000pt;}
._1_c00428{width:4.577702pt;}
._2_c00428{width:7.713702pt;}
.fs8_c00428{font-size:64.666667pt;}
.fs7_c00428{font-size:65.333333pt;}
.fs1_c00428{font-size:68.666667pt;}
.fs0_c00428{font-size:70.000000pt;}
.fs2_c00428{font-size:70.666667pt;}
.fs3_c00428{font-size:71.333333pt;}
.fs4_c00428{font-size:72.000000pt;}
.fs5_c00428{font-size:73.333333pt;}
.fs6_c00428{font-size:117.333333pt;}
.y0_c00428{bottom:0.000000pt;}
.y16_c00428{bottom:349.120640pt;}
.y15_c00428{bottom:377.920933pt;}
.y14_c00428{bottom:406.400387pt;}
.y13_c00428{bottom:435.840840pt;}
.y12_c00428{bottom:464.320267pt;}
.y11_c00428{bottom:492.480507pt;}
.y10_c00428{bottom:521.280800pt;}
.y8_c00428{bottom:547.841373pt;}
.yf_c00428{bottom:549.440920pt;}
.y7_c00428{bottom:612.801467pt;}
.y6_c00428{bottom:639.041053pt;}
.y5_c00428{bottom:666.561040pt;}
.ye_c00428{bottom:748.800213pt;}
.yd_c00428{bottom:777.921493pt;}
.yc_c00428{bottom:806.719667pt;}
.yb_c00428{bottom:835.201173pt;}
.ya_c00428{bottom:864.000000pt;}
.y4_c00428{bottom:890.241213pt;}
.y9_c00428{bottom:891.840693pt;}
.y3_c00428{bottom:956.800787pt;}
.y2_c00428{bottom:974.719707pt;}
.y1_c00428{bottom:993.600507pt;}
.ha_c00428{height:67.392578pt;}
.hc_c00428{height:67.445312pt;}
.hb_c00428{height:68.140625pt;}
.h2_c00428{height:69.203125pt;}
.h1_c00428{height:70.546875pt;}
.h6_c00428{height:71.156250pt;}
.h3_c00428{height:71.218750pt;}
.h9_c00428{height:71.617188pt;}
.h4_c00428{height:71.890625pt;}
.h7_c00428{height:72.473958pt;}
.h5_c00428{height:72.562500pt;}
.h8_c00428{height:122.375000pt;}
.h0_c00428{height:1122.666667pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:117.118667pt;}
.x3_c00428{left:120.000000pt;}
.x4_c00428{left:179.198667pt;}
.x5_c00428{left:204.159733pt;}
.x6_c00428{left:258.238787pt;}
.x2_c00428{left:296.318787pt;}
.x7_c00428{left:299.519507pt;}
.x10_c00428{left:419.198693pt;}
.x8_c00428{left:461.119547pt;}
.xd_c00428{left:471.680013pt;}
.xc_c00428{left:472.639387pt;}
.xa_c00428{left:479.039067pt;}
.xe_c00428{left:480.638667pt;}
.x9_c00428{left:486.719200pt;}
.x12_c00428{left:488.318813pt;}
.x11_c00428{left:489.279707pt;}
.xf_c00428{left:493.119187pt;}
.xb_c00428{left:494.399453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b716282e2436cf9b6565aaae.woff2')format("woff");}.ff1_c00429{font-family:ff1_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;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_b29bd5239924c6458451a39b.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.364746;font-style:normal;font-weight:normal;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_292440276f764d667fbfa5e9.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_582abb9a351dc923c28f4722.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_e9608352e2c0b04f72d65244.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf_c00429{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_c00429{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{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);}
.m1_c00429{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215812,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.me_c00429{transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m13_c00429{transform:matrix(0.394444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394444,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485714,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls5_c00429{letter-spacing:-8.349953px;}
.lsf_c00429{letter-spacing:-4.921800px;}
.ls11_c00429{letter-spacing:-4.680000px;}
.ls10_c00429{letter-spacing:-4.270103px;}
.lse_c00429{letter-spacing:-1.799280px;}
.ls4_c00429{letter-spacing:-1.709325px;}
.ls3_c00429{letter-spacing:-0.850650px;}
.ls2_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:0.850650px;}
.ls1_c00429{letter-spacing:1.709325px;}
.lsc_c00429{letter-spacing:2.315250px;}
.ls8_c00429{letter-spacing:5.638050px;}
.ls9_c00429{letter-spacing:5.998200px;}
.ls6_c00429{letter-spacing:6.105750px;}
.lsd_c00429{letter-spacing:8.079750px;}
.ls7_c00429{letter-spacing:8.276400px;}
.lsa_c00429{letter-spacing:13.659075px;}
.lsb_c00429{letter-spacing:19.933200px;}
.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;}
._3_c00429{margin-left:-16.579172px;}
._6_c00429{margin-left:-1.612547px;}
._5_c00429{width:1.284000px;}
._0_c00429{width:2.383596px;}
._1_c00429{width:3.466937px;}
._4_c00429{width:5.793504px;}
._2_c00429{width:7.198664px;}
._7_c00429{width:9.694200px;}
.fc0_c00429{color:transparent;}
.fsf_c00429{font-size:26.250000px;}
.fs10_c00429{font-size:33.750000px;}
.fse_c00429{font-size:36.750000px;}
.fsd_c00429{font-size:38.250000px;}
.fs5_c00429{font-size:72.000000px;}
.fs2_c00429{font-size:75.000000px;}
.fs7_c00429{font-size:76.500000px;}
.fs8_c00429{font-size:77.250000px;}
.fsc_c00429{font-size:78.000000px;}
.fs3_c00429{font-size:78.750000px;}
.fs6_c00429{font-size:79.500000px;}
.fs0_c00429{font-size:80.250000px;}
.fs1_c00429{font-size:81.750000px;}
.fsa_c00429{font-size:85.500000px;}
.fs4_c00429{font-size:87.750000px;}
.fs9_c00429{font-size:93.750000px;}
.fsb_c00429{font-size:96.750000px;}
.y0_c00429{bottom:0.000000px;}
.y27_c00429{bottom:390.600135px;}
.y17_c00429{bottom:391.318770px;}
.y26_c00429{bottom:422.639700px;}
.y16_c00429{bottom:422.819235px;}
.y15_c00429{bottom:429.119385px;}
.y25_c00429{bottom:454.315110px;}
.y14_c00429{bottom:455.039985px;}
.y13_c00429{bottom:455.040225px;}
.y24_c00429{bottom:487.075245px;}
.y12_c00429{bottom:487.799565px;}
.y23_c00429{bottom:519.835380px;}
.y11_c00429{bottom:520.559100px;}
.y22_c00429{bottom:551.877345px;}
.y10_c00429{bottom:552.237990px;}
.yf_c00429{bottom:614.158815px;}
.ye_c00429{bottom:643.678875px;}
.yd_c00429{bottom:673.918950px;}
.y21_c00429{bottom:754.195545px;}
.yc_c00429{bottom:754.918950px;}
.y20_c00429{bottom:786.237495px;}
.yb_c00429{bottom:786.599115px;}
.y1f_c00429{bottom:818.277300px;}
.ya_c00429{bottom:818.640105px;}
.y1e_c00429{bottom:850.678350px;}
.y9_c00429{bottom:851.759040px;}
.y1d_c00429{bottom:883.438500px;}
.y8_c00429{bottom:883.800105px;}
.y1c_c00429{bottom:915.839535px;}
.y7_c00429{bottom:916.559685px;}
.y1a_c00429{bottom:948.238845px;}
.y1b_c00429{bottom:948.239865px;}
.y6_c00429{bottom:948.960015px;}
.y19_c00429{bottom:979.919565px;}
.y5_c00429{bottom:980.279205px;}
.y18_c00429{bottom:1011.959385px;}
.y4_c00429{bottom:1012.318890px;}
.y3_c00429{bottom:1076.039430px;}
.y2_c00429{bottom:1105.918575px;}
.y1_c00429{bottom:1135.799565px;}
.h12_c00429{height:27.377930px;}
.h13_c00429{height:35.200195px;}
.h11_c00429{height:38.329102px;}
.h10_c00429{height:39.893555px;}
.h6_c00429{height:75.093750px;}
.h3_c00429{height:75.585938px;}
.h8_c00429{height:77.097656px;}
.h9_c00429{height:77.853516px;}
.hb_c00429{height:78.222656px;}
.h14_c00429{height:78.609375px;}
.h4_c00429{height:79.365234px;}
.hd_c00429{height:79.787109px;}
.h7_c00429{height:80.121094px;}
.h1_c00429{height:80.876953px;}
.hf_c00429{height:81.351562px;}
.h2_c00429{height:82.388672px;}
.hc_c00429{height:84.498047px;}
.h5_c00429{height:86.721680px;}
.ha_c00429{height:97.778320px;}
.he_c00429{height:100.907227px;}
.h0_c00429{height:1263.000000px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x3_c00429{left:136.799565px;}
.x1_c00429{left:139.319250px;}
.x4_c00429{left:326.879880px;}
.x2_c00429{left:328.678830px;}
.x7_c00429{left:329.759535px;}
.x5_c00429{left:353.878950px;}
.x8_c00429{left:362.878350px;}
.x6_c00429{left:371.518635px;}
.xa_c00429{left:379.438635px;}
.x9_c00429{left:380.519685px;}
.xc_c00429{left:460.799835px;}
.xb_c00429{left:469.439670px;}
.x10_c00429{left:484.198770px;}
.xd_c00429{left:510.477450px;}
.x16_c00429{left:512.279850px;}
.xf_c00429{left:513.359250px;}
.x13_c00429{left:514.438230px;}
.x12_c00429{left:520.559205px;}
.x11_c00429{left:521.999100px;}
.x15_c00429{left:553.318770px;}
.x14_c00429{left:554.401335px;}
.xe_c00429{left:556.558635px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls5_c00429{letter-spacing:-7.422180pt;}
.lsf_c00429{letter-spacing:-4.374933pt;}
.ls11_c00429{letter-spacing:-4.160000pt;}
.ls10_c00429{letter-spacing:-3.795647pt;}
.lse_c00429{letter-spacing:-1.599360pt;}
.ls4_c00429{letter-spacing:-1.519400pt;}
.ls3_c00429{letter-spacing:-0.756133pt;}
.ls2_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:0.756133pt;}
.ls1_c00429{letter-spacing:1.519400pt;}
.lsc_c00429{letter-spacing:2.058000pt;}
.ls8_c00429{letter-spacing:5.011600pt;}
.ls9_c00429{letter-spacing:5.331733pt;}
.ls6_c00429{letter-spacing:5.427333pt;}
.lsd_c00429{letter-spacing:7.182000pt;}
.ls7_c00429{letter-spacing:7.356800pt;}
.lsa_c00429{letter-spacing:12.141400pt;}
.lsb_c00429{letter-spacing:17.718400pt;}
.ws0_c00429{word-spacing:0.000000pt;}
._3_c00429{margin-left:-14.737042pt;}
._6_c00429{margin-left:-1.433375pt;}
._5_c00429{width:1.141333pt;}
._0_c00429{width:2.118752pt;}
._1_c00429{width:3.081721pt;}
._4_c00429{width:5.149781pt;}
._2_c00429{width:6.398812pt;}
._7_c00429{width:8.617067pt;}
.fsf_c00429{font-size:23.333333pt;}
.fs10_c00429{font-size:30.000000pt;}
.fse_c00429{font-size:32.666667pt;}
.fsd_c00429{font-size:34.000000pt;}
.fs5_c00429{font-size:64.000000pt;}
.fs2_c00429{font-size:66.666667pt;}
.fs7_c00429{font-size:68.000000pt;}
.fs8_c00429{font-size:68.666667pt;}
.fsc_c00429{font-size:69.333333pt;}
.fs3_c00429{font-size:70.000000pt;}
.fs6_c00429{font-size:70.666667pt;}
.fs0_c00429{font-size:71.333333pt;}
.fs1_c00429{font-size:72.666667pt;}
.fsa_c00429{font-size:76.000000pt;}
.fs4_c00429{font-size:78.000000pt;}
.fs9_c00429{font-size:83.333333pt;}
.fsb_c00429{font-size:86.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y27_c00429{bottom:347.200120pt;}
.y17_c00429{bottom:347.838907pt;}
.y26_c00429{bottom:375.679733pt;}
.y16_c00429{bottom:375.839320pt;}
.y15_c00429{bottom:381.439453pt;}
.y25_c00429{bottom:403.835653pt;}
.y14_c00429{bottom:404.479987pt;}
.y13_c00429{bottom:404.480200pt;}
.y24_c00429{bottom:432.955773pt;}
.y12_c00429{bottom:433.599613pt;}
.y23_c00429{bottom:462.075893pt;}
.y11_c00429{bottom:462.719200pt;}
.y22_c00429{bottom:490.557640pt;}
.y10_c00429{bottom:490.878213pt;}
.yf_c00429{bottom:545.918947pt;}
.ye_c00429{bottom:572.159000pt;}
.yd_c00429{bottom:599.039067pt;}
.y21_c00429{bottom:670.396040pt;}
.yc_c00429{bottom:671.039067pt;}
.y20_c00429{bottom:698.877773pt;}
.yb_c00429{bottom:699.199213pt;}
.y1f_c00429{bottom:727.357600pt;}
.ya_c00429{bottom:727.680093pt;}
.y1e_c00429{bottom:756.158533pt;}
.y9_c00429{bottom:757.119147pt;}
.y1d_c00429{bottom:785.278667pt;}
.y8_c00429{bottom:785.600093pt;}
.y1c_c00429{bottom:814.079587pt;}
.y7_c00429{bottom:814.719720pt;}
.y1a_c00429{bottom:842.878973pt;}
.y1b_c00429{bottom:842.879880pt;}
.y6_c00429{bottom:843.520013pt;}
.y19_c00429{bottom:871.039613pt;}
.y5_c00429{bottom:871.359293pt;}
.y18_c00429{bottom:899.519453pt;}
.y4_c00429{bottom:899.839013pt;}
.y3_c00429{bottom:956.479493pt;}
.y2_c00429{bottom:983.038733pt;}
.y1_c00429{bottom:1009.599613pt;}
.h12_c00429{height:24.335938pt;}
.h13_c00429{height:31.289062pt;}
.h11_c00429{height:34.070312pt;}
.h10_c00429{height:35.460938pt;}
.h6_c00429{height:66.750000pt;}
.h3_c00429{height:67.187500pt;}
.h8_c00429{height:68.531250pt;}
.h9_c00429{height:69.203125pt;}
.hb_c00429{height:69.531250pt;}
.h14_c00429{height:69.875000pt;}
.h4_c00429{height:70.546875pt;}
.hd_c00429{height:70.921875pt;}
.h7_c00429{height:71.218750pt;}
.h1_c00429{height:71.890625pt;}
.hf_c00429{height:72.312500pt;}
.h2_c00429{height:73.234375pt;}
.hc_c00429{height:75.109375pt;}
.h5_c00429{height:77.085938pt;}
.ha_c00429{height:86.914062pt;}
.he_c00429{height:89.695312pt;}
.h0_c00429{height:1122.666667pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x3_c00429{left:121.599613pt;}
.x1_c00429{left:123.839333pt;}
.x4_c00429{left:290.559893pt;}
.x2_c00429{left:292.158960pt;}
.x7_c00429{left:293.119587pt;}
.x5_c00429{left:314.559067pt;}
.x8_c00429{left:322.558533pt;}
.x6_c00429{left:330.238787pt;}
.xa_c00429{left:337.278787pt;}
.x9_c00429{left:338.239720pt;}
.xc_c00429{left:409.599853pt;}
.xb_c00429{left:417.279707pt;}
.x10_c00429{left:430.398907pt;}
.xd_c00429{left:453.757733pt;}
.x16_c00429{left:455.359867pt;}
.xf_c00429{left:456.319333pt;}
.x13_c00429{left:457.278427pt;}
.x12_c00429{left:462.719293pt;}
.x11_c00429{left:463.999200pt;}
.x15_c00429{left:491.838907pt;}
.x14_c00429{left:492.801187pt;}
.xe_c00429{left:494.718787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2407a1dc365b396d5290853.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_23a5cab9d93a681a9e5b82cf.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_5e9d5c81eeee912b6553fab6.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.364746;font-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_c00430{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.m7_c00430{transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354027,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.lsb_c00430{letter-spacing:-11.119125px;}
.lsc_c00430{letter-spacing:-2.353583px;}
.ls5_c00430{letter-spacing:-1.709325px;}
.ls2_c00430{letter-spacing:-0.850650px;}
.ls1_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:0.850650px;}
.lsa_c00430{letter-spacing:1.889550px;}
.ls8_c00430{letter-spacing:3.612000px;}
.ls7_c00430{letter-spacing:3.994650px;}
.ls6_c00430{letter-spacing:5.914425px;}
.ls4_c00430{letter-spacing:6.240000px;}
.ls3_c00430{letter-spacing:6.637800px;}
.ls9_c00430{letter-spacing:16.854750px;}
.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;}
._0_c00430{width:2.407432px;}
._2_c00430{width:4.012432px;}
._1_c00430{width:6.853009px;}
.fc0_c00430{color:transparent;}
.fs5_c00430{font-size:58.500000px;}
.fs3_c00430{font-size:60.000000px;}
.fs2_c00430{font-size:74.250000px;}
.fs1_c00430{font-size:78.000000px;}
.fs0_c00430{font-size:80.250000px;}
.fs7_c00430{font-size:81.750000px;}
.fs4_c00430{font-size:82.500000px;}
.fs6_c00430{font-size:111.750000px;}
.y0_c00430{bottom:0.000000px;}
.y12_c00430{bottom:389.879910px;}
.y11_c00430{bottom:420.119985px;}
.y10_c00430{bottom:449.278800px;}
.yf_c00430{bottom:449.279250px;}
.ye_c00430{bottom:538.559460px;}
.yd_c00430{bottom:568.438620px;}
.yc_c00430{bottom:598.678530px;}
.yb_c00430{bottom:598.679100px;}
.ya_c00430{bottom:687.238995px;}
.y9_c00430{bottom:717.119985px;}
.y8_c00430{bottom:748.080000px;}
.y7_c00430{bottom:837.718500px;}
.y6_c00430{bottom:867.960015px;}
.y5_c00430{bottom:896.759490px;}
.y4_c00430{bottom:896.760750px;}
.y3_c00430{bottom:985.679715px;}
.y2_c00430{bottom:1016.278755px;}
.y1_c00430{bottom:1045.800105px;}
.h6_c00430{height:58.957031px;}
.h4_c00430{height:60.468750px;}
.h3_c00430{height:74.830078px;}
.h2_c00430{height:78.609375px;}
.h8_c00430{height:79.309570px;}
.h1_c00430{height:80.876953px;}
.h9_c00430{height:82.388672px;}
.h5_c00430{height:83.144531px;}
.h7_c00430{height:109.676514px;}
.h0_c00430{height:1263.000000px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:129.958950px;}
.x4_c00430{left:131.040000px;}
.x6_c00430{left:132.478665px;}
.x8_c00430{left:133.559685px;}
.xc_c00430{left:134.639415px;}
.xd_c00430{left:135.718110px;}
.xf_c00430{left:137.878560px;}
.x11_c00430{left:138.958665px;}
.x9_c00430{left:200.159850px;}
.x3_c00430{left:217.799535px;}
.x7_c00430{left:220.319250px;}
.xa_c00430{left:228.239250px;}
.x2_c00430{left:285.120000px;}
.x5_c00430{left:286.919535px;}
.xb_c00430{left:288.719100px;}
.xe_c00430{left:290.518635px;}
.x10_c00430{left:293.040000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.lsb_c00430{letter-spacing:-9.883667pt;}
.lsc_c00430{letter-spacing:-2.092073pt;}
.ls5_c00430{letter-spacing:-1.519400pt;}
.ls2_c00430{letter-spacing:-0.756133pt;}
.ls1_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:0.756133pt;}
.lsa_c00430{letter-spacing:1.679600pt;}
.ls8_c00430{letter-spacing:3.210667pt;}
.ls7_c00430{letter-spacing:3.550800pt;}
.ls6_c00430{letter-spacing:5.257267pt;}
.ls4_c00430{letter-spacing:5.546667pt;}
.ls3_c00430{letter-spacing:5.900267pt;}
.ls9_c00430{letter-spacing:14.982000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
._0_c00430{width:2.139939pt;}
._2_c00430{width:3.566606pt;}
._1_c00430{width:6.091563pt;}
.fs5_c00430{font-size:52.000000pt;}
.fs3_c00430{font-size:53.333333pt;}
.fs2_c00430{font-size:66.000000pt;}
.fs1_c00430{font-size:69.333333pt;}
.fs0_c00430{font-size:71.333333pt;}
.fs7_c00430{font-size:72.666667pt;}
.fs4_c00430{font-size:73.333333pt;}
.fs6_c00430{font-size:99.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y12_c00430{bottom:346.559920pt;}
.y11_c00430{bottom:373.439987pt;}
.y10_c00430{bottom:399.358933pt;}
.yf_c00430{bottom:399.359333pt;}
.ye_c00430{bottom:478.719520pt;}
.yd_c00430{bottom:505.278773pt;}
.yc_c00430{bottom:532.158693pt;}
.yb_c00430{bottom:532.159200pt;}
.ya_c00430{bottom:610.879107pt;}
.y9_c00430{bottom:637.439987pt;}
.y8_c00430{bottom:664.960000pt;}
.y7_c00430{bottom:744.638667pt;}
.y6_c00430{bottom:771.520013pt;}
.y5_c00430{bottom:797.119547pt;}
.y4_c00430{bottom:797.120667pt;}
.y3_c00430{bottom:876.159747pt;}
.y2_c00430{bottom:903.358893pt;}
.y1_c00430{bottom:929.600093pt;}
.h6_c00430{height:52.406250pt;}
.h4_c00430{height:53.750000pt;}
.h3_c00430{height:66.515625pt;}
.h2_c00430{height:69.875000pt;}
.h8_c00430{height:70.497396pt;}
.h1_c00430{height:71.890625pt;}
.h9_c00430{height:73.234375pt;}
.h5_c00430{height:73.906250pt;}
.h7_c00430{height:97.490234pt;}
.h0_c00430{height:1122.666667pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:115.519067pt;}
.x4_c00430{left:116.480000pt;}
.x6_c00430{left:117.758813pt;}
.x8_c00430{left:118.719720pt;}
.xc_c00430{left:119.679480pt;}
.xd_c00430{left:120.638320pt;}
.xf_c00430{left:122.558720pt;}
.x11_c00430{left:123.518813pt;}
.x9_c00430{left:177.919867pt;}
.x3_c00430{left:193.599587pt;}
.x7_c00430{left:195.839333pt;}
.xa_c00430{left:202.879333pt;}
.x2_c00430{left:253.440000pt;}
.x5_c00430{left:255.039587pt;}
.xb_c00430{left:256.639200pt;}
.xe_c00430{left:258.238787pt;}
.x10_c00430{left:260.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3acf1b54cffaeb93f797ad79.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_305550d0319ba94f4de41929.woff2')format("woff");}.ff2_c00431{font-family:ff2_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;}
.m1_c00431{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls4_c00431{letter-spacing:-3.055500px;}
.ls0_c00431{letter-spacing:-2.291625px;}
.ls1_c00431{letter-spacing:-1.526963px;}
.ls3_c00431{letter-spacing:-0.763875px;}
.ls2_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;}
._7_c00431{margin-left:-21.395932px;}
._4_c00431{width:1.843805px;}
._5_c00431{width:2.926648px;}
._1_c00431{width:4.682766px;}
._6_c00431{width:7.293810px;}
._0_c00431{width:9.866855px;}
._2_c00431{width:12.600780px;}
._3_c00431{width:13.703739px;}
.fc0_c00431{color:transparent;}
.fs0_c00431{font-size:78.750000px;}
.fs1_c00431{font-size:81.000000px;}
.y0_c00431{bottom:0.000000px;}
.y23_c00431{bottom:411.120030px;}
.y22_c00431{bottom:432.000435px;}
.y21_c00431{bottom:453.239220px;}
.y13_c00431{bottom:517.678740px;}
.y12_c00431{bottom:538.917525px;}
.y11_c00431{bottom:560.158440px;}
.y10_c00431{bottom:625.318320px;}
.y20_c00431{bottom:627.119250px;}
.yf_c00431{bottom:657.359760px;}
.y1f_c00431{bottom:659.519100px;}
.ye_c00431{bottom:689.038920px;}
.y1e_c00431{bottom:691.198260px;}
.yd_c00431{bottom:721.800105px;}
.y1d_c00431{bottom:723.598095px;}
.yc_c00431{bottom:754.564110px;}
.y1c_c00431{bottom:756.358125px;}
.yb_c00431{bottom:786.963960px;}
.y1b_c00431{bottom:788.757960px;}
.ya_c00431{bottom:819.363780px;}
.y1a_c00431{bottom:821.518005px;}
.y9_c00431{bottom:851.761530px;}
.y19_c00431{bottom:853.559445px;}
.y8_c00431{bottom:883.440690px;}
.y18_c00431{bottom:885.598800px;}
.y7_c00431{bottom:915.840540px;}
.y17_c00431{bottom:917.638155px;}
.y6_c00431{bottom:948.600570px;}
.y16_c00431{bottom:950.399985px;}
.y5_c00431{bottom:981.000405px;}
.y15_c00431{bottom:983.160000px;}
.y4_c00431{bottom:1013.400240px;}
.y14_c00431{bottom:1014.839175px;}
.y3_c00431{bottom:1074.238455px;}
.y2_c00431{bottom:1103.399595px;}
.y1_c00431{bottom:1134.000000px;}
.h1_c00431{height:77.288818px;}
.h2_c00431{height:81.632812px;}
.h0_c00431{height:1263.000000px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:133.559685px;}
.x4_c00431{left:135.360420px;}
.x10_c00431{left:136.799670px;}
.x2_c00431{left:296.999565px;}
.x3_c00431{left:298.079790px;}
.x5_c00431{left:444.239025px;}
.xd_c00431{left:523.082685px;}
.x9_c00431{left:525.241545px;}
.xb_c00431{left:545.763135px;}
.xf_c00431{left:547.203855px;}
.xc_c00431{left:549.363000px;}
.x6_c00431{left:558.719565px;}
.x7_c00431{left:560.519505px;}
.xe_c00431{left:561.962580px;}
.x8_c00431{left:563.400945px;}
.xa_c00431{left:569.162040px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls4_c00431{letter-spacing:-2.716000pt;}
.ls0_c00431{letter-spacing:-2.037000pt;}
.ls1_c00431{letter-spacing:-1.357300pt;}
.ls3_c00431{letter-spacing:-0.679000pt;}
.ls2_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
._7_c00431{margin-left:-19.018606pt;}
._4_c00431{width:1.638938pt;}
._5_c00431{width:2.601465pt;}
._1_c00431{width:4.162458pt;}
._6_c00431{width:6.483386pt;}
._0_c00431{width:8.770538pt;}
._2_c00431{width:11.200693pt;}
._3_c00431{width:12.181101pt;}
.fs0_c00431{font-size:70.000000pt;}
.fs1_c00431{font-size:72.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y23_c00431{bottom:365.440027pt;}
.y22_c00431{bottom:384.000387pt;}
.y21_c00431{bottom:402.879307pt;}
.y13_c00431{bottom:460.158880pt;}
.y12_c00431{bottom:479.037800pt;}
.y11_c00431{bottom:497.918613pt;}
.y10_c00431{bottom:555.838507pt;}
.y20_c00431{bottom:557.439333pt;}
.yf_c00431{bottom:584.319787pt;}
.y1f_c00431{bottom:586.239200pt;}
.ye_c00431{bottom:612.479040pt;}
.y1e_c00431{bottom:614.398453pt;}
.yd_c00431{bottom:641.600093pt;}
.y1d_c00431{bottom:643.198307pt;}
.yc_c00431{bottom:670.723653pt;}
.y1c_c00431{bottom:672.318333pt;}
.yb_c00431{bottom:699.523520pt;}
.y1b_c00431{bottom:701.118187pt;}
.ya_c00431{bottom:728.323360pt;}
.y1a_c00431{bottom:730.238227pt;}
.y9_c00431{bottom:757.121360pt;}
.y19_c00431{bottom:758.719507pt;}
.y8_c00431{bottom:785.280613pt;}
.y18_c00431{bottom:787.198933pt;}
.y7_c00431{bottom:814.080480pt;}
.y17_c00431{bottom:815.678360pt;}
.y6_c00431{bottom:843.200507pt;}
.y16_c00431{bottom:844.799987pt;}
.y5_c00431{bottom:872.000360pt;}
.y15_c00431{bottom:873.920000pt;}
.y4_c00431{bottom:900.800213pt;}
.y14_c00431{bottom:902.079267pt;}
.y3_c00431{bottom:954.878627pt;}
.y2_c00431{bottom:980.799640pt;}
.y1_c00431{bottom:1008.000000pt;}
.h1_c00431{height:68.701172pt;}
.h2_c00431{height:72.562500pt;}
.h0_c00431{height:1122.666667pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:118.719720pt;}
.x4_c00431{left:120.320373pt;}
.x10_c00431{left:121.599707pt;}
.x2_c00431{left:263.999613pt;}
.x3_c00431{left:264.959813pt;}
.x5_c00431{left:394.879133pt;}
.xd_c00431{left:464.962387pt;}
.x9_c00431{left:466.881373pt;}
.xb_c00431{left:485.122787pt;}
.xf_c00431{left:486.403427pt;}
.xc_c00431{left:488.322667pt;}
.x6_c00431{left:496.639613pt;}
.x7_c00431{left:498.239560pt;}
.xe_c00431{left:499.522293pt;}
.x8_c00431{left:500.800840pt;}
.xa_c00431{left:505.921813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99bfcaab5bc97201b26e6812.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_7b77a6b4d1abcd968969d128.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_b21815cfae81b4346c3d6ab8.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.lsb_c00432{letter-spacing:-18.507600px;}
.lsa_c00432{letter-spacing:-16.453125px;}
.ls9_c00432{letter-spacing:-5.560785px;}
.ls5_c00432{letter-spacing:-4.190288px;}
.ls6_c00432{letter-spacing:-3.354750px;}
.ls8_c00432{letter-spacing:-2.512913px;}
.ls4_c00432{letter-spacing:-1.677375px;}
.ls3_c00432{letter-spacing:-0.834750px;}
.ls2_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:0.834750px;}
.ls7_c00432{letter-spacing:1.677375px;}
.ls1_c00432{letter-spacing:3.354750px;}
.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;}
._6_c00432{margin-left:-4.511588px;}
._0_c00432{width:2.339043px;}
._1_c00432{width:3.402201px;}
._3_c00432{width:5.701098px;}
._2_c00432{width:7.064110px;}
._5_c00432{width:9.079372px;}
._4_c00432{width:12.387643px;}
.fc0_c00432{color:transparent;}
.fs1_c00432{font-size:76.500000px;}
.fs0_c00432{font-size:78.750000px;}
.fs3_c00432{font-size:79.500000px;}
.fs2_c00432{font-size:87.750000px;}
.y0_c00432{bottom:0.000000px;}
.y16_c00432{bottom:480.239250px;}
.y29_c00432{bottom:480.959100px;}
.y15_c00432{bottom:512.639100px;}
.y28_c00432{bottom:513.720930px;}
.y14_c00432{bottom:545.039385px;}
.y27_c00432{bottom:545.760285px;}
.y13_c00432{bottom:577.078770px;}
.y26_c00432{bottom:578.160135px;}
.y12_c00432{bottom:609.124695px;}
.y25_c00432{bottom:610.199475px;}
.y11_c00432{bottom:641.522445px;}
.y24_c00432{bottom:642.238845px;}
.y10_c00432{bottom:673.563885px;}
.y23_c00432{bottom:674.638680px;}
.yf_c00432{bottom:705.963735px;}
.y22_c00432{bottom:706.680135px;}
.ye_c00432{bottom:738.003060px;}
.y21_c00432{bottom:738.720315px;}
.yd_c00432{bottom:770.402910px;}
.y20_c00432{bottom:771.480330px;}
.yc_c00432{bottom:803.162940px;}
.y1f_c00432{bottom:803.519685px;}
.yb_c00432{bottom:835.202295px;}
.y1e_c00432{bottom:835.561140px;}
.ya_c00432{bottom:867.602145px;}
.y1d_c00432{bottom:867.960990px;}
.y9_c00432{bottom:899.643585px;}
.y1c_c00432{bottom:900.721020px;}
.y8_c00432{bottom:932.041335px;}
.y1b_c00432{bottom:933.120855px;}
.y7_c00432{bottom:964.441170px;}
.y1a_c00432{bottom:965.160210px;}
.y6_c00432{bottom:996.120330px;}
.y19_c00432{bottom:997.199550px;}
.y5_c00432{bottom:1029.240555px;}
.y18_c00432{bottom:1029.961395px;}
.y4_c00432{bottom:1060.921800px;}
.y17_c00432{bottom:1061.640540px;}
.y3_c00432{bottom:1092.240780px;}
.y2_c00432{bottom:1114.200285px;}
.y1_c00432{bottom:1135.799565px;}
.h2_c00432{height:75.080566px;}
.h1_c00432{height:79.365234px;}
.h4_c00432{height:80.121094px;}
.h3_c00432{height:86.721680px;}
.h0_c00432{height:1263.000000px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:135.718500px;}
.x2_c00432{left:304.199475px;}
.x8_c00432{left:449.279820px;}
.x7_c00432{left:477.000435px;}
.x3_c00432{left:483.838950px;}
.x6_c00432{left:514.439295px;}
.xa_c00432{left:516.958425px;}
.xb_c00432{left:538.198785px;}
.x5_c00432{left:541.439145px;}
.xe_c00432{left:545.759130px;}
.x4_c00432{left:555.479235px;}
.x9_c00432{left:557.640405px;}
.x10_c00432{left:559.797315px;}
.xf_c00432{left:561.958215px;}
.xc_c00432{left:564.119385px;}
.xd_c00432{left:565.560885px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.lsb_c00432{letter-spacing:-16.451200pt;}
.lsa_c00432{letter-spacing:-14.625000pt;}
.ls9_c00432{letter-spacing:-4.942920pt;}
.ls5_c00432{letter-spacing:-3.724700pt;}
.ls6_c00432{letter-spacing:-2.982000pt;}
.ls8_c00432{letter-spacing:-2.233700pt;}
.ls4_c00432{letter-spacing:-1.491000pt;}
.ls3_c00432{letter-spacing:-0.742000pt;}
.ls2_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:0.742000pt;}
.ls7_c00432{letter-spacing:1.491000pt;}
.ls1_c00432{letter-spacing:2.982000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
._6_c00432{margin-left:-4.010300pt;}
._0_c00432{width:2.079149pt;}
._1_c00432{width:3.024179pt;}
._3_c00432{width:5.067643pt;}
._2_c00432{width:6.279209pt;}
._5_c00432{width:8.070553pt;}
._4_c00432{width:11.011238pt;}
.fs1_c00432{font-size:68.000000pt;}
.fs0_c00432{font-size:70.000000pt;}
.fs3_c00432{font-size:70.666667pt;}
.fs2_c00432{font-size:78.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y16_c00432{bottom:426.879333pt;}
.y29_c00432{bottom:427.519200pt;}
.y15_c00432{bottom:455.679200pt;}
.y28_c00432{bottom:456.640827pt;}
.y14_c00432{bottom:484.479453pt;}
.y27_c00432{bottom:485.120253pt;}
.y13_c00432{bottom:512.958907pt;}
.y26_c00432{bottom:513.920120pt;}
.y12_c00432{bottom:541.444173pt;}
.y25_c00432{bottom:542.399533pt;}
.y11_c00432{bottom:570.242173pt;}
.y24_c00432{bottom:570.878973pt;}
.y10_c00432{bottom:598.723453pt;}
.y23_c00432{bottom:599.678827pt;}
.yf_c00432{bottom:627.523320pt;}
.y22_c00432{bottom:628.160120pt;}
.ye_c00432{bottom:656.002720pt;}
.y21_c00432{bottom:656.640280pt;}
.yd_c00432{bottom:684.802587pt;}
.y20_c00432{bottom:685.760293pt;}
.yc_c00432{bottom:713.922613pt;}
.y1f_c00432{bottom:714.239720pt;}
.yb_c00432{bottom:742.402040pt;}
.y1e_c00432{bottom:742.721013pt;}
.ya_c00432{bottom:771.201907pt;}
.y1d_c00432{bottom:771.520880pt;}
.y9_c00432{bottom:799.683187pt;}
.y1c_c00432{bottom:800.640907pt;}
.y8_c00432{bottom:828.481187pt;}
.y1b_c00432{bottom:829.440760pt;}
.y7_c00432{bottom:857.281040pt;}
.y1a_c00432{bottom:857.920187pt;}
.y6_c00432{bottom:885.440293pt;}
.y19_c00432{bottom:886.399600pt;}
.y5_c00432{bottom:914.880493pt;}
.y18_c00432{bottom:915.521240pt;}
.y4_c00432{bottom:943.041600pt;}
.y17_c00432{bottom:943.680480pt;}
.y3_c00432{bottom:970.880693pt;}
.y2_c00432{bottom:990.400253pt;}
.y1_c00432{bottom:1009.599613pt;}
.h2_c00432{height:66.738281pt;}
.h1_c00432{height:70.546875pt;}
.h4_c00432{height:71.218750pt;}
.h3_c00432{height:77.085938pt;}
.h0_c00432{height:1122.666667pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:120.638667pt;}
.x2_c00432{left:270.399533pt;}
.x8_c00432{left:399.359840pt;}
.x7_c00432{left:424.000387pt;}
.x3_c00432{left:430.079067pt;}
.x6_c00432{left:457.279373pt;}
.xa_c00432{left:459.518600pt;}
.xb_c00432{left:478.398920pt;}
.x5_c00432{left:481.279240pt;}
.xe_c00432{left:485.119227pt;}
.x4_c00432{left:493.759320pt;}
.x9_c00432{left:495.680360pt;}
.x10_c00432{left:497.597613pt;}
.xf_c00432{left:499.518413pt;}
.xc_c00432{left:501.439453pt;}
.xd_c00432{left:502.720787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbf118263d8bb2bc8074f011.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_82f8c5df46d6400e14b4c70d.woff2')format("woff");}.ff2_c00433{font-family:ff2_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;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_f12a776e7010be2d08baa032.woff2')format("woff");}.ff3_c00433{font-family:ff3_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;}
.m6_c00433{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls9_c00433{letter-spacing:-4.088550px;}
.ls6_c00433{letter-spacing:-3.818588px;}
.ls7_c00433{letter-spacing:-3.055500px;}
.ls2_c00433{letter-spacing:-2.291625px;}
.ls1_c00433{letter-spacing:-1.526963px;}
.ls8_c00433{letter-spacing:-0.811125px;}
.ls3_c00433{letter-spacing:-0.763875px;}
.ls5_c00433{letter-spacing:0.000000px;}
.ls4_c00433{letter-spacing:0.761400px;}
.ls0_c00433{letter-spacing:0.763875px;}
.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;}
._4_c00433{width:3.620948px;}
._1_c00433{width:4.678851px;}
._0_c00433{width:5.982790px;}
._6_c00433{width:9.654689px;}
._2_c00433{width:11.135265px;}
._3_c00433{width:12.601208px;}
._5_c00433{width:14.180260px;}
.fc0_c00433{color:transparent;}
.fs1_c00433{font-size:70.500000px;}
.fs5_c00433{font-size:72.750000px;}
.fs2_c00433{font-size:76.500000px;}
.fs3_c00433{font-size:78.000000px;}
.fs0_c00433{font-size:78.750000px;}
.fs4_c00433{font-size:80.250000px;}
.y0_c00433{bottom:0.000000px;}
.y22_c00433{bottom:262.440165px;}
.y21_c00433{bottom:303.120435px;}
.y20_c00433{bottom:344.879535px;}
.y1f_c00433{bottom:385.199850px;}
.y1e_c00433{bottom:425.879520px;}
.y11_c00433{bottom:465.121995px;}
.y10_c00433{bottom:495.001710px;}
.yf_c00433{bottom:524.521245px;}
.y1d_c00433{bottom:577.084440px;}
.y1c_c00433{bottom:609.123780px;}
.y1b_c00433{bottom:641.523630px;}
.y1a_c00433{bottom:673.562985px;}
.ye_c00433{bottom:704.520270px;}
.y19_c00433{bottom:705.962820px;}
.yd_c00433{bottom:737.282085px;}
.y18_c00433{bottom:738.362670px;}
.yc_c00433{bottom:768.601065px;}
.yb_c00433{bottom:798.480795px;}
.ya_c00433{bottom:828.720705px;}
.y9_c00433{bottom:880.200990px;}
.y17_c00433{bottom:881.282085px;}
.y8_c00433{bottom:912.960570px;}
.y16_c00433{bottom:914.042100px;}
.y7_c00433{bottom:945.000000px;}
.y15_c00433{bottom:946.441950px;}
.y6_c00433{bottom:977.759490px;}
.y14_c00433{bottom:978.841800px;}
.y5_c00433{bottom:1009.800735px;}
.y13_c00433{bottom:1010.881140px;}
.y4_c00433{bottom:1041.840090px;}
.y12_c00433{bottom:1042.922610px;}
.y3_c00433{bottom:1073.520270px;}
.y2_c00433{bottom:1103.400120px;}
.y1_c00433{bottom:1133.279850px;}
.h2_c00433{height:69.191895px;}
.h3_c00433{height:75.080566px;}
.h7_c00433{height:75.875977px;}
.h4_c00433{height:76.552734px;}
.h1_c00433{height:77.288818px;}
.h5_c00433{height:78.760986px;}
.h6_c00433{height:79.365234px;}
.h0_c00433{height:1263.000000px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:136.799565px;}
.x4_c00433{left:137.879040px;}
.x3_c00433{left:322.560705px;}
.x2_c00433{left:326.878950px;}
.xf_c00433{left:460.801440px;}
.xc_c00433{left:465.478980px;}
.x5_c00433{left:468.358635px;}
.x12_c00433{left:474.119985px;}
.xe_c00433{left:485.280075px;}
.x13_c00433{left:489.958140px;}
.x6_c00433{left:513.358560px;}
.x11_c00433{left:518.759535px;}
.x8_c00433{left:521.999040px;}
.xa_c00433{left:544.318515px;}
.xd_c00433{left:546.838665px;}
.x9_c00433{left:553.318200px;}
.x7_c00433{left:554.399685px;}
.xb_c00433{left:557.638305px;}
.x10_c00433{left:563.758530px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls9_c00433{letter-spacing:-3.634267pt;}
.ls6_c00433{letter-spacing:-3.394300pt;}
.ls7_c00433{letter-spacing:-2.716000pt;}
.ls2_c00433{letter-spacing:-2.037000pt;}
.ls1_c00433{letter-spacing:-1.357300pt;}
.ls8_c00433{letter-spacing:-0.721000pt;}
.ls3_c00433{letter-spacing:-0.679000pt;}
.ls5_c00433{letter-spacing:0.000000pt;}
.ls4_c00433{letter-spacing:0.676800pt;}
.ls0_c00433{letter-spacing:0.679000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
._4_c00433{width:3.218620pt;}
._1_c00433{width:4.158979pt;}
._0_c00433{width:5.318036pt;}
._6_c00433{width:8.581946pt;}
._2_c00433{width:9.898014pt;}
._3_c00433{width:11.201074pt;}
._5_c00433{width:12.604676pt;}
.fs1_c00433{font-size:62.666667pt;}
.fs5_c00433{font-size:64.666667pt;}
.fs2_c00433{font-size:68.000000pt;}
.fs3_c00433{font-size:69.333333pt;}
.fs0_c00433{font-size:70.000000pt;}
.fs4_c00433{font-size:71.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y22_c00433{bottom:233.280147pt;}
.y21_c00433{bottom:269.440387pt;}
.y20_c00433{bottom:306.559587pt;}
.y1f_c00433{bottom:342.399867pt;}
.y1e_c00433{bottom:378.559573pt;}
.y11_c00433{bottom:413.441773pt;}
.y10_c00433{bottom:440.001520pt;}
.yf_c00433{bottom:466.241107pt;}
.y1d_c00433{bottom:512.963947pt;}
.y1c_c00433{bottom:541.443360pt;}
.y1b_c00433{bottom:570.243227pt;}
.y1a_c00433{bottom:598.722653pt;}
.ye_c00433{bottom:626.240240pt;}
.y19_c00433{bottom:627.522507pt;}
.yd_c00433{bottom:655.361853pt;}
.y18_c00433{bottom:656.322373pt;}
.yc_c00433{bottom:683.200947pt;}
.yb_c00433{bottom:709.760707pt;}
.ya_c00433{bottom:736.640627pt;}
.y9_c00433{bottom:782.400880pt;}
.y17_c00433{bottom:783.361853pt;}
.y8_c00433{bottom:811.520507pt;}
.y16_c00433{bottom:812.481867pt;}
.y7_c00433{bottom:840.000000pt;}
.y15_c00433{bottom:841.281733pt;}
.y6_c00433{bottom:869.119547pt;}
.y14_c00433{bottom:870.081600pt;}
.y5_c00433{bottom:897.600653pt;}
.y13_c00433{bottom:898.561013pt;}
.y4_c00433{bottom:926.080080pt;}
.y12_c00433{bottom:927.042320pt;}
.y3_c00433{bottom:954.240240pt;}
.y2_c00433{bottom:980.800107pt;}
.y1_c00433{bottom:1007.359867pt;}
.h2_c00433{height:61.503906pt;}
.h3_c00433{height:66.738281pt;}
.h7_c00433{height:67.445312pt;}
.h4_c00433{height:68.046875pt;}
.h1_c00433{height:68.701172pt;}
.h5_c00433{height:70.009766pt;}
.h6_c00433{height:70.546875pt;}
.h0_c00433{height:1122.666667pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:121.599613pt;}
.x4_c00433{left:122.559147pt;}
.x3_c00433{left:286.720627pt;}
.x2_c00433{left:290.559067pt;}
.xf_c00433{left:409.601280pt;}
.xc_c00433{left:413.759093pt;}
.x5_c00433{left:416.318787pt;}
.x12_c00433{left:421.439987pt;}
.xe_c00433{left:431.360067pt;}
.x13_c00433{left:435.518347pt;}
.x6_c00433{left:456.318720pt;}
.x11_c00433{left:461.119587pt;}
.x8_c00433{left:463.999147pt;}
.xa_c00433{left:483.838680pt;}
.xd_c00433{left:486.078813pt;}
.x9_c00433{left:491.838400pt;}
.x7_c00433{left:492.799720pt;}
.xb_c00433{left:495.678493pt;}
.x10_c00433{left:501.118693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff058f3914dad86b0199fc63.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_26e7ce947d2f5a2a6fc18c7a.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls6_c00434{letter-spacing:-9.261000px;}
.ls5_c00434{letter-spacing:-7.497765px;}
.ls8_c00434{letter-spacing:-4.190288px;}
.ls3_c00434{letter-spacing:-3.354750px;}
.ls7_c00434{letter-spacing:-2.291265px;}
.ls9_c00434{letter-spacing:-1.677375px;}
.ls2_c00434{letter-spacing:-0.834750px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:0.834750px;}
.ls4_c00434{letter-spacing:1.637700px;}
.lsa_c00434{letter-spacing:1.677375px;}
.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;}
._0_c00434{width:2.339043px;}
._1_c00434{width:3.402201px;}
._6_c00434{width:4.450079px;}
._5_c00434{width:6.047799px;}
._2_c00434{width:7.084752px;}
._4_c00434{width:8.866781px;}
._3_c00434{width:10.877821px;}
.fc0_c00434{color:transparent;}
.fs2_c00434{font-size:76.500000px;}
.fs0_c00434{font-size:78.750000px;}
.fs1_c00434{font-size:79.500000px;}
.fs3_c00434{font-size:88.500000px;}
.y0_c00434{bottom:0.000000px;}
.y11_c00434{bottom:576.001860px;}
.y10_c00434{bottom:605.881575px;}
.yf_c00434{bottom:635.401110px;}
.ye_c00434{bottom:695.160555px;}
.yd_c00434{bottom:724.680090px;}
.yc_c00434{bottom:754.559805px;}
.yb_c00434{bottom:807.119385px;}
.y19_c00434{bottom:809.283210px;}
.ya_c00434{bottom:839.519715px;}
.y18_c00434{bottom:841.322565px;}
.y9_c00434{bottom:871.559055px;}
.y17_c00434{bottom:873.722415px;}
.y8_c00434{bottom:903.959385px;}
.y16_c00434{bottom:905.761755px;}
.y7_c00434{bottom:936.719055px;}
.y15_c00434{bottom:938.521800px;}
.y6_c00434{bottom:968.760615px;}
.y14_c00434{bottom:970.200960px;}
.y5_c00434{bottom:1000.799955px;}
.y13_c00434{bottom:1002.962790px;}
.y4_c00434{bottom:1033.199805px;}
.y12_c00434{bottom:1035.002130px;}
.y3_c00434{bottom:1072.439205px;}
.y2_c00434{bottom:1101.959295px;}
.y1_c00434{bottom:1132.559685px;}
.h3_c00434{height:77.097656px;}
.h1_c00434{height:79.365234px;}
.h2_c00434{height:80.121094px;}
.h4_c00434{height:87.462891px;}
.h0_c00434{height:1263.000000px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:129.238785px;}
.x4_c00434{left:130.679460px;}
.x5_c00434{left:131.759790px;}
.x2_c00434{left:314.639700px;}
.x3_c00434{left:315.719100px;}
.x8_c00434{left:471.599880px;}
.xa_c00434{left:503.642010px;}
.xc_c00434{left:505.081905px;}
.x6_c00434{left:509.042250px;}
.x9_c00434{left:516.242205px;}
.x7_c00434{left:528.480945px;}
.xd_c00434{left:553.321515px;}
.xb_c00434{left:556.922280px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls6_c00434{letter-spacing:-8.232000pt;}
.ls5_c00434{letter-spacing:-6.664680pt;}
.ls8_c00434{letter-spacing:-3.724700pt;}
.ls3_c00434{letter-spacing:-2.982000pt;}
.ls7_c00434{letter-spacing:-2.036680pt;}
.ls9_c00434{letter-spacing:-1.491000pt;}
.ls2_c00434{letter-spacing:-0.742000pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:0.742000pt;}
.ls4_c00434{letter-spacing:1.455733pt;}
.lsa_c00434{letter-spacing:1.491000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
._0_c00434{width:2.079149pt;}
._1_c00434{width:3.024179pt;}
._6_c00434{width:3.955626pt;}
._5_c00434{width:5.375821pt;}
._2_c00434{width:6.297557pt;}
._4_c00434{width:7.881583pt;}
._3_c00434{width:9.669174pt;}
.fs2_c00434{font-size:68.000000pt;}
.fs0_c00434{font-size:70.000000pt;}
.fs1_c00434{font-size:70.666667pt;}
.fs3_c00434{font-size:78.666667pt;}
.y0_c00434{bottom:0.000000pt;}
.y11_c00434{bottom:512.001653pt;}
.y10_c00434{bottom:538.561400pt;}
.yf_c00434{bottom:564.800987pt;}
.ye_c00434{bottom:617.920493pt;}
.yd_c00434{bottom:644.160080pt;}
.yc_c00434{bottom:670.719827pt;}
.yb_c00434{bottom:717.439453pt;}
.y19_c00434{bottom:719.362853pt;}
.ya_c00434{bottom:746.239747pt;}
.y18_c00434{bottom:747.842280pt;}
.y9_c00434{bottom:774.719160pt;}
.y17_c00434{bottom:776.642147pt;}
.y8_c00434{bottom:803.519453pt;}
.y16_c00434{bottom:805.121560pt;}
.y7_c00434{bottom:832.639160pt;}
.y15_c00434{bottom:834.241600pt;}
.y6_c00434{bottom:861.120547pt;}
.y14_c00434{bottom:862.400853pt;}
.y5_c00434{bottom:889.599960pt;}
.y13_c00434{bottom:891.522480pt;}
.y4_c00434{bottom:918.399827pt;}
.y12_c00434{bottom:920.001893pt;}
.y3_c00434{bottom:953.279293pt;}
.y2_c00434{bottom:979.519373pt;}
.y1_c00434{bottom:1006.719720pt;}
.h3_c00434{height:68.531250pt;}
.h1_c00434{height:70.546875pt;}
.h2_c00434{height:71.218750pt;}
.h4_c00434{height:77.744792pt;}
.h0_c00434{height:1122.666667pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:114.878920pt;}
.x4_c00434{left:116.159520pt;}
.x5_c00434{left:117.119813pt;}
.x2_c00434{left:279.679733pt;}
.x3_c00434{left:280.639200pt;}
.x8_c00434{left:419.199893pt;}
.xa_c00434{left:447.681787pt;}
.xc_c00434{left:448.961693pt;}
.x6_c00434{left:452.482000pt;}
.x9_c00434{left:458.881960pt;}
.x7_c00434{left:469.760840pt;}
.xd_c00434{left:491.841347pt;}
.xb_c00434{left:495.042027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cad905ff6972441545a4e4f.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00435{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.298544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298544,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.lsa_c00435{letter-spacing:-3.769800px;}
.ls8_c00435{letter-spacing:-1.709325px;}
.ls2_c00435{letter-spacing:-0.850650px;}
.ls3_c00435{letter-spacing:0.000000px;}
.ls0_c00435{letter-spacing:0.850650px;}
.ls1_c00435{letter-spacing:1.709325px;}
.ls9_c00435{letter-spacing:2.560778px;}
.ls5_c00435{letter-spacing:4.828200px;}
.ls4_c00435{letter-spacing:4.976400px;}
.ls6_c00435{letter-spacing:6.068400px;}
.ls7_c00435{letter-spacing:7.800780px;}
.lsb_c00435{letter-spacing:26.775765px;}
.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;}
._2_c00435{width:1.829768px;}
._3_c00435{width:4.012432px;}
._1_c00435{width:5.232368px;}
._0_c00435{width:8.338146px;}
.fc0_c00435{color:transparent;}
.fs3_c00435{font-size:76.500000px;}
.fs2_c00435{font-size:77.250000px;}
.fs1_c00435{font-size:78.000000px;}
.fs0_c00435{font-size:80.250000px;}
.y0_c00435{bottom:0.000000px;}
.y13_c00435{bottom:427.680720px;}
.y12_c00435{bottom:451.076730px;}
.y11_c00435{bottom:481.316805px;}
.y10_c00435{bottom:541.438185px;}
.yf_c00435{bottom:570.958230px;}
.ye_c00435{bottom:601.198305px;}
.yd_c00435{bottom:659.879055px;}
.yc_c00435{bottom:689.040030px;}
.yb_c00435{bottom:719.280105px;}
.ya_c00435{bottom:779.401470px;}
.y9_c00435{bottom:809.280630px;}
.y8_c00435{bottom:839.520720px;}
.y7_c00435{bottom:899.280855px;}
.y6_c00435{bottom:929.159820px;}
.y4_c00435{bottom:958.680720px;}
.y5_c00435{bottom:958.681185px;}
.y3_c00435{bottom:1018.440855px;}
.y2_c00435{bottom:1047.960570px;}
.y1_c00435{bottom:1077.480285px;}
.h4_c00435{height:77.097656px;}
.h3_c00435{height:77.853516px;}
.h2_c00435{height:78.609375px;}
.h1_c00435{height:80.876953px;}
.h0_c00435{height:1263.000000px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:136.079400px;}
.x4_c00435{left:137.159130px;}
.x7_c00435{left:138.598095px;}
.x8_c00435{left:139.678395px;}
.x9_c00435{left:141.481335px;}
.xa_c00435{left:142.919610px;}
.xb_c00435{left:204.838515px;}
.x3_c00435{left:224.279250px;}
.x6_c00435{left:225.719535px;}
.x2_c00435{left:291.238785px;}
.x5_c00435{left:292.679100px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.lsa_c00435{letter-spacing:-3.350933pt;}
.ls8_c00435{letter-spacing:-1.519400pt;}
.ls2_c00435{letter-spacing:-0.756133pt;}
.ls3_c00435{letter-spacing:0.000000pt;}
.ls0_c00435{letter-spacing:0.756133pt;}
.ls1_c00435{letter-spacing:1.519400pt;}
.ls9_c00435{letter-spacing:2.276247pt;}
.ls5_c00435{letter-spacing:4.291733pt;}
.ls4_c00435{letter-spacing:4.423467pt;}
.ls6_c00435{letter-spacing:5.394133pt;}
.ls7_c00435{letter-spacing:6.934027pt;}
.lsb_c00435{letter-spacing:23.800680pt;}
.ws0_c00435{word-spacing:0.000000pt;}
._2_c00435{width:1.626461pt;}
._3_c00435{width:3.566606pt;}
._1_c00435{width:4.650994pt;}
._0_c00435{width:7.411685pt;}
.fs3_c00435{font-size:68.000000pt;}
.fs2_c00435{font-size:68.666667pt;}
.fs1_c00435{font-size:69.333333pt;}
.fs0_c00435{font-size:71.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y13_c00435{bottom:380.160640pt;}
.y12_c00435{bottom:400.957093pt;}
.y11_c00435{bottom:427.837160pt;}
.y10_c00435{bottom:481.278387pt;}
.yf_c00435{bottom:507.518427pt;}
.ye_c00435{bottom:534.398493pt;}
.yd_c00435{bottom:586.559160pt;}
.yc_c00435{bottom:612.480027pt;}
.yb_c00435{bottom:639.360093pt;}
.ya_c00435{bottom:692.801307pt;}
.y9_c00435{bottom:719.360560pt;}
.y8_c00435{bottom:746.240640pt;}
.y7_c00435{bottom:799.360760pt;}
.y6_c00435{bottom:825.919840pt;}
.y4_c00435{bottom:852.160640pt;}
.y5_c00435{bottom:852.161053pt;}
.y3_c00435{bottom:905.280760pt;}
.y2_c00435{bottom:931.520507pt;}
.y1_c00435{bottom:957.760253pt;}
.h4_c00435{height:68.531250pt;}
.h3_c00435{height:69.203125pt;}
.h2_c00435{height:69.875000pt;}
.h1_c00435{height:71.890625pt;}
.h0_c00435{height:1122.666667pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:120.959467pt;}
.x4_c00435{left:121.919227pt;}
.x7_c00435{left:123.198307pt;}
.x8_c00435{left:124.158573pt;}
.x9_c00435{left:125.761187pt;}
.xa_c00435{left:127.039653pt;}
.xb_c00435{left:182.078680pt;}
.x3_c00435{left:199.359333pt;}
.x6_c00435{left:200.639587pt;}
.x2_c00435{left:258.878920pt;}
.x5_c00435{left:260.159200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f81bbc862f806d5b2227e5b.woff2')format("woff");}.ff1_c00436{font-family:ff1_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:ff2_c00436;src:url('chunks/assets/font_9256e977395bb87b261a044e.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_f099a93dc3738e87ec8fc4d0.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.364746;font-style:normal;font-weight:normal;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_9c48c96b6fe413902005a3e4.woff2')format("woff");}.ff4_c00436{font-family:ff4_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;}
.m9_c00436{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{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_c00436{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358696,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.lse_c00436{letter-spacing:-6.687150px;}
.lsb_c00436{letter-spacing:-6.318900px;}
.ls8_c00436{letter-spacing:-6.118875px;}
.ls4_c00436{letter-spacing:-5.354213px;}
.ls5_c00436{letter-spacing:-4.591125px;}
.lsd_c00436{letter-spacing:-4.363950px;}
.ls7_c00436{letter-spacing:-3.818588px;}
.lsf_c00436{letter-spacing:-3.113700px;}
.ls1_c00436{letter-spacing:-3.055500px;}
.ls2_c00436{letter-spacing:-2.291625px;}
.lsa_c00436{letter-spacing:-2.202435px;}
.ls0_c00436{letter-spacing:-1.526963px;}
.lsc_c00436{letter-spacing:-1.309275px;}
.ls3_c00436{letter-spacing:-0.763875px;}
.ls6_c00436{letter-spacing:0.000000px;}
.ls10_c00436{letter-spacing:0.763875px;}
.ls9_c00436{letter-spacing:2.291625px;}
.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;}
._1_c00436{width:4.687292px;}
._0_c00436{width:5.982852px;}
._3_c00436{width:7.883196px;}
._4_c00436{width:9.581046px;}
._5_c00436{width:12.923234px;}
._2_c00436{width:17.939831px;}
.fc0_c00436{color:transparent;}
.fs4_c00436{font-size:51.750000px;}
.fs1_c00436{font-size:57.750000px;}
.fs5_c00436{font-size:70.500000px;}
.fs8_c00436{font-size:75.750000px;}
.fs2_c00436{font-size:76.500000px;}
.fs0_c00436{font-size:78.750000px;}
.fs7_c00436{font-size:80.250000px;}
.fs6_c00436{font-size:81.750000px;}
.fs3_c00436{font-size:90.000000px;}
.y0_c00436{bottom:0.000000px;}
.y33_c00436{bottom:189.360900px;}
.y32_c00436{bottom:189.363240px;}
.y31_c00436{bottom:219.603150px;}
.y30_c00436{bottom:249.122685px;}
.y1b_c00436{bottom:338.760750px;}
.y1a_c00436{bottom:350.279850px;}
.y19_c00436{bottom:370.440930px;}
.y2f_c00436{bottom:371.163510px;}
.y18_c00436{bottom:402.480285px;}
.y2e_c00436{bottom:403.202850px;}
.y17_c00436{bottom:434.880570px;}
.y2d_c00436{bottom:435.602685px;}
.y16_c00436{bottom:468.360300px;}
.y2c_c00436{bottom:469.083390px;}
.y15_c00436{bottom:500.400405px;}
.y2b_c00436{bottom:501.483240px;}
.y14_c00436{bottom:532.081680px;}
.y2a_c00436{bottom:533.162400px;}
.y13_c00436{bottom:564.481500px;}
.y29_c00436{bottom:565.560120px;}
.y12_c00436{bottom:596.881350px;}
.y28_c00436{bottom:597.959970px;}
.y11_c00436{bottom:628.920705px;}
.y27_c00436{bottom:630.002685px;}
.y10_c00436{bottom:660.962145px;}
.y26_c00436{bottom:662.042040px;}
.yf_c00436{bottom:693.001515px;}
.y25_c00436{bottom:693.721185px;}
.ye_c00436{bottom:725.401335px;}
.y24_c00436{bottom:726.121035px;}
.yd_c00436{bottom:757.799085px;}
.y23_c00436{bottom:758.880000px;}
.yc_c00436{bottom:790.198935px;}
.y22_c00436{bottom:790.919340px;}
.yb_c00436{bottom:822.960750px;}
.y21_c00436{bottom:823.679370px;}
.ya_c00436{bottom:855.720765px;}
.y20_c00436{bottom:856.441200px;}
.y9_c00436{bottom:887.760135px;}
.y1f_c00436{bottom:888.120375px;}
.y7_c00436{bottom:920.159565px;}
.y8_c00436{bottom:920.160465px;}
.y6_c00436{bottom:951.840825px;}
.y1e_c00436{bottom:952.919745px;}
.y5_c00436{bottom:984.240675px;}
.y1d_c00436{bottom:984.961185px;}
.y4_c00436{bottom:1016.280030px;}
.y1c_c00436{bottom:1017.000555px;}
.y3_c00436{bottom:1078.559580px;}
.y2_c00436{bottom:1108.799490px;}
.y1_c00436{bottom:1138.320825px;}
.h5_c00436{height:53.973633px;}
.h2_c00436{height:60.231445px;}
.h6_c00436{height:71.050781px;}
.h3_c00436{height:75.080566px;}
.h1_c00436{height:77.288818px;}
.h8_c00436{height:78.760986px;}
.h9_c00436{height:79.004883px;}
.h7_c00436{height:80.233154px;}
.h4_c00436{height:88.945312px;}
.h0_c00436{height:1263.000000px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:138.599100px;}
.x18_c00436{left:140.397645px;}
.x19_c00436{left:266.399250px;}
.x1a_c00436{left:279.719535px;}
.x2_c00436{left:318.958335px;}
.x4_c00436{left:320.040075px;}
.x6_c00436{left:321.119385px;}
.x5_c00436{left:328.319250px;}
.x3_c00436{left:378.000000px;}
.x11_c00436{left:491.398635px;}
.x7_c00436{left:496.078770px;}
.x13_c00436{left:500.038740px;}
.x14_c00436{left:512.999295px;}
.x10_c00436{left:514.438080px;}
.x15_c00436{left:521.278470px;}
.x12_c00436{left:523.798920px;}
.x17_c00436{left:529.557960px;}
.xe_c00436{left:530.639700px;}
.x9_c00436{left:533.879235px;}
.xd_c00436{left:543.958350px;}
.x8_c00436{left:547.917465px;}
.xb_c00436{left:549.719460px;}
.xa_c00436{left:552.598830px;}
.xf_c00436{left:556.558635px;}
.x16_c00436{left:559.078950px;}
.xc_c00436{left:564.839175px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.lse_c00436{letter-spacing:-5.944133pt;}
.lsb_c00436{letter-spacing:-5.616800pt;}
.ls8_c00436{letter-spacing:-5.439000pt;}
.ls4_c00436{letter-spacing:-4.759300pt;}
.ls5_c00436{letter-spacing:-4.081000pt;}
.lsd_c00436{letter-spacing:-3.879067pt;}
.ls7_c00436{letter-spacing:-3.394300pt;}
.lsf_c00436{letter-spacing:-2.767733pt;}
.ls1_c00436{letter-spacing:-2.716000pt;}
.ls2_c00436{letter-spacing:-2.037000pt;}
.lsa_c00436{letter-spacing:-1.957720pt;}
.ls0_c00436{letter-spacing:-1.357300pt;}
.lsc_c00436{letter-spacing:-1.163800pt;}
.ls3_c00436{letter-spacing:-0.679000pt;}
.ls6_c00436{letter-spacing:0.000000pt;}
.ls10_c00436{letter-spacing:0.679000pt;}
.ls9_c00436{letter-spacing:2.037000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
._1_c00436{width:4.166482pt;}
._0_c00436{width:5.318090pt;}
._3_c00436{width:7.007285pt;}
._4_c00436{width:8.516485pt;}
._5_c00436{width:11.487319pt;}
._2_c00436{width:15.946517pt;}
.fs4_c00436{font-size:46.000000pt;}
.fs1_c00436{font-size:51.333333pt;}
.fs5_c00436{font-size:62.666667pt;}
.fs8_c00436{font-size:67.333333pt;}
.fs2_c00436{font-size:68.000000pt;}
.fs0_c00436{font-size:70.000000pt;}
.fs7_c00436{font-size:71.333333pt;}
.fs6_c00436{font-size:72.666667pt;}
.fs3_c00436{font-size:80.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y33_c00436{bottom:168.320800pt;}
.y32_c00436{bottom:168.322880pt;}
.y31_c00436{bottom:195.202800pt;}
.y30_c00436{bottom:221.442387pt;}
.y1b_c00436{bottom:301.120667pt;}
.y1a_c00436{bottom:311.359867pt;}
.y19_c00436{bottom:329.280827pt;}
.y2f_c00436{bottom:329.923120pt;}
.y18_c00436{bottom:357.760253pt;}
.y2e_c00436{bottom:358.402533pt;}
.y17_c00436{bottom:386.560507pt;}
.y2d_c00436{bottom:387.202387pt;}
.y16_c00436{bottom:416.320267pt;}
.y2c_c00436{bottom:416.963013pt;}
.y15_c00436{bottom:444.800360pt;}
.y2b_c00436{bottom:445.762880pt;}
.y14_c00436{bottom:472.961493pt;}
.y2a_c00436{bottom:473.922133pt;}
.y13_c00436{bottom:501.761333pt;}
.y29_c00436{bottom:502.720107pt;}
.y12_c00436{bottom:530.561200pt;}
.y28_c00436{bottom:531.519973pt;}
.y11_c00436{bottom:559.040627pt;}
.y27_c00436{bottom:560.002387pt;}
.y10_c00436{bottom:587.521907pt;}
.y26_c00436{bottom:588.481813pt;}
.yf_c00436{bottom:616.001347pt;}
.y25_c00436{bottom:616.641053pt;}
.ye_c00436{bottom:644.801187pt;}
.y24_c00436{bottom:645.440920pt;}
.yd_c00436{bottom:673.599187pt;}
.y23_c00436{bottom:674.560000pt;}
.yc_c00436{bottom:702.399053pt;}
.y22_c00436{bottom:703.039413pt;}
.yb_c00436{bottom:731.520667pt;}
.y21_c00436{bottom:732.159440pt;}
.ya_c00436{bottom:760.640680pt;}
.y20_c00436{bottom:761.281067pt;}
.y9_c00436{bottom:789.120120pt;}
.y1f_c00436{bottom:789.440333pt;}
.y7_c00436{bottom:817.919613pt;}
.y8_c00436{bottom:817.920413pt;}
.y6_c00436{bottom:846.080733pt;}
.y1e_c00436{bottom:847.039773pt;}
.y5_c00436{bottom:874.880600pt;}
.y1d_c00436{bottom:875.521053pt;}
.y4_c00436{bottom:903.360027pt;}
.y1c_c00436{bottom:904.000493pt;}
.y3_c00436{bottom:958.719627pt;}
.y2_c00436{bottom:985.599547pt;}
.y1_c00436{bottom:1011.840733pt;}
.h5_c00436{height:47.976562pt;}
.h2_c00436{height:53.539062pt;}
.h6_c00436{height:63.156250pt;}
.h3_c00436{height:66.738281pt;}
.h1_c00436{height:68.701172pt;}
.h8_c00436{height:70.009766pt;}
.h9_c00436{height:70.226562pt;}
.h7_c00436{height:71.318359pt;}
.h4_c00436{height:79.062500pt;}
.h0_c00436{height:1122.666667pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:123.199200pt;}
.x18_c00436{left:124.797907pt;}
.x19_c00436{left:236.799333pt;}
.x1a_c00436{left:248.639587pt;}
.x2_c00436{left:283.518520pt;}
.x4_c00436{left:284.480067pt;}
.x6_c00436{left:285.439453pt;}
.x5_c00436{left:291.839333pt;}
.x3_c00436{left:336.000000pt;}
.x11_c00436{left:436.798787pt;}
.x7_c00436{left:440.958907pt;}
.x13_c00436{left:444.478880pt;}
.x14_c00436{left:455.999373pt;}
.x10_c00436{left:457.278293pt;}
.x15_c00436{left:463.358640pt;}
.x12_c00436{left:465.599040pt;}
.x17_c00436{left:470.718187pt;}
.xe_c00436{left:471.679733pt;}
.x9_c00436{left:474.559320pt;}
.xd_c00436{left:483.518533pt;}
.x8_c00436{left:487.037747pt;}
.xb_c00436{left:488.639520pt;}
.xa_c00436{left:491.198960pt;}
.xf_c00436{left:494.718787pt;}
.x16_c00436{left:496.959067pt;}
.xc_c00436{left:502.079267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5039251331d488800a44e264.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_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_daf4cc820aee89ef121f8c8f.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_e6534c82606656854f5e02ad.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.364746;font-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_c00437{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.lsf_c00437{letter-spacing:-20.992575px;}
.lsd_c00437{letter-spacing:-10.701338px;}
.ls12_c00437{letter-spacing:-9.939038px;}
.ls9_c00437{letter-spacing:-9.754725px;}
.ls11_c00437{letter-spacing:-5.354213px;}
.ls3_c00437{letter-spacing:-4.591125px;}
.ls10_c00437{letter-spacing:-3.818588px;}
.ls7_c00437{letter-spacing:-3.055500px;}
.lsa_c00437{letter-spacing:-2.310398px;}
.ls6_c00437{letter-spacing:-2.294348px;}
.ls0_c00437{letter-spacing:-2.291625px;}
.ls1_c00437{letter-spacing:-1.526963px;}
.ls8_c00437{letter-spacing:-0.794475px;}
.ls4_c00437{letter-spacing:-0.763875px;}
.ls13_c00437{letter-spacing:-0.756600px;}
.ls5_c00437{letter-spacing:0.000000px;}
.ls2_c00437{letter-spacing:0.763875px;}
.lse_c00437{letter-spacing:3.818588px;}
.lsb_c00437{letter-spacing:5.354213px;}
.lsc_c00437{letter-spacing:17.521073px;}
.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;}
._b_c00437{margin-left:-1.183773px;}
._2_c00437{width:1.168015px;}
._4_c00437{width:2.990084px;}
._1_c00437{width:4.682766px;}
._7_c00437{width:5.982852px;}
._5_c00437{width:7.637527px;}
._8_c00437{width:8.767031px;}
._0_c00437{width:9.866855px;}
._9_c00437{width:11.183632px;}
._3_c00437{width:12.222107px;}
._6_c00437{width:13.411110px;}
._a_c00437{width:40.156200px;}
.fc0_c00437{color:transparent;}
.fs1_c00437{font-size:75.750000px;}
.fs4_c00437{font-size:77.250000px;}
.fs5_c00437{font-size:78.000000px;}
.fs0_c00437{font-size:78.750000px;}
.fs2_c00437{font-size:80.250000px;}
.fs3_c00437{font-size:84.750000px;}
.y0_c00437{bottom:0.000000px;}
.y23_c00437{bottom:230.399850px;}
.y29_c00437{bottom:230.401455px;}
.y28_c00437{bottom:262.801305px;}
.y22_c00437{bottom:263.159385px;}
.y21_c00437{bottom:294.481275px;}
.y27_c00437{bottom:294.840630px;}
.y26_c00437{bottom:327.240480px;}
.y20_c00437{bottom:327.243090px;}
.y1f_c00437{bottom:358.922265px;}
.y25_c00437{bottom:359.279820px;}
.y1e_c00437{bottom:391.320000px;}
.y24_c00437{bottom:391.679670px;}
.y19_c00437{bottom:444.960750px;}
.y18_c00437{bottom:475.200675px;}
.y17_c00437{bottom:505.440555px;}
.y16_c00437{bottom:534.960120px;}
.y15_c00437{bottom:566.639265px;}
.y1d_c00437{bottom:567.001560px;}
.y14_c00437{bottom:599.039115px;}
.y1c_c00437{bottom:599.399295px;}
.y13_c00437{bottom:631.438950px;}
.y1b_c00437{bottom:631.440735px;}
.y12_c00437{bottom:663.478290px;}
.y1a_c00437{bottom:663.840585px;}
.y11_c00437{bottom:717.479235px;}
.yf_c00437{bottom:747.718920px;}
.y10_c00437{bottom:747.719100px;}
.ye_c00437{bottom:777.238455px;}
.yd_c00437{bottom:837.000000px;}
.yc_c00437{bottom:837.000180px;}
.ya_c00437{bottom:866.518320px;}
.yb_c00437{bottom:866.519715px;}
.y9_c00437{bottom:896.398035px;}
.y7_c00437{bottom:956.879700px;}
.y8_c00437{bottom:956.879970px;}
.y6_c00437{bottom:986.399235px;}
.y5_c00437{bottom:1016.278950px;}
.y3_c00437{bottom:1075.319730px;}
.y4_c00437{bottom:1075.319820px;}
.y2_c00437{bottom:1105.559640px;}
.y1_c00437{bottom:1135.799565px;}
.h7_c00437{height:76.552734px;}
.h1_c00437{height:77.288818px;}
.h5_c00437{height:77.853516px;}
.h3_c00437{height:78.760986px;}
.h2_c00437{height:79.004883px;}
.h4_c00437{height:83.177490px;}
.h6_c00437{height:83.756836px;}
.h0_c00437{height:1263.000000px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x5_c00437{left:136.437990px;}
.x1_c00437{left:137.519685px;}
.x8_c00437{left:224.279250px;}
.x2_c00437{left:262.798515px;}
.x9_c00437{left:264.958950px;}
.x3_c00437{left:276.118785px;}
.x6_c00437{left:303.118785px;}
.x4_c00437{left:313.919535px;}
.xb_c00437{left:321.479160px;}
.x7_c00437{left:326.158785px;}
.xa_c00437{left:416.519070px;}
.xe_c00437{left:458.639880px;}
.x13_c00437{left:461.158335px;}
.xd_c00437{left:464.039700px;}
.xf_c00437{left:466.919355px;}
.x14_c00437{left:471.239505px;}
.x11_c00437{left:476.998530px;}
.x10_c00437{left:543.240510px;}
.x12_c00437{left:545.038440px;}
.xc_c00437{left:556.919220px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.lsf_c00437{letter-spacing:-18.660067pt;}
.lsd_c00437{letter-spacing:-9.512300pt;}
.ls12_c00437{letter-spacing:-8.834700pt;}
.ls9_c00437{letter-spacing:-8.670867pt;}
.ls11_c00437{letter-spacing:-4.759300pt;}
.ls3_c00437{letter-spacing:-4.081000pt;}
.ls10_c00437{letter-spacing:-3.394300pt;}
.ls7_c00437{letter-spacing:-2.716000pt;}
.lsa_c00437{letter-spacing:-2.053687pt;}
.ls6_c00437{letter-spacing:-2.039420pt;}
.ls0_c00437{letter-spacing:-2.037000pt;}
.ls1_c00437{letter-spacing:-1.357300pt;}
.ls8_c00437{letter-spacing:-0.706200pt;}
.ls4_c00437{letter-spacing:-0.679000pt;}
.ls13_c00437{letter-spacing:-0.672533pt;}
.ls5_c00437{letter-spacing:0.000000pt;}
.ls2_c00437{letter-spacing:0.679000pt;}
.lse_c00437{letter-spacing:3.394300pt;}
.lsb_c00437{letter-spacing:4.759300pt;}
.lsc_c00437{letter-spacing:15.574287pt;}
.ws0_c00437{word-spacing:0.000000pt;}
._b_c00437{margin-left:-1.052243pt;}
._2_c00437{width:1.038236pt;}
._4_c00437{width:2.657852pt;}
._1_c00437{width:4.162458pt;}
._7_c00437{width:5.318090pt;}
._5_c00437{width:6.788913pt;}
._8_c00437{width:7.792917pt;}
._0_c00437{width:8.770538pt;}
._9_c00437{width:9.941006pt;}
._3_c00437{width:10.864095pt;}
._6_c00437{width:11.920986pt;}
._a_c00437{width:35.694400pt;}
.fs1_c00437{font-size:67.333333pt;}
.fs4_c00437{font-size:68.666667pt;}
.fs5_c00437{font-size:69.333333pt;}
.fs0_c00437{font-size:70.000000pt;}
.fs2_c00437{font-size:71.333333pt;}
.fs3_c00437{font-size:75.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y23_c00437{bottom:204.799867pt;}
.y29_c00437{bottom:204.801293pt;}
.y28_c00437{bottom:233.601160pt;}
.y22_c00437{bottom:233.919453pt;}
.y21_c00437{bottom:261.761133pt;}
.y27_c00437{bottom:262.080560pt;}
.y26_c00437{bottom:290.880427pt;}
.y20_c00437{bottom:290.882747pt;}
.y1f_c00437{bottom:319.042013pt;}
.y25_c00437{bottom:319.359840pt;}
.y1e_c00437{bottom:347.840000pt;}
.y24_c00437{bottom:348.159707pt;}
.y19_c00437{bottom:395.520667pt;}
.y18_c00437{bottom:422.400600pt;}
.y17_c00437{bottom:449.280493pt;}
.y16_c00437{bottom:475.520107pt;}
.y15_c00437{bottom:503.679347pt;}
.y1d_c00437{bottom:504.001387pt;}
.y14_c00437{bottom:532.479213pt;}
.y1c_c00437{bottom:532.799373pt;}
.y13_c00437{bottom:561.279067pt;}
.y1b_c00437{bottom:561.280653pt;}
.y12_c00437{bottom:589.758480pt;}
.y1a_c00437{bottom:590.080520pt;}
.y11_c00437{bottom:637.759320pt;}
.yf_c00437{bottom:664.639040pt;}
.y10_c00437{bottom:664.639200pt;}
.ye_c00437{bottom:690.878627pt;}
.yd_c00437{bottom:744.000000pt;}
.yc_c00437{bottom:744.000160pt;}
.ya_c00437{bottom:770.238507pt;}
.yb_c00437{bottom:770.239747pt;}
.y9_c00437{bottom:796.798253pt;}
.y7_c00437{bottom:850.559733pt;}
.y8_c00437{bottom:850.559973pt;}
.y6_c00437{bottom:876.799320pt;}
.y5_c00437{bottom:903.359067pt;}
.y3_c00437{bottom:955.839760pt;}
.y4_c00437{bottom:955.839840pt;}
.y2_c00437{bottom:982.719680pt;}
.y1_c00437{bottom:1009.599613pt;}
.h7_c00437{height:68.046875pt;}
.h1_c00437{height:68.701172pt;}
.h5_c00437{height:69.203125pt;}
.h3_c00437{height:70.009766pt;}
.h2_c00437{height:70.226562pt;}
.h4_c00437{height:73.935547pt;}
.h6_c00437{height:74.450521pt;}
.h0_c00437{height:1122.666667pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x5_c00437{left:121.278213pt;}
.x1_c00437{left:122.239720pt;}
.x8_c00437{left:199.359333pt;}
.x2_c00437{left:233.598680pt;}
.x9_c00437{left:235.519067pt;}
.x3_c00437{left:245.438920pt;}
.x6_c00437{left:269.438920pt;}
.x4_c00437{left:279.039587pt;}
.xb_c00437{left:285.759253pt;}
.x7_c00437{left:289.918920pt;}
.xa_c00437{left:370.239173pt;}
.xe_c00437{left:407.679893pt;}
.x13_c00437{left:409.918520pt;}
.xd_c00437{left:412.479733pt;}
.xf_c00437{left:415.039427pt;}
.x14_c00437{left:418.879560pt;}
.x11_c00437{left:423.998693pt;}
.x10_c00437{left:482.880453pt;}
.x12_c00437{left:484.478613pt;}
.xc_c00437{left:495.039307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93741a697dd03e1018a1cfd0.woff2')format("woff");}.ff1_c00438{font-family:ff1_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:ff2_c00438;src:url('chunks/assets/font_c0ae7a627a67a4560f415956.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_b2cdcc28a9f70a2b4541bd2f.woff2')format("woff");}.ff3_c00438{font-family:ff3_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:ff4_c00438;src:url('chunks/assets/font_87f902b010ff86319424e1bd.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_f84a2ea0558be4150bbb80e1.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00438{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls5_c00438{letter-spacing:-9.939038px;}
.ls9_c00438{letter-spacing:-6.882750px;}
.lse_c00438{letter-spacing:-6.544800px;}
.ls6_c00438{letter-spacing:-5.805000px;}
.ls4_c00438{letter-spacing:-5.354213px;}
.ls11_c00438{letter-spacing:-3.818588px;}
.lsc_c00438{letter-spacing:-3.055500px;}
.ls10_c00438{letter-spacing:-2.386125px;}
.ls1_c00438{letter-spacing:-2.291625px;}
.lsf_c00438{letter-spacing:-2.034900px;}
.lsd_c00438{letter-spacing:-1.591200px;}
.lsb_c00438{letter-spacing:-1.530000px;}
.ls0_c00438{letter-spacing:-1.526963px;}
.lsa_c00438{letter-spacing:-0.764400px;}
.ls7_c00438{letter-spacing:-0.763875px;}
.ls2_c00438{letter-spacing:0.000000px;}
.ls8_c00438{letter-spacing:1.628625px;}
.ls3_c00438{letter-spacing:6.956925px;}
.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;}
._3_c00438{width:1.385450px;}
._2_c00438{width:2.894888px;}
._0_c00438{width:4.486571px;}
._6_c00438{width:5.982790px;}
._4_c00438{width:7.560917px;}
._5_c00438{width:9.204483px;}
._1_c00438{width:11.351705px;}
._8_c00438{width:522.797854px;}
._7_c00438{width:738.102786px;}
._a_c00438{width:753.534590px;}
._b_c00438{width:787.697211px;}
._9_c00438{width:809.411010px;}
.fc0_c00438{color:transparent;}
.fs7_c00438{font-size:63.000000px;}
.fs6_c00438{font-size:72.000000px;}
.fs1_c00438{font-size:75.750000px;}
.fs5_c00438{font-size:76.500000px;}
.fs4_c00438{font-size:78.000000px;}
.fs0_c00438{font-size:78.750000px;}
.fs2_c00438{font-size:81.750000px;}
.fs3_c00438{font-size:90.000000px;}
.y0_c00438{bottom:0.000000px;}
.y26_c00438{bottom:174.600150px;}
.y2c_c00438{bottom:176.399370px;}
.y25_c00438{bottom:206.998950px;}
.y2b_c00438{bottom:208.799220px;}
.y24_c00438{bottom:238.322415px;}
.y2a_c00438{bottom:240.118200px;}
.y23_c00438{bottom:270.722265px;}
.y29_c00438{bottom:272.878215px;}
.y22_c00438{bottom:303.120000px;}
.y28_c00438{bottom:304.919685px;}
.y21_c00438{bottom:335.881830px;}
.y27_c00438{bottom:337.679700px;}
.y20_c00438{bottom:366.480120px;}
.y1f_c00438{bottom:396.359850px;}
.y1e_c00438{bottom:425.879520px;}
.y1d_c00438{bottom:478.439730px;}
.y1c_c00438{bottom:510.839565px;}
.y1b_c00438{bottom:542.878920px;}
.y1a_c00438{bottom:575.279250px;}
.y19_c00438{bottom:607.319085px;}
.y18_c00438{bottom:639.360555px;}
.y17_c00438{bottom:671.760390px;}
.y16_c00438{bottom:703.079355px;}
.y15_c00438{bottom:732.599070px;}
.y14_c00438{bottom:732.599655px;}
.y13_c00438{bottom:762.839565px;}
.yb_c00438{bottom:844.921080px;}
.y12_c00438{bottom:847.080420px;}
.ya_c00438{bottom:877.318815px;}
.y11_c00438{bottom:879.121860px;}
.y9_c00438{bottom:907.199340px;}
.y10_c00438{bottom:911.881890px;}
.y8_c00438{bottom:942.479775px;}
.yf_c00438{bottom:944.641920px;}
.y7_c00438{bottom:974.879625px;}
.ye_c00438{bottom:977.041770px;}
.y6_c00438{bottom:1006.921080px;}
.yd_c00438{bottom:1008.720930px;}
.y5_c00438{bottom:1039.318815px;}
.yc_c00438{bottom:1041.480945px;}
.y4_c00438{bottom:1069.919490px;}
.y2_c00438{bottom:1099.800060px;}
.y3_c00438{bottom:1099.800105px;}
.y1_c00438{bottom:1130.039985px;}
.h9_c00438{height:61.800293px;}
.h6_c00438{height:75.080566px;}
.h8_c00438{height:75.093750px;}
.h2_c00438{height:76.341797px;}
.h5_c00438{height:76.552734px;}
.h1_c00438{height:77.288818px;}
.h7_c00438{height:78.609375px;}
.ha_c00438{height:79.365234px;}
.h3_c00438{height:80.193237px;}
.h4_c00438{height:88.945312px;}
.h0_c00438{height:1263.000000px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:132.839565px;}
.xb_c00438{left:134.634345px;}
.xd_c00438{left:135.718500px;}
.x12_c00438{left:137.878950px;}
.x13_c00438{left:204.120000px;}
.x14_c00438{left:232.558635px;}
.x15_c00438{left:292.679100px;}
.x3_c00438{left:318.238785px;}
.x4_c00438{left:319.319850px;}
.xe_c00438{left:320.759400px;}
.xf_c00438{left:321.839535px;}
.x16_c00438{left:334.078305px;}
.x17_c00438{left:335.159805px;}
.x2_c00438{left:412.559100px;}
.xc_c00438{left:415.078815px;}
.x9_c00438{left:452.156940px;}
.x11_c00438{left:455.039985px;}
.x6_c00438{left:473.398755px;}
.x8_c00438{left:497.157165px;}
.x10_c00438{left:500.038920px;}
.x19_c00438{left:510.120000px;}
.x1b_c00438{left:518.760450px;}
.x18_c00438{left:522.719565px;}
.xa_c00438{left:532.794345px;}
.x7_c00438{left:541.436880px;}
.x1a_c00438{left:551.161125px;}
.x5_c00438{left:553.317720px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls5_c00438{letter-spacing:-8.834700pt;}
.ls9_c00438{letter-spacing:-6.118000pt;}
.lse_c00438{letter-spacing:-5.817600pt;}
.ls6_c00438{letter-spacing:-5.160000pt;}
.ls4_c00438{letter-spacing:-4.759300pt;}
.ls11_c00438{letter-spacing:-3.394300pt;}
.lsc_c00438{letter-spacing:-2.716000pt;}
.ls10_c00438{letter-spacing:-2.121000pt;}
.ls1_c00438{letter-spacing:-2.037000pt;}
.lsf_c00438{letter-spacing:-1.808800pt;}
.lsd_c00438{letter-spacing:-1.414400pt;}
.lsb_c00438{letter-spacing:-1.360000pt;}
.ls0_c00438{letter-spacing:-1.357300pt;}
.lsa_c00438{letter-spacing:-0.679467pt;}
.ls7_c00438{letter-spacing:-0.679000pt;}
.ls2_c00438{letter-spacing:0.000000pt;}
.ls8_c00438{letter-spacing:1.447667pt;}
.ls3_c00438{letter-spacing:6.183933pt;}
.ws0_c00438{word-spacing:0.000000pt;}
._3_c00438{width:1.231511pt;}
._2_c00438{width:2.573234pt;}
._0_c00438{width:3.988063pt;}
._6_c00438{width:5.318036pt;}
._4_c00438{width:6.720816pt;}
._5_c00438{width:8.181763pt;}
._1_c00438{width:10.090405pt;}
._8_c00438{width:464.709204pt;}
._7_c00438{width:656.091365pt;}
._a_c00438{width:669.808524pt;}
._b_c00438{width:700.175299pt;}
._9_c00438{width:719.476453pt;}
.fs7_c00438{font-size:56.000000pt;}
.fs6_c00438{font-size:64.000000pt;}
.fs1_c00438{font-size:67.333333pt;}
.fs5_c00438{font-size:68.000000pt;}
.fs4_c00438{font-size:69.333333pt;}
.fs0_c00438{font-size:70.000000pt;}
.fs2_c00438{font-size:72.666667pt;}
.fs3_c00438{font-size:80.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y26_c00438{bottom:155.200133pt;}
.y2c_c00438{bottom:156.799440pt;}
.y25_c00438{bottom:183.999067pt;}
.y2b_c00438{bottom:185.599307pt;}
.y24_c00438{bottom:211.842147pt;}
.y2a_c00438{bottom:213.438400pt;}
.y23_c00438{bottom:240.642013pt;}
.y29_c00438{bottom:242.558413pt;}
.y22_c00438{bottom:269.440000pt;}
.y28_c00438{bottom:271.039720pt;}
.y21_c00438{bottom:298.561627pt;}
.y27_c00438{bottom:300.159733pt;}
.y20_c00438{bottom:325.760107pt;}
.y1f_c00438{bottom:352.319867pt;}
.y1e_c00438{bottom:378.559573pt;}
.y1d_c00438{bottom:425.279760pt;}
.y1c_c00438{bottom:454.079613pt;}
.y1b_c00438{bottom:482.559040pt;}
.y1a_c00438{bottom:511.359333pt;}
.y19_c00438{bottom:539.839187pt;}
.y18_c00438{bottom:568.320493pt;}
.y17_c00438{bottom:597.120347pt;}
.y16_c00438{bottom:624.959427pt;}
.y15_c00438{bottom:651.199173pt;}
.y14_c00438{bottom:651.199693pt;}
.y13_c00438{bottom:678.079613pt;}
.yb_c00438{bottom:751.040960pt;}
.y12_c00438{bottom:752.960373pt;}
.ya_c00438{bottom:779.838947pt;}
.y11_c00438{bottom:781.441653pt;}
.y9_c00438{bottom:806.399413pt;}
.y10_c00438{bottom:810.561680pt;}
.y8_c00438{bottom:837.759800pt;}
.yf_c00438{bottom:839.681707pt;}
.y7_c00438{bottom:866.559667pt;}
.ye_c00438{bottom:868.481573pt;}
.y6_c00438{bottom:895.040960pt;}
.yd_c00438{bottom:896.640827pt;}
.y5_c00438{bottom:923.838947pt;}
.yc_c00438{bottom:925.760840pt;}
.y4_c00438{bottom:951.039547pt;}
.y2_c00438{bottom:977.600053pt;}
.y3_c00438{bottom:977.600093pt;}
.y1_c00438{bottom:1004.479987pt;}
.h9_c00438{height:54.933594pt;}
.h6_c00438{height:66.738281pt;}
.h8_c00438{height:66.750000pt;}
.h2_c00438{height:67.859375pt;}
.h5_c00438{height:68.046875pt;}
.h1_c00438{height:68.701172pt;}
.h7_c00438{height:69.875000pt;}
.ha_c00438{height:70.546875pt;}
.h3_c00438{height:71.282878pt;}
.h4_c00438{height:79.062500pt;}
.h0_c00438{height:1122.666667pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:118.079613pt;}
.xb_c00438{left:119.674973pt;}
.xd_c00438{left:120.638667pt;}
.x12_c00438{left:122.559067pt;}
.x13_c00438{left:181.440000pt;}
.x14_c00438{left:206.718787pt;}
.x15_c00438{left:260.159200pt;}
.x3_c00438{left:282.878920pt;}
.x4_c00438{left:283.839867pt;}
.xe_c00438{left:285.119467pt;}
.xf_c00438{left:286.079587pt;}
.x16_c00438{left:296.958493pt;}
.x17_c00438{left:297.919827pt;}
.x2_c00438{left:366.719200pt;}
.xc_c00438{left:368.958947pt;}
.x9_c00438{left:401.917280pt;}
.x11_c00438{left:404.479987pt;}
.x6_c00438{left:420.798893pt;}
.x8_c00438{left:441.917480pt;}
.x10_c00438{left:444.479040pt;}
.x19_c00438{left:453.440000pt;}
.x1b_c00438{left:461.120400pt;}
.x18_c00438{left:464.639613pt;}
.xa_c00438{left:473.594973pt;}
.x7_c00438{left:481.277227pt;}
.x1a_c00438{left:489.921000pt;}
.x5_c00438{left:491.837973pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96f4b57ec59c2b0129ba522b.woff2')format("woff");}.ff1_c00439{font-family:ff1_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;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_bb7cbd25147671d1e6ced4b2.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.364746;font-style:normal;font-weight:normal;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_b38368e5b19954b1d1dbb714.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00439{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227477,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls7_c00439{letter-spacing:-14.723400px;}
.ls1_c00439{letter-spacing:-9.065925px;}
.ls5_c00439{letter-spacing:-3.861000px;}
.ls3_c00439{letter-spacing:-1.677375px;}
.ls0_c00439{letter-spacing:-0.834750px;}
.ls2_c00439{letter-spacing:0.000000px;}
.ls6_c00439{letter-spacing:0.834750px;}
.ls4_c00439{letter-spacing:3.854475px;}
.ls8_c00439{letter-spacing:5.700000px;}
.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;}
._1_c00439{width:2.435486px;}
._2_c00439{width:4.394183px;}
._0_c00439{width:8.187319px;}
.fc0_c00439{color:transparent;}
.fs5_c00439{font-size:71.250000px;}
.fs3_c00439{font-size:77.250000px;}
.fs2_c00439{font-size:78.000000px;}
.fs0_c00439{font-size:78.750000px;}
.fs4_c00439{font-size:79.500000px;}
.fs1_c00439{font-size:83.250000px;}
.y0_c00439{bottom:0.000000px;}
.yf_c00439{bottom:682.200285px;}
.y1b_c00439{bottom:685.080120px;}
.ye_c00439{bottom:714.600135px;}
.y1a_c00439{bottom:717.840135px;}
.yd_c00439{bottom:747.720750px;}
.y19_c00439{bottom:749.881170px;}
.yc_c00439{bottom:779.041125px;}
.y18_c00439{bottom:781.921410px;}
.yb_c00439{bottom:811.440975px;}
.y17_c00439{bottom:814.321245px;}
.ya_c00439{bottom:844.561185px;}
.y16_c00439{bottom:847.439670px;}
.y9_c00439{bottom:876.961035px;}
.y15_c00439{bottom:879.484455px;}
.y8_c00439{bottom:909.359805px;}
.y14_c00439{bottom:911.884275px;}
.y7_c00439{bottom:941.760135px;}
.y13_c00439{bottom:944.282025px;}
.y6_c00439{bottom:973.803495px;}
.y12_c00439{bottom:975.961185px;}
.y5_c00439{bottom:1005.842850px;}
.y11_c00439{bottom:1008.361020px;}
.y4_c00439{bottom:1038.242700px;}
.y10_c00439{bottom:1040.760870px;}
.y3_c00439{bottom:1077.842100px;}
.y2_c00439{bottom:1107.361635px;}
.y1_c00439{bottom:1137.959925px;}
.h6_c00439{height:74.311523px;}
.h4_c00439{height:77.853516px;}
.h3_c00439{height:78.609375px;}
.h1_c00439{height:79.365234px;}
.h5_c00439{height:80.121094px;}
.h2_c00439{height:82.274414px;}
.h0_c00439{height:1263.000000px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:135.718500px;}
.x2_c00439{left:230.399850px;}
.x3_c00439{left:290.518635px;}
.x4_c00439{left:310.679970px;}
.x5_c00439{left:312.120600px;}
.x6_c00439{left:313.199385px;}
.x9_c00439{left:475.199220px;}
.xc_c00439{left:518.757735px;}
.x8_c00439{left:523.798410px;}
.xd_c00439{left:534.238770px;}
.x7_c00439{left:535.319895px;}
.xf_c00439{left:537.119910px;}
.xa_c00439{left:543.238725px;}
.x11_c00439{left:551.159820px;}
.xe_c00439{left:560.159415px;}
.x10_c00439{left:563.399235px;}
.xb_c00439{left:570.598140px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls7_c00439{letter-spacing:-13.087467pt;}
.ls1_c00439{letter-spacing:-8.058600pt;}
.ls5_c00439{letter-spacing:-3.432000pt;}
.ls3_c00439{letter-spacing:-1.491000pt;}
.ls0_c00439{letter-spacing:-0.742000pt;}
.ls2_c00439{letter-spacing:0.000000pt;}
.ls6_c00439{letter-spacing:0.742000pt;}
.ls4_c00439{letter-spacing:3.426200pt;}
.ls8_c00439{letter-spacing:5.066667pt;}
.ws0_c00439{word-spacing:0.000000pt;}
._1_c00439{width:2.164877pt;}
._2_c00439{width:3.905940pt;}
._0_c00439{width:7.277617pt;}
.fs5_c00439{font-size:63.333333pt;}
.fs3_c00439{font-size:68.666667pt;}
.fs2_c00439{font-size:69.333333pt;}
.fs0_c00439{font-size:70.000000pt;}
.fs4_c00439{font-size:70.666667pt;}
.fs1_c00439{font-size:74.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.yf_c00439{bottom:606.400253pt;}
.y1b_c00439{bottom:608.960107pt;}
.ye_c00439{bottom:635.200120pt;}
.y1a_c00439{bottom:638.080120pt;}
.yd_c00439{bottom:664.640667pt;}
.y19_c00439{bottom:666.561040pt;}
.yc_c00439{bottom:692.481000pt;}
.y18_c00439{bottom:695.041253pt;}
.yb_c00439{bottom:721.280867pt;}
.y17_c00439{bottom:723.841107pt;}
.ya_c00439{bottom:750.721053pt;}
.y16_c00439{bottom:753.279707pt;}
.y9_c00439{bottom:779.520920pt;}
.y15_c00439{bottom:781.763960pt;}
.y8_c00439{bottom:808.319827pt;}
.y14_c00439{bottom:810.563800pt;}
.y7_c00439{bottom:837.120120pt;}
.y13_c00439{bottom:839.361800pt;}
.y6_c00439{bottom:865.603107pt;}
.y12_c00439{bottom:867.521053pt;}
.y5_c00439{bottom:894.082533pt;}
.y11_c00439{bottom:896.320907pt;}
.y4_c00439{bottom:922.882400pt;}
.y10_c00439{bottom:925.120773pt;}
.y3_c00439{bottom:958.081867pt;}
.y2_c00439{bottom:984.321453pt;}
.y1_c00439{bottom:1011.519933pt;}
.h6_c00439{height:66.054688pt;}
.h4_c00439{height:69.203125pt;}
.h3_c00439{height:69.875000pt;}
.h1_c00439{height:70.546875pt;}
.h5_c00439{height:71.218750pt;}
.h2_c00439{height:73.132813pt;}
.h0_c00439{height:1122.666667pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:120.638667pt;}
.x2_c00439{left:204.799867pt;}
.x3_c00439{left:258.238787pt;}
.x4_c00439{left:276.159973pt;}
.x5_c00439{left:277.440533pt;}
.x6_c00439{left:278.399453pt;}
.x9_c00439{left:422.399307pt;}
.xc_c00439{left:461.117987pt;}
.x8_c00439{left:465.598587pt;}
.xd_c00439{left:474.878907pt;}
.x7_c00439{left:475.839907pt;}
.xf_c00439{left:477.439920pt;}
.xa_c00439{left:482.878867pt;}
.x11_c00439{left:489.919840pt;}
.xe_c00439{left:497.919480pt;}
.x10_c00439{left:500.799320pt;}
.xb_c00439{left:507.198347pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85eda3e21459a887d65d3eab.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_a72a695517ba18bb9eaea023.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00440{transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211905,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m2_c00440{transform:matrix(0.226293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226293,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls6_c00440{letter-spacing:-3.947100px;}
.ls5_c00440{letter-spacing:-1.677375px;}
.ls3_c00440{letter-spacing:-0.834750px;}
.ls2_c00440{letter-spacing:0.000000px;}
.ls1_c00440{letter-spacing:0.834750px;}
.ls4_c00440{letter-spacing:1.677375px;}
.ls7_c00440{letter-spacing:1.772663px;}
.ls0_c00440{letter-spacing:3.354750px;}
.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;}
._5_c00440{margin-left:-5.559281px;}
._4_c00440{width:1.339152px;}
._0_c00440{width:2.362500px;}
._3_c00440{width:4.102976px;}
._2_c00440{width:5.449165px;}
._1_c00440{width:6.724848px;}
._6_c00440{width:8.977500px;}
.fc0_c00440{color:transparent;}
.fs0_c00440{font-size:78.750000px;}
.fs2_c00440{font-size:87.000000px;}
.fs1_c00440{font-size:88.500000px;}
.fs3_c00440{font-size:115.500000px;}
.y0_c00440{bottom:0.000000px;}
.y10_c00440{bottom:388.798920px;}
.ye_c00440{bottom:418.679130px;}
.yf_c00440{bottom:418.679670px;}
.yd_c00440{bottom:448.198650px;}
.yc_c00440{bottom:538.198020px;}
.yb_c00440{bottom:567.719355px;}
.ya_c00440{bottom:597.599070px;}
.y8_c00440{bottom:686.879565px;}
.y9_c00440{bottom:686.879970px;}
.y7_c00440{bottom:716.759280px;}
.y6_c00440{bottom:836.640465px;}
.y5_c00440{bottom:866.160000px;}
.y4_c00440{bottom:896.399925px;}
.y3_c00440{bottom:985.680705px;}
.y2_c00440{bottom:1015.560420px;}
.y1_c00440{bottom:1045.079955px;}
.h1_c00440{height:79.365234px;}
.h3_c00440{height:85.980469px;}
.h2_c00440{height:87.462891px;}
.h4_c00440{height:120.462891px;}
.h0_c00440{height:1263.000000px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:135.359250px;}
.x2_c00440{left:136.801020px;}
.x6_c00440{left:137.877690px;}
.x7_c00440{left:138.958005px;}
.x3_c00440{left:242.279850px;}
.x4_c00440{left:284.759100px;}
.x5_c00440{left:321.478635px;}
.x8_c00440{left:329.039385px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls6_c00440{letter-spacing:-3.508533pt;}
.ls5_c00440{letter-spacing:-1.491000pt;}
.ls3_c00440{letter-spacing:-0.742000pt;}
.ls2_c00440{letter-spacing:0.000000pt;}
.ls1_c00440{letter-spacing:0.742000pt;}
.ls4_c00440{letter-spacing:1.491000pt;}
.ls7_c00440{letter-spacing:1.575700pt;}
.ls0_c00440{letter-spacing:2.982000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
._5_c00440{margin-left:-4.941583pt;}
._4_c00440{width:1.190357pt;}
._0_c00440{width:2.100000pt;}
._3_c00440{width:3.647089pt;}
._2_c00440{width:4.843702pt;}
._1_c00440{width:5.977643pt;}
._6_c00440{width:7.980000pt;}
.fs0_c00440{font-size:70.000000pt;}
.fs2_c00440{font-size:77.333333pt;}
.fs1_c00440{font-size:78.666667pt;}
.fs3_c00440{font-size:102.666667pt;}
.y0_c00440{bottom:0.000000pt;}
.y10_c00440{bottom:345.599040pt;}
.ye_c00440{bottom:372.159227pt;}
.yf_c00440{bottom:372.159707pt;}
.yd_c00440{bottom:398.398800pt;}
.yc_c00440{bottom:478.398240pt;}
.yb_c00440{bottom:504.639427pt;}
.ya_c00440{bottom:531.199173pt;}
.y8_c00440{bottom:610.559613pt;}
.y9_c00440{bottom:610.559973pt;}
.y7_c00440{bottom:637.119360pt;}
.y6_c00440{bottom:743.680413pt;}
.y5_c00440{bottom:769.920000pt;}
.y4_c00440{bottom:796.799933pt;}
.y3_c00440{bottom:876.160627pt;}
.y2_c00440{bottom:902.720373pt;}
.y1_c00440{bottom:928.959960pt;}
.h1_c00440{height:70.546875pt;}
.h3_c00440{height:76.427083pt;}
.h2_c00440{height:77.744792pt;}
.h4_c00440{height:107.078125pt;}
.h0_c00440{height:1122.666667pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:120.319333pt;}
.x2_c00440{left:121.600907pt;}
.x6_c00440{left:122.557947pt;}
.x7_c00440{left:123.518227pt;}
.x3_c00440{left:215.359867pt;}
.x4_c00440{left:253.119200pt;}
.x5_c00440{left:285.758787pt;}
.x8_c00440{left:292.479453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2712797a260729f99260fa84.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00441{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{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_c00441{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls2_c00441{letter-spacing:-6.229350px;}
.lse_c00441{letter-spacing:-3.939750px;}
.lsc_c00441{letter-spacing:-3.386700px;}
.ls3_c00441{letter-spacing:-2.616300px;}
.ls8_c00441{letter-spacing:-2.536845px;}
.ls9_c00441{letter-spacing:-1.693350px;}
.ls6_c00441{letter-spacing:-1.566675px;}
.ls0_c00441{letter-spacing:-0.842700px;}
.ls5_c00441{letter-spacing:-0.810000px;}
.ls1_c00441{letter-spacing:0.000000px;}
.lsf_c00441{letter-spacing:0.842700px;}
.ls4_c00441{letter-spacing:0.858600px;}
.lsa_c00441{letter-spacing:1.693350px;}
.ls7_c00441{letter-spacing:2.536845px;}
.lsd_c00441{letter-spacing:5.072100px;}
.lsb_c00441{letter-spacing:21.147795px;}
.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;}
._1_c00441{width:5.763919px;}
._0_c00441{width:8.260219px;}
.fc0_c00441{color:transparent;}
.fs4_c00441{font-size:74.250000px;}
.fs3_c00441{font-size:75.000000px;}
.fs5_c00441{font-size:76.500000px;}
.fs0_c00441{font-size:79.500000px;}
.fs2_c00441{font-size:81.000000px;}
.fs1_c00441{font-size:81.750000px;}
.y0_c00441{bottom:0.000000px;}
.y1d_c00441{bottom:632.883045px;}
.y10_c00441{bottom:633.601755px;}
.y1c_c00441{bottom:665.281200px;}
.yf_c00441{bottom:665.640240px;}
.y1b_c00441{bottom:697.681500px;}
.ye_c00441{bottom:698.040525px;}
.y1a_c00441{bottom:730.081785px;}
.yd_c00441{bottom:730.438710px;}
.y19_c00441{bottom:762.120270px;}
.yc_c00441{bottom:762.479325px;}
.y18_c00441{bottom:794.520555px;}
.yb_c00441{bottom:795.239280px;}
.y17_c00441{bottom:827.999880px;}
.ya_c00441{bottom:828.718590px;}
.y16_c00441{bottom:860.040510px;}
.y9_c00441{bottom:860.399235px;}
.y15_c00441{bottom:892.438665px;}
.y8_c00441{bottom:892.799565px;}
.y14_c00441{bottom:924.118740px;}
.y7_c00441{bottom:924.838905px;}
.y13_c00441{bottom:956.161095px;}
.y6_c00441{bottom:956.879970px;}
.y12_c00441{bottom:988.921050px;}
.y5_c00441{bottom:989.278755px;}
.y11_c00441{bottom:1022.040705px;}
.y4_c00441{bottom:1022.041140px;}
.y3_c00441{bottom:1076.041425px;}
.y2_c00441{bottom:1105.919430px;}
.y1_c00441{bottom:1135.799565px;}
.h5_c00441{height:74.830078px;}
.h4_c00441{height:75.585938px;}
.h6_c00441{height:77.097656px;}
.h1_c00441{height:80.121094px;}
.h3_c00441{height:81.632812px;}
.h2_c00441{height:82.388672px;}
.h0_c00441{height:1263.000000px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:135.718500px;}
.x2_c00441{left:230.759100px;}
.x3_c00441{left:290.518635px;}
.x5_c00441{left:313.558635px;}
.x4_c00441{left:314.641935px;}
.x6_c00441{left:506.878560px;}
.xc_c00441{left:525.240330px;}
.x9_c00441{left:538.559685px;}
.xd_c00441{left:540.720285px;}
.x7_c00441{left:542.877555px;}
.x8_c00441{left:547.916610px;}
.xb_c00441{left:550.798395px;}
.xa_c00441{left:558.719100px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls2_c00441{letter-spacing:-5.537200pt;}
.lse_c00441{letter-spacing:-3.502000pt;}
.lsc_c00441{letter-spacing:-3.010400pt;}
.ls3_c00441{letter-spacing:-2.325600pt;}
.ls8_c00441{letter-spacing:-2.254973pt;}
.ls9_c00441{letter-spacing:-1.505200pt;}
.ls6_c00441{letter-spacing:-1.392600pt;}
.ls0_c00441{letter-spacing:-0.749067pt;}
.ls5_c00441{letter-spacing:-0.720000pt;}
.ls1_c00441{letter-spacing:0.000000pt;}
.lsf_c00441{letter-spacing:0.749067pt;}
.ls4_c00441{letter-spacing:0.763200pt;}
.lsa_c00441{letter-spacing:1.505200pt;}
.ls7_c00441{letter-spacing:2.254973pt;}
.lsd_c00441{letter-spacing:4.508533pt;}
.lsb_c00441{letter-spacing:18.798040pt;}
.ws0_c00441{word-spacing:0.000000pt;}
._1_c00441{width:5.123484pt;}
._0_c00441{width:7.342417pt;}
.fs4_c00441{font-size:66.000000pt;}
.fs3_c00441{font-size:66.666667pt;}
.fs5_c00441{font-size:68.000000pt;}
.fs0_c00441{font-size:70.666667pt;}
.fs2_c00441{font-size:72.000000pt;}
.fs1_c00441{font-size:72.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y1d_c00441{bottom:562.562707pt;}
.y10_c00441{bottom:563.201560pt;}
.y1c_c00441{bottom:591.361067pt;}
.yf_c00441{bottom:591.680213pt;}
.y1b_c00441{bottom:620.161333pt;}
.ye_c00441{bottom:620.480467pt;}
.y1a_c00441{bottom:648.961587pt;}
.yd_c00441{bottom:649.278853pt;}
.y19_c00441{bottom:677.440240pt;}
.yc_c00441{bottom:677.759400pt;}
.y18_c00441{bottom:706.240493pt;}
.yb_c00441{bottom:706.879360pt;}
.y17_c00441{bottom:735.999893pt;}
.ya_c00441{bottom:736.638747pt;}
.y16_c00441{bottom:764.480453pt;}
.y9_c00441{bottom:764.799320pt;}
.y15_c00441{bottom:793.278813pt;}
.y8_c00441{bottom:793.599613pt;}
.y14_c00441{bottom:821.438880pt;}
.y7_c00441{bottom:822.079027pt;}
.y13_c00441{bottom:849.920973pt;}
.y6_c00441{bottom:850.559973pt;}
.y12_c00441{bottom:879.040933pt;}
.y5_c00441{bottom:879.358893pt;}
.y11_c00441{bottom:908.480627pt;}
.y4_c00441{bottom:908.481013pt;}
.y3_c00441{bottom:956.481267pt;}
.y2_c00441{bottom:983.039493pt;}
.y1_c00441{bottom:1009.599613pt;}
.h5_c00441{height:66.515625pt;}
.h4_c00441{height:67.187500pt;}
.h6_c00441{height:68.531250pt;}
.h1_c00441{height:71.218750pt;}
.h3_c00441{height:72.562500pt;}
.h2_c00441{height:73.234375pt;}
.h0_c00441{height:1122.666667pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:120.638667pt;}
.x2_c00441{left:205.119200pt;}
.x3_c00441{left:258.238787pt;}
.x5_c00441{left:278.718787pt;}
.x4_c00441{left:279.681720pt;}
.x6_c00441{left:450.558720pt;}
.xc_c00441{left:466.880293pt;}
.x9_c00441{left:478.719720pt;}
.xd_c00441{left:480.640253pt;}
.x7_c00441{left:482.557827pt;}
.x8_c00441{left:487.036987pt;}
.xb_c00441{left:489.598573pt;}
.xa_c00441{left:496.639200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_009e013281504fcec2c90f8b.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00442{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls2_c00442{letter-spacing:-3.055500px;}
.ls0_c00442{letter-spacing:-2.291625px;}
.ls3_c00442{letter-spacing:-1.526963px;}
.ls5_c00442{letter-spacing:-0.771750px;}
.ls4_c00442{letter-spacing:-0.763875px;}
.ls1_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;}
._3_c00442{width:1.637572px;}
._7_c00442{width:3.095318px;}
._2_c00442{width:4.506939px;}
._a_c00442{width:5.578314px;}
._0_c00442{width:6.773020px;}
._5_c00442{width:8.817492px;}
._8_c00442{width:9.846189px;}
._4_c00442{width:11.127925px;}
._1_c00442{width:12.207519px;}
._6_c00442{width:13.411171px;}
._9_c00442{width:14.884331px;}
.fc0_c00442{color:transparent;}
.fs1_c00442{font-size:70.500000px;}
.fs0_c00442{font-size:78.750000px;}
.y0_c00442{bottom:0.000000px;}
.y18_c00442{bottom:210.239025px;}
.y17_c00442{bottom:240.837315px;}
.y16_c00442{bottom:300.596760px;}
.y15_c00442{bottom:329.397720px;}
.y14_c00442{bottom:359.277450px;}
.y13_c00442{bottom:419.038995px;}
.y12_c00442{bottom:448.918710px;}
.y11_c00442{bottom:479.519115px;}
.y10_c00442{bottom:539.278560px;}
.yf_c00442{bottom:568.439715px;}
.ye_c00442{bottom:597.959250px;}
.yd_c00442{bottom:657.360300px;}
.yc_c00442{bottom:657.361650px;}
.yb_c00442{bottom:687.241380px;}
.ya_c00442{bottom:717.481290px;}
.y9_c00442{bottom:777.600900px;}
.y8_c00442{bottom:807.840825px;}
.y7_c00442{bottom:837.720540px;}
.y6_c00442{bottom:897.121605px;}
.y5_c00442{bottom:926.280645px;}
.y4_c00442{bottom:956.520555px;}
.y3_c00442{bottom:1016.640195px;}
.y2_c00442{bottom:1046.159730px;}
.y1_c00442{bottom:1076.760135px;}
.h2_c00442{height:69.191895px;}
.h1_c00442{height:77.288818px;}
.h0_c00442{height:1263.000000px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:138.239850px;}
.x4_c00442{left:139.317735px;}
.x5_c00442{left:141.115635px;}
.x6_c00442{left:142.554270px;}
.x9_c00442{left:143.637810px;}
.xa_c00442{left:144.719610px;}
.xb_c00442{left:145.799325px;}
.xc_c00442{left:146.877000px;}
.xd_c00442{left:148.315935px;}
.x2_c00442{left:204.838515px;}
.x3_c00442{left:232.919535px;}
.x7_c00442{left:247.678500px;}
.x8_c00442{left:289.798515px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls2_c00442{letter-spacing:-2.716000pt;}
.ls0_c00442{letter-spacing:-2.037000pt;}
.ls3_c00442{letter-spacing:-1.357300pt;}
.ls5_c00442{letter-spacing:-0.686000pt;}
.ls4_c00442{letter-spacing:-0.679000pt;}
.ls1_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
._3_c00442{width:1.455619pt;}
._7_c00442{width:2.751394pt;}
._2_c00442{width:4.006168pt;}
._a_c00442{width:4.958501pt;}
._0_c00442{width:6.020462pt;}
._5_c00442{width:7.837771pt;}
._8_c00442{width:8.752168pt;}
._4_c00442{width:9.891489pt;}
._1_c00442{width:10.851128pt;}
._6_c00442{width:11.921041pt;}
._9_c00442{width:13.230517pt;}
.fs1_c00442{font-size:62.666667pt;}
.fs0_c00442{font-size:70.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y18_c00442{bottom:186.879133pt;}
.y17_c00442{bottom:214.077613pt;}
.y16_c00442{bottom:267.197120pt;}
.y15_c00442{bottom:292.797973pt;}
.y14_c00442{bottom:319.357733pt;}
.y13_c00442{bottom:372.479107pt;}
.y12_c00442{bottom:399.038853pt;}
.y11_c00442{bottom:426.239213pt;}
.y10_c00442{bottom:479.358720pt;}
.yf_c00442{bottom:505.279747pt;}
.ye_c00442{bottom:531.519333pt;}
.yd_c00442{bottom:584.320267pt;}
.yc_c00442{bottom:584.321467pt;}
.yb_c00442{bottom:610.881227pt;}
.ya_c00442{bottom:637.761147pt;}
.y9_c00442{bottom:691.200800pt;}
.y8_c00442{bottom:718.080733pt;}
.y7_c00442{bottom:744.640480pt;}
.y6_c00442{bottom:797.441427pt;}
.y5_c00442{bottom:823.360573pt;}
.y4_c00442{bottom:850.240493pt;}
.y3_c00442{bottom:903.680173pt;}
.y2_c00442{bottom:929.919760pt;}
.y1_c00442{bottom:957.120120pt;}
.h2_c00442{height:61.503906pt;}
.h1_c00442{height:68.701172pt;}
.h0_c00442{height:1122.666667pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:122.879867pt;}
.x4_c00442{left:123.837987pt;}
.x5_c00442{left:125.436120pt;}
.x6_c00442{left:126.714907pt;}
.x9_c00442{left:127.678053pt;}
.xa_c00442{left:128.639653pt;}
.xb_c00442{left:129.599400pt;}
.xc_c00442{left:130.557333pt;}
.xd_c00442{left:131.836387pt;}
.x2_c00442{left:182.078680pt;}
.x3_c00442{left:207.039587pt;}
.x7_c00442{left:220.158667pt;}
.x8_c00442{left:257.598680pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20ad91650ba8e8fcdeddf1ff.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_7850ed4b66c502c4b75712ff.woff2')format("woff");}.ff2_c00443{font-family:ff2_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:ff3_c00443;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00443{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls9_c00443{letter-spacing:-9.939038px;}
.ls2_c00443{letter-spacing:-7.647413px;}
.ls5_c00443{letter-spacing:-5.562128px;}
.lsc_c00443{letter-spacing:-4.591125px;}
.lsa_c00443{letter-spacing:-4.541348px;}
.ls12_c00443{letter-spacing:-3.901898px;}
.lsb_c00443{letter-spacing:-3.818588px;}
.ls8_c00443{letter-spacing:-3.055500px;}
.ls0_c00443{letter-spacing:-2.291625px;}
.ls11_c00443{letter-spacing:-2.208180px;}
.lsd_c00443{letter-spacing:-1.544288px;}
.ls4_c00443{letter-spacing:-1.526963px;}
.lsf_c00443{letter-spacing:-1.485000px;}
.ls1_c00443{letter-spacing:-0.795675px;}
.ls6_c00443{letter-spacing:-0.763875px;}
.ls7_c00443{letter-spacing:0.000000px;}
.lse_c00443{letter-spacing:1.503345px;}
.ls3_c00443{letter-spacing:2.291625px;}
.ls10_c00443{letter-spacing:2.937600px;}
.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;}
._3_c00443{width:2.038425px;}
._b_c00443{width:3.070294px;}
._1_c00443{width:4.687292px;}
._0_c00443{width:5.982852px;}
._11_c00443{width:8.591273px;}
._a_c00443{width:11.126763px;}
._2_c00443{width:12.592706px;}
._f_c00443{width:308.644936px;}
._4_c00443{width:457.532439px;}
._10_c00443{width:497.935807px;}
._e_c00443{width:592.353761px;}
._8_c00443{width:614.337145px;}
._7_c00443{width:641.962140px;}
._9_c00443{width:674.595544px;}
._d_c00443{width:704.442146px;}
._6_c00443{width:708.707865px;}
._5_c00443{width:721.336337px;}
._c_c00443{width:782.459847px;}
.fc0_c00443{color:transparent;}
.fs3_c00443{font-size:57.750000px;}
.fs6_c00443{font-size:72.000000px;}
.fs5_c00443{font-size:74.250000px;}
.fs1_c00443{font-size:77.250000px;}
.fs7_c00443{font-size:78.000000px;}
.fs0_c00443{font-size:78.750000px;}
.fs4_c00443{font-size:79.500000px;}
.fs2_c00443{font-size:80.250000px;}
.y0_c00443{bottom:0.000000px;}
.y23_c00443{bottom:204.480900px;}
.y22_c00443{bottom:236.880870px;}
.y21_c00443{bottom:268.920225px;}
.y20_c00443{bottom:300.959565px;}
.y1f_c00443{bottom:333.721395px;}
.y1e_c00443{bottom:365.760750px;}
.y1d_c00443{bottom:397.800585px;}
.y1c_c00443{bottom:430.200435px;}
.y1b_c00443{bottom:460.800930px;}
.y1a_c00443{bottom:489.959970px;}
.y19_c00443{bottom:489.962055px;}
.y18_c00443{bottom:520.562445px;}
.y17_c00443{bottom:573.480420px;}
.y16_c00443{bottom:605.880255px;}
.y15_c00443{bottom:637.559415px;}
.y14_c00443{bottom:670.319460px;}
.y13_c00443{bottom:702.360900px;}
.y12_c00443{bottom:735.121245px;}
.y11_c00443{bottom:767.521095px;}
.y10_c00443{bottom:797.040615px;}
.yf_c00443{bottom:827.280390px;}
.ye_c00443{bottom:827.282085px;}
.yd_c00443{bottom:856.801620px;}
.yc_c00443{bottom:914.040960px;}
.yb_c00443{bottom:946.440795px;}
.ya_c00443{bottom:978.480150px;}
.y5_c00443{bottom:1008.001260px;}
.y9_c00443{bottom:1011.241980px;}
.y4_c00443{bottom:1040.040615px;}
.y8_c00443{bottom:1042.921140px;}
.y3_c00443{bottom:1072.079955px;}
.y7_c00443{bottom:1076.039985px;}
.y2_c00443{bottom:1104.121860px;}
.y6_c00443{bottom:1107.360120px;}
.y1_c00443{bottom:1134.720150px;}
.h4_c00443{height:60.231445px;}
.h8_c00443{height:70.664062px;}
.h7_c00443{height:72.872314px;}
.h2_c00443{height:75.816650px;}
.h9_c00443{height:76.552734px;}
.h1_c00443{height:77.288818px;}
.ha_c00443{height:77.853516px;}
.h6_c00443{height:78.024902px;}
.h5_c00443{height:78.760986px;}
.h3_c00443{height:80.876953px;}
.h0_c00443{height:1263.000000px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:128.879565px;}
.x9_c00443{left:132.119250px;}
.xb_c00443{left:133.559685px;}
.x11_c00443{left:137.519235px;}
.x12_c00443{left:138.598680px;}
.x13_c00443{left:226.078785px;}
.x14_c00443{left:275.759535px;}
.x15_c00443{left:318.958950px;}
.x1a_c00443{left:320.039730px;}
.x1b_c00443{left:321.478680px;}
.x2_c00443{left:324.358800px;}
.xc_c00443{left:329.398155px;}
.xe_c00443{left:330.480405px;}
.xf_c00443{left:331.559835px;}
.x10_c00443{left:332.637495px;}
.xa_c00443{left:401.758530px;}
.x16_c00443{left:452.518620px;}
.x19_c00443{left:495.358665px;}
.x3_c00443{left:498.239280px;}
.x17_c00443{left:501.838530px;}
.x4_c00443{left:503.639700px;}
.xd_c00443{left:510.478635px;}
.x5_c00443{left:511.918875px;}
.x8_c00443{left:516.238980px;}
.x18_c00443{left:524.878320px;}
.x6_c00443{left:528.479325px;}
.x7_c00443{left:532.797645px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls9_c00443{letter-spacing:-8.834700pt;}
.ls2_c00443{letter-spacing:-6.797700pt;}
.ls5_c00443{letter-spacing:-4.944113pt;}
.lsc_c00443{letter-spacing:-4.081000pt;}
.lsa_c00443{letter-spacing:-4.036753pt;}
.ls12_c00443{letter-spacing:-3.468353pt;}
.lsb_c00443{letter-spacing:-3.394300pt;}
.ls8_c00443{letter-spacing:-2.716000pt;}
.ls0_c00443{letter-spacing:-2.037000pt;}
.ls11_c00443{letter-spacing:-1.962827pt;}
.lsd_c00443{letter-spacing:-1.372700pt;}
.ls4_c00443{letter-spacing:-1.357300pt;}
.lsf_c00443{letter-spacing:-1.320000pt;}
.ls1_c00443{letter-spacing:-0.707267pt;}
.ls6_c00443{letter-spacing:-0.679000pt;}
.ls7_c00443{letter-spacing:0.000000pt;}
.lse_c00443{letter-spacing:1.336307pt;}
.ls3_c00443{letter-spacing:2.037000pt;}
.ls10_c00443{letter-spacing:2.611200pt;}
.ws0_c00443{word-spacing:0.000000pt;}
._3_c00443{width:1.811933pt;}
._b_c00443{width:2.729150pt;}
._1_c00443{width:4.166482pt;}
._0_c00443{width:5.318090pt;}
._11_c00443{width:7.636687pt;}
._a_c00443{width:9.890456pt;}
._2_c00443{width:11.193517pt;}
._f_c00443{width:274.351054pt;}
._4_c00443{width:406.695501pt;}
._10_c00443{width:442.609606pt;}
._e_c00443{width:526.536677pt;}
._8_c00443{width:546.077462pt;}
._7_c00443{width:570.633014pt;}
._9_c00443{width:599.640483pt;}
._d_c00443{width:626.170796pt;}
._6_c00443{width:629.962547pt;}
._5_c00443{width:641.187855pt;}
._c_c00443{width:695.519864pt;}
.fs3_c00443{font-size:51.333333pt;}
.fs6_c00443{font-size:64.000000pt;}
.fs5_c00443{font-size:66.000000pt;}
.fs1_c00443{font-size:68.666667pt;}
.fs7_c00443{font-size:69.333333pt;}
.fs0_c00443{font-size:70.000000pt;}
.fs4_c00443{font-size:70.666667pt;}
.fs2_c00443{font-size:71.333333pt;}
.y0_c00443{bottom:0.000000pt;}
.y23_c00443{bottom:181.760800pt;}
.y22_c00443{bottom:210.560773pt;}
.y21_c00443{bottom:239.040200pt;}
.y20_c00443{bottom:267.519613pt;}
.y1f_c00443{bottom:296.641240pt;}
.y1e_c00443{bottom:325.120667pt;}
.y1d_c00443{bottom:353.600520pt;}
.y1c_c00443{bottom:382.400387pt;}
.y1b_c00443{bottom:409.600827pt;}
.y1a_c00443{bottom:435.519973pt;}
.y19_c00443{bottom:435.521827pt;}
.y18_c00443{bottom:462.722173pt;}
.y17_c00443{bottom:509.760373pt;}
.y16_c00443{bottom:538.560227pt;}
.y15_c00443{bottom:566.719480pt;}
.y14_c00443{bottom:595.839520pt;}
.y13_c00443{bottom:624.320800pt;}
.y12_c00443{bottom:653.441107pt;}
.y11_c00443{bottom:682.240973pt;}
.y10_c00443{bottom:708.480547pt;}
.yf_c00443{bottom:735.360347pt;}
.ye_c00443{bottom:735.361853pt;}
.yd_c00443{bottom:761.601440pt;}
.yc_c00443{bottom:812.480853pt;}
.yb_c00443{bottom:841.280707pt;}
.ya_c00443{bottom:869.760133pt;}
.y5_c00443{bottom:896.001120pt;}
.y9_c00443{bottom:898.881760pt;}
.y4_c00443{bottom:924.480547pt;}
.y8_c00443{bottom:927.041013pt;}
.y3_c00443{bottom:952.959960pt;}
.y7_c00443{bottom:956.479987pt;}
.y2_c00443{bottom:981.441653pt;}
.y6_c00443{bottom:984.320107pt;}
.y1_c00443{bottom:1008.640133pt;}
.h4_c00443{height:53.539062pt;}
.h8_c00443{height:62.812500pt;}
.h7_c00443{height:64.775391pt;}
.h2_c00443{height:67.392578pt;}
.h9_c00443{height:68.046875pt;}
.h1_c00443{height:68.701172pt;}
.ha_c00443{height:69.203125pt;}
.h6_c00443{height:69.355469pt;}
.h5_c00443{height:70.009766pt;}
.h3_c00443{height:71.890625pt;}
.h0_c00443{height:1122.666667pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:114.559613pt;}
.x9_c00443{left:117.439333pt;}
.xb_c00443{left:118.719720pt;}
.x11_c00443{left:122.239320pt;}
.x12_c00443{left:123.198827pt;}
.x13_c00443{left:200.958920pt;}
.x14_c00443{left:245.119587pt;}
.x15_c00443{left:283.519067pt;}
.x1a_c00443{left:284.479760pt;}
.x1b_c00443{left:285.758827pt;}
.x2_c00443{left:288.318933pt;}
.xc_c00443{left:292.798360pt;}
.xe_c00443{left:293.760360pt;}
.xf_c00443{left:294.719853pt;}
.x10_c00443{left:295.677773pt;}
.xa_c00443{left:357.118693pt;}
.x16_c00443{left:402.238773pt;}
.x19_c00443{left:440.318813pt;}
.x3_c00443{left:442.879360pt;}
.x17_c00443{left:446.078693pt;}
.x4_c00443{left:447.679733pt;}
.xd_c00443{left:453.758787pt;}
.x5_c00443{left:455.039000pt;}
.x8_c00443{left:458.879093pt;}
.x18_c00443{left:466.558507pt;}
.x6_c00443{left:469.759400pt;}
.x7_c00443{left:473.597907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7be4f1c3d4bb129e982dd225.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_25d97a145f0410ad97f87674.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.364746;font-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_c00444{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls5_c00444{letter-spacing:-4.488075px;}
.ls6_c00444{letter-spacing:-2.512913px;}
.ls7_c00444{letter-spacing:-1.677375px;}
.ls4_c00444{letter-spacing:-1.588410px;}
.ls2_c00444{letter-spacing:-0.834750px;}
.ls1_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.834750px;}
.ls8_c00444{letter-spacing:1.677375px;}
.ls3_c00444{letter-spacing:13.443300px;}
.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;}
._6_c00444{margin-left:-1.114363px;}
._0_c00444{width:2.362433px;}
._2_c00444{width:4.090778px;}
._1_c00444{width:5.118281px;}
._4_c00444{width:6.717744px;}
._5_c00444{width:8.048652px;}
._3_c00444{width:9.583774px;}
.fc0_c00444{color:transparent;}
.fs4_c00444{font-size:76.500000px;}
.fs0_c00444{font-size:78.750000px;}
.fs5_c00444{font-size:79.500000px;}
.fs2_c00444{font-size:81.000000px;}
.fs3_c00444{font-size:81.750000px;}
.fs1_c00444{font-size:87.750000px;}
.y0_c00444{bottom:0.000000px;}
.y1a_c00444{bottom:465.479985px;}
.y19_c00444{bottom:494.999535px;}
.y18_c00444{bottom:524.879265px;}
.yf_c00444{bottom:584.280240px;}
.ye_c00444{bottom:613.799760px;}
.yd_c00444{bottom:644.039685px;}
.y17_c00444{bottom:699.119460px;}
.y16_c00444{bottom:731.519295px;}
.y15_c00444{bottom:763.558635px;}
.yc_c00444{bottom:793.440105px;}
.y14_c00444{bottom:796.320495px;}
.yb_c00444{bottom:826.560315px;}
.y13_c00444{bottom:828.359820px;}
.ya_c00444{bottom:858.599670px;}
.y12_c00444{bottom:860.399190px;}
.y9_c00444{bottom:891.000000px;}
.y11_c00444{bottom:892.440630px;}
.y8_c00444{bottom:923.401020px;}
.y10_c00444{bottom:925.559055px;}
.y7_c00444{bottom:953.999310px;}
.y6_c00444{bottom:984.239220px;}
.y5_c00444{bottom:984.239505px;}
.y4_c00444{bottom:1013.759040px;}
.y3_c00444{bottom:1073.520270px;}
.y2_c00444{bottom:1103.039925px;}
.y1_c00444{bottom:1133.279850px;}
.h5_c00444{height:77.097656px;}
.h1_c00444{height:79.365234px;}
.h6_c00444{height:80.121094px;}
.h4_c00444{height:80.791992px;}
.h3_c00444{height:81.632812px;}
.h2_c00444{height:86.721680px;}
.h0_c00444{height:1263.000000px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:127.798515px;}
.x3_c00444{left:129.239415px;}
.x8_c00444{left:132.840780px;}
.x9_c00444{left:133.921095px;}
.x12_c00444{left:135.002310px;}
.x2_c00444{left:190.079400px;}
.x4_c00444{left:217.438635px;}
.x5_c00444{left:270.718500px;}
.x6_c00444{left:309.599415px;}
.x7_c00444{left:310.680450px;}
.xe_c00444{left:440.279550px;}
.xc_c00444{left:446.758485px;}
.xd_c00444{left:460.079430px;}
.x10_c00444{left:486.362025px;}
.xa_c00444{left:495.358665px;}
.x11_c00444{left:523.443210px;}
.xb_c00444{left:548.999400px;}
.xf_c00444{left:550.800750px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls5_c00444{letter-spacing:-3.989400pt;}
.ls6_c00444{letter-spacing:-2.233700pt;}
.ls7_c00444{letter-spacing:-1.491000pt;}
.ls4_c00444{letter-spacing:-1.411920pt;}
.ls2_c00444{letter-spacing:-0.742000pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.742000pt;}
.ls8_c00444{letter-spacing:1.491000pt;}
.ls3_c00444{letter-spacing:11.949600pt;}
.ws0_c00444{word-spacing:0.000000pt;}
._6_c00444{margin-left:-0.990545pt;}
._0_c00444{width:2.099940pt;}
._2_c00444{width:3.636247pt;}
._1_c00444{width:4.549583pt;}
._4_c00444{width:5.971328pt;}
._5_c00444{width:7.154357pt;}
._3_c00444{width:8.518911pt;}
.fs4_c00444{font-size:68.000000pt;}
.fs0_c00444{font-size:70.000000pt;}
.fs5_c00444{font-size:70.666667pt;}
.fs2_c00444{font-size:72.000000pt;}
.fs3_c00444{font-size:72.666667pt;}
.fs1_c00444{font-size:78.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y1a_c00444{bottom:413.759987pt;}
.y19_c00444{bottom:439.999587pt;}
.y18_c00444{bottom:466.559347pt;}
.yf_c00444{bottom:519.360213pt;}
.ye_c00444{bottom:545.599787pt;}
.yd_c00444{bottom:572.479720pt;}
.y17_c00444{bottom:621.439520pt;}
.y16_c00444{bottom:650.239373pt;}
.y15_c00444{bottom:678.718787pt;}
.yc_c00444{bottom:705.280093pt;}
.y14_c00444{bottom:707.840440pt;}
.yb_c00444{bottom:734.720280pt;}
.y13_c00444{bottom:736.319840pt;}
.ya_c00444{bottom:763.199707pt;}
.y12_c00444{bottom:764.799280pt;}
.y9_c00444{bottom:792.000000pt;}
.y11_c00444{bottom:793.280560pt;}
.y8_c00444{bottom:820.800907pt;}
.y10_c00444{bottom:822.719160pt;}
.y7_c00444{bottom:847.999387pt;}
.y6_c00444{bottom:874.879307pt;}
.y5_c00444{bottom:874.879560pt;}
.y4_c00444{bottom:901.119147pt;}
.y3_c00444{bottom:954.240240pt;}
.y2_c00444{bottom:980.479933pt;}
.y1_c00444{bottom:1007.359867pt;}
.h5_c00444{height:68.531250pt;}
.h1_c00444{height:70.546875pt;}
.h6_c00444{height:71.218750pt;}
.h4_c00444{height:71.815104pt;}
.h3_c00444{height:72.562500pt;}
.h2_c00444{height:77.085938pt;}
.h0_c00444{height:1122.666667pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:113.598680pt;}
.x3_c00444{left:114.879480pt;}
.x8_c00444{left:118.080693pt;}
.x9_c00444{left:119.040973pt;}
.x12_c00444{left:120.002053pt;}
.x2_c00444{left:168.959467pt;}
.x4_c00444{left:193.278787pt;}
.x5_c00444{left:240.638667pt;}
.x6_c00444{left:275.199480pt;}
.x7_c00444{left:276.160400pt;}
.xe_c00444{left:391.359600pt;}
.xc_c00444{left:397.118653pt;}
.xd_c00444{left:408.959493pt;}
.x10_c00444{left:432.321800pt;}
.xa_c00444{left:440.318813pt;}
.x11_c00444{left:465.282853pt;}
.xb_c00444{left:487.999467pt;}
.xf_c00444{left:489.600667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a08727b558cc951bacbbdc9.woff2')format("woff");}.ff1_c00445{font-family:ff1_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;}
.m1_c00445{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls2_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.779220px;}
.ls1_c00445{letter-spacing:5.569200px;}
.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;}
.fs1_c00445{font-size:77.250000px;}
.fs0_c00445{font-size:78.000000px;}
.y0_c00445{bottom:0.000000px;}
.y1_c00445{bottom:272.880585px;}
.h2_c00445{height:77.853516px;}
.h1_c00445{height:78.609375px;}
.h0_c00445{height:1263.000000px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:499.318770px;}
.x2_c00445{left:535.319820px;}
.x3_c00445{left:621.359250px;}
.x4_c00445{left:645.839535px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls2_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.692640pt;}
.ls1_c00445{letter-spacing:4.950400pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.fs1_c00445{font-size:68.666667pt;}
.fs0_c00445{font-size:69.333333pt;}
.y0_c00445{bottom:0.000000pt;}
.y1_c00445{bottom:242.560520pt;}
.h2_c00445{height:69.203125pt;}
.h1_c00445{height:69.875000pt;}
.h0_c00445{height:1122.666667pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:443.838907pt;}
.x2_c00445{left:475.839840pt;}
.x3_c00445{left:552.319333pt;}
.x4_c00445{left:574.079587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec83bcb444ed8c7211ab9acc.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_b52b8afdb368ce99295e2193.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.364746;font-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_c00446{transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls8_c00446{letter-spacing:-6.229350px;}
.ls7_c00446{letter-spacing:-6.051150px;}
.ls9_c00446{letter-spacing:-4.667925px;}
.ls2_c00446{letter-spacing:-3.892118px;}
.ls6_c00446{letter-spacing:-2.787750px;}
.ls4_c00446{letter-spacing:-2.310398px;}
.lsb_c00446{letter-spacing:-2.251463px;}
.lsa_c00446{letter-spacing:-1.634325px;}
.lsc_c00446{letter-spacing:-1.540800px;}
.ls3_c00446{letter-spacing:-0.816683px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:2.886090px;}
.ls5_c00446{letter-spacing:3.875423px;}
.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;}
._1_c00446{margin-left:-5.076694px;}
._2_c00446{width:4.168817px;}
._0_c00446{width:19.981201px;}
.fc0_c00446{color:transparent;}
.fs8_c00446{font-size:43.500000px;}
.fs7_c00446{font-size:51.000000px;}
.fs9_c00446{font-size:55.500000px;}
.fs4_c00446{font-size:78.750000px;}
.fs2_c00446{font-size:80.250000px;}
.fs0_c00446{font-size:81.000000px;}
.fs1_c00446{font-size:81.750000px;}
.fs6_c00446{font-size:82.500000px;}
.fs5_c00446{font-size:84.750000px;}
.fs3_c00446{font-size:92.250000px;}
.y0_c00446{bottom:0.000000px;}
.y3_c00446{bottom:1036.798920px;}
.y2_c00446{bottom:1105.198785px;}
.y1_c00446{bottom:1134.720150px;}
.h9_c00446{height:42.990234px;}
.h8_c00446{height:50.402344px;}
.ha_c00446{height:54.849609px;}
.h5_c00446{height:79.365234px;}
.h3_c00446{height:80.876953px;}
.h1_c00446{height:81.632812px;}
.h2_c00446{height:82.388672px;}
.h7_c00446{height:83.144531px;}
.h6_c00446{height:83.756836px;}
.h4_c00446{height:91.168945px;}
.h0_c00446{height:1263.000000px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:133.559685px;}
.xc_c00446{left:134.639100px;}
.x2_c00446{left:188.639100px;}
.xd_c00446{left:210.958950px;}
.x3_c00446{left:270.718500px;}
.x4_c00446{left:298.079385px;}
.xe_c00446{left:331.199850px;}
.x5_c00446{left:347.399235px;}
.x6_c00446{left:380.158785px;}
.x7_c00446{left:403.918950px;}
.xf_c00446{left:408.958335px;}
.x10_c00446{left:435.239820px;}
.x11_c00446{left:448.919535px;}
.x8_c00446{left:471.598530px;}
.x9_c00446{left:498.959385px;}
.xa_c00446{left:606.239220px;}
.xb_c00446{left:633.239220px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls8_c00446{letter-spacing:-5.537200pt;}
.ls7_c00446{letter-spacing:-5.378800pt;}
.ls9_c00446{letter-spacing:-4.149267pt;}
.ls2_c00446{letter-spacing:-3.459660pt;}
.ls6_c00446{letter-spacing:-2.478000pt;}
.ls4_c00446{letter-spacing:-2.053687pt;}
.lsb_c00446{letter-spacing:-2.001300pt;}
.lsa_c00446{letter-spacing:-1.452733pt;}
.lsc_c00446{letter-spacing:-1.369600pt;}
.ls3_c00446{letter-spacing:-0.725940pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:2.565413pt;}
.ls5_c00446{letter-spacing:3.444820pt;}
.ws0_c00446{word-spacing:0.000000pt;}
._1_c00446{margin-left:-4.512617pt;}
._2_c00446{width:3.705615pt;}
._0_c00446{width:17.761067pt;}
.fs8_c00446{font-size:38.666667pt;}
.fs7_c00446{font-size:45.333333pt;}
.fs9_c00446{font-size:49.333333pt;}
.fs4_c00446{font-size:70.000000pt;}
.fs2_c00446{font-size:71.333333pt;}
.fs0_c00446{font-size:72.000000pt;}
.fs1_c00446{font-size:72.666667pt;}
.fs6_c00446{font-size:73.333333pt;}
.fs5_c00446{font-size:75.333333pt;}
.fs3_c00446{font-size:82.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y3_c00446{bottom:921.599040pt;}
.y2_c00446{bottom:982.398920pt;}
.y1_c00446{bottom:1008.640133pt;}
.h9_c00446{height:38.213542pt;}
.h8_c00446{height:44.802083pt;}
.ha_c00446{height:48.755208pt;}
.h5_c00446{height:70.546875pt;}
.h3_c00446{height:71.890625pt;}
.h1_c00446{height:72.562500pt;}
.h2_c00446{height:73.234375pt;}
.h7_c00446{height:73.906250pt;}
.h6_c00446{height:74.450521pt;}
.h4_c00446{height:81.039063pt;}
.h0_c00446{height:1122.666667pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:118.719720pt;}
.xc_c00446{left:119.679200pt;}
.x2_c00446{left:167.679200pt;}
.xd_c00446{left:187.519067pt;}
.x3_c00446{left:240.638667pt;}
.x4_c00446{left:264.959453pt;}
.xe_c00446{left:294.399867pt;}
.x5_c00446{left:308.799320pt;}
.x6_c00446{left:337.918920pt;}
.x7_c00446{left:359.039067pt;}
.xf_c00446{left:363.518520pt;}
.x10_c00446{left:386.879840pt;}
.x11_c00446{left:399.039587pt;}
.x8_c00446{left:419.198693pt;}
.x9_c00446{left:443.519453pt;}
.xa_c00446{left:538.879307pt;}
.xb_c00446{left:562.879307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d047c06e672d746d027a7e1.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.364746;font-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_c00447{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_c00447{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:-2.606648px;}
.ls2_c00447{letter-spacing:-0.863708px;}
.ls1_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;}
.fs2_c00447{font-size:51.750000px;}
.fs3_c00447{font-size:52.500000px;}
.fs0_c00447{font-size:54.750000px;}
.fs1_c00447{font-size:56.250000px;}
.y0_c00447{bottom:0.000000px;}
.y1_c00447{bottom:1137.959925px;}
.h3_c00447{height:51.143555px;}
.h4_c00447{height:51.884766px;}
.h1_c00447{height:54.108398px;}
.h2_c00447{height:55.590820px;}
.h0_c00447{height:1263.000000px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:335.519100px;}
.x2_c00447{left:413.638500px;}
.x3_c00447{left:439.199850px;}
.x4_c00447{left:452.879520px;}
.x5_c00447{left:491.039385px;}
.x6_c00447{left:536.399235px;}
.x7_c00447{left:575.279250px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:-2.317020pt;}
.ls2_c00447{letter-spacing:-0.767740pt;}
.ls1_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
.fs2_c00447{font-size:46.000000pt;}
.fs3_c00447{font-size:46.666667pt;}
.fs0_c00447{font-size:48.666667pt;}
.fs1_c00447{font-size:50.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y1_c00447{bottom:1011.519933pt;}
.h3_c00447{height:45.460938pt;}
.h4_c00447{height:46.119792pt;}
.h1_c00447{height:48.096354pt;}
.h2_c00447{height:49.414063pt;}
.h0_c00447{height:1122.666667pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:298.239200pt;}
.x2_c00447{left:367.678667pt;}
.x3_c00447{left:390.399867pt;}
.x4_c00447{left:402.559573pt;}
.x5_c00447{left:436.479453pt;}
.x6_c00447{left:476.799320pt;}
.x7_c00447{left:511.359333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d762a9158ce7dfdbf60a186.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00448{transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls4_c00448{letter-spacing:-2.769120px;}
.ls3_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.921600px;}
.ls1_c00448{letter-spacing:1.848000px;}
.ls2_c00448{letter-spacing:2.769120px;}
.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;}
._0_c00448{width:15.677022px;}
._2_c00448{width:19.161674px;}
._1_c00448{width:22.710092px;}
.fc0_c00448{color:transparent;}
.fs2_c00448{font-size:46.500000px;}
.fs0_c00448{font-size:48.000000px;}
.fs1_c00448{font-size:50.250000px;}
.y0_c00448{bottom:0.000000px;}
.y1_c00448{bottom:1143.719520px;}
.h1_c00448{height:47.109375px;}
.h3_c00448{height:48.498047px;}
.h2_c00448{height:49.317627px;}
.h0_c00448{height:1263.000000px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:338.759100px;}
.x2_c00448{left:416.878320px;}
.x3_c00448{left:442.439670px;}
.x4_c00448{left:456.119385px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls4_c00448{letter-spacing:-2.461440pt;}
.ls3_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.819200pt;}
.ls1_c00448{letter-spacing:1.642667pt;}
.ls2_c00448{letter-spacing:2.461440pt;}
.ws0_c00448{word-spacing:0.000000pt;}
._0_c00448{width:13.935130pt;}
._2_c00448{width:17.032599pt;}
._1_c00448{width:20.186749pt;}
.fs2_c00448{font-size:41.333333pt;}
.fs0_c00448{font-size:42.666667pt;}
.fs1_c00448{font-size:44.666667pt;}
.y0_c00448{bottom:0.000000pt;}
.y1_c00448{bottom:1016.639573pt;}
.h1_c00448{height:41.875000pt;}
.h3_c00448{height:43.109375pt;}
.h2_c00448{height:43.837891pt;}
.h0_c00448{height:1122.666667pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:301.119200pt;}
.x2_c00448{left:370.558507pt;}
.x3_c00448{left:393.279707pt;}
.x4_c00448{left:405.439453pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a1e435d51a179b5423750cb.woff2')format("woff");}.ff1_c00449{font-family:ff1_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;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_1219cacb109cb3320aa8a29b.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.364746;font-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_c00449{transform:matrix(0.150685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150685,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:-2.095425px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls1_c00449{letter-spacing:1.045200px;}
.ls0_c00449{letter-spacing:2.095425px;}
.ls2_c00449{letter-spacing:3.140625px;}
.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;}
._1_c00449{width:18.884369px;}
._0_c00449{width:20.848390px;}
.fc0_c00449{color:transparent;}
.fs2_c00449{font-size:46.500000px;}
.fs0_c00449{font-size:50.250000px;}
.fs3_c00449{font-size:54.000000px;}
.fs1_c00449{font-size:54.750000px;}
.y0_c00449{bottom:0.000000px;}
.y1_c00449{bottom:1148.399775px;}
.h3_c00449{height:48.498047px;}
.h1_c00449{height:50.642578px;}
.h4_c00449{height:53.367188px;}
.h2_c00449{height:55.177734px;}
.h0_c00449{height:1263.000000px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:339.120000px;}
.x2_c00449{left:417.598530px;}
.x3_c00449{left:443.159820px;}
.x4_c00449{left:456.478635px;}
.x5_c00449{left:494.999400px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:-1.862600pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls1_c00449{letter-spacing:0.929067pt;}
.ls0_c00449{letter-spacing:1.862600pt;}
.ls2_c00449{letter-spacing:2.791667pt;}
.ws0_c00449{word-spacing:0.000000pt;}
._1_c00449{width:16.786106pt;}
._0_c00449{width:18.531902pt;}
.fs2_c00449{font-size:41.333333pt;}
.fs0_c00449{font-size:44.666667pt;}
.fs3_c00449{font-size:48.000000pt;}
.fs1_c00449{font-size:48.666667pt;}
.y0_c00449{bottom:0.000000pt;}
.y1_c00449{bottom:1020.799800pt;}
.h3_c00449{height:43.109375pt;}
.h1_c00449{height:45.015625pt;}
.h4_c00449{height:47.437500pt;}
.h2_c00449{height:49.046875pt;}
.h0_c00449{height:1122.666667pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:301.440000pt;}
.x2_c00449{left:371.198693pt;}
.x3_c00449{left:393.919840pt;}
.x4_c00449{left:405.758787pt;}
.x5_c00449{left:439.999467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.364746;font-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.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_c00450{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls2_c00450{letter-spacing:-1.796348px;}
.ls0_c00450{letter-spacing:-0.897900px;}
.ls1_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;}
._1_c00450{margin-left:-1.929157px;}
._0_c00450{width:74.475000px;}
.fc0_c00450{color:transparent;}
.fs0_c00450{font-size:54.750000px;}
.fs1_c00450{font-size:56.250000px;}
.y0_c00450{bottom:0.000000px;}
.y1_c00450{bottom:1143.358605px;}
.h1_c00450{height:54.108398px;}
.h2_c00450{height:55.590820px;}
.h0_c00450{height:1263.000000px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:335.878350px;}
.x2_c00450{left:414.358665px;}
.x3_c00450{left:453.238770px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls2_c00450{letter-spacing:-1.596753pt;}
.ls0_c00450{letter-spacing:-0.798133pt;}
.ls1_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._1_c00450{margin-left:-1.714806pt;}
._0_c00450{width:66.200000pt;}
.fs0_c00450{font-size:48.666667pt;}
.fs1_c00450{font-size:50.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y1_c00450{bottom:1016.318760pt;}
.h1_c00450{height:48.096354pt;}
.h2_c00450{height:49.414063pt;}
.h0_c00450{height:1122.666667pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:298.558533pt;}
.x2_c00450{left:368.318813pt;}
.x3_c00450{left:402.878907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.364746;font-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_c00451{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,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;}
._0_c00451{margin-left:-6.799950px;}
._1_c00451{margin-left:-2.945928px;}
._2_c00451{width:2.025674px;}
.fc0_c00451{color:transparent;}
.fs0_c00451{font-size:54.750000px;}
.fs1_c00451{font-size:58.500000px;}
.y0_c00451{bottom:0.000000px;}
.y1_c00451{bottom:1140.479640px;}
.y2_c00451{bottom:1140.838905px;}
.h1_c00451{height:54.108398px;}
.h2_c00451{height:57.814453px;}
.h0_c00451{height:1263.000000px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:337.679700px;}
.x2_c00451{left:415.798920px;}
.x3_c00451{left:441.358665px;}
.x4_c00451{left:455.039985px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
._0_c00451{margin-left:-6.044400pt;}
._1_c00451{margin-left:-2.618602pt;}
._2_c00451{width:1.800600pt;}
.fs0_c00451{font-size:48.666667pt;}
.fs1_c00451{font-size:52.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y1_c00451{bottom:1013.759680pt;}
.y2_c00451{bottom:1014.079027pt;}
.h1_c00451{height:48.096354pt;}
.h2_c00451{height:51.390625pt;}
.h0_c00451{height:1122.666667pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:300.159733pt;}
.x2_c00451{left:369.599040pt;}
.x3_c00451{left:392.318813pt;}
.x4_c00451{left:404.479987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_509c594933e860f309d4e0b8.woff2')format("woff");}.ff1_c00452{font-family:ff1_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:ff2_c00452;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00452{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls4_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:0.878400px;}
.ls2_c00452{letter-spacing:1.761375px;}
.ls3_c00452{letter-spacing:2.639318px;}
.ls1_c00452{letter-spacing:15.839108px;}
.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;}
._1_c00452{margin-left:-12.469303px;}
._2_c00452{width:13.811995px;}
._0_c00452{width:14.942091px;}
.fc0_c00452{color:transparent;}
.fs0_c00452{font-size:45.750000px;}
.fs2_c00452{font-size:46.500000px;}
.fs1_c00452{font-size:48.000000px;}
.y0_c00452{bottom:0.000000px;}
.y1_c00452{bottom:1139.039340px;}
.h1_c00452{height:44.901123px;}
.h2_c00452{height:47.109375px;}
.h3_c00452{height:48.498047px;}
.h0_c00452{height:1263.000000px;}
.w0_c00452{width:892.500000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:334.439685px;}
.x2_c00452{left:412.559100px;}
.x3_c00452{left:438.118785px;}
.x4_c00452{left:451.798515px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls4_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:0.780800pt;}
.ls2_c00452{letter-spacing:1.565667pt;}
.ls3_c00452{letter-spacing:2.346060pt;}
.ls1_c00452{letter-spacing:14.079207pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._1_c00452{margin-left:-11.083825pt;}
._2_c00452{width:12.277329pt;}
._0_c00452{width:13.281858pt;}
.fs0_c00452{font-size:40.666667pt;}
.fs2_c00452{font-size:41.333333pt;}
.fs1_c00452{font-size:42.666667pt;}
.y0_c00452{bottom:0.000000pt;}
.y1_c00452{bottom:1012.479413pt;}
.h1_c00452{height:39.912109pt;}
.h2_c00452{height:41.875000pt;}
.h3_c00452{height:43.109375pt;}
.h0_c00452{height:1122.666667pt;}
.w0_c00452{width:793.333333pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:297.279720pt;}
.x2_c00452{left:366.719200pt;}
.x3_c00452{left:389.438920pt;}
.x4_c00452{left:401.598680pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5d9dd4b4d767d533fef9486.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.364746;font-style:normal;font-weight:normal;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_6cb7214b96ffbfbff85e9571.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_603858a5ad6be7e9d8b751b1.woff2')format("woff");}.ff3_c00453{font-family:ff3_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:ff4_c00453;src:url('chunks/assets/font_41525b93fc6ba8a0f88f78c3.woff2')format("woff");}.ff4_c00453{font-family:ff4_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;}
.m1_c00453{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_c00453{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls3_c00453{letter-spacing:-3.390075px;}
.ls1_c00453{letter-spacing:-2.476500px;}
.ls0_c00453{letter-spacing:0.000000px;}
.ls2_c00453{letter-spacing:0.993450px;}
.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;}
.fs6_c00453{font-size:45.750000px;}
.fs2_c00453{font-size:46.500000px;}
.fs3_c00453{font-size:48.750000px;}
.fs5_c00453{font-size:49.500000px;}
.fs0_c00453{font-size:54.750000px;}
.fs4_c00453{font-size:55.500000px;}
.fs1_c00453{font-size:56.250000px;}
.y0_c00453{bottom:0.000000px;}
.y1_c00453{bottom:1143.360255px;}
.h7_c00453{height:47.715820px;}
.h4_c00453{height:47.845459px;}
.h3_c00453{height:48.498047px;}
.h6_c00453{height:49.886719px;}
.h1_c00453{height:54.108398px;}
.h5_c00453{height:54.849609px;}
.h2_c00453{height:55.590820px;}
.h0_c00453{height:1263.000000px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:337.318800px;}
.x2_c00453{left:415.798920px;}
.x3_c00453{left:440.999400px;}
.x4_c00453{left:455.039985px;}
.x5_c00453{left:492.838950px;}
.x6_c00453{left:538.559685px;}
.x7_c00453{left:577.078770px;}
.x8_c00453{left:622.799520px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls3_c00453{letter-spacing:-3.013400pt;}
.ls1_c00453{letter-spacing:-2.201333pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ls2_c00453{letter-spacing:0.883067pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs6_c00453{font-size:40.666667pt;}
.fs2_c00453{font-size:41.333333pt;}
.fs3_c00453{font-size:43.333333pt;}
.fs5_c00453{font-size:44.000000pt;}
.fs0_c00453{font-size:48.666667pt;}
.fs4_c00453{font-size:49.333333pt;}
.fs1_c00453{font-size:50.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y1_c00453{bottom:1016.320227pt;}
.h7_c00453{height:42.414062pt;}
.h4_c00453{height:42.529297pt;}
.h3_c00453{height:43.109375pt;}
.h6_c00453{height:44.343750pt;}
.h1_c00453{height:48.096354pt;}
.h5_c00453{height:48.755208pt;}
.h2_c00453{height:49.414063pt;}
.h0_c00453{height:1122.666667pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:299.838933pt;}
.x2_c00453{left:369.599040pt;}
.x3_c00453{left:391.999467pt;}
.x4_c00453{left:404.479987pt;}
.x5_c00453{left:438.079067pt;}
.x6_c00453{left:478.719720pt;}
.x7_c00453{left:512.958907pt;}
.x8_c00453{left:553.599573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.364746;font-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.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_c00454{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls1_c00454{letter-spacing:-0.926295px;}
.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;}
._1_c00454{width:2.655125px;}
._0_c00454{width:74.531250px;}
.fc0_c00454{color:transparent;}
.fs0_c00454{font-size:54.750000px;}
.fs2_c00454{font-size:55.500000px;}
.fs1_c00454{font-size:56.250000px;}
.y0_c00454{bottom:0.000000px;}
.y1_c00454{bottom:1142.999355px;}
.h1_c00454{height:54.108398px;}
.h3_c00454{height:54.849609px;}
.h2_c00454{height:55.590820px;}
.h0_c00454{height:1263.000000px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:338.759100px;}
.x2_c00454{left:416.878320px;}
.x3_c00454{left:455.758530px;}
.x4_c00454{left:623.878920px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls1_c00454{letter-spacing:-0.823373pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
._1_c00454{width:2.360111pt;}
._0_c00454{width:66.250000pt;}
.fs0_c00454{font-size:48.666667pt;}
.fs2_c00454{font-size:49.333333pt;}
.fs1_c00454{font-size:50.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y1_c00454{bottom:1015.999427pt;}
.h1_c00454{height:48.096354pt;}
.h3_c00454{height:48.755208pt;}
.h2_c00454{height:49.414063pt;}
.h0_c00454{height:1122.666667pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:301.119200pt;}
.x2_c00454{left:370.558507pt;}
.x3_c00454{left:405.118693pt;}
.x4_c00454{left:554.559040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.woff2')format("woff");}.ff1_c00455{font-family:ff1_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:ff2_c00455;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_e426d3e8ac432e8288f423b6.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.364746;font-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_c00455{transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls3_c00455{letter-spacing:-1.911000px;}
.ls1_c00455{letter-spacing:-1.737450px;}
.ls2_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:0.979200px;}
.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;}
._0_c00455{width:18.062576px;}
.fc0_c00455{color:transparent;}
.fs2_c00455{font-size:46.500000px;}
.fs3_c00455{font-size:48.000000px;}
.fs5_c00455{font-size:48.750000px;}
.fs0_c00455{font-size:49.500000px;}
.fs1_c00455{font-size:50.250000px;}
.fs4_c00455{font-size:54.000000px;}
.y0_c00455{bottom:0.000000px;}
.y1_c00455{bottom:1141.559055px;}
.h4_c00455{height:48.375000px;}
.h3_c00455{height:48.498047px;}
.h6_c00455{height:49.130859px;}
.h1_c00455{height:49.886719px;}
.h2_c00455{height:50.642578px;}
.h5_c00455{height:53.367188px;}
.h0_c00455{height:1263.000000px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:338.038950px;}
.x2_c00455{left:416.159820px;}
.x3_c00455{left:441.358665px;}
.x4_c00455{left:455.399235px;}
.x5_c00455{left:493.199850px;}
.x6_c00455{left:538.918950px;}
.x7_c00455{left:623.158770px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls3_c00455{letter-spacing:-1.698667pt;}
.ls1_c00455{letter-spacing:-1.544400pt;}
.ls2_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:0.870400pt;}
.ws0_c00455{word-spacing:0.000000pt;}
._0_c00455{width:16.055623pt;}
.fs2_c00455{font-size:41.333333pt;}
.fs3_c00455{font-size:42.666667pt;}
.fs5_c00455{font-size:43.333333pt;}
.fs0_c00455{font-size:44.000000pt;}
.fs1_c00455{font-size:44.666667pt;}
.fs4_c00455{font-size:48.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y1_c00455{bottom:1014.719160pt;}
.h4_c00455{height:43.000000pt;}
.h3_c00455{height:43.109375pt;}
.h6_c00455{height:43.671875pt;}
.h1_c00455{height:44.343750pt;}
.h2_c00455{height:45.015625pt;}
.h5_c00455{height:47.437500pt;}
.h0_c00455{height:1122.666667pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:300.479067pt;}
.x2_c00455{left:369.919840pt;}
.x3_c00455{left:392.318813pt;}
.x4_c00455{left:404.799320pt;}
.x5_c00455{left:438.399867pt;}
.x6_c00455{left:479.039067pt;}
.x7_c00455{left:553.918907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_bd080af1c00075eabe18c335.woff2')format("woff");}.ff3_c00456{font-family:ff3_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;}
.m1_c00456{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls4_c00456{letter-spacing:-0.960000px;}
.ls2_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.960000px;}
.ls1_c00456{letter-spacing:1.919520px;}
.ls3_c00456{letter-spacing:15.639000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
._0_c00456{width:14.155315px;}
._1_c00456{width:21.225907px;}
.fc0_c00456{color:transparent;}
.fs2_c00456{font-size:46.500000px;}
.fs0_c00456{font-size:48.000000px;}
.fs3_c00456{font-size:48.750000px;}
.fs1_c00456{font-size:50.250000px;}
.y0_c00456{bottom:0.000000px;}
.y1_c00456{bottom:1139.398590px;}
.h4_c00456{height:47.845459px;}
.h1_c00456{height:48.375000px;}
.h3_c00456{height:48.498047px;}
.h2_c00456{height:50.642578px;}
.h0_c00456{height:1263.000000px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:336.239250px;}
.x2_c00456{left:414.358665px;}
.x3_c00456{left:440.279250px;}
.x4_c00456{left:453.599670px;}
.x5_c00456{left:491.759535px;}
.x6_c00456{left:537.478635px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls4_c00456{letter-spacing:-0.853333pt;}
.ls2_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.853333pt;}
.ls1_c00456{letter-spacing:1.706240pt;}
.ls3_c00456{letter-spacing:13.901333pt;}
.ws0_c00456{word-spacing:0.000000pt;}
._0_c00456{width:12.582502pt;}
._1_c00456{width:18.867473pt;}
.fs2_c00456{font-size:41.333333pt;}
.fs0_c00456{font-size:42.666667pt;}
.fs3_c00456{font-size:43.333333pt;}
.fs1_c00456{font-size:44.666667pt;}
.y0_c00456{bottom:0.000000pt;}
.y1_c00456{bottom:1012.798747pt;}
.h4_c00456{height:42.529297pt;}
.h1_c00456{height:43.000000pt;}
.h3_c00456{height:43.109375pt;}
.h2_c00456{height:45.015625pt;}
.h0_c00456{height:1122.666667pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:298.879333pt;}
.x2_c00456{left:368.318813pt;}
.x3_c00456{left:391.359333pt;}
.x4_c00456{left:403.199707pt;}
.x5_c00456{left:437.119587pt;}
.x6_c00456{left:477.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.364746;font-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_c00457{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,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;}
._0_c00457{margin-left:-4.982023px;}
.fc0_c00457{color:transparent;}
.fs0_c00457{font-size:54.750000px;}
.fs3_c00457{font-size:55.500000px;}
.fs1_c00457{font-size:56.250000px;}
.fs2_c00457{font-size:58.500000px;}
.y0_c00457{bottom:0.000000px;}
.y1_c00457{bottom:1140.118740px;}
.h1_c00457{height:54.108398px;}
.h4_c00457{height:54.849609px;}
.h2_c00457{height:55.590820px;}
.h3_c00457{height:57.814453px;}
.h0_c00457{height:1263.000000px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:336.598530px;}
.x2_c00457{left:414.719565px;}
.x3_c00457{left:440.279250px;}
.x4_c00457{left:453.958920px;}
.x5_c00457{left:537.478635px;}
.x6_c00457{left:576.358665px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
._0_c00457{margin-left:-4.428465pt;}
.fs0_c00457{font-size:48.666667pt;}
.fs3_c00457{font-size:49.333333pt;}
.fs1_c00457{font-size:50.000000pt;}
.fs2_c00457{font-size:52.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y1_c00457{bottom:1013.438880pt;}
.h1_c00457{height:48.096354pt;}
.h4_c00457{height:48.755208pt;}
.h2_c00457{height:49.414063pt;}
.h3_c00457{height:51.390625pt;}
.h0_c00457{height:1122.666667pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:299.198693pt;}
.x2_c00457{left:368.639613pt;}
.x3_c00457{left:391.359333pt;}
.x4_c00457{left:403.519040pt;}
.x5_c00457{left:477.758787pt;}
.x6_c00457{left:512.318813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63b79c86480cc6b8cf11d4ea.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.364746;font-style:normal;font-weight:normal;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_cae2e4df79546dadaf949a75.woff2')format("woff");}.ff2_c00458{font-family:ff2_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:ff3_c00458;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.432129;font-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_c00458{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.188406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188406,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:-2.603505px;}
.ls2_c00458{letter-spacing:-0.915255px;}
.ls1_c00458{letter-spacing:0.000000px;}
.ls3_c00458{letter-spacing:15.763928px;}
.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;}
.fs2_c00458{font-size:48.000000px;}
.fs3_c00458{font-size:49.500000px;}
.fs1_c00458{font-size:50.250000px;}
.fs4_c00458{font-size:51.750000px;}
.fs5_c00458{font-size:54.000000px;}
.fs0_c00458{font-size:55.500000px;}
.y0_c00458{bottom:0.000000px;}
.y1_c00458{bottom:1145.879970px;}
.h4_c00458{height:49.886719px;}
.h3_c00458{height:50.062500px;}
.h2_c00458{height:50.642578px;}
.h5_c00458{height:52.154297px;}
.h6_c00458{height:53.367188px;}
.h1_c00458{height:54.849609px;}
.h0_c00458{height:1263.000000px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:338.038950px;}
.x2_c00458{left:416.159820px;}
.x3_c00458{left:442.078815px;}
.x4_c00458{left:455.399235px;}
.x5_c00458{left:493.559100px;}
.x6_c00458{left:538.918950px;}
.x7_c00458{left:577.798920px;}
.x8_c00458{left:623.519670px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:-2.314227pt;}
.ls2_c00458{letter-spacing:-0.813560pt;}
.ls1_c00458{letter-spacing:0.000000pt;}
.ls3_c00458{letter-spacing:14.012380pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.fs2_c00458{font-size:42.666667pt;}
.fs3_c00458{font-size:44.000000pt;}
.fs1_c00458{font-size:44.666667pt;}
.fs4_c00458{font-size:46.000000pt;}
.fs5_c00458{font-size:48.000000pt;}
.fs0_c00458{font-size:49.333333pt;}
.y0_c00458{bottom:0.000000pt;}
.y1_c00458{bottom:1018.559973pt;}
.h4_c00458{height:44.343750pt;}
.h3_c00458{height:44.500000pt;}
.h2_c00458{height:45.015625pt;}
.h5_c00458{height:46.359375pt;}
.h6_c00458{height:47.437500pt;}
.h1_c00458{height:48.755208pt;}
.h0_c00458{height:1122.666667pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:300.479067pt;}
.x2_c00458{left:369.919840pt;}
.x3_c00458{left:392.958947pt;}
.x4_c00458{left:404.799320pt;}
.x5_c00458{left:438.719200pt;}
.x6_c00458{left:479.039067pt;}
.x7_c00458{left:513.599040pt;}
.x8_c00458{left:554.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52ac119455e4a5a3b58a95eb.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_15741b32b056a9649bb0d3f1.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.311035;font-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_c00459{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls2_c00459{letter-spacing:-1.771740px;}
.ls0_c00459{letter-spacing:-0.897900px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls4_c00459{letter-spacing:1.029600px;}
.ls3_c00459{letter-spacing:15.528645px;}
.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;}
.fs6_c00459{font-size:48.000000px;}
.fs4_c00459{font-size:49.500000px;}
.fs2_c00459{font-size:50.250000px;}
.fs3_c00459{font-size:54.000000px;}
.fs0_c00459{font-size:54.750000px;}
.fs5_c00459{font-size:55.500000px;}
.fs1_c00459{font-size:56.250000px;}
.y0_c00459{bottom:0.000000px;}
.y2_c00459{bottom:1143.360255px;}
.y1_c00459{bottom:1143.719520px;}
.h7_c00459{height:48.375000px;}
.h5_c00459{height:49.886719px;}
.h3_c00459{height:52.409180px;}
.h4_c00459{height:53.367188px;}
.h1_c00459{height:54.108398px;}
.h6_c00459{height:54.849609px;}
.h2_c00459{height:55.590820px;}
.h0_c00459{height:1263.000000px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:338.038950px;}
.x2_c00459{left:416.159820px;}
.x3_c00459{left:441.719565px;}
.x4_c00459{left:455.758530px;}
.x5_c00459{left:493.918350px;}
.x6_c00459{left:539.279850px;}
.x7_c00459{left:578.159820px;}
.x8_c00459{left:623.519670px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls2_c00459{letter-spacing:-1.574880pt;}
.ls0_c00459{letter-spacing:-0.798133pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls4_c00459{letter-spacing:0.915200pt;}
.ls3_c00459{letter-spacing:13.803240pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fs6_c00459{font-size:42.666667pt;}
.fs4_c00459{font-size:44.000000pt;}
.fs2_c00459{font-size:44.666667pt;}
.fs3_c00459{font-size:48.000000pt;}
.fs0_c00459{font-size:48.666667pt;}
.fs5_c00459{font-size:49.333333pt;}
.fs1_c00459{font-size:50.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y2_c00459{bottom:1016.320227pt;}
.y1_c00459{bottom:1016.639573pt;}
.h7_c00459{height:43.000000pt;}
.h5_c00459{height:44.343750pt;}
.h3_c00459{height:46.585938pt;}
.h4_c00459{height:47.437500pt;}
.h1_c00459{height:48.096354pt;}
.h6_c00459{height:48.755208pt;}
.h2_c00459{height:49.414063pt;}
.h0_c00459{height:1122.666667pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:300.479067pt;}
.x2_c00459{left:369.919840pt;}
.x3_c00459{left:392.639613pt;}
.x4_c00459{left:405.118693pt;}
.x5_c00459{left:439.038533pt;}
.x6_c00459{left:479.359867pt;}
.x7_c00459{left:513.919840pt;}
.x8_c00459{left:554.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0d39ff424b09dc115b73f6.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_84187c9ce311404cb8cfb774.woff2')format("woff");}.ff3_c00460{font-family:ff3_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;}
.m1_c00460{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_c00460{transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls1_c00460{letter-spacing:-0.979200px;}
.ls2_c00460{letter-spacing:-0.901260px;}
.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:46.500000px;}
.fs3_c00460{font-size:48.000000px;}
.fs0_c00460{font-size:52.500000px;}
.fs5_c00460{font-size:54.000000px;}
.fs4_c00460{font-size:54.750000px;}
.fs1_c00460{font-size:56.250000px;}
.y0_c00460{bottom:0.000000px;}
.y1_c00460{bottom:1139.039340px;}
.h4_c00460{height:48.375000px;}
.h3_c00460{height:48.498047px;}
.h1_c00460{height:51.884766px;}
.h6_c00460{height:53.367188px;}
.h5_c00460{height:54.108398px;}
.h2_c00460{height:55.590820px;}
.h0_c00460{height:1263.000000px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:338.038950px;}
.x2_c00460{left:416.519070px;}
.x3_c00460{left:441.719565px;}
.x4_c00460{left:455.399235px;}
.x5_c00460{left:493.559100px;}
.x6_c00460{left:539.279850px;}
.x7_c00460{left:577.439670px;}
.x8_c00460{left:623.519670px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls1_c00460{letter-spacing:-0.870400pt;}
.ls2_c00460{letter-spacing:-0.801120pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.fs2_c00460{font-size:41.333333pt;}
.fs3_c00460{font-size:42.666667pt;}
.fs0_c00460{font-size:46.666667pt;}
.fs5_c00460{font-size:48.000000pt;}
.fs4_c00460{font-size:48.666667pt;}
.fs1_c00460{font-size:50.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y1_c00460{bottom:1012.479413pt;}
.h4_c00460{height:43.000000pt;}
.h3_c00460{height:43.109375pt;}
.h1_c00460{height:46.119792pt;}
.h6_c00460{height:47.437500pt;}
.h5_c00460{height:48.096354pt;}
.h2_c00460{height:49.414063pt;}
.h0_c00460{height:1122.666667pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:300.479067pt;}
.x2_c00460{left:370.239173pt;}
.x3_c00460{left:392.639613pt;}
.x4_c00460{left:404.799320pt;}
.x5_c00460{left:438.719200pt;}
.x6_c00460{left:479.359867pt;}
.x7_c00460{left:513.279707pt;}
.x8_c00460{left:554.239707pt;}
}





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

.ir_c00461:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_1b2fe43d93a44de1cae10c1f.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_2a767bc75f8934fb14d6d7c6.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00461{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls3_c00461{letter-spacing:-1.881600px;}
.ls0_c00461{letter-spacing:-0.897900px;}
.ls1_c00461{letter-spacing:0.000000px;}
.ls2_c00461{letter-spacing:15.058080px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
._0_c00461{width:14.788631px;}
.fc0_c00461{color:transparent;}
.fs2_c00461{font-size:48.000000px;}
.fs4_c00461{font-size:49.500000px;}
.fs1_c00461{font-size:50.250000px;}
.fs3_c00461{font-size:54.000000px;}
.fs0_c00461{font-size:54.750000px;}
.y0_c00461{bottom:0.000000px;}
.y2_c00461{bottom:1141.559055px;}
.y1_c00461{bottom:1141.919955px;}
.h5_c00461{height:48.375000px;}
.h6_c00461{height:49.886719px;}
.h3_c00461{height:50.062500px;}
.h2_c00461{height:50.642578px;}
.h4_c00461{height:53.367188px;}
.h1_c00461{height:54.108398px;}
.h0_c00461{height:1263.000000px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:337.679700px;}
.x2_c00461{left:415.798920px;}
.x3_c00461{left:441.719565px;}
.x4_c00461{left:455.039985px;}
.x5_c00461{left:493.199850px;}
.x6_c00461{left:538.559685px;}
.x7_c00461{left:577.439670px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls3_c00461{letter-spacing:-1.672533pt;}
.ls0_c00461{letter-spacing:-0.798133pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls2_c00461{letter-spacing:13.384960pt;}
.ws0_c00461{word-spacing:0.000000pt;}
._0_c00461{width:13.145449pt;}
.fs2_c00461{font-size:42.666667pt;}
.fs4_c00461{font-size:44.000000pt;}
.fs1_c00461{font-size:44.666667pt;}
.fs3_c00461{font-size:48.000000pt;}
.fs0_c00461{font-size:48.666667pt;}
.y0_c00461{bottom:0.000000pt;}
.y2_c00461{bottom:1014.719160pt;}
.y1_c00461{bottom:1015.039960pt;}
.h5_c00461{height:43.000000pt;}
.h6_c00461{height:44.343750pt;}
.h3_c00461{height:44.500000pt;}
.h2_c00461{height:45.015625pt;}
.h4_c00461{height:47.437500pt;}
.h1_c00461{height:48.096354pt;}
.h0_c00461{height:1122.666667pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:300.159733pt;}
.x2_c00461{left:369.599040pt;}
.x3_c00461{left:392.639613pt;}
.x4_c00461{left:404.479987pt;}
.x5_c00461{left:438.399867pt;}
.x6_c00461{left:478.719720pt;}
.x7_c00461{left:513.279707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cae2e4df79546dadaf949a75.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_e1295e40345a5caf7f2b37eb.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;}
.m1_c00462{transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls2_c00462{letter-spacing:0.000000px;}
.ls1_c00462{letter-spacing:1.045200px;}
.ls3_c00462{letter-spacing:2.095425px;}
.ls0_c00462{letter-spacing:3.140625px;}
.ls4_c00462{letter-spacing:15.528645px;}
.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;}
._0_c00462{width:12.613085px;}
._1_c00462{width:23.190040px;}
.fc0_c00462{color:transparent;}
.fs2_c00462{font-size:48.000000px;}
.fs3_c00462{font-size:49.500000px;}
.fs0_c00462{font-size:50.250000px;}
.fs1_c00462{font-size:52.500000px;}
.y0_c00462{bottom:0.000000px;}
.y1_c00462{bottom:1144.078770px;}
.h4_c00462{height:49.886719px;}
.h3_c00462{height:50.062500px;}
.h1_c00462{height:50.642578px;}
.h2_c00462{height:52.910156px;}
.h0_c00462{height:1263.000000px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:338.759100px;}
.x2_c00462{left:417.239220px;}
.x3_c00462{left:442.439670px;}
.x4_c00462{left:456.478635px;}
.x5_c00462{left:494.279250px;}
.x6_c00462{left:539.639100px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls2_c00462{letter-spacing:0.000000pt;}
.ls1_c00462{letter-spacing:0.929067pt;}
.ls3_c00462{letter-spacing:1.862600pt;}
.ls0_c00462{letter-spacing:2.791667pt;}
.ls4_c00462{letter-spacing:13.803240pt;}
.ws0_c00462{word-spacing:0.000000pt;}
._0_c00462{width:11.211631pt;}
._1_c00462{width:20.613369pt;}
.fs2_c00462{font-size:42.666667pt;}
.fs3_c00462{font-size:44.000000pt;}
.fs0_c00462{font-size:44.666667pt;}
.fs1_c00462{font-size:46.666667pt;}
.y0_c00462{bottom:0.000000pt;}
.y1_c00462{bottom:1016.958907pt;}
.h4_c00462{height:44.343750pt;}
.h3_c00462{height:44.500000pt;}
.h1_c00462{height:45.015625pt;}
.h2_c00462{height:47.031250pt;}
.h0_c00462{height:1122.666667pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:301.119200pt;}
.x2_c00462{left:370.879307pt;}
.x3_c00462{left:393.279707pt;}
.x4_c00462{left:405.758787pt;}
.x5_c00462{left:439.359333pt;}
.x6_c00462{left:479.679200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e7f753db618c472bdf2c9a8.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00463{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls3_c00463{letter-spacing:-2.095425px;}
.ls2_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:2.095425px;}
.ls1_c00463{letter-spacing:3.140625px;}
.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;}
._0_c00463{width:17.577701px;}
._1_c00463{width:23.662390px;}
.fc0_c00463{color:transparent;}
.fs1_c00463{font-size:46.500000px;}
.fs0_c00463{font-size:50.250000px;}
.y0_c00463{bottom:0.000000px;}
.y1_c00463{bottom:1141.919955px;}
.y2_c00463{bottom:1142.280855px;}
.h2_c00463{height:48.498047px;}
.h1_c00463{height:50.642578px;}
.h0_c00463{height:1263.000000px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:333.719535px;}
.x2_c00463{left:411.838950px;}
.x3_c00463{left:437.398635px;}
.x4_c00463{left:451.080000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls3_c00463{letter-spacing:-1.862600pt;}
.ls2_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:1.862600pt;}
.ls1_c00463{letter-spacing:2.791667pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._0_c00463{width:15.624623pt;}
._1_c00463{width:21.033236pt;}
.fs1_c00463{font-size:41.333333pt;}
.fs0_c00463{font-size:44.666667pt;}
.y0_c00463{bottom:0.000000pt;}
.y1_c00463{bottom:1015.039960pt;}
.y2_c00463{bottom:1015.360760pt;}
.h2_c00463{height:43.109375pt;}
.h1_c00463{height:45.015625pt;}
.h0_c00463{height:1122.666667pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:296.639587pt;}
.x2_c00463{left:366.079067pt;}
.x3_c00463{left:388.798787pt;}
.x4_c00463{left:400.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e6cb106018a2b12b5cd0308.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_39c09556899ecf4f51f7f107.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.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;}
.m4_c00464{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls2_c00464{letter-spacing:-1.796348px;}
.ls4_c00464{letter-spacing:-0.955988px;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:1.911000px;}
.ls3_c00464{letter-spacing:16.830000px;}
.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;}
._0_c00464{width:15.029415px;}
.fc0_c00464{color:transparent;}
.fs2_c00464{font-size:46.500000px;}
.fs0_c00464{font-size:48.750000px;}
.fs4_c00464{font-size:49.500000px;}
.fs3_c00464{font-size:54.750000px;}
.fs1_c00464{font-size:58.500000px;}
.y0_c00464{bottom:0.000000px;}
.y1_c00464{bottom:1141.559055px;}
.y2_c00464{bottom:1141.919955px;}
.h3_c00464{height:48.498047px;}
.h1_c00464{height:49.130859px;}
.h5_c00464{height:49.886719px;}
.h4_c00464{height:54.108398px;}
.h2_c00464{height:57.814453px;}
.h0_c00464{height:1263.000000px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:339.838515px;}
.x2_c00464{left:417.959385px;}
.x3_c00464{left:443.878320px;}
.x4_c00464{left:457.198785px;}
.x5_c00464{left:495.358665px;}
.x6_c00464{left:540.718500px;}
.x7_c00464{left:579.598530px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls2_c00464{letter-spacing:-1.596753pt;}
.ls4_c00464{letter-spacing:-0.849767pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:1.698667pt;}
.ls3_c00464{letter-spacing:14.960000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
._0_c00464{width:13.359480pt;}
.fs2_c00464{font-size:41.333333pt;}
.fs0_c00464{font-size:43.333333pt;}
.fs4_c00464{font-size:44.000000pt;}
.fs3_c00464{font-size:48.666667pt;}
.fs1_c00464{font-size:52.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y1_c00464{bottom:1014.719160pt;}
.y2_c00464{bottom:1015.039960pt;}
.h3_c00464{height:43.109375pt;}
.h1_c00464{height:43.671875pt;}
.h5_c00464{height:44.343750pt;}
.h4_c00464{height:48.096354pt;}
.h2_c00464{height:51.390625pt;}
.h0_c00464{height:1122.666667pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:302.078680pt;}
.x2_c00464{left:371.519453pt;}
.x3_c00464{left:394.558507pt;}
.x4_c00464{left:406.398920pt;}
.x5_c00464{left:440.318813pt;}
.x6_c00464{left:480.638667pt;}
.x7_c00464{left:515.198693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0d39ff424b09dc115b73f6.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00465{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls1_c00465{letter-spacing:-0.918000px;}
.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;}
._0_c00465{margin-left:-8.127311px;}
._1_c00465{margin-left:-5.373275px;}
._2_c00465{width:3.558765px;}
.fc0_c00465{color:transparent;}
.fs2_c00465{font-size:46.500000px;}
.fs0_c00465{font-size:54.000000px;}
.fs1_c00465{font-size:56.250000px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:1140.120390px;}
.h3_c00465{height:48.498047px;}
.h1_c00465{height:53.367188px;}
.h2_c00465{height:55.590820px;}
.h0_c00465{height:1263.000000px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:338.759100px;}
.x2_c00465{left:416.519070px;}
.x3_c00465{left:442.439670px;}
.x4_c00465{left:455.758530px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls1_c00465{letter-spacing:-0.816000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
._0_c00465{margin-left:-7.224277pt;}
._1_c00465{margin-left:-4.776244pt;}
._2_c00465{width:3.163346pt;}
.fs2_c00465{font-size:41.333333pt;}
.fs0_c00465{font-size:48.000000pt;}
.fs1_c00465{font-size:50.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:1013.440347pt;}
.h3_c00465{height:43.109375pt;}
.h1_c00465{height:47.437500pt;}
.h2_c00465{height:49.414063pt;}
.h0_c00465{height:1122.666667pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:301.119200pt;}
.x2_c00465{left:370.239173pt;}
.x3_c00465{left:393.279707pt;}
.x4_c00465{left:405.118693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.364746;font-style:normal;font-weight:normal;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_9f4a0622267981ac0eed22c4.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;}
.m2_c00466{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);}
.m3_c00466{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,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;}
._0_c00466{margin-left:-4.982023px;}
._2_c00466{margin-left:-3.175500px;}
._1_c00466{margin-left:-1.587523px;}
.fc0_c00466{color:transparent;}
.fs2_c00466{font-size:48.750000px;}
.fs0_c00466{font-size:54.750000px;}
.fs1_c00466{font-size:56.250000px;}
.y0_c00466{bottom:0.000000px;}
.y1_c00466{bottom:1142.640105px;}
.h3_c00466{height:49.130859px;}
.h1_c00466{height:54.108398px;}
.h2_c00466{height:55.590820px;}
.h0_c00466{height:1263.000000px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:336.598530px;}
.x2_c00466{left:414.719565px;}
.x3_c00466{left:440.279250px;}
.x4_c00466{left:453.958920px;}
.x5_c00466{left:621.718545px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
._0_c00466{margin-left:-4.428465pt;}
._2_c00466{margin-left:-2.822667pt;}
._1_c00466{margin-left:-1.411132pt;}
.fs2_c00466{font-size:43.333333pt;}
.fs0_c00466{font-size:48.666667pt;}
.fs1_c00466{font-size:50.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y1_c00466{bottom:1015.680093pt;}
.h3_c00466{height:43.671875pt;}
.h1_c00466{height:48.096354pt;}
.h2_c00466{height:49.414063pt;}
.h0_c00466{height:1122.666667pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:299.198693pt;}
.x2_c00466{left:368.639613pt;}
.x3_c00466{left:391.359333pt;}
.x4_c00466{left:403.519040pt;}
.x5_c00466{left:552.638707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a1e435d51a179b5423750cb.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_e1295e40345a5caf7f2b37eb.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_1219cacb109cb3320aa8a29b.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.364746;font-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_c00467{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls4_c00467{letter-spacing:-5.025503px;}
.ls3_c00467{letter-spacing:-2.541000px;}
.ls2_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:1.005000px;}
.ls1_c00467{letter-spacing:2.009498px;}
.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;}
._1_c00467{width:14.818926px;}
._2_c00467{width:20.301000px;}
._0_c00467{width:31.228466px;}
.fc0_c00467{color:transparent;}
.fs1_c00467{font-size:46.500000px;}
.fs0_c00467{font-size:50.250000px;}
.fs2_c00467{font-size:52.500000px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:1144.080420px;}
.h2_c00467{height:48.498047px;}
.h1_c00467{height:50.642578px;}
.h3_c00467{height:51.884766px;}
.h0_c00467{height:1263.000000px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:339.838515px;}
.x2_c00467{left:417.959385px;}
.x3_c00467{left:443.519070px;}
.x4_c00467{left:457.198785px;}
.x5_c00467{left:495.358665px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls4_c00467{letter-spacing:-4.467113pt;}
.ls3_c00467{letter-spacing:-2.258667pt;}
.ls2_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.893333pt;}
.ls1_c00467{letter-spacing:1.786220pt;}
.ws0_c00467{word-spacing:0.000000pt;}
._1_c00467{width:13.172379pt;}
._2_c00467{width:18.045333pt;}
._0_c00467{width:27.758636pt;}
.fs1_c00467{font-size:41.333333pt;}
.fs0_c00467{font-size:44.666667pt;}
.fs2_c00467{font-size:46.666667pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:1016.960373pt;}
.h2_c00467{height:43.109375pt;}
.h1_c00467{height:45.015625pt;}
.h3_c00467{height:46.119792pt;}
.h0_c00467{height:1122.666667pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:302.078680pt;}
.x2_c00467{left:371.519453pt;}
.x3_c00467{left:394.239173pt;}
.x4_c00467{left:406.398920pt;}
.x5_c00467{left:440.318813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_267105ca42be7b90b951fcc6.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.364746;font-style:normal;font-weight:normal;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_1e9cee89524448eb35deffc3.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00468{transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:-2.606648px;}
.ls1_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;}
._0_c00468{margin-left:-6.549000px;}
._1_c00468{margin-left:-3.724106px;}
.fc0_c00468{color:transparent;}
.fs2_c00468{font-size:46.500000px;}
.fs1_c00468{font-size:48.000000px;}
.fs0_c00468{font-size:54.750000px;}
.fs3_c00468{font-size:55.500000px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:1143.719520px;}
.h3_c00468{height:48.498047px;}
.h2_c00468{height:50.062500px;}
.h1_c00468{height:54.108398px;}
.h4_c00468{height:54.849609px;}
.h0_c00468{height:1263.000000px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:332.638530px;}
.x2_c00468{left:410.398635px;}
.x3_c00468{left:436.319235px;}
.x4_c00468{left:449.639700px;}
.x5_c00468{left:487.799565px;}
.x6_c00468{left:533.518620px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:-2.317020pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
._0_c00468{margin-left:-5.821333pt;}
._1_c00468{margin-left:-3.310317pt;}
.fs2_c00468{font-size:41.333333pt;}
.fs1_c00468{font-size:42.666667pt;}
.fs0_c00468{font-size:48.666667pt;}
.fs3_c00468{font-size:49.333333pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:1016.639573pt;}
.h3_c00468{height:43.109375pt;}
.h2_c00468{height:44.500000pt;}
.h1_c00468{height:48.096354pt;}
.h4_c00468{height:48.755208pt;}
.h0_c00468{height:1122.666667pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:295.678693pt;}
.x2_c00468{left:364.798787pt;}
.x3_c00468{left:387.839320pt;}
.x4_c00468{left:399.679733pt;}
.x5_c00468{left:433.599613pt;}
.x6_c00468{left:474.238773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00469{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{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);}
.m2_c00469{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls4_c00469{letter-spacing:-3.000000px;}
.ls3_c00469{letter-spacing:0.000000px;}
.ls1_c00469{letter-spacing:0.998400px;}
.ls0_c00469{letter-spacing:2.001600px;}
.ls2_c00469{letter-spacing:3.998400px;}
.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;}
._0_c00469{width:18.706000px;}
._1_c00469{width:26.903680px;}
.fc0_c00469{color:transparent;}
.fs2_c00469{font-size:46.500000px;}
.fs0_c00469{font-size:48.000000px;}
.fs1_c00469{font-size:50.250000px;}
.y0_c00469{bottom:0.000000px;}
.y2_c00469{bottom:1139.400240px;}
.y1_c00469{bottom:1140.118740px;}
.h1_c00469{height:48.375000px;}
.h3_c00469{height:48.498047px;}
.h2_c00469{height:50.642578px;}
.h0_c00469{height:1263.000000px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:340.199385px;}
.x2_c00469{left:418.679670px;}
.x3_c00469{left:444.239220px;}
.x4_c00469{left:457.559685px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls4_c00469{letter-spacing:-2.666667pt;}
.ls3_c00469{letter-spacing:0.000000pt;}
.ls1_c00469{letter-spacing:0.887467pt;}
.ls0_c00469{letter-spacing:1.779200pt;}
.ls2_c00469{letter-spacing:3.554133pt;}
.ws0_c00469{word-spacing:0.000000pt;}
._0_c00469{width:16.627556pt;}
._1_c00469{width:23.914382pt;}
.fs2_c00469{font-size:41.333333pt;}
.fs0_c00469{font-size:42.666667pt;}
.fs1_c00469{font-size:44.666667pt;}
.y0_c00469{bottom:0.000000pt;}
.y2_c00469{bottom:1012.800213pt;}
.y1_c00469{bottom:1013.438880pt;}
.h1_c00469{height:43.000000pt;}
.h3_c00469{height:43.109375pt;}
.h2_c00469{height:45.015625pt;}
.h0_c00469{height:1122.666667pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:302.399453pt;}
.x2_c00469{left:372.159707pt;}
.x3_c00469{left:394.879307pt;}
.x4_c00469{left:406.719720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d762a9158ce7dfdbf60a186.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00470{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls4_c00470{letter-spacing:-2.769120px;}
.ls3_c00470{letter-spacing:0.000000px;}
.ls1_c00470{letter-spacing:0.921600px;}
.ls0_c00470{letter-spacing:1.848000px;}
.ls2_c00470{letter-spacing:2.769120px;}
.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;}
._0_c00470{width:11.889600px;}
._2_c00470{width:17.447926px;}
._3_c00470{width:21.134400px;}
._1_c00470{width:22.719618px;}
.fc0_c00470{color:transparent;}
.fs1_c00470{font-size:46.500000px;}
.fs0_c00470{font-size:48.000000px;}
.y0_c00470{bottom:0.000000px;}
.y1_c00470{bottom:1141.919955px;}
.h1_c00470{height:47.109375px;}
.h2_c00470{height:48.498047px;}
.h0_c00470{height:1263.000000px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:335.159850px;}
.x2_c00470{left:413.279250px;}
.x3_c00470{left:438.838950px;}
.x4_c00470{left:452.159415px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls4_c00470{letter-spacing:-2.461440pt;}
.ls3_c00470{letter-spacing:0.000000pt;}
.ls1_c00470{letter-spacing:0.819200pt;}
.ls0_c00470{letter-spacing:1.642667pt;}
.ls2_c00470{letter-spacing:2.461440pt;}
.ws0_c00470{word-spacing:0.000000pt;}
._0_c00470{width:10.568533pt;}
._2_c00470{width:15.509268pt;}
._3_c00470{width:18.786133pt;}
._1_c00470{width:20.195216pt;}
.fs1_c00470{font-size:41.333333pt;}
.fs0_c00470{font-size:42.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.y1_c00470{bottom:1015.039960pt;}
.h1_c00470{height:41.875000pt;}
.h2_c00470{height:43.109375pt;}
.h0_c00470{height:1122.666667pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:297.919867pt;}
.x2_c00470{left:367.359333pt;}
.x3_c00470{left:390.079067pt;}
.x4_c00470{left:401.919480pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_ec2871c1e4d85700744bbf44.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.364746;font-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_c00471{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls2_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:0.960000px;}
.ls1_c00471{letter-spacing:1.919520px;}
.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;}
._0_c00471{width:15.993754px;}
._1_c00471{width:17.520000px;}
.fc0_c00471{color:transparent;}
.fs1_c00471{font-size:44.250000px;}
.fs0_c00471{font-size:48.000000px;}
.fs2_c00471{font-size:53.250000px;}
.y0_c00471{bottom:0.000000px;}
.y1_c00471{bottom:1141.559055px;}
.h2_c00471{height:46.151367px;}
.h1_c00471{height:48.375000px;}
.h3_c00471{height:52.625977px;}
.h0_c00471{height:1263.000000px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:337.318800px;}
.x2_c00471{left:415.439670px;}
.x3_c00471{left:440.999400px;}
.x4_c00471{left:454.679070px;}
.x5_c00471{left:492.838950px;}
.x6_c00471{left:538.198785px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls2_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:0.853333pt;}
.ls1_c00471{letter-spacing:1.706240pt;}
.ws0_c00471{word-spacing:0.000000pt;}
._0_c00471{width:14.216670pt;}
._1_c00471{width:15.573333pt;}
.fs1_c00471{font-size:39.333333pt;}
.fs0_c00471{font-size:42.666667pt;}
.fs2_c00471{font-size:47.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y1_c00471{bottom:1014.719160pt;}
.h2_c00471{height:41.023438pt;}
.h1_c00471{height:43.000000pt;}
.h3_c00471{height:46.778646pt;}
.h0_c00471{height:1122.666667pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:299.838933pt;}
.x2_c00471{left:369.279707pt;}
.x3_c00471{left:391.999467pt;}
.x4_c00471{left:404.159173pt;}
.x5_c00471{left:438.079067pt;}
.x6_c00471{left:478.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0d39ff424b09dc115b73f6.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.364746;font-style:normal;font-weight:normal;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_6cb7214b96ffbfbff85e9571.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_e1b81109503e4ee3bd5c1944.woff2')format("woff");}.ff3_c00472{font-family:ff3_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;}
.m1_c00472{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_c00472{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls3_c00472{letter-spacing:-3.075300px;}
.ls2_c00472{letter-spacing:-1.796348px;}
.ls5_c00472{letter-spacing:-1.724775px;}
.ls4_c00472{letter-spacing:-0.956250px;}
.ls0_c00472{letter-spacing:-0.897900px;}
.ls1_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:45.750000px;}
.fs2_c00472{font-size:46.500000px;}
.fs3_c00472{font-size:50.250000px;}
.fs0_c00472{font-size:54.750000px;}
.fs1_c00472{font-size:56.250000px;}
.y0_c00472{bottom:0.000000px;}
.y1_c00472{bottom:1147.320285px;}
.h5_c00472{height:47.715820px;}
.h3_c00472{height:48.498047px;}
.h4_c00472{height:50.642578px;}
.h1_c00472{height:54.108398px;}
.h2_c00472{height:55.590820px;}
.h0_c00472{height:1263.000000px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:338.038950px;}
.x2_c00472{left:416.519070px;}
.x3_c00472{left:442.078815px;}
.x4_c00472{left:455.758530px;}
.x5_c00472{left:493.918350px;}
.x6_c00472{left:539.279850px;}
.x7_c00472{left:578.159820px;}
.x8_c00472{left:623.519670px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls3_c00472{letter-spacing:-2.733600pt;}
.ls2_c00472{letter-spacing:-1.596753pt;}
.ls5_c00472{letter-spacing:-1.533133pt;}
.ls4_c00472{letter-spacing:-0.850000pt;}
.ls0_c00472{letter-spacing:-0.798133pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
.fs4_c00472{font-size:40.666667pt;}
.fs2_c00472{font-size:41.333333pt;}
.fs3_c00472{font-size:44.666667pt;}
.fs0_c00472{font-size:48.666667pt;}
.fs1_c00472{font-size:50.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y1_c00472{bottom:1019.840253pt;}
.h5_c00472{height:42.414062pt;}
.h3_c00472{height:43.109375pt;}
.h4_c00472{height:45.015625pt;}
.h1_c00472{height:48.096354pt;}
.h2_c00472{height:49.414063pt;}
.h0_c00472{height:1122.666667pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:300.479067pt;}
.x2_c00472{left:370.239173pt;}
.x3_c00472{left:392.958947pt;}
.x4_c00472{left:405.118693pt;}
.x5_c00472{left:439.038533pt;}
.x6_c00472{left:479.359867pt;}
.x7_c00472{left:513.919840pt;}
.x8_c00472{left:554.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.364746;font-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_c00473{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_c00473{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls1_c00473{letter-spacing:-1.796348px;}
.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;}
._0_c00473{margin-left:-2.950912px;}
.fc0_c00473{color:transparent;}
.fs0_c00473{font-size:54.750000px;}
.fs1_c00473{font-size:56.250000px;}
.y0_c00473{bottom:0.000000px;}
.y1_c00473{bottom:1141.559055px;}
.h1_c00473{height:54.108398px;}
.h2_c00473{height:55.590820px;}
.h0_c00473{height:1263.000000px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:336.598530px;}
.x2_c00473{left:414.719565px;}
.x3_c00473{left:440.279250px;}
.x4_c00473{left:453.599670px;}
.x5_c00473{left:491.759535px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls1_c00473{letter-spacing:-1.596753pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._0_c00473{margin-left:-2.623033pt;}
.fs0_c00473{font-size:48.666667pt;}
.fs1_c00473{font-size:50.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y1_c00473{bottom:1014.719160pt;}
.h1_c00473{height:48.096354pt;}
.h2_c00473{height:49.414063pt;}
.h0_c00473{height:1122.666667pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:299.198693pt;}
.x2_c00473{left:368.639613pt;}
.x3_c00473{left:391.359333pt;}
.x4_c00473{left:403.199707pt;}
.x5_c00473{left:437.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be3a2e654df8f03f30a8c639.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.364746;font-style:normal;font-weight:normal;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_15741b32b056a9649bb0d3f1.woff2')format("woff");}.ff2_c00474{font-family:ff2_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;}
.m1_c00474{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);}
.m3_c00474{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls2_c00474{letter-spacing:-1.845563px;}
.ls4_c00474{letter-spacing:-0.955988px;}
.ls0_c00474{letter-spacing:-0.922500px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls3_c00474{letter-spacing:15.293363px;}
.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;}
._0_c00474{width:13.196491px;}
.fc0_c00474{color:transparent;}
.fs1_c00474{font-size:48.750000px;}
.fs2_c00474{font-size:55.500000px;}
.fs0_c00474{font-size:56.250000px;}
.y0_c00474{bottom:0.000000px;}
.y1_c00474{bottom:1139.398590px;}
.h2_c00474{height:49.130859px;}
.h3_c00474{height:54.849609px;}
.h1_c00474{height:55.590820px;}
.h0_c00474{height:1263.000000px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:335.519100px;}
.x2_c00474{left:439.199850px;}
.x3_c00474{left:452.518620px;}
.x4_c00474{left:490.678530px;}
.x5_c00474{left:536.039985px;}
.x6_c00474{left:574.918350px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls2_c00474{letter-spacing:-1.640500pt;}
.ls4_c00474{letter-spacing:-0.849767pt;}
.ls0_c00474{letter-spacing:-0.820000pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls3_c00474{letter-spacing:13.594100pt;}
.ws0_c00474{word-spacing:0.000000pt;}
._0_c00474{width:11.730214pt;}
.fs1_c00474{font-size:43.333333pt;}
.fs2_c00474{font-size:49.333333pt;}
.fs0_c00474{font-size:50.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y1_c00474{bottom:1012.798747pt;}
.h2_c00474{height:43.671875pt;}
.h3_c00474{height:48.755208pt;}
.h1_c00474{height:49.414063pt;}
.h0_c00474{height:1122.666667pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:298.239200pt;}
.x2_c00474{left:390.399867pt;}
.x3_c00474{left:402.238773pt;}
.x4_c00474{left:436.158693pt;}
.x5_c00474{left:476.479987pt;}
.x6_c00474{left:511.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c13019890dde0abb5f80ffe9.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:-1.744200px;}
.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:54.000000px;}
.y0_c00475{bottom:0.000000px;}
.y1_c00475{bottom:1140.479640px;}
.h1_c00475{height:53.367188px;}
.h0_c00475{height:1263.000000px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:332.638530px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:-1.550400pt;}
.ws0_c00475{word-spacing:0.000000pt;}
.fs0_c00475{font-size:48.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y1_c00475{bottom:1013.759680pt;}
.h1_c00475{height:47.437500pt;}
.h0_c00475{height:1122.666667pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:295.678693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72be3e8e59cae4b08b27495.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_7d0b2854b4f710061d9a724f.woff2')format("woff");}.ff3_c00476{font-family:ff3_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:ff4_c00476;src:url('chunks/assets/font_d9d32d783682a2ef9c4dd907.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.364746;font-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_c00476{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{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_c00476{transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls3_c00476{letter-spacing:-4.925003px;}
.ls2_c00476{letter-spacing:-2.468400px;}
.ls4_c00476{letter-spacing:-0.985403px;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:0.985403px;}
.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;}
._0_c00476{width:15.491858px;}
.fc0_c00476{color:transparent;}
.fs2_c00476{font-size:48.000000px;}
.fs0_c00476{font-size:50.250000px;}
.fs3_c00476{font-size:51.000000px;}
.fs1_c00476{font-size:52.500000px;}
.fs4_c00476{font-size:56.250000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:1146.959385px;}
.h4_c00476{height:50.053711px;}
.h3_c00476{height:50.062500px;}
.h1_c00476{height:50.642578px;}
.h2_c00476{height:52.910156px;}
.h5_c00476{height:55.590820px;}
.h0_c00476{height:1263.000000px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:339.120000px;}
.x2_c00476{left:417.239220px;}
.x3_c00476{left:442.798920px;}
.x4_c00476{left:456.839535px;}
.x5_c00476{left:494.638500px;}
.x6_c00476{left:540.359250px;}
.x7_c00476{left:578.878320px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls3_c00476{letter-spacing:-4.377780pt;}
.ls2_c00476{letter-spacing:-2.194133pt;}
.ls4_c00476{letter-spacing:-0.875913pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:0.875913pt;}
.ws0_c00476{word-spacing:0.000000pt;}
._0_c00476{width:13.770541pt;}
.fs2_c00476{font-size:42.666667pt;}
.fs0_c00476{font-size:44.666667pt;}
.fs3_c00476{font-size:45.333333pt;}
.fs1_c00476{font-size:46.666667pt;}
.fs4_c00476{font-size:50.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:1019.519453pt;}
.h4_c00476{height:44.492188pt;}
.h3_c00476{height:44.500000pt;}
.h1_c00476{height:45.015625pt;}
.h2_c00476{height:47.031250pt;}
.h5_c00476{height:49.414063pt;}
.h0_c00476{height:1122.666667pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:301.440000pt;}
.x2_c00476{left:370.879307pt;}
.x3_c00476{left:393.599040pt;}
.x4_c00476{left:406.079587pt;}
.x5_c00476{left:439.678667pt;}
.x6_c00476{left:480.319333pt;}
.x7_c00476{left:514.558507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.364746;font-style:normal;font-weight:normal;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_e1b81109503e4ee3bd5c1944.woff2')format("woff");}.ff2_c00477{font-family:ff2_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;}
.m4_c00477{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls1_c00477{letter-spacing:-1.970325px;}
.ls3_c00477{letter-spacing:-0.926295px;}
.ls0_c00477{letter-spacing:0.000000px;}
.ls2_c00477{letter-spacing:1.020300px;}
.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;}
.fs3_c00477{font-size:47.250000px;}
.fs2_c00477{font-size:53.250000px;}
.fs0_c00477{font-size:54.000000px;}
.fs5_c00477{font-size:55.500000px;}
.fs1_c00477{font-size:56.250000px;}
.fs4_c00477{font-size:57.000000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:1144.439670px;}
.y2_c00477{bottom:1144.800570px;}
.h4_c00477{height:47.619141px;}
.h3_c00477{height:52.625977px;}
.h1_c00477{height:53.367188px;}
.h6_c00477{height:54.849609px;}
.h2_c00477{height:55.590820px;}
.h5_c00477{height:56.332031px;}
.h0_c00477{height:1263.000000px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:338.038950px;}
.x2_c00477{left:416.159820px;}
.x3_c00477{left:441.719565px;}
.x4_c00477{left:455.399235px;}
.x5_c00477{left:493.559100px;}
.x6_c00477{left:539.279850px;}
.x7_c00477{left:577.798920px;}
.x8_c00477{left:623.519670px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:-1.751400pt;}
.ls3_c00477{letter-spacing:-0.823373pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ls2_c00477{letter-spacing:0.906933pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fs3_c00477{font-size:42.000000pt;}
.fs2_c00477{font-size:47.333333pt;}
.fs0_c00477{font-size:48.000000pt;}
.fs5_c00477{font-size:49.333333pt;}
.fs1_c00477{font-size:50.000000pt;}
.fs4_c00477{font-size:50.666667pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:1017.279707pt;}
.y2_c00477{bottom:1017.600507pt;}
.h4_c00477{height:42.328125pt;}
.h3_c00477{height:46.778646pt;}
.h1_c00477{height:47.437500pt;}
.h6_c00477{height:48.755208pt;}
.h2_c00477{height:49.414063pt;}
.h5_c00477{height:50.072917pt;}
.h0_c00477{height:1122.666667pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:300.479067pt;}
.x2_c00477{left:369.919840pt;}
.x3_c00477{left:392.639613pt;}
.x4_c00477{left:404.799320pt;}
.x5_c00477{left:438.719200pt;}
.x6_c00477{left:479.359867pt;}
.x7_c00477{left:513.599040pt;}
.x8_c00477{left:554.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2af04660d1e018e72454a31a.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.364746;font-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_c00478{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_c00478{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls1_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:21.708375px;}
.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;}
._1_c00478{margin-left:-42.617287px;}
._0_c00478{margin-left:-4.982023px;}
._2_c00478{margin-left:-3.175651px;}
.fc0_c00478{color:transparent;}
.fs1_c00478{font-size:53.250000px;}
.fs0_c00478{font-size:54.750000px;}
.fs2_c00478{font-size:56.250000px;}
.y0_c00478{bottom:0.000000px;}
.y1_c00478{bottom:1143.001005px;}
.y2_c00478{bottom:1143.360255px;}
.h2_c00478{height:52.625977px;}
.h1_c00478{height:54.108398px;}
.h3_c00478{height:55.590820px;}
.h0_c00478{height:1263.000000px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:339.838515px;}
.x2_c00478{left:417.959385px;}
.x3_c00478{left:443.519070px;}
.x4_c00478{left:456.839535px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls1_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:19.296333pt;}
.ws0_c00478{word-spacing:0.000000pt;}
._1_c00478{margin-left:-37.882033pt;}
._0_c00478{margin-left:-4.428465pt;}
._2_c00478{margin-left:-2.822801pt;}
.fs1_c00478{font-size:47.333333pt;}
.fs0_c00478{font-size:48.666667pt;}
.fs2_c00478{font-size:50.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y1_c00478{bottom:1016.000893pt;}
.y2_c00478{bottom:1016.320227pt;}
.h2_c00478{height:46.778646pt;}
.h1_c00478{height:48.096354pt;}
.h3_c00478{height:49.414063pt;}
.h0_c00478{height:1122.666667pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:302.078680pt;}
.x2_c00478{left:371.519453pt;}
.x3_c00478{left:394.239173pt;}
.x4_c00478{left:406.079587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b96cd4bc96afe0224468d7d.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.364746;font-style:normal;font-weight:normal;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_7d22f4006acab322eac94864.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00479{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{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_c00479{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls3_c00479{letter-spacing:-0.990000px;}
.ls0_c00479{letter-spacing:-0.913778px;}
.ls1_c00479{letter-spacing:0.000000px;}
.ls2_c00479{letter-spacing:16.498350px;}
.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;}
.fs3_c00479{font-size:49.500000px;}
.fs2_c00479{font-size:54.000000px;}
.fs0_c00479{font-size:54.750000px;}
.fs1_c00479{font-size:56.250000px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:1139.761140px;}
.y2_c00479{bottom:1140.120390px;}
.h4_c00479{height:49.886719px;}
.h3_c00479{height:53.367188px;}
.h1_c00479{height:54.108398px;}
.h2_c00479{height:55.590820px;}
.h0_c00479{height:1263.000000px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:334.078785px;}
.x2_c00479{left:411.838950px;}
.x3_c00479{left:437.759535px;}
.x4_c00479{left:451.080000px;}
.x5_c00479{left:489.239820px;}
.x6_c00479{left:534.599670px;}
.x7_c00479{left:573.479685px;}
.x8_c00479{left:619.198785px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls3_c00479{letter-spacing:-0.880000pt;}
.ls0_c00479{letter-spacing:-0.812247pt;}
.ls1_c00479{letter-spacing:0.000000pt;}
.ls2_c00479{letter-spacing:14.665200pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs3_c00479{font-size:44.000000pt;}
.fs2_c00479{font-size:48.000000pt;}
.fs0_c00479{font-size:48.666667pt;}
.fs1_c00479{font-size:50.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:1013.121013pt;}
.y2_c00479{bottom:1013.440347pt;}
.h4_c00479{height:44.343750pt;}
.h3_c00479{height:47.437500pt;}
.h1_c00479{height:48.096354pt;}
.h2_c00479{height:49.414063pt;}
.h0_c00479{height:1122.666667pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:296.958920pt;}
.x2_c00479{left:366.079067pt;}
.x3_c00479{left:389.119587pt;}
.x4_c00479{left:400.960000pt;}
.x5_c00479{left:434.879840pt;}
.x6_c00479{left:475.199707pt;}
.x7_c00479{left:509.759720pt;}
.x8_c00479{left:550.398920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5d9dd4b4d767d533fef9486.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_fca04aacefa75fa7cd0602b2.woff2')format("woff");}.ff3_c00480{font-family:ff3_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;}
.m1_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);}
.m4_c00480{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls2_c00480{letter-spacing:-2.064150px;}
.ls3_c00480{letter-spacing:-0.913778px;}
.ls0_c00480{letter-spacing:-0.901260px;}
.ls1_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;}
.fs2_c00480{font-size:46.500000px;}
.fs3_c00480{font-size:48.750000px;}
.fs4_c00480{font-size:49.500000px;}
.fs0_c00480{font-size:54.000000px;}
.fs6_c00480{font-size:54.750000px;}
.fs5_c00480{font-size:55.500000px;}
.fs1_c00480{font-size:56.250000px;}
.y0_c00480{bottom:0.000000px;}
.y2_c00480{bottom:1141.559055px;}
.y1_c00480{bottom:1141.919955px;}
.h3_c00480{height:48.498047px;}
.h4_c00480{height:49.130859px;}
.h5_c00480{height:49.886719px;}
.h1_c00480{height:53.367188px;}
.h7_c00480{height:54.108398px;}
.h6_c00480{height:54.849609px;}
.h2_c00480{height:55.590820px;}
.h0_c00480{height:1263.000000px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:338.038950px;}
.x2_c00480{left:416.519070px;}
.x3_c00480{left:441.719565px;}
.x4_c00480{left:455.399235px;}
.x5_c00480{left:493.559100px;}
.x6_c00480{left:539.279850px;}
.x7_c00480{left:577.798920px;}
.x8_c00480{left:623.519670px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls2_c00480{letter-spacing:-1.834800pt;}
.ls3_c00480{letter-spacing:-0.812247pt;}
.ls0_c00480{letter-spacing:-0.801120pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs2_c00480{font-size:41.333333pt;}
.fs3_c00480{font-size:43.333333pt;}
.fs4_c00480{font-size:44.000000pt;}
.fs0_c00480{font-size:48.000000pt;}
.fs6_c00480{font-size:48.666667pt;}
.fs5_c00480{font-size:49.333333pt;}
.fs1_c00480{font-size:50.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y2_c00480{bottom:1014.719160pt;}
.y1_c00480{bottom:1015.039960pt;}
.h3_c00480{height:43.109375pt;}
.h4_c00480{height:43.671875pt;}
.h5_c00480{height:44.343750pt;}
.h1_c00480{height:47.437500pt;}
.h7_c00480{height:48.096354pt;}
.h6_c00480{height:48.755208pt;}
.h2_c00480{height:49.414063pt;}
.h0_c00480{height:1122.666667pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:300.479067pt;}
.x2_c00480{left:370.239173pt;}
.x3_c00480{left:392.639613pt;}
.x4_c00480{left:404.799320pt;}
.x5_c00480{left:438.719200pt;}
.x6_c00480{left:479.359867pt;}
.x7_c00480{left:513.599040pt;}
.x8_c00480{left:554.239707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_090fccd82bc93ed30828f50f.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00481{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{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_c00481{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls4_c00481{letter-spacing:0.000000px;}
.ls2_c00481{letter-spacing:0.998400px;}
.ls1_c00481{letter-spacing:2.001600px;}
.ls3_c00481{letter-spacing:3.998400px;}
.ls0_c00481{letter-spacing:18.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;}
._0_c00481{margin-left:-12.086080px;}
._1_c00481{width:18.038800px;}
._2_c00481{width:22.142160px;}
.fc0_c00481{color:transparent;}
.fs1_c00481{font-size:44.250000px;}
.fs2_c00481{font-size:47.250000px;}
.fs0_c00481{font-size:48.000000px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:1146.600135px;}
.h2_c00481{height:46.151367px;}
.h3_c00481{height:47.619141px;}
.h1_c00481{height:48.375000px;}
.h0_c00481{height:1263.000000px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:338.399850px;}
.x2_c00481{left:416.878320px;}
.x3_c00481{left:442.078815px;}
.x4_c00481{left:455.758530px;}
.x5_c00481{left:493.918350px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls4_c00481{letter-spacing:0.000000pt;}
.ls2_c00481{letter-spacing:0.887467pt;}
.ls1_c00481{letter-spacing:1.779200pt;}
.ls3_c00481{letter-spacing:3.554133pt;}
.ls0_c00481{letter-spacing:16.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
._0_c00481{margin-left:-10.743182pt;}
._1_c00481{width:16.034489pt;}
._2_c00481{width:19.681920pt;}
.fs1_c00481{font-size:39.333333pt;}
.fs2_c00481{font-size:42.000000pt;}
.fs0_c00481{font-size:42.666667pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:1019.200120pt;}
.h2_c00481{height:41.023438pt;}
.h3_c00481{height:42.328125pt;}
.h1_c00481{height:43.000000pt;}
.h0_c00481{height:1122.666667pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:300.799867pt;}
.x2_c00481{left:370.558507pt;}
.x3_c00481{left:392.958947pt;}
.x4_c00481{left:405.118693pt;}
.x5_c00481{left:439.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.364746;font-style:normal;font-weight:normal;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_9f4a0622267981ac0eed22c4.woff2')format("woff");}.ff2_c00482{font-family:ff2_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;}
.m1_c00482{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls2_c00482{letter-spacing:-0.990000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.ls1_c00482{letter-spacing:0.980025px;}
.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;}
._0_c00482{margin-left:-1.615298px;}
.fc0_c00482{color:transparent;}
.fs3_c00482{font-size:49.500000px;}
.fs0_c00482{font-size:54.750000px;}
.fs2_c00482{font-size:57.000000px;}
.fs1_c00482{font-size:58.500000px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:1141.919955px;}
.h4_c00482{height:49.886719px;}
.h1_c00482{height:54.108398px;}
.h3_c00482{height:56.332031px;}
.h2_c00482{height:57.814453px;}
.h0_c00482{height:1263.000000px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:336.959385px;}
.x2_c00482{left:415.439670px;}
.x3_c00482{left:440.638500px;}
.x4_c00482{left:454.319820px;}
.x5_c00482{left:537.839535px;}
.x6_c00482{left:576.719520px;}
.x7_c00482{left:622.079400px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls2_c00482{letter-spacing:-0.880000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ls1_c00482{letter-spacing:0.871133pt;}
.ws0_c00482{word-spacing:0.000000pt;}
._0_c00482{margin-left:-1.435820pt;}
.fs3_c00482{font-size:44.000000pt;}
.fs0_c00482{font-size:48.666667pt;}
.fs2_c00482{font-size:50.666667pt;}
.fs1_c00482{font-size:52.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:1015.039960pt;}
.h4_c00482{height:44.343750pt;}
.h1_c00482{height:48.096354pt;}
.h3_c00482{height:50.072917pt;}
.h2_c00482{height:51.390625pt;}
.h0_c00482{height:1122.666667pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:299.519453pt;}
.x2_c00482{left:369.279707pt;}
.x3_c00482{left:391.678667pt;}
.x4_c00482{left:403.839840pt;}
.x5_c00482{left:478.079587pt;}
.x6_c00482{left:512.639573pt;}
.x7_c00482{left:552.959467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_e426d3e8ac432e8288f423b6.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.364746;font-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.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls2_c00483{letter-spacing:-0.941280px;}
.ls1_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:0.941280px;}
.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;}
._1_c00483{width:14.803388px;}
._0_c00483{width:16.031925px;}
.fc0_c00483{color:transparent;}
.fs2_c00483{font-size:46.500000px;}
.fs0_c00483{font-size:48.000000px;}
.fs1_c00483{font-size:50.250000px;}
.fs3_c00483{font-size:54.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:1142.999355px;}
.h1_c00483{height:48.375000px;}
.h3_c00483{height:48.498047px;}
.h2_c00483{height:50.642578px;}
.h4_c00483{height:53.367188px;}
.h0_c00483{height:1263.000000px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:335.519100px;}
.x2_c00483{left:413.279250px;}
.x3_c00483{left:439.199850px;}
.x4_c00483{left:452.518620px;}
.x5_c00483{left:490.678530px;}
.x6_c00483{left:536.399235px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls2_c00483{letter-spacing:-0.836693pt;}
.ls1_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:0.836693pt;}
.ws0_c00483{word-spacing:0.000000pt;}
._1_c00483{width:13.158567pt;}
._0_c00483{width:14.250600pt;}
.fs2_c00483{font-size:41.333333pt;}
.fs0_c00483{font-size:42.666667pt;}
.fs1_c00483{font-size:44.666667pt;}
.fs3_c00483{font-size:48.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:1015.999427pt;}
.h1_c00483{height:43.000000pt;}
.h3_c00483{height:43.109375pt;}
.h2_c00483{height:45.015625pt;}
.h4_c00483{height:47.437500pt;}
.h0_c00483{height:1122.666667pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:298.239200pt;}
.x2_c00483{left:367.359333pt;}
.x3_c00483{left:390.399867pt;}
.x4_c00483{left:402.238773pt;}
.x5_c00483{left:436.158693pt;}
.x6_c00483{left:476.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0d39ff424b09dc115b73f6.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00484{font-family:ff2_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:ff3_c00484;src:url('chunks/assets/font_e1b81109503e4ee3bd5c1944.woff2')format("woff");}.ff3_c00484{font-family:ff3_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;}
.m1_c00484{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);}
.m4_c00484{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls1_c00484{letter-spacing:-3.900000px;}
.ls2_c00484{letter-spacing:-0.876225px;}
.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:0.000000px;}
.fc0_c00484{color:transparent;}
.fs2_c00484{font-size:46.500000px;}
.fs4_c00484{font-size:48.750000px;}
.fs0_c00484{font-size:51.750000px;}
.fs5_c00484{font-size:52.500000px;}
.fs3_c00484{font-size:54.000000px;}
.fs1_c00484{font-size:56.250000px;}
.y0_c00484{bottom:0.000000px;}
.y2_c00484{bottom:1139.039340px;}
.y1_c00484{bottom:1139.398590px;}
.h3_c00484{height:48.498047px;}
.h5_c00484{height:49.130859px;}
.h1_c00484{height:51.143555px;}
.h6_c00484{height:51.884766px;}
.h4_c00484{height:53.367188px;}
.h2_c00484{height:55.590820px;}
.h0_c00484{height:1263.000000px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:334.798950px;}
.x2_c00484{left:413.279250px;}
.x3_c00484{left:438.479685px;}
.x4_c00484{left:452.159415px;}
.x5_c00484{left:490.678530px;}
.x6_c00484{left:536.039985px;}
.x7_c00484{left:574.918350px;}
.x8_c00484{left:620.279850px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls1_c00484{letter-spacing:-3.466667pt;}
.ls2_c00484{letter-spacing:-0.778867pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
.fs2_c00484{font-size:41.333333pt;}
.fs4_c00484{font-size:43.333333pt;}
.fs0_c00484{font-size:46.000000pt;}
.fs5_c00484{font-size:46.666667pt;}
.fs3_c00484{font-size:48.000000pt;}
.fs1_c00484{font-size:50.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y2_c00484{bottom:1012.479413pt;}
.y1_c00484{bottom:1012.798747pt;}
.h3_c00484{height:43.109375pt;}
.h5_c00484{height:43.671875pt;}
.h1_c00484{height:45.460938pt;}
.h6_c00484{height:46.119792pt;}
.h4_c00484{height:47.437500pt;}
.h2_c00484{height:49.414063pt;}
.h0_c00484{height:1122.666667pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:297.599067pt;}
.x2_c00484{left:367.359333pt;}
.x3_c00484{left:389.759720pt;}
.x4_c00484{left:401.919480pt;}
.x5_c00484{left:436.158693pt;}
.x6_c00484{left:476.479987pt;}
.x7_c00484{left:511.038533pt;}
.x8_c00484{left:551.359867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_267105ca42be7b90b951fcc6.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.364746;font-style:normal;font-weight:normal;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_1e9cee89524448eb35deffc3.woff2')format("woff");}.ff2_c00485{font-family:ff2_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:ff3_c00485;src:url('chunks/assets/font_bd080af1c00075eabe18c335.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00485;src:url('chunks/assets/font_9f4a0622267981ac0eed22c4.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00485{transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls6_c00485{letter-spacing:-2.758763px;}
.ls4_c00485{letter-spacing:-1.747133px;}
.ls5_c00485{letter-spacing:-1.722525px;}
.ls2_c00485{letter-spacing:-0.901260px;}
.ls0_c00485{letter-spacing:-0.885600px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls3_c00485{letter-spacing:12.658275px;}
.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;}
.fs2_c00485{font-size:44.250000px;}
.fs1_c00485{font-size:46.500000px;}
.fs3_c00485{font-size:47.250000px;}
.fs6_c00485{font-size:48.750000px;}
.fs5_c00485{font-size:52.500000px;}
.fs4_c00485{font-size:53.250000px;}
.fs0_c00485{font-size:54.000000px;}
.y0_c00485{bottom:0.000000px;}
.y2_c00485{bottom:1144.080420px;}
.y1_c00485{bottom:1144.439670px;}
.h3_c00485{height:46.151367px;}
.h4_c00485{height:46.373291px;}
.h2_c00485{height:48.498047px;}
.h7_c00485{height:49.130859px;}
.h6_c00485{height:51.884766px;}
.h5_c00485{height:52.625977px;}
.h1_c00485{height:53.367188px;}
.h0_c00485{height:1263.000000px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:338.038950px;}
.x2_c00485{left:416.159820px;}
.x3_c00485{left:441.719565px;}
.x4_c00485{left:455.399235px;}
.x5_c00485{left:493.199850px;}
.x6_c00485{left:538.918950px;}
.x7_c00485{left:577.439670px;}
.x8_c00485{left:623.158770px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls6_c00485{letter-spacing:-2.452233pt;}
.ls4_c00485{letter-spacing:-1.553007pt;}
.ls5_c00485{letter-spacing:-1.531133pt;}
.ls2_c00485{letter-spacing:-0.801120pt;}
.ls0_c00485{letter-spacing:-0.787200pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls3_c00485{letter-spacing:11.251800pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs2_c00485{font-size:39.333333pt;}
.fs1_c00485{font-size:41.333333pt;}
.fs3_c00485{font-size:42.000000pt;}
.fs6_c00485{font-size:43.333333pt;}
.fs5_c00485{font-size:46.666667pt;}
.fs4_c00485{font-size:47.333333pt;}
.fs0_c00485{font-size:48.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y2_c00485{bottom:1016.960373pt;}
.y1_c00485{bottom:1017.279707pt;}
.h3_c00485{height:41.023438pt;}
.h4_c00485{height:41.220703pt;}
.h2_c00485{height:43.109375pt;}
.h7_c00485{height:43.671875pt;}
.h6_c00485{height:46.119792pt;}
.h5_c00485{height:46.778646pt;}
.h1_c00485{height:47.437500pt;}
.h0_c00485{height:1122.666667pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:300.479067pt;}
.x2_c00485{left:369.919840pt;}
.x3_c00485{left:392.639613pt;}
.x4_c00485{left:404.799320pt;}
.x5_c00485{left:438.399867pt;}
.x6_c00485{left:479.039067pt;}
.x7_c00485{left:513.279707pt;}
.x8_c00485{left:553.918907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3a7514de9b27b6ad9c61c2f.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_9f4a0622267981ac0eed22c4.woff2')format("woff");}.ff3_c00486{font-family:ff3_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;}
.m1_c00486{transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls4_c00486{letter-spacing:-2.843648px;}
.ls3_c00486{letter-spacing:0.000000px;}
.ls1_c00486{letter-spacing:0.964800px;}
.ls0_c00486{letter-spacing:1.934625px;}
.ls2_c00486{letter-spacing:3.864225px;}
.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;}
._0_c00486{width:12.446925px;}
._1_c00486{width:19.049543px;}
.fc0_c00486{color:transparent;}
.fs1_c00486{font-size:48.000000px;}
.fs0_c00486{font-size:50.250000px;}
.y0_c00486{bottom:0.000000px;}
.y1_c00486{bottom:1140.840540px;}
.h1_c00486{height:49.317627px;}
.h2_c00486{height:50.062500px;}
.h3_c00486{height:50.642578px;}
.h0_c00486{height:1263.000000px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:334.798950px;}
.x2_c00486{left:413.279250px;}
.x3_c00486{left:438.838950px;}
.x4_c00486{left:452.159415px;}
.x5_c00486{left:620.279850px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls4_c00486{letter-spacing:-2.527687pt;}
.ls3_c00486{letter-spacing:0.000000pt;}
.ls1_c00486{letter-spacing:0.857600pt;}
.ls0_c00486{letter-spacing:1.719667pt;}
.ls2_c00486{letter-spacing:3.434867pt;}
.ws0_c00486{word-spacing:0.000000pt;}
._0_c00486{width:11.063933pt;}
._1_c00486{width:16.932927pt;}
.fs1_c00486{font-size:42.666667pt;}
.fs0_c00486{font-size:44.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y1_c00486{bottom:1014.080480pt;}
.h1_c00486{height:43.837891pt;}
.h2_c00486{height:44.500000pt;}
.h3_c00486{height:45.015625pt;}
.h0_c00486{height:1122.666667pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:297.599067pt;}
.x2_c00486{left:367.359333pt;}
.x3_c00486{left:390.079067pt;}
.x4_c00486{left:401.919480pt;}
.x5_c00486{left:551.359867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5e371d5bd6e0a87e3eb264f.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_1c319f4ac1b2bfe90caaf59c.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00487{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_c00487{transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179104,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls4_c00487{letter-spacing:-2.095425px;}
.ls3_c00487{letter-spacing:0.000000px;}
.ls1_c00487{letter-spacing:1.045200px;}
.ls0_c00487{letter-spacing:2.095425px;}
.ls2_c00487{letter-spacing:4.185825px;}
.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;}
._0_c00487{width:17.577785px;}
._1_c00487{width:22.853449px;}
.fc0_c00487{color:transparent;}
.fs1_c00487{font-size:48.000000px;}
.fs0_c00487{font-size:50.250000px;}
.fs2_c00487{font-size:52.500000px;}
.y0_c00487{bottom:0.000000px;}
.y1_c00487{bottom:1141.199805px;}
.h2_c00487{height:50.062500px;}
.h1_c00487{height:50.642578px;}
.h3_c00487{height:52.910156px;}
.h0_c00487{height:1263.000000px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:336.959385px;}
.x2_c00487{left:415.439670px;}
.x3_c00487{left:440.638500px;}
.x4_c00487{left:454.319820px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls4_c00487{letter-spacing:-1.862600pt;}
.ls3_c00487{letter-spacing:0.000000pt;}
.ls1_c00487{letter-spacing:0.929067pt;}
.ls0_c00487{letter-spacing:1.862600pt;}
.ls2_c00487{letter-spacing:3.720733pt;}
.ws0_c00487{word-spacing:0.000000pt;}
._0_c00487{width:15.624698pt;}
._1_c00487{width:20.314177pt;}
.fs1_c00487{font-size:42.666667pt;}
.fs0_c00487{font-size:44.666667pt;}
.fs2_c00487{font-size:46.666667pt;}
.y0_c00487{bottom:0.000000pt;}
.y1_c00487{bottom:1014.399827pt;}
.h2_c00487{height:44.500000pt;}
.h1_c00487{height:45.015625pt;}
.h3_c00487{height:47.031250pt;}
.h0_c00487{height:1122.666667pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:299.519453pt;}
.x2_c00487{left:369.279707pt;}
.x3_c00487{left:391.678667pt;}
.x4_c00487{left:403.839840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_538ed26cc8b139cfc7695234.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.364746;font-style:normal;font-weight:normal;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_4fd8ed21ff57452919ba734e.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00488{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_c00488{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{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_c00488{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls1_c00488{letter-spacing:-2.064150px;}
.ls2_c00488{letter-spacing:-0.941280px;}
.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;}
._0_c00488{width:17.851407px;}
._1_c00488{width:19.572866px;}
.fc0_c00488{color:transparent;}
.fs3_c00488{font-size:48.000000px;}
.fs2_c00488{font-size:49.500000px;}
.fs0_c00488{font-size:54.750000px;}
.fs1_c00488{font-size:56.250000px;}
.y0_c00488{bottom:0.000000px;}
.y1_c00488{bottom:1140.838905px;}
.h4_c00488{height:48.375000px;}
.h3_c00488{height:49.886719px;}
.h1_c00488{height:54.108398px;}
.h2_c00488{height:55.590820px;}
.h0_c00488{height:1263.000000px;}
.w0_c00488{width:892.500000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:335.878350px;}
.x2_c00488{left:414.358665px;}
.x3_c00488{left:439.918350px;}
.x4_c00488{left:453.599670px;}
.x5_c00488{left:491.759535px;}
.x6_c00488{left:537.478635px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls1_c00488{letter-spacing:-1.834800pt;}
.ls2_c00488{letter-spacing:-0.836693pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
._0_c00488{width:15.867917pt;}
._1_c00488{width:17.398103pt;}
.fs3_c00488{font-size:42.666667pt;}
.fs2_c00488{font-size:44.000000pt;}
.fs0_c00488{font-size:48.666667pt;}
.fs1_c00488{font-size:50.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y1_c00488{bottom:1014.079027pt;}
.h4_c00488{height:43.000000pt;}
.h3_c00488{height:44.343750pt;}
.h1_c00488{height:48.096354pt;}
.h2_c00488{height:49.414063pt;}
.h0_c00488{height:1122.666667pt;}
.w0_c00488{width:793.333333pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:298.558533pt;}
.x2_c00488{left:368.318813pt;}
.x3_c00488{left:391.038533pt;}
.x4_c00488{left:403.199707pt;}
.x5_c00488{left:437.119587pt;}
.x6_c00488{left:477.758787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.364746;font-style:normal;font-weight:normal;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_2625530ea58c026d6b9e46f5.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_087e5e3f1e4b54b3262574e2.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00489{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{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);}
.m1_c00489{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611111,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(1.116071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.116071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.116071,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls5_c00489{letter-spacing:-9.154883px;}
.lse_c00489{letter-spacing:-7.628258px;}
.ls10_c00489{letter-spacing:-6.101633px;}
.ls4_c00489{letter-spacing:-2.252250px;}
.ls3_c00489{letter-spacing:-0.930750px;}
.ls2_c00489{letter-spacing:0.000000px;}
.lsa_c00489{letter-spacing:0.761100px;}
.ls9_c00489{letter-spacing:1.526625px;}
.ls1_c00489{letter-spacing:2.287725px;}
.lsc_c00489{letter-spacing:2.454165px;}
.ls0_c00489{letter-spacing:3.053250px;}
.ls8_c00489{letter-spacing:3.814350px;}
.ls6_c00489{letter-spacing:4.579875px;}
.lsb_c00489{letter-spacing:5.488950px;}
.lsf_c00489{letter-spacing:6.265350px;}
.ls7_c00489{letter-spacing:7.097100px;}
.lsd_c00489{letter-spacing:8.359650px;}
.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;}
._0_c00489{margin-left:-8.240265px;}
._2_c00489{margin-left:-5.633300px;}
._3_c00489{margin-left:-3.336725px;}
._1_c00489{width:1.056508px;}
.fc0_c00489{color:transparent;}
.fs7_c00489{font-size:13.500000px;}
.fs6_c00489{font-size:32.250000px;}
.fs5_c00489{font-size:42.000000px;}
.fs3_c00489{font-size:44.250000px;}
.fs0_c00489{font-size:54.750000px;}
.fs1_c00489{font-size:56.250000px;}
.fs2_c00489{font-size:58.500000px;}
.fs4_c00489{font-size:61.500000px;}
.y0_c00489{bottom:0.000000px;}
.y33_c00489{bottom:181.800315px;}
.y32_c00489{bottom:200.879820px;}
.y31_c00489{bottom:219.600945px;}
.y30_c00489{bottom:239.040000px;}
.y2f_c00489{bottom:258.480945px;}
.y2e_c00489{bottom:277.920000px;}
.y2d_c00489{bottom:296.999700px;}
.y2c_c00489{bottom:316.440945px;}
.y2b_c00489{bottom:335.880000px;}
.y2a_c00489{bottom:355.322070px;}
.y29_c00489{bottom:374.401560px;}
.y28_c00489{bottom:393.481065px;}
.y27_c00489{bottom:412.199850px;}
.y26_c00489{bottom:431.640750px;}
.y25_c00489{bottom:434.519670px;}
.y24_c00489{bottom:450.729600px;}
.y23_c00489{bottom:470.168655px;}
.y22_c00489{bottom:489.248160px;}
.y21_c00489{bottom:508.689405px;}
.y20_c00489{bottom:528.128445px;}
.y1f_c00489{bottom:547.207950px;}
.y1e_c00489{bottom:566.287440px;}
.y1d_c00489{bottom:585.366945px;}
.y1c_c00489{bottom:604.446465px;}
.y1b_c00489{bottom:623.887710px;}
.y1a_c00489{bottom:642.967215px;}
.y19_c00489{bottom:662.046705px;}
.y18_c00489{bottom:681.126210px;}
.y17_c00489{bottom:700.565250px;}
.y16_c00489{bottom:719.644770px;}
.y15_c00489{bottom:739.444380px;}
.y14_c00489{bottom:758.165520px;}
.y13_c00489{bottom:777.245025px;}
.y12_c00489{bottom:795.963795px;}
.y11_c00489{bottom:815.763405px;}
.y10_c00489{bottom:834.842910px;}
.yf_c00489{bottom:853.922400px;}
.ye_c00489{bottom:873.001920px;}
.yd_c00489{bottom:892.443150px;}
.yc_c00489{bottom:911.522670px;}
.yb_c00489{bottom:931.322280px;}
.ya_c00489{bottom:950.401770px;}
.y9_c00489{bottom:969.840825px;}
.y8_c00489{bottom:988.561965px;}
.y7_c00489{bottom:1007.641455px;}
.y6_c00489{bottom:1026.720975px;}
.y5_c00489{bottom:1045.800480px;}
.y4_c00489{bottom:1064.879970px;}
.y3_c00489{bottom:1084.679790px;}
.y2_c00489{bottom:1104.121035px;}
.y1_c00489{bottom:1142.999355px;}
.h8_c00489{height:14.080078px;}
.h7_c00489{height:33.635742px;}
.h6_c00489{height:43.804688px;}
.h4_c00489{height:46.151367px;}
.h1_c00489{height:54.108398px;}
.h2_c00489{height:55.590820px;}
.h3_c00489{height:61.013672px;}
.h5_c00489{height:64.142578px;}
.h0_c00489{height:1263.000000px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:343.798515px;}
.x2_c00489{left:421.919535px;}
.x3_c00489{left:447.479235px;}
.x4_c00489{left:460.799565px;}
.x5_c00489{left:544.319235px;}
.x6_c00489{left:583.199385px;}
.xa_c00489{left:640.798620px;}
.x9_c00489{left:641.879730px;}
.x7_c00489{left:642.958920px;}
.xb_c00489{left:653.759535px;}
.x8_c00489{left:655.918350px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls5_c00489{letter-spacing:-8.137673pt;}
.lse_c00489{letter-spacing:-6.780673pt;}
.ls10_c00489{letter-spacing:-5.423673pt;}
.ls4_c00489{letter-spacing:-2.002000pt;}
.ls3_c00489{letter-spacing:-0.827333pt;}
.ls2_c00489{letter-spacing:0.000000pt;}
.lsa_c00489{letter-spacing:0.676533pt;}
.ls9_c00489{letter-spacing:1.357000pt;}
.ls1_c00489{letter-spacing:2.033533pt;}
.lsc_c00489{letter-spacing:2.181480pt;}
.ls0_c00489{letter-spacing:2.714000pt;}
.ls8_c00489{letter-spacing:3.390533pt;}
.ls6_c00489{letter-spacing:4.071000pt;}
.lsb_c00489{letter-spacing:4.879067pt;}
.lsf_c00489{letter-spacing:5.569200pt;}
.ls7_c00489{letter-spacing:6.308533pt;}
.lsd_c00489{letter-spacing:7.430800pt;}
.ws0_c00489{word-spacing:0.000000pt;}
._0_c00489{margin-left:-7.324680pt;}
._2_c00489{margin-left:-5.007377pt;}
._3_c00489{margin-left:-2.965977pt;}
._1_c00489{width:0.939118pt;}
.fs7_c00489{font-size:12.000000pt;}
.fs6_c00489{font-size:28.666667pt;}
.fs5_c00489{font-size:37.333333pt;}
.fs3_c00489{font-size:39.333333pt;}
.fs0_c00489{font-size:48.666667pt;}
.fs1_c00489{font-size:50.000000pt;}
.fs2_c00489{font-size:52.000000pt;}
.fs4_c00489{font-size:54.666667pt;}
.y0_c00489{bottom:0.000000pt;}
.y33_c00489{bottom:161.600280pt;}
.y32_c00489{bottom:178.559840pt;}
.y31_c00489{bottom:195.200840pt;}
.y30_c00489{bottom:212.480000pt;}
.y2f_c00489{bottom:229.760840pt;}
.y2e_c00489{bottom:247.040000pt;}
.y2d_c00489{bottom:263.999733pt;}
.y2c_c00489{bottom:281.280840pt;}
.y2b_c00489{bottom:298.560000pt;}
.y2a_c00489{bottom:315.841840pt;}
.y29_c00489{bottom:332.801387pt;}
.y28_c00489{bottom:349.760947pt;}
.y27_c00489{bottom:366.399867pt;}
.y26_c00489{bottom:383.680667pt;}
.y25_c00489{bottom:386.239707pt;}
.y24_c00489{bottom:400.648533pt;}
.y23_c00489{bottom:417.927693pt;}
.y22_c00489{bottom:434.887253pt;}
.y21_c00489{bottom:452.168360pt;}
.y20_c00489{bottom:469.447507pt;}
.y1f_c00489{bottom:486.407067pt;}
.y1e_c00489{bottom:503.366613pt;}
.y1d_c00489{bottom:520.326173pt;}
.y1c_c00489{bottom:537.285747pt;}
.y1b_c00489{bottom:554.566853pt;}
.y1a_c00489{bottom:571.526413pt;}
.y19_c00489{bottom:588.485960pt;}
.y18_c00489{bottom:605.445520pt;}
.y17_c00489{bottom:622.724667pt;}
.y16_c00489{bottom:639.684240pt;}
.y15_c00489{bottom:657.283893pt;}
.y14_c00489{bottom:673.924907pt;}
.y13_c00489{bottom:690.884467pt;}
.y12_c00489{bottom:707.523373pt;}
.y11_c00489{bottom:725.123027pt;}
.y10_c00489{bottom:742.082587pt;}
.yf_c00489{bottom:759.042133pt;}
.ye_c00489{bottom:776.001707pt;}
.yd_c00489{bottom:793.282800pt;}
.yc_c00489{bottom:810.242373pt;}
.yb_c00489{bottom:827.842027pt;}
.ya_c00489{bottom:844.801573pt;}
.y9_c00489{bottom:862.080733pt;}
.y8_c00489{bottom:878.721747pt;}
.y7_c00489{bottom:895.681293pt;}
.y6_c00489{bottom:912.640867pt;}
.y5_c00489{bottom:929.600427pt;}
.y4_c00489{bottom:946.559973pt;}
.y3_c00489{bottom:964.159813pt;}
.y2_c00489{bottom:981.440920pt;}
.y1_c00489{bottom:1015.999427pt;}
.h8_c00489{height:12.515625pt;}
.h7_c00489{height:29.898438pt;}
.h6_c00489{height:38.937500pt;}
.h4_c00489{height:41.023438pt;}
.h1_c00489{height:48.096354pt;}
.h2_c00489{height:49.414063pt;}
.h3_c00489{height:54.234375pt;}
.h5_c00489{height:57.015625pt;}
.h0_c00489{height:1122.666667pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:305.598680pt;}
.x2_c00489{left:375.039587pt;}
.x3_c00489{left:397.759320pt;}
.x4_c00489{left:409.599613pt;}
.x5_c00489{left:483.839320pt;}
.x6_c00489{left:518.399453pt;}
.xa_c00489{left:569.598773pt;}
.x9_c00489{left:570.559760pt;}
.x7_c00489{left:571.519040pt;}
.xb_c00489{left:581.119587pt;}
.x8_c00489{left:583.038533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0d39ff424b09dc115b73f6.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.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_e1b81109503e4ee3bd5c1944.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00490{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls1_c00490{letter-spacing:-3.093750px;}
.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;}
._0_c00490{margin-left:-3.175500px;}
.fc0_c00490{color:transparent;}
.fs2_c00490{font-size:46.500000px;}
.fs3_c00490{font-size:49.500000px;}
.fs0_c00490{font-size:54.750000px;}
.fs1_c00490{font-size:58.500000px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:1144.439670px;}
.h3_c00490{height:48.498047px;}
.h4_c00490{height:49.886719px;}
.h1_c00490{height:54.108398px;}
.h2_c00490{height:57.814453px;}
.h0_c00490{height:1263.000000px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:332.638530px;}
.x2_c00490{left:410.759535px;}
.x3_c00490{left:436.319235px;}
.x4_c00490{left:449.998950px;}
.x5_c00490{left:488.158770px;}
.x6_c00490{left:533.518620px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls1_c00490{letter-spacing:-2.750000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
._0_c00490{margin-left:-2.822667pt;}
.fs2_c00490{font-size:41.333333pt;}
.fs3_c00490{font-size:44.000000pt;}
.fs0_c00490{font-size:48.666667pt;}
.fs1_c00490{font-size:52.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:1017.279707pt;}
.h3_c00490{height:43.109375pt;}
.h4_c00490{height:44.343750pt;}
.h1_c00490{height:48.096354pt;}
.h2_c00490{height:51.390625pt;}
.h0_c00490{height:1122.666667pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:295.678693pt;}
.x2_c00490{left:365.119587pt;}
.x3_c00490{left:387.839320pt;}
.x4_c00490{left:399.999067pt;}
.x5_c00490{left:433.918907pt;}
.x6_c00490{left:474.238773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52ac119455e4a5a3b58a95eb.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.364746;font-style:normal;font-weight:normal;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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_febc4e0e3c5e3016a6aac66c.woff2')format("woff");}.ff3_c00491{font-family:ff3_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;}
.m5_c00491{transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls2_c00491{letter-spacing:-3.960000px;}
.ls3_c00491{letter-spacing:-1.796348px;}
.ls0_c00491{letter-spacing:-0.926295px;}
.ls1_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;}
.fs2_c00491{font-size:48.000000px;}
.fs3_c00491{font-size:49.500000px;}
.fs4_c00491{font-size:50.250000px;}
.fs5_c00491{font-size:54.750000px;}
.fs0_c00491{font-size:55.500000px;}
.fs1_c00491{font-size:56.250000px;}
.y0_c00491{bottom:0.000000px;}
.y2_c00491{bottom:1140.481290px;}
.y1_c00491{bottom:1140.840540px;}
.h4_c00491{height:49.886719px;}
.h3_c00491{height:50.062500px;}
.h5_c00491{height:50.642578px;}
.h6_c00491{height:54.108398px;}
.h1_c00491{height:54.849609px;}
.h2_c00491{height:55.590820px;}
.h0_c00491{height:1263.000000px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:339.120000px;}
.x2_c00491{left:417.239220px;}
.x3_c00491{left:442.798920px;}
.x4_c00491{left:456.478635px;}
.x5_c00491{left:494.638500px;}
.x6_c00491{left:540.000000px;}
.x7_c00491{left:578.878320px;}
.x8_c00491{left:624.599070px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls2_c00491{letter-spacing:-3.520000pt;}
.ls3_c00491{letter-spacing:-1.596753pt;}
.ls0_c00491{letter-spacing:-0.823373pt;}
.ls1_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
.fs2_c00491{font-size:42.666667pt;}
.fs3_c00491{font-size:44.000000pt;}
.fs4_c00491{font-size:44.666667pt;}
.fs5_c00491{font-size:48.666667pt;}
.fs0_c00491{font-size:49.333333pt;}
.fs1_c00491{font-size:50.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y2_c00491{bottom:1013.761147pt;}
.y1_c00491{bottom:1014.080480pt;}
.h4_c00491{height:44.343750pt;}
.h3_c00491{height:44.500000pt;}
.h5_c00491{height:45.015625pt;}
.h6_c00491{height:48.096354pt;}
.h1_c00491{height:48.755208pt;}
.h2_c00491{height:49.414063pt;}
.h0_c00491{height:1122.666667pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:301.440000pt;}
.x2_c00491{left:370.879307pt;}
.x3_c00491{left:393.599040pt;}
.x4_c00491{left:405.758787pt;}
.x5_c00491{left:439.678667pt;}
.x6_c00491{left:480.000000pt;}
.x7_c00491{left:514.558507pt;}
.x8_c00491{left:555.199173pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.364746;font-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_c00492{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_c00492{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls1_c00492{letter-spacing:-0.888743px;}
.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;}
._0_c00492{margin-left:-7.788743px;}
.fc0_c00492{color:transparent;}
.fs0_c00492{font-size:51.750000px;}
.fs2_c00492{font-size:53.250000px;}
.fs1_c00492{font-size:56.250000px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:1140.479640px;}
.h1_c00492{height:51.143555px;}
.h3_c00492{height:52.625977px;}
.h2_c00492{height:55.590820px;}
.h0_c00492{height:1263.000000px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:331.918350px;}
.x2_c00492{left:410.039385px;}
.x3_c00492{left:435.958335px;}
.x4_c00492{left:449.278800px;}
.x5_c00492{left:532.798515px;}
.x6_c00492{left:571.678530px;}
.x7_c00492{left:617.399235px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls1_c00492{letter-spacing:-0.789993pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
._0_c00492{margin-left:-6.923327pt;}
.fs0_c00492{font-size:46.000000pt;}
.fs2_c00492{font-size:47.333333pt;}
.fs1_c00492{font-size:50.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:1013.759680pt;}
.h1_c00492{height:45.460938pt;}
.h3_c00492{height:46.778646pt;}
.h2_c00492{height:49.414063pt;}
.h0_c00492{height:1122.666667pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:295.038533pt;}
.x2_c00492{left:364.479453pt;}
.x3_c00492{left:387.518520pt;}
.x4_c00492{left:399.358933pt;}
.x5_c00492{left:473.598680pt;}
.x6_c00492{left:508.158693pt;}
.x7_c00492{left:548.799320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c13019890dde0abb5f80ffe9.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:-2.463818px;}
.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;}
.fs0_c00493{font-size:51.750000px;}
.y0_c00493{bottom:0.000000px;}
.y1_c00493{bottom:1139.759490px;}
.h1_c00493{height:51.143555px;}
.h0_c00493{height:1263.000000px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:342.719100px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:-2.190060pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fs0_c00493{font-size:46.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y1_c00493{bottom:1013.119547pt;}
.h1_c00493{height:45.460938pt;}
.h0_c00493{height:1122.666667pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:304.639200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c13019890dde0abb5f80ffe9.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.364746;font-style:normal;font-weight:normal;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_8e97b3468f4c3a2a329ed901.woff2')format("woff");}.ff2_c00494{font-family:ff2_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:ff3_c00494;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.432129;font-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_c00494{transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164179,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{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_c00494{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls4_c00494{letter-spacing:-2.001600px;}
.ls2_c00494{letter-spacing:-0.910200px;}
.ls3_c00494{letter-spacing:0.000000px;}
.ls1_c00494{letter-spacing:0.998400px;}
.ls0_c00494{letter-spacing:2.001600px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:0.000000px;}
._1_c00494{width:18.038720px;}
._0_c00494{width:20.788720px;}
._2_c00494{width:22.142160px;}
.fc0_c00494{color:transparent;}
.fs2_c00494{font-size:46.500000px;}
.fs3_c00494{font-size:48.000000px;}
.fs1_c00494{font-size:50.250000px;}
.fs0_c00494{font-size:55.500000px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:1142.279205px;}
.y2_c00494{bottom:1142.638545px;}
.h4_c00494{height:48.375000px;}
.h3_c00494{height:48.498047px;}
.h2_c00494{height:50.642578px;}
.h1_c00494{height:54.849609px;}
.h0_c00494{height:1263.000000px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:333.719535px;}
.x2_c00494{left:412.199850px;}
.x3_c00494{left:437.398635px;}
.x4_c00494{left:451.439250px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls4_c00494{letter-spacing:-1.779200pt;}
.ls2_c00494{letter-spacing:-0.809067pt;}
.ls3_c00494{letter-spacing:0.000000pt;}
.ls1_c00494{letter-spacing:0.887467pt;}
.ls0_c00494{letter-spacing:1.779200pt;}
.ws0_c00494{word-spacing:0.000000pt;}
._1_c00494{width:16.034418pt;}
._0_c00494{width:18.478862pt;}
._2_c00494{width:19.681920pt;}
.fs2_c00494{font-size:41.333333pt;}
.fs3_c00494{font-size:42.666667pt;}
.fs1_c00494{font-size:44.666667pt;}
.fs0_c00494{font-size:49.333333pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:1015.359293pt;}
.y2_c00494{bottom:1015.678707pt;}
.h4_c00494{height:43.000000pt;}
.h3_c00494{height:43.109375pt;}
.h2_c00494{height:45.015625pt;}
.h1_c00494{height:48.755208pt;}
.h0_c00494{height:1122.666667pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:296.639587pt;}
.x2_c00494{left:366.399867pt;}
.x3_c00494{left:388.798787pt;}
.x4_c00494{left:401.279333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05fed7595ba1ea9f79013baa.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.364746;font-style:normal;font-weight:normal;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_3e6258d8cf2fb5b6cc49954a.woff2')format("woff");}.ff2_c00495{font-family:ff2_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;}
.m2_c00495{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls3_c00495{letter-spacing:-3.921900px;}
.ls2_c00495{letter-spacing:-1.796348px;}
.ls0_c00495{letter-spacing:-0.897900px;}
.ls1_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;}
._0_c00495{margin-left:-1.915083px;}
._1_c00495{width:1.462516px;}
.fc0_c00495{color:transparent;}
.fs3_c00495{font-size:51.000000px;}
.fs0_c00495{font-size:54.750000px;}
.fs1_c00495{font-size:56.250000px;}
.fs2_c00495{font-size:58.500000px;}
.y0_c00495{bottom:0.000000px;}
.y2_c00495{bottom:1145.879970px;}
.y1_c00495{bottom:1146.240870px;}
.h4_c00495{height:50.053711px;}
.h1_c00495{height:54.108398px;}
.h2_c00495{height:55.590820px;}
.h3_c00495{height:57.814453px;}
.h0_c00495{height:1263.000000px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:338.038950px;}
.x2_c00495{left:416.159820px;}
.x3_c00495{left:441.719565px;}
.x4_c00495{left:455.399235px;}
.x5_c00495{left:493.918350px;}
.x6_c00495{left:538.918950px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls3_c00495{letter-spacing:-3.486133pt;}
.ls2_c00495{letter-spacing:-1.596753pt;}
.ls0_c00495{letter-spacing:-0.798133pt;}
.ls1_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
._0_c00495{margin-left:-1.702296pt;}
._1_c00495{width:1.300014pt;}
.fs3_c00495{font-size:45.333333pt;}
.fs0_c00495{font-size:48.666667pt;}
.fs1_c00495{font-size:50.000000pt;}
.fs2_c00495{font-size:52.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y2_c00495{bottom:1018.559973pt;}
.y1_c00495{bottom:1018.880773pt;}
.h4_c00495{height:44.492188pt;}
.h1_c00495{height:48.096354pt;}
.h2_c00495{height:49.414063pt;}
.h3_c00495{height:51.390625pt;}
.h0_c00495{height:1122.666667pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:300.479067pt;}
.x2_c00495{left:369.919840pt;}
.x3_c00495{left:392.639613pt;}
.x4_c00495{left:404.799320pt;}
.x5_c00495{left:439.038533pt;}
.x6_c00495{left:479.039067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.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_e1295e40345a5caf7f2b37eb.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;}
.m1_c00496{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.185606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185606,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188462,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{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_c00496{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls2_c00496{letter-spacing:-2.983500px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls3_c00496{letter-spacing:1.009800px;}
.ls0_c00496{letter-spacing:2.983500px;}
.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;}
._0_c00496{width:22.625054px;}
.fc0_c00496{color:transparent;}
.fs2_c00496{font-size:46.500000px;}
.fs0_c00496{font-size:48.750000px;}
.fs3_c00496{font-size:49.500000px;}
.fs1_c00496{font-size:50.250000px;}
.y0_c00496{bottom:0.000000px;}
.y2_c00496{bottom:1143.360255px;}
.y1_c00496{bottom:1143.719520px;}
.h3_c00496{height:48.498047px;}
.h1_c00496{height:49.130859px;}
.h4_c00496{height:49.886719px;}
.h2_c00496{height:50.642578px;}
.h0_c00496{height:1263.000000px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:336.959385px;}
.x2_c00496{left:415.078815px;}
.x3_c00496{left:440.638500px;}
.x4_c00496{left:454.319820px;}
.x5_c00496{left:492.838950px;}
.x6_c00496{left:538.198785px;}
.x7_c00496{left:577.078770px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls2_c00496{letter-spacing:-2.652000pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls3_c00496{letter-spacing:0.897600pt;}
.ls0_c00496{letter-spacing:2.652000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
._0_c00496{width:20.111159pt;}
.fs2_c00496{font-size:41.333333pt;}
.fs0_c00496{font-size:43.333333pt;}
.fs3_c00496{font-size:44.000000pt;}
.fs1_c00496{font-size:44.666667pt;}
.y0_c00496{bottom:0.000000pt;}
.y2_c00496{bottom:1016.320227pt;}
.y1_c00496{bottom:1016.639573pt;}
.h3_c00496{height:43.109375pt;}
.h1_c00496{height:43.671875pt;}
.h4_c00496{height:44.343750pt;}
.h2_c00496{height:45.015625pt;}
.h0_c00496{height:1122.666667pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:299.519453pt;}
.x2_c00496{left:368.958947pt;}
.x3_c00496{left:391.678667pt;}
.x4_c00496{left:403.839840pt;}
.x5_c00496{left:438.079067pt;}
.x6_c00496{left:478.398920pt;}
.x7_c00496{left:512.958907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e97b3468f4c3a2a329ed901.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_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00497{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls3_c00497{letter-spacing:-2.937600px;}
.ls2_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:0.979200px;}
.ls1_c00497{letter-spacing:2.937600px;}
.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;}
._0_c00497{width:18.773055px;}
._2_c00497{width:19.944176px;}
._1_c00497{width:21.528098px;}
.fc0_c00497{color:transparent;}
.fs2_c00497{font-size:46.500000px;}
.fs0_c00497{font-size:48.000000px;}
.fs1_c00497{font-size:50.250000px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:1138.680090px;}
.h1_c00497{height:48.375000px;}
.h3_c00497{height:48.498047px;}
.h2_c00497{height:50.642578px;}
.h0_c00497{height:1263.000000px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:334.078785px;}
.x2_c00497{left:412.199850px;}
.x3_c00497{left:437.759535px;}
.x4_c00497{left:451.439250px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls3_c00497{letter-spacing:-2.611200pt;}
.ls2_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.870400pt;}
.ls1_c00497{letter-spacing:2.611200pt;}
.ws0_c00497{word-spacing:0.000000pt;}
._0_c00497{width:16.687160pt;}
._2_c00497{width:17.728157pt;}
._1_c00497{width:19.136087pt;}
.fs2_c00497{font-size:41.333333pt;}
.fs0_c00497{font-size:42.666667pt;}
.fs1_c00497{font-size:44.666667pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:1012.160080pt;}
.h1_c00497{height:43.000000pt;}
.h3_c00497{height:43.109375pt;}
.h2_c00497{height:45.015625pt;}
.h0_c00497{height:1122.666667pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:296.958920pt;}
.x2_c00497{left:366.399867pt;}
.x3_c00497{left:389.119587pt;}
.x4_c00497{left:401.279333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bc084136d1235a24e559ba4.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_3792150fff190cc7791bf3b7.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_2c9f52d0a48e9c721e94c9d5.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_358e9aa7228781dc86b5dcd5.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md_c00498{transform:matrix(0.144886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144886,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.mf_c00498{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_c00498{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m6_c00498{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m8_c00498{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286932,0.000000,0.000000,0.250000,0,0);}
.m10_c00498{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.436620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436620,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.lsa_c00498{letter-spacing:-5.009100px;}
.ls3_c00498{letter-spacing:-3.896100px;}
.ls8_c00498{letter-spacing:-3.171900px;}
.ls2_c00498{letter-spacing:-3.118500px;}
.lsc_c00498{letter-spacing:-2.590800px;}
.ls4_c00498{letter-spacing:-2.331990px;}
.lsf_c00498{letter-spacing:-1.729410px;}
.ls7_c00498{letter-spacing:-1.555200px;}
.lsb_c00498{letter-spacing:-0.901260px;}
.ls9_c00498{letter-spacing:-0.867000px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls6_c00498{letter-spacing:0.773393px;}
.ls11_c00498{letter-spacing:0.867000px;}
.lse_c00498{letter-spacing:0.953175px;}
.ls5_c00498{letter-spacing:3.927690px;}
.lsd_c00498{letter-spacing:4.593908px;}
.ls12_c00498{letter-spacing:5.880600px;}
.ls10_c00498{letter-spacing:12.187125px;}
.ls0_c00498{letter-spacing:19.879800px;}
.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;}
._b_c00498{margin-left:-92.100744px;}
._13_c00498{margin-left:-38.607035px;}
._e_c00498{margin-left:-36.414000px;}
._12_c00498{margin-left:-34.027269px;}
._a_c00498{margin-left:-31.635490px;}
._4_c00498{margin-left:-24.123918px;}
._7_c00498{margin-left:-14.219180px;}
._f_c00498{margin-left:-6.747144px;}
._8_c00498{margin-left:-5.099931px;}
._6_c00498{margin-left:-3.207986px;}
._10_c00498{margin-left:-1.973510px;}
._d_c00498{width:1.688014px;}
._11_c00498{width:2.968027px;}
._5_c00498{width:6.828612px;}
._2_c00498{width:21.467056px;}
._3_c00498{width:24.653347px;}
._0_c00498{width:27.758762px;}
._1_c00498{width:30.067013px;}
._c_c00498{width:91.698311px;}
._14_c00498{width:290.750689px;}
._9_c00498{width:442.435149px;}
.fc0_c00498{color:transparent;}
.fsc_c00498{font-size:13.500000px;}
.fsb_c00498{font-size:33.750000px;}
.fs5_c00498{font-size:44.250000px;}
.fs4_c00498{font-size:51.000000px;}
.fsa_c00498{font-size:51.750000px;}
.fs8_c00498{font-size:53.250000px;}
.fs6_c00498{font-size:54.000000px;}
.fs9_c00498{font-size:66.000000px;}
.fs7_c00498{font-size:68.250000px;}
.fs1_c00498{font-size:81.000000px;}
.fs3_c00498{font-size:81.750000px;}
.fs0_c00498{font-size:82.500000px;}
.fs2_c00498{font-size:83.250000px;}
.y0_c00498{bottom:0.000000px;}
.y53_c00498{bottom:177.474540px;}
.y54_c00498{bottom:177.479250px;}
.y52_c00498{bottom:196.554975px;}
.y51_c00498{bottom:215.635440px;}
.y50_c00498{bottom:234.715875px;}
.y30_c00498{bottom:234.718260px;}
.y4f_c00498{bottom:254.157030px;}
.y2f_c00498{bottom:254.159385px;}
.y4e_c00498{bottom:272.876580px;}
.y2d_c00498{bottom:272.876775px;}
.y2e_c00498{bottom:272.878950px;}
.y2c_c00498{bottom:292.317930px;}
.y4d_c00498{bottom:292.676085px;}
.y2b_c00498{bottom:311.756535px;}
.y2a_c00498{bottom:330.836970px;}
.y29_c00498{bottom:349.917435px;}
.y28_c00498{bottom:368.997870px;}
.y27_c00498{bottom:388.078335px;}
.y26_c00498{bottom:407.158770px;}
.y24_c00498{bottom:426.236805px;}
.y25_c00498{bottom:426.238770px;}
.y4c_c00498{bottom:429.119385px;}
.y4b_c00498{bottom:445.676805px;}
.y23_c00498{bottom:445.677960px;}
.y4a_c00498{bottom:465.115425px;}
.y22_c00498{bottom:465.116565px;}
.y49_c00498{bottom:484.556580px;}
.y21_c00498{bottom:484.557705px;}
.y48_c00498{bottom:503.637015px;}
.y20_c00498{bottom:503.638155px;}
.y47_c00498{bottom:523.075635px;}
.y1f_c00498{bottom:523.076775px;}
.y46_c00498{bottom:542.156085px;}
.y1e_c00498{bottom:542.157210px;}
.y45_c00498{bottom:561.597225px;}
.y1d_c00498{bottom:561.956730px;}
.y1c_c00498{bottom:580.316760px;}
.y44_c00498{bottom:580.316775px;}
.y1b_c00498{bottom:599.757885px;}
.y43_c00498{bottom:599.757930px;}
.y1a_c00498{bottom:618.838350px;}
.y42_c00498{bottom:618.838365px;}
.y19_c00498{bottom:637.918785px;}
.y41_c00498{bottom:637.918830px;}
.y18_c00498{bottom:656.639715px;}
.y40_c00498{bottom:656.639745px;}
.y17_c00498{bottom:675.720150px;}
.y3f_c00498{bottom:675.720195px;}
.y16_c00498{bottom:694.800105px;}
.y3e_c00498{bottom:694.800630px;}
.y15_c00498{bottom:694.800825px;}
.y3d_c00498{bottom:714.239250px;}
.y14_c00498{bottom:714.239430px;}
.y3c_c00498{bottom:733.319715px;}
.y13_c00498{bottom:733.319895px;}
.y3b_c00498{bottom:753.119205px;}
.y12_c00498{bottom:753.119385px;}
.y11_c00498{bottom:772.559760px;}
.y3a_c00498{bottom:772.560360px;}
.y10_c00498{bottom:791.640195px;}
.y39_c00498{bottom:791.640795px;}
.yf_c00498{bottom:811.078815px;}
.y38_c00498{bottom:811.079400px;}
.ye_c00498{bottom:830.878320px;}
.y37_c00498{bottom:830.879520px;}
.yd_c00498{bottom:849.599235px;}
.y36_c00498{bottom:849.600135px;}
.yc_c00498{bottom:868.679700px;}
.y35_c00498{bottom:868.680090px;}
.y34_c00498{bottom:887.398365px;}
.yb_c00498{bottom:887.760135px;}
.y33_c00498{bottom:906.839520px;}
.y9_c00498{bottom:907.199040px;}
.ya_c00498{bottom:907.199340px;}
.y32_c00498{bottom:925.559070px;}
.y8_c00498{bottom:925.919955px;}
.y6_c00498{bottom:945.358560px;}
.y7_c00498{bottom:945.359250px;}
.y5_c00498{bottom:964.439010px;}
.y31_c00498{bottom:964.439025px;}
.y4_c00498{bottom:1003.318770px;}
.y3_c00498{bottom:1041.119940px;}
.y2_c00498{bottom:1104.119385px;}
.y1_c00498{bottom:1133.639100px;}
.he_c00498{height:14.080078px;}
.hd_c00498{height:33.354492px;}
.h6_c00498{height:46.151367px;}
.h5_c00498{height:50.402344px;}
.hc_c00498{height:51.143555px;}
.h9_c00498{height:52.625977px;}
.h7_c00498{height:53.367188px;}
.ha_c00498{height:56.320312px;}
.hb_c00498{height:65.226562px;}
.h8_c00498{height:67.450195px;}
.h2_c00498{height:81.632812px;}
.h4_c00498{height:82.388672px;}
.h1_c00498{height:83.144531px;}
.h3_c00498{height:83.900391px;}
.h0_c00498{height:1263.000000px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:140.759565px;}
.x2_c00498{left:196.918350px;}
.x7_c00498{left:310.318800px;}
.x3_c00498{left:359.279250px;}
.xb_c00498{left:380.878950px;}
.x8_c00498{left:381.957315px;}
.x4_c00498{left:392.038920px;}
.xc_c00498{left:406.799565px;}
.x5_c00498{left:418.318770px;}
.xa_c00498{left:420.479235px;}
.xe_c00498{left:426.238770px;}
.xf_c00498{left:428.399235px;}
.x10_c00498{left:432.718500px;}
.x12_c00498{left:439.199850px;}
.x9_c00498{left:446.038920px;}
.xd_c00498{left:478.439250px;}
.x11_c00498{left:517.319040px;}
.x6_c00498{left:653.759535px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.lsa_c00498{letter-spacing:-4.452533pt;}
.ls3_c00498{letter-spacing:-3.463200pt;}
.ls8_c00498{letter-spacing:-2.819467pt;}
.ls2_c00498{letter-spacing:-2.772000pt;}
.lsc_c00498{letter-spacing:-2.302933pt;}
.ls4_c00498{letter-spacing:-2.072880pt;}
.lsf_c00498{letter-spacing:-1.537253pt;}
.ls7_c00498{letter-spacing:-1.382400pt;}
.lsb_c00498{letter-spacing:-0.801120pt;}
.ls9_c00498{letter-spacing:-0.770667pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls6_c00498{letter-spacing:0.687460pt;}
.ls11_c00498{letter-spacing:0.770667pt;}
.lse_c00498{letter-spacing:0.847267pt;}
.ls5_c00498{letter-spacing:3.491280pt;}
.lsd_c00498{letter-spacing:4.083473pt;}
.ls12_c00498{letter-spacing:5.227200pt;}
.ls10_c00498{letter-spacing:10.833000pt;}
.ls0_c00498{letter-spacing:17.670933pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._b_c00498{margin-left:-81.867328pt;}
._13_c00498{margin-left:-34.317364pt;}
._e_c00498{margin-left:-32.368000pt;}
._12_c00498{margin-left:-30.246461pt;}
._a_c00498{margin-left:-28.120436pt;}
._4_c00498{margin-left:-21.443483pt;}
._7_c00498{margin-left:-12.639271pt;}
._f_c00498{margin-left:-5.997462pt;}
._8_c00498{margin-left:-4.533272pt;}
._6_c00498{margin-left:-2.851544pt;}
._10_c00498{margin-left:-1.754231pt;}
._d_c00498{width:1.500456pt;}
._11_c00498{width:2.638246pt;}
._5_c00498{width:6.069877pt;}
._2_c00498{width:19.081828pt;}
._3_c00498{width:21.914086pt;}
._0_c00498{width:24.674455pt;}
._1_c00498{width:26.726234pt;}
._c_c00498{width:81.509610pt;}
._14_c00498{width:258.445057pt;}
._9_c00498{width:393.275688pt;}
.fsc_c00498{font-size:12.000000pt;}
.fsb_c00498{font-size:30.000000pt;}
.fs5_c00498{font-size:39.333333pt;}
.fs4_c00498{font-size:45.333333pt;}
.fsa_c00498{font-size:46.000000pt;}
.fs8_c00498{font-size:47.333333pt;}
.fs6_c00498{font-size:48.000000pt;}
.fs9_c00498{font-size:58.666667pt;}
.fs7_c00498{font-size:60.666667pt;}
.fs1_c00498{font-size:72.000000pt;}
.fs3_c00498{font-size:72.666667pt;}
.fs0_c00498{font-size:73.333333pt;}
.fs2_c00498{font-size:74.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.y53_c00498{bottom:157.755147pt;}
.y54_c00498{bottom:157.759333pt;}
.y52_c00498{bottom:174.715533pt;}
.y51_c00498{bottom:191.675947pt;}
.y50_c00498{bottom:208.636333pt;}
.y30_c00498{bottom:208.638453pt;}
.y4f_c00498{bottom:225.917360pt;}
.y2f_c00498{bottom:225.919453pt;}
.y4e_c00498{bottom:242.556960pt;}
.y2d_c00498{bottom:242.557133pt;}
.y2e_c00498{bottom:242.559067pt;}
.y2c_c00498{bottom:259.838160pt;}
.y4d_c00498{bottom:260.156520pt;}
.y2b_c00498{bottom:277.116920pt;}
.y2a_c00498{bottom:294.077307pt;}
.y29_c00498{bottom:311.037720pt;}
.y28_c00498{bottom:327.998107pt;}
.y27_c00498{bottom:344.958520pt;}
.y26_c00498{bottom:361.918907pt;}
.y24_c00498{bottom:378.877160pt;}
.y25_c00498{bottom:378.878907pt;}
.y4c_c00498{bottom:381.439453pt;}
.y4b_c00498{bottom:396.157160pt;}
.y23_c00498{bottom:396.158187pt;}
.y4a_c00498{bottom:413.435933pt;}
.y22_c00498{bottom:413.436947pt;}
.y49_c00498{bottom:430.716960pt;}
.y21_c00498{bottom:430.717960pt;}
.y48_c00498{bottom:447.677347pt;}
.y20_c00498{bottom:447.678360pt;}
.y47_c00498{bottom:464.956120pt;}
.y1f_c00498{bottom:464.957133pt;}
.y46_c00498{bottom:481.916520pt;}
.y1e_c00498{bottom:481.917520pt;}
.y45_c00498{bottom:499.197533pt;}
.y1d_c00498{bottom:499.517093pt;}
.y1c_c00498{bottom:515.837120pt;}
.y44_c00498{bottom:515.837133pt;}
.y1b_c00498{bottom:533.118120pt;}
.y43_c00498{bottom:533.118160pt;}
.y1a_c00498{bottom:550.078533pt;}
.y42_c00498{bottom:550.078547pt;}
.y19_c00498{bottom:567.038920pt;}
.y41_c00498{bottom:567.038960pt;}
.y18_c00498{bottom:583.679747pt;}
.y40_c00498{bottom:583.679773pt;}
.y17_c00498{bottom:600.640133pt;}
.y3f_c00498{bottom:600.640173pt;}
.y16_c00498{bottom:617.600093pt;}
.y3e_c00498{bottom:617.600560pt;}
.y15_c00498{bottom:617.600733pt;}
.y3d_c00498{bottom:634.879333pt;}
.y14_c00498{bottom:634.879493pt;}
.y3c_c00498{bottom:651.839747pt;}
.y13_c00498{bottom:651.839907pt;}
.y3b_c00498{bottom:669.439293pt;}
.y12_c00498{bottom:669.439453pt;}
.y11_c00498{bottom:686.719787pt;}
.y3a_c00498{bottom:686.720320pt;}
.y10_c00498{bottom:703.680173pt;}
.y39_c00498{bottom:703.680707pt;}
.yf_c00498{bottom:720.958947pt;}
.y38_c00498{bottom:720.959467pt;}
.ye_c00498{bottom:738.558507pt;}
.y37_c00498{bottom:738.559573pt;}
.yd_c00498{bottom:755.199320pt;}
.y36_c00498{bottom:755.200120pt;}
.yc_c00498{bottom:772.159733pt;}
.y35_c00498{bottom:772.160080pt;}
.y34_c00498{bottom:788.798547pt;}
.yb_c00498{bottom:789.120120pt;}
.y33_c00498{bottom:806.079573pt;}
.y9_c00498{bottom:806.399147pt;}
.ya_c00498{bottom:806.399413pt;}
.y32_c00498{bottom:822.719173pt;}
.y8_c00498{bottom:823.039960pt;}
.y6_c00498{bottom:840.318720pt;}
.y7_c00498{bottom:840.319333pt;}
.y5_c00498{bottom:857.279120pt;}
.y31_c00498{bottom:857.279133pt;}
.y4_c00498{bottom:891.838907pt;}
.y3_c00498{bottom:925.439947pt;}
.y2_c00498{bottom:981.439453pt;}
.y1_c00498{bottom:1007.679200pt;}
.he_c00498{height:12.515625pt;}
.hd_c00498{height:29.648437pt;}
.h6_c00498{height:41.023438pt;}
.h5_c00498{height:44.802083pt;}
.hc_c00498{height:45.460938pt;}
.h9_c00498{height:46.778646pt;}
.h7_c00498{height:47.437500pt;}
.ha_c00498{height:50.062500pt;}
.hb_c00498{height:57.979167pt;}
.h8_c00498{height:59.955729pt;}
.h2_c00498{height:72.562500pt;}
.h4_c00498{height:73.234375pt;}
.h1_c00498{height:73.906250pt;}
.h3_c00498{height:74.578125pt;}
.h0_c00498{height:1122.666667pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:125.119613pt;}
.x2_c00498{left:175.038533pt;}
.x7_c00498{left:275.838933pt;}
.x3_c00498{left:319.359333pt;}
.xb_c00498{left:338.559067pt;}
.x8_c00498{left:339.517613pt;}
.x4_c00498{left:348.479040pt;}
.xc_c00498{left:361.599613pt;}
.x5_c00498{left:371.838907pt;}
.xa_c00498{left:373.759320pt;}
.xe_c00498{left:378.878907pt;}
.xf_c00498{left:380.799320pt;}
.x10_c00498{left:384.638667pt;}
.x12_c00498{left:390.399867pt;}
.x9_c00498{left:396.479040pt;}
.xd_c00498{left:425.279333pt;}
.x11_c00498{left:459.839147pt;}
.x6_c00498{left:581.119587pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_103318630610720c4b2ee511.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_65b81c4d18c00b2ecd86832c.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00499;src:url('chunks/assets/font_b2091572393f9b9d3855aa91.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00499{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_c00499{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{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);}
.m12_c00499{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.m10_c00499{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.lsa_c00499{letter-spacing:-6.685800px;}
.ls12_c00499{letter-spacing:-5.846940px;}
.lsd_c00499{letter-spacing:-4.308150px;}
.ls19_c00499{letter-spacing:-4.189928px;}
.ls10_c00499{letter-spacing:-4.140300px;}
.ls17_c00499{letter-spacing:-3.929250px;}
.lse_c00499{letter-spacing:-3.916500px;}
.ls13_c00499{letter-spacing:-3.182108px;}
.ls11_c00499{letter-spacing:-2.709053px;}
.lsf_c00499{letter-spacing:-2.603505px;}
.ls6_c00499{letter-spacing:-2.392403px;}
.ls4_c00499{letter-spacing:-1.796348px;}
.ls8_c00499{letter-spacing:-1.771740px;}
.ls1c_c00499{letter-spacing:-1.729410px;}
.ls9_c00499{letter-spacing:-1.722525px;}
.ls3_c00499{letter-spacing:-0.867000px;}
.ls2_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:0.867000px;}
.ls16_c00499{letter-spacing:0.872625px;}
.ls5_c00499{letter-spacing:0.892500px;}
.ls1a_c00499{letter-spacing:0.928200px;}
.ls15_c00499{letter-spacing:0.931875px;}
.ls7_c00499{letter-spacing:0.941700px;}
.ls18_c00499{letter-spacing:0.942990px;}
.ls14_c00499{letter-spacing:0.969150px;}
.ls1b_c00499{letter-spacing:0.984593px;}
.lsc_c00499{letter-spacing:2.814000px;}
.ls1_c00499{letter-spacing:3.457290px;}
.lsb_c00499{letter-spacing:24.204090px;}
.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;}
._15_c00499{margin-left:-38.811035px;}
._d_c00499{margin-left:-37.347075px;}
._7_c00499{margin-left:-34.955227px;}
._5_c00499{margin-left:-26.978170px;}
._13_c00499{margin-left:-9.434965px;}
._2_c00499{margin-left:-5.814000px;}
._a_c00499{margin-left:-3.421875px;}
._3_c00499{margin-left:-1.784965px;}
._14_c00499{width:1.177979px;}
._b_c00499{width:2.193380px;}
._0_c00499{width:26.673035px;}
._11_c00499{width:30.869902px;}
._f_c00499{width:116.496871px;}
._4_c00499{width:134.436415px;}
._10_c00499{width:203.642896px;}
._12_c00499{width:289.093241px;}
._9_c00499{width:295.111448px;}
._c_c00499{width:325.711448px;}
._e_c00499{width:329.042077px;}
._8_c00499{width:353.710448px;}
._6_c00499{width:419.225221px;}
._1_c00499{width:440.415531px;}
.fc0_c00499{color:transparent;}
.fse_c00499{font-size:42.750000px;}
.fsd_c00499{font-size:46.500000px;}
.fs9_c00499{font-size:48.000000px;}
.fsc_c00499{font-size:48.750000px;}
.fs3_c00499{font-size:50.250000px;}
.fs0_c00499{font-size:51.000000px;}
.fsb_c00499{font-size:51.750000px;}
.fs4_c00499{font-size:52.500000px;}
.fsa_c00499{font-size:53.250000px;}
.fs2_c00499{font-size:54.000000px;}
.fs1_c00499{font-size:54.750000px;}
.fs8_c00499{font-size:55.500000px;}
.fs6_c00499{font-size:56.250000px;}
.fs7_c00499{font-size:57.750000px;}
.fs5_c00499{font-size:66.000000px;}
.y0_c00499{bottom:0.000000px;}
.y3a_c00499{bottom:182.879175px;}
.y48_c00499{bottom:183.240030px;}
.y39_c00499{bottom:202.320300px;}
.y47_c00499{bottom:202.320495px;}
.y38_c00499{bottom:221.041050px;}
.y37_c00499{bottom:221.041515px;}
.y46_c00499{bottom:221.400930px;}
.y36_c00499{bottom:240.480120px;}
.y45_c00499{bottom:240.839535px;}
.y34_c00499{bottom:259.199085px;}
.y35_c00499{bottom:259.201035px;}
.y33_c00499{bottom:278.279520px;}
.y44_c00499{bottom:278.640150px;}
.y32_c00499{bottom:297.359985px;}
.y43_c00499{bottom:297.360900px;}
.y31_c00499{bottom:316.440420px;}
.y42_c00499{bottom:316.800135px;}
.y30_c00499{bottom:335.159985px;}
.y2f_c00499{bottom:354.601140px;}
.y41_c00499{bottom:354.960000px;}
.y2e_c00499{bottom:374.039745px;}
.y40_c00499{bottom:374.400900px;}
.y2c_c00499{bottom:393.479880px;}
.y2d_c00499{bottom:393.480885px;}
.y3f_c00499{bottom:393.840135px;}
.y2b_c00499{bottom:412.560330px;}
.y3e_c00499{bottom:412.920000px;}
.y2a_c00499{bottom:431.640765px;}
.y3d_c00499{bottom:432.000570px;}
.y29_c00499{bottom:450.721230px;}
.y3c_c00499{bottom:451.080000px;}
.y28_c00499{bottom:470.520720px;}
.y3b_c00499{bottom:470.879970px;}
.y27_c00499{bottom:488.880570px;}
.y26_c00499{bottom:508.680720px;}
.y25_c00499{bottom:527.760720px;}
.y24_c00499{bottom:546.840585px;}
.y23_c00499{bottom:565.559685px;}
.y22_c00499{bottom:585.359850px;}
.y21_c00499{bottom:604.080420px;}
.y20_c00499{bottom:623.519670px;}
.y1f_c00499{bottom:642.960570px;}
.y1e_c00499{bottom:662.040570px;}
.y1d_c00499{bottom:681.120435px;}
.y1c_c00499{bottom:700.559685px;}
.y1b_c00499{bottom:719.280435px;}
.y19_c00499{bottom:738.718260px;}
.y1a_c00499{bottom:738.719520px;}
.y18_c00499{bottom:757.798695px;}
.y17_c00499{bottom:777.239850px;}
.y16_c00499{bottom:796.320285px;}
.y15_c00499{bottom:796.320870px;}
.y14_c00499{bottom:815.759490px;}
.y13_c00499{bottom:834.839265px;}
.y12_c00499{bottom:854.280390px;}
.y11_c00499{bottom:873.360255px;}
.yf_c00499{bottom:892.798080px;}
.y10_c00499{bottom:892.799565px;}
.ye_c00499{bottom:911.519010px;}
.yd_c00499{bottom:930.960135px;}
.yc_c00499{bottom:950.040600px;}
.yb_c00499{bottom:969.121035px;}
.ya_c00499{bottom:988.560240px;}
.y8_c00499{bottom:1008.000120px;}
.y9_c00499{bottom:1008.001005px;}
.y7_c00499{bottom:1027.080570px;}
.y6_c00499{bottom:1046.161005px;}
.y5_c00499{bottom:1065.240870px;}
.y3_c00499{bottom:1084.679070px;}
.y4_c00499{bottom:1084.680090px;}
.y2_c00499{bottom:1103.759535px;}
.y1_c00499{bottom:1141.560705px;}
.h11_c00499{height:44.586914px;}
.hf_c00499{height:48.178711px;}
.h10_c00499{height:48.498047px;}
.h4_c00499{height:49.661133px;}
.hc_c00499{height:50.062500px;}
.h1_c00499{height:50.402344px;}
.he_c00499{height:51.143555px;}
.ha_c00499{height:51.500244px;}
.h6_c00499{height:51.884766px;}
.hd_c00499{height:52.625977px;}
.h5_c00499{height:53.367188px;}
.h2_c00499{height:54.108398px;}
.hb_c00499{height:54.443115px;}
.h8_c00499{height:55.590820px;}
.h3_c00499{height:56.320312px;}
.h9_c00499{height:56.650269px;}
.h7_c00499{height:65.226562px;}
.h0_c00499{height:1263.000000px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:304.199850px;}
.x2_c00499{left:376.197915px;}
.xc_c00499{left:377.639745px;}
.x6_c00499{left:401.399235px;}
.x7_c00499{left:403.559685px;}
.x8_c00499{left:408.239820px;}
.x9_c00499{left:414.719565px;}
.xa_c00499{left:421.919535px;}
.xd_c00499{left:428.758530px;}
.x4_c00499{left:435.958335px;}
.xb_c00499{left:437.039385px;}
.x5_c00499{left:440.638500px;}
.x3_c00499{left:511.559685px;}
.xe_c00499{left:513.000000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.lsa_c00499{letter-spacing:-5.942933pt;}
.ls12_c00499{letter-spacing:-5.197280pt;}
.lsd_c00499{letter-spacing:-3.829467pt;}
.ls19_c00499{letter-spacing:-3.724380pt;}
.ls10_c00499{letter-spacing:-3.680267pt;}
.ls17_c00499{letter-spacing:-3.492667pt;}
.lse_c00499{letter-spacing:-3.481333pt;}
.ls13_c00499{letter-spacing:-2.828540pt;}
.ls11_c00499{letter-spacing:-2.408047pt;}
.lsf_c00499{letter-spacing:-2.314227pt;}
.ls6_c00499{letter-spacing:-2.126580pt;}
.ls4_c00499{letter-spacing:-1.596753pt;}
.ls8_c00499{letter-spacing:-1.574880pt;}
.ls1c_c00499{letter-spacing:-1.537253pt;}
.ls9_c00499{letter-spacing:-1.531133pt;}
.ls3_c00499{letter-spacing:-0.770667pt;}
.ls2_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:0.770667pt;}
.ls16_c00499{letter-spacing:0.775667pt;}
.ls5_c00499{letter-spacing:0.793333pt;}
.ls1a_c00499{letter-spacing:0.825067pt;}
.ls15_c00499{letter-spacing:0.828333pt;}
.ls7_c00499{letter-spacing:0.837067pt;}
.ls18_c00499{letter-spacing:0.838213pt;}
.ls14_c00499{letter-spacing:0.861467pt;}
.ls1b_c00499{letter-spacing:0.875193pt;}
.lsc_c00499{letter-spacing:2.501333pt;}
.ls1_c00499{letter-spacing:3.073147pt;}
.lsb_c00499{letter-spacing:21.514747pt;}
.ws0_c00499{word-spacing:0.000000pt;}
._15_c00499{margin-left:-34.498697pt;}
._d_c00499{margin-left:-33.197400pt;}
._7_c00499{margin-left:-31.071313pt;}
._5_c00499{margin-left:-23.980596pt;}
._13_c00499{margin-left:-8.386636pt;}
._2_c00499{margin-left:-5.168000pt;}
._a_c00499{margin-left:-3.041667pt;}
._3_c00499{margin-left:-1.586636pt;}
._14_c00499{width:1.047092pt;}
._b_c00499{width:1.949671pt;}
._0_c00499{width:23.709364pt;}
._11_c00499{width:27.439913pt;}
._f_c00499{width:103.552774pt;}
._4_c00499{width:119.499035pt;}
._10_c00499{width:181.015908pt;}
._12_c00499{width:256.971769pt;}
._9_c00499{width:262.321287pt;}
._c_c00499{width:289.521287pt;}
._e_c00499{width:292.481846pt;}
._8_c00499{width:314.409287pt;}
._6_c00499{width:372.644641pt;}
._1_c00499{width:391.480472pt;}
.fse_c00499{font-size:38.000000pt;}
.fsd_c00499{font-size:41.333333pt;}
.fs9_c00499{font-size:42.666667pt;}
.fsc_c00499{font-size:43.333333pt;}
.fs3_c00499{font-size:44.666667pt;}
.fs0_c00499{font-size:45.333333pt;}
.fsb_c00499{font-size:46.000000pt;}
.fs4_c00499{font-size:46.666667pt;}
.fsa_c00499{font-size:47.333333pt;}
.fs2_c00499{font-size:48.000000pt;}
.fs1_c00499{font-size:48.666667pt;}
.fs8_c00499{font-size:49.333333pt;}
.fs6_c00499{font-size:50.000000pt;}
.fs7_c00499{font-size:51.333333pt;}
.fs5_c00499{font-size:58.666667pt;}
.y0_c00499{bottom:0.000000pt;}
.y3a_c00499{bottom:162.559267pt;}
.y48_c00499{bottom:162.880027pt;}
.y39_c00499{bottom:179.840267pt;}
.y47_c00499{bottom:179.840440pt;}
.y38_c00499{bottom:196.480933pt;}
.y37_c00499{bottom:196.481347pt;}
.y46_c00499{bottom:196.800827pt;}
.y36_c00499{bottom:213.760107pt;}
.y45_c00499{bottom:214.079587pt;}
.y34_c00499{bottom:230.399187pt;}
.y35_c00499{bottom:230.400920pt;}
.y33_c00499{bottom:247.359573pt;}
.y44_c00499{bottom:247.680133pt;}
.y32_c00499{bottom:264.319987pt;}
.y43_c00499{bottom:264.320800pt;}
.y31_c00499{bottom:281.280373pt;}
.y42_c00499{bottom:281.600120pt;}
.y30_c00499{bottom:297.919987pt;}
.y2f_c00499{bottom:315.201013pt;}
.y41_c00499{bottom:315.520000pt;}
.y2e_c00499{bottom:332.479773pt;}
.y40_c00499{bottom:332.800800pt;}
.y2c_c00499{bottom:349.759893pt;}
.y2d_c00499{bottom:349.760787pt;}
.y3f_c00499{bottom:350.080120pt;}
.y2b_c00499{bottom:366.720293pt;}
.y3e_c00499{bottom:367.040000pt;}
.y2a_c00499{bottom:383.680680pt;}
.y3d_c00499{bottom:384.000507pt;}
.y29_c00499{bottom:400.641093pt;}
.y3c_c00499{bottom:400.960000pt;}
.y28_c00499{bottom:418.240640pt;}
.y3b_c00499{bottom:418.559973pt;}
.y27_c00499{bottom:434.560507pt;}
.y26_c00499{bottom:452.160640pt;}
.y25_c00499{bottom:469.120640pt;}
.y24_c00499{bottom:486.080520pt;}
.y23_c00499{bottom:502.719720pt;}
.y22_c00499{bottom:520.319867pt;}
.y21_c00499{bottom:536.960373pt;}
.y20_c00499{bottom:554.239707pt;}
.y1f_c00499{bottom:571.520507pt;}
.y1e_c00499{bottom:588.480507pt;}
.y1d_c00499{bottom:605.440387pt;}
.y1c_c00499{bottom:622.719720pt;}
.y1b_c00499{bottom:639.360387pt;}
.y19_c00499{bottom:656.638453pt;}
.y1a_c00499{bottom:656.639573pt;}
.y18_c00499{bottom:673.598840pt;}
.y17_c00499{bottom:690.879867pt;}
.y16_c00499{bottom:707.840253pt;}
.y15_c00499{bottom:707.840773pt;}
.y14_c00499{bottom:725.119547pt;}
.y13_c00499{bottom:742.079347pt;}
.y12_c00499{bottom:759.360347pt;}
.y11_c00499{bottom:776.320227pt;}
.yf_c00499{bottom:793.598293pt;}
.y10_c00499{bottom:793.599613pt;}
.ye_c00499{bottom:810.239120pt;}
.yd_c00499{bottom:827.520120pt;}
.yc_c00499{bottom:844.480533pt;}
.yb_c00499{bottom:861.440920pt;}
.ya_c00499{bottom:878.720213pt;}
.y8_c00499{bottom:896.000107pt;}
.y9_c00499{bottom:896.000893pt;}
.y7_c00499{bottom:912.960507pt;}
.y6_c00499{bottom:929.920893pt;}
.y5_c00499{bottom:946.880773pt;}
.y3_c00499{bottom:964.159173pt;}
.y4_c00499{bottom:964.160080pt;}
.y2_c00499{bottom:981.119587pt;}
.y1_c00499{bottom:1014.720627pt;}
.h11_c00499{height:39.632812pt;}
.hf_c00499{height:42.825521pt;}
.h10_c00499{height:43.109375pt;}
.h4_c00499{height:44.143229pt;}
.hc_c00499{height:44.500000pt;}
.h1_c00499{height:44.802083pt;}
.he_c00499{height:45.460938pt;}
.ha_c00499{height:45.777995pt;}
.h6_c00499{height:46.119792pt;}
.hd_c00499{height:46.778646pt;}
.h5_c00499{height:47.437500pt;}
.h2_c00499{height:48.096354pt;}
.hb_c00499{height:48.393880pt;}
.h8_c00499{height:49.414063pt;}
.h3_c00499{height:50.062500pt;}
.h9_c00499{height:50.355794pt;}
.h7_c00499{height:57.979167pt;}
.h0_c00499{height:1122.666667pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:270.399867pt;}
.x2_c00499{left:334.398147pt;}
.xc_c00499{left:335.679773pt;}
.x6_c00499{left:356.799320pt;}
.x7_c00499{left:358.719720pt;}
.x8_c00499{left:362.879840pt;}
.x9_c00499{left:368.639613pt;}
.xa_c00499{left:375.039587pt;}
.xd_c00499{left:381.118693pt;}
.x4_c00499{left:387.518520pt;}
.xb_c00499{left:388.479453pt;}
.x5_c00499{left:391.678667pt;}
.x3_c00499{left:454.719720pt;}
.xe_c00499{left:456.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_c01000 {
    display:none;
  }
  .loading-indicator_c01000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01000 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01000 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01000" -> "#page-container .classname_c01000")
 */
.pf_c01000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01000 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01000 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01000 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01000 {overflow:visible;}
  }
}
.c_c01000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01000 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01000:after { /* webkit #35443 */
  content: '';
}
.t_c01000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01000 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01000 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01000 { /* info for Javascript */
  display:none;
}
.l_c01000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_8cc8b4d0693d3786fb294d82.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_c212b0b87de1ac403633b0a1.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_043b294cca8eec8579d8ddb8.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.432129;font-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_c01000{transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);}
.mc_c01000{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.mb_c01000{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.ma_c01000{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m6_c01000{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);}
.m9_c01000{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m5_c01000{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.m0_c01000{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m8_c01000{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m3_c01000{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m4_c01000{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m1_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01000{transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433333,0.000000,0.000000,0.250000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.lsd_c01000{letter-spacing:-5.122650px;}
.ls6_c01000{letter-spacing:-4.961250px;}
.ls5_c01000{letter-spacing:-4.267950px;}
.ls1_c01000{letter-spacing:-3.412695px;}
.ls8_c01000{letter-spacing:-3.175500px;}
.lsa_c01000{letter-spacing:-2.678063px;}
.lsc_c01000{letter-spacing:-2.673870px;}
.ls0_c01000{letter-spacing:-2.564100px;}
.ls3_c01000{letter-spacing:-1.709955px;}
.ls9_c01000{letter-spacing:-0.882450px;}
.ls4_c01000{letter-spacing:-0.854700px;}
.ls2_c01000{letter-spacing:0.000000px;}
.lsb_c01000{letter-spacing:8.420003px;}
.ls7_c01000{letter-spacing:24.764100px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:0.000000px;}
._d_c01000{margin-left:-38.129866px;}
._6_c01000{margin-left:-35.242876px;}
._5_c01000{margin-left:-29.636001px;}
._c_c01000{margin-left:-15.534672px;}
._2_c01000{margin-left:-11.490174px;}
._a_c01000{margin-left:-9.818206px;}
._b_c01000{margin-left:-6.174793px;}
._8_c01000{margin-left:-4.906132px;}
._3_c01000{margin-left:-3.664332px;}
._7_c01000{margin-left:-2.651133px;}
._9_c01000{width:1.893284px;}
._0_c01000{width:21.750365px;}
._4_c01000{width:23.364544px;}
._f_c01000{width:319.169076px;}
._e_c01000{width:327.819374px;}
._10_c01000{width:410.473927px;}
._1_c01000{width:437.081370px;}
.fc0_c01000{color:transparent;}
.fs5_c01000{font-size:43.500000px;}
.fs7_c01000{font-size:45.750000px;}
.fs3_c01000{font-size:47.250000px;}
.fs4_c01000{font-size:54.750000px;}
.fs0_c01000{font-size:55.500000px;}
.fs2_c01000{font-size:56.250000px;}
.fs6_c01000{font-size:57.000000px;}
.fs1_c01000{font-size:72.000000px;}
.y0_c01000{bottom:0.000000px;}
.y5c_c01000{bottom:183.238785px;}
.y5b_c01000{bottom:202.318800px;}
.y5a_c01000{bottom:221.398635px;}
.y59_c01000{bottom:240.839535px;}
.y58_c01000{bottom:240.840885px;}
.y57_c01000{bottom:259.920495px;}
.y56_c01000{bottom:279.359385px;}
.y55_c01000{bottom:298.799535px;}
.y54_c01000{bottom:318.238785px;}
.y53_c01000{bottom:336.959385px;}
.y52_c01000{bottom:336.959745px;}
.y51_c01000{bottom:356.398635px;}
.y50_c01000{bottom:375.478635px;}
.y4f_c01000{bottom:394.199385px;}
.y4e_c01000{bottom:413.279250px;}
.y29_c01000{bottom:413.645730px;}
.y4d_c01000{bottom:432.379830px;}
.y28_c01000{bottom:432.725355px;}
.y4c_c01000{bottom:451.459425px;}
.y27_c01000{bottom:451.806225px;}
.y26_c01000{bottom:471.245115px;}
.y4b_c01000{bottom:471.259065px;}
.y4a_c01000{bottom:489.979200px;}
.y25_c01000{bottom:490.324725px;}
.y49_c01000{bottom:509.777370px;}
.y24_c01000{bottom:510.124380px;}
.y48_c01000{bottom:528.858240px;}
.y23_c01000{bottom:529.203960px;}
.y47_c01000{bottom:547.937850px;}
.y22_c01000{bottom:548.283570px;}
.y46_c01000{bottom:567.017460px;}
.y21_c01000{bottom:567.363195px;}
.y45_c01000{bottom:586.456350px;}
.y20_c01000{bottom:586.803330px;}
.y44_c01000{bottom:605.535945px;}
.y1f_c01000{bottom:605.882955px;}
.y43_c01000{bottom:624.977595px;}
.y1e_c01000{bottom:625.321845px;}
.y42_c01000{bottom:644.057190px;}
.y1d_c01000{bottom:644.401455px;}
.y41_c01000{bottom:663.136800px;}
.y1c_c01000{bottom:663.481065px;}
.y40_c01000{bottom:681.855645px;}
.y1b_c01000{bottom:682.201170px;}
.y3f_c01000{bottom:701.295795px;}
.y1a_c01000{bottom:701.640060px;}
.y3e_c01000{bottom:720.375405px;}
.y19_c01000{bottom:720.719670px;}
.y3d_c01000{bottom:739.814295px;}
.y18_c01000{bottom:740.159820px;}
.y3c_c01000{bottom:758.893920px;}
.y17_c01000{bottom:759.239820px;}
.y16_c01000{bottom:759.240945px;}
.y15_c01000{bottom:778.320540px;}
.y3b_c01000{bottom:778.334055px;}
.y14_c01000{bottom:797.400150px;}
.y3a_c01000{bottom:797.413680px;}
.y39_c01000{bottom:816.852555px;}
.y13_c01000{bottom:817.199805px;}
.y38_c01000{bottom:835.932180px;}
.y12_c01000{bottom:836.283135px;}
.y37_c01000{bottom:855.372315px;}
.y11_c01000{bottom:856.082790px;}
.y36_c01000{bottom:874.451940px;}
.y10_c01000{bottom:874.801650px;}
.y35_c01000{bottom:893.531550px;}
.yf_c01000{bottom:894.241785px;}
.y34_c01000{bottom:912.970440px;}
.ye_c01000{bottom:913.321410px;}
.y33_c01000{bottom:932.050050px;}
.yd_c01000{bottom:932.760285px;}
.y32_c01000{bottom:951.129645px;}
.yc_c01000{bottom:951.480405px;}
.y31_c01000{bottom:970.569810px;}
.yb_c01000{bottom:970.919295px;}
.ya_c01000{bottom:989.998905px;}
.y30_c01000{bottom:990.008700px;}
.y2f_c01000{bottom:1009.088310px;}
.y9_c01000{bottom:1009.439670px;}
.y8_c01000{bottom:1009.441275px;}
.y2e_c01000{bottom:1027.808415px;}
.y7_c01000{bottom:1028.160120px;}
.y2d_c01000{bottom:1047.608070px;}
.y6_c01000{bottom:1047.959775px;}
.y2c_c01000{bottom:1066.326915px;}
.y5_c01000{bottom:1066.679880px;}
.y2b_c01000{bottom:1085.406510px;}
.y3_c01000{bottom:1085.759370px;}
.y4_c01000{bottom:1085.759490px;}
.y2a_c01000{bottom:1104.486120px;}
.y2_c01000{bottom:1105.198260px;}
.y1_c01000{bottom:1143.719520px;}
.h6_c01000{height:45.369141px;}
.h8_c01000{height:47.715820px;}
.h4_c01000{height:49.280273px;}
.h5_c01000{height:53.707397px;}
.h1_c01000{height:54.443115px;}
.h3_c01000{height:55.178833px;}
.h7_c01000{height:55.914551px;}
.h2_c01000{height:75.093750px;}
.h0_c01000{height:1263.000000px;}
.w0_c01000{width:892.500000px;}
.x0_c01000{left:0.000000px;}
.x1_c01000{left:308.878350px;}
.x8_c01000{left:377.278410px;}
.x7_c01000{left:378.359550px;}
.x5_c01000{left:379.438275px;}
.x2_c01000{left:380.520075px;}
.x3_c01000{left:408.239820px;}
.x4_c01000{left:412.559100px;}
.x6_c01000{left:424.798515px;}
.xc_c01000{left:442.798920px;}
.xd_c01000{left:489.958335px;}
.xb_c01000{left:514.078335px;}
.xa_c01000{left:515.158035px;}
.x9_c01000{left:516.239070px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.lsd_c01000{letter-spacing:-4.553467pt;}
.ls6_c01000{letter-spacing:-4.410000pt;}
.ls5_c01000{letter-spacing:-3.793733pt;}
.ls1_c01000{letter-spacing:-3.033507pt;}
.ls8_c01000{letter-spacing:-2.822667pt;}
.lsa_c01000{letter-spacing:-2.380500pt;}
.lsc_c01000{letter-spacing:-2.376773pt;}
.ls0_c01000{letter-spacing:-2.279200pt;}
.ls3_c01000{letter-spacing:-1.519960pt;}
.ls9_c01000{letter-spacing:-0.784400pt;}
.ls4_c01000{letter-spacing:-0.759733pt;}
.ls2_c01000{letter-spacing:0.000000pt;}
.lsb_c01000{letter-spacing:7.484447pt;}
.ls7_c01000{letter-spacing:22.012533pt;}
.ws0_c01000{word-spacing:0.000000pt;}
._d_c01000{margin-left:-33.893214pt;}
._6_c01000{margin-left:-31.327001pt;}
._5_c01000{margin-left:-26.343112pt;}
._c_c01000{margin-left:-13.808597pt;}
._2_c01000{margin-left:-10.213488pt;}
._a_c01000{margin-left:-8.727294pt;}
._b_c01000{margin-left:-5.488705pt;}
._8_c01000{margin-left:-4.361006pt;}
._3_c01000{margin-left:-3.257184pt;}
._7_c01000{margin-left:-2.356562pt;}
._9_c01000{width:1.682919pt;}
._0_c01000{width:19.333657pt;}
._4_c01000{width:20.768483pt;}
._f_c01000{width:283.705845pt;}
._e_c01000{width:291.394999pt;}
._10_c01000{width:364.865713pt;}
._1_c01000{width:388.516773pt;}
.fs5_c01000{font-size:38.666667pt;}
.fs7_c01000{font-size:40.666667pt;}
.fs3_c01000{font-size:42.000000pt;}
.fs4_c01000{font-size:48.666667pt;}
.fs0_c01000{font-size:49.333333pt;}
.fs2_c01000{font-size:50.000000pt;}
.fs6_c01000{font-size:50.666667pt;}
.fs1_c01000{font-size:64.000000pt;}
.y0_c01000{bottom:0.000000pt;}
.y5c_c01000{bottom:162.878920pt;}
.y5b_c01000{bottom:179.838933pt;}
.y5a_c01000{bottom:196.798787pt;}
.y59_c01000{bottom:214.079587pt;}
.y58_c01000{bottom:214.080787pt;}
.y57_c01000{bottom:231.040440pt;}
.y56_c01000{bottom:248.319453pt;}
.y55_c01000{bottom:265.599587pt;}
.y54_c01000{bottom:282.878920pt;}
.y53_c01000{bottom:299.519453pt;}
.y52_c01000{bottom:299.519773pt;}
.y51_c01000{bottom:316.798787pt;}
.y50_c01000{bottom:333.758787pt;}
.y4f_c01000{bottom:350.399453pt;}
.y4e_c01000{bottom:367.359333pt;}
.y29_c01000{bottom:367.685093pt;}
.y4d_c01000{bottom:384.337627pt;}
.y28_c01000{bottom:384.644760pt;}
.y4c_c01000{bottom:401.297267pt;}
.y27_c01000{bottom:401.605533pt;}
.y26_c01000{bottom:418.884547pt;}
.y4b_c01000{bottom:418.896947pt;}
.y4a_c01000{bottom:435.537067pt;}
.y25_c01000{bottom:435.844200pt;}
.y49_c01000{bottom:453.135440pt;}
.y24_c01000{bottom:453.443893pt;}
.y48_c01000{bottom:470.096213pt;}
.y23_c01000{bottom:470.403520pt;}
.y47_c01000{bottom:487.055867pt;}
.y22_c01000{bottom:487.363173pt;}
.y46_c01000{bottom:504.015520pt;}
.y21_c01000{bottom:504.322840pt;}
.y45_c01000{bottom:521.294533pt;}
.y20_c01000{bottom:521.602960pt;}
.y44_c01000{bottom:538.254173pt;}
.y1f_c01000{bottom:538.562627pt;}
.y43_c01000{bottom:555.535640pt;}
.y1e_c01000{bottom:555.841640pt;}
.y42_c01000{bottom:572.495280pt;}
.y1d_c01000{bottom:572.801293pt;}
.y41_c01000{bottom:589.454933pt;}
.y1c_c01000{bottom:589.760947pt;}
.y40_c01000{bottom:606.093907pt;}
.y1b_c01000{bottom:606.401040pt;}
.y3f_c01000{bottom:623.374040pt;}
.y1a_c01000{bottom:623.680053pt;}
.y3e_c01000{bottom:640.333693pt;}
.y19_c01000{bottom:640.639707pt;}
.y3d_c01000{bottom:657.612707pt;}
.y18_c01000{bottom:657.919840pt;}
.y3c_c01000{bottom:674.572373pt;}
.y17_c01000{bottom:674.879840pt;}
.y16_c01000{bottom:674.880840pt;}
.y15_c01000{bottom:691.840480pt;}
.y3b_c01000{bottom:691.852493pt;}
.y14_c01000{bottom:708.800133pt;}
.y3a_c01000{bottom:708.812160pt;}
.y39_c01000{bottom:726.091160pt;}
.y13_c01000{bottom:726.399827pt;}
.y38_c01000{bottom:743.050827pt;}
.y12_c01000{bottom:743.362787pt;}
.y37_c01000{bottom:760.330947pt;}
.y11_c01000{bottom:760.962480pt;}
.y36_c01000{bottom:777.290613pt;}
.y10_c01000{bottom:777.601467pt;}
.y35_c01000{bottom:794.250267pt;}
.yf_c01000{bottom:794.881587pt;}
.y34_c01000{bottom:811.529280pt;}
.ye_c01000{bottom:811.841253pt;}
.y33_c01000{bottom:828.488933pt;}
.yd_c01000{bottom:829.120253pt;}
.y32_c01000{bottom:845.448573pt;}
.yc_c01000{bottom:845.760360pt;}
.y31_c01000{bottom:862.728720pt;}
.yb_c01000{bottom:863.039373pt;}
.ya_c01000{bottom:879.999027pt;}
.y30_c01000{bottom:880.007733pt;}
.y2f_c01000{bottom:896.967387pt;}
.y9_c01000{bottom:897.279707pt;}
.y8_c01000{bottom:897.281133pt;}
.y2e_c01000{bottom:913.607480pt;}
.y7_c01000{bottom:913.920107pt;}
.y2d_c01000{bottom:931.207173pt;}
.y6_c01000{bottom:931.519800pt;}
.y2c_c01000{bottom:947.846147pt;}
.y5_c01000{bottom:948.159893pt;}
.y2b_c01000{bottom:964.805787pt;}
.y3_c01000{bottom:965.119440pt;}
.y4_c01000{bottom:965.119547pt;}
.y2a_c01000{bottom:981.765440pt;}
.y2_c01000{bottom:982.398453pt;}
.y1_c01000{bottom:1016.639573pt;}
.h6_c01000{height:40.328125pt;}
.h8_c01000{height:42.414062pt;}
.h4_c01000{height:43.804688pt;}
.h5_c01000{height:47.739909pt;}
.h1_c01000{height:48.393880pt;}
.h3_c01000{height:49.047852pt;}
.h7_c01000{height:49.701823pt;}
.h2_c01000{height:66.750000pt;}
.h0_c01000{height:1122.666667pt;}
.w0_c01000{width:793.333333pt;}
.x0_c01000{left:0.000000pt;}
.x1_c01000{left:274.558533pt;}
.x8_c01000{left:335.358587pt;}
.x7_c01000{left:336.319600pt;}
.x5_c01000{left:337.278467pt;}
.x2_c01000{left:338.240067pt;}
.x3_c01000{left:362.879840pt;}
.x4_c01000{left:366.719200pt;}
.x6_c01000{left:377.598680pt;}
.xc_c01000{left:393.599040pt;}
.xd_c01000{left:435.518520pt;}
.xb_c01000{left:456.958520pt;}
.xa_c01000{left:457.918253pt;}
.x9_c01000{left:458.879173pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_e2689a8c24e3f9052b73b6a6.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01001;src:url('chunks/assets/font_5a6369230ffd9d7748d7afae.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01001;src:url('chunks/assets/font_c212b0b87de1ac403633b0a1.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.432129;font-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_c01001{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m8_c01001{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_c01001{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m5_c01001{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m0_c01001{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m2_c01001{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m6_c01001{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m1_c01001{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4_c01001{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls2_c01001{letter-spacing:-1.748250px;}
.ls1_c01001{letter-spacing:-0.941700px;}
.ls3_c01001{letter-spacing:-0.841500px;}
.ls0_c01001{letter-spacing:0.000000px;}
.ls4_c01001{letter-spacing:10.875000px;}
.ls5_c01001{letter-spacing:180.998400px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:0.000000px;}
._2_c01001{margin-left:-1.806826px;}
._3_c01001{width:3.849340px;}
._4_c01001{width:29.674878px;}
._0_c01001{width:34.218750px;}
._8_c01001{width:91.530672px;}
._6_c01001{width:93.480528px;}
._9_c01001{width:95.155500px;}
._5_c01001{width:169.961250px;}
._7_c01001{width:479.336276px;}
._1_c01001{width:482.539616px;}
.fc0_c01001{color:transparent;}
.fs4_c01001{font-size:43.500000px;}
.fs2_c01001{font-size:45.750000px;}
.fs1_c01001{font-size:47.250000px;}
.fs5_c01001{font-size:48.000000px;}
.fs3_c01001{font-size:49.500000px;}
.fs0_c01001{font-size:54.750000px;}
.y0_c01001{bottom:0.000000px;}
.y8_c01001{bottom:1027.079400px;}
.y7_c01001{bottom:1046.159370px;}
.y6_c01001{bottom:1064.159820px;}
.y5_c01001{bottom:1064.698785px;}
.y4_c01001{bottom:1083.778755px;}
.y3_c01001{bottom:1102.858605px;}
.y2_c01001{bottom:1102.859145px;}
.y1_c01001{bottom:1142.279205px;}
.h5_c01001{height:45.369141px;}
.h2_c01001{height:47.619141px;}
.h3_c01001{height:47.715820px;}
.h4_c01001{height:48.919922px;}
.h6_c01001{height:50.062500px;}
.h1_c01001{height:54.108398px;}
.h0_c01001{height:1263.000000px;}
.w0_c01001{width:892.500000px;}
.x0_c01001{left:0.000000px;}
.x1_c01001{left:307.439685px;}
.x2_c01001{left:334.440360px;}
.x3_c01001{left:378.718530px;}
.x4_c01001{left:515.519670px;}
.x5_c01001{left:613.080000px;}
.x6_c01001{left:652.319235px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls2_c01001{letter-spacing:-1.554000pt;}
.ls1_c01001{letter-spacing:-0.837067pt;}
.ls3_c01001{letter-spacing:-0.748000pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ls4_c01001{letter-spacing:9.666667pt;}
.ls5_c01001{letter-spacing:160.887467pt;}
.ws0_c01001{word-spacing:0.000000pt;}
._2_c01001{margin-left:-1.606067pt;}
._3_c01001{width:3.421636pt;}
._4_c01001{width:26.377669pt;}
._0_c01001{width:30.416667pt;}
._8_c01001{width:81.360598pt;}
._6_c01001{width:83.093802pt;}
._9_c01001{width:84.582667pt;}
._5_c01001{width:151.076667pt;}
._7_c01001{width:426.076690pt;}
._1_c01001{width:428.924103pt;}
.fs4_c01001{font-size:38.666667pt;}
.fs2_c01001{font-size:40.666667pt;}
.fs1_c01001{font-size:42.000000pt;}
.fs5_c01001{font-size:42.666667pt;}
.fs3_c01001{font-size:44.000000pt;}
.fs0_c01001{font-size:48.666667pt;}
.y0_c01001{bottom:0.000000pt;}
.y8_c01001{bottom:912.959467pt;}
.y7_c01001{bottom:929.919440pt;}
.y6_c01001{bottom:945.919840pt;}
.y5_c01001{bottom:946.398920pt;}
.y4_c01001{bottom:963.358893pt;}
.y3_c01001{bottom:980.318760pt;}
.y2_c01001{bottom:980.319240pt;}
.y1_c01001{bottom:1015.359293pt;}
.h5_c01001{height:40.328125pt;}
.h2_c01001{height:42.328125pt;}
.h3_c01001{height:42.414062pt;}
.h4_c01001{height:43.484375pt;}
.h6_c01001{height:44.500000pt;}
.h1_c01001{height:48.096354pt;}
.h0_c01001{height:1122.666667pt;}
.w0_c01001{width:793.333333pt;}
.x0_c01001{left:0.000000pt;}
.x1_c01001{left:273.279720pt;}
.x2_c01001{left:297.280320pt;}
.x3_c01001{left:336.638693pt;}
.x4_c01001{left:458.239707pt;}
.x5_c01001{left:544.960000pt;}
.x6_c01001{left:579.839320pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_e3cba61985839718f7e40560.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_85306db463adc077aecb45c2.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_e71e363da81e7f70f6074b35.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01002;src:url('chunks/assets/font_a04dedc9317b98881d0df6a1.woff2')format("woff");}.ff5_c01002{font-family:ff5_c01002;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01002;src:url('chunks/assets/font_7be19d9aace1af487be47c6b.woff2')format("woff");}.ff6_c01002{font-family:ff6_c01002;line-height:1.284668;font-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_c01002{transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);}
.m3_c01002{transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);}
.mf_c01002{transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182990,0.000000,0.000000,0.250000,0,0);}
.m10_c01002{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m8_c01002{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.md_c01002{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m12_c01002{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m2_c01002{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m14_c01002{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m11_c01002{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.ma_c01002{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1_c01002{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m0_c01002{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m13_c01002{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.me_c01002{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m4_c01002{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m9_c01002{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.mb_c01002{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.mc_c01002{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m5_c01002{transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301948,0.000000,0.000000,0.250000,0,0);}
.m7_c01002{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.lse_c01002{letter-spacing:-11.469518px;}
.ls11_c01002{letter-spacing:-10.650000px;}
.ls10_c01002{letter-spacing:-10.449000px;}
.ls9_c01002{letter-spacing:-9.315075px;}
.lsa_c01002{letter-spacing:-7.093575px;}
.ls5_c01002{letter-spacing:-4.914975px;}
.lsf_c01002{letter-spacing:-4.592700px;}
.ls16_c01002{letter-spacing:-4.185135px;}
.ls14_c01002{letter-spacing:-4.095825px;}
.ls8_c01002{letter-spacing:-4.094925px;}
.ls13_c01002{letter-spacing:-3.968828px;}
.ls7_c01002{letter-spacing:-3.805725px;}
.ls6_c01002{letter-spacing:-3.525000px;}
.ls1_c01002{letter-spacing:-3.274343px;}
.lsb_c01002{letter-spacing:-2.627625px;}
.ls17_c01002{letter-spacing:-2.579850px;}
.ls19_c01002{letter-spacing:-2.541000px;}
.lsd_c01002{letter-spacing:-2.508690px;}
.ls4_c01002{letter-spacing:-2.460150px;}
.ls15_c01002{letter-spacing:-1.792650px;}
.ls2_c01002{letter-spacing:-1.640633px;}
.ls12_c01002{letter-spacing:-0.863708px;}
.lsc_c01002{letter-spacing:-0.820050px;}
.ls3_c01002{letter-spacing:0.000000px;}
.ls18_c01002{letter-spacing:0.805350px;}
.ls0_c01002{letter-spacing:4.094925px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:0.000000px;}
._21_c01002{margin-left:-46.391367px;}
._22_c01002{margin-left:-44.288992px;}
._14_c01002{margin-left:-42.718428px;}
._7_c01002{margin-left:-37.732852px;}
._12_c01002{margin-left:-36.158290px;}
._b_c01002{margin-left:-34.974371px;}
._20_c01002{margin-left:-31.345244px;}
._1f_c01002{margin-left:-29.275023px;}
._17_c01002{margin-left:-22.140752px;}
._f_c01002{margin-left:-18.450814px;}
._13_c01002{margin-left:-13.457979px;}
._0_c01002{margin-left:-11.676185px;}
._18_c01002{margin-left:-10.522757px;}
._2_c01002{margin-left:-8.796753px;}
._e_c01002{margin-left:-7.060917px;}
._16_c01002{margin-left:-5.764452px;}
._1c_c01002{margin-left:-4.276581px;}
._1_c01002{margin-left:-3.148787px;}
._9_c01002{margin-left:-1.811278px;}
._15_c01002{width:1.632252px;}
._3_c01002{width:22.434372px;}
._1e_c01002{width:29.622729px;}
._1b_c01002{width:31.330104px;}
._1d_c01002{width:74.936243px;}
._6_c01002{width:138.661755px;}
._11_c01002{width:154.003817px;}
._a_c01002{width:157.190887px;}
._1a_c01002{width:289.035921px;}
._8_c01002{width:302.688877px;}
._d_c01002{width:316.039348px;}
._c_c01002{width:322.932569px;}
._19_c01002{width:374.961292px;}
._10_c01002{width:402.066321px;}
._4_c01002{width:420.938121px;}
._5_c01002{width:586.218944px;}
.fc0_c01002{color:transparent;}
.fse_c01002{font-size:43.500000px;}
.fs1_c01002{font-size:44.250000px;}
.fs8_c01002{font-size:47.250000px;}
.fs9_c01002{font-size:51.000000px;}
.fsb_c01002{font-size:51.750000px;}
.fs4_c01002{font-size:52.500000px;}
.fs0_c01002{font-size:53.250000px;}
.fsc_c01002{font-size:54.750000px;}
.fs2_c01002{font-size:55.500000px;}
.fs5_c01002{font-size:57.750000px;}
.fs7_c01002{font-size:60.000000px;}
.fsa_c01002{font-size:60.750000px;}
.fs6_c01002{font-size:69.750000px;}
.fs3_c01002{font-size:70.500000px;}
.fsd_c01002{font-size:72.750000px;}
.y0_c01002{bottom:0.000000px;}
.y5a_c01002{bottom:176.763570px;}
.y32_c01002{bottom:177.123615px;}
.y59_c01002{bottom:196.203765px;}
.y31_c01002{bottom:196.562595px;}
.y58_c01002{bottom:215.283210px;}
.y30_c01002{bottom:215.642025px;}
.y57_c01002{bottom:234.362640px;}
.y2f_c01002{bottom:234.363345px;}
.y56_c01002{bottom:253.081305px;}
.y2e_c01002{bottom:253.442775px;}
.y55_c01002{bottom:272.521500px;}
.y2d_c01002{bottom:272.881755px;}
.y54_c01002{bottom:291.600945px;}
.y2c_c01002{bottom:291.961185px;}
.y53_c01002{bottom:310.680375px;}
.y2b_c01002{bottom:311.040615px;}
.y52_c01002{bottom:330.119355px;}
.y2a_c01002{bottom:330.120075px;}
.y51_c01002{bottom:349.198785px;}
.y29_c01002{bottom:349.560270px;}
.y50_c01002{bottom:368.278500px;}
.y28_c01002{bottom:368.639700px;}
.y27_c01002{bottom:368.640360px;}
.y4f_c01002{bottom:388.078245px;}
.y26_c01002{bottom:388.079340px;}
.y4e_c01002{bottom:406.799565px;}
.y25_c01002{bottom:407.158770px;}
.y24_c01002{bottom:426.599670px;}
.y4d_c01002{bottom:445.319985px;}
.y23_c01002{bottom:445.322550px;}
.y4c_c01002{bottom:465.119730px;}
.y22_c01002{bottom:465.483060px;}
.y4b_c01002{bottom:484.199160px;}
.y21_c01002{bottom:484.562490px;}
.y4a_c01002{bottom:503.278605px;}
.y20_c01002{bottom:503.641920px;}
.y49_c01002{bottom:521.999910px;}
.y1f_c01002{bottom:522.360585px;}
.y48_c01002{bottom:541.438890px;}
.y1e_c01002{bottom:541.800795px;}
.y47_c01002{bottom:560.518335px;}
.y1d_c01002{bottom:560.880225px;}
.y46_c01002{bottom:579.600405px;}
.y1c_c01002{bottom:579.959655px;}
.y45_c01002{bottom:598.679835px;}
.y1b_c01002{bottom:599.039085px;}
.y44_c01002{bottom:618.118815px;}
.y1a_c01002{bottom:618.478065px;}
.y43_c01002{bottom:636.840135px;}
.y19_c01002{bottom:637.199385px;}
.y42_c01002{bottom:656.279250px;}
.y18_c01002{bottom:656.640150px;}
.y41_c01002{bottom:675.361170px;}
.y17_c01002{bottom:675.725415px;}
.y40_c01002{bottom:695.160915px;}
.y16_c01002{bottom:695.164395px;}
.y3f_c01002{bottom:713.882220px;}
.y15_c01002{bottom:714.243825px;}
.y3e_c01002{bottom:733.321200px;}
.y14_c01002{bottom:733.684050px;}
.y3d_c01002{bottom:752.400645px;}
.y13_c01002{bottom:752.763480px;}
.y3c_c01002{bottom:771.840840px;}
.y12_c01002{bottom:771.842910px;}
.y3b_c01002{bottom:790.920270px;}
.y11_c01002{bottom:791.281890px;}
.y3a_c01002{bottom:810.359250px;}
.y10_c01002{bottom:810.722070px;}
.y39_c01002{bottom:829.439205px;}
.y38_c01002{bottom:829.440405px;}
.yf_c01002{bottom:829.801530px;}
.y37_c01002{bottom:848.880585px;}
.ye_c01002{bottom:849.240510px;}
.y36_c01002{bottom:867.960015px;}
.y35_c01002{bottom:867.960255px;}
.yd_c01002{bottom:868.319940px;}
.y34_c01002{bottom:887.399235px;}
.y33_c01002{bottom:887.402640px;}
.yc_c01002{bottom:887.760135px;}
.yb_c01002{bottom:906.481770px;}
.ya_c01002{bottom:926.281515px;}
.y9_c01002{bottom:945.360945px;}
.y8_c01002{bottom:964.440405px;}
.y7_c01002{bottom:983.880585px;}
.y6_c01002{bottom:1002.960015px;}
.y5_c01002{bottom:1022.040345px;}
.y4_c01002{bottom:1041.840090px;}
.y2_c01002{bottom:1079.999745px;}
.y3_c01002{bottom:1080.000000px;}
.y1_c01002{bottom:1137.599025px;}
.h10_c01002{height:45.369141px;}
.h2_c01002{height:46.151367px;}
.hb_c01002{height:46.350220px;}
.h11_c01002{height:46.373291px;}
.h9_c01002{height:47.619141px;}
.ha_c01002{height:50.402344px;}
.hd_c01002{height:51.143555px;}
.h5_c01002{height:51.500244px;}
.h12_c01002{height:51.884766px;}
.h1_c01002{height:52.235962px;}
.he_c01002{height:53.707397px;}
.h3_c01002{height:54.443115px;}
.h6_c01002{height:56.650269px;}
.hc_c01002{height:59.593140px;}
.h8_c01002{height:62.578125px;}
.h7_c01002{height:68.421753px;}
.h4_c01002{height:69.157471px;}
.hf_c01002{height:71.364624px;}
.h0_c01002{height:1263.000000px;}
.w0_c01002{width:892.500000px;}
.x0_c01002{left:0.000000px;}
.x1_c01002{left:116.999400px;}
.x2_c01002{left:122.758620px;}
.xa_c01002{left:185.040000px;}
.x8_c01002{left:186.119115px;}
.x5_c01002{left:187.198785px;}
.x9_c01002{left:211.319850px;}
.x6_c01002{left:225.719535px;}
.xd_c01002{left:236.518635px;}
.xe_c01002{left:238.319850px;}
.xf_c01002{left:243.000000px;}
.xb_c01002{left:245.878950px;}
.xc_c01002{left:250.199850px;}
.x14_c01002{left:317.878965px;}
.x7_c01002{left:319.319850px;}
.x18_c01002{left:320.399160px;}
.x1b_c01002{left:350.639100px;}
.x10_c01002{left:357.118785px;}
.x19_c01002{left:363.239250px;}
.x15_c01002{left:375.478635px;}
.x17_c01002{left:381.958350px;}
.x11_c01002{left:383.039385px;}
.x16_c01002{left:401.039985px;}
.x1a_c01002{left:414.358665px;}
.x12_c01002{left:540.718500px;}
.x13_c01002{left:559.798515px;}
.x3_c01002{left:718.199385px;}
.x4_c01002{left:770.399865px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.lse_c01002{letter-spacing:-10.195127pt;}
.ls11_c01002{letter-spacing:-9.466667pt;}
.ls10_c01002{letter-spacing:-9.288000pt;}
.ls9_c01002{letter-spacing:-8.280067pt;}
.lsa_c01002{letter-spacing:-6.305400pt;}
.ls5_c01002{letter-spacing:-4.368867pt;}
.lsf_c01002{letter-spacing:-4.082400pt;}
.ls16_c01002{letter-spacing:-3.720120pt;}
.ls14_c01002{letter-spacing:-3.640733pt;}
.ls8_c01002{letter-spacing:-3.639933pt;}
.ls13_c01002{letter-spacing:-3.527847pt;}
.ls7_c01002{letter-spacing:-3.382867pt;}
.ls6_c01002{letter-spacing:-3.133333pt;}
.ls1_c01002{letter-spacing:-2.910527pt;}
.lsb_c01002{letter-spacing:-2.335667pt;}
.ls17_c01002{letter-spacing:-2.293200pt;}
.ls19_c01002{letter-spacing:-2.258667pt;}
.lsd_c01002{letter-spacing:-2.229947pt;}
.ls4_c01002{letter-spacing:-2.186800pt;}
.ls15_c01002{letter-spacing:-1.593467pt;}
.ls2_c01002{letter-spacing:-1.458340pt;}
.ls12_c01002{letter-spacing:-0.767740pt;}
.lsc_c01002{letter-spacing:-0.728933pt;}
.ls3_c01002{letter-spacing:0.000000pt;}
.ls18_c01002{letter-spacing:0.715867pt;}
.ls0_c01002{letter-spacing:3.639933pt;}
.ws0_c01002{word-spacing:0.000000pt;}
._21_c01002{margin-left:-41.236771pt;}
._22_c01002{margin-left:-39.367993pt;}
._14_c01002{margin-left:-37.971936pt;}
._7_c01002{margin-left:-33.540313pt;}
._12_c01002{margin-left:-32.140702pt;}
._b_c01002{margin-left:-31.088329pt;}
._20_c01002{margin-left:-27.862439pt;}
._1f_c01002{margin-left:-26.022243pt;}
._17_c01002{margin-left:-19.680668pt;}
._f_c01002{margin-left:-16.400723pt;}
._13_c01002{margin-left:-11.962648pt;}
._0_c01002{margin-left:-10.378831pt;}
._18_c01002{margin-left:-9.353562pt;}
._2_c01002{margin-left:-7.819336pt;}
._e_c01002{margin-left:-6.276371pt;}
._16_c01002{margin-left:-5.123957pt;}
._1c_c01002{margin-left:-3.801406pt;}
._1_c01002{margin-left:-2.798922pt;}
._9_c01002{margin-left:-1.610025pt;}
._15_c01002{width:1.450890pt;}
._3_c01002{width:19.941664pt;}
._1e_c01002{width:26.331315pt;}
._1b_c01002{width:27.848982pt;}
._1d_c01002{width:66.609994pt;}
._6_c01002{width:123.254893pt;}
._11_c01002{width:136.892282pt;}
._a_c01002{width:139.725233pt;}
._1a_c01002{width:256.920818pt;}
._8_c01002{width:269.056779pt;}
._d_c01002{width:280.923865pt;}
._c_c01002{width:287.051172pt;}
._19_c01002{width:333.298926pt;}
._10_c01002{width:357.392285pt;}
._4_c01002{width:374.167218pt;}
._5_c01002{width:521.083506pt;}
.fse_c01002{font-size:38.666667pt;}
.fs1_c01002{font-size:39.333333pt;}
.fs8_c01002{font-size:42.000000pt;}
.fs9_c01002{font-size:45.333333pt;}
.fsb_c01002{font-size:46.000000pt;}
.fs4_c01002{font-size:46.666667pt;}
.fs0_c01002{font-size:47.333333pt;}
.fsc_c01002{font-size:48.666667pt;}
.fs2_c01002{font-size:49.333333pt;}
.fs5_c01002{font-size:51.333333pt;}
.fs7_c01002{font-size:53.333333pt;}
.fsa_c01002{font-size:54.000000pt;}
.fs6_c01002{font-size:62.000000pt;}
.fs3_c01002{font-size:62.666667pt;}
.fsd_c01002{font-size:64.666667pt;}
.y0_c01002{bottom:0.000000pt;}
.y5a_c01002{bottom:157.123173pt;}
.y32_c01002{bottom:157.443213pt;}
.y59_c01002{bottom:174.403347pt;}
.y31_c01002{bottom:174.722307pt;}
.y58_c01002{bottom:191.362853pt;}
.y30_c01002{bottom:191.681800pt;}
.y57_c01002{bottom:208.322347pt;}
.y2f_c01002{bottom:208.322973pt;}
.y56_c01002{bottom:224.961160pt;}
.y2e_c01002{bottom:225.282467pt;}
.y55_c01002{bottom:242.241333pt;}
.y2d_c01002{bottom:242.561560pt;}
.y54_c01002{bottom:259.200840pt;}
.y2c_c01002{bottom:259.521053pt;}
.y53_c01002{bottom:276.160333pt;}
.y2b_c01002{bottom:276.480547pt;}
.y52_c01002{bottom:293.439427pt;}
.y2a_c01002{bottom:293.440067pt;}
.y51_c01002{bottom:310.398920pt;}
.y29_c01002{bottom:310.720240pt;}
.y50_c01002{bottom:327.358667pt;}
.y28_c01002{bottom:327.679733pt;}
.y27_c01002{bottom:327.680320pt;}
.y4f_c01002{bottom:344.958440pt;}
.y26_c01002{bottom:344.959413pt;}
.y4e_c01002{bottom:361.599613pt;}
.y25_c01002{bottom:361.918907pt;}
.y24_c01002{bottom:379.199707pt;}
.y4d_c01002{bottom:395.839987pt;}
.y23_c01002{bottom:395.842267pt;}
.y4c_c01002{bottom:413.439760pt;}
.y22_c01002{bottom:413.762720pt;}
.y4b_c01002{bottom:430.399253pt;}
.y21_c01002{bottom:430.722213pt;}
.y4a_c01002{bottom:447.358760pt;}
.y20_c01002{bottom:447.681707pt;}
.y49_c01002{bottom:463.999920pt;}
.y1f_c01002{bottom:464.320520pt;}
.y48_c01002{bottom:481.279013pt;}
.y1e_c01002{bottom:481.600707pt;}
.y47_c01002{bottom:498.238520pt;}
.y1d_c01002{bottom:498.560200pt;}
.y46_c01002{bottom:515.200360pt;}
.y1c_c01002{bottom:515.519693pt;}
.y45_c01002{bottom:532.159853pt;}
.y1b_c01002{bottom:532.479187pt;}
.y44_c01002{bottom:549.438947pt;}
.y1a_c01002{bottom:549.758280pt;}
.y43_c01002{bottom:566.080120pt;}
.y19_c01002{bottom:566.399453pt;}
.y42_c01002{bottom:583.359333pt;}
.y18_c01002{bottom:583.680133pt;}
.y41_c01002{bottom:600.321040pt;}
.y17_c01002{bottom:600.644813pt;}
.y40_c01002{bottom:617.920813pt;}
.y16_c01002{bottom:617.923907pt;}
.y3f_c01002{bottom:634.561973pt;}
.y15_c01002{bottom:634.883400pt;}
.y3e_c01002{bottom:651.841067pt;}
.y14_c01002{bottom:652.163600pt;}
.y3d_c01002{bottom:668.800573pt;}
.y13_c01002{bottom:669.123093pt;}
.y3c_c01002{bottom:686.080747pt;}
.y12_c01002{bottom:686.082587pt;}
.y3b_c01002{bottom:703.040240pt;}
.y11_c01002{bottom:703.361680pt;}
.y3a_c01002{bottom:720.319333pt;}
.y10_c01002{bottom:720.641840pt;}
.y39_c01002{bottom:737.279293pt;}
.y38_c01002{bottom:737.280360pt;}
.yf_c01002{bottom:737.601360pt;}
.y37_c01002{bottom:754.560520pt;}
.ye_c01002{bottom:754.880453pt;}
.y36_c01002{bottom:771.520013pt;}
.y35_c01002{bottom:771.520227pt;}
.yd_c01002{bottom:771.839947pt;}
.y34_c01002{bottom:788.799320pt;}
.y33_c01002{bottom:788.802347pt;}
.yc_c01002{bottom:789.120120pt;}
.yb_c01002{bottom:805.761573pt;}
.ya_c01002{bottom:823.361347pt;}
.y9_c01002{bottom:840.320840pt;}
.y8_c01002{bottom:857.280360pt;}
.y7_c01002{bottom:874.560520pt;}
.y6_c01002{bottom:891.520013pt;}
.y5_c01002{bottom:908.480307pt;}
.y4_c01002{bottom:926.080080pt;}
.y2_c01002{bottom:959.999773pt;}
.y3_c01002{bottom:960.000000pt;}
.y1_c01002{bottom:1011.199133pt;}
.h10_c01002{height:40.328125pt;}
.h2_c01002{height:41.023438pt;}
.hb_c01002{height:41.200195pt;}
.h11_c01002{height:41.220703pt;}
.h9_c01002{height:42.328125pt;}
.ha_c01002{height:44.802083pt;}
.hd_c01002{height:45.460938pt;}
.h5_c01002{height:45.777995pt;}
.h12_c01002{height:46.119792pt;}
.h1_c01002{height:46.431966pt;}
.he_c01002{height:47.739909pt;}
.h3_c01002{height:48.393880pt;}
.h6_c01002{height:50.355794pt;}
.hc_c01002{height:52.971680pt;}
.h8_c01002{height:55.625000pt;}
.h7_c01002{height:60.819336pt;}
.h4_c01002{height:61.473307pt;}
.hf_c01002{height:63.435221pt;}
.h0_c01002{height:1122.666667pt;}
.w0_c01002{width:793.333333pt;}
.x0_c01002{left:0.000000pt;}
.x1_c01002{left:103.999467pt;}
.x2_c01002{left:109.118773pt;}
.xa_c01002{left:164.480000pt;}
.x8_c01002{left:165.439213pt;}
.x5_c01002{left:166.398920pt;}
.x9_c01002{left:187.839867pt;}
.x6_c01002{left:200.639587pt;}
.xd_c01002{left:210.238787pt;}
.xe_c01002{left:211.839867pt;}
.xf_c01002{left:216.000000pt;}
.xb_c01002{left:218.559067pt;}
.xc_c01002{left:222.399867pt;}
.x14_c01002{left:282.559080pt;}
.x7_c01002{left:283.839867pt;}
.x18_c01002{left:284.799253pt;}
.x1b_c01002{left:311.679200pt;}
.x10_c01002{left:317.438920pt;}
.x19_c01002{left:322.879333pt;}
.x15_c01002{left:333.758787pt;}
.x17_c01002{left:339.518533pt;}
.x11_c01002{left:340.479453pt;}
.x16_c01002{left:356.479987pt;}
.x1a_c01002{left:368.318813pt;}
.x12_c01002{left:480.638667pt;}
.x13_c01002{left:497.598680pt;}
.x3_c01002{left:638.399453pt;}
.x4_c01002{left:684.799880pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_80006b7305908c2808e86adc.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_e1295e40345a5caf7f2b37eb.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_0584df47e1ed8fdc771eb5c2.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01003;src:url('chunks/assets/font_6b0badd2efd01c053a86ec20.woff2')format("woff");}.ff4_c01003{font-family:ff4_c01003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01003;src:url('chunks/assets/font_419c764698f2f40a48e38fa3.woff2')format("woff");}.ff5_c01003{font-family:ff5_c01003;line-height:1.311035;font-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_c01003{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.m2_c01003{transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);}
.mc_c01003{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.me_c01003{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.md_c01003{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m9_c01003{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m1_c01003{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m0_c01003{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m4_c01003{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mf_c01003{transform:matrix(0.296392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296392,0.000000,0.000000,0.250000,0,0);}
.m6_c01003{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01003{transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);}
.m7_c01003{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.mb_c01003{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01003{transform:matrix(0.321809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321809,0.000000,0.000000,0.250000,0,0);}
.ma_c01003{transform:matrix(0.324176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324176,0.000000,0.000000,0.250000,0,0);}
.m11_c01003{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m5_c01003{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m10_c01003{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls1f_c01003{letter-spacing:-21.938895px;}
.ls1e_c01003{letter-spacing:-13.001137px;}
.ls10_c01003{letter-spacing:-12.187500px;}
.lsc_c01003{letter-spacing:-11.373863px;}
.ls16_c01003{letter-spacing:-10.564613px;}
.ls12_c01003{letter-spacing:-9.750000px;}
.ls8_c01003{letter-spacing:-8.935875px;}
.ls7_c01003{letter-spacing:-8.126625px;}
.ls5_c01003{letter-spacing:-7.312013px;}
.ls1a_c01003{letter-spacing:-6.646860px;}
.lse_c01003{letter-spacing:-6.498375px;}
.ls17_c01003{letter-spacing:-4.984200px;}
.lsd_c01003{letter-spacing:-4.875488px;}
.ls6_c01003{letter-spacing:-4.152600px;}
.ls20_c01003{letter-spacing:-4.060875px;}
.ls2_c01003{letter-spacing:-3.320460px;}
.ls1c_c01003{letter-spacing:-3.251625px;}
.ls1_c01003{letter-spacing:-2.494800px;}
.ls11_c01003{letter-spacing:-2.437500px;}
.lsa_c01003{letter-spacing:-1.663740px;}
.ls13_c01003{letter-spacing:-1.622888px;}
.ls9_c01003{letter-spacing:-1.162545px;}
.ls1b_c01003{letter-spacing:-0.831600px;}
.ls19_c01003{letter-spacing:-0.813638px;}
.ls3_c01003{letter-spacing:0.000000px;}
.lsf_c01003{letter-spacing:0.580125px;}
.ls1d_c01003{letter-spacing:0.599250px;}
.ls4_c01003{letter-spacing:0.613350px;}
.ls18_c01003{letter-spacing:0.632925px;}
.ls15_c01003{letter-spacing:0.831600px;}
.ls14_c01003{letter-spacing:0.931875px;}
.lsb_c01003{letter-spacing:4.306365px;}
.ls0_c01003{letter-spacing:12.463200px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:0.000000px;}
._2d_c01003{margin-left:-65.010683px;}
._24_c01003{margin-left:-45.770383px;}
._32_c01003{margin-left:-42.882987px;}
._6_c01003{margin-left:-41.474393px;}
._46_c01003{margin-left:-40.286226px;}
._2b_c01003{margin-left:-35.101595px;}
._8_c01003{margin-left:-33.119214px;}
._35_c01003{margin-left:-31.589935px;}
._3b_c01003{margin-left:-15.519534px;}
._31_c01003{margin-left:-13.673888px;}
._28_c01003{margin-left:-11.858267px;}
._5_c01003{margin-left:-10.745934px;}
._16_c01003{margin-left:-8.467117px;}
._f_c01003{margin-left:-7.160367px;}
._b_c01003{margin-left:-5.173266px;}
._4_c01003{margin-left:-4.167246px;}
._10_c01003{margin-left:-2.917263px;}
._1b_c01003{margin-left:-1.836789px;}
._17_c01003{width:2.291536px;}
._44_c01003{width:16.898960px;}
._0_c01003{width:21.112272px;}
._d_c01003{width:27.836315px;}
._2f_c01003{width:30.965740px;}
._42_c01003{width:33.933413px;}
._19_c01003{width:36.660130px;}
._2a_c01003{width:40.802547px;}
._1e_c01003{width:42.362418px;}
._41_c01003{width:43.940455px;}
._18_c01003{width:48.869086px;}
._23_c01003{width:54.361060px;}
._27_c01003{width:55.916445px;}
._3a_c01003{width:60.059935px;}
._37_c01003{width:63.179740px;}
._3f_c01003{width:67.327357px;}
._22_c01003{width:71.191781px;}
._11_c01003{width:72.992042px;}
._29_c01003{width:74.687201px;}
._c_c01003{width:79.163053px;}
._21_c01003{width:100.330513px;}
._34_c01003{width:107.656170px;}
._9_c01003{width:116.478366px;}
._36_c01003{width:118.081817px;}
._45_c01003{width:126.835001px;}
._26_c01003{width:128.827750px;}
._3_c01003{width:140.614737px;}
._3d_c01003{width:159.381258px;}
._3c_c01003{width:161.837161px;}
._12_c01003{width:173.096684px;}
._43_c01003{width:176.288766px;}
._7_c01003{width:186.259425px;}
._2e_c01003{width:188.339073px;}
._47_c01003{width:189.713573px;}
._25_c01003{width:212.165103px;}
._3e_c01003{width:216.808546px;}
._20_c01003{width:217.876982px;}
._a_c01003{width:231.320116px;}
._1d_c01003{width:241.228102px;}
._1a_c01003{width:242.312813px;}
._14_c01003{width:262.812351px;}
._1c_c01003{width:264.800182px;}
._2c_c01003{width:267.947269px;}
._38_c01003{width:274.464055px;}
._15_c01003{width:293.792766px;}
._33_c01003{width:295.093883px;}
._1f_c01003{width:297.782867px;}
._13_c01003{width:349.336734px;}
._30_c01003{width:352.527951px;}
._40_c01003{width:354.600546px;}
._e_c01003{width:404.537943px;}
._39_c01003{width:409.147067px;}
._1_c01003{width:425.143761px;}
._2_c01003{width:599.259450px;}
.fc0_c01003{color:transparent;}
.fs6_c01003{font-size:46.500000px;}
.fs1_c01003{font-size:48.000000px;}
.fs4_c01003{font-size:48.750000px;}
.fsd_c01003{font-size:49.500000px;}
.fsa_c01003{font-size:51.750000px;}
.fs9_c01003{font-size:53.250000px;}
.fs0_c01003{font-size:54.000000px;}
.fs8_c01003{font-size:56.250000px;}
.fs5_c01003{font-size:60.000000px;}
.fs2_c01003{font-size:60.750000px;}
.fs7_c01003{font-size:68.250000px;}
.fs3_c01003{font-size:70.500000px;}
.fsb_c01003{font-size:72.750000px;}
.fsc_c01003{font-size:129.750000px;}
.y0_c01003{bottom:0.000000px;}
.y32_c01003{bottom:181.439250px;}
.y31_c01003{bottom:200.519100px;}
.y30_c01003{bottom:219.239850px;}
.y2f_c01003{bottom:238.679100px;}
.y2e_c01003{bottom:257.399850px;}
.y2d_c01003{bottom:276.838950px;}
.y2c_c01003{bottom:295.559685px;}
.y2b_c01003{bottom:314.998950px;}
.y2a_c01003{bottom:334.078785px;}
.y29_c01003{bottom:353.158785px;}
.y28_c01003{bottom:372.238785px;}
.y27_c01003{bottom:391.318770px;}
.y26_c01003{bottom:410.039385px;}
.y25_c01003{bottom:429.839535px;}
.y24_c01003{bottom:448.919535px;}
.y23_c01003{bottom:468.719565px;}
.y22_c01003{bottom:487.438665px;}
.y21_c01003{bottom:507.238770px;}
.y20_c01003{bottom:526.318770px;}
.y1f_c01003{bottom:545.398635px;}
.y1e_c01003{bottom:564.478635px;}
.y1d_c01003{bottom:583.560285px;}
.y1c_c01003{bottom:602.640150px;}
.y1b_c01003{bottom:621.720150px;}
.y1a_c01003{bottom:641.518620px;}
.y19_c01003{bottom:659.879970px;}
.y18_c01003{bottom:678.599070px;}
.y17_c01003{bottom:698.399235px;}
.y16_c01003{bottom:717.479235px;}
.y15_c01003{bottom:737.279250px;}
.y14_c01003{bottom:756.000000px;}
.y13_c01003{bottom:775.800105px;}
.y12_c01003{bottom:794.879970px;}
.y11_c01003{bottom:814.319280px;}
.y10_c01003{bottom:833.039985px;}
.yf_c01003{bottom:852.479190px;}
.ye_c01003{bottom:871.559055px;}
.yd_c01003{bottom:890.639100px;}
.yc_c01003{bottom:910.079955px;}
.yb_c01003{bottom:928.439670px;}
.ya_c01003{bottom:928.798920px;}
.y9_c01003{bottom:948.599115px;}
.y8_c01003{bottom:968.039985px;}
.y7_c01003{bottom:987.479190px;}
.y6_c01003{bottom:1006.919955px;}
.y5_c01003{bottom:1026.000000px;}
.y4_c01003{bottom:1045.079955px;}
.y3_c01003{bottom:1064.159820px;}
.y2_c01003{bottom:1083.599025px;}
.y1_c01003{bottom:1141.199805px;}
.h7_c01003{height:46.863281px;}
.h5_c01003{height:48.178711px;}
.h10_c01003{height:48.557373px;}
.h2_c01003{height:50.062500px;}
.hb_c01003{height:51.143555px;}
.ha_c01003{height:52.625977px;}
.h1_c01003{height:52.971680px;}
.hc_c01003{height:53.367188px;}
.he_c01003{height:56.320312px;}
.h9_c01003{height:58.666992px;}
.h3_c01003{height:59.593140px;}
.h6_c01003{height:62.578125px;}
.h8_c01003{height:66.950317px;}
.h4_c01003{height:69.157471px;}
.hd_c01003{height:71.364624px;}
.hf_c01003{height:135.325195px;}
.h0_c01003{height:1263.000000px;}
.w0_c01003{width:892.500000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:116.999400px;}
.x25_c01003{left:183.238785px;}
.x1c_c01003{left:184.319850px;}
.x12_c01003{left:185.758500px;}
.x4_c01003{left:187.198785px;}
.x1a_c01003{left:205.199385px;}
.x26_c01003{left:209.518635px;}
.x29_c01003{left:212.399250px;}
.x2a_c01003{left:216.718500px;}
.x2b_c01003{left:222.118785px;}
.xd_c01003{left:240.478635px;}
.xe_c01003{left:244.799535px;}
.x22_c01003{left:249.479685px;}
.x20_c01003{left:318.238785px;}
.x5_c01003{left:320.758500px;}
.x1d_c01003{left:343.080000px;}
.x21_c01003{left:344.159385px;}
.x6_c01003{left:346.319850px;}
.x13_c01003{left:347.399235px;}
.x14_c01003{left:352.079385px;}
.x16_c01003{left:354.599100px;}
.x1b_c01003{left:363.239250px;}
.x27_c01003{left:364.679700px;}
.xb_c01003{left:367.558635px;}
.x28_c01003{left:368.998950px;}
.xc_c01003{left:371.879535px;}
.xf_c01003{left:374.040000px;}
.x10_c01003{left:378.000000px;}
.x17_c01003{left:380.878950px;}
.x23_c01003{left:383.398635px;}
.x8_c01003{left:387.719565px;}
.x9_c01003{left:392.399820px;}
.x24_c01003{left:512.279850px;}
.x15_c01003{left:513.359250px;}
.x11_c01003{left:514.438665px;}
.xa_c01003{left:515.519670px;}
.x7_c01003{left:516.599070px;}
.x1e_c01003{left:547.559100px;}
.x18_c01003{left:550.439670px;}
.x1f_c01003{left:552.598530px;}
.x19_c01003{left:555.838530px;}
.x2_c01003{left:714.239220px;}
.x3_c01003{left:766.798920px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1f_c01003{letter-spacing:-19.501240pt;}
.ls1e_c01003{letter-spacing:-11.556567pt;}
.ls10_c01003{letter-spacing:-10.833333pt;}
.lsc_c01003{letter-spacing:-10.110100pt;}
.ls16_c01003{letter-spacing:-9.390767pt;}
.ls12_c01003{letter-spacing:-8.666667pt;}
.ls8_c01003{letter-spacing:-7.943000pt;}
.ls7_c01003{letter-spacing:-7.223667pt;}
.ls5_c01003{letter-spacing:-6.499567pt;}
.ls1a_c01003{letter-spacing:-5.908320pt;}
.lse_c01003{letter-spacing:-5.776333pt;}
.ls17_c01003{letter-spacing:-4.430400pt;}
.lsd_c01003{letter-spacing:-4.333767pt;}
.ls6_c01003{letter-spacing:-3.691200pt;}
.ls20_c01003{letter-spacing:-3.609667pt;}
.ls2_c01003{letter-spacing:-2.951520pt;}
.ls1c_c01003{letter-spacing:-2.890333pt;}
.ls1_c01003{letter-spacing:-2.217600pt;}
.ls11_c01003{letter-spacing:-2.166667pt;}
.lsa_c01003{letter-spacing:-1.478880pt;}
.ls13_c01003{letter-spacing:-1.442567pt;}
.ls9_c01003{letter-spacing:-1.033373pt;}
.ls1b_c01003{letter-spacing:-0.739200pt;}
.ls19_c01003{letter-spacing:-0.723233pt;}
.ls3_c01003{letter-spacing:0.000000pt;}
.lsf_c01003{letter-spacing:0.515667pt;}
.ls1d_c01003{letter-spacing:0.532667pt;}
.ls4_c01003{letter-spacing:0.545200pt;}
.ls18_c01003{letter-spacing:0.562600pt;}
.ls15_c01003{letter-spacing:0.739200pt;}
.ls14_c01003{letter-spacing:0.828333pt;}
.lsb_c01003{letter-spacing:3.827880pt;}
.ls0_c01003{letter-spacing:11.078400pt;}
.ws0_c01003{word-spacing:0.000000pt;}
._2d_c01003{margin-left:-57.787274pt;}
._24_c01003{margin-left:-40.684785pt;}
._32_c01003{margin-left:-38.118210pt;}
._6_c01003{margin-left:-36.866127pt;}
._46_c01003{margin-left:-35.809979pt;}
._2b_c01003{margin-left:-31.201418pt;}
._8_c01003{margin-left:-29.439301pt;}
._35_c01003{margin-left:-28.079942pt;}
._3b_c01003{margin-left:-13.795141pt;}
._31_c01003{margin-left:-12.154567pt;}
._28_c01003{margin-left:-10.540682pt;}
._5_c01003{margin-left:-9.551941pt;}
._16_c01003{margin-left:-7.526326pt;}
._f_c01003{margin-left:-6.364770pt;}
._b_c01003{margin-left:-4.598459pt;}
._4_c01003{margin-left:-3.704219pt;}
._10_c01003{margin-left:-2.593122pt;}
._1b_c01003{margin-left:-1.632702pt;}
._17_c01003{width:2.036921pt;}
._44_c01003{width:15.021298pt;}
._0_c01003{width:18.766464pt;}
._d_c01003{width:24.743391pt;}
._2f_c01003{width:27.525102pt;}
._42_c01003{width:30.163033pt;}
._19_c01003{width:32.586782pt;}
._2a_c01003{width:36.268931pt;}
._1e_c01003{width:37.655482pt;}
._41_c01003{width:39.058182pt;}
._18_c01003{width:43.439188pt;}
._23_c01003{width:48.320942pt;}
._27_c01003{width:49.703507pt;}
._3a_c01003{width:53.386609pt;}
._37_c01003{width:56.159769pt;}
._3f_c01003{width:59.846540pt;}
._22_c01003{width:63.281583pt;}
._11_c01003{width:64.881816pt;}
._29_c01003{width:66.388623pt;}
._c_c01003{width:70.367158pt;}
._21_c01003{width:89.182678pt;}
._34_c01003{width:95.694373pt;}
._9_c01003{width:103.536325pt;}
._36_c01003{width:104.961615pt;}
._45_c01003{width:112.742223pt;}
._26_c01003{width:114.513556pt;}
._3_c01003{width:124.990878pt;}
._3d_c01003{width:141.672229pt;}
._3c_c01003{width:143.855254pt;}
._12_c01003{width:153.863719pt;}
._43_c01003{width:156.701125pt;}
._7_c01003{width:165.563934pt;}
._2e_c01003{width:167.412510pt;}
._47_c01003{width:168.634287pt;}
._25_c01003{width:188.591202pt;}
._3e_c01003{width:192.718708pt;}
._20_c01003{width:193.668428pt;}
._a_c01003{width:205.617881pt;}
._1d_c01003{width:214.424980pt;}
._1a_c01003{width:215.389167pt;}
._14_c01003{width:233.610978pt;}
._1c_c01003{width:235.377940pt;}
._2c_c01003{width:238.175350pt;}
._38_c01003{width:243.968049pt;}
._15_c01003{width:261.149125pt;}
._33_c01003{width:262.305674pt;}
._1f_c01003{width:264.695882pt;}
._13_c01003{width:310.521541pt;}
._30_c01003{width:313.358178pt;}
._40_c01003{width:315.200485pt;}
._e_c01003{width:359.589282pt;}
._39_c01003{width:363.686282pt;}
._1_c01003{width:377.905566pt;}
._2_c01003{width:532.675067pt;}
.fs6_c01003{font-size:41.333333pt;}
.fs1_c01003{font-size:42.666667pt;}
.fs4_c01003{font-size:43.333333pt;}
.fsd_c01003{font-size:44.000000pt;}
.fsa_c01003{font-size:46.000000pt;}
.fs9_c01003{font-size:47.333333pt;}
.fs0_c01003{font-size:48.000000pt;}
.fs8_c01003{font-size:50.000000pt;}
.fs5_c01003{font-size:53.333333pt;}
.fs2_c01003{font-size:54.000000pt;}
.fs7_c01003{font-size:60.666667pt;}
.fs3_c01003{font-size:62.666667pt;}
.fsb_c01003{font-size:64.666667pt;}
.fsc_c01003{font-size:115.333333pt;}
.y0_c01003{bottom:0.000000pt;}
.y32_c01003{bottom:161.279333pt;}
.y31_c01003{bottom:178.239200pt;}
.y30_c01003{bottom:194.879867pt;}
.y2f_c01003{bottom:212.159200pt;}
.y2e_c01003{bottom:228.799867pt;}
.y2d_c01003{bottom:246.079067pt;}
.y2c_c01003{bottom:262.719720pt;}
.y2b_c01003{bottom:279.999067pt;}
.y2a_c01003{bottom:296.958920pt;}
.y29_c01003{bottom:313.918920pt;}
.y28_c01003{bottom:330.878920pt;}
.y27_c01003{bottom:347.838907pt;}
.y26_c01003{bottom:364.479453pt;}
.y25_c01003{bottom:382.079587pt;}
.y24_c01003{bottom:399.039587pt;}
.y23_c01003{bottom:416.639613pt;}
.y22_c01003{bottom:433.278813pt;}
.y21_c01003{bottom:450.878907pt;}
.y20_c01003{bottom:467.838907pt;}
.y1f_c01003{bottom:484.798787pt;}
.y1e_c01003{bottom:501.758787pt;}
.y1d_c01003{bottom:518.720253pt;}
.y1c_c01003{bottom:535.680133pt;}
.y1b_c01003{bottom:552.640133pt;}
.y1a_c01003{bottom:570.238773pt;}
.y19_c01003{bottom:586.559973pt;}
.y18_c01003{bottom:603.199173pt;}
.y17_c01003{bottom:620.799320pt;}
.y16_c01003{bottom:637.759320pt;}
.y15_c01003{bottom:655.359333pt;}
.y14_c01003{bottom:672.000000pt;}
.y13_c01003{bottom:689.600093pt;}
.y12_c01003{bottom:706.559973pt;}
.y11_c01003{bottom:723.839360pt;}
.y10_c01003{bottom:740.479987pt;}
.yf_c01003{bottom:757.759280pt;}
.ye_c01003{bottom:774.719160pt;}
.yd_c01003{bottom:791.679200pt;}
.yc_c01003{bottom:808.959960pt;}
.yb_c01003{bottom:825.279707pt;}
.ya_c01003{bottom:825.599040pt;}
.y9_c01003{bottom:843.199213pt;}
.y8_c01003{bottom:860.479987pt;}
.y7_c01003{bottom:877.759280pt;}
.y6_c01003{bottom:895.039960pt;}
.y5_c01003{bottom:912.000000pt;}
.y4_c01003{bottom:928.959960pt;}
.y3_c01003{bottom:945.919840pt;}
.y2_c01003{bottom:963.199133pt;}
.y1_c01003{bottom:1014.399827pt;}
.h7_c01003{height:41.656250pt;}
.h5_c01003{height:42.825521pt;}
.h10_c01003{height:43.162109pt;}
.h2_c01003{height:44.500000pt;}
.hb_c01003{height:45.460938pt;}
.ha_c01003{height:46.778646pt;}
.h1_c01003{height:47.085938pt;}
.hc_c01003{height:47.437500pt;}
.he_c01003{height:50.062500pt;}
.h9_c01003{height:52.148438pt;}
.h3_c01003{height:52.971680pt;}
.h6_c01003{height:55.625000pt;}
.h8_c01003{height:59.511393pt;}
.h4_c01003{height:61.473307pt;}
.hd_c01003{height:63.435221pt;}
.hf_c01003{height:120.289062pt;}
.h0_c01003{height:1122.666667pt;}
.w0_c01003{width:793.333333pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:103.999467pt;}
.x25_c01003{left:162.878920pt;}
.x1c_c01003{left:163.839867pt;}
.x12_c01003{left:165.118667pt;}
.x4_c01003{left:166.398920pt;}
.x1a_c01003{left:182.399453pt;}
.x26_c01003{left:186.238787pt;}
.x29_c01003{left:188.799333pt;}
.x2a_c01003{left:192.638667pt;}
.x2b_c01003{left:197.438920pt;}
.xd_c01003{left:213.758787pt;}
.xe_c01003{left:217.599587pt;}
.x22_c01003{left:221.759720pt;}
.x20_c01003{left:282.878920pt;}
.x5_c01003{left:285.118667pt;}
.x1d_c01003{left:304.960000pt;}
.x21_c01003{left:305.919453pt;}
.x6_c01003{left:307.839867pt;}
.x13_c01003{left:308.799320pt;}
.x14_c01003{left:312.959453pt;}
.x16_c01003{left:315.199200pt;}
.x1b_c01003{left:322.879333pt;}
.x27_c01003{left:324.159733pt;}
.xb_c01003{left:326.718787pt;}
.x28_c01003{left:327.999067pt;}
.xc_c01003{left:330.559587pt;}
.xf_c01003{left:332.480000pt;}
.x10_c01003{left:336.000000pt;}
.x17_c01003{left:338.559067pt;}
.x23_c01003{left:340.798787pt;}
.x8_c01003{left:344.639613pt;}
.x9_c01003{left:348.799840pt;}
.x24_c01003{left:455.359867pt;}
.x15_c01003{left:456.319333pt;}
.x11_c01003{left:457.278813pt;}
.xa_c01003{left:458.239707pt;}
.x7_c01003{left:459.199173pt;}
.x1e_c01003{left:486.719200pt;}
.x18_c01003{left:489.279707pt;}
.x1f_c01003{left:491.198693pt;}
.x19_c01003{left:494.078693pt;}
.x2_c01003{left:634.879307pt;}
.x3_c01003{left:681.599040pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_b19cef91176329c758c6bea6.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_579b17ad16064c48933138b0.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.432129;font-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_c01004{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m4_c01004{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c01004{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.mc_c01004{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m8_c01004{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.md_c01004{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m3_c01004{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.ma_c01004{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m7_c01004{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m0_c01004{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m6_c01004{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m2_c01004{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.mb_c01004{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m9_c01004{transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284574,0.000000,0.000000,0.250000,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls7_c01004{letter-spacing:-3.609375px;}
.ls8_c01004{letter-spacing:-3.457290px;}
.ls6_c01004{letter-spacing:-3.278925px;}
.lsb_c01004{letter-spacing:-2.590800px;}
.lsd_c01004{letter-spacing:-1.760625px;}
.ls3_c01004{letter-spacing:-0.867000px;}
.lsa_c01004{letter-spacing:-0.851190px;}
.ls2_c01004{letter-spacing:0.000000px;}
.ls1_c01004{letter-spacing:0.867000px;}
.lsf_c01004{letter-spacing:0.918750px;}
.ls0_c01004{letter-spacing:1.729410px;}
.ls5_c01004{letter-spacing:2.590800px;}
.ls9_c01004{letter-spacing:2.814000px;}
.lsc_c01004{letter-spacing:3.293055px;}
.ls10_c01004{letter-spacing:4.067145px;}
.lse_c01004{letter-spacing:4.745355px;}
.ls4_c01004{letter-spacing:6.049110px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:0.000000px;}
._10_c01004{margin-left:-38.377172px;}
._7_c01004{margin-left:-32.385035px;}
._12_c01004{margin-left:-29.957504px;}
._b_c01004{margin-left:-28.606159px;}
._6_c01004{margin-left:-27.361379px;}
._9_c01004{margin-left:-21.368689px;}
._c_c01004{margin-left:-10.577296px;}
._8_c01004{margin-left:-8.925104px;}
._a_c01004{margin-left:-6.528000px;}
._14_c01004{margin-left:-5.100000px;}
._d_c01004{margin-left:-4.044110px;}
._e_c01004{margin-left:-2.907035px;}
._4_c01004{margin-left:-1.764289px;}
._5_c01004{width:2.789959px;}
._11_c01004{width:23.408965px;}
._0_c01004{width:26.672965px;}
._15_c01004{width:79.560069px;}
._17_c01004{width:103.932502px;}
._3_c01004{width:145.196965px;}
._13_c01004{width:217.933062px;}
._16_c01004{width:221.253559px;}
._19_c01004{width:255.621889px;}
._18_c01004{width:315.970690px;}
._f_c01004{width:374.029159px;}
._1a_c01004{width:428.813186px;}
._1_c01004{width:445.392923px;}
._2_c01004{width:628.758635px;}
.fc0_c01004{color:transparent;}
.fs6_c01004{font-size:43.500000px;}
.fs2_c01004{font-size:44.250000px;}
.fs5_c01004{font-size:45.750000px;}
.fs0_c01004{font-size:51.000000px;}
.fs4_c01004{font-size:52.500000px;}
.fs1_c01004{font-size:53.250000px;}
.fs8_c01004{font-size:56.250000px;}
.fs3_c01004{font-size:57.750000px;}
.fs7_c01004{font-size:70.500000px;}
.y0_c01004{bottom:0.000000px;}
.y46_c01004{bottom:181.438635px;}
.y23_c01004{bottom:181.797870px;}
.y45_c01004{bottom:201.239250px;}
.y22_c01004{bottom:201.597360px;}
.y44_c01004{bottom:219.960000px;}
.y21_c01004{bottom:220.316910px;}
.y43_c01004{bottom:239.040000px;}
.y20_c01004{bottom:239.397375px;}
.y42_c01004{bottom:258.119265px;}
.y1f_c01004{bottom:258.477810px;}
.y41_c01004{bottom:277.918755px;}
.y1e_c01004{bottom:277.918965px;}
.y40_c01004{bottom:296.278800px;}
.y1d_c01004{bottom:296.278995px;}
.y3f_c01004{bottom:315.359250px;}
.y1c_c01004{bottom:315.359430px;}
.y3e_c01004{bottom:334.439685px;}
.y1b_c01004{bottom:334.439895px;}
.y3c_c01004{bottom:353.877660px;}
.y1a_c01004{bottom:353.878515px;}
.y3d_c01004{bottom:353.878950px;}
.y3b_c01004{bottom:372.958095px;}
.y19_c01004{bottom:372.958950px;}
.y17_c01004{bottom:392.037690px;}
.y3a_c01004{bottom:392.038560px;}
.y18_c01004{bottom:392.038920px;}
.y16_c01004{bottom:411.478845px;}
.y39_c01004{bottom:411.479685px;}
.y38_c01004{bottom:430.559685px;}
.y15_c01004{bottom:430.917465px;}
.y37_c01004{bottom:449.996355px;}
.y14_c01004{bottom:449.997900px;}
.y36_c01004{bottom:469.795875px;}
.y13_c01004{bottom:469.797405px;}
.y35_c01004{bottom:488.876310px;}
.y12_c01004{bottom:488.877840px;}
.y34_c01004{bottom:508.317465px;}
.y11_c01004{bottom:508.318995px;}
.y33_c01004{bottom:527.037030px;}
.y10_c01004{bottom:527.038560px;}
.y32_c01004{bottom:546.478155px;}
.yf_c01004{bottom:546.479685px;}
.y31_c01004{bottom:565.197720px;}
.ye_c01004{bottom:565.198785px;}
.yd_c01004{bottom:584.275980px;}
.y30_c01004{bottom:584.278170px;}
.yc_c01004{bottom:603.356445px;}
.y2f_c01004{bottom:603.358605px;}
.y2d_c01004{bottom:622.435110px;}
.y2e_c01004{bottom:622.438620px;}
.yb_c01004{bottom:622.797570px;}
.y2c_c01004{bottom:641.876250px;}
.ya_c01004{bottom:641.878035px;}
.y2b_c01004{bottom:660.956700px;}
.y9_c01004{bottom:660.958470px;}
.y2a_c01004{bottom:680.037135px;}
.y8_c01004{bottom:680.038920px;}
.y29_c01004{bottom:699.475755px;}
.y7_c01004{bottom:699.838410px;}
.y28_c01004{bottom:718.916910px;}
.y6_c01004{bottom:718.918875px;}
.y27_c01004{bottom:738.355515px;}
.y5_c01004{bottom:738.718365px;}
.y26_c01004{bottom:757.435965px;}
.y4_c01004{bottom:757.437930px;}
.y25_c01004{bottom:776.516415px;}
.y3_c01004{bottom:776.879085px;}
.y24_c01004{bottom:795.237330px;}
.y2_c01004{bottom:795.599985px;}
.y59_c01004{bottom:815.397330px;}
.y58_c01004{bottom:834.477765px;}
.y57_c01004{bottom:853.918920px;}
.y56_c01004{bottom:872.999355px;}
.y55_c01004{bottom:892.079400px;}
.y54_c01004{bottom:892.080990px;}
.y53_c01004{bottom:911.519595px;}
.y52_c01004{bottom:931.319115px;}
.y51_c01004{bottom:950.040030px;}
.y4f_c01004{bottom:969.477630px;}
.y50_c01004{bottom:969.478635px;}
.y4e_c01004{bottom:988.198560px;}
.y4d_c01004{bottom:1007.639700px;}
.y4b_c01004{bottom:1026.358980px;}
.y4c_c01004{bottom:1026.359250px;}
.y4a_c01004{bottom:1045.800105px;}
.y49_c01004{bottom:1046.158500px;}
.y48_c01004{bottom:1065.238950px;}
.y47_c01004{bottom:1084.680090px;}
.y1_c01004{bottom:1142.999355px;}
.h7_c01004{height:45.369141px;}
.h3_c01004{height:46.151367px;}
.h6_c01004{height:47.715820px;}
.h1_c01004{height:50.402344px;}
.h5_c01004{height:51.884766px;}
.h2_c01004{height:52.625977px;}
.h9_c01004{height:55.590820px;}
.h4_c01004{height:57.073242px;}
.h8_c01004{height:69.673828px;}
.h0_c01004{height:1263.000000px;}
.w0_c01004{width:892.500000px;}
.x0_c01004{left:0.000000px;}
.x1_c01004{left:114.838950px;}
.x4_c01004{left:183.599625px;}
.xa_c01004{left:185.040000px;}
.x5_c01004{left:235.080000px;}
.xc_c01004{left:264.238785px;}
.x6_c01004{left:316.438980px;}
.x7_c01004{left:317.879355px;}
.xd_c01004{left:318.958950px;}
.xe_c01004{left:342.719100px;}
.xb_c01004{left:343.798515px;}
.x10_c01004{left:348.478635px;}
.x8_c01004{left:362.519100px;}
.xf_c01004{left:368.278800px;}
.x11_c01004{left:374.399235px;}
.x9_c01004{left:381.958350px;}
.x12_c01004{left:400.319820px;}
.x2_c01004{left:712.798920px;}
.x3_c01004{left:764.999355px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls7_c01004{letter-spacing:-3.208333pt;}
.ls8_c01004{letter-spacing:-3.073147pt;}
.ls6_c01004{letter-spacing:-2.914600pt;}
.lsb_c01004{letter-spacing:-2.302933pt;}
.lsd_c01004{letter-spacing:-1.565000pt;}
.ls3_c01004{letter-spacing:-0.770667pt;}
.lsa_c01004{letter-spacing:-0.756613pt;}
.ls2_c01004{letter-spacing:0.000000pt;}
.ls1_c01004{letter-spacing:0.770667pt;}
.lsf_c01004{letter-spacing:0.816667pt;}
.ls0_c01004{letter-spacing:1.537253pt;}
.ls5_c01004{letter-spacing:2.302933pt;}
.ls9_c01004{letter-spacing:2.501333pt;}
.lsc_c01004{letter-spacing:2.927160pt;}
.ls10_c01004{letter-spacing:3.615240pt;}
.lse_c01004{letter-spacing:4.218093pt;}
.ls4_c01004{letter-spacing:5.376987pt;}
.ws0_c01004{word-spacing:0.000000pt;}
._10_c01004{margin-left:-34.113041pt;}
._7_c01004{margin-left:-28.786697pt;}
._12_c01004{margin-left:-26.628892pt;}
._b_c01004{margin-left:-25.427697pt;}
._6_c01004{margin-left:-24.321226pt;}
._9_c01004{margin-left:-18.994390pt;}
._c_c01004{margin-left:-9.402041pt;}
._8_c01004{margin-left:-7.933426pt;}
._a_c01004{margin-left:-5.802667pt;}
._14_c01004{margin-left:-4.533333pt;}
._d_c01004{margin-left:-3.594764pt;}
._e_c01004{margin-left:-2.584031pt;}
._4_c01004{margin-left:-1.568257pt;}
._5_c01004{width:2.479964pt;}
._11_c01004{width:20.807969pt;}
._0_c01004{width:23.709303pt;}
._15_c01004{width:70.720061pt;}
._17_c01004{width:92.384447pt;}
._3_c01004{width:129.063969pt;}
._13_c01004{width:193.718277pt;}
._16_c01004{width:196.669831pt;}
._19_c01004{width:227.219457pt;}
._18_c01004{width:280.862836pt;}
._f_c01004{width:332.470364pt;}
._1a_c01004{width:381.167277pt;}
._1_c01004{width:395.904821pt;}
._2_c01004{width:558.896564pt;}
.fs6_c01004{font-size:38.666667pt;}
.fs2_c01004{font-size:39.333333pt;}
.fs5_c01004{font-size:40.666667pt;}
.fs0_c01004{font-size:45.333333pt;}
.fs4_c01004{font-size:46.666667pt;}
.fs1_c01004{font-size:47.333333pt;}
.fs8_c01004{font-size:50.000000pt;}
.fs3_c01004{font-size:51.333333pt;}
.fs7_c01004{font-size:62.666667pt;}
.y0_c01004{bottom:0.000000pt;}
.y46_c01004{bottom:161.278787pt;}
.y23_c01004{bottom:161.598107pt;}
.y45_c01004{bottom:178.879333pt;}
.y22_c01004{bottom:179.197653pt;}
.y44_c01004{bottom:195.520000pt;}
.y21_c01004{bottom:195.837253pt;}
.y43_c01004{bottom:212.480000pt;}
.y20_c01004{bottom:212.797667pt;}
.y42_c01004{bottom:229.439347pt;}
.y1f_c01004{bottom:229.758053pt;}
.y41_c01004{bottom:247.038893pt;}
.y1e_c01004{bottom:247.039080pt;}
.y40_c01004{bottom:263.358933pt;}
.y1d_c01004{bottom:263.359107pt;}
.y3f_c01004{bottom:280.319333pt;}
.y1c_c01004{bottom:280.319493pt;}
.y3e_c01004{bottom:297.279720pt;}
.y1b_c01004{bottom:297.279907pt;}
.y3c_c01004{bottom:314.557920pt;}
.y1a_c01004{bottom:314.558680pt;}
.y3d_c01004{bottom:314.559067pt;}
.y3b_c01004{bottom:331.518307pt;}
.y19_c01004{bottom:331.519067pt;}
.y17_c01004{bottom:348.477947pt;}
.y3a_c01004{bottom:348.478720pt;}
.y18_c01004{bottom:348.479040pt;}
.y16_c01004{bottom:365.758973pt;}
.y39_c01004{bottom:365.759720pt;}
.y38_c01004{bottom:382.719720pt;}
.y15_c01004{bottom:383.037747pt;}
.y37_c01004{bottom:399.996760pt;}
.y14_c01004{bottom:399.998133pt;}
.y36_c01004{bottom:417.596333pt;}
.y13_c01004{bottom:417.597693pt;}
.y35_c01004{bottom:434.556720pt;}
.y12_c01004{bottom:434.558080pt;}
.y34_c01004{bottom:451.837747pt;}
.y11_c01004{bottom:451.839107pt;}
.y33_c01004{bottom:468.477360pt;}
.y10_c01004{bottom:468.478720pt;}
.y32_c01004{bottom:485.758360pt;}
.yf_c01004{bottom:485.759720pt;}
.y31_c01004{bottom:502.397973pt;}
.ye_c01004{bottom:502.398920pt;}
.yd_c01004{bottom:519.356427pt;}
.y30_c01004{bottom:519.358373pt;}
.yc_c01004{bottom:536.316840pt;}
.y2f_c01004{bottom:536.318760pt;}
.y2d_c01004{bottom:553.275653pt;}
.y2e_c01004{bottom:553.278773pt;}
.yb_c01004{bottom:553.597840pt;}
.y2c_c01004{bottom:570.556667pt;}
.ya_c01004{bottom:570.558253pt;}
.y2b_c01004{bottom:587.517067pt;}
.y9_c01004{bottom:587.518640pt;}
.y2a_c01004{bottom:604.477453pt;}
.y8_c01004{bottom:604.479040pt;}
.y29_c01004{bottom:621.756227pt;}
.y7_c01004{bottom:622.078587pt;}
.y28_c01004{bottom:639.037253pt;}
.y6_c01004{bottom:639.039000pt;}
.y27_c01004{bottom:656.316013pt;}
.y5_c01004{bottom:656.638547pt;}
.y26_c01004{bottom:673.276413pt;}
.y4_c01004{bottom:673.278160pt;}
.y25_c01004{bottom:690.236813pt;}
.y3_c01004{bottom:690.559187pt;}
.y24_c01004{bottom:706.877627pt;}
.y2_c01004{bottom:707.199987pt;}
.y59_c01004{bottom:724.797627pt;}
.y58_c01004{bottom:741.758013pt;}
.y57_c01004{bottom:759.039040pt;}
.y56_c01004{bottom:775.999427pt;}
.y55_c01004{bottom:792.959467pt;}
.y54_c01004{bottom:792.960880pt;}
.y53_c01004{bottom:810.239640pt;}
.y52_c01004{bottom:827.839213pt;}
.y51_c01004{bottom:844.480027pt;}
.y4f_c01004{bottom:861.757893pt;}
.y50_c01004{bottom:861.758787pt;}
.y4e_c01004{bottom:878.398720pt;}
.y4d_c01004{bottom:895.679733pt;}
.y4b_c01004{bottom:912.319093pt;}
.y4c_c01004{bottom:912.319333pt;}
.y4a_c01004{bottom:929.600093pt;}
.y49_c01004{bottom:929.918667pt;}
.y48_c01004{bottom:946.879067pt;}
.y47_c01004{bottom:964.160080pt;}
.y1_c01004{bottom:1015.999427pt;}
.h7_c01004{height:40.328125pt;}
.h3_c01004{height:41.023438pt;}
.h6_c01004{height:42.414062pt;}
.h1_c01004{height:44.802083pt;}
.h5_c01004{height:46.119792pt;}
.h2_c01004{height:46.778646pt;}
.h9_c01004{height:49.414063pt;}
.h4_c01004{height:50.731771pt;}
.h8_c01004{height:61.932292pt;}
.h0_c01004{height:1122.666667pt;}
.w0_c01004{width:793.333333pt;}
.x0_c01004{left:0.000000pt;}
.x1_c01004{left:102.079067pt;}
.x4_c01004{left:163.199667pt;}
.xa_c01004{left:164.480000pt;}
.x5_c01004{left:208.960000pt;}
.xc_c01004{left:234.878920pt;}
.x6_c01004{left:281.279093pt;}
.x7_c01004{left:282.559427pt;}
.xd_c01004{left:283.519067pt;}
.xe_c01004{left:304.639200pt;}
.xb_c01004{left:305.598680pt;}
.x10_c01004{left:309.758787pt;}
.x8_c01004{left:322.239200pt;}
.xf_c01004{left:327.358933pt;}
.x11_c01004{left:332.799320pt;}
.x9_c01004{left:339.518533pt;}
.x12_c01004{left:355.839840pt;}
.x2_c01004{left:633.599040pt;}
.x3_c01004{left:679.999427pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_c78d71435ad0f4d84a92f8cf.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_18cc96a0c79182287cc02806.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.432129;font-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_c01005{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m2_c01005{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m3_c01005{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m6_c01005{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m7_c01005{transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);}
.ma_c01005{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mb_c01005{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m0_c01005{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m1_c01005{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m5_c01005{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m4_c01005{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m9_c01005{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls1_c01005{letter-spacing:-4.428000px;}
.ls6_c01005{letter-spacing:-3.793875px;}
.ls4_c01005{letter-spacing:-1.740863px;}
.ls0_c01005{letter-spacing:-0.897900px;}
.ls2_c01005{letter-spacing:-0.885600px;}
.ls5_c01005{letter-spacing:-0.866250px;}
.ls3_c01005{letter-spacing:0.000000px;}
.ls7_c01005{letter-spacing:1.720373px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01005{word-spacing:0.000000px;}
._0_c01005{width:27.756706px;}
._2_c01005{width:145.582584px;}
._1_c01005{width:637.324501px;}
.fc0_c01005{color:transparent;}
.fs9_c01005{font-size:45.750000px;}
.fs7_c01005{font-size:47.250000px;}
.fs5_c01005{font-size:48.000000px;}
.fs4_c01005{font-size:48.750000px;}
.fs3_c01005{font-size:49.500000px;}
.fs6_c01005{font-size:50.250000px;}
.fs8_c01005{font-size:53.250000px;}
.fs1_c01005{font-size:54.000000px;}
.fs0_c01005{font-size:54.750000px;}
.fs2_c01005{font-size:58.500000px;}
.y0_c01005{bottom:0.000000px;}
.y4_c01005{bottom:1068.840090px;}
.y3_c01005{bottom:1087.919955px;}
.y2_c01005{bottom:1107.359250px;}
.y1_c01005{bottom:1146.239220px;}
.h8_c01005{height:46.696289px;}
.ha_c01005{height:47.715820px;}
.h4_c01005{height:48.919922px;}
.h5_c01005{height:49.130859px;}
.h6_c01005{height:50.062500px;}
.h7_c01005{height:50.642578px;}
.h9_c01005{height:52.625977px;}
.h2_c01005{height:53.367188px;}
.h1_c01005{height:54.108398px;}
.h3_c01005{height:57.814453px;}
.h0_c01005{height:1263.000000px;}
.w0_c01005{width:892.500000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:120.959400px;}
.x5_c01005{left:149.038950px;}
.x6_c01005{left:191.878950px;}
.x2_c01005{left:323.279850px;}
.x7_c01005{left:326.519685px;}
.x3_c01005{left:718.199385px;}
.x4_c01005{left:770.399865px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls1_c01005{letter-spacing:-3.936000pt;}
.ls6_c01005{letter-spacing:-3.372333pt;}
.ls4_c01005{letter-spacing:-1.547433pt;}
.ls0_c01005{letter-spacing:-0.798133pt;}
.ls2_c01005{letter-spacing:-0.787200pt;}
.ls5_c01005{letter-spacing:-0.770000pt;}
.ls3_c01005{letter-spacing:0.000000pt;}
.ls7_c01005{letter-spacing:1.529220pt;}
.ws0_c01005{word-spacing:0.000000pt;}
._0_c01005{width:24.672628pt;}
._2_c01005{width:129.406741pt;}
._1_c01005{width:566.510668pt;}
.fs9_c01005{font-size:40.666667pt;}
.fs7_c01005{font-size:42.000000pt;}
.fs5_c01005{font-size:42.666667pt;}
.fs4_c01005{font-size:43.333333pt;}
.fs3_c01005{font-size:44.000000pt;}
.fs6_c01005{font-size:44.666667pt;}
.fs8_c01005{font-size:47.333333pt;}
.fs1_c01005{font-size:48.000000pt;}
.fs0_c01005{font-size:48.666667pt;}
.fs2_c01005{font-size:52.000000pt;}
.y0_c01005{bottom:0.000000pt;}
.y4_c01005{bottom:950.080080pt;}
.y3_c01005{bottom:967.039960pt;}
.y2_c01005{bottom:984.319333pt;}
.y1_c01005{bottom:1018.879307pt;}
.h8_c01005{height:41.507812pt;}
.ha_c01005{height:42.414062pt;}
.h4_c01005{height:43.484375pt;}
.h5_c01005{height:43.671875pt;}
.h6_c01005{height:44.500000pt;}
.h7_c01005{height:45.015625pt;}
.h9_c01005{height:46.778646pt;}
.h2_c01005{height:47.437500pt;}
.h1_c01005{height:48.096354pt;}
.h3_c01005{height:51.390625pt;}
.h0_c01005{height:1122.666667pt;}
.w0_c01005{width:793.333333pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:107.519467pt;}
.x5_c01005{left:132.479067pt;}
.x6_c01005{left:170.559067pt;}
.x2_c01005{left:287.359867pt;}
.x7_c01005{left:290.239720pt;}
.x3_c01005{left:638.399453pt;}
.x4_c01005{left:684.799880pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_a10dad9559b62549c330aaf6.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_01276593658e76b066bded8e.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_1e895bcb7448a78f60a5b3ab.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01006;src:url('chunks/assets/font_e055e13180cea5c3feb56cad.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01006;src:url('chunks/assets/font_7f0a9674e3d0e80393e9a277.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01006;src:url('chunks/assets/font_04946a5ee3135507e5f88dca.woff2')format("woff");}.ff6_c01006{font-family:ff6_c01006;line-height:1.284668;font-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_c01006{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m14_c01006{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m17_c01006{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);}
.md_c01006{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.mf_c01006{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.me_c01006{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m16_c01006{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m5_c01006{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m12_c01006{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m18_c01006{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m7_c01006{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m6_c01006{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m15_c01006{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1a_c01006{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m0_c01006{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m3_c01006{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1_c01006{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m11_c01006{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m2_c01006{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m13_c01006{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m4_c01006{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m19_c01006{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m9_c01006{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.mb_c01006{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01006{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.ma_c01006{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m8_c01006{transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls1b_c01006{letter-spacing:-7.231950px;}
.ls18_c01006{letter-spacing:-6.219698px;}
.ls20_c01006{letter-spacing:-5.531250px;}
.ls11_c01006{letter-spacing:-5.265000px;}
.ls4_c01006{letter-spacing:-3.932175px;}
.ls1c_c01006{letter-spacing:-3.469200px;}
.lsf_c01006{letter-spacing:-3.348000px;}
.lsc_c01006{letter-spacing:-3.278925px;}
.ls5_c01006{letter-spacing:-3.113550px;}
.ls8_c01006{letter-spacing:-3.029400px;}
.lse_c01006{letter-spacing:-2.590800px;}
.ls1e_c01006{letter-spacing:-2.520000px;}
.ls3_c01006{letter-spacing:-2.353583px;}
.ls7_c01006{letter-spacing:-2.331990px;}
.ls1a_c01006{letter-spacing:-2.285280px;}
.ls14_c01006{letter-spacing:-1.747725px;}
.lsb_c01006{letter-spacing:-1.729410px;}
.ls1f_c01006{letter-spacing:-1.415205px;}
.ls17_c01006{letter-spacing:-1.221675px;}
.ls13_c01006{letter-spacing:-0.910200px;}
.lsa_c01006{letter-spacing:-0.867000px;}
.ls19_c01006{letter-spacing:-0.850950px;}
.ls2_c01006{letter-spacing:-0.784800px;}
.ls10_c01006{letter-spacing:-0.685125px;}
.ls9_c01006{letter-spacing:0.000000px;}
.ls0_c01006{letter-spacing:0.867000px;}
.ls1d_c01006{letter-spacing:0.939750px;}
.ls1_c01006{letter-spacing:1.729410px;}
.ls15_c01006{letter-spacing:3.575850px;}
.ls6_c01006{letter-spacing:3.875423px;}
.lsd_c01006{letter-spacing:4.319700px;}
.ls16_c01006{letter-spacing:5.734358px;}
.ls12_c01006{letter-spacing:16.331250px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:0.000000px;}
._6_c01006{margin-left:-9.108669px;}
._a_c01006{margin-left:-7.267725px;}
._5_c01006{margin-left:-5.599973px;}
._8_c01006{margin-left:-4.146041px;}
._4_c01006{margin-left:-2.514214px;}
._9_c01006{margin-left:-1.239179px;}
._7_c01006{width:1.347982px;}
._10_c01006{width:2.647056px;}
._f_c01006{width:5.599835px;}
._1_c01006{width:7.284931px;}
._3_c01006{width:11.102845px;}
._2_c01006{width:12.662949px;}
._0_c01006{width:21.467864px;}
._14_c01006{width:23.664000px;}
._12_c01006{width:25.296000px;}
._11_c01006{width:26.968869px;}
._16_c01006{width:28.636621px;}
._15_c01006{width:32.104621px;}
._13_c01006{width:33.752111px;}
._b_c01006{width:56.533448px;}
._e_c01006{width:57.783104px;}
._d_c01006{width:60.873842px;}
._c_c01006{width:713.546221px;}
.fc0_c01006{color:transparent;}
.fs8_c01006{font-size:15.750000px;}
.fs7_c01006{font-size:24.000000px;}
.fsb_c01006{font-size:28.500000px;}
.fsa_c01006{font-size:37.500000px;}
.fs6_c01006{font-size:42.000000px;}
.fs10_c01006{font-size:42.750000px;}
.fs5_c01006{font-size:44.250000px;}
.fs11_c01006{font-size:45.000000px;}
.fse_c01006{font-size:46.500000px;}
.fs12_c01006{font-size:48.000000px;}
.fs14_c01006{font-size:49.500000px;}
.fs4_c01006{font-size:51.000000px;}
.fsd_c01006{font-size:52.500000px;}
.fs13_c01006{font-size:54.750000px;}
.fsc_c01006{font-size:55.500000px;}
.fsf_c01006{font-size:68.250000px;}
.fs3_c01006{font-size:81.000000px;}
.fs0_c01006{font-size:81.750000px;}
.fs1_c01006{font-size:83.250000px;}
.fs2_c01006{font-size:92.250000px;}
.fs9_c01006{font-size:101.250000px;}
.y0_c01006{bottom:0.000000px;}
.y57_c01006{bottom:192.777375px;}
.y30_c01006{bottom:192.959100px;}
.y56_c01006{bottom:211.857810px;}
.y2f_c01006{bottom:212.039550px;}
.y55_c01006{bottom:230.758500px;}
.y2e_c01006{bottom:230.759100px;}
.y2d_c01006{bottom:249.838950px;}
.y54_c01006{bottom:268.738200px;}
.y2c_c01006{bottom:268.917735px;}
.y53_c01006{bottom:287.818635px;}
.y2b_c01006{bottom:287.998170px;}
.y2a_c01006{bottom:306.719100px;}
.y52_c01006{bottom:306.719325px;}
.y51_c01006{bottom:325.620000px;}
.y29_c01006{bottom:325.799535px;}
.y28_c01006{bottom:344.879535px;}
.y50_c01006{bottom:350.639100px;}
.y26_c01006{bottom:363.957705px;}
.y27_c01006{bottom:363.959385px;}
.y4f_c01006{bottom:363.959790px;}
.y25_c01006{bottom:383.038140px;}
.y4e_c01006{bottom:383.398410px;}
.y24_c01006{bottom:402.476760px;}
.y4d_c01006{bottom:402.839535px;}
.y23_c01006{bottom:421.558395px;}
.y4c_c01006{bottom:421.560885px;}
.y22_c01006{bottom:440.997000px;}
.y4b_c01006{bottom:441.359025px;}
.y21_c01006{bottom:460.796490px;}
.y4a_c01006{bottom:460.800150px;}
.y20_c01006{bottom:479.876955px;}
.y49_c01006{bottom:480.238770px;}
.y1f_c01006{bottom:498.957390px;}
.y48_c01006{bottom:499.317585px;}
.y1e_c01006{bottom:518.037855px;}
.y47_c01006{bottom:518.038485px;}
.y1d_c01006{bottom:537.118290px;}
.y46_c01006{bottom:537.118950px;}
.y1c_c01006{bottom:556.198740px;}
.y45_c01006{bottom:556.199385px;}
.y1b_c01006{bottom:575.279175px;}
.y44_c01006{bottom:575.279505px;}
.y1a_c01006{bottom:594.359640px;}
.y43_c01006{bottom:594.720630px;}
.y19_c01006{bottom:613.080555px;}
.y42_c01006{bottom:613.080660px;}
.y18_c01006{bottom:632.880060px;}
.y41_c01006{bottom:632.880180px;}
.y17_c01006{bottom:651.960510px;}
.y40_c01006{bottom:652.318800px;}
.y16_c01006{bottom:671.399115px;}
.y3f_c01006{bottom:671.399235px;}
.y15_c01006{bottom:690.120045px;}
.y3e_c01006{bottom:690.478410px;}
.y14_c01006{bottom:709.558665px;}
.y3d_c01006{bottom:709.558875px;}
.y13_c01006{bottom:728.639100px;}
.y3c_c01006{bottom:729.000000px;}
.y12_c01006{bottom:747.719100px;}
.y3b_c01006{bottom:748.080000px;}
.y11_c01006{bottom:753.478635px;}
.y10_c01006{bottom:766.799625px;}
.y3a_c01006{bottom:767.159430px;}
.y39_c01006{bottom:786.598050px;}
.yf_c01006{bottom:786.599115px;}
.y38_c01006{bottom:806.039205px;}
.ye_c01006{bottom:806.039490px;}
.y37_c01006{bottom:825.119640px;}
.yd_c01006{bottom:825.119940px;}
.y36_c01006{bottom:843.839190px;}
.yc_c01006{bottom:844.200390px;}
.y35_c01006{bottom:863.638710px;}
.yb_c01006{bottom:863.999880px;}
.y34_c01006{bottom:883.079835px;}
.ya_c01006{bottom:883.080345px;}
.y33_c01006{bottom:902.518455px;}
.y9_c01006{bottom:902.518965px;}
.y32_c01006{bottom:921.239385px;}
.y8_c01006{bottom:921.239865px;}
.y6_c01006{bottom:940.319280px;}
.y7_c01006{bottom:940.319820px;}
.y31_c01006{bottom:959.398560px;}
.y5_c01006{bottom:959.399715px;}
.y4_c01006{bottom:997.918785px;}
.y3_c01006{bottom:1056.239865px;}
.y2_c01006{bottom:1109.519715px;}
.y1_c01006{bottom:1139.039340px;}
.h9_c01006{height:16.426758px;}
.h8_c01006{height:25.031250px;}
.hc_c01006{height:29.724609px;}
.hb_c01006{height:39.111328px;}
.h7_c01006{height:43.804688px;}
.h11_c01006{height:44.586914px;}
.h6_c01006{height:46.151367px;}
.hf_c01006{height:46.863281px;}
.h12_c01006{height:46.933594px;}
.h13_c01006{height:48.375000px;}
.h15_c01006{height:48.581543px;}
.h5_c01006{height:50.402344px;}
.he_c01006{height:51.884766px;}
.h14_c01006{height:54.108398px;}
.hd_c01006{height:54.849609px;}
.h10_c01006{height:67.450195px;}
.h4_c01006{height:81.632812px;}
.h1_c01006{height:82.388672px;}
.h2_c01006{height:83.900391px;}
.h3_c01006{height:91.168945px;}
.ha_c01006{height:105.600586px;}
.h0_c01006{height:1263.000000px;}
.w0_c01006{width:892.500000px;}
.x0_c01006{left:0.000000px;}
.x7_c01006{left:137.878095px;}
.x1_c01006{left:138.958350px;}
.x8_c01006{left:209.157090px;}
.xb_c01006{left:210.958950px;}
.xd_c01006{left:248.398635px;}
.xa_c01006{left:254.878350px;}
.xe_c01006{left:267.839535px;}
.xc_c01006{left:274.678500px;}
.x9_c01006{left:280.798950px;}
.xf_c01006{left:293.758500px;}
.x2_c01006{left:295.918950px;}
.x3_c01006{left:343.439235px;}
.x10_c01006{left:345.599700px;}
.x4_c01006{left:373.319850px;}
.x13_c01006{left:410.039685px;}
.x11_c01006{left:411.118725px;}
.x12_c01006{left:443.519070px;}
.x5_c01006{left:584.639700px;}
.x6_c01006{left:672.478635px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls1b_c01006{letter-spacing:-6.428400pt;}
.ls18_c01006{letter-spacing:-5.528620pt;}
.ls20_c01006{letter-spacing:-4.916667pt;}
.ls11_c01006{letter-spacing:-4.680000pt;}
.ls4_c01006{letter-spacing:-3.495267pt;}
.ls1c_c01006{letter-spacing:-3.083733pt;}
.lsf_c01006{letter-spacing:-2.976000pt;}
.lsc_c01006{letter-spacing:-2.914600pt;}
.ls5_c01006{letter-spacing:-2.767600pt;}
.ls8_c01006{letter-spacing:-2.692800pt;}
.lse_c01006{letter-spacing:-2.302933pt;}
.ls1e_c01006{letter-spacing:-2.240000pt;}
.ls3_c01006{letter-spacing:-2.092073pt;}
.ls7_c01006{letter-spacing:-2.072880pt;}
.ls1a_c01006{letter-spacing:-2.031360pt;}
.ls14_c01006{letter-spacing:-1.553533pt;}
.lsb_c01006{letter-spacing:-1.537253pt;}
.ls1f_c01006{letter-spacing:-1.257960pt;}
.ls17_c01006{letter-spacing:-1.085933pt;}
.ls13_c01006{letter-spacing:-0.809067pt;}
.lsa_c01006{letter-spacing:-0.770667pt;}
.ls19_c01006{letter-spacing:-0.756400pt;}
.ls2_c01006{letter-spacing:-0.697600pt;}
.ls10_c01006{letter-spacing:-0.609000pt;}
.ls9_c01006{letter-spacing:0.000000pt;}
.ls0_c01006{letter-spacing:0.770667pt;}
.ls1d_c01006{letter-spacing:0.835333pt;}
.ls1_c01006{letter-spacing:1.537253pt;}
.ls15_c01006{letter-spacing:3.178533pt;}
.ls6_c01006{letter-spacing:3.444820pt;}
.lsd_c01006{letter-spacing:3.839733pt;}
.ls16_c01006{letter-spacing:5.097207pt;}
.ls12_c01006{letter-spacing:14.516667pt;}
.ws0_c01006{word-spacing:0.000000pt;}
._6_c01006{margin-left:-8.096595pt;}
._a_c01006{margin-left:-6.460200pt;}
._5_c01006{margin-left:-4.977754pt;}
._8_c01006{margin-left:-3.685369pt;}
._4_c01006{margin-left:-2.234856pt;}
._9_c01006{margin-left:-1.101492pt;}
._7_c01006{width:1.198206pt;}
._10_c01006{width:2.352938pt;}
._f_c01006{width:4.977631pt;}
._1_c01006{width:6.475494pt;}
._3_c01006{width:9.869195pt;}
._2_c01006{width:11.255955pt;}
._0_c01006{width:19.082546pt;}
._14_c01006{width:21.034667pt;}
._12_c01006{width:22.485333pt;}
._11_c01006{width:23.972328pt;}
._16_c01006{width:25.454774pt;}
._15_c01006{width:28.537441pt;}
._13_c01006{width:30.001877pt;}
._b_c01006{width:50.251954pt;}
._e_c01006{width:51.362759pt;}
._d_c01006{width:54.110082pt;}
._c_c01006{width:634.263308pt;}
.fs8_c01006{font-size:14.000000pt;}
.fs7_c01006{font-size:21.333333pt;}
.fsb_c01006{font-size:25.333333pt;}
.fsa_c01006{font-size:33.333333pt;}
.fs6_c01006{font-size:37.333333pt;}
.fs10_c01006{font-size:38.000000pt;}
.fs5_c01006{font-size:39.333333pt;}
.fs11_c01006{font-size:40.000000pt;}
.fse_c01006{font-size:41.333333pt;}
.fs12_c01006{font-size:42.666667pt;}
.fs14_c01006{font-size:44.000000pt;}
.fs4_c01006{font-size:45.333333pt;}
.fsd_c01006{font-size:46.666667pt;}
.fs13_c01006{font-size:48.666667pt;}
.fsc_c01006{font-size:49.333333pt;}
.fsf_c01006{font-size:60.666667pt;}
.fs3_c01006{font-size:72.000000pt;}
.fs0_c01006{font-size:72.666667pt;}
.fs1_c01006{font-size:74.000000pt;}
.fs2_c01006{font-size:82.000000pt;}
.fs9_c01006{font-size:90.000000pt;}
.y0_c01006{bottom:0.000000pt;}
.y57_c01006{bottom:171.357667pt;}
.y30_c01006{bottom:171.519200pt;}
.y56_c01006{bottom:188.318053pt;}
.y2f_c01006{bottom:188.479600pt;}
.y55_c01006{bottom:205.118667pt;}
.y2e_c01006{bottom:205.119200pt;}
.y2d_c01006{bottom:222.079067pt;}
.y54_c01006{bottom:238.878400pt;}
.y2c_c01006{bottom:239.037987pt;}
.y53_c01006{bottom:255.838787pt;}
.y2b_c01006{bottom:255.998373pt;}
.y2a_c01006{bottom:272.639200pt;}
.y52_c01006{bottom:272.639400pt;}
.y51_c01006{bottom:289.440000pt;}
.y29_c01006{bottom:289.599587pt;}
.y28_c01006{bottom:306.559587pt;}
.y50_c01006{bottom:311.679200pt;}
.y26_c01006{bottom:323.517960pt;}
.y27_c01006{bottom:323.519453pt;}
.y4f_c01006{bottom:323.519813pt;}
.y25_c01006{bottom:340.478347pt;}
.y4e_c01006{bottom:340.798587pt;}
.y24_c01006{bottom:357.757120pt;}
.y4d_c01006{bottom:358.079587pt;}
.y23_c01006{bottom:374.718573pt;}
.y4c_c01006{bottom:374.720787pt;}
.y22_c01006{bottom:391.997333pt;}
.y4b_c01006{bottom:392.319133pt;}
.y21_c01006{bottom:409.596880pt;}
.y4a_c01006{bottom:409.600133pt;}
.y20_c01006{bottom:426.557293pt;}
.y49_c01006{bottom:426.878907pt;}
.y1f_c01006{bottom:443.517680pt;}
.y48_c01006{bottom:443.837853pt;}
.y1e_c01006{bottom:460.478093pt;}
.y47_c01006{bottom:460.478653pt;}
.y1d_c01006{bottom:477.438480pt;}
.y46_c01006{bottom:477.439067pt;}
.y1c_c01006{bottom:494.398880pt;}
.y45_c01006{bottom:494.399453pt;}
.y1b_c01006{bottom:511.359267pt;}
.y44_c01006{bottom:511.359560pt;}
.y1a_c01006{bottom:528.319680pt;}
.y43_c01006{bottom:528.640560pt;}
.y19_c01006{bottom:544.960493pt;}
.y42_c01006{bottom:544.960587pt;}
.y18_c01006{bottom:562.560053pt;}
.y41_c01006{bottom:562.560160pt;}
.y17_c01006{bottom:579.520453pt;}
.y40_c01006{bottom:579.838933pt;}
.y16_c01006{bottom:596.799213pt;}
.y3f_c01006{bottom:596.799320pt;}
.y15_c01006{bottom:613.440040pt;}
.y3e_c01006{bottom:613.758587pt;}
.y14_c01006{bottom:630.718813pt;}
.y3d_c01006{bottom:630.719000pt;}
.y13_c01006{bottom:647.679200pt;}
.y3c_c01006{bottom:648.000000pt;}
.y12_c01006{bottom:664.639200pt;}
.y3b_c01006{bottom:664.960000pt;}
.y11_c01006{bottom:669.758787pt;}
.y10_c01006{bottom:681.599667pt;}
.y3a_c01006{bottom:681.919493pt;}
.y39_c01006{bottom:699.198267pt;}
.yf_c01006{bottom:699.199213pt;}
.y38_c01006{bottom:716.479293pt;}
.ye_c01006{bottom:716.479547pt;}
.y37_c01006{bottom:733.439680pt;}
.yd_c01006{bottom:733.439947pt;}
.y36_c01006{bottom:750.079280pt;}
.yc_c01006{bottom:750.400347pt;}
.y35_c01006{bottom:767.678853pt;}
.yb_c01006{bottom:767.999893pt;}
.y34_c01006{bottom:784.959853pt;}
.ya_c01006{bottom:784.960307pt;}
.y33_c01006{bottom:802.238627pt;}
.y9_c01006{bottom:802.239080pt;}
.y32_c01006{bottom:818.879453pt;}
.y8_c01006{bottom:818.879880pt;}
.y6_c01006{bottom:835.839360pt;}
.y7_c01006{bottom:835.839840pt;}
.y31_c01006{bottom:852.798720pt;}
.y5_c01006{bottom:852.799747pt;}
.y4_c01006{bottom:887.038920pt;}
.y3_c01006{bottom:938.879880pt;}
.y2_c01006{bottom:986.239747pt;}
.y1_c01006{bottom:1012.479413pt;}
.h9_c01006{height:14.601562pt;}
.h8_c01006{height:22.250000pt;}
.hc_c01006{height:26.421875pt;}
.hb_c01006{height:34.765625pt;}
.h7_c01006{height:38.937500pt;}
.h11_c01006{height:39.632812pt;}
.h6_c01006{height:41.023438pt;}
.hf_c01006{height:41.656250pt;}
.h12_c01006{height:41.718750pt;}
.h13_c01006{height:43.000000pt;}
.h15_c01006{height:43.183594pt;}
.h5_c01006{height:44.802083pt;}
.he_c01006{height:46.119792pt;}
.h14_c01006{height:48.096354pt;}
.hd_c01006{height:48.755208pt;}
.h10_c01006{height:59.955729pt;}
.h4_c01006{height:72.562500pt;}
.h1_c01006{height:73.234375pt;}
.h2_c01006{height:74.578125pt;}
.h3_c01006{height:81.039063pt;}
.ha_c01006{height:93.867188pt;}
.h0_c01006{height:1122.666667pt;}
.w0_c01006{width:793.333333pt;}
.x0_c01006{left:0.000000pt;}
.x7_c01006{left:122.558307pt;}
.x1_c01006{left:123.518533pt;}
.x8_c01006{left:185.917413pt;}
.xb_c01006{left:187.519067pt;}
.xd_c01006{left:220.798787pt;}
.xa_c01006{left:226.558533pt;}
.xe_c01006{left:238.079587pt;}
.xc_c01006{left:244.158667pt;}
.x9_c01006{left:249.599067pt;}
.xf_c01006{left:261.118667pt;}
.x2_c01006{left:263.039067pt;}
.x3_c01006{left:305.279320pt;}
.x10_c01006{left:307.199733pt;}
.x4_c01006{left:331.839867pt;}
.x13_c01006{left:364.479720pt;}
.x11_c01006{left:365.438867pt;}
.x12_c01006{left:394.239173pt;}
.x5_c01006{left:519.679733pt;}
.x6_c01006{left:597.758787pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_9e474200cd0bb396fcdb68c0.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_fc3aa63e9cda42aed44e4844.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01007;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_5be917e502e4a9674016839f.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.311035;font-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_c01007{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m3_c01007{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m10_c01007{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.mb_c01007{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m6_c01007{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.mf_c01007{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m8_c01007{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m9_c01007{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.mc_c01007{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m7_c01007{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.md_c01007{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.ma_c01007{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m0_c01007{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1_c01007{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m5_c01007{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m2_c01007{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.me_c01007{transform:matrix(0.313559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313559,0.000000,0.000000,0.250000,0,0);}
.v1_c01007{vertical-align:-1.443480px;}
.v0_c01007{vertical-align:0.000000px;}
.ls10_c01007{letter-spacing:-10.031700px;}
.ls6_c01007{letter-spacing:-8.137800px;}
.lse_c01007{letter-spacing:-5.018400px;}
.lsb_c01007{letter-spacing:-4.182000px;}
.ls7_c01007{letter-spacing:-4.023195px;}
.lsf_c01007{letter-spacing:-3.402825px;}
.ls8_c01007{letter-spacing:-3.345600px;}
.ls3_c01007{letter-spacing:-2.508690px;}
.ls4_c01007{letter-spacing:-1.673310px;}
.lsc_c01007{letter-spacing:-0.888743px;}
.lsd_c01007{letter-spacing:-0.863708px;}
.lsa_c01007{letter-spacing:-0.861000px;}
.ls2_c01007{letter-spacing:-0.836400px;}
.ls5_c01007{letter-spacing:0.000000px;}
.ls9_c01007{letter-spacing:0.905250px;}
.ls0_c01007{letter-spacing:4.028535px;}
.ls1_c01007{letter-spacing:6.686100px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01007{word-spacing:0.000000px;}
._d_c01007{margin-left:-29.095416px;}
._9_c01007{margin-left:-13.196877px;}
._7_c01007{margin-left:-8.690266px;}
._b_c01007{margin-left:-7.088699px;}
._8_c01007{margin-left:-5.217317px;}
._6_c01007{margin-left:-3.835250px;}
._3_c01007{margin-left:-1.834771px;}
._2_c01007{width:2.415285px;}
._a_c01007{width:3.916532px;}
._c_c01007{width:10.678965px;}
._0_c01007{width:51.559562px;}
._5_c01007{width:65.901485px;}
._4_c01007{width:67.424114px;}
._1_c01007{width:688.996422px;}
.fc0_c01007{color:transparent;}
.fs1_c01007{font-size:43.500000px;}
.fsa_c01007{font-size:44.250000px;}
.fs9_c01007{font-size:45.750000px;}
.fsb_c01007{font-size:46.500000px;}
.fs0_c01007{font-size:51.000000px;}
.fs8_c01007{font-size:51.750000px;}
.fs7_c01007{font-size:52.500000px;}
.fs6_c01007{font-size:53.250000px;}
.fs2_c01007{font-size:54.000000px;}
.fs5_c01007{font-size:55.500000px;}
.fs3_c01007{font-size:56.250000px;}
.fs4_c01007{font-size:68.250000px;}
.y0_c01007{bottom:0.000000px;}
.y97_c01007{bottom:180.356985px;}
.y67_c01007{bottom:180.358425px;}
.y38_c01007{bottom:180.715845px;}
.y96_c01007{bottom:199.077900px;}
.y66_c01007{bottom:199.438860px;}
.y37_c01007{bottom:199.796295px;}
.y95_c01007{bottom:218.516505px;}
.y65_c01007{bottom:218.519325px;}
.y36_c01007{bottom:218.876745px;}
.y94_c01007{bottom:237.596970px;}
.y64_c01007{bottom:237.960450px;}
.y35_c01007{bottom:238.315365px;}
.y93_c01007{bottom:257.038095px;}
.y63_c01007{bottom:257.040915px;}
.y34_c01007{bottom:257.395800px;}
.y92_c01007{bottom:276.118560px;}
.y33_c01007{bottom:276.476250px;}
.y62_c01007{bottom:276.479535px;}
.y91_c01007{bottom:294.838125px;}
.y61_c01007{bottom:295.200435px;}
.y32_c01007{bottom:295.556700px;}
.y90_c01007{bottom:314.279250px;}
.y31_c01007{bottom:314.637150px;}
.y60_c01007{bottom:314.639700px;}
.y5f_c01007{bottom:333.359430px;}
.y8f_c01007{bottom:333.359715px;}
.y30_c01007{bottom:333.717585px;}
.y5e_c01007{bottom:352.439880px;}
.y8e_c01007{bottom:352.440150px;}
.y2f_c01007{bottom:352.798050px;}
.y8d_c01007{bottom:371.161080px;}
.y5d_c01007{bottom:371.520330px;}
.y2e_c01007{bottom:371.878485px;}
.y8c_c01007{bottom:390.599700px;}
.y2d_c01007{bottom:390.958950px;}
.y8b_c01007{bottom:409.680135px;}
.y2c_c01007{bottom:410.039385px;}
.y5c_c01007{bottom:429.119385px;}
.y2b_c01007{bottom:429.839535px;}
.y8a_c01007{bottom:447.832170px;}
.y5b_c01007{bottom:448.201035px;}
.y2a_c01007{bottom:448.562235px;}
.y89_c01007{bottom:467.273295px;}
.y5a_c01007{bottom:467.640150px;}
.y29_c01007{bottom:468.000840px;}
.y88_c01007{bottom:486.711915px;}
.y59_c01007{bottom:486.720150px;}
.y28_c01007{bottom:486.721785px;}
.y87_c01007{bottom:506.511435px;}
.y58_c01007{bottom:506.520315px;}
.y27_c01007{bottom:506.880795px;}
.y86_c01007{bottom:524.871465px;}
.y57_c01007{bottom:525.237285px;}
.y26_c01007{bottom:525.241995px;}
.y85_c01007{bottom:544.312590px;}
.y56_c01007{bottom:544.317720px;}
.y25_c01007{bottom:544.680615px;}
.y84_c01007{bottom:563.032155px;}
.y55_c01007{bottom:563.037270px;}
.y24_c01007{bottom:563.401545px;}
.y83_c01007{bottom:582.831660px;}
.y54_c01007{bottom:582.836790px;}
.y23_c01007{bottom:583.201035px;}
.y82_c01007{bottom:601.912095px;}
.y53_c01007{bottom:601.917225px;}
.y22_c01007{bottom:602.280900px;}
.y81_c01007{bottom:621.353250px;}
.y52_c01007{bottom:621.358380px;}
.y20_c01007{bottom:621.719355px;}
.y21_c01007{bottom:621.720150px;}
.y80_c01007{bottom:640.072815px;}
.y51_c01007{bottom:640.077945px;}
.y1f_c01007{bottom:640.440285px;}
.y7f_c01007{bottom:659.153250px;}
.y50_c01007{bottom:659.158380px;}
.y1e_c01007{bottom:659.520720px;}
.y7e_c01007{bottom:678.233715px;}
.y4f_c01007{bottom:678.599535px;}
.y1d_c01007{bottom:678.600720px;}
.y1c_c01007{bottom:678.601365px;}
.y7d_c01007{bottom:697.674840px;}
.y4e_c01007{bottom:698.038140px;}
.y1b_c01007{bottom:698.039985px;}
.y7c_c01007{bottom:717.113460px;}
.y4d_c01007{bottom:717.118590px;}
.y19_c01007{bottom:717.479670px;}
.y1a_c01007{bottom:717.480885px;}
.y7b_c01007{bottom:736.193910px;}
.y4c_c01007{bottom:736.559745px;}
.y18_c01007{bottom:736.560120px;}
.y7a_c01007{bottom:754.914825px;}
.y4b_c01007{bottom:754.919775px;}
.y17_c01007{bottom:755.279685px;}
.y79_c01007{bottom:774.714345px;}
.y4a_c01007{bottom:774.719265px;}
.y16_c01007{bottom:775.079175px;}
.y78_c01007{bottom:793.433895px;}
.y49_c01007{bottom:793.799715px;}
.y15_c01007{bottom:794.159640px;}
.y77_c01007{bottom:813.233385px;}
.y48_c01007{bottom:813.238335px;}
.y14_c01007{bottom:813.959130px;}
.y76_c01007{bottom:832.313850px;}
.y47_c01007{bottom:832.318770px;}
.y13_c01007{bottom:832.680060px;}
.y75_c01007{bottom:851.754975px;}
.y46_c01007{bottom:851.759925px;}
.y12_c01007{bottom:852.118680px;}
.y74_c01007{bottom:870.835440px;}
.y45_c01007{bottom:870.840360px;}
.y11_c01007{bottom:871.199115px;}
.y73_c01007{bottom:889.915875px;}
.y44_c01007{bottom:889.920825px;}
.y10_c01007{bottom:890.279565px;}
.y72_c01007{bottom:909.354495px;}
.y43_c01007{bottom:909.359430px;}
.yf_c01007{bottom:909.720705px;}
.y71_c01007{bottom:928.434945px;}
.y42_c01007{bottom:928.800570px;}
.ye_c01007{bottom:929.159820px;}
.y70_c01007{bottom:947.515395px;}
.y41_c01007{bottom:947.880615px;}
.yc_c01007{bottom:948.239385px;}
.yd_c01007{bottom:948.239865px;}
.y6f_c01007{bottom:966.956550px;}
.y40_c01007{bottom:967.312800px;}
.ya_c01007{bottom:967.317945px;}
.yb_c01007{bottom:967.319820px;}
.y6e_c01007{bottom:986.036985px;}
.y3f_c01007{bottom:986.393235px;}
.y9_c01007{bottom:986.759100px;}
.y6d_c01007{bottom:1005.117435px;}
.y3e_c01007{bottom:1005.473700px;}
.y8_c01007{bottom:1005.839535px;}
.y3d_c01007{bottom:1024.194600px;}
.y6c_c01007{bottom:1024.197870px;}
.y7_c01007{bottom:1024.559100px;}
.y6b_c01007{bottom:1043.636490px;}
.y3c_c01007{bottom:1043.994120px;}
.y6_c01007{bottom:1044.358605px;}
.y3b_c01007{bottom:1062.713670px;}
.y6a_c01007{bottom:1062.716955px;}
.y5_c01007{bottom:1063.439055px;}
.y69_c01007{bottom:1081.797390px;}
.y3a_c01007{bottom:1082.154810px;}
.y4_c01007{bottom:1082.519505px;}
.y68_c01007{bottom:1100.877840px;}
.y39_c01007{bottom:1101.235275px;}
.y3_c01007{bottom:1101.240420px;}
.y2_c01007{bottom:1139.759490px;}
.y1_c01007{bottom:1140.120390px;}
.h2_c01007{height:45.369141px;}
.ha_c01007{height:46.107422px;}
.hb_c01007{height:46.151367px;}
.hc_c01007{height:46.863281px;}
.h1_c01007{height:50.402344px;}
.h9_c01007{height:51.143555px;}
.h8_c01007{height:51.884766px;}
.h7_c01007{height:52.625977px;}
.h3_c01007{height:53.367188px;}
.h6_c01007{height:54.443115px;}
.h4_c01007{height:55.590820px;}
.h5_c01007{height:67.450195px;}
.h0_c01007{height:1263.000000px;}
.w0_c01007{width:892.500000px;}
.x0_c01007{left:0.000000px;}
.x1_c01007{left:142.199850px;}
.x7_c01007{left:211.679700px;}
.x4_c01007{left:212.758710px;}
.x3_c01007{left:213.839535px;}
.xb_c01007{left:243.718500px;}
.x9_c01007{left:263.879535px;}
.x5_c01007{left:264.958950px;}
.x8_c01007{left:270.359250px;}
.xa_c01007{left:276.838950px;}
.x6_c01007{left:290.879535px;}
.xe_c01007{left:412.558290px;}
.xd_c01007{left:413.999490px;}
.xc_c01007{left:415.080660px;}
.xf_c01007{left:419.759085px;}
.x12_c01007{left:445.317120px;}
.x11_c01007{left:446.399160px;}
.x10_c01007{left:447.478935px;}
.x2_c01007{left:552.239220px;}
@media print{
.v1_c01007{vertical-align:-1.283093pt;}
.v0_c01007{vertical-align:0.000000pt;}
.ls10_c01007{letter-spacing:-8.917067pt;}
.ls6_c01007{letter-spacing:-7.233600pt;}
.lse_c01007{letter-spacing:-4.460800pt;}
.lsb_c01007{letter-spacing:-3.717333pt;}
.ls7_c01007{letter-spacing:-3.576173pt;}
.lsf_c01007{letter-spacing:-3.024733pt;}
.ls8_c01007{letter-spacing:-2.973867pt;}
.ls3_c01007{letter-spacing:-2.229947pt;}
.ls4_c01007{letter-spacing:-1.487387pt;}
.lsc_c01007{letter-spacing:-0.789993pt;}
.lsd_c01007{letter-spacing:-0.767740pt;}
.lsa_c01007{letter-spacing:-0.765333pt;}
.ls2_c01007{letter-spacing:-0.743467pt;}
.ls5_c01007{letter-spacing:0.000000pt;}
.ls9_c01007{letter-spacing:0.804667pt;}
.ls0_c01007{letter-spacing:3.580920pt;}
.ls1_c01007{letter-spacing:5.943200pt;}
.ws0_c01007{word-spacing:0.000000pt;}
._d_c01007{margin-left:-25.862592pt;}
._9_c01007{margin-left:-11.730557pt;}
._7_c01007{margin-left:-7.724681pt;}
._b_c01007{margin-left:-6.301066pt;}
._8_c01007{margin-left:-4.637615pt;}
._6_c01007{margin-left:-3.409111pt;}
._3_c01007{margin-left:-1.630908pt;}
._2_c01007{width:2.146920pt;}
._a_c01007{width:3.481362pt;}
._c_c01007{width:9.492414pt;}
._0_c01007{width:45.830722pt;}
._5_c01007{width:58.579098pt;}
._4_c01007{width:59.932546pt;}
._1_c01007{width:612.441264pt;}
.fs1_c01007{font-size:38.666667pt;}
.fsa_c01007{font-size:39.333333pt;}
.fs9_c01007{font-size:40.666667pt;}
.fsb_c01007{font-size:41.333333pt;}
.fs0_c01007{font-size:45.333333pt;}
.fs8_c01007{font-size:46.000000pt;}
.fs7_c01007{font-size:46.666667pt;}
.fs6_c01007{font-size:47.333333pt;}
.fs2_c01007{font-size:48.000000pt;}
.fs5_c01007{font-size:49.333333pt;}
.fs3_c01007{font-size:50.000000pt;}
.fs4_c01007{font-size:60.666667pt;}
.y0_c01007{bottom:0.000000pt;}
.y97_c01007{bottom:160.317320pt;}
.y67_c01007{bottom:160.318600pt;}
.y38_c01007{bottom:160.636307pt;}
.y96_c01007{bottom:176.958133pt;}
.y66_c01007{bottom:177.278987pt;}
.y37_c01007{bottom:177.596707pt;}
.y95_c01007{bottom:194.236893pt;}
.y65_c01007{bottom:194.239400pt;}
.y36_c01007{bottom:194.557107pt;}
.y94_c01007{bottom:211.197307pt;}
.y64_c01007{bottom:211.520400pt;}
.y35_c01007{bottom:211.835880pt;}
.y93_c01007{bottom:228.478307pt;}
.y63_c01007{bottom:228.480813pt;}
.y34_c01007{bottom:228.796267pt;}
.y92_c01007{bottom:245.438720pt;}
.y33_c01007{bottom:245.756667pt;}
.y62_c01007{bottom:245.759587pt;}
.y91_c01007{bottom:262.078333pt;}
.y61_c01007{bottom:262.400387pt;}
.y32_c01007{bottom:262.717067pt;}
.y90_c01007{bottom:279.359333pt;}
.y31_c01007{bottom:279.677467pt;}
.y60_c01007{bottom:279.679733pt;}
.y5f_c01007{bottom:296.319493pt;}
.y8f_c01007{bottom:296.319747pt;}
.y30_c01007{bottom:296.637853pt;}
.y5e_c01007{bottom:313.279893pt;}
.y8e_c01007{bottom:313.280133pt;}
.y2f_c01007{bottom:313.598267pt;}
.y8d_c01007{bottom:329.920960pt;}
.y5d_c01007{bottom:330.240293pt;}
.y2e_c01007{bottom:330.558653pt;}
.y8c_c01007{bottom:347.199733pt;}
.y2d_c01007{bottom:347.519067pt;}
.y8b_c01007{bottom:364.160120pt;}
.y2c_c01007{bottom:364.479453pt;}
.y5c_c01007{bottom:381.439453pt;}
.y2b_c01007{bottom:382.079587pt;}
.y8a_c01007{bottom:398.073040pt;}
.y5b_c01007{bottom:398.400920pt;}
.y2a_c01007{bottom:398.721987pt;}
.y89_c01007{bottom:415.354040pt;}
.y5a_c01007{bottom:415.680133pt;}
.y29_c01007{bottom:416.000747pt;}
.y88_c01007{bottom:432.632813pt;}
.y59_c01007{bottom:432.640133pt;}
.y28_c01007{bottom:432.641587pt;}
.y87_c01007{bottom:450.232387pt;}
.y58_c01007{bottom:450.240280pt;}
.y27_c01007{bottom:450.560707pt;}
.y86_c01007{bottom:466.552413pt;}
.y57_c01007{bottom:466.877587pt;}
.y26_c01007{bottom:466.881773pt;}
.y85_c01007{bottom:483.833413pt;}
.y56_c01007{bottom:483.837973pt;}
.y25_c01007{bottom:484.160547pt;}
.y84_c01007{bottom:500.473027pt;}
.y55_c01007{bottom:500.477573pt;}
.y24_c01007{bottom:500.801373pt;}
.y83_c01007{bottom:518.072587pt;}
.y54_c01007{bottom:518.077147pt;}
.y23_c01007{bottom:518.400920pt;}
.y82_c01007{bottom:535.032973pt;}
.y53_c01007{bottom:535.037533pt;}
.y22_c01007{bottom:535.360800pt;}
.y81_c01007{bottom:552.314000pt;}
.y52_c01007{bottom:552.318560pt;}
.y20_c01007{bottom:552.639427pt;}
.y21_c01007{bottom:552.640133pt;}
.y80_c01007{bottom:568.953613pt;}
.y51_c01007{bottom:568.958173pt;}
.y1f_c01007{bottom:569.280253pt;}
.y7f_c01007{bottom:585.914000pt;}
.y50_c01007{bottom:585.918560pt;}
.y1e_c01007{bottom:586.240640pt;}
.y7e_c01007{bottom:602.874413pt;}
.y4f_c01007{bottom:603.199587pt;}
.y1d_c01007{bottom:603.200640pt;}
.y1c_c01007{bottom:603.201213pt;}
.y7d_c01007{bottom:620.155413pt;}
.y4e_c01007{bottom:620.478347pt;}
.y1b_c01007{bottom:620.479987pt;}
.y7c_c01007{bottom:637.434187pt;}
.y4d_c01007{bottom:637.438747pt;}
.y19_c01007{bottom:637.759707pt;}
.y1a_c01007{bottom:637.760787pt;}
.y7b_c01007{bottom:654.394587pt;}
.y4c_c01007{bottom:654.719773pt;}
.y18_c01007{bottom:654.720107pt;}
.y7a_c01007{bottom:671.035400pt;}
.y4b_c01007{bottom:671.039800pt;}
.y17_c01007{bottom:671.359720pt;}
.y79_c01007{bottom:688.634973pt;}
.y4a_c01007{bottom:688.639347pt;}
.y16_c01007{bottom:688.959267pt;}
.y78_c01007{bottom:705.274573pt;}
.y49_c01007{bottom:705.599747pt;}
.y15_c01007{bottom:705.919680pt;}
.y77_c01007{bottom:722.874120pt;}
.y48_c01007{bottom:722.878520pt;}
.y14_c01007{bottom:723.519227pt;}
.y76_c01007{bottom:739.834533pt;}
.y47_c01007{bottom:739.838907pt;}
.y13_c01007{bottom:740.160053pt;}
.y75_c01007{bottom:757.115533pt;}
.y46_c01007{bottom:757.119933pt;}
.y12_c01007{bottom:757.438827pt;}
.y74_c01007{bottom:774.075947pt;}
.y45_c01007{bottom:774.080320pt;}
.y11_c01007{bottom:774.399213pt;}
.y73_c01007{bottom:791.036333pt;}
.y44_c01007{bottom:791.040733pt;}
.y10_c01007{bottom:791.359613pt;}
.y72_c01007{bottom:808.315107pt;}
.y43_c01007{bottom:808.319493pt;}
.yf_c01007{bottom:808.640627pt;}
.y71_c01007{bottom:825.275507pt;}
.y42_c01007{bottom:825.600507pt;}
.ye_c01007{bottom:825.919840pt;}
.y70_c01007{bottom:842.235907pt;}
.y41_c01007{bottom:842.560547pt;}
.yc_c01007{bottom:842.879453pt;}
.yd_c01007{bottom:842.879880pt;}
.y6f_c01007{bottom:859.516933pt;}
.y40_c01007{bottom:859.833600pt;}
.ya_c01007{bottom:859.838173pt;}
.yb_c01007{bottom:859.839840pt;}
.y6e_c01007{bottom:876.477320pt;}
.y3f_c01007{bottom:876.793987pt;}
.y9_c01007{bottom:877.119200pt;}
.y6d_c01007{bottom:893.437720pt;}
.y3e_c01007{bottom:893.754400pt;}
.y8_c01007{bottom:894.079587pt;}
.y3d_c01007{bottom:910.395200pt;}
.y6c_c01007{bottom:910.398107pt;}
.y7_c01007{bottom:910.719200pt;}
.y6b_c01007{bottom:927.676880pt;}
.y3c_c01007{bottom:927.994773pt;}
.y6_c01007{bottom:928.318760pt;}
.y3b_c01007{bottom:944.634373pt;}
.y6a_c01007{bottom:944.637293pt;}
.y5_c01007{bottom:945.279160pt;}
.y69_c01007{bottom:961.597680pt;}
.y3a_c01007{bottom:961.915387pt;}
.y4_c01007{bottom:962.239560pt;}
.y68_c01007{bottom:978.558080pt;}
.y39_c01007{bottom:978.875800pt;}
.y3_c01007{bottom:978.880373pt;}
.y2_c01007{bottom:1013.119547pt;}
.y1_c01007{bottom:1013.440347pt;}
.h2_c01007{height:40.328125pt;}
.ha_c01007{height:40.984375pt;}
.hb_c01007{height:41.023438pt;}
.hc_c01007{height:41.656250pt;}
.h1_c01007{height:44.802083pt;}
.h9_c01007{height:45.460938pt;}
.h8_c01007{height:46.119792pt;}
.h7_c01007{height:46.778646pt;}
.h3_c01007{height:47.437500pt;}
.h6_c01007{height:48.393880pt;}
.h4_c01007{height:49.414063pt;}
.h5_c01007{height:59.955729pt;}
.h0_c01007{height:1122.666667pt;}
.w0_c01007{width:793.333333pt;}
.x0_c01007{left:0.000000pt;}
.x1_c01007{left:126.399867pt;}
.x7_c01007{left:188.159733pt;}
.x4_c01007{left:189.118853pt;}
.x3_c01007{left:190.079587pt;}
.xb_c01007{left:216.638667pt;}
.x9_c01007{left:234.559587pt;}
.x5_c01007{left:235.519067pt;}
.x8_c01007{left:240.319333pt;}
.xa_c01007{left:246.079067pt;}
.x6_c01007{left:258.559587pt;}
.xe_c01007{left:366.718480pt;}
.xd_c01007{left:367.999547pt;}
.xc_c01007{left:368.960587pt;}
.xf_c01007{left:373.119187pt;}
.x12_c01007{left:395.837440pt;}
.x11_c01007{left:396.799253pt;}
.x10_c01007{left:397.759053pt;}
.x2_c01007{left:490.879307pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_5d181c58832e2bfb65e57506.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_e5b5b7be64c6040dd58ff18d.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_bca6d7d863fbedcae2ed2377.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01008;src:url('chunks/assets/font_d117e8ea4105435fa83fa96c.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.311035;font-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_c01008{transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);}
.md_c01008{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);}
.mf_c01008{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m4_c01008{transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);}
.m3_c01008{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m7_c01008{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m11_c01008{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m13_c01008{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2_c01008{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m12_c01008{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.me_c01008{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m0_c01008{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.ma_c01008{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.mb_c01008{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m1_c01008{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.mc_c01008{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m8_c01008{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m5_c01008{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m15_c01008{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m14_c01008{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m10_c01008{transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);}
.m6_c01008{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls18_c01008{letter-spacing:-7.248900px;}
.ls14_c01008{letter-spacing:-5.505135px;}
.ls12_c01008{letter-spacing:-4.984200px;}
.lsc_c01008{letter-spacing:-4.094925px;}
.ls13_c01008{letter-spacing:-3.469200px;}
.lsa_c01008{letter-spacing:-2.914508px;}
.ls15_c01008{letter-spacing:-2.730045px;}
.ls7_c01008{letter-spacing:-2.590800px;}
.ls11_c01008{letter-spacing:-2.535233px;}
.lse_c01008{letter-spacing:-2.468400px;}
.ls8_c01008{letter-spacing:-1.771740px;}
.lsf_c01008{letter-spacing:-1.729410px;}
.ls10_c01008{letter-spacing:-1.696500px;}
.ls6_c01008{letter-spacing:-0.867000px;}
.ls5_c01008{letter-spacing:0.000000px;}
.ls2_c01008{letter-spacing:0.867000px;}
.ls16_c01008{letter-spacing:0.877200px;}
.ls9_c01008{letter-spacing:0.930750px;}
.ls3_c01008{letter-spacing:1.729410px;}
.lsb_c01008{letter-spacing:2.590800px;}
.ls17_c01008{letter-spacing:2.700000px;}
.ls0_c01008{letter-spacing:3.325568px;}
.ls1_c01008{letter-spacing:4.158675px;}
.lsd_c01008{letter-spacing:6.915600px;}
.ls4_c01008{letter-spacing:8.643990px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01008{word-spacing:0.000000px;}
._b_c01008{margin-left:-6.845816px;}
._5_c01008{margin-left:-5.610000px;}
._6_c01008{margin-left:-3.936923px;}
._a_c01008{margin-left:-2.703104px;}
._7_c01008{margin-left:-1.673077px;}
._9_c01008{width:1.387546px;}
._8_c01008{width:3.060830px;}
._d_c01008{width:11.232906px;}
._16_c01008{width:21.837958px;}
._10_c01008{width:22.908889px;}
._17_c01008{width:24.002467px;}
._c_c01008{width:25.315916px;}
._f_c01008{width:26.968869px;}
._11_c01008{width:28.610965px;}
._14_c01008{width:32.094456px;}
._13_c01008{width:33.752111px;}
._12_c01008{width:35.544096px;}
._e_c01008{width:37.201751px;}
._15_c01008{width:53.508889px;}
._0_c01008{width:58.190965px;}
._18_c01008{width:59.501959px;}
._4_c01008{width:67.568009px;}
._3_c01008{width:70.138651px;}
._2_c01008{width:71.736674px;}
._19_c01008{width:567.727125px;}
._1_c01008{width:711.888635px;}
.fc0_c01008{color:transparent;}
.fs9_c01008{font-size:44.250000px;}
.fs7_c01008{font-size:45.000000px;}
.fs1_c01008{font-size:45.750000px;}
.fsa_c01008{font-size:46.500000px;}
.fsc_c01008{font-size:48.750000px;}
.fs0_c01008{font-size:51.000000px;}
.fs6_c01008{font-size:52.500000px;}
.fs5_c01008{font-size:53.250000px;}
.fs2_c01008{font-size:54.000000px;}
.fs3_c01008{font-size:54.750000px;}
.fsb_c01008{font-size:55.500000px;}
.fs8_c01008{font-size:56.250000px;}
.fs4_c01008{font-size:59.250000px;}
.y0_c01008{bottom:0.000000px;}
.y6c_c01008{bottom:181.800150px;}
.y6b_c01008{bottom:200.879430px;}
.y35_c01008{bottom:201.239730px;}
.y6a_c01008{bottom:219.598980px;}
.y34_c01008{bottom:219.960645px;}
.y32_c01008{bottom:239.398020px;}
.y69_c01008{bottom:239.398470px;}
.y33_c01008{bottom:239.399250px;}
.y31_c01008{bottom:258.118950px;}
.y68_c01008{bottom:258.119415px;}
.y30_c01008{bottom:277.199385px;}
.y67_c01008{bottom:277.199850px;}
.y66_c01008{bottom:295.917525px;}
.y2f_c01008{bottom:295.918950px;}
.y65_c01008{bottom:314.997960px;}
.y2d_c01008{bottom:315.358155px;}
.y2e_c01008{bottom:315.359850px;}
.y2c_c01008{bottom:334.438590px;}
.y64_c01008{bottom:334.439115px;}
.y2b_c01008{bottom:353.519055px;}
.y63_c01008{bottom:353.519550px;}
.y2a_c01008{bottom:372.238605px;}
.y62_c01008{bottom:372.239115px;}
.y29_c01008{bottom:392.038095px;}
.y61_c01008{bottom:392.038635px;}
.y60_c01008{bottom:410.759535px;}
.y28_c01008{bottom:411.118560px;}
.y27_c01008{bottom:430.559685px;}
.y5e_c01008{bottom:430.917705px;}
.y5f_c01008{bottom:430.918950px;}
.y5d_c01008{bottom:449.638635px;}
.y26_c01008{bottom:449.639700px;}
.y5c_c01008{bottom:469.077255px;}
.y24_c01008{bottom:469.437765px;}
.y25_c01008{bottom:469.439670px;}
.y23_c01008{bottom:488.157330px;}
.y5b_c01008{bottom:488.157690px;}
.y5a_c01008{bottom:507.598845px;}
.y22_c01008{bottom:507.956820px;}
.y59_c01008{bottom:526.318410px;}
.y21_c01008{bottom:526.677750px;}
.y20_c01008{bottom:545.758185px;}
.y58_c01008{bottom:545.759535px;}
.y1f_c01008{bottom:564.477750px;}
.y56_c01008{bottom:564.478410px;}
.y57_c01008{bottom:564.478635px;}
.y55_c01008{bottom:583.919535px;}
.y1e_c01008{bottom:584.277255px;}
.y1d_c01008{bottom:602.998170px;}
.y53_c01008{bottom:603.358275px;}
.y54_c01008{bottom:603.358605px;}
.y1c_c01008{bottom:622.436790px;}
.y52_c01008{bottom:622.438710px;}
.y51_c01008{bottom:641.159640px;}
.y1b_c01008{bottom:641.517240px;}
.y50_c01008{bottom:660.598245px;}
.y1a_c01008{bottom:660.958380px;}
.y19_c01008{bottom:680.038830px;}
.y4f_c01008{bottom:680.039385px;}
.y4e_c01008{bottom:699.118950px;}
.y18_c01008{bottom:699.477450px;}
.y4d_c01008{bottom:718.199385px;}
.y17_c01008{bottom:718.557885px;}
.y16_c01008{bottom:737.278815px;}
.y4c_c01008{bottom:737.279250px;}
.y15_c01008{bottom:756.359250px;}
.y4b_c01008{bottom:756.360165px;}
.y13_c01008{bottom:775.799625px;}
.y14_c01008{bottom:775.800105px;}
.y4a_c01008{bottom:775.801305px;}
.y12_c01008{bottom:795.238245px;}
.y49_c01008{bottom:795.239910px;}
.y11_c01008{bottom:814.676850px;}
.y48_c01008{bottom:814.678530px;}
.y10_c01008{bottom:833.757315px;}
.y46_c01008{bottom:833.758305px;}
.y47_c01008{bottom:833.758575px;}
.yf_c01008{bottom:853.198455px;}
.y45_c01008{bottom:853.199460px;}
.ye_c01008{bottom:872.278905px;}
.y44_c01008{bottom:872.279895px;}
.yd_c01008{bottom:891.717525px;}
.y43_c01008{bottom:891.718500px;}
.y42_c01008{bottom:910.439205px;}
.y41_c01008{bottom:910.439595px;}
.yc_c01008{bottom:910.799130px;}
.yb_c01008{bottom:930.237735px;}
.y40_c01008{bottom:930.239115px;}
.y3f_c01008{bottom:948.960015px;}
.ya_c01008{bottom:949.318200px;}
.y3e_c01008{bottom:968.399235px;}
.y9_c01008{bottom:968.756820px;}
.y3d_c01008{bottom:987.478620px;}
.y8_c01008{bottom:987.838410px;}
.y3c_c01008{bottom:1006.559055px;}
.y7_c01008{bottom:1006.918875px;}
.y3b_c01008{bottom:1025.279850px;}
.y6_c01008{bottom:1025.638440px;}
.y39_c01008{bottom:1044.718485px;}
.y5_c01008{bottom:1044.718875px;}
.y3a_c01008{bottom:1044.719055px;}
.y38_c01008{bottom:1063.798920px;}
.y4_c01008{bottom:1064.160030px;}
.y37_c01008{bottom:1083.239865px;}
.y3_c01008{bottom:1083.598635px;}
.y36_c01008{bottom:1102.320540px;}
.y2_c01008{bottom:1102.679070px;}
.y1_c01008{bottom:1141.559055px;}
.he_c01008{height:45.351562px;}
.hb_c01008{height:46.151367px;}
.h9_c01008{height:46.933594px;}
.h2_c01008{height:47.715820px;}
.hf_c01008{height:48.178711px;}
.hc_c01008{height:48.498047px;}
.h1_c01008{height:50.402344px;}
.h8_c01008{height:51.884766px;}
.h6_c01008{height:52.625977px;}
.h3_c01008{height:53.367188px;}
.h4_c01008{height:54.108398px;}
.hd_c01008{height:54.849609px;}
.ha_c01008{height:55.590820px;}
.h7_c01008{height:56.320312px;}
.h5_c01008{height:58.555664px;}
.h0_c01008{height:1263.000000px;}
.w0_c01008{width:892.500000px;}
.x0_c01008{left:0.000000px;}
.x1_c01008{left:139.319250px;}
.x4_c01008{left:210.239175px;}
.x3_c01008{left:211.319850px;}
.x10_c01008{left:236.159385px;}
.x8_c01008{left:250.559100px;}
.x9_c01008{left:255.598500px;}
.x6_c01008{left:261.719100px;}
.x7_c01008{left:281.159850px;}
.x5_c01008{left:294.839535px;}
.xd_c01008{left:411.838170px;}
.xa_c01008{left:412.918425px;}
.xe_c01008{left:443.878320px;}
.xb_c01008{left:444.959385px;}
.xf_c01008{left:489.239820px;}
.xc_c01008{left:490.319235px;}
.x2_c01008{left:550.078770px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls18_c01008{letter-spacing:-6.443467pt;}
.ls14_c01008{letter-spacing:-4.893453pt;}
.ls12_c01008{letter-spacing:-4.430400pt;}
.lsc_c01008{letter-spacing:-3.639933pt;}
.ls13_c01008{letter-spacing:-3.083733pt;}
.lsa_c01008{letter-spacing:-2.590673pt;}
.ls15_c01008{letter-spacing:-2.426707pt;}
.ls7_c01008{letter-spacing:-2.302933pt;}
.ls11_c01008{letter-spacing:-2.253540pt;}
.lse_c01008{letter-spacing:-2.194133pt;}
.ls8_c01008{letter-spacing:-1.574880pt;}
.lsf_c01008{letter-spacing:-1.537253pt;}
.ls10_c01008{letter-spacing:-1.508000pt;}
.ls6_c01008{letter-spacing:-0.770667pt;}
.ls5_c01008{letter-spacing:0.000000pt;}
.ls2_c01008{letter-spacing:0.770667pt;}
.ls16_c01008{letter-spacing:0.779733pt;}
.ls9_c01008{letter-spacing:0.827333pt;}
.ls3_c01008{letter-spacing:1.537253pt;}
.lsb_c01008{letter-spacing:2.302933pt;}
.ls17_c01008{letter-spacing:2.400000pt;}
.ls0_c01008{letter-spacing:2.956060pt;}
.ls1_c01008{letter-spacing:3.696600pt;}
.lsd_c01008{letter-spacing:6.147200pt;}
.ls4_c01008{letter-spacing:7.683547pt;}
.ws0_c01008{word-spacing:0.000000pt;}
._b_c01008{margin-left:-6.085170pt;}
._5_c01008{margin-left:-4.986667pt;}
._6_c01008{margin-left:-3.499487pt;}
._a_c01008{margin-left:-2.402759pt;}
._7_c01008{margin-left:-1.487179pt;}
._9_c01008{width:1.233374pt;}
._8_c01008{width:2.720738pt;}
._d_c01008{width:9.984805pt;}
._16_c01008{width:19.411518pt;}
._10_c01008{width:20.363457pt;}
._17_c01008{width:21.335526pt;}
._c_c01008{width:22.503036pt;}
._f_c01008{width:23.972328pt;}
._11_c01008{width:25.431969pt;}
._14_c01008{width:28.528405pt;}
._13_c01008{width:30.001877pt;}
._12_c01008{width:31.594752pt;}
._e_c01008{width:33.068223pt;}
._15_c01008{width:47.563457pt;}
._0_c01008{width:51.725303pt;}
._18_c01008{width:52.890631pt;}
._4_c01008{width:60.060452pt;}
._3_c01008{width:62.345468pt;}
._2_c01008{width:63.765932pt;}
._19_c01008{width:504.646333pt;}
._1_c01008{width:632.789897pt;}
.fs9_c01008{font-size:39.333333pt;}
.fs7_c01008{font-size:40.000000pt;}
.fs1_c01008{font-size:40.666667pt;}
.fsa_c01008{font-size:41.333333pt;}
.fsc_c01008{font-size:43.333333pt;}
.fs0_c01008{font-size:45.333333pt;}
.fs6_c01008{font-size:46.666667pt;}
.fs5_c01008{font-size:47.333333pt;}
.fs2_c01008{font-size:48.000000pt;}
.fs3_c01008{font-size:48.666667pt;}
.fsb_c01008{font-size:49.333333pt;}
.fs8_c01008{font-size:50.000000pt;}
.fs4_c01008{font-size:52.666667pt;}
.y0_c01008{bottom:0.000000pt;}
.y6c_c01008{bottom:161.600133pt;}
.y6b_c01008{bottom:178.559493pt;}
.y35_c01008{bottom:178.879760pt;}
.y6a_c01008{bottom:195.199093pt;}
.y34_c01008{bottom:195.520573pt;}
.y32_c01008{bottom:212.798240pt;}
.y69_c01008{bottom:212.798640pt;}
.y33_c01008{bottom:212.799333pt;}
.y31_c01008{bottom:229.439067pt;}
.y68_c01008{bottom:229.439480pt;}
.y30_c01008{bottom:246.399453pt;}
.y67_c01008{bottom:246.399867pt;}
.y66_c01008{bottom:263.037800pt;}
.y2f_c01008{bottom:263.039067pt;}
.y65_c01008{bottom:279.998187pt;}
.y2d_c01008{bottom:280.318360pt;}
.y2e_c01008{bottom:280.319867pt;}
.y2c_c01008{bottom:297.278747pt;}
.y64_c01008{bottom:297.279213pt;}
.y2b_c01008{bottom:314.239160pt;}
.y63_c01008{bottom:314.239600pt;}
.y2a_c01008{bottom:330.878760pt;}
.y62_c01008{bottom:330.879213pt;}
.y29_c01008{bottom:348.478307pt;}
.y61_c01008{bottom:348.478787pt;}
.y60_c01008{bottom:365.119587pt;}
.y28_c01008{bottom:365.438720pt;}
.y27_c01008{bottom:382.719720pt;}
.y5e_c01008{bottom:383.037960pt;}
.y5f_c01008{bottom:383.039067pt;}
.y5d_c01008{bottom:399.678787pt;}
.y26_c01008{bottom:399.679733pt;}
.y5c_c01008{bottom:416.957560pt;}
.y24_c01008{bottom:417.278013pt;}
.y25_c01008{bottom:417.279707pt;}
.y23_c01008{bottom:433.917627pt;}
.y5b_c01008{bottom:433.917947pt;}
.y5a_c01008{bottom:451.198973pt;}
.y22_c01008{bottom:451.517173pt;}
.y59_c01008{bottom:467.838587pt;}
.y21_c01008{bottom:468.158000pt;}
.y20_c01008{bottom:485.118387pt;}
.y58_c01008{bottom:485.119587pt;}
.y1f_c01008{bottom:501.758000pt;}
.y56_c01008{bottom:501.758587pt;}
.y57_c01008{bottom:501.758787pt;}
.y55_c01008{bottom:519.039587pt;}
.y1e_c01008{bottom:519.357560pt;}
.y1d_c01008{bottom:535.998373pt;}
.y53_c01008{bottom:536.318467pt;}
.y54_c01008{bottom:536.318760pt;}
.y1c_c01008{bottom:553.277147pt;}
.y52_c01008{bottom:553.278853pt;}
.y51_c01008{bottom:569.919680pt;}
.y1b_c01008{bottom:570.237547pt;}
.y50_c01008{bottom:587.198440pt;}
.y1a_c01008{bottom:587.518560pt;}
.y19_c01008{bottom:604.478960pt;}
.y4f_c01008{bottom:604.479453pt;}
.y4e_c01008{bottom:621.439067pt;}
.y18_c01008{bottom:621.757733pt;}
.y4d_c01008{bottom:638.399453pt;}
.y17_c01008{bottom:638.718120pt;}
.y16_c01008{bottom:655.358947pt;}
.y4c_c01008{bottom:655.359333pt;}
.y15_c01008{bottom:672.319333pt;}
.y4b_c01008{bottom:672.320147pt;}
.y13_c01008{bottom:689.599667pt;}
.y14_c01008{bottom:689.600093pt;}
.y4a_c01008{bottom:689.601160pt;}
.y12_c01008{bottom:706.878440pt;}
.y49_c01008{bottom:706.879920pt;}
.y11_c01008{bottom:724.157200pt;}
.y48_c01008{bottom:724.158693pt;}
.y10_c01008{bottom:741.117613pt;}
.y46_c01008{bottom:741.118493pt;}
.y47_c01008{bottom:741.118733pt;}
.yf_c01008{bottom:758.398627pt;}
.y45_c01008{bottom:758.399520pt;}
.ye_c01008{bottom:775.359027pt;}
.y44_c01008{bottom:775.359907pt;}
.yd_c01008{bottom:792.637800pt;}
.y43_c01008{bottom:792.638667pt;}
.y42_c01008{bottom:809.279293pt;}
.y41_c01008{bottom:809.279640pt;}
.yc_c01008{bottom:809.599227pt;}
.yb_c01008{bottom:826.877987pt;}
.y40_c01008{bottom:826.879213pt;}
.y3f_c01008{bottom:843.520013pt;}
.ya_c01008{bottom:843.838400pt;}
.y3e_c01008{bottom:860.799320pt;}
.y9_c01008{bottom:861.117173pt;}
.y3d_c01008{bottom:877.758773pt;}
.y8_c01008{bottom:878.078587pt;}
.y3c_c01008{bottom:894.719160pt;}
.y7_c01008{bottom:895.039000pt;}
.y3b_c01008{bottom:911.359867pt;}
.y6_c01008{bottom:911.678613pt;}
.y39_c01008{bottom:928.638653pt;}
.y5_c01008{bottom:928.639000pt;}
.y3a_c01008{bottom:928.639160pt;}
.y38_c01008{bottom:945.599040pt;}
.y4_c01008{bottom:945.920027pt;}
.y37_c01008{bottom:962.879880pt;}
.y3_c01008{bottom:963.198787pt;}
.y36_c01008{bottom:979.840480pt;}
.y2_c01008{bottom:980.159173pt;}
.y1_c01008{bottom:1014.719160pt;}
.he_c01008{height:40.312500pt;}
.hb_c01008{height:41.023438pt;}
.h9_c01008{height:41.718750pt;}
.h2_c01008{height:42.414062pt;}
.hf_c01008{height:42.825521pt;}
.hc_c01008{height:43.109375pt;}
.h1_c01008{height:44.802083pt;}
.h8_c01008{height:46.119792pt;}
.h6_c01008{height:46.778646pt;}
.h3_c01008{height:47.437500pt;}
.h4_c01008{height:48.096354pt;}
.hd_c01008{height:48.755208pt;}
.ha_c01008{height:49.414063pt;}
.h7_c01008{height:50.062500pt;}
.h5_c01008{height:52.049479pt;}
.h0_c01008{height:1122.666667pt;}
.w0_c01008{width:793.333333pt;}
.x0_c01008{left:0.000000pt;}
.x1_c01008{left:123.839333pt;}
.x4_c01008{left:186.879267pt;}
.x3_c01008{left:187.839867pt;}
.x10_c01008{left:209.919453pt;}
.x8_c01008{left:222.719200pt;}
.x9_c01008{left:227.198667pt;}
.x6_c01008{left:232.639200pt;}
.x7_c01008{left:249.919867pt;}
.x5_c01008{left:262.079587pt;}
.xd_c01008{left:366.078373pt;}
.xa_c01008{left:367.038600pt;}
.xe_c01008{left:394.558507pt;}
.xb_c01008{left:395.519453pt;}
.xf_c01008{left:434.879840pt;}
.xc_c01008{left:435.839320pt;}
.x2_c01008{left:488.958907pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_abcaddea7ff92779b4e8c3b5.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_c8ef49d2ca9e9d9b210a6a3a.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_8665a97b48dc59622c7138ca.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01009;src:url('chunks/assets/font_cc2c94730fcb678ed535fe66.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01009;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01009;src:url('chunks/assets/font_cd65442b5f6e1ab926cdce44.woff2')format("woff");}.ff6_c01009{font-family:ff6_c01009;line-height:1.432129;font-style:normal;font-weight: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_c01009;src:url('chunks/assets/font_873d714c05a1034ae6d18e7d.woff2')format("woff");}.ff7_c01009{font-family:ff7_c01009;line-height:1.311035;font-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_c01009{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);}
.mc_c01009{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);}
.m14_c01009{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m2_c01009{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);}
.mb_c01009{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m15_c01009{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m13_c01009{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m11_c01009{transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);}
.ma_c01009{transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);}
.m8_c01009{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m12_c01009{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m9_c01009{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m16_c01009{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m7_c01009{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m3_c01009{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m10_c01009{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m4_c01009{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m5_c01009{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m0_c01009{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1_c01009{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.me_c01009{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.mf_c01009{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.md_c01009{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m6_c01009{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.lsb_c01009{letter-spacing:-12.000000px;}
.lsf_c01009{letter-spacing:-8.385975px;}
.ls15_c01009{letter-spacing:-7.523010px;}
.ls10_c01009{letter-spacing:-4.664025px;}
.lsd_c01009{letter-spacing:-4.531950px;}
.ls7_c01009{letter-spacing:-4.182000px;}
.ls16_c01009{letter-spacing:-3.640800px;}
.lsa_c01009{letter-spacing:-3.345600px;}
.ls12_c01009{letter-spacing:-2.849783px;}
.ls8_c01009{letter-spacing:-2.508690px;}
.ls5_c01009{letter-spacing:-1.772693px;}
.ls11_c01009{letter-spacing:-1.747133px;}
.lsc_c01009{letter-spacing:-1.722525px;}
.ls3_c01009{letter-spacing:-1.673310px;}
.lse_c01009{letter-spacing:-0.918000px;}
.ls6_c01009{letter-spacing:-0.866250px;}
.ls9_c01009{letter-spacing:-0.861000px;}
.ls2_c01009{letter-spacing:-0.836400px;}
.ls4_c01009{letter-spacing:0.000000px;}
.ls13_c01009{letter-spacing:0.926550px;}
.ls14_c01009{letter-spacing:0.966600px;}
.ls0_c01009{letter-spacing:3.278925px;}
.ls1_c01009{letter-spacing:4.097993px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01009{word-spacing:0.000000px;}
._c_c01009{margin-left:-10.332299px;}
._d_c01009{margin-left:-8.569271px;}
._6_c01009{margin-left:-6.217251px;}
._9_c01009{margin-left:-5.187962px;}
._b_c01009{margin-left:-3.610666px;}
._2_c01009{margin-left:-1.986860px;}
._7_c01009{width:1.350212px;}
._a_c01009{width:3.887044px;}
._8_c01009{width:5.824033px;}
._e_c01009{width:20.465949px;}
._14_c01009{width:21.921046px;}
._15_c01009{width:23.817301px;}
._10_c01009{width:25.418066px;}
._f_c01009{width:26.927992px;}
._11_c01009{width:30.377372px;}
._17_c01009{width:32.107226px;}
._13_c01009{width:33.718826px;}
._12_c01009{width:35.454866px;}
._18_c01009{width:37.056433px;}
._0_c01009{width:53.172500px;}
._16_c01009{width:56.149370px;}
._5_c01009{width:67.037783px;}
._4_c01009{width:68.630717px;}
._3_c01009{width:71.131744px;}
._1_c01009{width:693.241186px;}
.fc0_c01009{color:transparent;}
.fsb_c01009{font-size:42.750000px;}
.fsc_c01009{font-size:43.500000px;}
.fs1_c01009{font-size:44.250000px;}
.fsa_c01009{font-size:45.750000px;}
.fs9_c01009{font-size:46.500000px;}
.fs4_c01009{font-size:49.500000px;}
.fs0_c01009{font-size:51.000000px;}
.fs5_c01009{font-size:52.500000px;}
.fs3_c01009{font-size:53.250000px;}
.fs8_c01009{font-size:54.000000px;}
.fsd_c01009{font-size:55.500000px;}
.fs2_c01009{font-size:56.250000px;}
.fs6_c01009{font-size:60.000000px;}
.fs7_c01009{font-size:60.750000px;}
.y0_c01009{bottom:0.000000px;}
.y6c_c01009{bottom:185.398995px;}
.y34_c01009{bottom:185.758455px;}
.y6b_c01009{bottom:204.840135px;}
.y33_c01009{bottom:205.197075px;}
.y6a_c01009{bottom:223.199850px;}
.y69_c01009{bottom:223.200480px;}
.y32_c01009{bottom:223.557105px;}
.y68_c01009{bottom:242.639100px;}
.y31_c01009{bottom:242.998260px;}
.y66_c01009{bottom:261.718500px;}
.y67_c01009{bottom:261.719100px;}
.y30_c01009{bottom:262.078695px;}
.y65_c01009{bottom:280.798950px;}
.y2f_c01009{bottom:281.159160px;}
.y63_c01009{bottom:299.878260px;}
.y2e_c01009{bottom:299.878710px;}
.y64_c01009{bottom:299.878950px;}
.y62_c01009{bottom:319.319415px;}
.y2d_c01009{bottom:319.319850px;}
.y2b_c01009{bottom:338.399280px;}
.y2c_c01009{bottom:338.399850px;}
.y61_c01009{bottom:357.479685px;}
.y2a_c01009{bottom:357.837885px;}
.y29_c01009{bottom:376.918320px;}
.y60_c01009{bottom:376.918995px;}
.y28_c01009{bottom:395.999955px;}
.y5f_c01009{bottom:396.000600px;}
.y5e_c01009{bottom:415.080030px;}
.y27_c01009{bottom:415.080390px;}
.y5d_c01009{bottom:434.160465px;}
.y26_c01009{bottom:434.519010px;}
.y5b_c01009{bottom:452.878215px;}
.y5c_c01009{bottom:452.879520px;}
.y25_c01009{bottom:453.239940px;}
.y24_c01009{bottom:473.039430px;}
.y5a_c01009{bottom:473.039775px;}
.y23_c01009{bottom:491.758980px;}
.y59_c01009{bottom:491.759325px;}
.y22_c01009{bottom:511.200135px;}
.y58_c01009{bottom:511.200465px;}
.y21_c01009{bottom:530.280585px;}
.y57_c01009{bottom:530.280915px;}
.y20_c01009{bottom:550.080090px;}
.y56_c01009{bottom:550.080420px;}
.y55_c01009{bottom:568.799520px;}
.y1f_c01009{bottom:569.160525px;}
.y1e_c01009{bottom:586.439250px;}
.y53_c01009{bottom:588.239385px;}
.y54_c01009{bottom:588.240420px;}
.y1d_c01009{bottom:607.318980px;}
.y52_c01009{bottom:607.319850px;}
.y1c_c01009{bottom:626.399415px;}
.y51_c01009{bottom:626.400285px;}
.y1b_c01009{bottom:645.118980px;}
.y50_c01009{bottom:645.119385px;}
.y4f_c01009{bottom:664.198785px;}
.y1a_c01009{bottom:664.560120px;}
.y4e_c01009{bottom:683.279235px;}
.y19_c01009{bottom:683.279685px;}
.y4d_c01009{bottom:702.720390px;}
.y18_c01009{bottom:703.079175px;}
.y4c_c01009{bottom:721.800825px;}
.y17_c01009{bottom:722.159640px;}
.y4b_c01009{bottom:741.600330px;}
.y16_c01009{bottom:741.600765px;}
.y4a_c01009{bottom:760.680765px;}
.y15_c01009{bottom:761.039385px;}
.y13_c01009{bottom:780.115980px;}
.y14_c01009{bottom:780.119385px;}
.y49_c01009{bottom:798.840615px;}
.y12_c01009{bottom:799.196415px;}
.y48_c01009{bottom:818.640105px;}
.y11_c01009{bottom:818.995920px;}
.y47_c01009{bottom:837.720150px;}
.y46_c01009{bottom:837.720180px;}
.y10_c01009{bottom:838.076370px;}
.y45_c01009{bottom:856.800615px;}
.yf_c01009{bottom:857.156820px;}
.ye_c01009{bottom:876.237255px;}
.y44_c01009{bottom:876.239220px;}
.y43_c01009{bottom:895.680090px;}
.yd_c01009{bottom:896.036775px;}
.y42_c01009{bottom:914.399235px;}
.y41_c01009{bottom:914.399460px;}
.yc_c01009{bottom:914.757690px;}
.y40_c01009{bottom:933.840585px;}
.yb_c01009{bottom:934.196295px;}
.ya_c01009{bottom:953.276760px;}
.y3f_c01009{bottom:953.279205px;}
.y9_c01009{bottom:972.357195px;}
.y3d_c01009{bottom:972.358455px;}
.y3e_c01009{bottom:972.359250px;}
.y3c_c01009{bottom:991.079385px;}
.y8_c01009{bottom:991.437660px;}
.y3b_c01009{bottom:1010.159820px;}
.y7_c01009{bottom:1010.878785px;}
.y3a_c01009{bottom:1029.239865px;}
.y39_c01009{bottom:1029.240465px;}
.y6_c01009{bottom:1029.598350px;}
.y38_c01009{bottom:1048.679070px;}
.y5_c01009{bottom:1049.039490px;}
.y37_c01009{bottom:1067.759040px;}
.y4_c01009{bottom:1068.119940px;}
.y3_c01009{bottom:1086.479640px;}
.y36_c01009{bottom:1087.199415px;}
.y35_c01009{bottom:1106.279850px;}
.y2_c01009{bottom:1107.000000px;}
.y1_c01009{bottom:1146.239220px;}
.hc_c01009{height:44.586914px;}
.hd_c01009{height:45.369141px;}
.hb_c01009{height:46.107422px;}
.h2_c01009{height:46.151367px;}
.ha_c01009{height:48.498047px;}
.h5_c01009{height:48.581543px;}
.h1_c01009{height:50.402344px;}
.h6_c01009{height:51.884766px;}
.h4_c01009{height:52.625977px;}
.h9_c01009{height:53.367188px;}
.he_c01009{height:54.849609px;}
.h3_c01009{height:55.590820px;}
.h8_c01009{height:59.593140px;}
.h7_c01009{height:62.578125px;}
.h0_c01009{height:1263.000000px;}
.w0_c01009{width:892.500000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:141.479715px;}
.x9_c01009{left:211.316580px;}
.x6_c01009{left:212.397750px;}
.x3_c01009{left:213.478635px;}
.x4_c01009{left:239.399250px;}
.x5_c01009{left:252.358635px;}
.xa_c01009{left:257.399850px;}
.x7_c01009{left:263.879535px;}
.x8_c01009{left:270.359250px;}
.xf_c01009{left:413.279505px;}
.xb_c01009{left:414.358665px;}
.xe_c01009{left:446.038920px;}
.xc_c01009{left:447.119985px;}
.x10_c01009{left:490.678530px;}
.xd_c01009{left:491.759535px;}
.x2_c01009{left:551.519070px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.lsb_c01009{letter-spacing:-10.666667pt;}
.lsf_c01009{letter-spacing:-7.454200pt;}
.ls15_c01009{letter-spacing:-6.687120pt;}
.ls10_c01009{letter-spacing:-4.145800pt;}
.lsd_c01009{letter-spacing:-4.028400pt;}
.ls7_c01009{letter-spacing:-3.717333pt;}
.ls16_c01009{letter-spacing:-3.236267pt;}
.lsa_c01009{letter-spacing:-2.973867pt;}
.ls12_c01009{letter-spacing:-2.533140pt;}
.ls8_c01009{letter-spacing:-2.229947pt;}
.ls5_c01009{letter-spacing:-1.575727pt;}
.ls11_c01009{letter-spacing:-1.553007pt;}
.lsc_c01009{letter-spacing:-1.531133pt;}
.ls3_c01009{letter-spacing:-1.487387pt;}
.lse_c01009{letter-spacing:-0.816000pt;}
.ls6_c01009{letter-spacing:-0.770000pt;}
.ls9_c01009{letter-spacing:-0.765333pt;}
.ls2_c01009{letter-spacing:-0.743467pt;}
.ls4_c01009{letter-spacing:0.000000pt;}
.ls13_c01009{letter-spacing:0.823600pt;}
.ls14_c01009{letter-spacing:0.859200pt;}
.ls0_c01009{letter-spacing:2.914600pt;}
.ls1_c01009{letter-spacing:3.642660pt;}
.ws0_c01009{word-spacing:0.000000pt;}
._c_c01009{margin-left:-9.184266pt;}
._d_c01009{margin-left:-7.617130pt;}
._6_c01009{margin-left:-5.526445pt;}
._9_c01009{margin-left:-4.611522pt;}
._b_c01009{margin-left:-3.209481pt;}
._2_c01009{margin-left:-1.766097pt;}
._7_c01009{width:1.200189pt;}
._a_c01009{width:3.455151pt;}
._8_c01009{width:5.176918pt;}
._e_c01009{width:18.191955pt;}
._14_c01009{width:19.485374pt;}
._15_c01009{width:21.170934pt;}
._10_c01009{width:22.593836pt;}
._f_c01009{width:23.935993pt;}
._11_c01009{width:27.002109pt;}
._17_c01009{width:28.539756pt;}
._13_c01009{width:29.972289pt;}
._12_c01009{width:31.515436pt;}
._18_c01009{width:32.939051pt;}
._0_c01009{width:47.264444pt;}
._16_c01009{width:49.910551pt;}
._5_c01009{width:59.589140pt;}
._4_c01009{width:61.005082pt;}
._3_c01009{width:63.228217pt;}
._1_c01009{width:616.214387pt;}
.fsb_c01009{font-size:38.000000pt;}
.fsc_c01009{font-size:38.666667pt;}
.fs1_c01009{font-size:39.333333pt;}
.fsa_c01009{font-size:40.666667pt;}
.fs9_c01009{font-size:41.333333pt;}
.fs4_c01009{font-size:44.000000pt;}
.fs0_c01009{font-size:45.333333pt;}
.fs5_c01009{font-size:46.666667pt;}
.fs3_c01009{font-size:47.333333pt;}
.fs8_c01009{font-size:48.000000pt;}
.fsd_c01009{font-size:49.333333pt;}
.fs2_c01009{font-size:50.000000pt;}
.fs6_c01009{font-size:53.333333pt;}
.fs7_c01009{font-size:54.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y6c_c01009{bottom:164.799107pt;}
.y34_c01009{bottom:165.118627pt;}
.y6b_c01009{bottom:182.080120pt;}
.y33_c01009{bottom:182.397400pt;}
.y6a_c01009{bottom:198.399867pt;}
.y69_c01009{bottom:198.400427pt;}
.y32_c01009{bottom:198.717427pt;}
.y68_c01009{bottom:215.679200pt;}
.y31_c01009{bottom:215.998453pt;}
.y66_c01009{bottom:232.638667pt;}
.y67_c01009{bottom:232.639200pt;}
.y30_c01009{bottom:232.958840pt;}
.y65_c01009{bottom:249.599067pt;}
.y2f_c01009{bottom:249.919253pt;}
.y63_c01009{bottom:266.558453pt;}
.y2e_c01009{bottom:266.558853pt;}
.y64_c01009{bottom:266.559067pt;}
.y62_c01009{bottom:283.839480pt;}
.y2d_c01009{bottom:283.839867pt;}
.y2b_c01009{bottom:300.799360pt;}
.y2c_c01009{bottom:300.799867pt;}
.y61_c01009{bottom:317.759720pt;}
.y2a_c01009{bottom:318.078120pt;}
.y29_c01009{bottom:335.038507pt;}
.y60_c01009{bottom:335.039107pt;}
.y28_c01009{bottom:351.999960pt;}
.y5f_c01009{bottom:352.000533pt;}
.y5e_c01009{bottom:368.960027pt;}
.y27_c01009{bottom:368.960347pt;}
.y5d_c01009{bottom:385.920413pt;}
.y26_c01009{bottom:386.239120pt;}
.y5b_c01009{bottom:402.558413pt;}
.y5c_c01009{bottom:402.559573pt;}
.y25_c01009{bottom:402.879947pt;}
.y24_c01009{bottom:420.479493pt;}
.y5a_c01009{bottom:420.479800pt;}
.y23_c01009{bottom:437.119093pt;}
.y59_c01009{bottom:437.119400pt;}
.y22_c01009{bottom:454.400120pt;}
.y58_c01009{bottom:454.400413pt;}
.y21_c01009{bottom:471.360520pt;}
.y57_c01009{bottom:471.360813pt;}
.y20_c01009{bottom:488.960080pt;}
.y56_c01009{bottom:488.960373pt;}
.y55_c01009{bottom:505.599573pt;}
.y1f_c01009{bottom:505.920467pt;}
.y1e_c01009{bottom:521.279333pt;}
.y53_c01009{bottom:522.879453pt;}
.y54_c01009{bottom:522.880373pt;}
.y1d_c01009{bottom:539.839093pt;}
.y52_c01009{bottom:539.839867pt;}
.y1c_c01009{bottom:556.799480pt;}
.y51_c01009{bottom:556.800253pt;}
.y1b_c01009{bottom:573.439093pt;}
.y50_c01009{bottom:573.439453pt;}
.y4f_c01009{bottom:590.398920pt;}
.y1a_c01009{bottom:590.720107pt;}
.y4e_c01009{bottom:607.359320pt;}
.y19_c01009{bottom:607.359720pt;}
.y4d_c01009{bottom:624.640347pt;}
.y18_c01009{bottom:624.959267pt;}
.y4c_c01009{bottom:641.600733pt;}
.y17_c01009{bottom:641.919680pt;}
.y4b_c01009{bottom:659.200293pt;}
.y16_c01009{bottom:659.200680pt;}
.y4a_c01009{bottom:676.160680pt;}
.y15_c01009{bottom:676.479453pt;}
.y13_c01009{bottom:693.436427pt;}
.y14_c01009{bottom:693.439453pt;}
.y49_c01009{bottom:710.080547pt;}
.y12_c01009{bottom:710.396813pt;}
.y48_c01009{bottom:727.680093pt;}
.y11_c01009{bottom:727.996373pt;}
.y47_c01009{bottom:744.640133pt;}
.y46_c01009{bottom:744.640160pt;}
.y10_c01009{bottom:744.956773pt;}
.y45_c01009{bottom:761.600547pt;}
.yf_c01009{bottom:761.917173pt;}
.ye_c01009{bottom:778.877560pt;}
.y44_c01009{bottom:778.879307pt;}
.y43_c01009{bottom:796.160080pt;}
.yd_c01009{bottom:796.477133pt;}
.y42_c01009{bottom:812.799320pt;}
.y41_c01009{bottom:812.799520pt;}
.yc_c01009{bottom:813.117947pt;}
.y40_c01009{bottom:830.080520pt;}
.yb_c01009{bottom:830.396707pt;}
.ya_c01009{bottom:847.357120pt;}
.y3f_c01009{bottom:847.359293pt;}
.y9_c01009{bottom:864.317507pt;}
.y3d_c01009{bottom:864.318627pt;}
.y3e_c01009{bottom:864.319333pt;}
.y3c_c01009{bottom:880.959453pt;}
.y8_c01009{bottom:881.277920pt;}
.y3b_c01009{bottom:897.919840pt;}
.y7_c01009{bottom:898.558920pt;}
.y3a_c01009{bottom:914.879880pt;}
.y39_c01009{bottom:914.880413pt;}
.y6_c01009{bottom:915.198533pt;}
.y38_c01009{bottom:932.159173pt;}
.y5_c01009{bottom:932.479547pt;}
.y37_c01009{bottom:949.119147pt;}
.y4_c01009{bottom:949.439947pt;}
.y3_c01009{bottom:965.759680pt;}
.y36_c01009{bottom:966.399480pt;}
.y35_c01009{bottom:983.359867pt;}
.y2_c01009{bottom:984.000000pt;}
.y1_c01009{bottom:1018.879307pt;}
.hc_c01009{height:39.632812pt;}
.hd_c01009{height:40.328125pt;}
.hb_c01009{height:40.984375pt;}
.h2_c01009{height:41.023438pt;}
.ha_c01009{height:43.109375pt;}
.h5_c01009{height:43.183594pt;}
.h1_c01009{height:44.802083pt;}
.h6_c01009{height:46.119792pt;}
.h4_c01009{height:46.778646pt;}
.h9_c01009{height:47.437500pt;}
.he_c01009{height:48.755208pt;}
.h3_c01009{height:49.414063pt;}
.h8_c01009{height:52.971680pt;}
.h7_c01009{height:55.625000pt;}
.h0_c01009{height:1122.666667pt;}
.w0_c01009{width:793.333333pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:125.759747pt;}
.x9_c01009{left:187.836960pt;}
.x6_c01009{left:188.798000pt;}
.x3_c01009{left:189.758787pt;}
.x4_c01009{left:212.799333pt;}
.x5_c01009{left:224.318787pt;}
.xa_c01009{left:228.799867pt;}
.x7_c01009{left:234.559587pt;}
.x8_c01009{left:240.319333pt;}
.xf_c01009{left:367.359560pt;}
.xb_c01009{left:368.318813pt;}
.xe_c01009{left:396.479040pt;}
.xc_c01009{left:397.439987pt;}
.x10_c01009{left:436.158693pt;}
.xd_c01009{left:437.119587pt;}
.x2_c01009{left:490.239173pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_ef602f09a39bcd865fe1df3c.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_8e493f48202ac2d9a807bd11.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_3cea32f3d961099bbd3268d0.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01010;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:1.432129;font-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_c01010{transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);}
.m11_c01010{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);}
.m12_c01010{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m14_c01010{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.m13_c01010{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m3_c01010{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m16_c01010{transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194853,0.000000,0.000000,0.250000,0,0);}
.mc_c01010{transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);}
.m10_c01010{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m18_c01010{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m6_c01010{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m8_c01010{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m4_c01010{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m1_c01010{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m5_c01010{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m15_c01010{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m9_c01010{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.md_c01010{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m0_c01010{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m2_c01010{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.mf_c01010{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m19_c01010{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m7_c01010{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.me_c01010{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.ma_c01010{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m17_c01010{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.lse_c01010{letter-spacing:-4.832850px;}
.lsa_c01010{letter-spacing:-4.308150px;}
.ls12_c01010{letter-spacing:-4.185135px;}
.ls8_c01010{letter-spacing:-4.182000px;}
.ls14_c01010{letter-spacing:-4.140300px;}
.ls13_c01010{letter-spacing:-3.960600px;}
.ls17_c01010{letter-spacing:-3.889620px;}
.ls6_c01010{letter-spacing:-3.345600px;}
.ls7_c01010{letter-spacing:-3.317303px;}
.ls18_c01010{letter-spacing:-3.234375px;}
.ls15_c01010{letter-spacing:-2.730045px;}
.ls9_c01010{letter-spacing:-2.603505px;}
.lsf_c01010{letter-spacing:-2.524800px;}
.ls5_c01010{letter-spacing:-2.508690px;}
.ls10_c01010{letter-spacing:-2.356695px;}
.ls11_c01010{letter-spacing:-1.889528px;}
.ls16_c01010{letter-spacing:-1.697790px;}
.ls2_c01010{letter-spacing:-1.673310px;}
.lsc_c01010{letter-spacing:-0.888743px;}
.ls4_c01010{letter-spacing:-0.864300px;}
.ls1_c01010{letter-spacing:-0.836400px;}
.ls3_c01010{letter-spacing:0.000000px;}
.lsd_c01010{letter-spacing:0.836400px;}
.lsb_c01010{letter-spacing:1.673310px;}
.ls0_c01010{letter-spacing:2.508690px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01010{word-spacing:0.000000px;}
._14_c01010{margin-left:-21.070984px;}
._19_c01010{margin-left:-11.068296px;}
._17_c01010{margin-left:-8.690132px;}
._18_c01010{margin-left:-7.585447px;}
._13_c01010{margin-left:-6.217251px;}
._a_c01010{margin-left:-5.212300px;}
._15_c01010{margin-left:-3.526056px;}
._2_c01010{margin-left:-1.987796px;}
._6_c01010{width:1.410727px;}
._1b_c01010{width:2.926673px;}
._1a_c01010{width:6.057270px;}
._16_c01010{width:7.796437px;}
._11_c01010{width:22.077616px;}
._1e_c01010{width:23.679116px;}
._e_c01010{width:25.487476px;}
._f_c01010{width:27.099076px;}
._12_c01010{width:30.307561px;}
._1c_c01010{width:32.077997px;}
._1d_c01010{width:33.737403px;}
._1f_c01010{width:35.320460px;}
._0_c01010{width:53.178051px;}
._10_c01010{width:56.025766px;}
._20_c01010{width:57.687714px;}
._3_c01010{width:58.842750px;}
._4_c01010{width:60.501000px;}
._c_c01010{width:64.330263px;}
._9_c01010{width:548.607602px;}
._d_c01010{width:566.727651px;}
._8_c01010{width:598.092083px;}
._7_c01010{width:657.950967px;}
._b_c01010{width:661.158582px;}
._1_c01010{width:691.630188px;}
._5_c01010{width:717.348459px;}
.fc0_c01010{color:transparent;}
.fsc_c01010{font-size:42.000000px;}
.fs7_c01010{font-size:43.500000px;}
.fsb_c01010{font-size:47.250000px;}
.fs8_c01010{font-size:48.000000px;}
.fs9_c01010{font-size:49.500000px;}
.fs1_c01010{font-size:50.250000px;}
.fs0_c01010{font-size:51.000000px;}
.fse_c01010{font-size:51.750000px;}
.fs6_c01010{font-size:53.250000px;}
.fs2_c01010{font-size:54.750000px;}
.fs4_c01010{font-size:55.500000px;}
.fs3_c01010{font-size:56.250000px;}
.fs5_c01010{font-size:57.750000px;}
.fsd_c01010{font-size:58.500000px;}
.fsa_c01010{font-size:68.250000px;}
.y0_c01010{bottom:0.000000px;}
.y67_c01010{bottom:183.238785px;}
.y41_c01010{bottom:183.598230px;}
.y66_c01010{bottom:202.318800px;}
.y40_c01010{bottom:202.678665px;}
.y3f_c01010{bottom:221.398230px;}
.y65_c01010{bottom:221.398635px;}
.y64_c01010{bottom:240.478710px;}
.y3e_c01010{bottom:240.839385px;}
.y3d_c01010{bottom:259.560285px;}
.y63_c01010{bottom:259.560330px;}
.y62_c01010{bottom:278.998950px;}
.y3c_c01010{bottom:279.358635px;}
.y3b_c01010{bottom:298.078560px;}
.y61_c01010{bottom:298.079385px;}
.y5f_c01010{bottom:317.516595px;}
.y3a_c01010{bottom:317.517180px;}
.y60_c01010{bottom:317.518635px;}
.y39_c01010{bottom:336.598800px;}
.y5e_c01010{bottom:336.957735px;}
.y38_c01010{bottom:355.679235px;}
.y5d_c01010{bottom:356.038200px;}
.y5c_c01010{bottom:374.759100px;}
.y37_c01010{bottom:374.759700px;}
.y5b_c01010{bottom:393.839565px;}
.y36_c01010{bottom:393.840135px;}
.y35_c01010{bottom:412.918260px;}
.y5a_c01010{bottom:412.920000px;}
.y34_c01010{bottom:431.637810px;}
.y59_c01010{bottom:431.639100px;}
.y58_c01010{bottom:450.359850px;}
.y57_c01010{bottom:450.360060px;}
.y33_c01010{bottom:450.718260px;}
.y32_c01010{bottom:470.517765px;}
.y56_c01010{bottom:470.519070px;}
.y55_c01010{bottom:489.599070px;}
.y31_c01010{bottom:489.958905px;}
.y54_c01010{bottom:509.395425px;}
.y30_c01010{bottom:509.397510px;}
.y53_c01010{bottom:528.475875px;}
.y2f_c01010{bottom:528.477975px;}
.y52_c01010{bottom:547.556325px;}
.y2e_c01010{bottom:547.919100px;}
.y51_c01010{bottom:566.997465px;}
.y2d_c01010{bottom:566.999565px;}
.y2c_c01010{bottom:586.080000px;}
.y50_c01010{bottom:586.436070px;}
.y2a_c01010{bottom:605.156985px;}
.y4f_c01010{bottom:605.157000px;}
.y2b_c01010{bottom:605.159820px;}
.y29_c01010{bottom:623.876535px;}
.y4e_c01010{bottom:624.237435px;}
.y28_c01010{bottom:642.957000px;}
.y4d_c01010{bottom:662.037465px;}
.y27_c01010{bottom:662.398125px;}
.y26_c01010{bottom:681.117690px;}
.y4c_c01010{bottom:681.117900px;}
.y25_c01010{bottom:700.558845px;}
.y4b_c01010{bottom:700.559055px;}
.y24_c01010{bottom:719.639280px;}
.y4a_c01010{bottom:719.639490px;}
.y23_c01010{bottom:739.438800px;}
.y49_c01010{bottom:739.439010px;}
.y48_c01010{bottom:758.519445px;}
.y22_c01010{bottom:758.877405px;}
.y21_c01010{bottom:778.318545px;}
.y47_c01010{bottom:778.318950px;}
.y20_c01010{bottom:797.038095px;}
.y46_c01010{bottom:797.038515px;}
.y1f_c01010{bottom:816.479250px;}
.y45_c01010{bottom:816.479640px;}
.y1e_c01010{bottom:835.559685px;}
.y1c_c01010{bottom:854.639070px;}
.y1d_c01010{bottom:854.639655px;}
.y44_c01010{bottom:873.717270px;}
.y1b_c01010{bottom:873.719520px;}
.y43_c01010{bottom:892.797705px;}
.y1a_c01010{bottom:893.158815px;}
.y42_c01010{bottom:911.878170px;}
.y19_c01010{bottom:912.238770px;}
.y18_c01010{bottom:931.318815px;}
.y17_c01010{bottom:931.318995px;}
.yd_c01010{bottom:931.679715px;}
.yc_c01010{bottom:950.759490px;}
.y16_c01010{bottom:950.760135px;}
.yb_c01010{bottom:970.559190px;}
.y15_c01010{bottom:970.559640px;}
.y14_c01010{bottom:988.919685px;}
.y9_c01010{bottom:989.278635px;}
.ya_c01010{bottom:989.278755px;}
.y13_c01010{bottom:1008.358290px;}
.y8_c01010{bottom:1008.359100px;}
.y12_c01010{bottom:1027.079205px;}
.y7_c01010{bottom:1027.080000px;}
.y11_c01010{bottom:1046.517810px;}
.y6_c01010{bottom:1046.518620px;}
.y5_c01010{bottom:1046.518710px;}
.y10_c01010{bottom:1065.599445px;}
.y4_c01010{bottom:1065.600330px;}
.yf_c01010{bottom:1084.318995px;}
.y3_c01010{bottom:1084.680765px;}
.ye_c01010{bottom:1103.760135px;}
.y2_c01010{bottom:1104.119385px;}
.y1_c01010{bottom:1142.999355px;}
.hd_c01010{height:43.804688px;}
.h8_c01010{height:45.369141px;}
.hc_c01010{height:47.619141px;}
.h9_c01010{height:48.375000px;}
.ha_c01010{height:48.919922px;}
.h2_c01010{height:49.661133px;}
.h1_c01010{height:50.402344px;}
.h10_c01010{height:51.143555px;}
.h7_c01010{height:52.625977px;}
.h3_c01010{height:54.108398px;}
.he_c01010{height:54.443115px;}
.h5_c01010{height:54.849609px;}
.h4_c01010{height:55.590820px;}
.h6_c01010{height:56.650269px;}
.hf_c01010{height:57.814453px;}
.hb_c01010{height:67.450195px;}
.h0_c01010{height:1263.000000px;}
.w0_c01010{width:892.500000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:133.198785px;}
.x10_c01010{left:203.759100px;}
.x4_c01010{left:204.839760px;}
.x3_c01010{left:205.919535px;}
.x13_c01010{left:236.159385px;}
.x5_c01010{left:237.238785px;}
.xf_c01010{left:249.479685px;}
.x9_c01010{left:256.318800px;}
.x11_c01010{left:268.918950px;}
.xa_c01010{left:275.759535px;}
.x12_c01010{left:281.878350px;}
.xb_c01010{left:303.479685px;}
.x7_c01010{left:314.998950px;}
.x8_c01010{left:327.239850px;}
.x14_c01010{left:404.637630px;}
.x6_c01010{left:405.718500px;}
.xd_c01010{left:437.398710px;}
.xc_c01010{left:438.479685px;}
.xe_c01010{left:482.758530px;}
.x2_c01010{left:542.878920px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.lse_c01010{letter-spacing:-4.295867pt;}
.lsa_c01010{letter-spacing:-3.829467pt;}
.ls12_c01010{letter-spacing:-3.720120pt;}
.ls8_c01010{letter-spacing:-3.717333pt;}
.ls14_c01010{letter-spacing:-3.680267pt;}
.ls13_c01010{letter-spacing:-3.520533pt;}
.ls17_c01010{letter-spacing:-3.457440pt;}
.ls6_c01010{letter-spacing:-2.973867pt;}
.ls7_c01010{letter-spacing:-2.948713pt;}
.ls18_c01010{letter-spacing:-2.875000pt;}
.ls15_c01010{letter-spacing:-2.426707pt;}
.ls9_c01010{letter-spacing:-2.314227pt;}
.lsf_c01010{letter-spacing:-2.244267pt;}
.ls5_c01010{letter-spacing:-2.229947pt;}
.ls10_c01010{letter-spacing:-2.094840pt;}
.ls11_c01010{letter-spacing:-1.679580pt;}
.ls16_c01010{letter-spacing:-1.509147pt;}
.ls2_c01010{letter-spacing:-1.487387pt;}
.lsc_c01010{letter-spacing:-0.789993pt;}
.ls4_c01010{letter-spacing:-0.768267pt;}
.ls1_c01010{letter-spacing:-0.743467pt;}
.ls3_c01010{letter-spacing:0.000000pt;}
.lsd_c01010{letter-spacing:0.743467pt;}
.lsb_c01010{letter-spacing:1.487387pt;}
.ls0_c01010{letter-spacing:2.229947pt;}
.ws0_c01010{word-spacing:0.000000pt;}
._14_c01010{margin-left:-18.729764pt;}
._19_c01010{margin-left:-9.838485pt;}
._17_c01010{margin-left:-7.724562pt;}
._18_c01010{margin-left:-6.742620pt;}
._13_c01010{margin-left:-5.526445pt;}
._a_c01010{margin-left:-4.633156pt;}
._15_c01010{margin-left:-3.134272pt;}
._2_c01010{margin-left:-1.766930pt;}
._6_c01010{width:1.253979pt;}
._1b_c01010{width:2.601487pt;}
._1a_c01010{width:5.384240pt;}
._16_c01010{width:6.930166pt;}
._11_c01010{width:19.624547pt;}
._1e_c01010{width:21.048103pt;}
._e_c01010{width:22.655534pt;}
._f_c01010{width:24.088067pt;}
._12_c01010{width:26.940054pt;}
._1c_c01010{width:28.513775pt;}
._1d_c01010{width:29.988803pt;}
._1f_c01010{width:31.395964pt;}
._0_c01010{width:47.269379pt;}
._10_c01010{width:49.800681pt;}
._20_c01010{width:51.277968pt;}
._3_c01010{width:52.304667pt;}
._4_c01010{width:53.778667pt;}
._c_c01010{width:57.182456pt;}
._9_c01010{width:487.651202pt;}
._d_c01010{width:503.757912pt;}
._8_c01010{width:531.637407pt;}
._7_c01010{width:584.845304pt;}
._b_c01010{width:587.696518pt;}
._1_c01010{width:614.782389pt;}
._5_c01010{width:637.643075pt;}
.fsc_c01010{font-size:37.333333pt;}
.fs7_c01010{font-size:38.666667pt;}
.fsb_c01010{font-size:42.000000pt;}
.fs8_c01010{font-size:42.666667pt;}
.fs9_c01010{font-size:44.000000pt;}
.fs1_c01010{font-size:44.666667pt;}
.fs0_c01010{font-size:45.333333pt;}
.fse_c01010{font-size:46.000000pt;}
.fs6_c01010{font-size:47.333333pt;}
.fs2_c01010{font-size:48.666667pt;}
.fs4_c01010{font-size:49.333333pt;}
.fs3_c01010{font-size:50.000000pt;}
.fs5_c01010{font-size:51.333333pt;}
.fsd_c01010{font-size:52.000000pt;}
.fsa_c01010{font-size:60.666667pt;}
.y0_c01010{bottom:0.000000pt;}
.y67_c01010{bottom:162.878920pt;}
.y41_c01010{bottom:163.198427pt;}
.y66_c01010{bottom:179.838933pt;}
.y40_c01010{bottom:180.158813pt;}
.y3f_c01010{bottom:196.798427pt;}
.y65_c01010{bottom:196.798787pt;}
.y64_c01010{bottom:213.758853pt;}
.y3e_c01010{bottom:214.079453pt;}
.y3d_c01010{bottom:230.720253pt;}
.y63_c01010{bottom:230.720293pt;}
.y62_c01010{bottom:247.999067pt;}
.y3c_c01010{bottom:248.318787pt;}
.y3b_c01010{bottom:264.958720pt;}
.y61_c01010{bottom:264.959453pt;}
.y5f_c01010{bottom:282.236973pt;}
.y3a_c01010{bottom:282.237493pt;}
.y60_c01010{bottom:282.238787pt;}
.y39_c01010{bottom:299.198933pt;}
.y5e_c01010{bottom:299.517987pt;}
.y38_c01010{bottom:316.159320pt;}
.y5d_c01010{bottom:316.478400pt;}
.y5c_c01010{bottom:333.119200pt;}
.y37_c01010{bottom:333.119733pt;}
.y5b_c01010{bottom:350.079613pt;}
.y36_c01010{bottom:350.080120pt;}
.y35_c01010{bottom:367.038453pt;}
.y5a_c01010{bottom:367.040000pt;}
.y34_c01010{bottom:383.678053pt;}
.y59_c01010{bottom:383.679200pt;}
.y58_c01010{bottom:400.319867pt;}
.y57_c01010{bottom:400.320053pt;}
.y33_c01010{bottom:400.638453pt;}
.y32_c01010{bottom:418.238013pt;}
.y56_c01010{bottom:418.239173pt;}
.y55_c01010{bottom:435.199173pt;}
.y31_c01010{bottom:435.519027pt;}
.y54_c01010{bottom:452.795933pt;}
.y30_c01010{bottom:452.797787pt;}
.y53_c01010{bottom:469.756333pt;}
.y2f_c01010{bottom:469.758200pt;}
.y52_c01010{bottom:486.716733pt;}
.y2e_c01010{bottom:487.039200pt;}
.y51_c01010{bottom:503.997747pt;}
.y2d_c01010{bottom:503.999613pt;}
.y2c_c01010{bottom:520.960000pt;}
.y50_c01010{bottom:521.276507pt;}
.y2a_c01010{bottom:537.917320pt;}
.y4f_c01010{bottom:537.917333pt;}
.y2b_c01010{bottom:537.919840pt;}
.y29_c01010{bottom:554.556920pt;}
.y4e_c01010{bottom:554.877720pt;}
.y28_c01010{bottom:571.517333pt;}
.y4d_c01010{bottom:588.477747pt;}
.y27_c01010{bottom:588.798333pt;}
.y26_c01010{bottom:605.437947pt;}
.y4c_c01010{bottom:605.438133pt;}
.y25_c01010{bottom:622.718973pt;}
.y4b_c01010{bottom:622.719160pt;}
.y24_c01010{bottom:639.679360pt;}
.y4a_c01010{bottom:639.679547pt;}
.y23_c01010{bottom:657.278933pt;}
.y49_c01010{bottom:657.279120pt;}
.y48_c01010{bottom:674.239507pt;}
.y22_c01010{bottom:674.557693pt;}
.y21_c01010{bottom:691.838707pt;}
.y47_c01010{bottom:691.839067pt;}
.y20_c01010{bottom:708.478307pt;}
.y46_c01010{bottom:708.478680pt;}
.y1f_c01010{bottom:725.759333pt;}
.y45_c01010{bottom:725.759680pt;}
.y1e_c01010{bottom:742.719720pt;}
.y1c_c01010{bottom:759.679173pt;}
.y1d_c01010{bottom:759.679693pt;}
.y44_c01010{bottom:776.637573pt;}
.y1b_c01010{bottom:776.639573pt;}
.y43_c01010{bottom:793.597960pt;}
.y1a_c01010{bottom:793.918947pt;}
.y42_c01010{bottom:810.558373pt;}
.y19_c01010{bottom:810.878907pt;}
.y18_c01010{bottom:827.838947pt;}
.y17_c01010{bottom:827.839107pt;}
.yd_c01010{bottom:828.159747pt;}
.yc_c01010{bottom:845.119547pt;}
.y16_c01010{bottom:845.120120pt;}
.yb_c01010{bottom:862.719280pt;}
.y15_c01010{bottom:862.719680pt;}
.y14_c01010{bottom:879.039720pt;}
.y9_c01010{bottom:879.358787pt;}
.ya_c01010{bottom:879.358893pt;}
.y13_c01010{bottom:896.318480pt;}
.y8_c01010{bottom:896.319200pt;}
.y12_c01010{bottom:912.959293pt;}
.y7_c01010{bottom:912.960000pt;}
.y11_c01010{bottom:930.238053pt;}
.y6_c01010{bottom:930.238773pt;}
.y5_c01010{bottom:930.238853pt;}
.y10_c01010{bottom:947.199507pt;}
.y4_c01010{bottom:947.200293pt;}
.yf_c01010{bottom:963.839107pt;}
.y3_c01010{bottom:964.160680pt;}
.ye_c01010{bottom:981.120120pt;}
.y2_c01010{bottom:981.439453pt;}
.y1_c01010{bottom:1015.999427pt;}
.hd_c01010{height:38.937500pt;}
.h8_c01010{height:40.328125pt;}
.hc_c01010{height:42.328125pt;}
.h9_c01010{height:43.000000pt;}
.ha_c01010{height:43.484375pt;}
.h2_c01010{height:44.143229pt;}
.h1_c01010{height:44.802083pt;}
.h10_c01010{height:45.460938pt;}
.h7_c01010{height:46.778646pt;}
.h3_c01010{height:48.096354pt;}
.he_c01010{height:48.393880pt;}
.h5_c01010{height:48.755208pt;}
.h4_c01010{height:49.414063pt;}
.h6_c01010{height:50.355794pt;}
.hf_c01010{height:51.390625pt;}
.hb_c01010{height:59.955729pt;}
.h0_c01010{height:1122.666667pt;}
.w0_c01010{width:793.333333pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:118.398920pt;}
.x10_c01010{left:181.119200pt;}
.x4_c01010{left:182.079787pt;}
.x3_c01010{left:183.039587pt;}
.x13_c01010{left:209.919453pt;}
.x5_c01010{left:210.878920pt;}
.xf_c01010{left:221.759720pt;}
.x9_c01010{left:227.838933pt;}
.x11_c01010{left:239.039067pt;}
.xa_c01010{left:245.119587pt;}
.x12_c01010{left:250.558533pt;}
.xb_c01010{left:269.759720pt;}
.x7_c01010{left:279.999067pt;}
.x8_c01010{left:290.879867pt;}
.x14_c01010{left:359.677893pt;}
.x6_c01010{left:360.638667pt;}
.xd_c01010{left:388.798853pt;}
.xc_c01010{left:389.759720pt;}
.xe_c01010{left:429.118693pt;}
.x2_c01010{left:482.559040pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_c0136878c4d1477fb2b4b863.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_91366e629dbc9953f33cc2e4.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_8a0e6c2732ea060366e68129.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_cea4ae70c2f1ded7649fcc8a.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.364746;font-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_c01011{transform:matrix(0.154639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154639,0.000000,0.000000,0.250000,0,0);}
.me_c01011{transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);}
.m12_c01011{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m9_c01011{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m18_c01011{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m3_c01011{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_c01011{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m13_c01011{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m1_c01011{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m4_c01011{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.md_c01011{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m19_c01011{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m5_c01011{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.mf_c01011{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m15_c01011{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m10_c01011{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.mb_c01011{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m17_c01011{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m14_c01011{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.ma_c01011{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m1a_c01011{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m0_c01011{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m6_c01011{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m7_c01011{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m11_c01011{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m2_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01011{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.lsf_c01011{letter-spacing:-7.942860px;}
.ls12_c01011{letter-spacing:-6.751500px;}
.ls15_c01011{letter-spacing:-6.350400px;}
.ls10_c01011{letter-spacing:-6.060075px;}
.lsd_c01011{letter-spacing:-5.557140px;}
.lsc_c01011{letter-spacing:-5.546250px;}
.ls19_c01011{letter-spacing:-4.905600px;}
.ls3_c01011{letter-spacing:-4.762800px;}
.ls1b_c01011{letter-spacing:-4.140300px;}
.ls2_c01011{letter-spacing:-3.969000px;}
.lse_c01011{letter-spacing:-3.858750px;}
.ls5_c01011{letter-spacing:-3.750180px;}
.ls11_c01011{letter-spacing:-3.680843px;}
.ls18_c01011{letter-spacing:-3.366578px;}
.ls13_c01011{letter-spacing:-3.320460px;}
.ls4_c01011{letter-spacing:-3.175740px;}
.lsa_c01011{letter-spacing:-2.627625px;}
.ls16_c01011{letter-spacing:-2.598750px;}
.ls8_c01011{letter-spacing:-2.381400px;}
.ls14_c01011{letter-spacing:-1.784100px;}
.ls1c_c01011{letter-spacing:-1.722525px;}
.ls9_c01011{letter-spacing:-1.587600px;}
.ls17_c01011{letter-spacing:-0.851190px;}
.ls1a_c01011{letter-spacing:-0.848700px;}
.ls6_c01011{letter-spacing:-0.793260px;}
.lsb_c01011{letter-spacing:0.000000px;}
.ls0_c01011{letter-spacing:4.384950px;}
.ls1_c01011{letter-spacing:5.263800px;}
.ls7_c01011{letter-spacing:6.249375px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01011{word-spacing:0.000000px;}
._e_c01011{margin-left:-17.793127px;}
._11_c01011{margin-left:-14.525809px;}
._8_c01011{margin-left:-12.706835px;}
._9_c01011{margin-left:-10.963556px;}
._6_c01011{margin-left:-9.408166px;}
._a_c01011{margin-left:-7.727591px;}
._c_c01011{margin-left:-5.722729px;}
._2_c01011{margin-left:-3.839654px;}
._10_c01011{margin-left:-2.699492px;}
._d_c01011{margin-left:-1.538746px;}
._f_c01011{width:2.084527px;}
._b_c01011{width:7.608981px;}
._7_c01011{width:9.136609px;}
._1a_c01011{width:17.512009px;}
._13_c01011{width:20.001854px;}
._16_c01011{width:21.977619px;}
._12_c01011{width:23.797546px;}
._1c_c01011{width:25.164826px;}
._18_c01011{width:26.287264px;}
._1b_c01011{width:28.330560px;}
._17_c01011{width:29.853296px;}
._14_c01011{width:31.381814px;}
._19_c01011{width:33.026273px;}
._1f_c01011{width:36.077464px;}
._0_c01011{width:47.536454px;}
._15_c01011{width:50.576464px;}
._1d_c01011{width:52.384447px;}
._1e_c01011{width:53.924464px;}
._4_c01011{width:69.611728px;}
._5_c01011{width:71.250704px;}
._3_c01011{width:75.664467px;}
._1_c01011{width:657.325546px;}
.fc0_c01011{color:transparent;}
.fs2_c01011{font-size:42.000000px;}
.fs1_c01011{font-size:46.500000px;}
.fs5_c01011{font-size:49.500000px;}
.fse_c01011{font-size:50.250000px;}
.fsb_c01011{font-size:51.000000px;}
.fsd_c01011{font-size:51.750000px;}
.fs6_c01011{font-size:52.500000px;}
.fs0_c01011{font-size:54.000000px;}
.fsc_c01011{font-size:54.750000px;}
.fs9_c01011{font-size:55.500000px;}
.fs3_c01011{font-size:56.250000px;}
.fsa_c01011{font-size:57.000000px;}
.fs4_c01011{font-size:57.750000px;}
.fs8_c01011{font-size:60.750000px;}
.fs7_c01011{font-size:72.750000px;}
.y0_c01011{bottom:0.000000px;}
.y6b_c01011{bottom:184.321110px;}
.y3d_c01011{bottom:184.321650px;}
.y6a_c01011{bottom:203.400645px;}
.y3c_c01011{bottom:203.401200px;}
.y69_c01011{bottom:222.119700px;}
.y3b_c01011{bottom:222.120255px;}
.y68_c01011{bottom:241.199250px;}
.y3a_c01011{bottom:241.199805px;}
.y67_c01011{bottom:260.278800px;}
.y39_c01011{bottom:260.279340px;}
.y66_c01011{bottom:279.358635px;}
.y38_c01011{bottom:279.358890px;}
.y65_c01011{bottom:279.359940px;}
.y37_c01011{bottom:298.079385px;}
.y36_c01011{bottom:298.079835px;}
.y64_c01011{bottom:298.080435px;}
.y34_c01011{bottom:317.159310px;}
.y35_c01011{bottom:317.159385px;}
.y63_c01011{bottom:317.159985px;}
.y33_c01011{bottom:336.238860px;}
.y62_c01011{bottom:336.601245px;}
.y31_c01011{bottom:356.039010px;}
.y32_c01011{bottom:356.039385px;}
.y61_c01011{bottom:356.039835px;}
.y30_c01011{bottom:375.118560px;}
.y60_c01011{bottom:375.119385px;}
.y2f_c01011{bottom:394.559835px;}
.y5f_c01011{bottom:394.560285px;}
.y2e_c01011{bottom:413.278890px;}
.y5e_c01011{bottom:413.640150px;}
.y2d_c01011{bottom:432.720150px;}
.y5d_c01011{bottom:433.080225px;}
.y2b_c01011{bottom:451.438335px;}
.y2c_c01011{bottom:451.439250px;}
.y5c_c01011{bottom:451.800735px;}
.y2a_c01011{bottom:471.238860px;}
.y5b_c01011{bottom:471.239325px;}
.y29_c01011{bottom:490.318410px;}
.y5a_c01011{bottom:490.680585px;}
.y28_c01011{bottom:509.759670px;}
.y59_c01011{bottom:509.760135px;}
.y27_c01011{bottom:528.478725px;}
.y58_c01011{bottom:528.479235px;}
.y26_c01011{bottom:548.279250px;}
.y25_c01011{bottom:548.279715px;}
.y24_c01011{bottom:567.359250px;}
.y23_c01011{bottom:586.439250px;}
.y22_c01011{bottom:586.439535px;}
.y57_c01011{bottom:586.802745px;}
.y21_c01011{bottom:605.519070px;}
.y20_c01011{bottom:605.519535px;}
.y56_c01011{bottom:605.521800px;}
.y1f_c01011{bottom:624.599070px;}
.y55_c01011{bottom:624.963060px;}
.y1e_c01011{bottom:643.679070px;}
.y54_c01011{bottom:644.042610px;}
.y1d_c01011{bottom:663.119985px;}
.y1c_c01011{bottom:663.121215px;}
.y53_c01011{bottom:663.481200px;}
.y1b_c01011{bottom:682.200765px;}
.y52_c01011{bottom:682.201695px;}
.y1a_c01011{bottom:701.639355px;}
.y51_c01011{bottom:701.640285px;}
.y19_c01011{bottom:720.359850px;}
.y50_c01011{bottom:720.360780px;}
.y18_c01011{bottom:720.361860px;}
.y4f_c01011{bottom:739.799370px;}
.y17_c01011{bottom:739.800450px;}
.y4e_c01011{bottom:758.878920px;}
.y16_c01011{bottom:758.880000px;}
.y4d_c01011{bottom:778.319820px;}
.y15_c01011{bottom:778.321260px;}
.y4c_c01011{bottom:797.399865px;}
.y14_c01011{bottom:797.400810px;}
.y4b_c01011{bottom:797.402670px;}
.y13_c01011{bottom:816.839400px;}
.y4a_c01011{bottom:816.841260px;}
.y12_c01011{bottom:835.918950px;}
.y49_c01011{bottom:835.920795px;}
.y11_c01011{bottom:855.359805px;}
.y10_c01011{bottom:855.360630px;}
.y48_c01011{bottom:855.721320px;}
.yf_c01011{bottom:874.440165px;}
.y47_c01011{bottom:874.441815px;}
.ye_c01011{bottom:893.519715px;}
.y46_c01011{bottom:893.880405px;}
.yd_c01011{bottom:912.958920px;}
.y45_c01011{bottom:912.959955px;}
.y44_c01011{bottom:932.401215px;}
.yc_c01011{bottom:932.759040px;}
.y43_c01011{bottom:951.480765px;}
.yb_c01011{bottom:951.838905px;}
.ya_c01011{bottom:951.839820px;}
.y9_c01011{bottom:970.919355px;}
.y8_c01011{bottom:989.998905px;}
.y7_c01011{bottom:1009.078860px;}
.y42_c01011{bottom:1009.079265px;}
.y6_c01011{bottom:1028.158395px;}
.y41_c01011{bottom:1028.158815px;}
.y5_c01011{bottom:1047.599670px;}
.y4_c01011{bottom:1066.318815px;}
.y3_c01011{bottom:1085.398275px;}
.y40_c01011{bottom:1085.398590px;}
.y3f_c01011{bottom:1085.400720px;}
.y3e_c01011{bottom:1104.480270px;}
.y2_c01011{bottom:1104.839535px;}
.y1_c01011{bottom:1143.719520px;}
.h3_c01011{height:43.804688px;}
.h2_c01011{height:48.498047px;}
.h11_c01011{height:49.293091px;}
.h6_c01011{height:49.886719px;}
.hd_c01011{height:50.402344px;}
.h10_c01011{height:51.143555px;}
.h7_c01011{height:51.500244px;}
.h12_c01011{height:51.884766px;}
.h1_c01011{height:52.971680px;}
.hb_c01011{height:53.367188px;}
.he_c01011{height:53.707397px;}
.hf_c01011{height:54.108398px;}
.ha_c01011{height:54.443115px;}
.h4_c01011{height:55.178833px;}
.hc_c01011{height:55.914551px;}
.h5_c01011{height:56.650269px;}
.h9_c01011{height:59.593140px;}
.h8_c01011{height:71.364624px;}
.h0_c01011{height:1263.000000px;}
.w0_c01011{width:892.500000px;}
.x0_c01011{left:0.000000px;}
.x1_c01011{left:142.199850px;}
.x7_c01011{left:212.038560px;}
.x3_c01011{left:213.119385px;}
.xc_c01011{left:244.438635px;}
.x6_c01011{left:258.479235px;}
.x4_c01011{left:265.319850px;}
.x5_c01011{left:271.438635px;}
.xd_c01011{left:277.559100px;}
.xe_c01011{left:297.000000px;}
.x8_c01011{left:309.959385px;}
.x9_c01011{left:329.398635px;}
.xb_c01011{left:335.878350px;}
.xa_c01011{left:349.198785px;}
.x13_c01011{left:413.639805px;}
.xf_c01011{left:414.722325px;}
.x12_c01011{left:446.038920px;}
.x11_c01011{left:447.479235px;}
.x10_c01011{left:492.118785px;}
.x2_c01011{left:552.239220px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.lsf_c01011{letter-spacing:-7.060320pt;}
.ls12_c01011{letter-spacing:-6.001333pt;}
.ls15_c01011{letter-spacing:-5.644800pt;}
.ls10_c01011{letter-spacing:-5.386733pt;}
.lsd_c01011{letter-spacing:-4.939680pt;}
.lsc_c01011{letter-spacing:-4.930000pt;}
.ls19_c01011{letter-spacing:-4.360533pt;}
.ls3_c01011{letter-spacing:-4.233600pt;}
.ls1b_c01011{letter-spacing:-3.680267pt;}
.ls2_c01011{letter-spacing:-3.528000pt;}
.lse_c01011{letter-spacing:-3.430000pt;}
.ls5_c01011{letter-spacing:-3.333493pt;}
.ls11_c01011{letter-spacing:-3.271860pt;}
.ls18_c01011{letter-spacing:-2.992513pt;}
.ls13_c01011{letter-spacing:-2.951520pt;}
.ls4_c01011{letter-spacing:-2.822880pt;}
.lsa_c01011{letter-spacing:-2.335667pt;}
.ls16_c01011{letter-spacing:-2.310000pt;}
.ls8_c01011{letter-spacing:-2.116800pt;}
.ls14_c01011{letter-spacing:-1.585867pt;}
.ls1c_c01011{letter-spacing:-1.531133pt;}
.ls9_c01011{letter-spacing:-1.411200pt;}
.ls17_c01011{letter-spacing:-0.756613pt;}
.ls1a_c01011{letter-spacing:-0.754400pt;}
.ls6_c01011{letter-spacing:-0.705120pt;}
.lsb_c01011{letter-spacing:0.000000pt;}
.ls0_c01011{letter-spacing:3.897733pt;}
.ls1_c01011{letter-spacing:4.678933pt;}
.ls7_c01011{letter-spacing:5.555000pt;}
.ws0_c01011{word-spacing:0.000000pt;}
._e_c01011{margin-left:-15.816113pt;}
._11_c01011{margin-left:-12.911831pt;}
._8_c01011{margin-left:-11.294965pt;}
._9_c01011{margin-left:-9.745384pt;}
._6_c01011{margin-left:-8.362814pt;}
._a_c01011{margin-left:-6.868969pt;}
._c_c01011{margin-left:-5.086871pt;}
._2_c01011{margin-left:-3.413026pt;}
._10_c01011{margin-left:-2.399548pt;}
._d_c01011{margin-left:-1.367774pt;}
._f_c01011{width:1.852913pt;}
._b_c01011{width:6.763539pt;}
._7_c01011{width:8.121431pt;}
._1a_c01011{width:15.566231pt;}
._13_c01011{width:17.779426pt;}
._16_c01011{width:19.535661pt;}
._12_c01011{width:21.153374pt;}
._1c_c01011{width:22.368734pt;}
._18_c01011{width:23.366456pt;}
._1b_c01011{width:25.182720pt;}
._17_c01011{width:26.536264pt;}
._14_c01011{width:27.894946pt;}
._19_c01011{width:29.356687pt;}
._1f_c01011{width:32.068856pt;}
._0_c01011{width:42.254626pt;}
._15_c01011{width:44.956856pt;}
._1d_c01011{width:46.563953pt;}
._1e_c01011{width:47.932856pt;}
._4_c01011{width:61.877092pt;}
._5_c01011{width:63.333959pt;}
._3_c01011{width:67.257304pt;}
._1_c01011{width:584.289374pt;}
.fs2_c01011{font-size:37.333333pt;}
.fs1_c01011{font-size:41.333333pt;}
.fs5_c01011{font-size:44.000000pt;}
.fse_c01011{font-size:44.666667pt;}
.fsb_c01011{font-size:45.333333pt;}
.fsd_c01011{font-size:46.000000pt;}
.fs6_c01011{font-size:46.666667pt;}
.fs0_c01011{font-size:48.000000pt;}
.fsc_c01011{font-size:48.666667pt;}
.fs9_c01011{font-size:49.333333pt;}
.fs3_c01011{font-size:50.000000pt;}
.fsa_c01011{font-size:50.666667pt;}
.fs4_c01011{font-size:51.333333pt;}
.fs8_c01011{font-size:54.000000pt;}
.fs7_c01011{font-size:64.666667pt;}
.y0_c01011{bottom:0.000000pt;}
.y6b_c01011{bottom:163.840987pt;}
.y3d_c01011{bottom:163.841467pt;}
.y6a_c01011{bottom:180.800573pt;}
.y3c_c01011{bottom:180.801067pt;}
.y69_c01011{bottom:197.439733pt;}
.y3b_c01011{bottom:197.440227pt;}
.y68_c01011{bottom:214.399333pt;}
.y3a_c01011{bottom:214.399827pt;}
.y67_c01011{bottom:231.358933pt;}
.y39_c01011{bottom:231.359413pt;}
.y66_c01011{bottom:248.318787pt;}
.y38_c01011{bottom:248.319013pt;}
.y65_c01011{bottom:248.319947pt;}
.y37_c01011{bottom:264.959453pt;}
.y36_c01011{bottom:264.959853pt;}
.y64_c01011{bottom:264.960387pt;}
.y34_c01011{bottom:281.919387pt;}
.y35_c01011{bottom:281.919453pt;}
.y63_c01011{bottom:281.919987pt;}
.y33_c01011{bottom:298.878987pt;}
.y62_c01011{bottom:299.201107pt;}
.y31_c01011{bottom:316.479120pt;}
.y32_c01011{bottom:316.479453pt;}
.y61_c01011{bottom:316.479853pt;}
.y30_c01011{bottom:333.438720pt;}
.y60_c01011{bottom:333.439453pt;}
.y2f_c01011{bottom:350.719853pt;}
.y5f_c01011{bottom:350.720253pt;}
.y2e_c01011{bottom:367.359013pt;}
.y5e_c01011{bottom:367.680133pt;}
.y2d_c01011{bottom:384.640133pt;}
.y5d_c01011{bottom:384.960200pt;}
.y2b_c01011{bottom:401.278520pt;}
.y2c_c01011{bottom:401.279333pt;}
.y5c_c01011{bottom:401.600653pt;}
.y2a_c01011{bottom:418.878987pt;}
.y5b_c01011{bottom:418.879400pt;}
.y29_c01011{bottom:435.838587pt;}
.y5a_c01011{bottom:436.160520pt;}
.y28_c01011{bottom:453.119707pt;}
.y59_c01011{bottom:453.120120pt;}
.y27_c01011{bottom:469.758867pt;}
.y58_c01011{bottom:469.759320pt;}
.y26_c01011{bottom:487.359333pt;}
.y25_c01011{bottom:487.359747pt;}
.y24_c01011{bottom:504.319333pt;}
.y23_c01011{bottom:521.279333pt;}
.y22_c01011{bottom:521.279587pt;}
.y57_c01011{bottom:521.602440pt;}
.y21_c01011{bottom:538.239173pt;}
.y20_c01011{bottom:538.239587pt;}
.y56_c01011{bottom:538.241600pt;}
.y1f_c01011{bottom:555.199173pt;}
.y55_c01011{bottom:555.522720pt;}
.y1e_c01011{bottom:572.159173pt;}
.y54_c01011{bottom:572.482320pt;}
.y1d_c01011{bottom:589.439987pt;}
.y1c_c01011{bottom:589.441080pt;}
.y53_c01011{bottom:589.761067pt;}
.y1b_c01011{bottom:606.400680pt;}
.y52_c01011{bottom:606.401507pt;}
.y1a_c01011{bottom:623.679427pt;}
.y51_c01011{bottom:623.680253pt;}
.y19_c01011{bottom:640.319867pt;}
.y50_c01011{bottom:640.320693pt;}
.y18_c01011{bottom:640.321653pt;}
.y4f_c01011{bottom:657.599440pt;}
.y17_c01011{bottom:657.600400pt;}
.y4e_c01011{bottom:674.559040pt;}
.y16_c01011{bottom:674.560000pt;}
.y4d_c01011{bottom:691.839840pt;}
.y15_c01011{bottom:691.841120pt;}
.y4c_c01011{bottom:708.799880pt;}
.y14_c01011{bottom:708.800720pt;}
.y4b_c01011{bottom:708.802373pt;}
.y13_c01011{bottom:726.079467pt;}
.y4a_c01011{bottom:726.081120pt;}
.y12_c01011{bottom:743.039067pt;}
.y49_c01011{bottom:743.040707pt;}
.y11_c01011{bottom:760.319827pt;}
.y10_c01011{bottom:760.320560pt;}
.y48_c01011{bottom:760.641173pt;}
.yf_c01011{bottom:777.280147pt;}
.y47_c01011{bottom:777.281613pt;}
.ye_c01011{bottom:794.239747pt;}
.y46_c01011{bottom:794.560360pt;}
.yd_c01011{bottom:811.519040pt;}
.y45_c01011{bottom:811.519960pt;}
.y44_c01011{bottom:828.801080pt;}
.yc_c01011{bottom:829.119147pt;}
.y43_c01011{bottom:845.760680pt;}
.yb_c01011{bottom:846.079027pt;}
.ya_c01011{bottom:846.079840pt;}
.y9_c01011{bottom:863.039427pt;}
.y8_c01011{bottom:879.999027pt;}
.y7_c01011{bottom:896.958987pt;}
.y42_c01011{bottom:896.959347pt;}
.y6_c01011{bottom:913.918573pt;}
.y41_c01011{bottom:913.918947pt;}
.y5_c01011{bottom:931.199707pt;}
.y4_c01011{bottom:947.838947pt;}
.y3_c01011{bottom:964.798467pt;}
.y40_c01011{bottom:964.798747pt;}
.y3f_c01011{bottom:964.800640pt;}
.y3e_c01011{bottom:981.760240pt;}
.y2_c01011{bottom:982.079587pt;}
.y1_c01011{bottom:1016.639573pt;}
.h3_c01011{height:38.937500pt;}
.h2_c01011{height:43.109375pt;}
.h11_c01011{height:43.816081pt;}
.h6_c01011{height:44.343750pt;}
.hd_c01011{height:44.802083pt;}
.h10_c01011{height:45.460938pt;}
.h7_c01011{height:45.777995pt;}
.h12_c01011{height:46.119792pt;}
.h1_c01011{height:47.085938pt;}
.hb_c01011{height:47.437500pt;}
.he_c01011{height:47.739909pt;}
.hf_c01011{height:48.096354pt;}
.ha_c01011{height:48.393880pt;}
.h4_c01011{height:49.047852pt;}
.hc_c01011{height:49.701823pt;}
.h5_c01011{height:50.355794pt;}
.h9_c01011{height:52.971680pt;}
.h8_c01011{height:63.435221pt;}
.h0_c01011{height:1122.666667pt;}
.w0_c01011{width:793.333333pt;}
.x0_c01011{left:0.000000pt;}
.x1_c01011{left:126.399867pt;}
.x7_c01011{left:188.478720pt;}
.x3_c01011{left:189.439453pt;}
.xc_c01011{left:217.278787pt;}
.x6_c01011{left:229.759320pt;}
.x4_c01011{left:235.839867pt;}
.x5_c01011{left:241.278787pt;}
.xd_c01011{left:246.719200pt;}
.xe_c01011{left:264.000000pt;}
.x8_c01011{left:275.519453pt;}
.x9_c01011{left:292.798787pt;}
.xb_c01011{left:298.558533pt;}
.xa_c01011{left:310.398920pt;}
.x13_c01011{left:367.679827pt;}
.xf_c01011{left:368.642067pt;}
.x12_c01011{left:396.479040pt;}
.x11_c01011{left:397.759320pt;}
.x10_c01011{left:437.438920pt;}
.x2_c01011{left:490.879307pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_0b557d31a1c88c7bd2da6cc9.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_64694a694996c2bb5f9a3fa1.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01012;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01012;src:url('chunks/assets/font_9c48c96b6fe413902005a3e4.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:1.311035;font-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_c01012{transform:matrix(0.142593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142593,0.000000,0.000000,0.250000,0,0);}
.mf_c01012{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.ma_c01012{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m8_c01012{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.mb_c01012{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m7_c01012{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.me_c01012{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m13_c01012{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c01012{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);}
.md_c01012{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m10_c01012{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.mc_c01012{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m11_c01012{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m5_c01012{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m6_c01012{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m0_c01012{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m12_c01012{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1_c01012{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m9_c01012{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m2_c01012{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.lsb_c01012{letter-spacing:-5.977350px;}
.ls5_c01012{letter-spacing:-5.018400px;}
.ls6_c01012{letter-spacing:-4.182000px;}
.lse_c01012{letter-spacing:-3.951083px;}
.ls9_c01012{letter-spacing:-3.858750px;}
.ls8_c01012{letter-spacing:-3.345600px;}
.ls13_c01012{letter-spacing:-3.281250px;}
.lsa_c01012{letter-spacing:-2.678063px;}
.ls4_c01012{letter-spacing:-2.508690px;}
.ls14_c01012{letter-spacing:-1.831500px;}
.lsf_c01012{letter-spacing:-1.772693px;}
.lsc_c01012{letter-spacing:-1.697918px;}
.ls3_c01012{letter-spacing:-1.673310px;}
.lsd_c01012{letter-spacing:-0.930750px;}
.ls12_c01012{letter-spacing:-0.867000px;}
.ls2_c01012{letter-spacing:-0.836400px;}
.ls7_c01012{letter-spacing:0.000000px;}
.ls11_c01012{letter-spacing:0.877200px;}
.ls10_c01012{letter-spacing:0.915900px;}
.ls0_c01012{letter-spacing:3.216533px;}
.ls1_c01012{letter-spacing:4.022325px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01012{word-spacing:0.000000px;}
._d_c01012{margin-left:-34.273271px;}
._10_c01012{margin-left:-27.386440px;}
._f_c01012{margin-left:-25.974843px;}
._8_c01012{margin-left:-10.337784px;}
._a_c01012{margin-left:-8.731601px;}
._e_c01012{margin-left:-6.084350px;}
._c_c01012{margin-left:-5.083797px;}
._6_c01012{margin-left:-3.743500px;}
._2_c01012{margin-left:-1.993214px;}
._7_c01012{width:1.410660px;}
._5_c01012{width:2.926606px;}
._b_c01012{width:4.588620px;}
._9_c01012{width:6.563516px;}
._1a_c01012{width:20.465882px;}
._16_c01012{width:21.916631px;}
._1b_c01012{width:23.679919px;}
._12_c01012{width:25.418066px;}
._15_c01012{width:27.099076px;}
._14_c01012{width:30.500976px;}
._17_c01012{width:31.977669px;}
._11_c01012{width:33.712856px;}
._19_c01012{width:35.320460px;}
._0_c01012{width:53.172500px;}
._13_c01012{width:56.015666px;}
._18_c01012{width:57.687780px;}
._4_c01012{width:65.356462px;}
._3_c01012{width:67.837479px;}
._1_c01012{width:694.848104px;}
.fc0_c01012{color:transparent;}
.fs1_c01012{font-size:44.250000px;}
.fs9_c01012{font-size:49.500000px;}
.fs0_c01012{font-size:51.000000px;}
.fs6_c01012{font-size:51.750000px;}
.fs2_c01012{font-size:52.500000px;}
.fs8_c01012{font-size:53.250000px;}
.fs7_c01012{font-size:54.750000px;}
.fs5_c01012{font-size:55.500000px;}
.fs4_c01012{font-size:56.250000px;}
.fs3_c01012{font-size:101.250000px;}
.y0_c01012{bottom:0.000000px;}
.y6a_c01012{bottom:180.359460px;}
.y36_c01012{bottom:181.078875px;}
.y69_c01012{bottom:199.798080px;}
.y35_c01012{bottom:200.517495px;}
.y68_c01012{bottom:218.878530px;}
.y34_c01012{bottom:219.597930px;}
.y67_c01012{bottom:238.319670px;}
.y33_c01012{bottom:239.039085px;}
.y66_c01012{bottom:256.679700px;}
.y32_c01012{bottom:257.399115px;}
.y65_c01012{bottom:276.118350px;}
.y31_c01012{bottom:276.837735px;}
.y64_c01012{bottom:295.198785px;}
.y30_c01012{bottom:295.918170px;}
.y63_c01012{bottom:314.278800px;}
.y2f_c01012{bottom:314.998620px;}
.y62_c01012{bottom:332.998185px;}
.y2e_c01012{bottom:333.719535px;}
.y61_c01012{bottom:352.078650px;}
.y2c_c01012{bottom:352.798950px;}
.y2d_c01012{bottom:352.799535px;}
.y60_c01012{bottom:371.159085px;}
.y2b_c01012{bottom:371.879400px;}
.y5f_c01012{bottom:390.600240px;}
.y2a_c01012{bottom:390.959835px;}
.y5e_c01012{bottom:409.680675px;}
.y29_c01012{bottom:410.040300px;}
.y5d_c01012{bottom:429.119295px;}
.y28_c01012{bottom:429.478905px;}
.y5c_c01012{bottom:447.840225px;}
.y27_c01012{bottom:448.560510px;}
.y5b_c01012{bottom:467.999250px;}
.y26_c01012{bottom:468.358665px;}
.y5a_c01012{bottom:487.079700px;}
.y24_c01012{bottom:487.798665px;}
.y25_c01012{bottom:487.799565px;}
.y59_c01012{bottom:506.879190px;}
.y23_c01012{bottom:507.237285px;}
.y58_c01012{bottom:525.239220px;}
.y22_c01012{bottom:525.958185px;}
.y57_c01012{bottom:544.680135px;}
.y21_c01012{bottom:545.038650px;}
.y56_c01012{bottom:563.399235px;}
.y20_c01012{bottom:564.119085px;}
.y55_c01012{bottom:582.838440px;}
.y1f_c01012{bottom:583.199550px;}
.y54_c01012{bottom:601.558005px;}
.y1e_c01012{bottom:601.920450px;}
.y53_c01012{bottom:620.638440px;}
.y1d_c01012{bottom:621.359070px;}
.y52_c01012{bottom:639.718890px;}
.y1c_c01012{bottom:640.439535px;}
.y51_c01012{bottom:659.160030px;}
.y1b_c01012{bottom:659.880660px;}
.y50_c01012{bottom:678.240480px;}
.y1a_c01012{bottom:678.961125px;}
.y4f_c01012{bottom:698.039985px;}
.y19_c01012{bottom:698.760615px;}
.y4e_c01012{bottom:717.119985px;}
.y4d_c01012{bottom:717.120480px;}
.y18_c01012{bottom:717.480165px;}
.y4c_c01012{bottom:736.559100px;}
.y17_c01012{bottom:737.279685px;}
.y4b_c01012{bottom:755.279850px;}
.y16_c01012{bottom:756.000600px;}
.y49_c01012{bottom:775.079205px;}
.y4a_c01012{bottom:775.079955px;}
.y15_c01012{bottom:775.439205px;}
.y48_c01012{bottom:793.798755px;}
.y13_c01012{bottom:794.518890px;}
.y14_c01012{bottom:794.519070px;}
.y47_c01012{bottom:813.239910px;}
.y12_c01012{bottom:813.960015px;}
.y46_c01012{bottom:832.320345px;}
.y10_c01012{bottom:833.038080px;}
.y11_c01012{bottom:833.039985px;}
.y45_c01012{bottom:852.119865px;}
.yf_c01012{bottom:852.837570px;}
.ye_c01012{bottom:870.836730px;}
.y44_c01012{bottom:871.558485px;}
.y43_c01012{bottom:890.638920px;}
.yd_c01012{bottom:891.356640px;}
.y42_c01012{bottom:910.080075px;}
.yc_c01012{bottom:910.797780px;}
.yb_c01012{bottom:929.157810px;}
.y41_c01012{bottom:929.518680px;}
.y40_c01012{bottom:948.599115px;}
.ya_c01012{bottom:949.316850px;}
.y3f_c01012{bottom:967.677315px;}
.y9_c01012{bottom:968.397285px;}
.y3e_c01012{bottom:986.757780px;}
.y8_c01012{bottom:987.477750px;}
.y3d_c01012{bottom:1005.838215px;}
.y7_c01012{bottom:1006.558185px;}
.y3c_c01012{bottom:1024.918665px;}
.y6_c01012{bottom:1025.638635px;}
.y3b_c01012{bottom:1044.359805px;}
.y5_c01012{bottom:1045.079775px;}
.y3a_c01012{bottom:1063.439670px;}
.y39_c01012{bottom:1063.439880px;}
.y4_c01012{bottom:1064.160240px;}
.y38_c01012{bottom:1082.520315px;}
.y3_c01012{bottom:1083.598845px;}
.y37_c01012{bottom:1101.958920px;}
.y2_c01012{bottom:1103.039985px;}
.y1_c01012{bottom:1141.919955px;}
.h2_c01012{height:46.151367px;}
.hb_c01012{height:49.886719px;}
.h1_c01012{height:50.402344px;}
.h7_c01012{height:51.143555px;}
.h3_c01012{height:51.500244px;}
.ha_c01012{height:51.884766px;}
.h9_c01012{height:52.625977px;}
.h8_c01012{height:54.108398px;}
.h6_c01012{height:54.849609px;}
.h5_c01012{height:55.590820px;}
.h4_c01012{height:105.600586px;}
.h0_c01012{height:1263.000000px;}
.w0_c01012{width:892.500000px;}
.x0_c01012{left:0.000000px;}
.x1_c01012{left:141.479715px;}
.x9_c01012{left:209.518185px;}
.x7_c01012{left:210.601680px;}
.x4_c01012{left:211.679790px;}
.x3_c01012{left:212.758500px;}
.x5_c01012{left:257.399850px;}
.x8_c01012{left:262.439250px;}
.x6_c01012{left:299.878950px;}
.x10_c01012{left:411.838950px;}
.xd_c01012{left:413.279235px;}
.xa_c01012{left:414.358665px;}
.x12_c01012{left:444.239220px;}
.xf_c01012{left:445.318770px;}
.xb_c01012{left:446.759085px;}
.x11_c01012{left:489.599070px;}
.xe_c01012{left:490.678530px;}
.xc_c01012{left:492.118785px;}
.x2_c01012{left:552.239220px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.lsb_c01012{letter-spacing:-5.313200pt;}
.ls5_c01012{letter-spacing:-4.460800pt;}
.ls6_c01012{letter-spacing:-3.717333pt;}
.lse_c01012{letter-spacing:-3.512073pt;}
.ls9_c01012{letter-spacing:-3.430000pt;}
.ls8_c01012{letter-spacing:-2.973867pt;}
.ls13_c01012{letter-spacing:-2.916667pt;}
.lsa_c01012{letter-spacing:-2.380500pt;}
.ls4_c01012{letter-spacing:-2.229947pt;}
.ls14_c01012{letter-spacing:-1.628000pt;}
.lsf_c01012{letter-spacing:-1.575727pt;}
.lsc_c01012{letter-spacing:-1.509260pt;}
.ls3_c01012{letter-spacing:-1.487387pt;}
.lsd_c01012{letter-spacing:-0.827333pt;}
.ls12_c01012{letter-spacing:-0.770667pt;}
.ls2_c01012{letter-spacing:-0.743467pt;}
.ls7_c01012{letter-spacing:0.000000pt;}
.ls11_c01012{letter-spacing:0.779733pt;}
.ls10_c01012{letter-spacing:0.814133pt;}
.ls0_c01012{letter-spacing:2.859140pt;}
.ls1_c01012{letter-spacing:3.575400pt;}
.ws0_c01012{word-spacing:0.000000pt;}
._d_c01012{margin-left:-30.465130pt;}
._10_c01012{margin-left:-24.343502pt;}
._f_c01012{margin-left:-23.088750pt;}
._8_c01012{margin-left:-9.189141pt;}
._a_c01012{margin-left:-7.761423pt;}
._e_c01012{margin-left:-5.408311pt;}
._c_c01012{margin-left:-4.518931pt;}
._6_c01012{margin-left:-3.327556pt;}
._2_c01012{margin-left:-1.771746pt;}
._7_c01012{width:1.253920pt;}
._5_c01012{width:2.601427pt;}
._b_c01012{width:4.078774pt;}
._9_c01012{width:5.834237pt;}
._1a_c01012{width:18.191895pt;}
._16_c01012{width:19.481450pt;}
._1b_c01012{width:21.048817pt;}
._12_c01012{width:22.593836pt;}
._15_c01012{width:24.088067pt;}
._14_c01012{width:27.111979pt;}
._17_c01012{width:28.424595pt;}
._11_c01012{width:29.966983pt;}
._19_c01012{width:31.395964pt;}
._0_c01012{width:47.264444pt;}
._13_c01012{width:49.791703pt;}
._18_c01012{width:51.278027pt;}
._4_c01012{width:58.094632pt;}
._3_c01012{width:60.299981pt;}
._1_c01012{width:617.642759pt;}
.fs1_c01012{font-size:39.333333pt;}
.fs9_c01012{font-size:44.000000pt;}
.fs0_c01012{font-size:45.333333pt;}
.fs6_c01012{font-size:46.000000pt;}
.fs2_c01012{font-size:46.666667pt;}
.fs8_c01012{font-size:47.333333pt;}
.fs7_c01012{font-size:48.666667pt;}
.fs5_c01012{font-size:49.333333pt;}
.fs4_c01012{font-size:50.000000pt;}
.fs3_c01012{font-size:90.000000pt;}
.y0_c01012{bottom:0.000000pt;}
.y6a_c01012{bottom:160.319520pt;}
.y36_c01012{bottom:160.959000pt;}
.y69_c01012{bottom:177.598293pt;}
.y35_c01012{bottom:178.237773pt;}
.y68_c01012{bottom:194.558693pt;}
.y34_c01012{bottom:195.198160pt;}
.y67_c01012{bottom:211.839707pt;}
.y33_c01012{bottom:212.479187pt;}
.y66_c01012{bottom:228.159733pt;}
.y32_c01012{bottom:228.799213pt;}
.y65_c01012{bottom:245.438533pt;}
.y31_c01012{bottom:246.077987pt;}
.y64_c01012{bottom:262.398920pt;}
.y30_c01012{bottom:263.038373pt;}
.y63_c01012{bottom:279.358933pt;}
.y2f_c01012{bottom:279.998773pt;}
.y62_c01012{bottom:295.998387pt;}
.y2e_c01012{bottom:296.639587pt;}
.y61_c01012{bottom:312.958800pt;}
.y2c_c01012{bottom:313.599067pt;}
.y2d_c01012{bottom:313.599587pt;}
.y60_c01012{bottom:329.919187pt;}
.y2b_c01012{bottom:330.559467pt;}
.y5f_c01012{bottom:347.200213pt;}
.y2a_c01012{bottom:347.519853pt;}
.y5e_c01012{bottom:364.160600pt;}
.y29_c01012{bottom:364.480267pt;}
.y5d_c01012{bottom:381.439373pt;}
.y28_c01012{bottom:381.759027pt;}
.y5c_c01012{bottom:398.080200pt;}
.y27_c01012{bottom:398.720453pt;}
.y5b_c01012{bottom:415.999333pt;}
.y26_c01012{bottom:416.318813pt;}
.y5a_c01012{bottom:432.959733pt;}
.y24_c01012{bottom:433.598813pt;}
.y25_c01012{bottom:433.599613pt;}
.y59_c01012{bottom:450.559280pt;}
.y23_c01012{bottom:450.877587pt;}
.y58_c01012{bottom:466.879307pt;}
.y22_c01012{bottom:467.518387pt;}
.y57_c01012{bottom:484.160120pt;}
.y21_c01012{bottom:484.478800pt;}
.y56_c01012{bottom:500.799320pt;}
.y20_c01012{bottom:501.439187pt;}
.y55_c01012{bottom:518.078613pt;}
.y1f_c01012{bottom:518.399600pt;}
.y54_c01012{bottom:534.718227pt;}
.y1e_c01012{bottom:535.040400pt;}
.y53_c01012{bottom:551.678613pt;}
.y1d_c01012{bottom:552.319173pt;}
.y52_c01012{bottom:568.639013pt;}
.y1c_c01012{bottom:569.279587pt;}
.y51_c01012{bottom:585.920027pt;}
.y1b_c01012{bottom:586.560587pt;}
.y50_c01012{bottom:602.880427pt;}
.y1a_c01012{bottom:603.521000pt;}
.y4f_c01012{bottom:620.479987pt;}
.y19_c01012{bottom:621.120547pt;}
.y4e_c01012{bottom:637.439987pt;}
.y4d_c01012{bottom:637.440427pt;}
.y18_c01012{bottom:637.760147pt;}
.y4c_c01012{bottom:654.719200pt;}
.y17_c01012{bottom:655.359720pt;}
.y4b_c01012{bottom:671.359867pt;}
.y16_c01012{bottom:672.000533pt;}
.y49_c01012{bottom:688.959293pt;}
.y4a_c01012{bottom:688.959960pt;}
.y15_c01012{bottom:689.279293pt;}
.y48_c01012{bottom:705.598893pt;}
.y13_c01012{bottom:706.239013pt;}
.y14_c01012{bottom:706.239173pt;}
.y47_c01012{bottom:722.879920pt;}
.y12_c01012{bottom:723.520013pt;}
.y46_c01012{bottom:739.840307pt;}
.y10_c01012{bottom:740.478293pt;}
.y11_c01012{bottom:740.479987pt;}
.y45_c01012{bottom:757.439880pt;}
.yf_c01012{bottom:758.077840pt;}
.ye_c01012{bottom:774.077093pt;}
.y44_c01012{bottom:774.718653pt;}
.y43_c01012{bottom:791.679040pt;}
.yd_c01012{bottom:792.317013pt;}
.y42_c01012{bottom:808.960067pt;}
.yc_c01012{bottom:809.598027pt;}
.yb_c01012{bottom:825.918053pt;}
.y41_c01012{bottom:826.238827pt;}
.y40_c01012{bottom:843.199213pt;}
.ya_c01012{bottom:843.837200pt;}
.y3f_c01012{bottom:860.157613pt;}
.y9_c01012{bottom:860.797587pt;}
.y3e_c01012{bottom:877.118027pt;}
.y8_c01012{bottom:877.758000pt;}
.y3d_c01012{bottom:894.078413pt;}
.y7_c01012{bottom:894.718387pt;}
.y3c_c01012{bottom:911.038813pt;}
.y6_c01012{bottom:911.678787pt;}
.y3b_c01012{bottom:928.319827pt;}
.y5_c01012{bottom:928.959800pt;}
.y3a_c01012{bottom:945.279707pt;}
.y39_c01012{bottom:945.279893pt;}
.y4_c01012{bottom:945.920213pt;}
.y38_c01012{bottom:962.240280pt;}
.y3_c01012{bottom:963.198973pt;}
.y37_c01012{bottom:979.519040pt;}
.y2_c01012{bottom:980.479987pt;}
.y1_c01012{bottom:1015.039960pt;}
.h2_c01012{height:41.023438pt;}
.hb_c01012{height:44.343750pt;}
.h1_c01012{height:44.802083pt;}
.h7_c01012{height:45.460938pt;}
.h3_c01012{height:45.777995pt;}
.ha_c01012{height:46.119792pt;}
.h9_c01012{height:46.778646pt;}
.h8_c01012{height:48.096354pt;}
.h6_c01012{height:48.755208pt;}
.h5_c01012{height:49.414063pt;}
.h4_c01012{height:93.867188pt;}
.h0_c01012{height:1122.666667pt;}
.w0_c01012{width:793.333333pt;}
.x0_c01012{left:0.000000pt;}
.x1_c01012{left:125.759747pt;}
.x9_c01012{left:186.238387pt;}
.x7_c01012{left:187.201493pt;}
.x4_c01012{left:188.159813pt;}
.x3_c01012{left:189.118667pt;}
.x5_c01012{left:228.799867pt;}
.x8_c01012{left:233.279333pt;}
.x6_c01012{left:266.559067pt;}
.x10_c01012{left:366.079067pt;}
.xd_c01012{left:367.359320pt;}
.xa_c01012{left:368.318813pt;}
.x12_c01012{left:394.879307pt;}
.xf_c01012{left:395.838907pt;}
.xb_c01012{left:397.119187pt;}
.x11_c01012{left:435.199173pt;}
.xe_c01012{left:436.158693pt;}
.xc_c01012{left:437.438920pt;}
.x2_c01012{left:490.879307pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_cbb6210ff0a4368827f69a89.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_03856090e04ee565a8df9834.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01013;src:url('chunks/assets/font_dc1a097b32b9635dbe8069b1.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.364746;font-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_c01013{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_c01013{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m2_c01013{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m3_c01013{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m6_c01013{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m10_c01013{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.mc_c01013{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m4_c01013{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m9_c01013{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);}
.m8_c01013{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.mb_c01013{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m1_c01013{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.m11_c01013{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m0_c01013{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m7_c01013{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.me_c01013{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.mf_c01013{transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);}
.m5_c01013{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.v1_c01013{vertical-align:1.443600px;}
.ls14_c01013{letter-spacing:-8.536500px;}
.lse_c01013{letter-spacing:-5.557140px;}
.ls17_c01013{letter-spacing:-5.019900px;}
.ls8_c01013{letter-spacing:-5.018400px;}
.lsa_c01013{letter-spacing:-4.182000px;}
.ls7_c01013{letter-spacing:-3.345600px;}
.ls15_c01013{letter-spacing:-3.017850px;}
.ls13_c01013{letter-spacing:-2.958750px;}
.ls12_c01013{letter-spacing:-2.700000px;}
.lsf_c01013{letter-spacing:-2.619368px;}
.ls11_c01013{letter-spacing:-2.577300px;}
.ls6_c01013{letter-spacing:-2.508690px;}
.ls16_c01013{letter-spacing:-1.805708px;}
.ls4_c01013{letter-spacing:-1.673310px;}
.lsc_c01013{letter-spacing:-0.888743px;}
.ls3_c01013{letter-spacing:-0.836400px;}
.ls9_c01013{letter-spacing:0.000000px;}
.lsd_c01013{letter-spacing:3.345600px;}
.ls0_c01013{letter-spacing:3.380085px;}
.ls5_c01013{letter-spacing:4.226850px;}
.ls1_c01013{letter-spacing:12.540900px;}
.ls2_c01013{letter-spacing:25.917690px;}
.lsb_c01013{letter-spacing:26.754600px;}
.ls10_c01013{letter-spacing:36.175050px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01013{word-spacing:0.000000px;}
._5_c01013{margin-left:-27.295534px;}
._10_c01013{margin-left:-24.272940px;}
._c_c01013{margin-left:-10.429216px;}
._4_c01013{margin-left:-7.823433px;}
._8_c01013{margin-left:-6.084484px;}
._6_c01013{margin-left:-4.345401px;}
._d_c01013{margin-left:-2.743967px;}
._7_c01013{margin-left:-1.733298px;}
._e_c01013{width:1.378154px;}
._b_c01013{width:2.987053px;}
._9_c01013{width:4.916467px;}
._f_c01013{width:5.984298px;}
._a_c01013{width:11.546467px;}
._11_c01013{width:25.418066px;}
._15_c01013{width:27.164941px;}
._16_c01013{width:30.345669px;}
._12_c01013{width:31.978940px;}
._17_c01013{width:33.708860px;}
._14_c01013{width:35.320393px;}
._13_c01013{width:37.056500px;}
._0_c01013{width:51.576350px;}
._2_c01013{width:71.285151px;}
._3_c01013{width:72.912685px;}
._1_c01013{width:687.372716px;}
.fc0_c01013{color:transparent;}
.fs4_c01013{font-size:43.500000px;}
.fs6_c01013{font-size:45.000000px;}
.fs1_c01013{font-size:46.500000px;}
.fs0_c01013{font-size:51.000000px;}
.fs3_c01013{font-size:53.250000px;}
.fs5_c01013{font-size:54.000000px;}
.fs2_c01013{font-size:54.750000px;}
.fs7_c01013{font-size:56.250000px;}
.y0_c01013{bottom:0.000000px;}
.y4d_c01013{bottom:432.720180px;}
.y2a_c01013{bottom:451.080000px;}
.y4c_c01013{bottom:451.441080px;}
.y29_c01013{bottom:470.520720px;}
.y4b_c01013{bottom:471.239220px;}
.y28_c01013{bottom:489.600720px;}
.y27_c01013{bottom:489.601275px;}
.y4a_c01013{bottom:490.319280px;}
.y26_c01013{bottom:509.400780px;}
.y49_c01013{bottom:509.400885px;}
.y25_c01013{bottom:528.481230px;}
.y48_c01013{bottom:528.840225px;}
.y24_c01013{bottom:547.919835px;}
.y47_c01013{bottom:548.278845px;}
.y23_c01013{bottom:566.640765px;}
.y46_c01013{bottom:567.359295px;}
.y22_c01013{bottom:586.079385px;}
.y45_c01013{bottom:586.440900px;}
.y21_c01013{bottom:605.159820px;}
.y44_c01013{bottom:605.876955px;}
.y20_c01013{bottom:624.600720px;}
.y43_c01013{bottom:624.957420px;}
.y1e_c01013{bottom:643.680330px;}
.y1f_c01013{bottom:643.680720px;}
.y42_c01013{bottom:644.037855px;}
.y1d_c01013{bottom:662.760795px;}
.y41_c01013{bottom:663.118305px;}
.y1c_c01013{bottom:681.841230px;}
.y40_c01013{bottom:682.198740px;}
.y3f_c01013{bottom:701.279205px;}
.y1b_c01013{bottom:701.279850px;}
.y19_c01013{bottom:720.357300px;}
.y3e_c01013{bottom:720.359640px;}
.y1a_c01013{bottom:720.359850px;}
.y18_c01013{bottom:739.437750px;}
.y3d_c01013{bottom:739.800795px;}
.y17_c01013{bottom:758.518200px;}
.y3c_c01013{bottom:758.881230px;}
.y16_c01013{bottom:777.959340px;}
.y3b_c01013{bottom:778.319850px;}
.y15_c01013{bottom:797.039790px;}
.y3a_c01013{bottom:797.040780px;}
.y14_c01013{bottom:816.839280px;}
.y39_c01013{bottom:817.199805px;}
.y13_c01013{bottom:835.919745px;}
.y38_c01013{bottom:836.640270px;}
.y12_c01013{bottom:855.358365px;}
.y37_c01013{bottom:855.720705px;}
.y11_c01013{bottom:874.438800px;}
.y36_c01013{bottom:874.800570px;}
.y10_c01013{bottom:894.238305px;}
.y35_c01013{bottom:894.599220px;}
.yf_c01013{bottom:913.318755px;}
.y34_c01013{bottom:913.318770px;}
.ye_c01013{bottom:932.399205px;}
.y33_c01013{bottom:932.759910px;}
.yc_c01013{bottom:951.479250px;}
.y32_c01013{bottom:951.479460px;}
.yd_c01013{bottom:951.479640px;}
.yb_c01013{bottom:970.559685px;}
.y31_c01013{bottom:970.559925px;}
.ya_c01013{bottom:989.280390px;}
.y9_c01013{bottom:989.280735px;}
.y30_c01013{bottom:990.001050px;}
.y8_c01013{bottom:1009.080225px;}
.y2f_c01013{bottom:1009.439670px;}
.y7_c01013{bottom:1028.518845px;}
.y2e_c01013{bottom:1028.519715px;}
.y6_c01013{bottom:1047.599310px;}
.y2d_c01013{bottom:1047.960180px;}
.y5_c01013{bottom:1066.679745px;}
.y2c_c01013{bottom:1067.040645px;}
.y4_c01013{bottom:1086.479250px;}
.y2b_c01013{bottom:1086.840135px;}
.y3_c01013{bottom:1105.559685px;}
.y1_c01013{bottom:1143.719520px;}
.y2_c01013{bottom:1144.080420px;}
.h6_c01013{height:45.369141px;}
.h8_c01013{height:46.933594px;}
.h2_c01013{height:48.498047px;}
.h3_c01013{height:50.402344px;}
.h1_c01013{height:51.845944px;}
.h5_c01013{height:52.625977px;}
.h7_c01013{height:53.367188px;}
.h4_c01013{height:54.108398px;}
.h9_c01013{height:55.590820px;}
.h0_c01013{height:1263.000000px;}
.w0_c01013{width:892.500000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:140.398665px;}
.x7_c01013{left:211.322070px;}
.x3_c01013{left:212.399250px;}
.x4_c01013{left:257.399850px;}
.xa_c01013{left:271.079385px;}
.x8_c01013{left:296.639100px;}
.x5_c01013{left:322.198785px;}
.x6_c01013{left:334.798950px;}
.x9_c01013{left:339.479235px;}
.xb_c01013{left:413.279250px;}
.xe_c01013{left:414.358665px;}
.xc_c01013{left:445.318770px;}
.xd_c01013{left:446.399820px;}
.x2_c01013{left:550.439670px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.v1_c01013{vertical-align:1.283200pt;}
.ls14_c01013{letter-spacing:-7.588000pt;}
.lse_c01013{letter-spacing:-4.939680pt;}
.ls17_c01013{letter-spacing:-4.462133pt;}
.ls8_c01013{letter-spacing:-4.460800pt;}
.lsa_c01013{letter-spacing:-3.717333pt;}
.ls7_c01013{letter-spacing:-2.973867pt;}
.ls15_c01013{letter-spacing:-2.682533pt;}
.ls13_c01013{letter-spacing:-2.630000pt;}
.ls12_c01013{letter-spacing:-2.400000pt;}
.lsf_c01013{letter-spacing:-2.328327pt;}
.ls11_c01013{letter-spacing:-2.290933pt;}
.ls6_c01013{letter-spacing:-2.229947pt;}
.ls16_c01013{letter-spacing:-1.605073pt;}
.ls4_c01013{letter-spacing:-1.487387pt;}
.lsc_c01013{letter-spacing:-0.789993pt;}
.ls3_c01013{letter-spacing:-0.743467pt;}
.ls9_c01013{letter-spacing:0.000000pt;}
.lsd_c01013{letter-spacing:2.973867pt;}
.ls0_c01013{letter-spacing:3.004520pt;}
.ls5_c01013{letter-spacing:3.757200pt;}
.ls1_c01013{letter-spacing:11.147467pt;}
.ls2_c01013{letter-spacing:23.037947pt;}
.lsb_c01013{letter-spacing:23.781867pt;}
.ls10_c01013{letter-spacing:32.155600pt;}
.ws0_c01013{word-spacing:0.000000pt;}
._5_c01013{margin-left:-24.262697pt;}
._10_c01013{margin-left:-21.575947pt;}
._c_c01013{margin-left:-9.270414pt;}
._4_c01013{margin-left:-6.954163pt;}
._8_c01013{margin-left:-5.408430pt;}
._6_c01013{margin-left:-3.862578pt;}
._d_c01013{margin-left:-2.439082pt;}
._7_c01013{margin-left:-1.540709pt;}
._e_c01013{width:1.225026pt;}
._b_c01013{width:2.655158pt;}
._9_c01013{width:4.370193pt;}
._f_c01013{width:5.319376pt;}
._a_c01013{width:10.263526pt;}
._11_c01013{width:22.593836pt;}
._15_c01013{width:24.146614pt;}
._16_c01013{width:26.973928pt;}
._12_c01013{width:28.425724pt;}
._17_c01013{width:29.963431pt;}
._14_c01013{width:31.395905pt;}
._13_c01013{width:32.939111pt;}
._0_c01013{width:45.845645pt;}
._2_c01013{width:63.364579pt;}
._3_c01013{width:64.811275pt;}
._1_c01013{width:610.997970pt;}
.fs4_c01013{font-size:38.666667pt;}
.fs6_c01013{font-size:40.000000pt;}
.fs1_c01013{font-size:41.333333pt;}
.fs0_c01013{font-size:45.333333pt;}
.fs3_c01013{font-size:47.333333pt;}
.fs5_c01013{font-size:48.000000pt;}
.fs2_c01013{font-size:48.666667pt;}
.fs7_c01013{font-size:50.000000pt;}
.y0_c01013{bottom:0.000000pt;}
.y4d_c01013{bottom:384.640160pt;}
.y2a_c01013{bottom:400.960000pt;}
.y4c_c01013{bottom:401.280960pt;}
.y29_c01013{bottom:418.240640pt;}
.y4b_c01013{bottom:418.879307pt;}
.y28_c01013{bottom:435.200640pt;}
.y27_c01013{bottom:435.201133pt;}
.y4a_c01013{bottom:435.839360pt;}
.y26_c01013{bottom:452.800693pt;}
.y49_c01013{bottom:452.800787pt;}
.y25_c01013{bottom:469.761093pt;}
.y48_c01013{bottom:470.080200pt;}
.y24_c01013{bottom:487.039853pt;}
.y47_c01013{bottom:487.358973pt;}
.y23_c01013{bottom:503.680680pt;}
.y46_c01013{bottom:504.319373pt;}
.y22_c01013{bottom:520.959453pt;}
.y45_c01013{bottom:521.280800pt;}
.y21_c01013{bottom:537.919840pt;}
.y44_c01013{bottom:538.557293pt;}
.y20_c01013{bottom:555.200640pt;}
.y43_c01013{bottom:555.517707pt;}
.y1e_c01013{bottom:572.160293pt;}
.y1f_c01013{bottom:572.160640pt;}
.y42_c01013{bottom:572.478093pt;}
.y1d_c01013{bottom:589.120707pt;}
.y41_c01013{bottom:589.438493pt;}
.y1c_c01013{bottom:606.081093pt;}
.y40_c01013{bottom:606.398880pt;}
.y3f_c01013{bottom:623.359293pt;}
.y1b_c01013{bottom:623.359867pt;}
.y19_c01013{bottom:640.317600pt;}
.y3e_c01013{bottom:640.319680pt;}
.y1a_c01013{bottom:640.319867pt;}
.y18_c01013{bottom:657.278000pt;}
.y3d_c01013{bottom:657.600707pt;}
.y17_c01013{bottom:674.238400pt;}
.y3c_c01013{bottom:674.561093pt;}
.y16_c01013{bottom:691.519413pt;}
.y3b_c01013{bottom:691.839867pt;}
.y15_c01013{bottom:708.479813pt;}
.y3a_c01013{bottom:708.480693pt;}
.y14_c01013{bottom:726.079360pt;}
.y39_c01013{bottom:726.399827pt;}
.y13_c01013{bottom:743.039773pt;}
.y38_c01013{bottom:743.680240pt;}
.y12_c01013{bottom:760.318547pt;}
.y37_c01013{bottom:760.640627pt;}
.y11_c01013{bottom:777.278933pt;}
.y36_c01013{bottom:777.600507pt;}
.y10_c01013{bottom:794.878493pt;}
.y35_c01013{bottom:795.199307pt;}
.yf_c01013{bottom:811.838893pt;}
.y34_c01013{bottom:811.838907pt;}
.ye_c01013{bottom:828.799293pt;}
.y33_c01013{bottom:829.119920pt;}
.yc_c01013{bottom:845.759333pt;}
.y32_c01013{bottom:845.759520pt;}
.yd_c01013{bottom:845.759680pt;}
.yb_c01013{bottom:862.719720pt;}
.y31_c01013{bottom:862.719933pt;}
.ya_c01013{bottom:879.360347pt;}
.y9_c01013{bottom:879.360653pt;}
.y30_c01013{bottom:880.000933pt;}
.y8_c01013{bottom:896.960200pt;}
.y2f_c01013{bottom:897.279707pt;}
.y7_c01013{bottom:914.238973pt;}
.y2e_c01013{bottom:914.239747pt;}
.y6_c01013{bottom:931.199387pt;}
.y2d_c01013{bottom:931.520160pt;}
.y5_c01013{bottom:948.159773pt;}
.y2c_c01013{bottom:948.480573pt;}
.y4_c01013{bottom:965.759333pt;}
.y2b_c01013{bottom:966.080120pt;}
.y3_c01013{bottom:982.719720pt;}
.y1_c01013{bottom:1016.639573pt;}
.y2_c01013{bottom:1016.960373pt;}
.h6_c01013{height:40.328125pt;}
.h8_c01013{height:41.718750pt;}
.h2_c01013{height:43.109375pt;}
.h3_c01013{height:44.802083pt;}
.h1_c01013{height:46.085283pt;}
.h5_c01013{height:46.778646pt;}
.h7_c01013{height:47.437500pt;}
.h4_c01013{height:48.096354pt;}
.h9_c01013{height:49.414063pt;}
.h0_c01013{height:1122.666667pt;}
.w0_c01013{width:793.333333pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:124.798813pt;}
.x7_c01013{left:187.841840pt;}
.x3_c01013{left:188.799333pt;}
.x4_c01013{left:228.799867pt;}
.xa_c01013{left:240.959453pt;}
.x8_c01013{left:263.679200pt;}
.x5_c01013{left:286.398920pt;}
.x6_c01013{left:297.599067pt;}
.x9_c01013{left:301.759320pt;}
.xb_c01013{left:367.359333pt;}
.xe_c01013{left:368.318813pt;}
.xc_c01013{left:395.838907pt;}
.xd_c01013{left:396.799840pt;}
.x2_c01013{left:489.279707pt;}
}





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

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_2db26b4e26c252fe49d6cd81.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_3c0369452de354b8cb73c067.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_92f8df0be60b635209a304e7.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_567038d02d9742b8e184042b.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01014;src:url('chunks/assets/font_87270215adef1ecbb8d93be4.woff2')format("woff");}.ff5_c01014{font-family:ff5_c01014;line-height:1.432129;font-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_c01014{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m8_c01014{transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);}
.m10_c01014{transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);}
.mf_c01014{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m4_c01014{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m3_c01014{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m0_c01014{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.ma_c01014{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.mb_c01014{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.md_c01014{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.mc_c01014{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m7_c01014{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.me_c01014{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m2_c01014{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m9_c01014{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m1_c01014{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m5_c01014{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls5_c01014{letter-spacing:-4.762800px;}
.ls3_c01014{letter-spacing:-4.659525px;}
.ls6_c01014{letter-spacing:-4.582875px;}
.ls7_c01014{letter-spacing:-4.085018px;}
.ls8_c01014{letter-spacing:-3.960600px;}
.ls4_c01014{letter-spacing:-2.590800px;}
.ls9_c01014{letter-spacing:-1.729410px;}
.ls2_c01014{letter-spacing:-0.867000px;}
.ls1_c01014{letter-spacing:0.000000px;}
.ls0_c01014{letter-spacing:1.478880px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01014{word-spacing:0.000000px;}
._c_c01014{margin-left:-28.524041px;}
._2_c01014{margin-left:-10.148965px;}
._d_c01014{margin-left:-8.720896px;}
._0_c01014{margin-left:-5.100000px;}
._9_c01014{margin-left:-3.218083px;}
._1_c01014{margin-left:-2.193035px;}
._a_c01014{margin-left:-1.035559px;}
._e_c01014{width:1.376793px;}
._b_c01014{width:3.208228px;}
._7_c01014{width:4.437726px;}
._8_c01014{width:5.589669px;}
._12_c01014{width:22.195269px;}
._10_c01014{width:23.852856px;}
._15_c01014{width:25.515075px;}
._f_c01014{width:26.969007px;}
._3_c01014{width:28.305035px;}
._16_c01014{width:30.869833px;}
._11_c01014{width:32.094525px;}
._14_c01014{width:33.756744px;}
._18_c01014{width:35.554123px;}
._13_c01014{width:54.279075px;}
._17_c01014{width:57.838910px;}
._5_c01014{width:64.655343px;}
._6_c01014{width:115.727520px;}
._4_c01014{width:711.904263px;}
.fc0_c01014{color:transparent;}
.fs8_c01014{font-size:41.250000px;}
.fsc_c01014{font-size:42.000000px;}
.fs2_c01014{font-size:44.250000px;}
.fsb_c01014{font-size:45.750000px;}
.fs1_c01014{font-size:48.000000px;}
.fs9_c01014{font-size:48.750000px;}
.fs0_c01014{font-size:51.000000px;}
.fsa_c01014{font-size:53.250000px;}
.fs5_c01014{font-size:54.000000px;}
.fs4_c01014{font-size:54.750000px;}
.fs3_c01014{font-size:55.500000px;}
.fs6_c01014{font-size:68.250000px;}
.fs7_c01014{font-size:70.500000px;}
.y0_c01014{bottom:0.000000px;}
.y62_c01014{bottom:182.520315px;}
.y35_c01014{bottom:182.877660px;}
.y34_c01014{bottom:201.958125px;}
.y60_c01014{bottom:201.958905px;}
.y61_c01014{bottom:201.959400px;}
.y33_c01014{bottom:220.679025px;}
.y5f_c01014{bottom:220.679805px;}
.y32_c01014{bottom:240.117645px;}
.y5e_c01014{bottom:240.118425px;}
.y5d_c01014{bottom:258.839355px;}
.y31_c01014{bottom:259.198110px;}
.y5c_c01014{bottom:278.277975px;}
.y30_c01014{bottom:278.278545px;}
.y5b_c01014{bottom:297.358410px;}
.y2f_c01014{bottom:297.358995px;}
.y5a_c01014{bottom:316.799565px;}
.y2e_c01014{bottom:316.800135px;}
.y2d_c01014{bottom:335.880000px;}
.y59_c01014{bottom:355.317345px;}
.y2c_c01014{bottom:355.319145px;}
.y58_c01014{bottom:374.038290px;}
.y2b_c01014{bottom:374.040075px;}
.y57_c01014{bottom:393.479415px;}
.y2a_c01014{bottom:393.481200px;}
.y29_c01014{bottom:411.841230px;}
.y56_c01014{bottom:412.198980px;}
.y55_c01014{bottom:431.279430px;}
.y28_c01014{bottom:431.279850px;}
.y27_c01014{bottom:450.359850px;}
.y54_c01014{bottom:450.359865px;}
.y26_c01014{bottom:450.359895px;}
.y53_c01014{bottom:470.159385px;}
.y25_c01014{bottom:470.159415px;}
.y52_c01014{bottom:489.239820px;}
.y24_c01014{bottom:489.239850px;}
.y51_c01014{bottom:508.680795px;}
.y23_c01014{bottom:508.681005px;}
.y50_c01014{bottom:527.761260px;}
.y22_c01014{bottom:528.119610px;}
.y21_c01014{bottom:547.560750px;}
.y20_c01014{bottom:566.640750px;}
.y1f_c01014{bottom:585.718785px;}
.y4f_c01014{bottom:585.719220px;}
.y1e_c01014{bottom:604.799220px;}
.y4e_c01014{bottom:604.799670px;}
.y1d_c01014{bottom:623.879670px;}
.y4d_c01014{bottom:623.880105px;}
.y1c_c01014{bottom:642.599235px;}
.y4c_c01014{bottom:642.599670px;}
.y1b_c01014{bottom:661.679670px;}
.y1a_c01014{bottom:661.679745px;}
.y4a_c01014{bottom:680.759310px;}
.y4b_c01014{bottom:680.759535px;}
.y19_c01014{bottom:680.760195px;}
.y49_c01014{bottom:700.200435px;}
.y18_c01014{bottom:700.559685px;}
.y48_c01014{bottom:719.280435px;}
.y16_c01014{bottom:719.638305px;}
.y17_c01014{bottom:719.639700px;}
.y15_c01014{bottom:738.718740px;}
.y47_c01014{bottom:738.719520px;}
.y14_c01014{bottom:757.799190px;}
.y45_c01014{bottom:758.159130px;}
.y46_c01014{bottom:758.160420px;}
.y44_c01014{bottom:777.239565px;}
.y13_c01014{bottom:777.240330px;}
.y43_c01014{bottom:796.320030px;}
.y12_c01014{bottom:796.320780px;}
.y42_c01014{bottom:816.119520px;}
.y11_c01014{bottom:816.120270px;}
.y41_c01014{bottom:835.199985px;}
.y10_c01014{bottom:835.200735px;}
.y40_c01014{bottom:854.280420px;}
.yf_c01014{bottom:854.639355px;}
.ye_c01014{bottom:873.360255px;}
.y3f_c01014{bottom:873.719025px;}
.y3e_c01014{bottom:893.160180px;}
.yd_c01014{bottom:893.519325px;}
.y3d_c01014{bottom:912.598800px;}
.yc_c01014{bottom:912.599790px;}
.y3c_c01014{bottom:932.039925px;}
.yb_c01014{bottom:932.040915px;}
.y3b_c01014{bottom:950.759490px;}
.ya_c01014{bottom:950.760480px;}
.y39_c01014{bottom:970.200045px;}
.y3a_c01014{bottom:970.200435px;}
.y9_c01014{bottom:970.559985px;}
.y38_c01014{bottom:989.280510px;}
.y8_c01014{bottom:989.280900px;}
.y37_c01014{bottom:1008.360945px;}
.y7_c01014{bottom:1008.719520px;}
.y5_c01014{bottom:1027.799280px;}
.y6_c01014{bottom:1027.799565px;}
.y36_c01014{bottom:1046.877705px;}
.y4_c01014{bottom:1047.240420px;}
.y3_c01014{bottom:1085.759490px;}
.y2_c01014{bottom:1085.759850px;}
.y1_c01014{bottom:1142.640105px;}
.ha_c01014{height:43.022461px;}
.he_c01014{height:43.804688px;}
.h3_c01014{height:46.151367px;}
.hd_c01014{height:47.715820px;}
.hb_c01014{height:48.178711px;}
.h2_c01014{height:48.375000px;}
.h1_c01014{height:50.402344px;}
.hc_c01014{height:52.625977px;}
.h8_c01014{height:53.367188px;}
.h5_c01014{height:54.108398px;}
.h4_c01014{height:54.443115px;}
.h6_c01014{height:56.320312px;}
.h7_c01014{height:67.450195px;}
.h9_c01014{height:69.673828px;}
.h0_c01014{height:1263.000000px;}
.w0_c01014{width:892.500000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:138.239850px;}
.x2_c01014{left:197.638500px;}
.x8_c01014{left:208.079595px;}
.x5_c01014{left:209.159385px;}
.x3_c01014{left:229.679700px;}
.x7_c01014{left:254.519100px;}
.x9_c01014{left:269.279850px;}
.x6_c01014{left:280.798950px;}
.xa_c01014{left:345.238785px;}
.xe_c01014{left:409.676520px;}
.xb_c01014{left:410.761710px;}
.xc_c01014{left:443.159820px;}
.xd_c01014{left:487.799565px;}
.x4_c01014{left:534.599670px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls5_c01014{letter-spacing:-4.233600pt;}
.ls3_c01014{letter-spacing:-4.141800pt;}
.ls6_c01014{letter-spacing:-4.073667pt;}
.ls7_c01014{letter-spacing:-3.631127pt;}
.ls8_c01014{letter-spacing:-3.520533pt;}
.ls4_c01014{letter-spacing:-2.302933pt;}
.ls9_c01014{letter-spacing:-1.537253pt;}
.ls2_c01014{letter-spacing:-0.770667pt;}
.ls1_c01014{letter-spacing:0.000000pt;}
.ls0_c01014{letter-spacing:1.314560pt;}
.ws0_c01014{word-spacing:0.000000pt;}
._c_c01014{margin-left:-25.354703pt;}
._2_c01014{margin-left:-9.021303pt;}
._d_c01014{margin-left:-7.751908pt;}
._0_c01014{margin-left:-4.533333pt;}
._9_c01014{margin-left:-2.860518pt;}
._1_c01014{margin-left:-1.949364pt;}
._a_c01014{margin-left:-0.920497pt;}
._e_c01014{width:1.223816pt;}
._b_c01014{width:2.851759pt;}
._7_c01014{width:3.944645pt;}
._8_c01014{width:4.968595pt;}
._12_c01014{width:19.729128pt;}
._10_c01014{width:21.202538pt;}
._15_c01014{width:22.680067pt;}
._f_c01014{width:23.972451pt;}
._3_c01014{width:25.160031pt;}
._16_c01014{width:27.439852pt;}
._11_c01014{width:28.528466pt;}
._14_c01014{width:30.005995pt;}
._18_c01014{width:31.603665pt;}
._13_c01014{width:48.248067pt;}
._17_c01014{width:51.412364pt;}
._5_c01014{width:57.471416pt;}
._6_c01014{width:102.868907pt;}
._4_c01014{width:632.803789pt;}
.fs8_c01014{font-size:36.666667pt;}
.fsc_c01014{font-size:37.333333pt;}
.fs2_c01014{font-size:39.333333pt;}
.fsb_c01014{font-size:40.666667pt;}
.fs1_c01014{font-size:42.666667pt;}
.fs9_c01014{font-size:43.333333pt;}
.fs0_c01014{font-size:45.333333pt;}
.fsa_c01014{font-size:47.333333pt;}
.fs5_c01014{font-size:48.000000pt;}
.fs4_c01014{font-size:48.666667pt;}
.fs3_c01014{font-size:49.333333pt;}
.fs6_c01014{font-size:60.666667pt;}
.fs7_c01014{font-size:62.666667pt;}
.y0_c01014{bottom:0.000000pt;}
.y62_c01014{bottom:162.240280pt;}
.y35_c01014{bottom:162.557920pt;}
.y34_c01014{bottom:179.518333pt;}
.y60_c01014{bottom:179.519027pt;}
.y61_c01014{bottom:179.519467pt;}
.y33_c01014{bottom:196.159133pt;}
.y5f_c01014{bottom:196.159827pt;}
.y32_c01014{bottom:213.437907pt;}
.y5e_c01014{bottom:213.438600pt;}
.y5d_c01014{bottom:230.079427pt;}
.y31_c01014{bottom:230.398320pt;}
.y5c_c01014{bottom:247.358200pt;}
.y30_c01014{bottom:247.358707pt;}
.y5b_c01014{bottom:264.318587pt;}
.y2f_c01014{bottom:264.319107pt;}
.y5a_c01014{bottom:281.599613pt;}
.y2e_c01014{bottom:281.600120pt;}
.y2d_c01014{bottom:298.560000pt;}
.y59_c01014{bottom:315.837640pt;}
.y2c_c01014{bottom:315.839240pt;}
.y58_c01014{bottom:332.478480pt;}
.y2b_c01014{bottom:332.480067pt;}
.y57_c01014{bottom:349.759480pt;}
.y2a_c01014{bottom:349.761067pt;}
.y29_c01014{bottom:366.081093pt;}
.y56_c01014{bottom:366.399093pt;}
.y55_c01014{bottom:383.359493pt;}
.y28_c01014{bottom:383.359867pt;}
.y27_c01014{bottom:400.319867pt;}
.y54_c01014{bottom:400.319880pt;}
.y26_c01014{bottom:400.319907pt;}
.y53_c01014{bottom:417.919453pt;}
.y25_c01014{bottom:417.919480pt;}
.y52_c01014{bottom:434.879840pt;}
.y24_c01014{bottom:434.879867pt;}
.y51_c01014{bottom:452.160707pt;}
.y23_c01014{bottom:452.160893pt;}
.y50_c01014{bottom:469.121120pt;}
.y22_c01014{bottom:469.439653pt;}
.y21_c01014{bottom:486.720667pt;}
.y20_c01014{bottom:503.680667pt;}
.y1f_c01014{bottom:520.638920pt;}
.y4f_c01014{bottom:520.639307pt;}
.y1e_c01014{bottom:537.599307pt;}
.y4e_c01014{bottom:537.599707pt;}
.y1d_c01014{bottom:554.559707pt;}
.y4d_c01014{bottom:554.560093pt;}
.y1c_c01014{bottom:571.199320pt;}
.y4c_c01014{bottom:571.199707pt;}
.y1b_c01014{bottom:588.159707pt;}
.y1a_c01014{bottom:588.159773pt;}
.y4a_c01014{bottom:605.119387pt;}
.y4b_c01014{bottom:605.119587pt;}
.y19_c01014{bottom:605.120173pt;}
.y49_c01014{bottom:622.400387pt;}
.y18_c01014{bottom:622.719720pt;}
.y48_c01014{bottom:639.360387pt;}
.y16_c01014{bottom:639.678493pt;}
.y17_c01014{bottom:639.679733pt;}
.y15_c01014{bottom:656.638880pt;}
.y47_c01014{bottom:656.639573pt;}
.y14_c01014{bottom:673.599280pt;}
.y45_c01014{bottom:673.919227pt;}
.y46_c01014{bottom:673.920373pt;}
.y44_c01014{bottom:690.879613pt;}
.y13_c01014{bottom:690.880293pt;}
.y43_c01014{bottom:707.840027pt;}
.y12_c01014{bottom:707.840693pt;}
.y42_c01014{bottom:725.439573pt;}
.y11_c01014{bottom:725.440240pt;}
.y41_c01014{bottom:742.399987pt;}
.y10_c01014{bottom:742.400653pt;}
.y40_c01014{bottom:759.360373pt;}
.yf_c01014{bottom:759.679427pt;}
.ye_c01014{bottom:776.320227pt;}
.y3f_c01014{bottom:776.639133pt;}
.y3e_c01014{bottom:793.920160pt;}
.yd_c01014{bottom:794.239400pt;}
.y3d_c01014{bottom:811.198933pt;}
.yc_c01014{bottom:811.199813pt;}
.y3c_c01014{bottom:828.479933pt;}
.yb_c01014{bottom:828.480813pt;}
.y3b_c01014{bottom:845.119547pt;}
.ya_c01014{bottom:845.120427pt;}
.y39_c01014{bottom:862.400040pt;}
.y3a_c01014{bottom:862.400387pt;}
.y9_c01014{bottom:862.719987pt;}
.y38_c01014{bottom:879.360453pt;}
.y8_c01014{bottom:879.360800pt;}
.y37_c01014{bottom:896.320840pt;}
.y7_c01014{bottom:896.639573pt;}
.y5_c01014{bottom:913.599360pt;}
.y6_c01014{bottom:913.599613pt;}
.y36_c01014{bottom:930.557960pt;}
.y4_c01014{bottom:930.880373pt;}
.y3_c01014{bottom:965.119547pt;}
.y2_c01014{bottom:965.119867pt;}
.y1_c01014{bottom:1015.680093pt;}
.ha_c01014{height:38.242188pt;}
.he_c01014{height:38.937500pt;}
.h3_c01014{height:41.023438pt;}
.hd_c01014{height:42.414062pt;}
.hb_c01014{height:42.825521pt;}
.h2_c01014{height:43.000000pt;}
.h1_c01014{height:44.802083pt;}
.hc_c01014{height:46.778646pt;}
.h8_c01014{height:47.437500pt;}
.h5_c01014{height:48.096354pt;}
.h4_c01014{height:48.393880pt;}
.h6_c01014{height:50.062500pt;}
.h7_c01014{height:59.955729pt;}
.h9_c01014{height:61.932292pt;}
.h0_c01014{height:1122.666667pt;}
.w0_c01014{width:793.333333pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:122.879867pt;}
.x2_c01014{left:175.678667pt;}
.x8_c01014{left:184.959640pt;}
.x5_c01014{left:185.919453pt;}
.x3_c01014{left:204.159733pt;}
.x7_c01014{left:226.239200pt;}
.x9_c01014{left:239.359867pt;}
.x6_c01014{left:249.599067pt;}
.xa_c01014{left:306.878920pt;}
.xe_c01014{left:364.156907pt;}
.xb_c01014{left:365.121520pt;}
.xc_c01014{left:393.919840pt;}
.xd_c01014{left:433.599613pt;}
.x4_c01014{left:475.199707pt;}
}





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

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_98dfa6a7eb70510c0b7919d9.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_fc3aa63e9cda42aed44e4844.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_4bd5789f146bcaf78b9d5592.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01015;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01015;src:url('chunks/assets/font_c511cd23ba1783f39a89922c.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.311035;font-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_c01015{transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);}
.m10_c01015{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.mc_c01015{transform:matrix(0.184028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184028,0.000000,0.000000,0.250000,0,0);}
.m11_c01015{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m6_c01015{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.ma_c01015{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.mf_c01015{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m12_c01015{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.md_c01015{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.me_c01015{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m7_c01015{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_c01015{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m9_c01015{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m8_c01015{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m4_c01015{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m1_c01015{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m0_c01015{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m13_c01015{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m5_c01015{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m2_c01015{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls10_c01015{letter-spacing:-4.531950px;}
.lsa_c01015{letter-spacing:-4.466813px;}
.lsd_c01015{letter-spacing:-4.182000px;}
.ls14_c01015{letter-spacing:-4.112978px;}
.ls7_c01015{letter-spacing:-3.434625px;}
.lsc_c01015{letter-spacing:-3.345600px;}
.ls5_c01015{letter-spacing:-2.508690px;}
.ls9_c01015{letter-spacing:-2.462775px;}
.ls3_c01015{letter-spacing:-1.673310px;}
.ls12_c01015{letter-spacing:-1.025100px;}
.ls11_c01015{letter-spacing:-0.926295px;}
.ls8_c01015{letter-spacing:-0.888743px;}
.lsb_c01015{letter-spacing:-0.861000px;}
.ls2_c01015{letter-spacing:-0.836400px;}
.ls4_c01015{letter-spacing:-0.813638px;}
.ls6_c01015{letter-spacing:0.000000px;}
.lse_c01015{letter-spacing:0.877200px;}
.ls13_c01015{letter-spacing:0.926325px;}
.lsf_c01015{letter-spacing:4.077000px;}
.ls1_c01015{letter-spacing:4.182000px;}
.ls0_c01015{letter-spacing:4.236908px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01015{word-spacing:0.000000px;}
._9_c01015{margin-left:-80.274201px;}
._7_c01015{margin-left:-8.527534px;}
._8_c01015{margin-left:-6.217251px;}
._5_c01015{margin-left:-4.350216px;}
._2_c01015{margin-left:-1.784089px;}
._4_c01015{width:1.479911px;}
._6_c01015{width:4.011367px;}
._13_c01015{width:20.466016px;}
._e_c01015{width:21.916431px;}
._11_c01015{width:23.674100px;}
._0_c01015{width:25.887266px;}
._c_c01015{width:27.099076px;}
._f_c01015{width:30.367340px;}
._b_c01015{width:32.107292px;}
._a_c01015{width:33.243656px;}
._14_c01015{width:35.454866px;}
._15_c01015{width:37.056500px;}
._d_c01015{width:54.255430px;}
._12_c01015{width:55.860233px;}
._10_c01015{width:57.693064px;}
._3_c01015{width:129.517183px;}
._1_c01015{width:693.241186px;}
.fc0_c01015{color:transparent;}
.fsd_c01015{font-size:42.750000px;}
.fs1_c01015{font-size:45.750000px;}
.fs2_c01015{font-size:48.750000px;}
.fsb_c01015{font-size:50.250000px;}
.fs0_c01015{font-size:51.000000px;}
.fsc_c01015{font-size:51.750000px;}
.fs4_c01015{font-size:52.500000px;}
.fs3_c01015{font-size:53.250000px;}
.fs8_c01015{font-size:54.000000px;}
.fs5_c01015{font-size:54.750000px;}
.fsa_c01015{font-size:55.500000px;}
.fs6_c01015{font-size:56.250000px;}
.fs7_c01015{font-size:58.500000px;}
.fs9_c01015{font-size:60.750000px;}
.y0_c01015{bottom:0.000000px;}
.y38_c01015{bottom:181.438335px;}
.y6c_c01015{bottom:181.799310px;}
.y37_c01015{bottom:200.876955px;}
.y6b_c01015{bottom:201.240465px;}
.y36_c01015{bottom:219.597885px;}
.y6a_c01015{bottom:220.320900px;}
.y35_c01015{bottom:238.678320px;}
.y69_c01015{bottom:239.400900px;}
.y34_c01015{bottom:257.758785px;}
.y68_c01015{bottom:258.480900px;}
.y67_c01015{bottom:258.481380px;}
.y33_c01015{bottom:277.197390px;}
.y66_c01015{bottom:277.920000px;}
.y32_c01015{bottom:296.277825px;}
.y65_c01015{bottom:296.999160px;}
.y31_c01015{bottom:315.718980px;}
.y64_c01015{bottom:316.079610px;}
.y30_c01015{bottom:334.438545px;}
.y63_c01015{bottom:335.520750px;}
.y2f_c01015{bottom:353.879670px;}
.y62_c01015{bottom:354.959865px;}
.y2e_c01015{bottom:372.960135px;}
.y61_c01015{bottom:373.680795px;}
.y2d_c01015{bottom:392.040570px;}
.y60_c01015{bottom:393.119415px;}
.y2b_c01015{bottom:411.118155px;}
.y2c_c01015{bottom:411.120435px;}
.y5f_c01015{bottom:412.199850px;}
.y2a_c01015{bottom:430.917660px;}
.y5e_c01015{bottom:431.277990px;}
.y29_c01015{bottom:449.637225px;}
.y5d_c01015{bottom:449.998920px;}
.y28_c01015{bottom:469.078350px;}
.y5c_c01015{bottom:470.157945px;}
.y27_c01015{bottom:488.158815px;}
.y5b_c01015{bottom:488.878875px;}
.y26_c01015{bottom:507.958305px;}
.y5a_c01015{bottom:508.678365px;}
.y25_c01015{bottom:526.677870px;}
.y59_c01015{bottom:527.397930px;}
.y24_c01015{bottom:545.758320px;}
.y58_c01015{bottom:546.478380px;}
.y23_c01015{bottom:564.838755px;}
.y57_c01015{bottom:565.919520px;}
.y22_c01015{bottom:584.279910px;}
.y56_c01015{bottom:584.999970px;}
.y21_c01015{bottom:603.000825px;}
.y55_c01015{bottom:604.080420px;}
.y20_c01015{bottom:622.798965px;}
.y54_c01015{bottom:623.519670px;}
.y1f_c01015{bottom:641.880585px;}
.y53_c01015{bottom:642.959535px;}
.y1e_c01015{bottom:660.961035px;}
.y52_c01015{bottom:662.040000px;}
.y1c_c01015{bottom:680.040750px;}
.y1d_c01015{bottom:680.041035px;}
.y51_c01015{bottom:681.120435px;}
.y1b_c01015{bottom:699.479370px;}
.y50_c01015{bottom:700.558275px;}
.y1a_c01015{bottom:718.200300px;}
.y4f_c01015{bottom:719.279205px;}
.y19_c01015{bottom:737.638920px;}
.y4e_c01015{bottom:738.359640px;}
.y18_c01015{bottom:756.359820px;}
.y4d_c01015{bottom:757.440105px;}
.y17_c01015{bottom:775.440285px;}
.y4c_c01015{bottom:776.161005px;}
.y16_c01015{bottom:794.520720px;}
.y4b_c01015{bottom:795.600135px;}
.y4a_c01015{bottom:795.601335px;}
.y14_c01015{bottom:814.679715px;}
.y15_c01015{bottom:814.680090px;}
.y49_c01015{bottom:815.400840px;}
.y13_c01015{bottom:834.120870px;}
.y48_c01015{bottom:834.839445px;}
.y12_c01015{bottom:853.559490px;}
.y47_c01015{bottom:854.280600px;}
.y11_c01015{bottom:872.639925px;}
.y46_c01015{bottom:873.361035px;}
.y10_c01015{bottom:892.081080px;}
.y45_c01015{bottom:892.799655px;}
.yf_c01015{bottom:911.161515px;}
.y44_c01015{bottom:911.881275px;}
.yd_c01015{bottom:930.599715px;}
.ye_c01015{bottom:930.600135px;}
.y43_c01015{bottom:931.319895px;}
.yc_c01015{bottom:948.959745px;}
.y42_c01015{bottom:950.040795px;}
.yb_c01015{bottom:968.400900px;}
.y41_c01015{bottom:968.760360px;}
.ya_c01015{bottom:987.481335px;}
.y40_c01015{bottom:988.201515px;}
.y9_c01015{bottom:1006.919955px;}
.y3f_c01015{bottom:1008.001005px;}
.y8_c01015{bottom:1026.000000px;}
.y3d_c01015{bottom:1026.719880px;}
.y3e_c01015{bottom:1026.720150px;}
.y6_c01015{bottom:1045.799805px;}
.y7_c01015{bottom:1045.800105px;}
.y3c_c01015{bottom:1046.161005px;}
.y5_c01015{bottom:1064.520720px;}
.y4_c01015{bottom:1064.520930px;}
.y3b_c01015{bottom:1064.877000px;}
.y3_c01015{bottom:1083.959535px;}
.y3a_c01015{bottom:1084.318155px;}
.y2_c01015{bottom:1103.039985px;}
.y39_c01015{bottom:1103.398590px;}
.y1_c01015{bottom:1141.199805px;}
.he_c01015{height:44.586914px;}
.h2_c01015{height:47.715820px;}
.h3_c01015{height:48.178711px;}
.h1_c01015{height:50.402344px;}
.hc_c01015{height:50.642578px;}
.hd_c01015{height:51.143555px;}
.h5_c01015{height:51.884766px;}
.h4_c01015{height:52.625977px;}
.h9_c01015{height:53.367188px;}
.h6_c01015{height:54.108398px;}
.hb_c01015{height:54.849609px;}
.h7_c01015{height:55.590820px;}
.h8_c01015{height:57.814453px;}
.ha_c01015{height:59.593140px;}
.h0_c01015{height:1263.000000px;}
.w0_c01015{width:892.500000px;}
.x0_c01015{left:0.000000px;}
.x1_c01015{left:135.359250px;}
.x8_c01015{left:206.639790px;}
.x5_c01015{left:207.719100px;}
.x6_c01015{left:259.199385px;}
.xa_c01015{left:264.958950px;}
.xb_c01015{left:271.799535px;}
.xc_c01015{left:278.638500px;}
.x7_c01015{left:285.120000px;}
.x9_c01015{left:311.038950px;}
.xd_c01015{left:408.601455px;}
.xe_c01015{left:440.638500px;}
.xf_c01015{left:486.000000px;}
.x2_c01015{left:532.439250px;}
.x3_c01015{left:577.798920px;}
.x4_c01015{left:636.479235px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls10_c01015{letter-spacing:-4.028400pt;}
.lsa_c01015{letter-spacing:-3.970500pt;}
.lsd_c01015{letter-spacing:-3.717333pt;}
.ls14_c01015{letter-spacing:-3.655980pt;}
.ls7_c01015{letter-spacing:-3.053000pt;}
.lsc_c01015{letter-spacing:-2.973867pt;}
.ls5_c01015{letter-spacing:-2.229947pt;}
.ls9_c01015{letter-spacing:-2.189133pt;}
.ls3_c01015{letter-spacing:-1.487387pt;}
.ls12_c01015{letter-spacing:-0.911200pt;}
.ls11_c01015{letter-spacing:-0.823373pt;}
.ls8_c01015{letter-spacing:-0.789993pt;}
.lsb_c01015{letter-spacing:-0.765333pt;}
.ls2_c01015{letter-spacing:-0.743467pt;}
.ls4_c01015{letter-spacing:-0.723233pt;}
.ls6_c01015{letter-spacing:0.000000pt;}
.lse_c01015{letter-spacing:0.779733pt;}
.ls13_c01015{letter-spacing:0.823400pt;}
.lsf_c01015{letter-spacing:3.624000pt;}
.ls1_c01015{letter-spacing:3.717333pt;}
.ls0_c01015{letter-spacing:3.766140pt;}
.ws0_c01015{word-spacing:0.000000pt;}
._9_c01015{margin-left:-71.354845pt;}
._7_c01015{margin-left:-7.580031pt;}
._8_c01015{margin-left:-5.526445pt;}
._5_c01015{margin-left:-3.866859pt;}
._2_c01015{margin-left:-1.585857pt;}
._4_c01015{width:1.315477pt;}
._6_c01015{width:3.565660pt;}
._13_c01015{width:18.192014pt;}
._e_c01015{width:19.481272pt;}
._11_c01015{width:21.043644pt;}
._0_c01015{width:23.010903pt;}
._c_c01015{width:24.088067pt;}
._f_c01015{width:26.993191pt;}
._b_c01015{width:28.539816pt;}
._a_c01015{width:29.549917pt;}
._14_c01015{width:31.515436pt;}
._15_c01015{width:32.939111pt;}
._d_c01015{width:48.227049pt;}
._12_c01015{width:49.653541pt;}
._10_c01015{width:51.282724pt;}
._3_c01015{width:115.126384pt;}
._1_c01015{width:616.214387pt;}
.fsd_c01015{font-size:38.000000pt;}
.fs1_c01015{font-size:40.666667pt;}
.fs2_c01015{font-size:43.333333pt;}
.fsb_c01015{font-size:44.666667pt;}
.fs0_c01015{font-size:45.333333pt;}
.fsc_c01015{font-size:46.000000pt;}
.fs4_c01015{font-size:46.666667pt;}
.fs3_c01015{font-size:47.333333pt;}
.fs8_c01015{font-size:48.000000pt;}
.fs5_c01015{font-size:48.666667pt;}
.fsa_c01015{font-size:49.333333pt;}
.fs6_c01015{font-size:50.000000pt;}
.fs7_c01015{font-size:52.000000pt;}
.fs9_c01015{font-size:54.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y38_c01015{bottom:161.278520pt;}
.y6c_c01015{bottom:161.599387pt;}
.y37_c01015{bottom:178.557293pt;}
.y6b_c01015{bottom:178.880413pt;}
.y36_c01015{bottom:195.198120pt;}
.y6a_c01015{bottom:195.840800pt;}
.y35_c01015{bottom:212.158507pt;}
.y69_c01015{bottom:212.800800pt;}
.y34_c01015{bottom:229.118920pt;}
.y68_c01015{bottom:229.760800pt;}
.y67_c01015{bottom:229.761227pt;}
.y33_c01015{bottom:246.397680pt;}
.y66_c01015{bottom:247.040000pt;}
.y32_c01015{bottom:263.358067pt;}
.y65_c01015{bottom:263.999253pt;}
.y31_c01015{bottom:280.639093pt;}
.y64_c01015{bottom:280.959653pt;}
.y30_c01015{bottom:297.278707pt;}
.y63_c01015{bottom:298.240667pt;}
.y2f_c01015{bottom:314.559707pt;}
.y62_c01015{bottom:315.519880pt;}
.y2e_c01015{bottom:331.520120pt;}
.y61_c01015{bottom:332.160707pt;}
.y2d_c01015{bottom:348.480507pt;}
.y60_c01015{bottom:349.439480pt;}
.y2b_c01015{bottom:365.438360pt;}
.y2c_c01015{bottom:365.440387pt;}
.y5f_c01015{bottom:366.399867pt;}
.y2a_c01015{bottom:383.037920pt;}
.y5e_c01015{bottom:383.358213pt;}
.y29_c01015{bottom:399.677533pt;}
.y5d_c01015{bottom:399.999040pt;}
.y28_c01015{bottom:416.958533pt;}
.y5c_c01015{bottom:417.918173pt;}
.y27_c01015{bottom:433.918947pt;}
.y5b_c01015{bottom:434.559000pt;}
.y26_c01015{bottom:451.518493pt;}
.y5a_c01015{bottom:452.158547pt;}
.y25_c01015{bottom:468.158107pt;}
.y59_c01015{bottom:468.798160pt;}
.y24_c01015{bottom:485.118507pt;}
.y58_c01015{bottom:485.758560pt;}
.y23_c01015{bottom:502.078893pt;}
.y57_c01015{bottom:503.039573pt;}
.y22_c01015{bottom:519.359920pt;}
.y56_c01015{bottom:519.999973pt;}
.y21_c01015{bottom:536.000733pt;}
.y55_c01015{bottom:536.960373pt;}
.y20_c01015{bottom:553.599080pt;}
.y54_c01015{bottom:554.239707pt;}
.y1f_c01015{bottom:570.560520pt;}
.y53_c01015{bottom:571.519587pt;}
.y1e_c01015{bottom:587.520920pt;}
.y52_c01015{bottom:588.480000pt;}
.y1c_c01015{bottom:604.480667pt;}
.y1d_c01015{bottom:604.480920pt;}
.y51_c01015{bottom:605.440387pt;}
.y1b_c01015{bottom:621.759440pt;}
.y50_c01015{bottom:622.718467pt;}
.y1a_c01015{bottom:638.400267pt;}
.y4f_c01015{bottom:639.359293pt;}
.y19_c01015{bottom:655.679040pt;}
.y4e_c01015{bottom:656.319680pt;}
.y18_c01015{bottom:672.319840pt;}
.y4d_c01015{bottom:673.280093pt;}
.y17_c01015{bottom:689.280253pt;}
.y4c_c01015{bottom:689.920893pt;}
.y16_c01015{bottom:706.240640pt;}
.y4b_c01015{bottom:707.200120pt;}
.y4a_c01015{bottom:707.201187pt;}
.y14_c01015{bottom:724.159747pt;}
.y15_c01015{bottom:724.160080pt;}
.y49_c01015{bottom:724.800747pt;}
.y13_c01015{bottom:741.440773pt;}
.y48_c01015{bottom:742.079507pt;}
.y12_c01015{bottom:758.719547pt;}
.y47_c01015{bottom:759.360533pt;}
.y11_c01015{bottom:775.679933pt;}
.y46_c01015{bottom:776.320920pt;}
.y10_c01015{bottom:792.960960pt;}
.y45_c01015{bottom:793.599693pt;}
.yf_c01015{bottom:809.921347pt;}
.y44_c01015{bottom:810.561133pt;}
.yd_c01015{bottom:827.199747pt;}
.ye_c01015{bottom:827.200120pt;}
.y43_c01015{bottom:827.839907pt;}
.yc_c01015{bottom:843.519773pt;}
.y42_c01015{bottom:844.480707pt;}
.yb_c01015{bottom:860.800800pt;}
.y41_c01015{bottom:861.120320pt;}
.ya_c01015{bottom:877.761187pt;}
.y40_c01015{bottom:878.401347pt;}
.y9_c01015{bottom:895.039960pt;}
.y3f_c01015{bottom:896.000893pt;}
.y8_c01015{bottom:912.000000pt;}
.y3d_c01015{bottom:912.639893pt;}
.y3e_c01015{bottom:912.640133pt;}
.y6_c01015{bottom:929.599827pt;}
.y7_c01015{bottom:929.600093pt;}
.y3c_c01015{bottom:929.920893pt;}
.y5_c01015{bottom:946.240640pt;}
.y4_c01015{bottom:946.240827pt;}
.y3b_c01015{bottom:946.557333pt;}
.y3_c01015{bottom:963.519587pt;}
.y3a_c01015{bottom:963.838360pt;}
.y2_c01015{bottom:980.479987pt;}
.y39_c01015{bottom:980.798747pt;}
.y1_c01015{bottom:1014.399827pt;}
.he_c01015{height:39.632812pt;}
.h2_c01015{height:42.414062pt;}
.h3_c01015{height:42.825521pt;}
.h1_c01015{height:44.802083pt;}
.hc_c01015{height:45.015625pt;}
.hd_c01015{height:45.460938pt;}
.h5_c01015{height:46.119792pt;}
.h4_c01015{height:46.778646pt;}
.h9_c01015{height:47.437500pt;}
.h6_c01015{height:48.096354pt;}
.hb_c01015{height:48.755208pt;}
.h7_c01015{height:49.414063pt;}
.h8_c01015{height:51.390625pt;}
.ha_c01015{height:52.971680pt;}
.h0_c01015{height:1122.666667pt;}
.w0_c01015{width:793.333333pt;}
.x0_c01015{left:0.000000pt;}
.x1_c01015{left:120.319333pt;}
.x8_c01015{left:183.679813pt;}
.x5_c01015{left:184.639200pt;}
.x6_c01015{left:230.399453pt;}
.xa_c01015{left:235.519067pt;}
.xb_c01015{left:241.599587pt;}
.xc_c01015{left:247.678667pt;}
.x7_c01015{left:253.440000pt;}
.x9_c01015{left:276.479067pt;}
.xd_c01015{left:363.201293pt;}
.xe_c01015{left:391.678667pt;}
.xf_c01015{left:432.000000pt;}
.x2_c01015{left:473.279333pt;}
.x3_c01015{left:513.599040pt;}
.x4_c01015{left:565.759320pt;}
}





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

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_96c1f1517a7e4b582f0ce802.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_2030b9d2672131d7679b3f66.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_b3c6719631d49639ca9fad59.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_8e493f48202ac2d9a807bd11.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01016;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.281250;font-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_c01016{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.ma_c01016{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);}
.m15_c01016{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m2_c01016{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m3_c01016{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m7_c01016{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m10_c01016{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.mc_c01016{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m8_c01016{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.me_c01016{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m6_c01016{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.md_c01016{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m1_c01016{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m5_c01016{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m4_c01016{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m0_c01016{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m12_c01016{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m13_c01016{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m9_c01016{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m14_c01016{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m11_c01016{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.mb_c01016{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls12_c01016{letter-spacing:-4.924200px;}
.ls3_c01016{letter-spacing:-4.182000px;}
.ls11_c01016{letter-spacing:-4.140300px;}
.lsf_c01016{letter-spacing:-4.031325px;}
.ls4_c01016{letter-spacing:-3.345600px;}
.ls7_c01016{letter-spacing:-2.508690px;}
.lsc_c01016{letter-spacing:-2.463818px;}
.ls8_c01016{letter-spacing:-1.695750px;}
.ls1_c01016{letter-spacing:-1.673310px;}
.ls10_c01016{letter-spacing:-1.671525px;}
.lsb_c01016{letter-spacing:-0.951330px;}
.lse_c01016{letter-spacing:-0.905250px;}
.ls6_c01016{letter-spacing:-0.838673px;}
.ls0_c01016{letter-spacing:-0.836400px;}
.ls2_c01016{letter-spacing:0.000000px;}
.lsd_c01016{letter-spacing:0.892500px;}
.ls9_c01016{letter-spacing:0.905250px;}
.ls5_c01016{letter-spacing:0.956250px;}
.lsa_c01016{letter-spacing:2.508690px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:0.000000px;}
._d_c01016{margin-left:-23.745667px;}
._7_c01016{margin-left:-9.692140px;}
._5_c01016{margin-left:-7.088766px;}
._6_c01016{margin-left:-5.482517px;}
._9_c01016{margin-left:-4.477432px;}
._a_c01016{margin-left:-2.871250px;}
._2_c01016{width:1.428878px;}
._c_c01016{width:3.060635px;}
._b_c01016{width:4.916333px;}
._8_c01016{width:6.701032px;}
._11_c01016{width:22.082030px;}
._0_c01016{width:24.281083px;}
._f_c01016{width:25.498244px;}
._e_c01016{width:27.019700px;}
._10_c01016{width:30.500976px;}
._12_c01016{width:32.111356px;}
._14_c01016{width:33.708793px;}
._13_c01016{width:35.320460px;}
._16_c01016{width:56.160907px;}
._15_c01016{width:57.632751px;}
._3_c01016{width:59.607627px;}
._4_c01016{width:118.587457px;}
._1_c01016{width:693.241186px;}
.fc0_c01016{color:transparent;}
.fsa_c01016{font-size:42.750000px;}
.fsc_c01016{font-size:43.500000px;}
.fs8_c01016{font-size:46.500000px;}
.fs1_c01016{font-size:49.500000px;}
.fs3_c01016{font-size:50.250000px;}
.fs0_c01016{font-size:51.000000px;}
.fs7_c01016{font-size:51.750000px;}
.fs4_c01016{font-size:52.500000px;}
.fs5_c01016{font-size:53.250000px;}
.fsb_c01016{font-size:55.500000px;}
.fs2_c01016{font-size:56.250000px;}
.fs6_c01016{font-size:57.000000px;}
.fs9_c01016{font-size:57.750000px;}
.y0_c01016{bottom:0.000000px;}
.y69_c01016{bottom:181.079400px;}
.y6a_c01016{bottom:181.080000px;}
.y38_c01016{bottom:181.441290px;}
.y68_c01016{bottom:200.159850px;}
.y37_c01016{bottom:200.879910px;}
.y67_c01016{bottom:218.880585px;}
.y36_c01016{bottom:219.600840px;}
.y35_c01016{bottom:237.240435px;}
.y66_c01016{bottom:238.319625px;}
.y34_c01016{bottom:257.760750px;}
.y65_c01016{bottom:276.478725px;}
.y33_c01016{bottom:276.840585px;}
.y64_c01016{bottom:295.199640px;}
.y32_c01016{bottom:295.918860px;}
.y63_c01016{bottom:314.280105px;}
.y31_c01016{bottom:314.999295px;}
.y62_c01016{bottom:333.360540px;}
.y30_c01016{bottom:333.718845px;}
.y61_c01016{bottom:352.799145px;}
.y2f_c01016{bottom:353.160000px;}
.y60_c01016{bottom:371.520075px;}
.y2e_c01016{bottom:372.240435px;}
.y5f_c01016{bottom:390.961215px;}
.y2d_c01016{bottom:391.320285px;}
.y5e_c01016{bottom:410.399820px;}
.y2b_c01016{bottom:410.758845px;}
.y2c_c01016{bottom:410.759535px;}
.y5d_c01016{bottom:429.480285px;}
.y2a_c01016{bottom:430.200000px;}
.y5c_c01016{bottom:448.921410px;}
.y28_c01016{bottom:449.279910px;}
.y29_c01016{bottom:449.280435px;}
.y5b_c01016{bottom:468.719565px;}
.y27_c01016{bottom:469.079400px;}
.y5a_c01016{bottom:487.437510px;}
.y26_c01016{bottom:487.798965px;}
.y59_c01016{bottom:506.517975px;}
.y25_c01016{bottom:507.240120px;}
.y58_c01016{bottom:525.598410px;}
.y24_c01016{bottom:525.961035px;}
.y57_c01016{bottom:544.678875px;}
.y23_c01016{bottom:545.400285px;}
.y56_c01016{bottom:563.759310px;}
.y22_c01016{bottom:564.480285px;}
.y55_c01016{bottom:582.839760px;}
.y20_c01016{bottom:583.556355px;}
.y21_c01016{bottom:583.560285px;}
.y54_c01016{bottom:602.280900px;}
.y1f_c01016{bottom:602.636790px;}
.y52_c01016{bottom:621.359370px;}
.y53_c01016{bottom:621.360900px;}
.y1e_c01016{bottom:621.717240px;}
.y51_c01016{bottom:640.439805px;}
.y1d_c01016{bottom:641.158380px;}
.y50_c01016{bottom:659.520270px;}
.y1c_c01016{bottom:660.238845px;}
.y4f_c01016{bottom:678.600705px;}
.y1b_c01016{bottom:679.319280px;}
.y4e_c01016{bottom:698.039310px;}
.y1a_c01016{bottom:698.757885px;}
.y4d_c01016{bottom:717.119775px;}
.y19_c01016{bottom:717.838350px;}
.y4c_c01016{bottom:736.919265px;}
.y18_c01016{bottom:737.279475px;}
.y4b_c01016{bottom:755.999730px;}
.y17_c01016{bottom:756.718095px;}
.y4a_c01016{bottom:775.440855px;}
.y16_c01016{bottom:776.159250px;}
.y49_c01016{bottom:794.159640px;}
.y15_c01016{bottom:794.878800px;}
.y48_c01016{bottom:813.600765px;}
.y14_c01016{bottom:814.319940px;}
.y47_c01016{bottom:832.680330px;}
.y13_c01016{bottom:833.400405px;}
.y46_c01016{bottom:851.760780px;}
.y12_c01016{bottom:852.480840px;}
.y45_c01016{bottom:870.841455px;}
.y11_c01016{bottom:871.560705px;}
.y10_c01016{bottom:871.561620px;}
.y44_c01016{bottom:890.280075px;}
.yf_c01016{bottom:891.000225px;}
.y43_c01016{bottom:909.721200px;}
.ye_c01016{bottom:910.441365px;}
.y42_c01016{bottom:929.159820px;}
.yd_c01016{bottom:929.879970px;}
.y41_c01016{bottom:948.959535px;}
.yc_c01016{bottom:948.960015px;}
.yb_c01016{bottom:948.960645px;}
.y40_c01016{bottom:968.039985px;}
.ya_c01016{bottom:968.760135px;}
.y3f_c01016{bottom:987.119940px;}
.y8_c01016{bottom:987.838620px;}
.y9_c01016{bottom:987.840090px;}
.y3e_c01016{bottom:1006.559235px;}
.y7_c01016{bottom:1007.279775px;}
.y3d_c01016{bottom:1025.639670px;}
.y6_c01016{bottom:1025.999340px;}
.y3c_c01016{bottom:1044.720135px;}
.y5_c01016{bottom:1045.440465px;}
.y3b_c01016{bottom:1063.800570px;}
.y4_c01016{bottom:1064.520930px;}
.y3a_c01016{bottom:1082.880270px;}
.y3_c01016{bottom:1083.601365px;}
.y39_c01016{bottom:1101.960705px;}
.y2_c01016{bottom:1103.039985px;}
.y1_c01016{bottom:1141.919955px;}
.hb_c01016{height:44.586914px;}
.hd_c01016{height:45.369141px;}
.h9_c01016{height:45.637207px;}
.h2_c01016{height:48.919922px;}
.h4_c01016{height:49.661133px;}
.h1_c01016{height:50.402344px;}
.h8_c01016{height:51.143555px;}
.h5_c01016{height:51.884766px;}
.h6_c01016{height:52.625977px;}
.hc_c01016{height:54.443115px;}
.h3_c01016{height:55.590820px;}
.h7_c01016{height:56.332031px;}
.ha_c01016{height:57.073242px;}
.h0_c01016{height:1263.000000px;}
.w0_c01016{width:892.500000px;}
.x0_c01016{left:0.000000px;}
.x1_c01016{left:135.000000px;}
.xd_c01016{left:203.399940px;}
.x8_c01016{left:204.480405px;}
.x5_c01016{left:205.558635px;}
.x3_c01016{left:206.639700px;}
.xe_c01016{left:229.679700px;}
.xf_c01016{left:242.639100px;}
.x4_c01016{left:251.279250px;}
.x9_c01016{left:256.679700px;}
.xa_c01016{left:268.918950px;}
.x6_c01016{left:270.359250px;}
.xc_c01016{left:275.398635px;}
.xb_c01016{left:288.359850px;}
.x7_c01016{left:290.159385px;}
.x17_c01016{left:404.637885px;}
.x14_c01016{left:405.718785px;}
.x12_c01016{left:406.799565px;}
.x10_c01016{left:407.880045px;}
.x18_c01016{left:437.039385px;}
.x16_c01016{left:438.118785px;}
.x13_c01016{left:439.199850px;}
.x11_c01016{left:440.279250px;}
.x15_c01016{left:483.478635px;}
.x2_c01016{left:532.439250px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls12_c01016{letter-spacing:-4.377067pt;}
.ls3_c01016{letter-spacing:-3.717333pt;}
.ls11_c01016{letter-spacing:-3.680267pt;}
.lsf_c01016{letter-spacing:-3.583400pt;}
.ls4_c01016{letter-spacing:-2.973867pt;}
.ls7_c01016{letter-spacing:-2.229947pt;}
.lsc_c01016{letter-spacing:-2.190060pt;}
.ls8_c01016{letter-spacing:-1.507333pt;}
.ls1_c01016{letter-spacing:-1.487387pt;}
.ls10_c01016{letter-spacing:-1.485800pt;}
.lsb_c01016{letter-spacing:-0.845627pt;}
.lse_c01016{letter-spacing:-0.804667pt;}
.ls6_c01016{letter-spacing:-0.745487pt;}
.ls0_c01016{letter-spacing:-0.743467pt;}
.ls2_c01016{letter-spacing:0.000000pt;}
.lsd_c01016{letter-spacing:0.793333pt;}
.ls9_c01016{letter-spacing:0.804667pt;}
.ls5_c01016{letter-spacing:0.850000pt;}
.lsa_c01016{letter-spacing:2.229947pt;}
.ws0_c01016{word-spacing:0.000000pt;}
._d_c01016{margin-left:-21.107259pt;}
._7_c01016{margin-left:-8.615236pt;}
._5_c01016{margin-left:-6.301125pt;}
._6_c01016{margin-left:-4.873348pt;}
._9_c01016{margin-left:-3.979940pt;}
._a_c01016{margin-left:-2.552222pt;}
._2_c01016{width:1.270114pt;}
._c_c01016{width:2.720565pt;}
._b_c01016{width:4.370074pt;}
._8_c01016{width:5.956473pt;}
._11_c01016{width:19.628471pt;}
._0_c01016{width:21.583185pt;}
._f_c01016{width:22.665106pt;}
._e_c01016{width:24.017511pt;}
._10_c01016{width:27.111979pt;}
._12_c01016{width:28.543427pt;}
._14_c01016{width:29.963371pt;}
._13_c01016{width:31.395964pt;}
._16_c01016{width:49.920807pt;}
._15_c01016{width:51.229112pt;}
._3_c01016{width:52.984557pt;}
._4_c01016{width:105.411073pt;}
._1_c01016{width:616.214387pt;}
.fsa_c01016{font-size:38.000000pt;}
.fsc_c01016{font-size:38.666667pt;}
.fs8_c01016{font-size:41.333333pt;}
.fs1_c01016{font-size:44.000000pt;}
.fs3_c01016{font-size:44.666667pt;}
.fs0_c01016{font-size:45.333333pt;}
.fs7_c01016{font-size:46.000000pt;}
.fs4_c01016{font-size:46.666667pt;}
.fs5_c01016{font-size:47.333333pt;}
.fsb_c01016{font-size:49.333333pt;}
.fs2_c01016{font-size:50.000000pt;}
.fs6_c01016{font-size:50.666667pt;}
.fs9_c01016{font-size:51.333333pt;}
.y0_c01016{bottom:0.000000pt;}
.y69_c01016{bottom:160.959467pt;}
.y6a_c01016{bottom:160.960000pt;}
.y38_c01016{bottom:161.281147pt;}
.y68_c01016{bottom:177.919867pt;}
.y37_c01016{bottom:178.559920pt;}
.y67_c01016{bottom:194.560520pt;}
.y36_c01016{bottom:195.200747pt;}
.y35_c01016{bottom:210.880387pt;}
.y66_c01016{bottom:211.839667pt;}
.y34_c01016{bottom:229.120667pt;}
.y65_c01016{bottom:245.758867pt;}
.y33_c01016{bottom:246.080520pt;}
.y64_c01016{bottom:262.399680pt;}
.y32_c01016{bottom:263.038987pt;}
.y63_c01016{bottom:279.360093pt;}
.y31_c01016{bottom:279.999373pt;}
.y62_c01016{bottom:296.320480pt;}
.y30_c01016{bottom:296.638973pt;}
.y61_c01016{bottom:313.599240pt;}
.y2f_c01016{bottom:313.920000pt;}
.y60_c01016{bottom:330.240067pt;}
.y2e_c01016{bottom:330.880387pt;}
.y5f_c01016{bottom:347.521080pt;}
.y2d_c01016{bottom:347.840253pt;}
.y5e_c01016{bottom:364.799840pt;}
.y2b_c01016{bottom:365.118973pt;}
.y2c_c01016{bottom:365.119587pt;}
.y5d_c01016{bottom:381.760253pt;}
.y2a_c01016{bottom:382.400000pt;}
.y5c_c01016{bottom:399.041253pt;}
.y28_c01016{bottom:399.359920pt;}
.y29_c01016{bottom:399.360387pt;}
.y5b_c01016{bottom:416.639613pt;}
.y27_c01016{bottom:416.959467pt;}
.y5a_c01016{bottom:433.277787pt;}
.y26_c01016{bottom:433.599080pt;}
.y59_c01016{bottom:450.238200pt;}
.y25_c01016{bottom:450.880107pt;}
.y58_c01016{bottom:467.198587pt;}
.y24_c01016{bottom:467.520920pt;}
.y57_c01016{bottom:484.159000pt;}
.y23_c01016{bottom:484.800253pt;}
.y56_c01016{bottom:501.119387pt;}
.y22_c01016{bottom:501.760253pt;}
.y55_c01016{bottom:518.079787pt;}
.y20_c01016{bottom:518.716760pt;}
.y21_c01016{bottom:518.720253pt;}
.y54_c01016{bottom:535.360800pt;}
.y1f_c01016{bottom:535.677147pt;}
.y52_c01016{bottom:552.319440pt;}
.y53_c01016{bottom:552.320800pt;}
.y1e_c01016{bottom:552.637547pt;}
.y51_c01016{bottom:569.279827pt;}
.y1d_c01016{bottom:569.918560pt;}
.y50_c01016{bottom:586.240240pt;}
.y1c_c01016{bottom:586.878973pt;}
.y4f_c01016{bottom:603.200627pt;}
.y1b_c01016{bottom:603.839360pt;}
.y4e_c01016{bottom:620.479387pt;}
.y1a_c01016{bottom:621.118120pt;}
.y4d_c01016{bottom:637.439800pt;}
.y19_c01016{bottom:638.078533pt;}
.y4c_c01016{bottom:655.039347pt;}
.y18_c01016{bottom:655.359533pt;}
.y4b_c01016{bottom:671.999760pt;}
.y17_c01016{bottom:672.638307pt;}
.y4a_c01016{bottom:689.280760pt;}
.y16_c01016{bottom:689.919333pt;}
.y49_c01016{bottom:705.919680pt;}
.y15_c01016{bottom:706.558933pt;}
.y48_c01016{bottom:723.200680pt;}
.y14_c01016{bottom:723.839947pt;}
.y47_c01016{bottom:740.160293pt;}
.y13_c01016{bottom:740.800360pt;}
.y46_c01016{bottom:757.120693pt;}
.y12_c01016{bottom:757.760747pt;}
.y45_c01016{bottom:774.081293pt;}
.y11_c01016{bottom:774.720627pt;}
.y10_c01016{bottom:774.721440pt;}
.y44_c01016{bottom:791.360067pt;}
.yf_c01016{bottom:792.000200pt;}
.y43_c01016{bottom:808.641067pt;}
.ye_c01016{bottom:809.281213pt;}
.y42_c01016{bottom:825.919840pt;}
.yd_c01016{bottom:826.559973pt;}
.y41_c01016{bottom:843.519587pt;}
.yc_c01016{bottom:843.520013pt;}
.yb_c01016{bottom:843.520573pt;}
.y40_c01016{bottom:860.479987pt;}
.ya_c01016{bottom:861.120120pt;}
.y3f_c01016{bottom:877.439947pt;}
.y8_c01016{bottom:878.078773pt;}
.y9_c01016{bottom:878.080080pt;}
.y3e_c01016{bottom:894.719320pt;}
.y7_c01016{bottom:895.359800pt;}
.y3d_c01016{bottom:911.679707pt;}
.y6_c01016{bottom:911.999413pt;}
.y3c_c01016{bottom:928.640120pt;}
.y5_c01016{bottom:929.280413pt;}
.y3b_c01016{bottom:945.600507pt;}
.y4_c01016{bottom:946.240827pt;}
.y3a_c01016{bottom:962.560240pt;}
.y3_c01016{bottom:963.201213pt;}
.y39_c01016{bottom:979.520627pt;}
.y2_c01016{bottom:980.479987pt;}
.y1_c01016{bottom:1015.039960pt;}
.hb_c01016{height:39.632812pt;}
.hd_c01016{height:40.328125pt;}
.h9_c01016{height:40.566406pt;}
.h2_c01016{height:43.484375pt;}
.h4_c01016{height:44.143229pt;}
.h1_c01016{height:44.802083pt;}
.h8_c01016{height:45.460938pt;}
.h5_c01016{height:46.119792pt;}
.h6_c01016{height:46.778646pt;}
.hc_c01016{height:48.393880pt;}
.h3_c01016{height:49.414063pt;}
.h7_c01016{height:50.072917pt;}
.ha_c01016{height:50.731771pt;}
.h0_c01016{height:1122.666667pt;}
.w0_c01016{width:793.333333pt;}
.x0_c01016{left:0.000000pt;}
.x1_c01016{left:120.000000pt;}
.xd_c01016{left:180.799947pt;}
.x8_c01016{left:181.760360pt;}
.x5_c01016{left:182.718787pt;}
.x3_c01016{left:183.679733pt;}
.xe_c01016{left:204.159733pt;}
.xf_c01016{left:215.679200pt;}
.x4_c01016{left:223.359333pt;}
.x9_c01016{left:228.159733pt;}
.xa_c01016{left:239.039067pt;}
.x6_c01016{left:240.319333pt;}
.xc_c01016{left:244.798787pt;}
.xb_c01016{left:256.319867pt;}
.x7_c01016{left:257.919453pt;}
.x17_c01016{left:359.678120pt;}
.x14_c01016{left:360.638920pt;}
.x12_c01016{left:361.599613pt;}
.x10_c01016{left:362.560040pt;}
.x18_c01016{left:388.479453pt;}
.x16_c01016{left:389.438920pt;}
.x13_c01016{left:390.399867pt;}
.x11_c01016{left:391.359333pt;}
.x15_c01016{left:429.758787pt;}
.x2_c01016{left:473.279333pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_3f721e0aa84798f84d1a48cc.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_0f719fcf0ee627c3d9402cc1.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_c2298ac704c3e5261b438a67.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_62334bb64ad115c60889a965.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01017;src:url('chunks/assets/font_1d93cc8be7fd620eee5af583.woff2')format("woff");}.ff6_c01017{font-family:ff6_c01017;line-height:1.284180;font-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_c01017{transform:matrix(0.173469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173469,0.000000,0.000000,0.250000,0,0);}
.m21_c01017{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);}
.mb_c01017{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m9_c01017{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m23_c01017{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m14_c01017{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m22_c01017{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m20_c01017{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m12_c01017{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m2_c01017{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m18_c01017{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.md_c01017{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m1_c01017{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m13_c01017{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m5_c01017{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.m4_c01017{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1f_c01017{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m6_c01017{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m10_c01017{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m7_c01017{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.me_c01017{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m0_c01017{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.ma_c01017{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_c01017{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m11_c01017{transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);}
.m15_c01017{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m16_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01017{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m1d_c01017{transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278986,0.000000,0.000000,0.250000,0,0);}
.m1a_c01017{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m1c_c01017{transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384058,0.000000,0.000000,0.250000,0,0);}
.m1e_c01017{transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);}
.m1b_c01017{transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434783,0.000000,0.000000,0.250000,0,0);}
.m17_c01017{transform:matrix(0.466667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466667,0.000000,0.000000,0.250000,0,0);}
.m19_c01017{transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);}
.mc_c01017{transform:matrix(0.820122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820122,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls14_c01017{letter-spacing:-4.959570px;}
.lsd_c01017{letter-spacing:-4.347698px;}
.lsc_c01017{letter-spacing:-4.325625px;}
.ls13_c01017{letter-spacing:-4.244625px;}
.lsf_c01017{letter-spacing:-4.206600px;}
.ls5_c01017{letter-spacing:-4.182000px;}
.ls8_c01017{letter-spacing:-3.345600px;}
.lsb_c01017{letter-spacing:-3.312000px;}
.ls18_c01017{letter-spacing:-2.649150px;}
.ls1a_c01017{letter-spacing:-2.619368px;}
.lse_c01017{letter-spacing:-2.543700px;}
.ls7_c01017{letter-spacing:-2.508690px;}
.ls10_c01017{letter-spacing:-2.499525px;}
.ls17_c01017{letter-spacing:-2.249483px;}
.ls19_c01017{letter-spacing:-1.722758px;}
.ls4_c01017{letter-spacing:-1.673310px;}
.lsa_c01017{letter-spacing:-0.947100px;}
.ls11_c01017{letter-spacing:-0.918000px;}
.ls12_c01017{letter-spacing:-0.846675px;}
.ls3_c01017{letter-spacing:-0.836400px;}
.ls6_c01017{letter-spacing:0.000000px;}
.ls2_c01017{letter-spacing:0.836400px;}
.ls15_c01017{letter-spacing:0.993450px;}
.ls16_c01017{letter-spacing:2.466248px;}
.ls0_c01017{letter-spacing:4.384950px;}
.ls1_c01017{letter-spacing:5.263800px;}
.ls9_c01017{letter-spacing:12.540900px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01017{word-spacing:0.000000px;}
._9_c01017{margin-left:-7.088699px;}
._6_c01017{margin-left:-5.345068px;}
._8_c01017{margin-left:-3.709673px;}
._2_c01017{margin-left:-1.987796px;}
._a_c01017{width:2.119911px;}
._b_c01017{width:3.314967px;}
._7_c01017{width:5.824167px;}
._c_c01017{width:20.284364px;}
._f_c01017{width:22.072466px;}
._0_c01017{width:24.281083px;}
._e_c01017{width:25.487342px;}
._d_c01017{width:27.019700px;}
._13_c01017{width:30.377439px;}
._10_c01017{width:32.107292px;}
._14_c01017{width:33.708793px;}
._11_c01017{width:35.320460px;}
._12_c01017{width:55.855417px;}
._3_c01017{width:75.664396px;}
._4_c01017{width:130.247658px;}
._5_c01017{width:131.905304px;}
._1_c01017{width:693.241186px;}
.fc0_c01017{color:transparent;}
.fs11_c01017{font-size:38.250000px;}
.fs8_c01017{font-size:42.750000px;}
.fs14_c01017{font-size:43.500000px;}
.fs7_c01017{font-size:45.750000px;}
.fs1_c01017{font-size:46.500000px;}
.fs3_c01017{font-size:48.000000px;}
.fs6_c01017{font-size:50.250000px;}
.fs0_c01017{font-size:51.000000px;}
.fs13_c01017{font-size:51.750000px;}
.fsa_c01017{font-size:52.500000px;}
.fsd_c01017{font-size:53.250000px;}
.fsc_c01017{font-size:54.000000px;}
.fs5_c01017{font-size:54.750000px;}
.fs10_c01017{font-size:55.500000px;}
.fs4_c01017{font-size:56.250000px;}
.fsf_c01017{font-size:57.000000px;}
.fs2_c01017{font-size:57.750000px;}
.fs9_c01017{font-size:58.500000px;}
.fsb_c01017{font-size:61.500000px;}
.fs15_c01017{font-size:63.750000px;}
.fse_c01017{font-size:73.500000px;}
.fs12_c01017{font-size:123.750000px;}
.y0_c01017{bottom:0.000000px;}
.y69_c01017{bottom:180.717870px;}
.y35_c01017{bottom:180.719100px;}
.y33_c01017{bottom:200.156910px;}
.y68_c01017{bottom:200.159025px;}
.y34_c01017{bottom:200.159850px;}
.y67_c01017{bottom:218.878575px;}
.y32_c01017{bottom:219.237345px;}
.y66_c01017{bottom:238.319715px;}
.y31_c01017{bottom:238.675965px;}
.y65_c01017{bottom:257.400165px;}
.y30_c01017{bottom:257.756430px;}
.y2f_c01017{bottom:276.836865px;}
.y64_c01017{bottom:276.838785px;}
.y63_c01017{bottom:295.559685px;}
.y2e_c01017{bottom:295.917315px;}
.y62_c01017{bottom:314.639700px;}
.y2d_c01017{bottom:314.997750px;}
.y61_c01017{bottom:333.358635px;}
.y2c_c01017{bottom:333.718695px;}
.y2b_c01017{bottom:353.157300px;}
.y60_c01017{bottom:353.158635px;}
.y5f_c01017{bottom:371.879535px;}
.y2a_c01017{bottom:372.237735px;}
.y29_c01017{bottom:391.318200px;}
.y5e_c01017{bottom:391.318470px;}
.y5d_c01017{bottom:410.039385px;}
.y28_c01017{bottom:410.398635px;}
.y27_c01017{bottom:429.839535px;}
.y5c_c01017{bottom:431.279850px;}
.y5b_c01017{bottom:448.739850px;}
.y26_c01017{bottom:448.918740px;}
.y25_c01017{bottom:468.718230px;}
.y5a_c01017{bottom:468.719130px;}
.y24_c01017{bottom:487.798695px;}
.y59_c01017{bottom:487.799565px;}
.y58_c01017{bottom:507.237105px;}
.y23_c01017{bottom:507.237300px;}
.y57_c01017{bottom:526.317555px;}
.y22_c01017{bottom:526.317735px;}
.y56_c01017{bottom:545.397990px;}
.y21_c01017{bottom:545.398200px;}
.y55_c01017{bottom:564.478455px;}
.y20_c01017{bottom:564.478635px;}
.y54_c01017{bottom:583.739820px;}
.y1f_c01017{bottom:583.919535px;}
.y1e_c01017{bottom:583.920165px;}
.y53_c01017{bottom:602.640150px;}
.y52_c01017{bottom:602.640900px;}
.y1d_c01017{bottom:602.641095px;}
.y51_c01017{bottom:622.079520px;}
.y1c_c01017{bottom:622.079700px;}
.y50_c01017{bottom:640.800450px;}
.y1b_c01017{bottom:640.800615px;}
.y4f_c01017{bottom:660.059310px;}
.y1a_c01017{bottom:660.239220px;}
.y19_c01017{bottom:677.878920px;}
.y4e_c01017{bottom:678.959970px;}
.y4d_c01017{bottom:698.398800px;}
.y18_c01017{bottom:698.399070px;}
.y4c_c01017{bottom:717.479235px;}
.y17_c01017{bottom:717.479505px;}
.y4b_c01017{bottom:737.099670px;}
.y16_c01017{bottom:737.279025px;}
.y4a_c01017{bottom:756.000000px;}
.y15_c01017{bottom:756.359460px;}
.y49_c01017{bottom:775.800105px;}
.y14_c01017{bottom:775.800615px;}
.y48_c01017{bottom:795.238950px;}
.y13_c01017{bottom:795.239220px;}
.y47_c01017{bottom:814.680090px;}
.y12_c01017{bottom:815.038725px;}
.y45_c01017{bottom:833.398365px;}
.y46_c01017{bottom:833.399235px;}
.y11_c01017{bottom:833.759655px;}
.y44_c01017{bottom:852.839490px;}
.y10_c01017{bottom:852.840090px;}
.y43_c01017{bottom:871.559055px;}
.ye_c01017{bottom:871.916730px;}
.yf_c01017{bottom:871.919955px;}
.y42_c01017{bottom:891.000405px;}
.yd_c01017{bottom:891.355335px;}
.yc_c01017{bottom:910.435800px;}
.y41_c01017{bottom:910.439025px;}
.yb_c01017{bottom:929.876925px;}
.y40_c01017{bottom:929.880180px;}
.y3f_c01017{bottom:948.960615px;}
.ya_c01017{bottom:949.315545px;}
.y9_c01017{bottom:968.396010px;}
.y3e_c01017{bottom:968.399235px;}
.y8_c01017{bottom:987.476445px;}
.y3d_c01017{bottom:987.478410px;}
.y7_c01017{bottom:1006.917600px;}
.y3c_c01017{bottom:1006.919535px;}
.y3b_c01017{bottom:1025.639100px;}
.y6_c01017{bottom:1025.998035px;}
.y39_c01017{bottom:1044.717585px;}
.y3a_c01017{bottom:1044.719055px;}
.y5_c01017{bottom:1045.078485px;}
.y38_c01017{bottom:1063.798050px;}
.y4_c01017{bottom:1064.158935px;}
.y37_c01017{bottom:1082.878485px;}
.y3_c01017{bottom:1083.239385px;}
.y36_c01017{bottom:1101.958950px;}
.y2_c01017{bottom:1102.319820px;}
.y1_c01017{bottom:1141.199805px;}
.h14_c01017{height:37.521606px;}
.h13_c01017{height:42.249023px;}
.h9_c01017{height:44.586914px;}
.h8_c01017{height:44.901123px;}
.h17_c01017{height:45.369141px;}
.h2_c01017{height:48.498047px;}
.h7_c01017{height:49.661133px;}
.h4_c01017{height:50.062500px;}
.h1_c01017{height:50.402344px;}
.h18_c01017{height:51.143555px;}
.hb_c01017{height:51.884766px;}
.he_c01017{height:52.625977px;}
.hd_c01017{height:53.367188px;}
.h16_c01017{height:53.973633px;}
.h6_c01017{height:54.108398px;}
.h12_c01017{height:54.849609px;}
.h5_c01017{height:55.590820px;}
.h11_c01017{height:55.914551px;}
.h19_c01017{height:56.332031px;}
.h10_c01017{height:56.650269px;}
.h3_c01017{height:57.073242px;}
.ha_c01017{height:57.814453px;}
.h1a_c01017{height:63.002930px;}
.hc_c01017{height:64.142578px;}
.hf_c01017{height:72.638672px;}
.h15_c01017{height:129.067383px;}
.h0_c01017{height:1263.000000px;}
.w0_c01017{width:892.500000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:142.199850px;}
.x4_c01017{left:212.759760px;}
.x3_c01017{left:213.839535px;}
.x9_c01017{left:245.158785px;}
.x8_c01017{left:258.479235px;}
.x5_c01017{left:264.958950px;}
.x6_c01017{left:271.438635px;}
.x7_c01017{left:277.559100px;}
.xc_c01017{left:414.358380px;}
.xa_c01017{left:415.439535px;}
.x10_c01017{left:417.959385px;}
.x11_c01017{left:428.039985px;}
.xd_c01017{left:447.119985px;}
.x12_c01017{left:452.879520px;}
.x13_c01017{left:459.718500px;}
.x14_c01017{left:467.279250px;}
.x15_c01017{left:472.679670px;}
.x16_c01017{left:489.958335px;}
.xf_c01017{left:491.398635px;}
.xb_c01017{left:492.479685px;}
.xe_c01017{left:503.278800px;}
.x2_c01017{left:539.279850px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls14_c01017{letter-spacing:-4.408507pt;}
.lsd_c01017{letter-spacing:-3.864620pt;}
.lsc_c01017{letter-spacing:-3.845000pt;}
.ls13_c01017{letter-spacing:-3.773000pt;}
.lsf_c01017{letter-spacing:-3.739200pt;}
.ls5_c01017{letter-spacing:-3.717333pt;}
.ls8_c01017{letter-spacing:-2.973867pt;}
.lsb_c01017{letter-spacing:-2.944000pt;}
.ls18_c01017{letter-spacing:-2.354800pt;}
.ls1a_c01017{letter-spacing:-2.328327pt;}
.lse_c01017{letter-spacing:-2.261067pt;}
.ls7_c01017{letter-spacing:-2.229947pt;}
.ls10_c01017{letter-spacing:-2.221800pt;}
.ls17_c01017{letter-spacing:-1.999540pt;}
.ls19_c01017{letter-spacing:-1.531340pt;}
.ls4_c01017{letter-spacing:-1.487387pt;}
.lsa_c01017{letter-spacing:-0.841867pt;}
.ls11_c01017{letter-spacing:-0.816000pt;}
.ls12_c01017{letter-spacing:-0.752600pt;}
.ls3_c01017{letter-spacing:-0.743467pt;}
.ls6_c01017{letter-spacing:0.000000pt;}
.ls2_c01017{letter-spacing:0.743467pt;}
.ls15_c01017{letter-spacing:0.883067pt;}
.ls16_c01017{letter-spacing:2.192220pt;}
.ls0_c01017{letter-spacing:3.897733pt;}
.ls1_c01017{letter-spacing:4.678933pt;}
.ls9_c01017{letter-spacing:11.147467pt;}
.ws0_c01017{word-spacing:0.000000pt;}
._9_c01017{margin-left:-6.301066pt;}
._6_c01017{margin-left:-4.751171pt;}
._8_c01017{margin-left:-3.297487pt;}
._2_c01017{margin-left:-1.766930pt;}
._a_c01017{width:1.884365pt;}
._b_c01017{width:2.946637pt;}
._7_c01017{width:5.177037pt;}
._c_c01017{width:18.030546pt;}
._f_c01017{width:19.619969pt;}
._0_c01017{width:21.583185pt;}
._e_c01017{width:22.655415pt;}
._d_c01017{width:24.017511pt;}
._13_c01017{width:27.002168pt;}
._10_c01017{width:28.539816pt;}
._14_c01017{width:29.963371pt;}
._11_c01017{width:31.395964pt;}
._12_c01017{width:49.649260pt;}
._3_c01017{width:67.257241pt;}
._4_c01017{width:115.775696pt;}
._5_c01017{width:117.249159pt;}
._1_c01017{width:616.214387pt;}
.fs11_c01017{font-size:34.000000pt;}
.fs8_c01017{font-size:38.000000pt;}
.fs14_c01017{font-size:38.666667pt;}
.fs7_c01017{font-size:40.666667pt;}
.fs1_c01017{font-size:41.333333pt;}
.fs3_c01017{font-size:42.666667pt;}
.fs6_c01017{font-size:44.666667pt;}
.fs0_c01017{font-size:45.333333pt;}
.fs13_c01017{font-size:46.000000pt;}
.fsa_c01017{font-size:46.666667pt;}
.fsd_c01017{font-size:47.333333pt;}
.fsc_c01017{font-size:48.000000pt;}
.fs5_c01017{font-size:48.666667pt;}
.fs10_c01017{font-size:49.333333pt;}
.fs4_c01017{font-size:50.000000pt;}
.fsf_c01017{font-size:50.666667pt;}
.fs2_c01017{font-size:51.333333pt;}
.fs9_c01017{font-size:52.000000pt;}
.fsb_c01017{font-size:54.666667pt;}
.fs15_c01017{font-size:56.666667pt;}
.fse_c01017{font-size:65.333333pt;}
.fs12_c01017{font-size:110.000000pt;}
.y0_c01017{bottom:0.000000pt;}
.y69_c01017{bottom:160.638107pt;}
.y35_c01017{bottom:160.639200pt;}
.y33_c01017{bottom:177.917253pt;}
.y68_c01017{bottom:177.919133pt;}
.y34_c01017{bottom:177.919867pt;}
.y67_c01017{bottom:194.558733pt;}
.y32_c01017{bottom:194.877640pt;}
.y66_c01017{bottom:211.839747pt;}
.y31_c01017{bottom:212.156413pt;}
.y65_c01017{bottom:228.800147pt;}
.y30_c01017{bottom:229.116827pt;}
.y2f_c01017{bottom:246.077213pt;}
.y64_c01017{bottom:246.078920pt;}
.y63_c01017{bottom:262.719720pt;}
.y2e_c01017{bottom:263.037613pt;}
.y62_c01017{bottom:279.679733pt;}
.y2d_c01017{bottom:279.998000pt;}
.y61_c01017{bottom:296.318787pt;}
.y2c_c01017{bottom:296.638840pt;}
.y2b_c01017{bottom:313.917600pt;}
.y60_c01017{bottom:313.918787pt;}
.y5f_c01017{bottom:330.559587pt;}
.y2a_c01017{bottom:330.877987pt;}
.y29_c01017{bottom:347.838400pt;}
.y5e_c01017{bottom:347.838640pt;}
.y5d_c01017{bottom:364.479453pt;}
.y28_c01017{bottom:364.798787pt;}
.y27_c01017{bottom:382.079587pt;}
.y5c_c01017{bottom:383.359867pt;}
.y5b_c01017{bottom:398.879867pt;}
.y26_c01017{bottom:399.038880pt;}
.y25_c01017{bottom:416.638427pt;}
.y5a_c01017{bottom:416.639227pt;}
.y24_c01017{bottom:433.598840pt;}
.y59_c01017{bottom:433.599613pt;}
.y58_c01017{bottom:450.877427pt;}
.y23_c01017{bottom:450.877600pt;}
.y57_c01017{bottom:467.837827pt;}
.y22_c01017{bottom:467.837987pt;}
.y56_c01017{bottom:484.798213pt;}
.y21_c01017{bottom:484.798400pt;}
.y55_c01017{bottom:501.758627pt;}
.y20_c01017{bottom:501.758787pt;}
.y54_c01017{bottom:518.879840pt;}
.y1f_c01017{bottom:519.039587pt;}
.y1e_c01017{bottom:519.040147pt;}
.y53_c01017{bottom:535.680133pt;}
.y52_c01017{bottom:535.680800pt;}
.y1d_c01017{bottom:535.680973pt;}
.y51_c01017{bottom:552.959573pt;}
.y1c_c01017{bottom:552.959733pt;}
.y50_c01017{bottom:569.600400pt;}
.y1b_c01017{bottom:569.600547pt;}
.y4f_c01017{bottom:586.719387pt;}
.y1a_c01017{bottom:586.879307pt;}
.y19_c01017{bottom:602.559040pt;}
.y4e_c01017{bottom:603.519973pt;}
.y4d_c01017{bottom:620.798933pt;}
.y18_c01017{bottom:620.799173pt;}
.y4c_c01017{bottom:637.759320pt;}
.y17_c01017{bottom:637.759560pt;}
.y4b_c01017{bottom:655.199707pt;}
.y16_c01017{bottom:655.359133pt;}
.y4a_c01017{bottom:672.000000pt;}
.y15_c01017{bottom:672.319520pt;}
.y49_c01017{bottom:689.600093pt;}
.y14_c01017{bottom:689.600547pt;}
.y48_c01017{bottom:706.879067pt;}
.y13_c01017{bottom:706.879307pt;}
.y47_c01017{bottom:724.160080pt;}
.y12_c01017{bottom:724.478867pt;}
.y45_c01017{bottom:740.798547pt;}
.y46_c01017{bottom:740.799320pt;}
.y11_c01017{bottom:741.119693pt;}
.y44_c01017{bottom:758.079547pt;}
.y10_c01017{bottom:758.080080pt;}
.y43_c01017{bottom:774.719160pt;}
.ye_c01017{bottom:775.037093pt;}
.yf_c01017{bottom:775.039960pt;}
.y42_c01017{bottom:792.000360pt;}
.yd_c01017{bottom:792.315853pt;}
.yc_c01017{bottom:809.276267pt;}
.y41_c01017{bottom:809.279133pt;}
.yb_c01017{bottom:826.557267pt;}
.y40_c01017{bottom:826.560160pt;}
.y3f_c01017{bottom:843.520547pt;}
.ya_c01017{bottom:843.836040pt;}
.y9_c01017{bottom:860.796453pt;}
.y3e_c01017{bottom:860.799320pt;}
.y8_c01017{bottom:877.756840pt;}
.y3d_c01017{bottom:877.758587pt;}
.y7_c01017{bottom:895.037867pt;}
.y3c_c01017{bottom:895.039587pt;}
.y3b_c01017{bottom:911.679200pt;}
.y6_c01017{bottom:911.998253pt;}
.y39_c01017{bottom:928.637853pt;}
.y3a_c01017{bottom:928.639160pt;}
.y5_c01017{bottom:928.958653pt;}
.y38_c01017{bottom:945.598267pt;}
.y4_c01017{bottom:945.919053pt;}
.y37_c01017{bottom:962.558653pt;}
.y3_c01017{bottom:962.879453pt;}
.y36_c01017{bottom:979.519067pt;}
.y2_c01017{bottom:979.839840pt;}
.y1_c01017{bottom:1014.399827pt;}
.h14_c01017{height:33.352539pt;}
.h13_c01017{height:37.554687pt;}
.h9_c01017{height:39.632812pt;}
.h8_c01017{height:39.912109pt;}
.h17_c01017{height:40.328125pt;}
.h2_c01017{height:43.109375pt;}
.h7_c01017{height:44.143229pt;}
.h4_c01017{height:44.500000pt;}
.h1_c01017{height:44.802083pt;}
.h18_c01017{height:45.460938pt;}
.hb_c01017{height:46.119792pt;}
.he_c01017{height:46.778646pt;}
.hd_c01017{height:47.437500pt;}
.h16_c01017{height:47.976562pt;}
.h6_c01017{height:48.096354pt;}
.h12_c01017{height:48.755208pt;}
.h5_c01017{height:49.414063pt;}
.h11_c01017{height:49.701823pt;}
.h19_c01017{height:50.072917pt;}
.h10_c01017{height:50.355794pt;}
.h3_c01017{height:50.731771pt;}
.ha_c01017{height:51.390625pt;}
.h1a_c01017{height:56.002604pt;}
.hc_c01017{height:57.015625pt;}
.hf_c01017{height:64.567708pt;}
.h15_c01017{height:114.726562pt;}
.h0_c01017{height:1122.666667pt;}
.w0_c01017{width:793.333333pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:126.399867pt;}
.x4_c01017{left:189.119787pt;}
.x3_c01017{left:190.079587pt;}
.x9_c01017{left:217.918920pt;}
.x8_c01017{left:229.759320pt;}
.x5_c01017{left:235.519067pt;}
.x6_c01017{left:241.278787pt;}
.x7_c01017{left:246.719200pt;}
.xc_c01017{left:368.318560pt;}
.xa_c01017{left:369.279587pt;}
.x10_c01017{left:371.519453pt;}
.x11_c01017{left:380.479987pt;}
.xd_c01017{left:397.439987pt;}
.x12_c01017{left:402.559573pt;}
.x13_c01017{left:408.638667pt;}
.x14_c01017{left:415.359333pt;}
.x15_c01017{left:420.159707pt;}
.x16_c01017{left:435.518520pt;}
.xf_c01017{left:436.798787pt;}
.xb_c01017{left:437.759720pt;}
.xe_c01017{left:447.358933pt;}
.x2_c01017{left:479.359867pt;}
}





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

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_d2b731951cc4a7950948d11d.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_e5b5b7be64c6040dd58ff18d.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_55c2f04b64613c59ecfa1a36.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01018;src:url('chunks/assets/font_29d6e7deeaf441193209d13c.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01018;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff5_c01018{font-family:ff5_c01018;line-height:1.432129;font-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_c01018{transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);}
.m16_c01018{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);}
.mf_c01018{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.me_c01018{transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);}
.m7_c01018{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m9_c01018{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.mc_c01018{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m4_c01018{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m3_c01018{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m6_c01018{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.m15_c01018{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m2_c01018{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m17_c01018{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m12_c01018{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m14_c01018{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m10_c01018{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m0_c01018{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m8_c01018{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_c01018{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m1_c01018{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.mb_c01018{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m13_c01018{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.ma_c01018{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_c01018{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls16_c01018{letter-spacing:-8.358390px;}
.ls18_c01018{letter-spacing:-7.523010px;}
.ls13_c01018{letter-spacing:-7.105500px;}
.lsf_c01018{letter-spacing:-5.855310px;}
.ls1e_c01018{letter-spacing:-4.308150px;}
.ls19_c01018{letter-spacing:-4.185135px;}
.lsd_c01018{letter-spacing:-4.182000px;}
.ls14_c01018{letter-spacing:-3.960600px;}
.ls1c_c01018{letter-spacing:-3.951083px;}
.lsb_c01018{letter-spacing:-3.345600px;}
.lsa_c01018{letter-spacing:-3.317303px;}
.ls1a_c01018{letter-spacing:-3.048480px;}
.ls15_c01018{letter-spacing:-2.709053px;}
.ls8_c01018{letter-spacing:-2.673870px;}
.lsc_c01018{letter-spacing:-2.606648px;}
.ls1b_c01018{letter-spacing:-2.541000px;}
.ls1d_c01018{letter-spacing:-2.529450px;}
.ls9_c01018{letter-spacing:-2.508690px;}
.ls5_c01018{letter-spacing:-1.673310px;}
.ls10_c01018{letter-spacing:-1.669500px;}
.ls17_c01018{letter-spacing:-0.981750px;}
.ls12_c01018{letter-spacing:-0.918000px;}
.ls4_c01018{letter-spacing:-0.836400px;}
.ls7_c01018{letter-spacing:0.000000px;}
.ls2_c01018{letter-spacing:1.673310px;}
.ls0_c01018{letter-spacing:2.406450px;}
.lse_c01018{letter-spacing:2.508690px;}
.ls6_c01018{letter-spacing:2.579850px;}
.ls3_c01018{letter-spacing:3.345600px;}
.ls1_c01018{letter-spacing:15.050100px;}
.ls11_c01018{letter-spacing:25.917690px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:0.000000px;}
._e_c01018{margin-left:-35.846663px;}
._f_c01018{margin-left:-32.185799px;}
._10_c01018{margin-left:-23.273867px;}
._5_c01018{margin-left:-8.828451px;}
._7_c01018{margin-left:-7.823433px;}
._6_c01018{margin-left:-6.217251px;}
._9_c01018{margin-left:-4.474155px;}
._8_c01018{margin-left:-2.754736px;}
._1c_c01018{margin-left:-1.549673px;}
._b_c01018{width:1.481274px;}
._c_c01018{width:3.325668px;}
._a_c01018{width:4.927169px;}
._d_c01018{width:7.391489px;}
._18_c01018{width:20.305031px;}
._19_c01018{width:22.104370px;}
._0_c01018{width:24.286635px;}
._13_c01018{width:25.498244px;}
._14_c01018{width:27.132769px;}
._11_c01018{width:30.307628px;}
._12_c01018{width:31.968840px;}
._15_c01018{width:33.708726px;}
._16_c01018{width:34.865983px;}
._1a_c01018{width:39.253989px;}
._17_c01018{width:55.860099px;}
._1d_c01018{width:61.132245px;}
._2_c01018{width:69.219108px;}
._3_c01018{width:123.158262px;}
._4_c01018{width:124.668108px;}
._1b_c01018{width:659.367111px;}
._1_c01018{width:693.241052px;}
.fc0_c01018{color:transparent;}
.fs9_c01018{font-size:42.000000px;}
.fsc_c01018{font-size:43.500000px;}
.fse_c01018{font-size:44.250000px;}
.fs8_c01018{font-size:45.000000px;}
.fs1_c01018{font-size:45.750000px;}
.fs2_c01018{font-size:47.250000px;}
.fsd_c01018{font-size:48.000000px;}
.fs0_c01018{font-size:51.000000px;}
.fs6_c01018{font-size:52.500000px;}
.fs3_c01018{font-size:53.250000px;}
.fs7_c01018{font-size:54.000000px;}
.fs5_c01018{font-size:54.750000px;}
.fsf_c01018{font-size:56.250000px;}
.fs4_c01018{font-size:57.000000px;}
.fsa_c01018{font-size:57.750000px;}
.fsb_c01018{font-size:58.500000px;}
.y0_c01018{bottom:0.000000px;}
.y5d_c01018{bottom:183.599460px;}
.y2f_c01018{bottom:183.959100px;}
.y2e_c01018{bottom:203.039550px;}
.y5c_c01018{bottom:203.040600px;}
.y2d_c01018{bottom:222.120000px;}
.y5b_c01018{bottom:222.120435px;}
.y2c_c01018{bottom:241.200435px;}
.y5a_c01018{bottom:241.558665px;}
.y2a_c01018{bottom:259.916640px;}
.y59_c01018{bottom:259.918695px;}
.y2b_c01018{bottom:259.919535px;}
.y29_c01018{bottom:279.357795px;}
.y58_c01018{bottom:279.359850px;}
.y28_c01018{bottom:298.438230px;}
.y57_c01018{bottom:298.440285px;}
.y27_c01018{bottom:317.518680px;}
.y56_c01018{bottom:317.520285px;}
.y55_c01018{bottom:336.598845px;}
.y26_c01018{bottom:336.599115px;}
.y25_c01018{bottom:355.679580px;}
.y54_c01018{bottom:356.037465px;}
.y24_c01018{bottom:374.760015px;}
.y53_c01018{bottom:375.117915px;}
.y52_c01018{bottom:394.198350px;}
.y23_c01018{bottom:394.198635px;}
.y22_c01018{bottom:412.919565px;}
.y51_c01018{bottom:413.278815px;}
.y21_c01018{bottom:432.000000px;}
.y50_c01018{bottom:432.359250px;}
.y20_c01018{bottom:451.080000px;}
.y4f_c01018{bottom:451.440900px;}
.y4e_c01018{bottom:451.442205px;}
.y1f_c01018{bottom:470.877660px;}
.y4d_c01018{bottom:470.880825px;}
.y1e_c01018{bottom:490.316280px;}
.y4c_c01018{bottom:490.319430px;}
.y1d_c01018{bottom:509.757435px;}
.y4b_c01018{bottom:510.118950px;}
.y1c_c01018{bottom:528.837870px;}
.y4a_c01018{bottom:529.199385px;}
.y1b_c01018{bottom:547.918320px;}
.y49_c01018{bottom:548.276250px;}
.y1a_c01018{bottom:567.356940px;}
.y48_c01018{bottom:567.717405px;}
.y19_c01018{bottom:586.438545px;}
.y47_c01018{bottom:586.797840px;}
.y18_c01018{bottom:605.158110px;}
.y46_c01018{bottom:605.518770px;}
.y45_c01018{bottom:624.599220px;}
.y17_c01018{bottom:624.599265px;}
.y16_c01018{bottom:643.679700px;}
.y44_c01018{bottom:644.037825px;}
.y15_c01018{bottom:662.760150px;}
.y43_c01018{bottom:663.118290px;}
.y14_c01018{bottom:681.840585px;}
.y42_c01018{bottom:682.198725px;}
.y12_c01018{bottom:701.279295px;}
.y13_c01018{bottom:701.279850px;}
.y41_c01018{bottom:701.639880px;}
.y11_c01018{bottom:720.359730px;}
.y40_c01018{bottom:720.720315px;}
.y3f_c01018{bottom:739.800780px;}
.y10_c01018{bottom:739.800885px;}
.y3e_c01018{bottom:758.881215px;}
.yf_c01018{bottom:758.881320px;}
.y3d_c01018{bottom:778.319820px;}
.ye_c01018{bottom:778.319940px;}
.yd_c01018{bottom:797.040870px;}
.y3c_c01018{bottom:797.399865px;}
.yc_c01018{bottom:816.840360px;}
.y3b_c01018{bottom:816.841230px;}
.yb_c01018{bottom:836.278980px;}
.y3a_c01018{bottom:836.279850px;}
.ya_c01018{bottom:855.720135px;}
.y38_c01018{bottom:855.720525px;}
.y39_c01018{bottom:855.720705px;}
.y9_c01018{bottom:874.800570px;}
.y37_c01018{bottom:874.800975px;}
.y8_c01018{bottom:894.238305px;}
.y36_c01018{bottom:894.239595px;}
.y7_c01018{bottom:913.679445px;}
.y35_c01018{bottom:913.680720px;}
.y6_c01018{bottom:932.759910px;}
.y34_c01018{bottom:933.119940px;}
.y5_c01018{bottom:951.479460px;}
.y33_c01018{bottom:951.840540px;}
.y4_c01018{bottom:970.920600px;}
.y32_c01018{bottom:971.280150px;}
.y3_c01018{bottom:989.639655px;}
.y31_c01018{bottom:990.001050px;}
.y2_c01018{bottom:1009.080420px;}
.y30_c01018{bottom:1009.439670px;}
.y63_c01018{bottom:1028.340090px;}
.y62_c01018{bottom:1047.599670px;}
.y61_c01018{bottom:1066.679715px;}
.y5f_c01018{bottom:1085.758845px;}
.y60_c01018{bottom:1085.759490px;}
.y5e_c01018{bottom:1105.199985px;}
.y1_c01018{bottom:1143.719520px;}
.hb_c01018{height:43.804688px;}
.hf_c01018{height:45.369141px;}
.h11_c01018{height:46.151367px;}
.h3_c01018{height:46.373291px;}
.ha_c01018{height:46.933594px;}
.h10_c01018{height:47.437500px;}
.h2_c01018{height:47.715820px;}
.h1_c01018{height:50.402344px;}
.h8_c01018{height:51.884766px;}
.h4_c01018{height:52.625977px;}
.h9_c01018{height:53.367188px;}
.h6_c01018{height:53.707397px;}
.h7_c01018{height:54.108398px;}
.h12_c01018{height:55.590820px;}
.h5_c01018{height:56.332031px;}
.hc_c01018{height:56.650269px;}
.hd_c01018{height:57.073242px;}
.he_c01018{height:57.814453px;}
.h0_c01018{height:1263.000000px;}
.w0_c01018{width:892.500000px;}
.x0_c01018{left:0.000000px;}
.x1_c01018{left:139.678500px;}
.x3_c01018{left:210.599700px;}
.xc_c01018{left:211.677720px;}
.x6_c01018{left:243.000000px;}
.x4_c01018{left:256.318800px;}
.xd_c01018{left:262.798515px;}
.x5_c01018{left:275.759535px;}
.xe_c01018{left:282.598500px;}
.xf_c01018{left:310.318800px;}
.x7_c01018{left:411.838950px;}
.xb_c01018{left:412.918875px;}
.x8_c01018{left:443.878320px;}
.x9_c01018{left:444.959385px;}
.xa_c01018{left:489.599070px;}
.x2_c01018{left:536.758530px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls16_c01018{letter-spacing:-7.429680pt;}
.ls18_c01018{letter-spacing:-6.687120pt;}
.ls13_c01018{letter-spacing:-6.316000pt;}
.lsf_c01018{letter-spacing:-5.204720pt;}
.ls1e_c01018{letter-spacing:-3.829467pt;}
.ls19_c01018{letter-spacing:-3.720120pt;}
.lsd_c01018{letter-spacing:-3.717333pt;}
.ls14_c01018{letter-spacing:-3.520533pt;}
.ls1c_c01018{letter-spacing:-3.512073pt;}
.lsb_c01018{letter-spacing:-2.973867pt;}
.lsa_c01018{letter-spacing:-2.948713pt;}
.ls1a_c01018{letter-spacing:-2.709760pt;}
.ls15_c01018{letter-spacing:-2.408047pt;}
.ls8_c01018{letter-spacing:-2.376773pt;}
.lsc_c01018{letter-spacing:-2.317020pt;}
.ls1b_c01018{letter-spacing:-2.258667pt;}
.ls1d_c01018{letter-spacing:-2.248400pt;}
.ls9_c01018{letter-spacing:-2.229947pt;}
.ls5_c01018{letter-spacing:-1.487387pt;}
.ls10_c01018{letter-spacing:-1.484000pt;}
.ls17_c01018{letter-spacing:-0.872667pt;}
.ls12_c01018{letter-spacing:-0.816000pt;}
.ls4_c01018{letter-spacing:-0.743467pt;}
.ls7_c01018{letter-spacing:0.000000pt;}
.ls2_c01018{letter-spacing:1.487387pt;}
.ls0_c01018{letter-spacing:2.139067pt;}
.lse_c01018{letter-spacing:2.229947pt;}
.ls6_c01018{letter-spacing:2.293200pt;}
.ls3_c01018{letter-spacing:2.973867pt;}
.ls1_c01018{letter-spacing:13.377867pt;}
.ls11_c01018{letter-spacing:23.037947pt;}
.ws0_c01018{word-spacing:0.000000pt;}
._e_c01018{margin-left:-31.863700pt;}
._f_c01018{margin-left:-28.609599pt;}
._10_c01018{margin-left:-20.687882pt;}
._5_c01018{margin-left:-7.847512pt;}
._7_c01018{margin-left:-6.954163pt;}
._6_c01018{margin-left:-5.526445pt;}
._9_c01018{margin-left:-3.977026pt;}
._8_c01018{margin-left:-2.448654pt;}
._1c_c01018{margin-left:-1.377487pt;}
._b_c01018{width:1.316688pt;}
._c_c01018{width:2.956150pt;}
._a_c01018{width:4.379705pt;}
._d_c01018{width:6.570212pt;}
._18_c01018{width:18.048917pt;}
._19_c01018{width:19.648329pt;}
._0_c01018{width:21.588120pt;}
._13_c01018{width:22.665106pt;}
._14_c01018{width:24.118017pt;}
._11_c01018{width:26.940114pt;}
._12_c01018{width:28.416747pt;}
._15_c01018{width:29.963312pt;}
._16_c01018{width:30.991985pt;}
._1a_c01018{width:34.892435pt;}
._17_c01018{width:49.653422pt;}
._1d_c01018{width:54.339774pt;}
._2_c01018{width:61.528096pt;}
._3_c01018{width:109.474010pt;}
._4_c01018{width:110.816096pt;}
._1b_c01018{width:586.104099pt;}
._1_c01018{width:616.214268pt;}
.fs9_c01018{font-size:37.333333pt;}
.fsc_c01018{font-size:38.666667pt;}
.fse_c01018{font-size:39.333333pt;}
.fs8_c01018{font-size:40.000000pt;}
.fs1_c01018{font-size:40.666667pt;}
.fs2_c01018{font-size:42.000000pt;}
.fsd_c01018{font-size:42.666667pt;}
.fs0_c01018{font-size:45.333333pt;}
.fs6_c01018{font-size:46.666667pt;}
.fs3_c01018{font-size:47.333333pt;}
.fs7_c01018{font-size:48.000000pt;}
.fs5_c01018{font-size:48.666667pt;}
.fsf_c01018{font-size:50.000000pt;}
.fs4_c01018{font-size:50.666667pt;}
.fsa_c01018{font-size:51.333333pt;}
.fsb_c01018{font-size:52.000000pt;}
.y0_c01018{bottom:0.000000pt;}
.y5d_c01018{bottom:163.199520pt;}
.y2f_c01018{bottom:163.519200pt;}
.y2e_c01018{bottom:180.479600pt;}
.y5c_c01018{bottom:180.480533pt;}
.y2d_c01018{bottom:197.440000pt;}
.y5b_c01018{bottom:197.440387pt;}
.y2c_c01018{bottom:214.400387pt;}
.y5a_c01018{bottom:214.718813pt;}
.y2a_c01018{bottom:231.037013pt;}
.y59_c01018{bottom:231.038840pt;}
.y2b_c01018{bottom:231.039587pt;}
.y29_c01018{bottom:248.318040pt;}
.y58_c01018{bottom:248.319867pt;}
.y28_c01018{bottom:265.278427pt;}
.y57_c01018{bottom:265.280253pt;}
.y27_c01018{bottom:282.238827pt;}
.y56_c01018{bottom:282.240253pt;}
.y55_c01018{bottom:299.198973pt;}
.y26_c01018{bottom:299.199213pt;}
.y25_c01018{bottom:316.159627pt;}
.y54_c01018{bottom:316.477747pt;}
.y24_c01018{bottom:333.120013pt;}
.y53_c01018{bottom:333.438147pt;}
.y52_c01018{bottom:350.398533pt;}
.y23_c01018{bottom:350.398787pt;}
.y22_c01018{bottom:367.039613pt;}
.y51_c01018{bottom:367.358947pt;}
.y21_c01018{bottom:384.000000pt;}
.y50_c01018{bottom:384.319333pt;}
.y20_c01018{bottom:400.960000pt;}
.y4f_c01018{bottom:401.280800pt;}
.y4e_c01018{bottom:401.281960pt;}
.y1f_c01018{bottom:418.557920pt;}
.y4d_c01018{bottom:418.560733pt;}
.y1e_c01018{bottom:435.836693pt;}
.y4c_c01018{bottom:435.839493pt;}
.y1d_c01018{bottom:453.117720pt;}
.y4b_c01018{bottom:453.439067pt;}
.y1c_c01018{bottom:470.078107pt;}
.y4a_c01018{bottom:470.399453pt;}
.y1b_c01018{bottom:487.038507pt;}
.y49_c01018{bottom:487.356667pt;}
.y1a_c01018{bottom:504.317280pt;}
.y48_c01018{bottom:504.637693pt;}
.y19_c01018{bottom:521.278707pt;}
.y47_c01018{bottom:521.598080pt;}
.y18_c01018{bottom:537.918320pt;}
.y46_c01018{bottom:538.238907pt;}
.y45_c01018{bottom:555.199307pt;}
.y17_c01018{bottom:555.199347pt;}
.y16_c01018{bottom:572.159733pt;}
.y44_c01018{bottom:572.478067pt;}
.y15_c01018{bottom:589.120133pt;}
.y43_c01018{bottom:589.438480pt;}
.y14_c01018{bottom:606.080520pt;}
.y42_c01018{bottom:606.398867pt;}
.y12_c01018{bottom:623.359373pt;}
.y13_c01018{bottom:623.359867pt;}
.y41_c01018{bottom:623.679893pt;}
.y11_c01018{bottom:640.319760pt;}
.y40_c01018{bottom:640.640280pt;}
.y3f_c01018{bottom:657.600693pt;}
.y10_c01018{bottom:657.600787pt;}
.y3e_c01018{bottom:674.561080pt;}
.yf_c01018{bottom:674.561173pt;}
.y3d_c01018{bottom:691.839840pt;}
.ye_c01018{bottom:691.839947pt;}
.yd_c01018{bottom:708.480773pt;}
.y3c_c01018{bottom:708.799880pt;}
.yc_c01018{bottom:726.080320pt;}
.y3b_c01018{bottom:726.081093pt;}
.yb_c01018{bottom:743.359093pt;}
.y3a_c01018{bottom:743.359867pt;}
.ya_c01018{bottom:760.640120pt;}
.y38_c01018{bottom:760.640467pt;}
.y39_c01018{bottom:760.640627pt;}
.y9_c01018{bottom:777.600507pt;}
.y37_c01018{bottom:777.600867pt;}
.y8_c01018{bottom:794.878493pt;}
.y36_c01018{bottom:794.879640pt;}
.y7_c01018{bottom:812.159507pt;}
.y35_c01018{bottom:812.160640pt;}
.y6_c01018{bottom:829.119920pt;}
.y34_c01018{bottom:829.439947pt;}
.y5_c01018{bottom:845.759520pt;}
.y33_c01018{bottom:846.080480pt;}
.y4_c01018{bottom:863.040533pt;}
.y32_c01018{bottom:863.360133pt;}
.y3_c01018{bottom:879.679693pt;}
.y31_c01018{bottom:880.000933pt;}
.y2_c01018{bottom:896.960373pt;}
.y30_c01018{bottom:897.279707pt;}
.y63_c01018{bottom:914.080080pt;}
.y62_c01018{bottom:931.199707pt;}
.y61_c01018{bottom:948.159747pt;}
.y5f_c01018{bottom:965.118973pt;}
.y60_c01018{bottom:965.119547pt;}
.y5e_c01018{bottom:982.399987pt;}
.y1_c01018{bottom:1016.639573pt;}
.hb_c01018{height:38.937500pt;}
.hf_c01018{height:40.328125pt;}
.h11_c01018{height:41.023438pt;}
.h3_c01018{height:41.220703pt;}
.ha_c01018{height:41.718750pt;}
.h10_c01018{height:42.166667pt;}
.h2_c01018{height:42.414062pt;}
.h1_c01018{height:44.802083pt;}
.h8_c01018{height:46.119792pt;}
.h4_c01018{height:46.778646pt;}
.h9_c01018{height:47.437500pt;}
.h6_c01018{height:47.739909pt;}
.h7_c01018{height:48.096354pt;}
.h12_c01018{height:49.414063pt;}
.h5_c01018{height:50.072917pt;}
.hc_c01018{height:50.355794pt;}
.hd_c01018{height:50.731771pt;}
.he_c01018{height:51.390625pt;}
.h0_c01018{height:1122.666667pt;}
.w0_c01018{width:793.333333pt;}
.x0_c01018{left:0.000000pt;}
.x1_c01018{left:124.158667pt;}
.x3_c01018{left:187.199733pt;}
.xc_c01018{left:188.157973pt;}
.x6_c01018{left:216.000000pt;}
.x4_c01018{left:227.838933pt;}
.xd_c01018{left:233.598680pt;}
.x5_c01018{left:245.119587pt;}
.xe_c01018{left:251.198667pt;}
.xf_c01018{left:275.838933pt;}
.x7_c01018{left:366.079067pt;}
.xb_c01018{left:367.039000pt;}
.x8_c01018{left:394.558507pt;}
.x9_c01018{left:395.519453pt;}
.xa_c01018{left:435.199173pt;}
.x2_c01018{left:477.118693pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_c0925bf6a294dcad244c075b.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_0f719fcf0ee627c3d9402cc1.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_02362cd52a83e6f465627409.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.281250;font-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_c01019{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_c01019{transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);}
.mb_c01019{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m13_c01019{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m12_c01019{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m1b_c01019{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.mc_c01019{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m10_c01019{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m2_c01019{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m15_c01019{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m18_c01019{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m8_c01019{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.md_c01019{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.ma_c01019{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m9_c01019{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m1a_c01019{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m6_c01019{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.mf_c01019{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m19_c01019{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.m5_c01019{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m3_c01019{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m0_c01019{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m17_c01019{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m16_c01019{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m1_c01019{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m7_c01019{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m4_c01019{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m11_c01019{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls14_c01019{letter-spacing:-20.312250px;}
.ls17_c01019{letter-spacing:-6.615000px;}
.ls15_c01019{letter-spacing:-6.254850px;}
.lsa_c01019{letter-spacing:-5.191875px;}
.ls1a_c01019{letter-spacing:-4.525500px;}
.ls19_c01019{letter-spacing:-4.407255px;}
.ls10_c01019{letter-spacing:-4.182000px;}
.ls18_c01019{letter-spacing:-4.140300px;}
.ls5_c01019{letter-spacing:-3.345600px;}
.ls8_c01019{letter-spacing:-2.508690px;}
.ls9_c01019{letter-spacing:-2.390850px;}
.ls3_c01019{letter-spacing:-1.673310px;}
.ls13_c01019{letter-spacing:-1.035000px;}
.ls16_c01019{letter-spacing:-0.994500px;}
.lse_c01019{letter-spacing:-0.922500px;}
.lsc_c01019{letter-spacing:-0.893550px;}
.ls2_c01019{letter-spacing:-0.836400px;}
.lsd_c01019{letter-spacing:-0.820050px;}
.ls6_c01019{letter-spacing:0.000000px;}
.ls4_c01019{letter-spacing:1.673310px;}
.lsf_c01019{letter-spacing:1.820955px;}
.ls11_c01019{letter-spacing:2.934600px;}
.ls0_c01019{letter-spacing:4.097993px;}
.ls7_c01019{letter-spacing:4.182000px;}
.ls1_c01019{letter-spacing:4.916175px;}
.ls12_c01019{letter-spacing:6.686100px;}
.lsb_c01019{letter-spacing:29.264310px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01019{word-spacing:0.000000px;}
._f_c01019{margin-left:-13.647868px;}
._8_c01019{margin-left:-12.266353px;}
._6_c01019{margin-left:-10.434700px;}
._e_c01019{margin-left:-8.695617px;}
._a_c01019{margin-left:-6.956668px;}
._b_c01019{margin-left:-5.299009px;}
._4_c01019{margin-left:-3.743500px;}
._c_c01019{margin-left:-1.837714px;}
._9_c01019{width:1.375386px;}
._5_c01019{width:3.314833px;}
._7_c01019{width:4.926500px;}
._d_c01019{width:6.528067px;}
._18_c01019{width:20.305031px;}
._12_c01019{width:21.609151px;}
._14_c01019{width:23.684534px;}
._0_c01019{width:25.887266px;}
._11_c01019{width:27.099076px;}
._13_c01019{width:30.367340px;}
._19_c01019{width:32.107226px;}
._16_c01019{width:33.708726px;}
._15_c01019{width:35.454932px;}
._17_c01019{width:51.896914px;}
._10_c01019{width:56.025766px;}
._1a_c01019{width:57.693198px;}
._2_c01019{width:67.036406px;}
._3_c01019{width:122.731767px;}
._1_c01019{width:693.241186px;}
.fc0_c01019{color:transparent;}
.fs1_c01019{font-size:44.250000px;}
.fs0_c01019{font-size:51.000000px;}
.fs3_c01019{font-size:51.750000px;}
.fs9_c01019{font-size:52.500000px;}
.fs5_c01019{font-size:53.250000px;}
.fs6_c01019{font-size:54.000000px;}
.fs7_c01019{font-size:54.750000px;}
.fs4_c01019{font-size:55.500000px;}
.fs2_c01019{font-size:56.250000px;}
.fs8_c01019{font-size:58.500000px;}
.y0_c01019{bottom:0.000000px;}
.y68_c01019{bottom:181.799565px;}
.y38_c01019{bottom:182.155740px;}
.y67_c01019{bottom:200.880000px;}
.y37_c01019{bottom:201.236205px;}
.y36_c01019{bottom:219.596235px;}
.y66_c01019{bottom:219.599100px;}
.y65_c01019{bottom:238.678050px;}
.y35_c01019{bottom:239.037375px;}
.y34_c01019{bottom:257.756925px;}
.y64_c01019{bottom:257.758500px;}
.y63_c01019{bottom:276.838950px;}
.y33_c01019{bottom:277.198080px;}
.y32_c01019{bottom:295.917645px;}
.y62_c01019{bottom:295.918515px;}
.y61_c01019{bottom:314.998950px;}
.y31_c01019{bottom:315.358770px;}
.y60_c01019{bottom:334.796970px;}
.y30_c01019{bottom:334.797390px;}
.y5f_c01019{bottom:354.238110px;}
.y2f_c01019{bottom:354.238545px;}
.y5e_c01019{bottom:372.957660px;}
.y2e_c01019{bottom:372.958095px;}
.y5d_c01019{bottom:392.398815px;}
.y2d_c01019{bottom:392.399235px;}
.y2b_c01019{bottom:411.118110px;}
.y2c_c01019{bottom:411.118785px;}
.y5c_c01019{bottom:411.479250px;}
.y2a_c01019{bottom:430.559235px;}
.y5b_c01019{bottom:430.559715px;}
.y29_c01019{bottom:449.278800px;}
.y5a_c01019{bottom:449.279280px;}
.y27_c01019{bottom:469.077645px;}
.y28_c01019{bottom:469.078770px;}
.y26_c01019{bottom:488.158080px;}
.y59_c01019{bottom:488.158335px;}
.y25_c01019{bottom:507.238545px;}
.y58_c01019{bottom:507.238770px;}
.y24_c01019{bottom:526.679670px;}
.y22_c01019{bottom:546.116565px;}
.y57_c01019{bottom:546.118350px;}
.y23_c01019{bottom:546.118785px;}
.y21_c01019{bottom:565.197030px;}
.y56_c01019{bottom:565.198785px;}
.y20_c01019{bottom:584.277465px;}
.y54_c01019{bottom:584.277555px;}
.y55_c01019{bottom:584.278800px;}
.y1f_c01019{bottom:603.357930px;}
.y53_c01019{bottom:603.718710px;}
.y1e_c01019{bottom:622.799055px;}
.y52_c01019{bottom:622.799145px;}
.y1c_c01019{bottom:641.517450px;}
.y1d_c01019{bottom:641.518620px;}
.y51_c01019{bottom:641.518710px;}
.y1b_c01019{bottom:660.958605px;}
.y50_c01019{bottom:660.959865px;}
.y1a_c01019{bottom:679.679505px;}
.y4f_c01019{bottom:679.680765px;}
.y19_c01019{bottom:699.118125px;}
.y4e_c01019{bottom:699.119385px;}
.y18_c01019{bottom:718.198590px;}
.y4c_c01019{bottom:718.199160px;}
.y4d_c01019{bottom:718.199385px;}
.y17_c01019{bottom:737.639715px;}
.y4b_c01019{bottom:737.640315px;}
.y16_c01019{bottom:756.720180px;}
.y4a_c01019{bottom:756.720750px;}
.y15_c01019{bottom:776.158785px;}
.y49_c01019{bottom:776.159370px;}
.y14_c01019{bottom:795.239220px;}
.y48_c01019{bottom:815.038650px;}
.y13_c01019{bottom:815.039340px;}
.y47_c01019{bottom:834.119115px;}
.y12_c01019{bottom:834.119205px;}
.y46_c01019{bottom:853.560240px;}
.y11_c01019{bottom:853.560360px;}
.y45_c01019{bottom:872.638440px;}
.y10_c01019{bottom:872.640795px;}
.y44_c01019{bottom:892.077045px;}
.yf_c01019{bottom:892.079400px;}
.y43_c01019{bottom:911.157510px;}
.ye_c01019{bottom:911.159370px;}
.yd_c01019{bottom:911.159895px;}
.y42_c01019{bottom:930.598635px;}
.yc_c01019{bottom:930.959385px;}
.y41_c01019{bottom:949.679100px;}
.yb_c01019{bottom:949.680090px;}
.y40_c01019{bottom:968.759535px;}
.ya_c01019{bottom:969.117915px;}
.y3f_c01019{bottom:988.198155px;}
.y9_c01019{bottom:988.198350px;}
.y3e_c01019{bottom:1007.278605px;}
.y8_c01019{bottom:1007.278815px;}
.y3d_c01019{bottom:1026.359040px;}
.y7_c01019{bottom:1026.359250px;}
.y6_c01019{bottom:1045.439205px;}
.y5_c01019{bottom:1045.439295px;}
.y3c_c01019{bottom:1045.439505px;}
.y4_c01019{bottom:1064.160240px;}
.y3b_c01019{bottom:1064.160420px;}
.y3_c01019{bottom:1083.598845px;}
.y3a_c01019{bottom:1083.599025px;}
.y39_c01019{bottom:1102.679070px;}
.y2_c01019{bottom:1103.039985px;}
.y1_c01019{bottom:1141.919955px;}
.h2_c01019{height:46.151367px;}
.h1_c01019{height:50.402344px;}
.h4_c01019{height:51.143555px;}
.hc_c01019{height:51.884766px;}
.h9_c01019{height:52.154297px;}
.h6_c01019{height:52.625977px;}
.h7_c01019{height:53.367188px;}
.h8_c01019{height:54.108398px;}
.ha_c01019{height:54.443115px;}
.h5_c01019{height:54.849609px;}
.h3_c01019{height:55.590820px;}
.hb_c01019{height:57.814453px;}
.h0_c01019{height:1263.000000px;}
.w0_c01019{width:892.500000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:134.639100px;}
.x6_c01019{left:205.199385px;}
.x3_c01019{left:206.278800px;}
.xb_c01019{left:237.599700px;}
.x5_c01019{left:251.279250px;}
.x7_c01019{left:257.759100px;}
.x4_c01019{left:264.958950px;}
.xc_c01019{left:270.718500px;}
.xd_c01019{left:289.439235px;}
.xe_c01019{left:290.879535px;}
.x8_c01019{left:303.118785px;}
.x9_c01019{left:322.559685px;}
.xa_c01019{left:341.998950px;}
.x11_c01019{left:406.800090px;}
.xf_c01019{left:407.878920px;}
.x12_c01019{left:439.199850px;}
.x10_c01019{left:440.279250px;}
.x13_c01019{left:484.559685px;}
.x2_c01019{left:532.080000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls14_c01019{letter-spacing:-18.055333pt;}
.ls17_c01019{letter-spacing:-5.880000pt;}
.ls15_c01019{letter-spacing:-5.559867pt;}
.lsa_c01019{letter-spacing:-4.615000pt;}
.ls1a_c01019{letter-spacing:-4.022667pt;}
.ls19_c01019{letter-spacing:-3.917560pt;}
.ls10_c01019{letter-spacing:-3.717333pt;}
.ls18_c01019{letter-spacing:-3.680267pt;}
.ls5_c01019{letter-spacing:-2.973867pt;}
.ls8_c01019{letter-spacing:-2.229947pt;}
.ls9_c01019{letter-spacing:-2.125200pt;}
.ls3_c01019{letter-spacing:-1.487387pt;}
.ls13_c01019{letter-spacing:-0.920000pt;}
.ls16_c01019{letter-spacing:-0.884000pt;}
.lse_c01019{letter-spacing:-0.820000pt;}
.lsc_c01019{letter-spacing:-0.794267pt;}
.ls2_c01019{letter-spacing:-0.743467pt;}
.lsd_c01019{letter-spacing:-0.728933pt;}
.ls6_c01019{letter-spacing:0.000000pt;}
.ls4_c01019{letter-spacing:1.487387pt;}
.lsf_c01019{letter-spacing:1.618627pt;}
.ls11_c01019{letter-spacing:2.608533pt;}
.ls0_c01019{letter-spacing:3.642660pt;}
.ls7_c01019{letter-spacing:3.717333pt;}
.ls1_c01019{letter-spacing:4.369933pt;}
.ls12_c01019{letter-spacing:5.943200pt;}
.lsb_c01019{letter-spacing:26.012720pt;}
.ws0_c01019{word-spacing:0.000000pt;}
._f_c01019{margin-left:-12.131438pt;}
._8_c01019{margin-left:-10.903425pt;}
._6_c01019{margin-left:-9.275289pt;}
._e_c01019{margin-left:-7.729437pt;}
._a_c01019{margin-left:-6.183704pt;}
._b_c01019{margin-left:-4.710230pt;}
._4_c01019{margin-left:-3.327556pt;}
._c_c01019{margin-left:-1.633523pt;}
._9_c01019{width:1.222566pt;}
._5_c01019{width:2.946518pt;}
._7_c01019{width:4.379111pt;}
._d_c01019{width:5.802726pt;}
._18_c01019{width:18.048917pt;}
._12_c01019{width:19.208135pt;}
._14_c01019{width:21.052919pt;}
._0_c01019{width:23.010903pt;}
._11_c01019{width:24.088067pt;}
._13_c01019{width:26.993191pt;}
._19_c01019{width:28.539756pt;}
._16_c01019{width:29.963312pt;}
._15_c01019{width:31.515496pt;}
._17_c01019{width:46.130591pt;}
._10_c01019{width:49.800681pt;}
._1a_c01019{width:51.282843pt;}
._2_c01019{width:59.587917pt;}
._3_c01019{width:109.094904pt;}
._1_c01019{width:616.214387pt;}
.fs1_c01019{font-size:39.333333pt;}
.fs0_c01019{font-size:45.333333pt;}
.fs3_c01019{font-size:46.000000pt;}
.fs9_c01019{font-size:46.666667pt;}
.fs5_c01019{font-size:47.333333pt;}
.fs6_c01019{font-size:48.000000pt;}
.fs7_c01019{font-size:48.666667pt;}
.fs4_c01019{font-size:49.333333pt;}
.fs2_c01019{font-size:50.000000pt;}
.fs8_c01019{font-size:52.000000pt;}
.y0_c01019{bottom:0.000000pt;}
.y68_c01019{bottom:161.599613pt;}
.y38_c01019{bottom:161.916213pt;}
.y67_c01019{bottom:178.560000pt;}
.y37_c01019{bottom:178.876627pt;}
.y36_c01019{bottom:195.196653pt;}
.y66_c01019{bottom:195.199200pt;}
.y65_c01019{bottom:212.158267pt;}
.y35_c01019{bottom:212.477667pt;}
.y34_c01019{bottom:229.117267pt;}
.y64_c01019{bottom:229.118667pt;}
.y63_c01019{bottom:246.079067pt;}
.y33_c01019{bottom:246.398293pt;}
.y32_c01019{bottom:263.037907pt;}
.y62_c01019{bottom:263.038680pt;}
.y61_c01019{bottom:279.999067pt;}
.y31_c01019{bottom:280.318907pt;}
.y60_c01019{bottom:297.597307pt;}
.y30_c01019{bottom:297.597680pt;}
.y5f_c01019{bottom:314.878320pt;}
.y2f_c01019{bottom:314.878707pt;}
.y5e_c01019{bottom:331.517920pt;}
.y2e_c01019{bottom:331.518307pt;}
.y5d_c01019{bottom:348.798947pt;}
.y2d_c01019{bottom:348.799320pt;}
.y2b_c01019{bottom:365.438320pt;}
.y2c_c01019{bottom:365.438920pt;}
.y5c_c01019{bottom:365.759333pt;}
.y2a_c01019{bottom:382.719320pt;}
.y5b_c01019{bottom:382.719747pt;}
.y29_c01019{bottom:399.358933pt;}
.y5a_c01019{bottom:399.359360pt;}
.y27_c01019{bottom:416.957907pt;}
.y28_c01019{bottom:416.958907pt;}
.y26_c01019{bottom:433.918293pt;}
.y59_c01019{bottom:433.918520pt;}
.y25_c01019{bottom:450.878707pt;}
.y58_c01019{bottom:450.878907pt;}
.y24_c01019{bottom:468.159707pt;}
.y22_c01019{bottom:485.436947pt;}
.y57_c01019{bottom:485.438533pt;}
.y23_c01019{bottom:485.438920pt;}
.y21_c01019{bottom:502.397360pt;}
.y56_c01019{bottom:502.398920pt;}
.y20_c01019{bottom:519.357747pt;}
.y54_c01019{bottom:519.357827pt;}
.y55_c01019{bottom:519.358933pt;}
.y1f_c01019{bottom:536.318160pt;}
.y53_c01019{bottom:536.638853pt;}
.y1e_c01019{bottom:553.599160pt;}
.y52_c01019{bottom:553.599240pt;}
.y1c_c01019{bottom:570.237733pt;}
.y1d_c01019{bottom:570.238773pt;}
.y51_c01019{bottom:570.238853pt;}
.y1b_c01019{bottom:587.518760pt;}
.y50_c01019{bottom:587.519880pt;}
.y1a_c01019{bottom:604.159560pt;}
.y4f_c01019{bottom:604.160680pt;}
.y19_c01019{bottom:621.438333pt;}
.y4e_c01019{bottom:621.439453pt;}
.y18_c01019{bottom:638.398747pt;}
.y4c_c01019{bottom:638.399253pt;}
.y4d_c01019{bottom:638.399453pt;}
.y17_c01019{bottom:655.679747pt;}
.y4b_c01019{bottom:655.680280pt;}
.y16_c01019{bottom:672.640160pt;}
.y4a_c01019{bottom:672.640667pt;}
.y15_c01019{bottom:689.918920pt;}
.y49_c01019{bottom:689.919440pt;}
.y14_c01019{bottom:706.879307pt;}
.y48_c01019{bottom:724.478800pt;}
.y13_c01019{bottom:724.479413pt;}
.y47_c01019{bottom:741.439213pt;}
.y12_c01019{bottom:741.439293pt;}
.y46_c01019{bottom:758.720213pt;}
.y11_c01019{bottom:758.720320pt;}
.y45_c01019{bottom:775.678613pt;}
.y10_c01019{bottom:775.680707pt;}
.y44_c01019{bottom:792.957373pt;}
.yf_c01019{bottom:792.959467pt;}
.y43_c01019{bottom:809.917787pt;}
.ye_c01019{bottom:809.919440pt;}
.yd_c01019{bottom:809.919907pt;}
.y42_c01019{bottom:827.198787pt;}
.yc_c01019{bottom:827.519453pt;}
.y41_c01019{bottom:844.159200pt;}
.yb_c01019{bottom:844.160080pt;}
.y40_c01019{bottom:861.119587pt;}
.ya_c01019{bottom:861.438147pt;}
.y3f_c01019{bottom:878.398360pt;}
.y9_c01019{bottom:878.398533pt;}
.y3e_c01019{bottom:895.358760pt;}
.y8_c01019{bottom:895.358947pt;}
.y3d_c01019{bottom:912.319147pt;}
.y7_c01019{bottom:912.319333pt;}
.y6_c01019{bottom:929.279293pt;}
.y5_c01019{bottom:929.279373pt;}
.y3c_c01019{bottom:929.279560pt;}
.y4_c01019{bottom:945.920213pt;}
.y3b_c01019{bottom:945.920373pt;}
.y3_c01019{bottom:963.198973pt;}
.y3a_c01019{bottom:963.199133pt;}
.y39_c01019{bottom:980.159173pt;}
.y2_c01019{bottom:980.479987pt;}
.y1_c01019{bottom:1015.039960pt;}
.h2_c01019{height:41.023438pt;}
.h1_c01019{height:44.802083pt;}
.h4_c01019{height:45.460938pt;}
.hc_c01019{height:46.119792pt;}
.h9_c01019{height:46.359375pt;}
.h6_c01019{height:46.778646pt;}
.h7_c01019{height:47.437500pt;}
.h8_c01019{height:48.096354pt;}
.ha_c01019{height:48.393880pt;}
.h5_c01019{height:48.755208pt;}
.h3_c01019{height:49.414063pt;}
.hb_c01019{height:51.390625pt;}
.h0_c01019{height:1122.666667pt;}
.w0_c01019{width:793.333333pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:119.679200pt;}
.x6_c01019{left:182.399453pt;}
.x3_c01019{left:183.358933pt;}
.xb_c01019{left:211.199733pt;}
.x5_c01019{left:223.359333pt;}
.x7_c01019{left:229.119200pt;}
.x4_c01019{left:235.519067pt;}
.xc_c01019{left:240.638667pt;}
.xd_c01019{left:257.279320pt;}
.xe_c01019{left:258.559587pt;}
.x8_c01019{left:269.438920pt;}
.x9_c01019{left:286.719720pt;}
.xa_c01019{left:303.999067pt;}
.x11_c01019{left:361.600080pt;}
.xf_c01019{left:362.559040pt;}
.x12_c01019{left:390.399867pt;}
.x10_c01019{left:391.359333pt;}
.x13_c01019{left:430.719720pt;}
.x2_c01019{left:472.960000pt;}
}





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

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_8c14367f73ded327906e728b.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_fc3aa63e9cda42aed44e4844.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_671eb0ed89aa15a1442a5fea.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01020;src:url('chunks/assets/font_c511cd23ba1783f39a89922c.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01020;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:1.281250;font-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_c01020{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);}
.m8_c01020{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m11_c01020{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m9_c01020{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m4_c01020{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m12_c01020{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m7_c01020{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.mc_c01020{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m10_c01020{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.mf_c01020{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.mb_c01020{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m6_c01020{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m0_c01020{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m3_c01020{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_c01020{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m5_c01020{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m1_c01020{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_c01020{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.me_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.lsd_c01020{letter-spacing:-8.394225px;}
.ls9_c01020{letter-spacing:-6.346073px;}
.lse_c01020{letter-spacing:-4.308150px;}
.ls6_c01020{letter-spacing:-4.182000px;}
.lsa_c01020{letter-spacing:-3.345600px;}
.lsf_c01020{letter-spacing:-2.603505px;}
.lsc_c01020{letter-spacing:-2.541000px;}
.ls4_c01020{letter-spacing:-2.508690px;}
.lsb_c01020{letter-spacing:-1.911000px;}
.ls2_c01020{letter-spacing:-1.673310px;}
.ls7_c01020{letter-spacing:-1.669500px;}
.ls8_c01020{letter-spacing:-0.910200px;}
.ls1_c01020{letter-spacing:-0.836400px;}
.ls5_c01020{letter-spacing:-0.832350px;}
.ls3_c01020{letter-spacing:0.000000px;}
.ls0_c01020{letter-spacing:2.367000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01020{word-spacing:0.000000px;}
._c_c01020{margin-left:-30.166584px;}
._b_c01020{margin-left:-11.939284px;}
._5_c01020{margin-left:-8.629066px;}
._8_c01020{margin-left:-5.212167px;}
._6_c01020{margin-left:-3.622037px;}
._9_c01020{margin-left:-2.142000px;}
._a_c01020{width:2.086101px;}
._7_c01020{width:6.238496px;}
._14_c01020{width:20.475982px;}
._e_c01020{width:21.906532px;}
._13_c01020{width:23.518132px;}
._0_c01020{width:25.887332px;}
._10_c01020{width:26.938091px;}
._12_c01020{width:30.367340px;}
._d_c01020{width:32.107226px;}
._15_c01020{width:33.718959px;}
._f_c01020{width:35.454866px;}
._11_c01020{width:56.242449px;}
._16_c01020{width:57.854116px;}
._2_c01020{width:66.554305px;}
._4_c01020{width:121.139400px;}
._3_c01020{width:124.154368px;}
._1_c01020{width:693.241186px;}
.fc0_c01020{color:transparent;}
.fs9_c01020{font-size:44.250000px;}
.fs1_c01020{font-size:45.000000px;}
.fs2_c01020{font-size:46.500000px;}
.fs7_c01020{font-size:48.750000px;}
.fs0_c01020{font-size:51.000000px;}
.fs3_c01020{font-size:52.500000px;}
.fs6_c01020{font-size:53.250000px;}
.fs5_c01020{font-size:54.750000px;}
.fs4_c01020{font-size:55.500000px;}
.fs8_c01020{font-size:56.250000px;}
.fsa_c01020{font-size:57.750000px;}
.fsb_c01020{font-size:58.500000px;}
.y0_c01020{bottom:0.000000px;}
.y6c_c01020{bottom:181.440900px;}
.y35_c01020{bottom:181.797870px;}
.y34_c01020{bottom:200.878320px;}
.y6b_c01020{bottom:201.239760px;}
.y33_c01020{bottom:219.958770px;}
.y6a_c01020{bottom:219.960690px;}
.y32_c01020{bottom:239.397375px;}
.y69_c01020{bottom:239.399295px;}
.y31_c01020{bottom:258.479010px;}
.y68_c01020{bottom:258.480900px;}
.y30_c01020{bottom:277.559445px;}
.y67_c01020{bottom:277.560750px;}
.y66_c01020{bottom:277.560810px;}
.y2f_c01020{bottom:296.639895px;}
.y65_c01020{bottom:296.641275px;}
.y2e_c01020{bottom:316.078515px;}
.y64_c01020{bottom:316.440765px;}
.y2d_c01020{bottom:335.519640px;}
.y63_c01020{bottom:335.521230px;}
.y2c_c01020{bottom:354.600105px;}
.y62_c01020{bottom:354.959835px;}
.y2b_c01020{bottom:373.680540px;}
.y61_c01020{bottom:373.680750px;}
.y60_c01020{bottom:392.760720px;}
.y2a_c01020{bottom:393.119160px;}
.y29_c01020{bottom:412.199610px;}
.y5f_c01020{bottom:412.199850px;}
.y5e_c01020{bottom:431.639880px;}
.y28_c01020{bottom:431.640750px;}
.y5d_c01020{bottom:450.720330px;}
.y26_c01020{bottom:451.078590px;}
.y27_c01020{bottom:451.080000px;}
.y25_c01020{bottom:470.519715px;}
.y5c_c01020{bottom:470.519835px;}
.y24_c01020{bottom:489.600180px;}
.y5b_c01020{bottom:489.600285px;}
.y23_c01020{bottom:508.680615px;}
.y5a_c01020{bottom:508.680720px;}
.y59_c01020{bottom:527.760720px;}
.y58_c01020{bottom:527.760840px;}
.y22_c01020{bottom:527.761065px;}
.y57_c01020{bottom:547.199460px;}
.y21_c01020{bottom:547.199685px;}
.y56_c01020{bottom:565.920360px;}
.y20_c01020{bottom:565.920600px;}
.y1e_c01020{bottom:584.997090px;}
.y1f_c01020{bottom:585.000600px;}
.y55_c01020{bottom:585.000825px;}
.y1d_c01020{bottom:604.435710px;}
.y54_c01020{bottom:604.439445px;}
.y1c_c01020{bottom:623.516145px;}
.y53_c01020{bottom:623.880570px;}
.y1b_c01020{bottom:642.596610px;}
.y52_c01020{bottom:642.960645px;}
.y1a_c01020{bottom:662.037735px;}
.y51_c01020{bottom:662.041080px;}
.y19_c01020{bottom:681.118200px;}
.y50_c01020{bottom:681.479685px;}
.y18_c01020{bottom:700.917690px;}
.y4e_c01020{bottom:700.919265px;}
.y4f_c01020{bottom:700.920600px;}
.y17_c01020{bottom:719.637240px;}
.y4d_c01020{bottom:719.638830px;}
.y16_c01020{bottom:739.078395px;}
.y4c_c01020{bottom:739.079955px;}
.y15_c01020{bottom:757.797960px;}
.y4b_c01020{bottom:757.799520px;}
.y14_c01020{bottom:777.239085px;}
.y4a_c01020{bottom:777.240420px;}
.y13_c01020{bottom:796.319550px;}
.y49_c01020{bottom:796.320285px;}
.y48_c01020{bottom:796.321590px;}
.y47_c01020{bottom:816.121080px;}
.y12_c01020{bottom:816.478575px;}
.y11_c01020{bottom:835.559025px;}
.y46_c01020{bottom:835.559685px;}
.y10_c01020{bottom:855.000165px;}
.y45_c01020{bottom:855.000555px;}
.y44_c01020{bottom:874.080420px;}
.yf_c01020{bottom:874.080615px;}
.y43_c01020{bottom:874.080705px;}
.ye_c01020{bottom:893.519235px;}
.y42_c01020{bottom:893.519325px;}
.y41_c01020{bottom:912.240240px;}
.yd_c01020{bottom:912.599670px;}
.y40_c01020{bottom:931.678845px;}
.yb_c01020{bottom:932.039595px;}
.yc_c01020{bottom:932.040615px;}
.ya_c01020{bottom:950.759145px;}
.y3f_c01020{bottom:950.759310px;}
.y9_c01020{bottom:969.119175px;}
.y3e_c01020{bottom:970.200435px;}
.y8_c01020{bottom:987.840090px;}
.y3d_c01020{bottom:989.639655px;}
.y3b_c01020{bottom:1008.716760px;}
.y3c_c01020{bottom:1008.719520px;}
.y7_c01020{bottom:1008.719805px;}
.y6_c01020{bottom:1026.359415px;}
.y3a_c01020{bottom:1027.797225px;}
.y39_c01020{bottom:1047.238365px;}
.y5_c01020{bottom:1047.240030px;}
.y38_c01020{bottom:1066.318815px;}
.y4_c01020{bottom:1066.320495px;}
.y37_c01020{bottom:1085.757435px;}
.y3_c01020{bottom:1085.759100px;}
.y36_c01020{bottom:1104.478335px;}
.y2_c01020{bottom:1104.839535px;}
.y1_c01020{bottom:1143.360255px;}
.h3_c01020{height:45.637207px;}
.ha_c01020{height:46.151367px;}
.h2_c01020{height:46.933594px;}
.hb_c01020{height:48.178711px;}
.h8_c01020{height:49.130859px;}
.h1_c01020{height:50.402344px;}
.h4_c01020{height:51.884766px;}
.h7_c01020{height:52.625977px;}
.h6_c01020{height:54.108398px;}
.hd_c01020{height:54.443115px;}
.h5_c01020{height:54.849609px;}
.h9_c01020{height:55.590820px;}
.hc_c01020{height:56.650269px;}
.he_c01020{height:57.814453px;}
.h0_c01020{height:1263.000000px;}
.w0_c01020{width:892.500000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:140.039400px;}
.x5_c01020{left:210.599235px;}
.x3_c01020{left:211.679100px;}
.x4_c01020{left:257.038950px;}
.x6_c01020{left:262.798515px;}
.x9_c01020{left:412.198200px;}
.x7_c01020{left:413.280150px;}
.xa_c01020{left:445.318770px;}
.x8_c01020{left:490.319235px;}
.x2_c01020{left:537.478635px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.lsd_c01020{letter-spacing:-7.461533pt;}
.ls9_c01020{letter-spacing:-5.640953pt;}
.lse_c01020{letter-spacing:-3.829467pt;}
.ls6_c01020{letter-spacing:-3.717333pt;}
.lsa_c01020{letter-spacing:-2.973867pt;}
.lsf_c01020{letter-spacing:-2.314227pt;}
.lsc_c01020{letter-spacing:-2.258667pt;}
.ls4_c01020{letter-spacing:-2.229947pt;}
.lsb_c01020{letter-spacing:-1.698667pt;}
.ls2_c01020{letter-spacing:-1.487387pt;}
.ls7_c01020{letter-spacing:-1.484000pt;}
.ls8_c01020{letter-spacing:-0.809067pt;}
.ls1_c01020{letter-spacing:-0.743467pt;}
.ls5_c01020{letter-spacing:-0.739867pt;}
.ls3_c01020{letter-spacing:0.000000pt;}
.ls0_c01020{letter-spacing:2.104000pt;}
.ws0_c01020{word-spacing:0.000000pt;}
._c_c01020{margin-left:-26.814741pt;}
._b_c01020{margin-left:-10.612697pt;}
._5_c01020{margin-left:-7.670281pt;}
._8_c01020{margin-left:-4.633037pt;}
._6_c01020{margin-left:-3.219588pt;}
._9_c01020{margin-left:-1.904000pt;}
._a_c01020{width:1.854312pt;}
._7_c01020{width:5.545329pt;}
._14_c01020{width:18.200873pt;}
._e_c01020{width:19.472473pt;}
._13_c01020{width:20.905006pt;}
._0_c01020{width:23.010962pt;}
._10_c01020{width:23.944970pt;}
._12_c01020{width:26.993191pt;}
._d_c01020{width:28.539756pt;}
._15_c01020{width:29.972408pt;}
._f_c01020{width:31.515436pt;}
._11_c01020{width:49.993288pt;}
._16_c01020{width:51.425881pt;}
._2_c01020{width:59.159382pt;}
._4_c01020{width:107.679467pt;}
._3_c01020{width:110.359439pt;}
._1_c01020{width:616.214387pt;}
.fs9_c01020{font-size:39.333333pt;}
.fs1_c01020{font-size:40.000000pt;}
.fs2_c01020{font-size:41.333333pt;}
.fs7_c01020{font-size:43.333333pt;}
.fs0_c01020{font-size:45.333333pt;}
.fs3_c01020{font-size:46.666667pt;}
.fs6_c01020{font-size:47.333333pt;}
.fs5_c01020{font-size:48.666667pt;}
.fs4_c01020{font-size:49.333333pt;}
.fs8_c01020{font-size:50.000000pt;}
.fsa_c01020{font-size:51.333333pt;}
.fsb_c01020{font-size:52.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.y6c_c01020{bottom:161.280800pt;}
.y35_c01020{bottom:161.598107pt;}
.y34_c01020{bottom:178.558507pt;}
.y6b_c01020{bottom:178.879787pt;}
.y33_c01020{bottom:195.518907pt;}
.y6a_c01020{bottom:195.520613pt;}
.y32_c01020{bottom:212.797667pt;}
.y69_c01020{bottom:212.799373pt;}
.y31_c01020{bottom:229.759120pt;}
.y68_c01020{bottom:229.760800pt;}
.y30_c01020{bottom:246.719507pt;}
.y67_c01020{bottom:246.720667pt;}
.y66_c01020{bottom:246.720720pt;}
.y2f_c01020{bottom:263.679907pt;}
.y65_c01020{bottom:263.681133pt;}
.y2e_c01020{bottom:280.958680pt;}
.y64_c01020{bottom:281.280680pt;}
.y2d_c01020{bottom:298.239680pt;}
.y63_c01020{bottom:298.241093pt;}
.y2c_c01020{bottom:315.200093pt;}
.y62_c01020{bottom:315.519853pt;}
.y2b_c01020{bottom:332.160480pt;}
.y61_c01020{bottom:332.160667pt;}
.y60_c01020{bottom:349.120640pt;}
.y2a_c01020{bottom:349.439253pt;}
.y29_c01020{bottom:366.399653pt;}
.y5f_c01020{bottom:366.399867pt;}
.y5e_c01020{bottom:383.679893pt;}
.y28_c01020{bottom:383.680667pt;}
.y5d_c01020{bottom:400.640293pt;}
.y26_c01020{bottom:400.958747pt;}
.y27_c01020{bottom:400.960000pt;}
.y25_c01020{bottom:418.239747pt;}
.y5c_c01020{bottom:418.239853pt;}
.y24_c01020{bottom:435.200160pt;}
.y5b_c01020{bottom:435.200253pt;}
.y23_c01020{bottom:452.160547pt;}
.y5a_c01020{bottom:452.160640pt;}
.y59_c01020{bottom:469.120640pt;}
.y58_c01020{bottom:469.120747pt;}
.y22_c01020{bottom:469.120947pt;}
.y57_c01020{bottom:486.399520pt;}
.y21_c01020{bottom:486.399720pt;}
.y56_c01020{bottom:503.040320pt;}
.y20_c01020{bottom:503.040533pt;}
.y1e_c01020{bottom:519.997413pt;}
.y1f_c01020{bottom:520.000533pt;}
.y55_c01020{bottom:520.000733pt;}
.y1d_c01020{bottom:537.276187pt;}
.y54_c01020{bottom:537.279507pt;}
.y1c_c01020{bottom:554.236573pt;}
.y53_c01020{bottom:554.560507pt;}
.y1b_c01020{bottom:571.196987pt;}
.y52_c01020{bottom:571.520573pt;}
.y1a_c01020{bottom:588.477987pt;}
.y51_c01020{bottom:588.480960pt;}
.y19_c01020{bottom:605.438400pt;}
.y50_c01020{bottom:605.759720pt;}
.y18_c01020{bottom:623.037947pt;}
.y4e_c01020{bottom:623.039347pt;}
.y4f_c01020{bottom:623.040533pt;}
.y17_c01020{bottom:639.677547pt;}
.y4d_c01020{bottom:639.678960pt;}
.y16_c01020{bottom:656.958573pt;}
.y4c_c01020{bottom:656.959960pt;}
.y15_c01020{bottom:673.598187pt;}
.y4b_c01020{bottom:673.599573pt;}
.y14_c01020{bottom:690.879187pt;}
.y4a_c01020{bottom:690.880373pt;}
.y13_c01020{bottom:707.839600pt;}
.y49_c01020{bottom:707.840253pt;}
.y48_c01020{bottom:707.841413pt;}
.y47_c01020{bottom:725.440960pt;}
.y12_c01020{bottom:725.758733pt;}
.y11_c01020{bottom:742.719133pt;}
.y46_c01020{bottom:742.719720pt;}
.y10_c01020{bottom:760.000147pt;}
.y45_c01020{bottom:760.000493pt;}
.y44_c01020{bottom:776.960373pt;}
.yf_c01020{bottom:776.960547pt;}
.y43_c01020{bottom:776.960627pt;}
.ye_c01020{bottom:794.239320pt;}
.y42_c01020{bottom:794.239400pt;}
.y41_c01020{bottom:810.880213pt;}
.yd_c01020{bottom:811.199707pt;}
.y40_c01020{bottom:828.158973pt;}
.yb_c01020{bottom:828.479640pt;}
.yc_c01020{bottom:828.480547pt;}
.ya_c01020{bottom:845.119240pt;}
.y3f_c01020{bottom:845.119387pt;}
.y9_c01020{bottom:861.439267pt;}
.y3e_c01020{bottom:862.400387pt;}
.y8_c01020{bottom:878.080080pt;}
.y3d_c01020{bottom:879.679693pt;}
.y3b_c01020{bottom:896.637120pt;}
.y3c_c01020{bottom:896.639573pt;}
.y7_c01020{bottom:896.639827pt;}
.y6_c01020{bottom:912.319480pt;}
.y3a_c01020{bottom:913.597533pt;}
.y39_c01020{bottom:930.878547pt;}
.y5_c01020{bottom:930.880027pt;}
.y38_c01020{bottom:947.838947pt;}
.y4_c01020{bottom:947.840440pt;}
.y37_c01020{bottom:965.117720pt;}
.y3_c01020{bottom:965.119200pt;}
.y36_c01020{bottom:981.758520pt;}
.y2_c01020{bottom:982.079587pt;}
.y1_c01020{bottom:1016.320227pt;}
.h3_c01020{height:40.566406pt;}
.ha_c01020{height:41.023438pt;}
.h2_c01020{height:41.718750pt;}
.hb_c01020{height:42.825521pt;}
.h8_c01020{height:43.671875pt;}
.h1_c01020{height:44.802083pt;}
.h4_c01020{height:46.119792pt;}
.h7_c01020{height:46.778646pt;}
.h6_c01020{height:48.096354pt;}
.hd_c01020{height:48.393880pt;}
.h5_c01020{height:48.755208pt;}
.h9_c01020{height:49.414063pt;}
.hc_c01020{height:50.355794pt;}
.he_c01020{height:51.390625pt;}
.h0_c01020{height:1122.666667pt;}
.w0_c01020{width:793.333333pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:124.479467pt;}
.x5_c01020{left:187.199320pt;}
.x3_c01020{left:188.159200pt;}
.x4_c01020{left:228.479067pt;}
.x6_c01020{left:233.598680pt;}
.x9_c01020{left:366.398400pt;}
.x7_c01020{left:367.360133pt;}
.xa_c01020{left:395.838907pt;}
.x8_c01020{left:435.839320pt;}
.x2_c01020{left:477.758787pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_33ecfad9384dcad6e5a396a4.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_ca304660b1591a3c11a2b6d6.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01021;src:url('chunks/assets/font_0d12fa7459093176a5aff0b6.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.311035;font-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_c01021{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);}
.m11_c01021{transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175781,0.000000,0.000000,0.250000,0,0);}
.md_c01021{transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179577,0.000000,0.000000,0.250000,0,0);}
.m16_c01021{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);}
.m10_c01021{transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);}
.m4_c01021{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.mb_c01021{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.mc_c01021{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);}
.m12_c01021{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.ma_c01021{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m1_c01021{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m14_c01021{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.mf_c01021{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m2_c01021{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m7_c01021{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m15_c01021{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m6_c01021{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m0_c01021{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m5_c01021{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m3_c01021{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m9_c01021{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m8_c01021{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m13_c01021{transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.lsd_c01021{letter-spacing:-9.294075px;}
.ls4_c01021{letter-spacing:-5.654250px;}
.lsb_c01021{letter-spacing:-5.402775px;}
.ls5_c01021{letter-spacing:-4.182000px;}
.ls7_c01021{letter-spacing:-3.345600px;}
.ls12_c01021{letter-spacing:-3.017850px;}
.ls13_c01021{letter-spacing:-2.577300px;}
.ls9_c01021{letter-spacing:-2.564100px;}
.lsc_c01021{letter-spacing:-2.508690px;}
.ls8_c01021{letter-spacing:-2.463818px;}
.ls10_c01021{letter-spacing:-1.771740px;}
.ls1_c01021{letter-spacing:-1.673310px;}
.ls3_c01021{letter-spacing:-0.879750px;}
.lsa_c01021{letter-spacing:-0.869400px;}
.ls0_c01021{letter-spacing:-0.836400px;}
.ls2_c01021{letter-spacing:0.000000px;}
.lsf_c01021{letter-spacing:0.939750px;}
.ls11_c01021{letter-spacing:1.005000px;}
.lse_c01021{letter-spacing:1.884218px;}
.ls6_c01021{letter-spacing:26.754600px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:0.000000px;}
._a_c01021{margin-left:-25.874440px;}
._5_c01021{margin-left:-12.040749px;}
._7_c01021{margin-left:-9.557835px;}
._2_c01021{margin-left:-6.084484px;}
._6_c01021{margin-left:-3.508800px;}
._4_c01021{margin-left:-1.908554px;}
._3_c01021{width:1.415476px;}
._9_c01021{width:3.060878px;}
._8_c01021{width:4.513350px;}
._b_c01021{width:6.323983px;}
._15_c01021{width:22.072466px;}
._16_c01021{width:23.192793px;}
._0_c01021{width:24.286568px;}
._17_c01021{width:25.418066px;}
._f_c01021{width:26.960556px;}
._10_c01021{width:30.506528px;}
._c_c01021{width:32.107292px;}
._14_c01021{width:33.718959px;}
._d_c01021{width:35.454866px;}
._e_c01021{width:36.926090px;}
._13_c01021{width:53.651649px;}
._11_c01021{width:56.015666px;}
._12_c01021{width:57.467084px;}
._1_c01021{width:693.241052px;}
.fc0_c01021{color:transparent;}
.fsa_c01021{font-size:46.500000px;}
.fs6_c01021{font-size:47.250000px;}
.fs9_c01021{font-size:48.000000px;}
.fs8_c01021{font-size:50.250000px;}
.fs0_c01021{font-size:51.000000px;}
.fs2_c01021{font-size:51.750000px;}
.fs1_c01021{font-size:52.500000px;}
.fs3_c01021{font-size:53.250000px;}
.fs5_c01021{font-size:54.000000px;}
.fs4_c01021{font-size:55.500000px;}
.fs7_c01021{font-size:56.250000px;}
.y0_c01021{bottom:0.000000px;}
.y26_c01021{bottom:530.639700px;}
.y49_c01021{bottom:530.998950px;}
.y25_c01021{bottom:549.719565px;}
.y48_c01021{bottom:550.439670px;}
.y24_c01021{bottom:568.799520px;}
.y47_c01021{bottom:569.158770px;}
.y22_c01021{bottom:588.237345px;}
.y23_c01021{bottom:588.238770px;}
.y46_c01021{bottom:588.599670px;}
.y21_c01021{bottom:607.678485px;}
.y45_c01021{bottom:607.679670px;}
.y20_c01021{bottom:626.758935px;}
.y43_c01021{bottom:627.118635px;}
.y44_c01021{bottom:627.118785px;}
.y1f_c01021{bottom:645.479850px;}
.y42_c01021{bottom:646.199085px;}
.y1e_c01021{bottom:664.560315px;}
.y41_c01021{bottom:664.920000px;}
.y1d_c01021{bottom:683.640750px;}
.y40_c01021{bottom:684.358605px;}
.y1c_c01021{bottom:703.079355px;}
.y3f_c01021{bottom:703.439820px;}
.y1b_c01021{bottom:721.800105px;}
.y1a_c01021{bottom:721.800630px;}
.y3e_c01021{bottom:722.520270px;}
.y19_c01021{bottom:741.600135px;}
.y3d_c01021{bottom:741.959385px;}
.y18_c01021{bottom:760.680135px;}
.y17_c01021{bottom:760.680285px;}
.y3c_c01021{bottom:761.039385px;}
.y16_c01021{bottom:780.118905px;}
.y3b_c01021{bottom:780.480285px;}
.y15_c01021{bottom:799.199340px;}
.y3a_c01021{bottom:799.560240px;}
.y13_c01021{bottom:818.997510px;}
.y14_c01021{bottom:818.999355px;}
.y38_c01021{bottom:819.358515px;}
.y39_c01021{bottom:819.358605px;}
.y12_c01021{bottom:838.077945px;}
.y37_c01021{bottom:838.079430px;}
.y11_c01021{bottom:857.519100px;}
.y36_c01021{bottom:857.878950px;}
.y10_c01021{bottom:876.599535px;}
.y35_c01021{bottom:876.959385px;}
.yf_c01021{bottom:896.397675px;}
.y34_c01021{bottom:896.759490px;}
.ye_c01021{bottom:915.118605px;}
.y33_c01021{bottom:915.839535px;}
.yd_c01021{bottom:934.559745px;}
.y32_c01021{bottom:934.919490px;}
.yc_c01021{bottom:953.640195px;}
.y31_c01021{bottom:953.999355px;}
.yb_c01021{bottom:973.078815px;}
.y30_c01021{bottom:973.439805px;}
.ya_c01021{bottom:991.799715px;}
.y2f_c01021{bottom:992.159370px;}
.y9_c01021{bottom:1011.238335px;}
.y2d_c01021{bottom:1011.599625px;}
.y2e_c01021{bottom:1011.600135px;}
.y8_c01021{bottom:1030.318800px;}
.y2c_c01021{bottom:1030.319190px;}
.y6_c01021{bottom:1049.398755px;}
.y7_c01021{bottom:1049.399235px;}
.y2a_c01021{bottom:1049.759790px;}
.y2b_c01021{bottom:1049.760135px;}
.y5_c01021{bottom:1068.479190px;}
.y29_c01021{bottom:1068.479340px;}
.y3_c01021{bottom:1088.278815px;}
.y28_c01021{bottom:1088.278860px;}
.y4_c01021{bottom:1088.279205px;}
.y2_c01021{bottom:1107.359250px;}
.y27_c01021{bottom:1107.720000px;}
.y1_c01021{bottom:1145.879970px;}
.ha_c01021{height:48.375000px;}
.hb_c01021{height:48.498047px;}
.h7_c01021{height:49.280273px;}
.h1_c01021{height:50.402344px;}
.h9_c01021{height:50.642578px;}
.h3_c01021{height:51.143555px;}
.h2_c01021{height:51.884766px;}
.h4_c01021{height:52.625977px;}
.h6_c01021{height:53.367188px;}
.h5_c01021{height:54.849609px;}
.h8_c01021{height:55.590820px;}
.h0_c01021{height:1263.000000px;}
.w0_c01021{width:892.500000px;}
.x0_c01021{left:0.000000px;}
.x1_c01021{left:140.398665px;}
.xa_c01021{left:211.318935px;}
.x6_c01021{left:212.399250px;}
.x7_c01021{left:257.759100px;}
.xd_c01021{left:270.718500px;}
.xb_c01021{left:296.279850px;}
.x8_c01021{left:322.559685px;}
.x9_c01021{left:335.159850px;}
.xc_c01021{left:348.478635px;}
.xe_c01021{left:413.279685px;}
.x10_c01021{left:445.318770px;}
.xf_c01021{left:491.039385px;}
.x2_c01021{left:537.478635px;}
.x3_c01021{left:583.199385px;}
.x4_c01021{left:641.518620px;}
.x5_c01021{left:700.198785px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.lsd_c01021{letter-spacing:-8.261400pt;}
.ls4_c01021{letter-spacing:-5.026000pt;}
.lsb_c01021{letter-spacing:-4.802467pt;}
.ls5_c01021{letter-spacing:-3.717333pt;}
.ls7_c01021{letter-spacing:-2.973867pt;}
.ls12_c01021{letter-spacing:-2.682533pt;}
.ls13_c01021{letter-spacing:-2.290933pt;}
.ls9_c01021{letter-spacing:-2.279200pt;}
.lsc_c01021{letter-spacing:-2.229947pt;}
.ls8_c01021{letter-spacing:-2.190060pt;}
.ls10_c01021{letter-spacing:-1.574880pt;}
.ls1_c01021{letter-spacing:-1.487387pt;}
.ls3_c01021{letter-spacing:-0.782000pt;}
.lsa_c01021{letter-spacing:-0.772800pt;}
.ls0_c01021{letter-spacing:-0.743467pt;}
.ls2_c01021{letter-spacing:0.000000pt;}
.lsf_c01021{letter-spacing:0.835333pt;}
.ls11_c01021{letter-spacing:0.893333pt;}
.lse_c01021{letter-spacing:1.674860pt;}
.ls6_c01021{letter-spacing:23.781867pt;}
.ws0_c01021{word-spacing:0.000000pt;}
._a_c01021{margin-left:-22.999503pt;}
._5_c01021{margin-left:-10.702888pt;}
._7_c01021{margin-left:-8.495853pt;}
._2_c01021{margin-left:-5.408430pt;}
._6_c01021{margin-left:-3.118933pt;}
._4_c01021{margin-left:-1.696492pt;}
._3_c01021{width:1.258201pt;}
._9_c01021{width:2.720780pt;}
._8_c01021{width:4.011866pt;}
._b_c01021{width:5.621318pt;}
._15_c01021{width:19.619969pt;}
._16_c01021{width:20.615816pt;}
._0_c01021{width:21.588060pt;}
._17_c01021{width:22.593836pt;}
._f_c01021{width:23.964939pt;}
._10_c01021{width:27.116914pt;}
._c_c01021{width:28.539816pt;}
._14_c01021{width:29.972408pt;}
._d_c01021{width:31.515436pt;}
._e_c01021{width:32.823191pt;}
._13_c01021{width:47.690355pt;}
._11_c01021{width:49.791703pt;}
._12_c01021{width:51.081853pt;}
._1_c01021{width:616.214268pt;}
.fsa_c01021{font-size:41.333333pt;}
.fs6_c01021{font-size:42.000000pt;}
.fs9_c01021{font-size:42.666667pt;}
.fs8_c01021{font-size:44.666667pt;}
.fs0_c01021{font-size:45.333333pt;}
.fs2_c01021{font-size:46.000000pt;}
.fs1_c01021{font-size:46.666667pt;}
.fs3_c01021{font-size:47.333333pt;}
.fs5_c01021{font-size:48.000000pt;}
.fs4_c01021{font-size:49.333333pt;}
.fs7_c01021{font-size:50.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y26_c01021{bottom:471.679733pt;}
.y49_c01021{bottom:471.999067pt;}
.y25_c01021{bottom:488.639613pt;}
.y48_c01021{bottom:489.279707pt;}
.y24_c01021{bottom:505.599573pt;}
.y47_c01021{bottom:505.918907pt;}
.y22_c01021{bottom:522.877640pt;}
.y23_c01021{bottom:522.878907pt;}
.y46_c01021{bottom:523.199707pt;}
.y21_c01021{bottom:540.158653pt;}
.y45_c01021{bottom:540.159707pt;}
.y20_c01021{bottom:557.119053pt;}
.y43_c01021{bottom:557.438787pt;}
.y44_c01021{bottom:557.438920pt;}
.y1f_c01021{bottom:573.759867pt;}
.y42_c01021{bottom:574.399187pt;}
.y1e_c01021{bottom:590.720280pt;}
.y41_c01021{bottom:591.040000pt;}
.y1d_c01021{bottom:607.680667pt;}
.y40_c01021{bottom:608.318760pt;}
.y1c_c01021{bottom:624.959427pt;}
.y3f_c01021{bottom:625.279840pt;}
.y1b_c01021{bottom:641.600093pt;}
.y1a_c01021{bottom:641.600560pt;}
.y3e_c01021{bottom:642.240240pt;}
.y19_c01021{bottom:659.200120pt;}
.y3d_c01021{bottom:659.519453pt;}
.y18_c01021{bottom:676.160120pt;}
.y17_c01021{bottom:676.160253pt;}
.y3c_c01021{bottom:676.479453pt;}
.y16_c01021{bottom:693.439027pt;}
.y3b_c01021{bottom:693.760253pt;}
.y15_c01021{bottom:710.399413pt;}
.y3a_c01021{bottom:710.720213pt;}
.y13_c01021{bottom:727.997787pt;}
.y14_c01021{bottom:727.999427pt;}
.y38_c01021{bottom:728.318680pt;}
.y39_c01021{bottom:728.318760pt;}
.y12_c01021{bottom:744.958173pt;}
.y37_c01021{bottom:744.959493pt;}
.y11_c01021{bottom:762.239200pt;}
.y36_c01021{bottom:762.559067pt;}
.y10_c01021{bottom:779.199587pt;}
.y35_c01021{bottom:779.519453pt;}
.yf_c01021{bottom:796.797933pt;}
.y34_c01021{bottom:797.119547pt;}
.ye_c01021{bottom:813.438760pt;}
.y33_c01021{bottom:814.079587pt;}
.yd_c01021{bottom:830.719773pt;}
.y32_c01021{bottom:831.039547pt;}
.yc_c01021{bottom:847.680173pt;}
.y31_c01021{bottom:847.999427pt;}
.yb_c01021{bottom:864.958947pt;}
.y30_c01021{bottom:865.279827pt;}
.ya_c01021{bottom:881.599747pt;}
.y2f_c01021{bottom:881.919440pt;}
.y9_c01021{bottom:898.878520pt;}
.y2d_c01021{bottom:899.199667pt;}
.y2e_c01021{bottom:899.200120pt;}
.y8_c01021{bottom:915.838933pt;}
.y2c_c01021{bottom:915.839280pt;}
.y6_c01021{bottom:932.798893pt;}
.y7_c01021{bottom:932.799320pt;}
.y2a_c01021{bottom:933.119813pt;}
.y2b_c01021{bottom:933.120120pt;}
.y5_c01021{bottom:949.759280pt;}
.y29_c01021{bottom:949.759413pt;}
.y3_c01021{bottom:967.358947pt;}
.y28_c01021{bottom:967.358987pt;}
.y4_c01021{bottom:967.359293pt;}
.y2_c01021{bottom:984.319333pt;}
.y27_c01021{bottom:984.640000pt;}
.y1_c01021{bottom:1018.559973pt;}
.ha_c01021{height:43.000000pt;}
.hb_c01021{height:43.109375pt;}
.h7_c01021{height:43.804688pt;}
.h1_c01021{height:44.802083pt;}
.h9_c01021{height:45.015625pt;}
.h3_c01021{height:45.460938pt;}
.h2_c01021{height:46.119792pt;}
.h4_c01021{height:46.778646pt;}
.h6_c01021{height:47.437500pt;}
.h5_c01021{height:48.755208pt;}
.h8_c01021{height:49.414063pt;}
.h0_c01021{height:1122.666667pt;}
.w0_c01021{width:793.333333pt;}
.x0_c01021{left:0.000000pt;}
.x1_c01021{left:124.798813pt;}
.xa_c01021{left:187.839053pt;}
.x6_c01021{left:188.799333pt;}
.x7_c01021{left:229.119200pt;}
.xd_c01021{left:240.638667pt;}
.xb_c01021{left:263.359867pt;}
.x8_c01021{left:286.719720pt;}
.x9_c01021{left:297.919867pt;}
.xc_c01021{left:309.758787pt;}
.xe_c01021{left:367.359720pt;}
.x10_c01021{left:395.838907pt;}
.xf_c01021{left:436.479453pt;}
.x2_c01021{left:477.758787pt;}
.x3_c01021{left:518.399453pt;}
.x4_c01021{left:570.238773pt;}
.x5_c01021{left:622.398920pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_10c8d43c0fae368b65b31728.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_20b5452a38c21c275c84527b.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_5c0672a0a077ae073a566809.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01022;src:url('chunks/assets/font_57dc41937f169879f7f91454.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.311035;font-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_c01022{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.ma_c01022{transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);}
.m7_c01022{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m6_c01022{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m3_c01022{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.mc_c01022{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m0_c01022{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.md_c01022{transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);}
.m9_c01022{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m5_c01022{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.mf_c01022{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m2_c01022{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m1_c01022{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.mb_c01022{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01022{transform:matrix(0.356383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356383,0.000000,0.000000,0.250000,0,0);}
.m4_c01022{transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367347,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls9_c01022{letter-spacing:-3.469200px;}
.lsd_c01022{letter-spacing:-3.292800px;}
.ls2_c01022{letter-spacing:-3.278925px;}
.ls3_c01022{letter-spacing:-2.590800px;}
.lsb_c01022{letter-spacing:-1.729410px;}
.lsa_c01022{letter-spacing:-1.724775px;}
.ls1_c01022{letter-spacing:-0.867000px;}
.ls8_c01022{letter-spacing:-0.861000px;}
.ls0_c01022{letter-spacing:0.000000px;}
.ls4_c01022{letter-spacing:0.867000px;}
.ls6_c01022{letter-spacing:1.290608px;}
.ls5_c01022{letter-spacing:1.729410px;}
.lsc_c01022{letter-spacing:4.208145px;}
.ls7_c01022{letter-spacing:14.693100px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01022{word-spacing:0.000000px;}
._b_c01022{margin-left:-24.470007px;}
._6_c01022{margin-left:-7.777794px;}
._2_c01022{margin-left:-6.059111px;}
._8_c01022{margin-left:-4.691931px;}
._4_c01022{margin-left:-2.488593px;}
._a_c01022{margin-left:-1.244746px;}
._5_c01022{width:2.789959px;}
._7_c01022{width:4.131519px;}
._9_c01022{width:6.344746px;}
._0_c01022{width:58.191035px;}
._3_c01022{width:143.565035px;}
._1_c01022{width:717.957565px;}
.fc0_c01022{color:transparent;}
.fs4_c01022{font-size:36.750000px;}
.fs1_c01022{font-size:42.000000px;}
.fs5_c01022{font-size:42.750000px;}
.fs2_c01022{font-size:44.250000px;}
.fsb_c01022{font-size:45.750000px;}
.fs0_c01022{font-size:51.000000px;}
.fs9_c01022{font-size:52.500000px;}
.fs6_c01022{font-size:53.250000px;}
.fs7_c01022{font-size:55.500000px;}
.fsa_c01022{font-size:60.000000px;}
.fs8_c01022{font-size:68.250000px;}
.fsc_c01022{font-size:70.500000px;}
.fs3_c01022{font-size:86.250000px;}
.y0_c01022{bottom:0.000000px;}
.y88_c01022{bottom:179.272470px;}
.y34_c01022{bottom:179.277540px;}
.y5a_c01022{bottom:179.277735px;}
.y87_c01022{bottom:198.713625px;}
.y33_c01022{bottom:198.718695px;}
.y59_c01022{bottom:198.718875px;}
.y58_c01022{bottom:217.438425px;}
.y86_c01022{bottom:217.794060px;}
.y32_c01022{bottom:217.799130px;}
.y57_c01022{bottom:236.879580px;}
.y85_c01022{bottom:237.232680px;}
.y31_c01022{bottom:237.237735px;}
.y84_c01022{bottom:256.313145px;}
.y30_c01022{bottom:256.318200px;}
.y83_c01022{bottom:275.393580px;}
.y2e_c01022{bottom:275.398020px;}
.y2f_c01022{bottom:275.398635px;}
.y2d_c01022{bottom:294.118950px;}
.y82_c01022{bottom:294.474030px;}
.y56_c01022{bottom:294.477510px;}
.y55_c01022{bottom:313.198455px;}
.y2c_c01022{bottom:313.199385px;}
.y81_c01022{bottom:313.555635px;}
.y80_c01022{bottom:332.636100px;}
.y54_c01022{bottom:332.639580px;}
.y2b_c01022{bottom:332.640150px;}
.y7f_c01022{bottom:352.074720px;}
.y53_c01022{bottom:352.078200px;}
.y2a_c01022{bottom:352.079910px;}
.y29_c01022{bottom:370.800825px;}
.y7e_c01022{bottom:371.155155px;}
.y52_c01022{bottom:371.158650px;}
.y7d_c01022{bottom:390.596310px;}
.y51_c01022{bottom:390.599790px;}
.y28_c01022{bottom:390.600330px;}
.y7c_c01022{bottom:409.676745px;}
.y50_c01022{bottom:409.680240px;}
.y27_c01022{bottom:409.680765px;}
.y7b_c01022{bottom:429.115350px;}
.y4f_c01022{bottom:429.118860px;}
.y26_c01022{bottom:429.119385px;}
.y7a_c01022{bottom:448.195815px;}
.y24_c01022{bottom:448.198215px;}
.y4e_c01022{bottom:448.199295px;}
.y25_c01022{bottom:448.199385px;}
.y79_c01022{bottom:467.995305px;}
.y23_c01022{bottom:467.997705px;}
.y4d_c01022{bottom:467.998815px;}
.y78_c01022{bottom:486.716235px;}
.y22_c01022{bottom:486.718650px;}
.y4c_c01022{bottom:486.719715px;}
.y77_c01022{bottom:505.796670px;}
.y21_c01022{bottom:505.799085px;}
.y4b_c01022{bottom:505.800180px;}
.y20_c01022{bottom:524.879535px;}
.y76_c01022{bottom:525.235290px;}
.y4a_c01022{bottom:525.238785px;}
.y1f_c01022{bottom:543.959970px;}
.y75_c01022{bottom:544.315755px;}
.y49_c01022{bottom:544.319235px;}
.y74_c01022{bottom:563.036655px;}
.y1e_c01022{bottom:563.039985px;}
.y1d_c01022{bottom:582.119595px;}
.y73_c01022{bottom:582.475275px;}
.y48_c01022{bottom:582.478200px;}
.y72_c01022{bottom:601.555740px;}
.y1c_c01022{bottom:601.558200px;}
.y47_c01022{bottom:601.558665px;}
.y1b_c01022{bottom:620.638665px;}
.y46_c01022{bottom:620.639100px;}
.y71_c01022{bottom:620.996865px;}
.y45_c01022{bottom:637.560285px;}
.y70_c01022{bottom:639.716430px;}
.y19_c01022{bottom:639.718395px;}
.y1a_c01022{bottom:639.719100px;}
.y18_c01022{bottom:659.159520px;}
.y6f_c01022{bottom:659.515935px;}
.y44_c01022{bottom:659.518920px;}
.y6e_c01022{bottom:678.236850px;}
.y43_c01022{bottom:678.239820px;}
.y17_c01022{bottom:678.239985px;}
.y6d_c01022{bottom:697.675455px;}
.y16_c01022{bottom:697.678590px;}
.y42_c01022{bottom:697.679070px;}
.y6c_c01022{bottom:716.755920px;}
.y41_c01022{bottom:716.758185px;}
.y15_c01022{bottom:716.759040px;}
.y6b_c01022{bottom:736.555410px;}
.y40_c01022{bottom:736.557675px;}
.y14_c01022{bottom:736.558545px;}
.y3f_c01022{bottom:755.278605px;}
.y13_c01022{bottom:755.279460px;}
.y6a_c01022{bottom:755.635875px;}
.y12_c01022{bottom:774.359910px;}
.y69_c01022{bottom:774.716310px;}
.y3e_c01022{bottom:774.717225px;}
.y68_c01022{bottom:793.796775px;}
.y3d_c01022{bottom:793.797660px;}
.y11_c01022{bottom:793.798530px;}
.y3c_c01022{bottom:813.238815px;}
.y10_c01022{bottom:813.239655px;}
.y67_c01022{bottom:813.596265px;}
.yf_c01022{bottom:831.959220px;}
.y66_c01022{bottom:832.317195px;}
.y3b_c01022{bottom:832.319250px;}
.y65_c01022{bottom:851.755800px;}
.y3a_c01022{bottom:851.757870px;}
.ye_c01022{bottom:851.758740px;}
.y39_c01022{bottom:870.478800px;}
.yd_c01022{bottom:870.479640px;}
.y64_c01022{bottom:870.836250px;}
.y63_c01022{bottom:889.916700px;}
.y38_c01022{bottom:889.917405px;}
.yc_c01022{bottom:889.918080px;}
.y62_c01022{bottom:908.997135px;}
.y37_c01022{bottom:908.997855px;}
.yb_c01022{bottom:908.998530px;}
.y61_c01022{bottom:928.438290px;}
.y36_c01022{bottom:928.439010px;}
.ya_c01022{bottom:928.439670px;}
.y60_c01022{bottom:947.518725px;}
.y8_c01022{bottom:947.519445px;}
.y9_c01022{bottom:947.519715px;}
.y5f_c01022{bottom:966.957345px;}
.y7_c01022{bottom:966.958050px;}
.y5e_c01022{bottom:986.037810px;}
.y6_c01022{bottom:986.038515px;}
.y5d_c01022{bottom:1005.478935px;}
.y5_c01022{bottom:1005.479640px;}
.y5c_c01022{bottom:1024.917555px;}
.y4_c01022{bottom:1024.918950px;}
.y3_c01022{bottom:1024.919040px;}
.y35_c01022{bottom:1043.997810px;}
.y5b_c01022{bottom:1043.998005px;}
.y2_c01022{bottom:1043.999490px;}
.y1_c01022{bottom:1082.519715px;}
.h5_c01022{height:38.329102px;}
.h2_c01022{height:43.804688px;}
.h6_c01022{height:44.586914px;}
.h3_c01022{height:46.151367px;}
.hc_c01022{height:47.715820px;}
.h1_c01022{height:50.402344px;}
.ha_c01022{height:51.884766px;}
.h7_c01022{height:52.625977px;}
.h8_c01022{height:54.849609px;}
.hb_c01022{height:62.578125px;}
.h9_c01022{height:67.450195px;}
.hd_c01022{height:71.050781px;}
.h4_c01022{height:89.956055px;}
.h0_c01022{height:1263.000000px;}
.w0_c01022{width:892.500000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:134.639100px;}
.x4_c01022{left:205.919055px;}
.x9_c01022{left:251.638500px;}
.x6_c01022{left:253.798950px;}
.x7_c01022{left:259.919535px;}
.xa_c01022{left:271.079385px;}
.x5_c01022{left:277.559100px;}
.xb_c01022{left:283.679700px;}
.xc_c01022{left:290.518635px;}
.x8_c01022{left:292.319850px;}
.xe_c01022{left:304.199850px;}
.xd_c01022{left:342.719100px;}
.x10_c01022{left:406.799280px;}
.xf_c01022{left:407.880915px;}
.x11_c01022{left:415.078815px;}
.x13_c01022{left:439.199550px;}
.x12_c01022{left:440.279175px;}
.x2_c01022{left:692.639700px;}
.x3_c01022{left:745.199385px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls9_c01022{letter-spacing:-3.083733pt;}
.lsd_c01022{letter-spacing:-2.926933pt;}
.ls2_c01022{letter-spacing:-2.914600pt;}
.ls3_c01022{letter-spacing:-2.302933pt;}
.lsb_c01022{letter-spacing:-1.537253pt;}
.lsa_c01022{letter-spacing:-1.533133pt;}
.ls1_c01022{letter-spacing:-0.770667pt;}
.ls8_c01022{letter-spacing:-0.765333pt;}
.ls0_c01022{letter-spacing:0.000000pt;}
.ls4_c01022{letter-spacing:0.770667pt;}
.ls6_c01022{letter-spacing:1.147207pt;}
.ls5_c01022{letter-spacing:1.537253pt;}
.lsc_c01022{letter-spacing:3.740573pt;}
.ls7_c01022{letter-spacing:13.060533pt;}
.ws0_c01022{word-spacing:0.000000pt;}
._b_c01022{margin-left:-21.751118pt;}
._6_c01022{margin-left:-6.913595pt;}
._2_c01022{margin-left:-5.385877pt;}
._8_c01022{margin-left:-4.170605pt;}
._4_c01022{margin-left:-2.212082pt;}
._a_c01022{margin-left:-1.106441pt;}
._5_c01022{width:2.479964pt;}
._7_c01022{width:3.672461pt;}
._9_c01022{width:5.639774pt;}
._0_c01022{width:51.725364pt;}
._3_c01022{width:127.613364pt;}
._1_c01022{width:638.184503pt;}
.fs4_c01022{font-size:32.666667pt;}
.fs1_c01022{font-size:37.333333pt;}
.fs5_c01022{font-size:38.000000pt;}
.fs2_c01022{font-size:39.333333pt;}
.fsb_c01022{font-size:40.666667pt;}
.fs0_c01022{font-size:45.333333pt;}
.fs9_c01022{font-size:46.666667pt;}
.fs6_c01022{font-size:47.333333pt;}
.fs7_c01022{font-size:49.333333pt;}
.fsa_c01022{font-size:53.333333pt;}
.fs8_c01022{font-size:60.666667pt;}
.fsc_c01022{font-size:62.666667pt;}
.fs3_c01022{font-size:76.666667pt;}
.y0_c01022{bottom:0.000000pt;}
.y88_c01022{bottom:159.353307pt;}
.y34_c01022{bottom:159.357813pt;}
.y5a_c01022{bottom:159.357987pt;}
.y87_c01022{bottom:176.634333pt;}
.y33_c01022{bottom:176.638840pt;}
.y59_c01022{bottom:176.639000pt;}
.y58_c01022{bottom:193.278600pt;}
.y86_c01022{bottom:193.594720pt;}
.y32_c01022{bottom:193.599227pt;}
.y57_c01022{bottom:210.559627pt;}
.y85_c01022{bottom:210.873493pt;}
.y31_c01022{bottom:210.877987pt;}
.y84_c01022{bottom:227.833907pt;}
.y30_c01022{bottom:227.838400pt;}
.y83_c01022{bottom:244.794293pt;}
.y2e_c01022{bottom:244.798240pt;}
.y2f_c01022{bottom:244.798787pt;}
.y2d_c01022{bottom:261.439067pt;}
.y82_c01022{bottom:261.754693pt;}
.y56_c01022{bottom:261.757787pt;}
.y55_c01022{bottom:278.398627pt;}
.y2c_c01022{bottom:278.399453pt;}
.y81_c01022{bottom:278.716120pt;}
.y80_c01022{bottom:295.676533pt;}
.y54_c01022{bottom:295.679627pt;}
.y2b_c01022{bottom:295.680133pt;}
.y7f_c01022{bottom:312.955307pt;}
.y53_c01022{bottom:312.958400pt;}
.y2a_c01022{bottom:312.959920pt;}
.y29_c01022{bottom:329.600733pt;}
.y7e_c01022{bottom:329.915693pt;}
.y52_c01022{bottom:329.918800pt;}
.y7d_c01022{bottom:347.196720pt;}
.y51_c01022{bottom:347.199813pt;}
.y28_c01022{bottom:347.200293pt;}
.y7c_c01022{bottom:364.157107pt;}
.y50_c01022{bottom:364.160213pt;}
.y27_c01022{bottom:364.160680pt;}
.y7b_c01022{bottom:381.435867pt;}
.y4f_c01022{bottom:381.438987pt;}
.y26_c01022{bottom:381.439453pt;}
.y7a_c01022{bottom:398.396280pt;}
.y24_c01022{bottom:398.398413pt;}
.y4e_c01022{bottom:398.399373pt;}
.y25_c01022{bottom:398.399453pt;}
.y79_c01022{bottom:415.995827pt;}
.y23_c01022{bottom:415.997960pt;}
.y4d_c01022{bottom:415.998947pt;}
.y78_c01022{bottom:432.636653pt;}
.y22_c01022{bottom:432.638800pt;}
.y4c_c01022{bottom:432.639747pt;}
.y77_c01022{bottom:449.597040pt;}
.y21_c01022{bottom:449.599187pt;}
.y4b_c01022{bottom:449.600160pt;}
.y20_c01022{bottom:466.559587pt;}
.y76_c01022{bottom:466.875813pt;}
.y4a_c01022{bottom:466.878920pt;}
.y1f_c01022{bottom:483.519973pt;}
.y75_c01022{bottom:483.836227pt;}
.y49_c01022{bottom:483.839320pt;}
.y74_c01022{bottom:500.477027pt;}
.y1e_c01022{bottom:500.479987pt;}
.y1d_c01022{bottom:517.439640pt;}
.y73_c01022{bottom:517.755800pt;}
.y48_c01022{bottom:517.758400pt;}
.y72_c01022{bottom:534.716213pt;}
.y1c_c01022{bottom:534.718400pt;}
.y47_c01022{bottom:534.718813pt;}
.y1b_c01022{bottom:551.678813pt;}
.y46_c01022{bottom:551.679200pt;}
.y71_c01022{bottom:551.997213pt;}
.y45_c01022{bottom:566.720253pt;}
.y70_c01022{bottom:568.636827pt;}
.y19_c01022{bottom:568.638573pt;}
.y1a_c01022{bottom:568.639200pt;}
.y18_c01022{bottom:585.919573pt;}
.y6f_c01022{bottom:586.236387pt;}
.y44_c01022{bottom:586.239040pt;}
.y6e_c01022{bottom:602.877200pt;}
.y43_c01022{bottom:602.879840pt;}
.y17_c01022{bottom:602.879987pt;}
.y6d_c01022{bottom:620.155960pt;}
.y16_c01022{bottom:620.158747pt;}
.y42_c01022{bottom:620.159173pt;}
.y6c_c01022{bottom:637.116373pt;}
.y41_c01022{bottom:637.118387pt;}
.y15_c01022{bottom:637.119147pt;}
.y6b_c01022{bottom:654.715920pt;}
.y40_c01022{bottom:654.717933pt;}
.y14_c01022{bottom:654.718707pt;}
.y3f_c01022{bottom:671.358760pt;}
.y13_c01022{bottom:671.359520pt;}
.y6a_c01022{bottom:671.676333pt;}
.y12_c01022{bottom:688.319920pt;}
.y69_c01022{bottom:688.636720pt;}
.y3e_c01022{bottom:688.637533pt;}
.y68_c01022{bottom:705.597133pt;}
.y3d_c01022{bottom:705.597920pt;}
.y11_c01022{bottom:705.598693pt;}
.y3c_c01022{bottom:722.878947pt;}
.y10_c01022{bottom:722.879693pt;}
.y67_c01022{bottom:723.196680pt;}
.yf_c01022{bottom:739.519307pt;}
.y66_c01022{bottom:739.837507pt;}
.y3b_c01022{bottom:739.839333pt;}
.y65_c01022{bottom:757.116267pt;}
.y3a_c01022{bottom:757.118107pt;}
.ye_c01022{bottom:757.118880pt;}
.y39_c01022{bottom:773.758933pt;}
.yd_c01022{bottom:773.759680pt;}
.y64_c01022{bottom:774.076667pt;}
.y63_c01022{bottom:791.037067pt;}
.y38_c01022{bottom:791.037693pt;}
.yc_c01022{bottom:791.038293pt;}
.y62_c01022{bottom:807.997453pt;}
.y37_c01022{bottom:807.998093pt;}
.yb_c01022{bottom:807.998693pt;}
.y61_c01022{bottom:825.278480pt;}
.y36_c01022{bottom:825.279120pt;}
.ya_c01022{bottom:825.279707pt;}
.y60_c01022{bottom:842.238867pt;}
.y8_c01022{bottom:842.239507pt;}
.y9_c01022{bottom:842.239747pt;}
.y5f_c01022{bottom:859.517640pt;}
.y7_c01022{bottom:859.518267pt;}
.y5e_c01022{bottom:876.478053pt;}
.y6_c01022{bottom:876.478680pt;}
.y5d_c01022{bottom:893.759053pt;}
.y5_c01022{bottom:893.759680pt;}
.y5c_c01022{bottom:911.037827pt;}
.y4_c01022{bottom:911.039067pt;}
.y3_c01022{bottom:911.039147pt;}
.y35_c01022{bottom:927.998053pt;}
.y5b_c01022{bottom:927.998227pt;}
.y2_c01022{bottom:927.999547pt;}
.y1_c01022{bottom:962.239747pt;}
.h5_c01022{height:34.070312pt;}
.h2_c01022{height:38.937500pt;}
.h6_c01022{height:39.632812pt;}
.h3_c01022{height:41.023438pt;}
.hc_c01022{height:42.414062pt;}
.h1_c01022{height:44.802083pt;}
.ha_c01022{height:46.119792pt;}
.h7_c01022{height:46.778646pt;}
.h8_c01022{height:48.755208pt;}
.hb_c01022{height:55.625000pt;}
.h9_c01022{height:59.955729pt;}
.hd_c01022{height:63.156250pt;}
.h4_c01022{height:79.960938pt;}
.h0_c01022{height:1122.666667pt;}
.w0_c01022{width:793.333333pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:119.679200pt;}
.x4_c01022{left:183.039160pt;}
.x9_c01022{left:223.678667pt;}
.x6_c01022{left:225.599067pt;}
.x7_c01022{left:231.039587pt;}
.xa_c01022{left:240.959453pt;}
.x5_c01022{left:246.719200pt;}
.xb_c01022{left:252.159733pt;}
.xc_c01022{left:258.238787pt;}
.x8_c01022{left:259.839867pt;}
.xe_c01022{left:270.399867pt;}
.xd_c01022{left:304.639200pt;}
.x10_c01022{left:361.599360pt;}
.xf_c01022{left:362.560813pt;}
.x11_c01022{left:368.958947pt;}
.x13_c01022{left:390.399600pt;}
.x12_c01022{left:391.359267pt;}
.x2_c01022{left:615.679733pt;}
.x3_c01022{left:662.399453pt;}
}





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

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_223d8b46bba613ad472f90d8.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_e9557ae6b226d14f199b3ea1.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01023;src:url('chunks/assets/font_322d6ae3394f9439b2102a79.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01023;src:url('chunks/assets/font_04e9c5d69cff1de960512d4f.woff2')format("woff");}.ff4_c01023{font-family:ff4_c01023;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01023;src:url('chunks/assets/font_8882cbd302c537edfb666f11.woff2')format("woff");}.ff5_c01023{font-family:ff5_c01023;line-height:1.311035;font-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_c01023{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.me_c01023{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.mf_c01023{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.mc_c01023{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m10_c01023{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m2_c01023{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m5_c01023{transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218085,0.000000,0.000000,0.250000,0,0);}
.md_c01023{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m4_c01023{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m1_c01023{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m3_c01023{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m6_c01023{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m11_c01023{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m9_c01023{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.mb_c01023{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m7_c01023{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.ma_c01023{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.m8_c01023{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls1e_c01023{letter-spacing:-19.807125px;}
.ls16_c01023{letter-spacing:-12.947513px;}
.ls18_c01023{letter-spacing:-12.187500px;}
.ls10_c01023{letter-spacing:-11.427488px;}
.ls6_c01023{letter-spacing:-11.021400px;}
.ls1a_c01023{letter-spacing:-10.666500px;}
.ls25_c01023{letter-spacing:-9.900638px;}
.lsc_c01023{letter-spacing:-9.531000px;}
.lsf_c01023{letter-spacing:-8.737200px;}
.ls12_c01023{letter-spacing:-8.380613px;}
.ls1f_c01023{letter-spacing:-7.619625px;}
.ls24_c01023{letter-spacing:-6.528600px;}
.ls20_c01023{letter-spacing:-6.350400px;}
.ls17_c01023{letter-spacing:-6.093750px;}
.ls5_c01023{letter-spacing:-5.735025px;}
.ls13_c01023{letter-spacing:-5.711505px;}
.ls9_c01023{letter-spacing:-5.557140px;}
.ls19_c01023{letter-spacing:-5.333738px;}
.ls7_c01023{letter-spacing:-5.160600px;}
.ls1_c01023{letter-spacing:-4.762800px;}
.ls11_c01023{letter-spacing:-4.572750px;}
.ls4_c01023{letter-spacing:-4.308150px;}
.ls15_c01023{letter-spacing:-4.243500px;}
.ls8_c01023{letter-spacing:-4.079250px;}
.ls0_c01023{letter-spacing:-3.969000px;}
.lse_c01023{letter-spacing:-3.858750px;}
.ls1b_c01023{letter-spacing:-3.806888px;}
.lsb_c01023{letter-spacing:-3.803625px;}
.ls22_c01023{letter-spacing:-3.489120px;}
.ls3_c01023{letter-spacing:-3.175740px;}
.ls21_c01023{letter-spacing:-3.046875px;}
.ls1d_c01023{letter-spacing:-2.662200px;}
.lsa_c01023{letter-spacing:-2.381400px;}
.ls1c_c01023{letter-spacing:-0.905250px;}
.lsd_c01023{letter-spacing:-0.793260px;}
.ls23_c01023{letter-spacing:-0.760013px;}
.ls2_c01023{letter-spacing:0.000000px;}
.ls14_c01023{letter-spacing:9.693397px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:0.000000px;}
._8_c01023{margin-left:-16.270454px;}
._9_c01023{margin-left:-14.470761px;}
._c_c01023{margin-left:-13.453211px;}
._b_c01023{margin-left:-9.860591px;}
._5_c01023{margin-left:-8.791264px;}
._4_c01023{margin-left:-7.114722px;}
._6_c01023{margin-left:-5.832381px;}
._e_c01023{margin-left:-4.374572px;}
._2_c01023{margin-left:-2.319395px;}
._d_c01023{margin-left:-1.155918px;}
._7_c01023{width:4.533173px;}
._1a_c01023{width:21.978064px;}
._13_c01023{width:23.500736px;}
._15_c01023{width:25.153264px;}
._18_c01023{width:28.330624px;}
._10_c01023{width:29.853296px;}
._16_c01023{width:31.376033px;}
._17_c01023{width:33.885881px;}
._f_c01023{width:35.472572px;}
._1b_c01023{width:36.929831px;}
._14_c01023{width:40.090233px;}
._19_c01023{width:41.552672px;}
._11_c01023{width:43.019559px;}
._0_c01023{width:49.059127px;}
._1c_c01023{width:53.212270px;}
._a_c01023{width:59.475664px;}
._12_c01023{width:67.762317px;}
._3_c01023{width:137.215842px;}
._1_c01023{width:657.325609px;}
.fc0_c01023{color:transparent;}
.fsb_c01023{font-size:35.250000px;}
.fs9_c01023{font-size:43.500000px;}
.fs1_c01023{font-size:44.250000px;}
.fsc_c01023{font-size:45.000000px;}
.fse_c01023{font-size:46.500000px;}
.fsd_c01023{font-size:48.000000px;}
.fsa_c01023{font-size:48.750000px;}
.fs7_c01023{font-size:51.750000px;}
.fs8_c01023{font-size:52.500000px;}
.fs3_c01023{font-size:53.250000px;}
.fs0_c01023{font-size:54.000000px;}
.fs6_c01023{font-size:55.500000px;}
.fs2_c01023{font-size:57.750000px;}
.fs4_c01023{font-size:58.500000px;}
.fs5_c01023{font-size:70.500000px;}
.y0_c01023{bottom:0.000000px;}
.y63_c01023{bottom:185.399250px;}
.y36_c01023{bottom:185.403195px;}
.y62_c01023{bottom:204.479250px;}
.y35_c01023{bottom:204.482730px;}
.y61_c01023{bottom:223.199850px;}
.y34_c01023{bottom:223.203225px;}
.y60_c01023{bottom:242.639100px;}
.y33_c01023{bottom:242.641830px;}
.y32_c01023{bottom:261.362325px;}
.y5f_c01023{bottom:261.719100px;}
.y31_c01023{bottom:280.441860px;}
.y5e_c01023{bottom:280.798950px;}
.y5d_c01023{bottom:299.878950px;}
.y30_c01023{bottom:299.880450px;}
.y2f_c01023{bottom:318.960000px;}
.y5c_c01023{bottom:319.319850px;}
.y5b_c01023{bottom:338.038950px;}
.y2e_c01023{bottom:338.039550px;}
.y2d_c01023{bottom:357.119085px;}
.y5a_c01023{bottom:357.479685px;}
.y59_c01023{bottom:376.559685px;}
.y2c_c01023{bottom:376.560360px;}
.y2b_c01023{bottom:395.998950px;}
.y2a_c01023{bottom:414.358665px;}
.y29_c01023{bottom:414.359025px;}
.y58_c01023{bottom:433.799565px;}
.y28_c01023{bottom:433.800300px;}
.y27_c01023{bottom:452.519355px;}
.y57_c01023{bottom:452.879520px;}
.y26_c01023{bottom:472.319865px;}
.y56_c01023{bottom:472.679670px;}
.y55_c01023{bottom:491.398635px;}
.y25_c01023{bottom:491.399415px;}
.y24_c01023{bottom:510.840690px;}
.y54_c01023{bottom:511.198785px;}
.y53_c01023{bottom:529.919535px;}
.y23_c01023{bottom:529.920225px;}
.y22_c01023{bottom:549.358815px;}
.y52_c01023{bottom:549.719565px;}
.y21_c01023{bottom:568.438365px;}
.y51_c01023{bottom:568.799520px;}
.y20_c01023{bottom:587.879625px;}
.y50_c01023{bottom:588.238770px;}
.y1f_c01023{bottom:606.600135px;}
.y1e_c01023{bottom:606.602685px;}
.y4f_c01023{bottom:606.959385px;}
.y4e_c01023{bottom:626.039385px;}
.y1d_c01023{bottom:626.041290px;}
.y1c_c01023{bottom:645.120825px;}
.y4d_c01023{bottom:645.478635px;}
.y4c_c01023{bottom:664.560285px;}
.y1b_c01023{bottom:664.562100px;}
.y4b_c01023{bottom:683.279250px;}
.y1a_c01023{bottom:683.281155px;}
.y4a_c01023{bottom:702.720150px;}
.y19_c01023{bottom:702.722415px;}
.y49_c01023{bottom:722.159370px;}
.y18_c01023{bottom:722.161005px;}
.y17_c01023{bottom:741.240555px;}
.y48_c01023{bottom:741.600135px;}
.y16_c01023{bottom:760.320105px;}
.y47_c01023{bottom:760.680135px;}
.y15_c01023{bottom:779.761365px;}
.y46_c01023{bottom:780.119385px;}
.y45_c01023{bottom:798.840090px;}
.y14_c01023{bottom:798.840915px;}
.y13_c01023{bottom:818.279505px;}
.y44_c01023{bottom:818.640105px;}
.y43_c01023{bottom:837.720150px;}
.y12_c01023{bottom:837.720765px;}
.y11_c01023{bottom:856.800315px;}
.y42_c01023{bottom:857.159370px;}
.y10_c01023{bottom:875.879865px;}
.y41_c01023{bottom:876.239220px;}
.yf_c01023{bottom:895.318455px;}
.y40_c01023{bottom:895.680090px;}
.ye_c01023{bottom:914.759715px;}
.y3f_c01023{bottom:914.760135px;}
.yd_c01023{bottom:934.560240px;}
.yc_c01023{bottom:934.561380px;}
.yb_c01023{bottom:952.921395px;}
.y3e_c01023{bottom:953.279205px;}
.y3d_c01023{bottom:972.359250px;}
.ya_c01023{bottom:972.359985px;}
.y9_c01023{bottom:991.080480px;}
.y3c_c01023{bottom:991.439205px;}
.y8_c01023{bottom:1010.519070px;}
.y3b_c01023{bottom:1010.879970px;}
.y7_c01023{bottom:1029.599025px;}
.y3a_c01023{bottom:1029.960015px;}
.y6_c01023{bottom:1049.039985px;}
.y39_c01023{bottom:1068.479190px;}
.y5_c01023{bottom:1074.958920px;}
.y4_c01023{bottom:1087.558725px;}
.y38_c01023{bottom:1087.559055px;}
.y2_c01023{bottom:1106.999910px;}
.y3_c01023{bottom:1107.000000px;}
.y37_c01023{bottom:1107.003750px;}
.y1_c01023{bottom:1145.879970px;}
.hd_c01023{height:36.764648px;}
.hb_c01023{height:45.369141px;}
.h2_c01023{height:46.151367px;}
.he_c01023{height:46.933594px;}
.hc_c01023{height:48.178711px;}
.h10_c01023{height:48.375000px;}
.h11_c01023{height:48.498047px;}
.h8_c01023{height:50.764526px;}
.ha_c01023{height:51.500244px;}
.h12_c01023{height:51.884766px;}
.h4_c01023{height:52.235962px;}
.hf_c01023{height:52.625977px;}
.h1_c01023{height:52.971680px;}
.h7_c01023{height:54.443115px;}
.h9_c01023{height:56.320312px;}
.h3_c01023{height:56.650269px;}
.h5_c01023{height:57.385986px;}
.h6_c01023{height:69.157471px;}
.h0_c01023{height:1263.000000px;}
.w0_c01023{width:892.500000px;}
.x0_c01023{left:0.000000px;}
.x1_c01023{left:132.839565px;}
.x9_c01023{left:203.759130px;}
.x4_c01023{left:204.838320px;}
.x5_c01023{left:230.399850px;}
.x8_c01023{left:256.318800px;}
.xb_c01023{left:257.759100px;}
.x6_c01023{left:269.639100px;}
.xc_c01023{left:275.039385px;}
.x7_c01023{left:282.598500px;}
.xa_c01023{left:308.519100px;}
.x11_c01023{left:405.000000px;}
.xd_c01023{left:406.079955px;}
.xe_c01023{left:431.279850px;}
.xf_c01023{left:438.118785px;}
.x10_c01023{left:483.839535px;}
.x2_c01023{left:691.558635px;}
.x3_c01023{left:743.759085px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls1e_c01023{letter-spacing:-17.606333pt;}
.ls16_c01023{letter-spacing:-11.508900pt;}
.ls18_c01023{letter-spacing:-10.833333pt;}
.ls10_c01023{letter-spacing:-10.157767pt;}
.ls6_c01023{letter-spacing:-9.796800pt;}
.ls1a_c01023{letter-spacing:-9.481333pt;}
.ls25_c01023{letter-spacing:-8.800567pt;}
.lsc_c01023{letter-spacing:-8.472000pt;}
.lsf_c01023{letter-spacing:-7.766400pt;}
.ls12_c01023{letter-spacing:-7.449433pt;}
.ls1f_c01023{letter-spacing:-6.773000pt;}
.ls24_c01023{letter-spacing:-5.803200pt;}
.ls20_c01023{letter-spacing:-5.644800pt;}
.ls17_c01023{letter-spacing:-5.416667pt;}
.ls5_c01023{letter-spacing:-5.097800pt;}
.ls13_c01023{letter-spacing:-5.076893pt;}
.ls9_c01023{letter-spacing:-4.939680pt;}
.ls19_c01023{letter-spacing:-4.741100pt;}
.ls7_c01023{letter-spacing:-4.587200pt;}
.ls1_c01023{letter-spacing:-4.233600pt;}
.ls11_c01023{letter-spacing:-4.064667pt;}
.ls4_c01023{letter-spacing:-3.829467pt;}
.ls15_c01023{letter-spacing:-3.772000pt;}
.ls8_c01023{letter-spacing:-3.626000pt;}
.ls0_c01023{letter-spacing:-3.528000pt;}
.lse_c01023{letter-spacing:-3.430000pt;}
.ls1b_c01023{letter-spacing:-3.383900pt;}
.lsb_c01023{letter-spacing:-3.381000pt;}
.ls22_c01023{letter-spacing:-3.101440pt;}
.ls3_c01023{letter-spacing:-2.822880pt;}
.ls21_c01023{letter-spacing:-2.708333pt;}
.ls1d_c01023{letter-spacing:-2.366400pt;}
.lsa_c01023{letter-spacing:-2.116800pt;}
.ls1c_c01023{letter-spacing:-0.804667pt;}
.lsd_c01023{letter-spacing:-0.705120pt;}
.ls23_c01023{letter-spacing:-0.675567pt;}
.ls2_c01023{letter-spacing:0.000000pt;}
.ls14_c01023{letter-spacing:8.616353pt;}
.ws0_c01023{word-spacing:0.000000pt;}
._8_c01023{margin-left:-14.462626pt;}
._9_c01023{margin-left:-12.862899pt;}
._c_c01023{margin-left:-11.958409pt;}
._b_c01023{margin-left:-8.764969pt;}
._5_c01023{margin-left:-7.814456pt;}
._4_c01023{margin-left:-6.324198pt;}
._6_c01023{margin-left:-5.184339pt;}
._e_c01023{margin-left:-3.888508pt;}
._2_c01023{margin-left:-2.061685pt;}
._d_c01023{margin-left:-1.027482pt;}
._7_c01023{width:4.029487pt;}
._1a_c01023{width:19.536056pt;}
._13_c01023{width:20.889544pt;}
._15_c01023{width:22.358456pt;}
._18_c01023{width:25.182776pt;}
._10_c01023{width:26.536264pt;}
._16_c01023{width:27.889807pt;}
._17_c01023{width:30.120783pt;}
._f_c01023{width:31.531175pt;}
._1b_c01023{width:32.826517pt;}
._14_c01023{width:35.635762pt;}
._19_c01023{width:36.935708pt;}
._11_c01023{width:38.239608pt;}
._0_c01023{width:43.608113pt;}
._1c_c01023{width:47.299796pt;}
._a_c01023{width:52.867256pt;}
._12_c01023{width:60.233171pt;}
._3_c01023{width:121.969638pt;}
._1_c01023{width:584.289431pt;}
.fsb_c01023{font-size:31.333333pt;}
.fs9_c01023{font-size:38.666667pt;}
.fs1_c01023{font-size:39.333333pt;}
.fsc_c01023{font-size:40.000000pt;}
.fse_c01023{font-size:41.333333pt;}
.fsd_c01023{font-size:42.666667pt;}
.fsa_c01023{font-size:43.333333pt;}
.fs7_c01023{font-size:46.000000pt;}
.fs8_c01023{font-size:46.666667pt;}
.fs3_c01023{font-size:47.333333pt;}
.fs0_c01023{font-size:48.000000pt;}
.fs6_c01023{font-size:49.333333pt;}
.fs2_c01023{font-size:51.333333pt;}
.fs4_c01023{font-size:52.000000pt;}
.fs5_c01023{font-size:62.666667pt;}
.y0_c01023{bottom:0.000000pt;}
.y63_c01023{bottom:164.799333pt;}
.y36_c01023{bottom:164.802840pt;}
.y62_c01023{bottom:181.759333pt;}
.y35_c01023{bottom:181.762427pt;}
.y61_c01023{bottom:198.399867pt;}
.y34_c01023{bottom:198.402867pt;}
.y60_c01023{bottom:215.679200pt;}
.y33_c01023{bottom:215.681627pt;}
.y32_c01023{bottom:232.322067pt;}
.y5f_c01023{bottom:232.639200pt;}
.y31_c01023{bottom:249.281653pt;}
.y5e_c01023{bottom:249.599067pt;}
.y5d_c01023{bottom:266.559067pt;}
.y30_c01023{bottom:266.560400pt;}
.y2f_c01023{bottom:283.520000pt;}
.y5c_c01023{bottom:283.839867pt;}
.y5b_c01023{bottom:300.479067pt;}
.y2e_c01023{bottom:300.479600pt;}
.y2d_c01023{bottom:317.439187pt;}
.y5a_c01023{bottom:317.759720pt;}
.y59_c01023{bottom:334.719720pt;}
.y2c_c01023{bottom:334.720320pt;}
.y2b_c01023{bottom:351.999067pt;}
.y2a_c01023{bottom:368.318813pt;}
.y29_c01023{bottom:368.319133pt;}
.y58_c01023{bottom:385.599613pt;}
.y28_c01023{bottom:385.600267pt;}
.y27_c01023{bottom:402.239427pt;}
.y57_c01023{bottom:402.559573pt;}
.y26_c01023{bottom:419.839880pt;}
.y56_c01023{bottom:420.159707pt;}
.y55_c01023{bottom:436.798787pt;}
.y25_c01023{bottom:436.799480pt;}
.y24_c01023{bottom:454.080613pt;}
.y54_c01023{bottom:454.398920pt;}
.y53_c01023{bottom:471.039587pt;}
.y23_c01023{bottom:471.040200pt;}
.y22_c01023{bottom:488.318947pt;}
.y52_c01023{bottom:488.639613pt;}
.y21_c01023{bottom:505.278547pt;}
.y51_c01023{bottom:505.599573pt;}
.y20_c01023{bottom:522.559667pt;}
.y50_c01023{bottom:522.878907pt;}
.y1f_c01023{bottom:539.200120pt;}
.y1e_c01023{bottom:539.202387pt;}
.y4f_c01023{bottom:539.519453pt;}
.y4e_c01023{bottom:556.479453pt;}
.y1d_c01023{bottom:556.481147pt;}
.y1c_c01023{bottom:573.440733pt;}
.y4d_c01023{bottom:573.758787pt;}
.y4c_c01023{bottom:590.720253pt;}
.y1b_c01023{bottom:590.721867pt;}
.y4b_c01023{bottom:607.359333pt;}
.y1a_c01023{bottom:607.361027pt;}
.y4a_c01023{bottom:624.640133pt;}
.y19_c01023{bottom:624.642147pt;}
.y49_c01023{bottom:641.919440pt;}
.y18_c01023{bottom:641.920893pt;}
.y17_c01023{bottom:658.880493pt;}
.y48_c01023{bottom:659.200120pt;}
.y16_c01023{bottom:675.840093pt;}
.y47_c01023{bottom:676.160120pt;}
.y15_c01023{bottom:693.121213pt;}
.y46_c01023{bottom:693.439453pt;}
.y45_c01023{bottom:710.080080pt;}
.y14_c01023{bottom:710.080813pt;}
.y13_c01023{bottom:727.359560pt;}
.y44_c01023{bottom:727.680093pt;}
.y43_c01023{bottom:744.640133pt;}
.y12_c01023{bottom:744.640680pt;}
.y11_c01023{bottom:761.600280pt;}
.y42_c01023{bottom:761.919440pt;}
.y10_c01023{bottom:778.559880pt;}
.y41_c01023{bottom:778.879307pt;}
.yf_c01023{bottom:795.838627pt;}
.y40_c01023{bottom:796.160080pt;}
.ye_c01023{bottom:813.119747pt;}
.y3f_c01023{bottom:813.120120pt;}
.yd_c01023{bottom:830.720213pt;}
.yc_c01023{bottom:830.721227pt;}
.yb_c01023{bottom:847.041240pt;}
.y3e_c01023{bottom:847.359293pt;}
.y3d_c01023{bottom:864.319333pt;}
.ya_c01023{bottom:864.319987pt;}
.y9_c01023{bottom:880.960427pt;}
.y3c_c01023{bottom:881.279293pt;}
.y8_c01023{bottom:898.239173pt;}
.y3b_c01023{bottom:898.559973pt;}
.y7_c01023{bottom:915.199133pt;}
.y3a_c01023{bottom:915.520013pt;}
.y6_c01023{bottom:932.479987pt;}
.y39_c01023{bottom:949.759280pt;}
.y5_c01023{bottom:955.519040pt;}
.y4_c01023{bottom:966.718867pt;}
.y38_c01023{bottom:966.719160pt;}
.y2_c01023{bottom:983.999920pt;}
.y3_c01023{bottom:984.000000pt;}
.y37_c01023{bottom:984.003333pt;}
.y1_c01023{bottom:1018.559973pt;}
.hd_c01023{height:32.679688pt;}
.hb_c01023{height:40.328125pt;}
.h2_c01023{height:41.023438pt;}
.he_c01023{height:41.718750pt;}
.hc_c01023{height:42.825521pt;}
.h10_c01023{height:43.000000pt;}
.h11_c01023{height:43.109375pt;}
.h8_c01023{height:45.124023pt;}
.ha_c01023{height:45.777995pt;}
.h12_c01023{height:46.119792pt;}
.h4_c01023{height:46.431966pt;}
.hf_c01023{height:46.778646pt;}
.h1_c01023{height:47.085938pt;}
.h7_c01023{height:48.393880pt;}
.h9_c01023{height:50.062500pt;}
.h3_c01023{height:50.355794pt;}
.h5_c01023{height:51.009766pt;}
.h6_c01023{height:61.473307pt;}
.h0_c01023{height:1122.666667pt;}
.w0_c01023{width:793.333333pt;}
.x0_c01023{left:0.000000pt;}
.x1_c01023{left:118.079613pt;}
.x9_c01023{left:181.119227pt;}
.x4_c01023{left:182.078507pt;}
.x5_c01023{left:204.799867pt;}
.x8_c01023{left:227.838933pt;}
.xb_c01023{left:229.119200pt;}
.x6_c01023{left:239.679200pt;}
.xc_c01023{left:244.479453pt;}
.x7_c01023{left:251.198667pt;}
.xa_c01023{left:274.239200pt;}
.x11_c01023{left:360.000000pt;}
.xd_c01023{left:360.959960pt;}
.xe_c01023{left:383.359867pt;}
.xf_c01023{left:389.438920pt;}
.x10_c01023{left:430.079587pt;}
.x2_c01023{left:614.718787pt;}
.x3_c01023{left:661.119187pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_69512f3c0843c2f163715732.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_722c230b39dc85b139033aa6.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_c0b120a5cd0c17ac1d28723c.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01024;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01024;src:url('chunks/assets/font_b3c6719631d49639ca9fad59.woff2')format("woff");}.ff5_c01024{font-family:ff5_c01024;line-height:1.364746;font-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_c01024{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m8_c01024{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m14_c01024{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.md_c01024{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m2_c01024{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.me_c01024{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m7_c01024{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.ma_c01024{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m15_c01024{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m3_c01024{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m5_c01024{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m0_c01024{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m6_c01024{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.mf_c01024{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m13_c01024{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.mb_c01024{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_c01024{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m4_c01024{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.mc_c01024{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m9_c01024{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m11_c01024{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m16_c01024{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m12_c01024{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls10_c01024{letter-spacing:-6.990885px;}
.ls9_c01024{letter-spacing:-5.557125px;}
.ls13_c01024{letter-spacing:-5.531250px;}
.lsc_c01024{letter-spacing:-4.909500px;}
.lsa_c01024{letter-spacing:-4.509698px;}
.lse_c01024{letter-spacing:-3.960600px;}
.ls7_c01024{letter-spacing:-3.434625px;}
.lsb_c01024{letter-spacing:-3.334500px;}
.ls5_c01024{letter-spacing:-3.281250px;}
.ls6_c01024{letter-spacing:-2.619368px;}
.ls4_c01024{letter-spacing:-2.590800px;}
.lsd_c01024{letter-spacing:-2.535233px;}
.lsf_c01024{letter-spacing:-1.729410px;}
.ls11_c01024{letter-spacing:-1.668225px;}
.ls8_c01024{letter-spacing:-0.905250px;}
.ls12_c01024{letter-spacing:-0.890100px;}
.ls3_c01024{letter-spacing:-0.867000px;}
.ls2_c01024{letter-spacing:0.000000px;}
.ls0_c01024{letter-spacing:0.867000px;}
.ls1_c01024{letter-spacing:1.729410px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:0.000000px;}
._b_c01024{margin-left:-24.990000px;}
._6_c01024{margin-left:-12.545965px;}
._9_c01024{margin-left:-8.517035px;}
._4_c01024{margin-left:-5.599973px;}
._2_c01024{margin-left:-4.396062px;}
._7_c01024{margin-left:-2.703035px;}
._5_c01024{margin-left:-1.213938px;}
._a_c01024{width:1.423540px;}
._8_c01024{width:3.197510px;}
._f_c01024{width:25.296000px;}
._c_c01024{width:26.969007px;}
._e_c01024{width:28.610965px;}
._d_c01024{width:32.104621px;}
._11_c01024{width:33.886578px;}
._10_c01024{width:35.544165px;}
._12_c01024{width:37.332138px;}
._0_c01024{width:56.508000px;}
._3_c01024{width:146.880000px;}
._1_c01024{width:711.919477px;}
.fc0_c01024{color:transparent;}
.fs9_c01024{font-size:42.000000px;}
.fsa_c01024{font-size:43.500000px;}
.fsb_c01024{font-size:44.250000px;}
.fs7_c01024{font-size:45.000000px;}
.fs1_c01024{font-size:46.500000px;}
.fs0_c01024{font-size:51.000000px;}
.fsc_c01024{font-size:51.750000px;}
.fs3_c01024{font-size:52.500000px;}
.fs2_c01024{font-size:53.250000px;}
.fs5_c01024{font-size:54.750000px;}
.fs8_c01024{font-size:55.500000px;}
.fs4_c01024{font-size:56.250000px;}
.fs6_c01024{font-size:57.750000px;}
.y0_c01024{bottom:0.000000px;}
.y66_c01024{bottom:182.159025px;}
.y38_c01024{bottom:182.518155px;}
.y37_c01024{bottom:201.599790px;}
.y65_c01024{bottom:201.600150px;}
.y64_c01024{bottom:220.319250px;}
.y36_c01024{bottom:220.680225px;}
.y35_c01024{bottom:237.958950px;}
.y63_c01024{bottom:239.759670px;}
.y34_c01024{bottom:258.479235px;}
.y62_c01024{bottom:277.917600px;}
.y33_c01024{bottom:277.920000px;}
.y61_c01024{bottom:296.637150px;}
.y32_c01024{bottom:296.638455px;}
.y60_c01024{bottom:315.717615px;}
.y31_c01024{bottom:315.718890px;}
.y5f_c01024{bottom:334.798050px;}
.y30_c01024{bottom:334.799355px;}
.y5e_c01024{bottom:354.239205px;}
.y2f_c01024{bottom:354.240480px;}
.y2e_c01024{bottom:373.679100px;}
.y5d_c01024{bottom:374.038695px;}
.y2c_c01024{bottom:393.118470px;}
.y5c_c01024{bottom:393.119160px;}
.y2d_c01024{bottom:393.119985px;}
.y2b_c01024{bottom:411.838035px;}
.y5b_c01024{bottom:411.838710px;}
.y2a_c01024{bottom:431.279175px;}
.y5a_c01024{bottom:431.279850px;}
.y29_c01024{bottom:450.359625px;}
.y59_c01024{bottom:450.360300px;}
.y28_c01024{bottom:469.798230px;}
.y58_c01024{bottom:469.798920px;}
.y57_c01024{bottom:488.877120px;}
.y27_c01024{bottom:488.878695px;}
.y56_c01024{bottom:508.318245px;}
.y25_c01024{bottom:508.318995px;}
.y26_c01024{bottom:508.319820px;}
.y55_c01024{bottom:527.037810px;}
.y24_c01024{bottom:527.038560px;}
.y23_c01024{bottom:546.479685px;}
.y54_c01024{bottom:546.837315px;}
.y53_c01024{bottom:565.558230px;}
.y22_c01024{bottom:565.559685px;}
.y21_c01024{bottom:584.639700px;}
.y20_c01024{bottom:584.640465px;}
.y52_c01024{bottom:584.996835px;}
.y51_c01024{bottom:604.077300px;}
.y1f_c01024{bottom:604.079085px;}
.y50_c01024{bottom:623.157735px;}
.y1e_c01024{bottom:623.159520px;}
.y1d_c01024{bottom:642.600675px;}
.y4f_c01024{bottom:642.957255px;}
.y4e_c01024{bottom:662.037690px;}
.y1c_c01024{bottom:662.039295px;}
.y4d_c01024{bottom:680.758620px;}
.y1b_c01024{bottom:680.760195px;}
.y4c_c01024{bottom:700.197240px;}
.y1a_c01024{bottom:700.198815px;}
.y19_c01024{bottom:718.919745px;}
.y4b_c01024{bottom:719.277675px;}
.y4a_c01024{bottom:738.718830px;}
.y18_c01024{bottom:738.719235px;}
.y49_c01024{bottom:757.438380px;}
.y17_c01024{bottom:757.438800px;}
.y48_c01024{bottom:776.879520px;}
.y16_c01024{bottom:776.879955px;}
.y47_c01024{bottom:795.960000px;}
.y15_c01024{bottom:795.960390px;}
.y46_c01024{bottom:815.759490px;}
.y14_c01024{bottom:815.759910px;}
.y13_c01024{bottom:835.198515px;}
.y45_c01024{bottom:835.198605px;}
.y12_c01024{bottom:854.639655px;}
.y44_c01024{bottom:854.639760px;}
.y11_c01024{bottom:873.719520px;}
.y10_c01024{bottom:873.720195px;}
.yf_c01024{bottom:893.158815px;}
.yd_c01024{bottom:911.879130px;}
.ye_c01024{bottom:911.879520px;}
.y43_c01024{bottom:911.880210px;}
.y42_c01024{bottom:931.318815px;}
.yc_c01024{bottom:931.678635px;}
.y41_c01024{bottom:950.039340px;}
.yb_c01024{bottom:950.398200px;}
.y40_c01024{bottom:969.478425px;}
.ya_c01024{bottom:969.478635px;}
.y3f_c01024{bottom:988.199340px;}
.y9_c01024{bottom:988.560240px;}
.y8_c01024{bottom:988.561530px;}
.y3e_c01024{bottom:1007.998965px;}
.y7_c01024{bottom:1008.000135px;}
.y3d_c01024{bottom:1027.079400px;}
.y6_c01024{bottom:1027.080600px;}
.y3c_c01024{bottom:1046.518530px;}
.y5_c01024{bottom:1046.519205px;}
.y3b_c01024{bottom:1065.600135px;}
.y4_c01024{bottom:1065.600810px;}
.y3a_c01024{bottom:1084.680090px;}
.y3_c01024{bottom:1085.039430px;}
.y39_c01024{bottom:1104.118695px;}
.y2_c01024{bottom:1104.119895px;}
.y1_c01024{bottom:1142.640105px;}
.ha_c01024{height:43.804688px;}
.hb_c01024{height:45.369141px;}
.hc_c01024{height:46.151367px;}
.h8_c01024{height:46.933594px;}
.h2_c01024{height:48.498047px;}
.h1_c01024{height:50.402344px;}
.hd_c01024{height:51.143555px;}
.h4_c01024{height:51.884766px;}
.h3_c01024{height:52.625977px;}
.h6_c01024{height:53.707397px;}
.h9_c01024{height:54.849609px;}
.h5_c01024{height:55.590820px;}
.h7_c01024{height:57.073242px;}
.h0_c01024{height:1263.000000px;}
.w0_c01024{width:892.500000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:137.158815px;}
.x6_c01024{left:208.080000px;}
.x4_c01024{left:209.158875px;}
.xb_c01024{left:233.998950px;}
.xc_c01024{left:246.958350px;}
.x5_c01024{left:254.159850px;}
.x8_c01024{left:259.919535px;}
.x9_c01024{left:266.399250px;}
.xa_c01024{left:279.358635px;}
.x7_c01024{left:292.679100px;}
.xf_c01024{left:409.319685px;}
.xd_c01024{left:410.397765px;}
.x10_c01024{left:441.719565px;}
.xe_c01024{left:442.798920px;}
.x2_c01024{left:695.879520px;}
.x3_c01024{left:748.439205px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls10_c01024{letter-spacing:-6.214120pt;}
.ls9_c01024{letter-spacing:-4.939667pt;}
.ls13_c01024{letter-spacing:-4.916667pt;}
.lsc_c01024{letter-spacing:-4.364000pt;}
.lsa_c01024{letter-spacing:-4.008620pt;}
.lse_c01024{letter-spacing:-3.520533pt;}
.ls7_c01024{letter-spacing:-3.053000pt;}
.lsb_c01024{letter-spacing:-2.964000pt;}
.ls5_c01024{letter-spacing:-2.916667pt;}
.ls6_c01024{letter-spacing:-2.328327pt;}
.ls4_c01024{letter-spacing:-2.302933pt;}
.lsd_c01024{letter-spacing:-2.253540pt;}
.lsf_c01024{letter-spacing:-1.537253pt;}
.ls11_c01024{letter-spacing:-1.482867pt;}
.ls8_c01024{letter-spacing:-0.804667pt;}
.ls12_c01024{letter-spacing:-0.791200pt;}
.ls3_c01024{letter-spacing:-0.770667pt;}
.ls2_c01024{letter-spacing:0.000000pt;}
.ls0_c01024{letter-spacing:0.770667pt;}
.ls1_c01024{letter-spacing:1.537253pt;}
.ws0_c01024{word-spacing:0.000000pt;}
._b_c01024{margin-left:-22.213333pt;}
._6_c01024{margin-left:-11.151969pt;}
._9_c01024{margin-left:-7.570697pt;}
._4_c01024{margin-left:-4.977754pt;}
._2_c01024{margin-left:-3.907610pt;}
._7_c01024{margin-left:-2.402697pt;}
._5_c01024{margin-left:-1.079056pt;}
._a_c01024{width:1.265369pt;}
._8_c01024{width:2.842231pt;}
._f_c01024{width:22.485333pt;}
._c_c01024{width:23.972451pt;}
._e_c01024{width:25.431969pt;}
._d_c01024{width:28.537441pt;}
._11_c01024{width:30.121403pt;}
._10_c01024{width:31.594813pt;}
._12_c01024{width:33.184123pt;}
._0_c01024{width:50.229333pt;}
._3_c01024{width:130.560000pt;}
._1_c01024{width:632.817313pt;}
.fs9_c01024{font-size:37.333333pt;}
.fsa_c01024{font-size:38.666667pt;}
.fsb_c01024{font-size:39.333333pt;}
.fs7_c01024{font-size:40.000000pt;}
.fs1_c01024{font-size:41.333333pt;}
.fs0_c01024{font-size:45.333333pt;}
.fsc_c01024{font-size:46.000000pt;}
.fs3_c01024{font-size:46.666667pt;}
.fs2_c01024{font-size:47.333333pt;}
.fs5_c01024{font-size:48.666667pt;}
.fs8_c01024{font-size:49.333333pt;}
.fs4_c01024{font-size:50.000000pt;}
.fs6_c01024{font-size:51.333333pt;}
.y0_c01024{bottom:0.000000pt;}
.y66_c01024{bottom:161.919133pt;}
.y38_c01024{bottom:162.238360pt;}
.y37_c01024{bottom:179.199813pt;}
.y65_c01024{bottom:179.200133pt;}
.y64_c01024{bottom:195.839333pt;}
.y36_c01024{bottom:196.160200pt;}
.y35_c01024{bottom:211.519067pt;}
.y63_c01024{bottom:213.119707pt;}
.y34_c01024{bottom:229.759320pt;}
.y62_c01024{bottom:247.037867pt;}
.y33_c01024{bottom:247.040000pt;}
.y61_c01024{bottom:263.677467pt;}
.y32_c01024{bottom:263.678627pt;}
.y60_c01024{bottom:280.637880pt;}
.y31_c01024{bottom:280.639013pt;}
.y5f_c01024{bottom:297.598267pt;}
.y30_c01024{bottom:297.599427pt;}
.y5e_c01024{bottom:314.879293pt;}
.y2f_c01024{bottom:314.880427pt;}
.y2e_c01024{bottom:332.159200pt;}
.y5d_c01024{bottom:332.478840pt;}
.y2c_c01024{bottom:349.438640pt;}
.y5c_c01024{bottom:349.439253pt;}
.y2d_c01024{bottom:349.439987pt;}
.y2b_c01024{bottom:366.078253pt;}
.y5b_c01024{bottom:366.078853pt;}
.y2a_c01024{bottom:383.359267pt;}
.y5a_c01024{bottom:383.359867pt;}
.y29_c01024{bottom:400.319667pt;}
.y59_c01024{bottom:400.320267pt;}
.y28_c01024{bottom:417.598427pt;}
.y58_c01024{bottom:417.599040pt;}
.y57_c01024{bottom:434.557440pt;}
.y27_c01024{bottom:434.558840pt;}
.y56_c01024{bottom:451.838440pt;}
.y25_c01024{bottom:451.839107pt;}
.y26_c01024{bottom:451.839840pt;}
.y55_c01024{bottom:468.478053pt;}
.y24_c01024{bottom:468.478720pt;}
.y23_c01024{bottom:485.759720pt;}
.y54_c01024{bottom:486.077613pt;}
.y53_c01024{bottom:502.718427pt;}
.y22_c01024{bottom:502.719720pt;}
.y21_c01024{bottom:519.679733pt;}
.y20_c01024{bottom:519.680413pt;}
.y52_c01024{bottom:519.997187pt;}
.y51_c01024{bottom:536.957600pt;}
.y1f_c01024{bottom:536.959187pt;}
.y50_c01024{bottom:553.917987pt;}
.y1e_c01024{bottom:553.919573pt;}
.y1d_c01024{bottom:571.200600pt;}
.y4f_c01024{bottom:571.517560pt;}
.y4e_c01024{bottom:588.477947pt;}
.y1c_c01024{bottom:588.479373pt;}
.y4d_c01024{bottom:605.118773pt;}
.y1b_c01024{bottom:605.120173pt;}
.y4c_c01024{bottom:622.397547pt;}
.y1a_c01024{bottom:622.398947pt;}
.y19_c01024{bottom:639.039773pt;}
.y4b_c01024{bottom:639.357933pt;}
.y4a_c01024{bottom:656.638960pt;}
.y18_c01024{bottom:656.639320pt;}
.y49_c01024{bottom:673.278560pt;}
.y17_c01024{bottom:673.278933pt;}
.y48_c01024{bottom:690.559573pt;}
.y16_c01024{bottom:690.559960pt;}
.y47_c01024{bottom:707.520000pt;}
.y15_c01024{bottom:707.520347pt;}
.y46_c01024{bottom:725.119547pt;}
.y14_c01024{bottom:725.119920pt;}
.y13_c01024{bottom:742.398680pt;}
.y45_c01024{bottom:742.398760pt;}
.y12_c01024{bottom:759.679693pt;}
.y44_c01024{bottom:759.679787pt;}
.y11_c01024{bottom:776.639573pt;}
.y10_c01024{bottom:776.640173pt;}
.yf_c01024{bottom:793.918947pt;}
.yd_c01024{bottom:810.559227pt;}
.ye_c01024{bottom:810.559573pt;}
.y43_c01024{bottom:810.560187pt;}
.y42_c01024{bottom:827.838947pt;}
.yc_c01024{bottom:828.158787pt;}
.y41_c01024{bottom:844.479413pt;}
.yb_c01024{bottom:844.798400pt;}
.y40_c01024{bottom:861.758600pt;}
.ya_c01024{bottom:861.758787pt;}
.y3f_c01024{bottom:878.399413pt;}
.y9_c01024{bottom:878.720213pt;}
.y8_c01024{bottom:878.721360pt;}
.y3e_c01024{bottom:895.999080pt;}
.y7_c01024{bottom:896.000120pt;}
.y3d_c01024{bottom:912.959467pt;}
.y6_c01024{bottom:912.960533pt;}
.y3c_c01024{bottom:930.238693pt;}
.y5_c01024{bottom:930.239293pt;}
.y3b_c01024{bottom:947.200120pt;}
.y4_c01024{bottom:947.200720pt;}
.y3a_c01024{bottom:964.160080pt;}
.y3_c01024{bottom:964.479493pt;}
.y39_c01024{bottom:981.438840pt;}
.y2_c01024{bottom:981.439907pt;}
.y1_c01024{bottom:1015.680093pt;}
.ha_c01024{height:38.937500pt;}
.hb_c01024{height:40.328125pt;}
.hc_c01024{height:41.023438pt;}
.h8_c01024{height:41.718750pt;}
.h2_c01024{height:43.109375pt;}
.h1_c01024{height:44.802083pt;}
.hd_c01024{height:45.460938pt;}
.h4_c01024{height:46.119792pt;}
.h3_c01024{height:46.778646pt;}
.h6_c01024{height:47.739909pt;}
.h9_c01024{height:48.755208pt;}
.h5_c01024{height:49.414063pt;}
.h7_c01024{height:50.731771pt;}
.h0_c01024{height:1122.666667pt;}
.w0_c01024{width:793.333333pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:121.918947pt;}
.x6_c01024{left:184.960000pt;}
.x4_c01024{left:185.919000pt;}
.xb_c01024{left:207.999067pt;}
.xc_c01024{left:219.518533pt;}
.x5_c01024{left:225.919867pt;}
.x8_c01024{left:231.039587pt;}
.x9_c01024{left:236.799333pt;}
.xa_c01024{left:248.318787pt;}
.x7_c01024{left:260.159200pt;}
.xf_c01024{left:363.839720pt;}
.xd_c01024{left:364.798013pt;}
.x10_c01024{left:392.639613pt;}
.xe_c01024{left:393.599040pt;}
.x2_c01024{left:618.559573pt;}
.x3_c01024{left:665.279293pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_b7667150937e8b32c73d35e9.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_b1b26e2bd39821ae81abe2fe.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01025;src:url('chunks/assets/font_e0da50b3720c9dc717fd42eb.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01025;src:url('chunks/assets/font_adc016824e4af61219cb8c8e.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01025;src:url('chunks/assets/font_bb0105e012f7be1eee255ee7.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.364746;font-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_c01025{transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166185,0.000000,0.000000,0.250000,0,0);}
.mb_c01025{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m6_c01025{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.mc_c01025{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m1_c01025{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m7_c01025{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m4_c01025{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m0_c01025{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m8_c01025{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m3_c01025{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.ma_c01025{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m9_c01025{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m5_c01025{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls7_c01025{letter-spacing:-28.208948px;}
.lsb_c01025{letter-spacing:-12.947513px;}
.lsf_c01025{letter-spacing:-11.427488px;}
.ls1a_c01025{letter-spacing:-10.666500px;}
.ls11_c01025{letter-spacing:-9.140625px;}
.ls6_c01025{letter-spacing:-8.420003px;}
.lsa_c01025{letter-spacing:-8.380613px;}
.ls15_c01025{letter-spacing:-6.853763px;}
.lsc_c01025{letter-spacing:-6.093750px;}
.lsd_c01025{letter-spacing:-5.333738px;}
.ls4_c01025{letter-spacing:-5.053425px;}
.ls17_c01025{letter-spacing:-4.832850px;}
.ls19_c01025{letter-spacing:-4.572750px;}
.ls13_c01025{letter-spacing:-4.308150px;}
.lse_c01025{letter-spacing:-4.210275px;}
.ls14_c01025{letter-spacing:-4.140300px;}
.ls8_c01025{letter-spacing:-4.079250px;}
.ls16_c01025{letter-spacing:-3.929250px;}
.ls10_c01025{letter-spacing:-3.806888px;}
.ls1_c01025{letter-spacing:-3.366578px;}
.ls12_c01025{letter-spacing:-3.046875px;}
.ls3_c01025{letter-spacing:-2.529450px;}
.ls18_c01025{letter-spacing:-2.286863px;}
.ls1b_c01025{letter-spacing:-1.842750px;}
.ls5_c01025{letter-spacing:-1.686848px;}
.ls2_c01025{letter-spacing:0.000000px;}
.ls9_c01025{letter-spacing:3.402825px;}
.ls0_c01025{letter-spacing:24.429450px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01025{word-spacing:0.000000px;}
._1a_c01025{margin-left:-27.905755px;}
._e_c01025{margin-left:-18.473551px;}
._8_c01025{margin-left:-15.315125px;}
._a_c01025{margin-left:-13.189999px;}
._6_c01025{margin-left:-11.598400px;}
._7_c01025{margin-left:-10.484844px;}
._4_c01025{margin-left:-8.104617px;}
._c_c01025{margin-left:-6.899881px;}
._5_c01025{margin-left:-5.210549px;}
._b_c01025{margin-left:-3.355981px;}
._2_c01025{margin-left:-1.862300px;}
._9_c01025{width:1.200507px;}
._d_c01025{width:3.536210px;}
._1b_c01025{width:11.777086px;}
._17_c01025{width:18.647362px;}
._16_c01025{width:21.034647px;}
._1e_c01025{width:22.515592px;}
._10_c01025{width:24.270254px;}
._1c_c01025{width:25.998972px;}
._f_c01025{width:27.618764px;}
._12_c01025{width:30.993554px;}
._19_c01025{width:32.609302px;}
._18_c01025{width:34.010133px;}
._14_c01025{width:35.477081px;}
._1d_c01025{width:40.084992px;}
._13_c01025{width:41.557181px;}
._11_c01025{width:43.019620px;}
._15_c01025{width:44.477550px;}
._0_c01025{width:58.089893px;}
._3_c01025{width:141.855616px;}
._1_c01025{width:694.417961px;}
.fc0_c01025{color:transparent;}
.fs8_c01025{font-size:43.500000px;}
.fs4_c01025{font-size:44.250000px;}
.fs1_c01025{font-size:48.000000px;}
.fs5_c01025{font-size:48.750000px;}
.fs6_c01025{font-size:51.000000px;}
.fs9_c01025{font-size:52.500000px;}
.fs0_c01025{font-size:54.750000px;}
.fs3_c01025{font-size:55.500000px;}
.fs7_c01025{font-size:57.750000px;}
.fs2_c01025{font-size:129.750000px;}
.y0_c01025{bottom:0.000000px;}
.y63_c01025{bottom:181.079595px;}
.y6c_c01025{bottom:181.079790px;}
.y34_c01025{bottom:181.439250px;}
.y62_c01025{bottom:200.879835px;}
.y6b_c01025{bottom:200.880045px;}
.y33_c01025{bottom:201.239250px;}
.y32_c01025{bottom:201.239685px;}
.y61_c01025{bottom:219.960180px;}
.y6a_c01025{bottom:219.960390px;}
.y31_c01025{bottom:220.320030px;}
.y60_c01025{bottom:239.040510px;}
.y69_c01025{bottom:239.040735px;}
.y30_c01025{bottom:239.400345px;}
.y5f_c01025{bottom:257.759535px;}
.y68_c01025{bottom:257.759745px;}
.y2f_c01025{bottom:258.120825px;}
.y5e_c01025{bottom:277.199940px;}
.y67_c01025{bottom:277.200135px;}
.y2e_c01025{bottom:277.559790px;}
.y5d_c01025{bottom:295.918950px;}
.y2d_c01025{bottom:296.280255px;}
.y66_c01025{bottom:296.280480px;}
.y2c_c01025{bottom:315.719190px;}
.y5c_c01025{bottom:315.719220px;}
.y65_c01025{bottom:315.719415px;}
.y2b_c01025{bottom:334.439670px;}
.y5b_c01025{bottom:334.439685px;}
.y64_c01025{bottom:334.439895px;}
.y2a_c01025{bottom:353.878620px;}
.y5a_c01025{bottom:353.878950px;}
.y29_c01025{bottom:372.958950px;}
.y28_c01025{bottom:392.399340px;}
.y59_c01025{bottom:392.399820px;}
.y27_c01025{bottom:411.479685px;}
.y25_c01025{bottom:430.558455px;}
.y26_c01025{bottom:430.559685px;}
.y58_c01025{bottom:449.278800px;}
.y24_c01025{bottom:449.638800px;}
.y57_c01025{bottom:469.078770px;}
.y23_c01025{bottom:469.439055px;}
.y56_c01025{bottom:488.519670px;}
.y22_c01025{bottom:488.878005px;}
.y21_c01025{bottom:507.958335px;}
.y55_c01025{bottom:507.958920px;}
.y54_c01025{bottom:526.318770px;}
.y20_c01025{bottom:526.678800px;}
.y1f_c01025{bottom:546.117765px;}
.y53_c01025{bottom:546.118785px;}
.y1e_c01025{bottom:565.558155px;}
.y52_c01025{bottom:565.559685px;}
.y1d_c01025{bottom:584.638485px;}
.y51_c01025{bottom:584.639700px;}
.y1c_c01025{bottom:603.718830px;}
.y50_c01025{bottom:603.719520px;}
.y1b_c01025{bottom:622.799175px;}
.y4f_c01025{bottom:622.799520px;}
.y1a_c01025{bottom:641.518185px;}
.y4e_c01025{bottom:641.879520px;}
.y19_c01025{bottom:660.599985px;}
.y4d_c01025{bottom:660.600135px;}
.y18_c01025{bottom:678.599070px;}
.y4c_c01025{bottom:680.039385px;}
.y17_c01025{bottom:699.476160px;}
.y4b_c01025{bottom:699.478635px;}
.y16_c01025{bottom:718.557975px;}
.y4a_c01025{bottom:718.560285px;}
.y49_c01025{bottom:737.999355px;}
.y15_c01025{bottom:738.356985px;}
.y14_c01025{bottom:757.077465px;}
.y48_c01025{bottom:757.079355px;}
.y13_c01025{bottom:776.516400px;}
.y47_c01025{bottom:776.518620px;}
.y12_c01025{bottom:795.598200px;}
.y46_c01025{bottom:795.600135px;}
.y11_c01025{bottom:815.397195px;}
.y45_c01025{bottom:815.398590px;}
.y10_c01025{bottom:834.837615px;}
.y44_c01025{bottom:834.839535px;}
.yf_c01025{bottom:853.917945px;}
.y43_c01025{bottom:853.919490px;}
.ye_c01025{bottom:872.998290px;}
.y42_c01025{bottom:872.999355px;}
.y41_c01025{bottom:892.079400px;}
.yd_c01025{bottom:892.437225px;}
.yc_c01025{bottom:911.157690px;}
.y40_c01025{bottom:911.159370px;}
.yb_c01025{bottom:930.238035px;}
.y3f_c01025{bottom:930.239220px;}
.ya_c01025{bottom:949.318380px;}
.y3e_c01025{bottom:949.319190px;}
.y3d_c01025{bottom:968.760135px;}
.y9_c01025{bottom:969.118635px;}
.y8_c01025{bottom:987.839100px;}
.y3c_c01025{bottom:987.840090px;}
.y7_c01025{bottom:1007.639370px;}
.y3b_c01025{bottom:1007.640105px;}
.y6_c01025{bottom:1026.719700px;}
.y3a_c01025{bottom:1026.720150px;}
.y39_c01025{bottom:1046.518620px;}
.y5_c01025{bottom:1046.518710px;}
.y4_c01025{bottom:1065.239175px;}
.y38_c01025{bottom:1065.239220px;}
.y37_c01025{bottom:1084.319190px;}
.y3_c01025{bottom:1084.319520px;}
.y35_c01025{bottom:1103.399190px;}
.y36_c01025{bottom:1103.399235px;}
.y2_c01025{bottom:1103.399865px;}
.y1_c01025{bottom:1142.279205px;}
.h9_c01025{height:45.369141px;}
.h5_c01025{height:46.151367px;}
.h6_c01025{height:48.178711px;}
.h2_c01025{height:50.062500px;}
.h7_c01025{height:50.402344px;}
.hb_c01025{height:51.884766px;}
.h1_c01025{height:53.707397px;}
.h4_c01025{height:54.443115px;}
.ha_c01025{height:54.849609px;}
.h8_c01025{height:56.650269px;}
.h3_c01025{height:135.325195px;}
.h0_c01025{height:1263.000000px;}
.w0_c01025{width:892.500000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:136.799565px;}
.x7_c01025{left:206.278650px;}
.x5_c01025{left:207.359715px;}
.x4_c01025{left:208.439445px;}
.x9_c01025{left:239.040000px;}
.x8_c01025{left:252.358635px;}
.x6_c01025{left:265.319850px;}
.x11_c01025{left:407.519670px;}
.xc_c01025{left:408.599070px;}
.xa_c01025{left:409.678665px;}
.x10_c01025{left:440.279250px;}
.xd_c01025{left:441.358665px;}
.xe_c01025{left:486.000000px;}
.xb_c01025{left:487.079400px;}
.xf_c01025{left:531.719100px;}
.x2_c01025{left:694.798560px;}
.x3_c01025{left:746.998950px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls7_c01025{letter-spacing:-25.074620pt;}
.lsb_c01025{letter-spacing:-11.508900pt;}
.lsf_c01025{letter-spacing:-10.157767pt;}
.ls1a_c01025{letter-spacing:-9.481333pt;}
.ls11_c01025{letter-spacing:-8.125000pt;}
.ls6_c01025{letter-spacing:-7.484447pt;}
.lsa_c01025{letter-spacing:-7.449433pt;}
.ls15_c01025{letter-spacing:-6.092233pt;}
.lsc_c01025{letter-spacing:-5.416667pt;}
.lsd_c01025{letter-spacing:-4.741100pt;}
.ls4_c01025{letter-spacing:-4.491933pt;}
.ls17_c01025{letter-spacing:-4.295867pt;}
.ls19_c01025{letter-spacing:-4.064667pt;}
.ls13_c01025{letter-spacing:-3.829467pt;}
.lse_c01025{letter-spacing:-3.742467pt;}
.ls14_c01025{letter-spacing:-3.680267pt;}
.ls8_c01025{letter-spacing:-3.626000pt;}
.ls16_c01025{letter-spacing:-3.492667pt;}
.ls10_c01025{letter-spacing:-3.383900pt;}
.ls1_c01025{letter-spacing:-2.992513pt;}
.ls12_c01025{letter-spacing:-2.708333pt;}
.ls3_c01025{letter-spacing:-2.248400pt;}
.ls18_c01025{letter-spacing:-2.032767pt;}
.ls1b_c01025{letter-spacing:-1.638000pt;}
.ls5_c01025{letter-spacing:-1.499420pt;}
.ls2_c01025{letter-spacing:0.000000pt;}
.ls9_c01025{letter-spacing:3.024733pt;}
.ls0_c01025{letter-spacing:21.715067pt;}
.ws0_c01025{word-spacing:0.000000pt;}
._1a_c01025{margin-left:-24.805115pt;}
._e_c01025{margin-left:-16.420934pt;}
._8_c01025{margin-left:-13.613444pt;}
._a_c01025{margin-left:-11.724444pt;}
._6_c01025{margin-left:-10.309689pt;}
._7_c01025{margin-left:-9.319861pt;}
._4_c01025{margin-left:-7.204104pt;}
._c_c01025{margin-left:-6.133228pt;}
._5_c01025{margin-left:-4.631599pt;}
._b_c01025{margin-left:-2.983094pt;}
._2_c01025{margin-left:-1.655378pt;}
._9_c01025{width:1.067118pt;}
._d_c01025{width:3.143298pt;}
._1b_c01025{width:10.468521pt;}
._17_c01025{width:16.575433pt;}
._16_c01025{width:18.697464pt;}
._1e_c01025{width:20.013860pt;}
._10_c01025{width:21.573559pt;}
._1c_c01025{width:23.110198pt;}
._f_c01025{width:24.550012pt;}
._12_c01025{width:27.549826pt;}
._19_c01025{width:28.986046pt;}
._18_c01025{width:30.231229pt;}
._14_c01025{width:31.535183pt;}
._1d_c01025{width:35.631104pt;}
._13_c01025{width:36.939717pt;}
._11_c01025{width:38.239663pt;}
._15_c01025{width:39.535600pt;}
._0_c01025{width:51.635461pt;}
._3_c01025{width:126.093881pt;}
._1_c01025{width:617.260410pt;}
.fs8_c01025{font-size:38.666667pt;}
.fs4_c01025{font-size:39.333333pt;}
.fs1_c01025{font-size:42.666667pt;}
.fs5_c01025{font-size:43.333333pt;}
.fs6_c01025{font-size:45.333333pt;}
.fs9_c01025{font-size:46.666667pt;}
.fs0_c01025{font-size:48.666667pt;}
.fs3_c01025{font-size:49.333333pt;}
.fs7_c01025{font-size:51.333333pt;}
.fs2_c01025{font-size:115.333333pt;}
.y0_c01025{bottom:0.000000pt;}
.y63_c01025{bottom:160.959640pt;}
.y6c_c01025{bottom:160.959813pt;}
.y34_c01025{bottom:161.279333pt;}
.y62_c01025{bottom:178.559853pt;}
.y6b_c01025{bottom:178.560040pt;}
.y33_c01025{bottom:178.879333pt;}
.y32_c01025{bottom:178.879720pt;}
.y61_c01025{bottom:195.520160pt;}
.y6a_c01025{bottom:195.520347pt;}
.y31_c01025{bottom:195.840027pt;}
.y60_c01025{bottom:212.480453pt;}
.y69_c01025{bottom:212.480653pt;}
.y30_c01025{bottom:212.800307pt;}
.y5f_c01025{bottom:229.119587pt;}
.y68_c01025{bottom:229.119773pt;}
.y2f_c01025{bottom:229.440733pt;}
.y5e_c01025{bottom:246.399947pt;}
.y67_c01025{bottom:246.400120pt;}
.y2e_c01025{bottom:246.719813pt;}
.y5d_c01025{bottom:263.039067pt;}
.y2d_c01025{bottom:263.360227pt;}
.y66_c01025{bottom:263.360427pt;}
.y2c_c01025{bottom:280.639280pt;}
.y5c_c01025{bottom:280.639307pt;}
.y65_c01025{bottom:280.639480pt;}
.y2b_c01025{bottom:297.279707pt;}
.y5b_c01025{bottom:297.279720pt;}
.y64_c01025{bottom:297.279907pt;}
.y2a_c01025{bottom:314.558773pt;}
.y5a_c01025{bottom:314.559067pt;}
.y29_c01025{bottom:331.519067pt;}
.y28_c01025{bottom:348.799413pt;}
.y59_c01025{bottom:348.799840pt;}
.y27_c01025{bottom:365.759720pt;}
.y25_c01025{bottom:382.718627pt;}
.y26_c01025{bottom:382.719720pt;}
.y58_c01025{bottom:399.358933pt;}
.y24_c01025{bottom:399.678933pt;}
.y57_c01025{bottom:416.958907pt;}
.y23_c01025{bottom:417.279160pt;}
.y56_c01025{bottom:434.239707pt;}
.y22_c01025{bottom:434.558227pt;}
.y21_c01025{bottom:451.518520pt;}
.y55_c01025{bottom:451.519040pt;}
.y54_c01025{bottom:467.838907pt;}
.y20_c01025{bottom:468.158933pt;}
.y1f_c01025{bottom:485.438013pt;}
.y53_c01025{bottom:485.438920pt;}
.y1e_c01025{bottom:502.718360pt;}
.y52_c01025{bottom:502.719720pt;}
.y1d_c01025{bottom:519.678653pt;}
.y51_c01025{bottom:519.679733pt;}
.y1c_c01025{bottom:536.638960pt;}
.y50_c01025{bottom:536.639573pt;}
.y1b_c01025{bottom:553.599267pt;}
.y4f_c01025{bottom:553.599573pt;}
.y1a_c01025{bottom:570.238387pt;}
.y4e_c01025{bottom:570.559573pt;}
.y19_c01025{bottom:587.199987pt;}
.y4d_c01025{bottom:587.200120pt;}
.y18_c01025{bottom:603.199173pt;}
.y4c_c01025{bottom:604.479453pt;}
.y17_c01025{bottom:621.756587pt;}
.y4b_c01025{bottom:621.758787pt;}
.y16_c01025{bottom:638.718200pt;}
.y4a_c01025{bottom:638.720253pt;}
.y49_c01025{bottom:655.999427pt;}
.y15_c01025{bottom:656.317320pt;}
.y14_c01025{bottom:672.957747pt;}
.y48_c01025{bottom:672.959427pt;}
.y13_c01025{bottom:690.236800pt;}
.y47_c01025{bottom:690.238773pt;}
.y12_c01025{bottom:707.198400pt;}
.y46_c01025{bottom:707.200120pt;}
.y11_c01025{bottom:724.797507pt;}
.y45_c01025{bottom:724.798747pt;}
.y10_c01025{bottom:742.077880pt;}
.y44_c01025{bottom:742.079587pt;}
.yf_c01025{bottom:759.038173pt;}
.y43_c01025{bottom:759.039547pt;}
.ye_c01025{bottom:775.998480pt;}
.y42_c01025{bottom:775.999427pt;}
.y41_c01025{bottom:792.959467pt;}
.yd_c01025{bottom:793.277533pt;}
.yc_c01025{bottom:809.917947pt;}
.y40_c01025{bottom:809.919440pt;}
.yb_c01025{bottom:826.878253pt;}
.y3f_c01025{bottom:826.879307pt;}
.ya_c01025{bottom:843.838560pt;}
.y3e_c01025{bottom:843.839280pt;}
.y3d_c01025{bottom:861.120120pt;}
.y9_c01025{bottom:861.438787pt;}
.y8_c01025{bottom:878.079200pt;}
.y3c_c01025{bottom:878.080080pt;}
.y7_c01025{bottom:895.679440pt;}
.y3b_c01025{bottom:895.680093pt;}
.y6_c01025{bottom:912.639733pt;}
.y3a_c01025{bottom:912.640133pt;}
.y39_c01025{bottom:930.238773pt;}
.y5_c01025{bottom:930.238853pt;}
.y4_c01025{bottom:946.879267pt;}
.y38_c01025{bottom:946.879307pt;}
.y37_c01025{bottom:963.839280pt;}
.y3_c01025{bottom:963.839573pt;}
.y35_c01025{bottom:980.799280pt;}
.y36_c01025{bottom:980.799320pt;}
.y2_c01025{bottom:980.799880pt;}
.y1_c01025{bottom:1015.359293pt;}
.h9_c01025{height:40.328125pt;}
.h5_c01025{height:41.023438pt;}
.h6_c01025{height:42.825521pt;}
.h2_c01025{height:44.500000pt;}
.h7_c01025{height:44.802083pt;}
.hb_c01025{height:46.119792pt;}
.h1_c01025{height:47.739909pt;}
.h4_c01025{height:48.393880pt;}
.ha_c01025{height:48.755208pt;}
.h8_c01025{height:50.355794pt;}
.h3_c01025{height:120.289062pt;}
.h0_c01025{height:1122.666667pt;}
.w0_c01025{width:793.333333pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:121.599613pt;}
.x7_c01025{left:183.358800pt;}
.x5_c01025{left:184.319747pt;}
.x4_c01025{left:185.279507pt;}
.x9_c01025{left:212.480000pt;}
.x8_c01025{left:224.318787pt;}
.x6_c01025{left:235.839867pt;}
.x11_c01025{left:362.239707pt;}
.xc_c01025{left:363.199173pt;}
.xa_c01025{left:364.158813pt;}
.x10_c01025{left:391.359333pt;}
.xd_c01025{left:392.318813pt;}
.xe_c01025{left:432.000000pt;}
.xb_c01025{left:432.959467pt;}
.xf_c01025{left:472.639200pt;}
.x2_c01025{left:617.598720pt;}
.x3_c01025{left:663.999067pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_5a18a42e5c35e3884ae6fe7d.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_6454f291dec08ddeffa11e44.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_23f4557805ccba7d5d76e5c4.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01026;src:url('chunks/assets/font_1009fe66f2062450401eb76c.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01026;src:url('chunks/assets/font_d0375c7f5555d985642104c6.woff2')format("woff");}.ff6_c01026{font-family:ff6_c01026;line-height:1.364746;font-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_c01026{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.m14_c01026{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m16_c01026{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m7_c01026{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.me_c01026{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m12_c01026{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.mb_c01026{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.md_c01026{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m4_c01026{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m5_c01026{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m9_c01026{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m6_c01026{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m2_c01026{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.mc_c01026{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m10_c01026{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.mf_c01026{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m18_c01026{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m3_c01026{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m13_c01026{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m0_c01026{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m15_c01026{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.ma_c01026{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m17_c01026{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m11_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls8_c01026{letter-spacing:-7.050300px;}
.ls1e_c01026{letter-spacing:-6.262200px;}
.lsa_c01026{letter-spacing:-5.861625px;}
.ls7_c01026{letter-spacing:-5.540400px;}
.ls12_c01026{letter-spacing:-5.479958px;}
.ls25_c01026{letter-spacing:-5.321700px;}
.ls1a_c01026{letter-spacing:-5.174400px;}
.ls1b_c01026{letter-spacing:-4.884330px;}
.ls26_c01026{letter-spacing:-4.828950px;}
.ls3_c01026{letter-spacing:-4.696650px;}
.ls16_c01026{letter-spacing:-4.308150px;}
.ls6_c01026{letter-spacing:-4.140300px;}
.ls15_c01026{letter-spacing:-4.097993px;}
.ls2_c01026{letter-spacing:-3.913875px;}
.ls13_c01026{letter-spacing:-3.805725px;}
.ls22_c01026{letter-spacing:-3.660660px;}
.ls10_c01026{letter-spacing:-3.412500px;}
.ls9_c01026{letter-spacing:-3.362745px;}
.lsb_c01026{letter-spacing:-3.317303px;}
.ls19_c01026{letter-spacing:-3.229800px;}
.ls21_c01026{letter-spacing:-3.151575px;}
.ls5_c01026{letter-spacing:-3.131633px;}
.ls18_c01026{letter-spacing:-2.668800px;}
.ls14_c01026{letter-spacing:-2.603505px;}
.ls11_c01026{letter-spacing:-2.508690px;}
.lse_c01026{letter-spacing:-2.348325px;}
.ls24_c01026{letter-spacing:-1.820955px;}
.lsd_c01026{letter-spacing:-1.784100px;}
.lsf_c01026{letter-spacing:-1.565550px;}
.lsc_c01026{letter-spacing:-0.782243px;}
.ls4_c01026{letter-spacing:0.000000px;}
.ls0_c01026{letter-spacing:1.500518px;}
.ls1_c01026{letter-spacing:2.247900px;}
.ls20_c01026{letter-spacing:2.653200px;}
.ls1f_c01026{letter-spacing:2.999708px;}
.ls1d_c01026{letter-spacing:3.747975px;}
.ls27_c01026{letter-spacing:4.500225px;}
.ls23_c01026{letter-spacing:5.426407px;}
.ls17_c01026{letter-spacing:20.362800px;}
.ls1c_c01026{letter-spacing:21.145043px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01026{word-spacing:0.000000px;}
._a_c01026{margin-left:-16.044476px;}
._c_c01026{margin-left:-14.269778px;}
._6_c01026{margin-left:-12.307860px;}
._8_c01026{margin-left:-9.558438px;}
._10_c01026{margin-left:-8.531183px;}
._4_c01026{margin-left:-7.257787px;}
._5_c01026{margin-left:-4.866674px;}
._7_c01026{margin-left:-3.355314px;}
._2_c01026{margin-left:-2.287119px;}
._f_c01026{width:2.642641px;}
._9_c01026{width:7.694374px;}
._b_c01026{width:9.009712px;}
._13_c01026{width:22.651320px;}
._e_c01026{width:28.517130px;}
._12_c01026{width:32.567575px;}
._0_c01026{width:48.377813px;}
._11_c01026{width:60.614914px;}
._3_c01026{width:133.819067px;}
._d_c01026{width:619.767102px;}
._1_c01026{width:648.196024px;}
.fc0_c01026{color:transparent;}
.fsa_c01026{font-size:42.000000px;}
.fs1_c01026{font-size:44.250000px;}
.fse_c01026{font-size:45.750000px;}
.fsc_c01026{font-size:47.250000px;}
.fs9_c01026{font-size:48.000000px;}
.fsb_c01026{font-size:49.500000px;}
.fs7_c01026{font-size:51.000000px;}
.fs8_c01026{font-size:52.500000px;}
.fs0_c01026{font-size:53.250000px;}
.fsd_c01026{font-size:54.000000px;}
.fs5_c01026{font-size:54.750000px;}
.fs2_c01026{font-size:55.500000px;}
.fs3_c01026{font-size:57.000000px;}
.fs4_c01026{font-size:57.750000px;}
.fs6_c01026{font-size:68.250000px;}
.y0_c01026{bottom:0.000000px;}
.y5c_c01026{bottom:187.198785px;}
.y31_c01026{bottom:187.560945px;}
.y88_c01026{bottom:187.571940px;}
.y5b_c01026{bottom:206.639700px;}
.y87_c01026{bottom:206.651385px;}
.y30_c01026{bottom:206.999925px;}
.y5a_c01026{bottom:225.720960px;}
.y2f_c01026{bottom:226.079355px;}
.y86_c01026{bottom:226.090365px;}
.y59_c01026{bottom:244.800390px;}
.y2e_c01026{bottom:245.158785px;}
.y85_c01026{bottom:245.169795px;}
.y2d_c01026{bottom:264.238785px;}
.y58_c01026{bottom:264.239370px;}
.y2c_c01026{bottom:264.242595px;}
.y84_c01026{bottom:264.249225px;}
.y57_c01026{bottom:283.318800px;}
.y83_c01026{bottom:283.328655px;}
.y2b_c01026{bottom:283.682805px;}
.y56_c01026{bottom:302.398635px;}
.y2a_c01026{bottom:302.401470px;}
.y82_c01026{bottom:302.408115px;}
.y55_c01026{bottom:321.839535px;}
.y29_c01026{bottom:321.841665px;}
.y81_c01026{bottom:321.848310px;}
.y54_c01026{bottom:340.559715px;}
.y28_c01026{bottom:340.560330px;}
.y80_c01026{bottom:340.566975px;}
.y53_c01026{bottom:359.639145px;}
.y27_c01026{bottom:359.639790px;}
.y7f_c01026{bottom:359.646405px;}
.y52_c01026{bottom:378.360465px;}
.y26_c01026{bottom:378.719220px;}
.y7e_c01026{bottom:378.725850px;}
.y25_c01026{bottom:398.159415px;}
.y51_c01026{bottom:398.160210px;}
.y7d_c01026{bottom:398.166045px;}
.y50_c01026{bottom:417.239640px;}
.y24_c01026{bottom:417.598530px;}
.y23_c01026{bottom:417.600315px;}
.y7c_c01026{bottom:417.605025px;}
.y7b_c01026{bottom:436.684455px;}
.y4f_c01026{bottom:437.039385px;}
.y22_c01026{bottom:437.040510px;}
.y4e_c01026{bottom:455.758530px;}
.y21_c01026{bottom:456.119940px;}
.y7a_c01026{bottom:456.124650px;}
.y4d_c01026{bottom:475.559790px;}
.y20_c01026{bottom:475.919685px;}
.y79_c01026{bottom:475.924395px;}
.y4c_c01026{bottom:494.999970px;}
.y78_c01026{bottom:495.003840px;}
.y1f_c01026{bottom:495.358665px;}
.y4b_c01026{bottom:514.079400px;}
.y1e_c01026{bottom:514.441170px;}
.y77_c01026{bottom:514.442820px;}
.y4a_c01026{bottom:532.800150px;}
.y1d_c01026{bottom:532.803150px;}
.y76_c01026{bottom:532.804785px;}
.y49_c01026{bottom:552.245640px;}
.y1c_c01026{bottom:552.601485px;}
.y75_c01026{bottom:552.603105px;}
.y48_c01026{bottom:570.966960px;}
.y1b_c01026{bottom:571.322775px;}
.y74_c01026{bottom:571.324425px;}
.y47_c01026{bottom:590.405940px;}
.y1a_c01026{bottom:590.761755px;}
.y73_c01026{bottom:590.763405px;}
.y46_c01026{bottom:609.485370px;}
.y19_c01026{bottom:609.843840px;}
.y72_c01026{bottom:609.845490px;}
.y18_c01026{bottom:629.282820px;}
.y71_c01026{bottom:629.284470px;}
.y45_c01026{bottom:629.285115px;}
.y44_c01026{bottom:648.364545px;}
.y17_c01026{bottom:648.721800px;}
.y70_c01026{bottom:648.723450px;}
.y16_c01026{bottom:667.443120px;}
.y43_c01026{bottom:667.443975px;}
.y6f_c01026{bottom:667.805505px;}
.y15_c01026{bottom:686.522550px;}
.y42_c01026{bottom:686.523420px;}
.y6e_c01026{bottom:686.884935px;}
.y41_c01026{bottom:705.602850px;}
.y14_c01026{bottom:705.962745px;}
.y6d_c01026{bottom:705.964395px;}
.y13_c01026{bottom:724.681410px;}
.y40_c01026{bottom:724.682280px;}
.y6c_c01026{bottom:724.683060px;}
.y12_c01026{bottom:744.121635px;}
.y3f_c01026{bottom:744.122475px;}
.y6b_c01026{bottom:744.482805px;}
.y3e_c01026{bottom:763.201920px;}
.y11_c01026{bottom:763.560615px;}
.y6a_c01026{bottom:763.562235px;}
.y3d_c01026{bottom:782.640900px;}
.y10_c01026{bottom:783.000795px;}
.y69_c01026{bottom:783.002430px;}
.y3c_c01026{bottom:801.720330px;}
.yf_c01026{bottom:802.080225px;}
.y68_c01026{bottom:802.081875px;}
.ye_c01026{bottom:821.879970px;}
.yd_c01026{bottom:821.880585px;}
.y67_c01026{bottom:821.881620px;}
.y3b_c01026{bottom:821.882055px;}
.y3a_c01026{bottom:840.600720px;}
.yc_c01026{bottom:840.960015px;}
.y66_c01026{bottom:840.961050px;}
.y39_c01026{bottom:860.040945px;}
.yb_c01026{bottom:860.399760px;}
.y65_c01026{bottom:860.400030px;}
.y38_c01026{bottom:879.120375px;}
.y64_c01026{bottom:879.121350px;}
.ya_c01026{bottom:879.479190px;}
.y37_c01026{bottom:898.199805px;}
.y9_c01026{bottom:898.559670px;}
.y63_c01026{bottom:898.560330px;}
.y36_c01026{bottom:917.279850px;}
.y62_c01026{bottom:917.281635px;}
.y8_c01026{bottom:917.639100px;}
.y7_c01026{bottom:936.719055px;}
.y61_c01026{bottom:936.720615px;}
.y35_c01026{bottom:955.798920px;}
.y6_c01026{bottom:956.159820px;}
.y5_c01026{bottom:956.160285px;}
.y60_c01026{bottom:956.160810px;}
.y34_c01026{bottom:975.601185px;}
.y4_c01026{bottom:975.960015px;}
.y5f_c01026{bottom:975.960555px;}
.y33_c01026{bottom:994.680615px;}
.y5e_c01026{bottom:995.040000px;}
.y3_c01026{bottom:995.040510px;}
.y32_c01026{bottom:1013.760045px;}
.y5d_c01026{bottom:1014.119430px;}
.y2_c01026{bottom:1014.119940px;}
.y8f_c01026{bottom:1033.199805px;}
.y8e_c01026{bottom:1053.000000px;}
.y8c_c01026{bottom:1072.079955px;}
.y8d_c01026{bottom:1076.758575px;}
.y8b_c01026{bottom:1090.798920px;}
.y8a_c01026{bottom:1110.239775px;}
.y89_c01026{bottom:1110.251955px;}
.y1_c01026{bottom:1149.119940px;}
.hb_c01026{height:43.804688px;}
.h2_c01026{height:46.151367px;}
.hf_c01026{height:47.715820px;}
.hd_c01026{height:49.280273px;}
.hc_c01026{height:49.886719px;}
.ha_c01026{height:50.062500px;}
.h8_c01026{height:50.402344px;}
.h9_c01026{height:51.500244px;}
.h1_c01026{height:52.235962px;}
.he_c01026{height:53.367188px;}
.h6_c01026{height:53.707397px;}
.h3_c01026{height:54.443115px;}
.h10_c01026{height:54.849609px;}
.h4_c01026{height:55.914551px;}
.h5_c01026{height:56.650269px;}
.h7_c01026{height:66.950317px;}
.h0_c01026{height:1263.000000px;}
.w0_c01026{width:892.500000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:137.519685px;}
.xc_c01026{left:207.719085px;}
.x4_c01026{left:208.798515px;}
.x9_c01026{left:240.839535px;}
.x5_c01026{left:254.159850px;}
.xa_c01026{left:260.278800px;}
.x8_c01026{left:267.119385px;}
.x6_c01026{left:273.599100px;}
.xb_c01026{left:279.358635px;}
.x7_c01026{left:286.558635px;}
.x11_c01026{left:308.159850px;}
.xd_c01026{left:409.679055px;}
.xe_c01026{left:442.079040px;}
.xf_c01026{left:487.799565px;}
.x10_c01026{left:513.718500px;}
.x2_c01026{left:695.879520px;}
.x3_c01026{left:748.080000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls8_c01026{letter-spacing:-6.266933pt;}
.ls1e_c01026{letter-spacing:-5.566400pt;}
.lsa_c01026{letter-spacing:-5.210333pt;}
.ls7_c01026{letter-spacing:-4.924800pt;}
.ls12_c01026{letter-spacing:-4.871073pt;}
.ls25_c01026{letter-spacing:-4.730400pt;}
.ls1a_c01026{letter-spacing:-4.599467pt;}
.ls1b_c01026{letter-spacing:-4.341627pt;}
.ls26_c01026{letter-spacing:-4.292400pt;}
.ls3_c01026{letter-spacing:-4.174800pt;}
.ls16_c01026{letter-spacing:-3.829467pt;}
.ls6_c01026{letter-spacing:-3.680267pt;}
.ls15_c01026{letter-spacing:-3.642660pt;}
.ls2_c01026{letter-spacing:-3.479000pt;}
.ls13_c01026{letter-spacing:-3.382867pt;}
.ls22_c01026{letter-spacing:-3.253920pt;}
.ls10_c01026{letter-spacing:-3.033333pt;}
.ls9_c01026{letter-spacing:-2.989107pt;}
.lsb_c01026{letter-spacing:-2.948713pt;}
.ls19_c01026{letter-spacing:-2.870933pt;}
.ls21_c01026{letter-spacing:-2.801400pt;}
.ls5_c01026{letter-spacing:-2.783673pt;}
.ls18_c01026{letter-spacing:-2.372267pt;}
.ls14_c01026{letter-spacing:-2.314227pt;}
.ls11_c01026{letter-spacing:-2.229947pt;}
.lse_c01026{letter-spacing:-2.087400pt;}
.ls24_c01026{letter-spacing:-1.618627pt;}
.lsd_c01026{letter-spacing:-1.585867pt;}
.lsf_c01026{letter-spacing:-1.391600pt;}
.lsc_c01026{letter-spacing:-0.695327pt;}
.ls4_c01026{letter-spacing:0.000000pt;}
.ls0_c01026{letter-spacing:1.333793pt;}
.ls1_c01026{letter-spacing:1.998133pt;}
.ls20_c01026{letter-spacing:2.358400pt;}
.ls1f_c01026{letter-spacing:2.666407pt;}
.ls1d_c01026{letter-spacing:3.331533pt;}
.ls27_c01026{letter-spacing:4.000200pt;}
.ls23_c01026{letter-spacing:4.823473pt;}
.ls17_c01026{letter-spacing:18.100267pt;}
.ls1c_c01026{letter-spacing:18.795593pt;}
.ws0_c01026{word-spacing:0.000000pt;}
._a_c01026{margin-left:-14.261756pt;}
._c_c01026{margin-left:-12.684247pt;}
._6_c01026{margin-left:-10.940320pt;}
._8_c01026{margin-left:-8.496389pt;}
._10_c01026{margin-left:-7.583273pt;}
._4_c01026{margin-left:-6.451366pt;}
._5_c01026{margin-left:-4.325933pt;}
._7_c01026{margin-left:-2.982501pt;}
._2_c01026{margin-left:-2.032995pt;}
._f_c01026{width:2.349014pt;}
._9_c01026{width:6.839444pt;}
._b_c01026{width:8.008633pt;}
._13_c01026{width:20.134507pt;}
._e_c01026{width:25.348560pt;}
._12_c01026{width:28.948955pt;}
._0_c01026{width:43.002500pt;}
._11_c01026{width:53.879923pt;}
._3_c01026{width:118.950282pt;}
._d_c01026{width:550.904091pt;}
._1_c01026{width:576.174244pt;}
.fsa_c01026{font-size:37.333333pt;}
.fs1_c01026{font-size:39.333333pt;}
.fse_c01026{font-size:40.666667pt;}
.fsc_c01026{font-size:42.000000pt;}
.fs9_c01026{font-size:42.666667pt;}
.fsb_c01026{font-size:44.000000pt;}
.fs7_c01026{font-size:45.333333pt;}
.fs8_c01026{font-size:46.666667pt;}
.fs0_c01026{font-size:47.333333pt;}
.fsd_c01026{font-size:48.000000pt;}
.fs5_c01026{font-size:48.666667pt;}
.fs2_c01026{font-size:49.333333pt;}
.fs3_c01026{font-size:50.666667pt;}
.fs4_c01026{font-size:51.333333pt;}
.fs6_c01026{font-size:60.666667pt;}
.y0_c01026{bottom:0.000000pt;}
.y5c_c01026{bottom:166.398920pt;}
.y31_c01026{bottom:166.720840pt;}
.y88_c01026{bottom:166.730613pt;}
.y5b_c01026{bottom:183.679733pt;}
.y87_c01026{bottom:183.690120pt;}
.y30_c01026{bottom:183.999933pt;}
.y5a_c01026{bottom:200.640853pt;}
.y2f_c01026{bottom:200.959427pt;}
.y86_c01026{bottom:200.969213pt;}
.y59_c01026{bottom:217.600347pt;}
.y2e_c01026{bottom:217.918920pt;}
.y85_c01026{bottom:217.928707pt;}
.y2d_c01026{bottom:234.878920pt;}
.y58_c01026{bottom:234.879440pt;}
.y2c_c01026{bottom:234.882307pt;}
.y84_c01026{bottom:234.888200pt;}
.y57_c01026{bottom:251.838933pt;}
.y83_c01026{bottom:251.847693pt;}
.y2b_c01026{bottom:252.162493pt;}
.y56_c01026{bottom:268.798787pt;}
.y2a_c01026{bottom:268.801307pt;}
.y82_c01026{bottom:268.807213pt;}
.y55_c01026{bottom:286.079587pt;}
.y29_c01026{bottom:286.081480pt;}
.y81_c01026{bottom:286.087387pt;}
.y54_c01026{bottom:302.719747pt;}
.y28_c01026{bottom:302.720293pt;}
.y80_c01026{bottom:302.726200pt;}
.y53_c01026{bottom:319.679240pt;}
.y27_c01026{bottom:319.679813pt;}
.y7f_c01026{bottom:319.685693pt;}
.y52_c01026{bottom:336.320413pt;}
.y26_c01026{bottom:336.639307pt;}
.y7e_c01026{bottom:336.645200pt;}
.y25_c01026{bottom:353.919480pt;}
.y51_c01026{bottom:353.920187pt;}
.y7d_c01026{bottom:353.925373pt;}
.y50_c01026{bottom:370.879680pt;}
.y24_c01026{bottom:371.198693pt;}
.y23_c01026{bottom:371.200280pt;}
.y7c_c01026{bottom:371.204467pt;}
.y7b_c01026{bottom:388.163960pt;}
.y4f_c01026{bottom:388.479453pt;}
.y22_c01026{bottom:388.480453pt;}
.y4e_c01026{bottom:405.118693pt;}
.y21_c01026{bottom:405.439947pt;}
.y7a_c01026{bottom:405.444133pt;}
.y4d_c01026{bottom:422.719813pt;}
.y20_c01026{bottom:423.039720pt;}
.y79_c01026{bottom:423.043907pt;}
.y4c_c01026{bottom:439.999973pt;}
.y78_c01026{bottom:440.003413pt;}
.y1f_c01026{bottom:440.318813pt;}
.y4b_c01026{bottom:456.959467pt;}
.y1e_c01026{bottom:457.281040pt;}
.y77_c01026{bottom:457.282507pt;}
.y4a_c01026{bottom:473.600133pt;}
.y1d_c01026{bottom:473.602800pt;}
.y76_c01026{bottom:473.604253pt;}
.y49_c01026{bottom:490.885013pt;}
.y1c_c01026{bottom:491.201320pt;}
.y75_c01026{bottom:491.202760pt;}
.y48_c01026{bottom:507.526187pt;}
.y1b_c01026{bottom:507.842467pt;}
.y74_c01026{bottom:507.843933pt;}
.y47_c01026{bottom:524.805280pt;}
.y1a_c01026{bottom:525.121560pt;}
.y73_c01026{bottom:525.123027pt;}
.y46_c01026{bottom:541.764773pt;}
.y19_c01026{bottom:542.083413pt;}
.y72_c01026{bottom:542.084880pt;}
.y18_c01026{bottom:559.362507pt;}
.y71_c01026{bottom:559.363973pt;}
.y45_c01026{bottom:559.364547pt;}
.y44_c01026{bottom:576.324040pt;}
.y17_c01026{bottom:576.641600pt;}
.y70_c01026{bottom:576.643067pt;}
.y16_c01026{bottom:593.282773pt;}
.y43_c01026{bottom:593.283533pt;}
.y6f_c01026{bottom:593.604893pt;}
.y15_c01026{bottom:610.242267pt;}
.y42_c01026{bottom:610.243040pt;}
.y6e_c01026{bottom:610.564387pt;}
.y41_c01026{bottom:627.202533pt;}
.y14_c01026{bottom:627.522440pt;}
.y6d_c01026{bottom:627.523907pt;}
.y13_c01026{bottom:644.161253pt;}
.y40_c01026{bottom:644.162027pt;}
.y6c_c01026{bottom:644.162720pt;}
.y12_c01026{bottom:661.441453pt;}
.y3f_c01026{bottom:661.442200pt;}
.y6b_c01026{bottom:661.762493pt;}
.y3e_c01026{bottom:678.401707pt;}
.y11_c01026{bottom:678.720547pt;}
.y6a_c01026{bottom:678.721987pt;}
.y3d_c01026{bottom:695.680800pt;}
.y10_c01026{bottom:696.000707pt;}
.y69_c01026{bottom:696.002160pt;}
.y3c_c01026{bottom:712.640293pt;}
.yf_c01026{bottom:712.960200pt;}
.y68_c01026{bottom:712.961667pt;}
.ye_c01026{bottom:730.559973pt;}
.yd_c01026{bottom:730.560520pt;}
.y67_c01026{bottom:730.561440pt;}
.y3b_c01026{bottom:730.561827pt;}
.y3a_c01026{bottom:747.200640pt;}
.yc_c01026{bottom:747.520013pt;}
.y66_c01026{bottom:747.520933pt;}
.y39_c01026{bottom:764.480840pt;}
.yb_c01026{bottom:764.799787pt;}
.y65_c01026{bottom:764.800027pt;}
.y38_c01026{bottom:781.440333pt;}
.y64_c01026{bottom:781.441200pt;}
.ya_c01026{bottom:781.759280pt;}
.y37_c01026{bottom:798.399827pt;}
.y9_c01026{bottom:798.719707pt;}
.y63_c01026{bottom:798.720293pt;}
.y36_c01026{bottom:815.359867pt;}
.y62_c01026{bottom:815.361453pt;}
.y8_c01026{bottom:815.679200pt;}
.y7_c01026{bottom:832.639160pt;}
.y61_c01026{bottom:832.640547pt;}
.y35_c01026{bottom:849.599040pt;}
.y6_c01026{bottom:849.919840pt;}
.y5_c01026{bottom:849.920253pt;}
.y60_c01026{bottom:849.920720pt;}
.y34_c01026{bottom:867.201053pt;}
.y4_c01026{bottom:867.520013pt;}
.y5f_c01026{bottom:867.520493pt;}
.y33_c01026{bottom:884.160547pt;}
.y5e_c01026{bottom:884.480000pt;}
.y3_c01026{bottom:884.480453pt;}
.y32_c01026{bottom:901.120040pt;}
.y5d_c01026{bottom:901.439493pt;}
.y2_c01026{bottom:901.439947pt;}
.y8f_c01026{bottom:918.399827pt;}
.y8e_c01026{bottom:936.000000pt;}
.y8c_c01026{bottom:952.959960pt;}
.y8d_c01026{bottom:957.118733pt;}
.y8b_c01026{bottom:969.599040pt;}
.y8a_c01026{bottom:986.879800pt;}
.y89_c01026{bottom:986.890627pt;}
.y1_c01026{bottom:1021.439947pt;}
.hb_c01026{height:38.937500pt;}
.h2_c01026{height:41.023438pt;}
.hf_c01026{height:42.414062pt;}
.hd_c01026{height:43.804688pt;}
.hc_c01026{height:44.343750pt;}
.ha_c01026{height:44.500000pt;}
.h8_c01026{height:44.802083pt;}
.h9_c01026{height:45.777995pt;}
.h1_c01026{height:46.431966pt;}
.he_c01026{height:47.437500pt;}
.h6_c01026{height:47.739909pt;}
.h3_c01026{height:48.393880pt;}
.h10_c01026{height:48.755208pt;}
.h4_c01026{height:49.701823pt;}
.h5_c01026{height:50.355794pt;}
.h7_c01026{height:59.511393pt;}
.h0_c01026{height:1122.666667pt;}
.w0_c01026{width:793.333333pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:122.239720pt;}
.xc_c01026{left:184.639187pt;}
.x4_c01026{left:185.598680pt;}
.x9_c01026{left:214.079587pt;}
.x5_c01026{left:225.919867pt;}
.xa_c01026{left:231.358933pt;}
.x8_c01026{left:237.439453pt;}
.x6_c01026{left:243.199200pt;}
.xb_c01026{left:248.318787pt;}
.x7_c01026{left:254.718787pt;}
.x11_c01026{left:273.919867pt;}
.xd_c01026{left:364.159160pt;}
.xe_c01026{left:392.959147pt;}
.xf_c01026{left:433.599613pt;}
.x10_c01026{left:456.638667pt;}
.x2_c01026{left:618.559573pt;}
.x3_c01026{left:664.960000pt;}
}





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

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_740fafde320b49294c89ac6b.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.281250;font-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_c01027{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m7_c01027{transform:matrix(0.146635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146635,0.000000,0.000000,0.250000,0,0);}
.m4_c01027{transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);}
.m1_c01027{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m8_c01027{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m2_c01027{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.mb_c01027{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.ma_c01027{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m9_c01027{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m3_c01027{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m6_c01027{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m0_c01027{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.lsc_c01027{letter-spacing:-2.709053px;}
.ls6_c01027{letter-spacing:-2.590800px;}
.lsb_c01027{letter-spacing:-1.796348px;}
.ls9_c01027{letter-spacing:-1.729410px;}
.ls5_c01027{letter-spacing:-0.888743px;}
.ls3_c01027{letter-spacing:-0.867000px;}
.ls2_c01027{letter-spacing:0.000000px;}
.ls1_c01027{letter-spacing:0.867000px;}
.lsa_c01027{letter-spacing:0.892500px;}
.ls7_c01027{letter-spacing:1.242150px;}
.ls0_c01027{letter-spacing:1.729410px;}
.ls8_c01027{letter-spacing:6.049110px;}
.ls4_c01027{letter-spacing:6.915600px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:0.000000px;}
._8_c01027{margin-left:-12.653256px;}
._6_c01027{margin-left:-7.676753px;}
._a_c01027{margin-left:-6.528000px;}
._9_c01027{margin-left:-4.875669px;}
._5_c01027{margin-left:-3.840248px;}
._4_c01027{margin-left:-2.493986px;}
._b_c01027{margin-left:-1.243095px;}
._2_c01027{width:1.693546px;}
._7_c01027{width:5.803973px;}
._0_c01027{width:56.508069px;}
._3_c01027{width:145.196965px;}
._1_c01027{width:711.919407px;}
.fc0_c01027{color:transparent;}
.fs0_c01027{font-size:51.000000px;}
.fs5_c01027{font-size:52.500000px;}
.fs2_c01027{font-size:53.250000px;}
.fs6_c01027{font-size:54.750000px;}
.fs7_c01027{font-size:57.750000px;}
.fs1_c01027{font-size:58.500000px;}
.fs3_c01027{font-size:68.250000px;}
.fs4_c01027{font-size:78.000000px;}
.y0_c01027{bottom:0.000000px;}
.y99_c01027{bottom:181.070070px;}
.y68_c01027{bottom:181.077255px;}
.y39_c01027{bottom:181.438680px;}
.y98_c01027{bottom:200.508675px;}
.y67_c01027{bottom:200.515875px;}
.y38_c01027{bottom:200.879820px;}
.y97_c01027{bottom:219.589125px;}
.y66_c01027{bottom:219.596325px;}
.y37_c01027{bottom:219.960270px;}
.y96_c01027{bottom:239.030280px;}
.y65_c01027{bottom:239.037465px;}
.y36_c01027{bottom:239.398890px;}
.y95_c01027{bottom:257.749830px;}
.y64_c01027{bottom:257.757015px;}
.y35_c01027{bottom:258.119790px;}
.y94_c01027{bottom:277.190970px;}
.y63_c01027{bottom:277.198170px;}
.y34_c01027{bottom:277.200255px;}
.y93_c01027{bottom:296.271420px;}
.y62_c01027{bottom:296.278605px;}
.y33_c01027{bottom:296.638875px;}
.y92_c01027{bottom:315.710040px;}
.y61_c01027{bottom:315.717225px;}
.y32_c01027{bottom:316.080000px;}
.y91_c01027{bottom:334.790475px;}
.y60_c01027{bottom:334.797690px;}
.y31_c01027{bottom:334.798260px;}
.y90_c01027{bottom:354.231630px;}
.y5f_c01027{bottom:354.238815px;}
.y30_c01027{bottom:354.239415px;}
.y8f_c01027{bottom:373.312065px;}
.y2e_c01027{bottom:373.316805px;}
.y5e_c01027{bottom:373.319280px;}
.y2f_c01027{bottom:373.319850px;}
.y8e_c01027{bottom:392.750685px;}
.y2d_c01027{bottom:392.755410px;}
.y5d_c01027{bottom:392.757885px;}
.y8d_c01027{bottom:411.831135px;}
.y2c_c01027{bottom:411.835875px;}
.y5c_c01027{bottom:411.838320px;}
.y8c_c01027{bottom:430.911570px;}
.y2b_c01027{bottom:430.916310px;}
.y5b_c01027{bottom:430.918785px;}
.y8b_c01027{bottom:449.632500px;}
.y5a_c01027{bottom:449.639700px;}
.y2a_c01027{bottom:449.996775px;}
.y8a_c01027{bottom:469.071120px;}
.y29_c01027{bottom:469.077210px;}
.y59_c01027{bottom:469.078770px;}
.y89_c01027{bottom:488.151555px;}
.y58_c01027{bottom:488.158770px;}
.y28_c01027{bottom:488.518365px;}
.y88_c01027{bottom:507.592710px;}
.y27_c01027{bottom:507.598800px;}
.y57_c01027{bottom:507.599670px;}
.y87_c01027{bottom:526.673145px;}
.y56_c01027{bottom:526.679055px;}
.y26_c01027{bottom:526.679265px;}
.y55_c01027{bottom:545.759520px;}
.y86_c01027{bottom:546.111765px;}
.y25_c01027{bottom:546.117870px;}
.y85_c01027{bottom:565.192230px;}
.y54_c01027{bottom:565.198125px;}
.y24_c01027{bottom:565.559010px;}
.y84_c01027{bottom:584.633355px;}
.y53_c01027{bottom:584.639265px;}
.y23_c01027{bottom:584.997615px;}
.y83_c01027{bottom:603.713820px;}
.y52_c01027{bottom:603.719715px;}
.y22_c01027{bottom:604.078080px;}
.y82_c01027{bottom:623.152425px;}
.y51_c01027{bottom:623.158335px;}
.y21_c01027{bottom:623.519205px;}
.y81_c01027{bottom:642.232860px;}
.y1f_c01027{bottom:642.238695px;}
.y20_c01027{bottom:642.238770px;}
.y80_c01027{bottom:660.953790px;}
.y50_c01027{bottom:660.959385px;}
.y1e_c01027{bottom:660.959610px;}
.y7f_c01027{bottom:680.034240px;}
.y4f_c01027{bottom:680.039175px;}
.y1d_c01027{bottom:680.040075px;}
.y7e_c01027{bottom:699.114690px;}
.y4e_c01027{bottom:699.119610px;}
.y1c_c01027{bottom:699.478680px;}
.y7d_c01027{bottom:718.555830px;}
.y1b_c01027{bottom:718.560285px;}
.y4d_c01027{bottom:718.560765px;}
.y4c_c01027{bottom:737.641200px;}
.y7c_c01027{bottom:737.994435px;}
.y1a_c01027{bottom:737.999355px;}
.y19_c01027{bottom:737.999595px;}
.y7b_c01027{bottom:757.074900px;}
.y4b_c01027{bottom:757.079820px;}
.y18_c01027{bottom:757.080045px;}
.y7a_c01027{bottom:776.513505px;}
.y4a_c01027{bottom:776.518440px;}
.y17_c01027{bottom:776.879535px;}
.y79_c01027{bottom:795.595110px;}
.y49_c01027{bottom:795.600060px;}
.y16_c01027{bottom:795.960000px;}
.y78_c01027{bottom:815.393250px;}
.y48_c01027{bottom:815.398200px;}
.y14_c01027{bottom:815.758800px;}
.y15_c01027{bottom:815.759490px;}
.y77_c01027{bottom:834.473715px;}
.y13_c01027{bottom:834.478365px;}
.y47_c01027{bottom:834.478635px;}
.y76_c01027{bottom:853.914855px;}
.y12_c01027{bottom:853.919490px;}
.y75_c01027{bottom:872.635785px;}
.y46_c01027{bottom:872.639025px;}
.y11_c01027{bottom:872.999355px;}
.y74_c01027{bottom:892.074390px;}
.y45_c01027{bottom:892.077645px;}
.y10_c01027{bottom:892.437795px;}
.y73_c01027{bottom:911.154825px;}
.y44_c01027{bottom:911.158080px;}
.yf_c01027{bottom:911.518245px;}
.y72_c01027{bottom:930.595980px;}
.y43_c01027{bottom:930.599235px;}
.ye_c01027{bottom:930.959385px;}
.y71_c01027{bottom:949.676415px;}
.y42_c01027{bottom:949.679670px;}
.yc_c01027{bottom:950.038440px;}
.yd_c01027{bottom:950.039340px;}
.y70_c01027{bottom:969.115035px;}
.y41_c01027{bottom:969.118290px;}
.yb_c01027{bottom:969.118905px;}
.y40_c01027{bottom:987.839220px;}
.y6f_c01027{bottom:988.195500px;}
.ya_c01027{bottom:988.199340px;}
.y6e_c01027{bottom:1007.275935px;}
.y3f_c01027{bottom:1007.277825px;}
.y8_c01027{bottom:1007.639715px;}
.y9_c01027{bottom:1007.640105px;}
.y6d_c01027{bottom:1026.356385px;}
.y3e_c01027{bottom:1026.358275px;}
.y7_c01027{bottom:1026.720150px;}
.y6c_c01027{bottom:1045.797525px;}
.y3d_c01027{bottom:1045.799430px;}
.y5_c01027{bottom:1046.158305px;}
.y6_c01027{bottom:1046.159370px;}
.y6b_c01027{bottom:1064.877990px;}
.y3c_c01027{bottom:1064.879865px;}
.y4_c01027{bottom:1065.238770px;}
.y6a_c01027{bottom:1084.316595px;}
.y3b_c01027{bottom:1084.318470px;}
.y3_c01027{bottom:1084.679895px;}
.y69_c01027{bottom:1103.397030px;}
.y3a_c01027{bottom:1103.398935px;}
.y2_c01027{bottom:1103.760360px;}
.y1_c01027{bottom:1142.640105px;}
.h1_c01027{height:50.402344px;}
.h6_c01027{height:51.884766px;}
.h3_c01027{height:52.625977px;}
.h7_c01027{height:54.108398px;}
.h8_c01027{height:56.650269px;}
.h2_c01027{height:57.814453px;}
.h4_c01027{height:67.450195px;}
.h5_c01027{height:77.085938px;}
.h0_c01027{height:1263.000000px;}
.w0_c01027{width:892.500000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:139.678500px;}
.x7_c01027{left:209.879235px;}
.x4_c01027{left:210.958785px;}
.xa_c01027{left:241.918950px;}
.x6_c01027{left:255.959400px;}
.xd_c01027{left:261.359850px;}
.x8_c01027{left:262.439250px;}
.x5_c01027{left:269.639100px;}
.xb_c01027{left:274.678500px;}
.xc_c01027{left:300.958350px;}
.x9_c01027{left:307.798950px;}
.xf_c01027{left:411.477885px;}
.xe_c01027{left:412.917075px;}
.x11_c01027{left:443.878365px;}
.x10_c01027{left:444.959040px;}
.x2_c01027{left:698.039985px;}
.x3_c01027{left:750.599670px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.lsc_c01027{letter-spacing:-2.408047pt;}
.ls6_c01027{letter-spacing:-2.302933pt;}
.lsb_c01027{letter-spacing:-1.596753pt;}
.ls9_c01027{letter-spacing:-1.537253pt;}
.ls5_c01027{letter-spacing:-0.789993pt;}
.ls3_c01027{letter-spacing:-0.770667pt;}
.ls2_c01027{letter-spacing:0.000000pt;}
.ls1_c01027{letter-spacing:0.770667pt;}
.lsa_c01027{letter-spacing:0.793333pt;}
.ls7_c01027{letter-spacing:1.104133pt;}
.ls0_c01027{letter-spacing:1.537253pt;}
.ls8_c01027{letter-spacing:5.376987pt;}
.ls4_c01027{letter-spacing:6.147200pt;}
.ws0_c01027{word-spacing:0.000000pt;}
._8_c01027{margin-left:-11.247338pt;}
._6_c01027{margin-left:-6.823781pt;}
._a_c01027{margin-left:-5.802667pt;}
._9_c01027{margin-left:-4.333928pt;}
._5_c01027{margin-left:-3.413554pt;}
._4_c01027{margin-left:-2.216877pt;}
._b_c01027{margin-left:-1.104973pt;}
._2_c01027{width:1.505374pt;}
._7_c01027{width:5.159087pt;}
._0_c01027{width:50.229395pt;}
._3_c01027{width:129.063969pt;}
._1_c01027{width:632.817251pt;}
.fs0_c01027{font-size:45.333333pt;}
.fs5_c01027{font-size:46.666667pt;}
.fs2_c01027{font-size:47.333333pt;}
.fs6_c01027{font-size:48.666667pt;}
.fs7_c01027{font-size:51.333333pt;}
.fs1_c01027{font-size:52.000000pt;}
.fs3_c01027{font-size:60.666667pt;}
.fs4_c01027{font-size:69.333333pt;}
.y0_c01027{bottom:0.000000pt;}
.y99_c01027{bottom:160.951173pt;}
.y68_c01027{bottom:160.957560pt;}
.y39_c01027{bottom:161.278827pt;}
.y98_c01027{bottom:178.229933pt;}
.y67_c01027{bottom:178.236333pt;}
.y38_c01027{bottom:178.559840pt;}
.y97_c01027{bottom:195.190333pt;}
.y66_c01027{bottom:195.196733pt;}
.y37_c01027{bottom:195.520240pt;}
.y96_c01027{bottom:212.471360pt;}
.y65_c01027{bottom:212.477747pt;}
.y36_c01027{bottom:212.799013pt;}
.y95_c01027{bottom:229.110960pt;}
.y64_c01027{bottom:229.117347pt;}
.y35_c01027{bottom:229.439813pt;}
.y94_c01027{bottom:246.391973pt;}
.y63_c01027{bottom:246.398373pt;}
.y34_c01027{bottom:246.400227pt;}
.y93_c01027{bottom:263.352373pt;}
.y62_c01027{bottom:263.358760pt;}
.y33_c01027{bottom:263.679000pt;}
.y92_c01027{bottom:280.631147pt;}
.y61_c01027{bottom:280.637533pt;}
.y32_c01027{bottom:280.960000pt;}
.y91_c01027{bottom:297.591533pt;}
.y60_c01027{bottom:297.597947pt;}
.y31_c01027{bottom:297.598453pt;}
.y90_c01027{bottom:314.872560pt;}
.y5f_c01027{bottom:314.878947pt;}
.y30_c01027{bottom:314.879480pt;}
.y8f_c01027{bottom:331.832947pt;}
.y2e_c01027{bottom:331.837160pt;}
.y5e_c01027{bottom:331.839360pt;}
.y2f_c01027{bottom:331.839867pt;}
.y8e_c01027{bottom:349.111720pt;}
.y2d_c01027{bottom:349.115920pt;}
.y5d_c01027{bottom:349.118120pt;}
.y8d_c01027{bottom:366.072120pt;}
.y2c_c01027{bottom:366.076333pt;}
.y5c_c01027{bottom:366.078507pt;}
.y8c_c01027{bottom:383.032507pt;}
.y2b_c01027{bottom:383.036720pt;}
.y5b_c01027{bottom:383.038920pt;}
.y8b_c01027{bottom:399.673333pt;}
.y5a_c01027{bottom:399.679733pt;}
.y2a_c01027{bottom:399.997133pt;}
.y8a_c01027{bottom:416.952107pt;}
.y29_c01027{bottom:416.957520pt;}
.y59_c01027{bottom:416.958907pt;}
.y89_c01027{bottom:433.912493pt;}
.y58_c01027{bottom:433.918907pt;}
.y28_c01027{bottom:434.238547pt;}
.y88_c01027{bottom:451.193520pt;}
.y27_c01027{bottom:451.198933pt;}
.y57_c01027{bottom:451.199707pt;}
.y87_c01027{bottom:468.153907pt;}
.y56_c01027{bottom:468.159160pt;}
.y26_c01027{bottom:468.159347pt;}
.y55_c01027{bottom:485.119573pt;}
.y86_c01027{bottom:485.432680pt;}
.y25_c01027{bottom:485.438107pt;}
.y85_c01027{bottom:502.393093pt;}
.y54_c01027{bottom:502.398333pt;}
.y24_c01027{bottom:502.719120pt;}
.y84_c01027{bottom:519.674093pt;}
.y53_c01027{bottom:519.679347pt;}
.y23_c01027{bottom:519.997880pt;}
.y83_c01027{bottom:536.634507pt;}
.y52_c01027{bottom:536.639747pt;}
.y22_c01027{bottom:536.958293pt;}
.y82_c01027{bottom:553.913267pt;}
.y51_c01027{bottom:553.918520pt;}
.y21_c01027{bottom:554.239293pt;}
.y81_c01027{bottom:570.873653pt;}
.y1f_c01027{bottom:570.878840pt;}
.y20_c01027{bottom:570.878907pt;}
.y80_c01027{bottom:587.514480pt;}
.y50_c01027{bottom:587.519453pt;}
.y1e_c01027{bottom:587.519653pt;}
.y7f_c01027{bottom:604.474880pt;}
.y4f_c01027{bottom:604.479267pt;}
.y1d_c01027{bottom:604.480067pt;}
.y7e_c01027{bottom:621.435280pt;}
.y4e_c01027{bottom:621.439653pt;}
.y1c_c01027{bottom:621.758827pt;}
.y7d_c01027{bottom:638.716293pt;}
.y1b_c01027{bottom:638.720253pt;}
.y4d_c01027{bottom:638.720680pt;}
.y4c_c01027{bottom:655.681067pt;}
.y7c_c01027{bottom:655.995053pt;}
.y1a_c01027{bottom:655.999427pt;}
.y19_c01027{bottom:655.999640pt;}
.y7b_c01027{bottom:672.955467pt;}
.y4b_c01027{bottom:672.959840pt;}
.y18_c01027{bottom:672.960040pt;}
.y7a_c01027{bottom:690.234227pt;}
.y4a_c01027{bottom:690.238613pt;}
.y17_c01027{bottom:690.559587pt;}
.y79_c01027{bottom:707.195653pt;}
.y49_c01027{bottom:707.200053pt;}
.y16_c01027{bottom:707.520000pt;}
.y78_c01027{bottom:724.794000pt;}
.y48_c01027{bottom:724.798400pt;}
.y14_c01027{bottom:725.118933pt;}
.y15_c01027{bottom:725.119547pt;}
.y77_c01027{bottom:741.754413pt;}
.y13_c01027{bottom:741.758547pt;}
.y47_c01027{bottom:741.758787pt;}
.y76_c01027{bottom:759.035427pt;}
.y12_c01027{bottom:759.039547pt;}
.y75_c01027{bottom:775.676253pt;}
.y46_c01027{bottom:775.679133pt;}
.y11_c01027{bottom:775.999427pt;}
.y74_c01027{bottom:792.955013pt;}
.y45_c01027{bottom:792.957907pt;}
.y10_c01027{bottom:793.278040pt;}
.y73_c01027{bottom:809.915400pt;}
.y44_c01027{bottom:809.918293pt;}
.yf_c01027{bottom:810.238440pt;}
.y72_c01027{bottom:827.196427pt;}
.y43_c01027{bottom:827.199320pt;}
.ye_c01027{bottom:827.519453pt;}
.y71_c01027{bottom:844.156813pt;}
.y42_c01027{bottom:844.159707pt;}
.yc_c01027{bottom:844.478613pt;}
.yd_c01027{bottom:844.479413pt;}
.y70_c01027{bottom:861.435587pt;}
.y41_c01027{bottom:861.438480pt;}
.yb_c01027{bottom:861.439027pt;}
.y40_c01027{bottom:878.079307pt;}
.y6f_c01027{bottom:878.396000pt;}
.ya_c01027{bottom:878.399413pt;}
.y6e_c01027{bottom:895.356387pt;}
.y3f_c01027{bottom:895.358067pt;}
.y8_c01027{bottom:895.679747pt;}
.y9_c01027{bottom:895.680093pt;}
.y6d_c01027{bottom:912.316787pt;}
.y3e_c01027{bottom:912.318467pt;}
.y7_c01027{bottom:912.640133pt;}
.y6c_c01027{bottom:929.597800pt;}
.y3d_c01027{bottom:929.599493pt;}
.y5_c01027{bottom:929.918493pt;}
.y6_c01027{bottom:929.919440pt;}
.y6b_c01027{bottom:946.558213pt;}
.y3c_c01027{bottom:946.559880pt;}
.y4_c01027{bottom:946.878907pt;}
.y6a_c01027{bottom:963.836973pt;}
.y3b_c01027{bottom:963.838640pt;}
.y3_c01027{bottom:964.159907pt;}
.y69_c01027{bottom:980.797360pt;}
.y3a_c01027{bottom:980.799053pt;}
.y2_c01027{bottom:981.120320pt;}
.y1_c01027{bottom:1015.680093pt;}
.h1_c01027{height:44.802083pt;}
.h6_c01027{height:46.119792pt;}
.h3_c01027{height:46.778646pt;}
.h7_c01027{height:48.096354pt;}
.h8_c01027{height:50.355794pt;}
.h2_c01027{height:51.390625pt;}
.h4_c01027{height:59.955729pt;}
.h5_c01027{height:68.520833pt;}
.h0_c01027{height:1122.666667pt;}
.w0_c01027{width:793.333333pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:124.158667pt;}
.x7_c01027{left:186.559320pt;}
.x4_c01027{left:187.518920pt;}
.xa_c01027{left:215.039067pt;}
.x6_c01027{left:227.519467pt;}
.xd_c01027{left:232.319867pt;}
.x8_c01027{left:233.279333pt;}
.x5_c01027{left:239.679200pt;}
.xb_c01027{left:244.158667pt;}
.xc_c01027{left:267.518533pt;}
.x9_c01027{left:273.599067pt;}
.xf_c01027{left:365.758120pt;}
.xe_c01027{left:367.037400pt;}
.x11_c01027{left:394.558547pt;}
.x10_c01027{left:395.519147pt;}
.x2_c01027{left:620.479987pt;}
.x3_c01027{left:667.199707pt;}
}





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

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_69a530bf7bf56700da32f39f.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_85f2fa28a8be79d8688b1da0.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_8a990c6d776c1c949be713ea.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_b37fbeafa0dfdf73f0df48df.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.281250;font-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_c01028{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m6_c01028{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m5_c01028{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m7_c01028{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);}
.m9_c01028{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.mb_c01028{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.ma_c01028{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.m2_c01028{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m4_c01028{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m8_c01028{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m3_c01028{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.me_c01028{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m0_c01028{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m10_c01028{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m11_c01028{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.mc_c01028{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.mf_c01028{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.md_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls1a_c01028{letter-spacing:-13.377300px;}
.ls9_c01028{letter-spacing:-12.540900px;}
.ls17_c01028{letter-spacing:-11.705010px;}
.lsd_c01028{letter-spacing:-10.868100px;}
.ls15_c01028{letter-spacing:-10.031700px;}
.ls11_c01028{letter-spacing:-9.195300px;}
.lsc_c01028{letter-spacing:-8.358390px;}
.ls10_c01028{letter-spacing:-7.523010px;}
.lsf_c01028{letter-spacing:-6.686100px;}
.lsa_c01028{letter-spacing:-5.855310px;}
.ls5_c01028{letter-spacing:-5.399550px;}
.lse_c01028{letter-spacing:-5.018400px;}
.ls1c_c01028{letter-spacing:-4.698540px;}
.ls1b_c01028{letter-spacing:-4.244625px;}
.lsb_c01028{letter-spacing:-4.182000px;}
.ls1e_c01028{letter-spacing:-4.140300px;}
.ls19_c01028{letter-spacing:-3.751500px;}
.ls13_c01028{letter-spacing:-3.620070px;}
.ls3_c01028{letter-spacing:-3.345600px;}
.ls4_c01028{letter-spacing:-2.508690px;}
.ls16_c01028{letter-spacing:-2.461665px;}
.ls14_c01028{letter-spacing:-1.841100px;}
.ls6_c01028{letter-spacing:-1.697790px;}
.ls1_c01028{letter-spacing:-1.673310px;}
.ls1d_c01028{letter-spacing:-1.668225px;}
.ls7_c01028{letter-spacing:-0.967500px;}
.ls0_c01028{letter-spacing:-0.836400px;}
.ls2_c01028{letter-spacing:0.000000px;}
.ls18_c01028{letter-spacing:0.877200px;}
.ls12_c01028{letter-spacing:0.926325px;}
.ls8_c01028{letter-spacing:13.189110px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01028{word-spacing:0.000000px;}
._e_c01028{margin-left:-34.379217px;}
._c_c01028{margin-left:-31.768218px;}
._6_c01028{margin-left:-10.337784px;}
._4_c01028{margin-left:-8.629066px;}
._23_c01028{margin-left:-7.183584px;}
._d_c01028{margin-left:-6.079066px;}
._9_c01028{margin-left:-4.947368px;}
._5_c01028{margin-left:-3.622037px;}
._2_c01028{margin-left:-1.993214px;}
._b_c01028{width:1.522317px;}
._a_c01028{width:2.554172px;}
._8_c01028{width:4.553347px;}
._7_c01028{width:6.563583px;}
._1c_c01028{width:9.037267px;}
._11_c01028{width:14.057197px;}
._12_c01028{width:21.916631px;}
._1e_c01028{width:23.816632px;}
._14_c01028{width:25.280616px;}
._1a_c01028{width:27.098942px;}
._16_c01028{width:30.377439px;}
._f_c01028{width:32.107359px;}
._13_c01028{width:33.718959px;}
._19_c01028{width:35.320460px;}
._15_c01028{width:36.653516px;}
._1b_c01028{width:38.166419px;}
._1f_c01028{width:39.919539px;}
._10_c01028{width:43.108436px;}
._17_c01028{width:44.720036px;}
._1d_c01028{width:46.542366px;}
._21_c01028{width:48.291750px;}
._0_c01028{width:53.172500px;}
._20_c01028{width:55.187217px;}
._18_c01028{width:57.467151px;}
._22_c01028{width:59.228766px;}
._3_c01028{width:139.126729px;}
._1_c01028{width:694.848104px;}
.fc0_c01028{color:transparent;}
.fs6_c01028{font-size:43.500000px;}
.fsa_c01028{font-size:44.250000px;}
.fs7_c01028{font-size:45.750000px;}
.fs0_c01028{font-size:51.000000px;}
.fs4_c01028{font-size:51.750000px;}
.fs2_c01028{font-size:53.250000px;}
.fs9_c01028{font-size:54.000000px;}
.fsb_c01028{font-size:55.500000px;}
.fs3_c01028{font-size:56.250000px;}
.fs5_c01028{font-size:57.000000px;}
.fs8_c01028{font-size:57.750000px;}
.fs1_c01028{font-size:58.500000px;}
.y0_c01028{bottom:0.000000px;}
.y37_c01028{bottom:182.156475px;}
.y69_c01028{bottom:182.159415px;}
.y36_c01028{bottom:201.597615px;}
.y68_c01028{bottom:201.958005px;}
.y35_c01028{bottom:221.036220px;}
.y67_c01028{bottom:221.038440px;}
.y34_c01028{bottom:240.477375px;}
.y66_c01028{bottom:240.837960px;}
.y33_c01028{bottom:259.915995px;}
.y65_c01028{bottom:259.918395px;}
.y32_c01028{bottom:278.996430px;}
.y64_c01028{bottom:279.359550px;}
.y31_c01028{bottom:298.076895px;}
.y63_c01028{bottom:298.079115px;}
.y30_c01028{bottom:316.797795px;}
.y62_c01028{bottom:317.159550px;}
.y2f_c01028{bottom:335.878260px;}
.y61_c01028{bottom:335.880480px;}
.y2e_c01028{bottom:354.958695px;}
.y60_c01028{bottom:355.319085px;}
.y2d_c01028{bottom:373.678260px;}
.y5f_c01028{bottom:374.040000px;}
.y2c_c01028{bottom:393.119415px;}
.y5e_c01028{bottom:393.479235px;}
.y2b_c01028{bottom:412.199850px;}
.y5d_c01028{bottom:412.559100px;}
.y2a_c01028{bottom:431.639100px;}
.y5c_c01028{bottom:431.999865px;}
.y28_c01028{bottom:450.718755px;}
.y29_c01028{bottom:450.719100px;}
.y5b_c01028{bottom:451.080300px;}
.y27_c01028{bottom:470.518275px;}
.y5a_c01028{bottom:470.879820px;}
.y26_c01028{bottom:489.598710px;}
.y59_c01028{bottom:489.960255px;}
.y25_c01028{bottom:509.039865px;}
.y58_c01028{bottom:509.398860px;}
.y24_c01028{bottom:528.478470px;}
.y57_c01028{bottom:528.479325px;}
.y23_c01028{bottom:547.199385px;}
.y56_c01028{bottom:547.920450px;}
.y22_c01028{bottom:565.918950px;}
.y55_c01028{bottom:566.280480px;}
.y20_c01028{bottom:585.356685px;}
.y21_c01028{bottom:585.359850px;}
.y53_c01028{bottom:585.718230px;}
.y54_c01028{bottom:585.719100px;}
.y1f_c01028{bottom:604.437120px;}
.y52_c01028{bottom:604.798695px;}
.y1e_c01028{bottom:623.875740px;}
.y51_c01028{bottom:624.239820px;}
.y1d_c01028{bottom:642.956205px;}
.y50_c01028{bottom:642.958920px;}
.y1c_c01028{bottom:662.036640px;}
.y4f_c01028{bottom:662.399925px;}
.y1b_c01028{bottom:681.117090px;}
.y4e_c01028{bottom:681.480360px;}
.y1a_c01028{bottom:700.558230px;}
.y4d_c01028{bottom:700.918965px;}
.y19_c01028{bottom:719.996835px;}
.y4c_c01028{bottom:719.999430px;}
.y18_c01028{bottom:739.437990px;}
.y4b_c01028{bottom:739.798920px;}
.y17_c01028{bottom:758.157555px;}
.y4a_c01028{bottom:758.519235px;}
.y16_c01028{bottom:777.598680px;}
.y49_c01028{bottom:777.599670px;}
.y15_c01028{bottom:796.679145px;}
.y48_c01028{bottom:797.038965px;}
.y14_c01028{bottom:816.478635px;}
.y47_c01028{bottom:816.838785px;}
.y13_c01028{bottom:835.198200px;}
.y46_c01028{bottom:835.559685px;}
.y12_c01028{bottom:854.279820px;}
.y45_c01028{bottom:854.637060px;}
.y44_c01028{bottom:873.357990px;}
.y11_c01028{bottom:873.360255px;}
.yf_c01028{bottom:892.799280px;}
.y10_c01028{bottom:892.799565px;}
.y43_c01028{bottom:893.156130px;}
.y42_c01028{bottom:912.237735px;}
.ye_c01028{bottom:912.240420px;}
.y41_c01028{bottom:931.676355px;}
.yc_c01028{bottom:931.679190px;}
.yd_c01028{bottom:931.679715px;}
.y40_c01028{bottom:950.756820px;}
.yb_c01028{bottom:950.759625px;}
.ya_c01028{bottom:968.760135px;}
.y3f_c01028{bottom:970.195425px;}
.y9_c01028{bottom:987.479190px;}
.y8_c01028{bottom:987.480210px;}
.y3e_c01028{bottom:988.916340px;}
.y3d_c01028{bottom:1008.715845px;}
.y7_c01028{bottom:1008.720360px;}
.y6_c01028{bottom:1026.359985px;}
.y3c_c01028{bottom:1027.796295px;}
.y3b_c01028{bottom:1046.876745px;}
.y5_c01028{bottom:1046.879910px;}
.y3a_c01028{bottom:1065.597660px;}
.y4_c01028{bottom:1065.600810px;}
.y39_c01028{bottom:1085.036265px;}
.y3_c01028{bottom:1085.039430px;}
.y38_c01028{bottom:1104.116730px;}
.y2_c01028{bottom:1104.119895px;}
.y1_c01028{bottom:1142.640105px;}
.h8_c01028{height:45.369141px;}
.hc_c01028{height:46.151367px;}
.h9_c01028{height:47.715820px;}
.h1_c01028{height:50.402344px;}
.h6_c01028{height:51.143555px;}
.h5_c01028{height:51.398438px;}
.h3_c01028{height:52.625977px;}
.hb_c01028{height:52.971680px;}
.hd_c01028{height:54.443115px;}
.h4_c01028{height:55.590820px;}
.h7_c01028{height:56.332031px;}
.ha_c01028{height:56.650269px;}
.h2_c01028{height:57.814453px;}
.h0_c01028{height:1263.000000px;}
.w0_c01028{width:892.500000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:141.479715px;}
.x6_c01028{left:212.040000px;}
.x4_c01028{left:213.119955px;}
.x5_c01028{left:258.479235px;}
.x7_c01028{left:264.958950px;}
.x9_c01028{left:413.638500px;}
.x8_c01028{left:414.718440px;}
.xa_c01028{left:446.399820px;}
.xb_c01028{left:492.118785px;}
.x2_c01028{left:700.559685px;}
.x3_c01028{left:752.399235px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls1a_c01028{letter-spacing:-11.890933pt;}
.ls9_c01028{letter-spacing:-11.147467pt;}
.ls17_c01028{letter-spacing:-10.404453pt;}
.lsd_c01028{letter-spacing:-9.660533pt;}
.ls15_c01028{letter-spacing:-8.917067pt;}
.ls11_c01028{letter-spacing:-8.173600pt;}
.lsc_c01028{letter-spacing:-7.429680pt;}
.ls10_c01028{letter-spacing:-6.687120pt;}
.lsf_c01028{letter-spacing:-5.943200pt;}
.lsa_c01028{letter-spacing:-5.204720pt;}
.ls5_c01028{letter-spacing:-4.799600pt;}
.lse_c01028{letter-spacing:-4.460800pt;}
.ls1c_c01028{letter-spacing:-4.176480pt;}
.ls1b_c01028{letter-spacing:-3.773000pt;}
.lsb_c01028{letter-spacing:-3.717333pt;}
.ls1e_c01028{letter-spacing:-3.680267pt;}
.ls19_c01028{letter-spacing:-3.334667pt;}
.ls13_c01028{letter-spacing:-3.217840pt;}
.ls3_c01028{letter-spacing:-2.973867pt;}
.ls4_c01028{letter-spacing:-2.229947pt;}
.ls16_c01028{letter-spacing:-2.188147pt;}
.ls14_c01028{letter-spacing:-1.636533pt;}
.ls6_c01028{letter-spacing:-1.509147pt;}
.ls1_c01028{letter-spacing:-1.487387pt;}
.ls1d_c01028{letter-spacing:-1.482867pt;}
.ls7_c01028{letter-spacing:-0.860000pt;}
.ls0_c01028{letter-spacing:-0.743467pt;}
.ls2_c01028{letter-spacing:0.000000pt;}
.ls18_c01028{letter-spacing:0.779733pt;}
.ls12_c01028{letter-spacing:0.823400pt;}
.ls8_c01028{letter-spacing:11.723653pt;}
.ws0_c01028{word-spacing:0.000000pt;}
._e_c01028{margin-left:-30.559304pt;}
._c_c01028{margin-left:-28.238416pt;}
._6_c01028{margin-left:-9.189141pt;}
._4_c01028{margin-left:-7.670281pt;}
._23_c01028{margin-left:-6.385408pt;}
._d_c01028{margin-left:-5.403614pt;}
._9_c01028{margin-left:-4.397660pt;}
._5_c01028{margin-left:-3.219588pt;}
._2_c01028{margin-left:-1.771746pt;}
._b_c01028{width:1.353170pt;}
._a_c01028{width:2.270375pt;}
._8_c01028{width:4.047419pt;}
._7_c01028{width:5.834296pt;}
._1c_c01028{width:8.033126pt;}
._11_c01028{width:12.495286pt;}
._12_c01028{width:19.481450pt;}
._1e_c01028{width:21.170340pt;}
._14_c01028{width:22.471659pt;}
._1a_c01028{width:24.087948pt;}
._16_c01028{width:27.002168pt;}
._f_c01028{width:28.539875pt;}
._13_c01028{width:29.972408pt;}
._19_c01028{width:31.395964pt;}
._15_c01028{width:32.580903pt;}
._1b_c01028{width:33.925705pt;}
._1f_c01028{width:35.484035pt;}
._10_c01028{width:38.318609pt;}
._17_c01028{width:39.751143pt;}
._1d_c01028{width:41.370992pt;}
._21_c01028{width:42.926000pt;}
._0_c01028{width:47.264444pt;}
._20_c01028{width:49.055304pt;}
._18_c01028{width:51.081912pt;}
._22_c01028{width:52.647792pt;}
._3_c01028{width:123.668204pt;}
._1_c01028{width:617.642759pt;}
.fs6_c01028{font-size:38.666667pt;}
.fsa_c01028{font-size:39.333333pt;}
.fs7_c01028{font-size:40.666667pt;}
.fs0_c01028{font-size:45.333333pt;}
.fs4_c01028{font-size:46.000000pt;}
.fs2_c01028{font-size:47.333333pt;}
.fs9_c01028{font-size:48.000000pt;}
.fsb_c01028{font-size:49.333333pt;}
.fs3_c01028{font-size:50.000000pt;}
.fs5_c01028{font-size:50.666667pt;}
.fs8_c01028{font-size:51.333333pt;}
.fs1_c01028{font-size:52.000000pt;}
.y0_c01028{bottom:0.000000pt;}
.y37_c01028{bottom:161.916867pt;}
.y69_c01028{bottom:161.919480pt;}
.y36_c01028{bottom:179.197880pt;}
.y68_c01028{bottom:179.518227pt;}
.y35_c01028{bottom:196.476640pt;}
.y67_c01028{bottom:196.478613pt;}
.y34_c01028{bottom:213.757667pt;}
.y66_c01028{bottom:214.078187pt;}
.y33_c01028{bottom:231.036440pt;}
.y65_c01028{bottom:231.038573pt;}
.y32_c01028{bottom:247.996827pt;}
.y64_c01028{bottom:248.319600pt;}
.y31_c01028{bottom:264.957240pt;}
.y63_c01028{bottom:264.959213pt;}
.y30_c01028{bottom:281.598040pt;}
.y62_c01028{bottom:281.919600pt;}
.y2f_c01028{bottom:298.558453pt;}
.y61_c01028{bottom:298.560427pt;}
.y2e_c01028{bottom:315.518840pt;}
.y60_c01028{bottom:315.839187pt;}
.y2d_c01028{bottom:332.158453pt;}
.y5f_c01028{bottom:332.480000pt;}
.y2c_c01028{bottom:349.439480pt;}
.y5e_c01028{bottom:349.759320pt;}
.y2b_c01028{bottom:366.399867pt;}
.y5d_c01028{bottom:366.719200pt;}
.y2a_c01028{bottom:383.679200pt;}
.y5c_c01028{bottom:383.999880pt;}
.y28_c01028{bottom:400.638893pt;}
.y29_c01028{bottom:400.639200pt;}
.y5b_c01028{bottom:400.960267pt;}
.y27_c01028{bottom:418.238467pt;}
.y5a_c01028{bottom:418.559840pt;}
.y26_c01028{bottom:435.198853pt;}
.y59_c01028{bottom:435.520227pt;}
.y25_c01028{bottom:452.479880pt;}
.y58_c01028{bottom:452.798987pt;}
.y24_c01028{bottom:469.758640pt;}
.y57_c01028{bottom:469.759400pt;}
.y23_c01028{bottom:486.399453pt;}
.y56_c01028{bottom:487.040400pt;}
.y22_c01028{bottom:503.039067pt;}
.y55_c01028{bottom:503.360427pt;}
.y20_c01028{bottom:520.317053pt;}
.y21_c01028{bottom:520.319867pt;}
.y53_c01028{bottom:520.638427pt;}
.y54_c01028{bottom:520.639200pt;}
.y1f_c01028{bottom:537.277440pt;}
.y52_c01028{bottom:537.598840pt;}
.y1e_c01028{bottom:554.556213pt;}
.y51_c01028{bottom:554.879840pt;}
.y1d_c01028{bottom:571.516627pt;}
.y50_c01028{bottom:571.519040pt;}
.y1c_c01028{bottom:588.477013pt;}
.y4f_c01028{bottom:588.799933pt;}
.y1b_c01028{bottom:605.437413pt;}
.y4e_c01028{bottom:605.760320pt;}
.y1a_c01028{bottom:622.718427pt;}
.y4d_c01028{bottom:623.039080pt;}
.y19_c01028{bottom:639.997187pt;}
.y4c_c01028{bottom:639.999493pt;}
.y18_c01028{bottom:657.278213pt;}
.y4b_c01028{bottom:657.599040pt;}
.y17_c01028{bottom:673.917827pt;}
.y4a_c01028{bottom:674.239320pt;}
.y16_c01028{bottom:691.198827pt;}
.y49_c01028{bottom:691.199707pt;}
.y15_c01028{bottom:708.159240pt;}
.y48_c01028{bottom:708.479080pt;}
.y14_c01028{bottom:725.758787pt;}
.y47_c01028{bottom:726.078920pt;}
.y13_c01028{bottom:742.398400pt;}
.y46_c01028{bottom:742.719720pt;}
.y12_c01028{bottom:759.359840pt;}
.y45_c01028{bottom:759.677387pt;}
.y44_c01028{bottom:776.318213pt;}
.y11_c01028{bottom:776.320227pt;}
.yf_c01028{bottom:793.599360pt;}
.y10_c01028{bottom:793.599613pt;}
.y43_c01028{bottom:793.916560pt;}
.y42_c01028{bottom:810.877987pt;}
.ye_c01028{bottom:810.880373pt;}
.y41_c01028{bottom:828.156760pt;}
.yc_c01028{bottom:828.159280pt;}
.yd_c01028{bottom:828.159747pt;}
.y40_c01028{bottom:845.117173pt;}
.yb_c01028{bottom:845.119667pt;}
.ya_c01028{bottom:861.120120pt;}
.y3f_c01028{bottom:862.395933pt;}
.y9_c01028{bottom:877.759280pt;}
.y8_c01028{bottom:877.760187pt;}
.y3e_c01028{bottom:879.036747pt;}
.y3d_c01028{bottom:896.636307pt;}
.y7_c01028{bottom:896.640320pt;}
.y6_c01028{bottom:912.319987pt;}
.y3c_c01028{bottom:913.596707pt;}
.y3b_c01028{bottom:930.557107pt;}
.y5_c01028{bottom:930.559920pt;}
.y3a_c01028{bottom:947.197920pt;}
.y4_c01028{bottom:947.200720pt;}
.y39_c01028{bottom:964.476680pt;}
.y3_c01028{bottom:964.479493pt;}
.y38_c01028{bottom:981.437093pt;}
.y2_c01028{bottom:981.439907pt;}
.y1_c01028{bottom:1015.680093pt;}
.h8_c01028{height:40.328125pt;}
.hc_c01028{height:41.023438pt;}
.h9_c01028{height:42.414062pt;}
.h1_c01028{height:44.802083pt;}
.h6_c01028{height:45.460938pt;}
.h5_c01028{height:45.687500pt;}
.h3_c01028{height:46.778646pt;}
.hb_c01028{height:47.085938pt;}
.hd_c01028{height:48.393880pt;}
.h4_c01028{height:49.414063pt;}
.h7_c01028{height:50.072917pt;}
.ha_c01028{height:50.355794pt;}
.h2_c01028{height:51.390625pt;}
.h0_c01028{height:1122.666667pt;}
.w0_c01028{width:793.333333pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:125.759747pt;}
.x6_c01028{left:188.480000pt;}
.x4_c01028{left:189.439960pt;}
.x5_c01028{left:229.759320pt;}
.x7_c01028{left:235.519067pt;}
.x9_c01028{left:367.678667pt;}
.x8_c01028{left:368.638613pt;}
.xa_c01028{left:396.799840pt;}
.xb_c01028{left:437.438920pt;}
.x2_c01028{left:622.719720pt;}
.x3_c01028{left:668.799320pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_7a0cf35523bc9cef8e810f72.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_320eacd54039839b217a2b91.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_52f78548255aefa8bc606f0a.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.364746;font-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_c01029{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m5_c01029{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.ma_c01029{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m1_c01029{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_c01029{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m2_c01029{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m4_c01029{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m8_c01029{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m0_c01029{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m6_c01029{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.me_c01029{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.mb_c01029{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m3_c01029{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.md_c01029{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m9_c01029{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m7_c01029{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.mf_c01029{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls9_c01029{letter-spacing:-7.917300px;}
.ls3_c01029{letter-spacing:-4.094925px;}
.lsd_c01029{letter-spacing:-3.229800px;}
.ls2_c01029{letter-spacing:-2.590800px;}
.lsb_c01029{letter-spacing:-1.729410px;}
.ls4_c01029{letter-spacing:-0.901260px;}
.ls7_c01029{letter-spacing:-0.888743px;}
.ls1_c01029{letter-spacing:-0.867000px;}
.lsa_c01029{letter-spacing:-0.820800px;}
.ls0_c01029{letter-spacing:0.000000px;}
.lse_c01029{letter-spacing:0.953175px;}
.lsc_c01029{letter-spacing:2.048063px;}
.ls6_c01029{letter-spacing:2.148300px;}
.ls5_c01029{letter-spacing:3.015000px;}
.ls8_c01029{letter-spacing:3.457290px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01029{word-spacing:0.000000px;}
._6_c01029{margin-left:-8.710454px;}
._4_c01029{margin-left:-5.084925px;}
._8_c01029{margin-left:-2.310628px;}
._5_c01029{margin-left:-1.229152px;}
._2_c01029{width:1.693477px;}
._7_c01029{width:3.208228px;}
._0_c01029{width:58.191104px;}
._3_c01029{width:143.565035px;}
._1_c01029{width:716.295277px;}
.fc0_c01029{color:transparent;}
.fs9_c01029{font-size:42.000000px;}
.fs8_c01029{font-size:42.750000px;}
.fs5_c01029{font-size:46.500000px;}
.fsa_c01029{font-size:48.000000px;}
.fs4_c01029{font-size:48.750000px;}
.fs0_c01029{font-size:51.000000px;}
.fs2_c01029{font-size:53.250000px;}
.fs3_c01029{font-size:54.000000px;}
.fs1_c01029{font-size:56.250000px;}
.fs6_c01029{font-size:57.000000px;}
.fs7_c01029{font-size:57.750000px;}
.fsb_c01029{font-size:69.750000px;}
.y0_c01029{bottom:0.000000px;}
.y24_c01029{bottom:520.559100px;}
.y43_c01029{bottom:520.920660px;}
.y62_c01029{bottom:521.274540px;}
.y23_c01029{bottom:540.359250px;}
.y61_c01029{bottom:540.715695px;}
.y42_c01029{bottom:540.720150px;}
.y22_c01029{bottom:558.719100px;}
.y60_c01029{bottom:559.435245px;}
.y41_c01029{bottom:559.439250px;}
.y20_c01029{bottom:578.158110px;}
.y21_c01029{bottom:578.159820px;}
.y5f_c01029{bottom:578.515680px;}
.y40_c01029{bottom:578.518455px;}
.y1f_c01029{bottom:597.238560px;}
.y5e_c01029{bottom:597.956835px;}
.y3f_c01029{bottom:597.959580px;}
.y1e_c01029{bottom:617.038050px;}
.y5d_c01029{bottom:617.395455px;}
.y3e_c01029{bottom:617.398200px;}
.y1d_c01029{bottom:636.118515px;}
.y3d_c01029{bottom:636.478665px;}
.y5c_c01029{bottom:636.836580px;}
.y1c_c01029{bottom:655.198950px;}
.y3c_c01029{bottom:655.559100px;}
.y5b_c01029{bottom:655.917045px;}
.y1b_c01029{bottom:674.279415px;}
.y5a_c01029{bottom:674.636610px;}
.y3b_c01029{bottom:674.639100px;}
.y1a_c01029{bottom:693.359850px;}
.y59_c01029{bottom:694.077735px;}
.y3a_c01029{bottom:694.079130px;}
.y19_c01029{bottom:712.439670px;}
.y18_c01029{bottom:712.440315px;}
.y39_c01029{bottom:712.798695px;}
.y58_c01029{bottom:713.158200px;}
.y17_c01029{bottom:731.878920px;}
.y38_c01029{bottom:732.239820px;}
.y57_c01029{bottom:732.596805px;}
.y16_c01029{bottom:751.319820px;}
.y56_c01029{bottom:752.037945px;}
.y37_c01029{bottom:752.039985px;}
.y15_c01029{bottom:770.758455px;}
.y36_c01029{bottom:771.118005px;}
.y55_c01029{bottom:771.118395px;}
.y14_c01029{bottom:789.838905px;}
.y35_c01029{bottom:790.198470px;}
.y54_c01029{bottom:790.557015px;}
.y12_c01029{bottom:809.998605px;}
.y13_c01029{bottom:810.000000px;}
.y53_c01029{bottom:810.356505px;}
.y34_c01029{bottom:810.357495px;}
.y11_c01029{bottom:829.079070px;}
.y52_c01029{bottom:829.436970px;}
.y33_c01029{bottom:829.437945px;}
.y10_c01029{bottom:848.159505px;}
.y32_c01029{bottom:848.518380px;}
.y51_c01029{bottom:848.878095px;}
.yf_c01029{bottom:867.239955px;}
.y31_c01029{bottom:867.598845px;}
.y50_c01029{bottom:867.958560px;}
.ye_c01029{bottom:886.678575px;}
.y4f_c01029{bottom:887.038995px;}
.y30_c01029{bottom:887.039985px;}
.yd_c01029{bottom:905.759010px;}
.y4e_c01029{bottom:906.119460px;}
.y2f_c01029{bottom:906.119940px;}
.yc_c01029{bottom:924.839475px;}
.y4d_c01029{bottom:925.199895px;}
.y2e_c01029{bottom:925.200210px;}
.yb_c01029{bottom:943.560375px;}
.y4c_c01029{bottom:943.919445px;}
.y2d_c01029{bottom:943.919775px;}
.ya_c01029{bottom:963.359895px;}
.y4b_c01029{bottom:963.718965px;}
.y2c_c01029{bottom:963.719280px;}
.y9_c01029{bottom:982.798515px;}
.y4a_c01029{bottom:983.160090px;}
.y2b_c01029{bottom:983.160420px;}
.y8_c01029{bottom:1002.598005px;}
.y2a_c01029{bottom:1002.599025px;}
.y49_c01029{bottom:1002.959610px;}
.y7_c01029{bottom:1021.678455px;}
.y29_c01029{bottom:1021.679070px;}
.y48_c01029{bottom:1022.040045px;}
.y5_c01029{bottom:1040.937900px;}
.y6_c01029{bottom:1040.938665px;}
.y28_c01029{bottom:1041.118680px;}
.y47_c01029{bottom:1041.120510px;}
.y27_c01029{bottom:1059.838230px;}
.y4_c01029{bottom:1059.838605px;}
.y46_c01029{bottom:1060.200945px;}
.y3_c01029{bottom:1078.919040px;}
.y26_c01029{bottom:1079.279370px;}
.y45_c01029{bottom:1079.281410px;}
.y25_c01029{bottom:1098.359820px;}
.y2_c01029{bottom:1098.360195px;}
.y44_c01029{bottom:1098.720015px;}
.y1_c01029{bottom:1136.519715px;}
.ha_c01029{height:43.804688px;}
.h9_c01029{height:44.586914px;}
.h6_c01029{height:45.955078px;}
.hb_c01029{height:47.437500px;}
.h5_c01029{height:48.178711px;}
.h1_c01029{height:50.402344px;}
.h3_c01029{height:52.625977px;}
.h4_c01029{height:53.367188px;}
.h2_c01029{height:55.590820px;}
.h7_c01029{height:56.332031px;}
.h8_c01029{height:57.073242px;}
.hc_c01029{height:68.932617px;}
.h0_c01029{height:1263.000000px;}
.w0_c01029{width:892.500000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:133.559685px;}
.x7_c01029{left:204.839760px;}
.x4_c01029{left:205.919475px;}
.xc_c01029{left:251.279250px;}
.xd_c01029{left:264.238785px;}
.x9_c01029{left:270.718500px;}
.x8_c01029{left:290.159385px;}
.xa_c01029{left:296.639100px;}
.x5_c01029{left:316.080000px;}
.x6_c01029{left:328.319250px;}
.xb_c01029{left:341.998950px;}
.xe_c01029{left:406.799955px;}
.xf_c01029{left:439.199430px;}
.x2_c01029{left:691.558635px;}
.x3_c01029{left:744.119985px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls9_c01029{letter-spacing:-7.037600pt;}
.ls3_c01029{letter-spacing:-3.639933pt;}
.lsd_c01029{letter-spacing:-2.870933pt;}
.ls2_c01029{letter-spacing:-2.302933pt;}
.lsb_c01029{letter-spacing:-1.537253pt;}
.ls4_c01029{letter-spacing:-0.801120pt;}
.ls7_c01029{letter-spacing:-0.789993pt;}
.ls1_c01029{letter-spacing:-0.770667pt;}
.lsa_c01029{letter-spacing:-0.729600pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.lse_c01029{letter-spacing:0.847267pt;}
.lsc_c01029{letter-spacing:1.820500pt;}
.ls6_c01029{letter-spacing:1.909600pt;}
.ls5_c01029{letter-spacing:2.680000pt;}
.ls8_c01029{letter-spacing:3.073147pt;}
.ws0_c01029{word-spacing:0.000000pt;}
._6_c01029{margin-left:-7.742626pt;}
._4_c01029{margin-left:-4.519933pt;}
._8_c01029{margin-left:-2.053892pt;}
._5_c01029{margin-left:-1.092579pt;}
._2_c01029{width:1.505313pt;}
._7_c01029{width:2.851759pt;}
._0_c01029{width:51.725426pt;}
._3_c01029{width:127.613364pt;}
._1_c01029{width:636.706913pt;}
.fs9_c01029{font-size:37.333333pt;}
.fs8_c01029{font-size:38.000000pt;}
.fs5_c01029{font-size:41.333333pt;}
.fsa_c01029{font-size:42.666667pt;}
.fs4_c01029{font-size:43.333333pt;}
.fs0_c01029{font-size:45.333333pt;}
.fs2_c01029{font-size:47.333333pt;}
.fs3_c01029{font-size:48.000000pt;}
.fs1_c01029{font-size:50.000000pt;}
.fs6_c01029{font-size:50.666667pt;}
.fs7_c01029{font-size:51.333333pt;}
.fsb_c01029{font-size:62.000000pt;}
.y0_c01029{bottom:0.000000pt;}
.y24_c01029{bottom:462.719200pt;}
.y43_c01029{bottom:463.040587pt;}
.y62_c01029{bottom:463.355147pt;}
.y23_c01029{bottom:480.319333pt;}
.y61_c01029{bottom:480.636173pt;}
.y42_c01029{bottom:480.640133pt;}
.y22_c01029{bottom:496.639200pt;}
.y60_c01029{bottom:497.275773pt;}
.y41_c01029{bottom:497.279333pt;}
.y20_c01029{bottom:513.918320pt;}
.y21_c01029{bottom:513.919840pt;}
.y5f_c01029{bottom:514.236160pt;}
.y40_c01029{bottom:514.238627pt;}
.y1f_c01029{bottom:530.878720pt;}
.y5e_c01029{bottom:531.517187pt;}
.y3f_c01029{bottom:531.519627pt;}
.y1e_c01029{bottom:548.478267pt;}
.y5d_c01029{bottom:548.795960pt;}
.y3e_c01029{bottom:548.798400pt;}
.y1d_c01029{bottom:565.438680pt;}
.y3d_c01029{bottom:565.758813pt;}
.y5c_c01029{bottom:566.076960pt;}
.y1c_c01029{bottom:582.399067pt;}
.y3c_c01029{bottom:582.719200pt;}
.y5b_c01029{bottom:583.037373pt;}
.y1b_c01029{bottom:599.359480pt;}
.y5a_c01029{bottom:599.676987pt;}
.y3b_c01029{bottom:599.679200pt;}
.y1a_c01029{bottom:616.319867pt;}
.y59_c01029{bottom:616.957987pt;}
.y3a_c01029{bottom:616.959227pt;}
.y19_c01029{bottom:633.279707pt;}
.y18_c01029{bottom:633.280280pt;}
.y39_c01029{bottom:633.598840pt;}
.y58_c01029{bottom:633.918400pt;}
.y17_c01029{bottom:650.559040pt;}
.y38_c01029{bottom:650.879840pt;}
.y57_c01029{bottom:651.197160pt;}
.y16_c01029{bottom:667.839840pt;}
.y56_c01029{bottom:668.478173pt;}
.y37_c01029{bottom:668.479987pt;}
.y15_c01029{bottom:685.118627pt;}
.y36_c01029{bottom:685.438227pt;}
.y55_c01029{bottom:685.438573pt;}
.y14_c01029{bottom:702.079027pt;}
.y35_c01029{bottom:702.398640pt;}
.y54_c01029{bottom:702.717347pt;}
.y12_c01029{bottom:719.998760pt;}
.y13_c01029{bottom:720.000000pt;}
.y53_c01029{bottom:720.316893pt;}
.y34_c01029{bottom:720.317773pt;}
.y11_c01029{bottom:736.959173pt;}
.y52_c01029{bottom:737.277307pt;}
.y33_c01029{bottom:737.278173pt;}
.y10_c01029{bottom:753.919560pt;}
.y32_c01029{bottom:754.238560pt;}
.y51_c01029{bottom:754.558307pt;}
.yf_c01029{bottom:770.879960pt;}
.y31_c01029{bottom:771.198973pt;}
.y50_c01029{bottom:771.518720pt;}
.ye_c01029{bottom:788.158733pt;}
.y4f_c01029{bottom:788.479107pt;}
.y30_c01029{bottom:788.479987pt;}
.yd_c01029{bottom:805.119120pt;}
.y4e_c01029{bottom:805.439520pt;}
.y2f_c01029{bottom:805.439947pt;}
.yc_c01029{bottom:822.079533pt;}
.y4d_c01029{bottom:822.399907pt;}
.y2e_c01029{bottom:822.400187pt;}
.yb_c01029{bottom:838.720333pt;}
.y4c_c01029{bottom:839.039507pt;}
.y2d_c01029{bottom:839.039800pt;}
.ya_c01029{bottom:856.319907pt;}
.y4b_c01029{bottom:856.639080pt;}
.y2c_c01029{bottom:856.639360pt;}
.y9_c01029{bottom:873.598680pt;}
.y4a_c01029{bottom:873.920080pt;}
.y2b_c01029{bottom:873.920373pt;}
.y8_c01029{bottom:891.198227pt;}
.y2a_c01029{bottom:891.199133pt;}
.y49_c01029{bottom:891.519653pt;}
.y7_c01029{bottom:908.158627pt;}
.y29_c01029{bottom:908.159173pt;}
.y48_c01029{bottom:908.480040pt;}
.y5_c01029{bottom:925.278133pt;}
.y6_c01029{bottom:925.278813pt;}
.y28_c01029{bottom:925.438827pt;}
.y47_c01029{bottom:925.440453pt;}
.y27_c01029{bottom:942.078427pt;}
.y4_c01029{bottom:942.078760pt;}
.y46_c01029{bottom:942.400840pt;}
.y3_c01029{bottom:959.039147pt;}
.y26_c01029{bottom:959.359440pt;}
.y45_c01029{bottom:959.361253pt;}
.y25_c01029{bottom:976.319840pt;}
.y2_c01029{bottom:976.320173pt;}
.y44_c01029{bottom:976.640013pt;}
.y1_c01029{bottom:1010.239747pt;}
.ha_c01029{height:38.937500pt;}
.h9_c01029{height:39.632812pt;}
.h6_c01029{height:40.848958pt;}
.hb_c01029{height:42.166667pt;}
.h5_c01029{height:42.825521pt;}
.h1_c01029{height:44.802083pt;}
.h3_c01029{height:46.778646pt;}
.h4_c01029{height:47.437500pt;}
.h2_c01029{height:49.414063pt;}
.h7_c01029{height:50.072917pt;}
.h8_c01029{height:50.731771pt;}
.hc_c01029{height:61.273438pt;}
.h0_c01029{height:1122.666667pt;}
.w0_c01029{width:793.333333pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:118.719720pt;}
.x7_c01029{left:182.079787pt;}
.x4_c01029{left:183.039533pt;}
.xc_c01029{left:223.359333pt;}
.xd_c01029{left:234.878920pt;}
.x9_c01029{left:240.638667pt;}
.x8_c01029{left:257.919453pt;}
.xa_c01029{left:263.679200pt;}
.x5_c01029{left:280.960000pt;}
.x6_c01029{left:291.839333pt;}
.xb_c01029{left:303.999067pt;}
.xe_c01029{left:361.599960pt;}
.xf_c01029{left:390.399493pt;}
.x2_c01029{left:614.718787pt;}
.x3_c01029{left:661.439987pt;}
}





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

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_3a3a537c1af1c1ca768b14ca.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_39b7d804a173c9fcdc211397.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_4d1d010cc825b199e8c9d226.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01030;src:url('chunks/assets/font_f78284ec9d8c3b4f3ea55a6d.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01030;src:url('chunks/assets/font_1562403e637bef617d0e8c1a.woff2')format("woff");}.ff5_c01030{font-family:ff5_c01030;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01030;src:url('chunks/assets/font_829ae6f06a68b2fc8eedec2a.woff2')format("woff");}.ff6_c01030{font-family:ff6_c01030;line-height:1.432129;font-style:normal;font-weight: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_c01030;src:url('chunks/assets/font_130ae5afa170bcff3639c671.woff2')format("woff");}.ff7_c01030{font-family:ff7_c01030;line-height:1.364746;font-style:normal;font-weight: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_c01030;src:url('chunks/assets/font_0210236c27245afab4137d69.woff2')format("woff");}.ff8_c01030{font-family:ff8_c01030;line-height:1.284668;font-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_c01030{transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);}
.ma_c01030{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.mc_c01030{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.mb_c01030{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_c01030{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m19_c01030{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m10_c01030{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m11_c01030{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m16_c01030{transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207627,0.000000,0.000000,0.250000,0,0);}
.m8_c01030{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m7_c01030{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m9_c01030{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m5_c01030{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m14_c01030{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m13_c01030{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1a_c01030{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.md_c01030{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_c01030{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m18_c01030{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m12_c01030{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m0_c01030{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m6_c01030{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m4_c01030{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1_c01030{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1b_c01030{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m2_c01030{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m3_c01030{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m17_c01030{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls7_c01030{letter-spacing:-5.452110px;}
.ls22_c01030{letter-spacing:-4.666200px;}
.ls1d_c01030{letter-spacing:-4.152600px;}
.lsc_c01030{letter-spacing:-3.896100px;}
.ls1e_c01030{letter-spacing:-3.455483px;}
.ls19_c01030{letter-spacing:-3.320460px;}
.lsf_c01030{letter-spacing:-3.135990px;}
.ls3_c01030{letter-spacing:-3.118500px;}
.lsa_c01030{letter-spacing:-3.113700px;}
.ls15_c01030{letter-spacing:-2.590800px;}
.ls21_c01030{letter-spacing:-2.520375px;}
.ls1a_c01030{letter-spacing:-2.494800px;}
.ls9_c01030{letter-spacing:-2.335275px;}
.lsb_c01030{letter-spacing:-2.331990px;}
.ls12_c01030{letter-spacing:-1.872563px;}
.ls18_c01030{letter-spacing:-1.729410px;}
.ls1f_c01030{letter-spacing:-1.645875px;}
.ls8_c01030{letter-spacing:-1.556048px;}
.ls10_c01030{letter-spacing:-0.888743px;}
.ls11_c01030{letter-spacing:-0.873300px;}
.lse_c01030{letter-spacing:-0.867000px;}
.ls17_c01030{letter-spacing:-0.851190px;}
.ls16_c01030{letter-spacing:-0.845250px;}
.ls2_c01030{letter-spacing:-0.782550px;}
.ls5_c01030{letter-spacing:-0.745200px;}
.lsd_c01030{letter-spacing:0.000000px;}
.ls1c_c01030{letter-spacing:0.902700px;}
.ls1b_c01030{letter-spacing:0.915900px;}
.ls20_c01030{letter-spacing:0.928200px;}
.ls14_c01030{letter-spacing:1.837125px;}
.ls4_c01030{letter-spacing:2.325623px;}
.ls1_c01030{letter-spacing:2.590800px;}
.ls13_c01030{letter-spacing:2.729318px;}
.ls0_c01030{letter-spacing:3.896100px;}
.ls6_c01030{letter-spacing:15.584550px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:0.000000px;}
._9_c01030{margin-left:-10.825451px;}
._6_c01030{margin-left:-7.038000px;}
._7_c01030{margin-left:-4.896000px;}
._1_c01030{margin-left:-3.458887px;}
._8_c01030{margin-left:-2.152304px;}
._a_c01030{width:1.224726px;}
._2_c01030{width:2.934755px;}
._0_c01030{width:4.707605px;}
._3_c01030{width:7.638051px;}
._4_c01030{width:25.000096px;}
._5_c01030{width:714.642462px;}
.fc0_c01030{color:transparent;}
.fsc_c01030{font-size:40.500000px;}
.fs11_c01030{font-size:42.000000px;}
.fsf_c01030{font-size:42.750000px;}
.fse_c01030{font-size:44.250000px;}
.fsb_c01030{font-size:45.750000px;}
.fs10_c01030{font-size:48.750000px;}
.fs4_c01030{font-size:51.000000px;}
.fs6_c01030{font-size:51.750000px;}
.fsa_c01030{font-size:52.500000px;}
.fs5_c01030{font-size:53.250000px;}
.fsd_c01030{font-size:54.000000px;}
.fs9_c01030{font-size:55.500000px;}
.fs8_c01030{font-size:56.250000px;}
.fs7_c01030{font-size:68.250000px;}
.fs3_c01030{font-size:80.250000px;}
.fs1_c01030{font-size:81.000000px;}
.fs0_c01030{font-size:83.250000px;}
.fs2_c01030{font-size:92.250000px;}
.y0_c01030{bottom:0.000000px;}
.y30_c01030{bottom:199.796925px;}
.y5a_c01030{bottom:200.518665px;}
.y2f_c01030{bottom:219.238065px;}
.y59_c01030{bottom:219.599100px;}
.y2e_c01030{bottom:237.957615px;}
.y58_c01030{bottom:238.319850px;}
.y2d_c01030{bottom:257.038080px;}
.y57_c01030{bottom:257.399850px;}
.y2c_c01030{bottom:276.118515px;}
.y56_c01030{bottom:276.838950px;}
.y2b_c01030{bottom:295.918035px;}
.y55_c01030{bottom:296.639100px;}
.y2a_c01030{bottom:314.998470px;}
.y54_c01030{bottom:315.719100px;}
.y29_c01030{bottom:334.439625px;}
.y53_c01030{bottom:335.159850px;}
.y28_c01030{bottom:353.878230px;}
.y52_c01030{bottom:354.239850px;}
.y27_c01030{bottom:373.319370px;}
.y51_c01030{bottom:373.679100px;}
.y50_c01030{bottom:388.798920px;}
.y26_c01030{bottom:392.038920px;}
.y24_c01030{bottom:410.758230px;}
.y25_c01030{bottom:410.759535px;}
.y4f_c01030{bottom:411.478635px;}
.y23_c01030{bottom:429.838695px;}
.y4e_c01030{bottom:430.198200px;}
.y22_c01030{bottom:449.638185px;}
.y4d_c01030{bottom:449.997690px;}
.y21_c01030{bottom:468.357735px;}
.y4c_c01030{bottom:469.078155px;}
.y20_c01030{bottom:487.798890px;}
.y4b_c01030{bottom:488.519280px;}
.y1f_c01030{bottom:506.879340px;}
.y4a_c01030{bottom:507.599745px;}
.y1e_c01030{bottom:526.317945px;}
.y49_c01030{bottom:526.680180px;}
.y1d_c01030{bottom:545.759100px;}
.y48_c01030{bottom:546.118785px;}
.y1c_c01030{bottom:564.839535px;}
.y47_c01030{bottom:565.559685px;}
.y1b_c01030{bottom:583.919535px;}
.y46_c01030{bottom:584.277720px;}
.y1a_c01030{bottom:602.999400px;}
.y45_c01030{bottom:603.358170px;}
.y19_c01030{bottom:622.079400px;}
.y44_c01030{bottom:622.438620px;}
.y18_c01030{bottom:641.518620px;}
.y43_c01030{bottom:641.879520px;}
.y17_c01030{bottom:660.238650px;}
.y42_c01030{bottom:660.599235px;}
.y16_c01030{bottom:679.319085px;}
.y41_c01030{bottom:679.679670px;}
.y15_c01030{bottom:698.040030px;}
.y40_c01030{bottom:698.399235px;}
.y14_c01030{bottom:717.478635px;}
.y3f_c01030{bottom:717.840660px;}
.y13_c01030{bottom:736.919775px;}
.y3e_c01030{bottom:737.279250px;}
.y12_c01030{bottom:756.358380px;}
.y3d_c01030{bottom:756.719085px;}
.y11_c01030{bottom:775.438845px;}
.y3c_c01030{bottom:775.799535px;}
.y10_c01030{bottom:794.879970px;}
.yf_c01030{bottom:814.319280px;}
.y3b_c01030{bottom:814.680090px;}
.ye_c01030{bottom:833.759655px;}
.y3a_c01030{bottom:834.119385px;}
.yd_c01030{bottom:852.840090px;}
.y39_c01030{bottom:853.199340px;}
.yc_c01030{bottom:872.279205px;}
.yb_c01030{bottom:890.639325px;}
.y38_c01030{bottom:891.000000px;}
.ya_c01030{bottom:910.080465px;}
.y37_c01030{bottom:910.439205px;}
.y8_c01030{bottom:929.516925px;}
.y36_c01030{bottom:929.518755px;}
.y9_c01030{bottom:929.519070px;}
.y7_c01030{bottom:948.958050px;}
.y35_c01030{bottom:948.960015px;}
.y34_c01030{bottom:968.037915px;}
.y6_c01030{bottom:968.038515px;}
.y5_c01030{bottom:987.118950px;}
.y33_c01030{bottom:987.476535px;}
.y32_c01030{bottom:1006.197465px;}
.y4_c01030{bottom:1006.199415px;}
.y31_c01030{bottom:1025.277900px;}
.y3_c01030{bottom:1025.279850px;}
.y2_c01030{bottom:1063.078770px;}
.y1_c01030{bottom:1135.799565px;}
.hd_c01030{height:42.240234px;}
.h13_c01030{height:43.804688px;}
.h11_c01030{height:44.586914px;}
.h10_c01030{height:46.151367px;}
.hc_c01030{height:47.715820px;}
.h12_c01030{height:47.845459px;}
.h5_c01030{height:50.402344px;}
.h7_c01030{height:51.143555px;}
.he_c01030{height:51.500244px;}
.hb_c01030{height:51.884766px;}
.h6_c01030{height:52.625977px;}
.hf_c01030{height:52.971680px;}
.ha_c01030{height:54.849609px;}
.h9_c01030{height:55.590820px;}
.h8_c01030{height:67.450195px;}
.h4_c01030{height:80.876953px;}
.h2_c01030{height:81.632812px;}
.h1_c01030{height:83.900391px;}
.h3_c01030{height:91.168945px;}
.h0_c01030{height:1263.000000px;}
.w0_c01030{width:892.500000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:134.279850px;}
.x2_c01030{left:185.040000px;}
.x3_c01030{left:262.439250px;}
.x4_c01030{left:290.159385px;}
.x5_c01030{left:311.038950px;}
.xa_c01030{left:353.878950px;}
.x11_c01030{left:354.958650px;}
.x6_c01030{left:375.119385px;}
.x7_c01030{left:398.159415px;}
.x10_c01030{left:399.958920px;}
.xd_c01030{left:406.079400px;}
.xe_c01030{left:425.159415px;}
.xb_c01030{left:432.000000px;}
.xf_c01030{left:451.798515px;}
.xc_c01030{left:457.918950px;}
.x8_c01030{left:520.559100px;}
.x12_c01030{left:555.120255px;}
.x13_c01030{left:556.199385px;}
.x9_c01030{left:685.078770px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls7_c01030{letter-spacing:-4.846320pt;}
.ls22_c01030{letter-spacing:-4.147733pt;}
.ls1d_c01030{letter-spacing:-3.691200pt;}
.lsc_c01030{letter-spacing:-3.463200pt;}
.ls1e_c01030{letter-spacing:-3.071540pt;}
.ls19_c01030{letter-spacing:-2.951520pt;}
.lsf_c01030{letter-spacing:-2.787547pt;}
.ls3_c01030{letter-spacing:-2.772000pt;}
.lsa_c01030{letter-spacing:-2.767733pt;}
.ls15_c01030{letter-spacing:-2.302933pt;}
.ls21_c01030{letter-spacing:-2.240333pt;}
.ls1a_c01030{letter-spacing:-2.217600pt;}
.ls9_c01030{letter-spacing:-2.075800pt;}
.lsb_c01030{letter-spacing:-2.072880pt;}
.ls12_c01030{letter-spacing:-1.664500pt;}
.ls18_c01030{letter-spacing:-1.537253pt;}
.ls1f_c01030{letter-spacing:-1.463000pt;}
.ls8_c01030{letter-spacing:-1.383153pt;}
.ls10_c01030{letter-spacing:-0.789993pt;}
.ls11_c01030{letter-spacing:-0.776267pt;}
.lse_c01030{letter-spacing:-0.770667pt;}
.ls17_c01030{letter-spacing:-0.756613pt;}
.ls16_c01030{letter-spacing:-0.751333pt;}
.ls2_c01030{letter-spacing:-0.695600pt;}
.ls5_c01030{letter-spacing:-0.662400pt;}
.lsd_c01030{letter-spacing:0.000000pt;}
.ls1c_c01030{letter-spacing:0.802400pt;}
.ls1b_c01030{letter-spacing:0.814133pt;}
.ls20_c01030{letter-spacing:0.825067pt;}
.ls14_c01030{letter-spacing:1.633000pt;}
.ls4_c01030{letter-spacing:2.067220pt;}
.ls1_c01030{letter-spacing:2.302933pt;}
.ls13_c01030{letter-spacing:2.426060pt;}
.ls0_c01030{letter-spacing:3.463200pt;}
.ls6_c01030{letter-spacing:13.852933pt;}
.ws0_c01030{word-spacing:0.000000pt;}
._9_c01030{margin-left:-9.622623pt;}
._6_c01030{margin-left:-6.256000pt;}
._7_c01030{margin-left:-4.352000pt;}
._1_c01030{margin-left:-3.074566pt;}
._8_c01030{margin-left:-1.913159pt;}
._a_c01030{width:1.088645pt;}
._2_c01030{width:2.608671pt;}
._0_c01030{width:4.184538pt;}
._3_c01030{width:6.789378pt;}
._4_c01030{width:22.222308pt;}
._5_c01030{width:635.237744pt;}
.fsc_c01030{font-size:36.000000pt;}
.fs11_c01030{font-size:37.333333pt;}
.fsf_c01030{font-size:38.000000pt;}
.fse_c01030{font-size:39.333333pt;}
.fsb_c01030{font-size:40.666667pt;}
.fs10_c01030{font-size:43.333333pt;}
.fs4_c01030{font-size:45.333333pt;}
.fs6_c01030{font-size:46.000000pt;}
.fsa_c01030{font-size:46.666667pt;}
.fs5_c01030{font-size:47.333333pt;}
.fsd_c01030{font-size:48.000000pt;}
.fs9_c01030{font-size:49.333333pt;}
.fs8_c01030{font-size:50.000000pt;}
.fs7_c01030{font-size:60.666667pt;}
.fs3_c01030{font-size:71.333333pt;}
.fs1_c01030{font-size:72.000000pt;}
.fs0_c01030{font-size:74.000000pt;}
.fs2_c01030{font-size:82.000000pt;}
.y0_c01030{bottom:0.000000pt;}
.y30_c01030{bottom:177.597267pt;}
.y5a_c01030{bottom:178.238813pt;}
.y2f_c01030{bottom:194.878280pt;}
.y59_c01030{bottom:195.199200pt;}
.y2e_c01030{bottom:211.517880pt;}
.y58_c01030{bottom:211.839867pt;}
.y2d_c01030{bottom:228.478293pt;}
.y57_c01030{bottom:228.799867pt;}
.y2c_c01030{bottom:245.438680pt;}
.y56_c01030{bottom:246.079067pt;}
.y2b_c01030{bottom:263.038253pt;}
.y55_c01030{bottom:263.679200pt;}
.y2a_c01030{bottom:279.998640pt;}
.y54_c01030{bottom:280.639200pt;}
.y29_c01030{bottom:297.279667pt;}
.y53_c01030{bottom:297.919867pt;}
.y28_c01030{bottom:314.558427pt;}
.y52_c01030{bottom:314.879867pt;}
.y27_c01030{bottom:331.839440pt;}
.y51_c01030{bottom:332.159200pt;}
.y50_c01030{bottom:345.599040pt;}
.y26_c01030{bottom:348.479040pt;}
.y24_c01030{bottom:365.118427pt;}
.y25_c01030{bottom:365.119587pt;}
.y4f_c01030{bottom:365.758787pt;}
.y23_c01030{bottom:382.078840pt;}
.y4e_c01030{bottom:382.398400pt;}
.y22_c01030{bottom:399.678387pt;}
.y4d_c01030{bottom:399.997947pt;}
.y21_c01030{bottom:416.317987pt;}
.y4c_c01030{bottom:416.958360pt;}
.y20_c01030{bottom:433.599013pt;}
.y4b_c01030{bottom:434.239360pt;}
.y1f_c01030{bottom:450.559413pt;}
.y4a_c01030{bottom:451.199773pt;}
.y1e_c01030{bottom:467.838173pt;}
.y49_c01030{bottom:468.160160pt;}
.y1d_c01030{bottom:485.119200pt;}
.y48_c01030{bottom:485.438920pt;}
.y1c_c01030{bottom:502.079587pt;}
.y47_c01030{bottom:502.719720pt;}
.y1b_c01030{bottom:519.039587pt;}
.y46_c01030{bottom:519.357973pt;}
.y1a_c01030{bottom:535.999467pt;}
.y45_c01030{bottom:536.318373pt;}
.y19_c01030{bottom:552.959467pt;}
.y44_c01030{bottom:553.278773pt;}
.y18_c01030{bottom:570.238773pt;}
.y43_c01030{bottom:570.559573pt;}
.y17_c01030{bottom:586.878800pt;}
.y42_c01030{bottom:587.199320pt;}
.y16_c01030{bottom:603.839187pt;}
.y41_c01030{bottom:604.159707pt;}
.y15_c01030{bottom:620.480027pt;}
.y40_c01030{bottom:620.799320pt;}
.y14_c01030{bottom:637.758787pt;}
.y3f_c01030{bottom:638.080587pt;}
.y13_c01030{bottom:655.039800pt;}
.y3e_c01030{bottom:655.359333pt;}
.y12_c01030{bottom:672.318560pt;}
.y3d_c01030{bottom:672.639187pt;}
.y11_c01030{bottom:689.278973pt;}
.y3c_c01030{bottom:689.599587pt;}
.y10_c01030{bottom:706.559973pt;}
.yf_c01030{bottom:723.839360pt;}
.y3b_c01030{bottom:724.160080pt;}
.ye_c01030{bottom:741.119693pt;}
.y3a_c01030{bottom:741.439453pt;}
.yd_c01030{bottom:758.080080pt;}
.y39_c01030{bottom:758.399413pt;}
.yc_c01030{bottom:775.359293pt;}
.yb_c01030{bottom:791.679400pt;}
.y38_c01030{bottom:792.000000pt;}
.ya_c01030{bottom:808.960413pt;}
.y37_c01030{bottom:809.279293pt;}
.y8_c01030{bottom:826.237267pt;}
.y36_c01030{bottom:826.238893pt;}
.y9_c01030{bottom:826.239173pt;}
.y7_c01030{bottom:843.518267pt;}
.y35_c01030{bottom:843.520013pt;}
.y34_c01030{bottom:860.478147pt;}
.y6_c01030{bottom:860.478680pt;}
.y5_c01030{bottom:877.439067pt;}
.y33_c01030{bottom:877.756920pt;}
.y32_c01030{bottom:894.397747pt;}
.y4_c01030{bottom:894.399480pt;}
.y31_c01030{bottom:911.358133pt;}
.y3_c01030{bottom:911.359867pt;}
.y2_c01030{bottom:944.958907pt;}
.y1_c01030{bottom:1009.599613pt;}
.hd_c01030{height:37.546875pt;}
.h13_c01030{height:38.937500pt;}
.h11_c01030{height:39.632812pt;}
.h10_c01030{height:41.023438pt;}
.hc_c01030{height:42.414062pt;}
.h12_c01030{height:42.529297pt;}
.h5_c01030{height:44.802083pt;}
.h7_c01030{height:45.460938pt;}
.he_c01030{height:45.777995pt;}
.hb_c01030{height:46.119792pt;}
.h6_c01030{height:46.778646pt;}
.hf_c01030{height:47.085938pt;}
.ha_c01030{height:48.755208pt;}
.h9_c01030{height:49.414063pt;}
.h8_c01030{height:59.955729pt;}
.h4_c01030{height:71.890625pt;}
.h2_c01030{height:72.562500pt;}
.h1_c01030{height:74.578125pt;}
.h3_c01030{height:81.039063pt;}
.h0_c01030{height:1122.666667pt;}
.w0_c01030{width:793.333333pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:119.359867pt;}
.x2_c01030{left:164.480000pt;}
.x3_c01030{left:233.279333pt;}
.x4_c01030{left:257.919453pt;}
.x5_c01030{left:276.479067pt;}
.xa_c01030{left:314.559067pt;}
.x11_c01030{left:315.518800pt;}
.x6_c01030{left:333.439453pt;}
.x7_c01030{left:353.919480pt;}
.x10_c01030{left:355.519040pt;}
.xd_c01030{left:360.959467pt;}
.xe_c01030{left:377.919480pt;}
.xb_c01030{left:384.000000pt;}
.xf_c01030{left:401.598680pt;}
.xc_c01030{left:407.039067pt;}
.x8_c01030{left:462.719200pt;}
.x12_c01030{left:493.440227pt;}
.x13_c01030{left:494.399453pt;}
.x9_c01030{left:608.958907pt;}
}





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

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_4157f2f9c8bde9f79ea2097c.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_3fd44f0d849ee1cf2d0add5f.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_e6c1030fa385369c65a36387.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_11f3ed2a87cb1d764c9081f6.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01031;src:url('chunks/assets/font_6d0dea1a11357388052464ca.woff2')format("woff");}.ff5_c01031{font-family:ff5_c01031;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01031;src:url('chunks/assets/font_000a98a680cf1398b9c9c3dc.woff2')format("woff");}.ff6_c01031{font-family:ff6_c01031;line-height:1.432129;font-style:normal;font-weight: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_c01031;src:url('chunks/assets/font_6706081e0f0ca93f5fce1725.woff2')format("woff");}.ff7_c01031{font-family:ff7_c01031;line-height:1.364746;font-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_c01031{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m1f_c01031{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m16_c01031{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m1a_c01031{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m8_c01031{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.mb_c01031{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.mc_c01031{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m1c_c01031{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m9_c01031{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.me_c01031{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m10_c01031{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.md_c01031{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m0_c01031{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m19_c01031{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m14_c01031{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m5_c01031{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m18_c01031{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m1_c01031{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m7_c01031{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m3_c01031{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m1d_c01031{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m17_c01031{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m12_c01031{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.ma_c01031{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m15_c01031{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1e_c01031{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.mf_c01031{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m13_c01031{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.m2_c01031{transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);}
.m1b_c01031{transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278226,0.000000,0.000000,0.250000,0,0);}
.m4_c01031{transform:matrix(0.361979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361979,0.000000,0.000000,0.250000,0,0);}
.m11_c01031{transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls5_c01031{letter-spacing:-17.470793px;}
.ls14_c01031{letter-spacing:-9.255600px;}
.ls1b_c01031{letter-spacing:-6.737850px;}
.ls4_c01031{letter-spacing:-5.596275px;}
.lsf_c01031{letter-spacing:-5.372400px;}
.ls1e_c01031{letter-spacing:-4.827675px;}
.ls17_c01031{letter-spacing:-4.812750px;}
.ls11_c01031{letter-spacing:-4.658850px;}
.ls22_c01031{letter-spacing:-4.579875px;}
.lse_c01031{letter-spacing:-4.569600px;}
.ls13_c01031{letter-spacing:-4.306365px;}
.ls21_c01031{letter-spacing:-4.022325px;}
.ls16_c01031{letter-spacing:-3.173625px;}
.ls1a_c01031{letter-spacing:-3.037125px;}
.ls3_c01031{letter-spacing:-2.590800px;}
.ls6_c01031{letter-spacing:-2.582475px;}
.ls7_c01031{letter-spacing:-2.535233px;}
.ls12_c01031{letter-spacing:-2.102873px;}
.ls1c_c01031{letter-spacing:-1.848000px;}
.ls1d_c01031{letter-spacing:-1.729410px;}
.ls19_c01031{letter-spacing:-1.722758px;}
.ls2_c01031{letter-spacing:-1.695750px;}
.ls23_c01031{letter-spacing:-1.087403px;}
.lsd_c01031{letter-spacing:-0.897900px;}
.ls1_c01031{letter-spacing:-0.867000px;}
.ls20_c01031{letter-spacing:-0.863708px;}
.ls18_c01031{letter-spacing:-0.851190px;}
.ls0_c01031{letter-spacing:0.000000px;}
.ls10_c01031{letter-spacing:0.867000px;}
.lsb_c01031{letter-spacing:0.892500px;}
.lsa_c01031{letter-spacing:0.953175px;}
.ls1f_c01031{letter-spacing:1.729410px;}
.ls15_c01031{letter-spacing:2.590800px;}
.ls9_c01031{letter-spacing:7.742400px;}
.lsc_c01031{letter-spacing:8.643990px;}
.ls8_c01031{letter-spacing:19.879800px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01031{word-spacing:0.000000px;}
._7_c01031{margin-left:-10.914000px;}
._6_c01031{margin-left:-8.007035px;}
._3_c01031{margin-left:-5.100000px;}
._5_c01031{margin-left:-3.927104px;}
._4_c01031{margin-left:-1.764358px;}
._2_c01031{width:2.371621px;}
._0_c01031{width:25.000165px;}
._9_c01031{width:26.968869px;}
._a_c01031{width:28.626525px;}
._8_c01031{width:32.094456px;}
._b_c01031{width:35.679323px;}
._1_c01031{width:716.295277px;}
.fc0_c01031{color:transparent;}
.fsc_c01031{font-size:42.750000px;}
.fsb_c01031{font-size:43.500000px;}
.fs12_c01031{font-size:44.250000px;}
.fsd_c01031{font-size:46.500000px;}
.fs7_c01031{font-size:48.000000px;}
.fs0_c01031{font-size:51.000000px;}
.fs10_c01031{font-size:51.750000px;}
.fs1_c01031{font-size:52.500000px;}
.fs3_c01031{font-size:53.250000px;}
.fse_c01031{font-size:54.000000px;}
.fs9_c01031{font-size:54.750000px;}
.fsa_c01031{font-size:55.500000px;}
.fs8_c01031{font-size:56.250000px;}
.fs6_c01031{font-size:58.500000px;}
.fs2_c01031{font-size:62.250000px;}
.fs11_c01031{font-size:66.750000px;}
.fs5_c01031{font-size:68.250000px;}
.fsf_c01031{font-size:69.750000px;}
.fs4_c01031{font-size:72.000000px;}
.y0_c01031{bottom:0.000000px;}
.y38_c01031{bottom:188.640750px;}
.y67_c01031{bottom:188.997735px;}
.y36_c01031{bottom:208.076985px;}
.y66_c01031{bottom:208.078170px;}
.y37_c01031{bottom:208.080000px;}
.y35_c01031{bottom:227.157435px;}
.y65_c01031{bottom:227.158635px;}
.y34_c01031{bottom:246.598575px;}
.y64_c01031{bottom:246.958125px;}
.y33_c01031{bottom:266.037180px;}
.y63_c01031{bottom:266.038575px;}
.y32_c01031{bottom:285.117645px;}
.y62_c01031{bottom:285.479715px;}
.y31_c01031{bottom:304.198080px;}
.y61_c01031{bottom:304.560180px;}
.y30_c01031{bottom:323.639235px;}
.y60_c01031{bottom:323.640615px;}
.y2f_c01031{bottom:342.358800px;}
.y5f_c01031{bottom:342.721065px;}
.y2e_c01031{bottom:361.799925px;}
.y5e_c01031{bottom:362.159685px;}
.y2d_c01031{bottom:380.519490px;}
.y5d_c01031{bottom:380.880585px;}
.y2c_c01031{bottom:399.960645px;}
.y5b_c01031{bottom:400.318995px;}
.y5c_c01031{bottom:400.319820px;}
.y2b_c01031{bottom:419.399250px;}
.y5a_c01031{bottom:419.760150px;}
.y2a_c01031{bottom:438.479685px;}
.y59_c01031{bottom:438.840585px;}
.y29_c01031{bottom:457.559685px;}
.y28_c01031{bottom:457.560360px;}
.y57_c01031{bottom:458.278770px;}
.y58_c01031{bottom:458.279850px;}
.y56_c01031{bottom:477.359235px;}
.y27_c01031{bottom:477.359850px;}
.y26_c01031{bottom:496.439670px;}
.y25_c01031{bottom:515.519670px;}
.y55_c01031{bottom:534.598440px;}
.y24_c01031{bottom:534.599670px;}
.y22_c01031{bottom:553.679100px;}
.y23_c01031{bottom:553.679670px;}
.y54_c01031{bottom:554.039595px;}
.y53_c01031{bottom:572.759145px;}
.y21_c01031{bottom:572.759535px;}
.y52_c01031{bottom:592.200285px;}
.y20_c01031{bottom:592.200435px;}
.y1f_c01031{bottom:610.919535px;}
.y51_c01031{bottom:611.280735px;}
.y1d_c01031{bottom:630.719355px;}
.y1e_c01031{bottom:630.719520px;}
.y1c_c01031{bottom:649.440255px;}
.y1b_c01031{bottom:649.440420px;}
.y50_c01031{bottom:668.878050px;}
.y1a_c01031{bottom:668.879040px;}
.y19_c01031{bottom:687.599940px;}
.y4f_c01031{bottom:687.958485px;}
.y18_c01031{bottom:707.038560px;}
.y4e_c01031{bottom:707.038950px;}
.y17_c01031{bottom:726.119025px;}
.y4d_c01031{bottom:726.119385px;}
.y16_c01031{bottom:745.560150px;}
.y4c_c01031{bottom:745.560360px;}
.y15_c01031{bottom:764.640615px;}
.y4b_c01031{bottom:764.640795px;}
.y14_c01031{bottom:784.079220px;}
.y4a_c01031{bottom:784.079400px;}
.y13_c01031{bottom:803.159655px;}
.y49_c01031{bottom:803.519685px;}
.y48_c01031{bottom:822.600135px;}
.y12_c01031{bottom:822.600810px;}
.y47_c01031{bottom:842.039340px;}
.y11_c01031{bottom:842.039430px;}
.y46_c01031{bottom:861.480060px;}
.y10_c01031{bottom:861.480555px;}
.y45_c01031{bottom:879.840090px;}
.yf_c01031{bottom:879.840585px;}
.y44_c01031{bottom:898.919955px;}
.ye_c01031{bottom:899.279205px;}
.yc_c01031{bottom:918.359070px;}
.yd_c01031{bottom:918.359250px;}
.yb_c01031{bottom:937.440675px;}
.y43_c01031{bottom:937.440855px;}
.y42_c01031{bottom:956.520720px;}
.ya_c01031{bottom:956.521140px;}
.y41_c01031{bottom:956.521410px;}
.y40_c01031{bottom:975.960015px;}
.y9_c01031{bottom:976.319280px;}
.y3e_c01031{bottom:995.039700px;}
.y3f_c01031{bottom:995.039985px;}
.y8_c01031{bottom:995.400885px;}
.y3d_c01031{bottom:1014.480840px;}
.y7_c01031{bottom:1014.840090px;}
.y3c_c01031{bottom:1033.561380px;}
.y6_c01031{bottom:1033.919955px;}
.y5_c01031{bottom:1053.000000px;}
.y3b_c01031{bottom:1072.079955px;}
.y4_c01031{bottom:1078.559685px;}
.y3_c01031{bottom:1091.159340px;}
.y3a_c01031{bottom:1091.159820px;}
.y39_c01031{bottom:1109.880615px;}
.y2_c01031{bottom:1110.239775px;}
.y1_c01031{bottom:1148.399775px;}
.hd_c01031{height:44.586914px;}
.hc_c01031{height:45.369141px;}
.h14_c01031{height:46.151367px;}
.h8_c01031{height:47.085938px;}
.h13_c01031{height:48.375000px;}
.he_c01031{height:48.498047px;}
.h1_c01031{height:50.402344px;}
.h11_c01031{height:51.143555px;}
.h2_c01031{height:51.884766px;}
.h4_c01031{height:52.625977px;}
.hf_c01031{height:53.367188px;}
.ha_c01031{height:54.108398px;}
.hb_c01031{height:54.849609px;}
.h9_c01031{height:55.590820px;}
.h7_c01031{height:57.814453px;}
.h3_c01031{height:62.736328px;}
.h12_c01031{height:65.967773px;}
.h6_c01031{height:67.450195px;}
.h10_c01031{height:68.932617px;}
.h5_c01031{height:70.628906px;}
.h0_c01031{height:1263.000000px;}
.w0_c01031{width:892.500000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:295.559685px;}
.x9_c01031{left:358.918755px;}
.x3_c01031{left:359.999385px;}
.x4_c01031{left:392.759085px;}
.x6_c01031{left:418.318770px;}
.x7_c01031{left:424.798515px;}
.x5_c01031{left:431.639100px;}
.xb_c01031{left:437.398635px;}
.x8_c01031{left:444.239220px;}
.xa_c01031{left:450.359850px;}
.xc_c01031{left:560.879520px;}
.xd_c01031{left:593.639100px;}
.x2_c01031{left:691.199385px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls5_c01031{letter-spacing:-15.529593pt;}
.ls14_c01031{letter-spacing:-8.227200pt;}
.ls1b_c01031{letter-spacing:-5.989200pt;}
.ls4_c01031{letter-spacing:-4.974467pt;}
.lsf_c01031{letter-spacing:-4.775467pt;}
.ls1e_c01031{letter-spacing:-4.291267pt;}
.ls17_c01031{letter-spacing:-4.278000pt;}
.ls11_c01031{letter-spacing:-4.141200pt;}
.ls22_c01031{letter-spacing:-4.071000pt;}
.lse_c01031{letter-spacing:-4.061867pt;}
.ls13_c01031{letter-spacing:-3.827880pt;}
.ls21_c01031{letter-spacing:-3.575400pt;}
.ls16_c01031{letter-spacing:-2.821000pt;}
.ls1a_c01031{letter-spacing:-2.699667pt;}
.ls3_c01031{letter-spacing:-2.302933pt;}
.ls6_c01031{letter-spacing:-2.295533pt;}
.ls7_c01031{letter-spacing:-2.253540pt;}
.ls12_c01031{letter-spacing:-1.869220pt;}
.ls1c_c01031{letter-spacing:-1.642667pt;}
.ls1d_c01031{letter-spacing:-1.537253pt;}
.ls19_c01031{letter-spacing:-1.531340pt;}
.ls2_c01031{letter-spacing:-1.507333pt;}
.ls23_c01031{letter-spacing:-0.966580pt;}
.lsd_c01031{letter-spacing:-0.798133pt;}
.ls1_c01031{letter-spacing:-0.770667pt;}
.ls20_c01031{letter-spacing:-0.767740pt;}
.ls18_c01031{letter-spacing:-0.756613pt;}
.ls0_c01031{letter-spacing:0.000000pt;}
.ls10_c01031{letter-spacing:0.770667pt;}
.lsb_c01031{letter-spacing:0.793333pt;}
.lsa_c01031{letter-spacing:0.847267pt;}
.ls1f_c01031{letter-spacing:1.537253pt;}
.ls15_c01031{letter-spacing:2.302933pt;}
.ls9_c01031{letter-spacing:6.882133pt;}
.lsc_c01031{letter-spacing:7.683547pt;}
.ls8_c01031{letter-spacing:17.670933pt;}
.ws0_c01031{word-spacing:0.000000pt;}
._7_c01031{margin-left:-9.701333pt;}
._6_c01031{margin-left:-7.117364pt;}
._3_c01031{margin-left:-4.533333pt;}
._5_c01031{margin-left:-3.490759pt;}
._4_c01031{margin-left:-1.568318pt;}
._2_c01031{width:2.108108pt;}
._0_c01031{width:22.222369pt;}
._9_c01031{width:23.972328pt;}
._a_c01031{width:25.445800pt;}
._8_c01031{width:28.528405pt;}
._b_c01031{width:31.714954pt;}
._1_c01031{width:636.706913pt;}
.fsc_c01031{font-size:38.000000pt;}
.fsb_c01031{font-size:38.666667pt;}
.fs12_c01031{font-size:39.333333pt;}
.fsd_c01031{font-size:41.333333pt;}
.fs7_c01031{font-size:42.666667pt;}
.fs0_c01031{font-size:45.333333pt;}
.fs10_c01031{font-size:46.000000pt;}
.fs1_c01031{font-size:46.666667pt;}
.fs3_c01031{font-size:47.333333pt;}
.fse_c01031{font-size:48.000000pt;}
.fs9_c01031{font-size:48.666667pt;}
.fsa_c01031{font-size:49.333333pt;}
.fs8_c01031{font-size:50.000000pt;}
.fs6_c01031{font-size:52.000000pt;}
.fs2_c01031{font-size:55.333333pt;}
.fs11_c01031{font-size:59.333333pt;}
.fs5_c01031{font-size:60.666667pt;}
.fsf_c01031{font-size:62.000000pt;}
.fs4_c01031{font-size:64.000000pt;}
.y0_c01031{bottom:0.000000pt;}
.y38_c01031{bottom:167.680667pt;}
.y67_c01031{bottom:167.997987pt;}
.y36_c01031{bottom:184.957320pt;}
.y66_c01031{bottom:184.958373pt;}
.y37_c01031{bottom:184.960000pt;}
.y35_c01031{bottom:201.917720pt;}
.y65_c01031{bottom:201.918787pt;}
.y34_c01031{bottom:219.198733pt;}
.y64_c01031{bottom:219.518333pt;}
.y33_c01031{bottom:236.477493pt;}
.y63_c01031{bottom:236.478733pt;}
.y32_c01031{bottom:253.437907pt;}
.y62_c01031{bottom:253.759747pt;}
.y31_c01031{bottom:270.398293pt;}
.y61_c01031{bottom:270.720160pt;}
.y30_c01031{bottom:287.679320pt;}
.y60_c01031{bottom:287.680547pt;}
.y2f_c01031{bottom:304.318933pt;}
.y5f_c01031{bottom:304.640947pt;}
.y2e_c01031{bottom:321.599933pt;}
.y5e_c01031{bottom:321.919720pt;}
.y2d_c01031{bottom:338.239547pt;}
.y5d_c01031{bottom:338.560520pt;}
.y2c_c01031{bottom:355.520573pt;}
.y5b_c01031{bottom:355.839107pt;}
.y5c_c01031{bottom:355.839840pt;}
.y2b_c01031{bottom:372.799333pt;}
.y5a_c01031{bottom:373.120133pt;}
.y2a_c01031{bottom:389.759720pt;}
.y59_c01031{bottom:390.080520pt;}
.y29_c01031{bottom:406.719720pt;}
.y28_c01031{bottom:406.720320pt;}
.y57_c01031{bottom:407.358907pt;}
.y58_c01031{bottom:407.359867pt;}
.y56_c01031{bottom:424.319320pt;}
.y27_c01031{bottom:424.319867pt;}
.y26_c01031{bottom:441.279707pt;}
.y25_c01031{bottom:458.239707pt;}
.y55_c01031{bottom:475.198613pt;}
.y24_c01031{bottom:475.199707pt;}
.y22_c01031{bottom:492.159200pt;}
.y23_c01031{bottom:492.159707pt;}
.y54_c01031{bottom:492.479640pt;}
.y53_c01031{bottom:509.119240pt;}
.y21_c01031{bottom:509.119587pt;}
.y52_c01031{bottom:526.400253pt;}
.y20_c01031{bottom:526.400387pt;}
.y1f_c01031{bottom:543.039587pt;}
.y51_c01031{bottom:543.360653pt;}
.y1d_c01031{bottom:560.639427pt;}
.y1e_c01031{bottom:560.639573pt;}
.y1c_c01031{bottom:577.280227pt;}
.y1b_c01031{bottom:577.280373pt;}
.y50_c01031{bottom:594.558267pt;}
.y1a_c01031{bottom:594.559147pt;}
.y19_c01031{bottom:611.199947pt;}
.y4f_c01031{bottom:611.518653pt;}
.y18_c01031{bottom:628.478720pt;}
.y4e_c01031{bottom:628.479067pt;}
.y17_c01031{bottom:645.439133pt;}
.y4d_c01031{bottom:645.439453pt;}
.y16_c01031{bottom:662.720133pt;}
.y4c_c01031{bottom:662.720320pt;}
.y15_c01031{bottom:679.680547pt;}
.y4b_c01031{bottom:679.680707pt;}
.y14_c01031{bottom:696.959307pt;}
.y4a_c01031{bottom:696.959467pt;}
.y13_c01031{bottom:713.919693pt;}
.y49_c01031{bottom:714.239720pt;}
.y48_c01031{bottom:731.200120pt;}
.y12_c01031{bottom:731.200720pt;}
.y47_c01031{bottom:748.479413pt;}
.y11_c01031{bottom:748.479493pt;}
.y46_c01031{bottom:765.760053pt;}
.y10_c01031{bottom:765.760493pt;}
.y45_c01031{bottom:782.080080pt;}
.yf_c01031{bottom:782.080520pt;}
.y44_c01031{bottom:799.039960pt;}
.ye_c01031{bottom:799.359293pt;}
.yc_c01031{bottom:816.319173pt;}
.yd_c01031{bottom:816.319333pt;}
.yb_c01031{bottom:833.280600pt;}
.y43_c01031{bottom:833.280760pt;}
.y42_c01031{bottom:850.240640pt;}
.ya_c01031{bottom:850.241013pt;}
.y41_c01031{bottom:850.241253pt;}
.y40_c01031{bottom:867.520013pt;}
.y9_c01031{bottom:867.839360pt;}
.y3e_c01031{bottom:884.479733pt;}
.y3f_c01031{bottom:884.479987pt;}
.y8_c01031{bottom:884.800787pt;}
.y3d_c01031{bottom:901.760747pt;}
.y7_c01031{bottom:902.080080pt;}
.y3c_c01031{bottom:918.721227pt;}
.y6_c01031{bottom:919.039960pt;}
.y5_c01031{bottom:936.000000pt;}
.y3b_c01031{bottom:952.959960pt;}
.y4_c01031{bottom:958.719720pt;}
.y3_c01031{bottom:969.919413pt;}
.y3a_c01031{bottom:969.919840pt;}
.y39_c01031{bottom:986.560547pt;}
.y2_c01031{bottom:986.879800pt;}
.y1_c01031{bottom:1020.799800pt;}
.hd_c01031{height:39.632812pt;}
.hc_c01031{height:40.328125pt;}
.h14_c01031{height:41.023438pt;}
.h8_c01031{height:41.854167pt;}
.h13_c01031{height:43.000000pt;}
.he_c01031{height:43.109375pt;}
.h1_c01031{height:44.802083pt;}
.h11_c01031{height:45.460938pt;}
.h2_c01031{height:46.119792pt;}
.h4_c01031{height:46.778646pt;}
.hf_c01031{height:47.437500pt;}
.ha_c01031{height:48.096354pt;}
.hb_c01031{height:48.755208pt;}
.h9_c01031{height:49.414063pt;}
.h7_c01031{height:51.390625pt;}
.h3_c01031{height:55.765625pt;}
.h12_c01031{height:58.638021pt;}
.h6_c01031{height:59.955729pt;}
.h10_c01031{height:61.273438pt;}
.h5_c01031{height:62.781250pt;}
.h0_c01031{height:1122.666667pt;}
.w0_c01031{width:793.333333pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:262.719720pt;}
.x9_c01031{left:319.038893pt;}
.x3_c01031{left:319.999453pt;}
.x4_c01031{left:349.119187pt;}
.x6_c01031{left:371.838907pt;}
.x7_c01031{left:377.598680pt;}
.x5_c01031{left:383.679200pt;}
.xb_c01031{left:388.798787pt;}
.x8_c01031{left:394.879307pt;}
.xa_c01031{left:400.319867pt;}
.xc_c01031{left:498.559573pt;}
.xd_c01031{left:527.679200pt;}
.x2_c01031{left:614.399453pt;}
}





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

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_27806ca2f2887107a9e0e382.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_7d8d0c6c7baee07798949994.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_bb578b01ba558b641040795a.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.432129;font-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_c01032{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m12_c01032{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m10_c01032{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.me_c01032{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m16_c01032{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m15_c01032{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m1_c01032{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.mb_c01032{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m3_c01032{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m9_c01032{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.mc_c01032{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.ma_c01032{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m7_c01032{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m8_c01032{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m13_c01032{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m5_c01032{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m14_c01032{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m0_c01032{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m11_c01032{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m6_c01032{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_c01032{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.mf_c01032{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m4_c01032{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m2_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01032{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.lsa_c01032{letter-spacing:-5.481000px;}
.ls7_c01032{letter-spacing:-5.250450px;}
.lsf_c01032{letter-spacing:-5.018400px;}
.ls14_c01032{letter-spacing:-4.827675px;}
.ls18_c01032{letter-spacing:-4.384950px;}
.ls16_c01032{letter-spacing:-4.172775px;}
.ls12_c01032{letter-spacing:-4.097993px;}
.lsd_c01032{letter-spacing:-3.628125px;}
.ls4_c01032{letter-spacing:-3.345600px;}
.ls1b_c01032{letter-spacing:-3.334500px;}
.ls13_c01032{letter-spacing:-3.173625px;}
.ls1c_c01032{letter-spacing:-3.105375px;}
.ls1a_c01032{letter-spacing:-2.968875px;}
.lsb_c01032{letter-spacing:-2.582475px;}
.ls19_c01032{letter-spacing:-2.570940px;}
.ls6_c01032{letter-spacing:-2.508690px;}
.lsc_c01032{letter-spacing:-2.499525px;}
.ls2_c01032{letter-spacing:-1.673310px;}
.ls1e_c01032{letter-spacing:-1.098825px;}
.ls17_c01032{letter-spacing:-1.087403px;}
.ls15_c01032{letter-spacing:-1.064018px;}
.ls1_c01032{letter-spacing:-0.836400px;}
.ls5_c01032{letter-spacing:0.000000px;}
.ls11_c01032{letter-spacing:0.836400px;}
.ls9_c01032{letter-spacing:0.956250px;}
.ls3_c01032{letter-spacing:0.980025px;}
.ls0_c01032{letter-spacing:1.673310px;}
.ls10_c01032{letter-spacing:4.635900px;}
.lse_c01032{letter-spacing:5.018400px;}
.ls1d_c01032{letter-spacing:17.419500px;}
.ls8_c01032{letter-spacing:17.559300px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:0.000000px;}
._c_c01032{margin-left:-27.486174px;}
._a_c01032{margin-left:-11.616186px;}
._4_c01032{margin-left:-9.557768px;}
._6_c01032{margin-left:-7.950783px;}
._d_c01032{margin-left:-6.946568px;}
._7_c01032{margin-left:-4.482984px;}
._b_c01032{margin-left:-3.338945px;}
._3_c01032{margin-left:-1.846409px;}
._9_c01032{width:1.481341px;}
._2_c01032{width:3.060878px;}
._8_c01032{width:4.790756px;}
._5_c01032{width:6.201483px;}
._e_c01032{width:9.773882px;}
._0_c01032{width:22.674901px;}
._f_c01032{width:25.397398px;}
._12_c01032{width:27.029398px;}
._13_c01032{width:30.377439px;}
._11_c01032{width:32.078197px;}
._10_c01032{width:33.718959px;}
._14_c01032{width:35.320460px;}
._1_c01032{width:691.640421px;}
.fc0_c01032{color:transparent;}
.fs2_c01032{font-size:43.500000px;}
.fs7_c01032{font-size:44.250000px;}
.fsc_c01032{font-size:45.000000px;}
.fsa_c01032{font-size:46.500000px;}
.fs0_c01032{font-size:51.000000px;}
.fs5_c01032{font-size:52.500000px;}
.fs6_c01032{font-size:53.250000px;}
.fs4_c01032{font-size:54.000000px;}
.fs1_c01032{font-size:54.750000px;}
.fs3_c01032{font-size:56.250000px;}
.fsb_c01032{font-size:65.250000px;}
.fs9_c01032{font-size:68.250000px;}
.fs8_c01032{font-size:69.750000px;}
.y0_c01032{bottom:0.000000px;}
.y6f_c01032{bottom:184.319850px;}
.y3a_c01032{bottom:184.679490px;}
.y6e_c01032{bottom:203.040600px;}
.y39_c01032{bottom:203.759925px;}
.y6d_c01032{bottom:222.118110px;}
.y38_c01032{bottom:222.479490px;}
.y6c_c01032{bottom:241.556715px;}
.y37_c01032{bottom:241.920645px;}
.y6b_c01032{bottom:260.637180px;}
.y36_c01032{bottom:261.001080px;}
.y6a_c01032{bottom:280.078305px;}
.y34_c01032{bottom:280.438575px;}
.y35_c01032{bottom:280.439685px;}
.y69_c01032{bottom:299.516925px;}
.y33_c01032{bottom:299.519010px;}
.y68_c01032{bottom:318.597375px;}
.y32_c01032{bottom:318.960165px;}
.y67_c01032{bottom:337.677825px;}
.y31_c01032{bottom:338.040600px;}
.y66_c01032{bottom:356.758275px;}
.y2f_c01032{bottom:357.119610px;}
.y30_c01032{bottom:357.120435px;}
.y65_c01032{bottom:376.199415px;}
.y2e_c01032{bottom:376.200045px;}
.y64_c01032{bottom:395.279865px;}
.y2d_c01032{bottom:395.638665px;}
.y63_c01032{bottom:414.360300px;}
.y2c_c01032{bottom:414.719130px;}
.y2a_c01032{bottom:433.799085px;}
.y2b_c01032{bottom:433.799565px;}
.y62_c01032{bottom:433.800000px;}
.y61_c01032{bottom:452.520900px;}
.y29_c01032{bottom:452.879520px;}
.y27_c01032{bottom:472.678020px;}
.y28_c01032{bottom:472.679670px;}
.y60_c01032{bottom:472.679940px;}
.y5f_c01032{bottom:491.400855px;}
.y26_c01032{bottom:491.758455px;}
.y5e_c01032{bottom:510.839475px;}
.y25_c01032{bottom:511.199610px;}
.y5d_c01032{bottom:529.560405px;}
.y24_c01032{bottom:529.919175px;}
.y5c_c01032{bottom:548.999010px;}
.y23_c01032{bottom:549.360300px;}
.y21_c01032{bottom:568.078125px;}
.y22_c01032{bottom:568.079400px;}
.y5b_c01032{bottom:568.079460px;}
.y5a_c01032{bottom:587.161080px;}
.y20_c01032{bottom:587.519280px;}
.y1f_c01032{bottom:606.240195px;}
.y59_c01032{bottom:606.241515px;}
.y1e_c01032{bottom:625.678800px;}
.y58_c01032{bottom:625.680135px;}
.y56_c01032{bottom:644.759100px;}
.y57_c01032{bottom:644.760135px;}
.y1d_c01032{bottom:645.117420px;}
.y55_c01032{bottom:663.839565px;}
.y1c_c01032{bottom:664.199040px;}
.y1b_c01032{bottom:682.918605px;}
.y54_c01032{bottom:682.920000px;}
.y53_c01032{bottom:702.000000px;}
.y1a_c01032{bottom:702.359730px;}
.y52_c01032{bottom:721.441380px;}
.y19_c01032{bottom:721.798350px;}
.y18_c01032{bottom:741.239505px;}
.y51_c01032{bottom:741.240870px;}
.y17_c01032{bottom:759.959055px;}
.y50_c01032{bottom:759.959970px;}
.y4f_c01032{bottom:779.039985px;}
.y16_c01032{bottom:779.400195px;}
.y4d_c01032{bottom:798.119565px;}
.y15_c01032{bottom:798.119745px;}
.y4e_c01032{bottom:798.120030px;}
.y4c_c01032{bottom:817.560705px;}
.y14_c01032{bottom:817.560900px;}
.y4b_c01032{bottom:836.639670px;}
.y13_c01032{bottom:836.999520px;}
.y4a_c01032{bottom:855.720135px;}
.y11_c01032{bottom:856.079385px;}
.y12_c01032{bottom:856.079955px;}
.y49_c01032{bottom:874.800570px;}
.y10_c01032{bottom:875.159820px;}
.yf_c01032{bottom:875.160240px;}
.y47_c01032{bottom:894.239595px;}
.y48_c01032{bottom:894.239865px;}
.ye_c01032{bottom:894.601365px;}
.y46_c01032{bottom:913.680720px;}
.yd_c01032{bottom:914.039985px;}
.yb_c01032{bottom:933.478800px;}
.y45_c01032{bottom:933.479250px;}
.yc_c01032{bottom:933.480840px;}
.ya_c01032{bottom:952.559265px;}
.y44_c01032{bottom:952.559715px;}
.y9_c01032{bottom:971.997870px;}
.y43_c01032{bottom:971.998335px;}
.y8_c01032{bottom:991.078305px;}
.y42_c01032{bottom:991.078770px;}
.y7_c01032{bottom:1010.158770px;}
.y41_c01032{bottom:1010.159220px;}
.y6_c01032{bottom:1029.239205px;}
.y40_c01032{bottom:1029.239655px;}
.y3f_c01032{bottom:1047.960600px;}
.y5_c01032{bottom:1048.319670px;}
.y3e_c01032{bottom:1067.041035px;}
.y4_c01032{bottom:1067.400105px;}
.y3d_c01032{bottom:1086.479640px;}
.y3_c01032{bottom:1086.841260px;}
.y3b_c01032{bottom:1105.919310px;}
.y3c_c01032{bottom:1105.920600px;}
.y2_c01032{bottom:1106.640750px;}
.y1_c01032{bottom:1145.159820px;}
.h3_c01032{height:45.369141px;}
.h8_c01032{height:46.151367px;}
.hd_c01032{height:46.933594px;}
.hb_c01032{height:48.498047px;}
.h1_c01032{height:50.402344px;}
.h6_c01032{height:51.884766px;}
.h7_c01032{height:52.625977px;}
.h5_c01032{height:53.367188px;}
.h2_c01032{height:54.108398px;}
.h4_c01032{height:55.590820px;}
.hc_c01032{height:64.485352px;}
.ha_c01032{height:67.450195px;}
.h9_c01032{height:68.932617px;}
.h0_c01032{height:1263.000000px;}
.w0_c01032{width:892.500000px;}
.x0_c01032{left:0.000000px;}
.x1_c01032{left:299.158785px;}
.x5_c01032{left:362.878965px;}
.x3_c01032{left:363.959385px;}
.x8_c01032{left:388.798920px;}
.x4_c01032{left:408.599070px;}
.x9_c01032{left:414.719565px;}
.xa_c01032{left:421.199385px;}
.x6_c01032{left:428.039985px;}
.x7_c01032{left:434.878920px;}
.xb_c01032{left:440.638500px;}
.xc_c01032{left:460.079400px;}
.x10_c01032{left:563.398770px;}
.xd_c01032{left:564.478530px;}
.xf_c01032{left:596.158770px;}
.xe_c01032{left:597.239820px;}
.x2_c01032{left:695.159370px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.lsa_c01032{letter-spacing:-4.872000pt;}
.ls7_c01032{letter-spacing:-4.667067pt;}
.lsf_c01032{letter-spacing:-4.460800pt;}
.ls14_c01032{letter-spacing:-4.291267pt;}
.ls18_c01032{letter-spacing:-3.897733pt;}
.ls16_c01032{letter-spacing:-3.709133pt;}
.ls12_c01032{letter-spacing:-3.642660pt;}
.lsd_c01032{letter-spacing:-3.225000pt;}
.ls4_c01032{letter-spacing:-2.973867pt;}
.ls1b_c01032{letter-spacing:-2.964000pt;}
.ls13_c01032{letter-spacing:-2.821000pt;}
.ls1c_c01032{letter-spacing:-2.760333pt;}
.ls1a_c01032{letter-spacing:-2.639000pt;}
.lsb_c01032{letter-spacing:-2.295533pt;}
.ls19_c01032{letter-spacing:-2.285280pt;}
.ls6_c01032{letter-spacing:-2.229947pt;}
.lsc_c01032{letter-spacing:-2.221800pt;}
.ls2_c01032{letter-spacing:-1.487387pt;}
.ls1e_c01032{letter-spacing:-0.976733pt;}
.ls17_c01032{letter-spacing:-0.966580pt;}
.ls15_c01032{letter-spacing:-0.945793pt;}
.ls1_c01032{letter-spacing:-0.743467pt;}
.ls5_c01032{letter-spacing:0.000000pt;}
.ls11_c01032{letter-spacing:0.743467pt;}
.ls9_c01032{letter-spacing:0.850000pt;}
.ls3_c01032{letter-spacing:0.871133pt;}
.ls0_c01032{letter-spacing:1.487387pt;}
.ls10_c01032{letter-spacing:4.120800pt;}
.lse_c01032{letter-spacing:4.460800pt;}
.ls1d_c01032{letter-spacing:15.484000pt;}
.ls8_c01032{letter-spacing:15.608267pt;}
.ws0_c01032{word-spacing:0.000000pt;}
._c_c01032{margin-left:-24.432155pt;}
._a_c01032{margin-left:-10.325499pt;}
._4_c01032{margin-left:-8.495794pt;}
._6_c01032{margin-left:-7.067363pt;}
._d_c01032{margin-left:-6.174727pt;}
._7_c01032{margin-left:-3.984874pt;}
._b_c01032{margin-left:-2.967951pt;}
._3_c01032{margin-left:-1.641252pt;}
._9_c01032{width:1.316748pt;}
._2_c01032{width:2.720780pt;}
._8_c01032{width:4.258450pt;}
._5_c01032{width:5.512429pt;}
._e_c01032{width:8.687896pt;}
._0_c01032{width:20.155468pt;}
._f_c01032{width:22.575465pt;}
._12_c01032{width:24.026132pt;}
._13_c01032{width:27.002168pt;}
._11_c01032{width:28.513953pt;}
._10_c01032{width:29.972408pt;}
._14_c01032{width:31.395964pt;}
._1_c01032{width:614.791485pt;}
.fs2_c01032{font-size:38.666667pt;}
.fs7_c01032{font-size:39.333333pt;}
.fsc_c01032{font-size:40.000000pt;}
.fsa_c01032{font-size:41.333333pt;}
.fs0_c01032{font-size:45.333333pt;}
.fs5_c01032{font-size:46.666667pt;}
.fs6_c01032{font-size:47.333333pt;}
.fs4_c01032{font-size:48.000000pt;}
.fs1_c01032{font-size:48.666667pt;}
.fs3_c01032{font-size:50.000000pt;}
.fsb_c01032{font-size:58.000000pt;}
.fs9_c01032{font-size:60.666667pt;}
.fs8_c01032{font-size:62.000000pt;}
.y0_c01032{bottom:0.000000pt;}
.y6f_c01032{bottom:163.839867pt;}
.y3a_c01032{bottom:164.159547pt;}
.y6e_c01032{bottom:180.480533pt;}
.y39_c01032{bottom:181.119933pt;}
.y6d_c01032{bottom:197.438320pt;}
.y38_c01032{bottom:197.759547pt;}
.y6c_c01032{bottom:214.717080pt;}
.y37_c01032{bottom:215.040573pt;}
.y6b_c01032{bottom:231.677493pt;}
.y36_c01032{bottom:232.000960pt;}
.y6a_c01032{bottom:248.958493pt;}
.y34_c01032{bottom:249.278733pt;}
.y35_c01032{bottom:249.279720pt;}
.y69_c01032{bottom:266.237267pt;}
.y33_c01032{bottom:266.239120pt;}
.y68_c01032{bottom:283.197667pt;}
.y32_c01032{bottom:283.520147pt;}
.y67_c01032{bottom:300.158067pt;}
.y31_c01032{bottom:300.480533pt;}
.y66_c01032{bottom:317.118467pt;}
.y2f_c01032{bottom:317.439653pt;}
.y30_c01032{bottom:317.440387pt;}
.y65_c01032{bottom:334.399480pt;}
.y2e_c01032{bottom:334.400040pt;}
.y64_c01032{bottom:351.359880pt;}
.y2d_c01032{bottom:351.678813pt;}
.y63_c01032{bottom:368.320267pt;}
.y2c_c01032{bottom:368.639227pt;}
.y2a_c01032{bottom:385.599187pt;}
.y2b_c01032{bottom:385.599613pt;}
.y62_c01032{bottom:385.600000pt;}
.y61_c01032{bottom:402.240800pt;}
.y29_c01032{bottom:402.559573pt;}
.y27_c01032{bottom:420.158240pt;}
.y28_c01032{bottom:420.159707pt;}
.y60_c01032{bottom:420.159947pt;}
.y5f_c01032{bottom:436.800760pt;}
.y26_c01032{bottom:437.118627pt;}
.y5e_c01032{bottom:454.079533pt;}
.y25_c01032{bottom:454.399653pt;}
.y5d_c01032{bottom:470.720360pt;}
.y24_c01032{bottom:471.039267pt;}
.y5c_c01032{bottom:487.999120pt;}
.y23_c01032{bottom:488.320267pt;}
.y21_c01032{bottom:504.958333pt;}
.y22_c01032{bottom:504.959467pt;}
.y5b_c01032{bottom:504.959520pt;}
.y5a_c01032{bottom:521.920960pt;}
.y20_c01032{bottom:522.239360pt;}
.y1f_c01032{bottom:538.880173pt;}
.y59_c01032{bottom:538.881347pt;}
.y1e_c01032{bottom:556.158933pt;}
.y58_c01032{bottom:556.160120pt;}
.y56_c01032{bottom:573.119200pt;}
.y57_c01032{bottom:573.120120pt;}
.y1d_c01032{bottom:573.437707pt;}
.y55_c01032{bottom:590.079613pt;}
.y1c_c01032{bottom:590.399147pt;}
.y1b_c01032{bottom:607.038760pt;}
.y54_c01032{bottom:607.040000pt;}
.y53_c01032{bottom:624.000000pt;}
.y1a_c01032{bottom:624.319760pt;}
.y52_c01032{bottom:641.281227pt;}
.y19_c01032{bottom:641.598533pt;}
.y18_c01032{bottom:658.879560pt;}
.y51_c01032{bottom:658.880773pt;}
.y17_c01032{bottom:675.519160pt;}
.y50_c01032{bottom:675.519973pt;}
.y4f_c01032{bottom:692.479987pt;}
.y16_c01032{bottom:692.800173pt;}
.y4d_c01032{bottom:709.439613pt;}
.y15_c01032{bottom:709.439773pt;}
.y4e_c01032{bottom:709.440027pt;}
.y4c_c01032{bottom:726.720627pt;}
.y14_c01032{bottom:726.720800pt;}
.y4b_c01032{bottom:743.679707pt;}
.y13_c01032{bottom:743.999573pt;}
.y4a_c01032{bottom:760.640120pt;}
.y11_c01032{bottom:760.959453pt;}
.y12_c01032{bottom:760.959960pt;}
.y49_c01032{bottom:777.600507pt;}
.y10_c01032{bottom:777.919840pt;}
.yf_c01032{bottom:777.920213pt;}
.y47_c01032{bottom:794.879640pt;}
.y48_c01032{bottom:794.879880pt;}
.ye_c01032{bottom:795.201213pt;}
.y46_c01032{bottom:812.160640pt;}
.yd_c01032{bottom:812.479987pt;}
.yb_c01032{bottom:829.758933pt;}
.y45_c01032{bottom:829.759333pt;}
.yc_c01032{bottom:829.760747pt;}
.ya_c01032{bottom:846.719347pt;}
.y44_c01032{bottom:846.719747pt;}
.y9_c01032{bottom:863.998107pt;}
.y43_c01032{bottom:863.998520pt;}
.y8_c01032{bottom:880.958493pt;}
.y42_c01032{bottom:880.958907pt;}
.y7_c01032{bottom:897.918907pt;}
.y41_c01032{bottom:897.919307pt;}
.y6_c01032{bottom:914.879293pt;}
.y40_c01032{bottom:914.879693pt;}
.y3f_c01032{bottom:931.520533pt;}
.y5_c01032{bottom:931.839707pt;}
.y3e_c01032{bottom:948.480920pt;}
.y4_c01032{bottom:948.800093pt;}
.y3d_c01032{bottom:965.759680pt;}
.y3_c01032{bottom:966.081120pt;}
.y3b_c01032{bottom:983.039387pt;}
.y3c_c01032{bottom:983.040533pt;}
.y2_c01032{bottom:983.680667pt;}
.y1_c01032{bottom:1017.919840pt;}
.h3_c01032{height:40.328125pt;}
.h8_c01032{height:41.023438pt;}
.hd_c01032{height:41.718750pt;}
.hb_c01032{height:43.109375pt;}
.h1_c01032{height:44.802083pt;}
.h6_c01032{height:46.119792pt;}
.h7_c01032{height:46.778646pt;}
.h5_c01032{height:47.437500pt;}
.h2_c01032{height:48.096354pt;}
.h4_c01032{height:49.414063pt;}
.hc_c01032{height:57.320313pt;}
.ha_c01032{height:59.955729pt;}
.h9_c01032{height:61.273438pt;}
.h0_c01032{height:1122.666667pt;}
.w0_c01032{width:793.333333pt;}
.x0_c01032{left:0.000000pt;}
.x1_c01032{left:265.918920pt;}
.x5_c01032{left:322.559080pt;}
.x3_c01032{left:323.519453pt;}
.x8_c01032{left:345.599040pt;}
.x4_c01032{left:363.199173pt;}
.x9_c01032{left:368.639613pt;}
.xa_c01032{left:374.399453pt;}
.x6_c01032{left:380.479987pt;}
.x7_c01032{left:386.559040pt;}
.xb_c01032{left:391.678667pt;}
.xc_c01032{left:408.959467pt;}
.x10_c01032{left:500.798907pt;}
.xd_c01032{left:501.758693pt;}
.xf_c01032{left:529.918907pt;}
.xe_c01032{left:530.879840pt;}
.x2_c01032{left:617.919440pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_10c0b4c9a18a49e1e7f96038.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_fe6a44f6781c67959fccd9aa.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_bfd2d7ea648805c6a6957923.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_bcd3b9f1b8178e3e5464ebc9.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.432129;font-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_c01033{transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);}
.m1_c01033{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.mf_c01033{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m2_c01033{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.me_c01033{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.ma_c01033{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m3_c01033{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m11_c01033{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m0_c01033{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.md_c01033{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m6_c01033{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m4_c01033{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m10_c01033{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_c01033{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.mb_c01033{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m9_c01033{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m5_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01033{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m12_c01033{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.lsc_c01033{letter-spacing:-7.599375px;}
.lsf_c01033{letter-spacing:-5.076450px;}
.ls13_c01033{letter-spacing:-4.894313px;}
.lsb_c01033{letter-spacing:-4.702350px;}
.ls15_c01033{letter-spacing:-4.347000px;}
.ls14_c01033{letter-spacing:-4.207455px;}
.ls10_c01033{letter-spacing:-4.152600px;}
.ls11_c01033{letter-spacing:-4.140300px;}
.ls8_c01033{letter-spacing:-4.079250px;}
.lsa_c01033{letter-spacing:-4.024125px;}
.lse_c01033{letter-spacing:-3.805725px;}
.ls2_c01033{letter-spacing:-3.320460px;}
.ls3_c01033{letter-spacing:-2.494800px;}
.ls9_c01033{letter-spacing:-2.460150px;}
.ls6_c01033{letter-spacing:-1.816875px;}
.ls7_c01033{letter-spacing:-1.744200px;}
.ls5_c01033{letter-spacing:-1.663740px;}
.ls4_c01033{letter-spacing:0.000000px;}
.ls1_c01033{letter-spacing:0.831600px;}
.ls12_c01033{letter-spacing:0.892500px;}
.lsd_c01033{letter-spacing:11.406450px;}
.ls0_c01033{letter-spacing:13.294800px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01033{word-spacing:0.000000px;}
._5_c01033{margin-left:-39.220482px;}
._6_c01033{margin-left:-15.157584px;}
._a_c01033{margin-left:-13.564767px;}
._4_c01033{margin-left:-11.064982px;}
._9_c01033{margin-left:-9.552849px;}
._2_c01033{margin-left:-8.325471px;}
._b_c01033{margin-left:-7.305328px;}
._3_c01033{margin-left:-5.972267px;}
._7_c01033{margin-left:-4.829494px;}
._1_c01033{margin-left:-2.808897px;}
._8_c01033{margin-left:-1.620930px;}
._0_c01033{width:683.305923px;}
.fc0_c01033{color:transparent;}
.fsb_c01033{font-size:42.000000px;}
.fs9_c01033{font-size:43.500000px;}
.fs7_c01033{font-size:46.500000px;}
.fsa_c01033{font-size:51.000000px;}
.fs8_c01033{font-size:52.500000px;}
.fs5_c01033{font-size:53.250000px;}
.fs0_c01033{font-size:54.000000px;}
.fs4_c01033{font-size:54.750000px;}
.fs3_c01033{font-size:55.500000px;}
.fs2_c01033{font-size:56.250000px;}
.fs1_c01033{font-size:58.500000px;}
.fs6_c01033{font-size:70.500000px;}
.y0_c01033{bottom:0.000000px;}
.y68_c01033{bottom:182.881515px;}
.y38_c01033{bottom:182.881950px;}
.y67_c01033{bottom:201.961050px;}
.y37_c01033{bottom:201.961485px;}
.y36_c01033{bottom:221.041035px;}
.y66_c01033{bottom:221.041050px;}
.y35_c01033{bottom:240.120570px;}
.y65_c01033{bottom:240.480540px;}
.y34_c01033{bottom:258.839625px;}
.y64_c01033{bottom:259.201035px;}
.y33_c01033{bottom:278.280900px;}
.y32_c01033{bottom:297.000000px;}
.y31_c01033{bottom:297.000615px;}
.y63_c01033{bottom:297.360510px;}
.y62_c01033{bottom:316.800540px;}
.y30_c01033{bottom:316.801140px;}
.y61_c01033{bottom:336.241815px;}
.y2f_c01033{bottom:336.242415px;}
.y2e_c01033{bottom:355.321950px;}
.y60_c01033{bottom:355.680405px;}
.y2d_c01033{bottom:374.042445px;}
.y5f_c01033{bottom:374.400900px;}
.y2c_c01033{bottom:393.121995px;}
.y5e_c01033{bottom:393.480885px;}
.y2b_c01033{bottom:412.201545px;}
.y5d_c01033{bottom:412.563060px;}
.y2a_c01033{bottom:431.640750px;}
.y5c_c01033{bottom:432.001650px;}
.y29_c01033{bottom:450.361545px;}
.y28_c01033{bottom:450.365115px;}
.y5b_c01033{bottom:450.722145px;}
.y27_c01033{bottom:469.803705px;}
.y5a_c01033{bottom:470.163420px;}
.y26_c01033{bottom:488.883240px;}
.y59_c01033{bottom:489.602010px;}
.y25_c01033{bottom:509.044050px;}
.y58_c01033{bottom:509.402520px;}
.y24_c01033{bottom:528.482640px;}
.y57_c01033{bottom:528.841125px;}
.y23_c01033{bottom:547.562190px;}
.y56_c01033{bottom:547.920660px;}
.y22_c01033{bottom:566.641725px;}
.y55_c01033{bottom:567.000210px;}
.y21_c01033{bottom:586.083000px;}
.y54_c01033{bottom:586.441470px;}
.y20_c01033{bottom:605.162550px;}
.y53_c01033{bottom:605.521020px;}
.y1f_c01033{bottom:623.881605px;}
.y52_c01033{bottom:624.241515px;}
.y51_c01033{bottom:642.960570px;}
.y1e_c01033{bottom:642.961140px;}
.y1d_c01033{bottom:661.681635px;}
.y50_c01033{bottom:662.038785px;}
.y4f_c01033{bottom:680.759280px;}
.y1c_c01033{bottom:680.761185px;}
.y1b_c01033{bottom:699.841185px;}
.y4e_c01033{bottom:700.199325px;}
.y1a_c01033{bottom:719.279895px;}
.y4d_c01033{bottom:719.640585px;}
.y19_c01033{bottom:738.721155px;}
.y4c_c01033{bottom:739.079175px;}
.y18_c01033{bottom:758.160420px;}
.y4b_c01033{bottom:758.520450px;}
.y17_c01033{bottom:777.601320px;}
.y4a_c01033{bottom:777.960480px;}
.y49_c01033{bottom:797.040030px;}
.y15_c01033{bottom:797.040315px;}
.y16_c01033{bottom:797.040615px;}
.y48_c01033{bottom:816.840540px;}
.y14_c01033{bottom:816.840840px;}
.y13_c01033{bottom:835.200855px;}
.y47_c01033{bottom:835.561335px;}
.y46_c01033{bottom:854.641290px;}
.y12_c01033{bottom:854.642115px;}
.y11_c01033{bottom:873.361170px;}
.y45_c01033{bottom:873.362565px;}
.y10_c01033{bottom:892.440720px;}
.y44_c01033{bottom:892.803840px;}
.yf_c01033{bottom:911.881995px;}
.y43_c01033{bottom:911.883390px;}
.y42_c01033{bottom:931.321980px;}
.ye_c01033{bottom:931.322025px;}
.y41_c01033{bottom:950.401515px;}
.yd_c01033{bottom:950.401560px;}
.y40_c01033{bottom:969.842790px;}
.yc_c01033{bottom:969.842835px;}
.yb_c01033{bottom:989.281425px;}
.y3f_c01033{bottom:989.282820px;}
.ya_c01033{bottom:1008.360975px;}
.y3e_c01033{bottom:1008.362370px;}
.y9_c01033{bottom:1027.081470px;}
.y3d_c01033{bottom:1027.082865px;}
.y8_c01033{bottom:1046.161005px;}
.y7_c01033{bottom:1046.161335px;}
.y3c_c01033{bottom:1046.162400px;}
.y6_c01033{bottom:1065.240870px;}
.y5_c01033{bottom:1065.241500px;}
.y3b_c01033{bottom:1065.241950px;}
.y4_c01033{bottom:1084.680090px;}
.y3_c01033{bottom:1084.680585px;}
.y3a_c01033{bottom:1084.681980px;}
.y2_c01033{bottom:1103.760135px;}
.y39_c01033{bottom:1103.761530px;}
.y1_c01033{bottom:1142.640105px;}
.hd_c01033{height:43.804688px;}
.ha_c01033{height:45.369141px;}
.h8_c01033{height:46.863281px;}
.hb_c01033{height:50.402344px;}
.h9_c01033{height:51.500244px;}
.h6_c01033{height:52.235962px;}
.h1_c01033{height:52.971680px;}
.h5_c01033{height:53.707397px;}
.h4_c01033{height:54.443115px;}
.h3_c01033{height:55.178833px;}
.hc_c01033{height:55.590820px;}
.h2_c01033{height:57.814453px;}
.h7_c01033{height:69.157471px;}
.h0_c01033{height:1263.000000px;}
.w0_c01033{width:892.500000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:361.439685px;}
.x3_c01033{left:413.279250px;}
.x6_c01033{left:425.879520px;}
.x8_c01033{left:432.359250px;}
.x5_c01033{left:439.199850px;}
.x4_c01033{left:445.679670px;}
.x9_c01033{left:452.159415px;}
.x7_c01033{left:465.118785px;}
.xa_c01033{left:561.600075px;}
.xc_c01033{left:562.678800px;}
.xb_c01033{left:568.799520px;}
.x2_c01033{left:691.919535px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.lsc_c01033{letter-spacing:-6.755000pt;}
.lsf_c01033{letter-spacing:-4.512400pt;}
.ls13_c01033{letter-spacing:-4.350500pt;}
.lsb_c01033{letter-spacing:-4.179867pt;}
.ls15_c01033{letter-spacing:-3.864000pt;}
.ls14_c01033{letter-spacing:-3.739960pt;}
.ls10_c01033{letter-spacing:-3.691200pt;}
.ls11_c01033{letter-spacing:-3.680267pt;}
.ls8_c01033{letter-spacing:-3.626000pt;}
.lsa_c01033{letter-spacing:-3.577000pt;}
.lse_c01033{letter-spacing:-3.382867pt;}
.ls2_c01033{letter-spacing:-2.951520pt;}
.ls3_c01033{letter-spacing:-2.217600pt;}
.ls9_c01033{letter-spacing:-2.186800pt;}
.ls6_c01033{letter-spacing:-1.615000pt;}
.ls7_c01033{letter-spacing:-1.550400pt;}
.ls5_c01033{letter-spacing:-1.478880pt;}
.ls4_c01033{letter-spacing:0.000000pt;}
.ls1_c01033{letter-spacing:0.739200pt;}
.ls12_c01033{letter-spacing:0.793333pt;}
.lsd_c01033{letter-spacing:10.139067pt;}
.ls0_c01033{letter-spacing:11.817600pt;}
.ws0_c01033{word-spacing:0.000000pt;}
._5_c01033{margin-left:-34.862651pt;}
._6_c01033{margin-left:-13.473408pt;}
._a_c01033{margin-left:-12.057570pt;}
._4_c01033{margin-left:-9.835540pt;}
._9_c01033{margin-left:-8.491422pt;}
._2_c01033{margin-left:-7.400418pt;}
._b_c01033{margin-left:-6.493625pt;}
._3_c01033{margin-left:-5.308682pt;}
._7_c01033{margin-left:-4.292884pt;}
._1_c01033{margin-left:-2.496798pt;}
._8_c01033{margin-left:-1.440827pt;}
._0_c01033{width:607.383042pt;}
.fsb_c01033{font-size:37.333333pt;}
.fs9_c01033{font-size:38.666667pt;}
.fs7_c01033{font-size:41.333333pt;}
.fsa_c01033{font-size:45.333333pt;}
.fs8_c01033{font-size:46.666667pt;}
.fs5_c01033{font-size:47.333333pt;}
.fs0_c01033{font-size:48.000000pt;}
.fs4_c01033{font-size:48.666667pt;}
.fs3_c01033{font-size:49.333333pt;}
.fs2_c01033{font-size:50.000000pt;}
.fs1_c01033{font-size:52.000000pt;}
.fs6_c01033{font-size:62.666667pt;}
.y0_c01033{bottom:0.000000pt;}
.y68_c01033{bottom:162.561347pt;}
.y38_c01033{bottom:162.561733pt;}
.y67_c01033{bottom:179.520933pt;}
.y37_c01033{bottom:179.521320pt;}
.y36_c01033{bottom:196.480920pt;}
.y66_c01033{bottom:196.480933pt;}
.y35_c01033{bottom:213.440507pt;}
.y65_c01033{bottom:213.760480pt;}
.y34_c01033{bottom:230.079667pt;}
.y64_c01033{bottom:230.400920pt;}
.y33_c01033{bottom:247.360800pt;}
.y32_c01033{bottom:264.000000pt;}
.y31_c01033{bottom:264.000547pt;}
.y63_c01033{bottom:264.320453pt;}
.y62_c01033{bottom:281.600480pt;}
.y30_c01033{bottom:281.601013pt;}
.y61_c01033{bottom:298.881613pt;}
.y2f_c01033{bottom:298.882147pt;}
.y2e_c01033{bottom:315.841733pt;}
.y60_c01033{bottom:316.160360pt;}
.y2d_c01033{bottom:332.482173pt;}
.y5f_c01033{bottom:332.800800pt;}
.y2c_c01033{bottom:349.441773pt;}
.y5e_c01033{bottom:349.760787pt;}
.y2b_c01033{bottom:366.401373pt;}
.y5d_c01033{bottom:366.722720pt;}
.y2a_c01033{bottom:383.680667pt;}
.y5c_c01033{bottom:384.001467pt;}
.y29_c01033{bottom:400.321373pt;}
.y28_c01033{bottom:400.324547pt;}
.y5b_c01033{bottom:400.641907pt;}
.y27_c01033{bottom:417.603293pt;}
.y5a_c01033{bottom:417.923040pt;}
.y26_c01033{bottom:434.562880pt;}
.y59_c01033{bottom:435.201787pt;}
.y25_c01033{bottom:452.483600pt;}
.y58_c01033{bottom:452.802240pt;}
.y24_c01033{bottom:469.762347pt;}
.y57_c01033{bottom:470.081000pt;}
.y23_c01033{bottom:486.721947pt;}
.y56_c01033{bottom:487.040587pt;}
.y22_c01033{bottom:503.681533pt;}
.y55_c01033{bottom:504.000187pt;}
.y21_c01033{bottom:520.962667pt;}
.y54_c01033{bottom:521.281307pt;}
.y20_c01033{bottom:537.922267pt;}
.y53_c01033{bottom:538.240907pt;}
.y1f_c01033{bottom:554.561427pt;}
.y52_c01033{bottom:554.881347pt;}
.y51_c01033{bottom:571.520507pt;}
.y1e_c01033{bottom:571.521013pt;}
.y1d_c01033{bottom:588.161453pt;}
.y50_c01033{bottom:588.478920pt;}
.y4f_c01033{bottom:605.119360pt;}
.y1c_c01033{bottom:605.121053pt;}
.y1b_c01033{bottom:622.081053pt;}
.y4e_c01033{bottom:622.399400pt;}
.y1a_c01033{bottom:639.359907pt;}
.y4d_c01033{bottom:639.680520pt;}
.y19_c01033{bottom:656.641027pt;}
.y4c_c01033{bottom:656.959267pt;}
.y18_c01033{bottom:673.920373pt;}
.y4b_c01033{bottom:674.240400pt;}
.y17_c01033{bottom:691.201173pt;}
.y4a_c01033{bottom:691.520427pt;}
.y49_c01033{bottom:708.480027pt;}
.y15_c01033{bottom:708.480280pt;}
.y16_c01033{bottom:708.480547pt;}
.y48_c01033{bottom:726.080480pt;}
.y14_c01033{bottom:726.080747pt;}
.y13_c01033{bottom:742.400760pt;}
.y47_c01033{bottom:742.721187pt;}
.y46_c01033{bottom:759.681147pt;}
.y12_c01033{bottom:759.681880pt;}
.y11_c01033{bottom:776.321040pt;}
.y45_c01033{bottom:776.322280pt;}
.y10_c01033{bottom:793.280640pt;}
.y44_c01033{bottom:793.603413pt;}
.yf_c01033{bottom:810.561773pt;}
.y43_c01033{bottom:810.563013pt;}
.y42_c01033{bottom:827.841760pt;}
.ye_c01033{bottom:827.841800pt;}
.y41_c01033{bottom:844.801347pt;}
.yd_c01033{bottom:844.801387pt;}
.y40_c01033{bottom:862.082480pt;}
.yc_c01033{bottom:862.082520pt;}
.yb_c01033{bottom:879.361267pt;}
.y3f_c01033{bottom:879.362507pt;}
.ya_c01033{bottom:896.320867pt;}
.y3e_c01033{bottom:896.322107pt;}
.y9_c01033{bottom:912.961307pt;}
.y3d_c01033{bottom:912.962547pt;}
.y8_c01033{bottom:929.920893pt;}
.y7_c01033{bottom:929.921187pt;}
.y3c_c01033{bottom:929.922133pt;}
.y6_c01033{bottom:946.880773pt;}
.y5_c01033{bottom:946.881333pt;}
.y3b_c01033{bottom:946.881733pt;}
.y4_c01033{bottom:964.160080pt;}
.y3_c01033{bottom:964.160520pt;}
.y3a_c01033{bottom:964.161760pt;}
.y2_c01033{bottom:981.120120pt;}
.y39_c01033{bottom:981.121360pt;}
.y1_c01033{bottom:1015.680093pt;}
.hd_c01033{height:38.937500pt;}
.ha_c01033{height:40.328125pt;}
.h8_c01033{height:41.656250pt;}
.hb_c01033{height:44.802083pt;}
.h9_c01033{height:45.777995pt;}
.h6_c01033{height:46.431966pt;}
.h1_c01033{height:47.085938pt;}
.h5_c01033{height:47.739909pt;}
.h4_c01033{height:48.393880pt;}
.h3_c01033{height:49.047852pt;}
.hc_c01033{height:49.414063pt;}
.h2_c01033{height:51.390625pt;}
.h7_c01033{height:61.473307pt;}
.h0_c01033{height:1122.666667pt;}
.w0_c01033{width:793.333333pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:321.279720pt;}
.x3_c01033{left:367.359333pt;}
.x6_c01033{left:378.559573pt;}
.x8_c01033{left:384.319333pt;}
.x5_c01033{left:390.399867pt;}
.x4_c01033{left:396.159707pt;}
.x9_c01033{left:401.919480pt;}
.x7_c01033{left:413.438920pt;}
.xa_c01033{left:499.200067pt;}
.xc_c01033{left:500.158933pt;}
.xb_c01033{left:505.599573pt;}
.x2_c01033{left:615.039587pt;}
}





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

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_8dffd42e7114788ba7c27781.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_15fe91acd612d9b7f68159b9.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_33dc67424fe1ad39d533b41d.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_628bfdf27b07d999728ed412.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.364746;font-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_c01034{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.m14_c01034{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m17_c01034{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m16_c01034{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m10_c01034{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m5_c01034{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m4_c01034{transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);}
.m11_c01034{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m19_c01034{transform:matrix(0.188953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188953,0.000000,0.000000,0.250000,0,0);}
.m8_c01034{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m18_c01034{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m2_c01034{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m7_c01034{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.mf_c01034{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m1_c01034{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m6_c01034{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m1a_c01034{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m9_c01034{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m0_c01034{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.ma_c01034{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.mb_c01034{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.md_c01034{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m3_c01034{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m12_c01034{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.mc_c01034{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m13_c01034{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m15_c01034{transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336538,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls1f_c01034{letter-spacing:-12.255750px;}
.ls1b_c01034{letter-spacing:-7.239300px;}
.lsc_c01034{letter-spacing:-3.457290px;}
.lsb_c01034{letter-spacing:-3.271050px;}
.ls1e_c01034{letter-spacing:-3.173625px;}
.ls20_c01034{letter-spacing:-3.075975px;}
.ls22_c01034{letter-spacing:-2.968875px;}
.lsf_c01034{letter-spacing:-2.758800px;}
.ls10_c01034{letter-spacing:-2.590800px;}
.ls23_c01034{letter-spacing:-1.987245px;}
.ls9_c01034{letter-spacing:-1.771740px;}
.lse_c01034{letter-spacing:-1.768425px;}
.ls15_c01034{letter-spacing:-1.729410px;}
.ls14_c01034{letter-spacing:-1.673310px;}
.ls17_c01034{letter-spacing:-1.666725px;}
.ls16_c01034{letter-spacing:-1.590750px;}
.ls1c_c01034{letter-spacing:-1.555125px;}
.ls18_c01034{letter-spacing:-1.064018px;}
.ls21_c01034{letter-spacing:-1.040633px;}
.ls1a_c01034{letter-spacing:-0.993863px;}
.ls8_c01034{letter-spacing:-0.867000px;}
.ls7_c01034{letter-spacing:0.000000px;}
.ls6_c01034{letter-spacing:0.867000px;}
.lsa_c01034{letter-spacing:0.980025px;}
.ls11_c01034{letter-spacing:0.994500px;}
.lsd_c01034{letter-spacing:1.729410px;}
.ls4_c01034{letter-spacing:2.590800px;}
.ls13_c01034{letter-spacing:4.248300px;}
.ls1d_c01034{letter-spacing:5.123183px;}
.ls19_c01034{letter-spacing:6.145050px;}
.ls2_c01034{letter-spacing:6.915600px;}
.ls5_c01034{letter-spacing:15.560100px;}
.ls3_c01034{letter-spacing:19.017390px;}
.ls0_c01034{letter-spacing:19.879800px;}
.ls1_c01034{letter-spacing:20.746800px;}
.ls12_c01034{letter-spacing:121.043250px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01034{word-spacing:0.000000px;}
._e_c01034{margin-left:-98.965725px;}
._c_c01034{margin-left:-97.302744px;}
._a_c01034{margin-left:-93.753559px;}
._b_c01034{margin-left:-92.100744px;}
._11_c01034{margin-left:-88.589265px;}
._12_c01034{margin-left:-82.466741px;}
._9_c01034{margin-left:-33.297710px;}
._f_c01034{margin-left:-15.968359px;}
._3_c01034{margin-left:-6.731931px;}
._7_c01034{margin-left:-5.610000px;}
._6_c01034{margin-left:-4.182069px;}
._8_c01034{margin-left:-2.289952px;}
._4_c01034{margin-left:-1.254427px;}
._5_c01034{width:1.351344px;}
._2_c01034{width:2.361456px;}
._d_c01034{width:5.599835px;}
._0_c01034{width:23.358000px;}
._17_c01034{width:25.305958px;}
._15_c01034{width:26.968938px;}
._16_c01034{width:28.610965px;}
._14_c01034{width:31.946193px;}
._13_c01034{width:33.756744px;}
._18_c01034{width:35.544165px;}
._10_c01034{width:75.064575px;}
._1_c01034{width:710.221021px;}
.fc0_c01034{color:transparent;}
.fsd_c01034{font-size:41.250000px;}
.fsc_c01034{font-size:44.250000px;}
.fs3_c01034{font-size:45.000000px;}
.fs0_c01034{font-size:51.000000px;}
.fs7_c01034{font-size:51.750000px;}
.fs8_c01034{font-size:52.500000px;}
.fs9_c01034{font-size:53.250000px;}
.fs1_c01034{font-size:54.000000px;}
.fs2_c01034{font-size:54.750000px;}
.fs6_c01034{font-size:57.000000px;}
.fs5_c01034{font-size:58.500000px;}
.fsb_c01034{font-size:63.750000px;}
.fs10_c01034{font-size:64.500000px;}
.fsf_c01034{font-size:65.250000px;}
.fs4_c01034{font-size:66.750000px;}
.fsa_c01034{font-size:68.250000px;}
.fse_c01034{font-size:69.750000px;}
.y0_c01034{bottom:0.000000px;}
.y39_c01034{bottom:186.480945px;}
.y72_c01034{bottom:187.199595px;}
.y38_c01034{bottom:206.280435px;}
.y71_c01034{bottom:206.640750px;}
.y36_c01034{bottom:225.357255px;}
.y37_c01034{bottom:225.360285px;}
.y70_c01034{bottom:225.721185px;}
.y35_c01034{bottom:244.798410px;}
.y6e_c01034{bottom:244.800750px;}
.y6f_c01034{bottom:244.801185px;}
.y34_c01034{bottom:263.517975px;}
.y6d_c01034{bottom:263.881185px;}
.y33_c01034{bottom:282.959100px;}
.y6b_c01034{bottom:283.319145px;}
.y6c_c01034{bottom:283.320285px;}
.y32_c01034{bottom:302.039565px;}
.y6a_c01034{bottom:302.399595px;}
.y31_c01034{bottom:321.120000px;}
.y69_c01034{bottom:321.840735px;}
.y30_c01034{bottom:340.200465px;}
.y68_c01034{bottom:340.560285px;}
.y2f_c01034{bottom:359.280900px;}
.y67_c01034{bottom:359.640150px;}
.y2e_c01034{bottom:378.360900px;}
.y66_c01034{bottom:379.081035px;}
.y2c_c01034{bottom:397.799085px;}
.y2d_c01034{bottom:397.800150px;}
.y64_c01034{bottom:398.519235px;}
.y65_c01034{bottom:398.520315px;}
.y2b_c01034{bottom:416.879535px;}
.y63_c01034{bottom:417.599700px;}
.y2a_c01034{bottom:435.959970px;}
.y62_c01034{bottom:436.680135px;}
.y28_c01034{bottom:455.399925px;}
.y29_c01034{bottom:455.400885px;}
.y61_c01034{bottom:455.760135px;}
.y27_c01034{bottom:475.199415px;}
.y60_c01034{bottom:475.921185px;}
.y26_c01034{bottom:494.279865px;}
.y5f_c01034{bottom:495.001050px;}
.y25_c01034{bottom:513.718485px;}
.y5e_c01034{bottom:514.440315px;}
.y24_c01034{bottom:532.439385px;}
.y5c_c01034{bottom:533.160435px;}
.y5d_c01034{bottom:533.161050px;}
.y23_c01034{bottom:551.878005px;}
.y5b_c01034{bottom:552.240870px;}
.y22_c01034{bottom:570.958470px;}
.y5a_c01034{bottom:571.320870px;}
.y59_c01034{bottom:571.321500px;}
.y21_c01034{bottom:590.399595px;}
.y58_c01034{bottom:590.760105px;}
.y20_c01034{bottom:609.119160px;}
.y57_c01034{bottom:609.481020px;}
.y1f_c01034{bottom:628.199610px;}
.y56_c01034{bottom:628.919625px;}
.y1e_c01034{bottom:647.640750px;}
.y55_c01034{bottom:648.360780px;}
.y1c_c01034{bottom:667.079655px;}
.y1d_c01034{bottom:667.080000px;}
.y54_c01034{bottom:667.441230px;}
.y1b_c01034{bottom:685.800570px;}
.y53_c01034{bottom:686.160780px;}
.y19_c01034{bottom:705.238305px;}
.y1a_c01034{bottom:705.239820px;}
.y52_c01034{bottom:705.960300px;}
.y18_c01034{bottom:724.318770px;}
.y51_c01034{bottom:724.681200px;}
.y17_c01034{bottom:743.759910px;}
.y50_c01034{bottom:744.119820px;}
.y16_c01034{bottom:762.479460px;}
.y4f_c01034{bottom:762.840750px;}
.y15_c01034{bottom:781.920615px;}
.y4e_c01034{bottom:782.279370px;}
.y14_c01034{bottom:801.001050px;}
.y4d_c01034{bottom:801.359805px;}
.y13_c01034{bottom:820.439670px;}
.y4c_c01034{bottom:821.159130px;}
.y12_c01034{bottom:839.519715px;}
.y4b_c01034{bottom:840.239595px;}
.y10_c01034{bottom:859.318245px;}
.y11_c01034{bottom:859.319820px;}
.y4a_c01034{bottom:859.680720px;}
.yf_c01034{bottom:878.039175px;}
.y48_c01034{bottom:878.397930px;}
.y49_c01034{bottom:878.399865px;}
.ye_c01034{bottom:897.477795px;}
.y47_c01034{bottom:897.839085px;}
.yd_c01034{bottom:916.559400px;}
.y46_c01034{bottom:916.919520px;}
.yc_c01034{bottom:935.998005px;}
.y45_c01034{bottom:935.999970px;}
.yb_c01034{bottom:954.718935px;}
.y44_c01034{bottom:955.080420px;}
.ya_c01034{bottom:974.517075px;}
.y42_c01034{bottom:974.880135px;}
.y43_c01034{bottom:974.880615px;}
.y9_c01034{bottom:993.958215px;}
.y41_c01034{bottom:994.318755px;}
.y8_c01034{bottom:1013.038680px;}
.y40_c01034{bottom:1013.399205px;}
.y7_c01034{bottom:1032.119115px;}
.y3f_c01034{bottom:1032.479640px;}
.y6_c01034{bottom:1051.560270px;}
.y3e_c01034{bottom:1051.561335px;}
.y5_c01034{bottom:1070.640705px;}
.y3c_c01034{bottom:1070.641005px;}
.y3d_c01034{bottom:1070.641290px;}
.y3_c01034{bottom:1089.359865px;}
.y4_c01034{bottom:1089.360255px;}
.y3b_c01034{bottom:1089.721440px;}
.y2_c01034{bottom:1108.440315px;}
.y3a_c01034{bottom:1108.801890px;}
.y1_c01034{bottom:1146.600135px;}
.he_c01034{height:43.022461px;}
.hd_c01034{height:46.151367px;}
.h4_c01034{height:46.933594px;}
.h1_c01034{height:50.402344px;}
.h8_c01034{height:51.143555px;}
.ha_c01034{height:52.625977px;}
.h2_c01034{height:53.367188px;}
.h3_c01034{height:54.108398px;}
.h9_c01034{height:54.755859px;}
.h7_c01034{height:56.332031px;}
.h6_c01034{height:57.814453px;}
.hc_c01034{height:63.002930px;}
.h11_c01034{height:63.744141px;}
.h10_c01034{height:64.485352px;}
.h5_c01034{height:65.967773px;}
.hb_c01034{height:67.450195px;}
.hf_c01034{height:68.932617px;}
.h0_c01034{height:1263.000000px;}
.w0_c01034{width:892.500000px;}
.x0_c01034{left:0.000000px;}
.x1_c01034{left:293.758500px;}
.x3_c01034{left:358.559100px;}
.x6_c01034{left:403.918950px;}
.x7_c01034{left:416.159820px;}
.x8_c01034{left:423.359850px;}
.x4_c01034{left:430.198785px;}
.xa_c01034{left:443.159820px;}
.xb_c01034{left:449.278800px;}
.x9_c01034{left:455.758530px;}
.x5_c01034{left:462.239820px;}
.xc_c01034{left:488.878920px;}
.xd_c01034{left:558.719580px;}
.xf_c01034{left:559.798515px;}
.x11_c01034{left:561.238890px;}
.xe_c01034{left:591.839535px;}
.x10_c01034{left:592.918950px;}
.x2_c01034{left:689.399820px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls1f_c01034{letter-spacing:-10.894000pt;}
.ls1b_c01034{letter-spacing:-6.434933pt;}
.lsc_c01034{letter-spacing:-3.073147pt;}
.lsb_c01034{letter-spacing:-2.907600pt;}
.ls1e_c01034{letter-spacing:-2.821000pt;}
.ls20_c01034{letter-spacing:-2.734200pt;}
.ls22_c01034{letter-spacing:-2.639000pt;}
.lsf_c01034{letter-spacing:-2.452267pt;}
.ls10_c01034{letter-spacing:-2.302933pt;}
.ls23_c01034{letter-spacing:-1.766440pt;}
.ls9_c01034{letter-spacing:-1.574880pt;}
.lse_c01034{letter-spacing:-1.571933pt;}
.ls15_c01034{letter-spacing:-1.537253pt;}
.ls14_c01034{letter-spacing:-1.487387pt;}
.ls17_c01034{letter-spacing:-1.481533pt;}
.ls16_c01034{letter-spacing:-1.414000pt;}
.ls1c_c01034{letter-spacing:-1.382333pt;}
.ls18_c01034{letter-spacing:-0.945793pt;}
.ls21_c01034{letter-spacing:-0.925007pt;}
.ls1a_c01034{letter-spacing:-0.883433pt;}
.ls8_c01034{letter-spacing:-0.770667pt;}
.ls7_c01034{letter-spacing:0.000000pt;}
.ls6_c01034{letter-spacing:0.770667pt;}
.lsa_c01034{letter-spacing:0.871133pt;}
.ls11_c01034{letter-spacing:0.884000pt;}
.lsd_c01034{letter-spacing:1.537253pt;}
.ls4_c01034{letter-spacing:2.302933pt;}
.ls13_c01034{letter-spacing:3.776267pt;}
.ls1d_c01034{letter-spacing:4.553940pt;}
.ls19_c01034{letter-spacing:5.462267pt;}
.ls2_c01034{letter-spacing:6.147200pt;}
.ls5_c01034{letter-spacing:13.831200pt;}
.ls3_c01034{letter-spacing:16.904347pt;}
.ls0_c01034{letter-spacing:17.670933pt;}
.ls1_c01034{letter-spacing:18.441600pt;}
.ls12_c01034{letter-spacing:107.594000pt;}
.ws0_c01034{word-spacing:0.000000pt;}
._e_c01034{margin-left:-87.969533pt;}
._c_c01034{margin-left:-86.491328pt;}
._a_c01034{margin-left:-83.336497pt;}
._b_c01034{margin-left:-81.867328pt;}
._11_c01034{margin-left:-78.746013pt;}
._12_c01034{margin-left:-73.303769pt;}
._9_c01034{margin-left:-29.597964pt;}
._f_c01034{margin-left:-14.194097pt;}
._3_c01034{margin-left:-5.983939pt;}
._7_c01034{margin-left:-4.986667pt;}
._6_c01034{margin-left:-3.717395pt;}
._8_c01034{margin-left:-2.035513pt;}
._4_c01034{margin-left:-1.115046pt;}
._5_c01034{width:1.201195pt;}
._2_c01034{width:2.099072pt;}
._d_c01034{width:4.977631pt;}
._0_c01034{width:20.762667pt;}
._17_c01034{width:22.494185pt;}
._15_c01034{width:23.972390pt;}
._16_c01034{width:25.431969pt;}
._14_c01034{width:28.396616pt;}
._13_c01034{width:30.005995pt;}
._18_c01034{width:31.594813pt;}
._10_c01034{width:66.724066pt;}
._1_c01034{width:631.307574pt;}
.fsd_c01034{font-size:36.666667pt;}
.fsc_c01034{font-size:39.333333pt;}
.fs3_c01034{font-size:40.000000pt;}
.fs0_c01034{font-size:45.333333pt;}
.fs7_c01034{font-size:46.000000pt;}
.fs8_c01034{font-size:46.666667pt;}
.fs9_c01034{font-size:47.333333pt;}
.fs1_c01034{font-size:48.000000pt;}
.fs2_c01034{font-size:48.666667pt;}
.fs6_c01034{font-size:50.666667pt;}
.fs5_c01034{font-size:52.000000pt;}
.fsb_c01034{font-size:56.666667pt;}
.fs10_c01034{font-size:57.333333pt;}
.fsf_c01034{font-size:58.000000pt;}
.fs4_c01034{font-size:59.333333pt;}
.fsa_c01034{font-size:60.666667pt;}
.fse_c01034{font-size:62.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y39_c01034{bottom:165.760840pt;}
.y72_c01034{bottom:166.399640pt;}
.y38_c01034{bottom:183.360387pt;}
.y71_c01034{bottom:183.680667pt;}
.y36_c01034{bottom:200.317560pt;}
.y37_c01034{bottom:200.320253pt;}
.y70_c01034{bottom:200.641053pt;}
.y35_c01034{bottom:217.598587pt;}
.y6e_c01034{bottom:217.600667pt;}
.y6f_c01034{bottom:217.601053pt;}
.y34_c01034{bottom:234.238200pt;}
.y6d_c01034{bottom:234.561053pt;}
.y33_c01034{bottom:251.519200pt;}
.y6b_c01034{bottom:251.839240pt;}
.y6c_c01034{bottom:251.840253pt;}
.y32_c01034{bottom:268.479613pt;}
.y6a_c01034{bottom:268.799640pt;}
.y31_c01034{bottom:285.440000pt;}
.y69_c01034{bottom:286.080653pt;}
.y30_c01034{bottom:302.400413pt;}
.y68_c01034{bottom:302.720253pt;}
.y2f_c01034{bottom:319.360800pt;}
.y67_c01034{bottom:319.680133pt;}
.y2e_c01034{bottom:336.320800pt;}
.y66_c01034{bottom:336.960920pt;}
.y2c_c01034{bottom:353.599187pt;}
.y2d_c01034{bottom:353.600133pt;}
.y64_c01034{bottom:354.239320pt;}
.y65_c01034{bottom:354.240280pt;}
.y2b_c01034{bottom:370.559587pt;}
.y63_c01034{bottom:371.199733pt;}
.y2a_c01034{bottom:387.519973pt;}
.y62_c01034{bottom:388.160120pt;}
.y28_c01034{bottom:404.799933pt;}
.y29_c01034{bottom:404.800787pt;}
.y61_c01034{bottom:405.120120pt;}
.y27_c01034{bottom:422.399480pt;}
.y60_c01034{bottom:423.041053pt;}
.y26_c01034{bottom:439.359880pt;}
.y5f_c01034{bottom:440.000933pt;}
.y25_c01034{bottom:456.638653pt;}
.y5e_c01034{bottom:457.280280pt;}
.y24_c01034{bottom:473.279453pt;}
.y5c_c01034{bottom:473.920387pt;}
.y5d_c01034{bottom:473.920933pt;}
.y23_c01034{bottom:490.558227pt;}
.y5b_c01034{bottom:490.880773pt;}
.y22_c01034{bottom:507.518640pt;}
.y5a_c01034{bottom:507.840773pt;}
.y59_c01034{bottom:507.841333pt;}
.y21_c01034{bottom:524.799640pt;}
.y58_c01034{bottom:525.120093pt;}
.y20_c01034{bottom:541.439253pt;}
.y57_c01034{bottom:541.760907pt;}
.y1f_c01034{bottom:558.399653pt;}
.y56_c01034{bottom:559.039667pt;}
.y1e_c01034{bottom:575.680667pt;}
.y55_c01034{bottom:576.320693pt;}
.y1c_c01034{bottom:592.959693pt;}
.y1d_c01034{bottom:592.960000pt;}
.y54_c01034{bottom:593.281093pt;}
.y1b_c01034{bottom:609.600507pt;}
.y53_c01034{bottom:609.920693pt;}
.y19_c01034{bottom:626.878493pt;}
.y1a_c01034{bottom:626.879840pt;}
.y52_c01034{bottom:627.520267pt;}
.y18_c01034{bottom:643.838907pt;}
.y51_c01034{bottom:644.161067pt;}
.y17_c01034{bottom:661.119920pt;}
.y50_c01034{bottom:661.439840pt;}
.y16_c01034{bottom:677.759520pt;}
.y4f_c01034{bottom:678.080667pt;}
.y15_c01034{bottom:695.040547pt;}
.y4e_c01034{bottom:695.359440pt;}
.y14_c01034{bottom:712.000933pt;}
.y4d_c01034{bottom:712.319827pt;}
.y13_c01034{bottom:729.279707pt;}
.y4c_c01034{bottom:729.919227pt;}
.y12_c01034{bottom:746.239747pt;}
.y4b_c01034{bottom:746.879640pt;}
.y10_c01034{bottom:763.838440pt;}
.y11_c01034{bottom:763.839840pt;}
.y4a_c01034{bottom:764.160640pt;}
.yf_c01034{bottom:780.479267pt;}
.y48_c01034{bottom:780.798160pt;}
.y49_c01034{bottom:780.799880pt;}
.ye_c01034{bottom:797.758040pt;}
.y47_c01034{bottom:798.079187pt;}
.yd_c01034{bottom:814.719467pt;}
.y46_c01034{bottom:815.039573pt;}
.yc_c01034{bottom:831.998227pt;}
.y45_c01034{bottom:831.999973pt;}
.yb_c01034{bottom:848.639053pt;}
.y44_c01034{bottom:848.960373pt;}
.ya_c01034{bottom:866.237400pt;}
.y42_c01034{bottom:866.560120pt;}
.y43_c01034{bottom:866.560547pt;}
.y9_c01034{bottom:883.518413pt;}
.y41_c01034{bottom:883.838893pt;}
.y8_c01034{bottom:900.478827pt;}
.y40_c01034{bottom:900.799293pt;}
.y7_c01034{bottom:917.439213pt;}
.y3f_c01034{bottom:917.759680pt;}
.y6_c01034{bottom:934.720240pt;}
.y3e_c01034{bottom:934.721187pt;}
.y5_c01034{bottom:951.680627pt;}
.y3c_c01034{bottom:951.680893pt;}
.y3d_c01034{bottom:951.681147pt;}
.y3_c01034{bottom:968.319880pt;}
.y4_c01034{bottom:968.320227pt;}
.y3b_c01034{bottom:968.641280pt;}
.y2_c01034{bottom:985.280280pt;}
.y3a_c01034{bottom:985.601680pt;}
.y1_c01034{bottom:1019.200120pt;}
.he_c01034{height:38.242188pt;}
.hd_c01034{height:41.023438pt;}
.h4_c01034{height:41.718750pt;}
.h1_c01034{height:44.802083pt;}
.h8_c01034{height:45.460938pt;}
.ha_c01034{height:46.778646pt;}
.h2_c01034{height:47.437500pt;}
.h3_c01034{height:48.096354pt;}
.h9_c01034{height:48.671875pt;}
.h7_c01034{height:50.072917pt;}
.h6_c01034{height:51.390625pt;}
.hc_c01034{height:56.002604pt;}
.h11_c01034{height:56.661458pt;}
.h10_c01034{height:57.320313pt;}
.h5_c01034{height:58.638021pt;}
.hb_c01034{height:59.955729pt;}
.hf_c01034{height:61.273438pt;}
.h0_c01034{height:1122.666667pt;}
.w0_c01034{width:793.333333pt;}
.x0_c01034{left:0.000000pt;}
.x1_c01034{left:261.118667pt;}
.x3_c01034{left:318.719200pt;}
.x6_c01034{left:359.039067pt;}
.x7_c01034{left:369.919840pt;}
.x8_c01034{left:376.319867pt;}
.x4_c01034{left:382.398920pt;}
.xa_c01034{left:393.919840pt;}
.xb_c01034{left:399.358933pt;}
.x9_c01034{left:405.118693pt;}
.x5_c01034{left:410.879840pt;}
.xc_c01034{left:434.559040pt;}
.xd_c01034{left:496.639627pt;}
.xf_c01034{left:497.598680pt;}
.x11_c01034{left:498.879013pt;}
.xe_c01034{left:526.079587pt;}
.x10_c01034{left:527.039067pt;}
.x2_c01034{left:612.799840pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_65eec462b65ad7239e5bac8a.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_0b09e4bcd4e35fe72cf043c4.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_5ae4994e91961d13e701e65f.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01035;src:url('chunks/assets/font_433affcd376e4ff316164d07.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01035;src:url('chunks/assets/font_cf1e1f2e157b62594731920a.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01035;src:url('chunks/assets/font_391163b1ad035c6f99b7b478.woff2')format("woff");}.ff6_c01035{font-family:ff6_c01035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01035{transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);}
.m20_c01035{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m21_c01035{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m1c_c01035{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m13_c01035{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m22_c01035{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m1a_c01035{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m16_c01035{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m15_c01035{transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);}
.m4_c01035{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m1e_c01035{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.mb_c01035{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m1b_c01035{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.mf_c01035{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m19_c01035{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);}
.m8_c01035{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m1_c01035{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m1f_c01035{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.mc_c01035{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m3_c01035{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m18_c01035{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m5_c01035{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m10_c01035{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m2_c01035{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m11_c01035{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m17_c01035{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.m12_c01035{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m1d_c01035{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.me_c01035{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.md_c01035{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m7_c01035{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m6_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01035{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m14_c01035{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m9_c01035{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.lsd_c01035{letter-spacing:-12.937860px;}
.ls19_c01035{letter-spacing:-6.752025px;}
.ls1e_c01035{letter-spacing:-4.896450px;}
.ls11_c01035{letter-spacing:-3.923167px;}
.ls9_c01035{letter-spacing:-3.860550px;}
.ls1f_c01035{letter-spacing:-3.543638px;}
.ls7_c01035{letter-spacing:-3.457290px;}
.ls24_c01035{letter-spacing:-3.173625px;}
.ls22_c01035{letter-spacing:-3.171000px;}
.ls21_c01035{letter-spacing:-3.105375px;}
.ls18_c01035{letter-spacing:-3.075975px;}
.ls20_c01035{letter-spacing:-3.037125px;}
.ls1a_c01035{letter-spacing:-2.943675px;}
.ls15_c01035{letter-spacing:-2.619368px;}
.lsb_c01035{letter-spacing:-2.590800px;}
.ls17_c01035{letter-spacing:-2.416050px;}
.ls10_c01035{letter-spacing:-1.796348px;}
.ls12_c01035{letter-spacing:-1.772693px;}
.ls1d_c01035{letter-spacing:-1.729410px;}
.ls13_c01035{letter-spacing:-1.574625px;}
.ls25_c01035{letter-spacing:-1.040633px;}
.lsf_c01035{letter-spacing:-0.897900px;}
.ls8_c01035{letter-spacing:-0.867000px;}
.ls16_c01035{letter-spacing:-0.845250px;}
.ls5_c01035{letter-spacing:0.000000px;}
.lsc_c01035{letter-spacing:0.705120px;}
.ls2_c01035{letter-spacing:0.867000px;}
.lsa_c01035{letter-spacing:0.931875px;}
.lse_c01035{letter-spacing:0.953175px;}
.ls3_c01035{letter-spacing:1.729410px;}
.ls1b_c01035{letter-spacing:2.590800px;}
.ls1_c01035{letter-spacing:3.457290px;}
.ls23_c01035{letter-spacing:3.633368px;}
.ls14_c01035{letter-spacing:4.704075px;}
.ls1c_c01035{letter-spacing:4.976775px;}
.ls26_c01035{letter-spacing:11.231520px;}
.ls6_c01035{letter-spacing:12.248775px;}
.ls0_c01035{letter-spacing:14.693100px;}
.ls4_c01035{letter-spacing:31.120200px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01035{word-spacing:0.000000px;}
._3_c01035{margin-left:-77.366672px;}
._f_c01035{margin-left:-34.134075px;}
._8_c01035{margin-left:-32.573544px;}
._6_c01035{margin-left:-10.301672px;}
._0_c01035{margin-left:-7.777172px;}
._1_c01035{margin-left:-6.528000px;}
._2_c01035{margin-left:-4.182000px;}
._5_c01035{margin-left:-3.116014px;}
._7_c01035{margin-left:-2.039914px;}
._4_c01035{margin-left:-1.039881px;}
._9_c01035{width:1.116675px;}
._d_c01035{width:20.045904px;}
._c_c01035{width:25.158525px;}
._b_c01035{width:26.968869px;}
._10_c01035{width:28.610965px;}
._a_c01035{width:32.094525px;}
._e_c01035{width:33.886647px;}
.fc0_c01035{color:transparent;}
.fs11_c01035{font-size:42.000000px;}
.fs5_c01035{font-size:43.500000px;}
.fsb_c01035{font-size:44.250000px;}
.fsf_c01035{font-size:46.500000px;}
.fsd_c01035{font-size:47.250000px;}
.fs8_c01035{font-size:48.000000px;}
.fsa_c01035{font-size:48.750000px;}
.fs2_c01035{font-size:51.000000px;}
.fs6_c01035{font-size:51.750000px;}
.fs4_c01035{font-size:52.500000px;}
.fs1_c01035{font-size:53.250000px;}
.fs7_c01035{font-size:54.000000px;}
.fs9_c01035{font-size:54.750000px;}
.fs3_c01035{font-size:56.250000px;}
.fs0_c01035{font-size:65.250000px;}
.fse_c01035{font-size:66.750000px;}
.fs10_c01035{font-size:68.250000px;}
.fsc_c01035{font-size:69.750000px;}
.y0_c01035{bottom:0.000000px;}
.y35_c01035{bottom:185.758215px;}
.y67_c01035{bottom:185.760150px;}
.y34_c01035{bottom:204.838665px;}
.y66_c01035{bottom:205.197900px;}
.y65_c01035{bottom:223.918815px;}
.y33_c01035{bottom:223.919100px;}
.y64_c01035{bottom:242.999265px;}
.y32_c01035{bottom:242.999565px;}
.y31_c01035{bottom:262.080000px;}
.y63_c01035{bottom:262.440405px;}
.y2f_c01035{bottom:281.879565px;}
.y30_c01035{bottom:281.880000px;}
.y62_c01035{bottom:282.238545px;}
.y2d_c01035{bottom:300.959295px;}
.y2e_c01035{bottom:300.960000px;}
.y61_c01035{bottom:301.679700px;}
.y2c_c01035{bottom:320.758785px;}
.y60_c01035{bottom:320.760135px;}
.y2b_c01035{bottom:339.839235px;}
.y5f_c01035{bottom:340.199385px;}
.y2a_c01035{bottom:358.919685px;}
.y5d_c01035{bottom:359.278200px;}
.y5e_c01035{bottom:359.279250px;}
.y29_c01035{bottom:378.358290px;}
.y5c_c01035{bottom:378.719355px;}
.y28_c01035{bottom:397.439925px;}
.y5b_c01035{bottom:397.799790px;}
.y27_c01035{bottom:416.159475px;}
.y5a_c01035{bottom:416.159820px;}
.y26_c01035{bottom:434.880390px;}
.y59_c01035{bottom:435.239820px;}
.y25_c01035{bottom:453.960840px;}
.y57_c01035{bottom:454.319325px;}
.y58_c01035{bottom:454.319820px;}
.y24_c01035{bottom:473.760345px;}
.y56_c01035{bottom:474.480885px;}
.y23_c01035{bottom:492.840795px;}
.y55_c01035{bottom:493.560315px;}
.y22_c01035{bottom:512.279415px;}
.y54_c01035{bottom:512.640750px;}
.y21_c01035{bottom:531.359850px;}
.y53_c01035{bottom:531.720750px;}
.y52_c01035{bottom:531.720975px;}
.y51_c01035{bottom:551.159595px;}
.y20_c01035{bottom:551.159820px;}
.y1f_c01035{bottom:568.440315px;}
.y50_c01035{bottom:570.600720px;}
.y1e_c01035{bottom:589.319820px;}
.y1d_c01035{bottom:608.040915px;}
.y4f_c01035{bottom:608.400165px;}
.y1c_c01035{bottom:627.479535px;}
.y4e_c01035{bottom:628.199655px;}
.y1b_c01035{bottom:646.200435px;}
.y1a_c01035{bottom:646.201080px;}
.y4d_c01035{bottom:646.559685px;}
.y19_c01035{bottom:665.639700px;}
.y4c_c01035{bottom:666.000600px;}
.y18_c01035{bottom:684.719520px;}
.y17_c01035{bottom:704.158245px;}
.y4b_c01035{bottom:704.159985px;}
.y16_c01035{bottom:722.877795px;}
.y4a_c01035{bottom:723.240420px;}
.y15_c01035{bottom:742.677315px;}
.y49_c01035{bottom:742.678845px;}
.y14_c01035{bottom:761.757750px;}
.y48_c01035{bottom:762.120000px;}
.y13_c01035{bottom:781.198905px;}
.y47_c01035{bottom:781.200435px;}
.y12_c01035{bottom:800.279340px;}
.y45_c01035{bottom:800.279850px;}
.y46_c01035{bottom:800.280390px;}
.y11_c01035{bottom:820.078860px;}
.y44_c01035{bottom:820.079340px;}
.y10_c01035{bottom:839.159295px;}
.y43_c01035{bottom:839.159805px;}
.yf_c01035{bottom:858.597915px;}
.y42_c01035{bottom:858.959295px;}
.ye_c01035{bottom:877.678365px;}
.y41_c01035{bottom:877.678845px;}
.yd_c01035{bottom:897.119505px;}
.y40_c01035{bottom:897.120000px;}
.yc_c01035{bottom:916.199955px;}
.y3f_c01035{bottom:916.200435px;}
.y3e_c01035{bottom:934.919490px;}
.yb_c01035{bottom:935.280390px;}
.y9_c01035{bottom:954.359865px;}
.ya_c01035{bottom:954.360255px;}
.y8_c01035{bottom:973.440330px;}
.y3d_c01035{bottom:973.799565px;}
.y7_c01035{bottom:992.878950px;}
.y3c_c01035{bottom:992.879520px;}
.y3b_c01035{bottom:1011.959100px;}
.y6_c01035{bottom:1011.959385px;}
.y5_c01035{bottom:1031.400240px;}
.y4_c01035{bottom:1050.480285px;}
.y3a_c01035{bottom:1050.839535px;}
.y3_c01035{bottom:1069.198980px;}
.y39_c01035{bottom:1069.560240px;}
.y38_c01035{bottom:1069.560750px;}
.y2_c01035{bottom:1088.640105px;}
.y37_c01035{bottom:1088.999355px;}
.y36_c01035{bottom:1108.077990px;}
.y1_c01035{bottom:1108.079400px;}
.h13_c01035{height:43.804688px;}
.h6_c01035{height:45.369141px;}
.hc_c01035{height:46.151367px;}
.h9_c01035{height:47.085938px;}
.hb_c01035{height:48.178711px;}
.h14_c01035{height:48.375000px;}
.h10_c01035{height:48.498047px;}
.h11_c01035{height:49.130859px;}
.he_c01035{height:49.280273px;}
.h3_c01035{height:50.402344px;}
.h7_c01035{height:51.143555px;}
.h5_c01035{height:51.884766px;}
.h2_c01035{height:52.625977px;}
.ha_c01035{height:54.108398px;}
.h4_c01035{height:55.590820px;}
.h8_c01035{height:56.320312px;}
.h1_c01035{height:64.485352px;}
.hf_c01035{height:65.967773px;}
.h12_c01035{height:67.450195px;}
.hd_c01035{height:68.932617px;}
.h0_c01035{height:1263.000000px;}
.w0_c01035{width:892.500000px;}
.x0_c01035{left:0.000000px;}
.x6_c01035{left:357.839280px;}
.x1_c01035{left:358.918350px;}
.xa_c01035{left:391.318770px;}
.x8_c01035{left:399.599670px;}
.x3_c01035{left:404.279850px;}
.x2_c01035{left:410.759535px;}
.x4_c01035{left:417.239220px;}
.x7_c01035{left:429.839535px;}
.x9_c01035{left:436.319235px;}
.x5_c01035{left:449.278800px;}
.xb_c01035{left:559.437120px;}
.xc_c01035{left:591.839535px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.lsd_c01035{letter-spacing:-11.500320pt;}
.ls19_c01035{letter-spacing:-6.001800pt;}
.ls1e_c01035{letter-spacing:-4.352400pt;}
.ls11_c01035{letter-spacing:-3.487260pt;}
.ls9_c01035{letter-spacing:-3.431600pt;}
.ls1f_c01035{letter-spacing:-3.149900pt;}
.ls7_c01035{letter-spacing:-3.073147pt;}
.ls24_c01035{letter-spacing:-2.821000pt;}
.ls22_c01035{letter-spacing:-2.818667pt;}
.ls21_c01035{letter-spacing:-2.760333pt;}
.ls18_c01035{letter-spacing:-2.734200pt;}
.ls20_c01035{letter-spacing:-2.699667pt;}
.ls1a_c01035{letter-spacing:-2.616600pt;}
.ls15_c01035{letter-spacing:-2.328327pt;}
.lsb_c01035{letter-spacing:-2.302933pt;}
.ls17_c01035{letter-spacing:-2.147600pt;}
.ls10_c01035{letter-spacing:-1.596753pt;}
.ls12_c01035{letter-spacing:-1.575727pt;}
.ls1d_c01035{letter-spacing:-1.537253pt;}
.ls13_c01035{letter-spacing:-1.399667pt;}
.ls25_c01035{letter-spacing:-0.925007pt;}
.lsf_c01035{letter-spacing:-0.798133pt;}
.ls8_c01035{letter-spacing:-0.770667pt;}
.ls16_c01035{letter-spacing:-0.751333pt;}
.ls5_c01035{letter-spacing:0.000000pt;}
.lsc_c01035{letter-spacing:0.626773pt;}
.ls2_c01035{letter-spacing:0.770667pt;}
.lsa_c01035{letter-spacing:0.828333pt;}
.lse_c01035{letter-spacing:0.847267pt;}
.ls3_c01035{letter-spacing:1.537253pt;}
.ls1b_c01035{letter-spacing:2.302933pt;}
.ls1_c01035{letter-spacing:3.073147pt;}
.ls23_c01035{letter-spacing:3.229660pt;}
.ls14_c01035{letter-spacing:4.181400pt;}
.ls1c_c01035{letter-spacing:4.423800pt;}
.ls26_c01035{letter-spacing:9.983573pt;}
.ls6_c01035{letter-spacing:10.887800pt;}
.ls0_c01035{letter-spacing:13.060533pt;}
.ls4_c01035{letter-spacing:27.662400pt;}
.ws0_c01035{word-spacing:0.000000pt;}
._3_c01035{margin-left:-68.770375pt;}
._f_c01035{margin-left:-30.341400pt;}
._8_c01035{margin-left:-28.954262pt;}
._6_c01035{margin-left:-9.157041pt;}
._0_c01035{margin-left:-6.913041pt;}
._1_c01035{margin-left:-5.802667pt;}
._2_c01035{margin-left:-3.717333pt;}
._5_c01035{margin-left:-2.769790pt;}
._7_c01035{margin-left:-1.813256pt;}
._4_c01035{margin-left:-0.924339pt;}
._9_c01035{width:0.992600pt;}
._d_c01035{width:17.818582pt;}
._c_c01035{width:22.363133pt;}
._b_c01035{width:23.972328pt;}
._10_c01035{width:25.431969pt;}
._a_c01035{width:28.528466pt;}
._e_c01035{width:30.121464pt;}
.fs11_c01035{font-size:37.333333pt;}
.fs5_c01035{font-size:38.666667pt;}
.fsb_c01035{font-size:39.333333pt;}
.fsf_c01035{font-size:41.333333pt;}
.fsd_c01035{font-size:42.000000pt;}
.fs8_c01035{font-size:42.666667pt;}
.fsa_c01035{font-size:43.333333pt;}
.fs2_c01035{font-size:45.333333pt;}
.fs6_c01035{font-size:46.000000pt;}
.fs4_c01035{font-size:46.666667pt;}
.fs1_c01035{font-size:47.333333pt;}
.fs7_c01035{font-size:48.000000pt;}
.fs9_c01035{font-size:48.666667pt;}
.fs3_c01035{font-size:50.000000pt;}
.fs0_c01035{font-size:58.000000pt;}
.fse_c01035{font-size:59.333333pt;}
.fs10_c01035{font-size:60.666667pt;}
.fsc_c01035{font-size:62.000000pt;}
.y0_c01035{bottom:0.000000pt;}
.y35_c01035{bottom:165.118413pt;}
.y67_c01035{bottom:165.120133pt;}
.y34_c01035{bottom:182.078813pt;}
.y66_c01035{bottom:182.398133pt;}
.y65_c01035{bottom:199.038947pt;}
.y33_c01035{bottom:199.039200pt;}
.y64_c01035{bottom:215.999347pt;}
.y32_c01035{bottom:215.999613pt;}
.y31_c01035{bottom:232.960000pt;}
.y63_c01035{bottom:233.280360pt;}
.y2f_c01035{bottom:250.559613pt;}
.y30_c01035{bottom:250.560000pt;}
.y62_c01035{bottom:250.878707pt;}
.y2d_c01035{bottom:267.519373pt;}
.y2e_c01035{bottom:267.520000pt;}
.y61_c01035{bottom:268.159733pt;}
.y2c_c01035{bottom:285.118920pt;}
.y60_c01035{bottom:285.120120pt;}
.y2b_c01035{bottom:302.079320pt;}
.y5f_c01035{bottom:302.399453pt;}
.y2a_c01035{bottom:319.039720pt;}
.y5d_c01035{bottom:319.358400pt;}
.y5e_c01035{bottom:319.359333pt;}
.y29_c01035{bottom:336.318480pt;}
.y5c_c01035{bottom:336.639427pt;}
.y28_c01035{bottom:353.279933pt;}
.y5b_c01035{bottom:353.599813pt;}
.y27_c01035{bottom:369.919533pt;}
.y5a_c01035{bottom:369.919840pt;}
.y26_c01035{bottom:386.560347pt;}
.y59_c01035{bottom:386.879840pt;}
.y25_c01035{bottom:403.520747pt;}
.y57_c01035{bottom:403.839400pt;}
.y58_c01035{bottom:403.839840pt;}
.y24_c01035{bottom:421.120307pt;}
.y56_c01035{bottom:421.760787pt;}
.y23_c01035{bottom:438.080707pt;}
.y55_c01035{bottom:438.720280pt;}
.y22_c01035{bottom:455.359480pt;}
.y54_c01035{bottom:455.680667pt;}
.y21_c01035{bottom:472.319867pt;}
.y53_c01035{bottom:472.640667pt;}
.y52_c01035{bottom:472.640867pt;}
.y51_c01035{bottom:489.919640pt;}
.y20_c01035{bottom:489.919840pt;}
.y1f_c01035{bottom:505.280280pt;}
.y50_c01035{bottom:507.200640pt;}
.y1e_c01035{bottom:523.839840pt;}
.y1d_c01035{bottom:540.480813pt;}
.y4f_c01035{bottom:540.800147pt;}
.y1c_c01035{bottom:557.759587pt;}
.y4e_c01035{bottom:558.399693pt;}
.y1b_c01035{bottom:574.400387pt;}
.y1a_c01035{bottom:574.400960pt;}
.y4d_c01035{bottom:574.719720pt;}
.y19_c01035{bottom:591.679733pt;}
.y4c_c01035{bottom:592.000533pt;}
.y18_c01035{bottom:608.639573pt;}
.y17_c01035{bottom:625.918440pt;}
.y4b_c01035{bottom:625.919987pt;}
.y16_c01035{bottom:642.558040pt;}
.y4a_c01035{bottom:642.880373pt;}
.y15_c01035{bottom:660.157613pt;}
.y49_c01035{bottom:660.158973pt;}
.y14_c01035{bottom:677.118000pt;}
.y48_c01035{bottom:677.440000pt;}
.y13_c01035{bottom:694.399027pt;}
.y47_c01035{bottom:694.400387pt;}
.y12_c01035{bottom:711.359413pt;}
.y45_c01035{bottom:711.359867pt;}
.y46_c01035{bottom:711.360347pt;}
.y11_c01035{bottom:728.958987pt;}
.y44_c01035{bottom:728.959413pt;}
.y10_c01035{bottom:745.919373pt;}
.y43_c01035{bottom:745.919827pt;}
.yf_c01035{bottom:763.198147pt;}
.y42_c01035{bottom:763.519373pt;}
.ye_c01035{bottom:780.158547pt;}
.y41_c01035{bottom:780.158973pt;}
.yd_c01035{bottom:797.439560pt;}
.y40_c01035{bottom:797.440000pt;}
.yc_c01035{bottom:814.399960pt;}
.y3f_c01035{bottom:814.400387pt;}
.y3e_c01035{bottom:831.039547pt;}
.yb_c01035{bottom:831.360347pt;}
.y9_c01035{bottom:848.319880pt;}
.ya_c01035{bottom:848.320227pt;}
.y8_c01035{bottom:865.280293pt;}
.y3d_c01035{bottom:865.599613pt;}
.y7_c01035{bottom:882.559067pt;}
.y3c_c01035{bottom:882.559573pt;}
.y3b_c01035{bottom:899.519200pt;}
.y6_c01035{bottom:899.519453pt;}
.y5_c01035{bottom:916.800213pt;}
.y4_c01035{bottom:933.760253pt;}
.y3a_c01035{bottom:934.079587pt;}
.y3_c01035{bottom:950.399093pt;}
.y39_c01035{bottom:950.720213pt;}
.y38_c01035{bottom:950.720667pt;}
.y2_c01035{bottom:967.680093pt;}
.y37_c01035{bottom:967.999427pt;}
.y36_c01035{bottom:984.958213pt;}
.y1_c01035{bottom:984.959467pt;}
.h13_c01035{height:38.937500pt;}
.h6_c01035{height:40.328125pt;}
.hc_c01035{height:41.023438pt;}
.h9_c01035{height:41.854167pt;}
.hb_c01035{height:42.825521pt;}
.h14_c01035{height:43.000000pt;}
.h10_c01035{height:43.109375pt;}
.h11_c01035{height:43.671875pt;}
.he_c01035{height:43.804688pt;}
.h3_c01035{height:44.802083pt;}
.h7_c01035{height:45.460938pt;}
.h5_c01035{height:46.119792pt;}
.h2_c01035{height:46.778646pt;}
.ha_c01035{height:48.096354pt;}
.h4_c01035{height:49.414063pt;}
.h8_c01035{height:50.062500pt;}
.h1_c01035{height:57.320313pt;}
.hf_c01035{height:58.638021pt;}
.h12_c01035{height:59.955729pt;}
.hd_c01035{height:61.273438pt;}
.h0_c01035{height:1122.666667pt;}
.w0_c01035{width:793.333333pt;}
.x0_c01035{left:0.000000pt;}
.x6_c01035{left:318.079360pt;}
.x1_c01035{left:319.038533pt;}
.xa_c01035{left:347.838907pt;}
.x8_c01035{left:355.199707pt;}
.x3_c01035{left:359.359867pt;}
.x2_c01035{left:365.119587pt;}
.x4_c01035{left:370.879307pt;}
.x7_c01035{left:382.079587pt;}
.x9_c01035{left:387.839320pt;}
.x5_c01035{left:399.358933pt;}
.xb_c01035{left:497.277440pt;}
.xc_c01035{left:526.079587pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_e2e702c1bb8471ce5b44e33b.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_2ad01188b0998d608ba3bfcf.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_085984264f2df4c1ad2591b0.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_4aa69b87fab9b2c5bc72a08f.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01036;src:url('chunks/assets/font_0210236c27245afab4137d69.woff2')format("woff");}.ff5_c01036{font-family:ff5_c01036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01036;src:url('chunks/assets/font_80809d09e87de83ce5d64ef7.woff2')format("woff");}.ff6_c01036{font-family:ff6_c01036;line-height:1.432129;font-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_c01036{transform:matrix(0.141753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141753,0.000000,0.000000,0.250000,0,0);}
.m1b_c01036{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m25_c01036{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m12_c01036{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m22_c01036{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m1f_c01036{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m16_c01036{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m18_c01036{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m4_c01036{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);}
.m29_c01036{transform:matrix(0.195402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195402,0.000000,0.000000,0.250000,0,0);}
.m28_c01036{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m1_c01036{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m20_c01036{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m6_c01036{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.mf_c01036{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m17_c01036{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m5_c01036{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m15_c01036{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.mc_c01036{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m14_c01036{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.md_c01036{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m11_c01036{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m7_c01036{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m1c_c01036{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m2_c01036{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m19_c01036{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m24_c01036{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m3_c01036{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.ma_c01036{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.me_c01036{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m1d_c01036{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m0_c01036{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.mb_c01036{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m13_c01036{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m23_c01036{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m2a_c01036{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m26_c01036{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m27_c01036{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m8_c01036{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m9_c01036{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m1e_c01036{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01036{transform:matrix(0.318452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318452,0.000000,0.000000,0.250000,0,0);}
.m21_c01036{transform:matrix(0.379213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379213,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls6_c01036{letter-spacing:-5.702850px;}
.ls17_c01036{letter-spacing:-5.191875px;}
.ls1d_c01036{letter-spacing:-4.800600px;}
.ls26_c01036{letter-spacing:-4.795875px;}
.ls18_c01036{letter-spacing:-4.712400px;}
.ls23_c01036{letter-spacing:-4.329450px;}
.ls10_c01036{letter-spacing:-4.182000px;}
.ls12_c01036{letter-spacing:-4.097993px;}
.ls25_c01036{letter-spacing:-4.002075px;}
.ls3_c01036{letter-spacing:-3.468750px;}
.ls20_c01036{letter-spacing:-3.457650px;}
.ls9_c01036{letter-spacing:-3.345600px;}
.ls24_c01036{letter-spacing:-3.173625px;}
.ls11_c01036{letter-spacing:-3.105375px;}
.ls21_c01036{letter-spacing:-3.075975px;}
.ls14_c01036{letter-spacing:-3.037125px;}
.ls7_c01036{letter-spacing:-2.508690px;}
.lsa_c01036{letter-spacing:-2.462775px;}
.lsb_c01036{letter-spacing:-1.792650px;}
.ls1a_c01036{letter-spacing:-1.753050px;}
.ls4_c01036{letter-spacing:-1.729410px;}
.ls8_c01036{letter-spacing:-1.719975px;}
.ls1c_c01036{letter-spacing:-1.684800px;}
.ls2_c01036{letter-spacing:-1.673310px;}
.lse_c01036{letter-spacing:-1.324050px;}
.ls19_c01036{letter-spacing:-1.087403px;}
.lsc_c01036{letter-spacing:-0.888743px;}
.lsf_c01036{letter-spacing:-0.885600px;}
.lsd_c01036{letter-spacing:-0.851190px;}
.ls0_c01036{letter-spacing:-0.836400px;}
.ls22_c01036{letter-spacing:-0.813638px;}
.ls27_c01036{letter-spacing:-0.810900px;}
.ls1_c01036{letter-spacing:0.000000px;}
.ls5_c01036{letter-spacing:0.787050px;}
.ls1b_c01036{letter-spacing:0.836400px;}
.ls15_c01036{letter-spacing:0.915900px;}
.ls13_c01036{letter-spacing:1.776000px;}
.ls1f_c01036{letter-spacing:4.704075px;}
.ls1e_c01036{letter-spacing:5.123183px;}
.ls16_c01036{letter-spacing:6.969675px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01036{word-spacing:0.000000px;}
._6_c01036{margin-left:-8.828384px;}
._5_c01036{margin-left:-7.088699px;}
._1_c01036{margin-left:-6.084484px;}
._3_c01036{margin-left:-4.345468px;}
._2_c01036{margin-left:-2.754870px;}
._0_c01036{width:1.440650px;}
._4_c01036{width:3.314833px;}
._7_c01036{width:5.787915px;}
._e_c01036{width:22.072466px;}
._d_c01036{width:25.413450px;}
._c_c01036{width:27.029398px;}
._b_c01036{width:28.621200px;}
._9_c01036{width:30.501043px;}
._a_c01036{width:31.978940px;}
._8_c01036{width:33.708860px;}
.fc0_c01036{color:transparent;}
.fs8_c01036{font-size:43.500000px;}
.fsb_c01036{font-size:44.250000px;}
.fs13_c01036{font-size:45.000000px;}
.fs10_c01036{font-size:46.500000px;}
.fs14_c01036{font-size:47.250000px;}
.fsc_c01036{font-size:48.000000px;}
.fs12_c01036{font-size:48.750000px;}
.fs7_c01036{font-size:49.500000px;}
.fs0_c01036{font-size:51.000000px;}
.fs11_c01036{font-size:51.750000px;}
.fs4_c01036{font-size:52.500000px;}
.fs5_c01036{font-size:53.250000px;}
.fs1_c01036{font-size:54.000000px;}
.fs6_c01036{font-size:54.750000px;}
.fs2_c01036{font-size:55.500000px;}
.fs3_c01036{font-size:56.250000px;}
.fse_c01036{font-size:63.000000px;}
.fs15_c01036{font-size:65.250000px;}
.fsd_c01036{font-size:66.750000px;}
.fsa_c01036{font-size:68.250000px;}
.fsf_c01036{font-size:69.750000px;}
.fs9_c01036{font-size:72.750000px;}
.y0_c01036{bottom:0.000000px;}
.y60_c01036{bottom:206.640750px;}
.y34_c01036{bottom:206.998620px;}
.y33_c01036{bottom:225.719535px;}
.y5f_c01036{bottom:225.721185px;}
.y5e_c01036{bottom:244.801185px;}
.y32_c01036{bottom:245.158155px;}
.y31_c01036{bottom:263.879085px;}
.y5c_c01036{bottom:263.879670px;}
.y5d_c01036{bottom:263.881185px;}
.y30_c01036{bottom:282.959520px;}
.y5b_c01036{bottom:282.960135px;}
.y5a_c01036{bottom:301.679700px;}
.y2f_c01036{bottom:302.039985px;}
.y59_c01036{bottom:320.760135px;}
.y2e_c01036{bottom:321.120420px;}
.y2d_c01036{bottom:340.200870px;}
.y58_c01036{bottom:340.201035px;}
.y57_c01036{bottom:340.201545px;}
.y56_c01036{bottom:359.640150px;}
.y2c_c01036{bottom:360.000360px;}
.y2b_c01036{bottom:378.719925px;}
.y55_c01036{bottom:378.720135px;}
.y54_c01036{bottom:398.160390px;}
.y2a_c01036{bottom:398.161080px;}
.y53_c01036{bottom:417.240825px;}
.y29_c01036{bottom:417.241515px;}
.y52_c01036{bottom:436.679445px;}
.y28_c01036{bottom:436.680135px;}
.y51_c01036{bottom:455.759910px;}
.y27_c01036{bottom:455.760135px;}
.y25_c01036{bottom:475.200465px;}
.y26_c01036{bottom:475.201035px;}
.y24_c01036{bottom:494.280900px;}
.y50_c01036{bottom:494.639715px;}
.y22_c01036{bottom:513.716670px;}
.y23_c01036{bottom:513.720150px;}
.y21_c01036{bottom:532.797105px;}
.y4e_c01036{bottom:532.799280px;}
.y4f_c01036{bottom:532.800150px;}
.y20_c01036{bottom:552.238260px;}
.y4d_c01036{bottom:552.240420px;}
.y1f_c01036{bottom:570.957825px;}
.y4c_c01036{bottom:570.959970px;}
.y1e_c01036{bottom:590.038260px;}
.y4b_c01036{bottom:590.039985px;}
.y1d_c01036{bottom:609.118725px;}
.y1c_c01036{bottom:628.559850px;}
.y1b_c01036{bottom:647.640315px;}
.y1a_c01036{bottom:666.720750px;}
.y19_c01036{bottom:685.439670px;}
.y18_c01036{bottom:685.439880px;}
.y4a_c01036{bottom:685.800570px;}
.y17_c01036{bottom:705.239385px;}
.y49_c01036{bottom:705.239820px;}
.y16_c01036{bottom:724.319820px;}
.y48_c01036{bottom:743.399820px;}
.y15_c01036{bottom:743.760720px;}
.y47_c01036{bottom:762.479685px;}
.y14_c01036{bottom:762.840390px;}
.y46_c01036{bottom:782.279475px;}
.y13_c01036{bottom:782.639880px;}
.y45_c01036{bottom:801.359910px;}
.y12_c01036{bottom:801.720330px;}
.y44_c01036{bottom:821.159430px;}
.y11_c01036{bottom:821.519835px;}
.y43_c01036{bottom:840.239865px;}
.y10_c01036{bottom:840.600285px;}
.y42_c01036{bottom:859.320120px;}
.yf_c01036{bottom:859.680720px;}
.y41_c01036{bottom:878.041035px;}
.ye_c01036{bottom:878.399865px;}
.y40_c01036{bottom:897.479640px;}
.yd_c01036{bottom:897.839100px;}
.y3f_c01036{bottom:916.200165px;}
.yc_c01036{bottom:916.558665px;}
.y3e_c01036{bottom:935.641290px;}
.yb_c01036{bottom:936.358155px;}
.y3d_c01036{bottom:955.080420px;}
.ya_c01036{bottom:955.438620px;}
.y9_c01036{bottom:974.879745px;}
.y3c_c01036{bottom:974.880615px;}
.y8_c01036{bottom:993.960210px;}
.y3b_c01036{bottom:993.960570px;}
.y3a_c01036{bottom:1013.399775px;}
.y7_c01036{bottom:1013.759700px;}
.y39_c01036{bottom:1032.479640px;}
.y6_c01036{bottom:1032.840150px;}
.y5_c01036{bottom:1051.920600px;}
.y38_c01036{bottom:1071.000555px;}
.y4_c01036{bottom:1076.039985px;}
.y37_c01036{bottom:1089.721155px;}
.y3_c01036{bottom:1090.080420px;}
.y35_c01036{bottom:1108.799835px;}
.y36_c01036{bottom:1108.801215px;}
.y2_c01036{bottom:1109.160465px;}
.y1_c01036{bottom:1148.040525px;}
.h9_c01036{height:45.369141px;}
.hc_c01036{height:46.151367px;}
.h17_c01036{height:46.373291px;}
.h16_c01036{height:46.933594px;}
.h12_c01036{height:47.109375px;}
.hd_c01036{height:47.437500px;}
.h15_c01036{height:48.178711px;}
.h11_c01036{height:48.498047px;}
.h8_c01036{height:48.919922px;}
.h1_c01036{height:50.402344px;}
.h13_c01036{height:51.143555px;}
.h5_c01036{height:51.884766px;}
.h6_c01036{height:52.625977px;}
.h2_c01036{height:53.367188px;}
.h7_c01036{height:54.108398px;}
.h3_c01036{height:54.849609px;}
.h4_c01036{height:55.590820px;}
.h18_c01036{height:64.485352px;}
.hf_c01036{height:65.707031px;}
.he_c01036{height:65.967773px;}
.hb_c01036{height:67.450195px;}
.h10_c01036{height:68.932617px;}
.h14_c01036{height:69.618164px;}
.ha_c01036{height:71.897461px;}
.h0_c01036{height:1263.000000px;}
.w0_c01036{width:892.500000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:293.040000px;}
.xc_c01036{left:356.398275px;}
.x9_c01036{left:357.479070px;}
.x2_c01036{left:358.559100px;}
.x5_c01036{left:390.959385px;}
.xa_c01036{left:396.359850px;}
.xb_c01036{left:402.478635px;}
.x6_c01036{left:416.519070px;}
.xd_c01036{left:421.919535px;}
.xe_c01036{left:428.039985px;}
.x7_c01036{left:468.719565px;}
.x8_c01036{left:487.438665px;}
.x10_c01036{left:557.998950px;}
.x3_c01036{left:559.080000px;}
.x11_c01036{left:590.758530px;}
.xf_c01036{left:591.839535px;}
.x4_c01036{left:689.399820px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls6_c01036{letter-spacing:-5.069200pt;}
.ls17_c01036{letter-spacing:-4.615000pt;}
.ls1d_c01036{letter-spacing:-4.267200pt;}
.ls26_c01036{letter-spacing:-4.263000pt;}
.ls18_c01036{letter-spacing:-4.188800pt;}
.ls23_c01036{letter-spacing:-3.848400pt;}
.ls10_c01036{letter-spacing:-3.717333pt;}
.ls12_c01036{letter-spacing:-3.642660pt;}
.ls25_c01036{letter-spacing:-3.557400pt;}
.ls3_c01036{letter-spacing:-3.083333pt;}
.ls20_c01036{letter-spacing:-3.073467pt;}
.ls9_c01036{letter-spacing:-2.973867pt;}
.ls24_c01036{letter-spacing:-2.821000pt;}
.ls11_c01036{letter-spacing:-2.760333pt;}
.ls21_c01036{letter-spacing:-2.734200pt;}
.ls14_c01036{letter-spacing:-2.699667pt;}
.ls7_c01036{letter-spacing:-2.229947pt;}
.lsa_c01036{letter-spacing:-2.189133pt;}
.lsb_c01036{letter-spacing:-1.593467pt;}
.ls1a_c01036{letter-spacing:-1.558267pt;}
.ls4_c01036{letter-spacing:-1.537253pt;}
.ls8_c01036{letter-spacing:-1.528867pt;}
.ls1c_c01036{letter-spacing:-1.497600pt;}
.ls2_c01036{letter-spacing:-1.487387pt;}
.lse_c01036{letter-spacing:-1.176933pt;}
.ls19_c01036{letter-spacing:-0.966580pt;}
.lsc_c01036{letter-spacing:-0.789993pt;}
.lsf_c01036{letter-spacing:-0.787200pt;}
.lsd_c01036{letter-spacing:-0.756613pt;}
.ls0_c01036{letter-spacing:-0.743467pt;}
.ls22_c01036{letter-spacing:-0.723233pt;}
.ls27_c01036{letter-spacing:-0.720800pt;}
.ls1_c01036{letter-spacing:0.000000pt;}
.ls5_c01036{letter-spacing:0.699600pt;}
.ls1b_c01036{letter-spacing:0.743467pt;}
.ls15_c01036{letter-spacing:0.814133pt;}
.ls13_c01036{letter-spacing:1.578667pt;}
.ls1f_c01036{letter-spacing:4.181400pt;}
.ls1e_c01036{letter-spacing:4.553940pt;}
.ls16_c01036{letter-spacing:6.195267pt;}
.ws0_c01036{word-spacing:0.000000pt;}
._6_c01036{margin-left:-7.847453pt;}
._5_c01036{margin-left:-6.301066pt;}
._1_c01036{margin-left:-5.408430pt;}
._3_c01036{margin-left:-3.862638pt;}
._2_c01036{margin-left:-2.448773pt;}
._0_c01036{width:1.280577pt;}
._4_c01036{width:2.946518pt;}
._7_c01036{width:5.144813pt;}
._e_c01036{width:19.619969pt;}
._d_c01036{width:22.589734pt;}
._c_c01036{width:24.026132pt;}
._b_c01036{width:25.441067pt;}
._9_c01036{width:27.112038pt;}
._a_c01036{width:28.425724pt;}
._8_c01036{width:29.963431pt;}
.fs8_c01036{font-size:38.666667pt;}
.fsb_c01036{font-size:39.333333pt;}
.fs13_c01036{font-size:40.000000pt;}
.fs10_c01036{font-size:41.333333pt;}
.fs14_c01036{font-size:42.000000pt;}
.fsc_c01036{font-size:42.666667pt;}
.fs12_c01036{font-size:43.333333pt;}
.fs7_c01036{font-size:44.000000pt;}
.fs0_c01036{font-size:45.333333pt;}
.fs11_c01036{font-size:46.000000pt;}
.fs4_c01036{font-size:46.666667pt;}
.fs5_c01036{font-size:47.333333pt;}
.fs1_c01036{font-size:48.000000pt;}
.fs6_c01036{font-size:48.666667pt;}
.fs2_c01036{font-size:49.333333pt;}
.fs3_c01036{font-size:50.000000pt;}
.fse_c01036{font-size:56.000000pt;}
.fs15_c01036{font-size:58.000000pt;}
.fsd_c01036{font-size:59.333333pt;}
.fsa_c01036{font-size:60.666667pt;}
.fsf_c01036{font-size:62.000000pt;}
.fs9_c01036{font-size:64.666667pt;}
.y0_c01036{bottom:0.000000pt;}
.y60_c01036{bottom:183.680667pt;}
.y34_c01036{bottom:183.998773pt;}
.y33_c01036{bottom:200.639587pt;}
.y5f_c01036{bottom:200.641053pt;}
.y5e_c01036{bottom:217.601053pt;}
.y32_c01036{bottom:217.918360pt;}
.y31_c01036{bottom:234.559187pt;}
.y5c_c01036{bottom:234.559707pt;}
.y5d_c01036{bottom:234.561053pt;}
.y30_c01036{bottom:251.519573pt;}
.y5b_c01036{bottom:251.520120pt;}
.y5a_c01036{bottom:268.159733pt;}
.y2f_c01036{bottom:268.479987pt;}
.y59_c01036{bottom:285.120120pt;}
.y2e_c01036{bottom:285.440373pt;}
.y2d_c01036{bottom:302.400773pt;}
.y58_c01036{bottom:302.400920pt;}
.y57_c01036{bottom:302.401373pt;}
.y56_c01036{bottom:319.680133pt;}
.y2c_c01036{bottom:320.000320pt;}
.y2b_c01036{bottom:336.639933pt;}
.y55_c01036{bottom:336.640120pt;}
.y54_c01036{bottom:353.920347pt;}
.y2a_c01036{bottom:353.920960pt;}
.y53_c01036{bottom:370.880733pt;}
.y29_c01036{bottom:370.881347pt;}
.y52_c01036{bottom:388.159507pt;}
.y28_c01036{bottom:388.160120pt;}
.y51_c01036{bottom:405.119920pt;}
.y27_c01036{bottom:405.120120pt;}
.y25_c01036{bottom:422.400413pt;}
.y26_c01036{bottom:422.400920pt;}
.y24_c01036{bottom:439.360800pt;}
.y50_c01036{bottom:439.679747pt;}
.y22_c01036{bottom:456.637040pt;}
.y23_c01036{bottom:456.640133pt;}
.y21_c01036{bottom:473.597427pt;}
.y4e_c01036{bottom:473.599360pt;}
.y4f_c01036{bottom:473.600133pt;}
.y20_c01036{bottom:490.878453pt;}
.y4d_c01036{bottom:490.880373pt;}
.y1f_c01036{bottom:507.518067pt;}
.y4c_c01036{bottom:507.519973pt;}
.y1e_c01036{bottom:524.478453pt;}
.y4b_c01036{bottom:524.479987pt;}
.y1d_c01036{bottom:541.438867pt;}
.y1c_c01036{bottom:558.719867pt;}
.y1b_c01036{bottom:575.680280pt;}
.y1a_c01036{bottom:592.640667pt;}
.y19_c01036{bottom:609.279707pt;}
.y18_c01036{bottom:609.279893pt;}
.y4a_c01036{bottom:609.600507pt;}
.y17_c01036{bottom:626.879453pt;}
.y49_c01036{bottom:626.879840pt;}
.y16_c01036{bottom:643.839840pt;}
.y48_c01036{bottom:660.799840pt;}
.y15_c01036{bottom:661.120640pt;}
.y47_c01036{bottom:677.759720pt;}
.y14_c01036{bottom:678.080347pt;}
.y46_c01036{bottom:695.359533pt;}
.y13_c01036{bottom:695.679893pt;}
.y45_c01036{bottom:712.319920pt;}
.y12_c01036{bottom:712.640293pt;}
.y44_c01036{bottom:729.919493pt;}
.y11_c01036{bottom:730.239853pt;}
.y43_c01036{bottom:746.879880pt;}
.y10_c01036{bottom:747.200253pt;}
.y42_c01036{bottom:763.840107pt;}
.yf_c01036{bottom:764.160640pt;}
.y41_c01036{bottom:780.480920pt;}
.ye_c01036{bottom:780.799880pt;}
.y40_c01036{bottom:797.759680pt;}
.yd_c01036{bottom:798.079200pt;}
.y3f_c01036{bottom:814.400147pt;}
.yc_c01036{bottom:814.718813pt;}
.y3e_c01036{bottom:831.681147pt;}
.yb_c01036{bottom:832.318360pt;}
.y3d_c01036{bottom:848.960373pt;}
.ya_c01036{bottom:849.278773pt;}
.y9_c01036{bottom:866.559773pt;}
.y3c_c01036{bottom:866.560547pt;}
.y8_c01036{bottom:883.520187pt;}
.y3b_c01036{bottom:883.520507pt;}
.y3a_c01036{bottom:900.799800pt;}
.y7_c01036{bottom:901.119733pt;}
.y39_c01036{bottom:917.759680pt;}
.y6_c01036{bottom:918.080133pt;}
.y5_c01036{bottom:935.040533pt;}
.y38_c01036{bottom:952.000493pt;}
.y4_c01036{bottom:956.479987pt;}
.y37_c01036{bottom:968.641027pt;}
.y3_c01036{bottom:968.960373pt;}
.y35_c01036{bottom:985.599853pt;}
.y36_c01036{bottom:985.601080pt;}
.y2_c01036{bottom:985.920413pt;}
.y1_c01036{bottom:1020.480467pt;}
.h9_c01036{height:40.328125pt;}
.hc_c01036{height:41.023438pt;}
.h17_c01036{height:41.220703pt;}
.h16_c01036{height:41.718750pt;}
.h12_c01036{height:41.875000pt;}
.hd_c01036{height:42.166667pt;}
.h15_c01036{height:42.825521pt;}
.h11_c01036{height:43.109375pt;}
.h8_c01036{height:43.484375pt;}
.h1_c01036{height:44.802083pt;}
.h13_c01036{height:45.460938pt;}
.h5_c01036{height:46.119792pt;}
.h6_c01036{height:46.778646pt;}
.h2_c01036{height:47.437500pt;}
.h7_c01036{height:48.096354pt;}
.h3_c01036{height:48.755208pt;}
.h4_c01036{height:49.414063pt;}
.h18_c01036{height:57.320313pt;}
.hf_c01036{height:58.406250pt;}
.he_c01036{height:58.638021pt;}
.hb_c01036{height:59.955729pt;}
.h10_c01036{height:61.273438pt;}
.h14_c01036{height:61.882812pt;}
.ha_c01036{height:63.908854pt;}
.h0_c01036{height:1122.666667pt;}
.w0_c01036{width:793.333333pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:260.480000pt;}
.xc_c01036{left:316.798467pt;}
.x9_c01036{left:317.759173pt;}
.x2_c01036{left:318.719200pt;}
.x5_c01036{left:347.519453pt;}
.xa_c01036{left:352.319867pt;}
.xb_c01036{left:357.758787pt;}
.x6_c01036{left:370.239173pt;}
.xd_c01036{left:375.039587pt;}
.xe_c01036{left:380.479987pt;}
.x7_c01036{left:416.639613pt;}
.x8_c01036{left:433.278813pt;}
.x10_c01036{left:495.999067pt;}
.x3_c01036{left:496.960000pt;}
.x11_c01036{left:525.118693pt;}
.xf_c01036{left:526.079587pt;}
.x4_c01036{left:612.799840pt;}
}





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

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_55a0cdffd0127b4f68110063.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_8665a97b48dc59622c7138ca.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_10904c678c6ce784b88b7430.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_657ef147293c6162434031bc.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01037;src:url('chunks/assets/font_2f3602aae8121b01c429217e.woff2')format("woff");}.ff5_c01037{font-family:ff5_c01037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01037;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff6_c01037{font-family:ff6_c01037;line-height:1.281250;font-style:normal;font-weight: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_c01037;src:url('chunks/assets/font_fddd9f0843f343d55061cea1.woff2')format("woff");}.ff7_c01037{font-family:ff7_c01037;line-height:1.364746;font-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_c01037{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.mb_c01037{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m18_c01037{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m19_c01037{transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);}
.m9_c01037{transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191011,0.000000,0.000000,0.250000,0,0);}
.m5_c01037{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m15_c01037{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m2_c01037{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m13_c01037{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m7_c01037{transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);}
.m10_c01037{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m4_c01037{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m17_c01037{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.mf_c01037{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m0_c01037{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m3_c01037{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.me_c01037{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m6_c01037{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.ma_c01037{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.mc_c01037{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m12_c01037{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m11_c01037{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m1_c01037{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m8_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01037{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_c01037{transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271186,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.lsc_c01037{letter-spacing:-11.249925px;}
.lsd_c01037{letter-spacing:-4.906125px;}
.ls12_c01037{letter-spacing:-4.308150px;}
.ls18_c01037{letter-spacing:-4.284000px;}
.ls10_c01037{letter-spacing:-4.158675px;}
.ls4_c01037{letter-spacing:-3.871238px;}
.ls11_c01037{letter-spacing:-3.455483px;}
.ls15_c01037{letter-spacing:-3.234000px;}
.ls1a_c01037{letter-spacing:-3.173625px;}
.lsf_c01037{letter-spacing:-3.105375px;}
.lsb_c01037{letter-spacing:-2.835000px;}
.ls7_c01037{letter-spacing:-2.590800px;}
.ls5_c01037{letter-spacing:-1.940400px;}
.ls1b_c01037{letter-spacing:-1.772693px;}
.ls2_c01037{letter-spacing:-1.729410px;}
.lse_c01037{letter-spacing:-1.668225px;}
.ls16_c01037{letter-spacing:-1.639950px;}
.ls1d_c01037{letter-spacing:-1.017248px;}
.ls1_c01037{letter-spacing:-0.867000px;}
.ls6_c01037{letter-spacing:-0.863708px;}
.lsa_c01037{letter-spacing:-0.851190px;}
.ls0_c01037{letter-spacing:0.000000px;}
.ls9_c01037{letter-spacing:0.867000px;}
.ls14_c01037{letter-spacing:0.928200px;}
.ls3_c01037{letter-spacing:1.729410px;}
.ls13_c01037{letter-spacing:2.590800px;}
.ls17_c01037{letter-spacing:2.907450px;}
.ls8_c01037{letter-spacing:2.934600px;}
.ls19_c01037{letter-spacing:3.457290px;}
.ls1c_c01037{letter-spacing:6.145050px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:0.000000px;}
._c_c01037{margin-left:-9.434965px;}
._5_c01037{margin-left:-7.767421px;}
._3_c01037{margin-left:-6.732000px;}
._8_c01037{margin-left:-5.610000px;}
._4_c01037{margin-left:-4.161185px;}
._6_c01037{margin-left:-2.162815px;}
._7_c01037{margin-left:-1.045206px;}
._b_c01037{width:1.152600px;}
._2_c01037{width:2.371621px;}
._a_c01037{width:4.875323px;}
._9_c01037{width:6.573814px;}
._e_c01037{width:23.648372px;}
._0_c01037{width:25.000165px;}
._d_c01037{width:26.968869px;}
._f_c01037{width:28.626525px;}
._10_c01037{width:32.104621px;}
._11_c01037{width:33.886578px;}
._12_c01037{width:35.544165px;}
._1_c01037{width:716.295277px;}
.fc0_c01037{color:transparent;}
.fsc_c01037{font-size:41.250000px;}
.fsd_c01037{font-size:43.500000px;}
.fs9_c01037{font-size:44.250000px;}
.fse_c01037{font-size:45.000000px;}
.fs7_c01037{font-size:45.750000px;}
.fs6_c01037{font-size:47.250000px;}
.fs1_c01037{font-size:48.750000px;}
.fs2_c01037{font-size:49.500000px;}
.fs0_c01037{font-size:51.000000px;}
.fs3_c01037{font-size:51.750000px;}
.fs4_c01037{font-size:53.250000px;}
.fs5_c01037{font-size:54.750000px;}
.fsf_c01037{font-size:55.500000px;}
.fsb_c01037{font-size:57.750000px;}
.fs11_c01037{font-size:65.250000px;}
.fs8_c01037{font-size:66.750000px;}
.fsa_c01037{font-size:68.250000px;}
.fs10_c01037{font-size:69.750000px;}
.y0_c01037{bottom:0.000000px;}
.y37_c01037{bottom:183.233895px;}
.y65_c01037{bottom:183.238365px;}
.y66_c01037{bottom:183.238785px;}
.y36_c01037{bottom:202.314330px;}
.y64_c01037{bottom:202.318800px;}
.y35_c01037{bottom:221.394795px;}
.y63_c01037{bottom:221.398635px;}
.y34_c01037{bottom:240.835920px;}
.y61_c01037{bottom:240.837795px;}
.y62_c01037{bottom:240.839535px;}
.y33_c01037{bottom:259.555485px;}
.y60_c01037{bottom:259.918230px;}
.y32_c01037{bottom:278.635935px;}
.y5f_c01037{bottom:278.998695px;}
.y5e_c01037{bottom:297.718260px;}
.y31_c01037{bottom:298.077075px;}
.y30_c01037{bottom:316.798005px;}
.y5d_c01037{bottom:317.159385px;}
.y2f_c01037{bottom:335.517570px;}
.y5c_c01037{bottom:335.880000px;}
.y5b_c01037{bottom:335.880480px;}
.y2e_c01037{bottom:354.958695px;}
.y5a_c01037{bottom:355.319085px;}
.y2d_c01037{bottom:374.039160px;}
.y59_c01037{bottom:374.040000px;}
.y2c_c01037{bottom:393.119595px;}
.y58_c01037{bottom:393.479235px;}
.y2b_c01037{bottom:412.200045px;}
.y57_c01037{bottom:412.557900px;}
.y2a_c01037{bottom:431.638665px;}
.y56_c01037{bottom:431.999055px;}
.y55_c01037{bottom:450.718620px;}
.y29_c01037{bottom:450.719100px;}
.y27_c01037{bottom:470.518575px;}
.y28_c01037{bottom:470.519070px;}
.y54_c01037{bottom:470.880180px;}
.y26_c01037{bottom:489.599010px;}
.y53_c01037{bottom:489.960615px;}
.y25_c01037{bottom:509.398515px;}
.y52_c01037{bottom:509.399235px;}
.y24_c01037{bottom:528.119430px;}
.y51_c01037{bottom:528.479235px;}
.y23_c01037{bottom:547.558050px;}
.y50_c01037{bottom:547.920000px;}
.y22_c01037{bottom:566.278980px;}
.y4f_c01037{bottom:566.639100px;}
.y21_c01037{bottom:585.359415px;}
.y4e_c01037{bottom:585.717795px;}
.y20_c01037{bottom:604.439880px;}
.y4d_c01037{bottom:604.798230px;}
.y1f_c01037{bottom:623.878485px;}
.y4c_c01037{bottom:623.878695px;}
.y1e_c01037{bottom:642.958920px;}
.y4b_c01037{bottom:643.319820px;}
.y1d_c01037{bottom:662.038920px;}
.y4a_c01037{bottom:662.399025px;}
.y1b_c01037{bottom:681.117870px;}
.y1c_c01037{bottom:681.118785px;}
.y49_c01037{bottom:681.479460px;}
.y1a_c01037{bottom:700.559010px;}
.y48_c01037{bottom:700.918080px;}
.y19_c01037{bottom:719.997615px;}
.y47_c01037{bottom:720.359235px;}
.y18_c01037{bottom:739.438770px;}
.y46_c01037{bottom:739.439670px;}
.y17_c01037{bottom:758.158335px;}
.y45_c01037{bottom:758.158770px;}
.y16_c01037{bottom:777.238770px;}
.y15_c01037{bottom:796.318815px;}
.y14_c01037{bottom:796.319160px;}
.y44_c01037{bottom:796.679715px;}
.y43_c01037{bottom:816.118350px;}
.y13_c01037{bottom:816.118650px;}
.y42_c01037{bottom:835.198785px;}
.y12_c01037{bottom:835.199115px;}
.y11_c01037{bottom:854.279550px;}
.y41_c01037{bottom:854.639655px;}
.y40_c01037{bottom:854.639760px;}
.y3f_c01037{bottom:873.720195px;}
.y10_c01037{bottom:873.720705px;}
.y3e_c01037{bottom:893.158815px;}
.yf_c01037{bottom:893.159310px;}
.y3d_c01037{bottom:912.238770px;}
.ye_c01037{bottom:912.239760px;}
.y3c_c01037{bottom:931.679715px;}
.yd_c01037{bottom:932.039265px;}
.y3b_c01037{bottom:950.759490px;}
.yc_c01037{bottom:950.760180px;}
.yb_c01037{bottom:970.198785px;}
.y9_c01037{bottom:989.278650px;}
.ya_c01037{bottom:989.278755px;}
.y8_c01037{bottom:1009.078155px;}
.y7_c01037{bottom:1027.799085px;}
.y5_c01037{bottom:1046.878530px;}
.y6_c01037{bottom:1046.879520px;}
.y3a_c01037{bottom:1065.958905px;}
.y4_c01037{bottom:1066.317150px;}
.y39_c01037{bottom:1085.039340px;}
.y3_c01037{bottom:1085.397585px;}
.y38_c01037{bottom:1104.114195px;}
.y2_c01037{bottom:1104.478050px;}
.y1_c01037{bottom:1142.279205px;}
.hd_c01037{height:43.022461px;}
.he_c01037{height:45.369141px;}
.ha_c01037{height:46.151367px;}
.hf_c01037{height:46.933594px;}
.h7_c01037{height:47.619141px;}
.h8_c01037{height:47.715820px;}
.h2_c01037{height:47.845459px;}
.h3_c01037{height:49.886719px;}
.h1_c01037{height:50.402344px;}
.h4_c01037{height:51.143555px;}
.h5_c01037{height:52.625977px;}
.h6_c01037{height:54.108398px;}
.h10_c01037{height:54.849609px;}
.hc_c01037{height:56.650269px;}
.h12_c01037{height:64.485352px;}
.h9_c01037{height:65.967773px;}
.hb_c01037{height:67.450195px;}
.h11_c01037{height:68.932617px;}
.h0_c01037{height:1263.000000px;}
.w0_c01037{width:892.500000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:295.559685px;}
.x6_c01037{left:359.638665px;}
.x2_c01037{left:360.720180px;}
.x5_c01037{left:411.838950px;}
.x9_c01037{left:417.959385px;}
.x3_c01037{left:431.279850px;}
.x8_c01037{left:437.398635px;}
.x7_c01037{left:450.719100px;}
.x4_c01037{left:457.918950px;}
.xa_c01037{left:501.838530px;}
.xd_c01037{left:560.159865px;}
.xb_c01037{left:561.239325px;}
.xe_c01037{left:587.879520px;}
.xc_c01037{left:593.279850px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.lsc_c01037{letter-spacing:-9.999933pt;}
.lsd_c01037{letter-spacing:-4.361000pt;}
.ls12_c01037{letter-spacing:-3.829467pt;}
.ls18_c01037{letter-spacing:-3.808000pt;}
.ls10_c01037{letter-spacing:-3.696600pt;}
.ls4_c01037{letter-spacing:-3.441100pt;}
.ls11_c01037{letter-spacing:-3.071540pt;}
.ls15_c01037{letter-spacing:-2.874667pt;}
.ls1a_c01037{letter-spacing:-2.821000pt;}
.lsf_c01037{letter-spacing:-2.760333pt;}
.lsb_c01037{letter-spacing:-2.520000pt;}
.ls7_c01037{letter-spacing:-2.302933pt;}
.ls5_c01037{letter-spacing:-1.724800pt;}
.ls1b_c01037{letter-spacing:-1.575727pt;}
.ls2_c01037{letter-spacing:-1.537253pt;}
.lse_c01037{letter-spacing:-1.482867pt;}
.ls16_c01037{letter-spacing:-1.457733pt;}
.ls1d_c01037{letter-spacing:-0.904220pt;}
.ls1_c01037{letter-spacing:-0.770667pt;}
.ls6_c01037{letter-spacing:-0.767740pt;}
.lsa_c01037{letter-spacing:-0.756613pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ls9_c01037{letter-spacing:0.770667pt;}
.ls14_c01037{letter-spacing:0.825067pt;}
.ls3_c01037{letter-spacing:1.537253pt;}
.ls13_c01037{letter-spacing:2.302933pt;}
.ls17_c01037{letter-spacing:2.584400pt;}
.ls8_c01037{letter-spacing:2.608533pt;}
.ls19_c01037{letter-spacing:3.073147pt;}
.ls1c_c01037{letter-spacing:5.462267pt;}
.ws0_c01037{word-spacing:0.000000pt;}
._c_c01037{margin-left:-8.386636pt;}
._5_c01037{margin-left:-6.904374pt;}
._3_c01037{margin-left:-5.984000pt;}
._8_c01037{margin-left:-4.986667pt;}
._4_c01037{margin-left:-3.698831pt;}
._6_c01037{margin-left:-1.922502pt;}
._7_c01037{margin-left:-0.929072pt;}
._b_c01037{width:1.024533pt;}
._2_c01037{width:2.108108pt;}
._a_c01037{width:4.333621pt;}
._9_c01037{width:5.843390pt;}
._e_c01037{width:21.020775pt;}
._0_c01037{width:22.222369pt;}
._d_c01037{width:23.972328pt;}
._f_c01037{width:25.445800pt;}
._10_c01037{width:28.537441pt;}
._11_c01037{width:30.121403pt;}
._12_c01037{width:31.594813pt;}
._1_c01037{width:636.706913pt;}
.fsc_c01037{font-size:36.666667pt;}
.fsd_c01037{font-size:38.666667pt;}
.fs9_c01037{font-size:39.333333pt;}
.fse_c01037{font-size:40.000000pt;}
.fs7_c01037{font-size:40.666667pt;}
.fs6_c01037{font-size:42.000000pt;}
.fs1_c01037{font-size:43.333333pt;}
.fs2_c01037{font-size:44.000000pt;}
.fs0_c01037{font-size:45.333333pt;}
.fs3_c01037{font-size:46.000000pt;}
.fs4_c01037{font-size:47.333333pt;}
.fs5_c01037{font-size:48.666667pt;}
.fsf_c01037{font-size:49.333333pt;}
.fsb_c01037{font-size:51.333333pt;}
.fs11_c01037{font-size:58.000000pt;}
.fs8_c01037{font-size:59.333333pt;}
.fsa_c01037{font-size:60.666667pt;}
.fs10_c01037{font-size:62.000000pt;}
.y0_c01037{bottom:0.000000pt;}
.y37_c01037{bottom:162.874573pt;}
.y65_c01037{bottom:162.878547pt;}
.y66_c01037{bottom:162.878920pt;}
.y36_c01037{bottom:179.834960pt;}
.y64_c01037{bottom:179.838933pt;}
.y35_c01037{bottom:196.795373pt;}
.y63_c01037{bottom:196.798787pt;}
.y34_c01037{bottom:214.076373pt;}
.y61_c01037{bottom:214.078040pt;}
.y62_c01037{bottom:214.079587pt;}
.y33_c01037{bottom:230.715987pt;}
.y60_c01037{bottom:231.038427pt;}
.y32_c01037{bottom:247.676387pt;}
.y5f_c01037{bottom:247.998840pt;}
.y5e_c01037{bottom:264.638453pt;}
.y31_c01037{bottom:264.957400pt;}
.y30_c01037{bottom:281.598227pt;}
.y5d_c01037{bottom:281.919453pt;}
.y2f_c01037{bottom:298.237840pt;}
.y5c_c01037{bottom:298.560000pt;}
.y5b_c01037{bottom:298.560427pt;}
.y2e_c01037{bottom:315.518840pt;}
.y5a_c01037{bottom:315.839187pt;}
.y2d_c01037{bottom:332.479253pt;}
.y59_c01037{bottom:332.480000pt;}
.y2c_c01037{bottom:349.439640pt;}
.y58_c01037{bottom:349.759320pt;}
.y2b_c01037{bottom:366.400040pt;}
.y57_c01037{bottom:366.718133pt;}
.y2a_c01037{bottom:383.678813pt;}
.y56_c01037{bottom:383.999160pt;}
.y55_c01037{bottom:400.638773pt;}
.y29_c01037{bottom:400.639200pt;}
.y27_c01037{bottom:418.238733pt;}
.y28_c01037{bottom:418.239173pt;}
.y54_c01037{bottom:418.560160pt;}
.y26_c01037{bottom:435.199120pt;}
.y53_c01037{bottom:435.520547pt;}
.y25_c01037{bottom:452.798680pt;}
.y52_c01037{bottom:452.799320pt;}
.y24_c01037{bottom:469.439493pt;}
.y51_c01037{bottom:469.759320pt;}
.y23_c01037{bottom:486.718267pt;}
.y50_c01037{bottom:487.040000pt;}
.y22_c01037{bottom:503.359093pt;}
.y4f_c01037{bottom:503.679200pt;}
.y21_c01037{bottom:520.319480pt;}
.y4e_c01037{bottom:520.638040pt;}
.y20_c01037{bottom:537.279893pt;}
.y4d_c01037{bottom:537.598427pt;}
.y1f_c01037{bottom:554.558653pt;}
.y4c_c01037{bottom:554.558840pt;}
.y1e_c01037{bottom:571.519040pt;}
.y4b_c01037{bottom:571.839840pt;}
.y1d_c01037{bottom:588.479040pt;}
.y4a_c01037{bottom:588.799133pt;}
.y1b_c01037{bottom:605.438107pt;}
.y1c_c01037{bottom:605.438920pt;}
.y49_c01037{bottom:605.759520pt;}
.y1a_c01037{bottom:622.719120pt;}
.y48_c01037{bottom:623.038293pt;}
.y19_c01037{bottom:639.997880pt;}
.y47_c01037{bottom:640.319320pt;}
.y18_c01037{bottom:657.278907pt;}
.y46_c01037{bottom:657.279707pt;}
.y17_c01037{bottom:673.918520pt;}
.y45_c01037{bottom:673.918907pt;}
.y16_c01037{bottom:690.878907pt;}
.y15_c01037{bottom:707.838947pt;}
.y14_c01037{bottom:707.839253pt;}
.y44_c01037{bottom:708.159747pt;}
.y43_c01037{bottom:725.438533pt;}
.y13_c01037{bottom:725.438800pt;}
.y42_c01037{bottom:742.398920pt;}
.y12_c01037{bottom:742.399213pt;}
.y11_c01037{bottom:759.359600pt;}
.y41_c01037{bottom:759.679693pt;}
.y40_c01037{bottom:759.679787pt;}
.y3f_c01037{bottom:776.640173pt;}
.y10_c01037{bottom:776.640627pt;}
.y3e_c01037{bottom:793.918947pt;}
.yf_c01037{bottom:793.919387pt;}
.y3d_c01037{bottom:810.878907pt;}
.ye_c01037{bottom:810.879787pt;}
.y3c_c01037{bottom:828.159747pt;}
.yd_c01037{bottom:828.479347pt;}
.y3b_c01037{bottom:845.119547pt;}
.yc_c01037{bottom:845.120160pt;}
.yb_c01037{bottom:862.398920pt;}
.y9_c01037{bottom:879.358800pt;}
.ya_c01037{bottom:879.358893pt;}
.y8_c01037{bottom:896.958360pt;}
.y7_c01037{bottom:913.599187pt;}
.y5_c01037{bottom:930.558693pt;}
.y6_c01037{bottom:930.559573pt;}
.y3a_c01037{bottom:947.519027pt;}
.y4_c01037{bottom:947.837467pt;}
.y39_c01037{bottom:964.479413pt;}
.y3_c01037{bottom:964.797853pt;}
.y38_c01037{bottom:981.434840pt;}
.y2_c01037{bottom:981.758267pt;}
.y1_c01037{bottom:1015.359293pt;}
.hd_c01037{height:38.242188pt;}
.he_c01037{height:40.328125pt;}
.ha_c01037{height:41.023438pt;}
.hf_c01037{height:41.718750pt;}
.h7_c01037{height:42.328125pt;}
.h8_c01037{height:42.414062pt;}
.h2_c01037{height:42.529297pt;}
.h3_c01037{height:44.343750pt;}
.h1_c01037{height:44.802083pt;}
.h4_c01037{height:45.460938pt;}
.h5_c01037{height:46.778646pt;}
.h6_c01037{height:48.096354pt;}
.h10_c01037{height:48.755208pt;}
.hc_c01037{height:50.355794pt;}
.h12_c01037{height:57.320313pt;}
.h9_c01037{height:58.638021pt;}
.hb_c01037{height:59.955729pt;}
.h11_c01037{height:61.273438pt;}
.h0_c01037{height:1122.666667pt;}
.w0_c01037{width:793.333333pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:262.719720pt;}
.x6_c01037{left:319.678813pt;}
.x2_c01037{left:320.640160pt;}
.x5_c01037{left:366.079067pt;}
.x9_c01037{left:371.519453pt;}
.x3_c01037{left:383.359867pt;}
.x8_c01037{left:388.798787pt;}
.x7_c01037{left:400.639200pt;}
.x4_c01037{left:407.039067pt;}
.xa_c01037{left:446.078693pt;}
.xd_c01037{left:497.919880pt;}
.xb_c01037{left:498.879400pt;}
.xe_c01037{left:522.559573pt;}
.xc_c01037{left:527.359867pt;}
}





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

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_f4a1e1bae8f2170307b5d2f1.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_a4df609a80d084b8b1d40e4d.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_f38466bfc66e2971f90cc183.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_5d77c60d21a77f0a10250b86.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.364746;font-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_c01038{transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);}
.m19_c01038{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.mf_c01038{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m12_c01038{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.md_c01038{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m10_c01038{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m9_c01038{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.m2_c01038{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_c01038{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.ma_c01038{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);}
.m13_c01038{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m17_c01038{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m14_c01038{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m16_c01038{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m6_c01038{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m11_c01038{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m1_c01038{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m15_c01038{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m0_c01038{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m7_c01038{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m8_c01038{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mc_c01038{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.me_c01038{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.mb_c01038{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m18_c01038{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m5_c01038{transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls1e_c01038{letter-spacing:-8.507700px;}
.lsa_c01038{letter-spacing:-7.512150px;}
.ls10_c01038{letter-spacing:-5.490158px;}
.ls8_c01038{letter-spacing:-5.186700px;}
.ls13_c01038{letter-spacing:-5.126625px;}
.ls11_c01038{letter-spacing:-5.053425px;}
.ls4_c01038{letter-spacing:-4.383300px;}
.ls14_c01038{letter-spacing:-4.031325px;}
.ls1a_c01038{letter-spacing:-3.579750px;}
.ls9_c01038{letter-spacing:-3.457290px;}
.lsb_c01038{letter-spacing:-3.434625px;}
.ls15_c01038{letter-spacing:-3.173625px;}
.ls16_c01038{letter-spacing:-3.037125px;}
.ls6_c01038{letter-spacing:-2.590800px;}
.ls1d_c01038{letter-spacing:-1.820955px;}
.ls17_c01038{letter-spacing:-1.771740px;}
.ls12_c01038{letter-spacing:-1.729410px;}
.ls19_c01038{letter-spacing:-1.040633px;}
.lsf_c01038{letter-spacing:-0.938813px;}
.lse_c01038{letter-spacing:-0.888743px;}
.ls1b_c01038{letter-spacing:-0.876225px;}
.ls5_c01038{letter-spacing:-0.867000px;}
.lsc_c01038{letter-spacing:-0.845250px;}
.ls3_c01038{letter-spacing:0.000000px;}
.ls0_c01038{letter-spacing:0.867000px;}
.ls1c_c01038{letter-spacing:0.892500px;}
.lsd_c01038{letter-spacing:1.006875px;}
.ls1f_c01038{letter-spacing:1.290608px;}
.ls7_c01038{letter-spacing:1.365000px;}
.ls18_c01038{letter-spacing:1.729410px;}
.ls2_c01038{letter-spacing:2.590800px;}
.ls1_c01038{letter-spacing:28.524300px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:0.000000px;}
._b_c01038{margin-left:-26.336279px;}
._3_c01038{margin-left:-12.025765px;}
._7_c01038{margin-left:-9.128965px;}
._1_c01038{margin-left:-6.732000px;}
._4_c01038{margin-left:-5.711793px;}
._17_c01038{margin-left:-3.978207px;}
._2_c01038{margin-left:-2.703104px;}
._e_c01038{margin-left:-1.683449px;}
._6_c01038{width:1.326000px;}
._5_c01038{width:2.952814px;}
._0_c01038{width:4.019042px;}
._c_c01038{width:25.315916px;}
._a_c01038{width:26.968938px;}
._8_c01038{width:28.626456px;}
._d_c01038{width:32.094456px;}
._9_c01038{width:33.756675px;}
._11_c01038{width:201.128786px;}
._13_c01038{width:291.495842px;}
._15_c01038{width:320.320247px;}
._18_c01038{width:349.181959px;}
._12_c01038{width:354.128786px;}
._14_c01038{width:355.909015px;}
._16_c01038{width:383.583378px;}
._10_c01038{width:414.614648px;}
._f_c01038{width:442.511544px;}
._1c_c01038{width:448.672621px;}
._1b_c01038{width:503.094842px;}
._1d_c01038{width:507.052822px;}
._1a_c01038{width:536.683719px;}
._19_c01038{width:538.728421px;}
.fc0_c01038{color:transparent;}
.fsa_c01038{font-size:42.750000px;}
.fs4_c01038{font-size:45.750000px;}
.fs0_c01038{font-size:51.000000px;}
.fs7_c01038{font-size:51.750000px;}
.fs6_c01038{font-size:52.500000px;}
.fs5_c01038{font-size:53.250000px;}
.fsc_c01038{font-size:54.000000px;}
.fs8_c01038{font-size:54.750000px;}
.fsd_c01038{font-size:55.500000px;}
.fs2_c01038{font-size:56.250000px;}
.fs1_c01038{font-size:57.000000px;}
.fsb_c01038{font-size:66.750000px;}
.fs3_c01038{font-size:68.250000px;}
.fs9_c01038{font-size:69.750000px;}
.y0_c01038{bottom:0.000000px;}
.y5a_c01038{bottom:182.158815px;}
.y58_c01038{bottom:201.238560px;}
.y59_c01038{bottom:201.239250px;}
.y57_c01038{bottom:220.679715px;}
.y55_c01038{bottom:239.759700px;}
.y56_c01038{bottom:239.760150px;}
.y54_c01038{bottom:258.840135px;}
.y53_c01038{bottom:258.840630px;}
.y51_c01038{bottom:278.277345px;}
.y52_c01038{bottom:278.279250px;}
.y50_c01038{bottom:297.718485px;}
.y4f_c01038{bottom:316.798950px;}
.y4e_c01038{bottom:335.519850px;}
.y4d_c01038{bottom:354.958470px;}
.y4c_c01038{bottom:374.038920px;}
.y4b_c01038{bottom:393.480060px;}
.y4a_c01038{bottom:412.199610px;}
.y49_c01038{bottom:431.640765px;}
.y48_c01038{bottom:450.360330px;}
.y47_c01038{bottom:470.159820px;}
.y46_c01038{bottom:488.880570px;}
.y45_c01038{bottom:488.881230px;}
.y44_c01038{bottom:508.680720px;}
.y42_c01038{bottom:527.399250px;}
.y43_c01038{bottom:527.399820px;}
.y40_c01038{bottom:546.479250px;}
.y41_c01038{bottom:546.479685px;}
.y3e_c01038{bottom:565.559460px;}
.y3f_c01038{bottom:565.559685px;}
.y3d_c01038{bottom:585.000615px;}
.y3c_c01038{bottom:604.081050px;}
.y3b_c01038{bottom:623.519670px;}
.y39_c01038{bottom:642.594105px;}
.y1e_c01038{bottom:642.599445px;}
.y3a_c01038{bottom:642.599670px;}
.y38_c01038{bottom:662.035245px;}
.y1d_c01038{bottom:662.040570px;}
.y37_c01038{bottom:680.754795px;}
.y1c_c01038{bottom:681.120435px;}
.y36_c01038{bottom:700.195950px;}
.y1b_c01038{bottom:700.200435px;}
.y35_c01038{bottom:719.276385px;}
.y19_c01038{bottom:719.280210px;}
.y1a_c01038{bottom:719.280435px;}
.y34_c01038{bottom:738.356850px;}
.y18_c01038{bottom:738.718830px;}
.y33_c01038{bottom:757.795470px;}
.y17_c01038{bottom:757.799280px;}
.y32_c01038{bottom:776.875905px;}
.y16_c01038{bottom:777.240420px;}
.y31_c01038{bottom:795.956355px;}
.y15_c01038{bottom:795.959385px;}
.y30_c01038{bottom:815.755845px;}
.y13_c01038{bottom:815.759310px;}
.y14_c01038{bottom:815.759490px;}
.y2f_c01038{bottom:834.836310px;}
.y12_c01038{bottom:835.200435px;}
.y2e_c01038{bottom:854.277450px;}
.y10_c01038{bottom:854.638395px;}
.y11_c01038{bottom:854.639655px;}
.y2d_c01038{bottom:873.357900px;}
.yf_c01038{bottom:873.718830px;}
.y2c_c01038{bottom:892.438335px;}
.ye_c01038{bottom:893.159985px;}
.y2b_c01038{bottom:911.518800px;}
.yd_c01038{bottom:912.240420px;}
.y2a_c01038{bottom:930.599235px;}
.yc_c01038{bottom:931.320285px;}
.y29_c01038{bottom:949.679700px;}
.yb_c01038{bottom:950.400240px;}
.y28_c01038{bottom:968.760135px;}
.y9_c01038{bottom:969.479805px;}
.ya_c01038{bottom:969.480285px;}
.y27_c01038{bottom:987.839520px;}
.y8_c01038{bottom:988.560240px;}
.y26_c01038{bottom:1006.919955px;}
.y7_c01038{bottom:1007.640105px;}
.y25_c01038{bottom:1026.000000px;}
.y6_c01038{bottom:1026.720180px;}
.y23_c01038{bottom:1045.440285px;}
.y24_c01038{bottom:1045.440855px;}
.y5_c01038{bottom:1046.158785px;}
.y22_c01038{bottom:1064.520720px;}
.y4_c01038{bottom:1065.239220px;}
.y21_c01038{bottom:1084.319190px;}
.y3_c01038{bottom:1085.039340px;}
.y20_c01038{bottom:1103.039985px;}
.y1f_c01038{bottom:1103.040270px;}
.y2_c01038{bottom:1103.760135px;}
.y1_c01038{bottom:1142.279205px;}
.hb_c01038{height:44.586914px;}
.h5_c01038{height:46.107422px;}
.h1_c01038{height:50.402344px;}
.h8_c01038{height:51.143555px;}
.h7_c01038{height:51.884766px;}
.h6_c01038{height:52.625977px;}
.hd_c01038{height:53.367188px;}
.h9_c01038{height:54.108398px;}
.he_c01038{height:54.849609px;}
.h3_c01038{height:55.590820px;}
.h2_c01038{height:56.332031px;}
.hc_c01038{height:65.967773px;}
.h4_c01038{height:67.450195px;}
.ha_c01038{height:68.932617px;}
.h0_c01038{height:1263.000000px;}
.w0_c01038{width:892.500000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:292.679100px;}
.xb_c01038{left:355.678530px;}
.x6_c01038{left:356.759235px;}
.x2_c01038{left:357.838950px;}
.x8_c01038{left:389.159820px;}
.x9_c01038{left:395.639700px;}
.xc_c01038{left:401.399235px;}
.x5_c01038{left:409.319235px;}
.x13_c01038{left:413.999400px;}
.x7_c01038{left:415.078815px;}
.x10_c01038{left:420.838530px;}
.x14_c01038{left:433.079400px;}
.x11_c01038{left:439.918350px;}
.x12_c01038{left:446.399820px;}
.xa_c01038{left:466.559100px;}
.xe_c01038{left:556.198545px;}
.x3_c01038{left:557.639700px;}
.xf_c01038{left:589.319820px;}
.xd_c01038{left:590.399235px;}
.x4_c01038{left:687.959385px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls1e_c01038{letter-spacing:-7.562400pt;}
.lsa_c01038{letter-spacing:-6.677467pt;}
.ls10_c01038{letter-spacing:-4.880140pt;}
.ls8_c01038{letter-spacing:-4.610400pt;}
.ls13_c01038{letter-spacing:-4.557000pt;}
.ls11_c01038{letter-spacing:-4.491933pt;}
.ls4_c01038{letter-spacing:-3.896267pt;}
.ls14_c01038{letter-spacing:-3.583400pt;}
.ls1a_c01038{letter-spacing:-3.182000pt;}
.ls9_c01038{letter-spacing:-3.073147pt;}
.lsb_c01038{letter-spacing:-3.053000pt;}
.ls15_c01038{letter-spacing:-2.821000pt;}
.ls16_c01038{letter-spacing:-2.699667pt;}
.ls6_c01038{letter-spacing:-2.302933pt;}
.ls1d_c01038{letter-spacing:-1.618627pt;}
.ls17_c01038{letter-spacing:-1.574880pt;}
.ls12_c01038{letter-spacing:-1.537253pt;}
.ls19_c01038{letter-spacing:-0.925007pt;}
.lsf_c01038{letter-spacing:-0.834500pt;}
.lse_c01038{letter-spacing:-0.789993pt;}
.ls1b_c01038{letter-spacing:-0.778867pt;}
.ls5_c01038{letter-spacing:-0.770667pt;}
.lsc_c01038{letter-spacing:-0.751333pt;}
.ls3_c01038{letter-spacing:0.000000pt;}
.ls0_c01038{letter-spacing:0.770667pt;}
.ls1c_c01038{letter-spacing:0.793333pt;}
.lsd_c01038{letter-spacing:0.895000pt;}
.ls1f_c01038{letter-spacing:1.147207pt;}
.ls7_c01038{letter-spacing:1.213333pt;}
.ls18_c01038{letter-spacing:1.537253pt;}
.ls2_c01038{letter-spacing:2.302933pt;}
.ls1_c01038{letter-spacing:25.354933pt;}
.ws0_c01038{word-spacing:0.000000pt;}
._b_c01038{margin-left:-23.410026pt;}
._3_c01038{margin-left:-10.689569pt;}
._7_c01038{margin-left:-8.114636pt;}
._1_c01038{margin-left:-5.984000pt;}
._4_c01038{margin-left:-5.077149pt;}
._17_c01038{margin-left:-3.536184pt;}
._2_c01038{margin-left:-2.402759pt;}
._e_c01038{margin-left:-1.496400pt;}
._6_c01038{width:1.178667pt;}
._5_c01038{width:2.624723pt;}
._0_c01038{width:3.572482pt;}
._c_c01038{width:22.503036pt;}
._a_c01038{width:23.972390pt;}
._8_c01038{width:25.445738pt;}
._d_c01038{width:28.528405pt;}
._9_c01038{width:30.005934pt;}
._11_c01038{width:178.781144pt;}
._13_c01038{width:259.107415pt;}
._15_c01038{width:284.729108pt;}
._18_c01038{width:310.383964pt;}
._12_c01038{width:314.781144pt;}
._14_c01038{width:316.363569pt;}
._16_c01038{width:340.963003pt;}
._10_c01038{width:368.546354pt;}
._f_c01038{width:393.343595pt;}
._1c_c01038{width:398.820108pt;}
._1b_c01038{width:447.195415pt;}
._1d_c01038{width:450.713620pt;}
._1a_c01038{width:477.052194pt;}
._19_c01038{width:478.869708pt;}
.fsa_c01038{font-size:38.000000pt;}
.fs4_c01038{font-size:40.666667pt;}
.fs0_c01038{font-size:45.333333pt;}
.fs7_c01038{font-size:46.000000pt;}
.fs6_c01038{font-size:46.666667pt;}
.fs5_c01038{font-size:47.333333pt;}
.fsc_c01038{font-size:48.000000pt;}
.fs8_c01038{font-size:48.666667pt;}
.fsd_c01038{font-size:49.333333pt;}
.fs2_c01038{font-size:50.000000pt;}
.fs1_c01038{font-size:50.666667pt;}
.fsb_c01038{font-size:59.333333pt;}
.fs3_c01038{font-size:60.666667pt;}
.fs9_c01038{font-size:62.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y5a_c01038{bottom:161.918947pt;}
.y58_c01038{bottom:178.878720pt;}
.y59_c01038{bottom:178.879333pt;}
.y57_c01038{bottom:196.159747pt;}
.y55_c01038{bottom:213.119733pt;}
.y56_c01038{bottom:213.120133pt;}
.y54_c01038{bottom:230.080120pt;}
.y53_c01038{bottom:230.080560pt;}
.y51_c01038{bottom:247.357640pt;}
.y52_c01038{bottom:247.359333pt;}
.y50_c01038{bottom:264.638653pt;}
.y4f_c01038{bottom:281.599067pt;}
.y4e_c01038{bottom:298.239867pt;}
.y4d_c01038{bottom:315.518640pt;}
.y4c_c01038{bottom:332.479040pt;}
.y4b_c01038{bottom:349.760053pt;}
.y4a_c01038{bottom:366.399653pt;}
.y49_c01038{bottom:383.680680pt;}
.y48_c01038{bottom:400.320293pt;}
.y47_c01038{bottom:417.919840pt;}
.y46_c01038{bottom:434.560507pt;}
.y45_c01038{bottom:434.561093pt;}
.y44_c01038{bottom:452.160640pt;}
.y42_c01038{bottom:468.799333pt;}
.y43_c01038{bottom:468.799840pt;}
.y40_c01038{bottom:485.759333pt;}
.y41_c01038{bottom:485.759720pt;}
.y3e_c01038{bottom:502.719520pt;}
.y3f_c01038{bottom:502.719720pt;}
.y3d_c01038{bottom:520.000547pt;}
.y3c_c01038{bottom:536.960933pt;}
.y3b_c01038{bottom:554.239707pt;}
.y39_c01038{bottom:571.194760pt;}
.y1e_c01038{bottom:571.199507pt;}
.y3a_c01038{bottom:571.199707pt;}
.y38_c01038{bottom:588.475773pt;}
.y1d_c01038{bottom:588.480507pt;}
.y37_c01038{bottom:605.115373pt;}
.y1c_c01038{bottom:605.440387pt;}
.y36_c01038{bottom:622.396400pt;}
.y1b_c01038{bottom:622.400387pt;}
.y35_c01038{bottom:639.356787pt;}
.y19_c01038{bottom:639.360187pt;}
.y1a_c01038{bottom:639.360387pt;}
.y34_c01038{bottom:656.317200pt;}
.y18_c01038{bottom:656.638960pt;}
.y33_c01038{bottom:673.595973pt;}
.y17_c01038{bottom:673.599360pt;}
.y32_c01038{bottom:690.556360pt;}
.y16_c01038{bottom:690.880373pt;}
.y31_c01038{bottom:707.516760pt;}
.y15_c01038{bottom:707.519453pt;}
.y30_c01038{bottom:725.116307pt;}
.y13_c01038{bottom:725.119387pt;}
.y14_c01038{bottom:725.119547pt;}
.y2f_c01038{bottom:742.076720pt;}
.y12_c01038{bottom:742.400387pt;}
.y2e_c01038{bottom:759.357733pt;}
.y10_c01038{bottom:759.678573pt;}
.y11_c01038{bottom:759.679693pt;}
.y2d_c01038{bottom:776.318133pt;}
.yf_c01038{bottom:776.638960pt;}
.y2c_c01038{bottom:793.278520pt;}
.ye_c01038{bottom:793.919987pt;}
.y2b_c01038{bottom:810.238933pt;}
.yd_c01038{bottom:810.880373pt;}
.y2a_c01038{bottom:827.199320pt;}
.yc_c01038{bottom:827.840253pt;}
.y29_c01038{bottom:844.159733pt;}
.yb_c01038{bottom:844.800213pt;}
.y28_c01038{bottom:861.120120pt;}
.y9_c01038{bottom:861.759827pt;}
.ya_c01038{bottom:861.760253pt;}
.y27_c01038{bottom:878.079573pt;}
.y8_c01038{bottom:878.720213pt;}
.y26_c01038{bottom:895.039960pt;}
.y7_c01038{bottom:895.680093pt;}
.y25_c01038{bottom:912.000000pt;}
.y6_c01038{bottom:912.640160pt;}
.y23_c01038{bottom:929.280253pt;}
.y24_c01038{bottom:929.280760pt;}
.y5_c01038{bottom:929.918920pt;}
.y22_c01038{bottom:946.240640pt;}
.y4_c01038{bottom:946.879307pt;}
.y21_c01038{bottom:963.839280pt;}
.y3_c01038{bottom:964.479413pt;}
.y20_c01038{bottom:980.479987pt;}
.y1f_c01038{bottom:980.480240pt;}
.y2_c01038{bottom:981.120120pt;}
.y1_c01038{bottom:1015.359293pt;}
.hb_c01038{height:39.632812pt;}
.h5_c01038{height:40.984375pt;}
.h1_c01038{height:44.802083pt;}
.h8_c01038{height:45.460938pt;}
.h7_c01038{height:46.119792pt;}
.h6_c01038{height:46.778646pt;}
.hd_c01038{height:47.437500pt;}
.h9_c01038{height:48.096354pt;}
.he_c01038{height:48.755208pt;}
.h3_c01038{height:49.414063pt;}
.h2_c01038{height:50.072917pt;}
.hc_c01038{height:58.638021pt;}
.h4_c01038{height:59.955729pt;}
.ha_c01038{height:61.273438pt;}
.h0_c01038{height:1122.666667pt;}
.w0_c01038{width:793.333333pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:260.159200pt;}
.xb_c01038{left:316.158693pt;}
.x6_c01038{left:317.119320pt;}
.x2_c01038{left:318.079067pt;}
.x8_c01038{left:345.919840pt;}
.x9_c01038{left:351.679733pt;}
.xc_c01038{left:356.799320pt;}
.x5_c01038{left:363.839320pt;}
.x13_c01038{left:367.999467pt;}
.x7_c01038{left:368.958947pt;}
.x10_c01038{left:374.078693pt;}
.x14_c01038{left:384.959467pt;}
.x11_c01038{left:391.038533pt;}
.x12_c01038{left:396.799840pt;}
.xa_c01038{left:414.719200pt;}
.xe_c01038{left:494.398707pt;}
.x3_c01038{left:495.679733pt;}
.xf_c01038{left:523.839840pt;}
.xd_c01038{left:524.799320pt;}
.x4_c01038{left:611.519453pt;}
}





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

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_66f8a87a90531ef7d4085cb3.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_f63d5fa1bdc7a503e42e5e52.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.432129;font-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_c01039{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m1_c01039{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m8_c01039{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.ma_c01039{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m7_c01039{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m5_c01039{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.mb_c01039{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m6_c01039{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m0_c01039{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m3_c01039{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m9_c01039{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m4_c01039{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m2_c01039{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls12_c01039{letter-spacing:-3.037125px;}
.ls9_c01039{letter-spacing:-2.693153px;}
.ls11_c01039{letter-spacing:-2.619368px;}
.lsb_c01039{letter-spacing:-2.590800px;}
.ls6_c01039{letter-spacing:-2.504700px;}
.ls8_c01039{letter-spacing:-1.744200px;}
.ls10_c01039{letter-spacing:-1.729410px;}
.lsc_c01039{letter-spacing:-1.673310px;}
.lsa_c01039{letter-spacing:-0.988883px;}
.ls7_c01039{letter-spacing:-0.879750px;}
.ls3_c01039{letter-spacing:-0.867000px;}
.ls5_c01039{letter-spacing:-0.792000px;}
.ls2_c01039{letter-spacing:0.000000px;}
.ls1_c01039{letter-spacing:0.867000px;}
.lsf_c01039{letter-spacing:0.915900px;}
.lse_c01039{letter-spacing:1.729410px;}
.ls4_c01039{letter-spacing:1.993448px;}
.lsd_c01039{letter-spacing:2.590800px;}
.ls0_c01039{letter-spacing:19.879800px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:0.000000px;}
._9_c01039{margin-left:-41.620875px;}
._8_c01039{margin-left:-6.732000px;}
._3_c01039{margin-left:-5.099931px;}
._5_c01039{margin-left:-2.703035px;}
._4_c01039{margin-left:-1.428138px;}
._7_c01039{width:1.172827px;}
._6_c01039{width:2.233351px;}
._2_c01039{width:4.023675px;}
._e_c01039{width:23.501007px;}
._d_c01039{width:25.305958px;}
._0_c01039{width:26.652980px;}
._a_c01039{width:28.626456px;}
._b_c01039{width:32.094525px;}
._c_c01039{width:33.756744px;}
._10_c01039{width:35.544096px;}
._f_c01039{width:37.206384px;}
._1_c01039{width:714.642462px;}
.fc0_c01039{color:transparent;}
.fs2_c01039{font-size:41.250000px;}
.fs3_c01039{font-size:48.000000px;}
.fs0_c01039{font-size:51.000000px;}
.fs4_c01039{font-size:51.750000px;}
.fs7_c01039{font-size:53.250000px;}
.fs5_c01039{font-size:54.000000px;}
.fs1_c01039{font-size:54.750000px;}
.fs6_c01039{font-size:59.250000px;}
.fs8_c01039{font-size:66.750000px;}
.y0_c01039{bottom:0.000000px;}
.y69_c01039{bottom:185.758920px;}
.y37_c01039{bottom:186.477510px;}
.y68_c01039{bottom:205.200075px;}
.y36_c01039{bottom:205.918665px;}
.y67_c01039{bottom:224.280510px;}
.y35_c01039{bottom:224.999100px;}
.y66_c01039{bottom:243.360975px;}
.y34_c01039{bottom:244.079565px;}
.y65_c01039{bottom:262.441410px;}
.y33_c01039{bottom:263.160000px;}
.y64_c01039{bottom:281.880015px;}
.y32_c01039{bottom:282.240465px;}
.y63_c01039{bottom:300.600945px;}
.y31_c01039{bottom:301.320900px;}
.y62_c01039{bottom:320.039565px;}
.y2f_c01039{bottom:320.759700px;}
.y30_c01039{bottom:320.760135px;}
.y61_c01039{bottom:339.120000px;}
.y2e_c01039{bottom:339.840135px;}
.y5f_c01039{bottom:358.560585px;}
.y60_c01039{bottom:358.560750px;}
.y2d_c01039{bottom:358.561065px;}
.y5e_c01039{bottom:377.280150px;}
.y2c_c01039{bottom:377.641500px;}
.y5d_c01039{bottom:396.721305px;}
.y2b_c01039{bottom:397.080120px;}
.y5c_c01039{bottom:415.440855px;}
.y2a_c01039{bottom:415.801050px;}
.y29_c01039{bottom:435.239655px;}
.y5b_c01039{bottom:435.240345px;}
.y5a_c01039{bottom:453.601545px;}
.y27_c01039{bottom:453.960435px;}
.y28_c01039{bottom:453.960570px;}
.y59_c01039{bottom:473.399685px;}
.y26_c01039{bottom:473.759955px;}
.y58_c01039{bottom:492.840840px;}
.y25_c01039{bottom:493.198560px;}
.y57_c01039{bottom:512.640330px;}
.y24_c01039{bottom:512.998050px;}
.y56_c01039{bottom:531.720795px;}
.y23_c01039{bottom:532.078515px;}
.y55_c01039{bottom:550.801230px;}
.y22_c01039{bottom:551.158950px;}
.y54_c01039{bottom:570.239850px;}
.y21_c01039{bottom:570.600105px;}
.y53_c01039{bottom:589.320300px;}
.y20_c01039{bottom:589.680540px;}
.y1f_c01039{bottom:608.040570px;}
.y52_c01039{bottom:608.041215px;}
.y51_c01039{bottom:626.762145px;}
.y1d_c01039{bottom:627.479250px;}
.y1e_c01039{bottom:627.479685px;}
.y50_c01039{bottom:646.200765px;}
.y1c_c01039{bottom:646.559685px;}
.y4f_c01039{bottom:665.641890px;}
.y1b_c01039{bottom:666.000600px;}
.y1a_c01039{bottom:666.000750px;}
.y4e_c01039{bottom:684.361455px;}
.y19_c01039{bottom:684.721665px;}
.y4d_c01039{bottom:704.160960px;}
.y18_c01039{bottom:704.519805px;}
.y4c_c01039{bottom:722.881875px;}
.y17_c01039{bottom:723.601440px;}
.y4b_c01039{bottom:742.681395px;}
.y16_c01039{bottom:743.040045px;}
.y4a_c01039{bottom:761.761830px;}
.y15_c01039{bottom:762.120480px;}
.y49_c01039{bottom:781.200435px;}
.y14_c01039{bottom:781.559100px;}
.y48_c01039{bottom:799.921740px;}
.y13_c01039{bottom:800.280030px;}
.y47_c01039{bottom:819.360345px;}
.y12_c01039{bottom:819.721155px;}
.y46_c01039{bottom:838.801500px;}
.y11_c01039{bottom:839.160465px;}
.y10_c01039{bottom:839.160780px;}
.y45_c01039{bottom:858.240120px;}
.yf_c01039{bottom:858.601920px;}
.y44_c01039{bottom:876.961035px;}
.ye_c01039{bottom:877.682370px;}
.y43_c01039{bottom:896.394705px;}
.yd_c01039{bottom:897.120990px;}
.y42_c01039{bottom:915.475155px;}
.yc_c01039{bottom:916.201425px;}
.y41_c01039{bottom:935.274645px;}
.yb_c01039{bottom:936.000945px;}
.y40_c01039{bottom:954.355110px;}
.ya_c01039{bottom:954.721845px;}
.y3f_c01039{bottom:973.796235px;}
.y9_c01039{bottom:974.160465px;}
.y3e_c01039{bottom:992.515800px;}
.y8_c01039{bottom:992.881395px;}
.y3d_c01039{bottom:1011.596265px;}
.y7_c01039{bottom:1012.320000px;}
.y3c_c01039{bottom:1031.037390px;}
.y6_c01039{bottom:1031.400450px;}
.y3b_c01039{bottom:1050.476010px;}
.y5_c01039{bottom:1051.199955px;}
.y3a_c01039{bottom:1069.556460px;}
.y4_c01039{bottom:1070.280390px;}
.y39_c01039{bottom:1088.636895px;}
.y3_c01039{bottom:1089.001695px;}
.y38_c01039{bottom:1108.078050px;}
.y2_c01039{bottom:1108.440315px;}
.y1_c01039{bottom:1147.320285px;}
.h3_c01039{height:43.022461px;}
.h4_c01039{height:47.437500px;}
.h1_c01039{height:50.402344px;}
.h5_c01039{height:51.143555px;}
.h8_c01039{height:52.625977px;}
.h6_c01039{height:53.367188px;}
.h2_c01039{height:54.108398px;}
.h7_c01039{height:58.555664px;}
.h9_c01039{height:65.967773px;}
.h0_c01039{height:1263.000000px;}
.w0_c01039{width:892.500000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:297.000000px;}
.xd_c01039{left:358.918665px;}
.x8_c01039{left:359.999085px;}
.x6_c01039{left:361.077615px;}
.x3_c01039{left:362.159850px;}
.x7_c01039{left:399.599670px;}
.x4_c01039{left:400.679070px;}
.xb_c01039{left:405.000000px;}
.x9_c01039{left:424.798515px;}
.x5_c01039{left:426.599670px;}
.xc_c01039{left:430.918950px;}
.xa_c01039{left:444.598530px;}
.x11_c01039{left:560.518455px;}
.xf_c01039{left:561.599460px;}
.xe_c01039{left:562.679130px;}
.x12_c01039{left:592.918950px;}
.x10_c01039{left:594.000000px;}
.x2_c01039{left:692.998950px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls12_c01039{letter-spacing:-2.699667pt;}
.ls9_c01039{letter-spacing:-2.393913pt;}
.ls11_c01039{letter-spacing:-2.328327pt;}
.lsb_c01039{letter-spacing:-2.302933pt;}
.ls6_c01039{letter-spacing:-2.226400pt;}
.ls8_c01039{letter-spacing:-1.550400pt;}
.ls10_c01039{letter-spacing:-1.537253pt;}
.lsc_c01039{letter-spacing:-1.487387pt;}
.lsa_c01039{letter-spacing:-0.879007pt;}
.ls7_c01039{letter-spacing:-0.782000pt;}
.ls3_c01039{letter-spacing:-0.770667pt;}
.ls5_c01039{letter-spacing:-0.704000pt;}
.ls2_c01039{letter-spacing:0.000000pt;}
.ls1_c01039{letter-spacing:0.770667pt;}
.lsf_c01039{letter-spacing:0.814133pt;}
.lse_c01039{letter-spacing:1.537253pt;}
.ls4_c01039{letter-spacing:1.771953pt;}
.lsd_c01039{letter-spacing:2.302933pt;}
.ls0_c01039{letter-spacing:17.670933pt;}
.ws0_c01039{word-spacing:0.000000pt;}
._9_c01039{margin-left:-36.996334pt;}
._8_c01039{margin-left:-5.984000pt;}
._3_c01039{margin-left:-4.533272pt;}
._5_c01039{margin-left:-2.402697pt;}
._4_c01039{margin-left:-1.269456pt;}
._7_c01039{width:1.042513pt;}
._6_c01039{width:1.985200pt;}
._2_c01039{width:3.576600pt;}
._e_c01039{width:20.889784pt;}
._d_c01039{width:22.494185pt;}
._0_c01039{width:23.691538pt;}
._a_c01039{width:25.445738pt;}
._b_c01039{width:28.528466pt;}
._c_c01039{width:30.005995pt;}
._10_c01039{width:31.594752pt;}
._f_c01039{width:33.072342pt;}
._1_c01039{width:635.237744pt;}
.fs2_c01039{font-size:36.666667pt;}
.fs3_c01039{font-size:42.666667pt;}
.fs0_c01039{font-size:45.333333pt;}
.fs4_c01039{font-size:46.000000pt;}
.fs7_c01039{font-size:47.333333pt;}
.fs5_c01039{font-size:48.000000pt;}
.fs1_c01039{font-size:48.666667pt;}
.fs6_c01039{font-size:52.666667pt;}
.fs8_c01039{font-size:59.333333pt;}
.y0_c01039{bottom:0.000000pt;}
.y69_c01039{bottom:165.119040pt;}
.y37_c01039{bottom:165.757787pt;}
.y68_c01039{bottom:182.400067pt;}
.y36_c01039{bottom:183.038813pt;}
.y67_c01039{bottom:199.360453pt;}
.y35_c01039{bottom:199.999200pt;}
.y66_c01039{bottom:216.320867pt;}
.y34_c01039{bottom:216.959613pt;}
.y65_c01039{bottom:233.281253pt;}
.y33_c01039{bottom:233.920000pt;}
.y64_c01039{bottom:250.560013pt;}
.y32_c01039{bottom:250.880413pt;}
.y63_c01039{bottom:267.200840pt;}
.y31_c01039{bottom:267.840800pt;}
.y62_c01039{bottom:284.479613pt;}
.y2f_c01039{bottom:285.119733pt;}
.y30_c01039{bottom:285.120120pt;}
.y61_c01039{bottom:301.440000pt;}
.y2e_c01039{bottom:302.080120pt;}
.y5f_c01039{bottom:318.720520pt;}
.y60_c01039{bottom:318.720667pt;}
.y2d_c01039{bottom:318.720947pt;}
.y5e_c01039{bottom:335.360133pt;}
.y2c_c01039{bottom:335.681333pt;}
.y5d_c01039{bottom:352.641160pt;}
.y2b_c01039{bottom:352.960107pt;}
.y5c_c01039{bottom:369.280760pt;}
.y2a_c01039{bottom:369.600933pt;}
.y29_c01039{bottom:386.879693pt;}
.y5b_c01039{bottom:386.880307pt;}
.y5a_c01039{bottom:403.201373pt;}
.y27_c01039{bottom:403.520387pt;}
.y28_c01039{bottom:403.520507pt;}
.y59_c01039{bottom:420.799720pt;}
.y26_c01039{bottom:421.119960pt;}
.y58_c01039{bottom:438.080747pt;}
.y25_c01039{bottom:438.398720pt;}
.y57_c01039{bottom:455.680293pt;}
.y24_c01039{bottom:455.998267pt;}
.y56_c01039{bottom:472.640707pt;}
.y23_c01039{bottom:472.958680pt;}
.y55_c01039{bottom:489.601093pt;}
.y22_c01039{bottom:489.919067pt;}
.y54_c01039{bottom:506.879867pt;}
.y21_c01039{bottom:507.200093pt;}
.y53_c01039{bottom:523.840267pt;}
.y20_c01039{bottom:524.160480pt;}
.y1f_c01039{bottom:540.480507pt;}
.y52_c01039{bottom:540.481080pt;}
.y51_c01039{bottom:557.121907pt;}
.y1d_c01039{bottom:557.759333pt;}
.y1e_c01039{bottom:557.759720pt;}
.y50_c01039{bottom:574.400680pt;}
.y1c_c01039{bottom:574.719720pt;}
.y4f_c01039{bottom:591.681680pt;}
.y1b_c01039{bottom:592.000533pt;}
.y1a_c01039{bottom:592.000667pt;}
.y4e_c01039{bottom:608.321293pt;}
.y19_c01039{bottom:608.641480pt;}
.y4d_c01039{bottom:625.920853pt;}
.y18_c01039{bottom:626.239827pt;}
.y4c_c01039{bottom:642.561667pt;}
.y17_c01039{bottom:643.201280pt;}
.y4b_c01039{bottom:660.161240pt;}
.y16_c01039{bottom:660.480040pt;}
.y4a_c01039{bottom:677.121627pt;}
.y15_c01039{bottom:677.440427pt;}
.y49_c01039{bottom:694.400387pt;}
.y14_c01039{bottom:694.719200pt;}
.y48_c01039{bottom:711.041547pt;}
.y13_c01039{bottom:711.360027pt;}
.y47_c01039{bottom:728.320307pt;}
.y12_c01039{bottom:728.641027pt;}
.y46_c01039{bottom:745.601333pt;}
.y11_c01039{bottom:745.920413pt;}
.y10_c01039{bottom:745.920693pt;}
.y45_c01039{bottom:762.880107pt;}
.yf_c01039{bottom:763.201707pt;}
.y44_c01039{bottom:779.520920pt;}
.ye_c01039{bottom:780.162107pt;}
.y43_c01039{bottom:796.795293pt;}
.yd_c01039{bottom:797.440880pt;}
.y42_c01039{bottom:813.755693pt;}
.yc_c01039{bottom:814.401267pt;}
.y41_c01039{bottom:831.355240pt;}
.yb_c01039{bottom:832.000840pt;}
.y40_c01039{bottom:848.315653pt;}
.ya_c01039{bottom:848.641640pt;}
.y3f_c01039{bottom:865.596653pt;}
.y9_c01039{bottom:865.920413pt;}
.y3e_c01039{bottom:882.236267pt;}
.y8_c01039{bottom:882.561240pt;}
.y3d_c01039{bottom:899.196680pt;}
.y7_c01039{bottom:899.840000pt;}
.y3c_c01039{bottom:916.477680pt;}
.y6_c01039{bottom:916.800400pt;}
.y3b_c01039{bottom:933.756453pt;}
.y5_c01039{bottom:934.399960pt;}
.y3a_c01039{bottom:950.716853pt;}
.y4_c01039{bottom:951.360347pt;}
.y39_c01039{bottom:967.677240pt;}
.y3_c01039{bottom:968.001507pt;}
.y38_c01039{bottom:984.958267pt;}
.y2_c01039{bottom:985.280280pt;}
.y1_c01039{bottom:1019.840253pt;}
.h3_c01039{height:38.242188pt;}
.h4_c01039{height:42.166667pt;}
.h1_c01039{height:44.802083pt;}
.h5_c01039{height:45.460938pt;}
.h8_c01039{height:46.778646pt;}
.h6_c01039{height:47.437500pt;}
.h2_c01039{height:48.096354pt;}
.h7_c01039{height:52.049479pt;}
.h9_c01039{height:58.638021pt;}
.h0_c01039{height:1122.666667pt;}
.w0_c01039{width:793.333333pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:264.000000pt;}
.xd_c01039{left:319.038813pt;}
.x8_c01039{left:319.999187pt;}
.x6_c01039{left:320.957880pt;}
.x3_c01039{left:321.919867pt;}
.x7_c01039{left:355.199707pt;}
.x4_c01039{left:356.159173pt;}
.xb_c01039{left:360.000000pt;}
.x9_c01039{left:377.598680pt;}
.x5_c01039{left:379.199707pt;}
.xc_c01039{left:383.039067pt;}
.xa_c01039{left:395.198693pt;}
.x11_c01039{left:498.238627pt;}
.xf_c01039{left:499.199520pt;}
.xe_c01039{left:500.159227pt;}
.x12_c01039{left:527.039067pt;}
.x10_c01039{left:528.000000pt;}
.x2_c01039{left:615.999067pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_526ae7753655a1432a0b357b.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_bc9df6d902e3e70fe4c31151.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_f45e02ddddcdaaaf496fdd43.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01040;src:url('chunks/assets/font_8945d711aaa7a7aa48d0e85f.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:1.364746;font-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_c01040{transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);}
.me_c01040{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.mc_c01040{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.mb_c01040{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m5_c01040{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m3_c01040{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_c01040{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m4_c01040{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m6_c01040{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m0_c01040{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m8_c01040{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m7_c01040{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m1_c01040{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m9_c01040{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.ma_c01040{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.lsa_c01040{letter-spacing:-6.915600px;}
.lsc_c01040{letter-spacing:-6.874403px;}
.lsf_c01040{letter-spacing:-3.346200px;}
.ls12_c01040{letter-spacing:-3.173625px;}
.ls10_c01040{letter-spacing:-3.131243px;}
.ls5_c01040{letter-spacing:-2.590800px;}
.lse_c01040{letter-spacing:-2.582475px;}
.ls7_c01040{letter-spacing:-1.729410px;}
.ls16_c01040{letter-spacing:-1.064018px;}
.ls15_c01040{letter-spacing:-1.040633px;}
.ls6_c01040{letter-spacing:-0.867000px;}
.ls3_c01040{letter-spacing:0.000000px;}
.ls8_c01040{letter-spacing:0.867000px;}
.ls11_c01040{letter-spacing:0.931875px;}
.ls9_c01040{letter-spacing:1.320000px;}
.lsd_c01040{letter-spacing:1.729410px;}
.lsb_c01040{letter-spacing:1.761375px;}
.ls14_c01040{letter-spacing:1.938833px;}
.ls13_c01040{letter-spacing:2.590800px;}
.ls0_c01040{letter-spacing:3.457290px;}
.ls2_c01040{letter-spacing:6.049110px;}
.ls1_c01040{letter-spacing:7.777500px;}
.ls4_c01040{letter-spacing:21.411600px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01040{word-spacing:0.000000px;}
._5_c01040{margin-left:-44.358962px;}
._c_c01040{margin-left:-28.467958px;}
._8_c01040{margin-left:-14.305846px;}
._7_c01040{margin-left:-10.148965px;}
._6_c01040{margin-left:-7.986358px;}
._0_c01040{margin-left:-6.324138px;}
._2_c01040{margin-left:-4.896000px;}
._1_c01040{margin-left:-3.319806px;}
._3_c01040{margin-left:-1.489027px;}
._4_c01040{width:1.799833px;}
._9_c01040{width:3.494520px;}
._a_c01040{width:11.274864px;}
._b_c01040{width:16.906621px;}
._e_c01040{width:25.296000px;}
._d_c01040{width:26.968869px;}
._10_c01040{width:28.636621px;}
._f_c01040{width:32.079380px;}
._11_c01040{width:33.886509px;}
._12_c01040{width:35.544096px;}
.fc0_c01040{color:transparent;}
.fs1_c01040{font-size:42.000000px;}
.fs9_c01040{font-size:45.000000px;}
.fs6_c01040{font-size:45.750000px;}
.fs7_c01040{font-size:47.250000px;}
.fsa_c01040{font-size:49.500000px;}
.fs0_c01040{font-size:51.000000px;}
.fs8_c01040{font-size:52.500000px;}
.fs4_c01040{font-size:53.250000px;}
.fs3_c01040{font-size:56.250000px;}
.fs5_c01040{font-size:58.500000px;}
.fs2_c01040{font-size:66.000000px;}
.fsb_c01040{font-size:66.750000px;}
.fsd_c01040{font-size:68.250000px;}
.fsc_c01040{font-size:69.750000px;}
.y0_c01040{bottom:0.000000px;}
.y31_c01040{bottom:184.318650px;}
.y63_c01040{bottom:184.318800px;}
.y30_c01040{bottom:203.399115px;}
.y62_c01040{bottom:203.399235px;}
.y61_c01040{bottom:222.118785px;}
.y2f_c01040{bottom:222.479550px;}
.y5f_c01040{bottom:241.198215px;}
.y60_c01040{bottom:241.198785px;}
.y2e_c01040{bottom:241.199115px;}
.y5e_c01040{bottom:259.919145px;}
.y2d_c01040{bottom:259.920045px;}
.y5d_c01040{bottom:279.718650px;}
.y2c_c01040{bottom:279.719535px;}
.y2b_c01040{bottom:297.000000px;}
.y5c_c01040{bottom:298.799100px;}
.y2a_c01040{bottom:317.518635px;}
.y5b_c01040{bottom:317.879535px;}
.y5a_c01040{bottom:337.315815px;}
.y29_c01040{bottom:337.318800px;}
.y59_c01040{bottom:356.756970px;}
.y28_c01040{bottom:356.759535px;}
.y27_c01040{bottom:375.839535px;}
.y58_c01040{bottom:376.195590px;}
.y26_c01040{bottom:395.276340px;}
.y57_c01040{bottom:395.636715px;}
.y56_c01040{bottom:414.356280px;}
.y25_c01040{bottom:414.356775px;}
.y55_c01040{bottom:433.436730px;}
.y24_c01040{bottom:433.437240px;}
.y54_c01040{bottom:452.517180px;}
.y23_c01040{bottom:452.517675px;}
.y53_c01040{bottom:471.958335px;}
.y22_c01040{bottom:471.958830px;}
.y52_c01040{bottom:490.679235px;}
.y21_c01040{bottom:490.679745px;}
.y51_c01040{bottom:509.759700px;}
.y20_c01040{bottom:509.760195px;}
.y50_c01040{bottom:528.840135px;}
.y1f_c01040{bottom:528.840630px;}
.y1e_c01040{bottom:548.279250px;}
.y4f_c01040{bottom:548.279430px;}
.y1d_c01040{bottom:567.720150px;}
.y4e_c01040{bottom:567.720570px;}
.y1c_c01040{bottom:587.516355px;}
.y4d_c01040{bottom:587.518710px;}
.y1b_c01040{bottom:606.237285px;}
.y4c_c01040{bottom:606.239640px;}
.y1a_c01040{bottom:625.678410px;}
.y4b_c01040{bottom:625.680765px;}
.y19_c01040{bottom:645.117030px;}
.y4a_c01040{bottom:645.119385px;}
.y18_c01040{bottom:663.837960px;}
.y49_c01040{bottom:663.840135px;}
.y17_c01040{bottom:682.557525px;}
.y48_c01040{bottom:682.558095px;}
.y47_c01040{bottom:701.999250px;}
.y16_c01040{bottom:702.357015px;}
.y46_c01040{bottom:721.079685px;}
.y15_c01040{bottom:721.437465px;}
.y14_c01040{bottom:740.878605px;}
.y45_c01040{bottom:740.879190px;}
.y13_c01040{bottom:759.238635px;}
.y44_c01040{bottom:759.239220px;}
.y12_c01040{bottom:778.677240px;}
.y43_c01040{bottom:778.677840px;}
.y11_c01040{bottom:798.118395px;}
.y42_c01040{bottom:798.118980px;}
.y10_c01040{bottom:817.917885px;}
.y41_c01040{bottom:817.918485px;}
.yf_c01040{bottom:836.998350px;}
.y40_c01040{bottom:836.998920px;}
.ye_c01040{bottom:856.078785px;}
.y3f_c01040{bottom:856.079385px;}
.y3e_c01040{bottom:875.159820px;}
.yd_c01040{bottom:875.517405px;}
.y3c_c01040{bottom:894.238995px;}
.y3d_c01040{bottom:894.239865px;}
.yc_c01040{bottom:894.597855px;}
.y3b_c01040{bottom:913.677615px;}
.yb_c01040{bottom:913.678305px;}
.y3a_c01040{bottom:933.118770px;}
.ya_c01040{bottom:933.477810px;}
.y39_c01040{bottom:951.838320px;}
.y9_c01040{bottom:952.198725px;}
.y38_c01040{bottom:971.279460px;}
.y8_c01040{bottom:971.637330px;}
.y37_c01040{bottom:990.359910px;}
.y7_c01040{bottom:990.717795px;}
.y6_c01040{bottom:1009.798230px;}
.y36_c01040{bottom:1009.798530px;}
.y35_c01040{bottom:1028.878965px;}
.y5_c01040{bottom:1029.239385px;}
.y4_c01040{bottom:1048.319820px;}
.y34_c01040{bottom:1067.399775px;}
.y3_c01040{bottom:1067.759040px;}
.y33_c01040{bottom:1086.478050px;}
.y2_c01040{bottom:1086.838905px;}
.y32_c01040{bottom:1105.558500px;}
.y1_c01040{bottom:1105.918950px;}
.h2_c01040{height:42.328125px;}
.ha_c01040{height:44.472656px;}
.h7_c01040{height:46.107422px;}
.h8_c01040{height:46.373291px;}
.hb_c01040{height:49.886719px;}
.h1_c01040{height:50.402344px;}
.h9_c01040{height:51.884766px;}
.h5_c01040{height:52.625977px;}
.h4_c01040{height:55.590820px;}
.h6_c01040{height:57.814453px;}
.h3_c01040{height:65.226562px;}
.hc_c01040{height:65.967773px;}
.he_c01040{height:67.450195px;}
.hd_c01040{height:68.932617px;}
.h0_c01040{height:1263.000000px;}
.w0_c01040{width:892.500000px;}
.x0_c01040{left:0.000000px;}
.x2_c01040{left:356.039430px;}
.x1_c01040{left:357.118785px;}
.x3_c01040{left:381.958350px;}
.x4_c01040{left:394.919535px;}
.x7_c01040{left:556.558680px;}
.x5_c01040{left:557.639175px;}
.x6_c01040{left:590.399235px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.lsa_c01040{letter-spacing:-6.147200pt;}
.lsc_c01040{letter-spacing:-6.110580pt;}
.lsf_c01040{letter-spacing:-2.974400pt;}
.ls12_c01040{letter-spacing:-2.821000pt;}
.ls10_c01040{letter-spacing:-2.783327pt;}
.ls5_c01040{letter-spacing:-2.302933pt;}
.lse_c01040{letter-spacing:-2.295533pt;}
.ls7_c01040{letter-spacing:-1.537253pt;}
.ls16_c01040{letter-spacing:-0.945793pt;}
.ls15_c01040{letter-spacing:-0.925007pt;}
.ls6_c01040{letter-spacing:-0.770667pt;}
.ls3_c01040{letter-spacing:0.000000pt;}
.ls8_c01040{letter-spacing:0.770667pt;}
.ls11_c01040{letter-spacing:0.828333pt;}
.ls9_c01040{letter-spacing:1.173333pt;}
.lsd_c01040{letter-spacing:1.537253pt;}
.lsb_c01040{letter-spacing:1.565667pt;}
.ls14_c01040{letter-spacing:1.723407pt;}
.ls13_c01040{letter-spacing:2.302933pt;}
.ls0_c01040{letter-spacing:3.073147pt;}
.ls2_c01040{letter-spacing:5.376987pt;}
.ls1_c01040{letter-spacing:6.913333pt;}
.ls4_c01040{letter-spacing:19.032533pt;}
.ws0_c01040{word-spacing:0.000000pt;}
._5_c01040{margin-left:-39.430188pt;}
._c_c01040{margin-left:-25.304852pt;}
._8_c01040{margin-left:-12.716307pt;}
._7_c01040{margin-left:-9.021303pt;}
._6_c01040{margin-left:-7.098985pt;}
._0_c01040{margin-left:-5.621456pt;}
._2_c01040{margin-left:-4.352000pt;}
._1_c01040{margin-left:-2.950939pt;}
._3_c01040{margin-left:-1.323580pt;}
._4_c01040{width:1.599852pt;}
._9_c01040{width:3.106240pt;}
._a_c01040{width:10.022101pt;}
._b_c01040{width:15.028108pt;}
._e_c01040{width:22.485333pt;}
._d_c01040{width:23.972328pt;}
._10_c01040{width:25.454774pt;}
._f_c01040{width:28.515005pt;}
._11_c01040{width:30.121341pt;}
._12_c01040{width:31.594752pt;}
.fs1_c01040{font-size:37.333333pt;}
.fs9_c01040{font-size:40.000000pt;}
.fs6_c01040{font-size:40.666667pt;}
.fs7_c01040{font-size:42.000000pt;}
.fsa_c01040{font-size:44.000000pt;}
.fs0_c01040{font-size:45.333333pt;}
.fs8_c01040{font-size:46.666667pt;}
.fs4_c01040{font-size:47.333333pt;}
.fs3_c01040{font-size:50.000000pt;}
.fs5_c01040{font-size:52.000000pt;}
.fs2_c01040{font-size:58.666667pt;}
.fsb_c01040{font-size:59.333333pt;}
.fsd_c01040{font-size:60.666667pt;}
.fsc_c01040{font-size:62.000000pt;}
.y0_c01040{bottom:0.000000pt;}
.y31_c01040{bottom:163.838800pt;}
.y63_c01040{bottom:163.838933pt;}
.y30_c01040{bottom:180.799213pt;}
.y62_c01040{bottom:180.799320pt;}
.y61_c01040{bottom:197.438920pt;}
.y2f_c01040{bottom:197.759600pt;}
.y5f_c01040{bottom:214.398413pt;}
.y60_c01040{bottom:214.398920pt;}
.y2e_c01040{bottom:214.399213pt;}
.y5e_c01040{bottom:231.039240pt;}
.y2d_c01040{bottom:231.040040pt;}
.y5d_c01040{bottom:248.638800pt;}
.y2c_c01040{bottom:248.639587pt;}
.y2b_c01040{bottom:264.000000pt;}
.y5c_c01040{bottom:265.599200pt;}
.y2a_c01040{bottom:282.238787pt;}
.y5b_c01040{bottom:282.559587pt;}
.y5a_c01040{bottom:299.836280pt;}
.y29_c01040{bottom:299.838933pt;}
.y59_c01040{bottom:317.117307pt;}
.y28_c01040{bottom:317.119587pt;}
.y27_c01040{bottom:334.079587pt;}
.y58_c01040{bottom:334.396080pt;}
.y26_c01040{bottom:351.356747pt;}
.y57_c01040{bottom:351.677080pt;}
.y56_c01040{bottom:368.316693pt;}
.y25_c01040{bottom:368.317133pt;}
.y55_c01040{bottom:385.277093pt;}
.y24_c01040{bottom:385.277547pt;}
.y54_c01040{bottom:402.237493pt;}
.y23_c01040{bottom:402.237933pt;}
.y53_c01040{bottom:419.518520pt;}
.y22_c01040{bottom:419.518960pt;}
.y52_c01040{bottom:436.159320pt;}
.y21_c01040{bottom:436.159773pt;}
.y51_c01040{bottom:453.119733pt;}
.y20_c01040{bottom:453.120173pt;}
.y50_c01040{bottom:470.080120pt;}
.y1f_c01040{bottom:470.080560pt;}
.y1e_c01040{bottom:487.359333pt;}
.y4f_c01040{bottom:487.359493pt;}
.y1d_c01040{bottom:504.640133pt;}
.y4e_c01040{bottom:504.640507pt;}
.y1c_c01040{bottom:522.236760pt;}
.y4d_c01040{bottom:522.238853pt;}
.y1b_c01040{bottom:538.877587pt;}
.y4c_c01040{bottom:538.879680pt;}
.y1a_c01040{bottom:556.158587pt;}
.y4b_c01040{bottom:556.160680pt;}
.y19_c01040{bottom:573.437360pt;}
.y4a_c01040{bottom:573.439453pt;}
.y18_c01040{bottom:590.078187pt;}
.y49_c01040{bottom:590.080120pt;}
.y17_c01040{bottom:606.717800pt;}
.y48_c01040{bottom:606.718307pt;}
.y47_c01040{bottom:623.999333pt;}
.y16_c01040{bottom:624.317347pt;}
.y46_c01040{bottom:640.959720pt;}
.y15_c01040{bottom:641.277747pt;}
.y14_c01040{bottom:658.558760pt;}
.y45_c01040{bottom:658.559280pt;}
.y13_c01040{bottom:674.878787pt;}
.y44_c01040{bottom:674.879307pt;}
.y12_c01040{bottom:692.157547pt;}
.y43_c01040{bottom:692.158080pt;}
.y11_c01040{bottom:709.438573pt;}
.y42_c01040{bottom:709.439093pt;}
.y10_c01040{bottom:727.038120pt;}
.y41_c01040{bottom:727.038653pt;}
.yf_c01040{bottom:743.998533pt;}
.y40_c01040{bottom:743.999040pt;}
.ye_c01040{bottom:760.958920pt;}
.y3f_c01040{bottom:760.959453pt;}
.y3e_c01040{bottom:777.919840pt;}
.yd_c01040{bottom:778.237693pt;}
.y3c_c01040{bottom:794.879107pt;}
.y3d_c01040{bottom:794.879880pt;}
.yc_c01040{bottom:795.198093pt;}
.y3b_c01040{bottom:812.157880pt;}
.yb_c01040{bottom:812.158493pt;}
.y3a_c01040{bottom:829.438907pt;}
.ya_c01040{bottom:829.758053pt;}
.y39_c01040{bottom:846.078507pt;}
.y9_c01040{bottom:846.398867pt;}
.y38_c01040{bottom:863.359520pt;}
.y8_c01040{bottom:863.677627pt;}
.y37_c01040{bottom:880.319920pt;}
.y7_c01040{bottom:880.638040pt;}
.y6_c01040{bottom:897.598427pt;}
.y36_c01040{bottom:897.598693pt;}
.y35_c01040{bottom:914.559080pt;}
.y5_c01040{bottom:914.879453pt;}
.y4_c01040{bottom:931.839840pt;}
.y34_c01040{bottom:948.799800pt;}
.y3_c01040{bottom:949.119147pt;}
.y33_c01040{bottom:965.758267pt;}
.y2_c01040{bottom:966.079027pt;}
.y32_c01040{bottom:982.718667pt;}
.y1_c01040{bottom:983.039067pt;}
.h2_c01040{height:37.625000pt;}
.ha_c01040{height:39.531250pt;}
.h7_c01040{height:40.984375pt;}
.h8_c01040{height:41.220703pt;}
.hb_c01040{height:44.343750pt;}
.h1_c01040{height:44.802083pt;}
.h9_c01040{height:46.119792pt;}
.h5_c01040{height:46.778646pt;}
.h4_c01040{height:49.414063pt;}
.h6_c01040{height:51.390625pt;}
.h3_c01040{height:57.979167pt;}
.hc_c01040{height:58.638021pt;}
.he_c01040{height:59.955729pt;}
.hd_c01040{height:61.273438pt;}
.h0_c01040{height:1122.666667pt;}
.w0_c01040{width:793.333333pt;}
.x0_c01040{left:0.000000pt;}
.x2_c01040{left:316.479493pt;}
.x1_c01040{left:317.438920pt;}
.x3_c01040{left:339.518533pt;}
.x4_c01040{left:351.039587pt;}
.x7_c01040{left:494.718827pt;}
.x5_c01040{left:495.679267pt;}
.x6_c01040{left:524.799320pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_39699f411deacef7c9186a87.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_513ca53d06603dbab268b336.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_f4aa0b105482d4a75c0f7959.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01041;src:url('chunks/assets/font_b73821f6bc9f497f2fe0869a.woff2')format("woff");}.ff5_c01041{font-family:ff5_c01041;line-height:1.364746;font-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_c01041{transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132979,0.000000,0.000000,0.250000,0,0);}
.m15_c01041{transform:matrix(0.168367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168367,0.000000,0.000000,0.250000,0,0);}
.mc_c01041{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m17_c01041{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.m7_c01041{transform:matrix(0.176316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176316,0.000000,0.000000,0.250000,0,0);}
.m14_c01041{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.me_c01041{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.md_c01041{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.m18_c01041{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m10_c01041{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.mb_c01041{transform:matrix(0.184066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184066,0.000000,0.000000,0.250000,0,0);}
.m16_c01041{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m11_c01041{transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);}
.m12_c01041{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m2_c01041{transform:matrix(0.192029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192029,0.000000,0.000000,0.250000,0,0);}
.m13_c01041{transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);}
.m5_c01041{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m1_c01041{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m8_c01041{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m9_c01041{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_c01041{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.mf_c01041{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m0_c01041{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m6_c01041{transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);}
.ma_c01041{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m19_c01041{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls10_c01041{letter-spacing:-7.306118px;}
.ls6_c01041{letter-spacing:-5.855310px;}
.ls13_c01041{letter-spacing:-5.355000px;}
.lsb_c01041{letter-spacing:-5.154600px;}
.ls1b_c01041{letter-spacing:-5.126625px;}
.ls7_c01041{letter-spacing:-5.018400px;}
.ls1c_c01041{letter-spacing:-5.016375px;}
.ls11_c01041{letter-spacing:-4.252913px;}
.ls5_c01041{letter-spacing:-4.182000px;}
.ls15_c01041{letter-spacing:-4.073843px;}
.lsf_c01041{letter-spacing:-3.434625px;}
.ls9_c01041{letter-spacing:-3.345600px;}
.ls20_c01041{letter-spacing:-3.344250px;}
.ls22_c01041{letter-spacing:-3.201608px;}
.ls1f_c01041{letter-spacing:-3.173625px;}
.ls23_c01041{letter-spacing:-3.105375px;}
.ls21_c01041{letter-spacing:-3.037125px;}
.ls1e_c01041{letter-spacing:-2.900625px;}
.ls1_c01041{letter-spacing:-2.508690px;}
.ls24_c01041{letter-spacing:-2.361120px;}
.lse_c01041{letter-spacing:-1.911000px;}
.ls2_c01041{letter-spacing:-1.673310px;}
.ls14_c01041{letter-spacing:-1.581750px;}
.ls16_c01041{letter-spacing:-1.087403px;}
.ls18_c01041{letter-spacing:-1.040633px;}
.ls3_c01041{letter-spacing:-0.922500px;}
.ls0_c01041{letter-spacing:-0.836400px;}
.lsa_c01041{letter-spacing:0.000000px;}
.ls19_c01041{letter-spacing:0.836400px;}
.ls12_c01041{letter-spacing:0.892500px;}
.lsd_c01041{letter-spacing:1.410000px;}
.lsc_c01041{letter-spacing:2.508690px;}
.ls1a_c01041{letter-spacing:2.559150px;}
.ls17_c01041{letter-spacing:5.181300px;}
.ls1d_c01041{letter-spacing:5.885400px;}
.ls4_c01041{letter-spacing:7.523010px;}
.ls8_c01041{letter-spacing:18.552893px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01041{word-spacing:0.000000px;}
._4_c01041{margin-left:-29.062500px;}
._7_c01041{margin-left:-11.168565px;}
._b_c01041{margin-left:-9.567868px;}
._6_c01041{margin-left:-7.823433px;}
._3_c01041{margin-left:-6.084484px;}
._8_c01041{margin-left:-4.477499px;}
._a_c01041{margin-left:-1.188735px;}
._5_c01041{width:1.314939px;}
._2_c01041{width:3.052250px;}
._c_c01041{width:4.926500px;}
._9_c01041{width:8.333300px;}
._0_c01041{width:24.286635px;}
._f_c01041{width:25.418132px;}
._10_c01041{width:27.029799px;}
._11_c01041{width:30.367340px;}
._e_c01041{width:32.107292px;}
._d_c01041{width:33.708793px;}
._1_c01041{width:694.269429px;}
.fc0_c01041{color:transparent;}
.fs8_c01041{font-size:42.750000px;}
.fs10_c01041{font-size:48.000000px;}
.fs5_c01041{font-size:48.750000px;}
.fsd_c01041{font-size:49.500000px;}
.fs0_c01041{font-size:51.000000px;}
.fs2_c01041{font-size:51.750000px;}
.fs3_c01041{font-size:53.250000px;}
.fs1_c01041{font-size:56.250000px;}
.fsb_c01041{font-size:57.000000px;}
.fs6_c01041{font-size:59.250000px;}
.fse_c01041{font-size:63.750000px;}
.fsc_c01041{font-size:66.750000px;}
.fs9_c01041{font-size:68.250000px;}
.fsa_c01041{font-size:69.750000px;}
.fs4_c01041{font-size:70.500000px;}
.fs7_c01041{font-size:71.250000px;}
.fsf_c01041{font-size:73.500000px;}
.y0_c01041{bottom:0.000000px;}
.y6e_c01041{bottom:184.319415px;}
.y35_c01041{bottom:184.679490px;}
.y6d_c01041{bottom:203.399850px;}
.y34_c01041{bottom:204.118110px;}
.y6c_c01041{bottom:222.479835px;}
.y33_c01041{bottom:223.198560px;}
.y6b_c01041{bottom:241.560270px;}
.y32_c01041{bottom:242.278995px;}
.y6a_c01041{bottom:261.001425px;}
.y31_c01041{bottom:261.359460px;}
.y69_c01041{bottom:280.440030px;}
.y30_c01041{bottom:280.800585px;}
.y68_c01041{bottom:299.160945px;}
.y2f_c01041{bottom:299.519685px;}
.y67_c01041{bottom:318.599550px;}
.y2e_c01041{bottom:318.599700px;}
.y66_c01041{bottom:337.320495px;}
.y2d_c01041{bottom:337.678845px;}
.y65_c01041{bottom:356.759100px;}
.y2c_c01041{bottom:357.120000px;}
.y64_c01041{bottom:375.839535px;}
.y2b_c01041{bottom:376.200435px;}
.y63_c01041{bottom:394.919535px;}
.y2a_c01041{bottom:395.280435px;}
.y29_c01041{bottom:395.280555px;}
.y62_c01041{bottom:413.999400px;}
.y28_c01041{bottom:414.360990px;}
.y61_c01041{bottom:433.440315px;}
.y27_c01041{bottom:433.799610px;}
.y60_c01041{bottom:452.520315px;}
.y5f_c01041{bottom:452.520330px;}
.y26_c01041{bottom:452.520540px;}
.y5e_c01041{bottom:472.319850px;}
.y25_c01041{bottom:472.679565px;}
.y5d_c01041{bottom:491.400285px;}
.y24_c01041{bottom:491.400495px;}
.y5b_c01041{bottom:510.839385px;}
.y5c_c01041{bottom:510.839535px;}
.y23_c01041{bottom:511.199985px;}
.y5a_c01041{bottom:529.560285px;}
.y21_c01041{bottom:529.914225px;}
.y22_c01041{bottom:529.919535px;}
.y59_c01041{bottom:548.999400px;}
.y20_c01041{bottom:549.355380px;}
.y1f_c01041{bottom:568.074945px;}
.y58_c01041{bottom:568.079400px;}
.y57_c01041{bottom:587.161050px;}
.y1e_c01041{bottom:587.516070px;}
.y56_c01041{bottom:605.879970px;}
.y55_c01041{bottom:605.880645px;}
.y1d_c01041{bottom:606.237000px;}
.y54_c01041{bottom:625.680135px;}
.y1c_c01041{bottom:626.035155px;}
.y52_c01041{bottom:644.759370px;}
.y53_c01041{bottom:644.760135px;}
.y1b_c01041{bottom:645.115590px;}
.y51_c01041{bottom:663.480315px;}
.y1a_c01041{bottom:663.836520px;}
.y50_c01041{bottom:682.560750px;}
.y19_c01041{bottom:682.916955px;}
.y4e_c01041{bottom:701.998245px;}
.y4f_c01041{bottom:702.000000px;}
.y18_c01041{bottom:702.358110px;}
.y4d_c01041{bottom:721.078695px;}
.y17_c01041{bottom:721.438545px;}
.y4c_c01041{bottom:740.519835px;}
.y16_c01041{bottom:740.877165px;}
.y4b_c01041{bottom:759.600285px;}
.y15_c01041{bottom:759.957615px;}
.y4a_c01041{bottom:778.680720px;}
.y14_c01041{bottom:779.038050px;}
.y49_c01041{bottom:797.760780px;}
.y13_c01041{bottom:798.118515px;}
.y47_c01041{bottom:817.560120px;}
.y48_c01041{bottom:817.560705px;}
.y12_c01041{bottom:818.280075px;}
.y46_c01041{bottom:836.998740px;}
.y11_c01041{bottom:837.360510px;}
.y45_c01041{bottom:856.079175px;}
.y10_c01041{bottom:856.440975px;}
.y44_c01041{bottom:875.159640px;}
.yf_c01041{bottom:875.521410px;}
.y43_c01041{bottom:894.600765px;}
.ye_c01041{bottom:894.960015px;}
.yd_c01041{bottom:894.960135px;}
.y41_c01041{bottom:914.039700px;}
.y42_c01041{bottom:914.039985px;}
.yc_c01041{bottom:914.401275px;}
.y40_c01041{bottom:933.480840px;}
.yb_c01041{bottom:933.839880px;}
.y3e_c01041{bottom:951.839475px;}
.y3f_c01041{bottom:951.840540px;}
.ya_c01041{bottom:952.560810px;}
.y3d_c01041{bottom:971.278080px;}
.y9_c01041{bottom:971.641245px;}
.y3c_c01041{bottom:990.358545px;}
.y8_c01041{bottom:991.079865px;}
.y3b_c01041{bottom:1009.799670px;}
.y7_c01041{bottom:1010.521020px;}
.y3a_c01041{bottom:1028.880135px;}
.y6_c01041{bottom:1029.601455px;}
.y39_c01041{bottom:1047.960570px;}
.y5_c01041{bottom:1049.040075px;}
.y38_c01041{bottom:1067.040525px;}
.y4_c01041{bottom:1067.761005px;}
.y37_c01041{bottom:1086.478185px;}
.y3_c01041{bottom:1087.199610px;}
.y36_c01041{bottom:1105.919340px;}
.y2_c01041{bottom:1106.640750px;}
.y1_c01041{bottom:1145.520720px;}
.h9_c01041{height:44.586914px;}
.h11_c01041{height:47.437500px;}
.he_c01041{height:48.919922px;}
.h6_c01041{height:49.130859px;}
.h1_c01041{height:50.402344px;}
.h3_c01041{height:51.143555px;}
.h4_c01041{height:52.625977px;}
.h2_c01041{height:55.590820px;}
.hc_c01041{height:56.332031px;}
.h7_c01041{height:58.121704px;}
.hf_c01041{height:63.002930px;}
.hd_c01041{height:65.967773px;}
.ha_c01041{height:67.450195px;}
.hb_c01041{height:68.932617px;}
.h5_c01041{height:69.673828px;}
.h8_c01041{height:70.415039px;}
.h10_c01041{height:72.638672px;}
.h0_c01041{height:1263.000000px;}
.w0_c01041{width:892.500000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:295.198785px;}
.x7_c01041{left:357.839625px;}
.x4_c01041{left:358.919790px;}
.x3_c01041{left:359.999385px;}
.xa_c01041{left:403.198785px;}
.x8_c01041{left:422.639700px;}
.x9_c01041{left:441.719565px;}
.x5_c01041{left:442.798920px;}
.x6_c01041{left:494.999400px;}
.xf_c01041{left:557.998485px;}
.xd_c01041{left:559.080180px;}
.xb_c01041{left:560.160240px;}
.x10_c01041{left:590.758530px;}
.xe_c01041{left:591.839535px;}
.xc_c01041{left:592.918950px;}
.x2_c01041{left:690.838530px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls10_c01041{letter-spacing:-6.494327pt;}
.ls6_c01041{letter-spacing:-5.204720pt;}
.ls13_c01041{letter-spacing:-4.760000pt;}
.lsb_c01041{letter-spacing:-4.581867pt;}
.ls1b_c01041{letter-spacing:-4.557000pt;}
.ls7_c01041{letter-spacing:-4.460800pt;}
.ls1c_c01041{letter-spacing:-4.459000pt;}
.ls11_c01041{letter-spacing:-3.780367pt;}
.ls5_c01041{letter-spacing:-3.717333pt;}
.ls15_c01041{letter-spacing:-3.621193pt;}
.lsf_c01041{letter-spacing:-3.053000pt;}
.ls9_c01041{letter-spacing:-2.973867pt;}
.ls20_c01041{letter-spacing:-2.972667pt;}
.ls22_c01041{letter-spacing:-2.845873pt;}
.ls1f_c01041{letter-spacing:-2.821000pt;}
.ls23_c01041{letter-spacing:-2.760333pt;}
.ls21_c01041{letter-spacing:-2.699667pt;}
.ls1e_c01041{letter-spacing:-2.578333pt;}
.ls1_c01041{letter-spacing:-2.229947pt;}
.ls24_c01041{letter-spacing:-2.098773pt;}
.lse_c01041{letter-spacing:-1.698667pt;}
.ls2_c01041{letter-spacing:-1.487387pt;}
.ls14_c01041{letter-spacing:-1.406000pt;}
.ls16_c01041{letter-spacing:-0.966580pt;}
.ls18_c01041{letter-spacing:-0.925007pt;}
.ls3_c01041{letter-spacing:-0.820000pt;}
.ls0_c01041{letter-spacing:-0.743467pt;}
.lsa_c01041{letter-spacing:0.000000pt;}
.ls19_c01041{letter-spacing:0.743467pt;}
.ls12_c01041{letter-spacing:0.793333pt;}
.lsd_c01041{letter-spacing:1.253333pt;}
.lsc_c01041{letter-spacing:2.229947pt;}
.ls1a_c01041{letter-spacing:2.274800pt;}
.ls17_c01041{letter-spacing:4.605600pt;}
.ls1d_c01041{letter-spacing:5.231467pt;}
.ls4_c01041{letter-spacing:6.687120pt;}
.ls8_c01041{letter-spacing:16.491460pt;}
.ws0_c01041{word-spacing:0.000000pt;}
._4_c01041{margin-left:-25.833334pt;}
._7_c01041{margin-left:-9.927614pt;}
._b_c01041{margin-left:-8.504771pt;}
._6_c01041{margin-left:-6.954163pt;}
._3_c01041{margin-left:-5.408430pt;}
._8_c01041{margin-left:-3.979999pt;}
._a_c01041{margin-left:-1.056653pt;}
._5_c01041{width:1.168835pt;}
._2_c01041{width:2.713111pt;}
._c_c01041{width:4.379111pt;}
._9_c01041{width:7.407377pt;}
._0_c01041{width:21.588120pt;}
._f_c01041{width:22.593896pt;}
._10_c01041{width:24.026488pt;}
._11_c01041{width:26.993191pt;}
._e_c01041{width:28.539816pt;}
._d_c01041{width:29.963371pt;}
._1_c01041{width:617.128382pt;}
.fs8_c01041{font-size:38.000000pt;}
.fs10_c01041{font-size:42.666667pt;}
.fs5_c01041{font-size:43.333333pt;}
.fsd_c01041{font-size:44.000000pt;}
.fs0_c01041{font-size:45.333333pt;}
.fs2_c01041{font-size:46.000000pt;}
.fs3_c01041{font-size:47.333333pt;}
.fs1_c01041{font-size:50.000000pt;}
.fsb_c01041{font-size:50.666667pt;}
.fs6_c01041{font-size:52.666667pt;}
.fse_c01041{font-size:56.666667pt;}
.fsc_c01041{font-size:59.333333pt;}
.fs9_c01041{font-size:60.666667pt;}
.fsa_c01041{font-size:62.000000pt;}
.fs4_c01041{font-size:62.666667pt;}
.fs7_c01041{font-size:63.333333pt;}
.fsf_c01041{font-size:65.333333pt;}
.y0_c01041{bottom:0.000000pt;}
.y6e_c01041{bottom:163.839480pt;}
.y35_c01041{bottom:164.159547pt;}
.y6d_c01041{bottom:180.799867pt;}
.y34_c01041{bottom:181.438320pt;}
.y6c_c01041{bottom:197.759853pt;}
.y33_c01041{bottom:198.398720pt;}
.y6b_c01041{bottom:214.720240pt;}
.y32_c01041{bottom:215.359107pt;}
.y6a_c01041{bottom:232.001267pt;}
.y31_c01041{bottom:232.319520pt;}
.y69_c01041{bottom:249.280027pt;}
.y30_c01041{bottom:249.600520pt;}
.y68_c01041{bottom:265.920840pt;}
.y2f_c01041{bottom:266.239720pt;}
.y67_c01041{bottom:283.199600pt;}
.y2e_c01041{bottom:283.199733pt;}
.y66_c01041{bottom:299.840440pt;}
.y2d_c01041{bottom:300.158973pt;}
.y65_c01041{bottom:317.119200pt;}
.y2c_c01041{bottom:317.440000pt;}
.y64_c01041{bottom:334.079587pt;}
.y2b_c01041{bottom:334.400387pt;}
.y63_c01041{bottom:351.039587pt;}
.y2a_c01041{bottom:351.360387pt;}
.y29_c01041{bottom:351.360493pt;}
.y62_c01041{bottom:367.999467pt;}
.y28_c01041{bottom:368.320880pt;}
.y61_c01041{bottom:385.280280pt;}
.y27_c01041{bottom:385.599653pt;}
.y60_c01041{bottom:402.240280pt;}
.y5f_c01041{bottom:402.240293pt;}
.y26_c01041{bottom:402.240480pt;}
.y5e_c01041{bottom:419.839867pt;}
.y25_c01041{bottom:420.159613pt;}
.y5d_c01041{bottom:436.800253pt;}
.y24_c01041{bottom:436.800440pt;}
.y5b_c01041{bottom:454.079453pt;}
.y5c_c01041{bottom:454.079587pt;}
.y23_c01041{bottom:454.399987pt;}
.y5a_c01041{bottom:470.720253pt;}
.y21_c01041{bottom:471.034867pt;}
.y22_c01041{bottom:471.039587pt;}
.y59_c01041{bottom:487.999467pt;}
.y20_c01041{bottom:488.315893pt;}
.y1f_c01041{bottom:504.955507pt;}
.y58_c01041{bottom:504.959467pt;}
.y57_c01041{bottom:521.920933pt;}
.y1e_c01041{bottom:522.236507pt;}
.y56_c01041{bottom:538.559973pt;}
.y55_c01041{bottom:538.560573pt;}
.y1d_c01041{bottom:538.877333pt;}
.y54_c01041{bottom:556.160120pt;}
.y1c_c01041{bottom:556.475693pt;}
.y52_c01041{bottom:573.119440pt;}
.y53_c01041{bottom:573.120120pt;}
.y1b_c01041{bottom:573.436080pt;}
.y51_c01041{bottom:589.760280pt;}
.y1a_c01041{bottom:590.076907pt;}
.y50_c01041{bottom:606.720667pt;}
.y19_c01041{bottom:607.037293pt;}
.y4e_c01041{bottom:623.998440pt;}
.y4f_c01041{bottom:624.000000pt;}
.y18_c01041{bottom:624.318320pt;}
.y4d_c01041{bottom:640.958840pt;}
.y17_c01041{bottom:641.278707pt;}
.y4c_c01041{bottom:658.239853pt;}
.y16_c01041{bottom:658.557480pt;}
.y4b_c01041{bottom:675.200253pt;}
.y15_c01041{bottom:675.517880pt;}
.y4a_c01041{bottom:692.160640pt;}
.y14_c01041{bottom:692.478267pt;}
.y49_c01041{bottom:709.120693pt;}
.y13_c01041{bottom:709.438680pt;}
.y47_c01041{bottom:726.720107pt;}
.y48_c01041{bottom:726.720627pt;}
.y12_c01041{bottom:727.360067pt;}
.y46_c01041{bottom:743.998880pt;}
.y11_c01041{bottom:744.320453pt;}
.y45_c01041{bottom:760.959267pt;}
.y10_c01041{bottom:761.280867pt;}
.y44_c01041{bottom:777.919680pt;}
.yf_c01041{bottom:778.241253pt;}
.y43_c01041{bottom:795.200680pt;}
.ye_c01041{bottom:795.520013pt;}
.yd_c01041{bottom:795.520120pt;}
.y41_c01041{bottom:812.479733pt;}
.y42_c01041{bottom:812.479987pt;}
.yc_c01041{bottom:812.801133pt;}
.y40_c01041{bottom:829.760747pt;}
.yb_c01041{bottom:830.079893pt;}
.y3e_c01041{bottom:846.079533pt;}
.y3f_c01041{bottom:846.080480pt;}
.ya_c01041{bottom:846.720720pt;}
.y3d_c01041{bottom:863.358293pt;}
.y9_c01041{bottom:863.681107pt;}
.y3c_c01041{bottom:880.318707pt;}
.y8_c01041{bottom:880.959880pt;}
.y3b_c01041{bottom:897.599707pt;}
.y7_c01041{bottom:898.240907pt;}
.y3a_c01041{bottom:914.560120pt;}
.y6_c01041{bottom:915.201293pt;}
.y39_c01041{bottom:931.520507pt;}
.y5_c01041{bottom:932.480067pt;}
.y38_c01041{bottom:948.480467pt;}
.y4_c01041{bottom:949.120893pt;}
.y37_c01041{bottom:965.758387pt;}
.y3_c01041{bottom:966.399653pt;}
.y36_c01041{bottom:983.039413pt;}
.y2_c01041{bottom:983.680667pt;}
.y1_c01041{bottom:1018.240640pt;}
.h9_c01041{height:39.632812pt;}
.h11_c01041{height:42.166667pt;}
.he_c01041{height:43.484375pt;}
.h6_c01041{height:43.671875pt;}
.h1_c01041{height:44.802083pt;}
.h3_c01041{height:45.460938pt;}
.h4_c01041{height:46.778646pt;}
.h2_c01041{height:49.414063pt;}
.hc_c01041{height:50.072917pt;}
.h7_c01041{height:51.663737pt;}
.hf_c01041{height:56.002604pt;}
.hd_c01041{height:58.638021pt;}
.ha_c01041{height:59.955729pt;}
.hb_c01041{height:61.273438pt;}
.h5_c01041{height:61.932292pt;}
.h8_c01041{height:62.591146pt;}
.h10_c01041{height:64.567708pt;}
.h0_c01041{height:1122.666667pt;}
.w0_c01041{width:793.333333pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:262.398920pt;}
.x7_c01041{left:318.079667pt;}
.x4_c01041{left:319.039813pt;}
.x3_c01041{left:319.999453pt;}
.xa_c01041{left:358.398920pt;}
.x8_c01041{left:375.679733pt;}
.x9_c01041{left:392.639613pt;}
.x5_c01041{left:393.599040pt;}
.x6_c01041{left:439.999467pt;}
.xf_c01041{left:495.998653pt;}
.xd_c01041{left:496.960160pt;}
.xb_c01041{left:497.920213pt;}
.x10_c01041{left:525.118693pt;}
.xe_c01041{left:526.079587pt;}
.xc_c01041{left:527.039067pt;}
.x2_c01041{left:614.078693pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_464482d6ea2a78eae26551e4.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_f0f61821fc218b66eef072f7.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_efde8cbba92df5334fc05e15.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.432129;font-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_c01042{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m2_c01042{transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);}
.m8_c01042{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m11_c01042{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m17_c01042{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m15_c01042{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m4_c01042{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);}
.m6_c01042{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m1_c01042{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.me_c01042{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m7_c01042{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.mc_c01042{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m13_c01042{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m9_c01042{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mf_c01042{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m1a_c01042{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m10_c01042{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.ma_c01042{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m18_c01042{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m12_c01042{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m19_c01042{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m0_c01042{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m14_c01042{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m5_c01042{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);}
.mb_c01042{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m1c_c01042{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m3_c01042{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m1b_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01042{transform:matrix(0.369681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369681,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.lsf_c01042{letter-spacing:-5.018400px;}
.ls16_c01042{letter-spacing:-4.275428px;}
.ls5_c01042{letter-spacing:-4.182000px;}
.ls19_c01042{letter-spacing:-4.172775px;}
.ls1f_c01042{letter-spacing:-3.960600px;}
.ls7_c01042{letter-spacing:-3.805725px;}
.ls10_c01042{letter-spacing:-3.345600px;}
.ls1b_c01042{letter-spacing:-3.105375px;}
.ls1a_c01042{letter-spacing:-3.037125px;}
.ls1c_c01042{letter-spacing:-2.552783px;}
.ls9_c01042{letter-spacing:-2.508690px;}
.ls13_c01042{letter-spacing:-1.822628px;}
.ls3_c01042{letter-spacing:-1.673310px;}
.lsa_c01042{letter-spacing:-1.669500px;}
.ls15_c01042{letter-spacing:-1.040633px;}
.ls18_c01042{letter-spacing:-0.926295px;}
.ls1d_c01042{letter-spacing:-0.905250px;}
.lse_c01042{letter-spacing:-0.888743px;}
.ls2_c01042{letter-spacing:-0.836400px;}
.ls4_c01042{letter-spacing:0.000000px;}
.ls17_c01042{letter-spacing:0.836400px;}
.ls14_c01042{letter-spacing:0.892500px;}
.ls8_c01042{letter-spacing:0.984375px;}
.ls11_c01042{letter-spacing:1.310400px;}
.ls12_c01042{letter-spacing:1.911525px;}
.lsd_c01042{letter-spacing:2.102678px;}
.lsc_c01042{letter-spacing:2.854200px;}
.lsb_c01042{letter-spacing:2.934600px;}
.ls6_c01042{letter-spacing:4.182000px;}
.ls1e_c01042{letter-spacing:7.501200px;}
.ls1_c01042{letter-spacing:14.213700px;}
.ls0_c01042{letter-spacing:16.722900px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01042{word-spacing:0.000000px;}
._9_c01042{margin-left:-82.543768px;}
._4_c01042{margin-left:-7.804505px;}
._8_c01042{margin-left:-6.078999px;}
._5_c01042{margin-left:-4.477499px;}
._7_c01042{margin-left:-3.466529px;}
._3_c01042{margin-left:-1.834771px;}
._a_c01042{width:1.310190px;}
._6_c01042{width:3.060769px;}
._2_c01042{width:4.641911px;}
._b_c01042{width:8.333367px;}
._0_c01042{width:22.674901px;}
._12_c01042{width:23.811950px;}
._e_c01042{width:25.418066px;}
._d_c01042{width:27.019566px;}
._f_c01042{width:30.367206px;}
._10_c01042{width:32.107292px;}
._c_c01042{width:33.708860px;}
._11_c01042{width:35.454932px;}
._1_c01042{width:655.901084px;}
.fc0_c01042{color:transparent;}
.fsc_c01042{font-size:42.000000px;}
.fsb_c01042{font-size:43.500000px;}
.fsa_c01042{font-size:44.250000px;}
.fs0_c01042{font-size:51.000000px;}
.fs3_c01042{font-size:52.500000px;}
.fs5_c01042{font-size:53.250000px;}
.fs4_c01042{font-size:54.750000px;}
.fs9_c01042{font-size:55.500000px;}
.fs1_c01042{font-size:56.250000px;}
.fs6_c01042{font-size:57.750000px;}
.fs8_c01042{font-size:66.750000px;}
.fs7_c01042{font-size:68.250000px;}
.fs2_c01042{font-size:70.500000px;}
.y0_c01042{bottom:0.000000px;}
.y3a_c01042{bottom:182.161050px;}
.y6c_c01042{bottom:182.161215px;}
.y39_c01042{bottom:200.880000px;}
.y6b_c01042{bottom:200.880780px;}
.y6a_c01042{bottom:219.601710px;}
.y38_c01042{bottom:219.960000px;}
.y36_c01042{bottom:239.038965px;}
.y37_c01042{bottom:239.040000px;}
.y69_c01042{bottom:239.040315px;}
.y68_c01042{bottom:257.761230px;}
.y35_c01042{bottom:258.119430px;}
.y67_c01042{bottom:277.199850px;}
.y34_c01042{bottom:277.560555px;}
.y33_c01042{bottom:295.920600px;}
.y66_c01042{bottom:295.921275px;}
.y31_c01042{bottom:315.359820px;}
.y32_c01042{bottom:315.359850px;}
.y65_c01042{bottom:315.359895px;}
.y30_c01042{bottom:334.440255px;}
.y64_c01042{bottom:334.440360px;}
.y2f_c01042{bottom:354.239775px;}
.y63_c01042{bottom:354.239850px;}
.y62_c01042{bottom:372.960600px;}
.y2e_c01042{bottom:372.960690px;}
.y61_c01042{bottom:392.399250px;}
.y2d_c01042{bottom:392.399295px;}
.y60_c01042{bottom:411.479685px;}
.y2c_c01042{bottom:411.479760px;}
.y5f_c01042{bottom:430.920600px;}
.y2b_c01042{bottom:431.279250px;}
.y2a_c01042{bottom:450.000180px;}
.y5e_c01042{bottom:450.000600px;}
.y5c_c01042{bottom:469.798455px;}
.y29_c01042{bottom:469.799670px;}
.y5d_c01042{bottom:469.800570px;}
.y5b_c01042{bottom:488.878920px;}
.y28_c01042{bottom:488.880135px;}
.y5a_c01042{bottom:507.959355px;}
.y27_c01042{bottom:507.960570px;}
.y25_c01042{bottom:526.678845px;}
.y26_c01042{bottom:526.679670px;}
.y59_c01042{bottom:527.039820px;}
.y24_c01042{bottom:546.119985px;}
.y58_c01042{bottom:546.120255px;}
.y57_c01042{bottom:564.480285px;}
.y23_c01042{bottom:564.839535px;}
.y56_c01042{bottom:583.919730px;}
.y22_c01042{bottom:583.921185px;}
.y21_c01042{bottom:583.921215px;}
.y55_c01042{bottom:603.000180px;}
.y20_c01042{bottom:603.001650px;}
.y54_c01042{bottom:622.438800px;}
.y1f_c01042{bottom:622.440255px;}
.y53_c01042{bottom:641.519235px;}
.y1e_c01042{bottom:641.520270px;}
.y52_c01042{bottom:660.599700px;}
.y1d_c01042{bottom:660.600135px;}
.y1c_c01042{bottom:679.680135px;}
.y1b_c01042{bottom:679.680570px;}
.y1a_c01042{bottom:699.480060px;}
.y51_c01042{bottom:699.480285px;}
.y50_c01042{bottom:718.921185px;}
.y19_c01042{bottom:718.921215px;}
.y4f_c01042{bottom:738.359640px;}
.y18_c01042{bottom:738.359820px;}
.y4e_c01042{bottom:757.080570px;}
.y17_c01042{bottom:757.440255px;}
.y4d_c01042{bottom:776.161005px;}
.y16_c01042{bottom:776.520270px;}
.y4c_c01042{bottom:795.239415px;}
.y15_c01042{bottom:795.240870px;}
.y4b_c01042{bottom:815.038920px;}
.y13_c01042{bottom:815.400120px;}
.y14_c01042{bottom:815.400240px;}
.y4a_c01042{bottom:834.119355px;}
.y12_c01042{bottom:834.121035px;}
.y49_c01042{bottom:852.838920px;}
.y11_c01042{bottom:853.200990px;}
.y48_c01042{bottom:871.919385px;}
.y10_c01042{bottom:871.919955px;}
.yf_c01042{bottom:871.920360px;}
.y47_c01042{bottom:891.360510px;}
.ye_c01042{bottom:891.719880px;}
.y46_c01042{bottom:910.799130px;}
.yd_c01042{bottom:911.161005px;}
.y45_c01042{bottom:929.879580px;}
.yc_c01042{bottom:930.240870px;}
.yb_c01042{bottom:930.241080px;}
.y44_c01042{bottom:948.960015px;}
.ya_c01042{bottom:949.321515px;}
.y43_c01042{bottom:968.400885px;}
.y9_c01042{bottom:968.760135px;}
.y42_c01042{bottom:987.480840px;}
.y8_c01042{bottom:987.840090px;}
.y41_c01042{bottom:1006.919835px;}
.y7_c01042{bottom:1007.279775px;}
.y40_c01042{bottom:1025.640750px;}
.y6_c01042{bottom:1025.999340px;}
.y3e_c01042{bottom:1045.078440px;}
.y3f_c01042{bottom:1045.079955px;}
.y5_c01042{bottom:1045.440465px;}
.y3d_c01042{bottom:1064.158875px;}
.y4_c01042{bottom:1064.520930px;}
.y3c_c01042{bottom:1083.600030px;}
.y3_c01042{bottom:1083.959535px;}
.y3b_c01042{bottom:1102.680480px;}
.y2_c01042{bottom:1103.039985px;}
.y1_c01042{bottom:1141.560705px;}
.hf_c01042{height:43.804688px;}
.he_c01042{height:45.369141px;}
.hc_c01042{height:46.151367px;}
.h1_c01042{height:50.402344px;}
.h4_c01042{height:51.500244px;}
.h5_c01042{height:51.884766px;}
.h7_c01042{height:52.625977px;}
.h6_c01042{height:54.108398px;}
.hb_c01042{height:54.849609px;}
.h2_c01042{height:55.590820px;}
.h8_c01042{height:57.073242px;}
.ha_c01042{height:65.967773px;}
.h9_c01042{height:67.450195px;}
.h3_c01042{height:69.673828px;}
.hd_c01042{height:71.050781px;}
.h0_c01042{height:1263.000000px;}
.w0_c01042{width:892.500000px;}
.x0_c01042{left:0.000000px;}
.x1_c01042{left:294.839535px;}
.x6_c01042{left:358.559355px;}
.x3_c01042{left:359.638530px;}
.x7_c01042{left:404.279850px;}
.xa_c01042{left:410.039385px;}
.x5_c01042{left:411.118785px;}
.x8_c01042{left:416.878320px;}
.x9_c01042{left:422.998950px;}
.x4_c01042{left:424.080000px;}
.xb_c01042{left:442.798920px;}
.xc_c01042{left:461.878920px;}
.xf_c01042{left:559.438320px;}
.xd_c01042{left:560.517720px;}
.xe_c01042{left:592.559685px;}
.x2_c01042{left:690.838530px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.lsf_c01042{letter-spacing:-4.460800pt;}
.ls16_c01042{letter-spacing:-3.800380pt;}
.ls5_c01042{letter-spacing:-3.717333pt;}
.ls19_c01042{letter-spacing:-3.709133pt;}
.ls1f_c01042{letter-spacing:-3.520533pt;}
.ls7_c01042{letter-spacing:-3.382867pt;}
.ls10_c01042{letter-spacing:-2.973867pt;}
.ls1b_c01042{letter-spacing:-2.760333pt;}
.ls1a_c01042{letter-spacing:-2.699667pt;}
.ls1c_c01042{letter-spacing:-2.269140pt;}
.ls9_c01042{letter-spacing:-2.229947pt;}
.ls13_c01042{letter-spacing:-1.620113pt;}
.ls3_c01042{letter-spacing:-1.487387pt;}
.lsa_c01042{letter-spacing:-1.484000pt;}
.ls15_c01042{letter-spacing:-0.925007pt;}
.ls18_c01042{letter-spacing:-0.823373pt;}
.ls1d_c01042{letter-spacing:-0.804667pt;}
.lse_c01042{letter-spacing:-0.789993pt;}
.ls2_c01042{letter-spacing:-0.743467pt;}
.ls4_c01042{letter-spacing:0.000000pt;}
.ls17_c01042{letter-spacing:0.743467pt;}
.ls14_c01042{letter-spacing:0.793333pt;}
.ls8_c01042{letter-spacing:0.875000pt;}
.ls11_c01042{letter-spacing:1.164800pt;}
.ls12_c01042{letter-spacing:1.699133pt;}
.lsd_c01042{letter-spacing:1.869047pt;}
.lsc_c01042{letter-spacing:2.537067pt;}
.lsb_c01042{letter-spacing:2.608533pt;}
.ls6_c01042{letter-spacing:3.717333pt;}
.ls1e_c01042{letter-spacing:6.667733pt;}
.ls1_c01042{letter-spacing:12.634400pt;}
.ls0_c01042{letter-spacing:14.864800pt;}
.ws0_c01042{word-spacing:0.000000pt;}
._9_c01042{margin-left:-73.372238pt;}
._4_c01042{margin-left:-6.937338pt;}
._8_c01042{margin-left:-5.403555pt;}
._5_c01042{margin-left:-3.979999pt;}
._7_c01042{margin-left:-3.081359pt;}
._3_c01042{margin-left:-1.630908pt;}
._a_c01042{width:1.164613pt;}
._6_c01042{width:2.720684pt;}
._2_c01042{width:4.126143pt;}
._b_c01042{width:7.407437pt;}
._0_c01042{width:20.155468pt;}
._12_c01042{width:21.166178pt;}
._e_c01042{width:22.593836pt;}
._d_c01042{width:24.017392pt;}
._f_c01042{width:26.993072pt;}
._10_c01042{width:28.539816pt;}
._c_c01042{width:29.963431pt;}
._11_c01042{width:31.515496pt;}
._1_c01042{width:583.023186pt;}
.fsc_c01042{font-size:37.333333pt;}
.fsb_c01042{font-size:38.666667pt;}
.fsa_c01042{font-size:39.333333pt;}
.fs0_c01042{font-size:45.333333pt;}
.fs3_c01042{font-size:46.666667pt;}
.fs5_c01042{font-size:47.333333pt;}
.fs4_c01042{font-size:48.666667pt;}
.fs9_c01042{font-size:49.333333pt;}
.fs1_c01042{font-size:50.000000pt;}
.fs6_c01042{font-size:51.333333pt;}
.fs8_c01042{font-size:59.333333pt;}
.fs7_c01042{font-size:60.666667pt;}
.fs2_c01042{font-size:62.666667pt;}
.y0_c01042{bottom:0.000000pt;}
.y3a_c01042{bottom:161.920933pt;}
.y6c_c01042{bottom:161.921080pt;}
.y39_c01042{bottom:178.560000pt;}
.y6b_c01042{bottom:178.560693pt;}
.y6a_c01042{bottom:195.201520pt;}
.y38_c01042{bottom:195.520000pt;}
.y36_c01042{bottom:212.479080pt;}
.y37_c01042{bottom:212.480000pt;}
.y69_c01042{bottom:212.480280pt;}
.y68_c01042{bottom:229.121093pt;}
.y35_c01042{bottom:229.439493pt;}
.y67_c01042{bottom:246.399867pt;}
.y34_c01042{bottom:246.720493pt;}
.y33_c01042{bottom:263.040533pt;}
.y66_c01042{bottom:263.041133pt;}
.y31_c01042{bottom:280.319840pt;}
.y32_c01042{bottom:280.319867pt;}
.y65_c01042{bottom:280.319907pt;}
.y30_c01042{bottom:297.280227pt;}
.y64_c01042{bottom:297.280320pt;}
.y2f_c01042{bottom:314.879800pt;}
.y63_c01042{bottom:314.879867pt;}
.y62_c01042{bottom:331.520533pt;}
.y2e_c01042{bottom:331.520613pt;}
.y61_c01042{bottom:348.799333pt;}
.y2d_c01042{bottom:348.799373pt;}
.y60_c01042{bottom:365.759720pt;}
.y2c_c01042{bottom:365.759787pt;}
.y5f_c01042{bottom:383.040533pt;}
.y2b_c01042{bottom:383.359333pt;}
.y2a_c01042{bottom:400.000160pt;}
.y5e_c01042{bottom:400.000533pt;}
.y5c_c01042{bottom:417.598627pt;}
.y29_c01042{bottom:417.599707pt;}
.y5d_c01042{bottom:417.600507pt;}
.y5b_c01042{bottom:434.559040pt;}
.y28_c01042{bottom:434.560120pt;}
.y5a_c01042{bottom:451.519427pt;}
.y27_c01042{bottom:451.520507pt;}
.y25_c01042{bottom:468.158973pt;}
.y26_c01042{bottom:468.159707pt;}
.y59_c01042{bottom:468.479840pt;}
.y24_c01042{bottom:485.439987pt;}
.y58_c01042{bottom:485.440227pt;}
.y57_c01042{bottom:501.760253pt;}
.y23_c01042{bottom:502.079587pt;}
.y56_c01042{bottom:519.039760pt;}
.y22_c01042{bottom:519.041053pt;}
.y21_c01042{bottom:519.041080pt;}
.y55_c01042{bottom:536.000160pt;}
.y20_c01042{bottom:536.001467pt;}
.y54_c01042{bottom:553.278933pt;}
.y1f_c01042{bottom:553.280227pt;}
.y53_c01042{bottom:570.239320pt;}
.y1e_c01042{bottom:570.240240pt;}
.y52_c01042{bottom:587.199733pt;}
.y1d_c01042{bottom:587.200120pt;}
.y1c_c01042{bottom:604.160120pt;}
.y1b_c01042{bottom:604.160507pt;}
.y1a_c01042{bottom:621.760053pt;}
.y51_c01042{bottom:621.760253pt;}
.y50_c01042{bottom:639.041053pt;}
.y19_c01042{bottom:639.041080pt;}
.y4f_c01042{bottom:656.319680pt;}
.y18_c01042{bottom:656.319840pt;}
.y4e_c01042{bottom:672.960507pt;}
.y17_c01042{bottom:673.280227pt;}
.y4d_c01042{bottom:689.920893pt;}
.y16_c01042{bottom:690.240240pt;}
.y4c_c01042{bottom:706.879480pt;}
.y15_c01042{bottom:706.880773pt;}
.y4b_c01042{bottom:724.479040pt;}
.y13_c01042{bottom:724.800107pt;}
.y14_c01042{bottom:724.800213pt;}
.y4a_c01042{bottom:741.439427pt;}
.y12_c01042{bottom:741.440920pt;}
.y49_c01042{bottom:758.079040pt;}
.y11_c01042{bottom:758.400880pt;}
.y48_c01042{bottom:775.039453pt;}
.y10_c01042{bottom:775.039960pt;}
.yf_c01042{bottom:775.040320pt;}
.y47_c01042{bottom:792.320453pt;}
.ye_c01042{bottom:792.639893pt;}
.y46_c01042{bottom:809.599227pt;}
.yd_c01042{bottom:809.920893pt;}
.y45_c01042{bottom:826.559627pt;}
.yc_c01042{bottom:826.880773pt;}
.yb_c01042{bottom:826.880960pt;}
.y44_c01042{bottom:843.520013pt;}
.ya_c01042{bottom:843.841347pt;}
.y43_c01042{bottom:860.800787pt;}
.y9_c01042{bottom:861.120120pt;}
.y42_c01042{bottom:877.760747pt;}
.y8_c01042{bottom:878.080080pt;}
.y41_c01042{bottom:895.039853pt;}
.y7_c01042{bottom:895.359800pt;}
.y40_c01042{bottom:911.680667pt;}
.y6_c01042{bottom:911.999413pt;}
.y3e_c01042{bottom:928.958613pt;}
.y3f_c01042{bottom:928.959960pt;}
.y5_c01042{bottom:929.280413pt;}
.y3d_c01042{bottom:945.919000pt;}
.y4_c01042{bottom:946.240827pt;}
.y3c_c01042{bottom:963.200027pt;}
.y3_c01042{bottom:963.519587pt;}
.y3b_c01042{bottom:980.160427pt;}
.y2_c01042{bottom:980.479987pt;}
.y1_c01042{bottom:1014.720627pt;}
.hf_c01042{height:38.937500pt;}
.he_c01042{height:40.328125pt;}
.hc_c01042{height:41.023438pt;}
.h1_c01042{height:44.802083pt;}
.h4_c01042{height:45.777995pt;}
.h5_c01042{height:46.119792pt;}
.h7_c01042{height:46.778646pt;}
.h6_c01042{height:48.096354pt;}
.hb_c01042{height:48.755208pt;}
.h2_c01042{height:49.414063pt;}
.h8_c01042{height:50.731771pt;}
.ha_c01042{height:58.638021pt;}
.h9_c01042{height:59.955729pt;}
.h3_c01042{height:61.932292pt;}
.hd_c01042{height:63.156250pt;}
.h0_c01042{height:1122.666667pt;}
.w0_c01042{width:793.333333pt;}
.x0_c01042{left:0.000000pt;}
.x1_c01042{left:262.079587pt;}
.x6_c01042{left:318.719427pt;}
.x3_c01042{left:319.678693pt;}
.x7_c01042{left:359.359867pt;}
.xa_c01042{left:364.479453pt;}
.x5_c01042{left:365.438920pt;}
.x8_c01042{left:370.558507pt;}
.x9_c01042{left:375.999067pt;}
.x4_c01042{left:376.960000pt;}
.xb_c01042{left:393.599040pt;}
.xc_c01042{left:410.559040pt;}
.xf_c01042{left:497.278507pt;}
.xd_c01042{left:498.237973pt;}
.xe_c01042{left:526.719720pt;}
.x2_c01042{left:614.078693pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_c595609fb314156b6a184c7b.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_c56c53ea964bfd43cf901510.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_e394520553b9f7a42a7664c0.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01043;src:url('chunks/assets/font_40e52bc212e4c59012ad5424.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01043;src:url('chunks/assets/font_4e6359eb9dfba6f8d238af0e.woff2')format("woff");}.ff5_c01043{font-family:ff5_c01043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01043;src:url('chunks/assets/font_6706081e0f0ca93f5fce1725.woff2')format("woff");}.ff6_c01043{font-family:ff6_c01043;line-height:1.364746;font-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_c01043{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m11_c01043{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m1c_c01043{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m1b_c01043{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m9_c01043{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m12_c01043{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m19_c01043{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m3_c01043{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);}
.m8_c01043{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.ma_c01043{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m6_c01043{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.md_c01043{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m7_c01043{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1a_c01043{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m15_c01043{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.m1_c01043{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.mf_c01043{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.mc_c01043{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.mb_c01043{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m13_c01043{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m4_c01043{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m0_c01043{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m2_c01043{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m14_c01043{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m17_c01043{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m16_c01043{transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);}
.me_c01043{transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);}
.m5_c01043{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.m18_c01043{transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.lsb_c01043{letter-spacing:-11.740140px;}
.lsd_c01043{letter-spacing:-6.686100px;}
.lsa_c01043{letter-spacing:-5.871195px;}
.ls11_c01043{letter-spacing:-5.018400px;}
.ls1c_c01043{letter-spacing:-4.582875px;}
.ls12_c01043{letter-spacing:-4.236908px;}
.ls6_c01043{letter-spacing:-4.182000px;}
.ls5_c01043{letter-spacing:-4.093740px;}
.ls1b_c01043{letter-spacing:-3.929250px;}
.ls10_c01043{letter-spacing:-3.386250px;}
.ls18_c01043{letter-spacing:-3.366578px;}
.lsc_c01043{letter-spacing:-3.345600px;}
.ls16_c01043{letter-spacing:-3.271973px;}
.ls17_c01043{letter-spacing:-3.105375px;}
.ls1f_c01043{letter-spacing:-3.037125px;}
.ls1e_c01043{letter-spacing:-2.968875px;}
.ls3_c01043{letter-spacing:-2.649900px;}
.ls7_c01043{letter-spacing:-2.508690px;}
.ls1a_c01043{letter-spacing:-2.425913px;}
.ls2_c01043{letter-spacing:-1.673310px;}
.ls13_c01043{letter-spacing:-0.901260px;}
.ls1_c01043{letter-spacing:-0.836400px;}
.ls9_c01043{letter-spacing:0.000000px;}
.ls19_c01043{letter-spacing:0.836400px;}
.ls15_c01043{letter-spacing:0.877200px;}
.ls1d_c01043{letter-spacing:0.892500px;}
.lsf_c01043{letter-spacing:0.926325px;}
.ls8_c01043{letter-spacing:0.939750px;}
.lse_c01043{letter-spacing:1.970250px;}
.ls0_c01043{letter-spacing:2.508690px;}
.ls4_c01043{letter-spacing:3.345600px;}
.ls14_c01043{letter-spacing:26.754600px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:0.000000px;}
._9_c01043{margin-left:-11.301399px;}
._5_c01043{margin-left:-8.823033px;}
._4_c01043{margin-left:-7.088699px;}
._3_c01043{margin-left:-6.070170px;}
._8_c01043{margin-left:-4.477432px;}
._d_c01043{margin-left:-3.467975px;}
._7_c01043{margin-left:-1.802440px;}
._2_c01043{width:1.440583px;}
._a_c01043{width:3.314900px;}
._6_c01043{width:4.735659px;}
._c_c01043{width:9.944967px;}
._b_c01043{width:14.144114px;}
._14_c01043{width:22.072532px;}
._0_c01043{width:24.281083px;}
._13_c01043{width:25.547923px;}
._f_c01043{width:27.029331px;}
._e_c01043{width:30.377372px;}
._11_c01043{width:32.107226px;}
._12_c01043{width:33.848683px;}
._10_c01043{width:35.320460px;}
._1_c01043{width:691.640421px;}
.fc0_c01043{color:transparent;}
.fs11_c01043{font-size:28.500000px;}
.fse_c01043{font-size:41.250000px;}
.fsf_c01043{font-size:43.500000px;}
.fs9_c01043{font-size:45.750000px;}
.fs10_c01043{font-size:46.500000px;}
.fs7_c01043{font-size:47.250000px;}
.fs4_c01043{font-size:48.750000px;}
.fs5_c01043{font-size:49.500000px;}
.fs0_c01043{font-size:51.000000px;}
.fs8_c01043{font-size:51.750000px;}
.fs3_c01043{font-size:52.500000px;}
.fs6_c01043{font-size:53.250000px;}
.fs2_c01043{font-size:54.000000px;}
.fs1_c01043{font-size:54.750000px;}
.fsa_c01043{font-size:55.500000px;}
.fsb_c01043{font-size:56.250000px;}
.fs12_c01043{font-size:65.250000px;}
.fs13_c01043{font-size:66.750000px;}
.fsd_c01043{font-size:68.250000px;}
.fsc_c01043{font-size:69.750000px;}
.y0_c01043{bottom:0.000000px;}
.y72_c01043{bottom:186.480930px;}
.y3b_c01043{bottom:187.200465px;}
.y71_c01043{bottom:205.919535px;}
.y3a_c01043{bottom:206.639700px;}
.y6f_c01043{bottom:224.999160px;}
.y70_c01043{bottom:224.999400px;}
.y38_c01043{bottom:225.718845px;}
.y39_c01043{bottom:225.719535px;}
.y6e_c01043{bottom:244.440285px;}
.y37_c01043{bottom:245.160000px;}
.y6d_c01043{bottom:263.520285px;}
.y6c_c01043{bottom:263.520630px;}
.y36_c01043{bottom:264.240435px;}
.y35_c01043{bottom:264.241080px;}
.y6b_c01043{bottom:282.959250px;}
.y33_c01043{bottom:283.679370px;}
.y34_c01043{bottom:283.679700px;}
.y6a_c01043{bottom:301.680150px;}
.y31_c01043{bottom:302.397885px;}
.y32_c01043{bottom:302.400285px;}
.y69_c01043{bottom:320.760135px;}
.y30_c01043{bottom:321.478335px;}
.y68_c01043{bottom:339.479880px;}
.y2f_c01043{bottom:340.197900px;}
.y67_c01043{bottom:358.560330px;}
.y2e_c01043{bottom:359.278335px;}
.y66_c01043{bottom:377.640765px;}
.y2d_c01043{bottom:378.359955px;}
.y65_c01043{bottom:397.440285px;}
.y2c_c01043{bottom:398.158110px;}
.y64_c01043{bottom:416.520720px;}
.y2b_c01043{bottom:417.238545px;}
.y62_c01043{bottom:435.959535px;}
.y63_c01043{bottom:435.959970px;}
.y2a_c01043{bottom:436.679700px;}
.y61_c01043{bottom:455.039985px;}
.y29_c01043{bottom:455.760135px;}
.y60_c01043{bottom:474.836955px;}
.y27_c01043{bottom:475.558980px;}
.y28_c01043{bottom:475.560285px;}
.y5f_c01043{bottom:493.917405px;}
.y26_c01043{bottom:494.639445px;}
.y5e_c01043{bottom:512.997855px;}
.y25_c01043{bottom:514.078050px;}
.y5d_c01043{bottom:532.078305px;}
.y24_c01043{bottom:532.798965px;}
.y5c_c01043{bottom:551.158740px;}
.y23_c01043{bottom:552.237585px;}
.y5b_c01043{bottom:570.239205px;}
.y22_c01043{bottom:570.958515px;}
.y5a_c01043{bottom:589.680330px;}
.y21_c01043{bottom:590.758005px;}
.y59_c01043{bottom:608.760795px;}
.y20_c01043{bottom:609.838470px;}
.y58_c01043{bottom:628.199415px;}
.y1f_c01043{bottom:629.277075px;}
.y57_c01043{bottom:647.279850px;}
.y1e_c01043{bottom:647.997990px;}
.y56_c01043{bottom:666.359850px;}
.y1d_c01043{bottom:667.439145px;}
.y55_c01043{bottom:685.080420px;}
.y1c_c01043{bottom:686.158695px;}
.y54_c01043{bottom:704.159985px;}
.y1b_c01043{bottom:705.239130px;}
.y53_c01043{bottom:723.240420px;}
.y1a_c01043{bottom:724.319595px;}
.y52_c01043{bottom:742.320930px;}
.y19_c01043{bottom:743.760720px;}
.y51_c01043{bottom:761.759535px;}
.y17_c01043{bottom:762.839010px;}
.y18_c01043{bottom:762.840585px;}
.y50_c01043{bottom:781.200435px;}
.y16_c01043{bottom:782.277630px;}
.y4f_c01043{bottom:800.640180px;}
.y15_c01043{bottom:801.358065px;}
.y4e_c01043{bottom:820.439670px;}
.y14_c01043{bottom:821.519625px;}
.y4d_c01043{bottom:839.519715px;}
.y13_c01043{bottom:840.239175px;}
.y4b_c01043{bottom:858.598800px;}
.y4c_c01043{bottom:858.599670px;}
.y12_c01043{bottom:859.680330px;}
.y4a_c01043{bottom:877.679265px;}
.y11_c01043{bottom:878.760780px;}
.y49_c01043{bottom:897.120390px;}
.yf_c01043{bottom:897.840180px;}
.y10_c01043{bottom:897.840540px;}
.y48_c01043{bottom:915.838470px;}
.ye_c01043{bottom:916.920645px;}
.yd_c01043{bottom:934.560240px;}
.y47_c01043{bottom:934.918920px;}
.y46_c01043{bottom:953.999355px;}
.yc_c01043{bottom:955.080420px;}
.y45_c01043{bottom:973.440315px;}
.y44_c01043{bottom:973.440330px;}
.yb_c01043{bottom:974.519715px;}
.y43_c01043{bottom:992.878950px;}
.ya_c01043{bottom:993.599670px;}
.y42_c01043{bottom:1011.959385px;}
.y9_c01043{bottom:1013.040615px;}
.y8_c01043{bottom:1013.040645px;}
.y41_c01043{bottom:1031.039340px;}
.y40_c01043{bottom:1031.039925px;}
.y7_c01043{bottom:1032.121095px;}
.y3f_c01043{bottom:1050.839430px;}
.y6_c01043{bottom:1051.920600px;}
.y3e_c01043{bottom:1069.560360px;}
.y4_c01043{bottom:1070.638875px;}
.y5_c01043{bottom:1070.639655px;}
.y3d_c01043{bottom:1088.998965px;}
.y3_c01043{bottom:1090.080030px;}
.y3c_c01043{bottom:1108.079400px;}
.y2_c01043{bottom:1109.160465px;}
.y1_c01043{bottom:1148.399775px;}
.h13_c01043{height:29.724609px;}
.h10_c01043{height:43.022461px;}
.h11_c01043{height:45.369141px;}
.h9_c01043{height:47.619141px;}
.hb_c01043{height:47.715820px;}
.h5_c01043{height:47.845459px;}
.h12_c01043{height:48.498047px;}
.h6_c01043{height:48.581543px;}
.h1_c01043{height:50.402344px;}
.ha_c01043{height:51.143555px;}
.h4_c01043{height:51.884766px;}
.h8_c01043{height:52.625977px;}
.h3_c01043{height:53.367188px;}
.h2_c01043{height:54.108398px;}
.hc_c01043{height:54.849609px;}
.hd_c01043{height:55.590820px;}
.h7_c01043{height:56.320312px;}
.h14_c01043{height:64.485352px;}
.h15_c01043{height:65.967773px;}
.hf_c01043{height:67.450195px;}
.he_c01043{height:68.932617px;}
.h0_c01043{height:1263.000000px;}
.w0_c01043{width:892.500000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:305.279250px;}
.xe_c01043{left:366.479235px;}
.xa_c01043{left:367.559415px;}
.x8_c01043{left:368.639790px;}
.x5_c01043{left:369.718575px;}
.x3_c01043{left:370.798515px;}
.xc_c01043{left:399.599670px;}
.x4_c01043{left:415.439670px;}
.xb_c01043{left:418.679670px;}
.x9_c01043{left:426.599670px;}
.x7_c01043{left:428.039985px;}
.xd_c01043{left:438.479685px;}
.x6_c01043{left:441.358665px;}
.x16_c01043{left:568.079400px;}
.x13_c01043{left:569.158770px;}
.x11_c01043{left:570.240000px;}
.xf_c01043{left:571.319340px;}
.x14_c01043{left:600.838950px;}
.x12_c01043{left:602.279250px;}
.x10_c01043{left:603.358605px;}
.x15_c01043{left:629.279250px;}
.x2_c01043{left:701.639100px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.lsb_c01043{letter-spacing:-10.435680pt;}
.lsd_c01043{letter-spacing:-5.943200pt;}
.lsa_c01043{letter-spacing:-5.218840pt;}
.ls11_c01043{letter-spacing:-4.460800pt;}
.ls1c_c01043{letter-spacing:-4.073667pt;}
.ls12_c01043{letter-spacing:-3.766140pt;}
.ls6_c01043{letter-spacing:-3.717333pt;}
.ls5_c01043{letter-spacing:-3.638880pt;}
.ls1b_c01043{letter-spacing:-3.492667pt;}
.ls10_c01043{letter-spacing:-3.010000pt;}
.ls18_c01043{letter-spacing:-2.992513pt;}
.lsc_c01043{letter-spacing:-2.973867pt;}
.ls16_c01043{letter-spacing:-2.908420pt;}
.ls17_c01043{letter-spacing:-2.760333pt;}
.ls1f_c01043{letter-spacing:-2.699667pt;}
.ls1e_c01043{letter-spacing:-2.639000pt;}
.ls3_c01043{letter-spacing:-2.355467pt;}
.ls7_c01043{letter-spacing:-2.229947pt;}
.ls1a_c01043{letter-spacing:-2.156367pt;}
.ls2_c01043{letter-spacing:-1.487387pt;}
.ls13_c01043{letter-spacing:-0.801120pt;}
.ls1_c01043{letter-spacing:-0.743467pt;}
.ls9_c01043{letter-spacing:0.000000pt;}
.ls19_c01043{letter-spacing:0.743467pt;}
.ls15_c01043{letter-spacing:0.779733pt;}
.ls1d_c01043{letter-spacing:0.793333pt;}
.lsf_c01043{letter-spacing:0.823400pt;}
.ls8_c01043{letter-spacing:0.835333pt;}
.lse_c01043{letter-spacing:1.751333pt;}
.ls0_c01043{letter-spacing:2.229947pt;}
.ls4_c01043{letter-spacing:2.973867pt;}
.ls14_c01043{letter-spacing:23.781867pt;}
.ws0_c01043{word-spacing:0.000000pt;}
._9_c01043{margin-left:-10.045688pt;}
._5_c01043{margin-left:-7.842696pt;}
._4_c01043{margin-left:-6.301066pt;}
._3_c01043{margin-left:-5.395707pt;}
._8_c01043{margin-left:-3.979940pt;}
._d_c01043{margin-left:-3.082644pt;}
._7_c01043{margin-left:-1.602169pt;}
._2_c01043{width:1.280518pt;}
._a_c01043{width:2.946577pt;}
._6_c01043{width:4.209475pt;}
._c_c01043{width:8.839970pt;}
._b_c01043{width:12.572546pt;}
._14_c01043{width:19.620029pt;}
._0_c01043{width:21.583185pt;}
._13_c01043{width:22.709265pt;}
._f_c01043{width:24.026072pt;}
._e_c01043{width:27.002109pt;}
._11_c01043{width:28.539756pt;}
._12_c01043{width:30.087718pt;}
._10_c01043{width:31.395964pt;}
._1_c01043{width:614.791485pt;}
.fs11_c01043{font-size:25.333333pt;}
.fse_c01043{font-size:36.666667pt;}
.fsf_c01043{font-size:38.666667pt;}
.fs9_c01043{font-size:40.666667pt;}
.fs10_c01043{font-size:41.333333pt;}
.fs7_c01043{font-size:42.000000pt;}
.fs4_c01043{font-size:43.333333pt;}
.fs5_c01043{font-size:44.000000pt;}
.fs0_c01043{font-size:45.333333pt;}
.fs8_c01043{font-size:46.000000pt;}
.fs3_c01043{font-size:46.666667pt;}
.fs6_c01043{font-size:47.333333pt;}
.fs2_c01043{font-size:48.000000pt;}
.fs1_c01043{font-size:48.666667pt;}
.fsa_c01043{font-size:49.333333pt;}
.fsb_c01043{font-size:50.000000pt;}
.fs12_c01043{font-size:58.000000pt;}
.fs13_c01043{font-size:59.333333pt;}
.fsd_c01043{font-size:60.666667pt;}
.fsc_c01043{font-size:62.000000pt;}
.y0_c01043{bottom:0.000000pt;}
.y72_c01043{bottom:165.760827pt;}
.y3b_c01043{bottom:166.400413pt;}
.y71_c01043{bottom:183.039587pt;}
.y3a_c01043{bottom:183.679733pt;}
.y6f_c01043{bottom:199.999253pt;}
.y70_c01043{bottom:199.999467pt;}
.y38_c01043{bottom:200.638973pt;}
.y39_c01043{bottom:200.639587pt;}
.y6e_c01043{bottom:217.280253pt;}
.y37_c01043{bottom:217.920000pt;}
.y6d_c01043{bottom:234.240253pt;}
.y6c_c01043{bottom:234.240560pt;}
.y36_c01043{bottom:234.880387pt;}
.y35_c01043{bottom:234.880960pt;}
.y6b_c01043{bottom:251.519333pt;}
.y33_c01043{bottom:252.159440pt;}
.y34_c01043{bottom:252.159733pt;}
.y6a_c01043{bottom:268.160133pt;}
.y31_c01043{bottom:268.798120pt;}
.y32_c01043{bottom:268.800253pt;}
.y69_c01043{bottom:285.120120pt;}
.y30_c01043{bottom:285.758520pt;}
.y68_c01043{bottom:301.759893pt;}
.y2f_c01043{bottom:302.398133pt;}
.y67_c01043{bottom:318.720293pt;}
.y2e_c01043{bottom:319.358520pt;}
.y66_c01043{bottom:335.680680pt;}
.y2d_c01043{bottom:336.319960pt;}
.y65_c01043{bottom:353.280253pt;}
.y2c_c01043{bottom:353.918320pt;}
.y64_c01043{bottom:370.240640pt;}
.y2b_c01043{bottom:370.878707pt;}
.y62_c01043{bottom:387.519587pt;}
.y63_c01043{bottom:387.519973pt;}
.y2a_c01043{bottom:388.159733pt;}
.y61_c01043{bottom:404.479987pt;}
.y29_c01043{bottom:405.120120pt;}
.y60_c01043{bottom:422.077293pt;}
.y27_c01043{bottom:422.719093pt;}
.y28_c01043{bottom:422.720253pt;}
.y5f_c01043{bottom:439.037693pt;}
.y26_c01043{bottom:439.679507pt;}
.y5e_c01043{bottom:455.998093pt;}
.y25_c01043{bottom:456.958267pt;}
.y5d_c01043{bottom:472.958493pt;}
.y24_c01043{bottom:473.599080pt;}
.y5c_c01043{bottom:489.918880pt;}
.y23_c01043{bottom:490.877853pt;}
.y5b_c01043{bottom:506.879293pt;}
.y22_c01043{bottom:507.518680pt;}
.y5a_c01043{bottom:524.160293pt;}
.y21_c01043{bottom:525.118227pt;}
.y59_c01043{bottom:541.120707pt;}
.y20_c01043{bottom:542.078640pt;}
.y58_c01043{bottom:558.399480pt;}
.y1f_c01043{bottom:559.357400pt;}
.y57_c01043{bottom:575.359867pt;}
.y1e_c01043{bottom:575.998213pt;}
.y56_c01043{bottom:592.319867pt;}
.y1d_c01043{bottom:593.279240pt;}
.y55_c01043{bottom:608.960373pt;}
.y1c_c01043{bottom:609.918840pt;}
.y54_c01043{bottom:625.919987pt;}
.y1b_c01043{bottom:626.879227pt;}
.y53_c01043{bottom:642.880373pt;}
.y1a_c01043{bottom:643.839640pt;}
.y52_c01043{bottom:659.840827pt;}
.y19_c01043{bottom:661.120640pt;}
.y51_c01043{bottom:677.119587pt;}
.y17_c01043{bottom:678.079120pt;}
.y18_c01043{bottom:678.080520pt;}
.y50_c01043{bottom:694.400387pt;}
.y16_c01043{bottom:695.357893pt;}
.y4f_c01043{bottom:711.680160pt;}
.y15_c01043{bottom:712.318280pt;}
.y4e_c01043{bottom:729.279707pt;}
.y14_c01043{bottom:730.239667pt;}
.y4d_c01043{bottom:746.239747pt;}
.y13_c01043{bottom:746.879267pt;}
.y4b_c01043{bottom:763.198933pt;}
.y4c_c01043{bottom:763.199707pt;}
.y12_c01043{bottom:764.160293pt;}
.y4a_c01043{bottom:780.159347pt;}
.y11_c01043{bottom:781.120693pt;}
.y49_c01043{bottom:797.440347pt;}
.yf_c01043{bottom:798.080160pt;}
.y10_c01043{bottom:798.080480pt;}
.y48_c01043{bottom:814.078640pt;}
.ye_c01043{bottom:815.040573pt;}
.yd_c01043{bottom:830.720213pt;}
.y47_c01043{bottom:831.039040pt;}
.y46_c01043{bottom:847.999427pt;}
.yc_c01043{bottom:848.960373pt;}
.y45_c01043{bottom:865.280280pt;}
.y44_c01043{bottom:865.280293pt;}
.yb_c01043{bottom:866.239747pt;}
.y43_c01043{bottom:882.559067pt;}
.ya_c01043{bottom:883.199707pt;}
.y42_c01043{bottom:899.519453pt;}
.y9_c01043{bottom:900.480547pt;}
.y8_c01043{bottom:900.480573pt;}
.y41_c01043{bottom:916.479413pt;}
.y40_c01043{bottom:916.479933pt;}
.y7_c01043{bottom:917.440973pt;}
.y3f_c01043{bottom:934.079493pt;}
.y6_c01043{bottom:935.040533pt;}
.y3e_c01043{bottom:950.720320pt;}
.y4_c01043{bottom:951.679000pt;}
.y5_c01043{bottom:951.679693pt;}
.y3d_c01043{bottom:967.999080pt;}
.y3_c01043{bottom:968.960027pt;}
.y3c_c01043{bottom:984.959467pt;}
.y2_c01043{bottom:985.920413pt;}
.y1_c01043{bottom:1020.799800pt;}
.h13_c01043{height:26.421875pt;}
.h10_c01043{height:38.242188pt;}
.h11_c01043{height:40.328125pt;}
.h9_c01043{height:42.328125pt;}
.hb_c01043{height:42.414062pt;}
.h5_c01043{height:42.529297pt;}
.h12_c01043{height:43.109375pt;}
.h6_c01043{height:43.183594pt;}
.h1_c01043{height:44.802083pt;}
.ha_c01043{height:45.460938pt;}
.h4_c01043{height:46.119792pt;}
.h8_c01043{height:46.778646pt;}
.h3_c01043{height:47.437500pt;}
.h2_c01043{height:48.096354pt;}
.hc_c01043{height:48.755208pt;}
.hd_c01043{height:49.414063pt;}
.h7_c01043{height:50.062500pt;}
.h14_c01043{height:57.320313pt;}
.h15_c01043{height:58.638021pt;}
.hf_c01043{height:59.955729pt;}
.he_c01043{height:61.273438pt;}
.h0_c01043{height:1122.666667pt;}
.w0_c01043{width:793.333333pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:271.359333pt;}
.xe_c01043{left:325.759320pt;}
.xa_c01043{left:326.719480pt;}
.x8_c01043{left:327.679813pt;}
.x5_c01043{left:328.638733pt;}
.x3_c01043{left:329.598680pt;}
.xc_c01043{left:355.199707pt;}
.x4_c01043{left:369.279707pt;}
.xb_c01043{left:372.159707pt;}
.x9_c01043{left:379.199707pt;}
.x7_c01043{left:380.479987pt;}
.xd_c01043{left:389.759720pt;}
.x6_c01043{left:392.318813pt;}
.x16_c01043{left:504.959467pt;}
.x13_c01043{left:505.918907pt;}
.x11_c01043{left:506.880000pt;}
.xf_c01043{left:507.839413pt;}
.x14_c01043{left:534.079067pt;}
.x12_c01043{left:535.359333pt;}
.x10_c01043{left:536.318760pt;}
.x15_c01043{left:559.359333pt;}
.x2_c01043{left:623.679200pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_18671bd7ef6169a6db0078a7.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_e617eca4c546823f14677fd6.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01044;src:url('chunks/assets/font_d555f998710c01ac359616d3.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01044;src:url('chunks/assets/font_927ad907f0c68c281e78ef93.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01044;src:url('chunks/assets/font_7916a23127d50532c9126776.woff2')format("woff");}.ff6_c01044{font-family:ff6_c01044;line-height:1.284668;font-style:normal;font-weight: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_c01044;src:url('chunks/assets/font_5d627a20e015263df006f658.woff2')format("woff");}.ff7_c01044{font-family:ff7_c01044;line-height:1.364746;font-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_c01044{transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);}
.m15_c01044{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m1c_c01044{transform:matrix(0.173684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173684,0.000000,0.000000,0.250000,0,0);}
.m20_c01044{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m13_c01044{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m27_c01044{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.m1b_c01044{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m19_c01044{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.mb_c01044{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m6_c01044{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m1f_c01044{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.ma_c01044{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m8_c01044{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m25_c01044{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m11_c01044{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m1e_c01044{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m5_c01044{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m18_c01044{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m22_c01044{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);}
.m28_c01044{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m1a_c01044{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m12_c01044{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m9_c01044{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m1d_c01044{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.md_c01044{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m10_c01044{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.mc_c01044{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m1_c01044{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m16_c01044{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m3_c01044{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m14_c01044{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m0_c01044{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m26_c01044{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m17_c01044{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m24_c01044{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m23_c01044{transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229839,0.000000,0.000000,0.250000,0,0);}
.mf_c01044{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m21_c01044{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m4_c01044{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m29_c01044{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m7_c01044{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m2_c01044{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls11_c01044{letter-spacing:-7.063500px;}
.lsd_c01044{letter-spacing:-3.980025px;}
.ls2e_c01044{letter-spacing:-3.959078px;}
.ls26_c01044{letter-spacing:-3.187500px;}
.ls19_c01044{letter-spacing:-3.105375px;}
.ls1f_c01044{letter-spacing:-2.968875px;}
.ls20_c01044{letter-spacing:-2.766938px;}
.ls29_c01044{letter-spacing:-2.730045px;}
.ls2b_c01044{letter-spacing:-2.535233px;}
.ls1d_c01044{letter-spacing:-2.504700px;}
.ls15_c01044{letter-spacing:-2.395800px;}
.ls14_c01044{letter-spacing:-1.797660px;}
.ls16_c01044{letter-spacing:-1.772693px;}
.ls1a_c01044{letter-spacing:-1.729410px;}
.ls1b_c01044{letter-spacing:-1.087403px;}
.ls22_c01044{letter-spacing:-1.083000px;}
.ls25_c01044{letter-spacing:-1.040633px;}
.ls24_c01044{letter-spacing:-0.951330px;}
.ls23_c01044{letter-spacing:-0.910200px;}
.lse_c01044{letter-spacing:-0.867000px;}
.ls1c_c01044{letter-spacing:-0.864300px;}
.lsc_c01044{letter-spacing:0.000000px;}
.ls1_c01044{letter-spacing:0.867000px;}
.ls18_c01044{letter-spacing:0.915900px;}
.ls17_c01044{letter-spacing:0.953175px;}
.ls2a_c01044{letter-spacing:0.956250px;}
.ls13_c01044{letter-spacing:0.980400px;}
.ls21_c01044{letter-spacing:0.993450px;}
.ls2c_c01044{letter-spacing:1.006875px;}
.ls0_c01044{letter-spacing:1.729410px;}
.ls28_c01044{letter-spacing:1.759500px;}
.ls2d_c01044{letter-spacing:1.837125px;}
.ls12_c01044{letter-spacing:1.919520px;}
.ls10_c01044{letter-spacing:1.966140px;}
.ls27_c01044{letter-spacing:2.814000px;}
.lsa_c01044{letter-spacing:3.397500px;}
.ls9_c01044{letter-spacing:4.243500px;}
.ls1e_c01044{letter-spacing:4.704075px;}
.ls6_c01044{letter-spacing:5.094000px;}
.lsb_c01044{letter-spacing:5.944500px;}
.ls5_c01044{letter-spacing:6.790050px;}
.ls8_c01044{letter-spacing:6.871200px;}
.ls7_c01044{letter-spacing:7.809975px;}
.lsf_c01044{letter-spacing:8.643990px;}
.ls2_c01044{letter-spacing:26.795910px;}
.ls4_c01044{letter-spacing:27.662400px;}
.ls3_c01044{letter-spacing:28.524300px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01044{word-spacing:0.000000px;}
._11_c01044{margin-left:-26.346375px;}
._d_c01044{margin-left:-24.481841px;}
._1_c01044{margin-left:-7.370823px;}
._0_c01044{margin-left:-3.631062px;}
._2_c01044{margin-left:-1.988965px;}
._4_c01044{width:1.096068px;}
._3_c01044{width:2.116794px;}
._5_c01044{width:25.142689px;}
._7_c01044{width:26.978965px;}
._6_c01044{width:28.611035px;}
._8_c01044{width:32.104621px;}
._a_c01044{width:33.886578px;}
._9_c01044{width:35.554261px;}
._12_c01044{width:326.568283px;}
._f_c01044{width:381.622869px;}
._e_c01044{width:412.222869px;}
._b_c01044{width:414.099600px;}
._c_c01044{width:444.474993px;}
._10_c01044{width:446.137904px;}
.fc0_c01044{color:transparent;}
.fs2_c01044{font-size:42.000000px;}
.fs17_c01044{font-size:42.750000px;}
.fs0_c01044{font-size:45.000000px;}
.fs15_c01044{font-size:46.500000px;}
.fs16_c01044{font-size:47.250000px;}
.fs7_c01044{font-size:48.000000px;}
.fsa_c01044{font-size:49.500000px;}
.fse_c01044{font-size:50.250000px;}
.fs3_c01044{font-size:51.000000px;}
.fsf_c01044{font-size:51.750000px;}
.fs4_c01044{font-size:52.500000px;}
.fsb_c01044{font-size:53.250000px;}
.fs6_c01044{font-size:54.000000px;}
.fs5_c01044{font-size:54.750000px;}
.fs12_c01044{font-size:55.500000px;}
.fs11_c01044{font-size:56.250000px;}
.fs8_c01044{font-size:57.000000px;}
.fs10_c01044{font-size:65.250000px;}
.fs9_c01044{font-size:66.000000px;}
.fs14_c01044{font-size:66.750000px;}
.fsc_c01044{font-size:68.250000px;}
.fsd_c01044{font-size:69.750000px;}
.fs13_c01044{font-size:71.250000px;}
.fs1_c01044{font-size:77.250000px;}
.y0_c01044{bottom:0.000000px;}
.y8a_c01044{bottom:187.561335px;}
.y89_c01044{bottom:187.561980px;}
.y5c_c01044{bottom:187.919745px;}
.y32_c01044{bottom:188.281905px;}
.y88_c01044{bottom:207.000600px;}
.y5b_c01044{bottom:207.360900px;}
.y31_c01044{bottom:207.361905px;}
.y87_c01044{bottom:226.080435px;}
.y86_c01044{bottom:226.080915px;}
.y5a_c01044{bottom:226.441335px;}
.y30_c01044{bottom:226.441890px;}
.y85_c01044{bottom:245.880435px;}
.y59_c01044{bottom:245.880585px;}
.y2f_c01044{bottom:245.880825px;}
.y84_c01044{bottom:264.601335px;}
.y57_c01044{bottom:264.957225px;}
.y58_c01044{bottom:264.960600px;}
.y2e_c01044{bottom:265.321995px;}
.y82_c01044{bottom:284.400900px;}
.y83_c01044{bottom:284.401515px;}
.y56_c01044{bottom:284.756715px;}
.y2d_c01044{bottom:284.760930px;}
.y81_c01044{bottom:303.481335px;}
.y55_c01044{bottom:303.837180px;}
.y2c_c01044{bottom:304.199865px;}
.y80_c01044{bottom:322.560285px;}
.y54_c01044{bottom:322.917615px;}
.y2b_c01044{bottom:323.281065px;}
.y7f_c01044{bottom:341.640750px;}
.y53_c01044{bottom:341.998080px;}
.y2a_c01044{bottom:341.999865px;}
.y7e_c01044{bottom:360.721185px;}
.y52_c01044{bottom:361.078515px;}
.y29_c01044{bottom:361.441035px;}
.y7d_c01044{bottom:380.158695px;}
.y51_c01044{bottom:380.158980px;}
.y28_c01044{bottom:380.521020px;}
.y7c_c01044{bottom:399.239130px;}
.y50_c01044{bottom:399.600105px;}
.y27_c01044{bottom:399.601020px;}
.y7b_c01044{bottom:418.319595px;}
.y4f_c01044{bottom:418.319670px;}
.y26_c01044{bottom:418.681005px;}
.y25_c01044{bottom:437.399820px;}
.y7a_c01044{bottom:437.760720px;}
.y4e_c01044{bottom:437.760825px;}
.y79_c01044{bottom:456.480285px;}
.y24_c01044{bottom:456.840975px;}
.y4d_c01044{bottom:456.841260px;}
.y77_c01044{bottom:476.640750px;}
.y4c_c01044{bottom:476.640765px;}
.y23_c01044{bottom:476.640930px;}
.y78_c01044{bottom:476.641335px;}
.y76_c01044{bottom:495.360300px;}
.y22_c01044{bottom:495.720915px;}
.y4b_c01044{bottom:495.721200px;}
.y21_c01044{bottom:515.159850px;}
.y75_c01044{bottom:515.160300px;}
.y4a_c01044{bottom:515.160420px;}
.y74_c01044{bottom:533.881230px;}
.y20_c01044{bottom:534.239850px;}
.y49_c01044{bottom:534.240420px;}
.y48_c01044{bottom:553.318110px;}
.y1f_c01044{bottom:553.319820px;}
.y73_c01044{bottom:553.319850px;}
.y47_c01044{bottom:572.398560px;}
.y1e_c01044{bottom:572.399820px;}
.y72_c01044{bottom:572.400285px;}
.y46_c01044{bottom:591.839700px;}
.y70_c01044{bottom:591.840150px;}
.y1d_c01044{bottom:591.840975px;}
.y71_c01044{bottom:591.841185px;}
.y45_c01044{bottom:610.920165px;}
.y6f_c01044{bottom:610.920615px;}
.y1c_c01044{bottom:610.920975px;}
.y44_c01044{bottom:629.639715px;}
.y1b_c01044{bottom:629.639790px;}
.y6e_c01044{bottom:630.001050px;}
.y1a_c01044{bottom:648.719790px;}
.y43_c01044{bottom:648.720150px;}
.y6c_c01044{bottom:649.080465px;}
.y6d_c01044{bottom:649.081050px;}
.y19_c01044{bottom:667.799760px;}
.y6b_c01044{bottom:668.160900px;}
.y42_c01044{bottom:668.161005px;}
.y41_c01044{bottom:687.240240px;}
.y18_c01044{bottom:687.240945px;}
.y6a_c01044{bottom:687.241350px;}
.y40_c01044{bottom:706.678845px;}
.y17_c01044{bottom:706.679880px;}
.y69_c01044{bottom:706.679970px;}
.y68_c01044{bottom:725.400885px;}
.y3f_c01044{bottom:725.759310px;}
.y16_c01044{bottom:725.759850px;}
.y3e_c01044{bottom:745.200435px;}
.y15_c01044{bottom:745.201035px;}
.y67_c01044{bottom:763.919100px;}
.y14_c01044{bottom:763.919835px;}
.y3d_c01044{bottom:763.920000px;}
.y66_c01044{bottom:783.360240px;}
.y3c_c01044{bottom:783.360900px;}
.y13_c01044{bottom:783.361020px;}
.y65_c01044{bottom:802.440690px;}
.y12_c01044{bottom:802.799955px;}
.y3b_c01044{bottom:802.800105px;}
.y64_c01044{bottom:821.879310px;}
.y3a_c01044{bottom:822.240000px;}
.y11_c01044{bottom:822.241110px;}
.y39_c01044{bottom:840.959565px;}
.y63_c01044{bottom:840.959745px;}
.y10_c01044{bottom:840.959925px;}
.y38_c01044{bottom:860.400720px;}
.y62_c01044{bottom:860.400900px;}
.yf_c01044{bottom:860.759850px;}
.y37_c01044{bottom:879.839340px;}
.y61_c01044{bottom:879.839520px;}
.ye_c01044{bottom:879.839865px;}
.y60_c01044{bottom:898.919955px;}
.y36_c01044{bottom:899.280465px;}
.yd_c01044{bottom:899.281020px;}
.y5f_c01044{bottom:918.000000px;}
.y35_c01044{bottom:918.360930px;}
.yc_c01044{bottom:918.361020px;}
.y5e_c01044{bottom:937.440855px;}
.y34_c01044{bottom:937.799535px;}
.yb_c01044{bottom:937.799955px;}
.y5d_c01044{bottom:956.520720px;}
.ya_c01044{bottom:956.879925px;}
.y33_c01044{bottom:956.879970px;}
.y95_c01044{bottom:975.959535px;}
.y96_c01044{bottom:975.960015px;}
.y9_c01044{bottom:976.321110px;}
.y93_c01044{bottom:995.039490px;}
.y8_c01044{bottom:995.039910px;}
.y94_c01044{bottom:995.039985px;}
.y91_c01044{bottom:1014.119565px;}
.y7_c01044{bottom:1014.119910px;}
.y92_c01044{bottom:1014.119940px;}
.y90_c01044{bottom:1033.560705px;}
.y6_c01044{bottom:1033.561065px;}
.y8f_c01044{bottom:1033.561380px;}
.y8e_c01044{bottom:1052.999520px;}
.y5_c01044{bottom:1053.000000px;}
.y8d_c01044{bottom:1072.079955px;}
.y4_c01044{bottom:1072.440855px;}
.y3_c01044{bottom:1078.561335px;}
.y8b_c01044{bottom:1091.159340px;}
.y2_c01044{bottom:1091.159805px;}
.y8c_c01044{bottom:1091.159820px;}
.y1_c01044{bottom:1110.239775px;}
.h3_c01044{height:43.804688px;}
.h18_c01044{height:44.586914px;}
.h16_c01044{height:45.955078px;}
.h17_c01044{height:46.696289px;}
.h1_c01044{height:46.933594px;}
.h8_c01044{height:48.375000px;}
.hb_c01044{height:48.919922px;}
.hf_c01044{height:49.317627px;}
.h4_c01044{height:50.402344px;}
.h10_c01044{height:51.143555px;}
.h5_c01044{height:51.884766px;}
.hc_c01044{height:52.625977px;}
.h7_c01044{height:53.367188px;}
.h6_c01044{height:54.108398px;}
.h13_c01044{height:54.849609px;}
.h12_c01044{height:55.590820px;}
.h9_c01044{height:56.332031px;}
.h11_c01044{height:64.485352px;}
.ha_c01044{height:65.226562px;}
.h15_c01044{height:65.967773px;}
.hd_c01044{height:67.450195px;}
.he_c01044{height:68.932617px;}
.h14_c01044{height:70.415039px;}
.h2_c01044{height:80.569336px;}
.h0_c01044{height:1263.000000px;}
.w0_c01044{width:892.500000px;}
.x0_c01044{left:0.000000px;}
.x3_c01044{left:317.159775px;}
.x4_c01044{left:321.839520px;}
.x2_c01044{left:322.919580px;}
.x1_c01044{left:324.000000px;}
.xc_c01044{left:366.838515px;}
.x5_c01044{left:367.919535px;}
.x8_c01044{left:400.319820px;}
.xe_c01044{left:406.438665px;}
.xd_c01044{left:412.918350px;}
.xa_c01044{left:417.959385px;}
.x6_c01044{left:420.119985px;}
.xb_c01044{left:426.238770px;}
.x9_c01044{left:439.559100px;}
.x13_c01044{left:440.638500px;}
.x7_c01044{left:446.759085px;}
.x14_c01044{left:478.439250px;}
.x15_c01044{left:497.519070px;}
.x16_c01044{left:516.599070px;}
.x11_c01044{left:568.439115px;}
.xf_c01044{left:569.519670px;}
.x12_c01044{left:600.838950px;}
.x10_c01044{left:601.918350px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls11_c01044{letter-spacing:-6.278667pt;}
.lsd_c01044{letter-spacing:-3.537800pt;}
.ls2e_c01044{letter-spacing:-3.519180pt;}
.ls26_c01044{letter-spacing:-2.833333pt;}
.ls19_c01044{letter-spacing:-2.760333pt;}
.ls1f_c01044{letter-spacing:-2.639000pt;}
.ls20_c01044{letter-spacing:-2.459500pt;}
.ls29_c01044{letter-spacing:-2.426707pt;}
.ls2b_c01044{letter-spacing:-2.253540pt;}
.ls1d_c01044{letter-spacing:-2.226400pt;}
.ls15_c01044{letter-spacing:-2.129600pt;}
.ls14_c01044{letter-spacing:-1.597920pt;}
.ls16_c01044{letter-spacing:-1.575727pt;}
.ls1a_c01044{letter-spacing:-1.537253pt;}
.ls1b_c01044{letter-spacing:-0.966580pt;}
.ls22_c01044{letter-spacing:-0.962667pt;}
.ls25_c01044{letter-spacing:-0.925007pt;}
.ls24_c01044{letter-spacing:-0.845627pt;}
.ls23_c01044{letter-spacing:-0.809067pt;}
.lse_c01044{letter-spacing:-0.770667pt;}
.ls1c_c01044{letter-spacing:-0.768267pt;}
.lsc_c01044{letter-spacing:0.000000pt;}
.ls1_c01044{letter-spacing:0.770667pt;}
.ls18_c01044{letter-spacing:0.814133pt;}
.ls17_c01044{letter-spacing:0.847267pt;}
.ls2a_c01044{letter-spacing:0.850000pt;}
.ls13_c01044{letter-spacing:0.871467pt;}
.ls21_c01044{letter-spacing:0.883067pt;}
.ls2c_c01044{letter-spacing:0.895000pt;}
.ls0_c01044{letter-spacing:1.537253pt;}
.ls28_c01044{letter-spacing:1.564000pt;}
.ls2d_c01044{letter-spacing:1.633000pt;}
.ls12_c01044{letter-spacing:1.706240pt;}
.ls10_c01044{letter-spacing:1.747680pt;}
.ls27_c01044{letter-spacing:2.501333pt;}
.lsa_c01044{letter-spacing:3.020000pt;}
.ls9_c01044{letter-spacing:3.772000pt;}
.ls1e_c01044{letter-spacing:4.181400pt;}
.ls6_c01044{letter-spacing:4.528000pt;}
.lsb_c01044{letter-spacing:5.284000pt;}
.ls5_c01044{letter-spacing:6.035600pt;}
.ls8_c01044{letter-spacing:6.107733pt;}
.ls7_c01044{letter-spacing:6.942200pt;}
.lsf_c01044{letter-spacing:7.683547pt;}
.ls2_c01044{letter-spacing:23.818587pt;}
.ls4_c01044{letter-spacing:24.588800pt;}
.ls3_c01044{letter-spacing:25.354933pt;}
.ws0_c01044{word-spacing:0.000000pt;}
._11_c01044{margin-left:-23.419000pt;}
._d_c01044{margin-left:-21.761637pt;}
._1_c01044{margin-left:-6.551842pt;}
._0_c01044{margin-left:-3.227610pt;}
._2_c01044{margin-left:-1.767969pt;}
._4_c01044{width:0.974282pt;}
._3_c01044{width:1.881595pt;}
._5_c01044{width:22.349057pt;}
._7_c01044{width:23.981303pt;}
._6_c01044{width:25.432031pt;}
._8_c01044{width:28.537441pt;}
._a_c01044{width:30.121403pt;}
._9_c01044{width:31.603788pt;}
._12_c01044{width:290.282918pt;}
._f_c01044{width:339.220328pt;}
._e_c01044{width:366.420328pt;}
._b_c01044{width:368.088533pt;}
._c_c01044{width:395.088882pt;}
._10_c01044{width:396.567026pt;}
.fs2_c01044{font-size:37.333333pt;}
.fs17_c01044{font-size:38.000000pt;}
.fs0_c01044{font-size:40.000000pt;}
.fs15_c01044{font-size:41.333333pt;}
.fs16_c01044{font-size:42.000000pt;}
.fs7_c01044{font-size:42.666667pt;}
.fsa_c01044{font-size:44.000000pt;}
.fse_c01044{font-size:44.666667pt;}
.fs3_c01044{font-size:45.333333pt;}
.fsf_c01044{font-size:46.000000pt;}
.fs4_c01044{font-size:46.666667pt;}
.fsb_c01044{font-size:47.333333pt;}
.fs6_c01044{font-size:48.000000pt;}
.fs5_c01044{font-size:48.666667pt;}
.fs12_c01044{font-size:49.333333pt;}
.fs11_c01044{font-size:50.000000pt;}
.fs8_c01044{font-size:50.666667pt;}
.fs10_c01044{font-size:58.000000pt;}
.fs9_c01044{font-size:58.666667pt;}
.fs14_c01044{font-size:59.333333pt;}
.fsc_c01044{font-size:60.666667pt;}
.fsd_c01044{font-size:62.000000pt;}
.fs13_c01044{font-size:63.333333pt;}
.fs1_c01044{font-size:68.666667pt;}
.y0_c01044{bottom:0.000000pt;}
.y8a_c01044{bottom:166.721187pt;}
.y89_c01044{bottom:166.721760pt;}
.y5c_c01044{bottom:167.039773pt;}
.y32_c01044{bottom:167.361693pt;}
.y88_c01044{bottom:184.000533pt;}
.y5b_c01044{bottom:184.320800pt;}
.y31_c01044{bottom:184.321693pt;}
.y87_c01044{bottom:200.960387pt;}
.y86_c01044{bottom:200.960813pt;}
.y5a_c01044{bottom:201.281187pt;}
.y30_c01044{bottom:201.281680pt;}
.y85_c01044{bottom:218.560387pt;}
.y59_c01044{bottom:218.560520pt;}
.y2f_c01044{bottom:218.560733pt;}
.y84_c01044{bottom:235.201187pt;}
.y57_c01044{bottom:235.517533pt;}
.y58_c01044{bottom:235.520533pt;}
.y2e_c01044{bottom:235.841773pt;}
.y82_c01044{bottom:252.800800pt;}
.y83_c01044{bottom:252.801347pt;}
.y56_c01044{bottom:253.117080pt;}
.y2d_c01044{bottom:253.120827pt;}
.y81_c01044{bottom:269.761187pt;}
.y55_c01044{bottom:270.077493pt;}
.y2c_c01044{bottom:270.399880pt;}
.y80_c01044{bottom:286.720253pt;}
.y54_c01044{bottom:287.037880pt;}
.y2b_c01044{bottom:287.360947pt;}
.y7f_c01044{bottom:303.680667pt;}
.y53_c01044{bottom:303.998293pt;}
.y2a_c01044{bottom:303.999880pt;}
.y7e_c01044{bottom:320.641053pt;}
.y52_c01044{bottom:320.958680pt;}
.y29_c01044{bottom:321.280920pt;}
.y7d_c01044{bottom:337.918840pt;}
.y51_c01044{bottom:337.919093pt;}
.y28_c01044{bottom:338.240907pt;}
.y7c_c01044{bottom:354.879227pt;}
.y50_c01044{bottom:355.200093pt;}
.y27_c01044{bottom:355.200907pt;}
.y7b_c01044{bottom:371.839640pt;}
.y4f_c01044{bottom:371.839707pt;}
.y26_c01044{bottom:372.160893pt;}
.y25_c01044{bottom:388.799840pt;}
.y7a_c01044{bottom:389.120640pt;}
.y4e_c01044{bottom:389.120733pt;}
.y79_c01044{bottom:405.760253pt;}
.y24_c01044{bottom:406.080867pt;}
.y4d_c01044{bottom:406.081120pt;}
.y77_c01044{bottom:423.680667pt;}
.y4c_c01044{bottom:423.680680pt;}
.y23_c01044{bottom:423.680827pt;}
.y78_c01044{bottom:423.681187pt;}
.y76_c01044{bottom:440.320267pt;}
.y22_c01044{bottom:440.640813pt;}
.y4b_c01044{bottom:440.641067pt;}
.y21_c01044{bottom:457.919867pt;}
.y75_c01044{bottom:457.920267pt;}
.y4a_c01044{bottom:457.920373pt;}
.y74_c01044{bottom:474.561093pt;}
.y20_c01044{bottom:474.879867pt;}
.y49_c01044{bottom:474.880373pt;}
.y48_c01044{bottom:491.838320pt;}
.y1f_c01044{bottom:491.839840pt;}
.y73_c01044{bottom:491.839867pt;}
.y47_c01044{bottom:508.798720pt;}
.y1e_c01044{bottom:508.799840pt;}
.y72_c01044{bottom:508.800253pt;}
.y46_c01044{bottom:526.079733pt;}
.y70_c01044{bottom:526.080133pt;}
.y1d_c01044{bottom:526.080867pt;}
.y71_c01044{bottom:526.081053pt;}
.y45_c01044{bottom:543.040147pt;}
.y6f_c01044{bottom:543.040547pt;}
.y1c_c01044{bottom:543.040867pt;}
.y44_c01044{bottom:559.679747pt;}
.y1b_c01044{bottom:559.679813pt;}
.y6e_c01044{bottom:560.000933pt;}
.y1a_c01044{bottom:576.639813pt;}
.y43_c01044{bottom:576.640133pt;}
.y6c_c01044{bottom:576.960413pt;}
.y6d_c01044{bottom:576.960933pt;}
.y19_c01044{bottom:593.599787pt;}
.y6b_c01044{bottom:593.920800pt;}
.y42_c01044{bottom:593.920893pt;}
.y41_c01044{bottom:610.880213pt;}
.y18_c01044{bottom:610.880840pt;}
.y6a_c01044{bottom:610.881200pt;}
.y40_c01044{bottom:628.158973pt;}
.y17_c01044{bottom:628.159893pt;}
.y69_c01044{bottom:628.159973pt;}
.y68_c01044{bottom:644.800787pt;}
.y3f_c01044{bottom:645.119387pt;}
.y16_c01044{bottom:645.119867pt;}
.y3e_c01044{bottom:662.400387pt;}
.y15_c01044{bottom:662.400920pt;}
.y67_c01044{bottom:679.039200pt;}
.y14_c01044{bottom:679.039853pt;}
.y3d_c01044{bottom:679.040000pt;}
.y66_c01044{bottom:696.320213pt;}
.y3c_c01044{bottom:696.320800pt;}
.y13_c01044{bottom:696.320907pt;}
.y65_c01044{bottom:713.280613pt;}
.y12_c01044{bottom:713.599960pt;}
.y3b_c01044{bottom:713.600093pt;}
.y64_c01044{bottom:730.559387pt;}
.y3a_c01044{bottom:730.880000pt;}
.y11_c01044{bottom:730.880987pt;}
.y39_c01044{bottom:747.519613pt;}
.y63_c01044{bottom:747.519773pt;}
.y10_c01044{bottom:747.519933pt;}
.y38_c01044{bottom:764.800640pt;}
.y62_c01044{bottom:764.800800pt;}
.yf_c01044{bottom:765.119867pt;}
.y37_c01044{bottom:782.079413pt;}
.y61_c01044{bottom:782.079573pt;}
.ye_c01044{bottom:782.079880pt;}
.y60_c01044{bottom:799.039960pt;}
.y36_c01044{bottom:799.360413pt;}
.yd_c01044{bottom:799.360907pt;}
.y5f_c01044{bottom:816.000000pt;}
.y35_c01044{bottom:816.320827pt;}
.yc_c01044{bottom:816.320907pt;}
.y5e_c01044{bottom:833.280760pt;}
.y34_c01044{bottom:833.599587pt;}
.yb_c01044{bottom:833.599960pt;}
.y5d_c01044{bottom:850.240640pt;}
.ya_c01044{bottom:850.559933pt;}
.y33_c01044{bottom:850.559973pt;}
.y95_c01044{bottom:867.519587pt;}
.y96_c01044{bottom:867.520013pt;}
.y9_c01044{bottom:867.840987pt;}
.y93_c01044{bottom:884.479547pt;}
.y8_c01044{bottom:884.479920pt;}
.y94_c01044{bottom:884.479987pt;}
.y91_c01044{bottom:901.439613pt;}
.y7_c01044{bottom:901.439920pt;}
.y92_c01044{bottom:901.439947pt;}
.y90_c01044{bottom:918.720627pt;}
.y6_c01044{bottom:918.720947pt;}
.y8f_c01044{bottom:918.721227pt;}
.y8e_c01044{bottom:935.999573pt;}
.y5_c01044{bottom:936.000000pt;}
.y8d_c01044{bottom:952.959960pt;}
.y4_c01044{bottom:953.280760pt;}
.y3_c01044{bottom:958.721187pt;}
.y8b_c01044{bottom:969.919413pt;}
.y2_c01044{bottom:969.919827pt;}
.y8c_c01044{bottom:969.919840pt;}
.y1_c01044{bottom:986.879800pt;}
.h3_c01044{height:38.937500pt;}
.h18_c01044{height:39.632812pt;}
.h16_c01044{height:40.848958pt;}
.h17_c01044{height:41.507812pt;}
.h1_c01044{height:41.718750pt;}
.h8_c01044{height:43.000000pt;}
.hb_c01044{height:43.484375pt;}
.hf_c01044{height:43.837891pt;}
.h4_c01044{height:44.802083pt;}
.h10_c01044{height:45.460938pt;}
.h5_c01044{height:46.119792pt;}
.hc_c01044{height:46.778646pt;}
.h7_c01044{height:47.437500pt;}
.h6_c01044{height:48.096354pt;}
.h13_c01044{height:48.755208pt;}
.h12_c01044{height:49.414063pt;}
.h9_c01044{height:50.072917pt;}
.h11_c01044{height:57.320313pt;}
.ha_c01044{height:57.979167pt;}
.h15_c01044{height:58.638021pt;}
.hd_c01044{height:59.955729pt;}
.he_c01044{height:61.273438pt;}
.h14_c01044{height:62.591146pt;}
.h2_c01044{height:71.617188pt;}
.h0_c01044{height:1122.666667pt;}
.w0_c01044{width:793.333333pt;}
.x0_c01044{left:0.000000pt;}
.x3_c01044{left:281.919800pt;}
.x4_c01044{left:286.079573pt;}
.x2_c01044{left:287.039627pt;}
.x1_c01044{left:288.000000pt;}
.xc_c01044{left:326.078680pt;}
.x5_c01044{left:327.039587pt;}
.x8_c01044{left:355.839840pt;}
.xe_c01044{left:361.278813pt;}
.xd_c01044{left:367.038533pt;}
.xa_c01044{left:371.519453pt;}
.x6_c01044{left:373.439987pt;}
.xb_c01044{left:378.878907pt;}
.x9_c01044{left:390.719200pt;}
.x13_c01044{left:391.678667pt;}
.x7_c01044{left:397.119187pt;}
.x14_c01044{left:425.279333pt;}
.x15_c01044{left:442.239173pt;}
.x16_c01044{left:459.199173pt;}
.x11_c01044{left:505.279213pt;}
.xf_c01044{left:506.239707pt;}
.x12_c01044{left:534.079067pt;}
.x10_c01044{left:535.038533pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_eecb3441d662521f9164a9f0.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_a963c96b376e05111f8996f5.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_7020a676cab342975d73aa60.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01045;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01045;src:url('chunks/assets/font_26b057752e7f4b1563d075a2.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.364746;font-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_c01045{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.m13_c01045{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.me_c01045{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m10_c01045{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.mf_c01045{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m9_c01045{transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);}
.m2_c01045{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m15_c01045{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m8_c01045{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m16_c01045{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.ma_c01045{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.m17_c01045{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m18_c01045{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m3_c01045{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m11_c01045{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m4_c01045{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m12_c01045{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m6_c01045{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.mb_c01045{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m0_c01045{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.mc_c01045{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m7_c01045{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m5_c01045{transform:matrix(0.327957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327957,0.000000,0.000000,0.250000,0,0);}
.m14_c01045{transform:matrix(0.443038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443038,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.lsc_c01045{letter-spacing:-5.174033px;}
.lsf_c01045{letter-spacing:-4.329450px;}
.ls5_c01045{letter-spacing:-4.182000px;}
.lsa_c01045{letter-spacing:-4.140300px;}
.ls9_c01045{letter-spacing:-3.345600px;}
.ls10_c01045{letter-spacing:-3.173625px;}
.ls4_c01045{letter-spacing:-2.508690px;}
.ls3_c01045{letter-spacing:-1.940625px;}
.ls12_c01045{letter-spacing:-1.841100px;}
.ls8_c01045{letter-spacing:-1.693350px;}
.ls1_c01045{letter-spacing:-1.673310px;}
.lsb_c01045{letter-spacing:-1.064018px;}
.ls0_c01045{letter-spacing:-0.836400px;}
.ls2_c01045{letter-spacing:0.000000px;}
.ls13_c01045{letter-spacing:0.892500px;}
.ls6_c01045{letter-spacing:0.931875px;}
.ls14_c01045{letter-spacing:1.790100px;}
.ls7_c01045{letter-spacing:2.937600px;}
.lsd_c01045{letter-spacing:4.976775px;}
.ls11_c01045{letter-spacing:5.703075px;}
.lse_c01045{letter-spacing:6.024375px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:0.000000px;}
._6_c01045{margin-left:-9.425001px;}
._1_c01045{margin-left:-6.956668px;}
._8_c01045{margin-left:-5.951717px;}
._7_c01045{margin-left:-3.498993px;}
._4_c01045{margin-left:-2.192883px;}
._3_c01045{width:1.415476px;}
._2_c01045{width:3.060635px;}
._5_c01045{width:4.388349px;}
._9_c01045{width:6.422940px;}
._0_c01045{width:24.281083px;}
._e_c01045{width:25.418066px;}
._a_c01045{width:27.019700px;}
._b_c01045{width:30.501043px;}
._d_c01045{width:32.107359px;}
._f_c01045{width:33.854235px;}
._c_c01045{width:35.450184px;}
.fc0_c01045{color:transparent;}
.fsc_c01045{font-size:45.000000px;}
.fs9_c01045{font-size:46.500000px;}
.fs8_c01045{font-size:48.000000px;}
.fs7_c01045{font-size:50.250000px;}
.fs0_c01045{font-size:51.000000px;}
.fs6_c01045{font-size:51.750000px;}
.fs3_c01045{font-size:53.250000px;}
.fs4_c01045{font-size:54.000000px;}
.fsb_c01045{font-size:54.750000px;}
.fs1_c01045{font-size:55.500000px;}
.fs2_c01045{font-size:56.250000px;}
.fse_c01045{font-size:57.000000px;}
.fsd_c01045{font-size:59.250000px;}
.fsa_c01045{font-size:68.250000px;}
.fs5_c01045{font-size:69.750000px;}
.y0_c01045{bottom:0.000000px;}
.y6d_c01045{bottom:181.080000px;}
.y6c_c01045{bottom:181.080225px;}
.y36_c01045{bottom:201.058485px;}
.y6b_c01045{bottom:201.239250px;}
.y35_c01045{bottom:219.598275px;}
.y6a_c01045{bottom:219.960180px;}
.y34_c01045{bottom:239.039430px;}
.y69_c01045{bottom:239.398800px;}
.y33_c01045{bottom:258.119865px;}
.y68_c01045{bottom:258.479235px;}
.y32_c01045{bottom:277.558485px;}
.y66_c01045{bottom:277.919175px;}
.y67_c01045{bottom:277.920000px;}
.y31_c01045{bottom:296.638935px;}
.y65_c01045{bottom:297.357795px;}
.y30_c01045{bottom:315.359850px;}
.y64_c01045{bottom:316.078695px;}
.y2e_c01045{bottom:334.077720px;}
.y2f_c01045{bottom:334.078785px;}
.y63_c01045{bottom:334.798260px;}
.y2d_c01045{bottom:353.518860px;}
.y62_c01045{bottom:354.239415px;}
.y2c_c01045{bottom:372.599310px;}
.y61_c01045{bottom:373.319850px;}
.y2b_c01045{bottom:391.679760px;}
.y60_c01045{bottom:392.398545px;}
.y2a_c01045{bottom:410.760195px;}
.y5f_c01045{bottom:411.118110px;}
.y29_c01045{bottom:430.198815px;}
.y5e_c01045{bottom:430.559265px;}
.y28_c01045{bottom:449.279280px;}
.y5d_c01045{bottom:449.639700px;}
.y26_c01045{bottom:469.078530px;}
.y27_c01045{bottom:469.078770px;}
.y5b_c01045{bottom:469.798230px;}
.y5c_c01045{bottom:469.798920px;}
.y25_c01045{bottom:488.519670px;}
.y5a_c01045{bottom:489.239385px;}
.y24_c01045{bottom:507.958920px;}
.y59_c01045{bottom:508.319820px;}
.y23_c01045{bottom:526.677825px;}
.y58_c01045{bottom:527.397555px;}
.y22_c01045{bottom:546.116430px;}
.y57_c01045{bottom:546.836175px;}
.y21_c01045{bottom:565.557570px;}
.y56_c01045{bottom:565.916640px;}
.y20_c01045{bottom:584.638020px;}
.y55_c01045{bottom:584.997075px;}
.y1f_c01045{bottom:603.357585px;}
.y54_c01045{bottom:603.718005px;}
.y1e_c01045{bottom:622.438020px;}
.y53_c01045{bottom:622.798440px;}
.y1d_c01045{bottom:641.518485px;}
.y52_c01045{bottom:642.237060px;}
.y1c_c01045{bottom:660.959610px;}
.y51_c01045{bottom:661.317510px;}
.y1b_c01045{bottom:680.040075px;}
.y50_c01045{bottom:680.397945px;}
.y1a_c01045{bottom:699.478680px;}
.y4f_c01045{bottom:699.839100px;}
.y19_c01045{bottom:718.560285px;}
.y4e_c01045{bottom:718.919535px;}
.y17_c01045{bottom:737.998170px;}
.y18_c01045{bottom:737.999355px;}
.y4c_c01045{bottom:738.358170px;}
.y4d_c01045{bottom:738.358605px;}
.y16_c01045{bottom:757.078605px;}
.y4b_c01045{bottom:757.438620px;}
.y15_c01045{bottom:776.159070px;}
.y4a_c01045{bottom:776.518620px;}
.y14_c01045{bottom:794.879970px;}
.y49_c01045{bottom:795.600135px;}
.y13_c01045{bottom:814.680090px;}
.y48_c01045{bottom:815.039820px;}
.y12_c01045{bottom:833.398380px;}
.y47_c01045{bottom:833.760750px;}
.y11_c01045{bottom:852.839535px;}
.y46_c01045{bottom:853.560240px;}
.y10_c01045{bottom:871.919970px;}
.y45_c01045{bottom:872.279205px;}
.yf_c01045{bottom:891.719490px;}
.y44_c01045{bottom:891.720150px;}
.ye_c01045{bottom:910.799925px;}
.y43_c01045{bottom:910.800105px;}
.y42_c01045{bottom:910.800135px;}
.yd_c01045{bottom:930.599445px;}
.y41_c01045{bottom:930.599655px;}
.yc_c01045{bottom:949.318995px;}
.y40_c01045{bottom:949.680090px;}
.yb_c01045{bottom:968.760135px;}
.ya_c01045{bottom:968.760150px;}
.y3f_c01045{bottom:969.119385px;}
.y3d_c01045{bottom:987.839310px;}
.y3e_c01045{bottom:987.840090px;}
.y9_c01045{bottom:987.840585px;}
.y3c_c01045{bottom:1007.277930px;}
.y8_c01045{bottom:1007.279205px;}
.y6_c01045{bottom:1026.358935px;}
.y7_c01045{bottom:1026.359250px;}
.y3b_c01045{bottom:1026.719085px;}
.y5_c01045{bottom:1045.439370px;}
.y3a_c01045{bottom:1045.618395px;}
.y4_c01045{bottom:1064.160300px;}
.y39_c01045{bottom:1064.519070px;}
.y3_c01045{bottom:1083.598920px;}
.y38_c01045{bottom:1083.776520px;}
.y2_c01045{bottom:1102.319820px;}
.y37_c01045{bottom:1102.677225px;}
.y1_c01045{bottom:1140.838905px;}
.he_c01045{height:46.933594px;}
.h9_c01045{height:48.375000px;}
.ha_c01045{height:48.498047px;}
.h8_c01045{height:49.661133px;}
.h1_c01045{height:50.402344px;}
.h7_c01045{height:51.143555px;}
.h4_c01045{height:52.625977px;}
.h5_c01045{height:53.367188px;}
.hd_c01045{height:54.108398px;}
.hb_c01045{height:54.443115px;}
.h2_c01045{height:54.849609px;}
.h3_c01045{height:55.590820px;}
.h10_c01045{height:56.332031px;}
.hf_c01045{height:61.795898px;}
.hc_c01045{height:67.450195px;}
.h6_c01045{height:68.932617px;}
.h0_c01045{height:1263.000000px;}
.w0_c01045{width:892.500000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:289.080000px;}
.x6_c01045{left:354.239850px;}
.xd_c01045{left:386.999400px;}
.x7_c01045{left:392.759085px;}
.xb_c01045{left:412.199850px;}
.x8_c01045{left:418.679670px;}
.x9_c01045{left:438.118785px;}
.xa_c01045{left:444.598530px;}
.xc_c01045{left:458.279850px;}
.x2_c01045{left:554.399820px;}
.xe_c01045{left:555.478380px;}
.x3_c01045{left:587.518620px;}
.x4_c01045{left:632.519070px;}
.x5_c01045{left:684.719520px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.lsc_c01045{letter-spacing:-4.599140pt;}
.lsf_c01045{letter-spacing:-3.848400pt;}
.ls5_c01045{letter-spacing:-3.717333pt;}
.lsa_c01045{letter-spacing:-3.680267pt;}
.ls9_c01045{letter-spacing:-2.973867pt;}
.ls10_c01045{letter-spacing:-2.821000pt;}
.ls4_c01045{letter-spacing:-2.229947pt;}
.ls3_c01045{letter-spacing:-1.725000pt;}
.ls12_c01045{letter-spacing:-1.636533pt;}
.ls8_c01045{letter-spacing:-1.505200pt;}
.ls1_c01045{letter-spacing:-1.487387pt;}
.lsb_c01045{letter-spacing:-0.945793pt;}
.ls0_c01045{letter-spacing:-0.743467pt;}
.ls2_c01045{letter-spacing:0.000000pt;}
.ls13_c01045{letter-spacing:0.793333pt;}
.ls6_c01045{letter-spacing:0.828333pt;}
.ls14_c01045{letter-spacing:1.591200pt;}
.ls7_c01045{letter-spacing:2.611200pt;}
.lsd_c01045{letter-spacing:4.423800pt;}
.ls11_c01045{letter-spacing:5.069400pt;}
.lse_c01045{letter-spacing:5.355000pt;}
.ws0_c01045{word-spacing:0.000000pt;}
._6_c01045{margin-left:-8.377778pt;}
._1_c01045{margin-left:-6.183704pt;}
._8_c01045{margin-left:-5.290415pt;}
._7_c01045{margin-left:-3.110216pt;}
._4_c01045{margin-left:-1.949229pt;}
._3_c01045{width:1.258201pt;}
._2_c01045{width:2.720565pt;}
._5_c01045{width:3.900755pt;}
._9_c01045{width:5.709280pt;}
._0_c01045{width:21.583185pt;}
._e_c01045{width:22.593836pt;}
._a_c01045{width:24.017511pt;}
._b_c01045{width:27.112038pt;}
._d_c01045{width:28.539875pt;}
._f_c01045{width:30.092653pt;}
._c_c01045{width:31.511274pt;}
.fsc_c01045{font-size:40.000000pt;}
.fs9_c01045{font-size:41.333333pt;}
.fs8_c01045{font-size:42.666667pt;}
.fs7_c01045{font-size:44.666667pt;}
.fs0_c01045{font-size:45.333333pt;}
.fs6_c01045{font-size:46.000000pt;}
.fs3_c01045{font-size:47.333333pt;}
.fs4_c01045{font-size:48.000000pt;}
.fsb_c01045{font-size:48.666667pt;}
.fs1_c01045{font-size:49.333333pt;}
.fs2_c01045{font-size:50.000000pt;}
.fse_c01045{font-size:50.666667pt;}
.fsd_c01045{font-size:52.666667pt;}
.fsa_c01045{font-size:60.666667pt;}
.fs5_c01045{font-size:62.000000pt;}
.y0_c01045{bottom:0.000000pt;}
.y6d_c01045{bottom:160.960000pt;}
.y6c_c01045{bottom:160.960200pt;}
.y36_c01045{bottom:178.718653pt;}
.y6b_c01045{bottom:178.879333pt;}
.y35_c01045{bottom:195.198467pt;}
.y6a_c01045{bottom:195.520160pt;}
.y34_c01045{bottom:212.479493pt;}
.y69_c01045{bottom:212.798933pt;}
.y33_c01045{bottom:229.439880pt;}
.y68_c01045{bottom:229.759320pt;}
.y32_c01045{bottom:246.718653pt;}
.y66_c01045{bottom:247.039267pt;}
.y67_c01045{bottom:247.040000pt;}
.y31_c01045{bottom:263.679053pt;}
.y65_c01045{bottom:264.318040pt;}
.y30_c01045{bottom:280.319867pt;}
.y64_c01045{bottom:280.958840pt;}
.y2e_c01045{bottom:296.957973pt;}
.y2f_c01045{bottom:296.958920pt;}
.y63_c01045{bottom:297.598453pt;}
.y2d_c01045{bottom:314.238987pt;}
.y62_c01045{bottom:314.879480pt;}
.y2c_c01045{bottom:331.199387pt;}
.y61_c01045{bottom:331.839867pt;}
.y2b_c01045{bottom:348.159787pt;}
.y60_c01045{bottom:348.798707pt;}
.y2a_c01045{bottom:365.120173pt;}
.y5f_c01045{bottom:365.438320pt;}
.y29_c01045{bottom:382.398947pt;}
.y5e_c01045{bottom:382.719347pt;}
.y28_c01045{bottom:399.359360pt;}
.y5d_c01045{bottom:399.679733pt;}
.y26_c01045{bottom:416.958693pt;}
.y27_c01045{bottom:416.958907pt;}
.y5b_c01045{bottom:417.598427pt;}
.y5c_c01045{bottom:417.599040pt;}
.y25_c01045{bottom:434.239707pt;}
.y5a_c01045{bottom:434.879453pt;}
.y24_c01045{bottom:451.519040pt;}
.y59_c01045{bottom:451.839840pt;}
.y23_c01045{bottom:468.158067pt;}
.y58_c01045{bottom:468.797827pt;}
.y22_c01045{bottom:485.436827pt;}
.y57_c01045{bottom:486.076600pt;}
.y21_c01045{bottom:502.717840pt;}
.y56_c01045{bottom:503.037013pt;}
.y20_c01045{bottom:519.678240pt;}
.y55_c01045{bottom:519.997400pt;}
.y1f_c01045{bottom:536.317853pt;}
.y54_c01045{bottom:536.638227pt;}
.y1e_c01045{bottom:553.278240pt;}
.y53_c01045{bottom:553.598613pt;}
.y1d_c01045{bottom:570.238653pt;}
.y52_c01045{bottom:570.877387pt;}
.y1c_c01045{bottom:587.519653pt;}
.y51_c01045{bottom:587.837787pt;}
.y1b_c01045{bottom:604.480067pt;}
.y50_c01045{bottom:604.798173pt;}
.y1a_c01045{bottom:621.758827pt;}
.y4f_c01045{bottom:622.079200pt;}
.y19_c01045{bottom:638.720253pt;}
.y4e_c01045{bottom:639.039587pt;}
.y17_c01045{bottom:655.998373pt;}
.y18_c01045{bottom:655.999427pt;}
.y4c_c01045{bottom:656.318373pt;}
.y4d_c01045{bottom:656.318760pt;}
.y16_c01045{bottom:672.958760pt;}
.y4b_c01045{bottom:673.278773pt;}
.y15_c01045{bottom:689.919173pt;}
.y4a_c01045{bottom:690.238773pt;}
.y14_c01045{bottom:706.559973pt;}
.y49_c01045{bottom:707.200120pt;}
.y13_c01045{bottom:724.160080pt;}
.y48_c01045{bottom:724.479840pt;}
.y12_c01045{bottom:740.798560pt;}
.y47_c01045{bottom:741.120667pt;}
.y11_c01045{bottom:758.079587pt;}
.y46_c01045{bottom:758.720213pt;}
.y10_c01045{bottom:775.039973pt;}
.y45_c01045{bottom:775.359293pt;}
.yf_c01045{bottom:792.639547pt;}
.y44_c01045{bottom:792.640133pt;}
.ye_c01045{bottom:809.599933pt;}
.y43_c01045{bottom:809.600093pt;}
.y42_c01045{bottom:809.600120pt;}
.yd_c01045{bottom:827.199507pt;}
.y41_c01045{bottom:827.199693pt;}
.yc_c01045{bottom:843.839107pt;}
.y40_c01045{bottom:844.160080pt;}
.yb_c01045{bottom:861.120120pt;}
.ya_c01045{bottom:861.120133pt;}
.y3f_c01045{bottom:861.439453pt;}
.y3d_c01045{bottom:878.079387pt;}
.y3e_c01045{bottom:878.080080pt;}
.y9_c01045{bottom:878.080520pt;}
.y3c_c01045{bottom:895.358160pt;}
.y8_c01045{bottom:895.359293pt;}
.y6_c01045{bottom:912.319053pt;}
.y7_c01045{bottom:912.319333pt;}
.y3b_c01045{bottom:912.639187pt;}
.y5_c01045{bottom:929.279440pt;}
.y3a_c01045{bottom:929.438573pt;}
.y4_c01045{bottom:945.920267pt;}
.y39_c01045{bottom:946.239173pt;}
.y3_c01045{bottom:963.199040pt;}
.y38_c01045{bottom:963.356907pt;}
.y2_c01045{bottom:979.839840pt;}
.y37_c01045{bottom:980.157533pt;}
.y1_c01045{bottom:1014.079027pt;}
.he_c01045{height:41.718750pt;}
.h9_c01045{height:43.000000pt;}
.ha_c01045{height:43.109375pt;}
.h8_c01045{height:44.143229pt;}
.h1_c01045{height:44.802083pt;}
.h7_c01045{height:45.460938pt;}
.h4_c01045{height:46.778646pt;}
.h5_c01045{height:47.437500pt;}
.hd_c01045{height:48.096354pt;}
.hb_c01045{height:48.393880pt;}
.h2_c01045{height:48.755208pt;}
.h3_c01045{height:49.414063pt;}
.h10_c01045{height:50.072917pt;}
.hf_c01045{height:54.929688pt;}
.hc_c01045{height:59.955729pt;}
.h6_c01045{height:61.273438pt;}
.h0_c01045{height:1122.666667pt;}
.w0_c01045{width:793.333333pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:256.960000pt;}
.x6_c01045{left:314.879867pt;}
.xd_c01045{left:343.999467pt;}
.x7_c01045{left:349.119187pt;}
.xb_c01045{left:366.399867pt;}
.x8_c01045{left:372.159707pt;}
.x9_c01045{left:389.438920pt;}
.xa_c01045{left:395.198693pt;}
.xc_c01045{left:407.359867pt;}
.x2_c01045{left:492.799840pt;}
.xe_c01045{left:493.758560pt;}
.x3_c01045{left:522.238773pt;}
.x4_c01045{left:562.239173pt;}
.x5_c01045{left:608.639573pt;}
}





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

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_c5bdbbff1d0f6b86af06f7de.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_9259bec941e168fe24665135.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01046;src:url('chunks/assets/font_0701f4ef3acdcbc02cb14626.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01046;src:url('chunks/assets/font_472d27d48b6499cce66600ad.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01046;src:url('chunks/assets/font_b3c6719631d49639ca9fad59.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01046;src:url('chunks/assets/font_cd65442b5f6e1ab926cdce44.woff2')format("woff");}.ff6_c01046{font-family:ff6_c01046;line-height:1.432129;font-style:normal;font-weight: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_c01046;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff7_c01046{font-family:ff7_c01046;line-height:1.432129;font-style:normal;font-weight: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_c01046;src:url('chunks/assets/font_8882cbd302c537edfb666f11.woff2')format("woff");}.ff8_c01046{font-family:ff8_c01046;line-height:1.311035;font-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_c01046{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m11_c01046{transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183673,0.000000,0.000000,0.250000,0,0);}
.m1a_c01046{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m13_c01046{transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);}
.m14_c01046{transform:matrix(0.194737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194737,0.000000,0.000000,0.250000,0,0);}
.m12_c01046{transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197581,0.000000,0.000000,0.250000,0,0);}
.m17_c01046{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.me_c01046{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.md_c01046{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m10_c01046{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m2_c01046{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_c01046{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m0_c01046{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m4_c01046{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m6_c01046{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m5_c01046{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m16_c01046{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m1_c01046{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m8_c01046{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.mf_c01046{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m18_c01046{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m3_c01046{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m9_c01046{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m7_c01046{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.mc_c01046{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.ma_c01046{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.mb_c01046{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls1a_c01046{letter-spacing:-7.944615px;}
.ls9_c01046{letter-spacing:-7.757550px;}
.ls1b_c01046{letter-spacing:-7.701413px;}
.lse_c01046{letter-spacing:-7.700700px;}
.ls20_c01046{letter-spacing:-7.539278px;}
.lsc_c01046{letter-spacing:-7.137300px;}
.ls19_c01046{letter-spacing:-6.122550px;}
.ls17_c01046{letter-spacing:-5.472300px;}
.ls1c_c01046{letter-spacing:-5.247900px;}
.ls23_c01046{letter-spacing:-5.087250px;}
.ls11_c01046{letter-spacing:-4.984200px;}
.lsd_c01046{letter-spacing:-4.820063px;}
.lsf_c01046{letter-spacing:-4.698540px;}
.ls15_c01046{letter-spacing:-4.432050px;}
.ls22_c01046{letter-spacing:-4.172775px;}
.ls4_c01046{letter-spacing:-4.152600px;}
.lsb_c01046{letter-spacing:-4.023195px;}
.ls1d_c01046{letter-spacing:-3.960600px;}
.ls6_c01046{letter-spacing:-3.936000px;}
.ls21_c01046{letter-spacing:-3.889620px;}
.ls13_c01046{letter-spacing:-3.858750px;}
.ls16_c01046{letter-spacing:-3.805725px;}
.ls1e_c01046{letter-spacing:-3.707190px;}
.ls8_c01046{letter-spacing:-3.408188px;}
.ls3_c01046{letter-spacing:-3.320460px;}
.lsa_c01046{letter-spacing:-2.559375px;}
.ls5_c01046{letter-spacing:-2.494800px;}
.ls18_c01046{letter-spacing:-1.747133px;}
.ls7_c01046{letter-spacing:-1.663740px;}
.ls1f_c01046{letter-spacing:-1.583400px;}
.ls10_c01046{letter-spacing:-0.831600px;}
.ls12_c01046{letter-spacing:0.000000px;}
.ls14_c01046{letter-spacing:1.522418px;}
.ls0_c01046{letter-spacing:23.263200px;}
.ls1_c01046{letter-spacing:24.094800px;}
.ls2_c01046{letter-spacing:24.921000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:0.000000px;}
._c_c01046{margin-left:-38.253666px;}
._11_c01046{margin-left:-27.518500px;}
._e_c01046{margin-left:-23.430882px;}
._3_c01046{margin-left:-15.919200px;}
._4_c01046{margin-left:-14.731233px;}
._a_c01046{margin-left:-12.146727px;}
._7_c01046{margin-left:-10.747728px;}
._5_c01046{margin-left:-9.552849px;}
._2_c01046{margin-left:-8.325404px;}
._b_c01046{margin-left:-7.160367px;}
._9_c01046{margin-left:-6.078747px;}
._6_c01046{margin-left:-4.050374px;}
._1_c01046{margin-left:-2.808964px;}
._8_c01046{margin-left:-1.080474px;}
._d_c01046{width:2.076051px;}
._16_c01046{width:20.746567px;}
._f_c01046{width:22.207292px;}
._12_c01046{width:23.937785px;}
._10_c01046{width:25.531333px;}
._13_c01046{width:27.240425px;}
._14_c01046{width:30.432572px;}
._15_c01046{width:32.167584px;}
._0_c01046{width:687.047284px;}
.fc0_c01046{color:transparent;}
.fsd_c01046{font-size:42.000000px;}
.fsf_c01046{font-size:44.250000px;}
.fs3_c01046{font-size:45.000000px;}
.fsb_c01046{font-size:46.500000px;}
.fs1_c01046{font-size:48.000000px;}
.fs8_c01046{font-size:50.250000px;}
.fs9_c01046{font-size:51.000000px;}
.fs6_c01046{font-size:52.500000px;}
.fs7_c01046{font-size:53.250000px;}
.fs0_c01046{font-size:54.000000px;}
.fs4_c01046{font-size:55.500000px;}
.fs2_c01046{font-size:56.250000px;}
.fs5_c01046{font-size:57.000000px;}
.fse_c01046{font-size:69.750000px;}
.fsc_c01046{font-size:71.250000px;}
.fsa_c01046{font-size:73.500000px;}
.y0_c01046{bottom:0.000000px;}
.y72_c01046{bottom:180.719190px;}
.y39_c01046{bottom:181.080300px;}
.y71_c01046{bottom:199.439685px;}
.y38_c01046{bottom:200.159850px;}
.y37_c01046{bottom:200.161425px;}
.y70_c01046{bottom:218.519685px;}
.y36_c01046{bottom:219.240960px;}
.y6f_c01046{bottom:237.958950px;}
.y35_c01046{bottom:238.320510px;}
.y6e_c01046{bottom:257.399850px;}
.y33_c01046{bottom:257.758620px;}
.y34_c01046{bottom:257.759100px;}
.y6d_c01046{bottom:276.838950px;}
.y6c_c01046{bottom:276.839955px;}
.y32_c01046{bottom:277.199895px;}
.y6b_c01046{bottom:295.560450px;}
.y31_c01046{bottom:295.918950px;}
.y6a_c01046{bottom:314.639985px;}
.y2f_c01046{bottom:315.359715px;}
.y30_c01046{bottom:315.359850px;}
.y69_c01046{bottom:333.719535px;}
.y2e_c01046{bottom:334.078770px;}
.y68_c01046{bottom:353.158785px;}
.y67_c01046{bottom:353.159250px;}
.y2d_c01046{bottom:353.520030px;}
.y66_c01046{bottom:372.238785px;}
.y2c_c01046{bottom:372.599580px;}
.y65_c01046{bottom:391.318770px;}
.y64_c01046{bottom:391.319715px;}
.y2b_c01046{bottom:392.038170px;}
.y63_c01046{bottom:410.399250px;}
.y2a_c01046{bottom:410.758665px;}
.y62_c01046{bottom:429.478800px;}
.y29_c01046{bottom:429.838215px;}
.y61_c01046{bottom:448.920060px;}
.y28_c01046{bottom:449.278245px;}
.y60_c01046{bottom:468.358665px;}
.y27_c01046{bottom:469.078770px;}
.y5f_c01046{bottom:487.799970px;}
.y26_c01046{bottom:488.158770px;}
.y25_c01046{bottom:488.160255px;}
.y5e_c01046{bottom:506.879520px;}
.y24_c01046{bottom:507.239805px;}
.y5d_c01046{bottom:525.600135px;}
.y23_c01046{bottom:526.319340px;}
.y5c_c01046{bottom:545.398680px;}
.y22_c01046{bottom:545.760615px;}
.y5b_c01046{bottom:563.760135px;}
.y21_c01046{bottom:564.120615px;}
.y5a_c01046{bottom:583.199385px;}
.y59_c01046{bottom:583.199700px;}
.y20_c01046{bottom:583.561890px;}
.y58_c01046{bottom:602.279250px;}
.y1f_c01046{bottom:602.641440px;}
.y57_c01046{bottom:622.079400px;}
.y56_c01046{bottom:622.080600px;}
.y1e_c01046{bottom:622.440510px;}
.y55_c01046{bottom:641.160135px;}
.y1d_c01046{bottom:641.520060px;}
.y54_c01046{bottom:660.239685px;}
.y1c_c01046{bottom:660.602280px;}
.y53_c01046{bottom:679.319235px;}
.y1b_c01046{bottom:679.681830px;}
.y52_c01046{bottom:698.399235px;}
.y51_c01046{bottom:698.400375px;}
.y1a_c01046{bottom:699.120420px;}
.y50_c01046{bottom:717.479925px;}
.y19_c01046{bottom:718.199955px;}
.y4f_c01046{bottom:736.559460px;}
.y18_c01046{bottom:737.279505px;}
.y4e_c01046{bottom:755.639010px;}
.y17_c01046{bottom:756.000000px;}
.y4d_c01046{bottom:774.718545px;}
.y15_c01046{bottom:775.438710px;}
.y16_c01046{bottom:775.439205px;}
.y4c_c01046{bottom:794.159820px;}
.y13_c01046{bottom:794.879565px;}
.y14_c01046{bottom:794.879970px;}
.y4b_c01046{bottom:814.319280px;}
.y12_c01046{bottom:814.680090px;}
.y4a_c01046{bottom:833.039985px;}
.y49_c01046{bottom:833.040600px;}
.y11_c01046{bottom:833.760135px;}
.y10_c01046{bottom:833.760540px;}
.y48_c01046{bottom:852.479190px;}
.yf_c01046{bottom:852.840090px;}
.y47_c01046{bottom:871.199805px;}
.ye_c01046{bottom:871.919955px;}
.y46_c01046{bottom:891.000735px;}
.yd_c01046{bottom:891.359250px;}
.y45_c01046{bottom:910.080270px;}
.yc_c01046{bottom:910.439205px;}
.y44_c01046{bottom:929.159820px;}
.yb_c01046{bottom:929.879970px;}
.y43_c01046{bottom:948.240690px;}
.ya_c01046{bottom:948.960015px;}
.y42_c01046{bottom:967.320240px;}
.y9_c01046{bottom:968.039985px;}
.y41_c01046{bottom:986.399775px;}
.y8_c01046{bottom:987.119940px;}
.y40_c01046{bottom:1005.839400px;}
.y7_c01046{bottom:1006.559055px;}
.y3f_c01046{bottom:1024.918950px;}
.y6_c01046{bottom:1025.639100px;}
.y3d_c01046{bottom:1044.359535px;}
.y3e_c01046{bottom:1044.359805px;}
.y5_c01046{bottom:1044.719460px;}
.y3c_c01046{bottom:1063.078590px;}
.y4_c01046{bottom:1063.799010px;}
.y3b_c01046{bottom:1082.519850px;}
.y3_c01046{bottom:1083.240285px;}
.y3a_c01046{bottom:1101.599400px;}
.y2_c01046{bottom:1102.319820px;}
.y1_c01046{bottom:1141.199805px;}
.hf_c01046{height:43.804688px;}
.h12_c01046{height:46.151367px;}
.h4_c01046{height:46.933594px;}
.h2_c01046{height:47.109375px;}
.hd_c01046{height:48.498047px;}
.h9_c01046{height:49.293091px;}
.ha_c01046{height:50.402344px;}
.h10_c01046{height:51.398438px;}
.h7_c01046{height:51.500244px;}
.h8_c01046{height:52.235962px;}
.hb_c01046{height:52.625977px;}
.h1_c01046{height:52.971680px;}
.h5_c01046{height:54.443115px;}
.h3_c01046{height:55.178833px;}
.h6_c01046{height:55.914551px;}
.h11_c01046{height:68.421753px;}
.he_c01046{height:69.893188px;}
.hc_c01046{height:72.100342px;}
.h0_c01046{height:1263.000000px;}
.w0_c01046{width:892.500000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:292.679100px;}
.xd_c01046{left:354.600180px;}
.xb_c01046{left:355.678530px;}
.x6_c01046{left:356.759535px;}
.x3_c01046{left:357.838950px;}
.xa_c01046{left:401.399235px;}
.x4_c01046{left:402.478635px;}
.xc_c01046{left:406.799565px;}
.x8_c01046{left:408.239820px;}
.x7_c01046{left:414.719565px;}
.xe_c01046{left:419.038920px;}
.x5_c01046{left:421.558635px;}
.x9_c01046{left:433.799565px;}
.xf_c01046{left:438.479685px;}
.x11_c01046{left:444.959385px;}
.x10_c01046{left:471.239220px;}
.x17_c01046{left:555.478965px;}
.x15_c01046{left:556.558395px;}
.x13_c01046{left:557.637765px;}
.x12_c01046{left:558.717675px;}
.x18_c01046{left:588.238770px;}
.x16_c01046{left:589.319820px;}
.x14_c01046{left:590.399235px;}
.x2_c01046{left:688.318770px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls1a_c01046{letter-spacing:-7.061880pt;}
.ls9_c01046{letter-spacing:-6.895600pt;}
.ls1b_c01046{letter-spacing:-6.845700pt;}
.lse_c01046{letter-spacing:-6.845067pt;}
.ls20_c01046{letter-spacing:-6.701580pt;}
.lsc_c01046{letter-spacing:-6.344267pt;}
.ls19_c01046{letter-spacing:-5.442267pt;}
.ls17_c01046{letter-spacing:-4.864267pt;}
.ls1c_c01046{letter-spacing:-4.664800pt;}
.ls23_c01046{letter-spacing:-4.522000pt;}
.ls11_c01046{letter-spacing:-4.430400pt;}
.lsd_c01046{letter-spacing:-4.284500pt;}
.lsf_c01046{letter-spacing:-4.176480pt;}
.ls15_c01046{letter-spacing:-3.939600pt;}
.ls22_c01046{letter-spacing:-3.709133pt;}
.ls4_c01046{letter-spacing:-3.691200pt;}
.lsb_c01046{letter-spacing:-3.576173pt;}
.ls1d_c01046{letter-spacing:-3.520533pt;}
.ls6_c01046{letter-spacing:-3.498667pt;}
.ls21_c01046{letter-spacing:-3.457440pt;}
.ls13_c01046{letter-spacing:-3.430000pt;}
.ls16_c01046{letter-spacing:-3.382867pt;}
.ls1e_c01046{letter-spacing:-3.295280pt;}
.ls8_c01046{letter-spacing:-3.029500pt;}
.ls3_c01046{letter-spacing:-2.951520pt;}
.lsa_c01046{letter-spacing:-2.275000pt;}
.ls5_c01046{letter-spacing:-2.217600pt;}
.ls18_c01046{letter-spacing:-1.553007pt;}
.ls7_c01046{letter-spacing:-1.478880pt;}
.ls1f_c01046{letter-spacing:-1.407467pt;}
.ls10_c01046{letter-spacing:-0.739200pt;}
.ls12_c01046{letter-spacing:0.000000pt;}
.ls14_c01046{letter-spacing:1.353260pt;}
.ls0_c01046{letter-spacing:20.678400pt;}
.ls1_c01046{letter-spacing:21.417600pt;}
.ls2_c01046{letter-spacing:22.152000pt;}
.ws0_c01046{word-spacing:0.000000pt;}
._c_c01046{margin-left:-34.003259pt;}
._11_c01046{margin-left:-24.460889pt;}
._e_c01046{margin-left:-20.827451pt;}
._3_c01046{margin-left:-14.150400pt;}
._4_c01046{margin-left:-13.094430pt;}
._a_c01046{margin-left:-10.797090pt;}
._7_c01046{margin-left:-9.553536pt;}
._5_c01046{margin-left:-8.491422pt;}
._2_c01046{margin-left:-7.400359pt;}
._b_c01046{margin-left:-6.364770pt;}
._9_c01046{margin-left:-5.403330pt;}
._6_c01046{margin-left:-3.600332pt;}
._1_c01046{margin-left:-2.496857pt;}
._8_c01046{margin-left:-0.960421pt;}
._d_c01046{width:1.845378pt;}
._16_c01046{width:18.441393pt;}
._f_c01046{width:19.739815pt;}
._12_c01046{width:21.278031pt;}
._10_c01046{width:22.694518pt;}
._13_c01046{width:24.213711pt;}
._14_c01046{width:27.051175pt;}
._15_c01046{width:28.593408pt;}
._0_c01046{width:610.708697pt;}
.fsd_c01046{font-size:37.333333pt;}
.fsf_c01046{font-size:39.333333pt;}
.fs3_c01046{font-size:40.000000pt;}
.fsb_c01046{font-size:41.333333pt;}
.fs1_c01046{font-size:42.666667pt;}
.fs8_c01046{font-size:44.666667pt;}
.fs9_c01046{font-size:45.333333pt;}
.fs6_c01046{font-size:46.666667pt;}
.fs7_c01046{font-size:47.333333pt;}
.fs0_c01046{font-size:48.000000pt;}
.fs4_c01046{font-size:49.333333pt;}
.fs2_c01046{font-size:50.000000pt;}
.fs5_c01046{font-size:50.666667pt;}
.fse_c01046{font-size:62.000000pt;}
.fsc_c01046{font-size:63.333333pt;}
.fsa_c01046{font-size:65.333333pt;}
.y0_c01046{bottom:0.000000pt;}
.y72_c01046{bottom:160.639280pt;}
.y39_c01046{bottom:160.960267pt;}
.y71_c01046{bottom:177.279720pt;}
.y38_c01046{bottom:177.919867pt;}
.y37_c01046{bottom:177.921267pt;}
.y70_c01046{bottom:194.239720pt;}
.y36_c01046{bottom:194.880853pt;}
.y6f_c01046{bottom:211.519067pt;}
.y35_c01046{bottom:211.840453pt;}
.y6e_c01046{bottom:228.799867pt;}
.y33_c01046{bottom:229.118773pt;}
.y34_c01046{bottom:229.119200pt;}
.y6d_c01046{bottom:246.079067pt;}
.y6c_c01046{bottom:246.079960pt;}
.y32_c01046{bottom:246.399907pt;}
.y6b_c01046{bottom:262.720400pt;}
.y31_c01046{bottom:263.039067pt;}
.y6a_c01046{bottom:279.679987pt;}
.y2f_c01046{bottom:280.319747pt;}
.y30_c01046{bottom:280.319867pt;}
.y69_c01046{bottom:296.639587pt;}
.y2e_c01046{bottom:296.958907pt;}
.y68_c01046{bottom:313.918920pt;}
.y67_c01046{bottom:313.919333pt;}
.y2d_c01046{bottom:314.240027pt;}
.y66_c01046{bottom:330.878920pt;}
.y2c_c01046{bottom:331.199627pt;}
.y65_c01046{bottom:347.838907pt;}
.y64_c01046{bottom:347.839747pt;}
.y2b_c01046{bottom:348.478373pt;}
.y63_c01046{bottom:364.799333pt;}
.y2a_c01046{bottom:365.118813pt;}
.y62_c01046{bottom:381.758933pt;}
.y29_c01046{bottom:382.078413pt;}
.y61_c01046{bottom:399.040053pt;}
.y28_c01046{bottom:399.358440pt;}
.y60_c01046{bottom:416.318813pt;}
.y27_c01046{bottom:416.958907pt;}
.y5f_c01046{bottom:433.599973pt;}
.y26_c01046{bottom:433.918907pt;}
.y25_c01046{bottom:433.920227pt;}
.y5e_c01046{bottom:450.559573pt;}
.y24_c01046{bottom:450.879827pt;}
.y5d_c01046{bottom:467.200120pt;}
.y23_c01046{bottom:467.839413pt;}
.y5c_c01046{bottom:484.798827pt;}
.y22_c01046{bottom:485.120547pt;}
.y5b_c01046{bottom:501.120120pt;}
.y21_c01046{bottom:501.440547pt;}
.y5a_c01046{bottom:518.399453pt;}
.y59_c01046{bottom:518.399733pt;}
.y20_c01046{bottom:518.721680pt;}
.y58_c01046{bottom:535.359333pt;}
.y1f_c01046{bottom:535.681280pt;}
.y57_c01046{bottom:552.959467pt;}
.y56_c01046{bottom:552.960533pt;}
.y1e_c01046{bottom:553.280453pt;}
.y55_c01046{bottom:569.920120pt;}
.y1d_c01046{bottom:570.240053pt;}
.y54_c01046{bottom:586.879720pt;}
.y1c_c01046{bottom:587.202027pt;}
.y53_c01046{bottom:603.839320pt;}
.y1b_c01046{bottom:604.161627pt;}
.y52_c01046{bottom:620.799320pt;}
.y51_c01046{bottom:620.800333pt;}
.y1a_c01046{bottom:621.440373pt;}
.y50_c01046{bottom:637.759933pt;}
.y19_c01046{bottom:638.399960pt;}
.y4f_c01046{bottom:654.719520pt;}
.y18_c01046{bottom:655.359560pt;}
.y4e_c01046{bottom:671.679120pt;}
.y17_c01046{bottom:672.000000pt;}
.y4d_c01046{bottom:688.638707pt;}
.y15_c01046{bottom:689.278853pt;}
.y16_c01046{bottom:689.279293pt;}
.y4c_c01046{bottom:705.919840pt;}
.y13_c01046{bottom:706.559613pt;}
.y14_c01046{bottom:706.559973pt;}
.y4b_c01046{bottom:723.839360pt;}
.y12_c01046{bottom:724.160080pt;}
.y4a_c01046{bottom:740.479987pt;}
.y49_c01046{bottom:740.480533pt;}
.y11_c01046{bottom:741.120120pt;}
.y10_c01046{bottom:741.120480pt;}
.y48_c01046{bottom:757.759280pt;}
.yf_c01046{bottom:758.080080pt;}
.y47_c01046{bottom:774.399827pt;}
.ye_c01046{bottom:775.039960pt;}
.y46_c01046{bottom:792.000653pt;}
.yd_c01046{bottom:792.319333pt;}
.y45_c01046{bottom:808.960240pt;}
.yc_c01046{bottom:809.279293pt;}
.y44_c01046{bottom:825.919840pt;}
.yb_c01046{bottom:826.559973pt;}
.y43_c01046{bottom:842.880613pt;}
.ya_c01046{bottom:843.520013pt;}
.y42_c01046{bottom:859.840213pt;}
.y9_c01046{bottom:860.479987pt;}
.y41_c01046{bottom:876.799800pt;}
.y8_c01046{bottom:877.439947pt;}
.y40_c01046{bottom:894.079467pt;}
.y7_c01046{bottom:894.719160pt;}
.y3f_c01046{bottom:911.039067pt;}
.y6_c01046{bottom:911.679200pt;}
.y3d_c01046{bottom:928.319587pt;}
.y3e_c01046{bottom:928.319827pt;}
.y5_c01046{bottom:928.639520pt;}
.y3c_c01046{bottom:944.958747pt;}
.y4_c01046{bottom:945.599120pt;}
.y3b_c01046{bottom:962.239867pt;}
.y3_c01046{bottom:962.880253pt;}
.y3a_c01046{bottom:979.199467pt;}
.y2_c01046{bottom:979.839840pt;}
.y1_c01046{bottom:1014.399827pt;}
.hf_c01046{height:38.937500pt;}
.h12_c01046{height:41.023438pt;}
.h4_c01046{height:41.718750pt;}
.h2_c01046{height:41.875000pt;}
.hd_c01046{height:43.109375pt;}
.h9_c01046{height:43.816081pt;}
.ha_c01046{height:44.802083pt;}
.h10_c01046{height:45.687500pt;}
.h7_c01046{height:45.777995pt;}
.h8_c01046{height:46.431966pt;}
.hb_c01046{height:46.778646pt;}
.h1_c01046{height:47.085938pt;}
.h5_c01046{height:48.393880pt;}
.h3_c01046{height:49.047852pt;}
.h6_c01046{height:49.701823pt;}
.h11_c01046{height:60.819336pt;}
.he_c01046{height:62.127279pt;}
.hc_c01046{height:64.089193pt;}
.h0_c01046{height:1122.666667pt;}
.w0_c01046{width:793.333333pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:260.159200pt;}
.xd_c01046{left:315.200160pt;}
.xb_c01046{left:316.158693pt;}
.x6_c01046{left:317.119587pt;}
.x3_c01046{left:318.079067pt;}
.xa_c01046{left:356.799320pt;}
.x4_c01046{left:357.758787pt;}
.xc_c01046{left:361.599613pt;}
.x8_c01046{left:362.879840pt;}
.x7_c01046{left:368.639613pt;}
.xe_c01046{left:372.479040pt;}
.x5_c01046{left:374.718787pt;}
.x9_c01046{left:385.599613pt;}
.xf_c01046{left:389.759720pt;}
.x11_c01046{left:395.519453pt;}
.x10_c01046{left:418.879307pt;}
.x17_c01046{left:493.759080pt;}
.x15_c01046{left:494.718573pt;}
.x13_c01046{left:495.678013pt;}
.x12_c01046{left:496.637933pt;}
.x18_c01046{left:522.878907pt;}
.x16_c01046{left:523.839840pt;}
.x14_c01046{left:524.799320pt;}
.x2_c01046{left:611.838907pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_f527c3b011bcfafbb68f444f.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_28c7e9fdb046413babe33946.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_bb578b01ba558b641040795a.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_9c48c96b6fe413902005a3e4.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01047;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:1.432129;font-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_c01047{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.ma_c01047{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);}
.m16_c01047{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.mf_c01047{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.mc_c01047{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m7_c01047{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);}
.m6_c01047{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.m5_c01047{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m3_c01047{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m2_c01047{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m14_c01047{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m0_c01047{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.me_c01047{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m9_c01047{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m4_c01047{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m13_c01047{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m15_c01047{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m12_c01047{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m1_c01047{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m11_c01047{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m8_c01047{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.md_c01047{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m10_c01047{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls14_c01047{letter-spacing:-9.968400px;}
.ls11_c01047{letter-spacing:-9.136800px;}
.ls18_c01047{letter-spacing:-7.604775px;}
.ls9_c01047{letter-spacing:-7.330200px;}
.ls5_c01047{letter-spacing:-5.481000px;}
.ls7_c01047{letter-spacing:-5.027400px;}
.ls1f_c01047{letter-spacing:-4.984200px;}
.ls20_c01047{letter-spacing:-4.873050px;}
.ls1e_c01047{letter-spacing:-4.832850px;}
.ls1a_c01047{letter-spacing:-4.152600px;}
.lse_c01047{letter-spacing:-4.079250px;}
.ls1b_c01047{letter-spacing:-3.960600px;}
.ls19_c01047{letter-spacing:-3.889620px;}
.lsd_c01047{letter-spacing:-3.860550px;}
.lsa_c01047{letter-spacing:-3.499073px;}
.ls8_c01047{letter-spacing:-3.421875px;}
.ls4_c01047{letter-spacing:-3.320460px;}
.ls16_c01047{letter-spacing:-3.317303px;}
.ls13_c01047{letter-spacing:-3.087525px;}
.lsc_c01047{letter-spacing:-2.678063px;}
.lsb_c01047{letter-spacing:-2.642355px;}
.ls2_c01047{letter-spacing:-2.494800px;}
.ls10_c01047{letter-spacing:-2.272043px;}
.ls3_c01047{letter-spacing:-1.663740px;}
.ls1c_c01047{letter-spacing:-1.609200px;}
.ls17_c01047{letter-spacing:-0.921863px;}
.ls15_c01047{letter-spacing:-0.831600px;}
.ls1d_c01047{letter-spacing:-0.830168px;}
.ls6_c01047{letter-spacing:0.000000px;}
.ls1_c01047{letter-spacing:1.663740px;}
.lsf_c01047{letter-spacing:2.958750px;}
.ls12_c01047{letter-spacing:3.580710px;}
.ls0_c01047{letter-spacing:53.168400px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01047{word-spacing:0.000000px;}
._9_c01047{margin-left:-113.146549px;}
._12_c01047{margin-left:-25.161516px;}
._5_c01047{margin-left:-16.201329px;}
._6_c01047{margin-left:-11.922286px;}
._4_c01047{margin-left:-10.740949px;}
._8_c01047{margin-left:-9.360036px;}
._0_c01047{margin-left:-8.357372px;}
._1_c01047{margin-left:-6.078747px;}
._7_c01047{margin-left:-4.495076px;}
._2_c01047{margin-left:-2.579480px;}
._3_c01047{margin-left:-1.458665px;}
._11_c01047{width:19.015876px;}
._e_c01047{width:20.735136px;}
._10_c01047{width:22.207093px;}
._c_c01047{width:23.937851px;}
._b_c01047{width:25.536384px;}
._d_c01047{width:27.240425px;}
._a_c01047{width:29.802982px;}
._f_c01047{width:32.162533px;}
._13_c01047{width:33.895385px;}
.fc0_c01047{color:transparent;}
.fsb_c01047{font-size:42.000000px;}
.fsd_c01047{font-size:43.500000px;}
.fsa_c01047{font-size:48.750000px;}
.fs8_c01047{font-size:51.000000px;}
.fs6_c01047{font-size:51.750000px;}
.fs9_c01047{font-size:52.500000px;}
.fsc_c01047{font-size:53.250000px;}
.fs0_c01047{font-size:54.000000px;}
.fs2_c01047{font-size:54.750000px;}
.fs4_c01047{font-size:55.500000px;}
.fs5_c01047{font-size:56.250000px;}
.fs1_c01047{font-size:57.000000px;}
.fs3_c01047{font-size:57.750000px;}
.fs7_c01047{font-size:68.250000px;}
.y0_c01047{bottom:0.000000px;}
.y3b_c01047{bottom:179.280390px;}
.y6e_c01047{bottom:179.460000px;}
.y6d_c01047{bottom:179.460825px;}
.y6c_c01047{bottom:198.720000px;}
.y3a_c01047{bottom:198.721665px;}
.y6b_c01047{bottom:217.799535px;}
.y39_c01047{bottom:217.801215px;}
.y38_c01047{bottom:236.880750px;}
.y6a_c01047{bottom:237.238905px;}
.y37_c01047{bottom:255.601245px;}
.y69_c01047{bottom:255.959400px;}
.y36_c01047{bottom:275.039835px;}
.y68_c01047{bottom:275.398635px;}
.y35_c01047{bottom:294.119385px;}
.y67_c01047{bottom:294.478635px;}
.y34_c01047{bottom:313.560285px;}
.y33_c01047{bottom:313.561635px;}
.y66_c01047{bottom:313.919250px;}
.y32_c01047{bottom:332.280690px;}
.y65_c01047{bottom:332.639745px;}
.y31_c01047{bottom:351.360240px;}
.y64_c01047{bottom:352.079775px;}
.y30_c01047{bottom:370.801500px;}
.y63_c01047{bottom:371.159310px;}
.y2f_c01047{bottom:390.240090px;}
.y62_c01047{bottom:390.959835px;}
.y2e_c01047{bottom:409.319640px;}
.y61_c01047{bottom:410.039385px;}
.y5f_c01047{bottom:429.119085px;}
.y60_c01047{bottom:429.119385px;}
.y2d_c01047{bottom:429.120165px;}
.y2c_c01047{bottom:447.840660px;}
.y5e_c01047{bottom:448.198635px;}
.y2b_c01047{bottom:467.279250px;}
.y5d_c01047{bottom:467.999160px;}
.y29_c01047{bottom:486.358890px;}
.y2a_c01047{bottom:486.359250px;}
.y5c_c01047{bottom:486.719655px;}
.y28_c01047{bottom:506.159415px;}
.y27_c01047{bottom:506.159475px;}
.y5b_c01047{bottom:506.518725px;}
.y26_c01047{bottom:524.879970px;}
.y25_c01047{bottom:524.880015px;}
.y5a_c01047{bottom:525.239220px;}
.y24_c01047{bottom:543.599070px;}
.y23_c01047{bottom:543.599160px;}
.y58_c01047{bottom:544.318860px;}
.y59_c01047{bottom:544.319235px;}
.y22_c01047{bottom:563.040435px;}
.y57_c01047{bottom:563.398410px;}
.y21_c01047{bottom:582.119985px;}
.y20_c01047{bottom:582.120300px;}
.y56_c01047{bottom:582.839670px;}
.y1f_c01047{bottom:601.199850px;}
.y1e_c01047{bottom:601.201545px;}
.y55_c01047{bottom:601.558725px;}
.y1d_c01047{bottom:620.640135px;}
.y54_c01047{bottom:621.000000px;}
.y1c_c01047{bottom:639.719670px;}
.y53_c01047{bottom:640.079550px;}
.y1b_c01047{bottom:659.160945px;}
.y52_c01047{bottom:659.519580px;}
.y1a_c01047{bottom:678.240480px;}
.y51_c01047{bottom:678.599115px;}
.y19_c01047{bottom:697.679070px;}
.y50_c01047{bottom:698.040390px;}
.y17_c01047{bottom:716.399280px;}
.y18_c01047{bottom:716.399820px;}
.y4f_c01047{bottom:716.759445px;}
.y16_c01047{bottom:735.839310px;}
.y4e_c01047{bottom:736.200720px;}
.y15_c01047{bottom:754.918860px;}
.y4d_c01047{bottom:755.280255px;}
.y14_c01047{bottom:773.998395px;}
.y4c_c01047{bottom:774.359805px;}
.y13_c01047{bottom:793.439670px;}
.y4b_c01047{bottom:793.441320px;}
.y12_c01047{bottom:812.878965px;}
.y11_c01047{bottom:812.880105px;}
.y4a_c01047{bottom:813.241830px;}
.y10_c01047{bottom:832.321380px;}
.y49_c01047{bottom:851.759970px;}
.yf_c01047{bottom:851.761410px;}
.y48_c01047{bottom:871.201245px;}
.ye_c01047{bottom:871.202685px;}
.y47_c01047{bottom:890.639835px;}
.yd_c01047{bottom:890.641275px;}
.yc_c01047{bottom:909.361770px;}
.y46_c01047{bottom:909.719370px;}
.y45_c01047{bottom:928.798920px;}
.yb_c01047{bottom:928.800360px;}
.y44_c01047{bottom:947.878965px;}
.ya_c01047{bottom:947.879910px;}
.y9_c01047{bottom:966.959445px;}
.y43_c01047{bottom:967.320645px;}
.y8_c01047{bottom:985.679940px;}
.y42_c01047{bottom:986.039700px;}
.y7_c01047{bottom:1004.759490px;}
.y41_c01047{bottom:1005.119250px;}
.y6_c01047{bottom:1024.198785px;}
.y5_c01047{bottom:1024.199820px;}
.y3f_c01047{bottom:1043.278245px;}
.y40_c01047{bottom:1043.278755px;}
.y4_c01047{bottom:1043.279370px;}
.y3e_c01047{bottom:1062.719520px;}
.y3_c01047{bottom:1062.720630px;}
.y3d_c01047{bottom:1082.158815px;}
.y2_c01047{bottom:1082.159220px;}
.y1_c01047{bottom:1101.238770px;}
.y3c_c01047{bottom:1101.240000px;}
.hd_c01047{height:43.804688px;}
.hf_c01047{height:45.369141px;}
.hc_c01047{height:49.130859px;}
.ha_c01047{height:50.402344px;}
.h7_c01047{height:50.764526px;}
.hb_c01047{height:51.500244px;}
.he_c01047{height:52.235962px;}
.h1_c01047{height:52.971680px;}
.h3_c01047{height:53.707397px;}
.h5_c01047{height:54.443115px;}
.h6_c01047{height:55.178833px;}
.h8_c01047{height:55.590820px;}
.h2_c01047{height:55.914551px;}
.h4_c01047{height:56.650269px;}
.h9_c01047{height:66.950317px;}
.h0_c01047{height:1263.000000px;}
.w0_c01047{width:892.500000px;}
.x0_c01047{left:0.000000px;}
.x4_c01047{left:354.957945px;}
.x1_c01047{left:356.039385px;}
.x3_c01047{left:407.158770px;}
.x7_c01047{left:408.239820px;}
.x5_c01047{left:426.238770px;}
.x2_c01047{left:427.319820px;}
.x6_c01047{left:433.079400px;}
.x8_c01047{left:556.558875px;}
.xa_c01047{left:557.639700px;}
.x9_c01047{left:588.958920px;}
.xb_c01047{left:590.039985px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls14_c01047{letter-spacing:-8.860800pt;}
.ls11_c01047{letter-spacing:-8.121600pt;}
.ls18_c01047{letter-spacing:-6.759800pt;}
.ls9_c01047{letter-spacing:-6.515733pt;}
.ls5_c01047{letter-spacing:-4.872000pt;}
.ls7_c01047{letter-spacing:-4.468800pt;}
.ls1f_c01047{letter-spacing:-4.430400pt;}
.ls20_c01047{letter-spacing:-4.331600pt;}
.ls1e_c01047{letter-spacing:-4.295867pt;}
.ls1a_c01047{letter-spacing:-3.691200pt;}
.lse_c01047{letter-spacing:-3.626000pt;}
.ls1b_c01047{letter-spacing:-3.520533pt;}
.ls19_c01047{letter-spacing:-3.457440pt;}
.lsd_c01047{letter-spacing:-3.431600pt;}
.lsa_c01047{letter-spacing:-3.110287pt;}
.ls8_c01047{letter-spacing:-3.041667pt;}
.ls4_c01047{letter-spacing:-2.951520pt;}
.ls16_c01047{letter-spacing:-2.948713pt;}
.ls13_c01047{letter-spacing:-2.744467pt;}
.lsc_c01047{letter-spacing:-2.380500pt;}
.lsb_c01047{letter-spacing:-2.348760pt;}
.ls2_c01047{letter-spacing:-2.217600pt;}
.ls10_c01047{letter-spacing:-2.019593pt;}
.ls3_c01047{letter-spacing:-1.478880pt;}
.ls1c_c01047{letter-spacing:-1.430400pt;}
.ls17_c01047{letter-spacing:-0.819433pt;}
.ls15_c01047{letter-spacing:-0.739200pt;}
.ls1d_c01047{letter-spacing:-0.737927pt;}
.ls6_c01047{letter-spacing:0.000000pt;}
.ls1_c01047{letter-spacing:1.478880pt;}
.lsf_c01047{letter-spacing:2.630000pt;}
.ls12_c01047{letter-spacing:3.182853pt;}
.ls0_c01047{letter-spacing:47.260800pt;}
.ws0_c01047{word-spacing:0.000000pt;}
._9_c01047{margin-left:-100.574710pt;}
._12_c01047{margin-left:-22.365792pt;}
._5_c01047{margin-left:-14.401182pt;}
._6_c01047{margin-left:-10.597588pt;}
._4_c01047{margin-left:-9.547510pt;}
._8_c01047{margin-left:-8.320032pt;}
._0_c01047{margin-left:-7.428775pt;}
._1_c01047{margin-left:-5.403330pt;}
._7_c01047{margin-left:-3.995623pt;}
._2_c01047{margin-left:-2.292871pt;}
._3_c01047{margin-left:-1.296591pt;}
._11_c01047{width:16.903001pt;}
._e_c01047{width:18.431232pt;}
._10_c01047{width:19.739638pt;}
._c_c01047{width:21.278090pt;}
._b_c01047{width:22.699008pt;}
._d_c01047{width:24.213711pt;}
._a_c01047{width:26.491540pt;}
._f_c01047{width:28.588918pt;}
._13_c01047{width:30.129231pt;}
.fsb_c01047{font-size:37.333333pt;}
.fsd_c01047{font-size:38.666667pt;}
.fsa_c01047{font-size:43.333333pt;}
.fs8_c01047{font-size:45.333333pt;}
.fs6_c01047{font-size:46.000000pt;}
.fs9_c01047{font-size:46.666667pt;}
.fsc_c01047{font-size:47.333333pt;}
.fs0_c01047{font-size:48.000000pt;}
.fs2_c01047{font-size:48.666667pt;}
.fs4_c01047{font-size:49.333333pt;}
.fs5_c01047{font-size:50.000000pt;}
.fs1_c01047{font-size:50.666667pt;}
.fs3_c01047{font-size:51.333333pt;}
.fs7_c01047{font-size:60.666667pt;}
.y0_c01047{bottom:0.000000pt;}
.y3b_c01047{bottom:159.360347pt;}
.y6e_c01047{bottom:159.520000pt;}
.y6d_c01047{bottom:159.520733pt;}
.y6c_c01047{bottom:176.640000pt;}
.y3a_c01047{bottom:176.641480pt;}
.y6b_c01047{bottom:193.599587pt;}
.y39_c01047{bottom:193.601080pt;}
.y38_c01047{bottom:210.560667pt;}
.y6a_c01047{bottom:210.879027pt;}
.y37_c01047{bottom:227.201107pt;}
.y69_c01047{bottom:227.519467pt;}
.y36_c01047{bottom:244.479853pt;}
.y68_c01047{bottom:244.798787pt;}
.y35_c01047{bottom:261.439453pt;}
.y67_c01047{bottom:261.758787pt;}
.y34_c01047{bottom:278.720253pt;}
.y33_c01047{bottom:278.721453pt;}
.y66_c01047{bottom:279.039333pt;}
.y32_c01047{bottom:295.360613pt;}
.y65_c01047{bottom:295.679773pt;}
.y31_c01047{bottom:312.320213pt;}
.y64_c01047{bottom:312.959800pt;}
.y30_c01047{bottom:329.601333pt;}
.y63_c01047{bottom:329.919387pt;}
.y2f_c01047{bottom:346.880080pt;}
.y62_c01047{bottom:347.519853pt;}
.y2e_c01047{bottom:363.839680pt;}
.y61_c01047{bottom:364.479453pt;}
.y5f_c01047{bottom:381.439187pt;}
.y60_c01047{bottom:381.439453pt;}
.y2d_c01047{bottom:381.440147pt;}
.y2c_c01047{bottom:398.080587pt;}
.y5e_c01047{bottom:398.398787pt;}
.y2b_c01047{bottom:415.359333pt;}
.y5d_c01047{bottom:415.999253pt;}
.y29_c01047{bottom:432.319013pt;}
.y2a_c01047{bottom:432.319333pt;}
.y5c_c01047{bottom:432.639693pt;}
.y28_c01047{bottom:449.919480pt;}
.y27_c01047{bottom:449.919533pt;}
.y5b_c01047{bottom:450.238867pt;}
.y26_c01047{bottom:466.559973pt;}
.y25_c01047{bottom:466.560013pt;}
.y5a_c01047{bottom:466.879307pt;}
.y24_c01047{bottom:483.199173pt;}
.y23_c01047{bottom:483.199253pt;}
.y58_c01047{bottom:483.838987pt;}
.y59_c01047{bottom:483.839320pt;}
.y22_c01047{bottom:500.480387pt;}
.y57_c01047{bottom:500.798587pt;}
.y21_c01047{bottom:517.439987pt;}
.y20_c01047{bottom:517.440267pt;}
.y56_c01047{bottom:518.079707pt;}
.y1f_c01047{bottom:534.399867pt;}
.y1e_c01047{bottom:534.401373pt;}
.y55_c01047{bottom:534.718867pt;}
.y1d_c01047{bottom:551.680120pt;}
.y54_c01047{bottom:552.000000pt;}
.y1c_c01047{bottom:568.639707pt;}
.y53_c01047{bottom:568.959600pt;}
.y1b_c01047{bottom:585.920840pt;}
.y52_c01047{bottom:586.239627pt;}
.y1a_c01047{bottom:602.880427pt;}
.y51_c01047{bottom:603.199213pt;}
.y19_c01047{bottom:620.159173pt;}
.y50_c01047{bottom:620.480347pt;}
.y17_c01047{bottom:636.799360pt;}
.y18_c01047{bottom:636.799840pt;}
.y4f_c01047{bottom:637.119507pt;}
.y16_c01047{bottom:654.079387pt;}
.y4e_c01047{bottom:654.400640pt;}
.y15_c01047{bottom:671.038987pt;}
.y4d_c01047{bottom:671.360227pt;}
.y14_c01047{bottom:687.998573pt;}
.y4c_c01047{bottom:688.319827pt;}
.y13_c01047{bottom:705.279707pt;}
.y4b_c01047{bottom:705.281173pt;}
.y12_c01047{bottom:722.559080pt;}
.y11_c01047{bottom:722.560093pt;}
.y4a_c01047{bottom:722.881627pt;}
.y10_c01047{bottom:739.841227pt;}
.y49_c01047{bottom:757.119973pt;}
.yf_c01047{bottom:757.121253pt;}
.y48_c01047{bottom:774.401107pt;}
.ye_c01047{bottom:774.402387pt;}
.y47_c01047{bottom:791.679853pt;}
.yd_c01047{bottom:791.681133pt;}
.yc_c01047{bottom:808.321573pt;}
.y46_c01047{bottom:808.639440pt;}
.y45_c01047{bottom:825.599040pt;}
.yb_c01047{bottom:825.600320pt;}
.y44_c01047{bottom:842.559080pt;}
.ya_c01047{bottom:842.559920pt;}
.y9_c01047{bottom:859.519507pt;}
.y43_c01047{bottom:859.840573pt;}
.y8_c01047{bottom:876.159947pt;}
.y42_c01047{bottom:876.479733pt;}
.y7_c01047{bottom:893.119547pt;}
.y41_c01047{bottom:893.439333pt;}
.y6_c01047{bottom:910.398920pt;}
.y5_c01047{bottom:910.399840pt;}
.y3f_c01047{bottom:927.358440pt;}
.y40_c01047{bottom:927.358893pt;}
.y4_c01047{bottom:927.359440pt;}
.y3e_c01047{bottom:944.639573pt;}
.y3_c01047{bottom:944.640560pt;}
.y3d_c01047{bottom:961.918947pt;}
.y2_c01047{bottom:961.919307pt;}
.y1_c01047{bottom:978.878907pt;}
.y3c_c01047{bottom:978.880000pt;}
.hd_c01047{height:38.937500pt;}
.hf_c01047{height:40.328125pt;}
.hc_c01047{height:43.671875pt;}
.ha_c01047{height:44.802083pt;}
.h7_c01047{height:45.124023pt;}
.hb_c01047{height:45.777995pt;}
.he_c01047{height:46.431966pt;}
.h1_c01047{height:47.085938pt;}
.h3_c01047{height:47.739909pt;}
.h5_c01047{height:48.393880pt;}
.h6_c01047{height:49.047852pt;}
.h8_c01047{height:49.414063pt;}
.h2_c01047{height:49.701823pt;}
.h4_c01047{height:50.355794pt;}
.h9_c01047{height:59.511393pt;}
.h0_c01047{height:1122.666667pt;}
.w0_c01047{width:793.333333pt;}
.x0_c01047{left:0.000000pt;}
.x4_c01047{left:315.518173pt;}
.x1_c01047{left:316.479453pt;}
.x3_c01047{left:361.918907pt;}
.x7_c01047{left:362.879840pt;}
.x5_c01047{left:378.878907pt;}
.x2_c01047{left:379.839840pt;}
.x6_c01047{left:384.959467pt;}
.x8_c01047{left:494.719000pt;}
.xa_c01047{left:495.679733pt;}
.x9_c01047{left:523.519040pt;}
.xb_c01047{left:524.479987pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_e0520ca20e36df9d56f22a6f.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_32e732356e963c9c365e3ecc.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_4aae2aeab457bd53fae9179e.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_fddd9f0843f343d55061cea1.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.364746;font-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_c01048{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m15_c01048{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.mb_c01048{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m12_c01048{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.me_c01048{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.md_c01048{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m11_c01048{transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);}
.m1_c01048{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);}
.mf_c01048{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m14_c01048{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.mc_c01048{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m10_c01048{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m8_c01048{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m6_c01048{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m5_c01048{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m2_c01048{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m0_c01048{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m7_c01048{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.ma_c01048{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m9_c01048{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m3_c01048{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m4_c01048{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.lsb_c01048{letter-spacing:-4.182000px;}
.ls6_c01048{letter-spacing:-3.345600px;}
.lsf_c01048{letter-spacing:-3.271050px;}
.ls11_c01048{letter-spacing:-3.173625px;}
.ls13_c01048{letter-spacing:-3.105375px;}
.ls5_c01048{letter-spacing:-2.508690px;}
.lsd_c01048{letter-spacing:-2.504700px;}
.ls7_c01048{letter-spacing:-1.697918px;}
.ls3_c01048{letter-spacing:-1.673310px;}
.ls8_c01048{letter-spacing:-1.624095px;}
.ls18_c01048{letter-spacing:-1.087403px;}
.ls1a_c01048{letter-spacing:-1.064018px;}
.ls17_c01048{letter-spacing:-1.040633px;}
.ls14_c01048{letter-spacing:-0.993863px;}
.lsc_c01048{letter-spacing:-0.851190px;}
.ls2_c01048{letter-spacing:-0.836400px;}
.lsa_c01048{letter-spacing:0.000000px;}
.lse_c01048{letter-spacing:0.836400px;}
.ls15_c01048{letter-spacing:0.887250px;}
.ls19_c01048{letter-spacing:0.928200px;}
.ls9_c01048{letter-spacing:1.574880px;}
.ls0_c01048{letter-spacing:1.673310px;}
.ls4_c01048{letter-spacing:3.002400px;}
.ls16_c01048{letter-spacing:5.072018px;}
.ls12_c01048{letter-spacing:5.123183px;}
.ls10_c01048{letter-spacing:22.466708px;}
.ls1_c01048{letter-spacing:25.082310px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:0.000000px;}
._e_c01048{margin-left:-34.975900px;}
._13_c01048{margin-left:-22.574464px;}
._8_c01048{margin-left:-16.894084px;}
._a_c01048{margin-left:-12.100268px;}
._6_c01048{margin-left:-10.164484px;}
._c_c01048{margin-left:-8.690199px;}
._9_c01048{margin-left:-5.967836px;}
._4_c01048{margin-left:-4.350150px;}
._3_c01048{margin-left:-1.834704px;}
._b_c01048{width:1.410727px;}
._7_c01048{width:2.441019px;}
._d_c01048{width:3.549533px;}
._2_c01048{width:4.641911px;}
._5_c01048{width:6.263444px;}
._f_c01048{width:8.169698px;}
._0_c01048{width:22.674901px;}
._14_c01048{width:23.811883px;}
._10_c01048{width:25.558023px;}
._11_c01048{width:27.019700px;}
._15_c01048{width:30.367340px;}
._16_c01048{width:32.107226px;}
._12_c01048{width:33.708860px;}
._1_c01048{width:690.028754px;}
.fc0_c01048{color:transparent;}
.fs6_c01048{font-size:45.000000px;}
.fs4_c01048{font-size:48.000000px;}
.fsb_c01048{font-size:48.750000px;}
.fs3_c01048{font-size:49.500000px;}
.fs5_c01048{font-size:50.250000px;}
.fs0_c01048{font-size:51.000000px;}
.fs2_c01048{font-size:51.750000px;}
.fs7_c01048{font-size:53.250000px;}
.fs1_c01048{font-size:54.000000px;}
.fsa_c01048{font-size:63.750000px;}
.fsc_c01048{font-size:66.750000px;}
.fs9_c01048{font-size:68.250000px;}
.fs8_c01048{font-size:69.750000px;}
.y0_c01048{bottom:0.000000px;}
.y36_c01048{bottom:180.357555px;}
.y37_c01048{bottom:180.359850px;}
.y6b_c01048{bottom:199.439685px;}
.y35_c01048{bottom:199.796175px;}
.y69_c01048{bottom:218.519025px;}
.y6a_c01048{bottom:218.519685px;}
.y34_c01048{bottom:218.876640px;}
.y68_c01048{bottom:237.957645px;}
.y33_c01048{bottom:238.317765px;}
.y67_c01048{bottom:257.398800px;}
.y32_c01048{bottom:257.756385px;}
.y66_c01048{bottom:276.479235px;}
.y31_c01048{bottom:276.836835px;}
.y65_c01048{bottom:295.198785px;}
.y30_c01048{bottom:295.917270px;}
.y63_c01048{bottom:314.638635px;}
.y64_c01048{bottom:314.639700px;}
.y2f_c01048{bottom:314.997735px;}
.y62_c01048{bottom:333.719085px;}
.y2e_c01048{bottom:334.078170px;}
.y61_c01048{bottom:352.438635px;}
.y2d_c01048{bottom:352.799100px;}
.y2b_c01048{bottom:371.879400px;}
.y2c_c01048{bottom:371.879535px;}
.y5f_c01048{bottom:391.316805px;}
.y60_c01048{bottom:391.318770px;}
.y2a_c01048{bottom:391.678920px;}
.y5e_c01048{bottom:410.037705px;}
.y29_c01048{bottom:410.398470px;}
.y5d_c01048{bottom:429.476325px;}
.y28_c01048{bottom:429.478905px;}
.y5c_c01048{bottom:448.557960px;}
.y27_c01048{bottom:448.560540px;}
.y5b_c01048{bottom:468.356100px;}
.y25_c01048{bottom:468.717735px;}
.y26_c01048{bottom:468.719565px;}
.y5a_c01048{bottom:487.436535px;}
.y24_c01048{bottom:487.437285px;}
.y59_c01048{bottom:506.877690px;}
.y23_c01048{bottom:506.878425px;}
.y58_c01048{bottom:525.958125px;}
.y22_c01048{bottom:526.317030px;}
.y57_c01048{bottom:545.396730px;}
.y21_c01048{bottom:545.758185px;}
.y56_c01048{bottom:564.477195px;}
.y20_c01048{bottom:564.477750px;}
.y55_c01048{bottom:583.918320px;}
.y1f_c01048{bottom:584.277240px;}
.y54_c01048{bottom:602.639265px;}
.y1e_c01048{bottom:602.998170px;}
.y53_c01048{bottom:621.719700px;}
.y1d_c01048{bottom:622.078605px;}
.y52_c01048{bottom:640.439250px;}
.y1c_c01048{bottom:641.159070px;}
.y50_c01048{bottom:659.517945px;}
.y51_c01048{bottom:659.519070px;}
.y1b_c01048{bottom:659.879970px;}
.y4f_c01048{bottom:678.598395px;}
.y1a_c01048{bottom:678.959970px;}
.y4e_c01048{bottom:698.039550px;}
.y18_c01048{bottom:698.396535px;}
.y19_c01048{bottom:698.399235px;}
.y4d_c01048{bottom:717.119985px;}
.y17_c01048{bottom:717.476985px;}
.y4c_c01048{bottom:736.920000px;}
.y16_c01048{bottom:737.276475px;}
.y4a_c01048{bottom:755.998650px;}
.y4b_c01048{bottom:756.000000px;}
.y15_c01048{bottom:756.356940px;}
.y49_c01048{bottom:775.437270px;}
.y14_c01048{bottom:775.798080px;}
.y48_c01048{bottom:794.517720px;}
.y13_c01048{bottom:794.878530px;}
.y47_c01048{bottom:813.958860px;}
.y12_c01048{bottom:814.678020px;}
.y46_c01048{bottom:833.039310px;}
.y11_c01048{bottom:833.397585px;}
.y45_c01048{bottom:852.477930px;}
.y10_c01048{bottom:852.838740px;}
.y44_c01048{bottom:871.558365px;}
.yf_c01048{bottom:871.919175px;}
.y43_c01048{bottom:890.999520px;}
.ye_c01048{bottom:891.718695px;}
.y42_c01048{bottom:910.079955px;}
.yd_c01048{bottom:910.799130px;}
.y41_c01048{bottom:929.519070px;}
.yc_c01048{bottom:929.879580px;}
.y40_c01048{bottom:948.596880px;}
.yb_c01048{bottom:948.960015px;}
.y3f_c01048{bottom:968.038035px;}
.ya_c01048{bottom:968.759625px;}
.y3e_c01048{bottom:986.757585px;}
.y9_c01048{bottom:987.479190px;}
.y3d_c01048{bottom:1005.838035px;}
.y8_c01048{bottom:1006.559055px;}
.y3c_c01048{bottom:1024.918485px;}
.y7_c01048{bottom:1025.279850px;}
.y6_c01048{bottom:1025.280465px;}
.y3b_c01048{bottom:1044.359625px;}
.y5_c01048{bottom:1044.719085px;}
.y3a_c01048{bottom:1063.440075px;}
.y4_c01048{bottom:1064.160240px;}
.y39_c01048{bottom:1082.878695px;}
.y3_c01048{bottom:1083.598845px;}
.y38_c01048{bottom:1102.319820px;}
.y2_c01048{bottom:1103.039985px;}
.y1_c01048{bottom:1141.919955px;}
.h7_c01048{height:46.933594px;}
.h5_c01048{height:47.109375px;}
.hc_c01048{height:48.178711px;}
.h4_c01048{height:48.919922px;}
.h6_c01048{height:49.661133px;}
.h1_c01048{height:50.402344px;}
.h3_c01048{height:51.143555px;}
.h8_c01048{height:52.625977px;}
.h2_c01048{height:53.367188px;}
.hb_c01048{height:63.002930px;}
.hd_c01048{height:65.967773px;}
.ha_c01048{height:67.450195px;}
.h9_c01048{height:68.932617px;}
.h0_c01048{height:1263.000000px;}
.w0_c01048{width:892.500000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:293.399250px;}
.x8_c01048{left:356.039475px;}
.x5_c01048{left:357.118785px;}
.x3_c01048{left:358.199850px;}
.x6_c01048{left:389.878320px;}
.xb_c01048{left:414.719565px;}
.x4_c01048{left:416.159820px;}
.xd_c01048{left:420.119985px;}
.x7_c01048{left:427.679070px;}
.x9_c01048{left:433.799565px;}
.xc_c01048{left:446.759085px;}
.xa_c01048{left:460.079400px;}
.x12_c01048{left:556.920315px;}
.xf_c01048{left:557.998950px;}
.xe_c01048{left:559.080000px;}
.x11_c01048{left:590.039985px;}
.x10_c01048{left:591.119385px;}
.x2_c01048{left:689.399820px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.lsb_c01048{letter-spacing:-3.717333pt;}
.ls6_c01048{letter-spacing:-2.973867pt;}
.lsf_c01048{letter-spacing:-2.907600pt;}
.ls11_c01048{letter-spacing:-2.821000pt;}
.ls13_c01048{letter-spacing:-2.760333pt;}
.ls5_c01048{letter-spacing:-2.229947pt;}
.lsd_c01048{letter-spacing:-2.226400pt;}
.ls7_c01048{letter-spacing:-1.509260pt;}
.ls3_c01048{letter-spacing:-1.487387pt;}
.ls8_c01048{letter-spacing:-1.443640pt;}
.ls18_c01048{letter-spacing:-0.966580pt;}
.ls1a_c01048{letter-spacing:-0.945793pt;}
.ls17_c01048{letter-spacing:-0.925007pt;}
.ls14_c01048{letter-spacing:-0.883433pt;}
.lsc_c01048{letter-spacing:-0.756613pt;}
.ls2_c01048{letter-spacing:-0.743467pt;}
.lsa_c01048{letter-spacing:0.000000pt;}
.lse_c01048{letter-spacing:0.743467pt;}
.ls15_c01048{letter-spacing:0.788667pt;}
.ls19_c01048{letter-spacing:0.825067pt;}
.ls9_c01048{letter-spacing:1.399893pt;}
.ls0_c01048{letter-spacing:1.487387pt;}
.ls4_c01048{letter-spacing:2.668800pt;}
.ls16_c01048{letter-spacing:4.508460pt;}
.ls12_c01048{letter-spacing:4.553940pt;}
.ls10_c01048{letter-spacing:19.970407pt;}
.ls1_c01048{letter-spacing:22.295387pt;}
.ws0_c01048{word-spacing:0.000000pt;}
._e_c01048{margin-left:-31.089689pt;}
._13_c01048{margin-left:-20.066191pt;}
._8_c01048{margin-left:-15.016964pt;}
._a_c01048{margin-left:-10.755794pt;}
._6_c01048{margin-left:-9.035097pt;}
._c_c01048{margin-left:-7.724622pt;}
._9_c01048{margin-left:-5.304743pt;}
._4_c01048{margin-left:-3.866800pt;}
._3_c01048{margin-left:-1.630848pt;}
._b_c01048{width:1.253979pt;}
._7_c01048{width:2.169795pt;}
._d_c01048{width:3.155141pt;}
._2_c01048{width:4.126143pt;}
._5_c01048{width:5.567506pt;}
._f_c01048{width:7.261954pt;}
._0_c01048{width:20.155468pt;}
._14_c01048{width:21.166118pt;}
._10_c01048{width:22.718243pt;}
._11_c01048{width:24.017511pt;}
._15_c01048{width:26.993191pt;}
._16_c01048{width:28.539756pt;}
._12_c01048{width:29.963431pt;}
._1_c01048{width:613.358893pt;}
.fs6_c01048{font-size:40.000000pt;}
.fs4_c01048{font-size:42.666667pt;}
.fsb_c01048{font-size:43.333333pt;}
.fs3_c01048{font-size:44.000000pt;}
.fs5_c01048{font-size:44.666667pt;}
.fs0_c01048{font-size:45.333333pt;}
.fs2_c01048{font-size:46.000000pt;}
.fs7_c01048{font-size:47.333333pt;}
.fs1_c01048{font-size:48.000000pt;}
.fsa_c01048{font-size:56.666667pt;}
.fsc_c01048{font-size:59.333333pt;}
.fs9_c01048{font-size:60.666667pt;}
.fs8_c01048{font-size:62.000000pt;}
.y0_c01048{bottom:0.000000pt;}
.y36_c01048{bottom:160.317827pt;}
.y37_c01048{bottom:160.319867pt;}
.y6b_c01048{bottom:177.279720pt;}
.y35_c01048{bottom:177.596600pt;}
.y69_c01048{bottom:194.239133pt;}
.y6a_c01048{bottom:194.239720pt;}
.y34_c01048{bottom:194.557013pt;}
.y68_c01048{bottom:211.517907pt;}
.y33_c01048{bottom:211.838013pt;}
.y67_c01048{bottom:228.798933pt;}
.y32_c01048{bottom:229.116787pt;}
.y66_c01048{bottom:245.759320pt;}
.y31_c01048{bottom:246.077187pt;}
.y65_c01048{bottom:262.398920pt;}
.y30_c01048{bottom:263.037573pt;}
.y63_c01048{bottom:279.678787pt;}
.y64_c01048{bottom:279.679733pt;}
.y2f_c01048{bottom:279.997987pt;}
.y62_c01048{bottom:296.639187pt;}
.y2e_c01048{bottom:296.958373pt;}
.y61_c01048{bottom:313.278787pt;}
.y2d_c01048{bottom:313.599200pt;}
.y2b_c01048{bottom:330.559467pt;}
.y2c_c01048{bottom:330.559587pt;}
.y5f_c01048{bottom:347.837160pt;}
.y60_c01048{bottom:347.838907pt;}
.y2a_c01048{bottom:348.159040pt;}
.y5e_c01048{bottom:364.477960pt;}
.y29_c01048{bottom:364.798640pt;}
.y5d_c01048{bottom:381.756733pt;}
.y28_c01048{bottom:381.759027pt;}
.y5c_c01048{bottom:398.718187pt;}
.y27_c01048{bottom:398.720480pt;}
.y5b_c01048{bottom:416.316533pt;}
.y25_c01048{bottom:416.637987pt;}
.y26_c01048{bottom:416.639613pt;}
.y5a_c01048{bottom:433.276920pt;}
.y24_c01048{bottom:433.277587pt;}
.y59_c01048{bottom:450.557947pt;}
.y23_c01048{bottom:450.558600pt;}
.y58_c01048{bottom:467.518333pt;}
.y22_c01048{bottom:467.837360pt;}
.y57_c01048{bottom:484.797093pt;}
.y21_c01048{bottom:485.118387pt;}
.y56_c01048{bottom:501.757507pt;}
.y20_c01048{bottom:501.758000pt;}
.y55_c01048{bottom:519.038507pt;}
.y1f_c01048{bottom:519.357547pt;}
.y54_c01048{bottom:535.679347pt;}
.y1e_c01048{bottom:535.998373pt;}
.y53_c01048{bottom:552.639733pt;}
.y1d_c01048{bottom:552.958760pt;}
.y52_c01048{bottom:569.279333pt;}
.y1c_c01048{bottom:569.919173pt;}
.y50_c01048{bottom:586.238173pt;}
.y51_c01048{bottom:586.239173pt;}
.y1b_c01048{bottom:586.559973pt;}
.y4f_c01048{bottom:603.198573pt;}
.y1a_c01048{bottom:603.519973pt;}
.y4e_c01048{bottom:620.479600pt;}
.y18_c01048{bottom:620.796920pt;}
.y19_c01048{bottom:620.799320pt;}
.y4d_c01048{bottom:637.439987pt;}
.y17_c01048{bottom:637.757320pt;}
.y4c_c01048{bottom:655.040000pt;}
.y16_c01048{bottom:655.356867pt;}
.y4a_c01048{bottom:671.998800pt;}
.y4b_c01048{bottom:672.000000pt;}
.y15_c01048{bottom:672.317280pt;}
.y49_c01048{bottom:689.277573pt;}
.y14_c01048{bottom:689.598293pt;}
.y48_c01048{bottom:706.237973pt;}
.y13_c01048{bottom:706.558693pt;}
.y47_c01048{bottom:723.518987pt;}
.y12_c01048{bottom:724.158240pt;}
.y46_c01048{bottom:740.479387pt;}
.y11_c01048{bottom:740.797853pt;}
.y45_c01048{bottom:757.758160pt;}
.y10_c01048{bottom:758.078880pt;}
.y44_c01048{bottom:774.718547pt;}
.yf_c01048{bottom:775.039267pt;}
.y43_c01048{bottom:791.999573pt;}
.ye_c01048{bottom:792.638840pt;}
.y42_c01048{bottom:808.959960pt;}
.yd_c01048{bottom:809.599227pt;}
.y41_c01048{bottom:826.239173pt;}
.yc_c01048{bottom:826.559627pt;}
.y40_c01048{bottom:843.197227pt;}
.yb_c01048{bottom:843.520013pt;}
.y3f_c01048{bottom:860.478253pt;}
.ya_c01048{bottom:861.119667pt;}
.y3e_c01048{bottom:877.117853pt;}
.y9_c01048{bottom:877.759280pt;}
.y3d_c01048{bottom:894.078253pt;}
.y8_c01048{bottom:894.719160pt;}
.y3c_c01048{bottom:911.038653pt;}
.y7_c01048{bottom:911.359867pt;}
.y6_c01048{bottom:911.360413pt;}
.y3b_c01048{bottom:928.319667pt;}
.y5_c01048{bottom:928.639187pt;}
.y3a_c01048{bottom:945.280067pt;}
.y4_c01048{bottom:945.920213pt;}
.y39_c01048{bottom:962.558840pt;}
.y3_c01048{bottom:963.198973pt;}
.y38_c01048{bottom:979.839840pt;}
.y2_c01048{bottom:980.479987pt;}
.y1_c01048{bottom:1015.039960pt;}
.h7_c01048{height:41.718750pt;}
.h5_c01048{height:41.875000pt;}
.hc_c01048{height:42.825521pt;}
.h4_c01048{height:43.484375pt;}
.h6_c01048{height:44.143229pt;}
.h1_c01048{height:44.802083pt;}
.h3_c01048{height:45.460938pt;}
.h8_c01048{height:46.778646pt;}
.h2_c01048{height:47.437500pt;}
.hb_c01048{height:56.002604pt;}
.hd_c01048{height:58.638021pt;}
.ha_c01048{height:59.955729pt;}
.h9_c01048{height:61.273438pt;}
.h0_c01048{height:1122.666667pt;}
.w0_c01048{width:793.333333pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:260.799333pt;}
.x8_c01048{left:316.479533pt;}
.x5_c01048{left:317.438920pt;}
.x3_c01048{left:318.399867pt;}
.x6_c01048{left:346.558507pt;}
.xb_c01048{left:368.639613pt;}
.x4_c01048{left:369.919840pt;}
.xd_c01048{left:373.439987pt;}
.x7_c01048{left:380.159173pt;}
.x9_c01048{left:385.599613pt;}
.xc_c01048{left:397.119187pt;}
.xa_c01048{left:408.959467pt;}
.x12_c01048{left:495.040280pt;}
.xf_c01048{left:495.999067pt;}
.xe_c01048{left:496.960000pt;}
.x11_c01048{left:524.479987pt;}
.x10_c01048{left:525.439453pt;}
.x2_c01048{left:612.799840pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_b297fec2ed4c4ba429f18186.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_7213128f575f28f920be6f6d.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_f23903ed32d3a367eb5e7e61.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.432129;font-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_c01049{transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);}
.m13_c01049{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m9_c01049{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m14_c01049{transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);}
.m11_c01049{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m7_c01049{transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);}
.m12_c01049{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m8_c01049{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m4_c01049{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.mc_c01049{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c01049{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.me_c01049{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.m10_c01049{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.md_c01049{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m0_c01049{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.mf_c01049{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.mb_c01049{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m1_c01049{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m3_c01049{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m6_c01049{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.ma_c01049{transform:matrix(0.424731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424731,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.lse_c01049{letter-spacing:-5.426400px;}
.lsa_c01049{letter-spacing:-5.126625px;}
.ls9_c01049{letter-spacing:-5.016375px;}
.lsd_c01049{letter-spacing:-4.440975px;}
.lsf_c01049{letter-spacing:-4.275427px;}
.ls3_c01049{letter-spacing:-4.210275px;}
.ls4_c01049{letter-spacing:-4.182000px;}
.ls10_c01049{letter-spacing:-3.037125px;}
.ls6_c01049{letter-spacing:-2.730045px;}
.ls5_c01049{letter-spacing:-2.590800px;}
.ls7_c01049{letter-spacing:-2.463818px;}
.ls13_c01049{letter-spacing:-1.729410px;}
.ls12_c01049{letter-spacing:-1.087403px;}
.ls15_c01049{letter-spacing:-1.017248px;}
.ls2_c01049{letter-spacing:-0.867000px;}
.lsb_c01049{letter-spacing:-0.851190px;}
.ls1_c01049{letter-spacing:0.000000px;}
.ls8_c01049{letter-spacing:0.867000px;}
.ls14_c01049{letter-spacing:0.892500px;}
.ls0_c01049{letter-spacing:1.729410px;}
.ls11_c01049{letter-spacing:1.966140px;}
.lsc_c01049{letter-spacing:5.499450px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01049{word-spacing:0.000000px;}
._a_c01049{margin-left:-21.241120px;}
._3_c01049{margin-left:-6.732069px;}
._9_c01049{margin-left:-5.406000px;}
._4_c01049{margin-left:-4.334965px;}
._6_c01049{margin-left:-2.494021px;}
._5_c01049{margin-left:-1.224069px;}
._7_c01049{width:1.321332px;}
._2_c01049{width:2.361525px;}
._8_c01049{width:6.502759px;}
._0_c01049{width:25.000165px;}
._d_c01049{width:26.978896px;}
._c_c01049{width:28.610965px;}
._b_c01049{width:32.094525px;}
._f_c01049{width:33.886509px;}
._e_c01049{width:35.679254px;}
._1_c01049{width:714.642393px;}
.fc0_c01049{color:transparent;}
.fsb_c01049{font-size:42.750000px;}
.fs8_c01049{font-size:49.500000px;}
.fs0_c01049{font-size:51.000000px;}
.fs5_c01049{font-size:51.750000px;}
.fs3_c01049{font-size:52.500000px;}
.fs6_c01049{font-size:53.250000px;}
.fsd_c01049{font-size:54.000000px;}
.fs1_c01049{font-size:54.750000px;}
.fs4_c01049{font-size:55.500000px;}
.fsa_c01049{font-size:57.000000px;}
.fs9_c01049{font-size:57.750000px;}
.fse_c01049{font-size:65.250000px;}
.fsc_c01049{font-size:66.750000px;}
.fs2_c01049{font-size:68.250000px;}
.fs7_c01049{font-size:69.750000px;}
.y0_c01049{bottom:0.000000px;}
.y36_c01049{bottom:180.361635px;}
.y67_c01049{bottom:180.718710px;}
.y35_c01049{bottom:199.800240px;}
.y66_c01049{bottom:200.159850px;}
.y34_c01049{bottom:218.521185px;}
.y65_c01049{bottom:218.878950px;}
.y64_c01049{bottom:218.879010px;}
.y63_c01049{bottom:237.959475px;}
.y33_c01049{bottom:237.959790px;}
.y32_c01049{bottom:256.680705px;}
.y62_c01049{bottom:257.039910px;}
.y31_c01049{bottom:276.480210px;}
.y61_c01049{bottom:276.839430px;}
.y30_c01049{bottom:295.199775px;}
.y60_c01049{bottom:295.560330px;}
.y5f_c01049{bottom:314.998950px;}
.y2f_c01049{bottom:314.999265px;}
.y2e_c01049{bottom:333.720195px;}
.y5e_c01049{bottom:334.077780px;}
.y2d_c01049{bottom:353.519685px;}
.y5d_c01049{bottom:353.877270px;}
.y2b_c01049{bottom:372.234330px;}
.y2c_c01049{bottom:372.238785px;}
.y5c_c01049{bottom:372.598200px;}
.y2a_c01049{bottom:391.314765px;}
.y5b_c01049{bottom:391.678635px;}
.y29_c01049{bottom:410.395230px;}
.y5a_c01049{bottom:410.759100px;}
.y28_c01049{bottom:429.475665px;}
.y59_c01049{bottom:429.839535px;}
.y27_c01049{bottom:448.196595px;}
.y58_c01049{bottom:448.919535px;}
.y26_c01049{bottom:468.355620px;}
.y57_c01049{bottom:468.720150px;}
.y25_c01049{bottom:487.796775px;}
.y56_c01049{bottom:488.158770px;}
.y24_c01049{bottom:506.877210px;}
.y55_c01049{bottom:507.238770px;}
.y23_c01049{bottom:526.315815px;}
.y53_c01049{bottom:526.679565px;}
.y54_c01049{bottom:526.679670px;}
.y22_c01049{bottom:545.756970px;}
.y52_c01049{bottom:546.118170px;}
.y21_c01049{bottom:564.476535px;}
.y51_c01049{bottom:564.839100px;}
.y20_c01049{bottom:583.558140px;}
.y50_c01049{bottom:583.919535px;}
.y1f_c01049{bottom:602.277690px;}
.y4f_c01049{bottom:602.639715px;}
.y1e_c01049{bottom:621.358155px;}
.y4e_c01049{bottom:621.720150px;}
.y1d_c01049{bottom:640.799280px;}
.y4c_c01049{bottom:641.156940px;}
.y4d_c01049{bottom:641.159370px;}
.y1c_c01049{bottom:659.879745px;}
.y4b_c01049{bottom:660.237390px;}
.y1b_c01049{bottom:678.960180px;}
.y4a_c01049{bottom:679.678530px;}
.y1a_c01049{bottom:698.759700px;}
.y49_c01049{bottom:699.117135px;}
.y19_c01049{bottom:717.840135px;}
.y48_c01049{bottom:718.197600px;}
.y17_c01049{bottom:736.918695px;}
.y18_c01049{bottom:736.920000px;}
.y47_c01049{bottom:737.638740px;}
.y16_c01049{bottom:755.999160px;}
.y46_c01049{bottom:756.358290px;}
.y15_c01049{bottom:775.437765px;}
.y45_c01049{bottom:775.799445px;}
.y14_c01049{bottom:794.518200px;}
.y44_c01049{bottom:794.879880px;}
.y13_c01049{bottom:814.317720px;}
.y43_c01049{bottom:814.679400px;}
.y12_c01049{bottom:833.398155px;}
.y42_c01049{bottom:833.398950px;}
.y11_c01049{bottom:852.478620px;}
.y41_c01049{bottom:852.840090px;}
.y10_c01049{bottom:871.559055px;}
.ye_c01049{bottom:890.999820px;}
.yf_c01049{bottom:891.000000px;}
.yd_c01049{bottom:909.719370px;}
.y40_c01049{bottom:910.079955px;}
.y3f_c01049{bottom:929.159820px;}
.yc_c01049{bottom:929.160525px;}
.y3e_c01049{bottom:948.239865px;}
.yb_c01049{bottom:948.240960px;}
.ya_c01049{bottom:967.679580px;}
.y3d_c01049{bottom:968.039310px;}
.y9_c01049{bottom:986.760045px;}
.y3c_c01049{bottom:987.119745px;}
.y3b_c01049{bottom:1006.558365px;}
.y8_c01049{bottom:1006.559535px;}
.y7_c01049{bottom:1025.280465px;}
.y3a_c01049{bottom:1025.638830px;}
.y6_c01049{bottom:1045.079955px;}
.y4_c01049{bottom:1064.158935px;}
.y5_c01049{bottom:1064.159820px;}
.y39_c01049{bottom:1064.162355px;}
.y3_c01049{bottom:1083.239385px;}
.y38_c01049{bottom:1083.600975px;}
.y2_c01049{bottom:1102.319820px;}
.y37_c01049{bottom:1102.681410px;}
.y1_c01049{bottom:1140.479640px;}
.hc_c01049{height:44.586914px;}
.h9_c01049{height:48.919922px;}
.h1_c01049{height:50.402344px;}
.h6_c01049{height:51.143555px;}
.h4_c01049{height:51.884766px;}
.h7_c01049{height:52.625977px;}
.he_c01049{height:53.367188px;}
.h2_c01049{height:54.108398px;}
.h5_c01049{height:54.849609px;}
.hb_c01049{height:56.332031px;}
.ha_c01049{height:57.073242px;}
.hf_c01049{height:64.485352px;}
.hd_c01049{height:65.967773px;}
.h3_c01049{height:67.450195px;}
.h8_c01049{height:68.932617px;}
.h0_c01049{height:1263.000000px;}
.w0_c01049{width:892.500000px;}
.x0_c01049{left:0.000000px;}
.x1_c01049{left:290.159385px;}
.x3_c01049{left:354.958350px;}
.x7_c01049{left:413.638500px;}
.x4_c01049{left:419.759085px;}
.x5_c01049{left:439.199850px;}
.x6_c01049{left:458.639100px;}
.x8_c01049{left:555.479325px;}
.xa_c01049{left:556.558935px;}
.x9_c01049{left:587.879520px;}
.xb_c01049{left:588.958920px;}
.x2_c01049{left:685.439670px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.lse_c01049{letter-spacing:-4.823467pt;}
.lsa_c01049{letter-spacing:-4.557000pt;}
.ls9_c01049{letter-spacing:-4.459000pt;}
.lsd_c01049{letter-spacing:-3.947533pt;}
.lsf_c01049{letter-spacing:-3.800380pt;}
.ls3_c01049{letter-spacing:-3.742467pt;}
.ls4_c01049{letter-spacing:-3.717333pt;}
.ls10_c01049{letter-spacing:-2.699667pt;}
.ls6_c01049{letter-spacing:-2.426707pt;}
.ls5_c01049{letter-spacing:-2.302933pt;}
.ls7_c01049{letter-spacing:-2.190060pt;}
.ls13_c01049{letter-spacing:-1.537253pt;}
.ls12_c01049{letter-spacing:-0.966580pt;}
.ls15_c01049{letter-spacing:-0.904220pt;}
.ls2_c01049{letter-spacing:-0.770667pt;}
.lsb_c01049{letter-spacing:-0.756613pt;}
.ls1_c01049{letter-spacing:0.000000pt;}
.ls8_c01049{letter-spacing:0.770667pt;}
.ls14_c01049{letter-spacing:0.793333pt;}
.ls0_c01049{letter-spacing:1.537253pt;}
.ls11_c01049{letter-spacing:1.747680pt;}
.lsc_c01049{letter-spacing:4.888400pt;}
.ws0_c01049{word-spacing:0.000000pt;}
._a_c01049{margin-left:-18.880995pt;}
._3_c01049{margin-left:-5.984061pt;}
._9_c01049{margin-left:-4.805333pt;}
._4_c01049{margin-left:-3.853303pt;}
._6_c01049{margin-left:-2.216908pt;}
._5_c01049{margin-left:-1.088061pt;}
._7_c01049{width:1.174518pt;}
._2_c01049{width:2.099133pt;}
._8_c01049{width:5.780231pt;}
._0_c01049{width:22.222369pt;}
._d_c01049{width:23.981241pt;}
._c_c01049{width:25.431969pt;}
._b_c01049{width:28.528466pt;}
._f_c01049{width:30.121341pt;}
._e_c01049{width:31.714893pt;}
._1_c01049{width:635.237682pt;}
.fsb_c01049{font-size:38.000000pt;}
.fs8_c01049{font-size:44.000000pt;}
.fs0_c01049{font-size:45.333333pt;}
.fs5_c01049{font-size:46.000000pt;}
.fs3_c01049{font-size:46.666667pt;}
.fs6_c01049{font-size:47.333333pt;}
.fsd_c01049{font-size:48.000000pt;}
.fs1_c01049{font-size:48.666667pt;}
.fs4_c01049{font-size:49.333333pt;}
.fsa_c01049{font-size:50.666667pt;}
.fs9_c01049{font-size:51.333333pt;}
.fse_c01049{font-size:58.000000pt;}
.fsc_c01049{font-size:59.333333pt;}
.fs2_c01049{font-size:60.666667pt;}
.fs7_c01049{font-size:62.000000pt;}
.y0_c01049{bottom:0.000000pt;}
.y36_c01049{bottom:160.321453pt;}
.y67_c01049{bottom:160.638853pt;}
.y35_c01049{bottom:177.600213pt;}
.y66_c01049{bottom:177.919867pt;}
.y34_c01049{bottom:194.241053pt;}
.y65_c01049{bottom:194.559067pt;}
.y64_c01049{bottom:194.559120pt;}
.y63_c01049{bottom:211.519533pt;}
.y33_c01049{bottom:211.519813pt;}
.y32_c01049{bottom:228.160627pt;}
.y62_c01049{bottom:228.479920pt;}
.y31_c01049{bottom:245.760187pt;}
.y61_c01049{bottom:246.079493pt;}
.y30_c01049{bottom:262.399800pt;}
.y60_c01049{bottom:262.720293pt;}
.y5f_c01049{bottom:279.999067pt;}
.y2f_c01049{bottom:279.999347pt;}
.y2e_c01049{bottom:296.640173pt;}
.y5e_c01049{bottom:296.958027pt;}
.y2d_c01049{bottom:314.239720pt;}
.y5d_c01049{bottom:314.557573pt;}
.y2b_c01049{bottom:330.874960pt;}
.y2c_c01049{bottom:330.878920pt;}
.y5c_c01049{bottom:331.198400pt;}
.y2a_c01049{bottom:347.835347pt;}
.y5b_c01049{bottom:348.158787pt;}
.y29_c01049{bottom:364.795760pt;}
.y5a_c01049{bottom:365.119200pt;}
.y28_c01049{bottom:381.756147pt;}
.y59_c01049{bottom:382.079587pt;}
.y27_c01049{bottom:398.396973pt;}
.y58_c01049{bottom:399.039587pt;}
.y26_c01049{bottom:416.316107pt;}
.y57_c01049{bottom:416.640133pt;}
.y25_c01049{bottom:433.597133pt;}
.y56_c01049{bottom:433.918907pt;}
.y24_c01049{bottom:450.557520pt;}
.y55_c01049{bottom:450.878907pt;}
.y23_c01049{bottom:467.836280pt;}
.y53_c01049{bottom:468.159613pt;}
.y54_c01049{bottom:468.159707pt;}
.y22_c01049{bottom:485.117307pt;}
.y52_c01049{bottom:485.438373pt;}
.y21_c01049{bottom:501.756920pt;}
.y51_c01049{bottom:502.079200pt;}
.y20_c01049{bottom:518.718347pt;}
.y50_c01049{bottom:519.039587pt;}
.y1f_c01049{bottom:535.357947pt;}
.y4f_c01049{bottom:535.679747pt;}
.y1e_c01049{bottom:552.318360pt;}
.y4e_c01049{bottom:552.640133pt;}
.y1d_c01049{bottom:569.599360pt;}
.y4c_c01049{bottom:569.917280pt;}
.y4d_c01049{bottom:569.919440pt;}
.y1c_c01049{bottom:586.559773pt;}
.y4b_c01049{bottom:586.877680pt;}
.y1b_c01049{bottom:603.520160pt;}
.y4a_c01049{bottom:604.158693pt;}
.y1a_c01049{bottom:621.119733pt;}
.y49_c01049{bottom:621.437453pt;}
.y19_c01049{bottom:638.080120pt;}
.y48_c01049{bottom:638.397867pt;}
.y17_c01049{bottom:655.038840pt;}
.y18_c01049{bottom:655.040000pt;}
.y47_c01049{bottom:655.678880pt;}
.y16_c01049{bottom:671.999253pt;}
.y46_c01049{bottom:672.318480pt;}
.y15_c01049{bottom:689.278013pt;}
.y45_c01049{bottom:689.599507pt;}
.y14_c01049{bottom:706.238400pt;}
.y44_c01049{bottom:706.559893pt;}
.y13_c01049{bottom:723.837973pt;}
.y43_c01049{bottom:724.159467pt;}
.y12_c01049{bottom:740.798360pt;}
.y42_c01049{bottom:740.799067pt;}
.y11_c01049{bottom:757.758773pt;}
.y41_c01049{bottom:758.080080pt;}
.y10_c01049{bottom:774.719160pt;}
.ye_c01049{bottom:791.999840pt;}
.yf_c01049{bottom:792.000000pt;}
.yd_c01049{bottom:808.639440pt;}
.y40_c01049{bottom:808.959960pt;}
.y3f_c01049{bottom:825.919840pt;}
.yc_c01049{bottom:825.920467pt;}
.y3e_c01049{bottom:842.879880pt;}
.yb_c01049{bottom:842.880853pt;}
.ya_c01049{bottom:860.159627pt;}
.y3d_c01049{bottom:860.479387pt;}
.y9_c01049{bottom:877.120040pt;}
.y3c_c01049{bottom:877.439773pt;}
.y3b_c01049{bottom:894.718547pt;}
.y8_c01049{bottom:894.719587pt;}
.y7_c01049{bottom:911.360413pt;}
.y3a_c01049{bottom:911.678960pt;}
.y6_c01049{bottom:928.959960pt;}
.y4_c01049{bottom:945.919053pt;}
.y5_c01049{bottom:945.919840pt;}
.y39_c01049{bottom:945.922093pt;}
.y3_c01049{bottom:962.879453pt;}
.y38_c01049{bottom:963.200867pt;}
.y2_c01049{bottom:979.839840pt;}
.y37_c01049{bottom:980.161253pt;}
.y1_c01049{bottom:1013.759680pt;}
.hc_c01049{height:39.632812pt;}
.h9_c01049{height:43.484375pt;}
.h1_c01049{height:44.802083pt;}
.h6_c01049{height:45.460938pt;}
.h4_c01049{height:46.119792pt;}
.h7_c01049{height:46.778646pt;}
.he_c01049{height:47.437500pt;}
.h2_c01049{height:48.096354pt;}
.h5_c01049{height:48.755208pt;}
.hb_c01049{height:50.072917pt;}
.ha_c01049{height:50.731771pt;}
.hf_c01049{height:57.320313pt;}
.hd_c01049{height:58.638021pt;}
.h3_c01049{height:59.955729pt;}
.h8_c01049{height:61.273438pt;}
.h0_c01049{height:1122.666667pt;}
.w0_c01049{width:793.333333pt;}
.x0_c01049{left:0.000000pt;}
.x1_c01049{left:257.919453pt;}
.x3_c01049{left:315.518533pt;}
.x7_c01049{left:367.678667pt;}
.x4_c01049{left:373.119187pt;}
.x5_c01049{left:390.399867pt;}
.x6_c01049{left:407.679200pt;}
.x8_c01049{left:493.759400pt;}
.xa_c01049{left:494.719053pt;}
.x9_c01049{left:522.559573pt;}
.xb_c01049{left:523.519040pt;}
.x2_c01049{left:609.279707pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_0a02e90cfbc8bdca21b65ec2.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_7c13f2aa80ee3dc0cf7fed00.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_0a7bb55be8f00e159eb4b967.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.432129;font-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_c01050{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.me_c01050{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m7_c01050{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m18_c01050{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m1b_c01050{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m2_c01050{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.ma_c01050{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m12_c01050{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m16_c01050{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.md_c01050{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m15_c01050{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m11_c01050{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m19_c01050{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mf_c01050{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m14_c01050{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m13_c01050{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m9_c01050{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m3_c01050{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m4_c01050{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m17_c01050{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.m1c_c01050{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m0_c01050{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m1_c01050{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m5_c01050{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m8_c01050{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.mc_c01050{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.mb_c01050{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m6_c01050{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m10_c01050{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m1e_c01050{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.m1a_c01050{transform:matrix(0.457386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457386,0.000000,0.000000,0.250000,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls14_c01050{letter-spacing:-4.498650px;}
.ls9_c01050{letter-spacing:-3.434625px;}
.ls1c_c01050{letter-spacing:-3.143400px;}
.lsd_c01050{letter-spacing:-3.105375px;}
.ls17_c01050{letter-spacing:-3.037125px;}
.ls11_c01050{letter-spacing:-2.766938px;}
.ls16_c01050{letter-spacing:-2.606648px;}
.ls7_c01050{letter-spacing:-2.590800px;}
.lsf_c01050{letter-spacing:-2.463818px;}
.ls8_c01050{letter-spacing:-1.771740px;}
.ls6_c01050{letter-spacing:-1.729410px;}
.ls4_c01050{letter-spacing:-1.722525px;}
.lsb_c01050{letter-spacing:-1.697918px;}
.ls1b_c01050{letter-spacing:-1.040633px;}
.ls19_c01050{letter-spacing:-0.993863px;}
.ls12_c01050{letter-spacing:-0.956250px;}
.lsa_c01050{letter-spacing:-0.888743px;}
.ls3_c01050{letter-spacing:-0.867000px;}
.ls2_c01050{letter-spacing:0.000000px;}
.ls1_c01050{letter-spacing:0.867000px;}
.ls13_c01050{letter-spacing:0.892500px;}
.ls18_c01050{letter-spacing:0.915900px;}
.ls5_c01050{letter-spacing:0.982800px;}
.ls10_c01050{letter-spacing:1.729410px;}
.ls1a_c01050{letter-spacing:1.733625px;}
.lse_c01050{letter-spacing:3.633368px;}
.ls15_c01050{letter-spacing:4.704075px;}
.lsc_c01050{letter-spacing:8.643990px;}
.ls0_c01050{letter-spacing:55.319700px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:0.000000px;}
._5_c01050{margin-left:-107.824356px;}
._8_c01050{margin-left:-30.706910px;}
._9_c01050{margin-left:-25.994856px;}
._c_c01050{margin-left:-6.527793px;}
._2_c01050{margin-left:-5.405931px;}
._4_c01050{margin-left:-4.156206px;}
._7_c01050{margin-left:-2.488593px;}
._6_c01050{margin-left:-1.239179px;}
._3_c01050{width:2.789959px;}
._a_c01050{width:4.166579px;}
._b_c01050{width:11.087089px;}
._f_c01050{width:23.663931px;}
._0_c01050{width:25.000165px;}
._d_c01050{width:26.969007px;}
._e_c01050{width:28.626525px;}
._10_c01050{width:32.094525px;}
._11_c01050{width:33.886509px;}
._1_c01050{width:712.984806px;}
.fc0_c01050{color:transparent;}
.fsf_c01050{font-size:46.500000px;}
.fse_c01050{font-size:50.250000px;}
.fs0_c01050{font-size:51.000000px;}
.fs6_c01050{font-size:51.750000px;}
.fs1_c01050{font-size:52.500000px;}
.fs3_c01050{font-size:53.250000px;}
.fs2_c01050{font-size:54.000000px;}
.fs7_c01050{font-size:54.750000px;}
.fs5_c01050{font-size:55.500000px;}
.fs9_c01050{font-size:56.250000px;}
.fs4_c01050{font-size:57.750000px;}
.fsa_c01050{font-size:58.500000px;}
.fsd_c01050{font-size:63.750000px;}
.fsc_c01050{font-size:66.000000px;}
.fsb_c01050{font-size:66.750000px;}
.fs8_c01050{font-size:68.250000px;}
.y0_c01050{bottom:0.000000px;}
.y6a_c01050{bottom:179.278410px;}
.y39_c01050{bottom:179.639805px;}
.y69_c01050{bottom:198.719535px;}
.y38_c01050{bottom:199.078425px;}
.y37_c01050{bottom:217.799325px;}
.y68_c01050{bottom:217.799535px;}
.y66_c01050{bottom:236.878965px;}
.y67_c01050{bottom:236.879535px;}
.y36_c01050{bottom:237.237945px;}
.y65_c01050{bottom:255.959400px;}
.y35_c01050{bottom:256.318410px;}
.y64_c01050{bottom:275.398635px;}
.y34_c01050{bottom:275.759535px;}
.y33_c01050{bottom:294.478635px;}
.y63_c01050{bottom:294.479550px;}
.y32_c01050{bottom:294.479805px;}
.y62_c01050{bottom:313.561185px;}
.y31_c01050{bottom:313.561425px;}
.y61_c01050{bottom:332.999790px;}
.y30_c01050{bottom:333.000045px;}
.y60_c01050{bottom:352.438410px;}
.y2f_c01050{bottom:352.799535px;}
.y2e_c01050{bottom:371.879535px;}
.y5f_c01050{bottom:390.959385px;}
.y2d_c01050{bottom:391.318935px;}
.y5e_c01050{bottom:409.319775px;}
.y2c_c01050{bottom:409.680135px;}
.y2a_c01050{bottom:429.119220px;}
.y5d_c01050{bottom:429.119265px;}
.y2b_c01050{bottom:429.119385px;}
.y29_c01050{bottom:447.840135px;}
.y28_c01050{bottom:447.840195px;}
.y5c_c01050{bottom:467.639700px;}
.y27_c01050{bottom:467.639715px;}
.y5b_c01050{bottom:486.359250px;}
.y26_c01050{bottom:486.720150px;}
.y25_c01050{bottom:505.800150px;}
.y24_c01050{bottom:505.800180px;}
.y59_c01050{bottom:524.879190px;}
.y5a_c01050{bottom:524.879970px;}
.y23_c01050{bottom:524.880645px;}
.y58_c01050{bottom:544.678695px;}
.y22_c01050{bottom:544.680135px;}
.y20_c01050{bottom:563.757495px;}
.y57_c01050{bottom:563.759145px;}
.y21_c01050{bottom:563.760135px;}
.y56_c01050{bottom:582.839580px;}
.y1f_c01050{bottom:583.196115px;}
.y1e_c01050{bottom:602.276580px;}
.y55_c01050{bottom:602.278200px;}
.y54_c01050{bottom:621.358665px;}
.y1d_c01050{bottom:621.717705px;}
.y1c_c01050{bottom:640.437270px;}
.y53_c01050{bottom:640.439100px;}
.y1b_c01050{bottom:659.517720px;}
.y52_c01050{bottom:659.519550px;}
.y51_c01050{bottom:678.240465px;}
.y1a_c01050{bottom:678.598155px;}
.y50_c01050{bottom:697.679070px;}
.y19_c01050{bottom:698.039310px;}
.y4f_c01050{bottom:716.758260px;}
.y18_c01050{bottom:717.119745px;}
.y4e_c01050{bottom:736.199415px;}
.y17_c01050{bottom:736.558365px;}
.y4d_c01050{bottom:755.279850px;}
.y16_c01050{bottom:755.638830px;}
.y4c_c01050{bottom:774.719055px;}
.y15_c01050{bottom:775.079955px;}
.y14_c01050{bottom:793.798920px;}
.y4b_c01050{bottom:813.599115px;}
.y13_c01050{bottom:813.960015px;}
.y4a_c01050{bottom:832.679070px;}
.y12_c01050{bottom:833.039985px;}
.y11_c01050{bottom:833.040960px;}
.y49_c01050{bottom:851.759040px;}
.y10_c01050{bottom:852.479580px;}
.y47_c01050{bottom:870.837825px;}
.y48_c01050{bottom:870.838905px;}
.yf_c01050{bottom:871.200480px;}
.y46_c01050{bottom:890.278980px;}
.yd_c01050{bottom:890.637810px;}
.ye_c01050{bottom:890.639100px;}
.y45_c01050{bottom:909.359415px;}
.yc_c01050{bottom:909.718275px;}
.y44_c01050{bottom:928.439880px;}
.yb_c01050{bottom:929.159415px;}
.y43_c01050{bottom:947.520315px;}
.ya_c01050{bottom:947.878965px;}
.y42_c01050{bottom:966.958920px;}
.y9_c01050{bottom:967.318155px;}
.y41_c01050{bottom:986.038875px;}
.y8_c01050{bottom:986.398620px;}
.y40_c01050{bottom:1005.479640px;}
.y7_c01050{bottom:1005.837225px;}
.y3f_c01050{bottom:1024.918950px;}
.y6_c01050{bottom:1025.278365px;}
.y5_c01050{bottom:1043.997915px;}
.y3e_c01050{bottom:1043.998905px;}
.y3d_c01050{bottom:1043.999175px;}
.y3c_c01050{bottom:1062.720105px;}
.y4_c01050{bottom:1063.078380px;}
.y3b_c01050{bottom:1082.158725px;}
.y3_c01050{bottom:1082.158815px;}
.y3a_c01050{bottom:1101.239160px;}
.y2_c01050{bottom:1101.599670px;}
.y1_c01050{bottom:1140.118740px;}
.h10_c01050{height:48.498047px;}
.hf_c01050{height:49.661133px;}
.h1_c01050{height:50.402344px;}
.h7_c01050{height:51.143555px;}
.h2_c01050{height:51.884766px;}
.h4_c01050{height:52.625977px;}
.h3_c01050{height:53.367188px;}
.h8_c01050{height:54.108398px;}
.h6_c01050{height:54.849609px;}
.ha_c01050{height:55.590820px;}
.h5_c01050{height:57.073242px;}
.hb_c01050{height:57.814453px;}
.he_c01050{height:63.002930px;}
.hd_c01050{height:65.226562px;}
.hc_c01050{height:65.967773px;}
.h9_c01050{height:67.450195px;}
.h0_c01050{height:1263.000000px;}
.w0_c01050{width:892.500000px;}
.x0_c01050{left:0.000000px;}
.x1_c01050{left:292.679100px;}
.xb_c01050{left:354.958425px;}
.x5_c01050{left:356.039160px;}
.x3_c01050{left:357.118785px;}
.x4_c01050{left:383.759535px;}
.xf_c01050{left:400.679070px;}
.x9_c01050{left:401.758530px;}
.xa_c01050{left:407.878920px;}
.xd_c01050{left:413.638500px;}
.x6_c01050{left:414.719565px;}
.x10_c01050{left:419.759085px;}
.xc_c01050{left:433.438665px;}
.xe_c01050{left:439.559100px;}
.x7_c01050{left:485.639100px;}
.x8_c01050{left:498.239220px;}
.x15_c01050{left:555.836925px;}
.x14_c01050{left:556.919535px;}
.x11_c01050{left:557.998335px;}
.x13_c01050{left:589.319820px;}
.x12_c01050{left:590.399235px;}
.x2_c01050{left:687.959385px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls14_c01050{letter-spacing:-3.998800pt;}
.ls9_c01050{letter-spacing:-3.053000pt;}
.ls1c_c01050{letter-spacing:-2.794133pt;}
.lsd_c01050{letter-spacing:-2.760333pt;}
.ls17_c01050{letter-spacing:-2.699667pt;}
.ls11_c01050{letter-spacing:-2.459500pt;}
.ls16_c01050{letter-spacing:-2.317020pt;}
.ls7_c01050{letter-spacing:-2.302933pt;}
.lsf_c01050{letter-spacing:-2.190060pt;}
.ls8_c01050{letter-spacing:-1.574880pt;}
.ls6_c01050{letter-spacing:-1.537253pt;}
.ls4_c01050{letter-spacing:-1.531133pt;}
.lsb_c01050{letter-spacing:-1.509260pt;}
.ls1b_c01050{letter-spacing:-0.925007pt;}
.ls19_c01050{letter-spacing:-0.883433pt;}
.ls12_c01050{letter-spacing:-0.850000pt;}
.lsa_c01050{letter-spacing:-0.789993pt;}
.ls3_c01050{letter-spacing:-0.770667pt;}
.ls2_c01050{letter-spacing:0.000000pt;}
.ls1_c01050{letter-spacing:0.770667pt;}
.ls13_c01050{letter-spacing:0.793333pt;}
.ls18_c01050{letter-spacing:0.814133pt;}
.ls5_c01050{letter-spacing:0.873600pt;}
.ls10_c01050{letter-spacing:1.537253pt;}
.ls1a_c01050{letter-spacing:1.541000pt;}
.lse_c01050{letter-spacing:3.229660pt;}
.ls15_c01050{letter-spacing:4.181400pt;}
.lsc_c01050{letter-spacing:7.683547pt;}
.ls0_c01050{letter-spacing:49.173067pt;}
.ws0_c01050{word-spacing:0.000000pt;}
._5_c01050{margin-left:-95.843872pt;}
._8_c01050{margin-left:-27.295031pt;}
._9_c01050{margin-left:-23.106538pt;}
._c_c01050{margin-left:-5.802482pt;}
._2_c01050{margin-left:-4.805272pt;}
._4_c01050{margin-left:-3.694405pt;}
._7_c01050{margin-left:-2.212082pt;}
._6_c01050{margin-left:-1.101492pt;}
._3_c01050{width:2.479964pt;}
._a_c01050{width:3.703626pt;}
._b_c01050{width:9.855190pt;}
._f_c01050{width:21.034605pt;}
._0_c01050{width:22.222369pt;}
._d_c01050{width:23.972451pt;}
._e_c01050{width:25.445800pt;}
._10_c01050{width:28.528466pt;}
._11_c01050{width:30.121341pt;}
._1_c01050{width:633.764272pt;}
.fsf_c01050{font-size:41.333333pt;}
.fse_c01050{font-size:44.666667pt;}
.fs0_c01050{font-size:45.333333pt;}
.fs6_c01050{font-size:46.000000pt;}
.fs1_c01050{font-size:46.666667pt;}
.fs3_c01050{font-size:47.333333pt;}
.fs2_c01050{font-size:48.000000pt;}
.fs7_c01050{font-size:48.666667pt;}
.fs5_c01050{font-size:49.333333pt;}
.fs9_c01050{font-size:50.000000pt;}
.fs4_c01050{font-size:51.333333pt;}
.fsa_c01050{font-size:52.000000pt;}
.fsd_c01050{font-size:56.666667pt;}
.fsc_c01050{font-size:58.666667pt;}
.fsb_c01050{font-size:59.333333pt;}
.fs8_c01050{font-size:60.666667pt;}
.y0_c01050{bottom:0.000000pt;}
.y6a_c01050{bottom:159.358587pt;}
.y39_c01050{bottom:159.679827pt;}
.y69_c01050{bottom:176.639587pt;}
.y38_c01050{bottom:176.958600pt;}
.y37_c01050{bottom:193.599400pt;}
.y68_c01050{bottom:193.599587pt;}
.y66_c01050{bottom:210.559080pt;}
.y67_c01050{bottom:210.559587pt;}
.y36_c01050{bottom:210.878173pt;}
.y65_c01050{bottom:227.519467pt;}
.y35_c01050{bottom:227.838587pt;}
.y64_c01050{bottom:244.798787pt;}
.y34_c01050{bottom:245.119587pt;}
.y33_c01050{bottom:261.758787pt;}
.y63_c01050{bottom:261.759600pt;}
.y32_c01050{bottom:261.759827pt;}
.y62_c01050{bottom:278.721053pt;}
.y31_c01050{bottom:278.721267pt;}
.y61_c01050{bottom:295.999813pt;}
.y30_c01050{bottom:296.000040pt;}
.y60_c01050{bottom:313.278587pt;}
.y2f_c01050{bottom:313.599587pt;}
.y2e_c01050{bottom:330.559587pt;}
.y5f_c01050{bottom:347.519453pt;}
.y2d_c01050{bottom:347.839053pt;}
.y5e_c01050{bottom:363.839800pt;}
.y2c_c01050{bottom:364.160120pt;}
.y2a_c01050{bottom:381.439307pt;}
.y5d_c01050{bottom:381.439347pt;}
.y2b_c01050{bottom:381.439453pt;}
.y29_c01050{bottom:398.080120pt;}
.y28_c01050{bottom:398.080173pt;}
.y5c_c01050{bottom:415.679733pt;}
.y27_c01050{bottom:415.679747pt;}
.y5b_c01050{bottom:432.319333pt;}
.y26_c01050{bottom:432.640133pt;}
.y25_c01050{bottom:449.600133pt;}
.y24_c01050{bottom:449.600160pt;}
.y59_c01050{bottom:466.559280pt;}
.y5a_c01050{bottom:466.559973pt;}
.y23_c01050{bottom:466.560573pt;}
.y58_c01050{bottom:484.158840pt;}
.y22_c01050{bottom:484.160120pt;}
.y20_c01050{bottom:501.117773pt;}
.y57_c01050{bottom:501.119240pt;}
.y21_c01050{bottom:501.120120pt;}
.y56_c01050{bottom:518.079627pt;}
.y1f_c01050{bottom:518.396547pt;}
.y1e_c01050{bottom:535.356960pt;}
.y55_c01050{bottom:535.358400pt;}
.y54_c01050{bottom:552.318813pt;}
.y1d_c01050{bottom:552.637960pt;}
.y1c_c01050{bottom:569.277573pt;}
.y53_c01050{bottom:569.279200pt;}
.y1b_c01050{bottom:586.237973pt;}
.y52_c01050{bottom:586.239600pt;}
.y51_c01050{bottom:602.880413pt;}
.y1a_c01050{bottom:603.198360pt;}
.y50_c01050{bottom:620.159173pt;}
.y19_c01050{bottom:620.479387pt;}
.y4f_c01050{bottom:637.118453pt;}
.y18_c01050{bottom:637.439773pt;}
.y4e_c01050{bottom:654.399480pt;}
.y17_c01050{bottom:654.718547pt;}
.y4d_c01050{bottom:671.359867pt;}
.y16_c01050{bottom:671.678960pt;}
.y4c_c01050{bottom:688.639160pt;}
.y15_c01050{bottom:688.959960pt;}
.y14_c01050{bottom:705.599040pt;}
.y4b_c01050{bottom:723.199213pt;}
.y13_c01050{bottom:723.520013pt;}
.y4a_c01050{bottom:740.159173pt;}
.y12_c01050{bottom:740.479987pt;}
.y11_c01050{bottom:740.480853pt;}
.y49_c01050{bottom:757.119147pt;}
.y10_c01050{bottom:757.759627pt;}
.y47_c01050{bottom:774.078067pt;}
.y48_c01050{bottom:774.079027pt;}
.yf_c01050{bottom:774.400427pt;}
.y46_c01050{bottom:791.359093pt;}
.yd_c01050{bottom:791.678053pt;}
.ye_c01050{bottom:791.679200pt;}
.y45_c01050{bottom:808.319480pt;}
.yc_c01050{bottom:808.638467pt;}
.y44_c01050{bottom:825.279893pt;}
.yb_c01050{bottom:825.919480pt;}
.y43_c01050{bottom:842.240280pt;}
.ya_c01050{bottom:842.559080pt;}
.y42_c01050{bottom:859.519040pt;}
.y9_c01050{bottom:859.838360pt;}
.y41_c01050{bottom:876.479000pt;}
.y8_c01050{bottom:876.798773pt;}
.y40_c01050{bottom:893.759680pt;}
.y7_c01050{bottom:894.077533pt;}
.y3f_c01050{bottom:911.039067pt;}
.y6_c01050{bottom:911.358547pt;}
.y5_c01050{bottom:927.998147pt;}
.y3e_c01050{bottom:927.999027pt;}
.y3d_c01050{bottom:927.999267pt;}
.y3c_c01050{bottom:944.640093pt;}
.y4_c01050{bottom:944.958560pt;}
.y3b_c01050{bottom:961.918867pt;}
.y3_c01050{bottom:961.918947pt;}
.y3a_c01050{bottom:978.879253pt;}
.y2_c01050{bottom:979.199707pt;}
.y1_c01050{bottom:1013.438880pt;}
.h10_c01050{height:43.109375pt;}
.hf_c01050{height:44.143229pt;}
.h1_c01050{height:44.802083pt;}
.h7_c01050{height:45.460938pt;}
.h2_c01050{height:46.119792pt;}
.h4_c01050{height:46.778646pt;}
.h3_c01050{height:47.437500pt;}
.h8_c01050{height:48.096354pt;}
.h6_c01050{height:48.755208pt;}
.ha_c01050{height:49.414063pt;}
.h5_c01050{height:50.731771pt;}
.hb_c01050{height:51.390625pt;}
.he_c01050{height:56.002604pt;}
.hd_c01050{height:57.979167pt;}
.hc_c01050{height:58.638021pt;}
.h9_c01050{height:59.955729pt;}
.h0_c01050{height:1122.666667pt;}
.w0_c01050{width:793.333333pt;}
.x0_c01050{left:0.000000pt;}
.x1_c01050{left:260.159200pt;}
.xb_c01050{left:315.518600pt;}
.x5_c01050{left:316.479253pt;}
.x3_c01050{left:317.438920pt;}
.x4_c01050{left:341.119587pt;}
.xf_c01050{left:356.159173pt;}
.x9_c01050{left:357.118693pt;}
.xa_c01050{left:362.559040pt;}
.xd_c01050{left:367.678667pt;}
.x6_c01050{left:368.639613pt;}
.x10_c01050{left:373.119187pt;}
.xc_c01050{left:385.278813pt;}
.xe_c01050{left:390.719200pt;}
.x7_c01050{left:431.679200pt;}
.x8_c01050{left:442.879307pt;}
.x15_c01050{left:494.077267pt;}
.x14_c01050{left:495.039587pt;}
.x11_c01050{left:495.998520pt;}
.x13_c01050{left:523.839840pt;}
.x12_c01050{left:524.799320pt;}
.x2_c01050{left:611.519453pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_fde33ea918d5d3681088aadf.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_720a8f0dfd9e2dc210314dc8.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01051;src:url('chunks/assets/font_bb578b01ba558b641040795a.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.364746;font-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_c01051{transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137363,0.000000,0.000000,0.250000,0,0);}
.m13_c01051{transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);}
.m7_c01051{transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146277,0.000000,0.000000,0.250000,0,0);}
.mf_c01051{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m1_c01051{transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);}
.m3_c01051{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.mb_c01051{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m5_c01051{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m2_c01051{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m4_c01051{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.me_c01051{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m10_c01051{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m1b_c01051{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m15_c01051{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m9_c01051{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m6_c01051{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m18_c01051{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m0_c01051{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m12_c01051{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m19_c01051{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.mc_c01051{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m11_c01051{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m1a_c01051{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.ma_c01051{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m8_c01051{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m16_c01051{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m14_c01051{transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);}
.m17_c01051{transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356667,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls19_c01051{letter-spacing:-7.964123px;}
.ls10_c01051{letter-spacing:-4.636800px;}
.lsf_c01051{letter-spacing:-3.693375px;}
.ls9_c01051{letter-spacing:-2.590800px;}
.ls15_c01051{letter-spacing:-2.535233px;}
.lsa_c01051{letter-spacing:-1.729410px;}
.lsb_c01051{letter-spacing:-0.930750px;}
.lsd_c01051{letter-spacing:-0.922500px;}
.ls7_c01051{letter-spacing:-0.867000px;}
.ls16_c01051{letter-spacing:-0.861000px;}
.ls12_c01051{letter-spacing:-0.851190px;}
.ls6_c01051{letter-spacing:0.000000px;}
.ls1b_c01051{letter-spacing:0.859950px;}
.ls5_c01051{letter-spacing:0.867000px;}
.ls11_c01051{letter-spacing:0.953175px;}
.ls1a_c01051{letter-spacing:1.278225px;}
.lse_c01051{letter-spacing:1.283100px;}
.ls18_c01051{letter-spacing:1.302225px;}
.ls13_c01051{letter-spacing:1.365000px;}
.ls1c_c01051{letter-spacing:1.681875px;}
.ls0_c01051{letter-spacing:1.729410px;}
.ls17_c01051{letter-spacing:1.955123px;}
.ls1d_c01051{letter-spacing:3.641400px;}
.ls2_c01051{letter-spacing:5.186700px;}
.ls4_c01051{letter-spacing:7.777500px;}
.ls14_c01051{letter-spacing:13.726800px;}
.ls1_c01051{letter-spacing:14.693100px;}
.ls3_c01051{letter-spacing:15.560100px;}
.lsc_c01051{letter-spacing:17.428725px;}
.ls8_c01051{letter-spacing:90.093750px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:0.000000px;}
._b_c01051{margin-left:-80.809293px;}
._a_c01051{margin-left:-76.397810px;}
._d_c01051{margin-left:-51.846254px;}
._5_c01051{margin-left:-7.986358px;}
._4_c01051{margin-left:-6.324138px;}
._3_c01051{margin-left:-5.100000px;}
._6_c01051{margin-left:-3.421944px;}
._7_c01051{margin-left:-1.764358px;}
._9_c01051{width:1.142538px;}
._2_c01051{width:2.361525px;}
._c_c01051{width:4.015446px;}
._8_c01051{width:5.589738px;}
._10_c01051{width:23.501007px;}
._0_c01051{width:25.000165px;}
._f_c01051{width:26.968938px;}
._13_c01051{width:28.626456px;}
._12_c01051{width:30.565942px;}
._11_c01051{width:32.223460px;}
._14_c01051{width:33.752111px;}
._e_c01051{width:35.544096px;}
._1_c01051{width:716.305373px;}
.fc0_c01051{color:transparent;}
.fs1_c01051{font-size:46.500000px;}
.fsd_c01051{font-size:47.250000px;}
.fse_c01051{font-size:48.750000px;}
.fs8_c01051{font-size:49.500000px;}
.fs7_c01051{font-size:50.250000px;}
.fs0_c01051{font-size:51.000000px;}
.fs5_c01051{font-size:51.750000px;}
.fsb_c01051{font-size:52.500000px;}
.fs3_c01051{font-size:53.250000px;}
.fsa_c01051{font-size:54.000000px;}
.fs2_c01051{font-size:54.750000px;}
.fs4_c01051{font-size:56.250000px;}
.fs9_c01051{font-size:68.250000px;}
.fs6_c01051{font-size:70.500000px;}
.fsc_c01051{font-size:72.750000px;}
.y0_c01051{bottom:0.000000px;}
.y69_c01051{bottom:181.798605px;}
.y35_c01051{bottom:181.800150px;}
.y68_c01051{bottom:201.239760px;}
.y34_c01051{bottom:201.240900px;}
.y67_c01051{bottom:219.959310px;}
.y33_c01051{bottom:220.320900px;}
.y66_c01051{bottom:239.400450px;}
.y31_c01051{bottom:239.760000px;}
.y32_c01051{bottom:239.760150px;}
.y65_c01051{bottom:258.120000px;}
.y30_c01051{bottom:258.480900px;}
.y2f_c01051{bottom:258.481380px;}
.y63_c01051{bottom:277.559970px;}
.y64_c01051{bottom:277.560750px;}
.y2e_c01051{bottom:277.920000px;}
.y62_c01051{bottom:296.640405px;}
.y2d_c01051{bottom:297.000000px;}
.y61_c01051{bottom:316.079025px;}
.y2c_c01051{bottom:316.440900px;}
.y60_c01051{bottom:335.159475px;}
.y2b_c01051{bottom:335.520465px;}
.y5f_c01051{bottom:354.239910px;}
.y2a_c01051{bottom:354.600930px;}
.y5e_c01051{bottom:373.681065px;}
.y29_c01051{bottom:373.681365px;}
.y5d_c01051{bottom:393.119685px;}
.y28_c01051{bottom:393.119985px;}
.y27_c01051{bottom:411.840585px;}
.y26_c01051{bottom:431.279850px;}
.y5c_c01051{bottom:431.640750px;}
.y5b_c01051{bottom:449.999775px;}
.y25_c01051{bottom:450.000600px;}
.y5a_c01051{bottom:469.799265px;}
.y24_c01051{bottom:469.800780px;}
.y59_c01051{bottom:488.879730px;}
.y23_c01051{bottom:488.881230px;}
.y58_c01051{bottom:508.679220px;}
.y22_c01051{bottom:508.680720px;}
.y20_c01051{bottom:527.394630px;}
.y57_c01051{bottom:527.398770px;}
.y21_c01051{bottom:527.399820px;}
.y1f_c01051{bottom:546.835755px;}
.y56_c01051{bottom:546.839925px;}
.y1e_c01051{bottom:565.916220px;}
.y55_c01051{bottom:565.920360px;}
.y1d_c01051{bottom:585.354840px;}
.y54_c01051{bottom:585.358980px;}
.y1c_c01051{bottom:604.435275px;}
.y53_c01051{bottom:604.439445px;}
.y1b_c01051{bottom:623.515725px;}
.y52_c01051{bottom:623.880570px;}
.y1a_c01051{bottom:642.597330px;}
.y51_c01051{bottom:642.600270px;}
.y19_c01051{bottom:661.316895px;}
.y50_c01051{bottom:661.680705px;}
.y18_c01051{bottom:680.397360px;}
.y4f_c01051{bottom:680.400255px;}
.y17_c01051{bottom:699.838485px;}
.y4e_c01051{bottom:699.841410px;}
.y16_c01051{bottom:718.918950px;}
.y4d_c01051{bottom:718.921845px;}
.y15_c01051{bottom:738.357555px;}
.y4c_c01051{bottom:738.360465px;}
.y14_c01051{bottom:757.437990px;}
.y4b_c01051{bottom:757.440930px;}
.y13_c01051{bottom:777.237510px;}
.y4a_c01051{bottom:777.240420px;}
.y12_c01051{bottom:796.317945px;}
.y48_c01051{bottom:796.320195px;}
.y49_c01051{bottom:796.320285px;}
.y11_c01051{bottom:815.759100px;}
.y47_c01051{bottom:815.761350px;}
.y46_c01051{bottom:834.841785px;}
.y10_c01051{bottom:835.197720px;}
.y45_c01051{bottom:854.280390px;}
.yf_c01051{bottom:854.638845px;}
.ye_c01051{bottom:873.358410px;}
.y44_c01051{bottom:873.360255px;}
.y43_c01051{bottom:892.440315px;}
.yd_c01051{bottom:892.799565px;}
.yc_c01051{bottom:911.519115px;}
.y41_c01051{bottom:911.519895px;}
.y42_c01051{bottom:911.520270px;}
.y40_c01051{bottom:930.961035px;}
.yb_c01051{bottom:931.318605px;}
.y3e_c01051{bottom:950.397885px;}
.ya_c01051{bottom:950.399070px;}
.y3f_c01051{bottom:950.400240px;}
.y3d_c01051{bottom:969.839040px;}
.y9_c01051{bottom:970.198560px;}
.y3c_c01051{bottom:988.558590px;}
.y8_c01051{bottom:988.919490px;}
.y3b_c01051{bottom:1007.999730px;}
.y7_c01051{bottom:1008.358110px;}
.y3a_c01051{bottom:1027.080180px;}
.y6_c01051{bottom:1027.438545px;}
.y39_c01051{bottom:1046.518800px;}
.y5_c01051{bottom:1046.519010px;}
.y38_c01051{bottom:1065.599235px;}
.y4_c01051{bottom:1065.599445px;}
.y37_c01051{bottom:1084.679700px;}
.y3_c01051{bottom:1084.679895px;}
.y36_c01051{bottom:1103.760135px;}
.y2_c01051{bottom:1104.121035px;}
.y1_c01051{bottom:1143.001005px;}
.hf_c01051{height:46.696289px;}
.h10_c01051{height:48.178711px;}
.h2_c01051{height:48.498047px;}
.h9_c01051{height:48.919922px;}
.h8_c01051{height:49.293091px;}
.he_c01051{height:49.661133px;}
.h1_c01051{height:50.402344px;}
.h6_c01051{height:51.143555px;}
.hc_c01051{height:51.884766px;}
.h4_c01051{height:52.625977px;}
.hb_c01051{height:53.367188px;}
.h3_c01051{height:54.108398px;}
.h5_c01051{height:55.590820px;}
.ha_c01051{height:67.450195px;}
.h7_c01051{height:69.673828px;}
.hd_c01051{height:71.897461px;}
.h0_c01051{height:1263.000000px;}
.w0_c01051{width:892.500000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:294.478635px;}
.x4_c01051{left:358.199610px;}
.x3_c01051{left:359.279250px;}
.x6_c01051{left:410.398635px;}
.xa_c01051{left:416.878320px;}
.xb_c01051{left:423.359850px;}
.x7_c01051{left:429.839535px;}
.x8_c01051{left:448.919535px;}
.x5_c01051{left:455.039985px;}
.x9_c01051{left:456.119385px;}
.xc_c01051{left:475.558635px;}
.xf_c01051{left:559.079595px;}
.xd_c01051{left:560.159415px;}
.xe_c01051{left:592.198785px;}
.x2_c01051{left:690.119985px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls19_c01051{letter-spacing:-7.079220pt;}
.ls10_c01051{letter-spacing:-4.121600pt;}
.lsf_c01051{letter-spacing:-3.283000pt;}
.ls9_c01051{letter-spacing:-2.302933pt;}
.ls15_c01051{letter-spacing:-2.253540pt;}
.lsa_c01051{letter-spacing:-1.537253pt;}
.lsb_c01051{letter-spacing:-0.827333pt;}
.lsd_c01051{letter-spacing:-0.820000pt;}
.ls7_c01051{letter-spacing:-0.770667pt;}
.ls16_c01051{letter-spacing:-0.765333pt;}
.ls12_c01051{letter-spacing:-0.756613pt;}
.ls6_c01051{letter-spacing:0.000000pt;}
.ls1b_c01051{letter-spacing:0.764400pt;}
.ls5_c01051{letter-spacing:0.770667pt;}
.ls11_c01051{letter-spacing:0.847267pt;}
.ls1a_c01051{letter-spacing:1.136200pt;}
.lse_c01051{letter-spacing:1.140533pt;}
.ls18_c01051{letter-spacing:1.157533pt;}
.ls13_c01051{letter-spacing:1.213333pt;}
.ls1c_c01051{letter-spacing:1.495000pt;}
.ls0_c01051{letter-spacing:1.537253pt;}
.ls17_c01051{letter-spacing:1.737887pt;}
.ls1d_c01051{letter-spacing:3.236800pt;}
.ls2_c01051{letter-spacing:4.610400pt;}
.ls4_c01051{letter-spacing:6.913333pt;}
.ls14_c01051{letter-spacing:12.201600pt;}
.ls1_c01051{letter-spacing:13.060533pt;}
.ls3_c01051{letter-spacing:13.831200pt;}
.lsc_c01051{letter-spacing:15.492200pt;}
.ls8_c01051{letter-spacing:80.083333pt;}
.ws0_c01051{word-spacing:0.000000pt;}
._b_c01051{margin-left:-71.830482pt;}
._a_c01051{margin-left:-67.909164pt;}
._d_c01051{margin-left:-46.085559pt;}
._5_c01051{margin-left:-7.098985pt;}
._4_c01051{margin-left:-5.621456pt;}
._3_c01051{margin-left:-4.533333pt;}
._6_c01051{margin-left:-3.041728pt;}
._7_c01051{margin-left:-1.568318pt;}
._9_c01051{width:1.015590pt;}
._2_c01051{width:2.099133pt;}
._c_c01051{width:3.569285pt;}
._8_c01051{width:4.968656pt;}
._10_c01051{width:20.889784pt;}
._0_c01051{width:22.222369pt;}
._f_c01051{width:23.972390pt;}
._13_c01051{width:25.445738pt;}
._12_c01051{width:27.169727pt;}
._11_c01051{width:28.643075pt;}
._14_c01051{width:30.001877pt;}
._e_c01051{width:31.594752pt;}
._1_c01051{width:636.715887pt;}
.fs1_c01051{font-size:41.333333pt;}
.fsd_c01051{font-size:42.000000pt;}
.fse_c01051{font-size:43.333333pt;}
.fs8_c01051{font-size:44.000000pt;}
.fs7_c01051{font-size:44.666667pt;}
.fs0_c01051{font-size:45.333333pt;}
.fs5_c01051{font-size:46.000000pt;}
.fsb_c01051{font-size:46.666667pt;}
.fs3_c01051{font-size:47.333333pt;}
.fsa_c01051{font-size:48.000000pt;}
.fs2_c01051{font-size:48.666667pt;}
.fs4_c01051{font-size:50.000000pt;}
.fs9_c01051{font-size:60.666667pt;}
.fs6_c01051{font-size:62.666667pt;}
.fsc_c01051{font-size:64.666667pt;}
.y0_c01051{bottom:0.000000pt;}
.y69_c01051{bottom:161.598760pt;}
.y35_c01051{bottom:161.600133pt;}
.y68_c01051{bottom:178.879787pt;}
.y34_c01051{bottom:178.880800pt;}
.y67_c01051{bottom:195.519387pt;}
.y33_c01051{bottom:195.840800pt;}
.y66_c01051{bottom:212.800400pt;}
.y31_c01051{bottom:213.120000pt;}
.y32_c01051{bottom:213.120133pt;}
.y65_c01051{bottom:229.440000pt;}
.y30_c01051{bottom:229.760800pt;}
.y2f_c01051{bottom:229.761227pt;}
.y63_c01051{bottom:246.719973pt;}
.y64_c01051{bottom:246.720667pt;}
.y2e_c01051{bottom:247.040000pt;}
.y62_c01051{bottom:263.680360pt;}
.y2d_c01051{bottom:264.000000pt;}
.y61_c01051{bottom:280.959133pt;}
.y2c_c01051{bottom:281.280800pt;}
.y60_c01051{bottom:297.919533pt;}
.y2b_c01051{bottom:298.240413pt;}
.y5f_c01051{bottom:314.879920pt;}
.y2a_c01051{bottom:315.200827pt;}
.y5e_c01051{bottom:332.160947pt;}
.y29_c01051{bottom:332.161213pt;}
.y5d_c01051{bottom:349.439720pt;}
.y28_c01051{bottom:349.439987pt;}
.y27_c01051{bottom:366.080520pt;}
.y26_c01051{bottom:383.359867pt;}
.y5c_c01051{bottom:383.680667pt;}
.y5b_c01051{bottom:399.999800pt;}
.y25_c01051{bottom:400.000533pt;}
.y5a_c01051{bottom:417.599347pt;}
.y24_c01051{bottom:417.600693pt;}
.y59_c01051{bottom:434.559760pt;}
.y23_c01051{bottom:434.561093pt;}
.y58_c01051{bottom:452.159307pt;}
.y22_c01051{bottom:452.160640pt;}
.y20_c01051{bottom:468.795227pt;}
.y57_c01051{bottom:468.798907pt;}
.y21_c01051{bottom:468.799840pt;}
.y1f_c01051{bottom:486.076227pt;}
.y56_c01051{bottom:486.079933pt;}
.y1e_c01051{bottom:503.036640pt;}
.y55_c01051{bottom:503.040320pt;}
.y1d_c01051{bottom:520.315413pt;}
.y54_c01051{bottom:520.319093pt;}
.y1c_c01051{bottom:537.275800pt;}
.y53_c01051{bottom:537.279507pt;}
.y1b_c01051{bottom:554.236200pt;}
.y52_c01051{bottom:554.560507pt;}
.y1a_c01051{bottom:571.197627pt;}
.y51_c01051{bottom:571.200240pt;}
.y19_c01051{bottom:587.837240pt;}
.y50_c01051{bottom:588.160627pt;}
.y18_c01051{bottom:604.797653pt;}
.y4f_c01051{bottom:604.800227pt;}
.y17_c01051{bottom:622.078653pt;}
.y4e_c01051{bottom:622.081253pt;}
.y16_c01051{bottom:639.039067pt;}
.y4d_c01051{bottom:639.041640pt;}
.y15_c01051{bottom:656.317827pt;}
.y4c_c01051{bottom:656.320413pt;}
.y14_c01051{bottom:673.278213pt;}
.y4b_c01051{bottom:673.280827pt;}
.y13_c01051{bottom:690.877787pt;}
.y4a_c01051{bottom:690.880373pt;}
.y12_c01051{bottom:707.838173pt;}
.y48_c01051{bottom:707.840173pt;}
.y49_c01051{bottom:707.840253pt;}
.y11_c01051{bottom:725.119200pt;}
.y47_c01051{bottom:725.121200pt;}
.y46_c01051{bottom:742.081587pt;}
.y10_c01051{bottom:742.397973pt;}
.y45_c01051{bottom:759.360347pt;}
.yf_c01051{bottom:759.678973pt;}
.ye_c01051{bottom:776.318587pt;}
.y44_c01051{bottom:776.320227pt;}
.y43_c01051{bottom:793.280280pt;}
.yd_c01051{bottom:793.599613pt;}
.yc_c01051{bottom:810.239213pt;}
.y41_c01051{bottom:810.239907pt;}
.y42_c01051{bottom:810.240240pt;}
.y40_c01051{bottom:827.520920pt;}
.yb_c01051{bottom:827.838760pt;}
.y3e_c01051{bottom:844.798120pt;}
.ya_c01051{bottom:844.799173pt;}
.y3f_c01051{bottom:844.800213pt;}
.y3d_c01051{bottom:862.079147pt;}
.y9_c01051{bottom:862.398720pt;}
.y3c_c01051{bottom:878.718747pt;}
.y8_c01051{bottom:879.039547pt;}
.y3b_c01051{bottom:895.999760pt;}
.y7_c01051{bottom:896.318320pt;}
.y3a_c01051{bottom:912.960160pt;}
.y6_c01051{bottom:913.278707pt;}
.y39_c01051{bottom:930.238933pt;}
.y5_c01051{bottom:930.239120pt;}
.y38_c01051{bottom:947.199320pt;}
.y4_c01051{bottom:947.199507pt;}
.y37_c01051{bottom:964.159733pt;}
.y3_c01051{bottom:964.159907pt;}
.y36_c01051{bottom:981.120120pt;}
.y2_c01051{bottom:981.440920pt;}
.y1_c01051{bottom:1016.000893pt;}
.hf_c01051{height:41.507812pt;}
.h10_c01051{height:42.825521pt;}
.h2_c01051{height:43.109375pt;}
.h9_c01051{height:43.484375pt;}
.h8_c01051{height:43.816081pt;}
.he_c01051{height:44.143229pt;}
.h1_c01051{height:44.802083pt;}
.h6_c01051{height:45.460938pt;}
.hc_c01051{height:46.119792pt;}
.h4_c01051{height:46.778646pt;}
.hb_c01051{height:47.437500pt;}
.h3_c01051{height:48.096354pt;}
.h5_c01051{height:49.414063pt;}
.ha_c01051{height:59.955729pt;}
.h7_c01051{height:61.932292pt;}
.hd_c01051{height:63.908854pt;}
.h0_c01051{height:1122.666667pt;}
.w0_c01051{width:793.333333pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:261.758787pt;}
.x4_c01051{left:318.399653pt;}
.x3_c01051{left:319.359333pt;}
.x6_c01051{left:364.798787pt;}
.xa_c01051{left:370.558507pt;}
.xb_c01051{left:376.319867pt;}
.x7_c01051{left:382.079587pt;}
.x8_c01051{left:399.039587pt;}
.x5_c01051{left:404.479987pt;}
.x9_c01051{left:405.439453pt;}
.xc_c01051{left:422.718787pt;}
.xf_c01051{left:496.959640pt;}
.xd_c01051{left:497.919480pt;}
.xe_c01051{left:526.398920pt;}
.x2_c01051{left:613.439987pt;}
}





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

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_b068b5e5a3331522e316edb4.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_2abc574bf33acfc07091188f.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_c66826e6dba64a38cb0ef46a.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.364746;font-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_c01052{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m5_c01052{transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147727,0.000000,0.000000,0.250000,0,0);}
.m8_c01052{transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);}
.m2_c01052{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m15_c01052{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.ma_c01052{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.me_c01052{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m13_c01052{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m10_c01052{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m1_c01052{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);}
.m6_c01052{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.mf_c01052{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m11_c01052{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m14_c01052{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m4_c01052{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m0_c01052{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m7_c01052{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m12_c01052{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.mb_c01052{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.md_c01052{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.mc_c01052{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m3_c01052{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.lsc_c01052{letter-spacing:-5.855310px;}
.ls10_c01052{letter-spacing:-4.772250px;}
.ls6_c01052{letter-spacing:-4.182000px;}
.ls11_c01052{letter-spacing:-4.031325px;}
.ls7_c01052{letter-spacing:-3.345600px;}
.ls12_c01052{letter-spacing:-3.173625px;}
.ls13_c01052{letter-spacing:-3.037125px;}
.ls2_c01052{letter-spacing:-2.508690px;}
.lsa_c01052{letter-spacing:-2.437208px;}
.ls14_c01052{letter-spacing:-1.747133px;}
.ls3_c01052{letter-spacing:-1.673310px;}
.lsb_c01052{letter-spacing:-1.671525px;}
.ls15_c01052{letter-spacing:-1.647300px;}
.lsf_c01052{letter-spacing:-1.639950px;}
.ls18_c01052{letter-spacing:-1.064018px;}
.ls16_c01052{letter-spacing:-1.040633px;}
.ls9_c01052{letter-spacing:-0.888743px;}
.ls17_c01052{letter-spacing:-0.853035px;}
.ls1_c01052{letter-spacing:-0.836400px;}
.ls4_c01052{letter-spacing:0.000000px;}
.lse_c01052{letter-spacing:0.836400px;}
.ls5_c01052{letter-spacing:1.221675px;}
.ls8_c01052{letter-spacing:1.267200px;}
.ls0_c01052{letter-spacing:25.082310px;}
.lsd_c01052{letter-spacing:29.649600px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01052{word-spacing:0.000000px;}
._6_c01052{margin-left:-56.169000px;}
._3_c01052{margin-left:-17.054199px;}
._b_c01052{margin-left:-11.503251px;}
._10_c01052{margin-left:-10.297251px;}
._a_c01052{margin-left:-8.695617px;}
._f_c01052{margin-left:-6.956668px;}
._8_c01052{margin-left:-4.615684px;}
._7_c01052{margin-left:-2.876734px;}
._e_c01052{margin-left:-1.783846px;}
._4_c01052{width:1.378087px;}
._2_c01052{width:3.060945px;}
._5_c01052{width:4.821440px;}
._9_c01052{width:6.601298px;}
._c_c01052{width:9.365473px;}
._d_c01052{width:10.938990px;}
._16_c01052{width:22.067850px;}
._0_c01052{width:24.281083px;}
._13_c01052{width:25.418066px;}
._12_c01052{width:27.165008px;}
._11_c01052{width:30.367340px;}
._15_c01052{width:31.968840px;}
._17_c01052{width:33.708860px;}
._14_c01052{width:35.454866px;}
._18_c01052{width:338.538911px;}
._1_c01052{width:694.274914px;}
.fc0_c01052{color:transparent;}
.fsa_c01052{font-size:42.750000px;}
.fs8_c01052{font-size:43.500000px;}
.fs0_c01052{font-size:51.000000px;}
.fs6_c01052{font-size:51.750000px;}
.fs9_c01052{font-size:52.500000px;}
.fs5_c01052{font-size:53.250000px;}
.fs3_c01052{font-size:54.000000px;}
.fs1_c01052{font-size:56.250000px;}
.fs4_c01052{font-size:66.000000px;}
.fsc_c01052{font-size:66.750000px;}
.fs2_c01052{font-size:68.250000px;}
.fsb_c01052{font-size:69.750000px;}
.fs7_c01052{font-size:72.000000px;}
.y0_c01052{bottom:0.000000px;}
.y6a_c01052{bottom:182.879235px;}
.y69_c01052{bottom:201.600150px;}
.y36_c01052{bottom:201.958875px;}
.y68_c01052{bottom:220.680150px;}
.y67_c01052{bottom:220.680705px;}
.y35_c01052{bottom:221.039340px;}
.y66_c01052{bottom:240.119310px;}
.y34_c01052{bottom:240.480465px;}
.y65_c01052{bottom:258.840225px;}
.y33_c01052{bottom:259.200030px;}
.y64_c01052{bottom:278.278845px;}
.y32_c01052{bottom:278.280480px;}
.y63_c01052{bottom:296.999775px;}
.y31_c01052{bottom:297.360930px;}
.y62_c01052{bottom:316.440900px;}
.y30_c01052{bottom:316.442550px;}
.y61_c01052{bottom:335.520750px;}
.y2f_c01052{bottom:335.522985px;}
.y5f_c01052{bottom:354.599940px;}
.y60_c01052{bottom:354.600750px;}
.y2e_c01052{bottom:354.961605px;}
.y5e_c01052{bottom:373.680405px;}
.y2d_c01052{bottom:373.682535px;}
.y5d_c01052{bottom:393.479895px;}
.y2c_c01052{bottom:393.482025px;}
.y5c_c01052{bottom:412.560360px;}
.y2b_c01052{bottom:412.920645px;}
.y5b_c01052{bottom:432.358500px;}
.y2a_c01052{bottom:432.359250px;}
.y5a_c01052{bottom:451.079400px;}
.y29_c01052{bottom:451.080000px;}
.y59_c01052{bottom:470.878920px;}
.y28_c01052{bottom:470.879535px;}
.y58_c01052{bottom:489.959355px;}
.y26_c01052{bottom:489.959535px;}
.y27_c01052{bottom:489.959970px;}
.y57_c01052{bottom:509.039820px;}
.y25_c01052{bottom:509.039985px;}
.y24_c01052{bottom:509.040315px;}
.y56_c01052{bottom:527.760720px;}
.y23_c01052{bottom:527.761230px;}
.y55_c01052{bottom:547.199415px;}
.y22_c01052{bottom:547.199850px;}
.y21_c01052{bottom:566.279850px;}
.y1f_c01052{bottom:585.719970px;}
.y20_c01052{bottom:585.720750px;}
.y54_c01052{bottom:604.800570px;}
.y53_c01052{bottom:604.800780px;}
.y1e_c01052{bottom:605.158590px;}
.y52_c01052{bottom:624.239385px;}
.y1d_c01052{bottom:624.599715px;}
.y1c_c01052{bottom:643.319280px;}
.y51_c01052{bottom:643.319820px;}
.y1b_c01052{bottom:662.399730px;}
.y50_c01052{bottom:662.399820px;}
.y4f_c01052{bottom:681.479250px;}
.y1a_c01052{bottom:681.480165px;}
.y4e_c01052{bottom:700.920405px;}
.y19_c01052{bottom:701.279685px;}
.y18_c01052{bottom:720.000600px;}
.y4d_c01052{bottom:720.000840px;}
.y4c_c01052{bottom:739.439460px;}
.y17_c01052{bottom:739.439670px;}
.y4b_c01052{bottom:758.160390px;}
.y16_c01052{bottom:758.517285px;}
.y15_c01052{bottom:777.597750px;}
.y4a_c01052{bottom:777.599010px;}
.y14_c01052{bottom:797.038875px;}
.y49_c01052{bottom:797.040135px;}
.y13_c01052{bottom:816.477495px;}
.y48_c01052{bottom:816.478755px;}
.y47_c01052{bottom:835.559205px;}
.y12_c01052{bottom:835.918650px;}
.y46_c01052{bottom:854.639655px;}
.y11_c01052{bottom:854.999085px;}
.y44_c01052{bottom:873.717840px;}
.y45_c01052{bottom:873.719520px;}
.y10_c01052{bottom:874.079550px;}
.y43_c01052{bottom:893.158980px;}
.yf_c01052{bottom:893.879040px;}
.y42_c01052{bottom:911.878530px;}
.ye_c01052{bottom:912.598590px;}
.y41_c01052{bottom:931.319685px;}
.yd_c01052{bottom:931.679055px;}
.y40_c01052{bottom:950.039250px;}
.yc_c01052{bottom:950.759490px;}
.y3f_c01052{bottom:969.838740px;}
.ya_c01052{bottom:970.199940px;}
.yb_c01052{bottom:970.200435px;}
.y3e_c01052{bottom:988.559670px;}
.y9_c01052{bottom:988.919490px;}
.y8_c01052{bottom:988.919610px;}
.y3d_c01052{bottom:1007.640105px;}
.y7_c01052{bottom:1008.719130px;}
.y3c_c01052{bottom:1026.720150px;}
.y6_c01052{bottom:1027.440030px;}
.y3a_c01052{bottom:1045.799700px;}
.y3b_c01052{bottom:1045.800105px;}
.y5_c01052{bottom:1046.878650px;}
.y39_c01052{bottom:1064.880150px;}
.y4_c01052{bottom:1065.959100px;}
.y38_c01052{bottom:1084.318770px;}
.y3_c01052{bottom:1085.400240px;}
.y37_c01052{bottom:1103.399205px;}
.y2_c01052{bottom:1104.839535px;}
.y1_c01052{bottom:1143.360255px;}
.hb_c01052{height:44.586914px;}
.h9_c01052{height:45.369141px;}
.h1_c01052{height:50.402344px;}
.h7_c01052{height:51.143555px;}
.ha_c01052{height:51.884766px;}
.h6_c01052{height:52.625977px;}
.h2_c01052{height:55.590820px;}
.h4_c01052{height:56.320312px;}
.h5_c01052{height:65.226562px;}
.hd_c01052{height:65.967773px;}
.h3_c01052{height:67.450195px;}
.hc_c01052{height:68.932617px;}
.h8_c01052{height:71.156250px;}
.h0_c01052{height:1263.000000px;}
.w0_c01052{width:892.500000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:298.079385px;}
.x4_c01052{left:361.799805px;}
.x3_c01052{left:362.878350px;}
.x9_c01052{left:406.438665px;}
.x8_c01052{left:413.279250px;}
.x5_c01052{left:416.159820px;}
.x7_c01052{left:420.479235px;}
.x6_c01052{left:427.319820px;}
.xa_c01052{left:458.279850px;}
.xd_c01052{left:562.319910px;}
.xb_c01052{left:563.399985px;}
.xe_c01052{left:592.198785px;}
.xc_c01052{left:595.799520px;}
.x2_c01052{left:693.719100px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.lsc_c01052{letter-spacing:-5.204720pt;}
.ls10_c01052{letter-spacing:-4.242000pt;}
.ls6_c01052{letter-spacing:-3.717333pt;}
.ls11_c01052{letter-spacing:-3.583400pt;}
.ls7_c01052{letter-spacing:-2.973867pt;}
.ls12_c01052{letter-spacing:-2.821000pt;}
.ls13_c01052{letter-spacing:-2.699667pt;}
.ls2_c01052{letter-spacing:-2.229947pt;}
.lsa_c01052{letter-spacing:-2.166407pt;}
.ls14_c01052{letter-spacing:-1.553007pt;}
.ls3_c01052{letter-spacing:-1.487387pt;}
.lsb_c01052{letter-spacing:-1.485800pt;}
.ls15_c01052{letter-spacing:-1.464267pt;}
.lsf_c01052{letter-spacing:-1.457733pt;}
.ls18_c01052{letter-spacing:-0.945793pt;}
.ls16_c01052{letter-spacing:-0.925007pt;}
.ls9_c01052{letter-spacing:-0.789993pt;}
.ls17_c01052{letter-spacing:-0.758253pt;}
.ls1_c01052{letter-spacing:-0.743467pt;}
.ls4_c01052{letter-spacing:0.000000pt;}
.lse_c01052{letter-spacing:0.743467pt;}
.ls5_c01052{letter-spacing:1.085933pt;}
.ls8_c01052{letter-spacing:1.126400pt;}
.ls0_c01052{letter-spacing:22.295387pt;}
.lsd_c01052{letter-spacing:26.355200pt;}
.ws0_c01052{word-spacing:0.000000pt;}
._6_c01052{margin-left:-49.928000pt;}
._3_c01052{margin-left:-15.159288pt;}
._b_c01052{margin-left:-10.225112pt;}
._10_c01052{margin-left:-9.153112pt;}
._a_c01052{margin-left:-7.729437pt;}
._f_c01052{margin-left:-6.183704pt;}
._8_c01052{margin-left:-4.102830pt;}
._7_c01052{margin-left:-2.557097pt;}
._e_c01052{margin-left:-1.585641pt;}
._4_c01052{width:1.224966pt;}
._2_c01052{width:2.720840pt;}
._5_c01052{width:4.285724pt;}
._9_c01052{width:5.867820pt;}
._c_c01052{width:8.324865pt;}
._d_c01052{width:9.723547pt;}
._16_c01052{width:19.615867pt;}
._0_c01052{width:21.583185pt;}
._13_c01052{width:22.593836pt;}
._12_c01052{width:24.146674pt;}
._11_c01052{width:26.993191pt;}
._15_c01052{width:28.416747pt;}
._17_c01052{width:29.963431pt;}
._14_c01052{width:31.515436pt;}
._18_c01052{width:300.923477pt;}
._1_c01052{width:617.133257pt;}
.fsa_c01052{font-size:38.000000pt;}
.fs8_c01052{font-size:38.666667pt;}
.fs0_c01052{font-size:45.333333pt;}
.fs6_c01052{font-size:46.000000pt;}
.fs9_c01052{font-size:46.666667pt;}
.fs5_c01052{font-size:47.333333pt;}
.fs3_c01052{font-size:48.000000pt;}
.fs1_c01052{font-size:50.000000pt;}
.fs4_c01052{font-size:58.666667pt;}
.fsc_c01052{font-size:59.333333pt;}
.fs2_c01052{font-size:60.666667pt;}
.fsb_c01052{font-size:62.000000pt;}
.fs7_c01052{font-size:64.000000pt;}
.y0_c01052{bottom:0.000000pt;}
.y6a_c01052{bottom:162.559320pt;}
.y69_c01052{bottom:179.200133pt;}
.y36_c01052{bottom:179.519000pt;}
.y68_c01052{bottom:196.160133pt;}
.y67_c01052{bottom:196.160627pt;}
.y35_c01052{bottom:196.479413pt;}
.y66_c01052{bottom:213.439387pt;}
.y34_c01052{bottom:213.760413pt;}
.y65_c01052{bottom:230.080200pt;}
.y33_c01052{bottom:230.400027pt;}
.y64_c01052{bottom:247.358973pt;}
.y32_c01052{bottom:247.360427pt;}
.y63_c01052{bottom:263.999800pt;}
.y31_c01052{bottom:264.320827pt;}
.y62_c01052{bottom:281.280800pt;}
.y30_c01052{bottom:281.282267pt;}
.y61_c01052{bottom:298.240667pt;}
.y2f_c01052{bottom:298.242653pt;}
.y5f_c01052{bottom:315.199947pt;}
.y60_c01052{bottom:315.200667pt;}
.y2e_c01052{bottom:315.521427pt;}
.y5e_c01052{bottom:332.160360pt;}
.y2d_c01052{bottom:332.162253pt;}
.y5d_c01052{bottom:349.759907pt;}
.y2c_c01052{bottom:349.761800pt;}
.y5c_c01052{bottom:366.720320pt;}
.y2b_c01052{bottom:367.040573pt;}
.y5b_c01052{bottom:384.318667pt;}
.y2a_c01052{bottom:384.319333pt;}
.y5a_c01052{bottom:400.959467pt;}
.y29_c01052{bottom:400.960000pt;}
.y59_c01052{bottom:418.559040pt;}
.y28_c01052{bottom:418.559587pt;}
.y58_c01052{bottom:435.519427pt;}
.y26_c01052{bottom:435.519587pt;}
.y27_c01052{bottom:435.519973pt;}
.y57_c01052{bottom:452.479840pt;}
.y25_c01052{bottom:452.479987pt;}
.y24_c01052{bottom:452.480280pt;}
.y56_c01052{bottom:469.120640pt;}
.y23_c01052{bottom:469.121093pt;}
.y55_c01052{bottom:486.399480pt;}
.y22_c01052{bottom:486.399867pt;}
.y21_c01052{bottom:503.359867pt;}
.y1f_c01052{bottom:520.639973pt;}
.y20_c01052{bottom:520.640667pt;}
.y54_c01052{bottom:537.600507pt;}
.y53_c01052{bottom:537.600693pt;}
.y1e_c01052{bottom:537.918747pt;}
.y52_c01052{bottom:554.879453pt;}
.y1d_c01052{bottom:555.199747pt;}
.y1c_c01052{bottom:571.839360pt;}
.y51_c01052{bottom:571.839840pt;}
.y1b_c01052{bottom:588.799760pt;}
.y50_c01052{bottom:588.799840pt;}
.y4f_c01052{bottom:605.759333pt;}
.y1a_c01052{bottom:605.760147pt;}
.y4e_c01052{bottom:623.040360pt;}
.y19_c01052{bottom:623.359720pt;}
.y18_c01052{bottom:640.000533pt;}
.y4d_c01052{bottom:640.000747pt;}
.y4c_c01052{bottom:657.279520pt;}
.y17_c01052{bottom:657.279707pt;}
.y4b_c01052{bottom:673.920347pt;}
.y16_c01052{bottom:674.237587pt;}
.y15_c01052{bottom:691.198000pt;}
.y4a_c01052{bottom:691.199120pt;}
.y14_c01052{bottom:708.479000pt;}
.y49_c01052{bottom:708.480120pt;}
.y13_c01052{bottom:725.757773pt;}
.y48_c01052{bottom:725.758893pt;}
.y47_c01052{bottom:742.719293pt;}
.y12_c01052{bottom:743.038800pt;}
.y46_c01052{bottom:759.679693pt;}
.y11_c01052{bottom:759.999187pt;}
.y44_c01052{bottom:776.638080pt;}
.y45_c01052{bottom:776.639573pt;}
.y10_c01052{bottom:776.959600pt;}
.y43_c01052{bottom:793.919093pt;}
.yf_c01052{bottom:794.559147pt;}
.y42_c01052{bottom:810.558693pt;}
.ye_c01052{bottom:811.198747pt;}
.y41_c01052{bottom:827.839720pt;}
.yd_c01052{bottom:828.159160pt;}
.y40_c01052{bottom:844.479333pt;}
.yc_c01052{bottom:845.119547pt;}
.y3f_c01052{bottom:862.078880pt;}
.ya_c01052{bottom:862.399947pt;}
.yb_c01052{bottom:862.400387pt;}
.y3e_c01052{bottom:878.719707pt;}
.y9_c01052{bottom:879.039547pt;}
.y8_c01052{bottom:879.039653pt;}
.y3d_c01052{bottom:895.680093pt;}
.y7_c01052{bottom:896.639227pt;}
.y3c_c01052{bottom:912.640133pt;}
.y6_c01052{bottom:913.280027pt;}
.y3a_c01052{bottom:929.599733pt;}
.y3b_c01052{bottom:929.600093pt;}
.y5_c01052{bottom:930.558800pt;}
.y39_c01052{bottom:946.560133pt;}
.y4_c01052{bottom:947.519200pt;}
.y38_c01052{bottom:963.838907pt;}
.y3_c01052{bottom:964.800213pt;}
.y37_c01052{bottom:980.799293pt;}
.y2_c01052{bottom:982.079587pt;}
.y1_c01052{bottom:1016.320227pt;}
.hb_c01052{height:39.632812pt;}
.h9_c01052{height:40.328125pt;}
.h1_c01052{height:44.802083pt;}
.h7_c01052{height:45.460938pt;}
.ha_c01052{height:46.119792pt;}
.h6_c01052{height:46.778646pt;}
.h2_c01052{height:49.414063pt;}
.h4_c01052{height:50.062500pt;}
.h5_c01052{height:57.979167pt;}
.hd_c01052{height:58.638021pt;}
.h3_c01052{height:59.955729pt;}
.hc_c01052{height:61.273438pt;}
.h8_c01052{height:63.250000pt;}
.h0_c01052{height:1122.666667pt;}
.w0_c01052{width:793.333333pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:264.959453pt;}
.x4_c01052{left:321.599827pt;}
.x3_c01052{left:322.558533pt;}
.x9_c01052{left:361.278813pt;}
.x8_c01052{left:367.359333pt;}
.x5_c01052{left:369.919840pt;}
.x7_c01052{left:373.759320pt;}
.x6_c01052{left:379.839840pt;}
.xa_c01052{left:407.359867pt;}
.xd_c01052{left:499.839920pt;}
.xb_c01052{left:500.799987pt;}
.xe_c01052{left:526.398920pt;}
.xc_c01052{left:529.599573pt;}
.x2_c01052{left:616.639200pt;}
}





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

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_7e80b5382fe3e765604936f6.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_a055e520a73d9a77d4a1b09c.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_22b857863dfe9eaeccb0ebfd.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_a343256d8e78086bd090a7b7.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01053;src:url('chunks/assets/font_7ec5fd3bd35640b4bde35061.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01053;src:url('chunks/assets/font_628bfdf27b07d999728ed412.woff2')format("woff");}.ff6_c01053{font-family:ff6_c01053;line-height:1.364746;font-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_c01053{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m11_c01053{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.mf_c01053{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m6_c01053{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m4_c01053{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m2_c01053{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.ma_c01053{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m5_c01053{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_c01053{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m9_c01053{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m3_c01053{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.me_c01053{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m0_c01053{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.mb_c01053{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.md_c01053{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m7_c01053{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.mc_c01053{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m8_c01053{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_c01053{vertical-align:0.000000px;}
.lsc_c01053{letter-spacing:-4.575600px;}
.ls7_c01053{letter-spacing:-4.347698px;}
.ls10_c01053{letter-spacing:-4.329450px;}
.lsa_c01053{letter-spacing:-4.008300px;}
.ls11_c01053{letter-spacing:-3.037125px;}
.ls9_c01053{letter-spacing:-2.678063px;}
.ls8_c01053{letter-spacing:-2.590800px;}
.lsf_c01053{letter-spacing:-2.461665px;}
.lse_c01053{letter-spacing:-1.788750px;}
.ls6_c01053{letter-spacing:-1.729410px;}
.ls12_c01053{letter-spacing:-1.040633px;}
.ls4_c01053{letter-spacing:-0.888743px;}
.ls2_c01053{letter-spacing:-0.867000px;}
.ls3_c01053{letter-spacing:0.000000px;}
.ls5_c01053{letter-spacing:0.867000px;}
.lsb_c01053{letter-spacing:0.879750px;}
.ls1_c01053{letter-spacing:1.729410px;}
.lsd_c01053{letter-spacing:2.590800px;}
.ls13_c01053{letter-spacing:6.145050px;}
.ls0_c01053{letter-spacing:15.560100px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01053{word-spacing:0.000000px;}
._6_c01053{margin-left:-38.592028px;}
._4_c01053{margin-left:-8.195544px;}
._0_c01053{margin-left:-6.022841px;}
._5_c01053{margin-left:-3.840456px;}
._1_c01053{margin-left:-1.239317px;}
._2_c01053{width:1.371744px;}
._3_c01053{width:5.358795px;}
._c_c01053{width:23.653835px;}
._9_c01053{width:25.316054px;}
._7_c01053{width:26.968938px;}
._a_c01053{width:28.626456px;}
._8_c01053{width:32.104621px;}
._b_c01053{width:33.886509px;}
.fc0_c01053{color:transparent;}
.fs8_c01053{font-size:43.500000px;}
.fs9_c01053{font-size:45.000000px;}
.fs5_c01053{font-size:46.500000px;}
.fs0_c01053{font-size:51.000000px;}
.fs7_c01053{font-size:51.750000px;}
.fs1_c01053{font-size:53.250000px;}
.fs2_c01053{font-size:54.750000px;}
.fs4_c01053{font-size:56.250000px;}
.fs3_c01053{font-size:57.000000px;}
.fsa_c01053{font-size:66.750000px;}
.fs6_c01053{font-size:75.000000px;}
.y0_c01053{bottom:0.000000px;}
.y39_c01053{bottom:186.840225px;}
.y6e_c01053{bottom:187.196955px;}
.y38_c01053{bottom:206.639745px;}
.y6d_c01053{bottom:206.996475px;}
.y37_c01053{bottom:225.720180px;}
.y6c_c01053{bottom:226.076910px;}
.y36_c01053{bottom:245.158785px;}
.y6b_c01053{bottom:245.518065px;}
.y34_c01053{bottom:264.237945px;}
.y35_c01053{bottom:264.238785px;}
.y6a_c01053{bottom:264.598500px;}
.y69_c01053{bottom:283.678965px;}
.y33_c01053{bottom:283.679070px;}
.y31_c01053{bottom:302.395860px;}
.y68_c01053{bottom:302.398515px;}
.y32_c01053{bottom:302.398635px;}
.y30_c01053{bottom:321.837015px;}
.y67_c01053{bottom:322.198020px;}
.y2f_c01053{bottom:340.557930px;}
.y66_c01053{bottom:340.918950px;}
.y2e_c01053{bottom:359.638395px;}
.y65_c01053{bottom:359.999385px;}
.y2d_c01053{bottom:378.718830px;}
.y64_c01053{bottom:378.720135px;}
.y2c_c01053{bottom:398.157435px;}
.y63_c01053{bottom:398.158335px;}
.y2b_c01053{bottom:416.878365px;}
.y62_c01053{bottom:417.238785px;}
.y2a_c01053{bottom:435.958815px;}
.y61_c01053{bottom:436.319235px;}
.y29_c01053{bottom:455.039265px;}
.y60_c01053{bottom:455.398275px;}
.y28_c01053{bottom:474.838755px;}
.y5f_c01053{bottom:475.559835px;}
.y27_c01053{bottom:494.277375px;}
.y5e_c01053{bottom:494.998440px;}
.y26_c01053{bottom:513.718530px;}
.y5d_c01053{bottom:514.437060px;}
.y25_c01053{bottom:532.798965px;}
.y5c_c01053{bottom:533.518680px;}
.y24_c01053{bottom:552.598485px;}
.y5b_c01053{bottom:552.957300px;}
.y23_c01053{bottom:571.318035px;}
.y5a_c01053{bottom:571.678200px;}
.y22_c01053{bottom:590.398470px;}
.y59_c01053{bottom:590.758665px;}
.y21_c01053{bottom:609.478935px;}
.y58_c01053{bottom:609.839100px;}
.y1f_c01053{bottom:628.198245px;}
.y20_c01053{bottom:628.199850px;}
.y57_c01053{bottom:628.919565px;}
.y1e_c01053{bottom:647.636850px;}
.y56_c01053{bottom:648.000000px;}
.y1d_c01053{bottom:667.078005px;}
.y55_c01053{bottom:667.800150px;}
.y1c_c01053{bottom:686.158440px;}
.y53_c01053{bottom:686.518380px;}
.y54_c01053{bottom:686.519070px;}
.y1b_c01053{bottom:705.238905px;}
.y52_c01053{bottom:705.598845px;}
.y1a_c01053{bottom:724.677525px;}
.y51_c01053{bottom:725.039985px;}
.y19_c01053{bottom:744.118650px;}
.y50_c01053{bottom:744.119985px;}
.y18_c01053{bottom:763.199115px;}
.y4f_c01053{bottom:763.199850px;}
.y17_c01053{bottom:781.918665px;}
.y4e_c01053{bottom:782.639220px;}
.y16_c01053{bottom:801.359805px;}
.y15_c01053{bottom:801.359910px;}
.y4d_c01053{bottom:801.719655px;}
.y14_c01053{bottom:820.798530px;}
.y4c_c01053{bottom:821.519160px;}
.y13_c01053{bottom:839.878965px;}
.y4b_c01053{bottom:840.240075px;}
.y11_c01053{bottom:859.678590px;}
.y12_c01053{bottom:859.679070px;}
.y4a_c01053{bottom:860.039595px;}
.yf_c01053{bottom:878.758350px;}
.y10_c01053{bottom:878.759040px;}
.y49_c01053{bottom:879.120030px;}
.ye_c01053{bottom:897.838785px;}
.y47_c01053{bottom:898.199415px;}
.y48_c01053{bottom:898.199805px;}
.yd_c01053{bottom:916.559715px;}
.y46_c01053{bottom:917.279865px;}
.yc_c01053{bottom:935.998335px;}
.y45_c01053{bottom:936.718485px;}
.yb_c01053{bottom:955.078770px;}
.y44_c01053{bottom:955.798920px;}
.y9_c01053{bottom:974.519235px;}
.ya_c01053{bottom:974.519715px;}
.y42_c01053{bottom:974.878485px;}
.y43_c01053{bottom:974.878965px;}
.y8_c01053{bottom:993.599670px;}
.y41_c01053{bottom:993.958920px;}
.y7_c01053{bottom:1013.038875px;}
.y3f_c01053{bottom:1013.399205px;}
.y40_c01053{bottom:1013.399775px;}
.y5_c01053{bottom:1032.118440px;}
.y6_c01053{bottom:1032.118740px;}
.y3e_c01053{bottom:1032.479640px;}
.y4_c01053{bottom:1051.559580px;}
.y3d_c01053{bottom:1051.918950px;}
.y3c_c01053{bottom:1070.639655px;}
.y3_c01053{bottom:1070.640045px;}
.y2_c01053{bottom:1090.078650px;}
.y3b_c01053{bottom:1090.079565px;}
.y1_c01053{bottom:1108.799565px;}
.y3a_c01053{bottom:1109.160000px;}
.ha_c01053{height:45.369141px;}
.hb_c01053{height:46.933594px;}
.h6_c01053{height:48.498047px;}
.h1_c01053{height:50.402344px;}
.h8_c01053{height:51.143555px;}
.h2_c01053{height:52.625977px;}
.h3_c01053{height:54.108398px;}
.h5_c01053{height:55.178833px;}
.h9_c01053{height:55.590820px;}
.h4_c01053{height:56.332031px;}
.hc_c01053{height:65.967773px;}
.h7_c01053{height:73.608398px;}
.h0_c01053{height:1263.000000px;}
.w0_c01053{width:892.500000px;}
.x0_c01053{left:0.000000px;}
.x3_c01053{left:359.999085px;}
.x1_c01053{left:361.078785px;}
.x9_c01053{left:386.279250px;}
.xb_c01053{left:393.119985px;}
.xa_c01053{left:399.599670px;}
.x4_c01053{left:405.359250px;}
.xc_c01053{left:406.438665px;}
.x2_c01053{left:412.199850px;}
.x8_c01053{left:418.318770px;}
.xd_c01053{left:419.759085px;}
.x7_c01053{left:425.159415px;}
.x5_c01053{left:438.118785px;}
.x6_c01053{left:463.678530px;}
.xe_c01053{left:561.238380px;}
.x10_c01053{left:562.320390px;}
.xf_c01053{left:593.279850px;}
.x11_c01053{left:594.359250px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.lsc_c01053{letter-spacing:-4.067200pt;}
.ls7_c01053{letter-spacing:-3.864620pt;}
.ls10_c01053{letter-spacing:-3.848400pt;}
.lsa_c01053{letter-spacing:-3.562933pt;}
.ls11_c01053{letter-spacing:-2.699667pt;}
.ls9_c01053{letter-spacing:-2.380500pt;}
.ls8_c01053{letter-spacing:-2.302933pt;}
.lsf_c01053{letter-spacing:-2.188147pt;}
.lse_c01053{letter-spacing:-1.590000pt;}
.ls6_c01053{letter-spacing:-1.537253pt;}
.ls12_c01053{letter-spacing:-0.925007pt;}
.ls4_c01053{letter-spacing:-0.789993pt;}
.ls2_c01053{letter-spacing:-0.770667pt;}
.ls3_c01053{letter-spacing:0.000000pt;}
.ls5_c01053{letter-spacing:0.770667pt;}
.lsb_c01053{letter-spacing:0.782000pt;}
.ls1_c01053{letter-spacing:1.537253pt;}
.lsd_c01053{letter-spacing:2.302933pt;}
.ls13_c01053{letter-spacing:5.462267pt;}
.ls0_c01053{letter-spacing:13.831200pt;}
.ws0_c01053{word-spacing:0.000000pt;}
._6_c01053{margin-left:-34.304025pt;}
._4_c01053{margin-left:-7.284928pt;}
._0_c01053{margin-left:-5.353636pt;}
._5_c01053{margin-left:-3.413738pt;}
._1_c01053{margin-left:-1.101615pt;}
._2_c01053{width:1.219328pt;}
._3_c01053{width:4.763373pt;}
._c_c01053{width:21.025631pt;}
._9_c01053{width:22.503159pt;}
._7_c01053{width:23.972390pt;}
._a_c01053{width:25.445738pt;}
._8_c01053{width:28.537441pt;}
._b_c01053{width:30.121341pt;}
.fs8_c01053{font-size:38.666667pt;}
.fs9_c01053{font-size:40.000000pt;}
.fs5_c01053{font-size:41.333333pt;}
.fs0_c01053{font-size:45.333333pt;}
.fs7_c01053{font-size:46.000000pt;}
.fs1_c01053{font-size:47.333333pt;}
.fs2_c01053{font-size:48.666667pt;}
.fs4_c01053{font-size:50.000000pt;}
.fs3_c01053{font-size:50.666667pt;}
.fsa_c01053{font-size:59.333333pt;}
.fs6_c01053{font-size:66.666667pt;}
.y0_c01053{bottom:0.000000pt;}
.y39_c01053{bottom:166.080200pt;}
.y6e_c01053{bottom:166.397293pt;}
.y38_c01053{bottom:183.679773pt;}
.y6d_c01053{bottom:183.996867pt;}
.y37_c01053{bottom:200.640160pt;}
.y6c_c01053{bottom:200.957253pt;}
.y36_c01053{bottom:217.918920pt;}
.y6b_c01053{bottom:218.238280pt;}
.y34_c01053{bottom:234.878173pt;}
.y35_c01053{bottom:234.878920pt;}
.y6a_c01053{bottom:235.198667pt;}
.y69_c01053{bottom:252.159080pt;}
.y33_c01053{bottom:252.159173pt;}
.y31_c01053{bottom:268.796320pt;}
.y68_c01053{bottom:268.798680pt;}
.y32_c01053{bottom:268.798787pt;}
.y30_c01053{bottom:286.077347pt;}
.y67_c01053{bottom:286.398240pt;}
.y2f_c01053{bottom:302.718160pt;}
.y66_c01053{bottom:303.039067pt;}
.y2e_c01053{bottom:319.678573pt;}
.y65_c01053{bottom:319.999453pt;}
.y2d_c01053{bottom:336.638960pt;}
.y64_c01053{bottom:336.640120pt;}
.y2c_c01053{bottom:353.917720pt;}
.y63_c01053{bottom:353.918520pt;}
.y2b_c01053{bottom:370.558547pt;}
.y62_c01053{bottom:370.878920pt;}
.y2a_c01053{bottom:387.518947pt;}
.y61_c01053{bottom:387.839320pt;}
.y29_c01053{bottom:404.479347pt;}
.y60_c01053{bottom:404.798467pt;}
.y28_c01053{bottom:422.078893pt;}
.y5f_c01053{bottom:422.719853pt;}
.y27_c01053{bottom:439.357667pt;}
.y5e_c01053{bottom:439.998613pt;}
.y26_c01053{bottom:456.638693pt;}
.y5d_c01053{bottom:457.277387pt;}
.y25_c01053{bottom:473.599080pt;}
.y5c_c01053{bottom:474.238827pt;}
.y24_c01053{bottom:491.198653pt;}
.y5b_c01053{bottom:491.517600pt;}
.y23_c01053{bottom:507.838253pt;}
.y5a_c01053{bottom:508.158400pt;}
.y22_c01053{bottom:524.798640pt;}
.y59_c01053{bottom:525.118813pt;}
.y21_c01053{bottom:541.759053pt;}
.y58_c01053{bottom:542.079200pt;}
.y1f_c01053{bottom:558.398440pt;}
.y20_c01053{bottom:558.399867pt;}
.y57_c01053{bottom:559.039613pt;}
.y1e_c01053{bottom:575.677200pt;}
.y56_c01053{bottom:576.000000pt;}
.y1d_c01053{bottom:592.958227pt;}
.y55_c01053{bottom:593.600133pt;}
.y1c_c01053{bottom:609.918613pt;}
.y53_c01053{bottom:610.238560pt;}
.y54_c01053{bottom:610.239173pt;}
.y1b_c01053{bottom:626.879027pt;}
.y52_c01053{bottom:627.198973pt;}
.y1a_c01053{bottom:644.157800pt;}
.y51_c01053{bottom:644.479987pt;}
.y19_c01053{bottom:661.438800pt;}
.y50_c01053{bottom:661.439987pt;}
.y18_c01053{bottom:678.399213pt;}
.y4f_c01053{bottom:678.399867pt;}
.y17_c01053{bottom:695.038813pt;}
.y4e_c01053{bottom:695.679307pt;}
.y16_c01053{bottom:712.319827pt;}
.y15_c01053{bottom:712.319920pt;}
.y4d_c01053{bottom:712.639693pt;}
.y14_c01053{bottom:729.598693pt;}
.y4c_c01053{bottom:730.239253pt;}
.y13_c01053{bottom:746.559080pt;}
.y4b_c01053{bottom:746.880067pt;}
.y11_c01053{bottom:764.158747pt;}
.y12_c01053{bottom:764.159173pt;}
.y4a_c01053{bottom:764.479640pt;}
.yf_c01053{bottom:781.118533pt;}
.y10_c01053{bottom:781.119147pt;}
.y49_c01053{bottom:781.440027pt;}
.ye_c01053{bottom:798.078920pt;}
.y47_c01053{bottom:798.399480pt;}
.y48_c01053{bottom:798.399827pt;}
.yd_c01053{bottom:814.719747pt;}
.y46_c01053{bottom:815.359880pt;}
.yc_c01053{bottom:831.998520pt;}
.y45_c01053{bottom:832.638653pt;}
.yb_c01053{bottom:848.958907pt;}
.y44_c01053{bottom:849.599040pt;}
.y9_c01053{bottom:866.239320pt;}
.ya_c01053{bottom:866.239747pt;}
.y42_c01053{bottom:866.558653pt;}
.y43_c01053{bottom:866.559080pt;}
.y8_c01053{bottom:883.199707pt;}
.y41_c01053{bottom:883.519040pt;}
.y7_c01053{bottom:900.479000pt;}
.y3f_c01053{bottom:900.799293pt;}
.y40_c01053{bottom:900.799800pt;}
.y5_c01053{bottom:917.438613pt;}
.y6_c01053{bottom:917.438880pt;}
.y3e_c01053{bottom:917.759680pt;}
.y4_c01053{bottom:934.719627pt;}
.y3d_c01053{bottom:935.039067pt;}
.y3c_c01053{bottom:951.679693pt;}
.y3_c01053{bottom:951.680040pt;}
.y2_c01053{bottom:968.958800pt;}
.y3b_c01053{bottom:968.959613pt;}
.y1_c01053{bottom:985.599613pt;}
.y3a_c01053{bottom:985.920000pt;}
.ha_c01053{height:40.328125pt;}
.hb_c01053{height:41.718750pt;}
.h6_c01053{height:43.109375pt;}
.h1_c01053{height:44.802083pt;}
.h8_c01053{height:45.460938pt;}
.h2_c01053{height:46.778646pt;}
.h3_c01053{height:48.096354pt;}
.h5_c01053{height:49.047852pt;}
.h9_c01053{height:49.414063pt;}
.h4_c01053{height:50.072917pt;}
.hc_c01053{height:58.638021pt;}
.h7_c01053{height:65.429688pt;}
.h0_c01053{height:1122.666667pt;}
.w0_c01053{width:793.333333pt;}
.x0_c01053{left:0.000000pt;}
.x3_c01053{left:319.999187pt;}
.x1_c01053{left:320.958920pt;}
.x9_c01053{left:343.359333pt;}
.xb_c01053{left:349.439987pt;}
.xa_c01053{left:355.199707pt;}
.x4_c01053{left:360.319333pt;}
.xc_c01053{left:361.278813pt;}
.x2_c01053{left:366.399867pt;}
.x8_c01053{left:371.838907pt;}
.xd_c01053{left:373.119187pt;}
.x7_c01053{left:377.919480pt;}
.x5_c01053{left:389.438920pt;}
.x6_c01053{left:412.158693pt;}
.xe_c01053{left:498.878560pt;}
.x10_c01053{left:499.840347pt;}
.xf_c01053{left:527.359867pt;}
.x11_c01053{left:528.319333pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_aa9eacd4cf38cabe4bf4add9.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_d5c70bbb4a64d1d87cbf751e.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_1eb769c3642a91e946f1a711.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01054;src:url('chunks/assets/font_8e493f48202ac2d9a807bd11.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01054;src:url('chunks/assets/font_40d3d93df2fa8fddfb351c70.woff2')format("woff");}.ff5_c01054{font-family:ff5_c01054;line-height:1.284668;font-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_c01054{transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144330,0.000000,0.000000,0.250000,0,0);}
.m9_c01054{transform:matrix(0.148936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148936,0.000000,0.000000,0.250000,0,0);}
.m5_c01054{transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159574,0.000000,0.000000,0.250000,0,0);}
.m2_c01054{transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164835,0.000000,0.000000,0.250000,0,0);}
.m19_c01054{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m3_c01054{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m17_c01054{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.me_c01054{transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189474,0.000000,0.000000,0.250000,0,0);}
.m1a_c01054{transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193548,0.000000,0.000000,0.250000,0,0);}
.m10_c01054{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m14_c01054{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m7_c01054{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m1_c01054{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m11_c01054{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m13_c01054{transform:matrix(0.204301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204301,0.000000,0.000000,0.250000,0,0);}
.m1b_c01054{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.mb_c01054{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m6_c01054{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.md_c01054{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.mf_c01054{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.mc_c01054{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m18_c01054{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.ma_c01054{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m4_c01054{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m15_c01054{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m0_c01054{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m12_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01054{transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503731,0.000000,0.000000,0.250000,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls20_c01054{letter-spacing:-11.909250px;}
.ls1a_c01054{letter-spacing:-7.539278px;}
.ls1d_c01054{letter-spacing:-7.344675px;}
.ls4_c01054{letter-spacing:-7.149600px;}
.ls16_c01054{letter-spacing:-6.350400px;}
.ls5_c01054{letter-spacing:-6.135750px;}
.ls1c_c01054{letter-spacing:-6.001463px;}
.ls18_c01054{letter-spacing:-5.935125px;}
.ls24_c01054{letter-spacing:-5.810175px;}
.lsd_c01054{letter-spacing:-5.557140px;}
.ls23_c01054{letter-spacing:-5.247900px;}
.lsa_c01054{letter-spacing:-5.194350px;}
.ls15_c01054{letter-spacing:-5.044950px;}
.ls14_c01054{letter-spacing:-4.829055px;}
.ls0_c01054{letter-spacing:-4.762800px;}
.lsb_c01054{letter-spacing:-4.552275px;}
.ls6_c01054{letter-spacing:-4.023195px;}
.ls2_c01054{letter-spacing:-3.969000px;}
.lsc_c01054{letter-spacing:-3.778800px;}
.lsf_c01054{letter-spacing:-3.680843px;}
.ls3_c01054{letter-spacing:-3.412500px;}
.ls8_c01054{letter-spacing:-3.366578px;}
.ls12_c01054{letter-spacing:-3.320460px;}
.lse_c01054{letter-spacing:-3.226418px;}
.ls11_c01054{letter-spacing:-3.175740px;}
.ls9_c01054{letter-spacing:-2.764125px;}
.ls25_c01054{letter-spacing:-2.603505px;}
.ls10_c01054{letter-spacing:-2.564100px;}
.ls22_c01054{letter-spacing:-2.462775px;}
.ls13_c01054{letter-spacing:-2.381400px;}
.ls7_c01054{letter-spacing:-2.346945px;}
.ls1_c01054{letter-spacing:-1.841100px;}
.ls17_c01054{letter-spacing:-1.587600px;}
.ls1b_c01054{letter-spacing:0.000000px;}
.ls26_c01054{letter-spacing:0.915900px;}
.ls1f_c01054{letter-spacing:3.208500px;}
.ls19_c01054{letter-spacing:4.202250px;}
.ls21_c01054{letter-spacing:4.976775px;}
.ls1e_c01054{letter-spacing:5.542425px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:0.000000px;}
._7_c01054{margin-left:-18.019673px;}
._a_c01054{margin-left:-16.011413px;}
._6_c01054{margin-left:-13.987747px;}
._b_c01054{margin-left:-12.205906px;}
._3_c01054{margin-left:-10.400464px;}
._8_c01054{margin-left:-8.247515px;}
._9_c01054{margin-left:-6.206315px;}
._5_c01054{margin-left:-4.950275px;}
._4_c01054{margin-left:-3.942381px;}
._2_c01054{margin-left:-2.860412px;}
._1_c01054{width:2.107080px;}
._10_c01054{width:21.972219px;}
._11_c01054{width:23.495781px;}
._e_c01054{width:25.147546px;}
._d_c01054{width:29.975082px;}
._c_c01054{width:31.497819px;}
._f_c01054{width:33.026336px;}
._0_c01054{width:653.875391px;}
.fc0_c01054{color:transparent;}
.fsd_c01054{font-size:41.250000px;}
.fsf_c01054{font-size:46.500000px;}
.fsb_c01054{font-size:48.750000px;}
.fs10_c01054{font-size:50.250000px;}
.fse_c01054{font-size:51.750000px;}
.fs11_c01054{font-size:52.500000px;}
.fs9_c01054{font-size:53.250000px;}
.fs0_c01054{font-size:54.000000px;}
.fs6_c01054{font-size:54.750000px;}
.fs4_c01054{font-size:55.500000px;}
.fs1_c01054{font-size:57.000000px;}
.fs7_c01054{font-size:60.750000px;}
.fs3_c01054{font-size:67.500000px;}
.fs2_c01054{font-size:68.250000px;}
.fsc_c01054{font-size:69.750000px;}
.fs5_c01054{font-size:70.500000px;}
.fsa_c01054{font-size:71.250000px;}
.fs8_c01054{font-size:72.750000px;}
.fs12_c01054{font-size:73.500000px;}
.y0_c01054{bottom:0.000000px;}
.y67_c01054{bottom:182.879040px;}
.y37_c01054{bottom:183.240435px;}
.y36_c01054{bottom:202.320300px;}
.y35_c01054{bottom:202.321125px;}
.y66_c01054{bottom:221.400285px;}
.y65_c01054{bottom:221.400885px;}
.y34_c01054{bottom:221.761155px;}
.y64_c01054{bottom:240.839475px;}
.y33_c01054{bottom:240.840705px;}
.y63_c01054{bottom:259.919010px;}
.y32_c01054{bottom:260.281980px;}
.y62_c01054{bottom:279.360285px;}
.y31_c01054{bottom:279.720570px;}
.y30_c01054{bottom:298.441065px;}
.y61_c01054{bottom:298.799535px;}
.y60_c01054{bottom:298.800000px;}
.y2f_c01054{bottom:317.520600px;}
.y5f_c01054{bottom:317.879535px;}
.y2e_c01054{bottom:336.600150px;}
.y2d_c01054{bottom:356.039385px;}
.y2c_c01054{bottom:356.040420px;}
.y5e_c01054{bottom:356.400285px;}
.y5d_c01054{bottom:375.119385px;}
.y2b_c01054{bottom:375.119955px;}
.y2a_c01054{bottom:394.561230px;}
.y5c_c01054{bottom:394.920780px;}
.y29_c01054{bottom:413.640765px;}
.y5b_c01054{bottom:414.000315px;}
.y28_c01054{bottom:433.441290px;}
.y5a_c01054{bottom:433.441590px;}
.y27_c01054{bottom:452.161785px;}
.y59_c01054{bottom:452.162085px;}
.y26_c01054{bottom:471.960870px;}
.y58_c01054{bottom:471.961170px;}
.y25_c01054{bottom:490.681365px;}
.y57_c01054{bottom:491.040705px;}
.y24_c01054{bottom:510.119955px;}
.y56_c01054{bottom:510.120255px;}
.y23_c01054{bottom:528.840450px;}
.y55_c01054{bottom:529.202475px;}
.y22_c01054{bottom:548.281725px;}
.y54_c01054{bottom:548.282025px;}
.y21_c01054{bottom:567.000780px;}
.y53_c01054{bottom:567.361560px;}
.y52_c01054{bottom:586.800150px;}
.y20_c01054{bottom:586.801305px;}
.y51_c01054{bottom:605.879970px;}
.y1f_c01054{bottom:605.880840px;}
.y50_c01054{bottom:625.320870px;}
.y4f_c01054{bottom:625.321545px;}
.y1e_c01054{bottom:625.322115px;}
.y1d_c01054{bottom:644.401650px;}
.y4e_c01054{bottom:644.760135px;}
.y1c_c01054{bottom:663.481200px;}
.y4c_c01054{bottom:663.840045px;}
.y4d_c01054{bottom:663.840135px;}
.y1b_c01054{bottom:682.560750px;}
.y4b_c01054{bottom:682.919580px;}
.y19_c01054{bottom:701.999955px;}
.y1a_c01054{bottom:702.000000px;}
.y4a_c01054{bottom:702.360855px;}
.y18_c01054{bottom:721.079505px;}
.y49_c01054{bottom:721.079910px;}
.y17_c01054{bottom:740.520765px;}
.y48_c01054{bottom:740.521185px;}
.y16_c01054{bottom:759.239820px;}
.y15_c01054{bottom:759.240285px;}
.y47_c01054{bottom:759.600720px;}
.y14_c01054{bottom:778.319820px;}
.y13_c01054{bottom:797.760780px;}
.y12_c01054{bottom:817.560705px;}
.y11_c01054{bottom:836.279850px;}
.y10_c01054{bottom:836.280390px;}
.y46_c01054{bottom:836.640960px;}
.y45_c01054{bottom:855.720495px;}
.yf_c01054{bottom:855.720705px;}
.y44_c01054{bottom:875.159085px;}
.ye_c01054{bottom:875.159820px;}
.y43_c01054{bottom:894.600360px;}
.yd_c01054{bottom:894.600765px;}
.y42_c01054{bottom:913.679895px;}
.yc_c01054{bottom:913.680720px;}
.yb_c01054{bottom:933.119940px;}
.y41_c01054{bottom:952.199475px;}
.ya_c01054{bottom:952.199805px;}
.y9_c01054{bottom:971.279850px;}
.y40_c01054{bottom:971.640750px;}
.y8_c01054{bottom:990.359295px;}
.y3f_c01054{bottom:990.359805px;}
.y7_c01054{bottom:1009.800570px;}
.y3e_c01054{bottom:1009.801065px;}
.y3d_c01054{bottom:1028.880615px;}
.y6_c01054{bottom:1028.882475px;}
.y3b_c01054{bottom:1047.959970px;}
.y3c_c01054{bottom:1047.960570px;}
.y5_c01054{bottom:1048.321065px;}
.y3a_c01054{bottom:1067.039520px;}
.y4_c01054{bottom:1067.041560px;}
.y39_c01054{bottom:1086.479550px;}
.y3_c01054{bottom:1086.480150px;}
.y38_c01054{bottom:1105.200045px;}
.y2_c01054{bottom:1105.559685px;}
.y1_c01054{bottom:1144.080420px;}
.hf_c01054{height:43.022461px;}
.h11_c01054{height:45.955078px;}
.hc_c01054{height:48.178711px;}
.h12_c01054{height:49.317627px;}
.h10_c01054{height:51.143555px;}
.h14_c01054{height:51.500244px;}
.ha_c01054{height:52.235962px;}
.he_c01054{height:52.625977px;}
.h1_c01054{height:52.971680px;}
.h7_c01054{height:53.707397px;}
.h13_c01054{height:54.108398px;}
.h5_c01054{height:54.443115px;}
.h2_c01054{height:55.914551px;}
.h8_c01054{height:59.593140px;}
.h4_c01054{height:66.214600px;}
.h3_c01054{height:66.950317px;}
.hd_c01054{height:68.421753px;}
.h6_c01054{height:69.157471px;}
.hb_c01054{height:69.893188px;}
.h9_c01054{height:71.364624px;}
.h15_c01054{height:72.100342px;}
.h0_c01054{height:1263.000000px;}
.w0_c01054{width:892.500000px;}
.x0_c01054{left:0.000000px;}
.x1_c01054{left:293.040000px;}
.x5_c01054{left:357.838950px;}
.x3_c01054{left:358.918350px;}
.x4_c01054{left:389.878320px;}
.x7_c01054{left:396.359850px;}
.x6_c01054{left:402.839535px;}
.x8_c01054{left:409.678530px;}
.x9_c01054{left:415.798920px;}
.xa_c01054{left:422.278800px;}
.xb_c01054{left:447.838530px;}
.xc_c01054{left:467.638500px;}
.xf_c01054{left:557.639700px;}
.xd_c01054{left:558.719415px;}
.x10_c01054{left:590.039985px;}
.xe_c01054{left:591.119385px;}
.x2_c01054{left:688.679670px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls20_c01054{letter-spacing:-10.586000pt;}
.ls1a_c01054{letter-spacing:-6.701580pt;}
.ls1d_c01054{letter-spacing:-6.528600pt;}
.ls4_c01054{letter-spacing:-6.355200pt;}
.ls16_c01054{letter-spacing:-5.644800pt;}
.ls5_c01054{letter-spacing:-5.454000pt;}
.ls1c_c01054{letter-spacing:-5.334633pt;}
.ls18_c01054{letter-spacing:-5.275667pt;}
.ls24_c01054{letter-spacing:-5.164600pt;}
.lsd_c01054{letter-spacing:-4.939680pt;}
.ls23_c01054{letter-spacing:-4.664800pt;}
.lsa_c01054{letter-spacing:-4.617200pt;}
.ls15_c01054{letter-spacing:-4.484400pt;}
.ls14_c01054{letter-spacing:-4.292493pt;}
.ls0_c01054{letter-spacing:-4.233600pt;}
.lsb_c01054{letter-spacing:-4.046467pt;}
.ls6_c01054{letter-spacing:-3.576173pt;}
.ls2_c01054{letter-spacing:-3.528000pt;}
.lsc_c01054{letter-spacing:-3.358933pt;}
.lsf_c01054{letter-spacing:-3.271860pt;}
.ls3_c01054{letter-spacing:-3.033333pt;}
.ls8_c01054{letter-spacing:-2.992513pt;}
.ls12_c01054{letter-spacing:-2.951520pt;}
.lse_c01054{letter-spacing:-2.867927pt;}
.ls11_c01054{letter-spacing:-2.822880pt;}
.ls9_c01054{letter-spacing:-2.457000pt;}
.ls25_c01054{letter-spacing:-2.314227pt;}
.ls10_c01054{letter-spacing:-2.279200pt;}
.ls22_c01054{letter-spacing:-2.189133pt;}
.ls13_c01054{letter-spacing:-2.116800pt;}
.ls7_c01054{letter-spacing:-2.086173pt;}
.ls1_c01054{letter-spacing:-1.636533pt;}
.ls17_c01054{letter-spacing:-1.411200pt;}
.ls1b_c01054{letter-spacing:0.000000pt;}
.ls26_c01054{letter-spacing:0.814133pt;}
.ls1f_c01054{letter-spacing:2.852000pt;}
.ls19_c01054{letter-spacing:3.735333pt;}
.ls21_c01054{letter-spacing:4.423800pt;}
.ls1e_c01054{letter-spacing:4.926600pt;}
.ws0_c01054{word-spacing:0.000000pt;}
._7_c01054{margin-left:-16.017487pt;}
._a_c01054{margin-left:-14.232367pt;}
._6_c01054{margin-left:-12.433553pt;}
._b_c01054{margin-left:-10.849694pt;}
._3_c01054{margin-left:-9.244856pt;}
._8_c01054{margin-left:-7.331125pt;}
._9_c01054{margin-left:-5.516725pt;}
._5_c01054{margin-left:-4.400245pt;}
._4_c01054{margin-left:-3.504339pt;}
._2_c01054{margin-left:-2.542588pt;}
._1_c01054{width:1.872960pt;}
._10_c01054{width:19.530861pt;}
._11_c01054{width:20.885139pt;}
._e_c01054{width:22.353374pt;}
._d_c01054{width:26.644518pt;}
._c_c01054{width:27.998061pt;}
._f_c01054{width:29.356744pt;}
._0_c01054{width:581.222569pt;}
.fsd_c01054{font-size:36.666667pt;}
.fsf_c01054{font-size:41.333333pt;}
.fsb_c01054{font-size:43.333333pt;}
.fs10_c01054{font-size:44.666667pt;}
.fse_c01054{font-size:46.000000pt;}
.fs11_c01054{font-size:46.666667pt;}
.fs9_c01054{font-size:47.333333pt;}
.fs0_c01054{font-size:48.000000pt;}
.fs6_c01054{font-size:48.666667pt;}
.fs4_c01054{font-size:49.333333pt;}
.fs1_c01054{font-size:50.666667pt;}
.fs7_c01054{font-size:54.000000pt;}
.fs3_c01054{font-size:60.000000pt;}
.fs2_c01054{font-size:60.666667pt;}
.fsc_c01054{font-size:62.000000pt;}
.fs5_c01054{font-size:62.666667pt;}
.fsa_c01054{font-size:63.333333pt;}
.fs8_c01054{font-size:64.666667pt;}
.fs12_c01054{font-size:65.333333pt;}
.y0_c01054{bottom:0.000000pt;}
.y67_c01054{bottom:162.559147pt;}
.y37_c01054{bottom:162.880387pt;}
.y36_c01054{bottom:179.840267pt;}
.y35_c01054{bottom:179.841000pt;}
.y66_c01054{bottom:196.800253pt;}
.y65_c01054{bottom:196.800787pt;}
.y34_c01054{bottom:197.121027pt;}
.y64_c01054{bottom:214.079533pt;}
.y33_c01054{bottom:214.080627pt;}
.y63_c01054{bottom:231.039120pt;}
.y32_c01054{bottom:231.361760pt;}
.y62_c01054{bottom:248.320253pt;}
.y31_c01054{bottom:248.640507pt;}
.y30_c01054{bottom:265.280947pt;}
.y61_c01054{bottom:265.599587pt;}
.y60_c01054{bottom:265.600000pt;}
.y2f_c01054{bottom:282.240533pt;}
.y5f_c01054{bottom:282.559587pt;}
.y2e_c01054{bottom:299.200133pt;}
.y2d_c01054{bottom:316.479453pt;}
.y2c_c01054{bottom:316.480373pt;}
.y5e_c01054{bottom:316.800253pt;}
.y5d_c01054{bottom:333.439453pt;}
.y2b_c01054{bottom:333.439960pt;}
.y2a_c01054{bottom:350.721093pt;}
.y5c_c01054{bottom:351.040693pt;}
.y29_c01054{bottom:367.680680pt;}
.y5b_c01054{bottom:368.000280pt;}
.y28_c01054{bottom:385.281147pt;}
.y5a_c01054{bottom:385.281413pt;}
.y27_c01054{bottom:401.921587pt;}
.y59_c01054{bottom:401.921853pt;}
.y26_c01054{bottom:419.520773pt;}
.y58_c01054{bottom:419.521040pt;}
.y25_c01054{bottom:436.161213pt;}
.y57_c01054{bottom:436.480627pt;}
.y24_c01054{bottom:453.439960pt;}
.y56_c01054{bottom:453.440227pt;}
.y23_c01054{bottom:470.080400pt;}
.y55_c01054{bottom:470.402200pt;}
.y22_c01054{bottom:487.361533pt;}
.y54_c01054{bottom:487.361800pt;}
.y21_c01054{bottom:504.000693pt;}
.y53_c01054{bottom:504.321387pt;}
.y52_c01054{bottom:521.600133pt;}
.y20_c01054{bottom:521.601160pt;}
.y51_c01054{bottom:538.559973pt;}
.y1f_c01054{bottom:538.560747pt;}
.y50_c01054{bottom:555.840773pt;}
.y4f_c01054{bottom:555.841373pt;}
.y1e_c01054{bottom:555.841880pt;}
.y1d_c01054{bottom:572.801467pt;}
.y4e_c01054{bottom:573.120120pt;}
.y1c_c01054{bottom:589.761067pt;}
.y4c_c01054{bottom:590.080040pt;}
.y4d_c01054{bottom:590.080120pt;}
.y1b_c01054{bottom:606.720667pt;}
.y4b_c01054{bottom:607.039627pt;}
.y19_c01054{bottom:623.999960pt;}
.y1a_c01054{bottom:624.000000pt;}
.y4a_c01054{bottom:624.320760pt;}
.y18_c01054{bottom:640.959560pt;}
.y49_c01054{bottom:640.959920pt;}
.y17_c01054{bottom:658.240680pt;}
.y48_c01054{bottom:658.241053pt;}
.y16_c01054{bottom:674.879840pt;}
.y15_c01054{bottom:674.880253pt;}
.y47_c01054{bottom:675.200640pt;}
.y14_c01054{bottom:691.839840pt;}
.y13_c01054{bottom:709.120693pt;}
.y12_c01054{bottom:726.720627pt;}
.y11_c01054{bottom:743.359867pt;}
.y10_c01054{bottom:743.360347pt;}
.y46_c01054{bottom:743.680853pt;}
.y45_c01054{bottom:760.640440pt;}
.yf_c01054{bottom:760.640627pt;}
.y44_c01054{bottom:777.919187pt;}
.ye_c01054{bottom:777.919840pt;}
.y43_c01054{bottom:795.200320pt;}
.yd_c01054{bottom:795.200680pt;}
.y42_c01054{bottom:812.159907pt;}
.yc_c01054{bottom:812.160640pt;}
.yb_c01054{bottom:829.439947pt;}
.y41_c01054{bottom:846.399533pt;}
.ya_c01054{bottom:846.399827pt;}
.y9_c01054{bottom:863.359867pt;}
.y40_c01054{bottom:863.680667pt;}
.y8_c01054{bottom:880.319373pt;}
.y3f_c01054{bottom:880.319827pt;}
.y7_c01054{bottom:897.600507pt;}
.y3e_c01054{bottom:897.600947pt;}
.y3d_c01054{bottom:914.560547pt;}
.y6_c01054{bottom:914.562200pt;}
.y3b_c01054{bottom:931.519973pt;}
.y3c_c01054{bottom:931.520507pt;}
.y5_c01054{bottom:931.840947pt;}
.y3a_c01054{bottom:948.479573pt;}
.y4_c01054{bottom:948.481387pt;}
.y39_c01054{bottom:965.759600pt;}
.y3_c01054{bottom:965.760133pt;}
.y38_c01054{bottom:982.400040pt;}
.y2_c01054{bottom:982.719720pt;}
.y1_c01054{bottom:1016.960373pt;}
.hf_c01054{height:38.242188pt;}
.h11_c01054{height:40.848958pt;}
.hc_c01054{height:42.825521pt;}
.h12_c01054{height:43.837891pt;}
.h10_c01054{height:45.460938pt;}
.h14_c01054{height:45.777995pt;}
.ha_c01054{height:46.431966pt;}
.he_c01054{height:46.778646pt;}
.h1_c01054{height:47.085938pt;}
.h7_c01054{height:47.739909pt;}
.h13_c01054{height:48.096354pt;}
.h5_c01054{height:48.393880pt;}
.h2_c01054{height:49.701823pt;}
.h8_c01054{height:52.971680pt;}
.h4_c01054{height:58.857422pt;}
.h3_c01054{height:59.511393pt;}
.hd_c01054{height:60.819336pt;}
.h6_c01054{height:61.473307pt;}
.hb_c01054{height:62.127279pt;}
.h9_c01054{height:63.435221pt;}
.h15_c01054{height:64.089193pt;}
.h0_c01054{height:1122.666667pt;}
.w0_c01054{width:793.333333pt;}
.x0_c01054{left:0.000000pt;}
.x1_c01054{left:260.480000pt;}
.x5_c01054{left:318.079067pt;}
.x3_c01054{left:319.038533pt;}
.x4_c01054{left:346.558507pt;}
.x7_c01054{left:352.319867pt;}
.x6_c01054{left:358.079587pt;}
.x8_c01054{left:364.158693pt;}
.x9_c01054{left:369.599040pt;}
.xa_c01054{left:375.358933pt;}
.xb_c01054{left:398.078693pt;}
.xc_c01054{left:415.678667pt;}
.xf_c01054{left:495.679733pt;}
.xd_c01054{left:496.639480pt;}
.x10_c01054{left:524.479987pt;}
.xe_c01054{left:525.439453pt;}
.x2_c01054{left:612.159707pt;}
}





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

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_18ae494748c8a0ade9ba8111.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_2da8fd78ae5fb5dc6b4a0bbd.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_d1e080340efd80e79b442523.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01055;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01055;src:url('chunks/assets/font_0b9d1b89c247da2fa1ac403f.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01055;src:url('chunks/assets/font_70737706f777996f31488e58.woff2')format("woff");}.ff6_c01055{font-family:ff6_c01055;line-height:1.364746;font-style:normal;font-weight: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_c01055;src:url('chunks/assets/font_f73213d1015e6e80af63987e.woff2')format("woff");}.ff7_c01055{font-family:ff7_c01055;line-height:1.284668;font-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_c01055{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m7_c01055{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m10_c01055{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.m16_c01055{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.ma_c01055{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.mf_c01055{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.md_c01055{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m12_c01055{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m0_c01055{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.mc_c01055{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_c01055{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m3_c01055{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m5_c01055{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m11_c01055{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m6_c01055{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m2_c01055{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m4_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01055{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.mb_c01055{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m14_c01055{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.m9_c01055{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.m13_c01055{transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);}
.m1_c01055{transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls8_c01055{letter-spacing:-7.500600px;}
.lsa_c01055{letter-spacing:-6.346073px;}
.lsd_c01055{letter-spacing:-5.915025px;}
.ls1b_c01055{letter-spacing:-5.531250px;}
.ls18_c01055{letter-spacing:-5.465925px;}
.lse_c01055{letter-spacing:-5.438745px;}
.ls17_c01055{letter-spacing:-4.739175px;}
.lsb_c01055{letter-spacing:-4.704000px;}
.ls5_c01055{letter-spacing:-4.182000px;}
.ls1d_c01055{letter-spacing:-4.044383px;}
.ls7_c01055{letter-spacing:-4.018050px;}
.ls19_c01055{letter-spacing:-3.346200px;}
.ls4_c01055{letter-spacing:-3.345600px;}
.ls3_c01055{letter-spacing:-3.106793px;}
.ls1a_c01055{letter-spacing:-3.037125px;}
.ls6_c01055{letter-spacing:-2.508690px;}
.ls15_c01055{letter-spacing:-2.463818px;}
.ls1_c01055{letter-spacing:-1.673310px;}
.ls12_c01055{letter-spacing:-1.665000px;}
.ls10_c01055{letter-spacing:-1.445700px;}
.lsf_c01055{letter-spacing:-0.928200px;}
.ls0_c01055{letter-spacing:-0.836400px;}
.ls2_c01055{letter-spacing:0.000000px;}
.ls11_c01055{letter-spacing:0.836400px;}
.ls1c_c01055{letter-spacing:0.931875px;}
.lsc_c01055{letter-spacing:1.993448px;}
.ls9_c01055{letter-spacing:4.182000px;}
.ls16_c01055{letter-spacing:4.396200px;}
.ls14_c01055{letter-spacing:5.221125px;}
.ls13_c01055{letter-spacing:25.917690px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:0.000000px;}
._a_c01055{margin-left:-9.827984px;}
._9_c01055{margin-left:-8.726117px;}
._2_c01055{margin-left:-7.702170px;}
._8_c01055{margin-left:-6.221933px;}
._5_c01055{margin-left:-5.212167px;}
._6_c01055{margin-left:-3.466529px;}
._3_c01055{margin-left:-1.802440px;}
._1_c01055{width:1.440583px;}
._4_c01055{width:3.314833px;}
._7_c01055{width:4.731044px;}
._0_c01055{width:22.674901px;}
._b_c01055{width:23.684132px;}
._e_c01055{width:25.275600px;}
._c_c01055{width:27.165008px;}
._f_c01055{width:30.377306px;}
._d_c01055{width:31.977736px;}
._10_c01055{width:33.708793px;}
._11_c01055{width:35.310360px;}
.fc0_c01055{color:transparent;}
.fs1_c01055{font-size:16.500000px;}
.fsc_c01055{font-size:38.250000px;}
.fs8_c01055{font-size:40.500000px;}
.fs2_c01055{font-size:44.250000px;}
.fs3_c01055{font-size:45.000000px;}
.fsa_c01055{font-size:48.750000px;}
.fsd_c01055{font-size:49.500000px;}
.fs0_c01055{font-size:51.000000px;}
.fs7_c01055{font-size:51.750000px;}
.fs6_c01055{font-size:52.500000px;}
.fsf_c01055{font-size:53.250000px;}
.fs4_c01055{font-size:54.000000px;}
.fs5_c01055{font-size:54.750000px;}
.fsb_c01055{font-size:55.500000px;}
.fs9_c01055{font-size:59.250000px;}
.fse_c01055{font-size:66.750000px;}
.y0_c01055{bottom:0.000000px;}
.y38_c01055{bottom:185.038950px;}
.y6a_c01055{bottom:185.398470px;}
.y37_c01055{bottom:204.119415px;}
.y36_c01055{bottom:223.199850px;}
.y34_c01055{bottom:242.638965px;}
.y35_c01055{bottom:242.639100px;}
.y69_c01055{bottom:242.639415px;}
.y33_c01055{bottom:261.359895px;}
.y68_c01055{bottom:261.360330px;}
.y32_c01055{bottom:280.798515px;}
.y67_c01055{bottom:280.798950px;}
.y30_c01055{bottom:299.876865px;}
.y31_c01055{bottom:299.878950px;}
.y2f_c01055{bottom:319.318020px;}
.y66_c01055{bottom:319.318995px;}
.y2e_c01055{bottom:338.398455px;}
.y65_c01055{bottom:338.399430px;}
.y2d_c01055{bottom:357.837060px;}
.y64_c01055{bottom:357.838050px;}
.y2c_c01055{bottom:376.558005px;}
.y63_c01055{bottom:376.918515px;}
.y2b_c01055{bottom:395.638440px;}
.y62_c01055{bottom:395.998950px;}
.y60_c01055{bottom:414.718410px;}
.y2a_c01055{bottom:414.718890px;}
.y61_c01055{bottom:414.719565px;}
.y29_c01055{bottom:433.799325px;}
.y5f_c01055{bottom:434.157030px;}
.y5e_c01055{bottom:453.237495px;}
.y28_c01055{bottom:453.237945px;}
.y27_c01055{bottom:472.679100px;}
.y5d_c01055{bottom:473.036985px;}
.y26_c01055{bottom:491.759535px;}
.y5c_c01055{bottom:492.117435px;}
.y5b_c01055{bottom:511.558575px;}
.y25_c01055{bottom:511.559685px;}
.y23_c01055{bottom:530.638575px;}
.y5a_c01055{bottom:530.639025px;}
.y24_c01055{bottom:530.639700px;}
.y22_c01055{bottom:550.077180px;}
.y59_c01055{bottom:550.077645px;}
.y21_c01055{bottom:569.157630px;}
.y58_c01055{bottom:569.518770px;}
.y20_c01055{bottom:588.598785px;}
.y57_c01055{bottom:588.599235px;}
.y1f_c01055{bottom:607.318335px;}
.y56_c01055{bottom:607.679670px;}
.y54_c01055{bottom:626.758005px;}
.y1e_c01055{bottom:626.759475px;}
.y55_c01055{bottom:626.759535px;}
.y1d_c01055{bottom:645.839925px;}
.y53_c01055{bottom:646.196610px;}
.y52_c01055{bottom:664.917555px;}
.y1c_c01055{bottom:664.920360px;}
.y1b_c01055{bottom:682.559985px;}
.y51_c01055{bottom:683.997990px;}
.y1a_c01055{bottom:703.079910px;}
.y50_c01055{bottom:703.436595px;}
.y19_c01055{bottom:722.160345px;}
.y4f_c01055{bottom:722.517060px;}
.y4e_c01055{bottom:741.958185px;}
.y18_c01055{bottom:741.959865px;}
.y17_c01055{bottom:760.319895px;}
.y4d_c01055{bottom:760.677750px;}
.y15_c01055{bottom:780.118740px;}
.y4c_c01055{bottom:780.118905px;}
.y16_c01055{bottom:780.119385px;}
.y14_c01055{bottom:799.199175px;}
.y4b_c01055{bottom:799.199340px;}
.y13_c01055{bottom:819.358230px;}
.y4a_c01055{bottom:819.358605px;}
.y49_c01055{bottom:819.358770px;}
.y12_c01055{bottom:838.079130px;}
.y48_c01055{bottom:838.079700px;}
.y11_c01055{bottom:857.517750px;}
.y47_c01055{bottom:857.518320px;}
.y46_c01055{bottom:876.239220px;}
.y10_c01055{bottom:876.598200px;}
.y45_c01055{bottom:895.678530px;}
.yf_c01055{bottom:896.039340px;}
.y44_c01055{bottom:914.758575px;}
.ye_c01055{bottom:915.119385px;}
.yd_c01055{bottom:915.119865px;}
.yc_c01055{bottom:934.558485px;}
.y43_c01055{bottom:934.558590px;}
.y42_c01055{bottom:953.279205px;}
.yb_c01055{bottom:953.279385px;}
.y41_c01055{bottom:972.718500px;}
.ya_c01055{bottom:973.078905px;}
.y9_c01055{bottom:992.159340px;}
.y40_c01055{bottom:992.159370px;}
.y3e_c01055{bottom:1011.598275px;}
.y3f_c01055{bottom:1011.598575px;}
.y8_c01055{bottom:1011.958860px;}
.y7_c01055{bottom:1030.318890px;}
.y3d_c01055{bottom:1030.319190px;}
.y3c_c01055{bottom:1049.399235px;}
.y6_c01055{bottom:1049.757495px;}
.y5_c01055{bottom:1068.478410px;}
.y3b_c01055{bottom:1068.840090px;}
.y3a_c01055{bottom:1087.558665px;}
.y4_c01055{bottom:1087.558875px;}
.y39_c01055{bottom:1106.639100px;}
.y3_c01055{bottom:1107.000000px;}
.y2_c01055{bottom:1145.159820px;}
.y1_c01055{bottom:1145.519070px;}
.h2_c01055{height:17.208984px;}
.he_c01055{height:39.893555px;}
.h9_c01055{height:42.240234px;}
.h4_c01055{height:45.351562px;}
.h3_c01055{height:46.151367px;}
.hb_c01055{height:46.933594px;}
.hc_c01055{height:48.178711px;}
.h1_c01055{height:50.402344px;}
.h8_c01055{height:51.143555px;}
.h7_c01055{height:51.500244px;}
.hf_c01055{height:51.626953px;}
.h11_c01055{height:52.625977px;}
.h5_c01055{height:53.367188px;}
.h6_c01055{height:54.108398px;}
.hd_c01055{height:54.849609px;}
.ha_c01055{height:58.150635px;}
.h10_c01055{height:65.967773px;}
.h0_c01055{height:1263.000000px;}
.w0_c01055{width:892.500000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:294.478635px;}
.xa_c01055{left:357.840135px;}
.x6_c01055{left:358.917345px;}
.x5_c01055{left:359.999385px;}
.xc_c01055{left:403.918950px;}
.xd_c01055{left:410.759535px;}
.x2_c01055{left:412.559100px;}
.xb_c01055{left:417.239220px;}
.x8_c01055{left:423.359850px;}
.x9_c01055{left:449.998950px;}
.x7_c01055{left:462.239820px;}
.xf_c01055{left:559.080870px;}
.x3_c01055{left:560.159415px;}
.x10_c01055{left:589.679070px;}
.xe_c01055{left:592.559685px;}
.x4_c01055{left:690.119985px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls8_c01055{letter-spacing:-6.667200pt;}
.lsa_c01055{letter-spacing:-5.640953pt;}
.lsd_c01055{letter-spacing:-5.257800pt;}
.ls1b_c01055{letter-spacing:-4.916667pt;}
.ls18_c01055{letter-spacing:-4.858600pt;}
.lse_c01055{letter-spacing:-4.834440pt;}
.ls17_c01055{letter-spacing:-4.212600pt;}
.lsb_c01055{letter-spacing:-4.181333pt;}
.ls5_c01055{letter-spacing:-3.717333pt;}
.ls1d_c01055{letter-spacing:-3.595007pt;}
.ls7_c01055{letter-spacing:-3.571600pt;}
.ls19_c01055{letter-spacing:-2.974400pt;}
.ls4_c01055{letter-spacing:-2.973867pt;}
.ls3_c01055{letter-spacing:-2.761593pt;}
.ls1a_c01055{letter-spacing:-2.699667pt;}
.ls6_c01055{letter-spacing:-2.229947pt;}
.ls15_c01055{letter-spacing:-2.190060pt;}
.ls1_c01055{letter-spacing:-1.487387pt;}
.ls12_c01055{letter-spacing:-1.480000pt;}
.ls10_c01055{letter-spacing:-1.285067pt;}
.lsf_c01055{letter-spacing:-0.825067pt;}
.ls0_c01055{letter-spacing:-0.743467pt;}
.ls2_c01055{letter-spacing:0.000000pt;}
.ls11_c01055{letter-spacing:0.743467pt;}
.ls1c_c01055{letter-spacing:0.828333pt;}
.lsc_c01055{letter-spacing:1.771953pt;}
.ls9_c01055{letter-spacing:3.717333pt;}
.ls16_c01055{letter-spacing:3.907733pt;}
.ls14_c01055{letter-spacing:4.641000pt;}
.ls13_c01055{letter-spacing:23.037947pt;}
.ws0_c01055{word-spacing:0.000000pt;}
._a_c01055{margin-left:-8.735986pt;}
._9_c01055{margin-left:-7.756548pt;}
._2_c01055{margin-left:-6.846374pt;}
._8_c01055{margin-left:-5.530607pt;}
._5_c01055{margin-left:-4.633037pt;}
._6_c01055{margin-left:-3.081359pt;}
._3_c01055{margin-left:-1.602169pt;}
._1_c01055{width:1.280518pt;}
._4_c01055{width:2.946518pt;}
._7_c01055{width:4.205373pt;}
._0_c01055{width:20.155468pt;}
._b_c01055{width:21.052562pt;}
._e_c01055{width:22.467200pt;}
._c_c01055{width:24.146674pt;}
._f_c01055{width:27.002049pt;}
._d_c01055{width:28.424654pt;}
._10_c01055{width:29.963371pt;}
._11_c01055{width:31.386987pt;}
.fs1_c01055{font-size:14.666667pt;}
.fsc_c01055{font-size:34.000000pt;}
.fs8_c01055{font-size:36.000000pt;}
.fs2_c01055{font-size:39.333333pt;}
.fs3_c01055{font-size:40.000000pt;}
.fsa_c01055{font-size:43.333333pt;}
.fsd_c01055{font-size:44.000000pt;}
.fs0_c01055{font-size:45.333333pt;}
.fs7_c01055{font-size:46.000000pt;}
.fs6_c01055{font-size:46.666667pt;}
.fsf_c01055{font-size:47.333333pt;}
.fs4_c01055{font-size:48.000000pt;}
.fs5_c01055{font-size:48.666667pt;}
.fsb_c01055{font-size:49.333333pt;}
.fs9_c01055{font-size:52.666667pt;}
.fse_c01055{font-size:59.333333pt;}
.y0_c01055{bottom:0.000000pt;}
.y38_c01055{bottom:164.479067pt;}
.y6a_c01055{bottom:164.798640pt;}
.y37_c01055{bottom:181.439480pt;}
.y36_c01055{bottom:198.399867pt;}
.y34_c01055{bottom:215.679080pt;}
.y35_c01055{bottom:215.679200pt;}
.y69_c01055{bottom:215.679480pt;}
.y33_c01055{bottom:232.319907pt;}
.y68_c01055{bottom:232.320293pt;}
.y32_c01055{bottom:249.598680pt;}
.y67_c01055{bottom:249.599067pt;}
.y30_c01055{bottom:266.557213pt;}
.y31_c01055{bottom:266.559067pt;}
.y2f_c01055{bottom:283.838240pt;}
.y66_c01055{bottom:283.839107pt;}
.y2e_c01055{bottom:300.798627pt;}
.y65_c01055{bottom:300.799493pt;}
.y2d_c01055{bottom:318.077387pt;}
.y64_c01055{bottom:318.078267pt;}
.y2c_c01055{bottom:334.718227pt;}
.y63_c01055{bottom:335.038680pt;}
.y2b_c01055{bottom:351.678613pt;}
.y62_c01055{bottom:351.999067pt;}
.y60_c01055{bottom:368.638587pt;}
.y2a_c01055{bottom:368.639013pt;}
.y61_c01055{bottom:368.639613pt;}
.y29_c01055{bottom:385.599400pt;}
.y5f_c01055{bottom:385.917360pt;}
.y5e_c01055{bottom:402.877773pt;}
.y28_c01055{bottom:402.878173pt;}
.y27_c01055{bottom:420.159200pt;}
.y5d_c01055{bottom:420.477320pt;}
.y26_c01055{bottom:437.119587pt;}
.y5c_c01055{bottom:437.437720pt;}
.y5b_c01055{bottom:454.718733pt;}
.y25_c01055{bottom:454.719720pt;}
.y23_c01055{bottom:471.678733pt;}
.y5a_c01055{bottom:471.679133pt;}
.y24_c01055{bottom:471.679733pt;}
.y22_c01055{bottom:488.957493pt;}
.y59_c01055{bottom:488.957907pt;}
.y21_c01055{bottom:505.917893pt;}
.y58_c01055{bottom:506.238907pt;}
.y20_c01055{bottom:523.198920pt;}
.y57_c01055{bottom:523.199320pt;}
.y1f_c01055{bottom:539.838520pt;}
.y56_c01055{bottom:540.159707pt;}
.y54_c01055{bottom:557.118227pt;}
.y1e_c01055{bottom:557.119533pt;}
.y55_c01055{bottom:557.119587pt;}
.y1d_c01055{bottom:574.079933pt;}
.y53_c01055{bottom:574.396987pt;}
.y52_c01055{bottom:591.037827pt;}
.y1c_c01055{bottom:591.040320pt;}
.y1b_c01055{bottom:606.719987pt;}
.y51_c01055{bottom:607.998213pt;}
.y1a_c01055{bottom:624.959920pt;}
.y50_c01055{bottom:625.276973pt;}
.y19_c01055{bottom:641.920307pt;}
.y4f_c01055{bottom:642.237387pt;}
.y4e_c01055{bottom:659.518387pt;}
.y18_c01055{bottom:659.519880pt;}
.y17_c01055{bottom:675.839907pt;}
.y4d_c01055{bottom:676.158000pt;}
.y15_c01055{bottom:693.438880pt;}
.y4c_c01055{bottom:693.439027pt;}
.y16_c01055{bottom:693.439453pt;}
.y14_c01055{bottom:710.399267pt;}
.y4b_c01055{bottom:710.399413pt;}
.y13_c01055{bottom:728.318427pt;}
.y4a_c01055{bottom:728.318760pt;}
.y49_c01055{bottom:728.318907pt;}
.y12_c01055{bottom:744.959227pt;}
.y48_c01055{bottom:744.959733pt;}
.y11_c01055{bottom:762.238000pt;}
.y47_c01055{bottom:762.238507pt;}
.y46_c01055{bottom:778.879307pt;}
.y10_c01055{bottom:779.198400pt;}
.y45_c01055{bottom:796.158693pt;}
.yf_c01055{bottom:796.479413pt;}
.y44_c01055{bottom:813.118733pt;}
.ye_c01055{bottom:813.439453pt;}
.yd_c01055{bottom:813.439880pt;}
.yc_c01055{bottom:830.718653pt;}
.y43_c01055{bottom:830.718747pt;}
.y42_c01055{bottom:847.359293pt;}
.yb_c01055{bottom:847.359453pt;}
.y41_c01055{bottom:864.638667pt;}
.ya_c01055{bottom:864.959027pt;}
.y9_c01055{bottom:881.919413pt;}
.y40_c01055{bottom:881.919440pt;}
.y3e_c01055{bottom:899.198467pt;}
.y3f_c01055{bottom:899.198733pt;}
.y8_c01055{bottom:899.518987pt;}
.y7_c01055{bottom:915.839013pt;}
.y3d_c01055{bottom:915.839280pt;}
.y3c_c01055{bottom:932.799320pt;}
.y6_c01055{bottom:933.117773pt;}
.y5_c01055{bottom:949.758587pt;}
.y3b_c01055{bottom:950.080080pt;}
.y3a_c01055{bottom:966.718813pt;}
.y4_c01055{bottom:966.719000pt;}
.y39_c01055{bottom:983.679200pt;}
.y3_c01055{bottom:984.000000pt;}
.y2_c01055{bottom:1017.919840pt;}
.y1_c01055{bottom:1018.239173pt;}
.h2_c01055{height:15.296875pt;}
.he_c01055{height:35.460938pt;}
.h9_c01055{height:37.546875pt;}
.h4_c01055{height:40.312500pt;}
.h3_c01055{height:41.023438pt;}
.hb_c01055{height:41.718750pt;}
.hc_c01055{height:42.825521pt;}
.h1_c01055{height:44.802083pt;}
.h8_c01055{height:45.460938pt;}
.h7_c01055{height:45.777995pt;}
.hf_c01055{height:45.890625pt;}
.h11_c01055{height:46.778646pt;}
.h5_c01055{height:47.437500pt;}
.h6_c01055{height:48.096354pt;}
.hd_c01055{height:48.755208pt;}
.ha_c01055{height:51.689453pt;}
.h10_c01055{height:58.638021pt;}
.h0_c01055{height:1122.666667pt;}
.w0_c01055{width:793.333333pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:261.758787pt;}
.xa_c01055{left:318.080120pt;}
.x6_c01055{left:319.037640pt;}
.x5_c01055{left:319.999453pt;}
.xc_c01055{left:359.039067pt;}
.xd_c01055{left:365.119587pt;}
.x2_c01055{left:366.719200pt;}
.xb_c01055{left:370.879307pt;}
.x8_c01055{left:376.319867pt;}
.x9_c01055{left:399.999067pt;}
.x7_c01055{left:410.879840pt;}
.xf_c01055{left:496.960773pt;}
.x3_c01055{left:497.919480pt;}
.x10_c01055{left:524.159173pt;}
.xe_c01055{left:526.719720pt;}
.x4_c01055{left:613.439987pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_fefca524a8b022fcc887ba30.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_627351fc26022482e59c8cc9.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_87270215adef1ecbb8d93be4.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_b2f0f36aa9d65d6caf12ca3f.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01056;src:url('chunks/assets/font_2f90cb838a601c0fe3c269f9.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;line-height:1.432129;font-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_c01056{transform:matrix(0.109155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109155,0.000000,0.000000,0.250000,0,0);}
.m14_c01056{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.m19_c01056{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m1a_c01056{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m11_c01056{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m17_c01056{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m12_c01056{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m13_c01056{transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);}
.m18_c01056{transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199324,0.000000,0.000000,0.250000,0,0);}
.m9_c01056{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.md_c01056{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.ma_c01056{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m1_c01056{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m15_c01056{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m4_c01056{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m3_c01056{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.mf_c01056{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m7_c01056{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m6_c01056{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.mb_c01056{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.me_c01056{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m8_c01056{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m5_c01056{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m16_c01056{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m10_c01056{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.mc_c01056{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);}
.v0_c01056{vertical-align:0.000000px;}
.ls6_c01056{letter-spacing:-27.482325px;}
.ls13_c01056{letter-spacing:-6.656168px;}
.ls22_c01056{letter-spacing:-5.126625px;}
.ls19_c01056{letter-spacing:-4.745850px;}
.ls16_c01056{letter-spacing:-4.738500px;}
.lsa_c01056{letter-spacing:-4.182000px;}
.ls21_c01056{letter-spacing:-3.979575px;}
.ls7_c01056{letter-spacing:-3.345600px;}
.ls1d_c01056{letter-spacing:-3.320460px;}
.ls23_c01056{letter-spacing:-3.173625px;}
.ls1a_c01056{letter-spacing:-3.105375px;}
.ls1c_c01056{letter-spacing:-3.037125px;}
.ls1e_c01056{letter-spacing:-2.900625px;}
.ls4_c01056{letter-spacing:-2.508690px;}
.ls1b_c01056{letter-spacing:-2.494800px;}
.ls2_c01056{letter-spacing:-1.796348px;}
.lsd_c01056{letter-spacing:-1.722525px;}
.ls1_c01056{letter-spacing:-1.673310px;}
.lse_c01056{letter-spacing:-1.645650px;}
.lsb_c01056{letter-spacing:-1.621800px;}
.ls1f_c01056{letter-spacing:-1.087403px;}
.ls24_c01056{letter-spacing:-1.040633px;}
.ls15_c01056{letter-spacing:-0.888743px;}
.ls14_c01056{letter-spacing:-0.879750px;}
.lsc_c01056{letter-spacing:-0.851190px;}
.ls0_c01056{letter-spacing:-0.836400px;}
.ls5_c01056{letter-spacing:0.000000px;}
.ls10_c01056{letter-spacing:0.836400px;}
.ls20_c01056{letter-spacing:0.892500px;}
.lsf_c01056{letter-spacing:0.905625px;}
.ls11_c01056{letter-spacing:0.915900px;}
.ls18_c01056{letter-spacing:2.587500px;}
.ls12_c01056{letter-spacing:3.345600px;}
.ls3_c01056{letter-spacing:6.686100px;}
.ls9_c01056{letter-spacing:7.523010px;}
.ls8_c01056{letter-spacing:20.900310px;}
.ls17_c01056{letter-spacing:26.583660px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:0.000000px;}
._7_c01056{margin-left:-19.430164px;}
._6_c01056{margin-left:-5.212300px;}
._4_c01056{margin-left:-3.606118px;}
._3_c01056{margin-left:-1.834771px;}
._5_c01056{width:1.506515px;}
._9_c01056{width:2.992471px;}
._2_c01056{width:4.641911px;}
._8_c01056{width:5.651134px;}
._0_c01056{width:22.674834px;}
._c_c01056{width:23.684199px;}
._10_c01056{width:25.418066px;}
._b_c01056{width:27.029398px;}
._d_c01056{width:30.501110px;}
._f_c01056{width:31.978940px;}
._a_c01056{width:33.718959px;}
._e_c01056{width:35.320460px;}
._1_c01056{width:690.028821px;}
.fc0_c01056{color:transparent;}
.fs8_c01056{font-size:43.500000px;}
.fs6_c01056{font-size:45.000000px;}
.fs5_c01056{font-size:45.750000px;}
.fs0_c01056{font-size:51.000000px;}
.fs3_c01056{font-size:51.750000px;}
.fs4_c01056{font-size:52.500000px;}
.fs2_c01056{font-size:53.250000px;}
.fs7_c01056{font-size:54.000000px;}
.fs1_c01056{font-size:54.750000px;}
.fsd_c01056{font-size:55.500000px;}
.fsb_c01056{font-size:63.750000px;}
.fsa_c01056{font-size:66.750000px;}
.fs9_c01056{font-size:68.250000px;}
.fsc_c01056{font-size:69.750000px;}
.y0_c01056{bottom:0.000000px;}
.y6c_c01056{bottom:183.238515px;}
.y36_c01056{bottom:183.599370px;}
.y35_c01056{bottom:202.318935px;}
.y6b_c01056{bottom:202.318950px;}
.y6a_c01056{bottom:220.680150px;}
.y34_c01056{bottom:221.039865px;}
.y69_c01056{bottom:240.119385px;}
.y33_c01056{bottom:240.478470px;}
.y68_c01056{bottom:258.839565px;}
.y32_c01056{bottom:259.199385px;}
.y67_c01056{bottom:277.920000px;}
.y30_c01056{bottom:278.278605px;}
.y31_c01056{bottom:278.279250px;}
.y66_c01056{bottom:297.000000px;}
.y2f_c01056{bottom:297.359040px;}
.y64_c01056{bottom:316.799715px;}
.y65_c01056{bottom:316.800135px;}
.y2e_c01056{bottom:316.800195px;}
.y63_c01056{bottom:335.519280px;}
.y2d_c01056{bottom:335.880645px;}
.y62_c01056{bottom:355.318800px;}
.y2c_c01056{bottom:355.319250px;}
.y61_c01056{bottom:374.399235px;}
.y2b_c01056{bottom:374.760135px;}
.y2a_c01056{bottom:393.840135px;}
.y60_c01056{bottom:393.840300px;}
.y5f_c01056{bottom:412.200330px;}
.y29_c01056{bottom:412.559100px;}
.y28_c01056{bottom:431.279850px;}
.y5e_c01056{bottom:431.638935px;}
.y5d_c01056{bottom:450.359850px;}
.y27_c01056{bottom:450.360300px;}
.y26_c01056{bottom:469.798920px;}
.y24_c01056{bottom:489.237855px;}
.y25_c01056{bottom:489.239820px;}
.y5c_c01056{bottom:489.599070px;}
.y5b_c01056{bottom:489.599370px;}
.y23_c01056{bottom:507.597885px;}
.y5a_c01056{bottom:509.040510px;}
.y22_c01056{bottom:528.117810px;}
.y59_c01056{bottom:528.479115px;}
.y21_c01056{bottom:547.198245px;}
.y58_c01056{bottom:547.200045px;}
.y20_c01056{bottom:566.636850px;}
.y57_c01056{bottom:566.638665px;}
.y56_c01056{bottom:585.719100px;}
.y1f_c01056{bottom:586.078005px;}
.y1e_c01056{bottom:604.438035px;}
.y54_c01056{bottom:604.439415px;}
.y55_c01056{bottom:604.439670px;}
.y1d_c01056{bottom:623.518485px;}
.y53_c01056{bottom:623.519880px;}
.y1c_c01056{bottom:642.598935px;}
.y52_c01056{bottom:642.600315px;}
.y1b_c01056{bottom:662.037555px;}
.y51_c01056{bottom:662.038920px;}
.y1a_c01056{bottom:681.117990px;}
.y50_c01056{bottom:681.118560px;}
.y19_c01056{bottom:700.559145px;}
.y4f_c01056{bottom:700.559685px;}
.y18_c01056{bottom:719.639580px;}
.y4e_c01056{bottom:719.639700px;}
.y4d_c01056{bottom:739.078770px;}
.y17_c01056{bottom:739.439100px;}
.y4c_c01056{bottom:757.799520px;}
.y16_c01056{bottom:758.158650px;}
.y15_c01056{bottom:776.159160px;}
.y4b_c01056{bottom:776.879520px;}
.y4a_c01056{bottom:796.318815px;}
.y49_c01056{bottom:796.318845px;}
.y14_c01056{bottom:796.679070px;}
.y48_c01056{bottom:816.118350px;}
.y13_c01056{bottom:816.478575px;}
.y12_c01056{bottom:835.198125px;}
.y47_c01056{bottom:835.198785px;}
.y46_c01056{bottom:854.639070px;}
.y11_c01056{bottom:854.997645px;}
.y45_c01056{bottom:873.719520px;}
.y10_c01056{bottom:874.078080px;}
.y44_c01056{bottom:892.799565px;}
.yf_c01056{bottom:893.519235px;}
.y42_c01056{bottom:912.238590px;}
.y43_c01056{bottom:912.238770px;}
.ye_c01056{bottom:912.599670px;}
.y41_c01056{bottom:931.679715px;}
.yd_c01056{bottom:932.038965px;}
.yc_c01056{bottom:932.039040px;}
.y40_c01056{bottom:950.398590px;}
.yb_c01056{bottom:950.759970px;}
.y3f_c01056{bottom:969.839340px;}
.ya_c01056{bottom:970.198590px;}
.y3e_c01056{bottom:988.560240px;}
.y8_c01056{bottom:988.918920px;}
.y9_c01056{bottom:988.919490px;}
.y3d_c01056{bottom:1007.998095px;}
.y7_c01056{bottom:1008.357540px;}
.y3c_c01056{bottom:1027.078530px;}
.y6_c01056{bottom:1027.437990px;}
.y3b_c01056{bottom:1046.519685px;}
.y5_c01056{bottom:1046.879130px;}
.y3a_c01056{bottom:1065.600135px;}
.y4_c01056{bottom:1065.959580px;}
.y38_c01056{bottom:1084.679700px;}
.y39_c01056{bottom:1084.680090px;}
.y3_c01056{bottom:1085.398200px;}
.y37_c01056{bottom:1103.760135px;}
.y2_c01056{bottom:1104.478635px;}
.y1_c01056{bottom:1142.999355px;}
.h9_c01056{height:45.369141px;}
.h7_c01056{height:46.933594px;}
.h6_c01056{height:47.715820px;}
.h1_c01056{height:50.402344px;}
.h4_c01056{height:51.143555px;}
.h5_c01056{height:51.884766px;}
.h3_c01056{height:52.625977px;}
.h8_c01056{height:52.971680px;}
.h2_c01056{height:54.108398px;}
.he_c01056{height:54.849609px;}
.hc_c01056{height:63.002930px;}
.hb_c01056{height:65.967773px;}
.ha_c01056{height:67.450195px;}
.hd_c01056{height:68.932617px;}
.h0_c01056{height:1263.000000px;}
.w0_c01056{width:892.500000px;}
.x0_c01056{left:0.000000px;}
.x1_c01056{left:295.918950px;}
.x6_c01056{left:359.280465px;}
.x3_c01056{left:360.358635px;}
.x8_c01056{left:404.639100px;}
.x7_c01056{left:411.838950px;}
.x4_c01056{left:418.318770px;}
.x9_c01056{left:424.080000px;}
.x5_c01056{left:444.598530px;}
.xd_c01056{left:559.080615px;}
.xe_c01056{left:560.159415px;}
.xa_c01056{left:561.238770px;}
.xc_c01056{left:588.958920px;}
.xb_c01056{left:593.639100px;}
.x2_c01056{left:691.919535px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls6_c01056{letter-spacing:-24.428733pt;}
.ls13_c01056{letter-spacing:-5.916593pt;}
.ls22_c01056{letter-spacing:-4.557000pt;}
.ls19_c01056{letter-spacing:-4.218533pt;}
.ls16_c01056{letter-spacing:-4.212000pt;}
.lsa_c01056{letter-spacing:-3.717333pt;}
.ls21_c01056{letter-spacing:-3.537400pt;}
.ls7_c01056{letter-spacing:-2.973867pt;}
.ls1d_c01056{letter-spacing:-2.951520pt;}
.ls23_c01056{letter-spacing:-2.821000pt;}
.ls1a_c01056{letter-spacing:-2.760333pt;}
.ls1c_c01056{letter-spacing:-2.699667pt;}
.ls1e_c01056{letter-spacing:-2.578333pt;}
.ls4_c01056{letter-spacing:-2.229947pt;}
.ls1b_c01056{letter-spacing:-2.217600pt;}
.ls2_c01056{letter-spacing:-1.596753pt;}
.lsd_c01056{letter-spacing:-1.531133pt;}
.ls1_c01056{letter-spacing:-1.487387pt;}
.lse_c01056{letter-spacing:-1.462800pt;}
.lsb_c01056{letter-spacing:-1.441600pt;}
.ls1f_c01056{letter-spacing:-0.966580pt;}
.ls24_c01056{letter-spacing:-0.925007pt;}
.ls15_c01056{letter-spacing:-0.789993pt;}
.ls14_c01056{letter-spacing:-0.782000pt;}
.lsc_c01056{letter-spacing:-0.756613pt;}
.ls0_c01056{letter-spacing:-0.743467pt;}
.ls5_c01056{letter-spacing:0.000000pt;}
.ls10_c01056{letter-spacing:0.743467pt;}
.ls20_c01056{letter-spacing:0.793333pt;}
.lsf_c01056{letter-spacing:0.805000pt;}
.ls11_c01056{letter-spacing:0.814133pt;}
.ls18_c01056{letter-spacing:2.300000pt;}
.ls12_c01056{letter-spacing:2.973867pt;}
.ls3_c01056{letter-spacing:5.943200pt;}
.ls9_c01056{letter-spacing:6.687120pt;}
.ls8_c01056{letter-spacing:18.578053pt;}
.ls17_c01056{letter-spacing:23.629920pt;}
.ws0_c01056{word-spacing:0.000000pt;}
._7_c01056{margin-left:-17.271257pt;}
._6_c01056{margin-left:-4.633156pt;}
._4_c01056{margin-left:-3.205438pt;}
._3_c01056{margin-left:-1.630908pt;}
._5_c01056{width:1.339124pt;}
._9_c01056{width:2.659974pt;}
._2_c01056{width:4.126143pt;}
._8_c01056{width:5.023231pt;}
._0_c01056{width:20.155408pt;}
._c_c01056{width:21.052622pt;}
._10_c01056{width:22.593836pt;}
._b_c01056{width:24.026132pt;}
._d_c01056{width:27.112098pt;}
._f_c01056{width:28.425724pt;}
._a_c01056{width:29.972408pt;}
._e_c01056{width:31.395964pt;}
._1_c01056{width:613.358952pt;}
.fs8_c01056{font-size:38.666667pt;}
.fs6_c01056{font-size:40.000000pt;}
.fs5_c01056{font-size:40.666667pt;}
.fs0_c01056{font-size:45.333333pt;}
.fs3_c01056{font-size:46.000000pt;}
.fs4_c01056{font-size:46.666667pt;}
.fs2_c01056{font-size:47.333333pt;}
.fs7_c01056{font-size:48.000000pt;}
.fs1_c01056{font-size:48.666667pt;}
.fsd_c01056{font-size:49.333333pt;}
.fsb_c01056{font-size:56.666667pt;}
.fsa_c01056{font-size:59.333333pt;}
.fs9_c01056{font-size:60.666667pt;}
.fsc_c01056{font-size:62.000000pt;}
.y0_c01056{bottom:0.000000pt;}
.y6c_c01056{bottom:162.878680pt;}
.y36_c01056{bottom:163.199440pt;}
.y35_c01056{bottom:179.839053pt;}
.y6b_c01056{bottom:179.839067pt;}
.y6a_c01056{bottom:196.160133pt;}
.y34_c01056{bottom:196.479880pt;}
.y69_c01056{bottom:213.439453pt;}
.y33_c01056{bottom:213.758640pt;}
.y68_c01056{bottom:230.079613pt;}
.y32_c01056{bottom:230.399453pt;}
.y67_c01056{bottom:247.040000pt;}
.y30_c01056{bottom:247.358760pt;}
.y31_c01056{bottom:247.359333pt;}
.y66_c01056{bottom:264.000000pt;}
.y2f_c01056{bottom:264.319147pt;}
.y64_c01056{bottom:281.599747pt;}
.y65_c01056{bottom:281.600120pt;}
.y2e_c01056{bottom:281.600173pt;}
.y63_c01056{bottom:298.239360pt;}
.y2d_c01056{bottom:298.560573pt;}
.y62_c01056{bottom:315.838933pt;}
.y2c_c01056{bottom:315.839333pt;}
.y61_c01056{bottom:332.799320pt;}
.y2b_c01056{bottom:333.120120pt;}
.y2a_c01056{bottom:350.080120pt;}
.y60_c01056{bottom:350.080267pt;}
.y5f_c01056{bottom:366.400293pt;}
.y29_c01056{bottom:366.719200pt;}
.y28_c01056{bottom:383.359867pt;}
.y5e_c01056{bottom:383.679053pt;}
.y5d_c01056{bottom:400.319867pt;}
.y27_c01056{bottom:400.320267pt;}
.y26_c01056{bottom:417.599040pt;}
.y24_c01056{bottom:434.878093pt;}
.y25_c01056{bottom:434.879840pt;}
.y5c_c01056{bottom:435.199173pt;}
.y5b_c01056{bottom:435.199440pt;}
.y23_c01056{bottom:451.198120pt;}
.y5a_c01056{bottom:452.480453pt;}
.y22_c01056{bottom:469.438053pt;}
.y59_c01056{bottom:469.759213pt;}
.y21_c01056{bottom:486.398440pt;}
.y58_c01056{bottom:486.400040pt;}
.y20_c01056{bottom:503.677200pt;}
.y57_c01056{bottom:503.678813pt;}
.y56_c01056{bottom:520.639200pt;}
.y1f_c01056{bottom:520.958227pt;}
.y1e_c01056{bottom:537.278253pt;}
.y54_c01056{bottom:537.279480pt;}
.y55_c01056{bottom:537.279707pt;}
.y1d_c01056{bottom:554.238653pt;}
.y53_c01056{bottom:554.239893pt;}
.y1c_c01056{bottom:571.199053pt;}
.y52_c01056{bottom:571.200280pt;}
.y1b_c01056{bottom:588.477827pt;}
.y51_c01056{bottom:588.479040pt;}
.y1a_c01056{bottom:605.438213pt;}
.y50_c01056{bottom:605.438720pt;}
.y19_c01056{bottom:622.719240pt;}
.y4f_c01056{bottom:622.719720pt;}
.y18_c01056{bottom:639.679627pt;}
.y4e_c01056{bottom:639.679733pt;}
.y4d_c01056{bottom:656.958907pt;}
.y17_c01056{bottom:657.279200pt;}
.y4c_c01056{bottom:673.599573pt;}
.y16_c01056{bottom:673.918800pt;}
.y15_c01056{bottom:689.919253pt;}
.y4b_c01056{bottom:690.559573pt;}
.y4a_c01056{bottom:707.838947pt;}
.y49_c01056{bottom:707.838973pt;}
.y14_c01056{bottom:708.159173pt;}
.y48_c01056{bottom:725.438533pt;}
.y13_c01056{bottom:725.758733pt;}
.y12_c01056{bottom:742.398333pt;}
.y47_c01056{bottom:742.398920pt;}
.y46_c01056{bottom:759.679173pt;}
.y11_c01056{bottom:759.997907pt;}
.y45_c01056{bottom:776.639573pt;}
.y10_c01056{bottom:776.958293pt;}
.y44_c01056{bottom:793.599613pt;}
.yf_c01056{bottom:794.239320pt;}
.y42_c01056{bottom:810.878747pt;}
.y43_c01056{bottom:810.878907pt;}
.ye_c01056{bottom:811.199707pt;}
.y41_c01056{bottom:828.159747pt;}
.yd_c01056{bottom:828.479080pt;}
.yc_c01056{bottom:828.479147pt;}
.y40_c01056{bottom:844.798747pt;}
.yb_c01056{bottom:845.119973pt;}
.y3f_c01056{bottom:862.079413pt;}
.ya_c01056{bottom:862.398747pt;}
.y3e_c01056{bottom:878.720213pt;}
.y8_c01056{bottom:879.039040pt;}
.y9_c01056{bottom:879.039547pt;}
.y3d_c01056{bottom:895.998307pt;}
.y7_c01056{bottom:896.317813pt;}
.y3c_c01056{bottom:912.958693pt;}
.y6_c01056{bottom:913.278213pt;}
.y3b_c01056{bottom:930.239720pt;}
.y5_c01056{bottom:930.559227pt;}
.y3a_c01056{bottom:947.200120pt;}
.y4_c01056{bottom:947.519627pt;}
.y38_c01056{bottom:964.159733pt;}
.y39_c01056{bottom:964.160080pt;}
.y3_c01056{bottom:964.798400pt;}
.y37_c01056{bottom:981.120120pt;}
.y2_c01056{bottom:981.758787pt;}
.y1_c01056{bottom:1015.999427pt;}
.h9_c01056{height:40.328125pt;}
.h7_c01056{height:41.718750pt;}
.h6_c01056{height:42.414062pt;}
.h1_c01056{height:44.802083pt;}
.h4_c01056{height:45.460938pt;}
.h5_c01056{height:46.119792pt;}
.h3_c01056{height:46.778646pt;}
.h8_c01056{height:47.085938pt;}
.h2_c01056{height:48.096354pt;}
.he_c01056{height:48.755208pt;}
.hc_c01056{height:56.002604pt;}
.hb_c01056{height:58.638021pt;}
.ha_c01056{height:59.955729pt;}
.hd_c01056{height:61.273438pt;}
.h0_c01056{height:1122.666667pt;}
.w0_c01056{width:793.333333pt;}
.x0_c01056{left:0.000000pt;}
.x1_c01056{left:263.039067pt;}
.x6_c01056{left:319.360413pt;}
.x3_c01056{left:320.318787pt;}
.x8_c01056{left:359.679200pt;}
.x7_c01056{left:366.079067pt;}
.x4_c01056{left:371.838907pt;}
.x9_c01056{left:376.960000pt;}
.x5_c01056{left:395.198693pt;}
.xd_c01056{left:496.960547pt;}
.xe_c01056{left:497.919480pt;}
.xa_c01056{left:498.878907pt;}
.xc_c01056{left:523.519040pt;}
.xb_c01056{left:527.679200pt;}
.x2_c01056{left:615.039587pt;}
}





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

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_a4c85ceb46e7337606e255d5.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_0156420a13df89d7515079f2.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_934e466536be217290fb2e93.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01057;src:url('chunks/assets/font_56632b51bca4fa030657c8e9.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01057;src:url('chunks/assets/font_130ae5afa170bcff3639c671.woff2')format("woff");}.ff5_c01057{font-family:ff5_c01057;line-height:1.364746;font-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_c01057{transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170330,0.000000,0.000000,0.250000,0,0);}
.m10_c01057{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m17_c01057{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m2_c01057{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m11_c01057{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m15_c01057{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m13_c01057{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.mf_c01057{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);}
.m18_c01057{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.mb_c01057{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m9_c01057{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m7_c01057{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m4_c01057{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m14_c01057{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m1_c01057{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.me_c01057{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m6_c01057{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m3_c01057{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.mc_c01057{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m5_c01057{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m16_c01057{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m8_c01057{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m0_c01057{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m12_c01057{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.md_c01057{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.ma_c01057{transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls1b_c01057{letter-spacing:-16.927103px;}
.lse_c01057{letter-spacing:-15.551873px;}
.ls1c_c01057{letter-spacing:-9.282600px;}
.ls9_c01057{letter-spacing:-5.018400px;}
.ls18_c01057{letter-spacing:-4.984200px;}
.lsb_c01057{letter-spacing:-4.366500px;}
.lsc_c01057{letter-spacing:-4.182000px;}
.ls11_c01057{letter-spacing:-4.094925px;}
.ls12_c01057{letter-spacing:-3.579750px;}
.ls10_c01057{letter-spacing:-3.434625px;}
.ls6_c01057{letter-spacing:-3.345600px;}
.ls15_c01057{letter-spacing:-3.173625px;}
.ls16_c01057{letter-spacing:-3.037125px;}
.ls19_c01057{letter-spacing:-2.968875px;}
.ls17_c01057{letter-spacing:-2.766938px;}
.ls3_c01057{letter-spacing:-2.713770px;}
.ls8_c01057{letter-spacing:-2.568323px;}
.lsa_c01057{letter-spacing:-2.508690px;}
.ls1a_c01057{letter-spacing:-1.822628px;}
.ls5_c01057{letter-spacing:-1.722525px;}
.ls2_c01057{letter-spacing:-1.673310px;}
.ls1f_c01057{letter-spacing:-1.098825px;}
.ls1d_c01057{letter-spacing:-1.040633px;}
.ls1_c01057{letter-spacing:-0.836400px;}
.ls7_c01057{letter-spacing:0.000000px;}
.ls13_c01057{letter-spacing:0.836400px;}
.lsf_c01057{letter-spacing:0.955988px;}
.ls1e_c01057{letter-spacing:0.969150px;}
.ls14_c01057{letter-spacing:1.974375px;}
.ls4_c01057{letter-spacing:10.380825px;}
.lsd_c01057{letter-spacing:18.490875px;}
.ls0_c01057{letter-spacing:25.917690px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:0.000000px;}
._7_c01057{margin-left:-35.848151px;}
._10_c01057{margin-left:-25.080471px;}
._8_c01057{margin-left:-10.297184px;}
._a_c01057{margin-left:-9.283137px;}
._6_c01057{margin-left:-7.818083px;}
._4_c01057{margin-left:-5.212300px;}
._9_c01057{margin-left:-3.606118px;}
._3_c01057{margin-left:-1.834771px;}
._c_c01057{width:1.703040px;}
._2_c01057{width:3.060945px;}
._b_c01057{width:6.535157px;}
._5_c01057{width:8.129634px;}
._12_c01057{width:22.072532px;}
._0_c01057{width:24.286568px;}
._e_c01057{width:25.397398px;}
._f_c01057{width:27.019700px;}
._d_c01057{width:30.501043px;}
._13_c01057{width:31.978940px;}
._14_c01057{width:33.854235px;}
._11_c01057{width:35.310293px;}
._1_c01057{width:688.421769px;}
.fc0_c01057{color:transparent;}
.fs7_c01057{font-size:48.750000px;}
.fs9_c01057{font-size:50.250000px;}
.fs0_c01057{font-size:51.000000px;}
.fs3_c01057{font-size:52.500000px;}
.fs4_c01057{font-size:53.250000px;}
.fs8_c01057{font-size:54.000000px;}
.fs5_c01057{font-size:54.750000px;}
.fsa_c01057{font-size:55.500000px;}
.fs6_c01057{font-size:56.250000px;}
.fs1_c01057{font-size:57.000000px;}
.fse_c01057{font-size:57.750000px;}
.fsf_c01057{font-size:60.750000px;}
.fsd_c01057{font-size:65.250000px;}
.fsc_c01057{font-size:66.750000px;}
.fs2_c01057{font-size:67.500000px;}
.fs10_c01057{font-size:68.250000px;}
.fsb_c01057{font-size:69.750000px;}
.y0_c01057{bottom:0.000000px;}
.y69_c01057{bottom:182.518815px;}
.y38_c01057{bottom:182.519880px;}
.y68_c01057{bottom:201.599265px;}
.y37_c01057{bottom:201.958485px;}
.y67_c01057{bottom:220.679715px;}
.y36_c01057{bottom:221.038950px;}
.y66_c01057{bottom:239.760150px;}
.y35_c01057{bottom:240.119385px;}
.y65_c01057{bottom:258.840135px;}
.y64_c01057{bottom:258.840660px;}
.y34_c01057{bottom:259.199385px;}
.y33_c01057{bottom:278.640150px;}
.y31_c01057{bottom:297.359190px;}
.y32_c01057{bottom:297.359250px;}
.y63_c01057{bottom:297.359295px;}
.y62_c01057{bottom:316.440900px;}
.y30_c01057{bottom:316.800345px;}
.y61_c01057{bottom:335.159160px;}
.y2f_c01057{bottom:335.521245px;}
.y60_c01057{bottom:354.600315px;}
.y2e_c01057{bottom:354.959865px;}
.y5f_c01057{bottom:373.680750px;}
.y2d_c01057{bottom:373.680795px;}
.y2c_c01057{bottom:393.119415px;}
.y5e_c01057{bottom:393.119985px;}
.y2b_c01057{bottom:412.199850px;}
.y2a_c01057{bottom:431.640750px;}
.y29_c01057{bottom:449.998950px;}
.y5d_c01057{bottom:450.000600px;}
.y28_c01057{bottom:470.157990px;}
.y5c_c01057{bottom:470.159820px;}
.y27_c01057{bottom:489.599115px;}
.y5b_c01057{bottom:489.599445px;}
.y26_c01057{bottom:508.679580px;}
.y5a_c01057{bottom:508.679895px;}
.y25_c01057{bottom:527.399145px;}
.y59_c01057{bottom:527.399460px;}
.y24_c01057{bottom:546.840270px;}
.y58_c01057{bottom:546.840585px;}
.y56_c01057{bottom:565.559025px;}
.y57_c01057{bottom:565.559685px;}
.y23_c01057{bottom:565.920735px;}
.y55_c01057{bottom:585.000165px;}
.y22_c01057{bottom:585.359340px;}
.y21_c01057{bottom:604.080255px;}
.y54_c01057{bottom:604.080615px;}
.y53_c01057{bottom:623.161050px;}
.y20_c01057{bottom:623.518860px;}
.y52_c01057{bottom:642.599670px;}
.y1f_c01057{bottom:642.960015px;}
.y51_c01057{bottom:661.679310px;}
.y1e_c01057{bottom:662.040465px;}
.y50_c01057{bottom:681.120435px;}
.y1d_c01057{bottom:681.120915px;}
.y4f_c01057{bottom:700.200435px;}
.y1c_c01057{bottom:700.559535px;}
.y1a_c01057{bottom:719.279820px;}
.y4e_c01057{bottom:719.280030px;}
.y1b_c01057{bottom:719.280435px;}
.y19_c01057{bottom:738.718440px;}
.y4d_c01057{bottom:738.718650px;}
.y4c_c01057{bottom:757.799100px;}
.y18_c01057{bottom:758.159595px;}
.y4b_c01057{bottom:776.879535px;}
.y17_c01057{bottom:777.240030px;}
.y4a_c01057{bottom:795.600465px;}
.y16_c01057{bottom:795.959580px;}
.y15_c01057{bottom:815.759100px;}
.y49_c01057{bottom:815.759490px;}
.y48_c01057{bottom:834.480285px;}
.y47_c01057{bottom:834.480975px;}
.y14_c01057{bottom:834.839535px;}
.y46_c01057{bottom:853.919580px;}
.y12_c01057{bottom:854.279820px;}
.y13_c01057{bottom:854.280390px;}
.y45_c01057{bottom:872.640525px;}
.y11_c01057{bottom:872.999385px;}
.y44_c01057{bottom:892.079130px;}
.y10_c01057{bottom:892.440540px;}
.y43_c01057{bottom:911.520270px;}
.yf_c01057{bottom:911.879145px;}
.y42_c01057{bottom:930.959385px;}
.ye_c01057{bottom:931.320285px;}
.yd_c01057{bottom:931.320870px;}
.y41_c01057{bottom:950.401365px;}
.yb_c01057{bottom:950.758020px;}
.yc_c01057{bottom:950.759490px;}
.y40_c01057{bottom:969.839970px;}
.ya_c01057{bottom:970.199160px;}
.y3f_c01057{bottom:988.560885px;}
.y9_c01057{bottom:988.918710px;}
.y3e_c01057{bottom:1007.999490px;}
.y8_c01057{bottom:1008.359865px;}
.y3d_c01057{bottom:1026.720435px;}
.y7_c01057{bottom:1027.440315px;}
.y3c_c01057{bottom:1046.159040px;}
.y6_c01057{bottom:1046.879520px;}
.y5_c01057{bottom:1046.879820px;}
.y3b_c01057{bottom:1064.879955px;}
.y4_c01057{bottom:1065.600720px;}
.y3a_c01057{bottom:1084.318560px;}
.y3_c01057{bottom:1085.039340px;}
.y39_c01057{bottom:1103.400195px;}
.y2_c01057{bottom:1104.119385px;}
.y1_c01057{bottom:1142.999355px;}
.hb_c01057{height:47.845459px;}
.h8_c01057{height:48.178711px;}
.ha_c01057{height:49.317627px;}
.h1_c01057{height:50.402344px;}
.h4_c01057{height:51.884766px;}
.h5_c01057{height:52.625977px;}
.h9_c01057{height:53.367188px;}
.h6_c01057{height:54.108398px;}
.hc_c01057{height:54.849609px;}
.h7_c01057{height:55.590820px;}
.h2_c01057{height:56.332031px;}
.h10_c01057{height:60.231445px;}
.h11_c01057{height:63.360352px;}
.hf_c01057{height:64.485352px;}
.he_c01057{height:65.967773px;}
.h3_c01057{height:66.708984px;}
.h12_c01057{height:67.450195px;}
.hd_c01057{height:68.932617px;}
.h0_c01057{height:1263.000000px;}
.w0_c01057{width:892.500000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:300.599100px;}
.x10_c01057{left:363.598980px;}
.xa_c01057{left:364.679460px;}
.x3_c01057{left:365.759100px;}
.xb_c01057{left:410.039385px;}
.x11_c01057{left:415.078815px;}
.x8_c01057{left:422.998950px;}
.x4_c01057{left:424.080000px;}
.xe_c01057{left:428.758530px;}
.x5_c01057{left:436.678530px;}
.x9_c01057{left:442.439670px;}
.xc_c01057{left:448.558635px;}
.xf_c01057{left:454.679070px;}
.xd_c01057{left:461.519670px;}
.x6_c01057{left:487.799565px;}
.x7_c01057{left:500.399820px;}
.x15_c01057{left:564.478380px;}
.x13_c01057{left:565.559580px;}
.x12_c01057{left:566.638140px;}
.x16_c01057{left:597.239820px;}
.x14_c01057{left:598.319235px;}
.x2_c01057{left:696.238770px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls1b_c01057{letter-spacing:-15.046313pt;}
.lse_c01057{letter-spacing:-13.823887pt;}
.ls1c_c01057{letter-spacing:-8.251200pt;}
.ls9_c01057{letter-spacing:-4.460800pt;}
.ls18_c01057{letter-spacing:-4.430400pt;}
.lsb_c01057{letter-spacing:-3.881333pt;}
.lsc_c01057{letter-spacing:-3.717333pt;}
.ls11_c01057{letter-spacing:-3.639933pt;}
.ls12_c01057{letter-spacing:-3.182000pt;}
.ls10_c01057{letter-spacing:-3.053000pt;}
.ls6_c01057{letter-spacing:-2.973867pt;}
.ls15_c01057{letter-spacing:-2.821000pt;}
.ls16_c01057{letter-spacing:-2.699667pt;}
.ls19_c01057{letter-spacing:-2.639000pt;}
.ls17_c01057{letter-spacing:-2.459500pt;}
.ls3_c01057{letter-spacing:-2.412240pt;}
.ls8_c01057{letter-spacing:-2.282953pt;}
.lsa_c01057{letter-spacing:-2.229947pt;}
.ls1a_c01057{letter-spacing:-1.620113pt;}
.ls5_c01057{letter-spacing:-1.531133pt;}
.ls2_c01057{letter-spacing:-1.487387pt;}
.ls1f_c01057{letter-spacing:-0.976733pt;}
.ls1d_c01057{letter-spacing:-0.925007pt;}
.ls1_c01057{letter-spacing:-0.743467pt;}
.ls7_c01057{letter-spacing:0.000000pt;}
.ls13_c01057{letter-spacing:0.743467pt;}
.lsf_c01057{letter-spacing:0.849767pt;}
.ls1e_c01057{letter-spacing:0.861467pt;}
.ls14_c01057{letter-spacing:1.755000pt;}
.ls4_c01057{letter-spacing:9.227400pt;}
.lsd_c01057{letter-spacing:16.436333pt;}
.ls0_c01057{letter-spacing:23.037947pt;}
.ws0_c01057{word-spacing:0.000000pt;}
._7_c01057{margin-left:-31.865023pt;}
._10_c01057{margin-left:-22.293752pt;}
._8_c01057{margin-left:-9.153053pt;}
._a_c01057{margin-left:-8.251677pt;}
._6_c01057{margin-left:-6.949407pt;}
._4_c01057{margin-left:-4.633156pt;}
._9_c01057{margin-left:-3.205438pt;}
._3_c01057{margin-left:-1.630908pt;}
._c_c01057{width:1.513814pt;}
._2_c01057{width:2.720840pt;}
._b_c01057{width:5.809028pt;}
._5_c01057{width:7.226341pt;}
._12_c01057{width:19.620029pt;}
._0_c01057{width:21.588060pt;}
._e_c01057{width:22.575465pt;}
._f_c01057{width:24.017511pt;}
._d_c01057{width:27.112038pt;}
._13_c01057{width:28.425724pt;}
._14_c01057{width:30.092653pt;}
._11_c01057{width:31.386927pt;}
._1_c01057{width:611.930462pt;}
.fs7_c01057{font-size:43.333333pt;}
.fs9_c01057{font-size:44.666667pt;}
.fs0_c01057{font-size:45.333333pt;}
.fs3_c01057{font-size:46.666667pt;}
.fs4_c01057{font-size:47.333333pt;}
.fs8_c01057{font-size:48.000000pt;}
.fs5_c01057{font-size:48.666667pt;}
.fsa_c01057{font-size:49.333333pt;}
.fs6_c01057{font-size:50.000000pt;}
.fs1_c01057{font-size:50.666667pt;}
.fse_c01057{font-size:51.333333pt;}
.fsf_c01057{font-size:54.000000pt;}
.fsd_c01057{font-size:58.000000pt;}
.fsc_c01057{font-size:59.333333pt;}
.fs2_c01057{font-size:60.000000pt;}
.fs10_c01057{font-size:60.666667pt;}
.fsb_c01057{font-size:62.000000pt;}
.y0_c01057{bottom:0.000000pt;}
.y69_c01057{bottom:162.238947pt;}
.y38_c01057{bottom:162.239893pt;}
.y68_c01057{bottom:179.199347pt;}
.y37_c01057{bottom:179.518653pt;}
.y67_c01057{bottom:196.159747pt;}
.y36_c01057{bottom:196.479067pt;}
.y66_c01057{bottom:213.120133pt;}
.y35_c01057{bottom:213.439453pt;}
.y65_c01057{bottom:230.080120pt;}
.y64_c01057{bottom:230.080587pt;}
.y34_c01057{bottom:230.399453pt;}
.y33_c01057{bottom:247.680133pt;}
.y31_c01057{bottom:264.319280pt;}
.y32_c01057{bottom:264.319333pt;}
.y63_c01057{bottom:264.319373pt;}
.y62_c01057{bottom:281.280800pt;}
.y30_c01057{bottom:281.600307pt;}
.y61_c01057{bottom:297.919253pt;}
.y2f_c01057{bottom:298.241107pt;}
.y60_c01057{bottom:315.200280pt;}
.y2e_c01057{bottom:315.519880pt;}
.y5f_c01057{bottom:332.160667pt;}
.y2d_c01057{bottom:332.160707pt;}
.y2c_c01057{bottom:349.439480pt;}
.y5e_c01057{bottom:349.439987pt;}
.y2b_c01057{bottom:366.399867pt;}
.y2a_c01057{bottom:383.680667pt;}
.y29_c01057{bottom:399.999067pt;}
.y5d_c01057{bottom:400.000533pt;}
.y28_c01057{bottom:417.918213pt;}
.y5c_c01057{bottom:417.919840pt;}
.y27_c01057{bottom:435.199213pt;}
.y5b_c01057{bottom:435.199507pt;}
.y26_c01057{bottom:452.159627pt;}
.y5a_c01057{bottom:452.159907pt;}
.y25_c01057{bottom:468.799240pt;}
.y59_c01057{bottom:468.799520pt;}
.y24_c01057{bottom:486.080240pt;}
.y58_c01057{bottom:486.080520pt;}
.y56_c01057{bottom:502.719133pt;}
.y57_c01057{bottom:502.719720pt;}
.y23_c01057{bottom:503.040653pt;}
.y55_c01057{bottom:520.000147pt;}
.y22_c01057{bottom:520.319413pt;}
.y21_c01057{bottom:536.960227pt;}
.y54_c01057{bottom:536.960547pt;}
.y53_c01057{bottom:553.920933pt;}
.y20_c01057{bottom:554.238987pt;}
.y52_c01057{bottom:571.199707pt;}
.y1f_c01057{bottom:571.520013pt;}
.y51_c01057{bottom:588.159387pt;}
.y1e_c01057{bottom:588.480413pt;}
.y50_c01057{bottom:605.440387pt;}
.y1d_c01057{bottom:605.440813pt;}
.y4f_c01057{bottom:622.400387pt;}
.y1c_c01057{bottom:622.719587pt;}
.y1a_c01057{bottom:639.359840pt;}
.y4e_c01057{bottom:639.360027pt;}
.y1b_c01057{bottom:639.360387pt;}
.y19_c01057{bottom:656.638613pt;}
.y4d_c01057{bottom:656.638800pt;}
.y4c_c01057{bottom:673.599200pt;}
.y18_c01057{bottom:673.919640pt;}
.y4b_c01057{bottom:690.559587pt;}
.y17_c01057{bottom:690.880027pt;}
.y4a_c01057{bottom:707.200413pt;}
.y16_c01057{bottom:707.519627pt;}
.y15_c01057{bottom:725.119200pt;}
.y49_c01057{bottom:725.119547pt;}
.y48_c01057{bottom:741.760253pt;}
.y47_c01057{bottom:741.760867pt;}
.y14_c01057{bottom:742.079587pt;}
.y46_c01057{bottom:759.039627pt;}
.y12_c01057{bottom:759.359840pt;}
.y13_c01057{bottom:759.360347pt;}
.y45_c01057{bottom:775.680467pt;}
.y11_c01057{bottom:775.999453pt;}
.y44_c01057{bottom:792.959227pt;}
.y10_c01057{bottom:793.280480pt;}
.y43_c01057{bottom:810.240240pt;}
.yf_c01057{bottom:810.559240pt;}
.y42_c01057{bottom:827.519453pt;}
.ye_c01057{bottom:827.840253pt;}
.yd_c01057{bottom:827.840773pt;}
.y41_c01057{bottom:844.801213pt;}
.yb_c01057{bottom:845.118240pt;}
.yc_c01057{bottom:845.119547pt;}
.y40_c01057{bottom:862.079973pt;}
.ya_c01057{bottom:862.399253pt;}
.y3f_c01057{bottom:878.720787pt;}
.y9_c01057{bottom:879.038853pt;}
.y3e_c01057{bottom:895.999547pt;}
.y8_c01057{bottom:896.319880pt;}
.y3d_c01057{bottom:912.640387pt;}
.y7_c01057{bottom:913.280280pt;}
.y3c_c01057{bottom:929.919147pt;}
.y6_c01057{bottom:930.559573pt;}
.y5_c01057{bottom:930.559840pt;}
.y3b_c01057{bottom:946.559960pt;}
.y4_c01057{bottom:947.200640pt;}
.y3a_c01057{bottom:963.838720pt;}
.y3_c01057{bottom:964.479413pt;}
.y39_c01057{bottom:980.800173pt;}
.y2_c01057{bottom:981.439453pt;}
.y1_c01057{bottom:1015.999427pt;}
.hb_c01057{height:42.529297pt;}
.h8_c01057{height:42.825521pt;}
.ha_c01057{height:43.837891pt;}
.h1_c01057{height:44.802083pt;}
.h4_c01057{height:46.119792pt;}
.h5_c01057{height:46.778646pt;}
.h9_c01057{height:47.437500pt;}
.h6_c01057{height:48.096354pt;}
.hc_c01057{height:48.755208pt;}
.h7_c01057{height:49.414063pt;}
.h2_c01057{height:50.072917pt;}
.h10_c01057{height:53.539062pt;}
.h11_c01057{height:56.320312pt;}
.hf_c01057{height:57.320313pt;}
.he_c01057{height:58.638021pt;}
.h3_c01057{height:59.296875pt;}
.h12_c01057{height:59.955729pt;}
.hd_c01057{height:61.273438pt;}
.h0_c01057{height:1122.666667pt;}
.w0_c01057{width:793.333333pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:267.199200pt;}
.x10_c01057{left:323.199093pt;}
.xa_c01057{left:324.159520pt;}
.x3_c01057{left:325.119200pt;}
.xb_c01057{left:364.479453pt;}
.x11_c01057{left:368.958947pt;}
.x8_c01057{left:375.999067pt;}
.x4_c01057{left:376.960000pt;}
.xe_c01057{left:381.118693pt;}
.x5_c01057{left:388.158693pt;}
.x9_c01057{left:393.279707pt;}
.xc_c01057{left:398.718787pt;}
.xf_c01057{left:404.159173pt;}
.xd_c01057{left:410.239707pt;}
.x6_c01057{left:433.599613pt;}
.x7_c01057{left:444.799840pt;}
.x15_c01057{left:501.758560pt;}
.x13_c01057{left:502.719627pt;}
.x12_c01057{left:503.678347pt;}
.x16_c01057{left:530.879840pt;}
.x14_c01057{left:531.839320pt;}
.x2_c01057{left:618.878907pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_7de1044e9c11128ab79a5c9f.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_72a8fddd843aea82581d070d.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_cc76f727fd3cbf9ed0adb67c.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.281250;font-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_c01058{transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172043,0.000000,0.000000,0.250000,0,0);}
.md_c01058{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m14_c01058{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.ma_c01058{transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);}
.m9_c01058{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m12_c01058{transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);}
.me_c01058{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m3_c01058{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m6_c01058{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m2_c01058{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.mf_c01058{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m7_c01058{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.mb_c01058{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m1_c01058{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m15_c01058{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m10_c01058{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m0_c01058{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m11_c01058{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.mc_c01058{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m5_c01058{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m4_c01058{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m13_c01058{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);}
.v0_c01058{vertical-align:0.000000px;}
.ls1b_c01058{letter-spacing:-12.229313px;}
.lsf_c01058{letter-spacing:-5.848343px;}
.ls2_c01058{letter-spacing:-4.352888px;}
.ls17_c01058{letter-spacing:-4.325625px;}
.ls18_c01058{letter-spacing:-4.308150px;}
.ls14_c01058{letter-spacing:-3.173625px;}
.ls19_c01058{letter-spacing:-2.900625px;}
.ls9_c01058{letter-spacing:-2.730045px;}
.ls16_c01058{letter-spacing:-2.709053px;}
.lsa_c01058{letter-spacing:-2.656260px;}
.ls1a_c01058{letter-spacing:-2.628900px;}
.ls1d_c01058{letter-spacing:-2.603505px;}
.ls8_c01058{letter-spacing:-2.590800px;}
.ls13_c01058{letter-spacing:-2.582475px;}
.ls6_c01058{letter-spacing:-1.729410px;}
.ls5_c01058{letter-spacing:-1.695750px;}
.lsc_c01058{letter-spacing:-1.087403px;}
.ls1c_c01058{letter-spacing:-1.040633px;}
.ls10_c01058{letter-spacing:-1.017248px;}
.ls11_c01058{letter-spacing:-0.879750px;}
.ls1_c01058{letter-spacing:-0.867000px;}
.ls7_c01058{letter-spacing:-0.851190px;}
.ls0_c01058{letter-spacing:0.000000px;}
.lsd_c01058{letter-spacing:0.867000px;}
.ls4_c01058{letter-spacing:0.905250px;}
.lsb_c01058{letter-spacing:0.915900px;}
.ls15_c01058{letter-spacing:0.931875px;}
.ls3_c01058{letter-spacing:1.729410px;}
.ls12_c01058{letter-spacing:2.590800px;}
.lse_c01058{letter-spacing:28.524300px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:0.000000px;}
._5_c01058{margin-left:-28.886227px;}
._6_c01058{margin-left:-26.865633px;}
._3_c01058{margin-left:-6.732000px;}
._2_c01058{width:2.371621px;}
._4_c01058{width:4.938287px;}
._0_c01058{width:24.990069px;}
._8_c01058{width:26.969007px;}
._9_c01058{width:28.626525px;}
._7_c01058{width:32.104621px;}
._a_c01058{width:33.756744px;}
._1_c01058{width:710.236373px;}
.fc0_c01058{color:transparent;}
.fs1_c01058{font-size:48.750000px;}
.fs0_c01058{font-size:51.000000px;}
.fs9_c01058{font-size:51.750000px;}
.fs3_c01058{font-size:52.500000px;}
.fs2_c01058{font-size:53.250000px;}
.fs5_c01058{font-size:54.000000px;}
.fs4_c01058{font-size:55.500000px;}
.fsb_c01058{font-size:56.250000px;}
.fsa_c01058{font-size:57.750000px;}
.fsc_c01058{font-size:63.750000px;}
.fs8_c01058{font-size:65.250000px;}
.fsd_c01058{font-size:66.750000px;}
.fs7_c01058{font-size:68.250000px;}
.fs6_c01058{font-size:69.750000px;}
.y0_c01058{bottom:0.000000px;}
.y71_c01058{bottom:184.680750px;}
.y39_c01058{bottom:185.037645px;}
.y38_c01058{bottom:204.118110px;}
.y70_c01058{bottom:204.120000px;}
.y6f_c01058{bottom:222.840585px;}
.y6e_c01058{bottom:222.841065px;}
.y37_c01058{bottom:223.198545px;}
.y6d_c01058{bottom:242.279685px;}
.y36_c01058{bottom:242.639700px;}
.y6c_c01058{bottom:261.000600px;}
.y35_c01058{bottom:261.359250px;}
.y33_c01058{bottom:280.435665px;}
.y34_c01058{bottom:280.439685px;}
.y6b_c01058{bottom:280.440165px;}
.y6a_c01058{bottom:299.161080px;}
.y32_c01058{bottom:299.516115px;}
.y69_c01058{bottom:318.599700px;}
.y31_c01058{bottom:318.957255px;}
.y68_c01058{bottom:337.679700px;}
.y30_c01058{bottom:338.037705px;}
.y66_c01058{bottom:357.119955px;}
.y67_c01058{bottom:357.120435px;}
.y2f_c01058{bottom:357.476325px;}
.y65_c01058{bottom:376.200420px;}
.y2e_c01058{bottom:376.556760px;}
.y2d_c01058{bottom:395.637225px;}
.y64_c01058{bottom:395.639025px;}
.y2c_c01058{bottom:414.717660px;}
.y63_c01058{bottom:414.719460px;}
.y2b_c01058{bottom:434.158815px;}
.y62_c01058{bottom:434.160615px;}
.y61_c01058{bottom:452.880180px;}
.y2a_c01058{bottom:453.239250px;}
.y60_c01058{bottom:472.679670px;}
.y29_c01058{bottom:473.038770px;}
.y28_c01058{bottom:491.758320px;}
.y5f_c01058{bottom:491.759535px;}
.y27_c01058{bottom:511.199460px;}
.y5d_c01058{bottom:511.199985px;}
.y5e_c01058{bottom:511.200435px;}
.y5c_c01058{bottom:529.919535px;}
.y26_c01058{bottom:530.279910px;}
.y5b_c01058{bottom:549.360300px;}
.y25_c01058{bottom:549.718530px;}
.y24_c01058{bottom:568.439445px;}
.y5a_c01058{bottom:568.439880px;}
.y59_c01058{bottom:587.878485px;}
.y23_c01058{bottom:588.238950px;}
.y58_c01058{bottom:606.958950px;}
.y22_c01058{bottom:607.319385px;}
.y57_c01058{bottom:626.039385px;}
.y21_c01058{bottom:626.399850px;}
.y56_c01058{bottom:645.478815px;}
.y20_c01058{bottom:645.480285px;}
.y55_c01058{bottom:664.559265px;}
.y1f_c01058{bottom:664.560285px;}
.y1e_c01058{bottom:664.560315px;}
.y54_c01058{bottom:683.639715px;}
.y1d_c01058{bottom:683.640750px;}
.y53_c01058{bottom:702.720150px;}
.y1c_c01058{bottom:703.079355px;}
.y1b_c01058{bottom:703.080555px;}
.y51_c01058{bottom:721.799715px;}
.y52_c01058{bottom:721.800105px;}
.y1a_c01058{bottom:722.162160px;}
.y50_c01058{bottom:741.240870px;}
.y19_c01058{bottom:741.600765px;}
.y4f_c01058{bottom:760.679490px;}
.y18_c01058{bottom:761.039385px;}
.y17_c01058{bottom:761.039430px;}
.y4e_c01058{bottom:780.118110px;}
.y16_c01058{bottom:780.480585px;}
.y4d_c01058{bottom:798.839010px;}
.y15_c01058{bottom:799.201485px;}
.y4c_c01058{bottom:818.280165px;}
.y14_c01058{bottom:818.999640px;}
.y4b_c01058{bottom:836.999730px;}
.y13_c01058{bottom:837.360825px;}
.y4a_c01058{bottom:856.440855px;}
.y12_c01058{bottom:856.799445px;}
.y49_c01058{bottom:875.520720px;}
.y48_c01058{bottom:875.521410px;}
.y11_c01058{bottom:875.879910px;}
.y47_c01058{bottom:894.960015px;}
.y10_c01058{bottom:895.679400px;}
.y46_c01058{bottom:914.039985px;}
.yf_c01058{bottom:914.759850px;}
.y44_c01058{bottom:933.839715px;}
.y45_c01058{bottom:933.840090px;}
.ye_c01058{bottom:934.200990px;}
.y43_c01058{bottom:953.280855px;}
.yd_c01058{bottom:953.640105px;}
.y42_c01058{bottom:972.359430px;}
.yb_c01058{bottom:973.079205px;}
.yc_c01058{bottom:973.079400px;}
.y41_c01058{bottom:991.439880px;}
.ya_c01058{bottom:991.800105px;}
.y40_c01058{bottom:1010.520330px;}
.y9_c01058{bottom:1010.879970px;}
.y3f_c01058{bottom:1029.600765px;}
.y7_c01058{bottom:1029.959250px;}
.y8_c01058{bottom:1029.960015px;}
.y3e_c01058{bottom:1048.680720px;}
.y6_c01058{bottom:1049.400375px;}
.y3c_c01058{bottom:1067.399205px;}
.y3d_c01058{bottom:1067.399775px;}
.y4_c01058{bottom:1068.119160px;}
.y5_c01058{bottom:1068.119940px;}
.y3b_c01058{bottom:1086.479640px;}
.y3_c01058{bottom:1087.199610px;}
.y3a_c01058{bottom:1106.279850px;}
.y2_c01058{bottom:1106.640750px;}
.y1_c01058{bottom:1145.879970px;}
.h2_c01058{height:47.845459px;}
.h1_c01058{height:50.402344px;}
.ha_c01058{height:51.143555px;}
.h4_c01058{height:51.884766px;}
.h3_c01058{height:52.625977px;}
.h6_c01058{height:53.367188px;}
.hf_c01058{height:54.443115px;}
.h5_c01058{height:54.849609px;}
.hc_c01058{height:55.590820px;}
.hb_c01058{height:56.650269px;}
.hd_c01058{height:63.002930px;}
.h9_c01058{height:64.485352px;}
.he_c01058{height:65.967773px;}
.h8_c01058{height:67.450195px;}
.h7_c01058{height:68.932617px;}
.h0_c01058{height:1263.000000px;}
.w0_c01058{width:892.500000px;}
.x0_c01058{left:0.000000px;}
.x1_c01058{left:295.559685px;}
.xf_c01058{left:358.559145px;}
.x9_c01058{left:359.638530px;}
.x3_c01058{left:360.719535px;}
.x7_c01058{left:405.000000px;}
.xe_c01058{left:410.759535px;}
.x8_c01058{left:417.959385px;}
.xa_c01058{left:423.719100px;}
.x6_c01058{left:424.798515px;}
.xc_c01058{left:430.198785px;}
.x4_c01058{left:431.279850px;}
.xb_c01058{left:443.519070px;}
.xd_c01058{left:449.639700px;}
.x5_c01058{left:450.719100px;}
.x14_c01058{left:559.080120px;}
.x12_c01058{left:560.160090px;}
.x10_c01058{left:561.238770px;}
.x15_c01058{left:591.478635px;}
.x13_c01058{left:592.559685px;}
.x11_c01058{left:593.639100px;}
.x2_c01058{left:691.199385px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls1b_c01058{letter-spacing:-10.870500pt;}
.lsf_c01058{letter-spacing:-5.198527pt;}
.ls2_c01058{letter-spacing:-3.869233pt;}
.ls17_c01058{letter-spacing:-3.845000pt;}
.ls18_c01058{letter-spacing:-3.829467pt;}
.ls14_c01058{letter-spacing:-2.821000pt;}
.ls19_c01058{letter-spacing:-2.578333pt;}
.ls9_c01058{letter-spacing:-2.426707pt;}
.ls16_c01058{letter-spacing:-2.408047pt;}
.lsa_c01058{letter-spacing:-2.361120pt;}
.ls1a_c01058{letter-spacing:-2.336800pt;}
.ls1d_c01058{letter-spacing:-2.314227pt;}
.ls8_c01058{letter-spacing:-2.302933pt;}
.ls13_c01058{letter-spacing:-2.295533pt;}
.ls6_c01058{letter-spacing:-1.537253pt;}
.ls5_c01058{letter-spacing:-1.507333pt;}
.lsc_c01058{letter-spacing:-0.966580pt;}
.ls1c_c01058{letter-spacing:-0.925007pt;}
.ls10_c01058{letter-spacing:-0.904220pt;}
.ls11_c01058{letter-spacing:-0.782000pt;}
.ls1_c01058{letter-spacing:-0.770667pt;}
.ls7_c01058{letter-spacing:-0.756613pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.lsd_c01058{letter-spacing:0.770667pt;}
.ls4_c01058{letter-spacing:0.804667pt;}
.lsb_c01058{letter-spacing:0.814133pt;}
.ls15_c01058{letter-spacing:0.828333pt;}
.ls3_c01058{letter-spacing:1.537253pt;}
.ls12_c01058{letter-spacing:2.302933pt;}
.lse_c01058{letter-spacing:25.354933pt;}
.ws0_c01058{word-spacing:0.000000pt;}
._5_c01058{margin-left:-25.676646pt;}
._6_c01058{margin-left:-23.880563pt;}
._3_c01058{margin-left:-5.984000pt;}
._2_c01058{width:2.108108pt;}
._4_c01058{width:4.389588pt;}
._0_c01058{width:22.213395pt;}
._8_c01058{width:23.972451pt;}
._9_c01058{width:25.445800pt;}
._7_c01058{width:28.537441pt;}
._a_c01058{width:30.005995pt;}
._1_c01058{width:631.321220pt;}
.fs1_c01058{font-size:43.333333pt;}
.fs0_c01058{font-size:45.333333pt;}
.fs9_c01058{font-size:46.000000pt;}
.fs3_c01058{font-size:46.666667pt;}
.fs2_c01058{font-size:47.333333pt;}
.fs5_c01058{font-size:48.000000pt;}
.fs4_c01058{font-size:49.333333pt;}
.fsb_c01058{font-size:50.000000pt;}
.fsa_c01058{font-size:51.333333pt;}
.fsc_c01058{font-size:56.666667pt;}
.fs8_c01058{font-size:58.000000pt;}
.fsd_c01058{font-size:59.333333pt;}
.fs7_c01058{font-size:60.666667pt;}
.fs6_c01058{font-size:62.000000pt;}
.y0_c01058{bottom:0.000000pt;}
.y71_c01058{bottom:164.160667pt;}
.y39_c01058{bottom:164.477907pt;}
.y38_c01058{bottom:181.438320pt;}
.y70_c01058{bottom:181.440000pt;}
.y6f_c01058{bottom:198.080520pt;}
.y6e_c01058{bottom:198.080947pt;}
.y37_c01058{bottom:198.398707pt;}
.y6d_c01058{bottom:215.359720pt;}
.y36_c01058{bottom:215.679733pt;}
.y6c_c01058{bottom:232.000533pt;}
.y35_c01058{bottom:232.319333pt;}
.y33_c01058{bottom:249.276147pt;}
.y34_c01058{bottom:249.279720pt;}
.y6b_c01058{bottom:249.280147pt;}
.y6a_c01058{bottom:265.920960pt;}
.y32_c01058{bottom:266.236547pt;}
.y69_c01058{bottom:283.199733pt;}
.y31_c01058{bottom:283.517560pt;}
.y68_c01058{bottom:300.159733pt;}
.y30_c01058{bottom:300.477960pt;}
.y66_c01058{bottom:317.439960pt;}
.y67_c01058{bottom:317.440387pt;}
.y2f_c01058{bottom:317.756733pt;}
.y65_c01058{bottom:334.400373pt;}
.y2e_c01058{bottom:334.717120pt;}
.y2d_c01058{bottom:351.677533pt;}
.y64_c01058{bottom:351.679133pt;}
.y2c_c01058{bottom:368.637920pt;}
.y63_c01058{bottom:368.639520pt;}
.y2b_c01058{bottom:385.918947pt;}
.y62_c01058{bottom:385.920547pt;}
.y61_c01058{bottom:402.560160pt;}
.y2a_c01058{bottom:402.879333pt;}
.y60_c01058{bottom:420.159707pt;}
.y29_c01058{bottom:420.478907pt;}
.y28_c01058{bottom:437.118507pt;}
.y5f_c01058{bottom:437.119587pt;}
.y27_c01058{bottom:454.399520pt;}
.y5d_c01058{bottom:454.399987pt;}
.y5e_c01058{bottom:454.400387pt;}
.y5c_c01058{bottom:471.039587pt;}
.y26_c01058{bottom:471.359920pt;}
.y5b_c01058{bottom:488.320267pt;}
.y25_c01058{bottom:488.638693pt;}
.y24_c01058{bottom:505.279507pt;}
.y5a_c01058{bottom:505.279893pt;}
.y59_c01058{bottom:522.558653pt;}
.y23_c01058{bottom:522.879067pt;}
.y58_c01058{bottom:539.519067pt;}
.y22_c01058{bottom:539.839453pt;}
.y57_c01058{bottom:556.479453pt;}
.y21_c01058{bottom:556.799867pt;}
.y56_c01058{bottom:573.758947pt;}
.y20_c01058{bottom:573.760253pt;}
.y55_c01058{bottom:590.719347pt;}
.y1f_c01058{bottom:590.720253pt;}
.y1e_c01058{bottom:590.720280pt;}
.y54_c01058{bottom:607.679747pt;}
.y1d_c01058{bottom:607.680667pt;}
.y53_c01058{bottom:624.640133pt;}
.y1c_c01058{bottom:624.959427pt;}
.y1b_c01058{bottom:624.960493pt;}
.y51_c01058{bottom:641.599747pt;}
.y52_c01058{bottom:641.600093pt;}
.y1a_c01058{bottom:641.921920pt;}
.y50_c01058{bottom:658.880773pt;}
.y19_c01058{bottom:659.200680pt;}
.y4f_c01058{bottom:676.159547pt;}
.y18_c01058{bottom:676.479453pt;}
.y17_c01058{bottom:676.479493pt;}
.y4e_c01058{bottom:693.438320pt;}
.y16_c01058{bottom:693.760520pt;}
.y4d_c01058{bottom:710.079120pt;}
.y15_c01058{bottom:710.401320pt;}
.y4c_c01058{bottom:727.360147pt;}
.y14_c01058{bottom:727.999680pt;}
.y4b_c01058{bottom:743.999760pt;}
.y13_c01058{bottom:744.320733pt;}
.y4a_c01058{bottom:761.280760pt;}
.y12_c01058{bottom:761.599507pt;}
.y49_c01058{bottom:778.240640pt;}
.y48_c01058{bottom:778.241253pt;}
.y11_c01058{bottom:778.559920pt;}
.y47_c01058{bottom:795.520013pt;}
.y10_c01058{bottom:796.159467pt;}
.y46_c01058{bottom:812.479987pt;}
.yf_c01058{bottom:813.119867pt;}
.y44_c01058{bottom:830.079747pt;}
.y45_c01058{bottom:830.080080pt;}
.ye_c01058{bottom:830.400880pt;}
.y43_c01058{bottom:847.360760pt;}
.yd_c01058{bottom:847.680093pt;}
.y42_c01058{bottom:864.319493pt;}
.yb_c01058{bottom:864.959293pt;}
.yc_c01058{bottom:864.959467pt;}
.y41_c01058{bottom:881.279893pt;}
.ya_c01058{bottom:881.600093pt;}
.y40_c01058{bottom:898.240293pt;}
.y9_c01058{bottom:898.559973pt;}
.y3f_c01058{bottom:915.200680pt;}
.y7_c01058{bottom:915.519333pt;}
.y8_c01058{bottom:915.520013pt;}
.y3e_c01058{bottom:932.160640pt;}
.y6_c01058{bottom:932.800333pt;}
.y3c_c01058{bottom:948.799293pt;}
.y3d_c01058{bottom:948.799800pt;}
.y4_c01058{bottom:949.439253pt;}
.y5_c01058{bottom:949.439947pt;}
.y3b_c01058{bottom:965.759680pt;}
.y3_c01058{bottom:966.399653pt;}
.y3a_c01058{bottom:983.359867pt;}
.y2_c01058{bottom:983.680667pt;}
.y1_c01058{bottom:1018.559973pt;}
.h2_c01058{height:42.529297pt;}
.h1_c01058{height:44.802083pt;}
.ha_c01058{height:45.460938pt;}
.h4_c01058{height:46.119792pt;}
.h3_c01058{height:46.778646pt;}
.h6_c01058{height:47.437500pt;}
.hf_c01058{height:48.393880pt;}
.h5_c01058{height:48.755208pt;}
.hc_c01058{height:49.414063pt;}
.hb_c01058{height:50.355794pt;}
.hd_c01058{height:56.002604pt;}
.h9_c01058{height:57.320313pt;}
.he_c01058{height:58.638021pt;}
.h8_c01058{height:59.955729pt;}
.h7_c01058{height:61.273438pt;}
.h0_c01058{height:1122.666667pt;}
.w0_c01058{width:793.333333pt;}
.x0_c01058{left:0.000000pt;}
.x1_c01058{left:262.719720pt;}
.xf_c01058{left:318.719240pt;}
.x9_c01058{left:319.678693pt;}
.x3_c01058{left:320.639587pt;}
.x7_c01058{left:360.000000pt;}
.xe_c01058{left:365.119587pt;}
.x8_c01058{left:371.519453pt;}
.xa_c01058{left:376.639200pt;}
.x6_c01058{left:377.598680pt;}
.xc_c01058{left:382.398920pt;}
.x4_c01058{left:383.359867pt;}
.xb_c01058{left:394.239173pt;}
.xd_c01058{left:399.679733pt;}
.x5_c01058{left:400.639200pt;}
.x14_c01058{left:496.960107pt;}
.x12_c01058{left:497.920080pt;}
.x10_c01058{left:498.878907pt;}
.x15_c01058{left:525.758787pt;}
.x13_c01058{left:526.719720pt;}
.x11_c01058{left:527.679200pt;}
.x2_c01058{left:614.399453pt;}
}





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

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_943ae6b3c094c468aa792bc3.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_1ed7fb4970c8e8d11349e962.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:1.281250;font-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_c01059{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.mb_c01059{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.mf_c01059{transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183908,0.000000,0.000000,0.250000,0,0);}
.me_c01059{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.ma_c01059{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m5_c01059{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m6_c01059{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m1_c01059{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m8_c01059{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m9_c01059{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m10_c01059{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m3_c01059{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m11_c01059{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m0_c01059{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m7_c01059{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m2_c01059{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m4_c01059{transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366197,0.000000,0.000000,0.250000,0,0);}
.md_c01059{transform:matrix(0.421687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421687,0.000000,0.000000,0.250000,0,0);}
.v1_c01059{vertical-align:-2.881620px;}
.v2_c01059{vertical-align:-1.443600px;}
.v0_c01059{vertical-align:0.000000px;}
.ls5_c01059{letter-spacing:-5.018400px;}
.ls4_c01059{letter-spacing:-4.182000px;}
.lsa_c01059{letter-spacing:-4.079250px;}
.ls6_c01059{letter-spacing:-3.951083px;}
.lsb_c01059{letter-spacing:-3.579750px;}
.ls7_c01059{letter-spacing:-3.345600px;}
.lsd_c01059{letter-spacing:-3.173625px;}
.lsc_c01059{letter-spacing:-3.105375px;}
.lse_c01059{letter-spacing:-3.037125px;}
.ls1_c01059{letter-spacing:-2.508690px;}
.ls2_c01059{letter-spacing:-1.673310px;}
.lsf_c01059{letter-spacing:-1.017248px;}
.ls9_c01059{letter-spacing:-0.926295px;}
.ls11_c01059{letter-spacing:-0.888743px;}
.ls0_c01059{letter-spacing:-0.836400px;}
.ls3_c01059{letter-spacing:0.000000px;}
.ls10_c01059{letter-spacing:0.892500px;}
.ls8_c01059{letter-spacing:0.931875px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:0.000000px;}
._11_c01059{margin-left:-10.291700px;}
._10_c01059{margin-left:-8.690199px;}
._3_c01059{margin-left:-6.084551px;}
._c_c01059{margin-left:-4.747640px;}
._12_c01059{margin-left:-3.062617px;}
._6_c01059{margin-left:-1.834704px;}
._d_c01059{width:1.380871px;}
._2_c01059{width:3.052250px;}
._f_c01059{width:4.535589px;}
._13_c01059{width:5.978730px;}
._7_c01059{width:11.453087px;}
._0_c01059{width:24.281083px;}
._14_c01059{width:25.285633px;}
._9_c01059{width:27.159523px;}
._16_c01059{width:28.631300px;}
._5_c01059{width:30.367206px;}
._a_c01059{width:32.107226px;}
._18_c01059{width:33.580440px;}
._15_c01059{width:35.320393px;}
._17_c01059{width:43.747700px;}
._e_c01059{width:65.213917px;}
._8_c01059{width:549.608607px;}
._4_c01059{width:611.000132px;}
._b_c01059{width:693.241119px;}
._1_c01059{width:694.274981px;}
.fc0_c01059{color:transparent;}
.fs2_c01059{font-size:44.250000px;}
.fs0_c01059{font-size:51.000000px;}
.fs3_c01059{font-size:51.750000px;}
.fs1_c01059{font-size:53.250000px;}
.fs5_c01059{font-size:54.750000px;}
.fs4_c01059{font-size:55.500000px;}
.fs8_c01059{font-size:62.250000px;}
.fsa_c01059{font-size:65.250000px;}
.fs9_c01059{font-size:66.750000px;}
.fs6_c01059{font-size:68.250000px;}
.fs7_c01059{font-size:69.750000px;}
.y0_c01059{bottom:0.000000px;}
.y67_c01059{bottom:183.957210px;}
.y39_c01059{bottom:183.958215px;}
.y66_c01059{bottom:203.037660px;}
.y38_c01059{bottom:203.396835px;}
.y37_c01059{bottom:222.117765px;}
.y65_c01059{bottom:222.118110px;}
.y64_c01059{bottom:241.556715px;}
.y36_c01059{bottom:241.917255px;}
.y35_c01059{bottom:260.636805px;}
.y63_c01059{bottom:260.637180px;}
.y34_c01059{bottom:279.717270px;}
.y62_c01059{bottom:279.717615px;}
.y33_c01059{bottom:298.797705px;}
.y61_c01059{bottom:298.798080px;}
.y32_c01059{bottom:318.238860px;}
.y60_c01059{bottom:318.239205px;}
.y5f_c01059{bottom:336.958770px;}
.y31_c01059{bottom:337.319295px;}
.y30_c01059{bottom:356.038860px;}
.y5e_c01059{bottom:356.039220px;}
.y2f_c01059{bottom:374.759790px;}
.y5d_c01059{bottom:374.760135px;}
.y2e_c01059{bottom:394.559280px;}
.y5c_c01059{bottom:394.559460px;}
.y2d_c01059{bottom:413.278845px;}
.y5b_c01059{bottom:413.279025px;}
.y2c_c01059{bottom:432.359295px;}
.y5a_c01059{bottom:432.720150px;}
.y2b_c01059{bottom:451.440900px;}
.y59_c01059{bottom:451.800150px;}
.y29_c01059{bottom:471.599895px;}
.y2a_c01059{bottom:471.600135px;}
.y57_c01059{bottom:471.958695px;}
.y58_c01059{bottom:471.959385px;}
.y28_c01059{bottom:491.038515px;}
.y56_c01059{bottom:491.039160px;}
.y55_c01059{bottom:510.480285px;}
.y27_c01059{bottom:510.838005px;}
.y26_c01059{bottom:529.558935px;}
.y54_c01059{bottom:529.560285px;}
.y25_c01059{bottom:548.639370px;}
.y53_c01059{bottom:548.999085px;}
.y24_c01059{bottom:567.358935px;}
.y52_c01059{bottom:567.720000px;}
.y23_c01059{bottom:587.158440px;}
.y51_c01059{bottom:587.158605px;}
.y22_c01059{bottom:605.879355px;}
.y50_c01059{bottom:605.879535px;}
.y21_c01059{bottom:624.959820px;}
.y4f_c01059{bottom:624.959970px;}
.y20_c01059{bottom:643.680720px;}
.y4d_c01059{bottom:644.038050px;}
.y4e_c01059{bottom:644.039985px;}
.y4c_c01059{bottom:663.118515px;}
.y1e_c01059{bottom:663.118725px;}
.y1f_c01059{bottom:663.119985px;}
.y4b_c01059{bottom:682.198950px;}
.y1d_c01059{bottom:682.199160px;}
.y4a_c01059{bottom:701.640105px;}
.y1c_c01059{bottom:701.640315px;}
.y49_c01059{bottom:720.720540px;}
.y1b_c01059{bottom:720.720750px;}
.y48_c01059{bottom:740.159160px;}
.y1a_c01059{bottom:740.159820px;}
.y47_c01059{bottom:759.239610px;}
.y19_c01059{bottom:759.240285px;}
.y46_c01059{bottom:778.680750px;}
.y18_c01059{bottom:778.681410px;}
.y45_c01059{bottom:797.761215px;}
.y17_c01059{bottom:798.120030px;}
.y44_c01059{bottom:817.560705px;}
.y16_c01059{bottom:817.918755px;}
.y42_c01059{bottom:836.639670px;}
.y43_c01059{bottom:836.640750px;}
.y15_c01059{bottom:836.999205px;}
.y41_c01059{bottom:855.720135px;}
.y14_c01059{bottom:856.079655px;}
.y13_c01059{bottom:874.800570px;}
.y3f_c01059{bottom:893.880135px;}
.y40_c01059{bottom:893.880615px;}
.y11_c01059{bottom:894.238740px;}
.y12_c01059{bottom:894.239865px;}
.y3e_c01059{bottom:912.960600px;}
.y10_c01059{bottom:913.679895px;}
.y3d_c01059{bottom:932.399205px;}
.yf_c01059{bottom:932.760345px;}
.y3c_c01059{bottom:951.479640px;}
.ye_c01059{bottom:951.840795px;}
.y3a_c01059{bottom:970.918785px;}
.y3b_c01059{bottom:970.920600px;}
.yd_c01059{bottom:971.279415px;}
.yc_c01059{bottom:990.180090px;}
.yb_c01059{bottom:1009.439670px;}
.ya_c01059{bottom:1009.800150px;}
.y9_c01059{bottom:1028.519715px;}
.y7_c01059{bottom:1028.879010px;}
.y8_c01059{bottom:1028.880615px;}
.y6_c01059{bottom:1047.959445px;}
.y5_c01059{bottom:1067.039910px;}
.y3_c01059{bottom:1086.299490px;}
.y4_c01059{bottom:1086.300105px;}
.y2_c01059{bottom:1105.559685px;}
.y1_c01059{bottom:1144.439670px;}
.h3_c01059{height:46.151367px;}
.h1_c01059{height:50.402344px;}
.h4_c01059{height:51.143555px;}
.h2_c01059{height:52.625977px;}
.h7_c01059{height:54.108398px;}
.h6_c01059{height:54.443115px;}
.h5_c01059{height:54.849609px;}
.hc_c01059{height:64.485352px;}
.ha_c01059{height:64.924805px;}
.hb_c01059{height:65.967773px;}
.h8_c01059{height:67.450195px;}
.h9_c01059{height:68.932617px;}
.h0_c01059{height:1263.000000px;}
.w0_c01059{width:892.500000px;}
.x0_c01059{left:0.000000px;}
.x1_c01059{left:294.839535px;}
.x7_c01059{left:358.918560px;}
.x3_c01059{left:359.999385px;}
.x9_c01059{left:391.318770px;}
.x6_c01059{left:405.000000px;}
.xc_c01059{left:410.398635px;}
.xa_c01059{left:417.239220px;}
.xb_c01059{left:423.359850px;}
.x8_c01059{left:430.198785px;}
.xd_c01059{left:559.439505px;}
.x4_c01059{left:560.518620px;}
.x5_c01059{left:592.918950px;}
.x2_c01059{left:690.479235px;}
@media print{
.v1_c01059{vertical-align:-2.561440pt;}
.v2_c01059{vertical-align:-1.283200pt;}
.v0_c01059{vertical-align:0.000000pt;}
.ls5_c01059{letter-spacing:-4.460800pt;}
.ls4_c01059{letter-spacing:-3.717333pt;}
.lsa_c01059{letter-spacing:-3.626000pt;}
.ls6_c01059{letter-spacing:-3.512073pt;}
.lsb_c01059{letter-spacing:-3.182000pt;}
.ls7_c01059{letter-spacing:-2.973867pt;}
.lsd_c01059{letter-spacing:-2.821000pt;}
.lsc_c01059{letter-spacing:-2.760333pt;}
.lse_c01059{letter-spacing:-2.699667pt;}
.ls1_c01059{letter-spacing:-2.229947pt;}
.ls2_c01059{letter-spacing:-1.487387pt;}
.lsf_c01059{letter-spacing:-0.904220pt;}
.ls9_c01059{letter-spacing:-0.823373pt;}
.ls11_c01059{letter-spacing:-0.789993pt;}
.ls0_c01059{letter-spacing:-0.743467pt;}
.ls3_c01059{letter-spacing:0.000000pt;}
.ls10_c01059{letter-spacing:0.793333pt;}
.ls8_c01059{letter-spacing:0.828333pt;}
.ws0_c01059{word-spacing:0.000000pt;}
._11_c01059{margin-left:-9.148177pt;}
._10_c01059{margin-left:-7.724622pt;}
._3_c01059{margin-left:-5.408490pt;}
._c_c01059{margin-left:-4.220125pt;}
._12_c01059{margin-left:-2.722326pt;}
._6_c01059{margin-left:-1.630848pt;}
._d_c01059{width:1.227441pt;}
._2_c01059{width:2.713111pt;}
._f_c01059{width:4.031635pt;}
._13_c01059{width:5.314427pt;}
._7_c01059{width:10.180522pt;}
._0_c01059{width:21.583185pt;}
._14_c01059{width:22.476118pt;}
._9_c01059{width:24.141798pt;}
._16_c01059{width:25.450044pt;}
._5_c01059{width:26.993072pt;}
._a_c01059{width:28.539756pt;}
._18_c01059{width:29.849280pt;}
._15_c01059{width:31.395905pt;}
._17_c01059{width:38.886844pt;}
._e_c01059{width:57.967927pt;}
._8_c01059{width:488.540984pt;}
._4_c01059{width:543.111229pt;}
._b_c01059{width:616.214328pt;}
._1_c01059{width:617.133316pt;}
.fs2_c01059{font-size:39.333333pt;}
.fs0_c01059{font-size:45.333333pt;}
.fs3_c01059{font-size:46.000000pt;}
.fs1_c01059{font-size:47.333333pt;}
.fs5_c01059{font-size:48.666667pt;}
.fs4_c01059{font-size:49.333333pt;}
.fs8_c01059{font-size:55.333333pt;}
.fsa_c01059{font-size:58.000000pt;}
.fs9_c01059{font-size:59.333333pt;}
.fs6_c01059{font-size:60.666667pt;}
.fs7_c01059{font-size:62.000000pt;}
.y0_c01059{bottom:0.000000pt;}
.y67_c01059{bottom:163.517520pt;}
.y39_c01059{bottom:163.518413pt;}
.y66_c01059{bottom:180.477920pt;}
.y38_c01059{bottom:180.797187pt;}
.y37_c01059{bottom:197.438013pt;}
.y65_c01059{bottom:197.438320pt;}
.y64_c01059{bottom:214.717080pt;}
.y36_c01059{bottom:215.037560pt;}
.y35_c01059{bottom:231.677160pt;}
.y63_c01059{bottom:231.677493pt;}
.y34_c01059{bottom:248.637573pt;}
.y62_c01059{bottom:248.637880pt;}
.y33_c01059{bottom:265.597960pt;}
.y61_c01059{bottom:265.598293pt;}
.y32_c01059{bottom:282.878987pt;}
.y60_c01059{bottom:282.879293pt;}
.y5f_c01059{bottom:299.518907pt;}
.y31_c01059{bottom:299.839373pt;}
.y30_c01059{bottom:316.478987pt;}
.y5e_c01059{bottom:316.479307pt;}
.y2f_c01059{bottom:333.119813pt;}
.y5d_c01059{bottom:333.120120pt;}
.y2e_c01059{bottom:350.719360pt;}
.y5c_c01059{bottom:350.719520pt;}
.y2d_c01059{bottom:367.358973pt;}
.y5b_c01059{bottom:367.359133pt;}
.y2c_c01059{bottom:384.319373pt;}
.y5a_c01059{bottom:384.640133pt;}
.y2b_c01059{bottom:401.280800pt;}
.y59_c01059{bottom:401.600133pt;}
.y29_c01059{bottom:419.199907pt;}
.y2a_c01059{bottom:419.200120pt;}
.y57_c01059{bottom:419.518840pt;}
.y58_c01059{bottom:419.519453pt;}
.y28_c01059{bottom:436.478680pt;}
.y56_c01059{bottom:436.479253pt;}
.y55_c01059{bottom:453.760253pt;}
.y27_c01059{bottom:454.078227pt;}
.y26_c01059{bottom:470.719053pt;}
.y54_c01059{bottom:470.720253pt;}
.y25_c01059{bottom:487.679440pt;}
.y53_c01059{bottom:487.999187pt;}
.y24_c01059{bottom:504.319053pt;}
.y52_c01059{bottom:504.640000pt;}
.y23_c01059{bottom:521.918613pt;}
.y51_c01059{bottom:521.918760pt;}
.y22_c01059{bottom:538.559427pt;}
.y50_c01059{bottom:538.559587pt;}
.y21_c01059{bottom:555.519840pt;}
.y4f_c01059{bottom:555.519973pt;}
.y20_c01059{bottom:572.160640pt;}
.y4d_c01059{bottom:572.478267pt;}
.y4e_c01059{bottom:572.479987pt;}
.y4c_c01059{bottom:589.438680pt;}
.y1e_c01059{bottom:589.438867pt;}
.y1f_c01059{bottom:589.439987pt;}
.y4b_c01059{bottom:606.399067pt;}
.y1d_c01059{bottom:606.399253pt;}
.y4a_c01059{bottom:623.680093pt;}
.y1c_c01059{bottom:623.680280pt;}
.y49_c01059{bottom:640.640480pt;}
.y1b_c01059{bottom:640.640667pt;}
.y48_c01059{bottom:657.919253pt;}
.y1a_c01059{bottom:657.919840pt;}
.y47_c01059{bottom:674.879653pt;}
.y19_c01059{bottom:674.880253pt;}
.y46_c01059{bottom:692.160667pt;}
.y18_c01059{bottom:692.161253pt;}
.y45_c01059{bottom:709.121080pt;}
.y17_c01059{bottom:709.440027pt;}
.y44_c01059{bottom:726.720627pt;}
.y16_c01059{bottom:727.038893pt;}
.y42_c01059{bottom:743.679707pt;}
.y43_c01059{bottom:743.680667pt;}
.y15_c01059{bottom:743.999293pt;}
.y41_c01059{bottom:760.640120pt;}
.y14_c01059{bottom:760.959693pt;}
.y13_c01059{bottom:777.600507pt;}
.y3f_c01059{bottom:794.560120pt;}
.y40_c01059{bottom:794.560547pt;}
.y11_c01059{bottom:794.878880pt;}
.y12_c01059{bottom:794.879880pt;}
.y3e_c01059{bottom:811.520533pt;}
.y10_c01059{bottom:812.159907pt;}
.y3d_c01059{bottom:828.799293pt;}
.yf_c01059{bottom:829.120307pt;}
.y3c_c01059{bottom:845.759680pt;}
.ye_c01059{bottom:846.080707pt;}
.y3a_c01059{bottom:863.038920pt;}
.y3b_c01059{bottom:863.040533pt;}
.yd_c01059{bottom:863.359480pt;}
.yc_c01059{bottom:880.160080pt;}
.yb_c01059{bottom:897.279707pt;}
.ya_c01059{bottom:897.600133pt;}
.y9_c01059{bottom:914.239747pt;}
.y7_c01059{bottom:914.559120pt;}
.y8_c01059{bottom:914.560547pt;}
.y6_c01059{bottom:931.519507pt;}
.y5_c01059{bottom:948.479920pt;}
.y3_c01059{bottom:965.599547pt;}
.y4_c01059{bottom:965.600093pt;}
.y2_c01059{bottom:982.719720pt;}
.y1_c01059{bottom:1017.279707pt;}
.h3_c01059{height:41.023438pt;}
.h1_c01059{height:44.802083pt;}
.h4_c01059{height:45.460938pt;}
.h2_c01059{height:46.778646pt;}
.h7_c01059{height:48.096354pt;}
.h6_c01059{height:48.393880pt;}
.h5_c01059{height:48.755208pt;}
.hc_c01059{height:57.320313pt;}
.ha_c01059{height:57.710938pt;}
.hb_c01059{height:58.638021pt;}
.h8_c01059{height:59.955729pt;}
.h9_c01059{height:61.273438pt;}
.h0_c01059{height:1122.666667pt;}
.w0_c01059{width:793.333333pt;}
.x0_c01059{left:0.000000pt;}
.x1_c01059{left:262.079587pt;}
.x7_c01059{left:319.038720pt;}
.x3_c01059{left:319.999453pt;}
.x9_c01059{left:347.838907pt;}
.x6_c01059{left:360.000000pt;}
.xc_c01059{left:364.798787pt;}
.xa_c01059{left:370.879307pt;}
.xb_c01059{left:376.319867pt;}
.x8_c01059{left:382.398920pt;}
.xd_c01059{left:497.279560pt;}
.x4_c01059{left:498.238773pt;}
.x5_c01059{left:527.039067pt;}
.x2_c01059{left:613.759320pt;}
}





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

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_0d8c368aaf0498d143bcdf3f.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_d1e6ca82e672fac38f1fbb3a.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_f5809ce6df1ab85a2da0f00e.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_43a2cd0e5bb3c2115a61d71e.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01060;src:url('chunks/assets/font_9b2ee42a94038fd945138d1f.woff2')format("woff");}.ff5_c01060{font-family:ff5_c01060;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01060;src:url('chunks/assets/font_733fce531965061667c46fd4.woff2')format("woff");}.ff6_c01060{font-family:ff6_c01060;line-height:1.432129;font-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_c01060{transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);}
.m15_c01060{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m12_c01060{transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177419,0.000000,0.000000,0.250000,0,0);}
.m1d_c01060{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m1a_c01060{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.mc_c01060{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.me_c01060{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m17_c01060{transform:matrix(0.184066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184066,0.000000,0.000000,0.250000,0,0);}
.m16_c01060{transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185393,0.000000,0.000000,0.250000,0,0);}
.m14_c01060{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m1c_c01060{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.m1b_c01060{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m8_c01060{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m5_c01060{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.ma_c01060{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m1_c01060{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.mb_c01060{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m2_c01060{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m11_c01060{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m0_c01060{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.mf_c01060{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m6_c01060{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7_c01060{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m9_c01060{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.md_c01060{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1e_c01060{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m19_c01060{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m10_c01060{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m18_c01060{transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);}
.m13_c01060{transform:matrix(0.443038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443038,0.000000,0.000000,0.250000,0,0);}
.m3_c01060{transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641667,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls1d_c01060{letter-spacing:-7.670250px;}
.ls1e_c01060{letter-spacing:-6.433005px;}
.ls13_c01060{letter-spacing:-5.175900px;}
.lsc_c01060{letter-spacing:-3.429540px;}
.ls15_c01060{letter-spacing:-3.173625px;}
.ls24_c01060{letter-spacing:-3.131243px;}
.ls21_c01060{letter-spacing:-3.037125px;}
.ls18_c01060{letter-spacing:-2.968875px;}
.ls17_c01060{letter-spacing:-2.603505px;}
.ls8_c01060{letter-spacing:-2.590800px;}
.ls19_c01060{letter-spacing:-2.195213px;}
.ls1b_c01060{letter-spacing:-2.033850px;}
.lsd_c01060{letter-spacing:-1.894778px;}
.ls4_c01060{letter-spacing:-1.796348px;}
.ls14_c01060{letter-spacing:-1.737150px;}
.ls10_c01060{letter-spacing:-1.729410px;}
.ls1c_c01060{letter-spacing:-1.697790px;}
.ls11_c01060{letter-spacing:-1.647300px;}
.ls1f_c01060{letter-spacing:-1.037400px;}
.ls1a_c01060{letter-spacing:-1.014600px;}
.ls22_c01060{letter-spacing:-0.963848px;}
.lse_c01060{letter-spacing:-0.905250px;}
.ls5_c01060{letter-spacing:-0.888743px;}
.ls3_c01060{letter-spacing:-0.867000px;}
.lsb_c01060{letter-spacing:-0.851190px;}
.ls25_c01060{letter-spacing:-0.813638px;}
.ls2_c01060{letter-spacing:0.000000px;}
.ls6_c01060{letter-spacing:0.867000px;}
.ls23_c01060{letter-spacing:0.984593px;}
.ls7_c01060{letter-spacing:1.320000px;}
.ls0_c01060{letter-spacing:1.729410px;}
.ls16_c01060{letter-spacing:2.590800px;}
.lsf_c01060{letter-spacing:3.095400px;}
.ls9_c01060{letter-spacing:3.429540px;}
.lsa_c01060{letter-spacing:4.319700px;}
.ls1_c01060{letter-spacing:5.186700px;}
.ls12_c01060{letter-spacing:6.145050px;}
.ls20_c01060{letter-spacing:26.884755px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01060{word-spacing:0.000000px;}
._7_c01060{margin-left:-25.709256px;}
._a_c01060{margin-left:-10.557035px;}
._9_c01060{margin-left:-8.200886px;}
._3_c01060{margin-left:-6.732069px;}
._8_c01060{margin-left:-5.400814px;}
._4_c01060{margin-left:-4.146110px;}
._6_c01060{margin-left:-2.891959px;}
._5_c01060{margin-left:-1.759690px;}
._2_c01060{width:2.371621px;}
._f_c01060{width:23.648302px;}
._0_c01060{width:25.000165px;}
._e_c01060{width:26.968938px;}
._d_c01060{width:28.636483px;}
._b_c01060{width:32.094456px;}
._10_c01060{width:33.756744px;}
._c_c01060{width:35.554123px;}
._1_c01060{width:710.226277px;}
.fc0_c01060{color:transparent;}
.fs3_c01060{font-size:22.500000px;}
.fs7_c01060{font-size:47.250000px;}
.fs8_c01060{font-size:48.000000px;}
.fs12_c01060{font-size:48.750000px;}
.fs0_c01060{font-size:51.000000px;}
.fs9_c01060{font-size:51.750000px;}
.fs11_c01060{font-size:52.500000px;}
.fs2_c01060{font-size:53.250000px;}
.fs5_c01060{font-size:54.000000px;}
.fs1_c01060{font-size:54.750000px;}
.fsa_c01060{font-size:55.500000px;}
.fs6_c01060{font-size:57.750000px;}
.fsc_c01060{font-size:59.250000px;}
.fsd_c01060{font-size:65.250000px;}
.fs4_c01060{font-size:66.000000px;}
.fsf_c01060{font-size:66.750000px;}
.fs10_c01060{font-size:68.250000px;}
.fsb_c01060{font-size:69.750000px;}
.fse_c01060{font-size:71.250000px;}
.y0_c01060{bottom:0.000000px;}
.y2c_c01060{bottom:376.201110px;}
.y4d_c01060{bottom:376.561335px;}
.y4c_c01060{bottom:395.641335px;}
.y2b_c01060{bottom:396.000600px;}
.y2a_c01060{bottom:414.721200px;}
.y29_c01060{bottom:434.160465px;}
.y28_c01060{bottom:452.881215px;}
.y4b_c01060{bottom:453.240420px;}
.y27_c01060{bottom:472.680750px;}
.y4a_c01060{bottom:472.681185px;}
.y26_c01060{bottom:491.761185px;}
.y49_c01060{bottom:511.199610px;}
.y25_c01060{bottom:511.200900px;}
.y48_c01060{bottom:530.280075px;}
.y24_c01060{bottom:530.280435px;}
.y23_c01060{bottom:549.721200px;}
.y22_c01060{bottom:568.801215px;}
.y21_c01060{bottom:568.801260px;}
.y47_c01060{bottom:568.801800px;}
.y20_c01060{bottom:588.239865px;}
.y46_c01060{bottom:588.240420px;}
.y45_c01060{bottom:607.320285px;}
.y1f_c01060{bottom:607.320300px;}
.y1e_c01060{bottom:626.400765px;}
.y44_c01060{bottom:626.761185px;}
.y43_c01060{bottom:626.761635px;}
.y1d_c01060{bottom:645.121680px;}
.y1c_c01060{bottom:664.560285px;}
.y1b_c01060{bottom:683.280900px;}
.y42_c01060{bottom:683.281545px;}
.y1a_c01060{bottom:683.281560px;}
.y41_c01060{bottom:702.720150px;}
.y19_c01060{bottom:702.720180px;}
.y40_c01060{bottom:721.800105px;}
.y18_c01060{bottom:721.800630px;}
.y17_c01060{bottom:741.600135px;}
.y3e_c01060{bottom:760.679895px;}
.y3f_c01060{bottom:760.680135px;}
.y16_c01060{bottom:761.041035px;}
.y15_c01060{bottom:780.120555px;}
.y3d_c01060{bottom:780.121035px;}
.y3c_c01060{bottom:798.840090px;}
.y14_c01060{bottom:799.200990px;}
.y12_c01060{bottom:818.997960px;}
.y13_c01060{bottom:819.001005px;}
.y11_c01060{bottom:837.717525px;}
.y3b_c01060{bottom:837.719265px;}
.y3a_c01060{bottom:856.799715px;}
.y10_c01060{bottom:857.158680px;}
.y39_c01060{bottom:875.520630px;}
.yf_c01060{bottom:875.878230px;}
.y38_c01060{bottom:894.959250px;}
.ye_c01060{bottom:895.319370px;}
.y37_c01060{bottom:914.039700px;}
.yd_c01060{bottom:914.399820px;}
.y36_c01060{bottom:933.480840px;}
.yc_c01060{bottom:933.838440px;}
.y35_c01060{bottom:952.560705px;}
.yb_c01060{bottom:952.918875px;}
.ya_c01060{bottom:972.360030px;}
.y34_c01060{bottom:972.360420px;}
.y9_c01060{bottom:991.440465px;}
.y33_c01060{bottom:991.440855px;}
.y32_c01060{bottom:1010.520720px;}
.y8_c01060{bottom:1010.879085px;}
.y31_c01060{bottom:1029.600765px;}
.y7_c01060{bottom:1029.959535px;}
.y30_c01060{bottom:1049.038695px;}
.y6_c01060{bottom:1049.039985px;}
.y2f_c01060{bottom:1068.119130px;}
.y5_c01060{bottom:1068.119940px;}
.y2e_c01060{bottom:1087.199595px;}
.y3_c01060{bottom:1087.199610px;}
.y4_c01060{bottom:1087.199805px;}
.y2d_c01060{bottom:1106.280030px;}
.y2_c01060{bottom:1106.640750px;}
.y1_c01060{bottom:1144.800570px;}
.h4_c01060{height:23.466797px;}
.h8_c01060{height:46.373291px;}
.h13_c01060{height:48.178711px;}
.h9_c01060{height:50.062500px;}
.h1_c01060{height:50.402344px;}
.ha_c01060{height:51.143555px;}
.h12_c01060{height:51.500244px;}
.h3_c01060{height:52.625977px;}
.h6_c01060{height:52.971680px;}
.h2_c01060{height:54.108398px;}
.hb_c01060{height:54.443115px;}
.h7_c01060{height:57.073242px;}
.hd_c01060{height:61.795898px;}
.he_c01060{height:64.485352px;}
.h5_c01060{height:65.226562px;}
.h10_c01060{height:65.967773px;}
.h11_c01060{height:67.450195px;}
.hc_c01060{height:68.932617px;}
.hf_c01060{height:70.415039px;}
.h0_c01060{height:1263.000000px;}
.w0_c01060{width:892.500000px;}
.x0_c01060{left:0.000000px;}
.x1_c01060{left:294.839535px;}
.x5_c01060{left:358.559145px;}
.x3_c01060{left:359.638530px;}
.x7_c01060{left:397.798515px;}
.xb_c01060{left:403.918950px;}
.x4_c01060{left:405.359250px;}
.x6_c01060{left:406.799565px;}
.xa_c01060{left:410.759535px;}
.x9_c01060{left:417.239220px;}
.x8_c01060{left:429.839535px;}
.xc_c01060{left:560.158770px;}
.xe_c01060{left:592.198785px;}
.xd_c01060{left:593.279850px;}
.x2_c01060{left:690.838530px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls1d_c01060{letter-spacing:-6.818000pt;}
.ls1e_c01060{letter-spacing:-5.718227pt;}
.ls13_c01060{letter-spacing:-4.600800pt;}
.lsc_c01060{letter-spacing:-3.048480pt;}
.ls15_c01060{letter-spacing:-2.821000pt;}
.ls24_c01060{letter-spacing:-2.783327pt;}
.ls21_c01060{letter-spacing:-2.699667pt;}
.ls18_c01060{letter-spacing:-2.639000pt;}
.ls17_c01060{letter-spacing:-2.314227pt;}
.ls8_c01060{letter-spacing:-2.302933pt;}
.ls19_c01060{letter-spacing:-1.951300pt;}
.ls1b_c01060{letter-spacing:-1.807867pt;}
.lsd_c01060{letter-spacing:-1.684247pt;}
.ls4_c01060{letter-spacing:-1.596753pt;}
.ls14_c01060{letter-spacing:-1.544133pt;}
.ls10_c01060{letter-spacing:-1.537253pt;}
.ls1c_c01060{letter-spacing:-1.509147pt;}
.ls11_c01060{letter-spacing:-1.464267pt;}
.ls1f_c01060{letter-spacing:-0.922133pt;}
.ls1a_c01060{letter-spacing:-0.901867pt;}
.ls22_c01060{letter-spacing:-0.856753pt;}
.lse_c01060{letter-spacing:-0.804667pt;}
.ls5_c01060{letter-spacing:-0.789993pt;}
.ls3_c01060{letter-spacing:-0.770667pt;}
.lsb_c01060{letter-spacing:-0.756613pt;}
.ls25_c01060{letter-spacing:-0.723233pt;}
.ls2_c01060{letter-spacing:0.000000pt;}
.ls6_c01060{letter-spacing:0.770667pt;}
.ls23_c01060{letter-spacing:0.875193pt;}
.ls7_c01060{letter-spacing:1.173333pt;}
.ls0_c01060{letter-spacing:1.537253pt;}
.ls16_c01060{letter-spacing:2.302933pt;}
.lsf_c01060{letter-spacing:2.751467pt;}
.ls9_c01060{letter-spacing:3.048480pt;}
.lsa_c01060{letter-spacing:3.839733pt;}
.ls1_c01060{letter-spacing:4.610400pt;}
.ls12_c01060{letter-spacing:5.462267pt;}
.ls20_c01060{letter-spacing:23.897560pt;}
.ws0_c01060{word-spacing:0.000000pt;}
._7_c01060{margin-left:-22.852672pt;}
._a_c01060{margin-left:-9.384031pt;}
._9_c01060{margin-left:-7.289677pt;}
._3_c01060{margin-left:-5.984061pt;}
._8_c01060{margin-left:-4.800723pt;}
._4_c01060{margin-left:-3.685431pt;}
._6_c01060{margin-left:-2.570631pt;}
._5_c01060{margin-left:-1.564169pt;}
._2_c01060{width:2.108108pt;}
._f_c01060{width:21.020713pt;}
._0_c01060{width:22.222369pt;}
._e_c01060{width:23.972390pt;}
._d_c01060{width:25.454651pt;}
._b_c01060{width:28.528405pt;}
._10_c01060{width:30.005995pt;}
._c_c01060{width:31.603665pt;}
._1_c01060{width:631.312246pt;}
.fs3_c01060{font-size:20.000000pt;}
.fs7_c01060{font-size:42.000000pt;}
.fs8_c01060{font-size:42.666667pt;}
.fs12_c01060{font-size:43.333333pt;}
.fs0_c01060{font-size:45.333333pt;}
.fs9_c01060{font-size:46.000000pt;}
.fs11_c01060{font-size:46.666667pt;}
.fs2_c01060{font-size:47.333333pt;}
.fs5_c01060{font-size:48.000000pt;}
.fs1_c01060{font-size:48.666667pt;}
.fsa_c01060{font-size:49.333333pt;}
.fs6_c01060{font-size:51.333333pt;}
.fsc_c01060{font-size:52.666667pt;}
.fsd_c01060{font-size:58.000000pt;}
.fs4_c01060{font-size:58.666667pt;}
.fsf_c01060{font-size:59.333333pt;}
.fs10_c01060{font-size:60.666667pt;}
.fsb_c01060{font-size:62.000000pt;}
.fse_c01060{font-size:63.333333pt;}
.y0_c01060{bottom:0.000000pt;}
.y2c_c01060{bottom:334.400987pt;}
.y4d_c01060{bottom:334.721187pt;}
.y4c_c01060{bottom:351.681187pt;}
.y2b_c01060{bottom:352.000533pt;}
.y2a_c01060{bottom:368.641067pt;}
.y29_c01060{bottom:385.920413pt;}
.y28_c01060{bottom:402.561080pt;}
.y4b_c01060{bottom:402.880373pt;}
.y27_c01060{bottom:420.160667pt;}
.y4a_c01060{bottom:420.161053pt;}
.y26_c01060{bottom:437.121053pt;}
.y49_c01060{bottom:454.399653pt;}
.y25_c01060{bottom:454.400800pt;}
.y48_c01060{bottom:471.360067pt;}
.y24_c01060{bottom:471.360387pt;}
.y23_c01060{bottom:488.641067pt;}
.y22_c01060{bottom:505.601080pt;}
.y21_c01060{bottom:505.601120pt;}
.y47_c01060{bottom:505.601600pt;}
.y20_c01060{bottom:522.879880pt;}
.y46_c01060{bottom:522.880373pt;}
.y45_c01060{bottom:539.840253pt;}
.y1f_c01060{bottom:539.840267pt;}
.y1e_c01060{bottom:556.800680pt;}
.y44_c01060{bottom:557.121053pt;}
.y43_c01060{bottom:557.121453pt;}
.y1d_c01060{bottom:573.441493pt;}
.y1c_c01060{bottom:590.720253pt;}
.y1b_c01060{bottom:607.360800pt;}
.y42_c01060{bottom:607.361373pt;}
.y1a_c01060{bottom:607.361387pt;}
.y41_c01060{bottom:624.640133pt;}
.y19_c01060{bottom:624.640160pt;}
.y40_c01060{bottom:641.600093pt;}
.y18_c01060{bottom:641.600560pt;}
.y17_c01060{bottom:659.200120pt;}
.y3e_c01060{bottom:676.159907pt;}
.y3f_c01060{bottom:676.160120pt;}
.y16_c01060{bottom:676.480920pt;}
.y15_c01060{bottom:693.440493pt;}
.y3d_c01060{bottom:693.440920pt;}
.y3c_c01060{bottom:710.080080pt;}
.y14_c01060{bottom:710.400880pt;}
.y12_c01060{bottom:727.998187pt;}
.y13_c01060{bottom:728.000893pt;}
.y11_c01060{bottom:744.637800pt;}
.y3b_c01060{bottom:744.639347pt;}
.y3a_c01060{bottom:761.599747pt;}
.y10_c01060{bottom:761.918827pt;}
.y39_c01060{bottom:778.240560pt;}
.yf_c01060{bottom:778.558427pt;}
.y38_c01060{bottom:795.519333pt;}
.ye_c01060{bottom:795.839440pt;}
.y37_c01060{bottom:812.479733pt;}
.yd_c01060{bottom:812.799840pt;}
.y36_c01060{bottom:829.760747pt;}
.yc_c01060{bottom:830.078613pt;}
.y35_c01060{bottom:846.720627pt;}
.yb_c01060{bottom:847.039000pt;}
.ya_c01060{bottom:864.320027pt;}
.y34_c01060{bottom:864.320373pt;}
.y9_c01060{bottom:881.280413pt;}
.y33_c01060{bottom:881.280760pt;}
.y32_c01060{bottom:898.240640pt;}
.y8_c01060{bottom:898.559187pt;}
.y31_c01060{bottom:915.200680pt;}
.y7_c01060{bottom:915.519587pt;}
.y30_c01060{bottom:932.478840pt;}
.y6_c01060{bottom:932.479987pt;}
.y2f_c01060{bottom:949.439227pt;}
.y5_c01060{bottom:949.439947pt;}
.y2e_c01060{bottom:966.399640pt;}
.y3_c01060{bottom:966.399653pt;}
.y4_c01060{bottom:966.399827pt;}
.y2d_c01060{bottom:983.360027pt;}
.y2_c01060{bottom:983.680667pt;}
.y1_c01060{bottom:1017.600507pt;}
.h4_c01060{height:20.859375pt;}
.h8_c01060{height:41.220703pt;}
.h13_c01060{height:42.825521pt;}
.h9_c01060{height:44.500000pt;}
.h1_c01060{height:44.802083pt;}
.ha_c01060{height:45.460938pt;}
.h12_c01060{height:45.777995pt;}
.h3_c01060{height:46.778646pt;}
.h6_c01060{height:47.085938pt;}
.h2_c01060{height:48.096354pt;}
.hb_c01060{height:48.393880pt;}
.h7_c01060{height:50.731771pt;}
.hd_c01060{height:54.929688pt;}
.he_c01060{height:57.320313pt;}
.h5_c01060{height:57.979167pt;}
.h10_c01060{height:58.638021pt;}
.h11_c01060{height:59.955729pt;}
.hc_c01060{height:61.273438pt;}
.hf_c01060{height:62.591146pt;}
.h0_c01060{height:1122.666667pt;}
.w0_c01060{width:793.333333pt;}
.x0_c01060{left:0.000000pt;}
.x1_c01060{left:262.079587pt;}
.x5_c01060{left:318.719240pt;}
.x3_c01060{left:319.678693pt;}
.x7_c01060{left:353.598680pt;}
.xb_c01060{left:359.039067pt;}
.x4_c01060{left:360.319333pt;}
.x6_c01060{left:361.599613pt;}
.xa_c01060{left:365.119587pt;}
.x9_c01060{left:370.879307pt;}
.x8_c01060{left:382.079587pt;}
.xc_c01060{left:497.918907pt;}
.xe_c01060{left:526.398920pt;}
.xd_c01060{left:527.359867pt;}
.x2_c01060{left:614.078693pt;}
}





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

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_943ee24073a09bf809564e68.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_c6960841c9e10438de0b63dd.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_1e2790fde76b3c7cfafbeee9.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_333721e8e04fdba6cd4430d5.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01061;src:url('chunks/assets/font_354b07ac23c4fe45ab4a02d9.woff2')format("woff");}.ff5_c01061{font-family:ff5_c01061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01061;src:url('chunks/assets/font_1fd1784b6858d40d06852c67.woff2')format("woff");}.ff6_c01061{font-family:ff6_c01061;line-height:1.432129;font-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_c01061{transform:matrix(0.140957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140957,0.000000,0.000000,0.250000,0,0);}
.m16_c01061{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m15_c01061{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m21_c01061{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m22_c01061{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);}
.m19_c01061{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m13_c01061{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m18_c01061{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m14_c01061{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m4_c01061{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m1_c01061{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m9_c01061{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7_c01061{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m24_c01061{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m1e_c01061{transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);}
.m17_c01061{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m6_c01061{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m12_c01061{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.me_c01061{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m1f_c01061{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m10_c01061{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_c01061{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m3_c01061{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m2_c01061{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.mf_c01061{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m23_c01061{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m0_c01061{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m25_c01061{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m11_c01061{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m2a_c01061{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m5_c01061{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m1a_c01061{transform:matrix(0.305769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305769,0.000000,0.000000,0.250000,0,0);}
.m1c_c01061{transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307377,0.000000,0.000000,0.250000,0,0);}
.mb_c01061{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.m1d_c01061{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01061{transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317073,0.000000,0.000000,0.250000,0,0);}
.ma_c01061{transform:matrix(0.325758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325758,0.000000,0.000000,0.250000,0,0);}
.m28_c01061{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.mc_c01061{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);}
.m26_c01061{transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);}
.m29_c01061{transform:matrix(0.398936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398936,0.000000,0.000000,0.250000,0,0);}
.m27_c01061{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);}
.m1b_c01061{transform:matrix(0.870690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870690,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls22_c01061{letter-spacing:-20.918205px;}
.ls1a_c01061{letter-spacing:-13.494000px;}
.ls23_c01061{letter-spacing:-7.633867px;}
.ls16_c01061{letter-spacing:-7.380015px;}
.ls14_c01061{letter-spacing:-4.185135px;}
.ls5_c01061{letter-spacing:-3.932175px;}
.ls28_c01061{letter-spacing:-3.684450px;}
.ls18_c01061{letter-spacing:-3.457290px;}
.ls7_c01061{letter-spacing:-3.230100px;}
.ls4_c01061{letter-spacing:-3.220650px;}
.ls27_c01061{letter-spacing:-2.590800px;}
.ls20_c01061{letter-spacing:-2.392403px;}
.ls2_c01061{letter-spacing:-2.353583px;}
.ls24_c01061{letter-spacing:-1.874850px;}
.ls19_c01061{letter-spacing:-1.729410px;}
.ls15_c01061{letter-spacing:-1.669500px;}
.lsd_c01061{letter-spacing:-1.619775px;}
.ls6_c01061{letter-spacing:-1.569600px;}
.ls9_c01061{letter-spacing:-1.248525px;}
.ls10_c01061{letter-spacing:-1.218750px;}
.lse_c01061{letter-spacing:-0.901260px;}
.ls21_c01061{letter-spacing:-0.876225px;}
.lsa_c01061{letter-spacing:-0.867000px;}
.ls17_c01061{letter-spacing:-0.848700px;}
.ls1d_c01061{letter-spacing:-0.600000px;}
.ls25_c01061{letter-spacing:-0.572910px;}
.lsb_c01061{letter-spacing:0.000000px;}
.ls1b_c01061{letter-spacing:0.430868px;}
.ls11_c01061{letter-spacing:0.537000px;}
.lsf_c01061{letter-spacing:0.576675px;}
.lsc_c01061{letter-spacing:0.887250px;}
.ls8_c01061{letter-spacing:0.913778px;}
.ls1_c01061{letter-spacing:1.729410px;}
.ls26_c01061{letter-spacing:2.820000px;}
.ls12_c01061{letter-spacing:2.958458px;}
.ls3_c01061{letter-spacing:3.642300px;}
.ls1c_c01061{letter-spacing:4.268933px;}
.ls1f_c01061{letter-spacing:8.643990px;}
.ls13_c01061{letter-spacing:16.089300px;}
.ls0_c01061{letter-spacing:27.508875px;}
.ls1e_c01061{letter-spacing:60.200550px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:0.000000px;}
._0_c01061{margin-left:-51.412889px;}
._e_c01061{margin-left:-34.649435px;}
._3_c01061{margin-left:-11.930406px;}
._11_c01061{margin-left:-7.466746px;}
._10_c01061{margin-left:-6.033767px;}
._d_c01061{margin-left:-4.896069px;}
._a_c01061{margin-left:-3.202627px;}
._9_c01061{margin-left:-1.973475px;}
._f_c01061{width:1.158167px;}
._b_c01061{width:2.371621px;}
._c_c01061{width:4.029484px;}
._2_c01061{width:5.142641px;}
._1_c01061{width:9.221840px;}
._7_c01061{width:19.604400px;}
._5_c01061{width:21.267380px;}
._6_c01061{width:23.939400px;}
._8_c01061{width:25.596986px;}
._4_c01061{width:27.259206px;}
.fc0_c01061{color:transparent;}
.fs1c_c01061{font-size:14.250000px;}
.fsb_c01061{font-size:19.500000px;}
.fs16_c01061{font-size:21.750000px;}
.fsa_c01061{font-size:24.750000px;}
.fsc_c01061{font-size:30.000000px;}
.fsd_c01061{font-size:30.750000px;}
.fs1e_c01061{font-size:35.250000px;}
.fs1d_c01061{font-size:39.000000px;}
.fs17_c01061{font-size:42.750000px;}
.fse_c01061{font-size:43.500000px;}
.fsf_c01061{font-size:44.250000px;}
.fs13_c01061{font-size:45.750000px;}
.fs11_c01061{font-size:46.500000px;}
.fs12_c01061{font-size:48.000000px;}
.fs7_c01061{font-size:48.750000px;}
.fs1a_c01061{font-size:50.250000px;}
.fs6_c01061{font-size:51.000000px;}
.fs8_c01061{font-size:51.750000px;}
.fs10_c01061{font-size:52.500000px;}
.fs9_c01061{font-size:54.000000px;}
.fs4_c01061{font-size:54.750000px;}
.fs14_c01061{font-size:56.250000px;}
.fs19_c01061{font-size:58.500000px;}
.fs5_c01061{font-size:69.750000px;}
.fs18_c01061{font-size:70.500000px;}
.fs2_c01061{font-size:76.500000px;}
.fs0_c01061{font-size:81.750000px;}
.fs3_c01061{font-size:83.250000px;}
.fs1_c01061{font-size:85.500000px;}
.fs15_c01061{font-size:97.500000px;}
.fs1b_c01061{font-size:115.500000px;}
.y0_c01061{bottom:0.000000px;}
.y77_c01061{bottom:189.000000px;}
.y2e_c01061{bottom:189.177480px;}
.y52_c01061{bottom:189.357765px;}
.ya1_c01061{bottom:208.079400px;}
.y76_c01061{bottom:208.080000px;}
.y2d_c01061{bottom:208.257915px;}
.y51_c01061{bottom:208.438200px;}
.ya0_c01061{bottom:227.518020px;}
.y75_c01061{bottom:227.519100px;}
.y2c_c01061{bottom:227.696520px;}
.y50_c01061{bottom:227.879355px;}
.y74_c01061{bottom:246.598455px;}
.y2b_c01061{bottom:246.776985px;}
.y4f_c01061{bottom:246.959790px;}
.y73_c01061{bottom:266.039910px;}
.y4e_c01061{bottom:266.040255px;}
.y2a_c01061{bottom:266.218110px;}
.y9f_c01061{bottom:266.397975px;}
.y72_c01061{bottom:285.119910px;}
.y29_c01061{bottom:285.478335px;}
.y9e_c01061{bottom:285.478410px;}
.y4d_c01061{bottom:285.478860px;}
.y71_c01061{bottom:304.559100px;}
.y28_c01061{bottom:304.919475px;}
.y9d_c01061{bottom:304.919565px;}
.y4c_c01061{bottom:304.920000px;}
.y70_c01061{bottom:323.639100px;}
.y27_c01061{bottom:323.818800px;}
.y4b_c01061{bottom:324.000000px;}
.y26_c01061{bottom:343.080000px;}
.y9c_c01061{bottom:343.439235px;}
.y25_c01061{bottom:348.478635px;}
.y49_c01061{bottom:361.797360px;}
.y4a_c01061{bottom:361.798950px;}
.y24_c01061{bottom:361.974615px;}
.y9b_c01061{bottom:362.160480px;}
.y23_c01061{bottom:381.595530px;}
.y48_c01061{bottom:381.596880px;}
.y6f_c01061{bottom:381.598635px;}
.y9a_c01061{bottom:381.599100px;}
.y22_c01061{bottom:400.675965px;}
.y47_c01061{bottom:400.677315px;}
.y6e_c01061{bottom:400.679070px;}
.y99_c01061{bottom:401.039985px;}
.y98_c01061{bottom:401.040315px;}
.y21_c01061{bottom:420.117120px;}
.y46_c01061{bottom:420.118470px;}
.y6d_c01061{bottom:420.119985px;}
.y97_c01061{bottom:420.478935px;}
.y20_c01061{bottom:439.016445px;}
.y45_c01061{bottom:439.198905px;}
.y96_c01061{bottom:439.199850px;}
.y6c_c01061{bottom:439.200045px;}
.y1f_c01061{bottom:458.637330px;}
.y44_c01061{bottom:458.998425px;}
.y6b_c01061{bottom:458.999565px;}
.y95_c01061{bottom:459.000000px;}
.y1e_c01061{bottom:477.717795px;}
.y43_c01061{bottom:477.717975px;}
.y6a_c01061{bottom:478.080000px;}
.y94_c01061{bottom:478.080030px;}
.y1d_c01061{bottom:497.158935px;}
.y42_c01061{bottom:497.159115px;}
.y69_c01061{bottom:497.159820px;}
.y93_c01061{bottom:497.518635px;}
.y1c_c01061{bottom:516.239385px;}
.y41_c01061{bottom:516.239565px;}
.y68_c01061{bottom:516.239820px;}
.y92_c01061{bottom:516.599070px;}
.y1b_c01061{bottom:535.319820px;}
.y67_c01061{bottom:535.319865px;}
.y40_c01061{bottom:535.320000px;}
.y90_c01061{bottom:535.678050px;}
.y91_c01061{bottom:535.679070px;}
.y1a_c01061{bottom:554.399820px;}
.y3f_c01061{bottom:554.400465px;}
.y19_c01061{bottom:554.400645px;}
.y8f_c01061{bottom:554.758500px;}
.y18_c01061{bottom:573.659505px;}
.y8e_c01061{bottom:573.838950px;}
.y66_c01061{bottom:573.838995px;}
.y3e_c01061{bottom:573.839085px;}
.y17_c01061{bottom:593.100660px;}
.y8d_c01061{bottom:593.279850px;}
.y65_c01061{bottom:593.280150px;}
.y3d_c01061{bottom:593.280210px;}
.y64_c01061{bottom:612.718755px;}
.y3c_c01061{bottom:612.718830px;}
.y16_c01061{bottom:612.719025px;}
.y8c_c01061{bottom:613.077390px;}
.y15_c01061{bottom:631.260000px;}
.y63_c01061{bottom:631.439670px;}
.y3b_c01061{bottom:631.439760px;}
.y8b_c01061{bottom:631.796955px;}
.y14_c01061{bottom:650.878365px;}
.y62_c01061{bottom:650.878530px;}
.y8a_c01061{bottom:651.238110px;}
.y13_c01061{bottom:669.599280px;}
.y61_c01061{bottom:669.599805px;}
.y89_c01061{bottom:669.957660px;}
.y12_c01061{bottom:689.037900px;}
.y88_c01061{bottom:689.038095px;}
.y60_c01061{bottom:689.038920px;}
.y11_c01061{bottom:708.118350px;}
.y87_c01061{bottom:708.118560px;}
.y5f_c01061{bottom:708.118785px;}
.y10_c01061{bottom:727.198785px;}
.y86_c01061{bottom:727.559685px;}
.yf_c01061{bottom:746.278800px;}
.y85_c01061{bottom:752.039985px;}
.y5e_c01061{bottom:765.358605px;}
.y3a_c01061{bottom:765.715365px;}
.y83_c01061{bottom:765.718755px;}
.ye_c01061{bottom:765.718965px;}
.y84_c01061{bottom:765.719520px;}
.y39_c01061{bottom:784.795800px;}
.y82_c01061{bottom:784.799190px;}
.yd_c01061{bottom:784.799400px;}
.y5d_c01061{bottom:784.800180px;}
.y38_c01061{bottom:804.595320px;}
.y81_c01061{bottom:804.598710px;}
.yc_c01061{bottom:804.598920px;}
.y5c_c01061{bottom:804.599670px;}
.y5b_c01061{bottom:823.318815px;}
.y37_c01061{bottom:823.675755px;}
.y80_c01061{bottom:823.679145px;}
.yb_c01061{bottom:823.679355px;}
.y36_c01061{bottom:842.756220px;}
.y5a_c01061{bottom:842.759490px;}
.y7f_c01061{bottom:843.117765px;}
.ya_c01061{bottom:843.117960px;}
.y35_c01061{bottom:861.836655px;}
.y7e_c01061{bottom:861.838695px;}
.y9_c01061{bottom:861.838905px;}
.y59_c01061{bottom:861.839565px;}
.y58_c01061{bottom:881.278755px;}
.y34_c01061{bottom:881.636175px;}
.y7d_c01061{bottom:881.638185px;}
.y8_c01061{bottom:881.638395px;}
.y57_c01061{bottom:900.358710px;}
.y33_c01061{bottom:900.716610px;}
.y7c_c01061{bottom:900.718650px;}
.y7_c01061{bottom:900.718845px;}
.y56_c01061{bottom:919.438665px;}
.y32_c01061{bottom:919.797060px;}
.y7b_c01061{bottom:919.799085px;}
.y6_c01061{bottom:919.799280px;}
.y55_c01061{bottom:938.518620px;}
.y31_c01061{bottom:938.877495px;}
.y7a_c01061{bottom:938.879535px;}
.y5_c01061{bottom:939.237900px;}
.y54_c01061{bottom:957.959385px;}
.y30_c01061{bottom:958.316115px;}
.y79_c01061{bottom:958.318155px;}
.y4_c01061{bottom:958.318365px;}
.y53_c01061{bottom:977.397105px;}
.y78_c01061{bottom:977.398590px;}
.y2f_c01061{bottom:977.757270px;}
.y3_c01061{bottom:977.759490px;}
.y2_c01061{bottom:1073.879520px;}
.y1_c01061{bottom:1136.519715px;}
.h1f_c01061{height:14.862305px;}
.hc_c01061{height:20.337891px;}
.h17_c01061{height:21.919922px;}
.h20_c01061{height:22.684570px;}
.hb_c01061{height:24.459961px;}
.hd_c01061{height:29.648438px;}
.he_c01061{height:30.990234px;}
.h19_c01061{height:31.289062px;}
.h22_c01061{height:36.764648px;}
.h21_c01061{height:39.304688px;}
.h1a_c01061{height:43.083984px;}
.hf_c01061{height:45.369141px;}
.h18_c01061{height:46.107422px;}
.h10_c01061{height:46.151367px;}
.h14_c01061{height:47.715820px;}
.h8_c01061{height:48.178711px;}
.h12_c01061{height:48.498047px;}
.h1d_c01061{height:49.661133px;}
.h13_c01061{height:50.062500px;}
.h7_c01061{height:50.402344px;}
.h9_c01061{height:51.143555px;}
.h11_c01061{height:51.884766px;}
.ha_c01061{height:53.367188px;}
.h15_c01061{height:55.590820px;}
.h5_c01061{height:57.102539px;}
.h1c_c01061{height:57.814453px;}
.h6_c01061{height:68.932617px;}
.h1b_c01061{height:69.673828px;}
.h3_c01061{height:79.787109px;}
.h1_c01061{height:82.388672px;}
.h4_c01061{height:83.900391px;}
.h2_c01061{height:84.498047px;}
.h16_c01061{height:101.689453px;}
.h1e_c01061{height:120.462891px;}
.h0_c01061{height:1263.000000px;}
.w0_c01061{width:892.500000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:136.799565px;}
.x7_c01061{left:175.318800px;}
.x8_c01061{left:208.439250px;}
.x2_c01061{left:215.279850px;}
.x3_c01061{left:240.478635px;}
.x9_c01061{left:245.878950px;}
.x4_c01061{left:261.719100px;}
.xa_c01061{left:278.999445px;}
.xb_c01061{left:311.038950px;}
.xc_c01061{left:330.118785px;}
.x5_c01061{left:474.479235px;}
.xd_c01061{left:538.919520px;}
.x10_c01061{left:545.759535px;}
.xf_c01061{left:551.519070px;}
.xe_c01061{left:565.198785px;}
.x11_c01061{left:577.078770px;}
.x18_c01061{left:585.359850px;}
.x6_c01061{left:588.958920px;}
.x13_c01061{left:616.319820px;}
.x1a_c01061{left:622.799520px;}
.x12_c01061{left:635.399820px;}
.x14_c01061{left:636.838530px;}
.x15_c01061{left:642.599670px;}
.x19_c01061{left:643.679070px;}
.x16_c01061{left:654.838950px;}
.x17_c01061{left:662.399820px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls22_c01061{letter-spacing:-18.593960pt;}
.ls1a_c01061{letter-spacing:-11.994667pt;}
.ls23_c01061{letter-spacing:-6.785660pt;}
.ls16_c01061{letter-spacing:-6.560013pt;}
.ls14_c01061{letter-spacing:-3.720120pt;}
.ls5_c01061{letter-spacing:-3.495267pt;}
.ls28_c01061{letter-spacing:-3.275067pt;}
.ls18_c01061{letter-spacing:-3.073147pt;}
.ls7_c01061{letter-spacing:-2.871200pt;}
.ls4_c01061{letter-spacing:-2.862800pt;}
.ls27_c01061{letter-spacing:-2.302933pt;}
.ls20_c01061{letter-spacing:-2.126580pt;}
.ls2_c01061{letter-spacing:-2.092073pt;}
.ls24_c01061{letter-spacing:-1.666533pt;}
.ls19_c01061{letter-spacing:-1.537253pt;}
.ls15_c01061{letter-spacing:-1.484000pt;}
.lsd_c01061{letter-spacing:-1.439800pt;}
.ls6_c01061{letter-spacing:-1.395200pt;}
.ls9_c01061{letter-spacing:-1.109800pt;}
.ls10_c01061{letter-spacing:-1.083333pt;}
.lse_c01061{letter-spacing:-0.801120pt;}
.ls21_c01061{letter-spacing:-0.778867pt;}
.lsa_c01061{letter-spacing:-0.770667pt;}
.ls17_c01061{letter-spacing:-0.754400pt;}
.ls1d_c01061{letter-spacing:-0.533333pt;}
.ls25_c01061{letter-spacing:-0.509253pt;}
.lsb_c01061{letter-spacing:0.000000pt;}
.ls1b_c01061{letter-spacing:0.382993pt;}
.ls11_c01061{letter-spacing:0.477333pt;}
.lsf_c01061{letter-spacing:0.512600pt;}
.lsc_c01061{letter-spacing:0.788667pt;}
.ls8_c01061{letter-spacing:0.812247pt;}
.ls1_c01061{letter-spacing:1.537253pt;}
.ls26_c01061{letter-spacing:2.506667pt;}
.ls12_c01061{letter-spacing:2.629740pt;}
.ls3_c01061{letter-spacing:3.237600pt;}
.ls1c_c01061{letter-spacing:3.794607pt;}
.ls1f_c01061{letter-spacing:7.683547pt;}
.ls13_c01061{letter-spacing:14.301600pt;}
.ls0_c01061{letter-spacing:24.452333pt;}
.ls1e_c01061{letter-spacing:53.511600pt;}
.ws0_c01061{word-spacing:0.000000pt;}
._0_c01061{margin-left:-45.700346pt;}
._e_c01061{margin-left:-30.799497pt;}
._3_c01061{margin-left:-10.604806pt;}
._11_c01061{margin-left:-6.637107pt;}
._10_c01061{margin-left:-5.363348pt;}
._d_c01061{margin-left:-4.352061pt;}
._a_c01061{margin-left:-2.846780pt;}
._9_c01061{margin-left:-1.754200pt;}
._f_c01061{width:1.029482pt;}
._b_c01061{width:2.108108pt;}
._c_c01061{width:3.581764pt;}
._2_c01061{width:4.571236pt;}
._1_c01061{width:8.197191pt;}
._7_c01061{width:17.426133pt;}
._5_c01061{width:18.904338pt;}
._6_c01061{width:21.279467pt;}
._8_c01061{width:22.752877pt;}
._4_c01061{width:24.230405pt;}
.fs1c_c01061{font-size:12.666667pt;}
.fsb_c01061{font-size:17.333333pt;}
.fs16_c01061{font-size:19.333333pt;}
.fsa_c01061{font-size:22.000000pt;}
.fsc_c01061{font-size:26.666667pt;}
.fsd_c01061{font-size:27.333333pt;}
.fs1e_c01061{font-size:31.333333pt;}
.fs1d_c01061{font-size:34.666667pt;}
.fs17_c01061{font-size:38.000000pt;}
.fse_c01061{font-size:38.666667pt;}
.fsf_c01061{font-size:39.333333pt;}
.fs13_c01061{font-size:40.666667pt;}
.fs11_c01061{font-size:41.333333pt;}
.fs12_c01061{font-size:42.666667pt;}
.fs7_c01061{font-size:43.333333pt;}
.fs1a_c01061{font-size:44.666667pt;}
.fs6_c01061{font-size:45.333333pt;}
.fs8_c01061{font-size:46.000000pt;}
.fs10_c01061{font-size:46.666667pt;}
.fs9_c01061{font-size:48.000000pt;}
.fs4_c01061{font-size:48.666667pt;}
.fs14_c01061{font-size:50.000000pt;}
.fs19_c01061{font-size:52.000000pt;}
.fs5_c01061{font-size:62.000000pt;}
.fs18_c01061{font-size:62.666667pt;}
.fs2_c01061{font-size:68.000000pt;}
.fs0_c01061{font-size:72.666667pt;}
.fs3_c01061{font-size:74.000000pt;}
.fs1_c01061{font-size:76.000000pt;}
.fs15_c01061{font-size:86.666667pt;}
.fs1b_c01061{font-size:102.666667pt;}
.y0_c01061{bottom:0.000000pt;}
.y77_c01061{bottom:168.000000pt;}
.y2e_c01061{bottom:168.157760pt;}
.y52_c01061{bottom:168.318013pt;}
.ya1_c01061{bottom:184.959467pt;}
.y76_c01061{bottom:184.960000pt;}
.y2d_c01061{bottom:185.118147pt;}
.y51_c01061{bottom:185.278400pt;}
.ya0_c01061{bottom:202.238240pt;}
.y75_c01061{bottom:202.239200pt;}
.y2c_c01061{bottom:202.396907pt;}
.y50_c01061{bottom:202.559427pt;}
.y74_c01061{bottom:219.198627pt;}
.y2b_c01061{bottom:219.357320pt;}
.y4f_c01061{bottom:219.519813pt;}
.y73_c01061{bottom:236.479920pt;}
.y4e_c01061{bottom:236.480227pt;}
.y2a_c01061{bottom:236.638320pt;}
.y9f_c01061{bottom:236.798200pt;}
.y72_c01061{bottom:253.439920pt;}
.y29_c01061{bottom:253.758520pt;}
.y9e_c01061{bottom:253.758587pt;}
.y4d_c01061{bottom:253.758987pt;}
.y71_c01061{bottom:270.719200pt;}
.y28_c01061{bottom:271.039533pt;}
.y9d_c01061{bottom:271.039613pt;}
.y4c_c01061{bottom:271.040000pt;}
.y70_c01061{bottom:287.679200pt;}
.y27_c01061{bottom:287.838933pt;}
.y4b_c01061{bottom:288.000000pt;}
.y26_c01061{bottom:304.960000pt;}
.y9c_c01061{bottom:305.279320pt;}
.y25_c01061{bottom:309.758787pt;}
.y49_c01061{bottom:321.597653pt;}
.y4a_c01061{bottom:321.599067pt;}
.y24_c01061{bottom:321.755213pt;}
.y9b_c01061{bottom:321.920427pt;}
.y23_c01061{bottom:339.196027pt;}
.y48_c01061{bottom:339.197227pt;}
.y6f_c01061{bottom:339.198787pt;}
.y9a_c01061{bottom:339.199200pt;}
.y22_c01061{bottom:356.156413pt;}
.y47_c01061{bottom:356.157613pt;}
.y6e_c01061{bottom:356.159173pt;}
.y99_c01061{bottom:356.479987pt;}
.y98_c01061{bottom:356.480280pt;}
.y21_c01061{bottom:373.437440pt;}
.y46_c01061{bottom:373.438640pt;}
.y6d_c01061{bottom:373.439987pt;}
.y97_c01061{bottom:373.759053pt;}
.y20_c01061{bottom:390.236840pt;}
.y45_c01061{bottom:390.399027pt;}
.y96_c01061{bottom:390.399867pt;}
.y6c_c01061{bottom:390.400040pt;}
.y1f_c01061{bottom:407.677627pt;}
.y44_c01061{bottom:407.998600pt;}
.y6b_c01061{bottom:407.999613pt;}
.y95_c01061{bottom:408.000000pt;}
.y1e_c01061{bottom:424.638040pt;}
.y43_c01061{bottom:424.638200pt;}
.y6a_c01061{bottom:424.960000pt;}
.y94_c01061{bottom:424.960027pt;}
.y1d_c01061{bottom:441.919053pt;}
.y42_c01061{bottom:441.919213pt;}
.y69_c01061{bottom:441.919840pt;}
.y93_c01061{bottom:442.238787pt;}
.y1c_c01061{bottom:458.879453pt;}
.y41_c01061{bottom:458.879613pt;}
.y68_c01061{bottom:458.879840pt;}
.y92_c01061{bottom:459.199173pt;}
.y1b_c01061{bottom:475.839840pt;}
.y67_c01061{bottom:475.839880pt;}
.y40_c01061{bottom:475.840000pt;}
.y90_c01061{bottom:476.158267pt;}
.y91_c01061{bottom:476.159173pt;}
.y1a_c01061{bottom:492.799840pt;}
.y3f_c01061{bottom:492.800413pt;}
.y19_c01061{bottom:492.800573pt;}
.y8f_c01061{bottom:493.118667pt;}
.y18_c01061{bottom:509.919560pt;}
.y8e_c01061{bottom:510.079067pt;}
.y66_c01061{bottom:510.079107pt;}
.y3e_c01061{bottom:510.079187pt;}
.y17_c01061{bottom:527.200587pt;}
.y8d_c01061{bottom:527.359867pt;}
.y65_c01061{bottom:527.360133pt;}
.y3d_c01061{bottom:527.360187pt;}
.y64_c01061{bottom:544.638893pt;}
.y3c_c01061{bottom:544.638960pt;}
.y16_c01061{bottom:544.639133pt;}
.y8c_c01061{bottom:544.957680pt;}
.y15_c01061{bottom:561.120000pt;}
.y63_c01061{bottom:561.279707pt;}
.y3b_c01061{bottom:561.279787pt;}
.y8b_c01061{bottom:561.597293pt;}
.y14_c01061{bottom:578.558547pt;}
.y62_c01061{bottom:578.558693pt;}
.y8a_c01061{bottom:578.878320pt;}
.y13_c01061{bottom:595.199360pt;}
.y61_c01061{bottom:595.199827pt;}
.y89_c01061{bottom:595.517920pt;}
.y12_c01061{bottom:612.478133pt;}
.y88_c01061{bottom:612.478307pt;}
.y60_c01061{bottom:612.479040pt;}
.y11_c01061{bottom:629.438533pt;}
.y87_c01061{bottom:629.438720pt;}
.y5f_c01061{bottom:629.438920pt;}
.y10_c01061{bottom:646.398920pt;}
.y86_c01061{bottom:646.719720pt;}
.yf_c01061{bottom:663.358933pt;}
.y85_c01061{bottom:668.479987pt;}
.y5e_c01061{bottom:680.318760pt;}
.y3a_c01061{bottom:680.635880pt;}
.y83_c01061{bottom:680.638893pt;}
.ye_c01061{bottom:680.639080pt;}
.y84_c01061{bottom:680.639573pt;}
.y39_c01061{bottom:697.596267pt;}
.y82_c01061{bottom:697.599280pt;}
.yd_c01061{bottom:697.599467pt;}
.y5d_c01061{bottom:697.600160pt;}
.y38_c01061{bottom:715.195840pt;}
.y81_c01061{bottom:715.198853pt;}
.yc_c01061{bottom:715.199040pt;}
.y5c_c01061{bottom:715.199707pt;}
.y5b_c01061{bottom:731.838947pt;}
.y37_c01061{bottom:732.156227pt;}
.y80_c01061{bottom:732.159240pt;}
.yb_c01061{bottom:732.159427pt;}
.y36_c01061{bottom:749.116640pt;}
.y5a_c01061{bottom:749.119547pt;}
.y7f_c01061{bottom:749.438013pt;}
.ya_c01061{bottom:749.438187pt;}
.y35_c01061{bottom:766.077027pt;}
.y7e_c01061{bottom:766.078840pt;}
.y9_c01061{bottom:766.079027pt;}
.y59_c01061{bottom:766.079613pt;}
.y58_c01061{bottom:783.358893pt;}
.y34_c01061{bottom:783.676600pt;}
.y7d_c01061{bottom:783.678387pt;}
.y8_c01061{bottom:783.678573pt;}
.y57_c01061{bottom:800.318853pt;}
.y33_c01061{bottom:800.636987pt;}
.y7c_c01061{bottom:800.638800pt;}
.y7_c01061{bottom:800.638973pt;}
.y56_c01061{bottom:817.278813pt;}
.y32_c01061{bottom:817.597387pt;}
.y7b_c01061{bottom:817.599187pt;}
.y6_c01061{bottom:817.599360pt;}
.y55_c01061{bottom:834.238773pt;}
.y31_c01061{bottom:834.557773pt;}
.y7a_c01061{bottom:834.559587pt;}
.y5_c01061{bottom:834.878133pt;}
.y54_c01061{bottom:851.519453pt;}
.y30_c01061{bottom:851.836547pt;}
.y79_c01061{bottom:851.838360pt;}
.y4_c01061{bottom:851.838547pt;}
.y53_c01061{bottom:868.797427pt;}
.y78_c01061{bottom:868.798747pt;}
.y2f_c01061{bottom:869.117573pt;}
.y3_c01061{bottom:869.119547pt;}
.y2_c01061{bottom:954.559573pt;}
.y1_c01061{bottom:1010.239747pt;}
.h1f_c01061{height:13.210937pt;}
.hc_c01061{height:18.078125pt;}
.h17_c01061{height:19.484375pt;}
.h20_c01061{height:20.164062pt;}
.hb_c01061{height:21.742187pt;}
.hd_c01061{height:26.354167pt;}
.he_c01061{height:27.546875pt;}
.h19_c01061{height:27.812500pt;}
.h22_c01061{height:32.679688pt;}
.h21_c01061{height:34.937500pt;}
.h1a_c01061{height:38.296875pt;}
.hf_c01061{height:40.328125pt;}
.h18_c01061{height:40.984375pt;}
.h10_c01061{height:41.023438pt;}
.h14_c01061{height:42.414062pt;}
.h8_c01061{height:42.825521pt;}
.h12_c01061{height:43.109375pt;}
.h1d_c01061{height:44.143229pt;}
.h13_c01061{height:44.500000pt;}
.h7_c01061{height:44.802083pt;}
.h9_c01061{height:45.460938pt;}
.h11_c01061{height:46.119792pt;}
.ha_c01061{height:47.437500pt;}
.h15_c01061{height:49.414063pt;}
.h5_c01061{height:50.757812pt;}
.h1c_c01061{height:51.390625pt;}
.h6_c01061{height:61.273438pt;}
.h1b_c01061{height:61.932292pt;}
.h3_c01061{height:70.921875pt;}
.h1_c01061{height:73.234375pt;}
.h4_c01061{height:74.578125pt;}
.h2_c01061{height:75.109375pt;}
.h16_c01061{height:90.390625pt;}
.h1e_c01061{height:107.078125pt;}
.h0_c01061{height:1122.666667pt;}
.w0_c01061{width:793.333333pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:121.599613pt;}
.x7_c01061{left:155.838933pt;}
.x8_c01061{left:185.279333pt;}
.x2_c01061{left:191.359867pt;}
.x3_c01061{left:213.758787pt;}
.x9_c01061{left:218.559067pt;}
.x4_c01061{left:232.639200pt;}
.xa_c01061{left:247.999507pt;}
.xb_c01061{left:276.479067pt;}
.xc_c01061{left:293.438920pt;}
.x5_c01061{left:421.759320pt;}
.xd_c01061{left:479.039573pt;}
.x10_c01061{left:485.119587pt;}
.xf_c01061{left:490.239173pt;}
.xe_c01061{left:502.398920pt;}
.x11_c01061{left:512.958907pt;}
.x18_c01061{left:520.319867pt;}
.x6_c01061{left:523.519040pt;}
.x13_c01061{left:547.839840pt;}
.x1a_c01061{left:553.599573pt;}
.x12_c01061{left:564.799840pt;}
.x14_c01061{left:566.078693pt;}
.x15_c01061{left:571.199707pt;}
.x19_c01061{left:572.159173pt;}
.x16_c01061{left:582.079067pt;}
.x17_c01061{left:588.799840pt;}
}





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

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_6cdf0a0b972acc731d99561a.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:1.432129;font-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_c01062{transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);}
.mb_c01062{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.m8_c01062{transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);}
.m4_c01062{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m1_c01062{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m7_c01062{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m6_c01062{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m2_c01062{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m3_c01062{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.mc_c01062{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m0_c01062{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m5_c01062{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m9_c01062{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls5_c01062{letter-spacing:-5.186700px;}
.ls8_c01062{letter-spacing:-4.771200px;}
.ls9_c01062{letter-spacing:-2.590800px;}
.ls3_c01062{letter-spacing:-1.729410px;}
.lsa_c01062{letter-spacing:-0.888743px;}
.ls2_c01062{letter-spacing:-0.867000px;}
.ls4_c01062{letter-spacing:-0.813638px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls6_c01062{letter-spacing:0.867000px;}
.ls0_c01062{letter-spacing:1.729410px;}
.lsb_c01062{letter-spacing:2.590800px;}
.ls7_c01062{letter-spacing:19.879800px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:0.000000px;}
._e_c01062{margin-left:-24.470007px;}
._f_c01062{margin-left:-20.960827px;}
._d_c01062{margin-left:-12.133401px;}
._10_c01062{margin-left:-8.268016px;}
._a_c01062{margin-left:-6.537889px;}
._1_c01062{margin-left:-4.355365px;}
._4_c01062{margin-left:-2.279337px;}
._9_c01062{margin-left:-1.239110px;}
._c_c01062{width:1.126841px;}
._2_c01062{width:2.361525px;}
._b_c01062{width:4.667926px;}
._0_c01062{width:25.000165px;}
._7_c01062{width:55.177159px;}
._5_c01062{width:56.507931px;}
._8_c01062{width:86.699931px;}
._3_c01062{width:652.871296px;}
._6_c01062{width:656.217380px;}
.fc0_c01062{color:transparent;}
.fs2_c01062{font-size:43.500000px;}
.fs1_c01062{font-size:45.750000px;}
.fs3_c01062{font-size:48.000000px;}
.fs4_c01062{font-size:48.750000px;}
.fs0_c01062{font-size:51.000000px;}
.fs6_c01062{font-size:53.250000px;}
.fs7_c01062{font-size:55.500000px;}
.fs5_c01062{font-size:56.250000px;}
.y0_c01062{bottom:0.000000px;}
.y4e_c01062{bottom:183.597630px;}
.y64_c01062{bottom:183.598395px;}
.y79_c01062{bottom:183.599160px;}
.y4d_c01062{bottom:203.038770px;}
.y63_c01062{bottom:203.039520px;}
.y78_c01062{bottom:203.040300px;}
.y4c_c01062{bottom:221.758320px;}
.y62_c01062{bottom:221.759085px;}
.y77_c01062{bottom:222.120765px;}
.y4b_c01062{bottom:241.199475px;}
.y61_c01062{bottom:241.200240px;}
.y76_c01062{bottom:241.559370px;}
.y4a_c01062{bottom:259.920390px;}
.y60_c01062{bottom:259.921140px;}
.y75_c01062{bottom:260.280285px;}
.y49_c01062{bottom:279.358995px;}
.y5f_c01062{bottom:279.359760px;}
.y74_c01062{bottom:279.718890px;}
.y48_c01062{bottom:298.797615px;}
.y5e_c01062{bottom:298.798365px;}
.y73_c01062{bottom:299.160045px;}
.y47_c01062{bottom:318.238770px;}
.y5d_c01062{bottom:318.239520px;}
.y72_c01062{bottom:318.598665px;}
.y46_c01062{bottom:336.959685px;}
.y5c_c01062{bottom:336.960435px;}
.y71_c01062{bottom:337.679100px;}
.y45_c01062{bottom:357.118725px;}
.y5b_c01062{bottom:357.119475px;}
.y70_c01062{bottom:357.478620px;}
.y44_c01062{bottom:375.838275px;}
.y5a_c01062{bottom:375.839040px;}
.y6f_c01062{bottom:376.199520px;}
.y43_c01062{bottom:394.559190px;}
.y59_c01062{bottom:394.559940px;}
.y6e_c01062{bottom:395.279985px;}
.y42_c01062{bottom:413.639655px;}
.y58_c01062{bottom:413.640405px;}
.y6d_c01062{bottom:414.000900px;}
.y41_c01062{bottom:433.080780px;}
.y57_c01062{bottom:433.081530px;}
.y6c_c01062{bottom:433.439505px;}
.y56_c01062{bottom:451.801095px;}
.y40_c01062{bottom:452.161245px;}
.y6b_c01062{bottom:452.519970px;}
.y3f_c01062{bottom:471.599850px;}
.y55_c01062{bottom:471.600615px;}
.y6a_c01062{bottom:472.319460px;}
.y3e_c01062{bottom:490.680285px;}
.y54_c01062{bottom:490.681050px;}
.y69_c01062{bottom:491.040390px;}
.y53_c01062{bottom:510.122205px;}
.y3d_c01062{bottom:510.479805px;}
.y68_c01062{bottom:510.838530px;}
.y3c_c01062{bottom:529.560240px;}
.y52_c01062{bottom:529.560810px;}
.y67_c01062{bottom:529.920135px;}
.y3b_c01062{bottom:549.001395px;}
.y51_c01062{bottom:549.360300px;}
.y66_c01062{bottom:549.718275px;}
.y4f_c01062{bottom:567.718230px;}
.y50_c01062{bottom:567.720150px;}
.y3a_c01062{bottom:567.720960px;}
.y65_c01062{bottom:568.439205px;}
.y2_c01062{bottom:605.879535px;}
.y23_c01062{bottom:721.076790px;}
.y17_c01062{bottom:721.078350px;}
.y39_c01062{bottom:721.441365px;}
.y22_c01062{bottom:740.517945px;}
.y16_c01062{bottom:740.519505px;}
.y38_c01062{bottom:740.879970px;}
.y21_c01062{bottom:759.598395px;}
.y15_c01062{bottom:759.599940px;}
.y37_c01062{bottom:759.959970px;}
.y14_c01062{bottom:778.680405px;}
.y20_c01062{bottom:779.037000px;}
.y36_c01062{bottom:779.400885px;}
.y1f_c01062{bottom:798.117465px;}
.y13_c01062{bottom:798.119025px;}
.y35_c01062{bottom:798.480840px;}
.y12_c01062{bottom:817.918515px;}
.y1e_c01062{bottom:818.279025px;}
.y34_c01062{bottom:818.640105px;}
.y1d_c01062{bottom:837.359460px;}
.y11_c01062{bottom:837.359670px;}
.y32_c01062{bottom:837.719880px;}
.y33_c01062{bottom:837.720150px;}
.y1c_c01062{bottom:856.439925px;}
.y10_c01062{bottom:856.798275px;}
.y31_c01062{bottom:857.161005px;}
.yf_c01062{bottom:875.878710px;}
.y1b_c01062{bottom:876.239415px;}
.y30_c01062{bottom:876.240870px;}
.ye_c01062{bottom:895.319865px;}
.y2f_c01062{bottom:895.680090px;}
.yd_c01062{bottom:914.400300px;}
.y2e_c01062{bottom:914.760135px;}
.yc_c01062{bottom:933.838920px;}
.y2d_c01062{bottom:934.200990px;}
.yb_c01062{bottom:952.919385px;}
.y2c_c01062{bottom:953.280855px;}
.ya_c01062{bottom:972.360510px;}
.y2b_c01062{bottom:972.720150px;}
.y9_c01062{bottom:991.080075px;}
.y1a_c01062{bottom:991.440975px;}
.y2a_c01062{bottom:991.800105px;}
.y8_c01062{bottom:1010.879580px;}
.y29_c01062{bottom:1011.240390px;}
.y7_c01062{bottom:1029.960015px;}
.y28_c01062{bottom:1030.320825px;}
.y6_c01062{bottom:1049.039985px;}
.y27_c01062{bottom:1049.400885px;}
.y5_c01062{bottom:1067.760675px;}
.y19_c01062{bottom:1068.118005px;}
.y26_c01062{bottom:1068.119940px;}
.y18_c01062{bottom:1087.559145px;}
.y4_c01062{bottom:1087.559160px;}
.y25_c01062{bottom:1087.560705px;}
.y3_c01062{bottom:1106.639610px;}
.y24_c01062{bottom:1107.000000px;}
.y1_c01062{bottom:1145.520720px;}
.h3_c01062{height:45.369141px;}
.h2_c01062{height:47.715820px;}
.h5_c01062{height:48.178711px;}
.h4_c01062{height:50.062500px;}
.h1_c01062{height:50.402344px;}
.h7_c01062{height:52.625977px;}
.h8_c01062{height:54.849609px;}
.h6_c01062{height:55.590820px;}
.h0_c01062{height:1263.000000px;}
.w0_c01062{width:892.500000px;}
.x0_c01062{left:0.000000px;}
.x2_c01062{left:136.438335px;}
.x1_c01062{left:143.999400px;}
.x4_c01062{left:247.678500px;}
.x3_c01062{left:248.758260px;}
.x6_c01062{left:280.078785px;}
.x5_c01062{left:281.160240px;}
.xf_c01062{left:332.638530px;}
.xd_c01062{left:547.199730px;}
.xa_c01062{left:553.318410px;}
.x7_c01062{left:567.000000px;}
.x8_c01062{left:578.878320px;}
.x9_c01062{left:611.278800px;}
.xb_c01062{left:650.519670px;}
.xe_c01062{left:663.838530px;}
.xc_c01062{left:669.599670px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls5_c01062{letter-spacing:-4.610400pt;}
.ls8_c01062{letter-spacing:-4.241067pt;}
.ls9_c01062{letter-spacing:-2.302933pt;}
.ls3_c01062{letter-spacing:-1.537253pt;}
.lsa_c01062{letter-spacing:-0.789993pt;}
.ls2_c01062{letter-spacing:-0.770667pt;}
.ls4_c01062{letter-spacing:-0.723233pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls6_c01062{letter-spacing:0.770667pt;}
.ls0_c01062{letter-spacing:1.537253pt;}
.lsb_c01062{letter-spacing:2.302933pt;}
.ls7_c01062{letter-spacing:17.670933pt;}
.ws0_c01062{word-spacing:0.000000pt;}
._e_c01062{margin-left:-21.751118pt;}
._f_c01062{margin-left:-18.631846pt;}
._d_c01062{margin-left:-10.785246pt;}
._10_c01062{margin-left:-7.349348pt;}
._a_c01062{margin-left:-5.811457pt;}
._1_c01062{margin-left:-3.871436pt;}
._4_c01062{margin-left:-2.026077pt;}
._9_c01062{margin-left:-1.101431pt;}
._c_c01062{width:1.001636pt;}
._2_c01062{width:2.099133pt;}
._b_c01062{width:4.149268pt;}
._0_c01062{width:22.222369pt;}
._7_c01062{width:49.046364pt;}
._5_c01062{width:50.229272pt;}
._8_c01062{width:77.066605pt;}
._3_c01062{width:580.330041pt;}
._6_c01062{width:583.304338pt;}
.fs2_c01062{font-size:38.666667pt;}
.fs1_c01062{font-size:40.666667pt;}
.fs3_c01062{font-size:42.666667pt;}
.fs4_c01062{font-size:43.333333pt;}
.fs0_c01062{font-size:45.333333pt;}
.fs6_c01062{font-size:47.333333pt;}
.fs7_c01062{font-size:49.333333pt;}
.fs5_c01062{font-size:50.000000pt;}
.y0_c01062{bottom:0.000000pt;}
.y4e_c01062{bottom:163.197893pt;}
.y64_c01062{bottom:163.198573pt;}
.y79_c01062{bottom:163.199253pt;}
.y4d_c01062{bottom:180.478907pt;}
.y63_c01062{bottom:180.479573pt;}
.y78_c01062{bottom:180.480267pt;}
.y4c_c01062{bottom:197.118507pt;}
.y62_c01062{bottom:197.119187pt;}
.y77_c01062{bottom:197.440680pt;}
.y4b_c01062{bottom:214.399533pt;}
.y61_c01062{bottom:214.400213pt;}
.y76_c01062{bottom:214.719440pt;}
.y4a_c01062{bottom:231.040347pt;}
.y60_c01062{bottom:231.041013pt;}
.y75_c01062{bottom:231.360253pt;}
.y49_c01062{bottom:248.319107pt;}
.y5f_c01062{bottom:248.319787pt;}
.y74_c01062{bottom:248.639013pt;}
.y48_c01062{bottom:265.597880pt;}
.y5e_c01062{bottom:265.598547pt;}
.y73_c01062{bottom:265.920040pt;}
.y47_c01062{bottom:282.878907pt;}
.y5d_c01062{bottom:282.879573pt;}
.y72_c01062{bottom:283.198813pt;}
.y46_c01062{bottom:299.519720pt;}
.y5c_c01062{bottom:299.520387pt;}
.y71_c01062{bottom:300.159200pt;}
.y45_c01062{bottom:317.438867pt;}
.y5b_c01062{bottom:317.439533pt;}
.y70_c01062{bottom:317.758773pt;}
.y44_c01062{bottom:334.078467pt;}
.y5a_c01062{bottom:334.079147pt;}
.y6f_c01062{bottom:334.399573pt;}
.y43_c01062{bottom:350.719280pt;}
.y59_c01062{bottom:350.719947pt;}
.y6e_c01062{bottom:351.359987pt;}
.y42_c01062{bottom:367.679693pt;}
.y58_c01062{bottom:367.680360pt;}
.y6d_c01062{bottom:368.000800pt;}
.y41_c01062{bottom:384.960693pt;}
.y57_c01062{bottom:384.961360pt;}
.y6c_c01062{bottom:385.279560pt;}
.y56_c01062{bottom:401.600973pt;}
.y40_c01062{bottom:401.921107pt;}
.y6b_c01062{bottom:402.239973pt;}
.y3f_c01062{bottom:419.199867pt;}
.y55_c01062{bottom:419.200547pt;}
.y6a_c01062{bottom:419.839520pt;}
.y3e_c01062{bottom:436.160253pt;}
.y54_c01062{bottom:436.160933pt;}
.y69_c01062{bottom:436.480347pt;}
.y53_c01062{bottom:453.441960pt;}
.y3d_c01062{bottom:453.759827pt;}
.y68_c01062{bottom:454.078693pt;}
.y3c_c01062{bottom:470.720213pt;}
.y52_c01062{bottom:470.720720pt;}
.y67_c01062{bottom:471.040120pt;}
.y3b_c01062{bottom:488.001240pt;}
.y51_c01062{bottom:488.320267pt;}
.y66_c01062{bottom:488.638467pt;}
.y4f_c01062{bottom:504.638427pt;}
.y50_c01062{bottom:504.640133pt;}
.y3a_c01062{bottom:504.640853pt;}
.y65_c01062{bottom:505.279293pt;}
.y2_c01062{bottom:538.559587pt;}
.y23_c01062{bottom:640.957147pt;}
.y17_c01062{bottom:640.958533pt;}
.y39_c01062{bottom:641.281213pt;}
.y22_c01062{bottom:658.238173pt;}
.y16_c01062{bottom:658.239560pt;}
.y38_c01062{bottom:658.559973pt;}
.y21_c01062{bottom:675.198573pt;}
.y15_c01062{bottom:675.199947pt;}
.y37_c01062{bottom:675.519973pt;}
.y14_c01062{bottom:692.160360pt;}
.y20_c01062{bottom:692.477333pt;}
.y36_c01062{bottom:692.800787pt;}
.y1f_c01062{bottom:709.437747pt;}
.y13_c01062{bottom:709.439133pt;}
.y35_c01062{bottom:709.760747pt;}
.y12_c01062{bottom:727.038680pt;}
.y1e_c01062{bottom:727.359133pt;}
.y34_c01062{bottom:727.680093pt;}
.y1d_c01062{bottom:744.319520pt;}
.y11_c01062{bottom:744.319707pt;}
.y32_c01062{bottom:744.639893pt;}
.y33_c01062{bottom:744.640133pt;}
.y1c_c01062{bottom:761.279933pt;}
.y10_c01062{bottom:761.598467pt;}
.y31_c01062{bottom:761.920893pt;}
.yf_c01062{bottom:778.558853pt;}
.y1b_c01062{bottom:778.879480pt;}
.y30_c01062{bottom:778.880773pt;}
.ye_c01062{bottom:795.839880pt;}
.y2f_c01062{bottom:796.160080pt;}
.yd_c01062{bottom:812.800267pt;}
.y2e_c01062{bottom:813.120120pt;}
.yc_c01062{bottom:830.079040pt;}
.y2d_c01062{bottom:830.400880pt;}
.yb_c01062{bottom:847.039453pt;}
.y2c_c01062{bottom:847.360760pt;}
.ya_c01062{bottom:864.320453pt;}
.y2b_c01062{bottom:864.640133pt;}
.y9_c01062{bottom:880.960067pt;}
.y1a_c01062{bottom:881.280867pt;}
.y2a_c01062{bottom:881.600093pt;}
.y8_c01062{bottom:898.559627pt;}
.y29_c01062{bottom:898.880347pt;}
.y7_c01062{bottom:915.520013pt;}
.y28_c01062{bottom:915.840733pt;}
.y6_c01062{bottom:932.479987pt;}
.y27_c01062{bottom:932.800787pt;}
.y5_c01062{bottom:949.120600pt;}
.y19_c01062{bottom:949.438227pt;}
.y26_c01062{bottom:949.439947pt;}
.y18_c01062{bottom:966.719240pt;}
.y4_c01062{bottom:966.719253pt;}
.y25_c01062{bottom:966.720627pt;}
.y3_c01062{bottom:983.679653pt;}
.y24_c01062{bottom:984.000000pt;}
.y1_c01062{bottom:1018.240640pt;}
.h3_c01062{height:40.328125pt;}
.h2_c01062{height:42.414062pt;}
.h5_c01062{height:42.825521pt;}
.h4_c01062{height:44.500000pt;}
.h1_c01062{height:44.802083pt;}
.h7_c01062{height:46.778646pt;}
.h8_c01062{height:48.755208pt;}
.h6_c01062{height:49.414063pt;}
.h0_c01062{height:1122.666667pt;}
.w0_c01062{width:793.333333pt;}
.x0_c01062{left:0.000000pt;}
.x2_c01062{left:121.278520pt;}
.x1_c01062{left:127.999467pt;}
.x4_c01062{left:220.158667pt;}
.x3_c01062{left:221.118453pt;}
.x6_c01062{left:248.958920pt;}
.x5_c01062{left:249.920213pt;}
.xf_c01062{left:295.678693pt;}
.xd_c01062{left:486.399760pt;}
.xa_c01062{left:491.838587pt;}
.x7_c01062{left:504.000000pt;}
.x8_c01062{left:514.558507pt;}
.x9_c01062{left:543.358933pt;}
.xb_c01062{left:578.239707pt;}
.xe_c01062{left:590.078693pt;}
.xc_c01062{left:595.199707pt;}
}





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

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_19e9ca6a0a7270bde5827eb2.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_9816aeef7248120567506155.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01063;src:url('chunks/assets/font_26d710cbe28621d33033f4cc.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01063;src:url('chunks/assets/font_5116a2dc91da242ab49725ba.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01063;src:url('chunks/assets/font_cf38ef2e4e72236a261052f6.woff2')format("woff");}.ff5_c01063{font-family:ff5_c01063;line-height:1.432129;font-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_c01063{transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);}
.m13_c01063{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m1b_c01063{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.m12_c01063{transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);}
.m1a_c01063{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m19_c01063{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m23_c01063{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m20_c01063{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m11_c01063{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m2_c01063{transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190141,0.000000,0.000000,0.250000,0,0);}
.mf_c01063{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m25_c01063{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m1e_c01063{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.me_c01063{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m9_c01063{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m10_c01063{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m8_c01063{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m7_c01063{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m3_c01063{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m17_c01063{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m0_c01063{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m1f_c01063{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m1c_c01063{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m18_c01063{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m1d_c01063{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m22_c01063{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_c01063{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1_c01063{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.ma_c01063{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.md_c01063{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m14_c01063{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m6_c01063{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m16_c01063{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.mb_c01063{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m24_c01063{transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309701,0.000000,0.000000,0.250000,0,0);}
.mc_c01063{transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313253,0.000000,0.000000,0.250000,0,0);}
.m4_c01063{transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);}
.m5_c01063{transform:matrix(0.769608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769608,0.000000,0.000000,0.250000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.ls10_c01063{letter-spacing:-22.252643px;}
.lse_c01063{letter-spacing:-6.915600px;}
.ls14_c01063{letter-spacing:-5.340975px;}
.lsd_c01063{letter-spacing:-5.186700px;}
.ls18_c01063{letter-spacing:-3.457290px;}
.lsb_c01063{letter-spacing:-3.239010px;}
.lsf_c01063{letter-spacing:-2.994225px;}
.ls1e_c01063{letter-spacing:-2.693153px;}
.ls5_c01063{letter-spacing:-2.590800px;}
.ls17_c01063{letter-spacing:-2.546550px;}
.ls1b_c01063{letter-spacing:-2.499525px;}
.ls9_c01063{letter-spacing:-1.796348px;}
.lsa_c01063{letter-spacing:-1.729410px;}
.ls1a_c01063{letter-spacing:-1.647300px;}
.ls13_c01063{letter-spacing:-1.578375px;}
.ls3_c01063{letter-spacing:-0.867000px;}
.ls7_c01063{letter-spacing:-0.756900px;}
.ls1d_c01063{letter-spacing:-0.608025px;}
.ls2_c01063{letter-spacing:0.000000px;}
.ls16_c01063{letter-spacing:0.864300px;}
.ls4_c01063{letter-spacing:0.867000px;}
.ls6_c01063{letter-spacing:0.873600px;}
.ls0_c01063{letter-spacing:1.729410px;}
.lsc_c01063{letter-spacing:1.964918px;}
.ls11_c01063{letter-spacing:2.866988px;}
.ls19_c01063{letter-spacing:4.060875px;}
.ls1_c01063{letter-spacing:14.693100px;}
.ls12_c01063{letter-spacing:18.150900px;}
.ls8_c01063{letter-spacing:22.426650px;}
.ls1c_c01063{letter-spacing:25.933500px;}
.ls15_c01063{letter-spacing:88.169310px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01063{word-spacing:0.000000px;}
._d_c01063{margin-left:-30.145944px;}
._6_c01063{margin-left:-26.264827px;}
._7_c01063{margin-left:-24.617475px;}
._c_c01063{margin-left:-8.915007px;}
._10_c01063{margin-left:-7.667141px;}
._9_c01063{margin-left:-6.528069px;}
._1_c01063{margin-left:-4.355227px;}
._8_c01063{margin-left:-2.702896px;}
._5_c01063{margin-left:-1.019931px;}
._a_c01063{width:1.157856px;}
._2_c01063{width:2.361456px;}
._b_c01063{width:5.016057px;}
._e_c01063{width:7.471794px;}
._11_c01063{width:14.730926px;}
._4_c01063{width:25.454152px;}
._0_c01063{width:26.663077px;}
._f_c01063{width:56.288925px;}
._3_c01063{width:652.866594px;}
.fc0_c01063{color:transparent;}
.fs4_c01063{font-size:38.250000px;}
.fse_c01063{font-size:42.750000px;}
.fs3_c01063{font-size:43.500000px;}
.fsb_c01063{font-size:44.250000px;}
.fsd_c01063{font-size:45.000000px;}
.fs5_c01063{font-size:45.750000px;}
.fs1_c01063{font-size:48.000000px;}
.fs9_c01063{font-size:48.750000px;}
.fsc_c01063{font-size:50.250000px;}
.fs0_c01063{font-size:51.000000px;}
.fsf_c01063{font-size:51.750000px;}
.fs10_c01063{font-size:52.500000px;}
.fs2_c01063{font-size:53.250000px;}
.fs6_c01063{font-size:54.750000px;}
.fsa_c01063{font-size:55.500000px;}
.fs8_c01063{font-size:62.250000px;}
.fs7_c01063{font-size:68.250000px;}
.y0_c01063{bottom:0.000000px;}
.y32_c01063{bottom:189.718500px;}
.y66_c01063{bottom:190.073715px;}
.y96_c01063{bottom:190.440315px;}
.y65_c01063{bottom:208.794645px;}
.y31_c01063{bottom:208.798965px;}
.y95_c01063{bottom:209.519685px;}
.y64_c01063{bottom:227.515545px;}
.y30_c01063{bottom:227.519880px;}
.y94_c01063{bottom:228.239250px;}
.y63_c01063{bottom:246.954165px;}
.y2f_c01063{bottom:246.958485px;}
.y92_c01063{bottom:248.038485px;}
.y93_c01063{bottom:248.039385px;}
.y62_c01063{bottom:266.034615px;}
.y2e_c01063{bottom:266.038950px;}
.y91_c01063{bottom:267.118950px;}
.y61_c01063{bottom:285.475755px;}
.y2d_c01063{bottom:285.480075px;}
.y90_c01063{bottom:286.199385px;}
.y2c_c01063{bottom:304.199640px;}
.y60_c01063{bottom:304.556220px;}
.y8f_c01063{bottom:304.920000px;}
.y5f_c01063{bottom:323.636655px;}
.y2b_c01063{bottom:323.640795px;}
.y8e_c01063{bottom:324.359250px;}
.y5e_c01063{bottom:342.717105px;}
.y2a_c01063{bottom:342.721230px;}
.y8d_c01063{bottom:349.200435px;}
.y5d_c01063{bottom:362.155725px;}
.y29_c01063{bottom:362.159850px;}
.y8c_c01063{bottom:362.880000px;}
.y28_c01063{bottom:381.235755px;}
.y5c_c01063{bottom:381.236160px;}
.y8b_c01063{bottom:381.959745px;}
.y27_c01063{bottom:400.316190px;}
.y5b_c01063{bottom:400.677315px;}
.y8a_c01063{bottom:401.400885px;}
.y26_c01063{bottom:419.037120px;}
.y5a_c01063{bottom:419.396880px;}
.y89_c01063{bottom:420.119985px;}
.y25_c01063{bottom:438.836610px;}
.y59_c01063{bottom:438.838005px;}
.y88_c01063{bottom:439.560750px;}
.y24_c01063{bottom:457.917075px;}
.y58_c01063{bottom:457.918470px;}
.y87_c01063{bottom:459.000000px;}
.y23_c01063{bottom:477.355680px;}
.y57_c01063{bottom:477.357075px;}
.y86_c01063{bottom:478.080000px;}
.y22_c01063{bottom:496.436115px;}
.y56_c01063{bottom:496.437510px;}
.y85_c01063{bottom:497.159820px;}
.y21_c01063{bottom:515.516580px;}
.y55_c01063{bottom:515.878665px;}
.y84_c01063{bottom:516.239130px;}
.y20_c01063{bottom:534.597015px;}
.y54_c01063{bottom:534.959100px;}
.y83_c01063{bottom:535.319595px;}
.y1f_c01063{bottom:554.038170px;}
.y53_c01063{bottom:554.397720px;}
.y82_c01063{bottom:554.760720px;}
.y1e_c01063{bottom:573.118605px;}
.y52_c01063{bottom:573.478185px;}
.y81_c01063{bottom:574.199850px;}
.y1d_c01063{bottom:592.557225px;}
.y51_c01063{bottom:592.558620px;}
.y80_c01063{bottom:593.279850px;}
.y1c_c01063{bottom:611.278155px;}
.y50_c01063{bottom:611.639070px;}
.y7f_c01063{bottom:612.358770px;}
.y1b_c01063{bottom:630.716760px;}
.y4f_c01063{bottom:630.719520px;}
.y7e_c01063{bottom:631.439235px;}
.y1a_c01063{bottom:649.797210px;}
.y4d_c01063{bottom:650.157630px;}
.y4e_c01063{bottom:650.160420px;}
.y7d_c01063{bottom:650.519670px;}
.y4c_c01063{bottom:669.238080px;}
.y19_c01063{bottom:669.238365px;}
.y7c_c01063{bottom:669.960570px;}
.y18_c01063{bottom:687.957915px;}
.y4b_c01063{bottom:688.318515px;}
.y7b_c01063{bottom:689.040645px;}
.y4a_c01063{bottom:707.757135px;}
.y17_c01063{bottom:707.757405px;}
.y7a_c01063{bottom:708.479250px;}
.y49_c01063{bottom:726.837600px;}
.y16_c01063{bottom:726.837870px;}
.y79_c01063{bottom:727.559685px;}
.y15_c01063{bottom:745.918305px;}
.y48_c01063{bottom:746.278725px;}
.y77_c01063{bottom:746.638455px;}
.y78_c01063{bottom:746.639700px;}
.y47_c01063{bottom:764.998290px;}
.y14_c01063{bottom:764.998770px;}
.y76_c01063{bottom:765.718920px;}
.y46_c01063{bottom:784.078740px;}
.y13_c01063{bottom:784.079205px;}
.y75_c01063{bottom:784.439820px;}
.y12_c01063{bottom:802.800135px;}
.y45_c01063{bottom:803.159175px;}
.y74_c01063{bottom:803.878440px;}
.y11_c01063{bottom:822.599625px;}
.y44_c01063{bottom:822.600330px;}
.y73_c01063{bottom:822.958905px;}
.y10_c01063{bottom:841.680090px;}
.y43_c01063{bottom:841.680765px;}
.y72_c01063{bottom:842.039340px;}
.yf_c01063{bottom:861.118695px;}
.y42_c01063{bottom:861.119385px;}
.y71_c01063{bottom:861.480285px;}
.ye_c01063{bottom:880.199130px;}
.y41_c01063{bottom:880.199940px;}
.y70_c01063{bottom:880.560240px;}
.yd_c01063{bottom:899.998650px;}
.y40_c01063{bottom:899.999430px;}
.y6f_c01063{bottom:900.360255px;}
.yc_c01063{bottom:919.079085px;}
.y3f_c01063{bottom:919.079880px;}
.y6e_c01063{bottom:919.440315px;}
.yb_c01063{bottom:938.520240px;}
.y3e_c01063{bottom:938.879385px;}
.y6d_c01063{bottom:939.240420px;}
.y3d_c01063{bottom:957.239415px;}
.ya_c01063{bottom:957.239805px;}
.y6c_c01063{bottom:957.600615px;}
.y3c_c01063{bottom:976.319865px;}
.y9_c01063{bottom:976.320240px;}
.y6b_c01063{bottom:977.039220px;}
.y3b_c01063{bottom:995.401470px;}
.y8_c01063{bottom:995.401860px;}
.y6a_c01063{bottom:995.760135px;}
.y3a_c01063{bottom:1014.840090px;}
.y7_c01063{bottom:1014.840480px;}
.y6_c01063{bottom:1033.561380px;}
.y39_c01063{bottom:1033.919955px;}
.y38_c01063{bottom:1033.920645px;}
.y5_c01063{bottom:1053.000000px;}
.y37_c01063{bottom:1053.359250px;}
.y4_c01063{bottom:1072.440855px;}
.y36_c01063{bottom:1072.800105px;}
.y69_c01063{bottom:1076.400885px;}
.y35_c01063{bottom:1079.279850px;}
.y34_c01063{bottom:1091.519730px;}
.y3_c01063{bottom:1091.520630px;}
.y68_c01063{bottom:1091.874945px;}
.y33_c01063{bottom:1110.958350px;}
.y67_c01063{bottom:1111.313550px;}
.y2_c01063{bottom:1111.318770px;}
.y1_c01063{bottom:1149.480840px;}
.h6_c01063{height:39.893555px;}
.h7_c01063{height:42.990234px;}
.h12_c01063{height:44.586914px;}
.h5_c01063{height:45.369141px;}
.h8_c01063{height:46.107422px;}
.hf_c01063{height:46.151367px;}
.h11_c01063{height:46.933594px;}
.h2_c01063{height:47.437500px;}
.hd_c01063{height:47.715820px;}
.h14_c01063{height:48.178711px;}
.h4_c01063{height:48.375000px;}
.hc_c01063{height:49.130859px;}
.h10_c01063{height:49.661133px;}
.h16_c01063{height:50.062500px;}
.h1_c01063{height:50.402344px;}
.h17_c01063{height:50.642578px;}
.h13_c01063{height:51.143555px;}
.h15_c01063{height:51.884766px;}
.h3_c01063{height:52.625977px;}
.h9_c01063{height:54.108398px;}
.he_c01063{height:54.849609px;}
.hb_c01063{height:64.924805px;}
.ha_c01063{height:67.450195px;}
.h0_c01063{height:1263.000000px;}
.w0_c01063{width:892.500000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:145.078815px;}
.x3_c01063{left:248.399025px;}
.x2_c01063{left:249.480315px;}
.x4_c01063{left:256.318800px;}
.xa_c01063{left:280.797825px;}
.x5_c01063{left:281.877360px;}
.xb_c01063{left:288.719100px;}
.x6_c01063{left:314.639700px;}
.xc_c01063{left:346.679100px;}
.x8_c01063{left:354.958350px;}
.x7_c01063{left:365.759100px;}
.xd_c01063{left:372.599700px;}
.x9_c01063{left:398.518665px;}
.x1a_c01063{left:536.040600px;}
.xf_c01063{left:541.794825px;}
.x15_c01063{left:548.638140px;}
.xe_c01063{left:554.754480px;}
.x22_c01063{left:555.838665px;}
.x1e_c01063{left:564.119385px;}
.x16_c01063{left:567.359250px;}
.x13_c01063{left:568.438620px;}
.x14_c01063{left:580.318770px;}
.x19_c01063{left:612.719100px;}
.x1b_c01063{left:619.559685px;}
.x17_c01063{left:625.319235px;}
.x10_c01063{left:632.878320px;}
.x18_c01063{left:638.998950px;}
.x20_c01063{left:646.198785px;}
.x1f_c01063{left:652.319235px;}
.x21_c01063{left:665.998950px;}
.x11_c01063{left:671.758530px;}
.x1c_c01063{left:685.078770px;}
.x12_c01063{left:690.838530px;}
.x1d_c01063{left:704.878920px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls10_c01063{letter-spacing:-19.780127pt;}
.lse_c01063{letter-spacing:-6.147200pt;}
.ls14_c01063{letter-spacing:-4.747533pt;}
.lsd_c01063{letter-spacing:-4.610400pt;}
.ls18_c01063{letter-spacing:-3.073147pt;}
.lsb_c01063{letter-spacing:-2.879120pt;}
.lsf_c01063{letter-spacing:-2.661533pt;}
.ls1e_c01063{letter-spacing:-2.393913pt;}
.ls5_c01063{letter-spacing:-2.302933pt;}
.ls17_c01063{letter-spacing:-2.263600pt;}
.ls1b_c01063{letter-spacing:-2.221800pt;}
.ls9_c01063{letter-spacing:-1.596753pt;}
.lsa_c01063{letter-spacing:-1.537253pt;}
.ls1a_c01063{letter-spacing:-1.464267pt;}
.ls13_c01063{letter-spacing:-1.403000pt;}
.ls3_c01063{letter-spacing:-0.770667pt;}
.ls7_c01063{letter-spacing:-0.672800pt;}
.ls1d_c01063{letter-spacing:-0.540467pt;}
.ls2_c01063{letter-spacing:0.000000pt;}
.ls16_c01063{letter-spacing:0.768267pt;}
.ls4_c01063{letter-spacing:0.770667pt;}
.ls6_c01063{letter-spacing:0.776533pt;}
.ls0_c01063{letter-spacing:1.537253pt;}
.lsc_c01063{letter-spacing:1.746593pt;}
.ls11_c01063{letter-spacing:2.548433pt;}
.ls19_c01063{letter-spacing:3.609667pt;}
.ls1_c01063{letter-spacing:13.060533pt;}
.ls12_c01063{letter-spacing:16.134133pt;}
.ls8_c01063{letter-spacing:19.934800pt;}
.ls1c_c01063{letter-spacing:23.052000pt;}
.ls15_c01063{letter-spacing:78.372720pt;}
.ws0_c01063{word-spacing:0.000000pt;}
._d_c01063{margin-left:-26.796395pt;}
._6_c01063{margin-left:-23.346513pt;}
._7_c01063{margin-left:-21.882200pt;}
._c_c01063{margin-left:-7.924451pt;}
._10_c01063{margin-left:-6.815237pt;}
._9_c01063{margin-left:-5.802728pt;}
._1_c01063{margin-left:-3.871313pt;}
._8_c01063{margin-left:-2.402574pt;}
._5_c01063{margin-left:-0.906605pt;}
._a_c01063{width:1.029205pt;}
._2_c01063{width:2.099072pt;}
._b_c01063{width:4.458718pt;}
._e_c01063{width:6.641595pt;}
._11_c01063{width:13.094157pt;}
._4_c01063{width:22.625913pt;}
._0_c01063{width:23.700513pt;}
._f_c01063{width:50.034600pt;}
._3_c01063{width:580.325861pt;}
.fs4_c01063{font-size:34.000000pt;}
.fse_c01063{font-size:38.000000pt;}
.fs3_c01063{font-size:38.666667pt;}
.fsb_c01063{font-size:39.333333pt;}
.fsd_c01063{font-size:40.000000pt;}
.fs5_c01063{font-size:40.666667pt;}
.fs1_c01063{font-size:42.666667pt;}
.fs9_c01063{font-size:43.333333pt;}
.fsc_c01063{font-size:44.666667pt;}
.fs0_c01063{font-size:45.333333pt;}
.fsf_c01063{font-size:46.000000pt;}
.fs10_c01063{font-size:46.666667pt;}
.fs2_c01063{font-size:47.333333pt;}
.fs6_c01063{font-size:48.666667pt;}
.fsa_c01063{font-size:49.333333pt;}
.fs8_c01063{font-size:55.333333pt;}
.fs7_c01063{font-size:60.666667pt;}
.y0_c01063{bottom:0.000000pt;}
.y32_c01063{bottom:168.638667pt;}
.y66_c01063{bottom:168.954413pt;}
.y96_c01063{bottom:169.280280pt;}
.y65_c01063{bottom:185.595240pt;}
.y31_c01063{bottom:185.599080pt;}
.y95_c01063{bottom:186.239720pt;}
.y64_c01063{bottom:202.236040pt;}
.y30_c01063{bottom:202.239893pt;}
.y94_c01063{bottom:202.879333pt;}
.y63_c01063{bottom:219.514813pt;}
.y2f_c01063{bottom:219.518653pt;}
.y92_c01063{bottom:220.478653pt;}
.y93_c01063{bottom:220.479453pt;}
.y62_c01063{bottom:236.475213pt;}
.y2e_c01063{bottom:236.479067pt;}
.y91_c01063{bottom:237.439067pt;}
.y61_c01063{bottom:253.756227pt;}
.y2d_c01063{bottom:253.760067pt;}
.y90_c01063{bottom:254.399453pt;}
.y2c_c01063{bottom:270.399680pt;}
.y60_c01063{bottom:270.716640pt;}
.y8f_c01063{bottom:271.040000pt;}
.y5f_c01063{bottom:287.677027pt;}
.y2b_c01063{bottom:287.680707pt;}
.y8e_c01063{bottom:288.319333pt;}
.y5e_c01063{bottom:304.637427pt;}
.y2a_c01063{bottom:304.641093pt;}
.y8d_c01063{bottom:310.400387pt;}
.y5d_c01063{bottom:321.916200pt;}
.y29_c01063{bottom:321.919867pt;}
.y8c_c01063{bottom:322.560000pt;}
.y28_c01063{bottom:338.876227pt;}
.y5c_c01063{bottom:338.876587pt;}
.y8b_c01063{bottom:339.519773pt;}
.y27_c01063{bottom:355.836613pt;}
.y5b_c01063{bottom:356.157613pt;}
.y8a_c01063{bottom:356.800787pt;}
.y26_c01063{bottom:372.477440pt;}
.y5a_c01063{bottom:372.797227pt;}
.y89_c01063{bottom:373.439987pt;}
.y25_c01063{bottom:390.076987pt;}
.y59_c01063{bottom:390.078227pt;}
.y88_c01063{bottom:390.720667pt;}
.y24_c01063{bottom:407.037400pt;}
.y58_c01063{bottom:407.038640pt;}
.y87_c01063{bottom:408.000000pt;}
.y23_c01063{bottom:424.316160pt;}
.y57_c01063{bottom:424.317400pt;}
.y86_c01063{bottom:424.960000pt;}
.y22_c01063{bottom:441.276547pt;}
.y56_c01063{bottom:441.277787pt;}
.y85_c01063{bottom:441.919840pt;}
.y21_c01063{bottom:458.236960pt;}
.y55_c01063{bottom:458.558813pt;}
.y84_c01063{bottom:458.879227pt;}
.y20_c01063{bottom:475.197347pt;}
.y54_c01063{bottom:475.519200pt;}
.y83_c01063{bottom:475.839640pt;}
.y1f_c01063{bottom:492.478373pt;}
.y53_c01063{bottom:492.797973pt;}
.y82_c01063{bottom:493.120640pt;}
.y1e_c01063{bottom:509.438760pt;}
.y52_c01063{bottom:509.758387pt;}
.y81_c01063{bottom:510.399867pt;}
.y1d_c01063{bottom:526.717533pt;}
.y51_c01063{bottom:526.718773pt;}
.y80_c01063{bottom:527.359867pt;}
.y1c_c01063{bottom:543.358360pt;}
.y50_c01063{bottom:543.679173pt;}
.y7f_c01063{bottom:544.318907pt;}
.y1b_c01063{bottom:560.637120pt;}
.y4f_c01063{bottom:560.639573pt;}
.y7e_c01063{bottom:561.279320pt;}
.y1a_c01063{bottom:577.597520pt;}
.y4d_c01063{bottom:577.917893pt;}
.y4e_c01063{bottom:577.920373pt;}
.y7d_c01063{bottom:578.239707pt;}
.y4c_c01063{bottom:594.878293pt;}
.y19_c01063{bottom:594.878547pt;}
.y7c_c01063{bottom:595.520507pt;}
.y18_c01063{bottom:611.518147pt;}
.y4b_c01063{bottom:611.838680pt;}
.y7b_c01063{bottom:612.480573pt;}
.y4a_c01063{bottom:629.117453pt;}
.y17_c01063{bottom:629.117693pt;}
.y7a_c01063{bottom:629.759333pt;}
.y49_c01063{bottom:646.077867pt;}
.y16_c01063{bottom:646.078107pt;}
.y79_c01063{bottom:646.719720pt;}
.y15_c01063{bottom:663.038493pt;}
.y48_c01063{bottom:663.358867pt;}
.y77_c01063{bottom:663.678627pt;}
.y78_c01063{bottom:663.679733pt;}
.y47_c01063{bottom:679.998480pt;}
.y14_c01063{bottom:679.998907pt;}
.y76_c01063{bottom:680.639040pt;}
.y46_c01063{bottom:696.958880pt;}
.y13_c01063{bottom:696.959293pt;}
.y75_c01063{bottom:697.279840pt;}
.y12_c01063{bottom:713.600120pt;}
.y45_c01063{bottom:713.919267pt;}
.y74_c01063{bottom:714.558613pt;}
.y11_c01063{bottom:731.199667pt;}
.y44_c01063{bottom:731.200293pt;}
.y73_c01063{bottom:731.519027pt;}
.y10_c01063{bottom:748.160080pt;}
.y43_c01063{bottom:748.160680pt;}
.y72_c01063{bottom:748.479413pt;}
.yf_c01063{bottom:765.438840pt;}
.y42_c01063{bottom:765.439453pt;}
.y71_c01063{bottom:765.760253pt;}
.ye_c01063{bottom:782.399227pt;}
.y41_c01063{bottom:782.399947pt;}
.y70_c01063{bottom:782.720213pt;}
.yd_c01063{bottom:799.998800pt;}
.y40_c01063{bottom:799.999493pt;}
.y6f_c01063{bottom:800.320227pt;}
.yc_c01063{bottom:816.959187pt;}
.y3f_c01063{bottom:816.959893pt;}
.y6e_c01063{bottom:817.280280pt;}
.yb_c01063{bottom:834.240213pt;}
.y3e_c01063{bottom:834.559453pt;}
.y6d_c01063{bottom:834.880373pt;}
.y3d_c01063{bottom:850.879480pt;}
.ya_c01063{bottom:850.879827pt;}
.y6c_c01063{bottom:851.200547pt;}
.y3c_c01063{bottom:867.839880pt;}
.y9_c01063{bottom:867.840213pt;}
.y6b_c01063{bottom:868.479307pt;}
.y3b_c01063{bottom:884.801307pt;}
.y8_c01063{bottom:884.801653pt;}
.y6a_c01063{bottom:885.120120pt;}
.y3a_c01063{bottom:902.080080pt;}
.y7_c01063{bottom:902.080427pt;}
.y6_c01063{bottom:918.721227pt;}
.y39_c01063{bottom:919.039960pt;}
.y38_c01063{bottom:919.040573pt;}
.y5_c01063{bottom:936.000000pt;}
.y37_c01063{bottom:936.319333pt;}
.y4_c01063{bottom:953.280760pt;}
.y36_c01063{bottom:953.600093pt;}
.y69_c01063{bottom:956.800787pt;}
.y35_c01063{bottom:959.359867pt;}
.y34_c01063{bottom:970.239760pt;}
.y3_c01063{bottom:970.240560pt;}
.y68_c01063{bottom:970.555507pt;}
.y33_c01063{bottom:987.518533pt;}
.y67_c01063{bottom:987.834267pt;}
.y2_c01063{bottom:987.838907pt;}
.y1_c01063{bottom:1021.760747pt;}
.h6_c01063{height:35.460938pt;}
.h7_c01063{height:38.213542pt;}
.h12_c01063{height:39.632812pt;}
.h5_c01063{height:40.328125pt;}
.h8_c01063{height:40.984375pt;}
.hf_c01063{height:41.023438pt;}
.h11_c01063{height:41.718750pt;}
.h2_c01063{height:42.166667pt;}
.hd_c01063{height:42.414062pt;}
.h14_c01063{height:42.825521pt;}
.h4_c01063{height:43.000000pt;}
.hc_c01063{height:43.671875pt;}
.h10_c01063{height:44.143229pt;}
.h16_c01063{height:44.500000pt;}
.h1_c01063{height:44.802083pt;}
.h17_c01063{height:45.015625pt;}
.h13_c01063{height:45.460938pt;}
.h15_c01063{height:46.119792pt;}
.h3_c01063{height:46.778646pt;}
.h9_c01063{height:48.096354pt;}
.he_c01063{height:48.755208pt;}
.hb_c01063{height:57.710938pt;}
.ha_c01063{height:59.955729pt;}
.h0_c01063{height:1122.666667pt;}
.w0_c01063{width:793.333333pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:128.958947pt;}
.x3_c01063{left:220.799133pt;}
.x2_c01063{left:221.760280pt;}
.x4_c01063{left:227.838933pt;}
.xa_c01063{left:249.598067pt;}
.x5_c01063{left:250.557653pt;}
.xb_c01063{left:256.639200pt;}
.x6_c01063{left:279.679733pt;}
.xc_c01063{left:308.159200pt;}
.x8_c01063{left:315.518533pt;}
.x7_c01063{left:325.119200pt;}
.xd_c01063{left:331.199733pt;}
.x9_c01063{left:354.238813pt;}
.x1a_c01063{left:476.480533pt;}
.xf_c01063{left:481.595400pt;}
.x15_c01063{left:487.678347pt;}
.xe_c01063{left:493.115093pt;}
.x22_c01063{left:494.078813pt;}
.x1e_c01063{left:501.439453pt;}
.x16_c01063{left:504.319333pt;}
.x13_c01063{left:505.278773pt;}
.x14_c01063{left:515.838907pt;}
.x19_c01063{left:544.639200pt;}
.x1b_c01063{left:550.719720pt;}
.x17_c01063{left:555.839320pt;}
.x10_c01063{left:562.558507pt;}
.x18_c01063{left:567.999067pt;}
.x20_c01063{left:574.398920pt;}
.x1f_c01063{left:579.839320pt;}
.x21_c01063{left:591.999067pt;}
.x11_c01063{left:597.118693pt;}
.x1c_c01063{left:608.958907pt;}
.x12_c01063{left:614.078693pt;}
.x1d_c01063{left:626.559040pt;}
}





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

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_ddaedfef5b77b6df3a82afe6.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_4e2832dac502e9bc3c45e851.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01064;src:url('chunks/assets/font_0d4032b44890b96f9eeb8a07.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01064;src:url('chunks/assets/font_130ae5afa170bcff3639c671.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01064;src:url('chunks/assets/font_ffa3dfd5c722ae204e22073d.woff2')format("woff");}.ff5_c01064{font-family:ff5_c01064;line-height:1.432129;font-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_c01064{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m3_c01064{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m1_c01064{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m8_c01064{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m9_c01064{transform:matrix(0.199153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199153,0.000000,0.000000,0.250000,0,0);}
.m4_c01064{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.mc_c01064{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m14_c01064{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.mf_c01064{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m12_c01064{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.md_c01064{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.me_c01064{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m1a_c01064{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.mb_c01064{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m15_c01064{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m17_c01064{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m0_c01064{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m19_c01064{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m11_c01064{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m13_c01064{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m5_c01064{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m16_c01064{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m10_c01064{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m1b_c01064{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m6_c01064{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m2_c01064{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m18_c01064{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.ma_c01064{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls11_c01064{letter-spacing:-10.285920px;}
.ls10_c01064{letter-spacing:-4.994850px;}
.ls19_c01064{letter-spacing:-4.008300px;}
.ls8_c01064{letter-spacing:-3.960600px;}
.ls17_c01064{letter-spacing:-3.427200px;}
.lsf_c01064{letter-spacing:-2.737500px;}
.ls14_c01064{letter-spacing:-2.590800px;}
.ls12_c01064{letter-spacing:-1.805708px;}
.ls16_c01064{letter-spacing:-1.734600px;}
.ls5_c01064{letter-spacing:-1.729410px;}
.lsc_c01064{letter-spacing:-0.922500px;}
.lse_c01064{letter-spacing:-0.888743px;}
.ls3_c01064{letter-spacing:-0.867000px;}
.ls13_c01064{letter-spacing:-0.848700px;}
.ls7_c01064{letter-spacing:-0.838673px;}
.ls2_c01064{letter-spacing:0.000000px;}
.lsb_c01064{letter-spacing:0.655200px;}
.ls0_c01064{letter-spacing:0.867000px;}
.ls6_c01064{letter-spacing:0.928200px;}
.lsa_c01064{letter-spacing:0.942525px;}
.ls1_c01064{letter-spacing:1.729410px;}
.lsd_c01064{letter-spacing:1.792650px;}
.ls15_c01064{letter-spacing:1.964918px;}
.ls9_c01064{letter-spacing:2.032875px;}
.ls18_c01064{letter-spacing:28.875000px;}
.ls4_c01064{letter-spacing:69.576150px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:0.000000px;}
._f_c01064{margin-left:-9.230965px;}
._a_c01064{margin-left:-7.370961px;}
._c_c01064{margin-left:-5.814000px;}
._1_c01064{margin-left:-4.344993px;}
._e_c01064{margin-left:-3.311845px;}
._d_c01064{margin-left:-2.192965px;}
._11_c01064{margin-left:-1.004337px;}
._12_c01064{width:1.265042px;}
._10_c01064{width:2.361456px;}
._4_c01064{width:3.758302px;}
._b_c01064{width:5.015919px;}
._14_c01064{width:6.019893px;}
._13_c01064{width:7.683453px;}
._3_c01064{width:20.252186px;}
._5_c01064{width:21.261986px;}
._7_c01064{width:22.924206px;}
._9_c01064{width:24.587117px;}
._6_c01064{width:25.596986px;}
._8_c01064{width:27.259206px;}
._0_c01064{width:28.304965px;}
._2_c01064{width:653.570532px;}
.fc0_c01064{color:transparent;}
.fs2_c01064{font-size:42.000000px;}
.fsd_c01064{font-size:43.500000px;}
.fs6_c01064{font-size:44.250000px;}
.fs3_c01064{font-size:45.750000px;}
.fsf_c01064{font-size:46.500000px;}
.fs5_c01064{font-size:48.000000px;}
.fs4_c01064{font-size:48.750000px;}
.fs1_c01064{font-size:50.250000px;}
.fs0_c01064{font-size:51.000000px;}
.fsc_c01064{font-size:51.750000px;}
.fse_c01064{font-size:52.500000px;}
.fs8_c01064{font-size:53.250000px;}
.fsb_c01064{font-size:54.750000px;}
.fsa_c01064{font-size:55.500000px;}
.fs9_c01064{font-size:56.250000px;}
.fs7_c01064{font-size:68.250000px;}
.y0_c01064{bottom:0.000000px;}
.y38_c01064{bottom:186.478095px;}
.y6a_c01064{bottom:186.478665px;}
.y69_c01064{bottom:186.478965px;}
.y9c_c01064{bottom:186.838920px;}
.y37_c01064{bottom:205.559715px;}
.y68_c01064{bottom:205.560555px;}
.y9b_c01064{bottom:205.919385px;}
.y36_c01064{bottom:224.640150px;}
.y67_c01064{bottom:224.641020px;}
.y9a_c01064{bottom:224.999820px;}
.y34_c01064{bottom:244.437990px;}
.y35_c01064{bottom:244.438635px;}
.y66_c01064{bottom:244.439160px;}
.y99_c01064{bottom:244.799325px;}
.y65_c01064{bottom:263.160075px;}
.y33_c01064{bottom:263.338665px;}
.y98_c01064{bottom:263.879775px;}
.y32_c01064{bottom:282.959580px;}
.y97_c01064{bottom:283.679280px;}
.y64_c01064{bottom:301.680495px;}
.y31_c01064{bottom:302.040030px;}
.y96_c01064{bottom:302.759715px;}
.y30_c01064{bottom:321.478635px;}
.y95_c01064{bottom:322.198335px;}
.y2f_c01064{bottom:340.378950px;}
.y63_c01064{bottom:340.560285px;}
.y94_c01064{bottom:341.278800px;}
.y2e_c01064{bottom:359.819850px;}
.y62_c01064{bottom:359.999385px;}
.y93_c01064{bottom:360.719925px;}
.y2d_c01064{bottom:378.720135px;}
.y61_c01064{bottom:379.079250px;}
.y92_c01064{bottom:379.800390px;}
.y2b_c01064{bottom:397.618515px;}
.y2c_c01064{bottom:397.618785px;}
.y60_c01064{bottom:397.800150px;}
.y91_c01064{bottom:398.521290px;}
.y5f_c01064{bottom:416.879970px;}
.y2a_c01064{bottom:417.059670px;}
.y90_c01064{bottom:417.959910px;}
.y29_c01064{bottom:436.498290px;}
.y5e_c01064{bottom:436.679700px;}
.y8f_c01064{bottom:437.040360px;}
.y28_c01064{bottom:455.578725px;}
.y5d_c01064{bottom:455.760150px;}
.y8e_c01064{bottom:456.478980px;}
.y27_c01064{bottom:474.840105px;}
.y5c_c01064{bottom:475.198770px;}
.y8d_c01064{bottom:475.920120px;}
.y5b_c01064{bottom:493.919685px;}
.y26_c01064{bottom:493.920540px;}
.y8c_c01064{bottom:494.641050px;}
.y25_c01064{bottom:513.538920px;}
.y5a_c01064{bottom:513.719190px;}
.y8b_c01064{bottom:514.439190px;}
.y23_c01064{bottom:532.618155px;}
.y24_c01064{bottom:532.618785px;}
.y59_c01064{bottom:532.799625px;}
.y8a_c01064{bottom:533.520795px;}
.y22_c01064{bottom:552.059280px;}
.y58_c01064{bottom:552.238245px;}
.y89_c01064{bottom:552.959400px;}
.y57_c01064{bottom:570.598275px;}
.y21_c01064{bottom:570.599070px;}
.y88_c01064{bottom:571.680330px;}
.y1f_c01064{bottom:590.218785px;}
.y20_c01064{bottom:590.219520px;}
.y56_c01064{bottom:590.397795px;}
.y87_c01064{bottom:591.118950px;}
.y1e_c01064{bottom:609.299235px;}
.y55_c01064{bottom:609.478230px;}
.y86_c01064{bottom:610.199385px;}
.y1d_c01064{bottom:628.558095px;}
.y54_c01064{bottom:628.919385px;}
.y84_c01064{bottom:629.278815px;}
.y85_c01064{bottom:629.279250px;}
.y1c_c01064{bottom:647.638530px;}
.y53_c01064{bottom:647.999820px;}
.y83_c01064{bottom:648.359250px;}
.y52_c01064{bottom:666.359850px;}
.y1b_c01064{bottom:666.539220px;}
.y81_c01064{bottom:667.435095px;}
.y82_c01064{bottom:667.439250px;}
.y1a_c01064{bottom:685.260135px;}
.y51_c01064{bottom:685.440315px;}
.y80_c01064{bottom:686.155995px;}
.y18_c01064{bottom:704.697765px;}
.y19_c01064{bottom:704.699385px;}
.y50_c01064{bottom:704.878920px;}
.y7f_c01064{bottom:705.594615px;}
.y17_c01064{bottom:723.957960px;}
.y4f_c01064{bottom:723.958380px;}
.y7e_c01064{bottom:724.675065px;}
.y16_c01064{bottom:743.399115px;}
.y4e_c01064{bottom:743.399820px;}
.y7d_c01064{bottom:744.116205px;}
.y15_c01064{bottom:762.118680px;}
.y4d_c01064{bottom:762.120210px;}
.y7c_c01064{bottom:762.835755px;}
.y14_c01064{bottom:781.918170px;}
.y4c_c01064{bottom:781.919730px;}
.y7b_c01064{bottom:782.635275px;}
.y13_c01064{bottom:800.639100px;}
.y4b_c01064{bottom:800.640630px;}
.y7a_c01064{bottom:801.356190px;}
.y4a_c01064{bottom:820.440150px;}
.y12_c01064{bottom:820.618350px;}
.y79_c01064{bottom:821.155695px;}
.y11_c01064{bottom:839.698815px;}
.y49_c01064{bottom:839.878755px;}
.y78_c01064{bottom:840.236130px;}
.y48_c01064{bottom:858.599670px;}
.y10_c01064{bottom:858.957660px;}
.y77_c01064{bottom:859.316595px;}
.yf_c01064{bottom:878.038095px;}
.y46_c01064{bottom:878.038200px;}
.y47_c01064{bottom:878.038965px;}
.y76_c01064{bottom:878.397030px;}
.y45_c01064{bottom:897.118635px;}
.ye_c01064{bottom:897.299490px;}
.y75_c01064{bottom:897.835650px;}
.y44_c01064{bottom:916.199085px;}
.yd_c01064{bottom:916.559685px;}
.y74_c01064{bottom:916.916100px;}
.yb_c01064{bottom:935.637795px;}
.yc_c01064{bottom:935.639655px;}
.y43_c01064{bottom:935.640225px;}
.y73_c01064{bottom:936.357240px;}
.ya_c01064{bottom:954.538470px;}
.y42_c01064{bottom:954.720675px;}
.y72_c01064{bottom:955.076790px;}
.y9_c01064{bottom:973.977075px;}
.y41_c01064{bottom:974.159295px;}
.y71_c01064{bottom:974.517945px;}
.y40_c01064{bottom:992.880210px;}
.y8_c01064{bottom:993.057540px;}
.y70_c01064{bottom:993.237510px;}
.y7_c01064{bottom:1012.317735px;}
.y3f_c01064{bottom:1012.318815px;}
.y3e_c01064{bottom:1012.319115px;}
.y6f_c01064{bottom:1012.678635px;}
.y3d_c01064{bottom:1031.040045px;}
.y6_c01064{bottom:1031.218440px;}
.y6e_c01064{bottom:1031.759100px;}
.y5_c01064{bottom:1050.478635px;}
.y3c_c01064{bottom:1050.839535px;}
.y4_c01064{bottom:1069.919490px;}
.y3b_c01064{bottom:1075.319820px;}
.y6d_c01064{bottom:1076.039985px;}
.y3a_c01064{bottom:1089.358605px;}
.y3_c01064{bottom:1089.358710px;}
.y6c_c01064{bottom:1089.719130px;}
.y39_c01064{bottom:1108.438665px;}
.y2_c01064{bottom:1108.620090px;}
.y6b_c01064{bottom:1108.799565px;}
.y1_c01064{bottom:1146.959385px;}
.h3_c01064{height:42.328125px;}
.h5_c01064{height:43.804688px;}
.h10_c01064{height:45.369141px;}
.h8_c01064{height:46.151367px;}
.h4_c01064{height:47.715820px;}
.he_c01064{height:48.375000px;}
.h12_c01064{height:48.498047px;}
.h6_c01064{height:49.130859px;}
.h2_c01064{height:49.661133px;}
.h7_c01064{height:50.062500px;}
.h1_c01064{height:50.402344px;}
.hf_c01064{height:51.143555px;}
.h11_c01064{height:51.884766px;}
.ha_c01064{height:52.625977px;}
.hd_c01064{height:54.108398px;}
.hc_c01064{height:54.849609px;}
.hb_c01064{height:55.590820px;}
.h9_c01064{height:67.450195px;}
.h0_c01064{height:1263.000000px;}
.w0_c01064{width:892.500000px;}
.x0_c01064{left:0.000000px;}
.x1_c01064{left:145.078815px;}
.x4_c01064{left:210.959130px;}
.x2_c01064{left:212.039040px;}
.x5_c01064{left:248.398635px;}
.x3_c01064{left:249.838950px;}
.xf_c01064{left:281.159265px;}
.x6_c01064{left:282.239250px;}
.xb_c01064{left:308.159850px;}
.x7_c01064{left:314.639700px;}
.x8_c01064{left:327.599100px;}
.xc_c01064{left:334.078785px;}
.x9_c01064{left:347.040000px;}
.xe_c01064{left:352.799535px;}
.xd_c01064{left:359.638530px;}
.xa_c01064{left:366.838515px;}
.x10_c01064{left:372.958950px;}
.x14_c01064{left:579.234735px;}
.x11_c01064{left:580.679670px;}
.x13_c01064{left:626.398635px;}
.x12_c01064{left:639.359850px;}
.x16_c01064{left:645.478635px;}
.x15_c01064{left:677.519670px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls11_c01064{letter-spacing:-9.143040pt;}
.ls10_c01064{letter-spacing:-4.439867pt;}
.ls19_c01064{letter-spacing:-3.562933pt;}
.ls8_c01064{letter-spacing:-3.520533pt;}
.ls17_c01064{letter-spacing:-3.046400pt;}
.lsf_c01064{letter-spacing:-2.433333pt;}
.ls14_c01064{letter-spacing:-2.302933pt;}
.ls12_c01064{letter-spacing:-1.605073pt;}
.ls16_c01064{letter-spacing:-1.541867pt;}
.ls5_c01064{letter-spacing:-1.537253pt;}
.lsc_c01064{letter-spacing:-0.820000pt;}
.lse_c01064{letter-spacing:-0.789993pt;}
.ls3_c01064{letter-spacing:-0.770667pt;}
.ls13_c01064{letter-spacing:-0.754400pt;}
.ls7_c01064{letter-spacing:-0.745487pt;}
.ls2_c01064{letter-spacing:0.000000pt;}
.lsb_c01064{letter-spacing:0.582400pt;}
.ls0_c01064{letter-spacing:0.770667pt;}
.ls6_c01064{letter-spacing:0.825067pt;}
.lsa_c01064{letter-spacing:0.837800pt;}
.ls1_c01064{letter-spacing:1.537253pt;}
.lsd_c01064{letter-spacing:1.593467pt;}
.ls15_c01064{letter-spacing:1.746593pt;}
.ls9_c01064{letter-spacing:1.807000pt;}
.ls18_c01064{letter-spacing:25.666667pt;}
.ls4_c01064{letter-spacing:61.845467pt;}
.ws0_c01064{word-spacing:0.000000pt;}
._f_c01064{margin-left:-8.205303pt;}
._a_c01064{margin-left:-6.551965pt;}
._c_c01064{margin-left:-5.168000pt;}
._1_c01064{margin-left:-3.862216pt;}
._e_c01064{margin-left:-2.943862pt;}
._d_c01064{margin-left:-1.949303pt;}
._11_c01064{margin-left:-0.892744pt;}
._12_c01064{width:1.124482pt;}
._10_c01064{width:2.099072pt;}
._4_c01064{width:3.340713pt;}
._b_c01064{width:4.458595pt;}
._14_c01064{width:5.351016pt;}
._13_c01064{width:6.829736pt;}
._3_c01064{width:18.001944pt;}
._5_c01064{width:18.899544pt;}
._7_c01064{width:20.377072pt;}
._9_c01064{width:21.855215pt;}
._6_c01064{width:22.752877pt;}
._8_c01064{width:24.230405pt;}
._0_c01064{width:25.159969pt;}
._2_c01064{width:580.951584pt;}
.fs2_c01064{font-size:37.333333pt;}
.fsd_c01064{font-size:38.666667pt;}
.fs6_c01064{font-size:39.333333pt;}
.fs3_c01064{font-size:40.666667pt;}
.fsf_c01064{font-size:41.333333pt;}
.fs5_c01064{font-size:42.666667pt;}
.fs4_c01064{font-size:43.333333pt;}
.fs1_c01064{font-size:44.666667pt;}
.fs0_c01064{font-size:45.333333pt;}
.fsc_c01064{font-size:46.000000pt;}
.fse_c01064{font-size:46.666667pt;}
.fs8_c01064{font-size:47.333333pt;}
.fsb_c01064{font-size:48.666667pt;}
.fsa_c01064{font-size:49.333333pt;}
.fs9_c01064{font-size:50.000000pt;}
.fs7_c01064{font-size:60.666667pt;}
.y0_c01064{bottom:0.000000pt;}
.y38_c01064{bottom:165.758307pt;}
.y6a_c01064{bottom:165.758813pt;}
.y69_c01064{bottom:165.759080pt;}
.y9c_c01064{bottom:166.079040pt;}
.y37_c01064{bottom:182.719747pt;}
.y68_c01064{bottom:182.720493pt;}
.y9b_c01064{bottom:183.039453pt;}
.y36_c01064{bottom:199.680133pt;}
.y67_c01064{bottom:199.680907pt;}
.y9a_c01064{bottom:199.999840pt;}
.y34_c01064{bottom:217.278213pt;}
.y35_c01064{bottom:217.278787pt;}
.y66_c01064{bottom:217.279253pt;}
.y99_c01064{bottom:217.599400pt;}
.y65_c01064{bottom:233.920067pt;}
.y33_c01064{bottom:234.078813pt;}
.y98_c01064{bottom:234.559800pt;}
.y32_c01064{bottom:251.519627pt;}
.y97_c01064{bottom:252.159360pt;}
.y64_c01064{bottom:268.160440pt;}
.y31_c01064{bottom:268.480027pt;}
.y96_c01064{bottom:269.119747pt;}
.y30_c01064{bottom:285.758787pt;}
.y95_c01064{bottom:286.398520pt;}
.y2f_c01064{bottom:302.559067pt;}
.y63_c01064{bottom:302.720253pt;}
.y94_c01064{bottom:303.358933pt;}
.y2e_c01064{bottom:319.839867pt;}
.y62_c01064{bottom:319.999453pt;}
.y93_c01064{bottom:320.639933pt;}
.y2d_c01064{bottom:336.640120pt;}
.y61_c01064{bottom:336.959333pt;}
.y92_c01064{bottom:337.600347pt;}
.y2b_c01064{bottom:353.438680pt;}
.y2c_c01064{bottom:353.438920pt;}
.y60_c01064{bottom:353.600133pt;}
.y91_c01064{bottom:354.241147pt;}
.y5f_c01064{bottom:370.559973pt;}
.y2a_c01064{bottom:370.719707pt;}
.y90_c01064{bottom:371.519920pt;}
.y29_c01064{bottom:387.998480pt;}
.y5e_c01064{bottom:388.159733pt;}
.y8f_c01064{bottom:388.480320pt;}
.y28_c01064{bottom:404.958867pt;}
.y5d_c01064{bottom:405.120133pt;}
.y8e_c01064{bottom:405.759093pt;}
.y27_c01064{bottom:422.080093pt;}
.y5c_c01064{bottom:422.398907pt;}
.y8d_c01064{bottom:423.040107pt;}
.y5b_c01064{bottom:439.039720pt;}
.y26_c01064{bottom:439.040480pt;}
.y8c_c01064{bottom:439.680933pt;}
.y25_c01064{bottom:456.479040pt;}
.y5a_c01064{bottom:456.639280pt;}
.y8b_c01064{bottom:457.279280pt;}
.y23_c01064{bottom:473.438360pt;}
.y24_c01064{bottom:473.438920pt;}
.y59_c01064{bottom:473.599667pt;}
.y8a_c01064{bottom:474.240707pt;}
.y22_c01064{bottom:490.719360pt;}
.y58_c01064{bottom:490.878440pt;}
.y89_c01064{bottom:491.519467pt;}
.y57_c01064{bottom:507.198467pt;}
.y21_c01064{bottom:507.199173pt;}
.y88_c01064{bottom:508.160293pt;}
.y1f_c01064{bottom:524.638920pt;}
.y20_c01064{bottom:524.639573pt;}
.y56_c01064{bottom:524.798040pt;}
.y87_c01064{bottom:525.439067pt;}
.y1e_c01064{bottom:541.599320pt;}
.y55_c01064{bottom:541.758427pt;}
.y86_c01064{bottom:542.399453pt;}
.y1d_c01064{bottom:558.718307pt;}
.y54_c01064{bottom:559.039453pt;}
.y84_c01064{bottom:559.358947pt;}
.y85_c01064{bottom:559.359333pt;}
.y1c_c01064{bottom:575.678693pt;}
.y53_c01064{bottom:575.999840pt;}
.y83_c01064{bottom:576.319333pt;}
.y52_c01064{bottom:592.319867pt;}
.y1b_c01064{bottom:592.479307pt;}
.y81_c01064{bottom:593.275640pt;}
.y82_c01064{bottom:593.279333pt;}
.y1a_c01064{bottom:609.120120pt;}
.y51_c01064{bottom:609.280280pt;}
.y80_c01064{bottom:609.916440pt;}
.y18_c01064{bottom:626.398013pt;}
.y19_c01064{bottom:626.399453pt;}
.y50_c01064{bottom:626.559040pt;}
.y7f_c01064{bottom:627.195213pt;}
.y17_c01064{bottom:643.518187pt;}
.y4f_c01064{bottom:643.518560pt;}
.y7e_c01064{bottom:644.155613pt;}
.y16_c01064{bottom:660.799213pt;}
.y4e_c01064{bottom:660.799840pt;}
.y7d_c01064{bottom:661.436627pt;}
.y15_c01064{bottom:677.438827pt;}
.y4d_c01064{bottom:677.440187pt;}
.y7c_c01064{bottom:678.076227pt;}
.y14_c01064{bottom:695.038373pt;}
.y4c_c01064{bottom:695.039760pt;}
.y7b_c01064{bottom:695.675800pt;}
.y13_c01064{bottom:711.679200pt;}
.y4b_c01064{bottom:711.680560pt;}
.y7a_c01064{bottom:712.316613pt;}
.y4a_c01064{bottom:729.280133pt;}
.y12_c01064{bottom:729.438533pt;}
.y79_c01064{bottom:729.916173pt;}
.y11_c01064{bottom:746.398947pt;}
.y49_c01064{bottom:746.558893pt;}
.y78_c01064{bottom:746.876560pt;}
.y48_c01064{bottom:763.199707pt;}
.y10_c01064{bottom:763.517920pt;}
.y77_c01064{bottom:763.836973pt;}
.yf_c01064{bottom:780.478307pt;}
.y46_c01064{bottom:780.478400pt;}
.y47_c01064{bottom:780.479080pt;}
.y76_c01064{bottom:780.797360pt;}
.y45_c01064{bottom:797.438787pt;}
.ye_c01064{bottom:797.599547pt;}
.y75_c01064{bottom:798.076133pt;}
.y44_c01064{bottom:814.399187pt;}
.yd_c01064{bottom:814.719720pt;}
.y74_c01064{bottom:815.036533pt;}
.yb_c01064{bottom:831.678040pt;}
.yc_c01064{bottom:831.679693pt;}
.y43_c01064{bottom:831.680200pt;}
.y73_c01064{bottom:832.317547pt;}
.ya_c01064{bottom:848.478640pt;}
.y42_c01064{bottom:848.640600pt;}
.y72_c01064{bottom:848.957147pt;}
.y9_c01064{bottom:865.757400pt;}
.y41_c01064{bottom:865.919373pt;}
.y71_c01064{bottom:866.238173pt;}
.y40_c01064{bottom:882.560187pt;}
.y8_c01064{bottom:882.717813pt;}
.y70_c01064{bottom:882.877787pt;}
.y7_c01064{bottom:899.837987pt;}
.y3f_c01064{bottom:899.838947pt;}
.y3e_c01064{bottom:899.839213pt;}
.y6f_c01064{bottom:900.158787pt;}
.y3d_c01064{bottom:916.480040pt;}
.y6_c01064{bottom:916.638613pt;}
.y6e_c01064{bottom:917.119200pt;}
.y5_c01064{bottom:933.758787pt;}
.y3c_c01064{bottom:934.079587pt;}
.y4_c01064{bottom:951.039547pt;}
.y3b_c01064{bottom:955.839840pt;}
.y6d_c01064{bottom:956.479987pt;}
.y3a_c01064{bottom:968.318760pt;}
.y3_c01064{bottom:968.318853pt;}
.y6c_c01064{bottom:968.639227pt;}
.y39_c01064{bottom:985.278813pt;}
.y2_c01064{bottom:985.440080pt;}
.y6b_c01064{bottom:985.599613pt;}
.y1_c01064{bottom:1019.519453pt;}
.h3_c01064{height:37.625000pt;}
.h5_c01064{height:38.937500pt;}
.h10_c01064{height:40.328125pt;}
.h8_c01064{height:41.023438pt;}
.h4_c01064{height:42.414062pt;}
.he_c01064{height:43.000000pt;}
.h12_c01064{height:43.109375pt;}
.h6_c01064{height:43.671875pt;}
.h2_c01064{height:44.143229pt;}
.h7_c01064{height:44.500000pt;}
.h1_c01064{height:44.802083pt;}
.hf_c01064{height:45.460938pt;}
.h11_c01064{height:46.119792pt;}
.ha_c01064{height:46.778646pt;}
.hd_c01064{height:48.096354pt;}
.hc_c01064{height:48.755208pt;}
.hb_c01064{height:49.414063pt;}
.h9_c01064{height:59.955729pt;}
.h0_c01064{height:1122.666667pt;}
.w0_c01064{width:793.333333pt;}
.x0_c01064{left:0.000000pt;}
.x1_c01064{left:128.958947pt;}
.x4_c01064{left:187.519227pt;}
.x2_c01064{left:188.479147pt;}
.x5_c01064{left:220.798787pt;}
.x3_c01064{left:222.079067pt;}
.xf_c01064{left:249.919347pt;}
.x6_c01064{left:250.879333pt;}
.xb_c01064{left:273.919867pt;}
.x7_c01064{left:279.679733pt;}
.x8_c01064{left:291.199200pt;}
.xc_c01064{left:296.958920pt;}
.x9_c01064{left:308.480000pt;}
.xe_c01064{left:313.599587pt;}
.xd_c01064{left:319.678693pt;}
.xa_c01064{left:326.078680pt;}
.x10_c01064{left:331.519067pt;}
.x14_c01064{left:514.875320pt;}
.x11_c01064{left:516.159707pt;}
.x13_c01064{left:556.798787pt;}
.x12_c01064{left:568.319867pt;}
.x16_c01064{left:573.758787pt;}
.x15_c01064{left:602.239707pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_ca31194b153bebc875227c86.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01065;src:url('chunks/assets/font_2f0ff3c6ba1c7233b82abca8.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01065;src:url('chunks/assets/font_80b02f18f2cdcc329419a08b.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01065;src:url('chunks/assets/font_74c34fec4150558666c6aef2.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01065;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff5_c01065{font-family:ff5_c01065;line-height:1.432129;font-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_c01065{transform:matrix(0.137755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137755,0.000000,0.000000,0.250000,0,0);}
.m1d_c01065{transform:matrix(0.148936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148936,0.000000,0.000000,0.250000,0,0);}
.m10_c01065{transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);}
.m12_c01065{transform:matrix(0.170213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170213,0.000000,0.000000,0.250000,0,0);}
.m18_c01065{transform:matrix(0.171233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171233,0.000000,0.000000,0.250000,0,0);}
.m17_c01065{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.me_c01065{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.md_c01065{transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);}
.m19_c01065{transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);}
.mf_c01065{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.ma_c01065{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m1b_c01065{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.mc_c01065{transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201493,0.000000,0.000000,0.250000,0,0);}
.m14_c01065{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m1a_c01065{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m16_c01065{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m1c_c01065{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m8_c01065{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_c01065{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m6_c01065{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m5_c01065{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m4_c01065{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.mb_c01065{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m15_c01065{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m11_c01065{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m0_c01065{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m9_c01065{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m2_c01065{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m7_c01065{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.lsb_c01065{letter-spacing:-7.149600px;}
.ls7_c01065{letter-spacing:-6.350400px;}
.ls6_c01065{letter-spacing:-5.557140px;}
.ls2_c01065{letter-spacing:-4.762800px;}
.ls1_c01065{letter-spacing:-3.969000px;}
.lse_c01065{letter-spacing:-3.680843px;}
.lsd_c01065{letter-spacing:-3.307155px;}
.lsc_c01065{letter-spacing:-3.223260px;}
.ls3_c01065{letter-spacing:-3.175740px;}
.ls9_c01065{letter-spacing:-2.678063px;}
.ls8_c01065{letter-spacing:-2.638688px;}
.ls11_c01065{letter-spacing:-2.517555px;}
.lsa_c01065{letter-spacing:-2.381400px;}
.ls10_c01065{letter-spacing:-0.893550px;}
.ls4_c01065{letter-spacing:-0.838500px;}
.lsf_c01065{letter-spacing:-0.806400px;}
.ls5_c01065{letter-spacing:0.000000px;}
.ls0_c01065{letter-spacing:52.412400px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:0.000000px;}
._d_c01065{margin-left:-200.502191px;}
._11_c01065{margin-left:-13.190072px;}
._10_c01065{margin-left:-10.205682px;}
._5_c01065{margin-left:-9.188704px;}
._c_c01065{margin-left:-7.385929px;}
._9_c01065{margin-left:-6.320478px;}
._7_c01065{margin-left:-5.073776px;}
._6_c01065{margin-left:-3.568574px;}
._8_c01065{margin-left:-2.316918px;}
._1_c01065{margin-left:-1.156045px;}
._b_c01065{width:1.891271px;}
._e_c01065{width:3.223991px;}
._a_c01065{width:5.138513px;}
._f_c01065{width:6.661249px;}
._12_c01065{width:8.189640px;}
._3_c01065{width:15.498667px;}
._4_c01065{width:18.576667px;}
._0_c01065{width:23.144400px;}
._2_c01065{width:601.662536px;}
.fc0_c01065{color:transparent;}
.fs2_c01065{font-size:31.500000px;}
.fsd_c01065{font-size:42.000000px;}
.fsf_c01065{font-size:45.750000px;}
.fs1_c01065{font-size:48.750000px;}
.fs7_c01065{font-size:50.250000px;}
.fse_c01065{font-size:51.000000px;}
.fs6_c01065{font-size:52.500000px;}
.fs0_c01065{font-size:54.000000px;}
.fs8_c01065{font-size:54.750000px;}
.fs4_c01065{font-size:55.500000px;}
.fs5_c01065{font-size:56.250000px;}
.fs3_c01065{font-size:57.750000px;}
.fsc_c01065{font-size:60.750000px;}
.fs9_c01065{font-size:69.750000px;}
.fsa_c01065{font-size:70.500000px;}
.fsb_c01065{font-size:73.500000px;}
.y0_c01065{bottom:0.000000px;}
.y33_c01065{bottom:183.238785px;}
.y67_c01065{bottom:183.602400px;}
.y99_c01065{bottom:183.958575px;}
.y32_c01065{bottom:202.679700px;}
.y66_c01065{bottom:203.040990px;}
.y98_c01065{bottom:203.759100px;}
.y31_c01065{bottom:221.759535px;}
.y65_c01065{bottom:221.761485px;}
.y96_c01065{bottom:222.837345px;}
.y97_c01065{bottom:222.838950px;}
.y30_c01065{bottom:241.198785px;}
.y64_c01065{bottom:241.200075px;}
.y95_c01065{bottom:242.278605px;}
.y2f_c01065{bottom:260.278800px;}
.y63_c01065{bottom:260.279610px;}
.y94_c01065{bottom:260.997660px;}
.y2e_c01065{bottom:279.719535px;}
.y62_c01065{bottom:279.720885px;}
.y93_c01065{bottom:280.798185px;}
.y61_c01065{bottom:298.800435px;}
.y2d_c01065{bottom:298.979235px;}
.y92_c01065{bottom:300.239460px;}
.y2c_c01065{bottom:318.420000px;}
.y60_c01065{bottom:318.600945px;}
.y91_c01065{bottom:319.679490px;}
.y2b_c01065{bottom:337.318800px;}
.y5f_c01065{bottom:337.320000px;}
.y90_c01065{bottom:338.399985px;}
.y5e_c01065{bottom:356.399550px;}
.y2a_c01065{bottom:356.580000px;}
.y8f_c01065{bottom:357.840015px;}
.y5d_c01065{bottom:375.479100px;}
.y29_c01065{bottom:375.839535px;}
.y8e_c01065{bottom:376.919565px;}
.y28_c01065{bottom:395.278800px;}
.y5c_c01065{bottom:395.279610px;}
.y8d_c01065{bottom:396.360825px;}
.y27_c01065{bottom:413.999400px;}
.y5b_c01065{bottom:414.000120px;}
.y8c_c01065{bottom:415.079880px;}
.y26_c01065{bottom:433.438665px;}
.y5a_c01065{bottom:433.800630px;}
.y8b_c01065{bottom:434.521155px;}
.y25_c01065{bottom:452.699850px;}
.y59_c01065{bottom:452.880180px;}
.y8a_c01065{bottom:453.600705px;}
.y24_c01065{bottom:472.318770px;}
.y58_c01065{bottom:472.680705px;}
.y89_c01065{bottom:473.401215px;}
.y23_c01065{bottom:491.219100px;}
.y57_c01065{bottom:491.399760px;}
.y88_c01065{bottom:492.120270px;}
.y22_c01065{bottom:510.119385px;}
.y56_c01065{bottom:510.120255px;}
.y87_c01065{bottom:511.199820px;}
.y21_c01065{bottom:529.199385px;}
.y55_c01065{bottom:529.199805px;}
.y86_c01065{bottom:530.279370px;}
.y20_c01065{bottom:548.279250px;}
.y54_c01065{bottom:548.279340px;}
.y85_c01065{bottom:549.358905px;}
.y1f_c01065{bottom:567.179670px;}
.y53_c01065{bottom:567.358890px;}
.y84_c01065{bottom:568.079400px;}
.y52_c01065{bottom:586.800015px;}
.y1e_c01065{bottom:586.800150px;}
.y83_c01065{bottom:587.879520px;}
.y1d_c01065{bottom:605.879970px;}
.y51_c01065{bottom:606.240045px;}
.y82_c01065{bottom:606.959385px;}
.y1c_c01065{bottom:625.498950px;}
.y50_c01065{bottom:625.681320px;}
.y81_c01065{bottom:626.759535px;}
.y1b_c01065{bottom:644.760135px;}
.y4f_c01065{bottom:644.760870px;}
.y80_c01065{bottom:645.839535px;}
.y1a_c01065{bottom:664.019670px;}
.y4e_c01065{bottom:664.199460px;}
.y7f_c01065{bottom:665.278800px;}
.y19_c01065{bottom:682.738770px;}
.y4d_c01065{bottom:682.919955px;}
.y7e_c01065{bottom:683.640150px;}
.y18_c01065{bottom:701.818770px;}
.y4c_c01065{bottom:701.999490px;}
.y7d_c01065{bottom:702.720150px;}
.y4b_c01065{bottom:720.718545px;}
.y17_c01065{bottom:720.719100px;}
.y7c_c01065{bottom:721.800105px;}
.y16_c01065{bottom:740.159820px;}
.y4a_c01065{bottom:740.160945px;}
.y7b_c01065{bottom:740.879970px;}
.y15_c01065{bottom:759.419535px;}
.y49_c01065{bottom:759.599535px;}
.y7a_c01065{bottom:760.319235px;}
.y14_c01065{bottom:778.499355px;}
.y48_c01065{bottom:778.679070px;}
.y47_c01065{bottom:778.679580px;}
.y79_c01065{bottom:779.399235px;}
.y13_c01065{bottom:797.579400px;}
.y46_c01065{bottom:797.759130px;}
.y78_c01065{bottom:798.479190px;}
.y12_c01065{bottom:817.738770px;}
.y44_c01065{bottom:817.919535px;}
.y45_c01065{bottom:817.919955px;}
.y77_c01065{bottom:818.640105px;}
.y43_c01065{bottom:836.638590px;}
.y11_c01065{bottom:836.639100px;}
.y76_c01065{bottom:837.359250px;}
.y10_c01065{bottom:855.898590px;}
.y42_c01065{bottom:856.079865px;}
.y75_c01065{bottom:856.800105px;}
.y41_c01065{bottom:874.798605px;}
.yf_c01065{bottom:874.798920px;}
.y74_c01065{bottom:875.519070px;}
.ye_c01065{bottom:894.239865px;}
.y40_c01065{bottom:894.240165px;}
.y73_c01065{bottom:894.960015px;}
.y3f_c01065{bottom:913.319715px;}
.yd_c01065{bottom:913.319820px;}
.y72_c01065{bottom:914.039985px;}
.yc_c01065{bottom:924.838905px;}
.yb_c01065{bottom:932.759040px;}
.y3e_c01065{bottom:932.759745px;}
.y71_c01065{bottom:933.479190px;}
.ya_c01065{bottom:951.659370px;}
.y3d_c01065{bottom:951.839280px;}
.y70_c01065{bottom:952.559055px;}
.y9_c01065{bottom:971.100135px;}
.y3c_c01065{bottom:971.280555px;}
.y6f_c01065{bottom:971.639100px;}
.y8_c01065{bottom:989.998905px;}
.y3b_c01065{bottom:989.999610px;}
.y6e_c01065{bottom:990.719055px;}
.y7_c01065{bottom:1009.619385px;}
.y3a_c01065{bottom:1009.800135px;}
.y6d_c01065{bottom:1010.519070px;}
.y6_c01065{bottom:1028.519715px;}
.y39_c01065{bottom:1028.520630px;}
.y6c_c01065{bottom:1029.239865px;}
.y5_c01065{bottom:1047.599670px;}
.y38_c01065{bottom:1047.600180px;}
.y6b_c01065{bottom:1048.319820px;}
.y4_c01065{bottom:1066.500000px;}
.y37_c01065{bottom:1066.679715px;}
.y36_c01065{bottom:1066.680270px;}
.y6a_c01065{bottom:1067.399775px;}
.y3_c01065{bottom:1086.118740px;}
.y35_c01065{bottom:1086.118860px;}
.y69_c01065{bottom:1086.838905px;}
.y2_c01065{bottom:1105.559685px;}
.y34_c01065{bottom:1105.560120px;}
.y68_c01065{bottom:1105.918950px;}
.y1_c01065{bottom:1143.719520px;}
.h3_c01065{height:32.853516px;}
.he_c01065{height:43.804688px;}
.h10_c01065{height:47.715820px;}
.h2_c01065{height:48.178711px;}
.h8_c01065{height:49.293091px;}
.hf_c01065{height:50.402344px;}
.h7_c01065{height:51.500244px;}
.h1_c01065{height:52.971680px;}
.h9_c01065{height:53.707397px;}
.h5_c01065{height:54.443115px;}
.h6_c01065{height:55.178833px;}
.h4_c01065{height:56.650269px;}
.hd_c01065{height:59.593140px;}
.ha_c01065{height:68.421753px;}
.hb_c01065{height:69.157471px;}
.hc_c01065{height:72.100342px;}
.h0_c01065{height:1263.000000px;}
.w0_c01065{width:892.500000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:143.999400px;}
.x6_c01065{left:208.080000px;}
.x4_c01065{left:209.879535px;}
.x2_c01065{left:210.958950px;}
.x5_c01065{left:247.678500px;}
.x3_c01065{left:248.759535px;}
.xa_c01065{left:280.079385px;}
.x7_c01065{left:281.160090px;}
.xb_c01065{left:319.679100px;}
.x8_c01065{left:358.918350px;}
.x9_c01065{left:371.518635px;}
.xc_c01065{left:383.759535px;}
.xd_c01065{left:566.279850px;}
.xe_c01065{left:578.878320px;}
.x10_c01065{left:611.278800px;}
.xf_c01065{left:624.239820px;}
.x11_c01065{left:644.758530px;}
.x12_c01065{left:664.199385px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.lsb_c01065{letter-spacing:-6.355200pt;}
.ls7_c01065{letter-spacing:-5.644800pt;}
.ls6_c01065{letter-spacing:-4.939680pt;}
.ls2_c01065{letter-spacing:-4.233600pt;}
.ls1_c01065{letter-spacing:-3.528000pt;}
.lse_c01065{letter-spacing:-3.271860pt;}
.lsd_c01065{letter-spacing:-2.939693pt;}
.lsc_c01065{letter-spacing:-2.865120pt;}
.ls3_c01065{letter-spacing:-2.822880pt;}
.ls9_c01065{letter-spacing:-2.380500pt;}
.ls8_c01065{letter-spacing:-2.345500pt;}
.ls11_c01065{letter-spacing:-2.237827pt;}
.lsa_c01065{letter-spacing:-2.116800pt;}
.ls10_c01065{letter-spacing:-0.794267pt;}
.ls4_c01065{letter-spacing:-0.745333pt;}
.lsf_c01065{letter-spacing:-0.716800pt;}
.ls5_c01065{letter-spacing:0.000000pt;}
.ls0_c01065{letter-spacing:46.588800pt;}
.ws0_c01065{word-spacing:0.000000pt;}
._d_c01065{margin-left:-178.224169pt;}
._11_c01065{margin-left:-11.724508pt;}
._10_c01065{margin-left:-9.071718pt;}
._5_c01065{margin-left:-8.167736pt;}
._c_c01065{margin-left:-6.565271pt;}
._9_c01065{margin-left:-5.618202pt;}
._7_c01065{margin-left:-4.510024pt;}
._6_c01065{margin-left:-3.172066pt;}
._8_c01065{margin-left:-2.059482pt;}
._1_c01065{margin-left:-1.027595pt;}
._b_c01065{width:1.681129pt;}
._e_c01065{width:2.865769pt;}
._a_c01065{width:4.567567pt;}
._f_c01065{width:5.921111pt;}
._12_c01065{width:7.279680pt;}
._3_c01065{width:13.776593pt;}
._4_c01065{width:16.512593pt;}
._0_c01065{width:20.572800pt;}
._2_c01065{width:534.811144pt;}
.fs2_c01065{font-size:28.000000pt;}
.fsd_c01065{font-size:37.333333pt;}
.fsf_c01065{font-size:40.666667pt;}
.fs1_c01065{font-size:43.333333pt;}
.fs7_c01065{font-size:44.666667pt;}
.fse_c01065{font-size:45.333333pt;}
.fs6_c01065{font-size:46.666667pt;}
.fs0_c01065{font-size:48.000000pt;}
.fs8_c01065{font-size:48.666667pt;}
.fs4_c01065{font-size:49.333333pt;}
.fs5_c01065{font-size:50.000000pt;}
.fs3_c01065{font-size:51.333333pt;}
.fsc_c01065{font-size:54.000000pt;}
.fs9_c01065{font-size:62.000000pt;}
.fsa_c01065{font-size:62.666667pt;}
.fsb_c01065{font-size:65.333333pt;}
.y0_c01065{bottom:0.000000pt;}
.y33_c01065{bottom:162.878920pt;}
.y67_c01065{bottom:163.202133pt;}
.y99_c01065{bottom:163.518733pt;}
.y32_c01065{bottom:180.159733pt;}
.y66_c01065{bottom:180.480880pt;}
.y98_c01065{bottom:181.119200pt;}
.y31_c01065{bottom:197.119587pt;}
.y65_c01065{bottom:197.121320pt;}
.y96_c01065{bottom:198.077640pt;}
.y97_c01065{bottom:198.079067pt;}
.y30_c01065{bottom:214.398920pt;}
.y64_c01065{bottom:214.400067pt;}
.y95_c01065{bottom:215.358760pt;}
.y2f_c01065{bottom:231.358933pt;}
.y63_c01065{bottom:231.359653pt;}
.y94_c01065{bottom:231.997920pt;}
.y2e_c01065{bottom:248.639587pt;}
.y62_c01065{bottom:248.640787pt;}
.y93_c01065{bottom:249.598387pt;}
.y61_c01065{bottom:265.600387pt;}
.y2d_c01065{bottom:265.759320pt;}
.y92_c01065{bottom:266.879520pt;}
.y2c_c01065{bottom:283.040000pt;}
.y60_c01065{bottom:283.200840pt;}
.y91_c01065{bottom:284.159547pt;}
.y2b_c01065{bottom:299.838933pt;}
.y5f_c01065{bottom:299.840000pt;}
.y90_c01065{bottom:300.799987pt;}
.y5e_c01065{bottom:316.799600pt;}
.y2a_c01065{bottom:316.960000pt;}
.y8f_c01065{bottom:318.080013pt;}
.y5d_c01065{bottom:333.759200pt;}
.y29_c01065{bottom:334.079587pt;}
.y8e_c01065{bottom:335.039613pt;}
.y28_c01065{bottom:351.358933pt;}
.y5c_c01065{bottom:351.359653pt;}
.y8d_c01065{bottom:352.320733pt;}
.y27_c01065{bottom:367.999467pt;}
.y5b_c01065{bottom:368.000107pt;}
.y8c_c01065{bottom:368.959893pt;}
.y26_c01065{bottom:385.278813pt;}
.y5a_c01065{bottom:385.600560pt;}
.y8b_c01065{bottom:386.241027pt;}
.y25_c01065{bottom:402.399867pt;}
.y59_c01065{bottom:402.560160pt;}
.y8a_c01065{bottom:403.200627pt;}
.y24_c01065{bottom:419.838907pt;}
.y58_c01065{bottom:420.160627pt;}
.y89_c01065{bottom:420.801080pt;}
.y23_c01065{bottom:436.639200pt;}
.y57_c01065{bottom:436.799787pt;}
.y88_c01065{bottom:437.440240pt;}
.y22_c01065{bottom:453.439453pt;}
.y56_c01065{bottom:453.440227pt;}
.y87_c01065{bottom:454.399840pt;}
.y21_c01065{bottom:470.399453pt;}
.y55_c01065{bottom:470.399827pt;}
.y86_c01065{bottom:471.359440pt;}
.y20_c01065{bottom:487.359333pt;}
.y54_c01065{bottom:487.359413pt;}
.y85_c01065{bottom:488.319027pt;}
.y1f_c01065{bottom:504.159707pt;}
.y53_c01065{bottom:504.319013pt;}
.y84_c01065{bottom:504.959467pt;}
.y52_c01065{bottom:521.600013pt;}
.y1e_c01065{bottom:521.600133pt;}
.y83_c01065{bottom:522.559573pt;}
.y1d_c01065{bottom:538.559973pt;}
.y51_c01065{bottom:538.880040pt;}
.y82_c01065{bottom:539.519453pt;}
.y1c_c01065{bottom:555.999067pt;}
.y50_c01065{bottom:556.161173pt;}
.y81_c01065{bottom:557.119587pt;}
.y1b_c01065{bottom:573.120120pt;}
.y4f_c01065{bottom:573.120773pt;}
.y80_c01065{bottom:574.079587pt;}
.y1a_c01065{bottom:590.239707pt;}
.y4e_c01065{bottom:590.399520pt;}
.y7f_c01065{bottom:591.358933pt;}
.y19_c01065{bottom:606.878907pt;}
.y4d_c01065{bottom:607.039960pt;}
.y7e_c01065{bottom:607.680133pt;}
.y18_c01065{bottom:623.838907pt;}
.y4c_c01065{bottom:623.999547pt;}
.y7d_c01065{bottom:624.640133pt;}
.y4b_c01065{bottom:640.638707pt;}
.y17_c01065{bottom:640.639200pt;}
.y7c_c01065{bottom:641.600093pt;}
.y16_c01065{bottom:657.919840pt;}
.y4a_c01065{bottom:657.920840pt;}
.y7b_c01065{bottom:658.559973pt;}
.y15_c01065{bottom:675.039587pt;}
.y49_c01065{bottom:675.199587pt;}
.y7a_c01065{bottom:675.839320pt;}
.y14_c01065{bottom:691.999427pt;}
.y48_c01065{bottom:692.159173pt;}
.y47_c01065{bottom:692.159627pt;}
.y79_c01065{bottom:692.799320pt;}
.y13_c01065{bottom:708.959467pt;}
.y46_c01065{bottom:709.119227pt;}
.y78_c01065{bottom:709.759280pt;}
.y12_c01065{bottom:726.878907pt;}
.y44_c01065{bottom:727.039587pt;}
.y45_c01065{bottom:727.039960pt;}
.y77_c01065{bottom:727.680093pt;}
.y43_c01065{bottom:743.678747pt;}
.y11_c01065{bottom:743.679200pt;}
.y76_c01065{bottom:744.319333pt;}
.y10_c01065{bottom:760.798747pt;}
.y42_c01065{bottom:760.959880pt;}
.y75_c01065{bottom:761.600093pt;}
.y41_c01065{bottom:777.598760pt;}
.yf_c01065{bottom:777.599040pt;}
.y74_c01065{bottom:778.239173pt;}
.ye_c01065{bottom:794.879880pt;}
.y40_c01065{bottom:794.880147pt;}
.y73_c01065{bottom:795.520013pt;}
.y3f_c01065{bottom:811.839747pt;}
.yd_c01065{bottom:811.839840pt;}
.y72_c01065{bottom:812.479987pt;}
.yc_c01065{bottom:822.079027pt;}
.yb_c01065{bottom:829.119147pt;}
.y3e_c01065{bottom:829.119773pt;}
.y71_c01065{bottom:829.759280pt;}
.ya_c01065{bottom:845.919440pt;}
.y3d_c01065{bottom:846.079360pt;}
.y70_c01065{bottom:846.719160pt;}
.y9_c01065{bottom:863.200120pt;}
.y3c_c01065{bottom:863.360493pt;}
.y6f_c01065{bottom:863.679200pt;}
.y8_c01065{bottom:879.999027pt;}
.y3b_c01065{bottom:879.999653pt;}
.y6e_c01065{bottom:880.639160pt;}
.y7_c01065{bottom:897.439453pt;}
.y3a_c01065{bottom:897.600120pt;}
.y6d_c01065{bottom:898.239173pt;}
.y6_c01065{bottom:914.239747pt;}
.y39_c01065{bottom:914.240560pt;}
.y6c_c01065{bottom:914.879880pt;}
.y5_c01065{bottom:931.199707pt;}
.y38_c01065{bottom:931.200160pt;}
.y6b_c01065{bottom:931.839840pt;}
.y4_c01065{bottom:948.000000pt;}
.y37_c01065{bottom:948.159747pt;}
.y36_c01065{bottom:948.160240pt;}
.y6a_c01065{bottom:948.799800pt;}
.y3_c01065{bottom:965.438880pt;}
.y35_c01065{bottom:965.438987pt;}
.y69_c01065{bottom:966.079027pt;}
.y2_c01065{bottom:982.719720pt;}
.y34_c01065{bottom:982.720107pt;}
.y68_c01065{bottom:983.039067pt;}
.y1_c01065{bottom:1016.639573pt;}
.h3_c01065{height:29.203125pt;}
.he_c01065{height:38.937500pt;}
.h10_c01065{height:42.414062pt;}
.h2_c01065{height:42.825521pt;}
.h8_c01065{height:43.816081pt;}
.hf_c01065{height:44.802083pt;}
.h7_c01065{height:45.777995pt;}
.h1_c01065{height:47.085938pt;}
.h9_c01065{height:47.739909pt;}
.h5_c01065{height:48.393880pt;}
.h6_c01065{height:49.047852pt;}
.h4_c01065{height:50.355794pt;}
.hd_c01065{height:52.971680pt;}
.ha_c01065{height:60.819336pt;}
.hb_c01065{height:61.473307pt;}
.hc_c01065{height:64.089193pt;}
.h0_c01065{height:1122.666667pt;}
.w0_c01065{width:793.333333pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:127.999467pt;}
.x6_c01065{left:184.960000pt;}
.x4_c01065{left:186.559587pt;}
.x2_c01065{left:187.519067pt;}
.x5_c01065{left:220.158667pt;}
.x3_c01065{left:221.119587pt;}
.xa_c01065{left:248.959453pt;}
.x7_c01065{left:249.920080pt;}
.xb_c01065{left:284.159200pt;}
.x8_c01065{left:319.038533pt;}
.x9_c01065{left:330.238787pt;}
.xc_c01065{left:341.119587pt;}
.xd_c01065{left:503.359867pt;}
.xe_c01065{left:514.558507pt;}
.x10_c01065{left:543.358933pt;}
.xf_c01065{left:554.879840pt;}
.x11_c01065{left:573.118693pt;}
.x12_c01065{left:590.399453pt;}
}





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

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_d3d59f015984f4774371127c.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01066;src:url('chunks/assets/font_c212b0b87de1ac403633b0a1.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01066;src:url('chunks/assets/font_d251401f9e309c91706a5384.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_6c99d0a0a3f8aed29926ed02.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01066;src:url('chunks/assets/font_1b4010fda7111dc2bddab818.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:1.281250;font-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_c01066{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m6_c01066{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m8_c01066{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m3_c01066{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m2_c01066{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.mf_c01066{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m7_c01066{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m1_c01066{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.ma_c01066{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m9_c01066{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.mc_c01066{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.me_c01066{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m0_c01066{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m4_c01066{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.md_c01066{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m10_c01066{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5_c01066{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls17_c01066{letter-spacing:-6.166050px;}
.ls14_c01066{letter-spacing:-4.295025px;}
.lse_c01066{letter-spacing:-4.182000px;}
.ls8_c01066{letter-spacing:-3.345600px;}
.ls16_c01066{letter-spacing:-2.577300px;}
.ls7_c01066{letter-spacing:-2.508690px;}
.ls9_c01066{letter-spacing:-1.816875px;}
.ls5_c01066{letter-spacing:-1.673310px;}
.ls15_c01066{letter-spacing:-1.671525px;}
.lsf_c01066{letter-spacing:-0.892500px;}
.ls4_c01066{letter-spacing:-0.836400px;}
.ls6_c01066{letter-spacing:0.000000px;}
.lsd_c01066{letter-spacing:0.634043px;}
.ls13_c01066{letter-spacing:0.966600px;}
.ls12_c01066{letter-spacing:2.508690px;}
.ls3_c01066{letter-spacing:3.345600px;}
.lsb_c01066{letter-spacing:5.855310px;}
.ls0_c01066{letter-spacing:12.540900px;}
.ls1_c01066{letter-spacing:13.377300px;}
.ls10_c01066{letter-spacing:17.559300px;}
.ls11_c01066{letter-spacing:19.477800px;}
.lsc_c01066{letter-spacing:27.579825px;}
.lsa_c01066{letter-spacing:31.755848px;}
.ls2_c01066{letter-spacing:55.182000px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01066{word-spacing:0.000000px;}
._15_c01066{margin-left:-197.053900px;}
._16_c01066{margin-left:-10.219129px;}
._e_c01066{margin-left:-8.965365px;}
._13_c01066{margin-left:-7.957739px;}
._1_c01066{margin-left:-6.823900px;}
._d_c01066{margin-left:-5.619765px;}
._14_c01066{margin-left:-3.508733px;}
._10_c01066{margin-left:-1.862219px;}
._2_c01066{width:1.429012px;}
._11_c01066{width:3.197524px;}
._12_c01066{width:4.790756px;}
._6_c01066{width:6.427622px;}
._a_c01066{width:9.468484px;}
._c_c01066{width:13.943835px;}
._b_c01066{width:15.554699px;}
._4_c01066{width:18.757700px;}
._8_c01066{width:22.939700px;}
._5_c01066{width:24.551433px;}
._0_c01066{width:25.887266px;}
._7_c01066{width:27.132945px;}
._9_c01066{width:29.699649px;}
._f_c01066{width:35.098384px;}
._3_c01066{width:635.500516px;}
.fc0_c01066{color:transparent;}
.fs8_c01066{font-size:43.500000px;}
.fs9_c01066{font-size:45.000000px;}
.fsb_c01066{font-size:47.250000px;}
.fs6_c01066{font-size:48.000000px;}
.fs0_c01066{font-size:51.000000px;}
.fsc_c01066{font-size:51.750000px;}
.fs7_c01066{font-size:52.500000px;}
.fs1_c01066{font-size:53.250000px;}
.fsa_c01066{font-size:54.000000px;}
.fsd_c01066{font-size:55.500000px;}
.fs3_c01066{font-size:56.250000px;}
.fs5_c01066{font-size:68.250000px;}
.fs2_c01066{font-size:86.250000px;}
.fs4_c01066{font-size:87.750000px;}
.y0_c01066{bottom:0.000000px;}
.y33_c01066{bottom:183.952560px;}
.y9b_c01066{bottom:184.318590px;}
.y65_c01066{bottom:184.319850px;}
.y32_c01066{bottom:203.393685px;}
.y64_c01066{bottom:203.757015px;}
.y9a_c01066{bottom:203.757195px;}
.y31_c01066{bottom:222.832305px;}
.y63_c01066{bottom:222.837480px;}
.y99_c01066{bottom:222.837660px;}
.y30_c01066{bottom:241.912770px;}
.y62_c01066{bottom:242.278605px;}
.y98_c01066{bottom:242.278800px;}
.y2f_c01066{bottom:260.993205px;}
.y61_c01066{bottom:261.359070px;}
.y97_c01066{bottom:261.359250px;}
.y2e_c01066{bottom:280.073655px;}
.y60_c01066{bottom:280.078635px;}
.y95_c01066{bottom:280.439235px;}
.y96_c01066{bottom:280.439685px;}
.y2d_c01066{bottom:298.794570px;}
.y5f_c01066{bottom:298.799535px;}
.y94_c01066{bottom:299.158785px;}
.y2c_c01066{bottom:317.875035px;}
.y5e_c01066{bottom:317.879820px;}
.y92_c01066{bottom:318.237945px;}
.y93_c01066{bottom:318.238785px;}
.y2b_c01066{bottom:336.955470px;}
.y5d_c01066{bottom:336.960270px;}
.y91_c01066{bottom:337.318410px;}
.y2a_c01066{bottom:356.035920px;}
.y5c_c01066{bottom:356.398890px;}
.y90_c01066{bottom:356.759535px;}
.y29_c01066{bottom:375.116370px;}
.y5b_c01066{bottom:375.119790px;}
.y8e_c01066{bottom:375.478275px;}
.y8f_c01066{bottom:375.478635px;}
.y28_c01066{bottom:394.557525px;}
.y5a_c01066{bottom:394.560945px;}
.y8d_c01066{bottom:395.277780px;}
.y27_c01066{bottom:413.637960px;}
.y59_c01066{bottom:413.999565px;}
.y8c_c01066{bottom:414.358230px;}
.y26_c01066{bottom:433.076565px;}
.y58_c01066{bottom:433.438185px;}
.y8b_c01066{bottom:433.799370px;}
.y25_c01066{bottom:452.515185px;}
.y57_c01066{bottom:452.518620px;}
.y8a_c01066{bottom:452.879820px;}
.y24_c01066{bottom:472.314690px;}
.y56_c01066{bottom:472.318125px;}
.y89_c01066{bottom:472.679325px;}
.y23_c01066{bottom:490.675890px;}
.y55_c01066{bottom:491.039040px;}
.y88_c01066{bottom:491.398890px;}
.y22_c01066{bottom:510.114510px;}
.y54_c01066{bottom:510.119505px;}
.y87_c01066{bottom:510.479325px;}
.y21_c01066{bottom:529.555635px;}
.y53_c01066{bottom:529.560630px;}
.y86_c01066{bottom:529.920480px;}
.y20_c01066{bottom:548.994255px;}
.y52_c01066{bottom:548.999250px;}
.y85_c01066{bottom:549.359100px;}
.y1f_c01066{bottom:567.715185px;}
.y51_c01066{bottom:567.720180px;}
.y84_c01066{bottom:568.080000px;}
.y1e_c01066{bottom:586.795620px;}
.y50_c01066{bottom:587.158785px;}
.y83_c01066{bottom:587.518620px;}
.y1d_c01066{bottom:605.876085px;}
.y4f_c01066{bottom:606.239220px;}
.y82_c01066{bottom:606.600135px;}
.y4e_c01066{bottom:624.959970px;}
.y1c_c01066{bottom:625.314690px;}
.y81_c01066{bottom:625.319235px;}
.y1b_c01066{bottom:644.395140px;}
.y4d_c01066{bottom:644.399235px;}
.y80_c01066{bottom:644.759700px;}
.y1a_c01066{bottom:663.475590px;}
.y4c_c01066{bottom:663.478665px;}
.y7e_c01066{bottom:663.835785px;}
.y7f_c01066{bottom:663.840135px;}
.y19_c01066{bottom:682.556025px;}
.y4b_c01066{bottom:682.559100px;}
.y7d_c01066{bottom:682.916250px;}
.y4a_c01066{bottom:701.635800px;}
.y18_c01066{bottom:701.636490px;}
.y7c_c01066{bottom:701.996685px;}
.y49_c01066{bottom:721.076955px;}
.y7b_c01066{bottom:721.077135px;}
.y17_c01066{bottom:721.077615px;}
.y48_c01066{bottom:740.515575px;}
.y16_c01066{bottom:740.516235px;}
.y7a_c01066{bottom:740.876640px;}
.y15_c01066{bottom:759.237165px;}
.y47_c01066{bottom:759.596010px;}
.y79_c01066{bottom:759.596190px;}
.y14_c01066{bottom:778.675785px;}
.y46_c01066{bottom:778.676475px;}
.y78_c01066{bottom:779.037345px;}
.y13_c01066{bottom:797.756220px;}
.y45_c01066{bottom:797.756910px;}
.y77_c01066{bottom:798.117780px;}
.y12_c01066{bottom:817.917780px;}
.y44_c01066{bottom:817.918470px;}
.y76_c01066{bottom:818.276820px;}
.y11_c01066{bottom:836.637330px;}
.y43_c01066{bottom:836.638020px;}
.y75_c01066{bottom:836.997735px;}
.y10_c01066{bottom:855.717795px;}
.y42_c01066{bottom:855.718485px;}
.y74_c01066{bottom:856.078200px;}
.yf_c01066{bottom:874.798230px;}
.y41_c01066{bottom:874.798920px;}
.y73_c01066{bottom:875.158635px;}
.ye_c01066{bottom:894.239385px;}
.y40_c01066{bottom:894.240345px;}
.y72_c01066{bottom:894.597240px;}
.yd_c01066{bottom:913.319820px;}
.y3f_c01066{bottom:913.320810px;}
.y71_c01066{bottom:913.677705px;}
.yb_c01066{bottom:932.399580px;}
.yc_c01066{bottom:932.399865px;}
.y70_c01066{bottom:932.758140px;}
.y3e_c01066{bottom:932.759415px;}
.y3d_c01066{bottom:951.480330px;}
.ya_c01066{bottom:951.838185px;}
.y6f_c01066{bottom:951.838605px;}
.y9_c01066{bottom:970.918650px;}
.y3c_c01066{bottom:970.918950px;}
.y6e_c01066{bottom:970.919040px;}
.y3a_c01066{bottom:990.351540px;}
.y8_c01066{bottom:990.359775px;}
.y3b_c01066{bottom:990.359805px;}
.y6d_c01066{bottom:990.360195px;}
.y39_c01066{bottom:1009.431975px;}
.y7_c01066{bottom:1009.798395px;}
.y6c_c01066{bottom:1009.798800px;}
.y38_c01066{bottom:1028.512440px;}
.y6_c01066{bottom:1028.519325px;}
.y6b_c01066{bottom:1028.519715px;}
.y37_c01066{bottom:1047.592875px;}
.y5_c01066{bottom:1047.957945px;}
.y69_c01066{bottom:1047.958440px;}
.y6a_c01066{bottom:1047.958920px;}
.y36_c01066{bottom:1067.031480px;}
.y4_c01066{bottom:1067.038380px;}
.y68_c01066{bottom:1067.038875px;}
.y35_c01066{bottom:1086.472635px;}
.y67_c01066{bottom:1086.479235px;}
.y3_c01066{bottom:1086.479535px;}
.y66_c01066{bottom:1105.198785px;}
.y2_c01066{bottom:1105.199085px;}
.y34_c01066{bottom:1105.553085px;}
.y1_c01066{bottom:1143.358605px;}
.ha_c01066{height:45.351562px;}
.h9_c01066{height:45.369141px;}
.hc_c01066{height:46.373291px;}
.h7_c01066{height:50.062500px;}
.h1_c01066{height:50.402344px;}
.hd_c01066{height:51.143555px;}
.h8_c01066{height:51.884766px;}
.h2_c01066{height:52.625977px;}
.hb_c01066{height:53.367188px;}
.he_c01066{height:54.443115px;}
.h4_c01066{height:55.590820px;}
.h6_c01066{height:67.450195px;}
.h5_c01066{height:86.721680px;}
.h3_c01066{height:89.956055px;}
.h0_c01066{height:1263.000000px;}
.w0_c01066{width:892.500000px;}
.x0_c01066{left:0.000000px;}
.x1_c01066{left:142.199850px;}
.x4_c01066{left:207.719790px;}
.x2_c01066{left:208.799175px;}
.x3_c01066{left:246.239850px;}
.x8_c01066{left:278.279250px;}
.x5_c01066{left:279.359475px;}
.x6_c01066{left:300.239850px;}
.x7_c01066{left:311.038950px;}
.x9_c01066{left:317.518635px;}
.xd_c01066{left:576.359550px;}
.xa_c01066{left:577.439670px;}
.xb_c01066{left:609.479235px;}
.x10_c01066{left:615.958920px;}
.x13_c01066{left:623.158770px;}
.xc_c01066{left:628.918350px;}
.xe_c01066{left:662.038920px;}
.xf_c01066{left:668.159370px;}
.x12_c01066{left:681.838950px;}
.x11_c01066{left:694.439250px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls17_c01066{letter-spacing:-5.480933pt;}
.ls14_c01066{letter-spacing:-3.817800pt;}
.lse_c01066{letter-spacing:-3.717333pt;}
.ls8_c01066{letter-spacing:-2.973867pt;}
.ls16_c01066{letter-spacing:-2.290933pt;}
.ls7_c01066{letter-spacing:-2.229947pt;}
.ls9_c01066{letter-spacing:-1.615000pt;}
.ls5_c01066{letter-spacing:-1.487387pt;}
.ls15_c01066{letter-spacing:-1.485800pt;}
.lsf_c01066{letter-spacing:-0.793333pt;}
.ls4_c01066{letter-spacing:-0.743467pt;}
.ls6_c01066{letter-spacing:0.000000pt;}
.lsd_c01066{letter-spacing:0.563593pt;}
.ls13_c01066{letter-spacing:0.859200pt;}
.ls12_c01066{letter-spacing:2.229947pt;}
.ls3_c01066{letter-spacing:2.973867pt;}
.lsb_c01066{letter-spacing:5.204720pt;}
.ls0_c01066{letter-spacing:11.147467pt;}
.ls1_c01066{letter-spacing:11.890933pt;}
.ls10_c01066{letter-spacing:15.608267pt;}
.ls11_c01066{letter-spacing:17.313600pt;}
.lsc_c01066{letter-spacing:24.515400pt;}
.lsa_c01066{letter-spacing:28.227420pt;}
.ls2_c01066{letter-spacing:49.050667pt;}
.ws0_c01066{word-spacing:0.000000pt;}
._15_c01066{margin-left:-175.159023pt;}
._16_c01066{margin-left:-9.083670pt;}
._e_c01066{margin-left:-7.969214pt;}
._13_c01066{margin-left:-7.073546pt;}
._1_c01066{margin-left:-6.065689pt;}
._d_c01066{margin-left:-4.995347pt;}
._14_c01066{margin-left:-3.118874pt;}
._10_c01066{margin-left:-1.655306pt;}
._2_c01066{width:1.270233pt;}
._11_c01066{width:2.842244pt;}
._12_c01066{width:4.258450pt;}
._6_c01066{width:5.713442pt;}
._a_c01066{width:8.416431pt;}
._c_c01066{width:12.394520pt;}
._b_c01066{width:13.826399pt;}
._4_c01066{width:16.673511pt;}
._8_c01066{width:20.390844pt;}
._5_c01066{width:21.823496pt;}
._0_c01066{width:23.010903pt;}
._7_c01066{width:24.118173pt;}
._9_c01066{width:26.399688pt;}
._f_c01066{width:31.198563pt;}
._3_c01066{width:564.889347pt;}
.fs8_c01066{font-size:38.666667pt;}
.fs9_c01066{font-size:40.000000pt;}
.fsb_c01066{font-size:42.000000pt;}
.fs6_c01066{font-size:42.666667pt;}
.fs0_c01066{font-size:45.333333pt;}
.fsc_c01066{font-size:46.000000pt;}
.fs7_c01066{font-size:46.666667pt;}
.fs1_c01066{font-size:47.333333pt;}
.fsa_c01066{font-size:48.000000pt;}
.fsd_c01066{font-size:49.333333pt;}
.fs3_c01066{font-size:50.000000pt;}
.fs5_c01066{font-size:60.666667pt;}
.fs2_c01066{font-size:76.666667pt;}
.fs4_c01066{font-size:78.000000pt;}
.y0_c01066{bottom:0.000000pt;}
.y33_c01066{bottom:163.513387pt;}
.y9b_c01066{bottom:163.838747pt;}
.y65_c01066{bottom:163.839867pt;}
.y32_c01066{bottom:180.794387pt;}
.y64_c01066{bottom:181.117347pt;}
.y9a_c01066{bottom:181.117507pt;}
.y31_c01066{bottom:198.073160pt;}
.y63_c01066{bottom:198.077760pt;}
.y99_c01066{bottom:198.077920pt;}
.y30_c01066{bottom:215.033573pt;}
.y62_c01066{bottom:215.358760pt;}
.y98_c01066{bottom:215.358933pt;}
.y2f_c01066{bottom:231.993960pt;}
.y61_c01066{bottom:232.319173pt;}
.y97_c01066{bottom:232.319333pt;}
.y2e_c01066{bottom:248.954360pt;}
.y60_c01066{bottom:248.958787pt;}
.y95_c01066{bottom:249.279320pt;}
.y96_c01066{bottom:249.279720pt;}
.y2d_c01066{bottom:265.595173pt;}
.y5f_c01066{bottom:265.599587pt;}
.y94_c01066{bottom:265.918920pt;}
.y2c_c01066{bottom:282.555587pt;}
.y5e_c01066{bottom:282.559840pt;}
.y92_c01066{bottom:282.878173pt;}
.y93_c01066{bottom:282.878920pt;}
.y2b_c01066{bottom:299.515973pt;}
.y5d_c01066{bottom:299.520240pt;}
.y91_c01066{bottom:299.838587pt;}
.y2a_c01066{bottom:316.476373pt;}
.y5c_c01066{bottom:316.799013pt;}
.y90_c01066{bottom:317.119587pt;}
.y29_c01066{bottom:333.436773pt;}
.y5b_c01066{bottom:333.439813pt;}
.y8e_c01066{bottom:333.758467pt;}
.y8f_c01066{bottom:333.758787pt;}
.y28_c01066{bottom:350.717800pt;}
.y5a_c01066{bottom:350.720840pt;}
.y8d_c01066{bottom:351.358027pt;}
.y27_c01066{bottom:367.678187pt;}
.y59_c01066{bottom:367.999613pt;}
.y8c_c01066{bottom:368.318427pt;}
.y26_c01066{bottom:384.956947pt;}
.y58_c01066{bottom:385.278387pt;}
.y8b_c01066{bottom:385.599440pt;}
.y25_c01066{bottom:402.235720pt;}
.y57_c01066{bottom:402.238773pt;}
.y8a_c01066{bottom:402.559840pt;}
.y24_c01066{bottom:419.835280pt;}
.y56_c01066{bottom:419.838333pt;}
.y89_c01066{bottom:420.159400pt;}
.y23_c01066{bottom:436.156347pt;}
.y55_c01066{bottom:436.479147pt;}
.y88_c01066{bottom:436.799013pt;}
.y22_c01066{bottom:453.435120pt;}
.y54_c01066{bottom:453.439560pt;}
.y87_c01066{bottom:453.759400pt;}
.y21_c01066{bottom:470.716120pt;}
.y53_c01066{bottom:470.720560pt;}
.y86_c01066{bottom:471.040427pt;}
.y20_c01066{bottom:487.994893pt;}
.y52_c01066{bottom:487.999333pt;}
.y85_c01066{bottom:488.319200pt;}
.y1f_c01066{bottom:504.635720pt;}
.y51_c01066{bottom:504.640160pt;}
.y84_c01066{bottom:504.960000pt;}
.y1e_c01066{bottom:521.596107pt;}
.y50_c01066{bottom:521.918920pt;}
.y83_c01066{bottom:522.238773pt;}
.y1d_c01066{bottom:538.556520pt;}
.y4f_c01066{bottom:538.879307pt;}
.y82_c01066{bottom:539.200120pt;}
.y4e_c01066{bottom:555.519973pt;}
.y1c_c01066{bottom:555.835280pt;}
.y81_c01066{bottom:555.839320pt;}
.y1b_c01066{bottom:572.795680pt;}
.y4d_c01066{bottom:572.799320pt;}
.y80_c01066{bottom:573.119733pt;}
.y1a_c01066{bottom:589.756080pt;}
.y4c_c01066{bottom:589.758813pt;}
.y7e_c01066{bottom:590.076253pt;}
.y7f_c01066{bottom:590.080120pt;}
.y19_c01066{bottom:606.716467pt;}
.y4b_c01066{bottom:606.719200pt;}
.y7d_c01066{bottom:607.036667pt;}
.y4a_c01066{bottom:623.676267pt;}
.y18_c01066{bottom:623.676880pt;}
.y7c_c01066{bottom:623.997053pt;}
.y49_c01066{bottom:640.957293pt;}
.y7b_c01066{bottom:640.957453pt;}
.y17_c01066{bottom:640.957880pt;}
.y48_c01066{bottom:658.236067pt;}
.y16_c01066{bottom:658.236653pt;}
.y7a_c01066{bottom:658.557013pt;}
.y15_c01066{bottom:674.877480pt;}
.y47_c01066{bottom:675.196453pt;}
.y79_c01066{bottom:675.196613pt;}
.y14_c01066{bottom:692.156253pt;}
.y46_c01066{bottom:692.156867pt;}
.y78_c01066{bottom:692.477640pt;}
.y13_c01066{bottom:709.116640pt;}
.y45_c01066{bottom:709.117253pt;}
.y77_c01066{bottom:709.438027pt;}
.y12_c01066{bottom:727.038027pt;}
.y44_c01066{bottom:727.038640pt;}
.y76_c01066{bottom:727.357173pt;}
.y11_c01066{bottom:743.677627pt;}
.y43_c01066{bottom:743.678240pt;}
.y75_c01066{bottom:743.997987pt;}
.y10_c01066{bottom:760.638040pt;}
.y42_c01066{bottom:760.638653pt;}
.y74_c01066{bottom:760.958400pt;}
.yf_c01066{bottom:777.598427pt;}
.y41_c01066{bottom:777.599040pt;}
.y73_c01066{bottom:777.918787pt;}
.ye_c01066{bottom:794.879453pt;}
.y40_c01066{bottom:794.880307pt;}
.y72_c01066{bottom:795.197547pt;}
.yd_c01066{bottom:811.839840pt;}
.y3f_c01066{bottom:811.840720pt;}
.y71_c01066{bottom:812.157960pt;}
.yb_c01066{bottom:828.799627pt;}
.yc_c01066{bottom:828.799880pt;}
.y70_c01066{bottom:829.118347pt;}
.y3e_c01066{bottom:829.119480pt;}
.y3d_c01066{bottom:845.760293pt;}
.ya_c01066{bottom:846.078387pt;}
.y6f_c01066{bottom:846.078760pt;}
.y9_c01066{bottom:863.038800pt;}
.y3c_c01066{bottom:863.039067pt;}
.y6e_c01066{bottom:863.039147pt;}
.y3a_c01066{bottom:880.312480pt;}
.y8_c01066{bottom:880.319800pt;}
.y3b_c01066{bottom:880.319827pt;}
.y6d_c01066{bottom:880.320173pt;}
.y39_c01066{bottom:897.272867pt;}
.y7_c01066{bottom:897.598573pt;}
.y6c_c01066{bottom:897.598933pt;}
.y38_c01066{bottom:914.233280pt;}
.y6_c01066{bottom:914.239400pt;}
.y6b_c01066{bottom:914.239747pt;}
.y37_c01066{bottom:931.193667pt;}
.y5_c01066{bottom:931.518173pt;}
.y69_c01066{bottom:931.518613pt;}
.y6a_c01066{bottom:931.519040pt;}
.y36_c01066{bottom:948.472427pt;}
.y4_c01066{bottom:948.478560pt;}
.y68_c01066{bottom:948.479000pt;}
.y35_c01066{bottom:965.753453pt;}
.y67_c01066{bottom:965.759320pt;}
.y3_c01066{bottom:965.759587pt;}
.y66_c01066{bottom:982.398920pt;}
.y2_c01066{bottom:982.399187pt;}
.y34_c01066{bottom:982.713853pt;}
.y1_c01066{bottom:1016.318760pt;}
.ha_c01066{height:40.312500pt;}
.h9_c01066{height:40.328125pt;}
.hc_c01066{height:41.220703pt;}
.h7_c01066{height:44.500000pt;}
.h1_c01066{height:44.802083pt;}
.hd_c01066{height:45.460938pt;}
.h8_c01066{height:46.119792pt;}
.h2_c01066{height:46.778646pt;}
.hb_c01066{height:47.437500pt;}
.he_c01066{height:48.393880pt;}
.h4_c01066{height:49.414063pt;}
.h6_c01066{height:59.955729pt;}
.h5_c01066{height:77.085938pt;}
.h3_c01066{height:79.960938pt;}
.h0_c01066{height:1122.666667pt;}
.w0_c01066{width:793.333333pt;}
.x0_c01066{left:0.000000pt;}
.x1_c01066{left:126.399867pt;}
.x4_c01066{left:184.639813pt;}
.x2_c01066{left:185.599267pt;}
.x3_c01066{left:218.879867pt;}
.x8_c01066{left:247.359333pt;}
.x5_c01066{left:248.319533pt;}
.x6_c01066{left:266.879867pt;}
.x7_c01066{left:276.479067pt;}
.x9_c01066{left:282.238787pt;}
.xd_c01066{left:512.319600pt;}
.xa_c01066{left:513.279707pt;}
.xb_c01066{left:541.759320pt;}
.x10_c01066{left:547.519040pt;}
.x13_c01066{left:553.918907pt;}
.xc_c01066{left:559.038533pt;}
.xe_c01066{left:588.479040pt;}
.xf_c01066{left:593.919440pt;}
.x12_c01066{left:606.079067pt;}
.x11_c01066{left:617.279333pt;}
}





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

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_4a45c87207dc2e64a46976f2.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01067;src:url('chunks/assets/font_1ea25e1b7fcbc1a7a589b36a.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01067;src:url('chunks/assets/font_1fe0fd030ac0c4d639171356.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_d8c43aca10da606eb943df9f.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01067;src:url('chunks/assets/font_582b423dab334042d0dfd52e.woff2')format("woff");}.ff5_c01067{font-family:ff5_c01067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01067;src:url('chunks/assets/font_6ba3920be4811a6ca15ac269.woff2')format("woff");}.ff6_c01067{font-family:ff6_c01067;line-height:1.364746;font-style:normal;font-weight: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_c01067;src:url('chunks/assets/font_1b4010fda7111dc2bddab818.woff2')format("woff");}.ff7_c01067{font-family:ff7_c01067;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27_c01067{transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);}
.m29_c01067{transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);}
.m28_c01067{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.m26_c01067{transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);}
.m1b_c01067{transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);}
.m2a_c01067{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m23_c01067{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m1d_c01067{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m2b_c01067{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);}
.m2c_c01067{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.m2f_c01067{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.mc_c01067{transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184211,0.000000,0.000000,0.250000,0,0);}
.m24_c01067{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.md_c01067{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m30_c01067{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m31_c01067{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m19_c01067{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m7_c01067{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m1a_c01067{transform:matrix(0.196721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196721,0.000000,0.000000,0.250000,0,0);}
.m4_c01067{transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197761,0.000000,0.000000,0.250000,0,0);}
.m1c_c01067{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m1f_c01067{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m2d_c01067{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m9_c01067{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m1e_c01067{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m32_c01067{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.ma_c01067{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m20_c01067{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m25_c01067{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m6_c01067{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_c01067{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m2e_c01067{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.me_c01067{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m1_c01067{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m33_c01067{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.mb_c01067{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m8_c01067{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m0_c01067{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m2_c01067{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m22_c01067{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m16_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01067{transform:matrix(0.298507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298507,0.000000,0.000000,0.250000,0,0);}
.m21_c01067{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m12_c01067{transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);}
.m17_c01067{transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);}
.mf_c01067{transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);}
.m18_c01067{transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391304,0.000000,0.000000,0.250000,0,0);}
.m3_c01067{transform:matrix(0.418103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418103,0.000000,0.000000,0.250000,0,0);}
.m14_c01067{transform:matrix(0.547619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547619,0.000000,0.000000,0.250000,0,0);}
.m10_c01067{transform:matrix(0.564815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564815,0.000000,0.000000,0.250000,0,0);}
.m15_c01067{transform:matrix(0.668750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668750,0.000000,0.000000,0.250000,0,0);}
.m13_c01067{transform:matrix(0.715517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715517,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls12_c01067{letter-spacing:-15.708150px;}
.ls10_c01067{letter-spacing:-8.145300px;}
.ls19_c01067{letter-spacing:-5.408393px;}
.ls1d_c01067{letter-spacing:-5.018400px;}
.ls1e_c01067{letter-spacing:-4.378027px;}
.ls7_c01067{letter-spacing:-4.352888px;}
.lsc_c01067{letter-spacing:-3.572438px;}
.lsf_c01067{letter-spacing:-3.468750px;}
.ls18_c01067{letter-spacing:-3.345600px;}
.ls6_c01067{letter-spacing:-2.508690px;}
.ls13_c01067{letter-spacing:-2.475247px;}
.lse_c01067{letter-spacing:-1.845563px;}
.lsb_c01067{letter-spacing:-1.747725px;}
.ls11_c01067{letter-spacing:-1.744200px;}
.ls4_c01067{letter-spacing:-1.673310px;}
.ls16_c01067{letter-spacing:-0.959100px;}
.lsd_c01067{letter-spacing:-0.863708px;}
.ls3_c01067{letter-spacing:-0.836400px;}
.ls14_c01067{letter-spacing:-0.523958px;}
.ls5_c01067{letter-spacing:0.000000px;}
.ls1c_c01067{letter-spacing:0.966600px;}
.ls9_c01067{letter-spacing:1.792200px;}
.ls1b_c01067{letter-spacing:2.075370px;}
.ls15_c01067{letter-spacing:2.745668px;}
.lsa_c01067{letter-spacing:2.843648px;}
.ls8_c01067{letter-spacing:3.105900px;}
.ls1a_c01067{letter-spacing:7.523010px;}
.ls0_c01067{letter-spacing:8.358390px;}
.ls1_c01067{letter-spacing:10.868100px;}
.ls2_c01067{letter-spacing:11.705010px;}
.ls17_c01067{letter-spacing:40.982850px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:0.000000px;}
._17_c01067{margin-left:-21.544440px;}
._1a_c01067{margin-left:-13.840731px;}
._18_c01067{margin-left:-11.974265px;}
._10_c01067{margin-left:-10.054441px;}
._19_c01067{margin-left:-7.818083px;}
._d_c01067{margin-left:-5.345068px;}
._e_c01067{margin-left:-3.606118px;}
._4_c01067{margin-left:-2.180743px;}
._f_c01067{margin-left:-1.120871px;}
._1_c01067{width:1.225998px;}
._a_c01067{width:2.672199px;}
._16_c01067{width:4.821440px;}
._1b_c01067{width:5.839216px;}
._6_c01067{width:12.721005px;}
._9_c01067{width:15.544599px;}
._3_c01067{width:22.945050px;}
._0_c01067{width:24.286568px;}
._15_c01067{width:25.522749px;}
._13_c01067{width:27.124250px;}
._c_c01067{width:29.694232px;}
._14_c01067{width:31.301150px;}
._11_c01067{width:53.172500px;}
._7_c01067{width:83.073816px;}
._b_c01067{width:86.419550px;}
._8_c01067{width:88.025732px;}
._5_c01067{width:89.767190px;}
._2_c01067{width:635.502656px;}
._12_c01067{width:637.602527px;}
.fc0_c01067{color:transparent;}
.fs10_c01067{font-size:15.750000px;}
.fsf_c01067{font-size:21.750000px;}
.fse_c01067{font-size:24.750000px;}
.fs11_c01067{font-size:30.000000px;}
.fs13_c01067{font-size:30.750000px;}
.fs14_c01067{font-size:34.500000px;}
.fsb_c01067{font-size:39.000000px;}
.fs2_c01067{font-size:43.500000px;}
.fs12_c01067{font-size:45.000000px;}
.fs8_c01067{font-size:45.750000px;}
.fs18_c01067{font-size:46.500000px;}
.fs15_c01067{font-size:48.000000px;}
.fs1_c01067{font-size:48.750000px;}
.fs3_c01067{font-size:50.250000px;}
.fs0_c01067{font-size:51.000000px;}
.fs7_c01067{font-size:51.750000px;}
.fs4_c01067{font-size:52.500000px;}
.fs16_c01067{font-size:53.250000px;}
.fsa_c01067{font-size:54.000000px;}
.fs6_c01067{font-size:55.500000px;}
.fs5_c01067{font-size:56.250000px;}
.fs9_c01067{font-size:57.000000px;}
.fs1a_c01067{font-size:57.750000px;}
.fs19_c01067{font-size:66.750000px;}
.fs17_c01067{font-size:72.000000px;}
.fsd_c01067{font-size:100.500000px;}
.fsc_c01067{font-size:121.500000px;}
.y0_c01067{bottom:0.000000px;}
.y61_c01067{bottom:187.198815px;}
.y43_c01067{bottom:187.198995px;}
.y7f_c01067{bottom:187.559685px;}
.y60_c01067{bottom:206.637435px;}
.y42_c01067{bottom:206.637615px;}
.y7e_c01067{bottom:207.000600px;}
.y5f_c01067{bottom:226.078560px;}
.y41_c01067{bottom:226.078770px;}
.y7d_c01067{bottom:226.080435px;}
.y5e_c01067{bottom:245.159025px;}
.y40_c01067{bottom:245.159205px;}
.y7c_c01067{bottom:245.880585px;}
.y5d_c01067{bottom:264.239460px;}
.y3f_c01067{bottom:264.239655px;}
.y7b_c01067{bottom:264.960600px;}
.y5c_c01067{bottom:283.678065px;}
.y3e_c01067{bottom:283.678275px;}
.y7a_c01067{bottom:284.399850px;}
.y3d_c01067{bottom:302.939640px;}
.y5b_c01067{bottom:303.119220px;}
.y79_c01067{bottom:303.479685px;}
.y5a_c01067{bottom:321.479250px;}
.y3c_c01067{bottom:321.659205px;}
.y78_c01067{bottom:322.200435px;}
.y3b_c01067{bottom:340.200165px;}
.y77_c01067{bottom:340.919535px;}
.y3a_c01067{bottom:359.638785px;}
.y76_c01067{bottom:359.999385px;}
.y39_c01067{bottom:378.539475px;}
.y59_c01067{bottom:378.719235px;}
.y75_c01067{bottom:379.440285px;}
.y38_c01067{bottom:397.798320px;}
.y58_c01067{bottom:397.799670px;}
.y74_c01067{bottom:398.879565px;}
.y37_c01067{bottom:416.878755px;}
.y57_c01067{bottom:416.880135px;}
.y73_c01067{bottom:417.600135px;}
.y36_c01067{bottom:436.499685px;}
.y56_c01067{bottom:437.039160px;}
.y72_c01067{bottom:437.039385px;}
.y35_c01067{bottom:455.759880px;}
.y55_c01067{bottom:455.760090px;}
.y71_c01067{bottom:456.480285px;}
.y34_c01067{bottom:475.918920px;}
.y54_c01067{bottom:475.919100px;}
.y70_c01067{bottom:476.639700px;}
.y33_c01067{bottom:494.639835px;}
.y53_c01067{bottom:494.640045px;}
.y6f_c01067{bottom:495.360300px;}
.y32_c01067{bottom:514.078440px;}
.y52_c01067{bottom:514.078650px;}
.y6e_c01067{bottom:514.799520px;}
.y31_c01067{bottom:532.799370px;}
.y51_c01067{bottom:532.799565px;}
.y6d_c01067{bottom:533.520270px;}
.y30_c01067{bottom:551.879820px;}
.y50_c01067{bottom:551.880015px;}
.y6c_c01067{bottom:552.240870px;}
.y2f_c01067{bottom:571.320975px;}
.y4f_c01067{bottom:571.321155px;}
.y6b_c01067{bottom:571.680135px;}
.y2e_c01067{bottom:590.579820px;}
.y4e_c01067{bottom:590.759760px;}
.y6a_c01067{bottom:591.119385px;}
.y2d_c01067{bottom:609.119610px;}
.y4d_c01067{bottom:609.119790px;}
.y69_c01067{bottom:609.840135px;}
.y2c_c01067{bottom:628.560750px;}
.y4c_c01067{bottom:628.560945px;}
.y68_c01067{bottom:629.280900px;}
.y2b_c01067{bottom:647.820285px;}
.y4b_c01067{bottom:647.999565px;}
.y67_c01067{bottom:648.360900px;}
.y2a_c01067{bottom:666.900285px;}
.y29_c01067{bottom:666.900405px;}
.y49_c01067{bottom:667.079655px;}
.y4a_c01067{bottom:667.080000px;}
.y66_c01067{bottom:667.800150px;}
.y47_c01067{bottom:685.799175px;}
.y48_c01067{bottom:685.800570px;}
.y28_c01067{bottom:685.801095px;}
.y65_c01067{bottom:686.159820px;}
.y46_c01067{bottom:705.237780px;}
.y27_c01067{bottom:705.419475px;}
.y64_c01067{bottom:705.959970px;}
.y45_c01067{bottom:724.318245px;}
.y26_c01067{bottom:724.320150px;}
.y63_c01067{bottom:725.039985px;}
.y25_c01067{bottom:743.580375px;}
.y44_c01067{bottom:743.759370px;}
.y62_c01067{bottom:743.760720px;}
.y24_c01067{bottom:782.280345px;}
.y1a_c01067{bottom:916.921185px;}
.y10_c01067{bottom:917.100135px;}
.y23_c01067{bottom:917.279850px;}
.ye_c01067{bottom:936.180435px;}
.yf_c01067{bottom:936.359805px;}
.y22_c01067{bottom:936.720705px;}
.y19_c01067{bottom:955.080420px;}
.y18_c01067{bottom:955.080645px;}
.yd_c01067{bottom:955.081095px;}
.y21_c01067{bottom:955.439670px;}
.y17_c01067{bottom:974.519250px;}
.yc_c01067{bottom:974.519715px;}
.y20_c01067{bottom:974.880615px;}
.y16_c01067{bottom:993.599700px;}
.ya_c01067{bottom:993.782040px;}
.yb_c01067{bottom:993.960570px;}
.y9_c01067{bottom:1012.861125px;}
.y1f_c01067{bottom:1013.040615px;}
.y15_c01067{bottom:1013.040855px;}
.y8_c01067{bottom:1032.299745px;}
.y14_c01067{bottom:1032.479460px;}
.y1e_c01067{bottom:1032.479640px;}
.y1d_c01067{bottom:1051.559685px;}
.y7_c01067{bottom:1051.740870px;}
.y13_c01067{bottom:1051.920600px;}
.y5_c01067{bottom:1070.820825px;}
.y6_c01067{bottom:1071.000555px;}
.y1c_c01067{bottom:1076.039985px;}
.y12_c01067{bottom:1090.079400px;}
.y3_c01067{bottom:1090.080120px;}
.y4_c01067{bottom:1090.080420px;}
.y11_c01067{bottom:1108.798965px;}
.y1b_c01067{bottom:1108.799565px;}
.y2_c01067{bottom:1108.980810px;}
.y1_c01067{bottom:1147.679625px;}
.h15_c01067{height:16.426758px;}
.h14_c01067{height:22.684570px;}
.h13_c01067{height:24.943359px;}
.h18_c01067{height:30.389648px;}
.h16_c01067{height:31.289062px;}
.h19_c01067{height:35.982422px;}
.h10_c01067{height:40.675781px;}
.h5_c01067{height:43.839844px;}
.h4_c01067{height:45.369141px;}
.h1e_c01067{height:45.955078px;}
.hc_c01067{height:46.107422px;}
.h17_c01067{height:46.933594px;}
.h20_c01067{height:47.437500px;}
.he_c01067{height:47.715820px;}
.h1d_c01067{height:48.178711px;}
.h3_c01067{height:49.130859px;}
.h6_c01067{height:49.661133px;}
.h1a_c01067{height:50.062500px;}
.h1_c01067{height:50.402344px;}
.h2_c01067{height:51.121384px;}
.h7_c01067{height:51.121444px;}
.hb_c01067{height:51.143555px;}
.h8_c01067{height:51.884766px;}
.h1b_c01067{height:52.625977px;}
.hf_c01067{height:53.367188px;}
.ha_c01067{height:54.849609px;}
.h9_c01067{height:55.590820px;}
.hd_c01067{height:56.332031px;}
.h21_c01067{height:56.650269px;}
.h1f_c01067{height:65.967773px;}
.h1c_c01067{height:75.093750px;}
.h12_c01067{height:104.818359px;}
.h11_c01067{height:126.720703px;}
.h0_c01067{height:1263.000000px;}
.w0_c01067{width:892.500000px;}
.x0_c01067{left:0.000000px;}
.x13_c01067{left:136.800000px;}
.x1_c01067{left:144.358665px;}
.x2_c01067{left:164.878830px;}
.x14_c01067{left:209.880885px;}
.x4_c01067{left:210.958950px;}
.x15_c01067{left:247.678500px;}
.x3_c01067{left:249.118785px;}
.x1a_c01067{left:279.720270px;}
.x9_c01067{left:280.798950px;}
.x5_c01067{left:281.879220px;}
.x7_c01067{left:313.919535px;}
.x6_c01067{left:326.878950px;}
.x18_c01067{left:332.279250px;}
.x8_c01067{left:333.719535px;}
.x19_c01067{left:358.199850px;}
.xa_c01067{left:365.038950px;}
.x16_c01067{left:367.199385px;}
.x17_c01067{left:371.518635px;}
.x1b_c01067{left:566.639100px;}
.xb_c01067{left:567.718500px;}
.x1c_c01067{left:578.519070px;}
.xc_c01067{left:579.598530px;}
.x12_c01067{left:580.679670px;}
.x20_c01067{left:591.839535px;}
.xe_c01067{left:602.638545px;}
.x1f_c01067{left:611.998950px;}
.x1d_c01067{left:618.478635px;}
.x1e_c01067{left:631.439670px;}
.xf_c01067{left:638.278800px;}
.x10_c01067{left:657.719520px;}
.x21_c01067{left:663.838530px;}
.xd_c01067{left:677.519670px;}
.x22_c01067{left:690.479235px;}
.x11_c01067{left:703.438620px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls12_c01067{letter-spacing:-13.962800pt;}
.ls10_c01067{letter-spacing:-7.240267pt;}
.ls19_c01067{letter-spacing:-4.807460pt;}
.ls1d_c01067{letter-spacing:-4.460800pt;}
.ls1e_c01067{letter-spacing:-3.891580pt;}
.ls7_c01067{letter-spacing:-3.869233pt;}
.lsc_c01067{letter-spacing:-3.175500pt;}
.lsf_c01067{letter-spacing:-3.083333pt;}
.ls18_c01067{letter-spacing:-2.973867pt;}
.ls6_c01067{letter-spacing:-2.229947pt;}
.ls13_c01067{letter-spacing:-2.200220pt;}
.lse_c01067{letter-spacing:-1.640500pt;}
.lsb_c01067{letter-spacing:-1.553533pt;}
.ls11_c01067{letter-spacing:-1.550400pt;}
.ls4_c01067{letter-spacing:-1.487387pt;}
.ls16_c01067{letter-spacing:-0.852533pt;}
.lsd_c01067{letter-spacing:-0.767740pt;}
.ls3_c01067{letter-spacing:-0.743467pt;}
.ls14_c01067{letter-spacing:-0.465740pt;}
.ls5_c01067{letter-spacing:0.000000pt;}
.ls1c_c01067{letter-spacing:0.859200pt;}
.ls9_c01067{letter-spacing:1.593067pt;}
.ls1b_c01067{letter-spacing:1.844773pt;}
.ls15_c01067{letter-spacing:2.440593pt;}
.lsa_c01067{letter-spacing:2.527687pt;}
.ls8_c01067{letter-spacing:2.760800pt;}
.ls1a_c01067{letter-spacing:6.687120pt;}
.ls0_c01067{letter-spacing:7.429680pt;}
.ls1_c01067{letter-spacing:9.660533pt;}
.ls2_c01067{letter-spacing:10.404453pt;}
.ls17_c01067{letter-spacing:36.429200pt;}
.ws0_c01067{word-spacing:0.000000pt;}
._17_c01067{margin-left:-19.150613pt;}
._1a_c01067{margin-left:-12.302872pt;}
._18_c01067{margin-left:-10.643791pt;}
._10_c01067{margin-left:-8.937281pt;}
._19_c01067{margin-left:-6.949407pt;}
._d_c01067{margin-left:-4.751171pt;}
._e_c01067{margin-left:-3.205438pt;}
._4_c01067{margin-left:-1.938438pt;}
._f_c01067{margin-left:-0.996330pt;}
._1_c01067{width:1.089776pt;}
._a_c01067{width:2.375288pt;}
._16_c01067{width:4.285724pt;}
._1b_c01067{width:5.190414pt;}
._6_c01067{width:11.307560pt;}
._9_c01067{width:13.817422pt;}
._3_c01067{width:20.395600pt;}
._0_c01067{width:21.588060pt;}
._15_c01067{width:22.686888pt;}
._13_c01067{width:24.110444pt;}
._c_c01067{width:26.394873pt;}
._14_c01067{width:27.823244pt;}
._11_c01067{width:47.264444pt;}
._7_c01067{width:73.843392pt;}
._b_c01067{width:76.817378pt;}
._8_c01067{width:78.245096pt;}
._5_c01067{width:79.793058pt;}
._2_c01067{width:564.891250pt;}
._12_c01067{width:566.757802pt;}
.fs10_c01067{font-size:14.000000pt;}
.fsf_c01067{font-size:19.333333pt;}
.fse_c01067{font-size:22.000000pt;}
.fs11_c01067{font-size:26.666667pt;}
.fs13_c01067{font-size:27.333333pt;}
.fs14_c01067{font-size:30.666667pt;}
.fsb_c01067{font-size:34.666667pt;}
.fs2_c01067{font-size:38.666667pt;}
.fs12_c01067{font-size:40.000000pt;}
.fs8_c01067{font-size:40.666667pt;}
.fs18_c01067{font-size:41.333333pt;}
.fs15_c01067{font-size:42.666667pt;}
.fs1_c01067{font-size:43.333333pt;}
.fs3_c01067{font-size:44.666667pt;}
.fs0_c01067{font-size:45.333333pt;}
.fs7_c01067{font-size:46.000000pt;}
.fs4_c01067{font-size:46.666667pt;}
.fs16_c01067{font-size:47.333333pt;}
.fsa_c01067{font-size:48.000000pt;}
.fs6_c01067{font-size:49.333333pt;}
.fs5_c01067{font-size:50.000000pt;}
.fs9_c01067{font-size:50.666667pt;}
.fs1a_c01067{font-size:51.333333pt;}
.fs19_c01067{font-size:59.333333pt;}
.fs17_c01067{font-size:64.000000pt;}
.fsd_c01067{font-size:89.333333pt;}
.fsc_c01067{font-size:108.000000pt;}
.y0_c01067{bottom:0.000000pt;}
.y61_c01067{bottom:166.398947pt;}
.y43_c01067{bottom:166.399107pt;}
.y7f_c01067{bottom:166.719720pt;}
.y60_c01067{bottom:183.677720pt;}
.y42_c01067{bottom:183.677880pt;}
.y7e_c01067{bottom:184.000533pt;}
.y5f_c01067{bottom:200.958720pt;}
.y41_c01067{bottom:200.958907pt;}
.y7d_c01067{bottom:200.960387pt;}
.y5e_c01067{bottom:217.919133pt;}
.y40_c01067{bottom:217.919293pt;}
.y7c_c01067{bottom:218.560520pt;}
.y5d_c01067{bottom:234.879520pt;}
.y3f_c01067{bottom:234.879693pt;}
.y7b_c01067{bottom:235.520533pt;}
.y5c_c01067{bottom:252.158280pt;}
.y3e_c01067{bottom:252.158467pt;}
.y7a_c01067{bottom:252.799867pt;}
.y3d_c01067{bottom:269.279680pt;}
.y5b_c01067{bottom:269.439307pt;}
.y79_c01067{bottom:269.759720pt;}
.y5a_c01067{bottom:285.759333pt;}
.y3c_c01067{bottom:285.919293pt;}
.y78_c01067{bottom:286.400387pt;}
.y3b_c01067{bottom:302.400147pt;}
.y77_c01067{bottom:303.039587pt;}
.y3a_c01067{bottom:319.678920pt;}
.y76_c01067{bottom:319.999453pt;}
.y39_c01067{bottom:336.479533pt;}
.y59_c01067{bottom:336.639320pt;}
.y75_c01067{bottom:337.280253pt;}
.y38_c01067{bottom:353.598507pt;}
.y58_c01067{bottom:353.599707pt;}
.y74_c01067{bottom:354.559613pt;}
.y37_c01067{bottom:370.558893pt;}
.y57_c01067{bottom:370.560120pt;}
.y73_c01067{bottom:371.200120pt;}
.y36_c01067{bottom:387.999720pt;}
.y56_c01067{bottom:388.479253pt;}
.y72_c01067{bottom:388.479453pt;}
.y35_c01067{bottom:405.119893pt;}
.y55_c01067{bottom:405.120080pt;}
.y71_c01067{bottom:405.760253pt;}
.y34_c01067{bottom:423.039040pt;}
.y54_c01067{bottom:423.039200pt;}
.y70_c01067{bottom:423.679733pt;}
.y33_c01067{bottom:439.679853pt;}
.y53_c01067{bottom:439.680040pt;}
.y6f_c01067{bottom:440.320267pt;}
.y32_c01067{bottom:456.958613pt;}
.y52_c01067{bottom:456.958800pt;}
.y6e_c01067{bottom:457.599573pt;}
.y31_c01067{bottom:473.599440pt;}
.y51_c01067{bottom:473.599613pt;}
.y6d_c01067{bottom:474.240240pt;}
.y30_c01067{bottom:490.559840pt;}
.y50_c01067{bottom:490.560013pt;}
.y6c_c01067{bottom:490.880773pt;}
.y2f_c01067{bottom:507.840867pt;}
.y4f_c01067{bottom:507.841027pt;}
.y6b_c01067{bottom:508.160120pt;}
.y2e_c01067{bottom:524.959840pt;}
.y4e_c01067{bottom:525.119787pt;}
.y6a_c01067{bottom:525.439453pt;}
.y2d_c01067{bottom:541.439653pt;}
.y4d_c01067{bottom:541.439813pt;}
.y69_c01067{bottom:542.080120pt;}
.y2c_c01067{bottom:558.720667pt;}
.y4c_c01067{bottom:558.720840pt;}
.y68_c01067{bottom:559.360800pt;}
.y2b_c01067{bottom:575.840253pt;}
.y4b_c01067{bottom:575.999613pt;}
.y67_c01067{bottom:576.320800pt;}
.y2a_c01067{bottom:592.800253pt;}
.y29_c01067{bottom:592.800360pt;}
.y49_c01067{bottom:592.959693pt;}
.y4a_c01067{bottom:592.960000pt;}
.y66_c01067{bottom:593.600133pt;}
.y47_c01067{bottom:609.599267pt;}
.y48_c01067{bottom:609.600507pt;}
.y28_c01067{bottom:609.600973pt;}
.y65_c01067{bottom:609.919840pt;}
.y46_c01067{bottom:626.878027pt;}
.y27_c01067{bottom:627.039533pt;}
.y64_c01067{bottom:627.519973pt;}
.y45_c01067{bottom:643.838440pt;}
.y26_c01067{bottom:643.840133pt;}
.y63_c01067{bottom:644.479987pt;}
.y25_c01067{bottom:660.960333pt;}
.y44_c01067{bottom:661.119440pt;}
.y62_c01067{bottom:661.120640pt;}
.y24_c01067{bottom:695.360307pt;}
.y1a_c01067{bottom:815.041053pt;}
.y10_c01067{bottom:815.200120pt;}
.y23_c01067{bottom:815.359867pt;}
.ye_c01067{bottom:832.160387pt;}
.yf_c01067{bottom:832.319827pt;}
.y22_c01067{bottom:832.640627pt;}
.y19_c01067{bottom:848.960373pt;}
.y18_c01067{bottom:848.960573pt;}
.yd_c01067{bottom:848.960973pt;}
.y21_c01067{bottom:849.279707pt;}
.y17_c01067{bottom:866.239333pt;}
.yc_c01067{bottom:866.239747pt;}
.y20_c01067{bottom:866.560547pt;}
.y16_c01067{bottom:883.199733pt;}
.ya_c01067{bottom:883.361813pt;}
.yb_c01067{bottom:883.520507pt;}
.y9_c01067{bottom:900.321000pt;}
.y1f_c01067{bottom:900.480547pt;}
.y15_c01067{bottom:900.480760pt;}
.y8_c01067{bottom:917.599773pt;}
.y14_c01067{bottom:917.759520pt;}
.y1e_c01067{bottom:917.759680pt;}
.y1d_c01067{bottom:934.719720pt;}
.y7_c01067{bottom:934.880773pt;}
.y13_c01067{bottom:935.040533pt;}
.y5_c01067{bottom:951.840733pt;}
.y6_c01067{bottom:952.000493pt;}
.y1c_c01067{bottom:956.479987pt;}
.y12_c01067{bottom:968.959467pt;}
.y3_c01067{bottom:968.960107pt;}
.y4_c01067{bottom:968.960373pt;}
.y11_c01067{bottom:985.599080pt;}
.y1b_c01067{bottom:985.599613pt;}
.y2_c01067{bottom:985.760720pt;}
.y1_c01067{bottom:1020.159667pt;}
.h15_c01067{height:14.601562pt;}
.h14_c01067{height:20.164062pt;}
.h13_c01067{height:22.171875pt;}
.h18_c01067{height:27.013021pt;}
.h16_c01067{height:27.812500pt;}
.h19_c01067{height:31.984375pt;}
.h10_c01067{height:36.156250pt;}
.h5_c01067{height:38.968750pt;}
.h4_c01067{height:40.328125pt;}
.h1e_c01067{height:40.848958pt;}
.hc_c01067{height:40.984375pt;}
.h17_c01067{height:41.718750pt;}
.h20_c01067{height:42.166667pt;}
.he_c01067{height:42.414062pt;}
.h1d_c01067{height:42.825521pt;}
.h3_c01067{height:43.671875pt;}
.h6_c01067{height:44.143229pt;}
.h1a_c01067{height:44.500000pt;}
.h1_c01067{height:44.802083pt;}
.h2_c01067{height:45.441230pt;}
.h7_c01067{height:45.441283pt;}
.hb_c01067{height:45.460938pt;}
.h8_c01067{height:46.119792pt;}
.h1b_c01067{height:46.778646pt;}
.hf_c01067{height:47.437500pt;}
.ha_c01067{height:48.755208pt;}
.h9_c01067{height:49.414063pt;}
.hd_c01067{height:50.072917pt;}
.h21_c01067{height:50.355794pt;}
.h1f_c01067{height:58.638021pt;}
.h1c_c01067{height:66.750000pt;}
.h12_c01067{height:93.171875pt;}
.h11_c01067{height:112.640625pt;}
.h0_c01067{height:1122.666667pt;}
.w0_c01067{width:793.333333pt;}
.x0_c01067{left:0.000000pt;}
.x13_c01067{left:121.600000pt;}
.x1_c01067{left:128.318813pt;}
.x2_c01067{left:146.558960pt;}
.x14_c01067{left:186.560787pt;}
.x4_c01067{left:187.519067pt;}
.x15_c01067{left:220.158667pt;}
.x3_c01067{left:221.438920pt;}
.x1a_c01067{left:248.640240pt;}
.x9_c01067{left:249.599067pt;}
.x5_c01067{left:250.559307pt;}
.x7_c01067{left:279.039587pt;}
.x6_c01067{left:290.559067pt;}
.x18_c01067{left:295.359333pt;}
.x8_c01067{left:296.639587pt;}
.x19_c01067{left:318.399867pt;}
.xa_c01067{left:324.479067pt;}
.x16_c01067{left:326.399453pt;}
.x17_c01067{left:330.238787pt;}
.x1b_c01067{left:503.679200pt;}
.xb_c01067{left:504.638667pt;}
.x1c_c01067{left:514.239173pt;}
.xc_c01067{left:515.198693pt;}
.x12_c01067{left:516.159707pt;}
.x20_c01067{left:526.079587pt;}
.xe_c01067{left:535.678707pt;}
.x1f_c01067{left:543.999067pt;}
.x1d_c01067{left:549.758787pt;}
.x1e_c01067{left:561.279707pt;}
.xf_c01067{left:567.358933pt;}
.x10_c01067{left:584.639573pt;}
.x21_c01067{left:590.078693pt;}
.xd_c01067{left:602.239707pt;}
.x22_c01067{left:613.759320pt;}
.x11_c01067{left:625.278773pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_34cd32f5bff6d88d4abbaa53.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_12436bb215054cec6f43b9b7.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01068;src:url('chunks/assets/font_45239dc7ef45757fe7f82ee4.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01068;src:url('chunks/assets/font_82420e22e1088367a5be73e4.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01068;src:url('chunks/assets/font_2a7def74ba8ecc286659da25.woff2')format("woff");}.ff5_c01068{font-family:ff5_c01068;line-height:1.281250;font-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_c01068{transform:matrix(0.141753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141753,0.000000,0.000000,0.250000,0,0);}
.m12_c01068{transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);}
.m8_c01068{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.me_c01068{transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196154,0.000000,0.000000,0.250000,0,0);}
.m9_c01068{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m3_c01068{transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203846,0.000000,0.000000,0.250000,0,0);}
.m7_c01068{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.mb_c01068{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.md_c01068{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.m6_c01068{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.mc_c01068{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m13_c01068{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c01068{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m1_c01068{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m0_c01068{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.ma_c01068{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_c01068{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m4_c01068{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.mf_c01068{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m10_c01068{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m2_c01068{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.ls1e_c01068{letter-spacing:-5.788688px;}
.ls1d_c01068{letter-spacing:-4.285920px;}
.lsd_c01068{letter-spacing:-3.579750px;}
.ls15_c01068{letter-spacing:-3.445650px;}
.ls11_c01068{letter-spacing:-3.421875px;}
.ls8_c01068{letter-spacing:-3.345600px;}
.ls9_c01068{letter-spacing:-2.758763px;}
.lsa_c01068{letter-spacing:-2.568323px;}
.ls3_c01068{letter-spacing:-2.508690px;}
.ls13_c01068{letter-spacing:-2.499525px;}
.ls1a_c01068{letter-spacing:-2.427593px;}
.ls5_c01068{letter-spacing:-2.404050px;}
.ls17_c01068{letter-spacing:-1.911000px;}
.ls6_c01068{letter-spacing:-1.837875px;}
.ls16_c01068{letter-spacing:-1.764900px;}
.lsc_c01068{letter-spacing:-1.744200px;}
.ls4_c01068{letter-spacing:-1.681875px;}
.ls2_c01068{letter-spacing:-1.673310px;}
.ls14_c01068{letter-spacing:-0.888743px;}
.ls18_c01068{letter-spacing:-0.882450px;}
.ls1_c01068{letter-spacing:-0.836400px;}
.ls7_c01068{letter-spacing:-0.824100px;}
.lsf_c01068{letter-spacing:0.000000px;}
.ls12_c01068{letter-spacing:0.931875px;}
.ls1b_c01068{letter-spacing:1.324050px;}
.ls1c_c01068{letter-spacing:2.484983px;}
.ls19_c01068{letter-spacing:2.508690px;}
.lse_c01068{letter-spacing:2.934600px;}
.lsb_c01068{letter-spacing:5.018400px;}
.ls10_c01068{letter-spacing:5.855310px;}
.ls0_c01068{letter-spacing:18.395700px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:0.000000px;}
._12_c01068{margin-left:-38.189745px;}
._d_c01068{margin-left:-12.294612px;}
._10_c01068{margin-left:-9.436505px;}
._f_c01068{margin-left:-8.088232px;}
._11_c01068{margin-left:-7.084084px;}
._c_c01068{margin-left:-5.345068px;}
._5_c01068{margin-left:-3.622037px;}
._e_c01068{margin-left:-1.871784px;}
._1_c01068{width:1.226065px;}
._a_c01068{width:3.010020px;}
._b_c01068{width:4.868259px;}
._7_c01068{width:19.736565px;}
._3_c01068{width:21.338199px;}
._6_c01068{width:22.939700px;}
._0_c01068{width:24.286568px;}
._4_c01068{width:26.162231px;}
._8_c01068{width:29.699582px;}
._9_c01068{width:31.312921px;}
._2_c01068{width:637.114189px;}
.fc0_c01068{color:transparent;}
.fs2_c01068{font-size:46.500000px;}
.fsc_c01068{font-size:48.000000px;}
.fs1_c01068{font-size:48.750000px;}
.fs3_c01068{font-size:50.250000px;}
.fs0_c01068{font-size:51.000000px;}
.fs9_c01068{font-size:51.750000px;}
.fs8_c01068{font-size:52.500000px;}
.fs7_c01068{font-size:53.250000px;}
.fs5_c01068{font-size:54.000000px;}
.fs4_c01068{font-size:54.750000px;}
.fs6_c01068{font-size:55.500000px;}
.fsd_c01068{font-size:56.250000px;}
.fsb_c01068{font-size:68.250000px;}
.fsa_c01068{font-size:72.750000px;}
.y0_c01068{bottom:0.000000px;}
.y34_c01068{bottom:185.393010px;}
.y66_c01068{bottom:185.396730px;}
.y9a_c01068{bottom:185.399250px;}
.y33_c01068{bottom:204.834135px;}
.y65_c01068{bottom:204.837870px;}
.y98_c01068{bottom:204.838905px;}
.y99_c01068{bottom:204.840135px;}
.y32_c01068{bottom:223.914600px;}
.y64_c01068{bottom:223.918320px;}
.y97_c01068{bottom:223.919355px;}
.y31_c01068{bottom:243.353205px;}
.y63_c01068{bottom:243.356940px;}
.y96_c01068{bottom:243.718845px;}
.y62_c01068{bottom:262.437375px;}
.y94_c01068{bottom:262.438410px;}
.y30_c01068{bottom:262.794345px;}
.y2f_c01068{bottom:281.874795px;}
.y61_c01068{bottom:281.878530px;}
.y93_c01068{bottom:281.879565px;}
.y2e_c01068{bottom:300.955245px;}
.y60_c01068{bottom:300.958965px;}
.y92_c01068{bottom:300.960000px;}
.y2d_c01068{bottom:320.035695px;}
.y5f_c01068{bottom:320.039430px;}
.y91_c01068{bottom:320.040000px;}
.y2c_c01068{bottom:339.116130px;}
.y90_c01068{bottom:339.119655px;}
.y5e_c01068{bottom:339.119865px;}
.y2b_c01068{bottom:358.196595px;}
.y8f_c01068{bottom:358.200090px;}
.y5d_c01068{bottom:358.200330px;}
.y95_c01068{bottom:376.919355px;}
.y8e_c01068{bottom:376.921035px;}
.y5c_c01068{bottom:376.921230px;}
.y2a_c01068{bottom:377.277030px;}
.y29_c01068{bottom:396.357495px;}
.y8d_c01068{bottom:396.359640px;}
.y5b_c01068{bottom:396.359850px;}
.y28_c01068{bottom:415.437930px;}
.y5a_c01068{bottom:415.439670px;}
.y8c_c01068{bottom:415.440075px;}
.y27_c01068{bottom:435.237435px;}
.y59_c01068{bottom:435.239820px;}
.y8b_c01068{bottom:435.599115px;}
.y26_c01068{bottom:454.678575px;}
.y57_c01068{bottom:454.679610px;}
.y58_c01068{bottom:454.680720px;}
.y25_c01068{bottom:474.476715px;}
.y56_c01068{bottom:474.477750px;}
.y8a_c01068{bottom:474.479235px;}
.y88_c01068{bottom:493.198545px;}
.y55_c01068{bottom:493.198650px;}
.y89_c01068{bottom:493.199850px;}
.y24_c01068{bottom:493.557180px;}
.y87_c01068{bottom:512.998050px;}
.y54_c01068{bottom:512.998170px;}
.y23_c01068{bottom:512.998305px;}
.y86_c01068{bottom:531.718965px;}
.y53_c01068{bottom:531.719085px;}
.y22_c01068{bottom:532.078770px;}
.y85_c01068{bottom:550.438515px;}
.y52_c01068{bottom:550.799535px;}
.y21_c01068{bottom:550.799670px;}
.y84_c01068{bottom:569.518980px;}
.y51_c01068{bottom:569.519100px;}
.y20_c01068{bottom:569.880135px;}
.y83_c01068{bottom:588.960120px;}
.y50_c01068{bottom:588.960225px;}
.y1f_c01068{bottom:588.960570px;}
.y82_c01068{bottom:607.679670px;}
.y1d_c01068{bottom:608.040000px;}
.y1e_c01068{bottom:608.040570px;}
.y4f_c01068{bottom:608.040690px;}
.y81_c01068{bottom:626.758140px;}
.y4e_c01068{bottom:626.760240px;}
.y1c_c01068{bottom:627.120435px;}
.y4d_c01068{bottom:645.840690px;}
.y80_c01068{bottom:646.199265px;}
.y1b_c01068{bottom:646.200435px;}
.y7f_c01068{bottom:665.637885px;}
.y1a_c01068{bottom:665.639700px;}
.y4c_c01068{bottom:665.640195px;}
.y7e_c01068{bottom:684.358815px;}
.y4b_c01068{bottom:684.361110px;}
.y18_c01068{bottom:684.713910px;}
.y19_c01068{bottom:684.719520px;}
.y7d_c01068{bottom:704.158305px;}
.y4a_c01068{bottom:704.160615px;}
.y17_c01068{bottom:704.513415px;}
.y7c_c01068{bottom:723.238770px;}
.y49_c01068{bottom:723.241065px;}
.y16_c01068{bottom:723.593850px;}
.y7b_c01068{bottom:742.319205px;}
.y48_c01068{bottom:742.679670px;}
.y15_c01068{bottom:743.035005px;}
.y7a_c01068{bottom:761.399670px;}
.y14_c01068{bottom:761.754570px;}
.y47_c01068{bottom:761.758605px;}
.y79_c01068{bottom:780.480105px;}
.y46_c01068{bottom:780.839055px;}
.y13_c01068{bottom:781.195695px;}
.y78_c01068{bottom:799.560555px;}
.y12_c01068{bottom:799.915260px;}
.y45_c01068{bottom:799.919490px;}
.y77_c01068{bottom:818.999175px;}
.y44_c01068{bottom:819.360255px;}
.y11_c01068{bottom:819.714780px;}
.y43_c01068{bottom:838.440315px;}
.y10_c01068{bottom:838.795215px;}
.y42_c01068{bottom:858.231945px;}
.yf_c01068{bottom:858.236370px;}
.y76_c01068{bottom:858.240300px;}
.y41_c01068{bottom:877.312410px;}
.y75_c01068{bottom:877.320735px;}
.ye_c01068{bottom:877.674975px;}
.y40_c01068{bottom:896.751015px;}
.yd_c01068{bottom:896.755410px;}
.y74_c01068{bottom:896.759355px;}
.y73_c01068{bottom:915.119385px;}
.y3f_c01068{bottom:915.471930px;}
.yc_c01068{bottom:915.835875px;}
.y72_c01068{bottom:934.918920px;}
.y3e_c01068{bottom:935.271450px;}
.yb_c01068{bottom:935.277015px;}
.y3d_c01068{bottom:953.991000px;}
.y70_c01068{bottom:953.997600px;}
.y71_c01068{bottom:953.999355px;}
.ya_c01068{bottom:954.357465px;}
.y3c_c01068{bottom:973.432140px;}
.y9_c01068{bottom:973.437900px;}
.y6f_c01068{bottom:973.438725px;}
.y6e_c01068{bottom:992.158290px;}
.y3b_c01068{bottom:992.512590px;}
.y8_c01068{bottom:992.518365px;}
.y3a_c01068{bottom:1011.232155px;}
.y6d_c01068{bottom:1011.238740px;}
.y7_c01068{bottom:1011.598800px;}
.y6c_c01068{bottom:1030.319190px;}
.y39_c01068{bottom:1030.673280px;}
.y6_c01068{bottom:1030.679265px;}
.y6b_c01068{bottom:1049.398755px;}
.y38_c01068{bottom:1049.753745px;}
.y5_c01068{bottom:1050.117870px;}
.y6a_c01068{bottom:1068.479190px;}
.y37_c01068{bottom:1068.834180px;}
.y4_c01068{bottom:1069.198305px;}
.y68_c01068{bottom:1087.917000px;}
.y69_c01068{bottom:1087.919955px;}
.y36_c01068{bottom:1088.272800px;}
.y3_c01068{bottom:1088.639460px;}
.y67_c01068{bottom:1106.636565px;}
.y35_c01068{bottom:1107.353250px;}
.y2_c01068{bottom:1107.719895px;}
.y1_c01068{bottom:1146.959385px;}
.hc_c01068{height:45.637207px;}
.h6_c01068{height:47.845459px;}
.h11_c01068{height:48.375000px;}
.h3_c01068{height:48.498047px;}
.h4_c01068{height:49.130859px;}
.h5_c01068{height:49.661133px;}
.h1_c01068{height:50.402344px;}
.h2_c01068{height:50.844727px;}
.he_c01068{height:51.143555px;}
.hb_c01068{height:51.884766px;}
.ha_c01068{height:52.625977px;}
.h8_c01068{height:53.367188px;}
.h7_c01068{height:54.108398px;}
.hd_c01068{height:54.443115px;}
.h9_c01068{height:54.849609px;}
.h12_c01068{height:55.590820px;}
.h10_c01068{height:67.450195px;}
.hf_c01068{height:71.897461px;}
.h0_c01068{height:1263.000000px;}
.w0_c01068{width:892.500000px;}
.x0_c01068{left:0.000000px;}
.x1_c01068{left:149.759100px;}
.x3_c01068{left:214.917570px;}
.x2_c01068{left:216.000645px;}
.x4_c01068{left:253.078785px;}
.x6_c01068{left:285.479235px;}
.x5_c01068{left:286.558725px;}
.xb_c01068{left:304.559100px;}
.x8_c01068{left:324.718500px;}
.x7_c01068{left:337.679700px;}
.x9_c01068{left:344.159385px;}
.xa_c01068{left:363.598530px;}
.xc_c01068{left:415.439670px;}
.xd_c01068{left:585.000090px;}
.x11_c01068{left:597.599070px;}
.xe_c01068{left:617.399235px;}
.x12_c01068{left:629.999400px;}
.xf_c01068{left:644.039985px;}
.x14_c01068{left:655.918350px;}
.x15_c01068{left:662.759085px;}
.x10_c01068{left:669.599670px;}
.x17_c01068{left:701.639100px;}
.x13_c01068{left:708.118785px;}
.x16_c01068{left:714.598320px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls1e_c01068{letter-spacing:-5.145500pt;}
.ls1d_c01068{letter-spacing:-3.809707pt;}
.lsd_c01068{letter-spacing:-3.182000pt;}
.ls15_c01068{letter-spacing:-3.062800pt;}
.ls11_c01068{letter-spacing:-3.041667pt;}
.ls8_c01068{letter-spacing:-2.973867pt;}
.ls9_c01068{letter-spacing:-2.452233pt;}
.lsa_c01068{letter-spacing:-2.282953pt;}
.ls3_c01068{letter-spacing:-2.229947pt;}
.ls13_c01068{letter-spacing:-2.221800pt;}
.ls1a_c01068{letter-spacing:-2.157860pt;}
.ls5_c01068{letter-spacing:-2.136933pt;}
.ls17_c01068{letter-spacing:-1.698667pt;}
.ls6_c01068{letter-spacing:-1.633667pt;}
.ls16_c01068{letter-spacing:-1.568800pt;}
.lsc_c01068{letter-spacing:-1.550400pt;}
.ls4_c01068{letter-spacing:-1.495000pt;}
.ls2_c01068{letter-spacing:-1.487387pt;}
.ls14_c01068{letter-spacing:-0.789993pt;}
.ls18_c01068{letter-spacing:-0.784400pt;}
.ls1_c01068{letter-spacing:-0.743467pt;}
.ls7_c01068{letter-spacing:-0.732533pt;}
.lsf_c01068{letter-spacing:0.000000pt;}
.ls12_c01068{letter-spacing:0.828333pt;}
.ls1b_c01068{letter-spacing:1.176933pt;}
.ls1c_c01068{letter-spacing:2.208873pt;}
.ls19_c01068{letter-spacing:2.229947pt;}
.lse_c01068{letter-spacing:2.608533pt;}
.lsb_c01068{letter-spacing:4.460800pt;}
.ls10_c01068{letter-spacing:5.204720pt;}
.ls0_c01068{letter-spacing:16.351733pt;}
.ws0_c01068{word-spacing:0.000000pt;}
._12_c01068{margin-left:-33.946440pt;}
._d_c01068{margin-left:-10.928544pt;}
._10_c01068{margin-left:-8.388004pt;}
._f_c01068{margin-left:-7.189540pt;}
._11_c01068{margin-left:-6.296963pt;}
._c_c01068{margin-left:-4.751171pt;}
._5_c01068{margin-left:-3.219588pt;}
._e_c01068{margin-left:-1.663808pt;}
._1_c01068{width:1.089836pt;}
._a_c01068{width:2.675573pt;}
._b_c01068{width:4.327342pt;}
._7_c01068{width:17.543614pt;}
._3_c01068{width:18.967288pt;}
._6_c01068{width:20.390844pt;}
._0_c01068{width:21.588060pt;}
._4_c01068{width:23.255316pt;}
._8_c01068{width:26.399629pt;}
._9_c01068{width:27.833708pt;}
._2_c01068{width:566.323724pt;}
.fs2_c01068{font-size:41.333333pt;}
.fsc_c01068{font-size:42.666667pt;}
.fs1_c01068{font-size:43.333333pt;}
.fs3_c01068{font-size:44.666667pt;}
.fs0_c01068{font-size:45.333333pt;}
.fs9_c01068{font-size:46.000000pt;}
.fs8_c01068{font-size:46.666667pt;}
.fs7_c01068{font-size:47.333333pt;}
.fs5_c01068{font-size:48.000000pt;}
.fs4_c01068{font-size:48.666667pt;}
.fs6_c01068{font-size:49.333333pt;}
.fsd_c01068{font-size:50.000000pt;}
.fsb_c01068{font-size:60.666667pt;}
.fsa_c01068{font-size:64.666667pt;}
.y0_c01068{bottom:0.000000pt;}
.y34_c01068{bottom:164.793787pt;}
.y66_c01068{bottom:164.797093pt;}
.y9a_c01068{bottom:164.799333pt;}
.y33_c01068{bottom:182.074787pt;}
.y65_c01068{bottom:182.078107pt;}
.y98_c01068{bottom:182.079027pt;}
.y99_c01068{bottom:182.080120pt;}
.y32_c01068{bottom:199.035200pt;}
.y64_c01068{bottom:199.038507pt;}
.y97_c01068{bottom:199.039427pt;}
.y31_c01068{bottom:216.313960pt;}
.y63_c01068{bottom:216.317280pt;}
.y96_c01068{bottom:216.638973pt;}
.y62_c01068{bottom:233.277667pt;}
.y94_c01068{bottom:233.278587pt;}
.y30_c01068{bottom:233.594973pt;}
.y2f_c01068{bottom:250.555373pt;}
.y61_c01068{bottom:250.558693pt;}
.y93_c01068{bottom:250.559613pt;}
.y2e_c01068{bottom:267.515773pt;}
.y60_c01068{bottom:267.519080pt;}
.y92_c01068{bottom:267.520000pt;}
.y2d_c01068{bottom:284.476173pt;}
.y5f_c01068{bottom:284.479493pt;}
.y91_c01068{bottom:284.480000pt;}
.y2c_c01068{bottom:301.436560pt;}
.y90_c01068{bottom:301.439693pt;}
.y5e_c01068{bottom:301.439880pt;}
.y2b_c01068{bottom:318.396973pt;}
.y8f_c01068{bottom:318.400080pt;}
.y5d_c01068{bottom:318.400293pt;}
.y95_c01068{bottom:335.039427pt;}
.y8e_c01068{bottom:335.040920pt;}
.y5c_c01068{bottom:335.041093pt;}
.y2a_c01068{bottom:335.357360pt;}
.y29_c01068{bottom:352.317773pt;}
.y8d_c01068{bottom:352.319680pt;}
.y5b_c01068{bottom:352.319867pt;}
.y28_c01068{bottom:369.278160pt;}
.y5a_c01068{bottom:369.279707pt;}
.y8c_c01068{bottom:369.280067pt;}
.y27_c01068{bottom:386.877720pt;}
.y59_c01068{bottom:386.879840pt;}
.y8b_c01068{bottom:387.199213pt;}
.y26_c01068{bottom:404.158733pt;}
.y57_c01068{bottom:404.159653pt;}
.y58_c01068{bottom:404.160640pt;}
.y25_c01068{bottom:421.757080pt;}
.y56_c01068{bottom:421.758000pt;}
.y8a_c01068{bottom:421.759320pt;}
.y88_c01068{bottom:438.398707pt;}
.y55_c01068{bottom:438.398800pt;}
.y89_c01068{bottom:438.399867pt;}
.y24_c01068{bottom:438.717493pt;}
.y87_c01068{bottom:455.998267pt;}
.y54_c01068{bottom:455.998373pt;}
.y23_c01068{bottom:455.998493pt;}
.y86_c01068{bottom:472.639080pt;}
.y53_c01068{bottom:472.639187pt;}
.y22_c01068{bottom:472.958907pt;}
.y85_c01068{bottom:489.278680pt;}
.y52_c01068{bottom:489.599587pt;}
.y21_c01068{bottom:489.599707pt;}
.y84_c01068{bottom:506.239093pt;}
.y51_c01068{bottom:506.239200pt;}
.y20_c01068{bottom:506.560120pt;}
.y83_c01068{bottom:523.520107pt;}
.y50_c01068{bottom:523.520200pt;}
.y1f_c01068{bottom:523.520507pt;}
.y82_c01068{bottom:540.159707pt;}
.y1d_c01068{bottom:540.480000pt;}
.y1e_c01068{bottom:540.480507pt;}
.y4f_c01068{bottom:540.480613pt;}
.y81_c01068{bottom:557.118347pt;}
.y4e_c01068{bottom:557.120213pt;}
.y1c_c01068{bottom:557.440387pt;}
.y4d_c01068{bottom:574.080613pt;}
.y80_c01068{bottom:574.399347pt;}
.y1b_c01068{bottom:574.400387pt;}
.y7f_c01068{bottom:591.678120pt;}
.y1a_c01068{bottom:591.679733pt;}
.y4c_c01068{bottom:591.680173pt;}
.y7e_c01068{bottom:608.318947pt;}
.y4b_c01068{bottom:608.320987pt;}
.y18_c01068{bottom:608.634587pt;}
.y19_c01068{bottom:608.639573pt;}
.y7d_c01068{bottom:625.918493pt;}
.y4a_c01068{bottom:625.920547pt;}
.y17_c01068{bottom:626.234147pt;}
.y7c_c01068{bottom:642.878907pt;}
.y49_c01068{bottom:642.880947pt;}
.y16_c01068{bottom:643.194533pt;}
.y7b_c01068{bottom:659.839293pt;}
.y48_c01068{bottom:660.159707pt;}
.y15_c01068{bottom:660.475560pt;}
.y7a_c01068{bottom:676.799707pt;}
.y14_c01068{bottom:677.115173pt;}
.y47_c01068{bottom:677.118760pt;}
.y79_c01068{bottom:693.760093pt;}
.y46_c01068{bottom:694.079160pt;}
.y13_c01068{bottom:694.396173pt;}
.y78_c01068{bottom:710.720493pt;}
.y12_c01068{bottom:711.035787pt;}
.y45_c01068{bottom:711.039547pt;}
.y77_c01068{bottom:727.999267pt;}
.y44_c01068{bottom:728.320227pt;}
.y11_c01068{bottom:728.635360pt;}
.y43_c01068{bottom:745.280280pt;}
.y10_c01068{bottom:745.595747pt;}
.y42_c01068{bottom:762.872840pt;}
.yf_c01068{bottom:762.876773pt;}
.y76_c01068{bottom:762.880267pt;}
.y41_c01068{bottom:779.833253pt;}
.y75_c01068{bottom:779.840653pt;}
.ye_c01068{bottom:780.155533pt;}
.y40_c01068{bottom:797.112013pt;}
.yd_c01068{bottom:797.115920pt;}
.y74_c01068{bottom:797.119427pt;}
.y73_c01068{bottom:813.439453pt;}
.y3f_c01068{bottom:813.752827pt;}
.yc_c01068{bottom:814.076333pt;}
.y72_c01068{bottom:831.039040pt;}
.y3e_c01068{bottom:831.352400pt;}
.yb_c01068{bottom:831.357347pt;}
.y3d_c01068{bottom:847.992000pt;}
.y70_c01068{bottom:847.997867pt;}
.y71_c01068{bottom:847.999427pt;}
.ya_c01068{bottom:848.317747pt;}
.y3c_c01068{bottom:865.273013pt;}
.y9_c01068{bottom:865.278133pt;}
.y6f_c01068{bottom:865.278867pt;}
.y6e_c01068{bottom:881.918480pt;}
.y3b_c01068{bottom:882.233413pt;}
.y8_c01068{bottom:882.238547pt;}
.y3a_c01068{bottom:898.873027pt;}
.y6d_c01068{bottom:898.878880pt;}
.y7_c01068{bottom:899.198933pt;}
.y6c_c01068{bottom:915.839280pt;}
.y39_c01068{bottom:916.154027pt;}
.y6_c01068{bottom:916.159347pt;}
.y6b_c01068{bottom:932.798893pt;}
.y38_c01068{bottom:933.114440pt;}
.y5_c01068{bottom:933.438107pt;}
.y6a_c01068{bottom:949.759280pt;}
.y37_c01068{bottom:950.074827pt;}
.y4_c01068{bottom:950.398493pt;}
.y68_c01068{bottom:967.037333pt;}
.y69_c01068{bottom:967.039960pt;}
.y36_c01068{bottom:967.353600pt;}
.y3_c01068{bottom:967.679520pt;}
.y67_c01068{bottom:983.676947pt;}
.y35_c01068{bottom:984.314000pt;}
.y2_c01068{bottom:984.639907pt;}
.y1_c01068{bottom:1019.519453pt;}
.hc_c01068{height:40.566406pt;}
.h6_c01068{height:42.529297pt;}
.h11_c01068{height:43.000000pt;}
.h3_c01068{height:43.109375pt;}
.h4_c01068{height:43.671875pt;}
.h5_c01068{height:44.143229pt;}
.h1_c01068{height:44.802083pt;}
.h2_c01068{height:45.195312pt;}
.he_c01068{height:45.460938pt;}
.hb_c01068{height:46.119792pt;}
.ha_c01068{height:46.778646pt;}
.h8_c01068{height:47.437500pt;}
.h7_c01068{height:48.096354pt;}
.hd_c01068{height:48.393880pt;}
.h9_c01068{height:48.755208pt;}
.h12_c01068{height:49.414063pt;}
.h10_c01068{height:59.955729pt;}
.hf_c01068{height:63.908854pt;}
.h0_c01068{height:1122.666667pt;}
.w0_c01068{width:793.333333pt;}
.x0_c01068{left:0.000000pt;}
.x1_c01068{left:133.119200pt;}
.x3_c01068{left:191.037840pt;}
.x2_c01068{left:192.000573pt;}
.x4_c01068{left:224.958920pt;}
.x6_c01068{left:253.759320pt;}
.x5_c01068{left:254.718867pt;}
.xb_c01068{left:270.719200pt;}
.x8_c01068{left:288.638667pt;}
.x7_c01068{left:300.159733pt;}
.x9_c01068{left:305.919453pt;}
.xa_c01068{left:323.198693pt;}
.xc_c01068{left:369.279707pt;}
.xd_c01068{left:520.000080pt;}
.x11_c01068{left:531.199173pt;}
.xe_c01068{left:548.799320pt;}
.x12_c01068{left:559.999467pt;}
.xf_c01068{left:572.479987pt;}
.x14_c01068{left:583.038533pt;}
.x15_c01068{left:589.119187pt;}
.x10_c01068{left:595.199707pt;}
.x17_c01068{left:623.679200pt;}
.x13_c01068{left:629.438920pt;}
.x16_c01068{left:635.198507pt;}
}





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

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_92c15339b037595206db89cc.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_0a3a929b923391673211b99c.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01069;src:url('chunks/assets/font_82c37f5378a2e7551c5b818f.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01069;src:url('chunks/assets/font_c212b0b87de1ac403633b0a1.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01069;src:url('chunks/assets/font_86cec652e1eee04be2cf825d.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c01069{transform:matrix(0.148438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148438,0.000000,0.000000,0.250000,0,0);}
.m14_c01069{transform:matrix(0.155738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155738,0.000000,0.000000,0.250000,0,0);}
.m24_c01069{transform:matrix(0.155914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155914,0.000000,0.000000,0.250000,0,0);}
.m15_c01069{transform:matrix(0.160156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160156,0.000000,0.000000,0.250000,0,0);}
.m20_c01069{transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161017,0.000000,0.000000,0.250000,0,0);}
.m25_c01069{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m12_c01069{transform:matrix(0.168033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168033,0.000000,0.000000,0.250000,0,0);}
.m13_c01069{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m23_c01069{transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172131,0.000000,0.000000,0.250000,0,0);}
.m27_c01069{transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173729,0.000000,0.000000,0.250000,0,0);}
.m22_c01069{transform:matrix(0.174157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174157,0.000000,0.000000,0.250000,0,0);}
.m26_c01069{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m16_c01069{transform:matrix(0.180328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180328,0.000000,0.000000,0.250000,0,0);}
.m5_c01069{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.mf_c01069{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m1f_c01069{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m10_c01069{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m17_c01069{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m11_c01069{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m6_c01069{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);}
.m1d_c01069{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.mb_c01069{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.me_c01069{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m8_c01069{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m4_c01069{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m1b_c01069{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m18_c01069{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m0_c01069{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m28_c01069{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m1a_c01069{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.ma_c01069{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m7_c01069{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m1e_c01069{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.mc_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01069{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.md_c01069{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m2_c01069{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m3_c01069{transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);}
.m9_c01069{transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330508,0.000000,0.000000,0.250000,0,0);}
.m19_c01069{transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);}
.m1c_c01069{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);}
.v1_c01069{vertical-align:-1.436820px;}
.v0_c01069{vertical-align:0.000000px;}
.ls1e_c01069{letter-spacing:-6.825555px;}
.ls15_c01069{letter-spacing:-6.686100px;}
.lsa_c01069{letter-spacing:-6.514695px;}
.ls1c_c01069{letter-spacing:-6.398123px;}
.ls1f_c01069{letter-spacing:-6.093450px;}
.ls21_c01069{letter-spacing:-4.908600px;}
.ls10_c01069{letter-spacing:-4.410450px;}
.lsd_c01069{letter-spacing:-4.329450px;}
.ls9_c01069{letter-spacing:-4.182000px;}
.ls11_c01069{letter-spacing:-4.112978px;}
.ls23_c01069{letter-spacing:-3.575850px;}
.ls12_c01069{letter-spacing:-3.467250px;}
.ls8_c01069{letter-spacing:-3.345600px;}
.lsc_c01069{letter-spacing:-3.017850px;}
.ls22_c01069{letter-spacing:-2.859285px;}
.ls13_c01069{letter-spacing:-2.836425px;}
.lsb_c01069{letter-spacing:-2.508690px;}
.ls7_c01069{letter-spacing:-1.673310px;}
.ls1a_c01069{letter-spacing:-1.432665px;}
.ls6_c01069{letter-spacing:-0.836400px;}
.ls1d_c01069{letter-spacing:-0.826155px;}
.ls17_c01069{letter-spacing:-0.821100px;}
.ls16_c01069{letter-spacing:0.000000px;}
.ls5_c01069{letter-spacing:0.716100px;}
.ls4_c01069{letter-spacing:1.432665px;}
.lse_c01069{letter-spacing:2.075370px;}
.ls3_c01069{letter-spacing:2.148300px;}
.ls20_c01069{letter-spacing:2.631435px;}
.ls2_c01069{letter-spacing:2.859285px;}
.ls0_c01069{letter-spacing:3.345600px;}
.lsf_c01069{letter-spacing:3.575850px;}
.ls1b_c01069{letter-spacing:4.291950px;}
.ls18_c01069{letter-spacing:4.745355px;}
.ls14_c01069{letter-spacing:5.008050px;}
.ls1_c01069{letter-spacing:5.855310px;}
.ls19_c01069{letter-spacing:7.523010px;}
.ls24_c01069{letter-spacing:125.908050px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01069{word-spacing:0.000000px;}
._c_c01069{margin-left:-16.471010px;}
._9_c01069{margin-left:-11.515900px;}
._b_c01069{margin-left:-8.722639px;}
._8_c01069{margin-left:-6.956801px;}
._a_c01069{margin-left:-5.077861px;}
._5_c01069{margin-left:-3.378441px;}
._1_c01069{margin-left:-1.834880px;}
._2_c01069{width:1.428878px;}
._7_c01069{width:3.189189px;}
._6_c01069{width:4.825913px;}
._17_c01069{width:6.427689px;}
._0_c01069{width:24.286568px;}
._4_c01069{width:27.124250px;}
._1a_c01069{width:32.107226px;}
._19_c01069{width:53.177917px;}
._1c_c01069{width:62.733450px;}
._11_c01069{width:84.402837px;}
._12_c01069{width:85.775116px;}
._1b_c01069{width:88.706118px;}
._13_c01069{width:104.997215px;}
._14_c01069{width:106.345743px;}
._1d_c01069{width:109.310340px;}
._f_c01069{width:149.831177px;}
._18_c01069{width:166.164000px;}
._16_c01069{width:171.147086px;}
._10_c01069{width:214.814550px;}
._e_c01069{width:277.037175px;}
._d_c01069{width:290.713800px;}
._15_c01069{width:305.011200px;}
._3_c01069{width:635.533156px;}
.fc0_c01069{color:transparent;}
.fs5_c01069{font-size:42.750000px;}
.fsb_c01069{font-size:43.500000px;}
.fs7_c01069{font-size:44.250000px;}
.fs3_c01069{font-size:45.000000px;}
.fsc_c01069{font-size:45.750000px;}
.fs1_c01069{font-size:46.500000px;}
.fse_c01069{font-size:47.250000px;}
.fsd_c01069{font-size:48.000000px;}
.fs2_c01069{font-size:49.500000px;}
.fs6_c01069{font-size:50.250000px;}
.fs0_c01069{font-size:51.000000px;}
.fs8_c01069{font-size:51.750000px;}
.fs10_c01069{font-size:52.500000px;}
.fsf_c01069{font-size:54.000000px;}
.fs4_c01069{font-size:57.000000px;}
.fs11_c01069{font-size:66.750000px;}
.fs12_c01069{font-size:69.750000px;}
.fsa_c01069{font-size:70.500000px;}
.fs9_c01069{font-size:86.250000px;}
.y0_c01069{bottom:0.000000px;}
.y74_c01069{bottom:185.399250px;}
.y73_c01069{bottom:185.760150px;}
.y72_c01069{bottom:186.119415px;}
.y71_c01069{bottom:205.019685px;}
.y70_c01069{bottom:205.739850px;}
.y6f_c01069{bottom:223.920000px;}
.y6e_c01069{bottom:224.279250px;}
.y6d_c01069{bottom:224.460600px;}
.y6c_c01069{bottom:243.359250px;}
.y6b_c01069{bottom:243.720150px;}
.y6a_c01069{bottom:243.899850px;}
.y69_c01069{bottom:281.880090px;}
.y68_c01069{bottom:396.359850px;}
.y4c_c01069{bottom:396.717840px;}
.y27_c01069{bottom:396.719100px;}
.y4b_c01069{bottom:415.798305px;}
.y26_c01069{bottom:415.798920px;}
.y4a_c01069{bottom:435.239430px;}
.y25_c01069{bottom:435.239820px;}
.y67_c01069{bottom:435.599070px;}
.y49_c01069{bottom:453.960360px;}
.y24_c01069{bottom:453.960570px;}
.y66_c01069{bottom:454.140150px;}
.y48_c01069{bottom:473.758500px;}
.y23_c01069{bottom:473.759085px;}
.y47_c01069{bottom:492.838950px;}
.y22_c01069{bottom:493.199850px;}
.y65_c01069{bottom:512.279850px;}
.y46_c01069{bottom:512.280480px;}
.y21_c01069{bottom:512.639100px;}
.y45_c01069{bottom:531.718485px;}
.y20_c01069{bottom:531.719100px;}
.y64_c01069{bottom:550.619385px;}
.y44_c01069{bottom:550.798920px;}
.y1f_c01069{bottom:551.159820px;}
.y63_c01069{bottom:569.699385px;}
.y43_c01069{bottom:569.876955px;}
.y1e_c01069{bottom:569.878920px;}
.y42_c01069{bottom:588.958560px;}
.y1d_c01069{bottom:588.960570px;}
.y41_c01069{bottom:608.039010px;}
.y62_c01069{bottom:608.040570px;}
.y1c_c01069{bottom:608.399820px;}
.y40_c01069{bottom:627.119460px;}
.y61_c01069{bottom:627.120435px;}
.y1b_c01069{bottom:627.479685px;}
.y3f_c01069{bottom:645.839010px;}
.y60_c01069{bottom:645.839535px;}
.y1a_c01069{bottom:646.200435px;}
.y3e_c01069{bottom:664.919475px;}
.y19_c01069{bottom:664.919535px;}
.y18_c01069{bottom:683.999400px;}
.y3d_c01069{bottom:683.999910px;}
.y5f_c01069{bottom:703.440255px;}
.y3c_c01069{bottom:703.799430px;}
.y17_c01069{bottom:703.799520px;}
.y5e_c01069{bottom:722.520270px;}
.y3b_c01069{bottom:722.520330px;}
.y16_c01069{bottom:722.879520px;}
.y3a_c01069{bottom:742.319850px;}
.y15_c01069{bottom:742.320285px;}
.y5d_c01069{bottom:761.039385px;}
.y14_c01069{bottom:761.400285px;}
.y5c_c01069{bottom:780.480285px;}
.y39_c01069{bottom:780.838140px;}
.y13_c01069{bottom:780.839535px;}
.y5b_c01069{bottom:799.560240px;}
.y38_c01069{bottom:799.918605px;}
.y12_c01069{bottom:799.919490px;}
.y37_c01069{bottom:819.718095px;}
.y11_c01069{bottom:819.719520px;}
.y36_c01069{bottom:838.439025px;}
.y10_c01069{bottom:838.440315px;}
.y35_c01069{bottom:857.519460px;}
.y5a_c01069{bottom:857.520270px;}
.yf_c01069{bottom:857.879520px;}
.y34_c01069{bottom:876.599925px;}
.y59_c01069{bottom:876.600135px;}
.ye_c01069{bottom:876.959385px;}
.y58_c01069{bottom:895.859805px;}
.y33_c01069{bottom:896.038530px;}
.yd_c01069{bottom:896.039340px;}
.y57_c01069{bottom:914.399235px;}
.y32_c01069{bottom:914.759445px;}
.yc_c01069{bottom:915.119385px;}
.y56_c01069{bottom:934.019715px;}
.y31_c01069{bottom:934.558965px;}
.yb_c01069{bottom:934.560240px;}
.y30_c01069{bottom:953.278515px;}
.y55_c01069{bottom:953.279205px;}
.ya_c01069{bottom:953.640105px;}
.y54_c01069{bottom:972.540615px;}
.y2f_c01069{bottom:972.719655px;}
.y9_c01069{bottom:973.079400px;}
.y53_c01069{bottom:991.439205px;}
.y2e_c01069{bottom:991.800105px;}
.y8_c01069{bottom:992.159370px;}
.y52_c01069{bottom:1010.700435px;}
.y2d_c01069{bottom:1011.238725px;}
.y7_c01069{bottom:1011.600135px;}
.y51_c01069{bottom:1030.319190px;}
.y2c_c01069{bottom:1030.679850px;}
.y6_c01069{bottom:1030.680090px;}
.y50_c01069{bottom:1049.219520px;}
.y2b_c01069{bottom:1050.118470px;}
.y5_c01069{bottom:1050.119385px;}
.y4f_c01069{bottom:1068.299565px;}
.y2a_c01069{bottom:1068.478500px;}
.y4_c01069{bottom:1068.840090px;}
.y4e_c01069{bottom:1087.559055px;}
.y29_c01069{bottom:1087.919655px;}
.y3_c01069{bottom:1088.279205px;}
.y4d_c01069{bottom:1106.639100px;}
.y28_c01069{bottom:1106.639220px;}
.y2_c01069{bottom:1107.000000px;}
.y1_c01069{bottom:1145.879970px;}
.h18_c01069{height:43.428955px;}
.h14_c01069{height:44.165039px;}
.h7_c01069{height:44.586914px;}
.hf_c01069{height:44.901123px;}
.hd_c01069{height:45.369141px;}
.h2_c01069{height:45.637207px;}
.h9_c01069{height:46.151367px;}
.h12_c01069{height:46.373291px;}
.h15_c01069{height:46.863281px;}
.h5_c01069{height:46.933594px;}
.h10_c01069{height:47.109375px;}
.h1c_c01069{height:47.437500px;}
.he_c01069{height:47.715820px;}
.h4_c01069{height:48.498047px;}
.h3_c01069{height:48.581543px;}
.h13_c01069{height:48.919922px;}
.h8_c01069{height:49.317627px;}
.h11_c01069{height:49.661133px;}
.h1b_c01069{height:50.062500px;}
.h1_c01069{height:50.402344px;}
.ha_c01069{height:51.143555px;}
.h17_c01069{height:51.884766px;}
.h16_c01069{height:53.367188px;}
.h6_c01069{height:56.332031px;}
.h19_c01069{height:65.511475px;}
.h1a_c01069{height:68.455811px;}
.hc_c01069{height:69.673828px;}
.hb_c01069{height:89.956055px;}
.h0_c01069{height:1263.000000px;}
.w0_c01069{width:892.500000px;}
.x0_c01069{left:0.000000px;}
.x1d_c01069{left:137.158560px;}
.x1_c01069{left:145.078815px;}
.x1e_c01069{left:163.799565px;}
.x5_c01069{left:210.238785px;}
.x2_c01069{left:211.319850px;}
.x6_c01069{left:247.319250px;}
.x4_c01069{left:248.398635px;}
.x3_c01069{left:249.838950px;}
.x8_c01069{left:280.078785px;}
.x7_c01069{left:281.518575px;}
.x9_c01069{left:300.599100px;}
.xd_c01069{left:306.358635px;}
.xb_c01069{left:321.478635px;}
.xc_c01069{left:325.799535px;}
.xa_c01069{left:332.279250px;}
.x1f_c01069{left:449.998950px;}
.x1b_c01069{left:462.599070px;}
.x1a_c01069{left:469.078770px;}
.x13_c01069{left:470.519070px;}
.x17_c01069{left:475.919535px;}
.xe_c01069{left:476.998950px;}
.x18_c01069{left:508.679070px;}
.x14_c01069{left:514.799520px;}
.xf_c01069{left:515.878920px;}
.x16_c01069{left:547.199850px;}
.x1c_c01069{left:566.639100px;}
.x10_c01069{left:567.718500px;}
.x15_c01069{left:578.878320px;}
.x11_c01069{left:579.959385px;}
.x12_c01069{left:612.359850px;}
.x19_c01069{left:690.119985px;}
@media print{
.v1_c01069{vertical-align:-1.277173pt;}
.v0_c01069{vertical-align:0.000000pt;}
.ls1e_c01069{letter-spacing:-6.067160pt;}
.ls15_c01069{letter-spacing:-5.943200pt;}
.lsa_c01069{letter-spacing:-5.790840pt;}
.ls1c_c01069{letter-spacing:-5.687220pt;}
.ls1f_c01069{letter-spacing:-5.416400pt;}
.ls21_c01069{letter-spacing:-4.363200pt;}
.ls10_c01069{letter-spacing:-3.920400pt;}
.lsd_c01069{letter-spacing:-3.848400pt;}
.ls9_c01069{letter-spacing:-3.717333pt;}
.ls11_c01069{letter-spacing:-3.655980pt;}
.ls23_c01069{letter-spacing:-3.178533pt;}
.ls12_c01069{letter-spacing:-3.082000pt;}
.ls8_c01069{letter-spacing:-2.973867pt;}
.lsc_c01069{letter-spacing:-2.682533pt;}
.ls22_c01069{letter-spacing:-2.541587pt;}
.ls13_c01069{letter-spacing:-2.521267pt;}
.lsb_c01069{letter-spacing:-2.229947pt;}
.ls7_c01069{letter-spacing:-1.487387pt;}
.ls1a_c01069{letter-spacing:-1.273480pt;}
.ls6_c01069{letter-spacing:-0.743467pt;}
.ls1d_c01069{letter-spacing:-0.734360pt;}
.ls17_c01069{letter-spacing:-0.729867pt;}
.ls16_c01069{letter-spacing:0.000000pt;}
.ls5_c01069{letter-spacing:0.636533pt;}
.ls4_c01069{letter-spacing:1.273480pt;}
.lse_c01069{letter-spacing:1.844773pt;}
.ls3_c01069{letter-spacing:1.909600pt;}
.ls20_c01069{letter-spacing:2.339053pt;}
.ls2_c01069{letter-spacing:2.541587pt;}
.ls0_c01069{letter-spacing:2.973867pt;}
.lsf_c01069{letter-spacing:3.178533pt;}
.ls1b_c01069{letter-spacing:3.815067pt;}
.ls18_c01069{letter-spacing:4.218093pt;}
.ls14_c01069{letter-spacing:4.451600pt;}
.ls1_c01069{letter-spacing:5.204720pt;}
.ls19_c01069{letter-spacing:6.687120pt;}
.ls24_c01069{letter-spacing:111.918267pt;}
.ws0_c01069{word-spacing:0.000000pt;}
._c_c01069{margin-left:-14.640898pt;}
._9_c01069{margin-left:-10.236356pt;}
._b_c01069{margin-left:-7.753457pt;}
._8_c01069{margin-left:-6.183823pt;}
._a_c01069{margin-left:-4.513654pt;}
._5_c01069{margin-left:-3.003058pt;}
._1_c01069{margin-left:-1.631004pt;}
._2_c01069{width:1.270114pt;}
._7_c01069{width:2.834835pt;}
._6_c01069{width:4.289700pt;}
._17_c01069{width:5.713501pt;}
._0_c01069{width:21.588060pt;}
._4_c01069{width:24.110444pt;}
._1a_c01069{width:28.539756pt;}
._19_c01069{width:47.269260pt;}
._1c_c01069{width:55.763067pt;}
._11_c01069{width:75.024744pt;}
._12_c01069{width:76.244548pt;}
._1b_c01069{width:78.849883pt;}
._13_c01069{width:93.330857pt;}
._14_c01069{width:94.529550pt;}
._1d_c01069{width:97.164747pt;}
._f_c01069{width:133.183268pt;}
._18_c01069{width:147.701333pt;}
._16_c01069{width:152.130743pt;}
._10_c01069{width:190.946267pt;}
._e_c01069{width:246.255266pt;}
._d_c01069{width:258.412267pt;}
._15_c01069{width:271.121067pt;}
._3_c01069{width:564.918361pt;}
.fs5_c01069{font-size:38.000000pt;}
.fsb_c01069{font-size:38.666667pt;}
.fs7_c01069{font-size:39.333333pt;}
.fs3_c01069{font-size:40.000000pt;}
.fsc_c01069{font-size:40.666667pt;}
.fs1_c01069{font-size:41.333333pt;}
.fse_c01069{font-size:42.000000pt;}
.fsd_c01069{font-size:42.666667pt;}
.fs2_c01069{font-size:44.000000pt;}
.fs6_c01069{font-size:44.666667pt;}
.fs0_c01069{font-size:45.333333pt;}
.fs8_c01069{font-size:46.000000pt;}
.fs10_c01069{font-size:46.666667pt;}
.fsf_c01069{font-size:48.000000pt;}
.fs4_c01069{font-size:50.666667pt;}
.fs11_c01069{font-size:59.333333pt;}
.fs12_c01069{font-size:62.000000pt;}
.fsa_c01069{font-size:62.666667pt;}
.fs9_c01069{font-size:76.666667pt;}
.y0_c01069{bottom:0.000000pt;}
.y74_c01069{bottom:164.799333pt;}
.y73_c01069{bottom:165.120133pt;}
.y72_c01069{bottom:165.439480pt;}
.y71_c01069{bottom:182.239720pt;}
.y70_c01069{bottom:182.879867pt;}
.y6f_c01069{bottom:199.040000pt;}
.y6e_c01069{bottom:199.359333pt;}
.y6d_c01069{bottom:199.520533pt;}
.y6c_c01069{bottom:216.319333pt;}
.y6b_c01069{bottom:216.640133pt;}
.y6a_c01069{bottom:216.799867pt;}
.y69_c01069{bottom:250.560080pt;}
.y68_c01069{bottom:352.319867pt;}
.y4c_c01069{bottom:352.638080pt;}
.y27_c01069{bottom:352.639200pt;}
.y4b_c01069{bottom:369.598493pt;}
.y26_c01069{bottom:369.599040pt;}
.y4a_c01069{bottom:386.879493pt;}
.y25_c01069{bottom:386.879840pt;}
.y67_c01069{bottom:387.199173pt;}
.y49_c01069{bottom:403.520320pt;}
.y24_c01069{bottom:403.520507pt;}
.y66_c01069{bottom:403.680133pt;}
.y48_c01069{bottom:421.118667pt;}
.y23_c01069{bottom:421.119187pt;}
.y47_c01069{bottom:438.079067pt;}
.y22_c01069{bottom:438.399867pt;}
.y65_c01069{bottom:455.359867pt;}
.y46_c01069{bottom:455.360427pt;}
.y21_c01069{bottom:455.679200pt;}
.y45_c01069{bottom:472.638653pt;}
.y20_c01069{bottom:472.639200pt;}
.y64_c01069{bottom:489.439453pt;}
.y44_c01069{bottom:489.599040pt;}
.y1f_c01069{bottom:489.919840pt;}
.y63_c01069{bottom:506.399453pt;}
.y43_c01069{bottom:506.557293pt;}
.y1e_c01069{bottom:506.559040pt;}
.y42_c01069{bottom:523.518720pt;}
.y1d_c01069{bottom:523.520507pt;}
.y41_c01069{bottom:540.479120pt;}
.y62_c01069{bottom:540.480507pt;}
.y1c_c01069{bottom:540.799840pt;}
.y40_c01069{bottom:557.439520pt;}
.y61_c01069{bottom:557.440387pt;}
.y1b_c01069{bottom:557.759720pt;}
.y3f_c01069{bottom:574.079120pt;}
.y60_c01069{bottom:574.079587pt;}
.y1a_c01069{bottom:574.400387pt;}
.y3e_c01069{bottom:591.039533pt;}
.y19_c01069{bottom:591.039587pt;}
.y18_c01069{bottom:607.999467pt;}
.y3d_c01069{bottom:607.999920pt;}
.y5f_c01069{bottom:625.280227pt;}
.y3c_c01069{bottom:625.599493pt;}
.y17_c01069{bottom:625.599573pt;}
.y5e_c01069{bottom:642.240240pt;}
.y3b_c01069{bottom:642.240293pt;}
.y16_c01069{bottom:642.559573pt;}
.y3a_c01069{bottom:659.839867pt;}
.y15_c01069{bottom:659.840253pt;}
.y5d_c01069{bottom:676.479453pt;}
.y14_c01069{bottom:676.800253pt;}
.y5c_c01069{bottom:693.760253pt;}
.y39_c01069{bottom:694.078347pt;}
.y13_c01069{bottom:694.079587pt;}
.y5b_c01069{bottom:710.720213pt;}
.y38_c01069{bottom:711.038760pt;}
.y12_c01069{bottom:711.039547pt;}
.y37_c01069{bottom:728.638307pt;}
.y11_c01069{bottom:728.639573pt;}
.y36_c01069{bottom:745.279133pt;}
.y10_c01069{bottom:745.280280pt;}
.y35_c01069{bottom:762.239520pt;}
.y5a_c01069{bottom:762.240240pt;}
.yf_c01069{bottom:762.559573pt;}
.y34_c01069{bottom:779.199933pt;}
.y59_c01069{bottom:779.200120pt;}
.ye_c01069{bottom:779.519453pt;}
.y58_c01069{bottom:796.319827pt;}
.y33_c01069{bottom:796.478693pt;}
.yd_c01069{bottom:796.479413pt;}
.y57_c01069{bottom:812.799320pt;}
.y32_c01069{bottom:813.119507pt;}
.yc_c01069{bottom:813.439453pt;}
.y56_c01069{bottom:830.239747pt;}
.y31_c01069{bottom:830.719080pt;}
.yb_c01069{bottom:830.720213pt;}
.y30_c01069{bottom:847.358680pt;}
.y55_c01069{bottom:847.359293pt;}
.ya_c01069{bottom:847.680093pt;}
.y54_c01069{bottom:864.480547pt;}
.y2f_c01069{bottom:864.639693pt;}
.y9_c01069{bottom:864.959467pt;}
.y53_c01069{bottom:881.279293pt;}
.y2e_c01069{bottom:881.600093pt;}
.y8_c01069{bottom:881.919440pt;}
.y52_c01069{bottom:898.400387pt;}
.y2d_c01069{bottom:898.878867pt;}
.y7_c01069{bottom:899.200120pt;}
.y51_c01069{bottom:915.839280pt;}
.y2c_c01069{bottom:916.159867pt;}
.y6_c01069{bottom:916.160080pt;}
.y50_c01069{bottom:932.639573pt;}
.y2b_c01069{bottom:933.438640pt;}
.y5_c01069{bottom:933.439453pt;}
.y4f_c01069{bottom:949.599613pt;}
.y2a_c01069{bottom:949.758667pt;}
.y4_c01069{bottom:950.080080pt;}
.y4e_c01069{bottom:966.719160pt;}
.y29_c01069{bottom:967.039693pt;}
.y3_c01069{bottom:967.359293pt;}
.y4d_c01069{bottom:983.679200pt;}
.y28_c01069{bottom:983.679307pt;}
.y2_c01069{bottom:984.000000pt;}
.y1_c01069{bottom:1018.559973pt;}
.h18_c01069{height:38.603516pt;}
.h14_c01069{height:39.257812pt;}
.h7_c01069{height:39.632812pt;}
.hf_c01069{height:39.912109pt;}
.hd_c01069{height:40.328125pt;}
.h2_c01069{height:40.566406pt;}
.h9_c01069{height:41.023438pt;}
.h12_c01069{height:41.220703pt;}
.h15_c01069{height:41.656250pt;}
.h5_c01069{height:41.718750pt;}
.h10_c01069{height:41.875000pt;}
.h1c_c01069{height:42.166667pt;}
.he_c01069{height:42.414062pt;}
.h4_c01069{height:43.109375pt;}
.h3_c01069{height:43.183594pt;}
.h13_c01069{height:43.484375pt;}
.h8_c01069{height:43.837891pt;}
.h11_c01069{height:44.143229pt;}
.h1b_c01069{height:44.500000pt;}
.h1_c01069{height:44.802083pt;}
.ha_c01069{height:45.460938pt;}
.h17_c01069{height:46.119792pt;}
.h16_c01069{height:47.437500pt;}
.h6_c01069{height:50.072917pt;}
.h19_c01069{height:58.232422pt;}
.h1a_c01069{height:60.849609pt;}
.hc_c01069{height:61.932292pt;}
.hb_c01069{height:79.960938pt;}
.h0_c01069{height:1122.666667pt;}
.w0_c01069{width:793.333333pt;}
.x0_c01069{left:0.000000pt;}
.x1d_c01069{left:121.918720pt;}
.x1_c01069{left:128.958947pt;}
.x1e_c01069{left:145.599613pt;}
.x5_c01069{left:186.878920pt;}
.x2_c01069{left:187.839867pt;}
.x6_c01069{left:219.839333pt;}
.x4_c01069{left:220.798787pt;}
.x3_c01069{left:222.079067pt;}
.x8_c01069{left:248.958920pt;}
.x7_c01069{left:250.238733pt;}
.x9_c01069{left:267.199200pt;}
.xd_c01069{left:272.318787pt;}
.xb_c01069{left:285.758787pt;}
.xc_c01069{left:289.599587pt;}
.xa_c01069{left:295.359333pt;}
.x1f_c01069{left:399.999067pt;}
.x1b_c01069{left:411.199173pt;}
.x1a_c01069{left:416.958907pt;}
.x13_c01069{left:418.239173pt;}
.x17_c01069{left:423.039587pt;}
.xe_c01069{left:423.999067pt;}
.x18_c01069{left:452.159173pt;}
.x14_c01069{left:457.599573pt;}
.xf_c01069{left:458.559040pt;}
.x16_c01069{left:486.399867pt;}
.x1c_c01069{left:503.679200pt;}
.x10_c01069{left:504.638667pt;}
.x15_c01069{left:514.558507pt;}
.x11_c01069{left:515.519453pt;}
.x12_c01069{left:544.319867pt;}
.x19_c01069{left:613.439987pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_42c2ef34d5ca5e9d6888b51a.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_65b81c4d18c00b2ecd86832c.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01070;src:url('chunks/assets/font_29dc4a86cdc569d7589e09c1.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_21228560d64d2c4c46079527.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.432129;font-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_c01070{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.me_c01070{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m2e_c01070{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.m2c_c01070{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m6_c01070{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m1d_c01070{transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186620,0.000000,0.000000,0.250000,0,0);}
.mf_c01070{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.m28_c01070{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_c01070{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.mb_c01070{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.m29_c01070{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m2_c01070{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m4_c01070{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m26_c01070{transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194915,0.000000,0.000000,0.250000,0,0);}
.m1f_c01070{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m16_c01070{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m9_c01070{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m5_c01070{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m1c_c01070{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m1e_c01070{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m20_c01070{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m2a_c01070{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m2d_c01070{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.ma_c01070{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m14_c01070{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m24_c01070{transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214789,0.000000,0.000000,0.250000,0,0);}
.m23_c01070{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m0_c01070{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.mc_c01070{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.md_c01070{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m1b_c01070{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m12_c01070{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);}
.m2b_c01070{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m19_c01070{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m27_c01070{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m22_c01070{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);}
.m25_c01070{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m3_c01070{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m17_c01070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01070{transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);}
.m13_c01070{transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);}
.m10_c01070{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.m7_c01070{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m8_c01070{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m1_c01070{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m1a_c01070{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m15_c01070{transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.ls13_c01070{letter-spacing:-14.062500px;}
.ls1c_c01070{letter-spacing:-13.062225px;}
.ls18_c01070{letter-spacing:-12.359325px;}
.lsa_c01070{letter-spacing:-7.777500px;}
.ls20_c01070{letter-spacing:-4.094925px;}
.ls8_c01070{letter-spacing:-3.815385px;}
.ls1d_c01070{letter-spacing:-2.590800px;}
.ls15_c01070{letter-spacing:-2.499525px;}
.ls17_c01070{letter-spacing:-1.771740px;}
.ls6_c01070{letter-spacing:-1.729410px;}
.ls11_c01070{letter-spacing:-1.719975px;}
.ls12_c01070{letter-spacing:-1.697918px;}
.ls1b_c01070{letter-spacing:-1.671525px;}
.ls10_c01070{letter-spacing:-0.994500px;}
.lse_c01070{letter-spacing:-0.945000px;}
.ls5_c01070{letter-spacing:-0.867000px;}
.ls4_c01070{letter-spacing:0.000000px;}
.ls3_c01070{letter-spacing:0.867000px;}
.ls1e_c01070{letter-spacing:0.912900px;}
.ls7_c01070{letter-spacing:0.969150px;}
.ls2_c01070{letter-spacing:1.729410px;}
.ls9_c01070{letter-spacing:3.071250px;}
.ls1a_c01070{letter-spacing:3.286643px;}
.lsd_c01070{letter-spacing:3.937343px;}
.ls14_c01070{letter-spacing:4.013783px;}
.lsc_c01070{letter-spacing:4.442460px;}
.lsf_c01070{letter-spacing:4.460850px;}
.lsb_c01070{letter-spacing:4.593908px;}
.ls19_c01070{letter-spacing:4.886355px;}
.ls1_c01070{letter-spacing:5.186700px;}
.ls16_c01070{letter-spacing:5.514600px;}
.ls0_c01070{letter-spacing:6.049110px;}
.ls24_c01070{letter-spacing:38.967300px;}
.ls1f_c01070{letter-spacing:41.364900px;}
.ls22_c01070{letter-spacing:42.326550px;}
.ls23_c01070{letter-spacing:42.767100px;}
.ls21_c01070{letter-spacing:42.998400px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:0.000000px;}
._12_c01070{margin-left:-72.868982px;}
._14_c01070{margin-left:-38.234475px;}
._15_c01070{margin-left:-33.293077px;}
._16_c01070{margin-left:-30.717006px;}
._18_c01070{margin-left:-10.286717px;}
._11_c01070{margin-left:-8.924965px;}
._13_c01070{margin-left:-7.778001px;}
._1_c01070{margin-left:-6.007973px;}
._f_c01070{margin-left:-4.875738px;}
._e_c01070{margin-left:-2.906965px;}
._10_c01070{margin-left:-1.478965px;}
._17_c01070{width:1.265111px;}
._2_c01070{width:2.371483px;}
._6_c01070{width:4.166441px;}
._b_c01070{width:21.267449px;}
._d_c01070{width:22.898965px;}
._c_c01070{width:24.582000px;}
._7_c01070{width:25.596986px;}
._a_c01070{width:27.259206px;}
._0_c01070{width:28.304965px;}
._8_c01070{width:29.909036px;}
._9_c01070{width:31.571256px;}
._4_c01070{width:33.253184px;}
._5_c01070{width:34.872806px;}
._3_c01070{width:649.546165px;}
.fc0_c01070{color:transparent;}
.fsd_c01070{font-size:18.000000px;}
.fsb_c01070{font-size:34.500000px;}
.fs3_c01070{font-size:43.500000px;}
.fs14_c01070{font-size:44.250000px;}
.fs13_c01070{font-size:45.000000px;}
.fs11_c01070{font-size:45.750000px;}
.fs15_c01070{font-size:47.250000px;}
.fs12_c01070{font-size:48.000000px;}
.fs16_c01070{font-size:50.250000px;}
.fs0_c01070{font-size:51.000000px;}
.fs9_c01070{font-size:51.750000px;}
.fsc_c01070{font-size:52.500000px;}
.fs2_c01070{font-size:53.250000px;}
.fs1_c01070{font-size:54.000000px;}
.fs5_c01070{font-size:54.750000px;}
.fs6_c01070{font-size:56.250000px;}
.fs4_c01070{font-size:57.000000px;}
.fsa_c01070{font-size:58.500000px;}
.fs10_c01070{font-size:60.000000px;}
.fs8_c01070{font-size:66.000000px;}
.fs7_c01070{font-size:68.250000px;}
.fsf_c01070{font-size:70.500000px;}
.fse_c01070{font-size:72.000000px;}
.y0_c01070{bottom:0.000000px;}
.y82_c01070{bottom:181.442370px;}
.y35_c01070{bottom:181.798875px;}
.y66_c01070{bottom:181.799565px;}
.y65_c01070{bottom:200.880000px;}
.y64_c01070{bottom:200.880210px;}
.y81_c01070{bottom:200.880975px;}
.y34_c01070{bottom:201.237495px;}
.y80_c01070{bottom:219.601920px;}
.y63_c01070{bottom:219.960645px;}
.y33_c01070{bottom:220.317945px;}
.y7f_c01070{bottom:239.040525px;}
.y32_c01070{bottom:239.398380px;}
.y61_c01070{bottom:239.399145px;}
.y62_c01070{bottom:239.399250px;}
.y60_c01070{bottom:258.120045px;}
.y7e_c01070{bottom:258.120960px;}
.y31_c01070{bottom:258.480015px;}
.y30_c01070{bottom:277.918620px;}
.y5f_c01070{bottom:277.919565px;}
.y7d_c01070{bottom:277.920480px;}
.y2f_c01070{bottom:296.639535px;}
.y7c_c01070{bottom:296.641395px;}
.y5e_c01070{bottom:297.000000px;}
.y2e_c01070{bottom:316.078155px;}
.y5d_c01070{bottom:316.080000px;}
.y7b_c01070{bottom:335.159850px;}
.y2d_c01070{bottom:335.519295px;}
.y5c_c01070{bottom:335.520750px;}
.y79_c01070{bottom:354.956160px;}
.y2c_c01070{bottom:354.957915px;}
.y5b_c01070{bottom:354.959565px;}
.y7a_c01070{bottom:354.960000px;}
.y78_c01070{bottom:374.036595px;}
.y2b_c01070{bottom:374.038350px;}
.y5a_c01070{bottom:374.040000px;}
.y77_c01070{bottom:393.117045px;}
.y2a_c01070{bottom:393.118815px;}
.y59_c01070{bottom:393.119985px;}
.y76_c01070{bottom:412.197480px;}
.y57_c01070{bottom:412.199160px;}
.y29_c01070{bottom:412.199250px;}
.y58_c01070{bottom:412.199850px;}
.y75_c01070{bottom:431.277945px;}
.y28_c01070{bottom:431.279715px;}
.y56_c01070{bottom:431.640285px;}
.y74_c01070{bottom:450.358380px;}
.y55_c01070{bottom:450.359850px;}
.y27_c01070{bottom:450.360150px;}
.y73_c01070{bottom:469.799535px;}
.y26_c01070{bottom:470.159655px;}
.y72_c01070{bottom:488.879970px;}
.y25_c01070{bottom:488.880570px;}
.y71_c01070{bottom:508.318590px;}
.y53_c01070{bottom:508.318995px;}
.y54_c01070{bottom:508.319820px;}
.y24_c01070{bottom:508.680720px;}
.y70_c01070{bottom:527.399055px;}
.y52_c01070{bottom:527.399460px;}
.y22_c01070{bottom:527.759610px;}
.y23_c01070{bottom:527.760720px;}
.y6f_c01070{bottom:546.840180px;}
.y51_c01070{bottom:546.840585px;}
.y21_c01070{bottom:547.198215px;}
.y20_c01070{bottom:565.919130px;}
.y50_c01070{bottom:565.920600px;}
.y6e_c01070{bottom:565.920645px;}
.y1f_c01070{bottom:585.357735px;}
.y4f_c01070{bottom:585.359235px;}
.y6d_c01070{bottom:585.359250px;}
.y1e_c01070{bottom:604.438200px;}
.y4e_c01070{bottom:604.439670px;}
.y6c_c01070{bottom:604.439685px;}
.y6b_c01070{bottom:623.520150px;}
.y1d_c01070{bottom:623.879340px;}
.y4d_c01070{bottom:623.880105px;}
.y6a_c01070{bottom:642.241065px;}
.y1c_c01070{bottom:642.598890px;}
.y4c_c01070{bottom:642.599670px;}
.y4a_c01070{bottom:661.678410px;}
.y1b_c01070{bottom:661.679355px;}
.y4b_c01070{bottom:661.679670px;}
.y69_c01070{bottom:680.039385px;}
.y49_c01070{bottom:680.758875px;}
.y1a_c01070{bottom:680.759790px;}
.y68_c01070{bottom:699.839535px;}
.y48_c01070{bottom:700.200000px;}
.y19_c01070{bottom:700.200945px;}
.y67_c01070{bottom:718.918785px;}
.y47_c01070{bottom:719.280465px;}
.y18_c01070{bottom:719.281380px;}
.y95_c01070{bottom:738.359820px;}
.y46_c01070{bottom:738.719085px;}
.y17_c01070{bottom:738.720000px;}
.y94_c01070{bottom:757.440255px;}
.y16_c01070{bottom:757.440930px;}
.y45_c01070{bottom:757.799520px;}
.y44_c01070{bottom:776.878950px;}
.y93_c01070{bottom:776.879520px;}
.y15_c01070{bottom:777.240420px;}
.y92_c01070{bottom:795.600135px;}
.y13_c01070{bottom:795.956955px;}
.y14_c01070{bottom:795.959385px;}
.y43_c01070{bottom:815.759490px;}
.y12_c01070{bottom:816.118515px;}
.y91_c01070{bottom:834.480285px;}
.y11_c01070{bottom:835.198950px;}
.y42_c01070{bottom:835.200435px;}
.y90_c01070{bottom:853.560240px;}
.y41_c01070{bottom:853.919490px;}
.y10_c01070{bottom:854.279415px;}
.y8f_c01070{bottom:872.279205px;}
.y40_c01070{bottom:872.997210px;}
.yf_c01070{bottom:873.359850px;}
.y8e_c01070{bottom:891.359250px;}
.y3f_c01070{bottom:892.438365px;}
.ye_c01070{bottom:892.798455px;}
.y8d_c01070{bottom:910.800105px;}
.y3e_c01070{bottom:911.876970px;}
.yd_c01070{bottom:911.878920px;}
.y8c_c01070{bottom:930.600135px;}
.y3d_c01070{bottom:931.318110px;}
.yc_c01070{bottom:931.678410px;}
.y8b_c01070{bottom:949.680090px;}
.y3c_c01070{bottom:950.398560px;}
.yb_c01070{bottom:950.399340px;}
.y8a_c01070{bottom:968.760135px;}
.y3b_c01070{bottom:969.479010px;}
.ya_c01070{bottom:969.479775px;}
.y89_c01070{bottom:987.480840px;}
.y3a_c01070{bottom:988.198560px;}
.y9_c01070{bottom:988.199340px;}
.y88_c01070{bottom:1006.919955px;}
.y39_c01070{bottom:1007.639715px;}
.y8_c01070{bottom:1007.999355px;}
.y87_c01070{bottom:1026.000000px;}
.y7_c01070{bottom:1026.720150px;}
.y86_c01070{bottom:1045.440855px;}
.y6_c01070{bottom:1045.800105px;}
.y85_c01070{bottom:1063.800570px;}
.y38_c01070{bottom:1064.521020px;}
.y5_c01070{bottom:1064.879970px;}
.y4_c01070{bottom:1064.880390px;}
.y84_c01070{bottom:1082.880615px;}
.y37_c01070{bottom:1083.959640px;}
.y3_c01070{bottom:1083.960840px;}
.y83_c01070{bottom:1101.960570px;}
.y36_c01070{bottom:1103.398245px;}
.y2_c01070{bottom:1103.399460px;}
.y1_c01070{bottom:1142.279205px;}
.he_c01070{height:18.773438px;}
.hc_c01070{height:35.982422px;}
.h4_c01070{height:45.369141px;}
.h16_c01070{height:46.151367px;}
.h14_c01070{height:46.933594px;}
.h15_c01070{height:47.437500px;}
.h12_c01070{height:47.715820px;}
.h17_c01070{height:49.280273px;}
.h18_c01070{height:49.661133px;}
.h13_c01070{height:50.062500px;}
.h1_c01070{height:50.402344px;}
.ha_c01070{height:51.143555px;}
.hd_c01070{height:51.884766px;}
.h3_c01070{height:52.625977px;}
.h2_c01070{height:53.367188px;}
.h6_c01070{height:54.108398px;}
.h7_c01070{height:55.590820px;}
.h5_c01070{height:56.332031px;}
.hb_c01070{height:57.814453px;}
.h11_c01070{height:62.578125px;}
.h9_c01070{height:65.226562px;}
.h8_c01070{height:67.450195px;}
.h10_c01070{height:69.673828px;}
.hf_c01070{height:75.093750px;}
.h0_c01070{height:1263.000000px;}
.w0_c01070{width:892.500000px;}
.x0_c01070{left:0.000000px;}
.x1_c01070{left:147.239250px;}
.x5_c01070{left:211.679445px;}
.x4_c01070{left:212.758500px;}
.x2_c01070{left:213.839925px;}
.x6_c01070{left:249.479685px;}
.x3_c01070{left:250.918350px;}
.x8_c01070{left:282.959400px;}
.x7_c01070{left:284.039040px;}
.xa_c01070{left:308.519100px;}
.x9_c01070{left:309.598530px;}
.xc_c01070{left:314.998950px;}
.xf_c01070{left:321.478635px;}
.x10_c01070{left:323.279850px;}
.x11_c01070{left:327.599100px;}
.xd_c01070{left:334.439685px;}
.x16_c01070{left:340.558635px;}
.x15_c01070{left:342.359850px;}
.x13_c01070{left:349.559685px;}
.x14_c01070{left:353.519685px;}
.xb_c01070{left:366.838515px;}
.x12_c01070{left:373.319850px;}
.xe_c01070{left:380.158785px;}
.x21_c01070{left:549.359430px;}
.x20_c01070{left:568.799520px;}
.x1b_c01070{left:569.878920px;}
.x18_c01070{left:580.318110px;}
.x17_c01070{left:581.400405px;}
.x1c_c01070{left:582.479235px;}
.x1d_c01070{left:595.079400px;}
.x1e_c01070{left:627.118785px;}
.x19_c01070{left:639.719100px;}
.x1f_c01070{left:659.878320px;}
.x1a_c01070{left:665.639700px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls13_c01070{letter-spacing:-12.500000pt;}
.ls1c_c01070{letter-spacing:-11.610867pt;}
.ls18_c01070{letter-spacing:-10.986067pt;}
.lsa_c01070{letter-spacing:-6.913333pt;}
.ls20_c01070{letter-spacing:-3.639933pt;}
.ls8_c01070{letter-spacing:-3.391453pt;}
.ls1d_c01070{letter-spacing:-2.302933pt;}
.ls15_c01070{letter-spacing:-2.221800pt;}
.ls17_c01070{letter-spacing:-1.574880pt;}
.ls6_c01070{letter-spacing:-1.537253pt;}
.ls11_c01070{letter-spacing:-1.528867pt;}
.ls12_c01070{letter-spacing:-1.509260pt;}
.ls1b_c01070{letter-spacing:-1.485800pt;}
.ls10_c01070{letter-spacing:-0.884000pt;}
.lse_c01070{letter-spacing:-0.840000pt;}
.ls5_c01070{letter-spacing:-0.770667pt;}
.ls4_c01070{letter-spacing:0.000000pt;}
.ls3_c01070{letter-spacing:0.770667pt;}
.ls1e_c01070{letter-spacing:0.811467pt;}
.ls7_c01070{letter-spacing:0.861467pt;}
.ls2_c01070{letter-spacing:1.537253pt;}
.ls9_c01070{letter-spacing:2.730000pt;}
.ls1a_c01070{letter-spacing:2.921460pt;}
.lsd_c01070{letter-spacing:3.499860pt;}
.ls14_c01070{letter-spacing:3.567807pt;}
.lsc_c01070{letter-spacing:3.948853pt;}
.lsf_c01070{letter-spacing:3.965200pt;}
.lsb_c01070{letter-spacing:4.083473pt;}
.ls19_c01070{letter-spacing:4.343427pt;}
.ls1_c01070{letter-spacing:4.610400pt;}
.ls16_c01070{letter-spacing:4.901867pt;}
.ls0_c01070{letter-spacing:5.376987pt;}
.ls24_c01070{letter-spacing:34.637600pt;}
.ls1f_c01070{letter-spacing:36.768800pt;}
.ls22_c01070{letter-spacing:37.623600pt;}
.ls23_c01070{letter-spacing:38.015200pt;}
.ls21_c01070{letter-spacing:38.220800pt;}
.ws0_c01070{word-spacing:0.000000pt;}
._12_c01070{margin-left:-64.772428pt;}
._14_c01070{margin-left:-33.986200pt;}
._15_c01070{margin-left:-29.593846pt;}
._16_c01070{margin-left:-27.304005pt;}
._18_c01070{margin-left:-9.143749pt;}
._11_c01070{margin-left:-7.933303pt;}
._13_c01070{margin-left:-6.913779pt;}
._1_c01070{margin-left:-5.340420pt;}
._f_c01070{margin-left:-4.333990pt;}
._e_c01070{margin-left:-2.583969pt;}
._10_c01070{margin-left:-1.314636pt;}
._17_c01070{width:1.124543pt;}
._2_c01070{width:2.107985pt;}
._6_c01070{width:3.703503pt;}
._b_c01070{width:18.904400pt;}
._d_c01070{width:20.354636pt;}
._c_c01070{width:21.850667pt;}
._7_c01070{width:22.752877pt;}
._a_c01070{width:24.230405pt;}
._0_c01070{width:25.159969pt;}
._8_c01070{width:26.585810pt;}
._9_c01070{width:28.063339pt;}
._4_c01070{width:29.558386pt;}
._5_c01070{width:30.998050pt;}
._3_c01070{width:577.374369pt;}
.fsd_c01070{font-size:16.000000pt;}
.fsb_c01070{font-size:30.666667pt;}
.fs3_c01070{font-size:38.666667pt;}
.fs14_c01070{font-size:39.333333pt;}
.fs13_c01070{font-size:40.000000pt;}
.fs11_c01070{font-size:40.666667pt;}
.fs15_c01070{font-size:42.000000pt;}
.fs12_c01070{font-size:42.666667pt;}
.fs16_c01070{font-size:44.666667pt;}
.fs0_c01070{font-size:45.333333pt;}
.fs9_c01070{font-size:46.000000pt;}
.fsc_c01070{font-size:46.666667pt;}
.fs2_c01070{font-size:47.333333pt;}
.fs1_c01070{font-size:48.000000pt;}
.fs5_c01070{font-size:48.666667pt;}
.fs6_c01070{font-size:50.000000pt;}
.fs4_c01070{font-size:50.666667pt;}
.fsa_c01070{font-size:52.000000pt;}
.fs10_c01070{font-size:53.333333pt;}
.fs8_c01070{font-size:58.666667pt;}
.fs7_c01070{font-size:60.666667pt;}
.fsf_c01070{font-size:62.666667pt;}
.fse_c01070{font-size:64.000000pt;}
.y0_c01070{bottom:0.000000pt;}
.y82_c01070{bottom:161.282107pt;}
.y35_c01070{bottom:161.599000pt;}
.y66_c01070{bottom:161.599613pt;}
.y65_c01070{bottom:178.560000pt;}
.y64_c01070{bottom:178.560187pt;}
.y81_c01070{bottom:178.560867pt;}
.y34_c01070{bottom:178.877773pt;}
.y80_c01070{bottom:195.201707pt;}
.y63_c01070{bottom:195.520573pt;}
.y33_c01070{bottom:195.838173pt;}
.y7f_c01070{bottom:212.480467pt;}
.y32_c01070{bottom:212.798560pt;}
.y61_c01070{bottom:212.799240pt;}
.y62_c01070{bottom:212.799333pt;}
.y60_c01070{bottom:229.440040pt;}
.y7e_c01070{bottom:229.440853pt;}
.y31_c01070{bottom:229.760013pt;}
.y30_c01070{bottom:247.038773pt;}
.y5f_c01070{bottom:247.039613pt;}
.y7d_c01070{bottom:247.040427pt;}
.y2f_c01070{bottom:263.679587pt;}
.y7c_c01070{bottom:263.681240pt;}
.y5e_c01070{bottom:264.000000pt;}
.y2e_c01070{bottom:280.958360pt;}
.y5d_c01070{bottom:280.960000pt;}
.y7b_c01070{bottom:297.919867pt;}
.y2d_c01070{bottom:298.239373pt;}
.y5c_c01070{bottom:298.240667pt;}
.y79_c01070{bottom:315.516587pt;}
.y2c_c01070{bottom:315.518147pt;}
.y5b_c01070{bottom:315.519613pt;}
.y7a_c01070{bottom:315.520000pt;}
.y78_c01070{bottom:332.476973pt;}
.y2b_c01070{bottom:332.478533pt;}
.y5a_c01070{bottom:332.480000pt;}
.y77_c01070{bottom:349.437373pt;}
.y2a_c01070{bottom:349.438947pt;}
.y59_c01070{bottom:349.439987pt;}
.y76_c01070{bottom:366.397760pt;}
.y57_c01070{bottom:366.399253pt;}
.y29_c01070{bottom:366.399333pt;}
.y58_c01070{bottom:366.399867pt;}
.y75_c01070{bottom:383.358173pt;}
.y28_c01070{bottom:383.359747pt;}
.y56_c01070{bottom:383.680253pt;}
.y74_c01070{bottom:400.318560pt;}
.y55_c01070{bottom:400.319867pt;}
.y27_c01070{bottom:400.320133pt;}
.y73_c01070{bottom:417.599587pt;}
.y26_c01070{bottom:417.919693pt;}
.y72_c01070{bottom:434.559973pt;}
.y25_c01070{bottom:434.560507pt;}
.y71_c01070{bottom:451.838747pt;}
.y53_c01070{bottom:451.839107pt;}
.y54_c01070{bottom:451.839840pt;}
.y24_c01070{bottom:452.160640pt;}
.y70_c01070{bottom:468.799160pt;}
.y52_c01070{bottom:468.799520pt;}
.y22_c01070{bottom:469.119653pt;}
.y23_c01070{bottom:469.120640pt;}
.y6f_c01070{bottom:486.080160pt;}
.y51_c01070{bottom:486.080520pt;}
.y21_c01070{bottom:486.398413pt;}
.y20_c01070{bottom:503.039227pt;}
.y50_c01070{bottom:503.040533pt;}
.y6e_c01070{bottom:503.040573pt;}
.y1f_c01070{bottom:520.317987pt;}
.y4f_c01070{bottom:520.319320pt;}
.y6d_c01070{bottom:520.319333pt;}
.y1e_c01070{bottom:537.278400pt;}
.y4e_c01070{bottom:537.279707pt;}
.y6c_c01070{bottom:537.279720pt;}
.y6b_c01070{bottom:554.240133pt;}
.y1d_c01070{bottom:554.559413pt;}
.y4d_c01070{bottom:554.560093pt;}
.y6a_c01070{bottom:570.880947pt;}
.y1c_c01070{bottom:571.199013pt;}
.y4c_c01070{bottom:571.199707pt;}
.y4a_c01070{bottom:588.158587pt;}
.y1b_c01070{bottom:588.159427pt;}
.y4b_c01070{bottom:588.159707pt;}
.y69_c01070{bottom:604.479453pt;}
.y49_c01070{bottom:605.119000pt;}
.y1a_c01070{bottom:605.119813pt;}
.y68_c01070{bottom:622.079587pt;}
.y48_c01070{bottom:622.400000pt;}
.y19_c01070{bottom:622.400840pt;}
.y67_c01070{bottom:639.038920pt;}
.y47_c01070{bottom:639.360413pt;}
.y18_c01070{bottom:639.361227pt;}
.y95_c01070{bottom:656.319840pt;}
.y46_c01070{bottom:656.639187pt;}
.y17_c01070{bottom:656.640000pt;}
.y94_c01070{bottom:673.280227pt;}
.y16_c01070{bottom:673.280827pt;}
.y45_c01070{bottom:673.599573pt;}
.y44_c01070{bottom:690.559067pt;}
.y93_c01070{bottom:690.559573pt;}
.y15_c01070{bottom:690.880373pt;}
.y92_c01070{bottom:707.200120pt;}
.y13_c01070{bottom:707.517293pt;}
.y14_c01070{bottom:707.519453pt;}
.y43_c01070{bottom:725.119547pt;}
.y12_c01070{bottom:725.438680pt;}
.y91_c01070{bottom:741.760253pt;}
.y11_c01070{bottom:742.399067pt;}
.y42_c01070{bottom:742.400387pt;}
.y90_c01070{bottom:758.720213pt;}
.y41_c01070{bottom:759.039547pt;}
.y10_c01070{bottom:759.359480pt;}
.y8f_c01070{bottom:775.359293pt;}
.y40_c01070{bottom:775.997520pt;}
.yf_c01070{bottom:776.319867pt;}
.y8e_c01070{bottom:792.319333pt;}
.y3f_c01070{bottom:793.278547pt;}
.ye_c01070{bottom:793.598627pt;}
.y8d_c01070{bottom:809.600093pt;}
.y3e_c01070{bottom:810.557307pt;}
.yd_c01070{bottom:810.559040pt;}
.y8c_c01070{bottom:827.200120pt;}
.y3d_c01070{bottom:827.838320pt;}
.yc_c01070{bottom:828.158587pt;}
.y8b_c01070{bottom:844.160080pt;}
.y3c_c01070{bottom:844.798720pt;}
.yb_c01070{bottom:844.799413pt;}
.y8a_c01070{bottom:861.120120pt;}
.y3b_c01070{bottom:861.759120pt;}
.ya_c01070{bottom:861.759800pt;}
.y89_c01070{bottom:877.760747pt;}
.y3a_c01070{bottom:878.398720pt;}
.y9_c01070{bottom:878.399413pt;}
.y88_c01070{bottom:895.039960pt;}
.y39_c01070{bottom:895.679747pt;}
.y8_c01070{bottom:895.999427pt;}
.y87_c01070{bottom:912.000000pt;}
.y7_c01070{bottom:912.640133pt;}
.y86_c01070{bottom:929.280760pt;}
.y6_c01070{bottom:929.600093pt;}
.y85_c01070{bottom:945.600507pt;}
.y38_c01070{bottom:946.240907pt;}
.y5_c01070{bottom:946.559973pt;}
.y4_c01070{bottom:946.560347pt;}
.y84_c01070{bottom:962.560547pt;}
.y37_c01070{bottom:963.519680pt;}
.y3_c01070{bottom:963.520747pt;}
.y83_c01070{bottom:979.520507pt;}
.y36_c01070{bottom:980.798440pt;}
.y2_c01070{bottom:980.799520pt;}
.y1_c01070{bottom:1015.359293pt;}
.he_c01070{height:16.687500pt;}
.hc_c01070{height:31.984375pt;}
.h4_c01070{height:40.328125pt;}
.h16_c01070{height:41.023438pt;}
.h14_c01070{height:41.718750pt;}
.h15_c01070{height:42.166667pt;}
.h12_c01070{height:42.414062pt;}
.h17_c01070{height:43.804688pt;}
.h18_c01070{height:44.143229pt;}
.h13_c01070{height:44.500000pt;}
.h1_c01070{height:44.802083pt;}
.ha_c01070{height:45.460938pt;}
.hd_c01070{height:46.119792pt;}
.h3_c01070{height:46.778646pt;}
.h2_c01070{height:47.437500pt;}
.h6_c01070{height:48.096354pt;}
.h7_c01070{height:49.414063pt;}
.h5_c01070{height:50.072917pt;}
.hb_c01070{height:51.390625pt;}
.h11_c01070{height:55.625000pt;}
.h9_c01070{height:57.979167pt;}
.h8_c01070{height:59.955729pt;}
.h10_c01070{height:61.932292pt;}
.hf_c01070{height:66.750000pt;}
.h0_c01070{height:1122.666667pt;}
.w0_c01070{width:793.333333pt;}
.x0_c01070{left:0.000000pt;}
.x1_c01070{left:130.879333pt;}
.x5_c01070{left:188.159507pt;}
.x4_c01070{left:189.118667pt;}
.x2_c01070{left:190.079933pt;}
.x6_c01070{left:221.759720pt;}
.x3_c01070{left:223.038533pt;}
.x8_c01070{left:251.519467pt;}
.x7_c01070{left:252.479147pt;}
.xa_c01070{left:274.239200pt;}
.x9_c01070{left:275.198693pt;}
.xc_c01070{left:279.999067pt;}
.xf_c01070{left:285.758787pt;}
.x10_c01070{left:287.359867pt;}
.x11_c01070{left:291.199200pt;}
.xd_c01070{left:297.279720pt;}
.x16_c01070{left:302.718787pt;}
.x15_c01070{left:304.319867pt;}
.x13_c01070{left:310.719720pt;}
.x14_c01070{left:314.239720pt;}
.xb_c01070{left:326.078680pt;}
.x12_c01070{left:331.839867pt;}
.xe_c01070{left:337.918920pt;}
.x21_c01070{left:488.319493pt;}
.x20_c01070{left:505.599573pt;}
.x1b_c01070{left:506.559040pt;}
.x18_c01070{left:515.838320pt;}
.x17_c01070{left:516.800360pt;}
.x1c_c01070{left:517.759320pt;}
.x1d_c01070{left:528.959467pt;}
.x1e_c01070{left:557.438920pt;}
.x19_c01070{left:568.639200pt;}
.x1f_c01070{left:586.558507pt;}
.x1a_c01070{left:591.679733pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_b717a6137f51f768c0f4308e.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01071;src:url('chunks/assets/font_94313e119301508d90b7bea8.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01071;src:url('chunks/assets/font_36cfe1e7593be4f6358bf646.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01071;src:url('chunks/assets/font_9256e977395bb87b261a044e.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01071;src:url('chunks/assets/font_78e90f8ab8c87c1b21408461.woff2')format("woff");}.ff5_c01071{font-family:ff5_c01071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01071;src:url('chunks/assets/font_e1a26405cd0ab04250805b27.woff2')format("woff");}.ff6_c01071{font-family:ff6_c01071;line-height:1.311035;font-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_c01071{transform:matrix(0.137755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137755,0.000000,0.000000,0.250000,0,0);}
.m10_c01071{transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156915,0.000000,0.000000,0.250000,0,0);}
.m21_c01071{transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158602,0.000000,0.000000,0.250000,0,0);}
.m1a_c01071{transform:matrix(0.159794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159794,0.000000,0.000000,0.250000,0,0);}
.m13_c01071{transform:matrix(0.164894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164894,0.000000,0.000000,0.250000,0,0);}
.m27_c01071{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.m26_c01071{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m23_c01071{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m5_c01071{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);}
.m8_c01071{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m22_c01071{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m7_c01071{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m3_c01071{transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);}
.m1d_c01071{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m2_c01071{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m12_c01071{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m4_c01071{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m20_c01071{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m1b_c01071{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m25_c01071{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m18_c01071{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m1_c01071{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.me_c01071{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m11_c01071{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m9_c01071{transform:matrix(0.228992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228992,0.000000,0.000000,0.250000,0,0);}
.m1c_c01071{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m19_c01071{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m0_c01071{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mf_c01071{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m14_c01071{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m1e_c01071{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m6_c01071{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m1f_c01071{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m17_c01071{transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);}
.mc_c01071{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m15_c01071{transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305851,0.000000,0.000000,0.250000,0,0);}
.md_c01071{transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);}
.ma_c01071{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m16_c01071{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.mb_c01071{transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls19_c01071{letter-spacing:-7.566000px;}
.ls4_c01071{letter-spacing:-7.149600px;}
.lsb_c01071{letter-spacing:-6.350400px;}
.ls7_c01071{letter-spacing:-5.557140px;}
.ls23_c01071{letter-spacing:-5.431523px;}
.ls22_c01071{letter-spacing:-5.325533px;}
.ls1a_c01071{letter-spacing:-4.838400px;}
.ls2_c01071{letter-spacing:-4.762800px;}
.ls1e_c01071{letter-spacing:-4.185825px;}
.ls1d_c01071{letter-spacing:-4.079250px;}
.ls1_c01071{letter-spacing:-3.969000px;}
.ls17_c01071{letter-spacing:-3.805725px;}
.ls1b_c01071{letter-spacing:-3.521100px;}
.ls15_c01071{letter-spacing:-3.412200px;}
.lsd_c01071{letter-spacing:-3.175740px;}
.ls9_c01071{letter-spacing:-2.849783px;}
.ls25_c01071{letter-spacing:-2.529450px;}
.ls1f_c01071{letter-spacing:-2.512500px;}
.ls13_c01071{letter-spacing:-2.497958px;}
.ls12_c01071{letter-spacing:-2.390655px;}
.ls16_c01071{letter-spacing:-2.381400px;}
.lsc_c01071{letter-spacing:-2.214300px;}
.lsf_c01071{letter-spacing:-1.857473px;}
.ls14_c01071{letter-spacing:-1.756170px;}
.ls1c_c01071{letter-spacing:-1.717200px;}
.ls5_c01071{letter-spacing:-1.672823px;}
.lsa_c01071{letter-spacing:-0.876225px;}
.ls3_c01071{letter-spacing:-0.838673px;}
.ls24_c01071{letter-spacing:-0.793260px;}
.ls8_c01071{letter-spacing:0.000000px;}
.lse_c01071{letter-spacing:0.601178px;}
.ls18_c01071{letter-spacing:0.613350px;}
.ls21_c01071{letter-spacing:0.838673px;}
.ls11_c01071{letter-spacing:1.554000px;}
.ls20_c01071{letter-spacing:1.672823px;}
.ls10_c01071{letter-spacing:4.172775px;}
.ls6_c01071{letter-spacing:4.553790px;}
.ls0_c01071{letter-spacing:47.649600px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:0.000000px;}
._d_c01071{margin-left:-104.452518px;}
._4_c01071{margin-left:-16.011349px;}
._c_c01071{margin-left:-14.235416px;}
._7_c01071{margin-left:-12.799080px;}
._6_c01071{margin-left:-10.314064px;}
._a_c01071{margin-left:-8.877028px;}
._8_c01071{margin-left:-7.360009px;}
._5_c01071{margin-left:-5.378019px;}
._b_c01071{margin-left:-3.769327px;}
._3_c01071{margin-left:-2.582788px;}
._1_c01071{margin-left:-1.132666px;}
._9_c01071{width:2.410814px;}
._0_c01071{width:21.621664px;}
._2_c01071{width:603.162720px;}
.fc0_c01071{color:transparent;}
.fsa_c01071{font-size:9.750000px;}
.fsc_c01071{font-size:33.000000px;}
.fse_c01071{font-size:42.000000px;}
.fs13_c01071{font-size:43.500000px;}
.fsd_c01071{font-size:44.250000px;}
.fs6_c01071{font-size:45.750000px;}
.fs12_c01071{font-size:48.750000px;}
.fs1_c01071{font-size:50.250000px;}
.fs2_c01071{font-size:51.000000px;}
.fsb_c01071{font-size:51.750000px;}
.fs4_c01071{font-size:52.500000px;}
.fs10_c01071{font-size:53.250000px;}
.fs0_c01071{font-size:54.000000px;}
.fs16_c01071{font-size:54.750000px;}
.fs7_c01071{font-size:55.500000px;}
.fs5_c01071{font-size:57.000000px;}
.fs9_c01071{font-size:57.750000px;}
.fs3_c01071{font-size:60.750000px;}
.fs14_c01071{font-size:69.750000px;}
.fsf_c01071{font-size:70.500000px;}
.fs11_c01071{font-size:72.750000px;}
.fs15_c01071{font-size:73.500000px;}
.fs8_c01071{font-size:89.250000px;}
.y0_c01071{bottom:0.000000px;}
.y32_c01071{bottom:186.839565px;}
.y83_c01071{bottom:205.921185px;}
.y31_c01071{bottom:206.280435px;}
.y82_c01071{bottom:224.640150px;}
.y30_c01071{bottom:225.001050px;}
.y5f_c01071{bottom:225.002685px;}
.y2f_c01071{bottom:244.440285px;}
.y5e_c01071{bottom:244.441275px;}
.y81_c01071{bottom:263.161035px;}
.y2e_c01071{bottom:263.520285px;}
.y5d_c01071{bottom:263.520810px;}
.y2d_c01071{bottom:282.961050px;}
.y5c_c01071{bottom:282.962085px;}
.y2c_c01071{bottom:302.041050px;}
.y5b_c01071{bottom:302.041620px;}
.y5a_c01071{bottom:321.480210px;}
.y80_c01071{bottom:321.480285px;}
.y2b_c01071{bottom:321.839535px;}
.y7f_c01071{bottom:340.560285px;}
.y2a_c01071{bottom:340.921185px;}
.y59_c01071{bottom:340.921485px;}
.y58_c01071{bottom:360.001035px;}
.y29_c01071{bottom:360.360285px;}
.y56_c01071{bottom:378.720000px;}
.y57_c01071{bottom:378.720135px;}
.y28_c01071{bottom:379.081035px;}
.y55_c01071{bottom:397.799535px;}
.y27_c01071{bottom:397.800150px;}
.y54_c01071{bottom:416.520030px;}
.y26_c01071{bottom:416.520720px;}
.y7e_c01071{bottom:416.521845px;}
.y25_c01071{bottom:435.959970px;}
.y53_c01071{bottom:435.960075px;}
.y7d_c01071{bottom:435.960435px;}
.y52_c01071{bottom:455.039610px;}
.y24_c01071{bottom:455.039985px;}
.y23_c01071{bottom:474.840135px;}
.y7c_c01071{bottom:493.919265px;}
.y22_c01071{bottom:494.280900px;}
.y7b_c01071{bottom:513.719790px;}
.y21_c01071{bottom:513.720150px;}
.y51_c01071{bottom:532.800360px;}
.y20_c01071{bottom:533.161050px;}
.y1f_c01071{bottom:552.600135px;}
.y50_c01071{bottom:552.600885px;}
.y7a_c01071{bottom:571.321380px;}
.y1e_c01071{bottom:571.680135px;}
.y4f_c01071{bottom:571.680435px;}
.y4e_c01071{bottom:590.400930px;}
.y79_c01071{bottom:590.759970px;}
.y1d_c01071{bottom:590.760135px;}
.y4d_c01071{bottom:609.119985px;}
.y78_c01071{bottom:609.120660px;}
.y1c_c01071{bottom:609.480885px;}
.y4c_c01071{bottom:628.199730px;}
.y77_c01071{bottom:628.200210px;}
.y1b_c01071{bottom:628.560750px;}
.y76_c01071{bottom:647.279850px;}
.y1a_c01071{bottom:647.640750px;}
.y4b_c01071{bottom:648.000255px;}
.y75_c01071{bottom:666.720240px;}
.y19_c01071{bottom:666.720750px;}
.y4a_c01071{bottom:666.725235px;}
.y74_c01071{bottom:685.439295px;}
.y18_c01071{bottom:685.800570px;}
.y49_c01071{bottom:685.804785px;}
.y17_c01071{bottom:705.239820px;}
.y48_c01071{bottom:705.243375px;}
.y16_c01071{bottom:724.319820px;}
.y47_c01071{bottom:724.322910px;}
.y73_c01071{bottom:743.760720px;}
.y15_c01071{bottom:744.119985px;}
.y46_c01071{bottom:744.123435px;}
.y72_c01071{bottom:762.840585px;}
.y14_c01071{bottom:763.199850px;}
.y45_c01071{bottom:763.202985px;}
.y71_c01071{bottom:781.920600px;}
.y44_c01071{bottom:782.282520px;}
.y13_c01071{bottom:782.640750px;}
.y70_c01071{bottom:801.000555px;}
.y12_c01071{bottom:801.359805px;}
.y43_c01071{bottom:801.362070px;}
.y6f_c01071{bottom:820.440255px;}
.y11_c01071{bottom:821.159820px;}
.y42_c01071{bottom:821.162595px;}
.y10_c01071{bottom:839.880615px;}
.y6e_c01071{bottom:839.881530px;}
.y41_c01071{bottom:839.883090px;}
.y6d_c01071{bottom:858.961080px;}
.y40_c01071{bottom:859.321680px;}
.yf_c01071{bottom:859.680720px;}
.y6c_c01071{bottom:878.040615px;}
.y3f_c01071{bottom:878.401215px;}
.ye_c01071{bottom:878.760780px;}
.y6b_c01071{bottom:897.479640px;}
.yd_c01071{bottom:897.840540px;}
.y3e_c01071{bottom:897.842490px;}
.y6a_c01071{bottom:916.200435px;}
.yc_c01071{bottom:916.920600px;}
.y3d_c01071{bottom:916.922040px;}
.y69_c01071{bottom:936.000555px;}
.y3c_c01071{bottom:936.360630px;}
.yb_c01071{bottom:936.720705px;}
.y68_c01071{bottom:954.719520px;}
.y3b_c01071{bottom:955.081125px;}
.ya_c01071{bottom:955.439670px;}
.y67_c01071{bottom:974.161200px;}
.y3a_c01071{bottom:974.519715px;}
.y9_c01071{bottom:974.880615px;}
.y66_c01071{bottom:992.881695px;}
.y8_c01071{bottom:993.599670px;}
.y65_c01071{bottom:1012.320285px;}
.y38_c01071{bottom:1012.679625px;}
.y39_c01071{bottom:1012.679715px;}
.y7_c01071{bottom:1013.040615px;}
.y64_c01071{bottom:1031.401365px;}
.y37_c01071{bottom:1031.759175px;}
.y6_c01071{bottom:1032.120390px;}
.y63_c01071{bottom:1050.480900px;}
.y5_c01071{bottom:1051.200435px;}
.y62_c01071{bottom:1069.560450px;}
.y36_c01071{bottom:1070.280390px;}
.y4_c01071{bottom:1070.639655px;}
.y35_c01071{bottom:1076.760135px;}
.y61_c01071{bottom:1089.001710px;}
.y34_c01071{bottom:1089.719625px;}
.y3_c01071{bottom:1090.080420px;}
.y60_c01071{bottom:1108.440315px;}
.y2_c01071{bottom:1109.160465px;}
.y33_c01071{bottom:1109.160900px;}
.y1_c01071{bottom:1148.040525px;}
.hb_c01071{height:9.635742px;}
.hd_c01071{height:34.417969px;}
.hf_c01071{height:41.507812px;}
.he_c01071{height:43.731445px;}
.h7_c01071{height:45.213867px;}
.h17_c01071{height:45.369141px;}
.h15_c01071{height:49.130859px;}
.h18_c01071{height:49.293091px;}
.h2_c01071{height:49.661133px;}
.h3_c01071{height:50.402344px;}
.h13_c01071{height:51.500244px;}
.h5_c01071{height:51.884766px;}
.h11_c01071{height:52.235962px;}
.h1_c01071{height:52.971680px;}
.h1b_c01071{height:53.707397px;}
.hc_c01071{height:53.973633px;}
.h16_c01071{height:54.443115px;}
.h8_c01071{height:54.849609px;}
.h12_c01071{height:55.914551px;}
.h6_c01071{height:56.332031px;}
.h4_c01071{height:59.593140px;}
.ha_c01071{height:60.231445px;}
.h19_c01071{height:68.421753px;}
.h10_c01071{height:69.157471px;}
.h14_c01071{height:71.364624px;}
.h1a_c01071{height:72.100342px;}
.h9_c01071{height:93.084961px;}
.h0_c01071{height:1263.000000px;}
.w0_c01071{width:892.500000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:145.078815px;}
.x6_c01071{left:209.159385px;}
.x5_c01071{left:210.238785px;}
.x2_c01071{left:211.319850px;}
.x7_c01071{left:246.958350px;}
.x4_c01071{left:248.039385px;}
.x3_c01071{left:249.118785px;}
.xf_c01071{left:279.721740px;}
.xe_c01071{left:280.798950px;}
.x8_c01071{left:281.878605px;}
.x12_c01071{left:305.999385px;}
.xc_c01071{left:307.798950px;}
.x13_c01071{left:325.079385px;}
.x9_c01071{left:326.878950px;}
.x15_c01071{left:337.679700px;}
.x10_c01071{left:344.879535px;}
.xa_c01071{left:347.040000px;}
.xd_c01071{left:358.918350px;}
.x11_c01071{left:370.798515px;}
.xb_c01071{left:386.638500px;}
.x14_c01071{left:409.678530px;}
.x1f_c01071{left:565.559685px;}
.x20_c01071{left:577.798920px;}
.x16_c01071{left:579.598530px;}
.x19_c01071{left:580.679670px;}
.x22_c01071{left:591.478635px;}
.x17_c01071{left:593.279850px;}
.x1e_c01071{left:597.599070px;}
.x18_c01071{left:599.398635px;}
.x1a_c01071{left:605.519070px;}
.x21_c01071{left:610.919535px;}
.x1c_c01071{left:670.319820px;}
.x1b_c01071{left:682.918350px;}
.x1d_c01071{left:696.238770px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls19_c01071{letter-spacing:-6.725333pt;}
.ls4_c01071{letter-spacing:-6.355200pt;}
.lsb_c01071{letter-spacing:-5.644800pt;}
.ls7_c01071{letter-spacing:-4.939680pt;}
.ls23_c01071{letter-spacing:-4.828020pt;}
.ls22_c01071{letter-spacing:-4.733807pt;}
.ls1a_c01071{letter-spacing:-4.300800pt;}
.ls2_c01071{letter-spacing:-4.233600pt;}
.ls1e_c01071{letter-spacing:-3.720733pt;}
.ls1d_c01071{letter-spacing:-3.626000pt;}
.ls1_c01071{letter-spacing:-3.528000pt;}
.ls17_c01071{letter-spacing:-3.382867pt;}
.ls1b_c01071{letter-spacing:-3.129867pt;}
.ls15_c01071{letter-spacing:-3.033067pt;}
.lsd_c01071{letter-spacing:-2.822880pt;}
.ls9_c01071{letter-spacing:-2.533140pt;}
.ls25_c01071{letter-spacing:-2.248400pt;}
.ls1f_c01071{letter-spacing:-2.233333pt;}
.ls13_c01071{letter-spacing:-2.220407pt;}
.ls12_c01071{letter-spacing:-2.125027pt;}
.ls16_c01071{letter-spacing:-2.116800pt;}
.lsc_c01071{letter-spacing:-1.968267pt;}
.lsf_c01071{letter-spacing:-1.651087pt;}
.ls14_c01071{letter-spacing:-1.561040pt;}
.ls1c_c01071{letter-spacing:-1.526400pt;}
.ls5_c01071{letter-spacing:-1.486953pt;}
.lsa_c01071{letter-spacing:-0.778867pt;}
.ls3_c01071{letter-spacing:-0.745487pt;}
.ls24_c01071{letter-spacing:-0.705120pt;}
.ls8_c01071{letter-spacing:0.000000pt;}
.lse_c01071{letter-spacing:0.534380pt;}
.ls18_c01071{letter-spacing:0.545200pt;}
.ls21_c01071{letter-spacing:0.745487pt;}
.ls11_c01071{letter-spacing:1.381333pt;}
.ls20_c01071{letter-spacing:1.486953pt;}
.ls10_c01071{letter-spacing:3.709133pt;}
.ls6_c01071{letter-spacing:4.047813pt;}
.ls0_c01071{letter-spacing:42.355200pt;}
.ws0_c01071{word-spacing:0.000000pt;}
._d_c01071{margin-left:-92.846682pt;}
._4_c01071{margin-left:-14.232311pt;}
._c_c01071{margin-left:-12.653704pt;}
._7_c01071{margin-left:-11.376960pt;}
._6_c01071{margin-left:-9.168056pt;}
._a_c01071{margin-left:-7.890692pt;}
._8_c01071{margin-left:-6.542231pt;}
._5_c01071{margin-left:-4.780461pt;}
._b_c01071{margin-left:-3.350513pt;}
._3_c01071{margin-left:-2.295812pt;}
._1_c01071{margin-left:-1.006814pt;}
._9_c01071{width:2.142946pt;}
._0_c01071{width:19.219256pt;}
._2_c01071{width:536.144640pt;}
.fsa_c01071{font-size:8.666667pt;}
.fsc_c01071{font-size:29.333333pt;}
.fse_c01071{font-size:37.333333pt;}
.fs13_c01071{font-size:38.666667pt;}
.fsd_c01071{font-size:39.333333pt;}
.fs6_c01071{font-size:40.666667pt;}
.fs12_c01071{font-size:43.333333pt;}
.fs1_c01071{font-size:44.666667pt;}
.fs2_c01071{font-size:45.333333pt;}
.fsb_c01071{font-size:46.000000pt;}
.fs4_c01071{font-size:46.666667pt;}
.fs10_c01071{font-size:47.333333pt;}
.fs0_c01071{font-size:48.000000pt;}
.fs16_c01071{font-size:48.666667pt;}
.fs7_c01071{font-size:49.333333pt;}
.fs5_c01071{font-size:50.666667pt;}
.fs9_c01071{font-size:51.333333pt;}
.fs3_c01071{font-size:54.000000pt;}
.fs14_c01071{font-size:62.000000pt;}
.fsf_c01071{font-size:62.666667pt;}
.fs11_c01071{font-size:64.666667pt;}
.fs15_c01071{font-size:65.333333pt;}
.fs8_c01071{font-size:79.333333pt;}
.y0_c01071{bottom:0.000000pt;}
.y32_c01071{bottom:166.079613pt;}
.y83_c01071{bottom:183.041053pt;}
.y31_c01071{bottom:183.360387pt;}
.y82_c01071{bottom:199.680133pt;}
.y30_c01071{bottom:200.000933pt;}
.y5f_c01071{bottom:200.002387pt;}
.y2f_c01071{bottom:217.280253pt;}
.y5e_c01071{bottom:217.281133pt;}
.y81_c01071{bottom:233.920920pt;}
.y2e_c01071{bottom:234.240253pt;}
.y5d_c01071{bottom:234.240720pt;}
.y2d_c01071{bottom:251.520933pt;}
.y5c_c01071{bottom:251.521853pt;}
.y2c_c01071{bottom:268.480933pt;}
.y5b_c01071{bottom:268.481440pt;}
.y5a_c01071{bottom:285.760187pt;}
.y80_c01071{bottom:285.760253pt;}
.y2b_c01071{bottom:286.079587pt;}
.y7f_c01071{bottom:302.720253pt;}
.y2a_c01071{bottom:303.041053pt;}
.y59_c01071{bottom:303.041320pt;}
.y58_c01071{bottom:320.000920pt;}
.y29_c01071{bottom:320.320253pt;}
.y56_c01071{bottom:336.640000pt;}
.y57_c01071{bottom:336.640120pt;}
.y28_c01071{bottom:336.960920pt;}
.y55_c01071{bottom:353.599587pt;}
.y27_c01071{bottom:353.600133pt;}
.y54_c01071{bottom:370.240027pt;}
.y26_c01071{bottom:370.240640pt;}
.y7e_c01071{bottom:370.241640pt;}
.y25_c01071{bottom:387.519973pt;}
.y53_c01071{bottom:387.520067pt;}
.y7d_c01071{bottom:387.520387pt;}
.y52_c01071{bottom:404.479653pt;}
.y24_c01071{bottom:404.479987pt;}
.y23_c01071{bottom:422.080120pt;}
.y7c_c01071{bottom:439.039347pt;}
.y22_c01071{bottom:439.360800pt;}
.y7b_c01071{bottom:456.639813pt;}
.y21_c01071{bottom:456.640133pt;}
.y51_c01071{bottom:473.600320pt;}
.y20_c01071{bottom:473.920933pt;}
.y1f_c01071{bottom:491.200120pt;}
.y50_c01071{bottom:491.200787pt;}
.y7a_c01071{bottom:507.841227pt;}
.y1e_c01071{bottom:508.160120pt;}
.y4f_c01071{bottom:508.160387pt;}
.y4e_c01071{bottom:524.800827pt;}
.y79_c01071{bottom:525.119973pt;}
.y1d_c01071{bottom:525.120120pt;}
.y4d_c01071{bottom:541.439987pt;}
.y78_c01071{bottom:541.440587pt;}
.y1c_c01071{bottom:541.760787pt;}
.y4c_c01071{bottom:558.399760pt;}
.y77_c01071{bottom:558.400187pt;}
.y1b_c01071{bottom:558.720667pt;}
.y76_c01071{bottom:575.359867pt;}
.y1a_c01071{bottom:575.680667pt;}
.y4b_c01071{bottom:576.000227pt;}
.y75_c01071{bottom:592.640213pt;}
.y19_c01071{bottom:592.640667pt;}
.y4a_c01071{bottom:592.644653pt;}
.y74_c01071{bottom:609.279373pt;}
.y18_c01071{bottom:609.600507pt;}
.y49_c01071{bottom:609.604253pt;}
.y17_c01071{bottom:626.879840pt;}
.y48_c01071{bottom:626.883000pt;}
.y16_c01071{bottom:643.839840pt;}
.y47_c01071{bottom:643.842587pt;}
.y73_c01071{bottom:661.120640pt;}
.y15_c01071{bottom:661.439987pt;}
.y46_c01071{bottom:661.443053pt;}
.y72_c01071{bottom:678.080520pt;}
.y14_c01071{bottom:678.399867pt;}
.y45_c01071{bottom:678.402653pt;}
.y71_c01071{bottom:695.040533pt;}
.y44_c01071{bottom:695.362240pt;}
.y13_c01071{bottom:695.680667pt;}
.y70_c01071{bottom:712.000493pt;}
.y12_c01071{bottom:712.319827pt;}
.y43_c01071{bottom:712.321840pt;}
.y6f_c01071{bottom:729.280227pt;}
.y11_c01071{bottom:729.919840pt;}
.y42_c01071{bottom:729.922307pt;}
.y10_c01071{bottom:746.560547pt;}
.y6e_c01071{bottom:746.561360pt;}
.y41_c01071{bottom:746.562747pt;}
.y6d_c01071{bottom:763.520960pt;}
.y40_c01071{bottom:763.841493pt;}
.yf_c01071{bottom:764.160640pt;}
.y6c_c01071{bottom:780.480547pt;}
.y3f_c01071{bottom:780.801080pt;}
.ye_c01071{bottom:781.120693pt;}
.y6b_c01071{bottom:797.759680pt;}
.yd_c01071{bottom:798.080480pt;}
.y3e_c01071{bottom:798.082213pt;}
.y6a_c01071{bottom:814.400387pt;}
.yc_c01071{bottom:815.040533pt;}
.y3d_c01071{bottom:815.041813pt;}
.y69_c01071{bottom:832.000493pt;}
.y3c_c01071{bottom:832.320560pt;}
.yb_c01071{bottom:832.640627pt;}
.y68_c01071{bottom:848.639573pt;}
.y3b_c01071{bottom:848.961000pt;}
.ya_c01071{bottom:849.279707pt;}
.y67_c01071{bottom:865.921067pt;}
.y3a_c01071{bottom:866.239747pt;}
.y9_c01071{bottom:866.560547pt;}
.y66_c01071{bottom:882.561507pt;}
.y8_c01071{bottom:883.199707pt;}
.y65_c01071{bottom:899.840253pt;}
.y38_c01071{bottom:900.159667pt;}
.y39_c01071{bottom:900.159747pt;}
.y7_c01071{bottom:900.480547pt;}
.y64_c01071{bottom:916.801213pt;}
.y37_c01071{bottom:917.119267pt;}
.y6_c01071{bottom:917.440347pt;}
.y63_c01071{bottom:933.760800pt;}
.y5_c01071{bottom:934.400387pt;}
.y62_c01071{bottom:950.720400pt;}
.y36_c01071{bottom:951.360347pt;}
.y4_c01071{bottom:951.679693pt;}
.y35_c01071{bottom:957.120120pt;}
.y61_c01071{bottom:968.001520pt;}
.y34_c01071{bottom:968.639667pt;}
.y3_c01071{bottom:968.960373pt;}
.y60_c01071{bottom:985.280280pt;}
.y2_c01071{bottom:985.920413pt;}
.y33_c01071{bottom:985.920800pt;}
.y1_c01071{bottom:1020.480467pt;}
.hb_c01071{height:8.565104pt;}
.hd_c01071{height:30.593750pt;}
.hf_c01071{height:36.895833pt;}
.he_c01071{height:38.872396pt;}
.h7_c01071{height:40.190104pt;}
.h17_c01071{height:40.328125pt;}
.h15_c01071{height:43.671875pt;}
.h18_c01071{height:43.816081pt;}
.h2_c01071{height:44.143229pt;}
.h3_c01071{height:44.802083pt;}
.h13_c01071{height:45.777995pt;}
.h5_c01071{height:46.119792pt;}
.h11_c01071{height:46.431966pt;}
.h1_c01071{height:47.085938pt;}
.h1b_c01071{height:47.739909pt;}
.hc_c01071{height:47.976562pt;}
.h16_c01071{height:48.393880pt;}
.h8_c01071{height:48.755208pt;}
.h12_c01071{height:49.701823pt;}
.h6_c01071{height:50.072917pt;}
.h4_c01071{height:52.971680pt;}
.ha_c01071{height:53.539062pt;}
.h19_c01071{height:60.819336pt;}
.h10_c01071{height:61.473307pt;}
.h14_c01071{height:63.435221pt;}
.h1a_c01071{height:64.089193pt;}
.h9_c01071{height:82.742188pt;}
.h0_c01071{height:1122.666667pt;}
.w0_c01071{width:793.333333pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:128.958947pt;}
.x6_c01071{left:185.919453pt;}
.x5_c01071{left:186.878920pt;}
.x2_c01071{left:187.839867pt;}
.x7_c01071{left:219.518533pt;}
.x4_c01071{left:220.479453pt;}
.x3_c01071{left:221.438920pt;}
.xf_c01071{left:248.641547pt;}
.xe_c01071{left:249.599067pt;}
.x8_c01071{left:250.558760pt;}
.x12_c01071{left:271.999453pt;}
.xc_c01071{left:273.599067pt;}
.x13_c01071{left:288.959453pt;}
.x9_c01071{left:290.559067pt;}
.x15_c01071{left:300.159733pt;}
.x10_c01071{left:306.559587pt;}
.xa_c01071{left:308.480000pt;}
.xd_c01071{left:319.038533pt;}
.x11_c01071{left:329.598680pt;}
.xb_c01071{left:343.678667pt;}
.x14_c01071{left:364.158693pt;}
.x1f_c01071{left:502.719720pt;}
.x20_c01071{left:513.599040pt;}
.x16_c01071{left:515.198693pt;}
.x19_c01071{left:516.159707pt;}
.x22_c01071{left:525.758787pt;}
.x17_c01071{left:527.359867pt;}
.x1e_c01071{left:531.199173pt;}
.x18_c01071{left:532.798787pt;}
.x1a_c01071{left:538.239173pt;}
.x21_c01071{left:543.039587pt;}
.x1c_c01071{left:595.839840pt;}
.x1b_c01071{left:607.038533pt;}
.x1d_c01071{left:618.878907pt;}
}





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

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_a7461f9e56774371e3158c8c.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_71de0a4ce1389a42c930c7ad.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_73eb171f067256cd6492682c.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01072;src:url('chunks/assets/font_399a518bf63e5dbae0cb9866.woff2')format("woff");}.ff4_c01072{font-family:ff4_c01072;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01072;src:url('chunks/assets/font_24cc6872ea36d9da5312c0c0.woff2')format("woff");}.ff5_c01072{font-family:ff5_c01072;line-height:1.311035;font-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_c01072{transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);}
.m19_c01072{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.ma_c01072{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m1e_c01072{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m8_c01072{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m7_c01072{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.mb_c01072{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m13_c01072{transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);}
.m16_c01072{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.m18_c01072{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.md_c01072{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m4_c01072{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m11_c01072{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3_c01072{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1c_c01072{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m10_c01072{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m9_c01072{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m5_c01072{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m0_c01072{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mc_c01072{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m14_c01072{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m6_c01072{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m1b_c01072{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.me_c01072{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m12_c01072{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2_c01072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01072{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.mf_c01072{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01072{transform:matrix(0.313559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313559,0.000000,0.000000,0.250000,0,0);}
.m1a_c01072{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m1_c01072{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls19_c01072{letter-spacing:-7.619550px;}
.ls17_c01072{letter-spacing:-7.426650px;}
.ls14_c01072{letter-spacing:-7.149600px;}
.ls18_c01072{letter-spacing:-6.937500px;}
.ls7_c01072{letter-spacing:-6.350400px;}
.ls5_c01072{letter-spacing:-5.557140px;}
.ls11_c01072{letter-spacing:-5.466300px;}
.ls1_c01072{letter-spacing:-4.762800px;}
.ls15_c01072{letter-spacing:-4.633283px;}
.ls1e_c01072{letter-spacing:-4.502768px;}
.ls12_c01072{letter-spacing:-4.186298px;}
.lse_c01072{letter-spacing:-4.023195px;}
.ls0_c01072{letter-spacing:-3.969000px;}
.ls1b_c01072{letter-spacing:-3.380085px;}
.ls3_c01072{letter-spacing:-3.175740px;}
.ls10_c01072{letter-spacing:-2.545583px;}
.ls1c_c01072{letter-spacing:-2.529450px;}
.ls16_c01072{letter-spacing:-2.419200px;}
.ls8_c01072{letter-spacing:-2.404050px;}
.lsd_c01072{letter-spacing:-2.381400px;}
.ls9_c01072{letter-spacing:-2.326500px;}
.lsc_c01072{letter-spacing:-1.719975px;}
.lsb_c01072{letter-spacing:-1.604250px;}
.lsa_c01072{letter-spacing:-1.552500px;}
.ls13_c01072{letter-spacing:-0.793260px;}
.ls2_c01072{letter-spacing:0.000000px;}
.ls1a_c01072{letter-spacing:2.457000px;}
.ls4_c01072{letter-spacing:3.271050px;}
.ls6_c01072{letter-spacing:4.090500px;}
.ls1d_c01072{letter-spacing:8.180550px;}
.ls1f_c01072{letter-spacing:9.819000px;}
.lsf_c01072{letter-spacing:16.939598px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01072{word-spacing:0.000000px;}
._c_c01072{margin-left:-15.444381px;}
._a_c01072{margin-left:-13.915927px;}
._d_c01072{margin-left:-11.735756px;}
._b_c01072{margin-left:-10.678278px;}
._7_c01072{margin-left:-8.520438px;}
._5_c01072{margin-left:-7.165228px;}
._8_c01072{margin-left:-6.009311px;}
._6_c01072{margin-left:-4.580153px;}
._1_c01072{margin-left:-2.678654px;}
._9_c01072{margin-left:-1.156045px;}
._4_c01072{width:1.862174px;}
._f_c01072{width:2.891414px;}
._e_c01072{width:5.615746px;}
._2_c01072{width:18.545919px;}
._0_c01072{width:21.615882px;}
._3_c01072{width:26.515080px;}
.fc0_c01072{color:transparent;}
.fs1_c01072{font-size:28.500000px;}
.fse_c01072{font-size:41.250000px;}
.fs11_c01072{font-size:42.000000px;}
.fs2_c01072{font-size:43.500000px;}
.fsf_c01072{font-size:44.250000px;}
.fs3_c01072{font-size:45.000000px;}
.fs4_c01072{font-size:46.500000px;}
.fs8_c01072{font-size:47.250000px;}
.fs12_c01072{font-size:48.000000px;}
.fs6_c01072{font-size:51.000000px;}
.fs9_c01072{font-size:51.750000px;}
.fs5_c01072{font-size:53.250000px;}
.fs0_c01072{font-size:54.000000px;}
.fs10_c01072{font-size:54.750000px;}
.fs7_c01072{font-size:55.500000px;}
.fsa_c01072{font-size:57.000000px;}
.fsb_c01072{font-size:57.750000px;}
.fsd_c01072{font-size:59.250000px;}
.fsc_c01072{font-size:60.000000px;}
.y0_c01072{bottom:0.000000px;}
.y5e_c01072{bottom:187.560990px;}
.y32_c01072{bottom:187.561335px;}
.y87_c01072{bottom:187.920255px;}
.y31_c01072{bottom:207.000600px;}
.y5d_c01072{bottom:207.361515px;}
.y5c_c01072{bottom:226.080435px;}
.y5b_c01072{bottom:226.082520px;}
.y30_c01072{bottom:226.441335px;}
.y2f_c01072{bottom:245.880585px;}
.y5a_c01072{bottom:245.883045px;}
.y59_c01072{bottom:264.603540px;}
.y2e_c01072{bottom:264.780900px;}
.y86_c01072{bottom:264.960600px;}
.y2d_c01072{bottom:283.681185px;}
.y58_c01072{bottom:283.683090px;}
.y85_c01072{bottom:284.040600px;}
.y2c_c01072{bottom:302.761185px;}
.y57_c01072{bottom:302.762625px;}
.y84_c01072{bottom:303.120435px;}
.y2b_c01072{bottom:322.200435px;}
.y56_c01072{bottom:322.201215px;}
.y83_c01072{bottom:322.561335px;}
.y2a_c01072{bottom:341.100750px;}
.y55_c01072{bottom:341.280765px;}
.y82_c01072{bottom:341.641335px;}
.y29_c01072{bottom:360.360285px;}
.y54_c01072{bottom:360.360300px;}
.y81_c01072{bottom:360.721185px;}
.y28_c01072{bottom:379.620000px;}
.y53_c01072{bottom:379.801575px;}
.y80_c01072{bottom:380.161290px;}
.y52_c01072{bottom:398.881125px;}
.y27_c01072{bottom:398.881215px;}
.y7f_c01072{bottom:399.240825px;}
.y51_c01072{bottom:417.960660px;}
.y26_c01072{bottom:417.961035px;}
.y7e_c01072{bottom:418.320375px;}
.y25_c01072{bottom:437.761185px;}
.y7d_c01072{bottom:437.761635px;}
.y24_c01072{bottom:456.480285px;}
.y7c_c01072{bottom:456.841185px;}
.y23_c01072{bottom:475.921185px;}
.y50_c01072{bottom:475.922010px;}
.y7b_c01072{bottom:476.281215px;}
.y22_c01072{bottom:495.001050px;}
.y4f_c01072{bottom:495.001560px;}
.y7a_c01072{bottom:495.360765px;}
.y21_c01072{bottom:514.440315px;}
.y4e_c01072{bottom:514.441590px;}
.y79_c01072{bottom:514.802025px;}
.y20_c01072{bottom:533.520270px;}
.y4d_c01072{bottom:533.882865px;}
.y78_c01072{bottom:534.240630px;}
.y1f_c01072{bottom:552.961035px;}
.y4c_c01072{bottom:552.962400px;}
.y77_c01072{bottom:553.681890px;}
.y1e_c01072{bottom:571.680135px;}
.y4b_c01072{bottom:572.041950px;}
.y76_c01072{bottom:572.400945px;}
.y1d_c01072{bottom:591.121035px;}
.y4a_c01072{bottom:591.121485px;}
.y75_c01072{bottom:591.480495px;}
.y1c_c01072{bottom:610.201035px;}
.y74_c01072{bottom:610.560030px;}
.y1b_c01072{bottom:629.640150px;}
.y49_c01072{bottom:629.640975px;}
.y73_c01072{bottom:630.001305px;}
.y1a_c01072{bottom:648.720150px;}
.y72_c01072{bottom:648.720360px;}
.y48_c01072{bottom:648.720525px;}
.y47_c01072{bottom:667.800060px;}
.y19_c01072{bottom:667.800150px;}
.y71_c01072{bottom:668.161635px;}
.y46_c01072{bottom:686.879610px;}
.y18_c01072{bottom:686.879970px;}
.y70_c01072{bottom:687.241170px;}
.y6f_c01072{bottom:706.679760px;}
.y17_c01072{bottom:706.680135px;}
.y45_c01072{bottom:725.400885px;}
.y16_c01072{bottom:725.760135px;}
.y6e_c01072{bottom:726.121035px;}
.y15_c01072{bottom:745.201035px;}
.y44_c01072{bottom:745.201920px;}
.y6d_c01072{bottom:745.560285px;}
.y6c_c01072{bottom:745.560765px;}
.y14_c01072{bottom:763.920000px;}
.y43_c01072{bottom:763.920975px;}
.y6b_c01072{bottom:764.640315px;}
.y13_c01072{bottom:783.360900px;}
.y42_c01072{bottom:783.362250px;}
.y6a_c01072{bottom:783.719850px;}
.y12_c01072{bottom:802.440855px;}
.y41_c01072{bottom:802.441800px;}
.y69_c01072{bottom:802.799400px;}
.y11_c01072{bottom:821.879970px;}
.y40_c01072{bottom:821.880390px;}
.y68_c01072{bottom:822.240675px;}
.y3f_c01072{bottom:840.959925px;}
.y10_c01072{bottom:840.960015px;}
.y67_c01072{bottom:841.320210px;}
.yf_c01072{bottom:860.760135px;}
.y3e_c01072{bottom:860.760450px;}
.y66_c01072{bottom:861.120735px;}
.y65_c01072{bottom:879.839790px;}
.y3d_c01072{bottom:879.840000px;}
.ye_c01072{bottom:879.840090px;}
.y3c_c01072{bottom:899.281260px;}
.yd_c01072{bottom:899.460570px;}
.y64_c01072{bottom:899.640315px;}
.y3b_c01072{bottom:918.360810px;}
.yc_c01072{bottom:918.360900px;}
.yb_c01072{bottom:938.161005px;}
.y3a_c01072{bottom:938.161335px;}
.ya_c01072{bottom:956.159820px;}
.y39_c01072{bottom:956.880390px;}
.y63_c01072{bottom:957.240870px;}
.y9_c01072{bottom:976.320825px;}
.y38_c01072{bottom:976.321650px;}
.y62_c01072{bottom:976.679970px;}
.y8_c01072{bottom:995.039985px;}
.y37_c01072{bottom:995.040705px;}
.y36_c01072{bottom:1014.120255px;}
.y7_c01072{bottom:1014.480840px;}
.y61_c01072{bottom:1014.481245px;}
.y6_c01072{bottom:1033.199805px;}
.y60_c01072{bottom:1033.200300px;}
.y35_c01072{bottom:1052.279850px;}
.y5_c01072{bottom:1052.461035px;}
.y4_c01072{bottom:1071.720705px;}
.y34_c01072{bottom:1090.800450px;}
.y3_c01072{bottom:1090.800570px;}
.y33_c01072{bottom:1109.880000px;}
.y5f_c01072{bottom:1109.880615px;}
.y2_c01072{bottom:1110.060240px;}
.y1_c01072{bottom:1149.119940px;}
.h2_c01072{height:29.724609px;}
.h10_c01072{height:43.022461px;}
.h15_c01072{height:43.804688px;}
.h3_c01072{height:45.369141px;}
.h12_c01072{height:46.151367px;}
.h16_c01072{height:46.350220px;}
.h11_c01072{height:46.863281px;}
.h4_c01072{height:46.933594px;}
.h17_c01072{height:47.437500px;}
.h9_c01072{height:47.619141px;}
.h5_c01072{height:48.498047px;}
.h7_c01072{height:50.402344px;}
.h14_c01072{height:50.764526px;}
.ha_c01072{height:51.143555px;}
.hd_c01072{height:52.235962px;}
.h6_c01072{height:52.625977px;}
.h1_c01072{height:52.971680px;}
.h13_c01072{height:53.707397px;}
.h8_c01072{height:54.443115px;}
.hb_c01072{height:55.914551px;}
.hc_c01072{height:56.650269px;}
.hf_c01072{height:58.121704px;}
.he_c01072{height:62.578125px;}
.h0_c01072{height:1263.000000px;}
.w0_c01072{width:892.500000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:147.959400px;}
.x7_c01072{left:213.478635px;}
.x5_c01072{left:214.559685px;}
.x6_c01072{left:252.358635px;}
.xb_c01072{left:284.038950px;}
.x8_c01072{left:285.119820px;}
.xc_c01072{left:312.120000px;}
.xd_c01072{left:322.918950px;}
.x9_c01072{left:330.118785px;}
.xa_c01072{left:336.598530px;}
.x2_c01072{left:371.879535px;}
.x3_c01072{left:377.279850px;}
.x4_c01072{left:466.559100px;}
.x10_c01072{left:582.838950px;}
.xe_c01072{left:583.919535px;}
.xf_c01072{left:596.519670px;}
.x13_c01072{left:603.358605px;}
.x11_c01072{left:615.958920px;}
.x12_c01072{left:647.639100px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls19_c01072{letter-spacing:-6.772933pt;}
.ls17_c01072{letter-spacing:-6.601467pt;}
.ls14_c01072{letter-spacing:-6.355200pt;}
.ls18_c01072{letter-spacing:-6.166667pt;}
.ls7_c01072{letter-spacing:-5.644800pt;}
.ls5_c01072{letter-spacing:-4.939680pt;}
.ls11_c01072{letter-spacing:-4.858933pt;}
.ls1_c01072{letter-spacing:-4.233600pt;}
.ls15_c01072{letter-spacing:-4.118473pt;}
.ls1e_c01072{letter-spacing:-4.002460pt;}
.ls12_c01072{letter-spacing:-3.721153pt;}
.lse_c01072{letter-spacing:-3.576173pt;}
.ls0_c01072{letter-spacing:-3.528000pt;}
.ls1b_c01072{letter-spacing:-3.004520pt;}
.ls3_c01072{letter-spacing:-2.822880pt;}
.ls10_c01072{letter-spacing:-2.262740pt;}
.ls1c_c01072{letter-spacing:-2.248400pt;}
.ls16_c01072{letter-spacing:-2.150400pt;}
.ls8_c01072{letter-spacing:-2.136933pt;}
.lsd_c01072{letter-spacing:-2.116800pt;}
.ls9_c01072{letter-spacing:-2.068000pt;}
.lsc_c01072{letter-spacing:-1.528867pt;}
.lsb_c01072{letter-spacing:-1.426000pt;}
.lsa_c01072{letter-spacing:-1.380000pt;}
.ls13_c01072{letter-spacing:-0.705120pt;}
.ls2_c01072{letter-spacing:0.000000pt;}
.ls1a_c01072{letter-spacing:2.184000pt;}
.ls4_c01072{letter-spacing:2.907600pt;}
.ls6_c01072{letter-spacing:3.636000pt;}
.ls1d_c01072{letter-spacing:7.271600pt;}
.ls1f_c01072{letter-spacing:8.728000pt;}
.lsf_c01072{letter-spacing:15.057420pt;}
.ws0_c01072{word-spacing:0.000000pt;}
._c_c01072{margin-left:-13.728339pt;}
._a_c01072{margin-left:-12.369713pt;}
._d_c01072{margin-left:-10.431784pt;}
._b_c01072{margin-left:-9.491802pt;}
._7_c01072{margin-left:-7.573722pt;}
._5_c01072{margin-left:-6.369092pt;}
._8_c01072{margin-left:-5.341609pt;}
._6_c01072{margin-left:-4.071247pt;}
._1_c01072{margin-left:-2.381026pt;}
._9_c01072{margin-left:-1.027595pt;}
._4_c01072{width:1.655266pt;}
._f_c01072{width:2.570146pt;}
._e_c01072{width:4.991774pt;}
._2_c01072{width:16.485261pt;}
._0_c01072{width:19.214118pt;}
._3_c01072{width:23.568960pt;}
.fs1_c01072{font-size:25.333333pt;}
.fse_c01072{font-size:36.666667pt;}
.fs11_c01072{font-size:37.333333pt;}
.fs2_c01072{font-size:38.666667pt;}
.fsf_c01072{font-size:39.333333pt;}
.fs3_c01072{font-size:40.000000pt;}
.fs4_c01072{font-size:41.333333pt;}
.fs8_c01072{font-size:42.000000pt;}
.fs12_c01072{font-size:42.666667pt;}
.fs6_c01072{font-size:45.333333pt;}
.fs9_c01072{font-size:46.000000pt;}
.fs5_c01072{font-size:47.333333pt;}
.fs0_c01072{font-size:48.000000pt;}
.fs10_c01072{font-size:48.666667pt;}
.fs7_c01072{font-size:49.333333pt;}
.fsa_c01072{font-size:50.666667pt;}
.fsb_c01072{font-size:51.333333pt;}
.fsd_c01072{font-size:52.666667pt;}
.fsc_c01072{font-size:53.333333pt;}
.y0_c01072{bottom:0.000000pt;}
.y5e_c01072{bottom:166.720880pt;}
.y32_c01072{bottom:166.721187pt;}
.y87_c01072{bottom:167.040227pt;}
.y31_c01072{bottom:184.000533pt;}
.y5d_c01072{bottom:184.321347pt;}
.y5c_c01072{bottom:200.960387pt;}
.y5b_c01072{bottom:200.962240pt;}
.y30_c01072{bottom:201.281187pt;}
.y2f_c01072{bottom:218.560520pt;}
.y5a_c01072{bottom:218.562707pt;}
.y59_c01072{bottom:235.203147pt;}
.y2e_c01072{bottom:235.360800pt;}
.y86_c01072{bottom:235.520533pt;}
.y2d_c01072{bottom:252.161053pt;}
.y58_c01072{bottom:252.162747pt;}
.y85_c01072{bottom:252.480533pt;}
.y2c_c01072{bottom:269.121053pt;}
.y57_c01072{bottom:269.122333pt;}
.y84_c01072{bottom:269.440387pt;}
.y2b_c01072{bottom:286.400387pt;}
.y56_c01072{bottom:286.401080pt;}
.y83_c01072{bottom:286.721187pt;}
.y2a_c01072{bottom:303.200667pt;}
.y55_c01072{bottom:303.360680pt;}
.y82_c01072{bottom:303.681187pt;}
.y29_c01072{bottom:320.320253pt;}
.y54_c01072{bottom:320.320267pt;}
.y81_c01072{bottom:320.641053pt;}
.y28_c01072{bottom:337.440000pt;}
.y53_c01072{bottom:337.601400pt;}
.y80_c01072{bottom:337.921147pt;}
.y52_c01072{bottom:354.561000pt;}
.y27_c01072{bottom:354.561080pt;}
.y7f_c01072{bottom:354.880733pt;}
.y51_c01072{bottom:371.520587pt;}
.y26_c01072{bottom:371.520920pt;}
.y7e_c01072{bottom:371.840333pt;}
.y25_c01072{bottom:389.121053pt;}
.y7d_c01072{bottom:389.121453pt;}
.y24_c01072{bottom:405.760253pt;}
.y7c_c01072{bottom:406.081053pt;}
.y23_c01072{bottom:423.041053pt;}
.y50_c01072{bottom:423.041787pt;}
.y7b_c01072{bottom:423.361080pt;}
.y22_c01072{bottom:440.000933pt;}
.y4f_c01072{bottom:440.001387pt;}
.y7a_c01072{bottom:440.320680pt;}
.y21_c01072{bottom:457.280280pt;}
.y4e_c01072{bottom:457.281413pt;}
.y79_c01072{bottom:457.601800pt;}
.y20_c01072{bottom:474.240240pt;}
.y4d_c01072{bottom:474.562547pt;}
.y78_c01072{bottom:474.880560pt;}
.y1f_c01072{bottom:491.520920pt;}
.y4c_c01072{bottom:491.522133pt;}
.y77_c01072{bottom:492.161680pt;}
.y1e_c01072{bottom:508.160120pt;}
.y4b_c01072{bottom:508.481733pt;}
.y76_c01072{bottom:508.800840pt;}
.y1d_c01072{bottom:525.440920pt;}
.y4a_c01072{bottom:525.441320pt;}
.y75_c01072{bottom:525.760440pt;}
.y1c_c01072{bottom:542.400920pt;}
.y74_c01072{bottom:542.720027pt;}
.y1b_c01072{bottom:559.680133pt;}
.y49_c01072{bottom:559.680867pt;}
.y73_c01072{bottom:560.001160pt;}
.y1a_c01072{bottom:576.640133pt;}
.y72_c01072{bottom:576.640320pt;}
.y48_c01072{bottom:576.640467pt;}
.y47_c01072{bottom:593.600053pt;}
.y19_c01072{bottom:593.600133pt;}
.y71_c01072{bottom:593.921453pt;}
.y46_c01072{bottom:610.559653pt;}
.y18_c01072{bottom:610.559973pt;}
.y70_c01072{bottom:610.881040pt;}
.y6f_c01072{bottom:628.159787pt;}
.y17_c01072{bottom:628.160120pt;}
.y45_c01072{bottom:644.800787pt;}
.y16_c01072{bottom:645.120120pt;}
.y6e_c01072{bottom:645.440920pt;}
.y15_c01072{bottom:662.400920pt;}
.y44_c01072{bottom:662.401707pt;}
.y6d_c01072{bottom:662.720253pt;}
.y6c_c01072{bottom:662.720680pt;}
.y14_c01072{bottom:679.040000pt;}
.y43_c01072{bottom:679.040867pt;}
.y6b_c01072{bottom:679.680280pt;}
.y13_c01072{bottom:696.320800pt;}
.y42_c01072{bottom:696.322000pt;}
.y6a_c01072{bottom:696.639867pt;}
.y12_c01072{bottom:713.280760pt;}
.y41_c01072{bottom:713.281600pt;}
.y69_c01072{bottom:713.599467pt;}
.y11_c01072{bottom:730.559973pt;}
.y40_c01072{bottom:730.560347pt;}
.y68_c01072{bottom:730.880600pt;}
.y3f_c01072{bottom:747.519933pt;}
.y10_c01072{bottom:747.520013pt;}
.y67_c01072{bottom:747.840187pt;}
.yf_c01072{bottom:765.120120pt;}
.y3e_c01072{bottom:765.120400pt;}
.y66_c01072{bottom:765.440653pt;}
.y65_c01072{bottom:782.079813pt;}
.y3d_c01072{bottom:782.080000pt;}
.ye_c01072{bottom:782.080080pt;}
.y3c_c01072{bottom:799.361120pt;}
.yd_c01072{bottom:799.520507pt;}
.y64_c01072{bottom:799.680280pt;}
.y3b_c01072{bottom:816.320720pt;}
.yc_c01072{bottom:816.320800pt;}
.yb_c01072{bottom:833.920893pt;}
.y3a_c01072{bottom:833.921187pt;}
.ya_c01072{bottom:849.919840pt;}
.y39_c01072{bottom:850.560347pt;}
.y63_c01072{bottom:850.880773pt;}
.y9_c01072{bottom:867.840733pt;}
.y38_c01072{bottom:867.841467pt;}
.y62_c01072{bottom:868.159973pt;}
.y8_c01072{bottom:884.479987pt;}
.y37_c01072{bottom:884.480627pt;}
.y36_c01072{bottom:901.440227pt;}
.y7_c01072{bottom:901.760747pt;}
.y61_c01072{bottom:901.761107pt;}
.y6_c01072{bottom:918.399827pt;}
.y60_c01072{bottom:918.400267pt;}
.y35_c01072{bottom:935.359867pt;}
.y5_c01072{bottom:935.520920pt;}
.y4_c01072{bottom:952.640627pt;}
.y34_c01072{bottom:969.600400pt;}
.y3_c01072{bottom:969.600507pt;}
.y33_c01072{bottom:986.560000pt;}
.y5f_c01072{bottom:986.560547pt;}
.y2_c01072{bottom:986.720213pt;}
.y1_c01072{bottom:1021.439947pt;}
.h2_c01072{height:26.421875pt;}
.h10_c01072{height:38.242188pt;}
.h15_c01072{height:38.937500pt;}
.h3_c01072{height:40.328125pt;}
.h12_c01072{height:41.023438pt;}
.h16_c01072{height:41.200195pt;}
.h11_c01072{height:41.656250pt;}
.h4_c01072{height:41.718750pt;}
.h17_c01072{height:42.166667pt;}
.h9_c01072{height:42.328125pt;}
.h5_c01072{height:43.109375pt;}
.h7_c01072{height:44.802083pt;}
.h14_c01072{height:45.124023pt;}
.ha_c01072{height:45.460938pt;}
.hd_c01072{height:46.431966pt;}
.h6_c01072{height:46.778646pt;}
.h1_c01072{height:47.085938pt;}
.h13_c01072{height:47.739909pt;}
.h8_c01072{height:48.393880pt;}
.hb_c01072{height:49.701823pt;}
.hc_c01072{height:50.355794pt;}
.hf_c01072{height:51.663737pt;}
.he_c01072{height:55.625000pt;}
.h0_c01072{height:1122.666667pt;}
.w0_c01072{width:793.333333pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:131.519467pt;}
.x7_c01072{left:189.758787pt;}
.x5_c01072{left:190.719720pt;}
.x6_c01072{left:224.318787pt;}
.xb_c01072{left:252.479067pt;}
.x8_c01072{left:253.439840pt;}
.xc_c01072{left:277.440000pt;}
.xd_c01072{left:287.039067pt;}
.x9_c01072{left:293.438920pt;}
.xa_c01072{left:299.198693pt;}
.x2_c01072{left:330.559587pt;}
.x3_c01072{left:335.359867pt;}
.x4_c01072{left:414.719200pt;}
.x10_c01072{left:518.079067pt;}
.xe_c01072{left:519.039587pt;}
.xf_c01072{left:530.239707pt;}
.x13_c01072{left:536.318760pt;}
.x11_c01072{left:547.519040pt;}
.x12_c01072{left:575.679200pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_b360ce4064d212d0f2a28cfc.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01073;src:url('chunks/assets/font_fa5d014d44cc24d2da2ae311.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01073;src:url('chunks/assets/font_3cbb3cfd16a7afd9bd42a23b.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01073;src:url('chunks/assets/font_97cb0063b719bcb89f829633.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01073;src:url('chunks/assets/font_49ac6b2f08ff4160be99c92a.woff2')format("woff");}.ff5_c01073{font-family:ff5_c01073;line-height:1.311035;font-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_c01073{transform:matrix(0.157303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157303,0.000000,0.000000,0.250000,0,0);}
.m1f_c01073{transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);}
.m2a_c01073{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m7_c01073{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m13_c01073{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m2_c01073{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m26_c01073{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m21_c01073{transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);}
.mb_c01073{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m18_c01073{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.mf_c01073{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.md_c01073{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);}
.m12_c01073{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.ma_c01073{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m20_c01073{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m17_c01073{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m27_c01073{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m14_c01073{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.me_c01073{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m1a_c01073{transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206349,0.000000,0.000000,0.250000,0,0);}
.m8_c01073{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m1e_c01073{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m29_c01073{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m10_c01073{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m11_c01073{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m28_c01073{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m25_c01073{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m19_c01073{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m0_c01073{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m9_c01073{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m1c_c01073{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m22_c01073{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m5_c01073{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1d_c01073{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1_c01073{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m1b_c01073{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mc_c01073{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m23_c01073{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m3_c01073{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m15_c01073{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m4_c01073{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m16_c01073{transform:matrix(0.335821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335821,0.000000,0.000000,0.250000,0,0);}
.m6_c01073{transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345930,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.ls12_c01073{letter-spacing:-6.423300px;}
.ls5_c01073{letter-spacing:-6.049110px;}
.ls15_c01073{letter-spacing:-5.372400px;}
.ls1d_c01073{letter-spacing:-5.186700px;}
.ls8_c01073{letter-spacing:-4.916175px;}
.ls1c_c01073{letter-spacing:-4.008300px;}
.lsc_c01073{letter-spacing:-3.457290px;}
.ls19_c01073{letter-spacing:-3.281250px;}
.ls16_c01073{letter-spacing:-2.803830px;}
.ls17_c01073{letter-spacing:-2.793900px;}
.ls13_c01073{letter-spacing:-2.730045px;}
.lse_c01073{letter-spacing:-2.716320px;}
.ls14_c01073{letter-spacing:-2.693153px;}
.ls1b_c01073{letter-spacing:-2.545583px;}
.ls1f_c01073{letter-spacing:-1.771740px;}
.ls7_c01073{letter-spacing:-1.729410px;}
.lsf_c01073{letter-spacing:-1.722525px;}
.lsb_c01073{letter-spacing:-1.695750px;}
.ls9_c01073{letter-spacing:-1.580168px;}
.ls6_c01073{letter-spacing:-0.867000px;}
.ls4_c01073{letter-spacing:0.000000px;}
.ls0_c01073{letter-spacing:0.867000px;}
.ls10_c01073{letter-spacing:0.930750px;}
.ls3_c01073{letter-spacing:1.729410px;}
.ls20_c01073{letter-spacing:1.802295px;}
.ls1e_c01073{letter-spacing:1.829603px;}
.ls18_c01073{letter-spacing:2.725853px;}
.ls11_c01073{letter-spacing:2.854200px;}
.ls1a_c01073{letter-spacing:2.877300px;}
.lsa_c01073{letter-spacing:3.187958px;}
.lsd_c01073{letter-spacing:3.457290px;}
.ls2_c01073{letter-spacing:6.915600px;}
.ls1_c01073{letter-spacing:57.049110px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:0.000000px;}
._14_c01073{margin-left:-113.583786px;}
._e_c01073{margin-left:-25.709256px;}
._18_c01073{margin-left:-12.632095px;}
._19_c01073{margin-left:-9.110216px;}
._12_c01073{margin-left:-7.965993px;}
._d_c01073{margin-left:-6.012883px;}
._17_c01073{margin-left:-4.794000px;}
._11_c01073{margin-left:-3.636525px;}
._15_c01073{margin-left:-2.499035px;}
._f_c01073{margin-left:-1.453794px;}
._16_c01073{width:1.126979px;}
._2_c01073{width:2.361525px;}
._10_c01073{width:4.015377px;}
._1_c01073{width:5.730887px;}
._13_c01073{width:8.471083px;}
._a_c01073{width:16.926848px;}
._c_c01073{width:18.589206px;}
._b_c01073{width:19.604400px;}
._7_c01073{width:21.261917px;}
._4_c01073{width:24.581654px;}
._6_c01073{width:25.602449px;}
._8_c01073{width:27.259206px;}
._0_c01073{width:28.320732px;}
._5_c01073{width:29.914499px;}
._9_c01073{width:31.571256px;}
._3_c01073{width:652.871296px;}
.fc0_c01073{color:transparent;}
.fse_c01073{font-size:39.750000px;}
.fsd_c01073{font-size:42.000000px;}
.fs10_c01073{font-size:43.500000px;}
.fs1_c01073{font-size:44.250000px;}
.fsa_c01073{font-size:45.750000px;}
.fs14_c01073{font-size:46.500000px;}
.fs11_c01073{font-size:47.250000px;}
.fs7_c01073{font-size:48.000000px;}
.fs12_c01073{font-size:48.750000px;}
.fs17_c01073{font-size:49.500000px;}
.fsf_c01073{font-size:50.250000px;}
.fs0_c01073{font-size:51.000000px;}
.fs13_c01073{font-size:51.750000px;}
.fs4_c01073{font-size:52.500000px;}
.fs9_c01073{font-size:53.250000px;}
.fs16_c01073{font-size:54.000000px;}
.fs8_c01073{font-size:54.750000px;}
.fsb_c01073{font-size:55.500000px;}
.fs2_c01073{font-size:56.250000px;}
.fsc_c01073{font-size:57.000000px;}
.fs6_c01073{font-size:58.500000px;}
.fs5_c01073{font-size:64.500000px;}
.fs15_c01073{font-size:66.750000px;}
.fs3_c01073{font-size:68.250000px;}
.y0_c01073{bottom:0.000000px;}
.y33_c01073{bottom:186.113820px;}
.y6b_c01073{bottom:186.119415px;}
.y6a_c01073{bottom:186.120045px;}
.y9f_c01073{bottom:186.839565px;}
.y32_c01073{bottom:205.554960px;}
.y68_c01073{bottom:205.919145px;}
.y69_c01073{bottom:205.919535px;}
.y9e_c01073{bottom:206.280435px;}
.y31_c01073{bottom:224.813805px;}
.y67_c01073{bottom:225.360285px;}
.y9d_c01073{bottom:225.719310px;}
.y30_c01073{bottom:244.254960px;}
.y66_c01073{bottom:244.440285px;}
.y9c_c01073{bottom:245.160435px;}
.y2f_c01073{bottom:263.154285px;}
.y65_c01073{bottom:263.159385px;}
.y9b_c01073{bottom:264.240435px;}
.y2e_c01073{bottom:282.595410px;}
.y63_c01073{bottom:282.599745px;}
.y64_c01073{bottom:282.600150px;}
.y9a_c01073{bottom:283.679370px;}
.y2d_c01073{bottom:301.314975px;}
.y62_c01073{bottom:301.319295px;}
.y99_c01073{bottom:302.400285px;}
.y2c_c01073{bottom:320.035905px;}
.y61_c01073{bottom:320.400900px;}
.y98_c01073{bottom:321.119385px;}
.y2b_c01073{bottom:339.116340px;}
.y60_c01073{bottom:339.120000px;}
.y97_c01073{bottom:339.840135px;}
.y2a_c01073{bottom:358.557495px;}
.y5e_c01073{bottom:358.919565px;}
.y5f_c01073{bottom:358.920000px;}
.y96_c01073{bottom:359.279250px;}
.y29_c01073{bottom:377.817690px;}
.y5d_c01073{bottom:378.000000px;}
.y95_c01073{bottom:378.720135px;}
.y94_c01073{bottom:378.720180px;}
.y28_c01073{bottom:397.076550px;}
.y5c_c01073{bottom:397.080000px;}
.y93_c01073{bottom:397.800615px;}
.y27_c01073{bottom:416.157000px;}
.y5b_c01073{bottom:416.520720px;}
.y92_c01073{bottom:417.239220px;}
.y26_c01073{bottom:435.956490px;}
.y5a_c01073{bottom:435.959970px;}
.y91_c01073{bottom:436.681440px;}
.y25_c01073{bottom:454.857195px;}
.y59_c01073{bottom:455.039985px;}
.y90_c01073{bottom:456.120045px;}
.y24_c01073{bottom:474.656685px;}
.y58_c01073{bottom:474.840135px;}
.y8f_c01073{bottom:475.919535px;}
.y23_c01073{bottom:493.376250px;}
.y57_c01073{bottom:493.560750px;}
.y56_c01073{bottom:493.561380px;}
.y8e_c01073{bottom:494.639715px;}
.y22_c01073{bottom:512.637630px;}
.y55_c01073{bottom:513.000000px;}
.y8d_c01073{bottom:513.720150px;}
.y21_c01073{bottom:531.357195px;}
.y54_c01073{bottom:531.720750px;}
.y8c_c01073{bottom:532.441365px;}
.y20_c01073{bottom:550.798320px;}
.y53_c01073{bottom:550.800570px;}
.y8b_c01073{bottom:551.879970px;}
.y1f_c01073{bottom:569.878785px;}
.y51_c01073{bottom:570.239205px;}
.y52_c01073{bottom:570.239820px;}
.y89_c01073{bottom:570.959445px;}
.y8a_c01073{bottom:570.959970px;}
.y1e_c01073{bottom:589.497165px;}
.y50_c01073{bottom:589.680330px;}
.y88_c01073{bottom:590.758935px;}
.y1d_c01073{bottom:608.397840px;}
.y4f_c01073{bottom:608.760795px;}
.y87_c01073{bottom:609.479880px;}
.y1c_c01073{bottom:627.838995px;}
.y4e_c01073{bottom:627.841230px;}
.y86_c01073{bottom:628.560315px;}
.y1b_c01073{bottom:646.919430px;}
.y4d_c01073{bottom:647.279850px;}
.y85_c01073{bottom:647.998920px;}
.y1a_c01073{bottom:666.178275px;}
.y4b_c01073{bottom:666.358515px;}
.y4c_c01073{bottom:666.359850px;}
.y84_c01073{bottom:667.079385px;}
.y19_c01073{bottom:685.438500px;}
.y4a_c01073{bottom:685.438980px;}
.y83_c01073{bottom:686.159820px;}
.y18_c01073{bottom:704.697345px;}
.y49_c01073{bottom:704.880105px;}
.y81_c01073{bottom:705.600030px;}
.y82_c01073{bottom:705.600720px;}
.y17_c01073{bottom:723.598020px;}
.y48_c01073{bottom:723.599670px;}
.y80_c01073{bottom:724.319595px;}
.y16_c01073{bottom:742.858245px;}
.y47_c01073{bottom:743.040570px;}
.y7f_c01073{bottom:743.760720px;}
.y15_c01073{bottom:761.758920px;}
.y46_c01073{bottom:762.121080px;}
.y7e_c01073{bottom:762.479685px;}
.y14_c01073{bottom:781.379835px;}
.y45_c01073{bottom:781.559685px;}
.y7d_c01073{bottom:781.920615px;}
.y43_c01073{bottom:800.278950px;}
.y44_c01073{bottom:800.280390px;}
.y13_c01073{bottom:800.460270px;}
.y7c_c01073{bottom:801.001080px;}
.y42_c01073{bottom:820.078470px;}
.y12_c01073{bottom:820.081185px;}
.y7b_c01073{bottom:820.800570px;}
.y11_c01073{bottom:839.340045px;}
.y41_c01073{bottom:839.517075px;}
.y7a_c01073{bottom:839.881215px;}
.y10_c01073{bottom:858.778650px;}
.y40_c01073{bottom:858.958215px;}
.y79_c01073{bottom:859.319820px;}
.yf_c01073{bottom:877.859100px;}
.y3f_c01073{bottom:878.038680px;}
.y78_c01073{bottom:878.399865px;}
.ye_c01073{bottom:896.940720px;}
.y3e_c01073{bottom:897.119115px;}
.y77_c01073{bottom:897.479460px;}
.yd_c01073{bottom:916.021155px;}
.y3d_c01073{bottom:916.199565px;}
.y76_c01073{bottom:916.920600px;}
.y3c_c01073{bottom:935.638185px;}
.yc_c01073{bottom:935.819295px;}
.y75_c01073{bottom:936.358815px;}
.yb_c01073{bottom:954.540225px;}
.y3b_c01073{bottom:954.718620px;}
.y74_c01073{bottom:955.439280px;}
.ya_c01073{bottom:973.799085px;}
.y73_c01073{bottom:974.519715px;}
.y9_c01073{bottom:992.879520px;}
.y72_c01073{bottom:993.240420px;}
.y7_c01073{bottom:1012.498995px;}
.y8_c01073{bottom:1012.500000px;}
.y3a_c01073{bottom:1012.679715px;}
.y71_c01073{bottom:1013.040615px;}
.y39_c01073{bottom:1031.400240px;}
.y6_c01073{bottom:1031.579430px;}
.y70_c01073{bottom:1032.120390px;}
.y5_c01073{bottom:1050.838275px;}
.y38_c01073{bottom:1050.839535px;}
.y6f_c01073{bottom:1051.200435px;}
.y4_c01073{bottom:1069.918740px;}
.y37_c01073{bottom:1069.918920px;}
.y6e_c01073{bottom:1072.440855px;}
.y36_c01073{bottom:1088.999355px;}
.y3_c01073{bottom:1089.180105px;}
.y6d_c01073{bottom:1089.360255px;}
.y2_c01073{bottom:1108.260570px;}
.y34_c01073{bottom:1108.434765px;}
.y35_c01073{bottom:1108.440315px;}
.y6c_c01073{bottom:1108.799880px;}
.y1_c01073{bottom:1146.959385px;}
.hf_c01073{height:41.458008px;}
.he_c01073{height:43.804688px;}
.h11_c01073{height:45.369141px;}
.h2_c01073{height:46.151367px;}
.h8_c01073{height:47.109375px;}
.h12_c01073{height:47.619141px;}
.hb_c01073{height:47.715820px;}
.h13_c01073{height:48.178711px;}
.h16_c01073{height:48.498047px;}
.h1a_c01073{height:48.919922px;}
.h14_c01073{height:49.661133px;}
.h18_c01073{height:50.062500px;}
.h1_c01073{height:50.402344px;}
.h10_c01073{height:50.642578px;}
.h15_c01073{height:51.143555px;}
.h5_c01073{height:51.884766px;}
.ha_c01073{height:52.625977px;}
.h19_c01073{height:53.367188px;}
.h9_c01073{height:54.108398px;}
.hc_c01073{height:54.849609px;}
.h3_c01073{height:55.590820px;}
.hd_c01073{height:56.332031px;}
.h7_c01073{height:57.814453px;}
.h6_c01073{height:63.744141px;}
.h17_c01073{height:65.967773px;}
.h4_c01073{height:67.450195px;}
.h0_c01073{height:1263.000000px;}
.w0_c01073{width:892.500000px;}
.x0_c01073{left:0.000000px;}
.x1_c01073{left:139.678500px;}
.x4_c01073{left:205.199430px;}
.x2_c01073{left:206.278170px;}
.x3_c01073{left:243.359250px;}
.xa_c01073{left:275.398470px;}
.x7_c01073{left:276.479685px;}
.x5_c01073{left:277.559595px;}
.x8_c01073{left:302.039385px;}
.x9_c01073{left:321.839535px;}
.x6_c01073{left:328.678500px;}
.xc_c01073{left:329.759535px;}
.xb_c01073{left:334.798950px;}
.xd_c01073{left:335.878350px;}
.xe_c01073{left:355.319250px;}
.x12_c01073{left:542.878920px;}
.xf_c01073{left:562.319460px;}
.x1a_c01073{left:563.399235px;}
.x13_c01073{left:574.199850px;}
.x10_c01073{left:575.279250px;}
.x1c_c01073{left:576.358665px;}
.x11_c01073{left:587.879520px;}
.x19_c01073{left:607.318770px;}
.x1b_c01073{left:608.399820px;}
.x14_c01073{left:619.918950px;}
.x17_c01073{left:633.959385px;}
.x15_c01073{left:640.798515px;}
.x16_c01073{left:653.398635px;}
.x18_c01073{left:659.878320px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls12_c01073{letter-spacing:-5.709600pt;}
.ls5_c01073{letter-spacing:-5.376987pt;}
.ls15_c01073{letter-spacing:-4.775467pt;}
.ls1d_c01073{letter-spacing:-4.610400pt;}
.ls8_c01073{letter-spacing:-4.369933pt;}
.ls1c_c01073{letter-spacing:-3.562933pt;}
.lsc_c01073{letter-spacing:-3.073147pt;}
.ls19_c01073{letter-spacing:-2.916667pt;}
.ls16_c01073{letter-spacing:-2.492293pt;}
.ls17_c01073{letter-spacing:-2.483467pt;}
.ls13_c01073{letter-spacing:-2.426707pt;}
.lse_c01073{letter-spacing:-2.414507pt;}
.ls14_c01073{letter-spacing:-2.393913pt;}
.ls1b_c01073{letter-spacing:-2.262740pt;}
.ls1f_c01073{letter-spacing:-1.574880pt;}
.ls7_c01073{letter-spacing:-1.537253pt;}
.lsf_c01073{letter-spacing:-1.531133pt;}
.lsb_c01073{letter-spacing:-1.507333pt;}
.ls9_c01073{letter-spacing:-1.404593pt;}
.ls6_c01073{letter-spacing:-0.770667pt;}
.ls4_c01073{letter-spacing:0.000000pt;}
.ls0_c01073{letter-spacing:0.770667pt;}
.ls10_c01073{letter-spacing:0.827333pt;}
.ls3_c01073{letter-spacing:1.537253pt;}
.ls20_c01073{letter-spacing:1.602040pt;}
.ls1e_c01073{letter-spacing:1.626313pt;}
.ls18_c01073{letter-spacing:2.422980pt;}
.ls11_c01073{letter-spacing:2.537067pt;}
.ls1a_c01073{letter-spacing:2.557600pt;}
.lsa_c01073{letter-spacing:2.833740pt;}
.lsd_c01073{letter-spacing:3.073147pt;}
.ls2_c01073{letter-spacing:6.147200pt;}
.ls1_c01073{letter-spacing:50.710320pt;}
.ws0_c01073{word-spacing:0.000000pt;}
._14_c01073{margin-left:-100.963365pt;}
._e_c01073{margin-left:-22.852672pt;}
._18_c01073{margin-left:-11.228529pt;}
._19_c01073{margin-left:-8.097970pt;}
._12_c01073{margin-left:-7.080882pt;}
._d_c01073{margin-left:-5.344785pt;}
._17_c01073{margin-left:-4.261333pt;}
._11_c01073{margin-left:-3.232466pt;}
._15_c01073{margin-left:-2.221364pt;}
._f_c01073{margin-left:-1.292261pt;}
._16_c01073{width:1.001759pt;}
._2_c01073{width:2.099133pt;}
._10_c01073{width:3.569224pt;}
._1_c01073{width:5.094122pt;}
._13_c01073{width:7.529851pt;}
._a_c01073{width:15.046087pt;}
._c_c01073{width:16.523739pt;}
._b_c01073{width:17.426133pt;}
._7_c01073{width:18.899482pt;}
._4_c01073{width:21.850359pt;}
._6_c01073{width:22.757733pt;}
._8_c01073{width:24.230405pt;}
._0_c01073{width:25.173984pt;}
._5_c01073{width:26.590666pt;}
._9_c01073{width:28.063339pt;}
._3_c01073{width:580.330041pt;}
.fse_c01073{font-size:35.333333pt;}
.fsd_c01073{font-size:37.333333pt;}
.fs10_c01073{font-size:38.666667pt;}
.fs1_c01073{font-size:39.333333pt;}
.fsa_c01073{font-size:40.666667pt;}
.fs14_c01073{font-size:41.333333pt;}
.fs11_c01073{font-size:42.000000pt;}
.fs7_c01073{font-size:42.666667pt;}
.fs12_c01073{font-size:43.333333pt;}
.fs17_c01073{font-size:44.000000pt;}
.fsf_c01073{font-size:44.666667pt;}
.fs0_c01073{font-size:45.333333pt;}
.fs13_c01073{font-size:46.000000pt;}
.fs4_c01073{font-size:46.666667pt;}
.fs9_c01073{font-size:47.333333pt;}
.fs16_c01073{font-size:48.000000pt;}
.fs8_c01073{font-size:48.666667pt;}
.fsb_c01073{font-size:49.333333pt;}
.fs2_c01073{font-size:50.000000pt;}
.fsc_c01073{font-size:50.666667pt;}
.fs6_c01073{font-size:52.000000pt;}
.fs5_c01073{font-size:57.333333pt;}
.fs15_c01073{font-size:59.333333pt;}
.fs3_c01073{font-size:60.666667pt;}
.y0_c01073{bottom:0.000000pt;}
.y33_c01073{bottom:165.434507pt;}
.y6b_c01073{bottom:165.439480pt;}
.y6a_c01073{bottom:165.440040pt;}
.y9f_c01073{bottom:166.079613pt;}
.y32_c01073{bottom:182.715520pt;}
.y68_c01073{bottom:183.039240pt;}
.y69_c01073{bottom:183.039587pt;}
.y9e_c01073{bottom:183.360387pt;}
.y31_c01073{bottom:199.834493pt;}
.y67_c01073{bottom:200.320253pt;}
.y9d_c01073{bottom:200.639387pt;}
.y30_c01073{bottom:217.115520pt;}
.y66_c01073{bottom:217.280253pt;}
.y9c_c01073{bottom:217.920387pt;}
.y2f_c01073{bottom:233.914920pt;}
.y65_c01073{bottom:233.919453pt;}
.y9b_c01073{bottom:234.880387pt;}
.y2e_c01073{bottom:251.195920pt;}
.y63_c01073{bottom:251.199773pt;}
.y64_c01073{bottom:251.200133pt;}
.y9a_c01073{bottom:252.159440pt;}
.y2d_c01073{bottom:267.835533pt;}
.y62_c01073{bottom:267.839373pt;}
.y99_c01073{bottom:268.800253pt;}
.y2c_c01073{bottom:284.476360pt;}
.y61_c01073{bottom:284.800800pt;}
.y98_c01073{bottom:285.439453pt;}
.y2b_c01073{bottom:301.436747pt;}
.y60_c01073{bottom:301.440000pt;}
.y97_c01073{bottom:302.080120pt;}
.y2a_c01073{bottom:318.717773pt;}
.y5e_c01073{bottom:319.039613pt;}
.y5f_c01073{bottom:319.040000pt;}
.y96_c01073{bottom:319.359333pt;}
.y29_c01073{bottom:335.837947pt;}
.y5d_c01073{bottom:336.000000pt;}
.y95_c01073{bottom:336.640120pt;}
.y94_c01073{bottom:336.640160pt;}
.y28_c01073{bottom:352.956933pt;}
.y5c_c01073{bottom:352.960000pt;}
.y93_c01073{bottom:353.600547pt;}
.y27_c01073{bottom:369.917333pt;}
.y5b_c01073{bottom:370.240640pt;}
.y92_c01073{bottom:370.879307pt;}
.y26_c01073{bottom:387.516880pt;}
.y5a_c01073{bottom:387.519973pt;}
.y91_c01073{bottom:388.161280pt;}
.y25_c01073{bottom:404.317507pt;}
.y59_c01073{bottom:404.479987pt;}
.y90_c01073{bottom:405.440040pt;}
.y24_c01073{bottom:421.917053pt;}
.y58_c01073{bottom:422.080120pt;}
.y8f_c01073{bottom:423.039587pt;}
.y23_c01073{bottom:438.556667pt;}
.y57_c01073{bottom:438.720667pt;}
.y56_c01073{bottom:438.721227pt;}
.y8e_c01073{bottom:439.679747pt;}
.y22_c01073{bottom:455.677893pt;}
.y55_c01073{bottom:456.000000pt;}
.y8d_c01073{bottom:456.640133pt;}
.y21_c01073{bottom:472.317507pt;}
.y54_c01073{bottom:472.640667pt;}
.y8c_c01073{bottom:473.281213pt;}
.y20_c01073{bottom:489.598507pt;}
.y53_c01073{bottom:489.600507pt;}
.y8b_c01073{bottom:490.559973pt;}
.y1f_c01073{bottom:506.558920pt;}
.y51_c01073{bottom:506.879293pt;}
.y52_c01073{bottom:506.879840pt;}
.y89_c01073{bottom:507.519507pt;}
.y8a_c01073{bottom:507.519973pt;}
.y1e_c01073{bottom:523.997480pt;}
.y50_c01073{bottom:524.160293pt;}
.y88_c01073{bottom:525.119053pt;}
.y1d_c01073{bottom:540.798080pt;}
.y4f_c01073{bottom:541.120707pt;}
.y87_c01073{bottom:541.759893pt;}
.y1c_c01073{bottom:558.079107pt;}
.y4e_c01073{bottom:558.081093pt;}
.y86_c01073{bottom:558.720280pt;}
.y1b_c01073{bottom:575.039493pt;}
.y4d_c01073{bottom:575.359867pt;}
.y85_c01073{bottom:575.999040pt;}
.y1a_c01073{bottom:592.158467pt;}
.y4b_c01073{bottom:592.318680pt;}
.y4c_c01073{bottom:592.319867pt;}
.y84_c01073{bottom:592.959453pt;}
.y19_c01073{bottom:609.278667pt;}
.y4a_c01073{bottom:609.279093pt;}
.y83_c01073{bottom:609.919840pt;}
.y18_c01073{bottom:626.397640pt;}
.y49_c01073{bottom:626.560093pt;}
.y81_c01073{bottom:627.200027pt;}
.y82_c01073{bottom:627.200640pt;}
.y17_c01073{bottom:643.198240pt;}
.y48_c01073{bottom:643.199707pt;}
.y80_c01073{bottom:643.839640pt;}
.y16_c01073{bottom:660.318440pt;}
.y47_c01073{bottom:660.480507pt;}
.y7f_c01073{bottom:661.120640pt;}
.y15_c01073{bottom:677.119040pt;}
.y46_c01073{bottom:677.440960pt;}
.y7e_c01073{bottom:677.759720pt;}
.y14_c01073{bottom:694.559853pt;}
.y45_c01073{bottom:694.719720pt;}
.y7d_c01073{bottom:695.040547pt;}
.y43_c01073{bottom:711.359067pt;}
.y44_c01073{bottom:711.360347pt;}
.y13_c01073{bottom:711.520240pt;}
.y7c_c01073{bottom:712.000960pt;}
.y42_c01073{bottom:728.958640pt;}
.y12_c01073{bottom:728.961053pt;}
.y7b_c01073{bottom:729.600507pt;}
.y11_c01073{bottom:746.080040pt;}
.y41_c01073{bottom:746.237400pt;}
.y7a_c01073{bottom:746.561080pt;}
.y10_c01073{bottom:763.358800pt;}
.y40_c01073{bottom:763.518413pt;}
.y79_c01073{bottom:763.839840pt;}
.yf_c01073{bottom:780.319200pt;}
.y3f_c01073{bottom:780.478827pt;}
.y78_c01073{bottom:780.799880pt;}
.ye_c01073{bottom:797.280640pt;}
.y3e_c01073{bottom:797.439213pt;}
.y77_c01073{bottom:797.759520pt;}
.yd_c01073{bottom:814.241027pt;}
.y3d_c01073{bottom:814.399613pt;}
.y76_c01073{bottom:815.040533pt;}
.y3c_c01073{bottom:831.678387pt;}
.yc_c01073{bottom:831.839373pt;}
.y75_c01073{bottom:832.318947pt;}
.yb_c01073{bottom:848.480200pt;}
.y3b_c01073{bottom:848.638773pt;}
.y74_c01073{bottom:849.279360pt;}
.ya_c01073{bottom:865.599187pt;}
.y73_c01073{bottom:866.239747pt;}
.y9_c01073{bottom:882.559573pt;}
.y72_c01073{bottom:882.880373pt;}
.y7_c01073{bottom:899.999107pt;}
.y8_c01073{bottom:900.000000pt;}
.y3a_c01073{bottom:900.159747pt;}
.y71_c01073{bottom:900.480547pt;}
.y39_c01073{bottom:916.800213pt;}
.y6_c01073{bottom:916.959493pt;}
.y70_c01073{bottom:917.440347pt;}
.y5_c01073{bottom:934.078467pt;}
.y38_c01073{bottom:934.079587pt;}
.y6f_c01073{bottom:934.400387pt;}
.y4_c01073{bottom:951.038880pt;}
.y37_c01073{bottom:951.039040pt;}
.y6e_c01073{bottom:953.280760pt;}
.y36_c01073{bottom:967.999427pt;}
.y3_c01073{bottom:968.160093pt;}
.y6d_c01073{bottom:968.320227pt;}
.y2_c01073{bottom:985.120507pt;}
.y34_c01073{bottom:985.275347pt;}
.y35_c01073{bottom:985.280280pt;}
.y6c_c01073{bottom:985.599893pt;}
.y1_c01073{bottom:1019.519453pt;}
.hf_c01073{height:36.851562pt;}
.he_c01073{height:38.937500pt;}
.h11_c01073{height:40.328125pt;}
.h2_c01073{height:41.023438pt;}
.h8_c01073{height:41.875000pt;}
.h12_c01073{height:42.328125pt;}
.hb_c01073{height:42.414062pt;}
.h13_c01073{height:42.825521pt;}
.h16_c01073{height:43.109375pt;}
.h1a_c01073{height:43.484375pt;}
.h14_c01073{height:44.143229pt;}
.h18_c01073{height:44.500000pt;}
.h1_c01073{height:44.802083pt;}
.h10_c01073{height:45.015625pt;}
.h15_c01073{height:45.460938pt;}
.h5_c01073{height:46.119792pt;}
.ha_c01073{height:46.778646pt;}
.h19_c01073{height:47.437500pt;}
.h9_c01073{height:48.096354pt;}
.hc_c01073{height:48.755208pt;}
.h3_c01073{height:49.414063pt;}
.hd_c01073{height:50.072917pt;}
.h7_c01073{height:51.390625pt;}
.h6_c01073{height:56.661458pt;}
.h17_c01073{height:58.638021pt;}
.h4_c01073{height:59.955729pt;}
.h0_c01073{height:1122.666667pt;}
.w0_c01073{width:793.333333pt;}
.x0_c01073{left:0.000000pt;}
.x1_c01073{left:124.158667pt;}
.x4_c01073{left:182.399493pt;}
.x2_c01073{left:183.358373pt;}
.x3_c01073{left:216.319333pt;}
.xa_c01073{left:244.798640pt;}
.x7_c01073{left:245.759720pt;}
.x5_c01073{left:246.719640pt;}
.x8_c01073{left:268.479453pt;}
.x9_c01073{left:286.079587pt;}
.x6_c01073{left:292.158667pt;}
.xc_c01073{left:293.119587pt;}
.xb_c01073{left:297.599067pt;}
.xd_c01073{left:298.558533pt;}
.xe_c01073{left:315.839333pt;}
.x12_c01073{left:482.559040pt;}
.xf_c01073{left:499.839520pt;}
.x1a_c01073{left:500.799320pt;}
.x13_c01073{left:510.399867pt;}
.x10_c01073{left:511.359333pt;}
.x1c_c01073{left:512.318813pt;}
.x11_c01073{left:522.559573pt;}
.x19_c01073{left:539.838907pt;}
.x1b_c01073{left:540.799840pt;}
.x14_c01073{left:551.039067pt;}
.x17_c01073{left:563.519453pt;}
.x15_c01073{left:569.598680pt;}
.x16_c01073{left:580.798787pt;}
.x18_c01073{left:586.558507pt;}
}





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

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_24e9b59401afb54e7fd7e7cb.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01074;src:url('chunks/assets/font_991dd83017d335a070fcd8bf.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01074;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:1.432129;font-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_c01074{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.me_c01074{transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150568,0.000000,0.000000,0.250000,0,0);}
.m10_c01074{transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157738,0.000000,0.000000,0.250000,0,0);}
.m13_c01074{transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);}
.m1_c01074{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.m16_c01074{transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173077,0.000000,0.000000,0.250000,0,0);}
.m17_c01074{transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181452,0.000000,0.000000,0.250000,0,0);}
.m14_c01074{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m9_c01074{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m3_c01074{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m6_c01074{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);}
.m12_c01074{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c01074{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.mb_c01074{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m11_c01074{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.mf_c01074{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.mc_c01074{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m4_c01074{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m7_c01074{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m0_c01074{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.md_c01074{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m15_c01074{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m2_c01074{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m8_c01074{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls10_c01074{letter-spacing:-6.686100px;}
.lsb_c01074{letter-spacing:-5.042700px;}
.lsf_c01074{letter-spacing:-5.018400px;}
.lse_c01074{letter-spacing:-4.182000px;}
.ls9_c01074{letter-spacing:-3.375000px;}
.lsd_c01074{letter-spacing:-3.345600px;}
.ls12_c01074{letter-spacing:-3.328125px;}
.ls16_c01074{letter-spacing:-3.320460px;}
.ls6_c01074{letter-spacing:-3.167775px;}
.ls14_c01074{letter-spacing:-2.693153px;}
.ls5_c01074{letter-spacing:-2.508690px;}
.ls11_c01074{letter-spacing:-1.805708px;}
.ls3_c01074{letter-spacing:-1.673310px;}
.ls8_c01074{letter-spacing:-0.938813px;}
.ls2_c01074{letter-spacing:-0.836400px;}
.ls4_c01074{letter-spacing:0.000000px;}
.ls7_c01074{letter-spacing:0.836400px;}
.ls13_c01074{letter-spacing:1.191330px;}
.lsc_c01074{letter-spacing:4.067145px;}
.ls0_c01074{letter-spacing:4.182000px;}
.lsa_c01074{letter-spacing:5.421450px;}
.ls15_c01074{letter-spacing:35.748900px;}
.ls1_c01074{letter-spacing:53.508690px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01074{word-spacing:0.000000px;}
._1a_c01074{margin-left:-106.241871px;}
._1b_c01074{margin-left:-18.203288px;}
._1c_c01074{margin-left:-12.095921px;}
._12_c01074{margin-left:-8.425401px;}
._11_c01074{margin-left:-6.624850px;}
._18_c01074{margin-left:-5.203003px;}
._19_c01074{margin-left:-3.625381px;}
._1_c01074{margin-left:-1.802440px;}
._a_c01074{width:1.378262px;}
._2_c01074{width:3.060878px;}
._c_c01074{width:13.943768px;}
._4_c01074{width:17.135933px;}
._5_c01074{width:20.384817px;}
._17_c01074{width:22.310251px;}
._0_c01074{width:24.286568px;}
._16_c01074{width:25.522749px;}
._7_c01074{width:31.454359px;}
._d_c01074{width:33.708726px;}
._14_c01074{width:49.248041px;}
._13_c01074{width:53.177917px;}
._15_c01074{width:84.812365px;}
._6_c01074{width:89.767190px;}
._b_c01074{width:91.373372px;}
._f_c01074{width:110.568000px;}
._9_c01074{width:112.149033px;}
._10_c01074{width:169.952601px;}
._8_c01074{width:277.149517px;}
._e_c01074{width:572.409151px;}
._3_c01074{width:635.470217px;}
.fc0_c01074{color:transparent;}
.fs1_c01074{font-size:42.750000px;}
.fs3_c01074{font-size:43.500000px;}
.fs2_c01074{font-size:45.750000px;}
.fs10_c01074{font-size:46.500000px;}
.fsf_c01074{font-size:48.750000px;}
.fse_c01074{font-size:49.500000px;}
.fs0_c01074{font-size:51.000000px;}
.fsb_c01074{font-size:51.750000px;}
.fs9_c01074{font-size:53.250000px;}
.fs5_c01074{font-size:54.000000px;}
.fsd_c01074{font-size:54.750000px;}
.fs4_c01074{font-size:56.250000px;}
.fs7_c01074{font-size:58.500000px;}
.fsc_c01074{font-size:63.000000px;}
.fsa_c01074{font-size:66.000000px;}
.fs8_c01074{font-size:68.250000px;}
.fs6_c01074{font-size:70.500000px;}
.y0_c01074{bottom:0.000000px;}
.y2e_c01074{bottom:185.034210px;}
.y59_c01074{bottom:185.400120px;}
.y81_c01074{bottom:185.400900px;}
.y2d_c01074{bottom:204.114675px;}
.y58_c01074{bottom:204.119685px;}
.y80_c01074{bottom:204.479850px;}
.y2c_c01074{bottom:222.655635px;}
.y57_c01074{bottom:222.840585px;}
.y56_c01074{bottom:222.841230px;}
.y7f_c01074{bottom:223.199415px;}
.y2b_c01074{bottom:242.274015px;}
.y55_c01074{bottom:242.279850px;}
.y2a_c01074{bottom:260.635215px;}
.y54_c01074{bottom:260.641335px;}
.y7e_c01074{bottom:261.000600px;}
.y29_c01074{bottom:279.715650px;}
.y53_c01074{bottom:280.079250px;}
.y7d_c01074{bottom:280.441335px;}
.y28_c01074{bottom:298.796100px;}
.y52_c01074{bottom:298.800180px;}
.y7c_c01074{bottom:299.160435px;}
.y27_c01074{bottom:318.234720px;}
.y51_c01074{bottom:318.238785px;}
.y7b_c01074{bottom:318.601485px;}
.y26_c01074{bottom:336.955620px;}
.y50_c01074{bottom:337.319235px;}
.y7a_c01074{bottom:338.040090px;}
.y25_c01074{bottom:356.036085px;}
.y4f_c01074{bottom:356.399685px;}
.y79_c01074{bottom:356.761005px;}
.y24_c01074{bottom:375.474705px;}
.y4e_c01074{bottom:375.480120px;}
.y78_c01074{bottom:376.199610px;}
.y23_c01074{bottom:394.915830px;}
.y4d_c01074{bottom:394.921275px;}
.y77_c01074{bottom:395.640765px;}
.y22_c01074{bottom:413.996295px;}
.y4c_c01074{bottom:414.001710px;}
.y76_c01074{bottom:414.721200px;}
.y21_c01074{bottom:433.434900px;}
.y4b_c01074{bottom:433.440330px;}
.y75_c01074{bottom:434.161125px;}
.y20_c01074{bottom:452.155815px;}
.y4a_c01074{bottom:452.520795px;}
.y74_c01074{bottom:452.882055px;}
.y1f_c01074{bottom:472.314855px;}
.y49_c01074{bottom:472.320285px;}
.y73_c01074{bottom:473.041080px;}
.y1e_c01074{bottom:491.395290px;}
.y48_c01074{bottom:491.400285px;}
.y72_c01074{bottom:491.762010px;}
.y1d_c01074{bottom:510.655515px;}
.y47_c01074{bottom:510.838830px;}
.y71_c01074{bottom:511.200630px;}
.y1c_c01074{bottom:529.556190px;}
.y46_c01074{bottom:529.558395px;}
.y70_c01074{bottom:529.921530px;}
.y1b_c01074{bottom:548.636655px;}
.y45_c01074{bottom:548.638845px;}
.y6f_c01074{bottom:549.360150px;}
.y1a_c01074{bottom:567.537330px;}
.y44_c01074{bottom:567.719280px;}
.y6e_c01074{bottom:568.440600px;}
.y19_c01074{bottom:586.796175px;}
.y43_c01074{bottom:586.799745px;}
.y6d_c01074{bottom:587.161515px;}
.y18_c01074{bottom:606.237330px;}
.y41_c01074{bottom:606.239610px;}
.y42_c01074{bottom:606.240870px;}
.y6c_c01074{bottom:606.600135px;}
.y17_c01074{bottom:625.317765px;}
.y40_c01074{bottom:625.678230px;}
.y6a_c01074{bottom:626.039565px;}
.y6b_c01074{bottom:626.041035px;}
.y16_c01074{bottom:644.756385px;}
.y3f_c01074{bottom:644.758695px;}
.y69_c01074{bottom:645.120000px;}
.y15_c01074{bottom:663.836835px;}
.y3e_c01074{bottom:663.839130px;}
.y68_c01074{bottom:664.200465px;}
.y14_c01074{bottom:682.737510px;}
.y3d_c01074{bottom:682.919580px;}
.y67_c01074{bottom:683.280900px;}
.y13_c01074{bottom:702.178665px;}
.y3c_c01074{bottom:702.360720px;}
.y66_c01074{bottom:702.720000px;}
.y3b_c01074{bottom:720.720750px;}
.y12_c01074{bottom:721.077990px;}
.y65_c01074{bottom:721.440900px;}
.y11_c01074{bottom:740.158425px;}
.y3a_c01074{bottom:740.159820px;}
.y64_c01074{bottom:740.878920px;}
.y10_c01074{bottom:759.238890px;}
.y39_c01074{bottom:759.240285px;}
.y63_c01074{bottom:759.599835px;}
.yf_c01074{bottom:778.680015px;}
.y38_c01074{bottom:778.681410px;}
.y62_c01074{bottom:779.038440px;}
.ye_c01074{bottom:798.118635px;}
.y61_c01074{bottom:798.118905px;}
.y37_c01074{bottom:798.120030px;}
.yd_c01074{bottom:817.559790px;}
.y36_c01074{bottom:817.560705px;}
.y60_c01074{bottom:818.280465px;}
.yc_c01074{bottom:836.998395px;}
.y35_c01074{bottom:836.999520px;}
.y5f_c01074{bottom:837.360900px;}
.y5e_c01074{bottom:837.361500px;}
.y34_c01074{bottom:856.079955px;}
.y33_c01074{bottom:856.080075px;}
.yb_c01074{bottom:856.439535px;}
.y5d_c01074{bottom:856.800105px;}
.ya_c01074{bottom:875.699760px;}
.y32_c01074{bottom:875.879580px;}
.y5c_c01074{bottom:875.879790px;}
.y30_c01074{bottom:894.954120px;}
.y9_c01074{bottom:894.959955px;}
.y31_c01074{bottom:894.960015px;}
.y5b_c01074{bottom:895.320930px;}
.y2f_c01074{bottom:913.675050px;}
.y5a_c01074{bottom:913.680720px;}
.y8_c01074{bottom:913.860645px;}
.y7_c01074{bottom:952.920360px;}
.y5_c01074{bottom:1067.581035px;}
.y6_c01074{bottom:1067.581050px;}
.y4_c01074{bottom:1086.841230px;}
.y2_c01074{bottom:1106.100585px;}
.y3_c01074{bottom:1106.279850px;}
.y1_c01074{bottom:1144.800570px;}
.h3_c01074{height:44.586914px;}
.h5_c01074{height:45.369141px;}
.h12_c01074{height:45.955078px;}
.h4_c01074{height:47.715820px;}
.h11_c01074{height:48.178711px;}
.h1_c01074{height:50.402344px;}
.h2_c01074{height:51.121384px;}
.hd_c01074{height:51.143555px;}
.h10_c01074{height:51.626953px;}
.hb_c01074{height:52.625977px;}
.h7_c01074{height:53.367188px;}
.hf_c01074{height:54.108398px;}
.h6_c01074{height:55.590820px;}
.h9_c01074{height:57.814453px;}
.he_c01074{height:62.261719px;}
.hc_c01074{height:65.226562px;}
.ha_c01074{height:67.450195px;}
.h8_c01074{height:69.673828px;}
.h0_c01074{height:1263.000000px;}
.w0_c01074{width:892.500000px;}
.x0_c01074{left:0.000000px;}
.x9_c01074{left:138.598635px;}
.x1_c01074{left:145.798950px;}
.x2_c01074{left:166.319115px;}
.xa_c01074{left:211.319505px;}
.xb_c01074{left:212.399100px;}
.x5_c01074{left:249.479685px;}
.xc_c01074{left:281.878395px;}
.x6_c01074{left:282.959400px;}
.x10_c01074{left:301.319250px;}
.xf_c01074{left:308.159850px;}
.xd_c01074{left:321.119385px;}
.x13_c01074{left:328.319250px;}
.x11_c01074{left:334.078785px;}
.xe_c01074{left:347.040000px;}
.x15_c01074{left:353.878950px;}
.x12_c01074{left:372.958950px;}
.x14_c01074{left:386.638500px;}
.x7_c01074{left:478.080000px;}
.x8_c01074{left:516.599070px;}
.x16_c01074{left:535.679220px;}
.x19_c01074{left:542.520510px;}
.x18_c01074{left:548.280645px;}
.x1b_c01074{left:555.479940px;}
.x17_c01074{left:560.518620px;}
.x3_c01074{left:568.438620px;}
.x4_c01074{left:580.679670px;}
.x1c_c01074{left:581.759085px;}
.x1a_c01074{left:619.559685px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls10_c01074{letter-spacing:-5.943200pt;}
.lsb_c01074{letter-spacing:-4.482400pt;}
.lsf_c01074{letter-spacing:-4.460800pt;}
.lse_c01074{letter-spacing:-3.717333pt;}
.ls9_c01074{letter-spacing:-3.000000pt;}
.lsd_c01074{letter-spacing:-2.973867pt;}
.ls12_c01074{letter-spacing:-2.958333pt;}
.ls16_c01074{letter-spacing:-2.951520pt;}
.ls6_c01074{letter-spacing:-2.815800pt;}
.ls14_c01074{letter-spacing:-2.393913pt;}
.ls5_c01074{letter-spacing:-2.229947pt;}
.ls11_c01074{letter-spacing:-1.605073pt;}
.ls3_c01074{letter-spacing:-1.487387pt;}
.ls8_c01074{letter-spacing:-0.834500pt;}
.ls2_c01074{letter-spacing:-0.743467pt;}
.ls4_c01074{letter-spacing:0.000000pt;}
.ls7_c01074{letter-spacing:0.743467pt;}
.ls13_c01074{letter-spacing:1.058960pt;}
.lsc_c01074{letter-spacing:3.615240pt;}
.ls0_c01074{letter-spacing:3.717333pt;}
.lsa_c01074{letter-spacing:4.819067pt;}
.ls15_c01074{letter-spacing:31.776800pt;}
.ls1_c01074{letter-spacing:47.563280pt;}
.ws0_c01074{word-spacing:0.000000pt;}
._1a_c01074{margin-left:-94.437218pt;}
._1b_c01074{margin-left:-16.180700pt;}
._1c_c01074{margin-left:-10.751930pt;}
._12_c01074{margin-left:-7.489245pt;}
._11_c01074{margin-left:-5.888755pt;}
._18_c01074{margin-left:-4.624892pt;}
._19_c01074{margin-left:-3.222561pt;}
._1_c01074{margin-left:-1.602169pt;}
._a_c01074{width:1.225122pt;}
._2_c01074{width:2.720780pt;}
._c_c01074{width:12.394460pt;}
._4_c01074{width:15.231941pt;}
._5_c01074{width:18.119837pt;}
._17_c01074{width:19.831334pt;}
._0_c01074{width:21.588060pt;}
._16_c01074{width:22.686888pt;}
._7_c01074{width:27.959430pt;}
._d_c01074{width:29.963312pt;}
._14_c01074{width:43.776037pt;}
._13_c01074{width:47.269260pt;}
._15_c01074{width:75.388769pt;}
._6_c01074{width:79.793058pt;}
._b_c01074{width:81.220776pt;}
._f_c01074{width:98.282667pt;}
._9_c01074{width:99.688030pt;}
._10_c01074{width:151.068978pt;}
._8_c01074{width:246.355127pt;}
._e_c01074{width:508.808135pt;}
._3_c01074{width:564.862415pt;}
.fs1_c01074{font-size:38.000000pt;}
.fs3_c01074{font-size:38.666667pt;}
.fs2_c01074{font-size:40.666667pt;}
.fs10_c01074{font-size:41.333333pt;}
.fsf_c01074{font-size:43.333333pt;}
.fse_c01074{font-size:44.000000pt;}
.fs0_c01074{font-size:45.333333pt;}
.fsb_c01074{font-size:46.000000pt;}
.fs9_c01074{font-size:47.333333pt;}
.fs5_c01074{font-size:48.000000pt;}
.fsd_c01074{font-size:48.666667pt;}
.fs4_c01074{font-size:50.000000pt;}
.fs7_c01074{font-size:52.000000pt;}
.fsc_c01074{font-size:56.000000pt;}
.fsa_c01074{font-size:58.666667pt;}
.fs8_c01074{font-size:60.666667pt;}
.fs6_c01074{font-size:62.666667pt;}
.y0_c01074{bottom:0.000000pt;}
.y2e_c01074{bottom:164.474853pt;}
.y59_c01074{bottom:164.800107pt;}
.y81_c01074{bottom:164.800800pt;}
.y2d_c01074{bottom:181.435267pt;}
.y58_c01074{bottom:181.439720pt;}
.y80_c01074{bottom:181.759867pt;}
.y2c_c01074{bottom:197.916120pt;}
.y57_c01074{bottom:198.080520pt;}
.y56_c01074{bottom:198.081093pt;}
.y7f_c01074{bottom:198.399480pt;}
.y2b_c01074{bottom:215.354680pt;}
.y55_c01074{bottom:215.359867pt;}
.y2a_c01074{bottom:231.675747pt;}
.y54_c01074{bottom:231.681187pt;}
.y7e_c01074{bottom:232.000533pt;}
.y29_c01074{bottom:248.636133pt;}
.y53_c01074{bottom:248.959333pt;}
.y7d_c01074{bottom:249.281187pt;}
.y28_c01074{bottom:265.596533pt;}
.y52_c01074{bottom:265.600160pt;}
.y7c_c01074{bottom:265.920387pt;}
.y27_c01074{bottom:282.875307pt;}
.y51_c01074{bottom:282.878920pt;}
.y7b_c01074{bottom:283.201320pt;}
.y26_c01074{bottom:299.516107pt;}
.y50_c01074{bottom:299.839320pt;}
.y7a_c01074{bottom:300.480080pt;}
.y25_c01074{bottom:316.476520pt;}
.y4f_c01074{bottom:316.799720pt;}
.y79_c01074{bottom:317.120893pt;}
.y24_c01074{bottom:333.755293pt;}
.y4e_c01074{bottom:333.760107pt;}
.y78_c01074{bottom:334.399653pt;}
.y23_c01074{bottom:351.036293pt;}
.y4d_c01074{bottom:351.041133pt;}
.y77_c01074{bottom:351.680680pt;}
.y22_c01074{bottom:367.996707pt;}
.y4c_c01074{bottom:368.001520pt;}
.y76_c01074{bottom:368.641067pt;}
.y21_c01074{bottom:385.275467pt;}
.y4b_c01074{bottom:385.280293pt;}
.y75_c01074{bottom:385.921000pt;}
.y20_c01074{bottom:401.916280pt;}
.y4a_c01074{bottom:402.240707pt;}
.y74_c01074{bottom:402.561827pt;}
.y1f_c01074{bottom:419.835427pt;}
.y49_c01074{bottom:419.840253pt;}
.y73_c01074{bottom:420.480960pt;}
.y1e_c01074{bottom:436.795813pt;}
.y48_c01074{bottom:436.800253pt;}
.y72_c01074{bottom:437.121787pt;}
.y1d_c01074{bottom:453.916013pt;}
.y47_c01074{bottom:454.078960pt;}
.y71_c01074{bottom:454.400560pt;}
.y1c_c01074{bottom:470.716613pt;}
.y46_c01074{bottom:470.718573pt;}
.y70_c01074{bottom:471.041360pt;}
.y1b_c01074{bottom:487.677027pt;}
.y45_c01074{bottom:487.678973pt;}
.y6f_c01074{bottom:488.320133pt;}
.y1a_c01074{bottom:504.477627pt;}
.y44_c01074{bottom:504.639360pt;}
.y6e_c01074{bottom:505.280533pt;}
.y19_c01074{bottom:521.596600pt;}
.y43_c01074{bottom:521.599773pt;}
.y6d_c01074{bottom:521.921347pt;}
.y18_c01074{bottom:538.877627pt;}
.y41_c01074{bottom:538.879653pt;}
.y42_c01074{bottom:538.880773pt;}
.y6c_c01074{bottom:539.200120pt;}
.y17_c01074{bottom:555.838013pt;}
.y40_c01074{bottom:556.158427pt;}
.y6a_c01074{bottom:556.479613pt;}
.y6b_c01074{bottom:556.480920pt;}
.y16_c01074{bottom:573.116787pt;}
.y3f_c01074{bottom:573.118840pt;}
.y69_c01074{bottom:573.440000pt;}
.y15_c01074{bottom:590.077187pt;}
.y3e_c01074{bottom:590.079227pt;}
.y68_c01074{bottom:590.400413pt;}
.y14_c01074{bottom:606.877787pt;}
.y3d_c01074{bottom:607.039627pt;}
.y67_c01074{bottom:607.360800pt;}
.y13_c01074{bottom:624.158813pt;}
.y3c_c01074{bottom:624.320640pt;}
.y66_c01074{bottom:624.640000pt;}
.y3b_c01074{bottom:640.640667pt;}
.y12_c01074{bottom:640.958213pt;}
.y65_c01074{bottom:641.280800pt;}
.y11_c01074{bottom:657.918600pt;}
.y3a_c01074{bottom:657.919840pt;}
.y64_c01074{bottom:658.559040pt;}
.y10_c01074{bottom:674.879013pt;}
.y39_c01074{bottom:674.880253pt;}
.y63_c01074{bottom:675.199853pt;}
.yf_c01074{bottom:692.160013pt;}
.y38_c01074{bottom:692.161253pt;}
.y62_c01074{bottom:692.478613pt;}
.ye_c01074{bottom:709.438787pt;}
.y61_c01074{bottom:709.439027pt;}
.y37_c01074{bottom:709.440027pt;}
.yd_c01074{bottom:726.719813pt;}
.y36_c01074{bottom:726.720627pt;}
.y60_c01074{bottom:727.360413pt;}
.yc_c01074{bottom:743.998573pt;}
.y35_c01074{bottom:743.999573pt;}
.y5f_c01074{bottom:744.320800pt;}
.y5e_c01074{bottom:744.321333pt;}
.y34_c01074{bottom:760.959960pt;}
.y33_c01074{bottom:760.960067pt;}
.yb_c01074{bottom:761.279587pt;}
.y5d_c01074{bottom:761.600093pt;}
.ya_c01074{bottom:778.399787pt;}
.y32_c01074{bottom:778.559627pt;}
.y5c_c01074{bottom:778.559813pt;}
.y30_c01074{bottom:795.514773pt;}
.y9_c01074{bottom:795.519960pt;}
.y31_c01074{bottom:795.520013pt;}
.y5b_c01074{bottom:795.840827pt;}
.y2f_c01074{bottom:812.155600pt;}
.y5a_c01074{bottom:812.160640pt;}
.y8_c01074{bottom:812.320573pt;}
.y7_c01074{bottom:847.040320pt;}
.y5_c01074{bottom:948.960920pt;}
.y6_c01074{bottom:948.960933pt;}
.y4_c01074{bottom:966.081093pt;}
.y2_c01074{bottom:983.200520pt;}
.y3_c01074{bottom:983.359867pt;}
.y1_c01074{bottom:1017.600507pt;}
.h3_c01074{height:39.632812pt;}
.h5_c01074{height:40.328125pt;}
.h12_c01074{height:40.848958pt;}
.h4_c01074{height:42.414062pt;}
.h11_c01074{height:42.825521pt;}
.h1_c01074{height:44.802083pt;}
.h2_c01074{height:45.441230pt;}
.hd_c01074{height:45.460938pt;}
.h10_c01074{height:45.890625pt;}
.hb_c01074{height:46.778646pt;}
.h7_c01074{height:47.437500pt;}
.hf_c01074{height:48.096354pt;}
.h6_c01074{height:49.414063pt;}
.h9_c01074{height:51.390625pt;}
.he_c01074{height:55.343750pt;}
.hc_c01074{height:57.979167pt;}
.ha_c01074{height:59.955729pt;}
.h8_c01074{height:61.932292pt;}
.h0_c01074{height:1122.666667pt;}
.w0_c01074{width:793.333333pt;}
.x0_c01074{left:0.000000pt;}
.x9_c01074{left:123.198787pt;}
.x1_c01074{left:129.599067pt;}
.x2_c01074{left:147.839213pt;}
.xa_c01074{left:187.839560pt;}
.xb_c01074{left:188.799200pt;}
.x5_c01074{left:221.759720pt;}
.xc_c01074{left:250.558573pt;}
.x6_c01074{left:251.519467pt;}
.x10_c01074{left:267.839333pt;}
.xf_c01074{left:273.919867pt;}
.xd_c01074{left:285.439453pt;}
.x13_c01074{left:291.839333pt;}
.x11_c01074{left:296.958920pt;}
.xe_c01074{left:308.480000pt;}
.x15_c01074{left:314.559067pt;}
.x12_c01074{left:331.519067pt;}
.x14_c01074{left:343.678667pt;}
.x7_c01074{left:424.960000pt;}
.x8_c01074{left:459.199173pt;}
.x16_c01074{left:476.159307pt;}
.x19_c01074{left:482.240453pt;}
.x18_c01074{left:487.360573pt;}
.x1b_c01074{left:493.759947pt;}
.x17_c01074{left:498.238773pt;}
.x3_c01074{left:505.278773pt;}
.x4_c01074{left:516.159707pt;}
.x1c_c01074{left:517.119187pt;}
.x1a_c01074{left:550.719720pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_50a6999ea1ae896ed071cc52.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01075;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01075;src:url('chunks/assets/font_51cb24af831f6655f85ce851.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.281250;font-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_c01075{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.m12_c01075{transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146067,0.000000,0.000000,0.250000,0,0);}
.ma_c01075{transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151099,0.000000,0.000000,0.250000,0,0);}
.m10_c01075{transform:matrix(0.164706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164706,0.000000,0.000000,0.250000,0,0);}
.mc_c01075{transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169014,0.000000,0.000000,0.250000,0,0);}
.md_c01075{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m1_c01075{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.mf_c01075{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_c01075{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.mb_c01075{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m0_c01075{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m8_c01075{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m4_c01075{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_c01075{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m11_c01075{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m6_c01075{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m7_c01075{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m5_c01075{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m3_c01075{transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls12_c01075{letter-spacing:-3.457290px;}
.ls8_c01075{letter-spacing:-3.408188px;}
.ls7_c01075{letter-spacing:-2.590800px;}
.ls6_c01075{letter-spacing:-2.545583px;}
.ls10_c01075{letter-spacing:-1.792650px;}
.ls5_c01075{letter-spacing:-1.729410px;}
.lsd_c01075{letter-spacing:-1.719975px;}
.ls14_c01075{letter-spacing:-1.622888px;}
.ls4_c01075{letter-spacing:-0.867000px;}
.lsa_c01075{letter-spacing:-0.809025px;}
.ls3_c01075{letter-spacing:0.000000px;}
.ls2_c01075{letter-spacing:0.867000px;}
.ls11_c01075{letter-spacing:0.926325px;}
.lsf_c01075{letter-spacing:1.242150px;}
.lse_c01075{letter-spacing:1.290608px;}
.ls0_c01075{letter-spacing:1.729410px;}
.lsc_c01075{letter-spacing:4.593908px;}
.lsb_c01075{letter-spacing:4.745355px;}
.ls1_c01075{letter-spacing:5.186700px;}
.ls9_c01075{letter-spacing:5.248425px;}
.ls15_c01075{letter-spacing:7.777500px;}
.ls13_c01075{letter-spacing:40.311000px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:0.000000px;}
._10_c01075{margin-left:-32.573544px;}
._11_c01075{margin-left:-28.039523px;}
._14_c01075{margin-left:-11.128010px;}
._12_c01075{margin-left:-9.434965px;}
._13_c01075{margin-left:-7.782496px;}
._d_c01075{margin-left:-6.742511px;}
._c_c01075{margin-left:-5.100138px;}
._e_c01075{margin-left:-4.051086px;}
._1_c01075{margin-left:-2.805311px;}
._f_c01075{margin-left:-1.764600px;}
._b_c01075{width:1.132373px;}
._15_c01075{width:2.330406px;}
._5_c01075{width:4.166579px;}
._a_c01075{width:19.604331px;}
._9_c01075{width:21.267035px;}
._8_c01075{width:22.899035px;}
._3_c01075{width:24.582000px;}
._4_c01075{width:26.239794px;}
._7_c01075{width:27.259137px;}
._0_c01075{width:28.320663px;}
._6_c01075{width:29.914361px;}
._2_c01075{width:652.886786px;}
.fc0_c01075{color:transparent;}
.fsa_c01075{font-size:45.000000px;}
.fs1_c01075{font-size:45.750000px;}
.fsc_c01075{font-size:48.750000px;}
.fs6_c01075{font-size:50.250000px;}
.fs0_c01075{font-size:51.000000px;}
.fs2_c01075{font-size:51.750000px;}
.fs8_c01075{font-size:53.250000px;}
.fs9_c01075{font-size:55.500000px;}
.fs4_c01075{font-size:56.250000px;}
.fsb_c01075{font-size:63.750000px;}
.fsd_c01075{font-size:66.750000px;}
.fs5_c01075{font-size:68.250000px;}
.fs7_c01075{font-size:70.500000px;}
.fs3_c01075{font-size:72.750000px;}
.y0_c01075{bottom:0.000000px;}
.y95_c01075{bottom:179.276910px;}
.y65_c01075{bottom:179.638980px;}
.y33_c01075{bottom:179.995290px;}
.y94_c01075{bottom:198.357375px;}
.y64_c01075{bottom:198.719415px;}
.y32_c01075{bottom:199.075740px;}
.y93_c01075{bottom:217.798515px;}
.y31_c01075{bottom:218.156175px;}
.y63_c01075{bottom:218.158035px;}
.y92_c01075{bottom:237.237120px;}
.y62_c01075{bottom:237.238500px;}
.y30_c01075{bottom:237.597330px;}
.y2f_c01075{bottom:255.957360px;}
.y91_c01075{bottom:255.958050px;}
.y61_c01075{bottom:255.959400px;}
.y90_c01075{bottom:275.038485px;}
.y2e_c01075{bottom:275.395980px;}
.y60_c01075{bottom:275.398020px;}
.y2d_c01075{bottom:294.116895px;}
.y5f_c01075{bottom:294.118950px;}
.y2c_c01075{bottom:313.197345px;}
.y5e_c01075{bottom:313.199385px;}
.y2b_c01075{bottom:332.277780px;}
.y8f_c01075{bottom:332.278545px;}
.y5d_c01075{bottom:332.279250px;}
.y2a_c01075{bottom:351.718935px;}
.y5c_c01075{bottom:351.719670px;}
.y8e_c01075{bottom:351.719700px;}
.y5b_c01075{bottom:370.439235px;}
.y29_c01075{bottom:370.799370px;}
.y8d_c01075{bottom:370.800135px;}
.y8c_c01075{bottom:370.801365px;}
.y28_c01075{bottom:390.237990px;}
.y5a_c01075{bottom:390.239220px;}
.y59_c01075{bottom:390.239460px;}
.y8b_c01075{bottom:390.239985px;}
.y27_c01075{bottom:409.318455px;}
.y58_c01075{bottom:409.680615px;}
.y8a_c01075{bottom:409.681110px;}
.y26_c01075{bottom:429.117945px;}
.y57_c01075{bottom:429.119220px;}
.y89_c01075{bottom:429.119730px;}
.y25_c01075{bottom:447.838875px;}
.y56_c01075{bottom:447.840135px;}
.y88_c01075{bottom:447.840660px;}
.y55_c01075{bottom:467.279250px;}
.y24_c01075{bottom:467.638365px;}
.y87_c01075{bottom:467.640150px;}
.y23_c01075{bottom:486.357930px;}
.y86_c01075{bottom:486.357945px;}
.y54_c01075{bottom:486.359250px;}
.y53_c01075{bottom:505.798830px;}
.y22_c01075{bottom:505.799085px;}
.y52_c01075{bottom:524.518380px;}
.y21_c01075{bottom:524.518635px;}
.y85_c01075{bottom:524.879535px;}
.y51_c01075{bottom:543.598845px;}
.y20_c01075{bottom:543.599070px;}
.y84_c01075{bottom:543.959970px;}
.y1e_c01075{bottom:563.035605px;}
.y1f_c01075{bottom:563.039985px;}
.y1d_c01075{bottom:582.116070px;}
.y50_c01075{bottom:582.119415px;}
.y83_c01075{bottom:582.475965px;}
.y1c_c01075{bottom:601.196505px;}
.y4f_c01075{bottom:601.199850px;}
.y82_c01075{bottom:601.556415px;}
.y1b_c01075{bottom:620.996010px;}
.y81_c01075{bottom:620.997555px;}
.y4d_c01075{bottom:620.998740px;}
.y4e_c01075{bottom:621.000000px;}
.y1a_c01075{bottom:639.715575px;}
.y4c_c01075{bottom:639.718305px;}
.y80_c01075{bottom:640.078005px;}
.y19_c01075{bottom:658.436490px;}
.y4b_c01075{bottom:658.439235px;}
.y7f_c01075{bottom:658.797570px;}
.y18_c01075{bottom:677.516940px;}
.y4a_c01075{bottom:677.519670px;}
.y7e_c01075{bottom:677.878005px;}
.y17_c01075{bottom:696.955560px;}
.y49_c01075{bottom:696.958740px;}
.y7d_c01075{bottom:697.319160px;}
.y48_c01075{bottom:715.318770px;}
.y16_c01075{bottom:716.035995px;}
.y7c_c01075{bottom:716.038725px;}
.y15_c01075{bottom:735.116460px;}
.y47_c01075{bottom:735.118785px;}
.y7b_c01075{bottom:735.479850px;}
.y14_c01075{bottom:754.557585px;}
.y46_c01075{bottom:754.559685px;}
.y7a_c01075{bottom:754.560315px;}
.y13_c01075{bottom:773.996205px;}
.y45_c01075{bottom:773.998335px;}
.y79_c01075{bottom:774.359805px;}
.y78_c01075{bottom:774.360195px;}
.y12_c01075{bottom:793.076655px;}
.y44_c01075{bottom:793.078785px;}
.y77_c01075{bottom:793.440630px;}
.y11_c01075{bottom:812.876145px;}
.y43_c01075{bottom:812.878275px;}
.y76_c01075{bottom:812.879235px;}
.y10_c01075{bottom:831.956610px;}
.y42_c01075{bottom:831.958740px;}
.y75_c01075{bottom:831.959700px;}
.yf_c01075{bottom:851.397750px;}
.y41_c01075{bottom:851.399865px;}
.y74_c01075{bottom:851.759190px;}
.y40_c01075{bottom:870.479640px;}
.y73_c01075{bottom:870.480120px;}
.ye_c01075{bottom:870.836355px;}
.y72_c01075{bottom:889.918740px;}
.y3f_c01075{bottom:890.273370px;}
.yd_c01075{bottom:890.277510px;}
.y71_c01075{bottom:908.639655px;}
.y3e_c01075{bottom:908.992935px;}
.yc_c01075{bottom:908.997075px;}
.y70_c01075{bottom:927.719520px;}
.y3d_c01075{bottom:928.073370px;}
.yb_c01075{bottom:928.077510px;}
.y3c_c01075{bottom:947.514525px;}
.y6e_c01075{bottom:947.517720px;}
.ya_c01075{bottom:947.518665px;}
.y6f_c01075{bottom:947.519715px;}
.y3b_c01075{bottom:966.953130px;}
.y6d_c01075{bottom:966.956340px;}
.y9_c01075{bottom:966.957270px;}
.y3a_c01075{bottom:986.033565px;}
.y6c_c01075{bottom:986.036790px;}
.y8_c01075{bottom:986.037705px;}
.y39_c01075{bottom:1005.114030px;}
.y7_c01075{bottom:1005.118170px;}
.y6b_c01075{bottom:1005.477930px;}
.y38_c01075{bottom:1024.194465px;}
.y6a_c01075{bottom:1024.197480px;}
.y6_c01075{bottom:1024.198605px;}
.y37_c01075{bottom:1043.635620px;}
.y5_c01075{bottom:1043.639760px;}
.y69_c01075{bottom:1043.997000px;}
.y36_c01075{bottom:1062.716055px;}
.y4_c01075{bottom:1062.720195px;}
.y68_c01075{bottom:1063.077435px;}
.y35_c01075{bottom:1081.796520px;}
.y67_c01075{bottom:1082.157900px;}
.y3_c01075{bottom:1082.158815px;}
.y34_c01075{bottom:1101.235125px;}
.y66_c01075{bottom:1101.238335px;}
.y2_c01075{bottom:1101.239280px;}
.y1_c01075{bottom:1139.759490px;}
.hb_c01075{height:46.933594px;}
.h2_c01075{height:47.715820px;}
.hd_c01075{height:48.178711px;}
.h7_c01075{height:49.661133px;}
.h1_c01075{height:50.402344px;}
.h3_c01075{height:51.143555px;}
.h9_c01075{height:52.625977px;}
.ha_c01075{height:54.849609px;}
.h5_c01075{height:55.178833px;}
.hc_c01075{height:63.002930px;}
.he_c01075{height:65.967773px;}
.h6_c01075{height:67.450195px;}
.h8_c01075{height:69.673828px;}
.h4_c01075{height:71.897461px;}
.h0_c01075{height:1263.000000px;}
.w0_c01075{width:892.500000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:142.199850px;}
.x3_c01075{left:207.719025px;}
.x2_c01075{left:208.798350px;}
.x4_c01075{left:246.599100px;}
.xb_c01075{left:277.199205px;}
.x6_c01075{left:278.274735px;}
.x5_c01075{left:279.359115px;}
.x9_c01075{left:303.838950px;}
.x7_c01075{left:317.159385px;}
.x8_c01075{left:323.639100px;}
.xc_c01075{left:330.479685px;}
.xa_c01075{left:349.559685px;}
.xf_c01075{left:539.281725px;}
.x14_c01075{left:544.318935px;}
.xd_c01075{left:545.399205px;}
.xe_c01075{left:552.241380px;}
.x10_c01075{left:564.841650px;}
.x12_c01075{left:577.078770px;}
.x15_c01075{left:596.519670px;}
.x13_c01075{left:609.479235px;}
.x11_c01075{left:615.958920px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls12_c01075{letter-spacing:-3.073147pt;}
.ls8_c01075{letter-spacing:-3.029500pt;}
.ls7_c01075{letter-spacing:-2.302933pt;}
.ls6_c01075{letter-spacing:-2.262740pt;}
.ls10_c01075{letter-spacing:-1.593467pt;}
.ls5_c01075{letter-spacing:-1.537253pt;}
.lsd_c01075{letter-spacing:-1.528867pt;}
.ls14_c01075{letter-spacing:-1.442567pt;}
.ls4_c01075{letter-spacing:-0.770667pt;}
.lsa_c01075{letter-spacing:-0.719133pt;}
.ls3_c01075{letter-spacing:0.000000pt;}
.ls2_c01075{letter-spacing:0.770667pt;}
.ls11_c01075{letter-spacing:0.823400pt;}
.lsf_c01075{letter-spacing:1.104133pt;}
.lse_c01075{letter-spacing:1.147207pt;}
.ls0_c01075{letter-spacing:1.537253pt;}
.lsc_c01075{letter-spacing:4.083473pt;}
.lsb_c01075{letter-spacing:4.218093pt;}
.ls1_c01075{letter-spacing:4.610400pt;}
.ls9_c01075{letter-spacing:4.665267pt;}
.ls15_c01075{letter-spacing:6.913333pt;}
.ls13_c01075{letter-spacing:35.832000pt;}
.ws0_c01075{word-spacing:0.000000pt;}
._10_c01075{margin-left:-28.954262pt;}
._11_c01075{margin-left:-24.924021pt;}
._14_c01075{margin-left:-9.891564pt;}
._12_c01075{margin-left:-8.386636pt;}
._13_c01075{margin-left:-6.917774pt;}
._d_c01075{margin-left:-5.993343pt;}
._c_c01075{margin-left:-4.533456pt;}
._e_c01075{margin-left:-3.600965pt;}
._1_c01075{margin-left:-2.493610pt;}
._f_c01075{margin-left:-1.568533pt;}
._b_c01075{width:1.006554pt;}
._15_c01075{width:2.071472pt;}
._5_c01075{width:3.703626pt;}
._a_c01075{width:17.426072pt;}
._9_c01075{width:18.904031pt;}
._8_c01075{width:20.354697pt;}
._3_c01075{width:21.850667pt;}
._4_c01075{width:23.324261pt;}
._7_c01075{width:24.230344pt;}
._0_c01075{width:25.173923pt;}
._6_c01075{width:26.590543pt;}
._2_c01075{width:580.343810pt;}
.fsa_c01075{font-size:40.000000pt;}
.fs1_c01075{font-size:40.666667pt;}
.fsc_c01075{font-size:43.333333pt;}
.fs6_c01075{font-size:44.666667pt;}
.fs0_c01075{font-size:45.333333pt;}
.fs2_c01075{font-size:46.000000pt;}
.fs8_c01075{font-size:47.333333pt;}
.fs9_c01075{font-size:49.333333pt;}
.fs4_c01075{font-size:50.000000pt;}
.fsb_c01075{font-size:56.666667pt;}
.fsd_c01075{font-size:59.333333pt;}
.fs5_c01075{font-size:60.666667pt;}
.fs7_c01075{font-size:62.666667pt;}
.fs3_c01075{font-size:64.666667pt;}
.y0_c01075{bottom:0.000000pt;}
.y95_c01075{bottom:159.357253pt;}
.y65_c01075{bottom:159.679093pt;}
.y33_c01075{bottom:159.995813pt;}
.y94_c01075{bottom:176.317667pt;}
.y64_c01075{bottom:176.639480pt;}
.y32_c01075{bottom:176.956213pt;}
.y93_c01075{bottom:193.598680pt;}
.y31_c01075{bottom:193.916600pt;}
.y63_c01075{bottom:193.918253pt;}
.y92_c01075{bottom:210.877440pt;}
.y62_c01075{bottom:210.878667pt;}
.y30_c01075{bottom:211.197627pt;}
.y2f_c01075{bottom:227.517653pt;}
.y91_c01075{bottom:227.518267pt;}
.y61_c01075{bottom:227.519467pt;}
.y90_c01075{bottom:244.478653pt;}
.y2e_c01075{bottom:244.796427pt;}
.y60_c01075{bottom:244.798240pt;}
.y2d_c01075{bottom:261.437240pt;}
.y5f_c01075{bottom:261.439067pt;}
.y2c_c01075{bottom:278.397640pt;}
.y5e_c01075{bottom:278.399453pt;}
.y2b_c01075{bottom:295.358027pt;}
.y8f_c01075{bottom:295.358707pt;}
.y5d_c01075{bottom:295.359333pt;}
.y2a_c01075{bottom:312.639053pt;}
.y5c_c01075{bottom:312.639707pt;}
.y8e_c01075{bottom:312.639733pt;}
.y5b_c01075{bottom:329.279320pt;}
.y29_c01075{bottom:329.599440pt;}
.y8d_c01075{bottom:329.600120pt;}
.y8c_c01075{bottom:329.601213pt;}
.y28_c01075{bottom:346.878213pt;}
.y5a_c01075{bottom:346.879307pt;}
.y59_c01075{bottom:346.879520pt;}
.y8b_c01075{bottom:346.879987pt;}
.y27_c01075{bottom:363.838627pt;}
.y58_c01075{bottom:364.160547pt;}
.y8a_c01075{bottom:364.160987pt;}
.y26_c01075{bottom:381.438173pt;}
.y57_c01075{bottom:381.439307pt;}
.y89_c01075{bottom:381.439760pt;}
.y25_c01075{bottom:398.079000pt;}
.y56_c01075{bottom:398.080120pt;}
.y88_c01075{bottom:398.080587pt;}
.y55_c01075{bottom:415.359333pt;}
.y24_c01075{bottom:415.678547pt;}
.y87_c01075{bottom:415.680133pt;}
.y23_c01075{bottom:432.318160pt;}
.y86_c01075{bottom:432.318173pt;}
.y54_c01075{bottom:432.319333pt;}
.y53_c01075{bottom:449.598960pt;}
.y22_c01075{bottom:449.599187pt;}
.y52_c01075{bottom:466.238560pt;}
.y21_c01075{bottom:466.238787pt;}
.y85_c01075{bottom:466.559587pt;}
.y51_c01075{bottom:483.198973pt;}
.y20_c01075{bottom:483.199173pt;}
.y84_c01075{bottom:483.519973pt;}
.y1e_c01075{bottom:500.476093pt;}
.y1f_c01075{bottom:500.479987pt;}
.y1d_c01075{bottom:517.436507pt;}
.y50_c01075{bottom:517.439480pt;}
.y83_c01075{bottom:517.756413pt;}
.y1c_c01075{bottom:534.396893pt;}
.y4f_c01075{bottom:534.399867pt;}
.y82_c01075{bottom:534.716813pt;}
.y1b_c01075{bottom:551.996453pt;}
.y81_c01075{bottom:551.997827pt;}
.y4d_c01075{bottom:551.998880pt;}
.y4e_c01075{bottom:552.000000pt;}
.y1a_c01075{bottom:568.636067pt;}
.y4c_c01075{bottom:568.638493pt;}
.y80_c01075{bottom:568.958227pt;}
.y19_c01075{bottom:585.276880pt;}
.y4b_c01075{bottom:585.279320pt;}
.y7f_c01075{bottom:585.597840pt;}
.y18_c01075{bottom:602.237280pt;}
.y4a_c01075{bottom:602.239707pt;}
.y7e_c01075{bottom:602.558227pt;}
.y17_c01075{bottom:619.516053pt;}
.y49_c01075{bottom:619.518880pt;}
.y7d_c01075{bottom:619.839253pt;}
.y48_c01075{bottom:635.838907pt;}
.y16_c01075{bottom:636.476440pt;}
.y7c_c01075{bottom:636.478867pt;}
.y15_c01075{bottom:653.436853pt;}
.y47_c01075{bottom:653.438920pt;}
.y7b_c01075{bottom:653.759867pt;}
.y14_c01075{bottom:670.717853pt;}
.y46_c01075{bottom:670.719720pt;}
.y7a_c01075{bottom:670.720280pt;}
.y13_c01075{bottom:687.996627pt;}
.y45_c01075{bottom:687.998520pt;}
.y79_c01075{bottom:688.319827pt;}
.y78_c01075{bottom:688.320173pt;}
.y12_c01075{bottom:704.957027pt;}
.y44_c01075{bottom:704.958920pt;}
.y77_c01075{bottom:705.280560pt;}
.y11_c01075{bottom:722.556573pt;}
.y43_c01075{bottom:722.558467pt;}
.y76_c01075{bottom:722.559320pt;}
.y10_c01075{bottom:739.516987pt;}
.y42_c01075{bottom:739.518880pt;}
.y75_c01075{bottom:739.519733pt;}
.yf_c01075{bottom:756.798000pt;}
.y41_c01075{bottom:756.799880pt;}
.y74_c01075{bottom:757.119280pt;}
.y40_c01075{bottom:773.759680pt;}
.y73_c01075{bottom:773.760107pt;}
.ye_c01075{bottom:774.076760pt;}
.y72_c01075{bottom:791.038880pt;}
.y3f_c01075{bottom:791.354107pt;}
.yd_c01075{bottom:791.357787pt;}
.y71_c01075{bottom:807.679693pt;}
.y3e_c01075{bottom:807.993720pt;}
.yc_c01075{bottom:807.997400pt;}
.y70_c01075{bottom:824.639573pt;}
.y3d_c01075{bottom:824.954107pt;}
.yb_c01075{bottom:824.957787pt;}
.y3c_c01075{bottom:842.235133pt;}
.y6e_c01075{bottom:842.237973pt;}
.ya_c01075{bottom:842.238813pt;}
.y6f_c01075{bottom:842.239747pt;}
.y3b_c01075{bottom:859.513893pt;}
.y6d_c01075{bottom:859.516747pt;}
.y9_c01075{bottom:859.517573pt;}
.y3a_c01075{bottom:876.474280pt;}
.y6c_c01075{bottom:876.477147pt;}
.y8_c01075{bottom:876.477960pt;}
.y39_c01075{bottom:893.434693pt;}
.y7_c01075{bottom:893.438373pt;}
.y6b_c01075{bottom:893.758160pt;}
.y38_c01075{bottom:910.395080pt;}
.y6a_c01075{bottom:910.397760pt;}
.y6_c01075{bottom:910.398760pt;}
.y37_c01075{bottom:927.676107pt;}
.y5_c01075{bottom:927.679787pt;}
.y69_c01075{bottom:927.997333pt;}
.y36_c01075{bottom:944.636493pt;}
.y4_c01075{bottom:944.640173pt;}
.y68_c01075{bottom:944.957720pt;}
.y35_c01075{bottom:961.596907pt;}
.y67_c01075{bottom:961.918133pt;}
.y3_c01075{bottom:961.918947pt;}
.y34_c01075{bottom:978.875667pt;}
.y66_c01075{bottom:978.878520pt;}
.y2_c01075{bottom:978.879360pt;}
.y1_c01075{bottom:1013.119547pt;}
.hb_c01075{height:41.718750pt;}
.h2_c01075{height:42.414062pt;}
.hd_c01075{height:42.825521pt;}
.h7_c01075{height:44.143229pt;}
.h1_c01075{height:44.802083pt;}
.h3_c01075{height:45.460938pt;}
.h9_c01075{height:46.778646pt;}
.ha_c01075{height:48.755208pt;}
.h5_c01075{height:49.047852pt;}
.hc_c01075{height:56.002604pt;}
.he_c01075{height:58.638021pt;}
.h6_c01075{height:59.955729pt;}
.h8_c01075{height:61.932292pt;}
.h4_c01075{height:63.908854pt;}
.h0_c01075{height:1122.666667pt;}
.w0_c01075{width:793.333333pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:126.399867pt;}
.x3_c01075{left:184.639133pt;}
.x2_c01075{left:185.598533pt;}
.x4_c01075{left:219.199200pt;}
.xb_c01075{left:246.399293pt;}
.x6_c01075{left:247.355320pt;}
.x5_c01075{left:248.319213pt;}
.x9_c01075{left:270.079067pt;}
.x7_c01075{left:281.919453pt;}
.x8_c01075{left:287.679200pt;}
.xc_c01075{left:293.759720pt;}
.xa_c01075{left:310.719720pt;}
.xf_c01075{left:479.361533pt;}
.x14_c01075{left:483.839053pt;}
.xd_c01075{left:484.799293pt;}
.xe_c01075{left:490.881227pt;}
.x10_c01075{left:502.081467pt;}
.x12_c01075{left:512.958907pt;}
.x15_c01075{left:530.239707pt;}
.x13_c01075{left:541.759320pt;}
.x11_c01075{left:547.519040pt;}
}





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

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_550df08107ebd735c90acccd.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_89eff885e58781110797e61d.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_ac48318eda9a7ddc71be0e8b.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01076;src:url('chunks/assets/font_91a6ba46d1d8ce29d87fd217.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01076;src:url('chunks/assets/font_6c2855af82c105a3fb80f95a.woff2')format("woff");}.ff5_c01076{font-family:ff5_c01076;line-height:1.311035;font-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_c01076{transform:matrix(0.099359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099359,0.000000,0.000000,0.250000,0,0);}
.m1a_c01076{transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145604,0.000000,0.000000,0.250000,0,0);}
.mb_c01076{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m18_c01076{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m8_c01076{transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182099,0.000000,0.000000,0.250000,0,0);}
.m13_c01076{transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195312,0.000000,0.000000,0.250000,0,0);}
.m9_c01076{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m15_c01076{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m17_c01076{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m6_c01076{transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208904,0.000000,0.000000,0.250000,0,0);}
.m5_c01076{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m3_c01076{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m0_c01076{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.me_c01076{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.ma_c01076{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m7_c01076{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m1_c01076{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m16_c01076{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_c01076{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mf_c01076{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m12_c01076{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m4_c01076{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m11_c01076{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m14_c01076{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.mc_c01076{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.md_c01076{transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293956,0.000000,0.000000,0.250000,0,0);}
.m2_c01076{transform:matrix(0.294355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294355,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls19_c01076{letter-spacing:-22.645350px;}
.ls14_c01076{letter-spacing:-6.915600px;}
.ls20_c01076{letter-spacing:-4.998000px;}
.lsb_c01076{letter-spacing:-4.384950px;}
.ls11_c01076{letter-spacing:-4.267950px;}
.ls9_c01076{letter-spacing:-4.243500px;}
.ls1c_c01076{letter-spacing:-4.085018px;}
.lsd_c01076{letter-spacing:-3.457290px;}
.ls22_c01076{letter-spacing:-3.317423px;}
.lsa_c01076{letter-spacing:-3.185250px;}
.ls12_c01076{letter-spacing:-2.590800px;}
.lse_c01076{letter-spacing:-1.796348px;}
.ls18_c01076{letter-spacing:-1.647300px;}
.lsf_c01076{letter-spacing:-0.888743px;}
.ls8_c01076{letter-spacing:-0.867000px;}
.ls7_c01076{letter-spacing:0.000000px;}
.ls13_c01076{letter-spacing:0.867000px;}
.ls10_c01076{letter-spacing:1.032750px;}
.ls23_c01076{letter-spacing:1.290608px;}
.ls2_c01076{letter-spacing:1.729410px;}
.ls1f_c01076{letter-spacing:1.869075px;}
.ls5_c01076{letter-spacing:2.590800px;}
.ls1a_c01076{letter-spacing:3.187958px;}
.ls21_c01076{letter-spacing:3.457290px;}
.ls17_c01076{letter-spacing:3.937343px;}
.ls1b_c01076{letter-spacing:4.067145px;}
.ls16_c01076{letter-spacing:4.463550px;}
.ls15_c01076{letter-spacing:5.248425px;}
.ls1e_c01076{letter-spacing:5.350800px;}
.ls0_c01076{letter-spacing:6.915600px;}
.ls1d_c01076{letter-spacing:7.777500px;}
.ls4_c01076{letter-spacing:12.102300px;}
.ls3_c01076{letter-spacing:12.964200px;}
.lsc_c01076{letter-spacing:16.118460px;}
.ls6_c01076{letter-spacing:19.017390px;}
.ls1_c01076{letter-spacing:44.950890px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:0.000000px;}
._b_c01076{margin-left:-170.301594px;}
._a_c01076{margin-left:-91.009656px;}
._e_c01076{margin-left:-34.945200px;}
._16_c01076{margin-left:-33.392803px;}
._15_c01076{margin-left:-30.160899px;}
._12_c01076{margin-left:-24.887793px;}
._13_c01076{margin-left:-23.230344px;}
._9_c01076{margin-left:-7.782565px;}
._18_c01076{margin-left:-6.731931px;}
._f_c01076{margin-left:-5.708672px;}
._1_c01076{margin-left:-4.376042px;}
._d_c01076{margin-left:-2.703104px;}
._11_c01076{margin-left:-1.355874px;}
._10_c01076{width:1.113901px;}
._2_c01076{width:2.371552px;}
._14_c01076{width:4.442083px;}
._17_c01076{width:6.109696px;}
._5_c01076{width:19.604331px;}
._6_c01076{width:21.261917px;}
._8_c01076{width:22.924206px;}
._4_c01076{width:24.581654px;}
._7_c01076{width:25.602380px;}
._0_c01076{width:26.673035px;}
._c_c01076{width:158.293696px;}
._3_c01076{width:654.528883px;}
.fc0_c01076{color:transparent;}
.fs1_c01076{font-size:45.000000px;}
.fsc_c01076{font-size:45.750000px;}
.fs2_c01076{font-size:46.500000px;}
.fsf_c01076{font-size:47.250000px;}
.fsd_c01076{font-size:48.000000px;}
.fs0_c01076{font-size:51.000000px;}
.fse_c01076{font-size:52.500000px;}
.fs4_c01076{font-size:53.250000px;}
.fs3_c01076{font-size:54.000000px;}
.fs5_c01076{font-size:54.750000px;}
.fs8_c01076{font-size:55.500000px;}
.fs7_c01076{font-size:58.500000px;}
.fs6_c01076{font-size:60.750000px;}
.fs9_c01076{font-size:68.250000px;}
.fsb_c01076{font-size:70.500000px;}
.fsa_c01076{font-size:87.750000px;}
.y0_c01076{bottom:0.000000px;}
.y33_c01076{bottom:186.655950px;}
.y65_c01076{bottom:186.838140px;}
.y97_c01076{bottom:186.838695px;}
.y98_c01076{bottom:186.839565px;}
.y32_c01076{bottom:205.916160px;}
.y64_c01076{bottom:205.918575px;}
.y96_c01076{bottom:206.279850px;}
.y31_c01076{bottom:224.996610px;}
.y63_c01076{bottom:224.999040px;}
.y94_c01076{bottom:225.354945px;}
.y95_c01076{bottom:225.360285px;}
.y30_c01076{bottom:244.437750px;}
.y62_c01076{bottom:244.440165px;}
.y93_c01076{bottom:244.793565px;}
.y2f_c01076{bottom:263.338440px;}
.y61_c01076{bottom:263.520630px;}
.y92_c01076{bottom:263.874000px;}
.y2e_c01076{bottom:282.956820px;}
.y66_c01076{bottom:282.957870px;}
.y60_c01076{bottom:282.959250px;}
.y91_c01076{bottom:283.315155px;}
.y2d_c01076{bottom:301.677720px;}
.y5f_c01076{bottom:301.680150px;}
.y90_c01076{bottom:302.034720px;}
.y2c_c01076{bottom:320.578425px;}
.y5e_c01076{bottom:320.758845px;}
.y8f_c01076{bottom:321.115155px;}
.y2b_c01076{bottom:339.477750px;}
.y5d_c01076{bottom:339.478410px;}
.y8e_c01076{bottom:339.836085px;}
.y2a_c01076{bottom:358.739115px;}
.y8d_c01076{bottom:358.916520px;}
.y5c_c01076{bottom:358.919565px;}
.y29_c01076{bottom:377.999340px;}
.y5b_c01076{bottom:378.000000px;}
.y8c_c01076{bottom:378.355140px;}
.y5a_c01076{bottom:397.080000px;}
.y28_c01076{bottom:397.437945px;}
.y8b_c01076{bottom:397.796295px;}
.y27_c01076{bottom:416.518380px;}
.y59_c01076{bottom:416.879535px;}
.y8a_c01076{bottom:417.234900px;}
.y26_c01076{bottom:435.959535px;}
.y58_c01076{bottom:435.959970px;}
.y89_c01076{bottom:436.676040px;}
.y25_c01076{bottom:455.039985px;}
.y88_c01076{bottom:455.756490px;}
.y24_c01076{bottom:474.840135px;}
.y87_c01076{bottom:475.555980px;}
.y23_c01076{bottom:493.559100px;}
.y57_c01076{bottom:493.920000px;}
.y86_c01076{bottom:494.275545px;}
.y56_c01076{bottom:512.999565px;}
.y22_c01076{bottom:513.179670px;}
.y85_c01076{bottom:513.716700px;}
.y20_c01076{bottom:531.897165px;}
.y21_c01076{bottom:531.900285px;}
.y55_c01076{bottom:532.080000px;}
.y84_c01076{bottom:532.436250px;}
.y1f_c01076{bottom:551.515545px;}
.y54_c01076{bottom:551.519070px;}
.y83_c01076{bottom:551.877390px;}
.y1e_c01076{bottom:570.596010px;}
.y53_c01076{bottom:570.599070px;}
.y82_c01076{bottom:570.957855px;}
.y1d_c01076{bottom:589.677615px;}
.y52_c01076{bottom:589.680720px;}
.y51_c01076{bottom:589.681365px;}
.y81_c01076{bottom:590.396460px;}
.y1c_c01076{bottom:608.937840px;}
.y50_c01076{bottom:609.119985px;}
.y80_c01076{bottom:609.476895px;}
.y1b_c01076{bottom:628.196685px;}
.y4e_c01076{bottom:628.199415px;}
.y4f_c01076{bottom:628.199850px;}
.y7f_c01076{bottom:628.557360px;}
.y1a_c01076{bottom:646.917600px;}
.y4d_c01076{bottom:647.279850px;}
.y7e_c01076{bottom:647.637795px;}
.y19_c01076{bottom:665.998050px;}
.y4c_c01076{bottom:665.999970px;}
.y7d_c01076{bottom:666.719415px;}
.y18_c01076{bottom:685.078485px;}
.y4b_c01076{bottom:685.080420px;}
.y7c_c01076{bottom:685.438980px;}
.y17_c01076{bottom:704.517105px;}
.y4a_c01076{bottom:704.519670px;}
.y7b_c01076{bottom:704.880105px;}
.y49_c01076{bottom:723.240960px;}
.y16_c01076{bottom:723.417795px;}
.y7a_c01076{bottom:723.599670px;}
.y15_c01076{bottom:743.038695px;}
.y48_c01076{bottom:743.040465px;}
.y79_c01076{bottom:743.040570px;}
.y14_c01076{bottom:762.119160px;}
.y47_c01076{bottom:762.120915px;}
.y78_c01076{bottom:762.479460px;}
.y46_c01076{bottom:781.559535px;}
.y13_c01076{bottom:781.918650px;}
.y77_c01076{bottom:781.920600px;}
.y12_c01076{bottom:800.638200px;}
.y45_c01076{bottom:800.639970px;}
.y76_c01076{bottom:801.001530px;}
.y44_c01076{bottom:820.439490px;}
.y11_c01076{bottom:820.799760px;}
.y75_c01076{bottom:820.801050px;}
.y10_c01076{bottom:839.880225px;}
.y43_c01076{bottom:839.880615px;}
.y74_c01076{bottom:840.239655px;}
.yf_c01076{bottom:859.318845px;}
.y42_c01076{bottom:859.319715px;}
.y73_c01076{bottom:859.320105px;}
.ye_c01076{bottom:878.039745px;}
.y41_c01076{bottom:878.040615px;}
.y72_c01076{bottom:878.400555px;}
.yd_c01076{bottom:897.120210px;}
.y40_c01076{bottom:897.120390px;}
.y71_c01076{bottom:897.480990px;}
.y3f_c01076{bottom:915.839535px;}
.yc_c01076{bottom:916.200645px;}
.y70_c01076{bottom:916.201920px;}
.y3e_c01076{bottom:935.280390px;}
.yb_c01076{bottom:935.460870px;}
.y6f_c01076{bottom:935.640540px;}
.y3d_c01076{bottom:953.999355px;}
.y6e_c01076{bottom:954.361455px;}
.ya_c01076{bottom:954.361545px;}
.y3c_c01076{bottom:973.440315px;}
.y6d_c01076{bottom:973.800060px;}
.y9_c01076{bottom:973.800150px;}
.y3b_c01076{bottom:992.520270px;}
.y6c_c01076{bottom:992.520990px;}
.y8_c01076{bottom:992.700855px;}
.y3a_c01076{bottom:1011.959385px;}
.y7_c01076{bottom:1012.139460px;}
.y6b_c01076{bottom:1012.320495px;}
.y39_c01076{bottom:1031.400240px;}
.y6_c01076{bottom:1031.400840px;}
.y6a_c01076{bottom:1031.400945px;}
.y5_c01076{bottom:1051.200345px;}
.y38_c01076{bottom:1051.200435px;}
.y37_c01076{bottom:1070.280390px;}
.y4_c01076{bottom:1070.638965px;}
.y69_c01076{bottom:1076.760135px;}
.y35_c01076{bottom:1089.715515px;}
.y68_c01076{bottom:1089.717930px;}
.y3_c01076{bottom:1089.719400px;}
.y36_c01076{bottom:1089.719520px;}
.y67_c01076{bottom:1108.438860px;}
.y34_c01076{bottom:1108.795965px;}
.y2_c01076{bottom:1108.799865px;}
.y1_c01076{bottom:1146.959385px;}
.h3_c01076{height:45.955078px;}
.h2_c01076{height:46.933594px;}
.h11_c01076{height:47.619141px;}
.he_c01076{height:47.715820px;}
.h4_c01076{height:48.498047px;}
.hf_c01076{height:50.062500px;}
.h1_c01076{height:50.402344px;}
.h10_c01076{height:51.884766px;}
.h6_c01076{height:52.625977px;}
.h5_c01076{height:53.367188px;}
.h7_c01076{height:54.108398px;}
.ha_c01076{height:54.849609px;}
.h9_c01076{height:57.814453px;}
.h8_c01076{height:60.038086px;}
.hb_c01076{height:67.450195px;}
.hd_c01076{height:69.673828px;}
.hc_c01076{height:86.721680px;}
.h0_c01076{height:1263.000000px;}
.w0_c01076{width:892.500000px;}
.x0_c01076{left:0.000000px;}
.x1_c01076{left:139.319250px;}
.x2_c01076{left:205.919775px;}
.x3_c01076{left:243.000000px;}
.x6_c01076{left:275.398635px;}
.x4_c01076{left:276.480105px;}
.x9_c01076{left:302.398635px;}
.x7_c01076{left:314.639700px;}
.x8_c01076{left:321.478635px;}
.xa_c01076{left:328.319250px;}
.x5_c01076{left:347.758500px;}
.xb_c01076{left:406.079520px;}
.xc_c01076{left:574.559160px;}
.xf_c01076{left:575.999400px;}
.x10_c01076{left:608.038920px;}
.xd_c01076{left:613.798515px;}
.xe_c01076{left:620.279850px;}
.x12_c01076{left:627.118785px;}
.x11_c01076{left:660.239220px;}
.x13_c01076{left:672.839535px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls19_c01076{letter-spacing:-20.129200pt;}
.ls14_c01076{letter-spacing:-6.147200pt;}
.ls20_c01076{letter-spacing:-4.442667pt;}
.lsb_c01076{letter-spacing:-3.897733pt;}
.ls11_c01076{letter-spacing:-3.793733pt;}
.ls9_c01076{letter-spacing:-3.772000pt;}
.ls1c_c01076{letter-spacing:-3.631127pt;}
.lsd_c01076{letter-spacing:-3.073147pt;}
.ls22_c01076{letter-spacing:-2.948820pt;}
.lsa_c01076{letter-spacing:-2.831333pt;}
.ls12_c01076{letter-spacing:-2.302933pt;}
.lse_c01076{letter-spacing:-1.596753pt;}
.ls18_c01076{letter-spacing:-1.464267pt;}
.lsf_c01076{letter-spacing:-0.789993pt;}
.ls8_c01076{letter-spacing:-0.770667pt;}
.ls7_c01076{letter-spacing:0.000000pt;}
.ls13_c01076{letter-spacing:0.770667pt;}
.ls10_c01076{letter-spacing:0.918000pt;}
.ls23_c01076{letter-spacing:1.147207pt;}
.ls2_c01076{letter-spacing:1.537253pt;}
.ls1f_c01076{letter-spacing:1.661400pt;}
.ls5_c01076{letter-spacing:2.302933pt;}
.ls1a_c01076{letter-spacing:2.833740pt;}
.ls21_c01076{letter-spacing:3.073147pt;}
.ls17_c01076{letter-spacing:3.499860pt;}
.ls1b_c01076{letter-spacing:3.615240pt;}
.ls16_c01076{letter-spacing:3.967600pt;}
.ls15_c01076{letter-spacing:4.665267pt;}
.ls1e_c01076{letter-spacing:4.756267pt;}
.ls0_c01076{letter-spacing:6.147200pt;}
.ls1d_c01076{letter-spacing:6.913333pt;}
.ls4_c01076{letter-spacing:10.757600pt;}
.ls3_c01076{letter-spacing:11.523733pt;}
.lsc_c01076{letter-spacing:14.327520pt;}
.ls6_c01076{letter-spacing:16.904347pt;}
.ls1_c01076{letter-spacing:39.956347pt;}
.ws0_c01076{word-spacing:0.000000pt;}
._b_c01076{margin-left:-151.379195pt;}
._a_c01076{margin-left:-80.897472pt;}
._e_c01076{margin-left:-31.062400pt;}
._16_c01076{margin-left:-29.682492pt;}
._15_c01076{margin-left:-26.809688pt;}
._12_c01076{margin-left:-22.122482pt;}
._13_c01076{margin-left:-20.649195pt;}
._9_c01076{margin-left:-6.917836pt;}
._18_c01076{margin-left:-5.983939pt;}
._f_c01076{margin-left:-5.074375pt;}
._1_c01076{margin-left:-3.889815pt;}
._d_c01076{margin-left:-2.402759pt;}
._11_c01076{margin-left:-1.205221pt;}
._10_c01076{width:0.990134pt;}
._2_c01076{width:2.108046pt;}
._14_c01076{width:3.948518pt;}
._17_c01076{width:5.430841pt;}
._5_c01076{width:17.426072pt;}
._6_c01076{width:18.899482pt;}
._8_c01076{width:20.377072pt;}
._4_c01076{width:21.850359pt;}
._7_c01076{width:22.757671pt;}
._0_c01076{width:23.709364pt;}
._c_c01076{width:140.705508pt;}
._3_c01076{width:581.803451pt;}
.fs1_c01076{font-size:40.000000pt;}
.fsc_c01076{font-size:40.666667pt;}
.fs2_c01076{font-size:41.333333pt;}
.fsf_c01076{font-size:42.000000pt;}
.fsd_c01076{font-size:42.666667pt;}
.fs0_c01076{font-size:45.333333pt;}
.fse_c01076{font-size:46.666667pt;}
.fs4_c01076{font-size:47.333333pt;}
.fs3_c01076{font-size:48.000000pt;}
.fs5_c01076{font-size:48.666667pt;}
.fs8_c01076{font-size:49.333333pt;}
.fs7_c01076{font-size:52.000000pt;}
.fs6_c01076{font-size:54.000000pt;}
.fs9_c01076{font-size:60.666667pt;}
.fsb_c01076{font-size:62.666667pt;}
.fsa_c01076{font-size:78.000000pt;}
.y0_c01076{bottom:0.000000pt;}
.y33_c01076{bottom:165.916400pt;}
.y65_c01076{bottom:166.078347pt;}
.y97_c01076{bottom:166.078840pt;}
.y98_c01076{bottom:166.079613pt;}
.y32_c01076{bottom:183.036587pt;}
.y64_c01076{bottom:183.038733pt;}
.y96_c01076{bottom:183.359867pt;}
.y31_c01076{bottom:199.996987pt;}
.y63_c01076{bottom:199.999147pt;}
.y94_c01076{bottom:200.315507pt;}
.y95_c01076{bottom:200.320253pt;}
.y30_c01076{bottom:217.278000pt;}
.y62_c01076{bottom:217.280147pt;}
.y93_c01076{bottom:217.594280pt;}
.y2f_c01076{bottom:234.078613pt;}
.y61_c01076{bottom:234.240560pt;}
.y92_c01076{bottom:234.554667pt;}
.y2e_c01076{bottom:251.517173pt;}
.y66_c01076{bottom:251.518107pt;}
.y60_c01076{bottom:251.519333pt;}
.y91_c01076{bottom:251.835693pt;}
.y2d_c01076{bottom:268.157973pt;}
.y5f_c01076{bottom:268.160133pt;}
.y90_c01076{bottom:268.475307pt;}
.y2c_c01076{bottom:284.958600pt;}
.y5e_c01076{bottom:285.118973pt;}
.y8f_c01076{bottom:285.435693pt;}
.y2b_c01076{bottom:301.758000pt;}
.y5d_c01076{bottom:301.758587pt;}
.y8e_c01076{bottom:302.076520pt;}
.y2a_c01076{bottom:318.879213pt;}
.y8d_c01076{bottom:319.036907pt;}
.y5c_c01076{bottom:319.039613pt;}
.y29_c01076{bottom:335.999413pt;}
.y5b_c01076{bottom:336.000000pt;}
.y8c_c01076{bottom:336.315680pt;}
.y5a_c01076{bottom:352.960000pt;}
.y28_c01076{bottom:353.278173pt;}
.y8b_c01076{bottom:353.596707pt;}
.y27_c01076{bottom:370.238560pt;}
.y59_c01076{bottom:370.559587pt;}
.y8a_c01076{bottom:370.875467pt;}
.y26_c01076{bottom:387.519587pt;}
.y58_c01076{bottom:387.519973pt;}
.y89_c01076{bottom:388.156480pt;}
.y25_c01076{bottom:404.479987pt;}
.y88_c01076{bottom:405.116880pt;}
.y24_c01076{bottom:422.080120pt;}
.y87_c01076{bottom:422.716427pt;}
.y23_c01076{bottom:438.719200pt;}
.y57_c01076{bottom:439.040000pt;}
.y86_c01076{bottom:439.356040pt;}
.y56_c01076{bottom:455.999613pt;}
.y22_c01076{bottom:456.159707pt;}
.y85_c01076{bottom:456.637067pt;}
.y20_c01076{bottom:472.797480pt;}
.y21_c01076{bottom:472.800253pt;}
.y55_c01076{bottom:472.960000pt;}
.y84_c01076{bottom:473.276667pt;}
.y1f_c01076{bottom:490.236040pt;}
.y54_c01076{bottom:490.239173pt;}
.y83_c01076{bottom:490.557680pt;}
.y1e_c01076{bottom:507.196453pt;}
.y53_c01076{bottom:507.199173pt;}
.y82_c01076{bottom:507.518093pt;}
.y1d_c01076{bottom:524.157880pt;}
.y52_c01076{bottom:524.160640pt;}
.y51_c01076{bottom:524.161213pt;}
.y81_c01076{bottom:524.796853pt;}
.y1c_c01076{bottom:541.278080pt;}
.y50_c01076{bottom:541.439987pt;}
.y80_c01076{bottom:541.757240pt;}
.y1b_c01076{bottom:558.397053pt;}
.y4e_c01076{bottom:558.399480pt;}
.y4f_c01076{bottom:558.399867pt;}
.y7f_c01076{bottom:558.717653pt;}
.y1a_c01076{bottom:575.037867pt;}
.y4d_c01076{bottom:575.359867pt;}
.y7e_c01076{bottom:575.678040pt;}
.y19_c01076{bottom:591.998267pt;}
.y4c_c01076{bottom:591.999973pt;}
.y7d_c01076{bottom:592.639480pt;}
.y18_c01076{bottom:608.958653pt;}
.y4b_c01076{bottom:608.960373pt;}
.y7c_c01076{bottom:609.279093pt;}
.y17_c01076{bottom:626.237427pt;}
.y4a_c01076{bottom:626.239707pt;}
.y7b_c01076{bottom:626.560093pt;}
.y49_c01076{bottom:642.880853pt;}
.y16_c01076{bottom:643.038040pt;}
.y7a_c01076{bottom:643.199707pt;}
.y15_c01076{bottom:660.478840pt;}
.y48_c01076{bottom:660.480413pt;}
.y79_c01076{bottom:660.480507pt;}
.y14_c01076{bottom:677.439253pt;}
.y47_c01076{bottom:677.440813pt;}
.y78_c01076{bottom:677.759520pt;}
.y46_c01076{bottom:694.719587pt;}
.y13_c01076{bottom:695.038800pt;}
.y77_c01076{bottom:695.040533pt;}
.y12_c01076{bottom:711.678400pt;}
.y45_c01076{bottom:711.679973pt;}
.y76_c01076{bottom:712.001360pt;}
.y44_c01076{bottom:729.279547pt;}
.y11_c01076{bottom:729.599787pt;}
.y75_c01076{bottom:729.600933pt;}
.y10_c01076{bottom:746.560200pt;}
.y43_c01076{bottom:746.560547pt;}
.y74_c01076{bottom:746.879693pt;}
.yf_c01076{bottom:763.838973pt;}
.y42_c01076{bottom:763.839747pt;}
.y73_c01076{bottom:763.840093pt;}
.ye_c01076{bottom:780.479773pt;}
.y41_c01076{bottom:780.480547pt;}
.y72_c01076{bottom:780.800493pt;}
.yd_c01076{bottom:797.440187pt;}
.y40_c01076{bottom:797.440347pt;}
.y71_c01076{bottom:797.760880pt;}
.y3f_c01076{bottom:814.079587pt;}
.yc_c01076{bottom:814.400573pt;}
.y70_c01076{bottom:814.401707pt;}
.y3e_c01076{bottom:831.360347pt;}
.yb_c01076{bottom:831.520773pt;}
.y6f_c01076{bottom:831.680480pt;}
.y3d_c01076{bottom:847.999427pt;}
.y6e_c01076{bottom:848.321293pt;}
.ya_c01076{bottom:848.321373pt;}
.y3c_c01076{bottom:865.280280pt;}
.y6d_c01076{bottom:865.600053pt;}
.y9_c01076{bottom:865.600133pt;}
.y3b_c01076{bottom:882.240240pt;}
.y6c_c01076{bottom:882.240880pt;}
.y8_c01076{bottom:882.400760pt;}
.y3a_c01076{bottom:899.519453pt;}
.y7_c01076{bottom:899.679520pt;}
.y6b_c01076{bottom:899.840440pt;}
.y39_c01076{bottom:916.800213pt;}
.y6_c01076{bottom:916.800747pt;}
.y6a_c01076{bottom:916.800840pt;}
.y5_c01076{bottom:934.400307pt;}
.y38_c01076{bottom:934.400387pt;}
.y37_c01076{bottom:951.360347pt;}
.y4_c01076{bottom:951.679080pt;}
.y69_c01076{bottom:957.120120pt;}
.y35_c01076{bottom:968.636013pt;}
.y68_c01076{bottom:968.638160pt;}
.y3_c01076{bottom:968.639467pt;}
.y36_c01076{bottom:968.639573pt;}
.y67_c01076{bottom:985.278987pt;}
.y34_c01076{bottom:985.596413pt;}
.y2_c01076{bottom:985.599880pt;}
.y1_c01076{bottom:1019.519453pt;}
.h3_c01076{height:40.848958pt;}
.h2_c01076{height:41.718750pt;}
.h11_c01076{height:42.328125pt;}
.he_c01076{height:42.414062pt;}
.h4_c01076{height:43.109375pt;}
.hf_c01076{height:44.500000pt;}
.h1_c01076{height:44.802083pt;}
.h10_c01076{height:46.119792pt;}
.h6_c01076{height:46.778646pt;}
.h5_c01076{height:47.437500pt;}
.h7_c01076{height:48.096354pt;}
.ha_c01076{height:48.755208pt;}
.h9_c01076{height:51.390625pt;}
.h8_c01076{height:53.367188pt;}
.hb_c01076{height:59.955729pt;}
.hd_c01076{height:61.932292pt;}
.hc_c01076{height:77.085938pt;}
.h0_c01076{height:1122.666667pt;}
.w0_c01076{width:793.333333pt;}
.x0_c01076{left:0.000000pt;}
.x1_c01076{left:123.839333pt;}
.x2_c01076{left:183.039800pt;}
.x3_c01076{left:216.000000pt;}
.x6_c01076{left:244.798787pt;}
.x4_c01076{left:245.760093pt;}
.x9_c01076{left:268.798787pt;}
.x7_c01076{left:279.679733pt;}
.x8_c01076{left:285.758787pt;}
.xa_c01076{left:291.839333pt;}
.x5_c01076{left:309.118667pt;}
.xb_c01076{left:360.959573pt;}
.xc_c01076{left:510.719253pt;}
.xf_c01076{left:511.999467pt;}
.x10_c01076{left:540.479040pt;}
.xd_c01076{left:545.598680pt;}
.xe_c01076{left:551.359867pt;}
.x12_c01076{left:557.438920pt;}
.x11_c01076{left:586.879307pt;}
.x13_c01076{left:598.079587pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_de83c06894580213b0e9cd87.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_070e958b881f001b6b73961f.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01077;src:url('chunks/assets/font_ac48318eda9a7ddc71be0e8b.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01077;src:url('chunks/assets/font_ae54dcb36560addc45bbbe5c.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01077;src:url('chunks/assets/font_9ae83df3546ef02977e220b2.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:1.432129;font-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_c01077{transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158451,0.000000,0.000000,0.250000,0,0);}
.m10_c01077{transform:matrix(0.162338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162338,0.000000,0.000000,0.250000,0,0);}
.m14_c01077{transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165441,0.000000,0.000000,0.250000,0,0);}
.m13_c01077{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m18_c01077{transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184615,0.000000,0.000000,0.250000,0,0);}
.m9_c01077{transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186667,0.000000,0.000000,0.250000,0,0);}
.mf_c01077{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m2_c01077{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m6_c01077{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m8_c01077{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m4_c01077{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m15_c01077{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m7_c01077{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m3_c01077{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.mb_c01077{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);}
.m16_c01077{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.ma_c01077{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m0_c01077{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.mc_c01077{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m5_c01077{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m12_c01077{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.me_c01077{transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);}
.md_c01077{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m11_c01077{transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.lsd_c01077{letter-spacing:-4.410450px;}
.lsc_c01077{letter-spacing:-4.329450px;}
.lse_c01077{letter-spacing:-4.112978px;}
.ls9_c01077{letter-spacing:-4.090500px;}
.ls13_c01077{letter-spacing:-2.822880px;}
.ls14_c01077{letter-spacing:-2.590800px;}
.ls7_c01077{letter-spacing:-1.797660px;}
.lsa_c01077{letter-spacing:-1.729410px;}
.ls5_c01077{letter-spacing:-0.867000px;}
.ls12_c01077{letter-spacing:-0.628898px;}
.ls4_c01077{letter-spacing:0.000000px;}
.ls8_c01077{letter-spacing:0.926325px;}
.ls6_c01077{letter-spacing:0.980025px;}
.lsb_c01077{letter-spacing:1.006875px;}
.ls0_c01077{letter-spacing:1.729410px;}
.ls2_c01077{letter-spacing:5.186700px;}
.lsf_c01077{letter-spacing:5.527200px;}
.ls10_c01077{letter-spacing:6.288810px;}
.ls3_c01077{letter-spacing:6.915600px;}
.ls1_c01077{letter-spacing:19.879800px;}
.ls11_c01077{letter-spacing:28.524300px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:0.000000px;}
._f_c01077{margin-left:-92.100744px;}
._15_c01077{margin-left:-17.018648px;}
._16_c01077{margin-left:-13.183033px;}
._6_c01077{margin-left:-9.434965px;}
._12_c01077{margin-left:-7.616072px;}
._1_c01077{margin-left:-6.012883px;}
._e_c01077{margin-left:-4.774015px;}
._a_c01077{margin-left:-3.426923px;}
._b_c01077{margin-left:-1.234200px;}
._14_c01077{width:1.051049px;}
._10_c01077{width:2.223393px;}
._13_c01077{width:12.020786px;}
._3_c01077{width:15.940067px;}
._7_c01077{width:19.604400px;}
._9_c01077{width:21.266965px;}
._d_c01077{width:22.898965px;}
._4_c01077{width:25.596917px;}
._0_c01077{width:26.652980px;}
._5_c01077{width:28.626525px;}
._11_c01077{width:29.908967px;}
._c_c01077{width:32.089477px;}
._8_c01077{width:33.752042px;}
._2_c01077{width:650.892358px;}
.fc0_c01077{color:transparent;}
.fs7_c01077{font-size:42.750000px;}
.fsc_c01077{font-size:43.500000px;}
.fs5_c01077{font-size:45.000000px;}
.fsa_c01077{font-size:47.250000px;}
.fsb_c01077{font-size:48.000000px;}
.fsd_c01077{font-size:48.750000px;}
.fs0_c01077{font-size:51.000000px;}
.fs4_c01077{font-size:51.750000px;}
.fs1_c01077{font-size:53.250000px;}
.fs3_c01077{font-size:54.000000px;}
.fs2_c01077{font-size:54.750000px;}
.fs6_c01077{font-size:56.250000px;}
.fs9_c01077{font-size:57.750000px;}
.fs8_c01077{font-size:70.500000px;}
.y0_c01077{bottom:0.000000px;}
.y2d_c01077{bottom:570.237900px;}
.y2e_c01077{bottom:570.239820px;}
.y47_c01077{bottom:570.599070px;}
.y2c_c01077{bottom:589.318365px;}
.y46_c01077{bottom:589.676715px;}
.y2b_c01077{bottom:608.398800px;}
.y45_c01077{bottom:609.117870px;}
.y2a_c01077{bottom:627.479250px;}
.y44_c01077{bottom:628.198305px;}
.y28_c01077{bottom:646.558185px;}
.y29_c01077{bottom:646.559685px;}
.y43_c01077{bottom:647.278770px;}
.y27_c01077{bottom:665.638620px;}
.y42_c01077{bottom:665.998335px;}
.y26_c01077{bottom:684.719085px;}
.y41_c01077{bottom:685.078770px;}
.y25_c01077{bottom:703.799520px;}
.y24_c01077{bottom:703.799925px;}
.y40_c01077{bottom:704.519670px;}
.y23_c01077{bottom:723.238545px;}
.y3f_c01077{bottom:723.599670px;}
.y22_c01077{bottom:742.679670px;}
.y21_c01077{bottom:742.680180px;}
.y3e_c01077{bottom:743.038920px;}
.y1f_c01077{bottom:762.118560px;}
.y20_c01077{bottom:762.118785px;}
.y3d_c01077{bottom:762.480330px;}
.y1d_c01077{bottom:781.559205px;}
.y1e_c01077{bottom:781.559685px;}
.y3c_c01077{bottom:781.918950px;}
.y1c_c01077{bottom:800.639655px;}
.y1b_c01077{bottom:800.640180px;}
.y3b_c01077{bottom:800.998905px;}
.y19_c01077{bottom:820.438770px;}
.y1a_c01077{bottom:820.439670px;}
.y3a_c01077{bottom:820.798920px;}
.y18_c01077{bottom:839.519235px;}
.y39_c01077{bottom:839.878965px;}
.y16_c01077{bottom:858.599265px;}
.y17_c01077{bottom:858.599670px;}
.y38_c01077{bottom:858.958920px;}
.y14_c01077{bottom:877.318365px;}
.y15_c01077{bottom:877.318815px;}
.y37_c01077{bottom:877.679055px;}
.y13_c01077{bottom:896.759490px;}
.y12_c01077{bottom:896.759700px;}
.y11_c01077{bottom:915.479250px;}
.y36_c01077{bottom:915.839535px;}
.y35_c01077{bottom:915.840135px;}
.yf_c01077{bottom:935.277975px;}
.y10_c01077{bottom:935.278755px;}
.ye_c01077{bottom:954.358425px;}
.y34_c01077{bottom:954.719520px;}
.yc_c01077{bottom:973.799085px;}
.yd_c01077{bottom:973.799565px;}
.ya_c01077{bottom:992.878950px;}
.yb_c01077{bottom:992.879520px;}
.y8_c01077{bottom:1011.958905px;}
.y9_c01077{bottom:1011.959385px;}
.y33_c01077{bottom:1012.318815px;}
.y7_c01077{bottom:1031.039340px;}
.y6_c01077{bottom:1031.040420px;}
.y32_c01077{bottom:1031.398590px;}
.y31_c01077{bottom:1050.478635px;}
.y5_c01077{bottom:1050.479025px;}
.y4_c01077{bottom:1069.199940px;}
.y30_c01077{bottom:1075.679070px;}
.y3_c01077{bottom:1088.638545px;}
.y2f_c01077{bottom:1107.359250px;}
.y2_c01077{bottom:1107.719010px;}
.y1_c01077{bottom:1146.239220px;}
.h8_c01077{height:44.586914px;}
.hd_c01077{height:45.369141px;}
.h6_c01077{height:46.933594px;}
.hb_c01077{height:47.619141px;}
.he_c01077{height:48.178711px;}
.hc_c01077{height:48.375000px;}
.h1_c01077{height:50.402344px;}
.h5_c01077{height:51.143555px;}
.h2_c01077{height:52.625977px;}
.h4_c01077{height:53.367188px;}
.h3_c01077{height:54.108398px;}
.h7_c01077{height:55.590820px;}
.ha_c01077{height:60.231445px;}
.h9_c01077{height:69.673828px;}
.h0_c01077{height:1263.000000px;}
.w0_c01077{width:892.500000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:145.439715px;}
.x6_c01077{left:210.957735px;}
.x2_c01077{left:212.039385px;}
.x5_c01077{left:249.118785px;}
.x3_c01077{left:250.199850px;}
.x9_c01077{left:281.519100px;}
.x4_c01077{left:282.598500px;}
.xc_c01077{left:307.798950px;}
.xa_c01077{left:333.719535px;}
.x7_c01077{left:346.679100px;}
.xb_c01077{left:352.438635px;}
.x8_c01077{left:365.759100px;}
.x12_c01077{left:541.438635px;}
.x13_c01077{left:547.918035px;}
.xd_c01077{left:567.718500px;}
.x11_c01077{left:579.239220px;}
.xe_c01077{left:580.318770px;}
.x10_c01077{left:619.198785px;}
.xf_c01077{left:632.159820px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.lsd_c01077{letter-spacing:-3.920400pt;}
.lsc_c01077{letter-spacing:-3.848400pt;}
.lse_c01077{letter-spacing:-3.655980pt;}
.ls9_c01077{letter-spacing:-3.636000pt;}
.ls13_c01077{letter-spacing:-2.509227pt;}
.ls14_c01077{letter-spacing:-2.302933pt;}
.ls7_c01077{letter-spacing:-1.597920pt;}
.lsa_c01077{letter-spacing:-1.537253pt;}
.ls5_c01077{letter-spacing:-0.770667pt;}
.ls12_c01077{letter-spacing:-0.559020pt;}
.ls4_c01077{letter-spacing:0.000000pt;}
.ls8_c01077{letter-spacing:0.823400pt;}
.ls6_c01077{letter-spacing:0.871133pt;}
.lsb_c01077{letter-spacing:0.895000pt;}
.ls0_c01077{letter-spacing:1.537253pt;}
.ls2_c01077{letter-spacing:4.610400pt;}
.lsf_c01077{letter-spacing:4.913067pt;}
.ls10_c01077{letter-spacing:5.590053pt;}
.ls3_c01077{letter-spacing:6.147200pt;}
.ls1_c01077{letter-spacing:17.670933pt;}
.ls11_c01077{letter-spacing:25.354933pt;}
.ws0_c01077{word-spacing:0.000000pt;}
._f_c01077{margin-left:-81.867328pt;}
._15_c01077{margin-left:-15.127687pt;}
._16_c01077{margin-left:-11.718252pt;}
._6_c01077{margin-left:-8.386636pt;}
._12_c01077{margin-left:-6.769842pt;}
._1_c01077{margin-left:-5.344785pt;}
._e_c01077{margin-left:-4.243569pt;}
._a_c01077{margin-left:-3.046154pt;}
._b_c01077{margin-left:-1.097067pt;}
._14_c01077{width:0.934266pt;}
._10_c01077{width:1.976349pt;}
._13_c01077{width:10.685144pt;}
._3_c01077{width:14.168949pt;}
._7_c01077{width:17.426133pt;}
._9_c01077{width:18.903969pt;}
._d_c01077{width:20.354636pt;}
._4_c01077{width:22.752815pt;}
._0_c01077{width:23.691538pt;}
._5_c01077{width:25.445800pt;}
._11_c01077{width:26.585749pt;}
._c_c01077{width:28.523979pt;}
._8_c01077{width:30.001815pt;}
._2_c01077{width:578.570985pt;}
.fs7_c01077{font-size:38.000000pt;}
.fsc_c01077{font-size:38.666667pt;}
.fs5_c01077{font-size:40.000000pt;}
.fsa_c01077{font-size:42.000000pt;}
.fsb_c01077{font-size:42.666667pt;}
.fsd_c01077{font-size:43.333333pt;}
.fs0_c01077{font-size:45.333333pt;}
.fs4_c01077{font-size:46.000000pt;}
.fs1_c01077{font-size:47.333333pt;}
.fs3_c01077{font-size:48.000000pt;}
.fs2_c01077{font-size:48.666667pt;}
.fs6_c01077{font-size:50.000000pt;}
.fs9_c01077{font-size:51.333333pt;}
.fs8_c01077{font-size:62.666667pt;}
.y0_c01077{bottom:0.000000pt;}
.y2d_c01077{bottom:506.878133pt;}
.y2e_c01077{bottom:506.879840pt;}
.y47_c01077{bottom:507.199173pt;}
.y2c_c01077{bottom:523.838547pt;}
.y46_c01077{bottom:524.157080pt;}
.y2b_c01077{bottom:540.798933pt;}
.y45_c01077{bottom:541.438107pt;}
.y2a_c01077{bottom:557.759333pt;}
.y44_c01077{bottom:558.398493pt;}
.y28_c01077{bottom:574.718387pt;}
.y29_c01077{bottom:574.719720pt;}
.y43_c01077{bottom:575.358907pt;}
.y27_c01077{bottom:591.678773pt;}
.y42_c01077{bottom:591.998520pt;}
.y26_c01077{bottom:608.639187pt;}
.y41_c01077{bottom:608.958907pt;}
.y25_c01077{bottom:625.599573pt;}
.y24_c01077{bottom:625.599933pt;}
.y40_c01077{bottom:626.239707pt;}
.y23_c01077{bottom:642.878707pt;}
.y3f_c01077{bottom:643.199707pt;}
.y22_c01077{bottom:660.159707pt;}
.y21_c01077{bottom:660.160160pt;}
.y3e_c01077{bottom:660.479040pt;}
.y1f_c01077{bottom:677.438720pt;}
.y20_c01077{bottom:677.438920pt;}
.y3d_c01077{bottom:677.760293pt;}
.y1d_c01077{bottom:694.719293pt;}
.y1e_c01077{bottom:694.719720pt;}
.y3c_c01077{bottom:695.039067pt;}
.y1c_c01077{bottom:711.679693pt;}
.y1b_c01077{bottom:711.680160pt;}
.y3b_c01077{bottom:711.999027pt;}
.y19_c01077{bottom:729.278907pt;}
.y1a_c01077{bottom:729.279707pt;}
.y3a_c01077{bottom:729.599040pt;}
.y18_c01077{bottom:746.239320pt;}
.y39_c01077{bottom:746.559080pt;}
.y16_c01077{bottom:763.199347pt;}
.y17_c01077{bottom:763.199707pt;}
.y38_c01077{bottom:763.519040pt;}
.y14_c01077{bottom:779.838547pt;}
.y15_c01077{bottom:779.838947pt;}
.y37_c01077{bottom:780.159160pt;}
.y13_c01077{bottom:797.119547pt;}
.y12_c01077{bottom:797.119733pt;}
.y11_c01077{bottom:813.759333pt;}
.y36_c01077{bottom:814.079587pt;}
.y35_c01077{bottom:814.080120pt;}
.yf_c01077{bottom:831.358200pt;}
.y10_c01077{bottom:831.358893pt;}
.ye_c01077{bottom:848.318600pt;}
.y34_c01077{bottom:848.639573pt;}
.yc_c01077{bottom:865.599187pt;}
.yd_c01077{bottom:865.599613pt;}
.ya_c01077{bottom:882.559067pt;}
.yb_c01077{bottom:882.559573pt;}
.y8_c01077{bottom:899.519027pt;}
.y9_c01077{bottom:899.519453pt;}
.y33_c01077{bottom:899.838947pt;}
.y7_c01077{bottom:916.479413pt;}
.y6_c01077{bottom:916.480373pt;}
.y32_c01077{bottom:916.798747pt;}
.y31_c01077{bottom:933.758787pt;}
.y5_c01077{bottom:933.759133pt;}
.y4_c01077{bottom:950.399947pt;}
.y30_c01077{bottom:956.159173pt;}
.y3_c01077{bottom:967.678707pt;}
.y2f_c01077{bottom:984.319333pt;}
.y2_c01077{bottom:984.639120pt;}
.y1_c01077{bottom:1018.879307pt;}
.h8_c01077{height:39.632812pt;}
.hd_c01077{height:40.328125pt;}
.h6_c01077{height:41.718750pt;}
.hb_c01077{height:42.328125pt;}
.he_c01077{height:42.825521pt;}
.hc_c01077{height:43.000000pt;}
.h1_c01077{height:44.802083pt;}
.h5_c01077{height:45.460938pt;}
.h2_c01077{height:46.778646pt;}
.h4_c01077{height:47.437500pt;}
.h3_c01077{height:48.096354pt;}
.h7_c01077{height:49.414063pt;}
.ha_c01077{height:53.539062pt;}
.h9_c01077{height:61.932292pt;}
.h0_c01077{height:1122.666667pt;}
.w0_c01077{width:793.333333pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:129.279747pt;}
.x6_c01077{left:187.517987pt;}
.x2_c01077{left:188.479453pt;}
.x5_c01077{left:221.438920pt;}
.x3_c01077{left:222.399867pt;}
.x9_c01077{left:250.239200pt;}
.x4_c01077{left:251.198667pt;}
.xc_c01077{left:273.599067pt;}
.xa_c01077{left:296.639587pt;}
.x7_c01077{left:308.159200pt;}
.xb_c01077{left:313.278787pt;}
.x8_c01077{left:325.119200pt;}
.x12_c01077{left:481.278787pt;}
.x13_c01077{left:487.038253pt;}
.xd_c01077{left:504.638667pt;}
.x11_c01077{left:514.879307pt;}
.xe_c01077{left:515.838907pt;}
.x10_c01077{left:550.398920pt;}
.xf_c01077{left:561.919840pt;}
}





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

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_50e0d3533427df4cd503c643.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_08db943e270b600ef197edbb.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01078;src:url('chunks/assets/font_c0fac7cdfc99c96b1d633005.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_8c12237da267d5fa7f300cae.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01078;src:url('chunks/assets/font_7894c92077b88174066a0a39.woff2')format("woff");}.ff5_c01078{font-family:ff5_c01078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01078;src:url('chunks/assets/font_72fedea5c3b22d0a313b407d.woff2')format("woff");}.ff6_c01078{font-family:ff6_c01078;line-height:1.432129;font-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_c01078{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.mf_c01078{transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194690,0.000000,0.000000,0.250000,0,0);}
.m16_c01078{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m13_c01078{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m12_c01078{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m10_c01078{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m15_c01078{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.m4_c01078{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.me_c01078{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.md_c01078{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m14_c01078{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m3_c01078{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m5_c01078{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m2_c01078{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1_c01078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01078{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m11_c01078{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m8_c01078{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.ma_c01078{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.mc_c01078{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.m7_c01078{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01078{transform:matrix(0.376263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376263,0.000000,0.000000,0.250000,0,0);}
.mb_c01078{transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381443,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls0_c01078{letter-spacing:-16.938600px;}
.lsc_c01078{letter-spacing:-10.461825px;}
.lse_c01078{letter-spacing:-9.809438px;}
.lsb_c01078{letter-spacing:-9.389835px;}
.ls12_c01078{letter-spacing:-8.707500px;}
.lsa_c01078{letter-spacing:-6.934725px;}
.ls13_c01078{letter-spacing:-6.811875px;}
.ls10_c01078{letter-spacing:-4.808805px;}
.ls1_c01078{letter-spacing:-4.498905px;}
.ls2_c01078{letter-spacing:-4.496625px;}
.ls9_c01078{letter-spacing:-3.787875px;}
.ls4_c01078{letter-spacing:-3.031875px;}
.ls3_c01078{letter-spacing:-2.267213px;}
.ls6_c01078{letter-spacing:-1.512000px;}
.ls5_c01078{letter-spacing:-0.756000px;}
.ls7_c01078{letter-spacing:0.000000px;}
.ls8_c01078{letter-spacing:0.786713px;}
.ls15_c01078{letter-spacing:0.857475px;}
.ls14_c01078{letter-spacing:1.515465px;}
.ls11_c01078{letter-spacing:11.559900px;}
.lsd_c01078{letter-spacing:28.006650px;}
.lsf_c01078{letter-spacing:54.366075px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:0.000000px;}
._16_c01078{margin-left:-15.604494px;}
._12_c01078{margin-left:-9.961814px;}
._13_c01078{margin-left:-7.645595px;}
._14_c01078{margin-left:-4.980721px;}
._11_c01078{margin-left:-3.689559px;}
._5_c01078{margin-left:-1.511758px;}
._4_c01078{width:1.192275px;}
._7_c01078{width:2.911776px;}
._e_c01078{width:4.112348px;}
._0_c01078{width:5.142120px;}
._8_c01078{width:6.299576px;}
._1_c01078{width:7.553155px;}
._6_c01078{width:9.079936px;}
._10_c01078{width:10.513102px;}
._3_c01078{width:11.859581px;}
._15_c01078{width:13.371677px;}
._2_c01078{width:14.678515px;}
._f_c01078{width:17.380766px;}
._9_c01078{width:19.341303px;}
._17_c01078{width:20.734572px;}
._b_c01078{width:22.278072px;}
._18_c01078{width:23.791950px;}
._d_c01078{width:25.137485px;}
._a_c01078{width:26.742894px;}
._c_c01078{width:28.430022px;}
._19_c01078{width:29.917670px;}
._1a_c01078{width:31.852497px;}
.fc0_c01078{color:transparent;}
.fs6_c01078{font-size:54.000000px;}
.fsa_c01078{font-size:56.250000px;}
.fs7_c01078{font-size:58.500000px;}
.fsb_c01078{font-size:70.500000px;}
.fs9_c01078{font-size:72.750000px;}
.fs8_c01078{font-size:74.250000px;}
.fs4_c01078{font-size:76.500000px;}
.fs2_c01078{font-size:78.750000px;}
.fs1_c01078{font-size:79.500000px;}
.fs3_c01078{font-size:80.250000px;}
.fsd_c01078{font-size:81.000000px;}
.fs0_c01078{font-size:81.750000px;}
.fse_c01078{font-size:82.500000px;}
.fs5_c01078{font-size:83.250000px;}
.fsc_c01078{font-size:84.750000px;}
.y0_c01078{bottom:0.000000px;}
.y1f_c01078{bottom:184.318995px;}
.y1e_c01078{bottom:214.198725px;}
.y1d_c01078{bottom:244.438635px;}
.y1c_c01078{bottom:244.440600px;}
.y1b_c01078{bottom:274.320330px;}
.y1a_c01078{bottom:333.359100px;}
.y19_c01078{bottom:392.399970px;}
.y18_c01078{bottom:452.159415px;}
.y17_c01078{bottom:482.760090px;}
.y16_c01078{bottom:513.000000px;}
.y15_c01078{bottom:542.878860px;}
.y14_c01078{bottom:572.040000px;}
.y13_c01078{bottom:601.919730px;}
.y12_c01078{bottom:631.078770px;}
.y11_c01078{bottom:631.080345px;}
.y10_c01078{bottom:660.960075px;}
.yf_c01078{bottom:690.479595px;}
.ye_c01078{bottom:721.080000px;}
.yd_c01078{bottom:753.478635px;}
.yc_c01078{bottom:780.839535px;}
.yb_c01078{bottom:780.839670px;}
.ya_c01078{bottom:810.719400px;}
.y9_c01078{bottom:840.599115px;}
.y8_c01078{bottom:840.599160px;}
.y7_c01078{bottom:870.118695px;}
.y5_c01078{bottom:900.357420px;}
.y6_c01078{bottom:900.358605px;}
.y4_c01078{bottom:959.758485px;}
.y3_c01078{bottom:989.278020px;}
.y2_c01078{bottom:1048.679070px;}
.y1_c01078{bottom:1138.319190px;}
.h7_c01078{height:56.320312px;}
.h8_c01078{height:57.814453px;}
.hb_c01078{height:58.666992px;}
.hc_c01078{height:73.529297px;}
.h5_c01078{height:75.080566px;}
.ha_c01078{height:75.875977px;}
.h3_c01078{height:77.288818px;}
.h9_c01078{height:77.440430px;}
.h4_c01078{height:78.760986px;}
.he_c01078{height:80.050781px;}
.h2_c01078{height:80.121094px;}
.h1_c01078{height:80.791992px;}
.h10_c01078{height:80.969238px;}
.h11_c01078{height:81.705322px;}
.hf_c01078{height:83.177490px;}
.hd_c01078{height:83.756836px;}
.h6_c01078{height:83.900391px;}
.h0_c01078{height:1263.000000px;}
.w0_c01078{width:892.500000px;}
.x0_c01078{left:0.000000px;}
.x1_c01078{left:134.279850px;}
.x2_c01078{left:155.518665px;}
.x3_c01078{left:187.561095px;}
.x20_c01078{left:188.641965px;}
.x1d_c01078{left:213.119385px;}
.x18_c01078{left:214.559685px;}
.xa_c01078{left:225.719535px;}
.xb_c01078{left:239.758500px;}
.x14_c01078{left:272.158785px;}
.x8_c01078{left:275.039385px;}
.x15_c01078{left:296.279850px;}
.x9_c01078{left:300.239850px;}
.xc_c01078{left:310.318800px;}
.x19_c01078{left:319.319850px;}
.x1a_c01078{left:336.598530px;}
.xd_c01078{left:338.399850px;}
.x21_c01078{left:380.519685px;}
.xe_c01078{left:388.078815px;}
.x22_c01078{left:400.319820px;}
.xf_c01078{left:411.118785px;}
.x10_c01078{left:430.198785px;}
.x11_c01078{left:469.439670px;}
.x6_c01078{left:505.798515px;}
.x7_c01078{left:525.598530px;}
.x12_c01078{left:555.479235px;}
.x13_c01078{left:594.359250px;}
.x4_c01078{left:641.518620px;}
.x1b_c01078{left:649.079355px;}
.x5_c01078{left:660.959385px;}
.x1c_c01078{left:665.278800px;}
.x1e_c01078{left:670.679070px;}
.x1f_c01078{left:709.559100px;}
.x16_c01078{left:716.759085px;}
.x17_c01078{left:730.079355px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls0_c01078{letter-spacing:-15.056533pt;}
.lsc_c01078{letter-spacing:-9.299400pt;}
.lse_c01078{letter-spacing:-8.719500pt;}
.lsb_c01078{letter-spacing:-8.346520pt;}
.ls12_c01078{letter-spacing:-7.740000pt;}
.lsa_c01078{letter-spacing:-6.164200pt;}
.ls13_c01078{letter-spacing:-6.055000pt;}
.ls10_c01078{letter-spacing:-4.274493pt;}
.ls1_c01078{letter-spacing:-3.999027pt;}
.ls2_c01078{letter-spacing:-3.997000pt;}
.ls9_c01078{letter-spacing:-3.367000pt;}
.ls4_c01078{letter-spacing:-2.695000pt;}
.ls3_c01078{letter-spacing:-2.015300pt;}
.ls6_c01078{letter-spacing:-1.344000pt;}
.ls5_c01078{letter-spacing:-0.672000pt;}
.ls7_c01078{letter-spacing:0.000000pt;}
.ls8_c01078{letter-spacing:0.699300pt;}
.ls15_c01078{letter-spacing:0.762200pt;}
.ls14_c01078{letter-spacing:1.347080pt;}
.ls11_c01078{letter-spacing:10.275467pt;}
.lsd_c01078{letter-spacing:24.894800pt;}
.lsf_c01078{letter-spacing:48.325400pt;}
.ws0_c01078{word-spacing:0.000000pt;}
._16_c01078{margin-left:-13.870662pt;}
._12_c01078{margin-left:-8.854946pt;}
._13_c01078{margin-left:-6.796085pt;}
._14_c01078{margin-left:-4.427307pt;}
._11_c01078{margin-left:-3.279608pt;}
._5_c01078{margin-left:-1.343785pt;}
._4_c01078{width:1.059800pt;}
._7_c01078{width:2.588246pt;}
._e_c01078{width:3.655420pt;}
._0_c01078{width:4.570773pt;}
._8_c01078{width:5.599623pt;}
._1_c01078{width:6.713915pt;}
._6_c01078{width:8.071054pt;}
._10_c01078{width:9.344980pt;}
._3_c01078{width:10.541850pt;}
._15_c01078{width:11.885935pt;}
._2_c01078{width:13.047569pt;}
._f_c01078{width:15.449570pt;}
._9_c01078{width:17.192269pt;}
._17_c01078{width:18.430731pt;}
._b_c01078{width:19.802731pt;}
._18_c01078{width:21.148400pt;}
._d_c01078{width:22.344431pt;}
._a_c01078{width:23.771462pt;}
._c_c01078{width:25.271131pt;}
._19_c01078{width:26.593485pt;}
._1a_c01078{width:28.313331pt;}
.fs6_c01078{font-size:48.000000pt;}
.fsa_c01078{font-size:50.000000pt;}
.fs7_c01078{font-size:52.000000pt;}
.fsb_c01078{font-size:62.666667pt;}
.fs9_c01078{font-size:64.666667pt;}
.fs8_c01078{font-size:66.000000pt;}
.fs4_c01078{font-size:68.000000pt;}
.fs2_c01078{font-size:70.000000pt;}
.fs1_c01078{font-size:70.666667pt;}
.fs3_c01078{font-size:71.333333pt;}
.fsd_c01078{font-size:72.000000pt;}
.fs0_c01078{font-size:72.666667pt;}
.fse_c01078{font-size:73.333333pt;}
.fs5_c01078{font-size:74.000000pt;}
.fsc_c01078{font-size:75.333333pt;}
.y0_c01078{bottom:0.000000pt;}
.y1f_c01078{bottom:163.839107pt;}
.y1e_c01078{bottom:190.398867pt;}
.y1d_c01078{bottom:217.278787pt;}
.y1c_c01078{bottom:217.280533pt;}
.y1b_c01078{bottom:243.840293pt;}
.y1a_c01078{bottom:296.319200pt;}
.y19_c01078{bottom:348.799973pt;}
.y18_c01078{bottom:401.919480pt;}
.y17_c01078{bottom:429.120080pt;}
.y16_c01078{bottom:456.000000pt;}
.y15_c01078{bottom:482.558987pt;}
.y14_c01078{bottom:508.480000pt;}
.y13_c01078{bottom:535.039760pt;}
.y12_c01078{bottom:560.958907pt;}
.y11_c01078{bottom:560.960307pt;}
.y10_c01078{bottom:587.520067pt;}
.yf_c01078{bottom:613.759640pt;}
.ye_c01078{bottom:640.960000pt;}
.yd_c01078{bottom:669.758787pt;}
.yc_c01078{bottom:694.079587pt;}
.yb_c01078{bottom:694.079707pt;}
.ya_c01078{bottom:720.639467pt;}
.y9_c01078{bottom:747.199213pt;}
.y8_c01078{bottom:747.199253pt;}
.y7_c01078{bottom:773.438840pt;}
.y5_c01078{bottom:800.317707pt;}
.y6_c01078{bottom:800.318760pt;}
.y4_c01078{bottom:853.118653pt;}
.y3_c01078{bottom:879.358240pt;}
.y2_c01078{bottom:932.159173pt;}
.y1_c01078{bottom:1011.839280pt;}
.h7_c01078{height:50.062500pt;}
.h8_c01078{height:51.390625pt;}
.hb_c01078{height:52.148438pt;}
.hc_c01078{height:65.359375pt;}
.h5_c01078{height:66.738281pt;}
.ha_c01078{height:67.445312pt;}
.h3_c01078{height:68.701172pt;}
.h9_c01078{height:68.835938pt;}
.h4_c01078{height:70.009766pt;}
.he_c01078{height:71.156250pt;}
.h2_c01078{height:71.218750pt;}
.h1_c01078{height:71.815104pt;}
.h10_c01078{height:71.972656pt;}
.h11_c01078{height:72.626953pt;}
.hf_c01078{height:73.935547pt;}
.hd_c01078{height:74.450521pt;}
.h6_c01078{height:74.578125pt;}
.h0_c01078{height:1122.666667pt;}
.w0_c01078{width:793.333333pt;}
.x0_c01078{left:0.000000pt;}
.x1_c01078{left:119.359867pt;}
.x2_c01078{left:138.238813pt;}
.x3_c01078{left:166.720973pt;}
.x20_c01078{left:167.681747pt;}
.x1d_c01078{left:189.439453pt;}
.x18_c01078{left:190.719720pt;}
.xa_c01078{left:200.639587pt;}
.xb_c01078{left:213.118667pt;}
.x14_c01078{left:241.918920pt;}
.x8_c01078{left:244.479453pt;}
.x15_c01078{left:263.359867pt;}
.x9_c01078{left:266.879867pt;}
.xc_c01078{left:275.838933pt;}
.x19_c01078{left:283.839867pt;}
.x1a_c01078{left:299.198693pt;}
.xd_c01078{left:300.799867pt;}
.x21_c01078{left:338.239720pt;}
.xe_c01078{left:344.958947pt;}
.x22_c01078{left:355.839840pt;}
.xf_c01078{left:365.438920pt;}
.x10_c01078{left:382.398920pt;}
.x11_c01078{left:417.279707pt;}
.x6_c01078{left:449.598680pt;}
.x7_c01078{left:467.198693pt;}
.x12_c01078{left:493.759320pt;}
.x13_c01078{left:528.319333pt;}
.x4_c01078{left:570.238773pt;}
.x1b_c01078{left:576.959427pt;}
.x5_c01078{left:587.519453pt;}
.x1c_c01078{left:591.358933pt;}
.x1e_c01078{left:596.159173pt;}
.x1f_c01078{left:630.719200pt;}
.x16_c01078{left:637.119187pt;}
.x17_c01078{left:648.959427pt;}
}





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

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_fbc100e522689826be2a225a.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_6a8d8e24c1cc1f86f51cfdae.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01079;src:url('chunks/assets/font_f079597f5f164e543ea487ca.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_dce39080ad639f7ce0d7925d.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01079;src:url('chunks/assets/font_6e6047b994ff65320fcf6b83.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01079;src:url('chunks/assets/font_068a49ca4c1a46a37a7d97b4.woff2')format("woff");}.ff6_c01079{font-family:ff6_c01079;line-height:1.311035;font-style:normal;font-weight: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_c01079;src:url('chunks/assets/font_31ff73f1b3b19475cee452f6.woff2')format("woff");}.ff7_c01079{font-family:ff7_c01079;line-height:1.284180;font-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_c01079{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m8_c01079{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m17_c01079{transform:matrix(0.202174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202174,0.000000,0.000000,0.250000,0,0);}
.ma_c01079{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c01079{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m2_c01079{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1_c01079{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m11_c01079{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m14_c01079{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m3_c01079{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m19_c01079{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m7_c01079{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m18_c01079{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m12_c01079{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.me_c01079{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m5_c01079{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m15_c01079{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.mb_c01079{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.mf_c01079{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m9_c01079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01079{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1a_c01079{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.mc_c01079{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_c01079{transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);}
.m1b_c01079{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m6_c01079{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m13_c01079{transform:matrix(0.331579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331579,0.000000,0.000000,0.250000,0,0);}
.m16_c01079{transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387255,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls13_c01079{letter-spacing:-38.363850px;}
.ls12_c01079{letter-spacing:-12.056355px;}
.ls11_c01079{letter-spacing:-10.961100px;}
.ls1b_c01079{letter-spacing:-7.417500px;}
.ls16_c01079{letter-spacing:-6.783000px;}
.ls17_c01079{letter-spacing:-6.685875px;}
.ls5_c01079{letter-spacing:-5.945625px;}
.lse_c01079{letter-spacing:-5.247533px;}
.lsc_c01079{letter-spacing:-5.196713px;}
.ls14_c01079{letter-spacing:-4.539450px;}
.lsb_c01079{letter-spacing:-4.456463px;}
.ls1c_c01079{letter-spacing:-4.423950px;}
.ls6_c01079{letter-spacing:-3.717000px;}
.ls4_c01079{letter-spacing:-2.968875px;}
.ls2_c01079{letter-spacing:-2.229413px;}
.ls10_c01079{letter-spacing:-2.188800px;}
.ls19_c01079{letter-spacing:-1.515000px;}
.ls3_c01079{letter-spacing:-1.489163px;}
.ls1d_c01079{letter-spacing:-1.399950px;}
.ls9_c01079{letter-spacing:-0.740250px;}
.ls15_c01079{letter-spacing:-0.726038px;}
.ls7_c01079{letter-spacing:0.000000px;}
.ls0_c01079{letter-spacing:0.740250px;}
.ls8_c01079{letter-spacing:0.795675px;}
.lsa_c01079{letter-spacing:1.514700px;}
.ls18_c01079{letter-spacing:1.653600px;}
.ls1_c01079{letter-spacing:4.456463px;}
.lsf_c01079{letter-spacing:4.498800px;}
.lsd_c01079{letter-spacing:7.719600px;}
.ls1a_c01079{letter-spacing:13.555800px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:0.000000px;}
._15_c01079{margin-left:-51.037206px;}
._2_c01079{margin-left:-17.565217px;}
._5_c01079{margin-left:-15.451136px;}
._13_c01079{margin-left:-11.952988px;}
._17_c01079{margin-left:-9.582553px;}
._18_c01079{margin-left:-8.043971px;}
._19_c01079{margin-left:-6.654732px;}
._14_c01079{margin-left:-5.077919px;}
._d_c01079{margin-left:-4.010633px;}
._10_c01079{margin-left:-2.519941px;}
._1a_c01079{margin-left:-1.365406px;}
._7_c01079{width:1.738310px;}
._b_c01079{width:3.331511px;}
._6_c01079{width:4.763736px;}
._1_c01079{width:6.510203px;}
._8_c01079{width:7.914761px;}
._3_c01079{width:9.617321px;}
._0_c01079{width:11.735637px;}
._16_c01079{width:12.838464px;}
._9_c01079{width:13.958304px;}
._f_c01079{width:15.589647px;}
._11_c01079{width:17.346827px;}
._4_c01079{width:19.687441px;}
._12_c01079{width:21.802235px;}
._a_c01079{width:23.181236px;}
._c_c01079{width:25.885095px;}
._e_c01079{width:39.659689px;}
.fc0_c01079{color:transparent;}
.fs7_c01079{font-size:42.000000px;}
.fsa_c01079{font-size:69.000000px;}
.fsd_c01079{font-size:69.750000px;}
.fsf_c01079{font-size:71.250000px;}
.fs5_c01079{font-size:74.250000px;}
.fsb_c01079{font-size:75.000000px;}
.fs10_c01079{font-size:75.750000px;}
.fs11_c01079{font-size:76.500000px;}
.fs3_c01079{font-size:77.250000px;}
.fs13_c01079{font-size:78.000000px;}
.fs0_c01079{font-size:78.750000px;}
.fse_c01079{font-size:79.500000px;}
.fs4_c01079{font-size:80.250000px;}
.fs9_c01079{font-size:81.750000px;}
.fs2_c01079{font-size:82.500000px;}
.fs8_c01079{font-size:84.000000px;}
.fs14_c01079{font-size:84.750000px;}
.fsc_c01079{font-size:85.500000px;}
.fs12_c01079{font-size:86.250000px;}
.fs6_c01079{font-size:101.250000px;}
.fs1_c01079{font-size:115.500000px;}
.y0_c01079{bottom:0.000000px;}
.y28_c01079{bottom:212.039385px;}
.y29_c01079{bottom:212.040000px;}
.y27_c01079{bottom:241.919100px;}
.y26_c01079{bottom:271.438635px;}
.y24_c01079{bottom:301.318470px;}
.y25_c01079{bottom:301.319250px;}
.y23_c01079{bottom:330.479625px;}
.y22_c01079{bottom:360.719535px;}
.y21_c01079{bottom:360.719700px;}
.y20_c01079{bottom:390.239220px;}
.y1f_c01079{bottom:420.479235px;}
.y1d_c01079{bottom:450.359760px;}
.y1e_c01079{bottom:450.359850px;}
.y1c_c01079{bottom:480.599670px;}
.y1b_c01079{bottom:480.600420px;}
.y1a_c01079{bottom:540.359865px;}
.y18_c01079{bottom:599.398545px;}
.y19_c01079{bottom:599.398635px;}
.y17_c01079{bottom:658.799610px;}
.y16_c01079{bottom:688.319145px;}
.y15_c01079{bottom:718.919535px;}
.y14_c01079{bottom:748.439205px;}
.y13_c01079{bottom:777.960705px;}
.y12_c01079{bottom:807.840435px;}
.y11_c01079{bottom:837.720150px;}
.y10_c01079{bottom:837.720330px;}
.ye_c01079{bottom:867.239385px;}
.yf_c01079{bottom:867.239865px;}
.yc_c01079{bottom:927.719460px;}
.yd_c01079{bottom:927.719520px;}
.yb_c01079{bottom:957.959385px;}
.ya_c01079{bottom:957.960135px;}
.y9_c01079{bottom:1016.998905px;}
.y8_c01079{bottom:1016.999085px;}
.y7_c01079{bottom:1046.518620px;}
.y6_c01079{bottom:1046.519505px;}
.y5_c01079{bottom:1076.399235px;}
.y4_c01079{bottom:1076.400120px;}
.y2_c01079{bottom:1106.279805px;}
.y3_c01079{bottom:1106.279850px;}
.y1_c01079{bottom:1136.519715px;}
.h8_c01079{height:41.220703px;}
.hb_c01079{height:71.964844px;}
.he_c01079{height:72.747070px;}
.h6_c01079{height:72.872314px;}
.hc_c01079{height:73.608398px;}
.h10_c01079{height:74.311523px;}
.h11_c01079{height:74.344482px;}
.h12_c01079{height:75.043213px;}
.h14_c01079{height:75.080566px;}
.h4_c01079{height:75.816650px;}
.h15_c01079{height:76.552734px;}
.h1_c01079{height:77.288818px;}
.h5_c01079{height:78.760986px;}
.hf_c01079{height:80.121094px;}
.ha_c01079{height:80.233154px;}
.h3_c01079{height:80.969238px;}
.h9_c01079{height:82.441406px;}
.h16_c01079{height:83.756836px;}
.hd_c01079{height:84.498047px;}
.h13_c01079{height:85.239258px;}
.h7_c01079{height:105.600586px;}
.h2_c01079{height:120.462891px;}
.h0_c01079{height:1263.000000px;}
.w0_c01079{width:892.500000px;}
.x0_c01079{left:0.000000px;}
.x20_c01079{left:141.842910px;}
.x21_c01079{left:189.359250px;}
.x1a_c01079{left:195.117735px;}
.x1_c01079{left:196.199850px;}
.xc_c01079{left:197.281470px;}
.x31_c01079{left:198.356580px;}
.x22_c01079{left:202.679700px;}
.x23_c01079{left:214.918950px;}
.x24_c01079{left:225.719535px;}
.x29_c01079{left:233.998950px;}
.x13_c01079{left:238.319850px;}
.x32_c01079{left:245.878950px;}
.x2e_c01079{left:246.958350px;}
.x30_c01079{left:248.759535px;}
.x14_c01079{left:262.080000px;}
.x2_c01079{left:264.238785px;}
.x3_c01079{left:274.678500px;}
.x17_c01079{left:276.118785px;}
.xd_c01079{left:279.358635px;}
.x1b_c01079{left:283.679700px;}
.xe_c01079{left:290.518635px;}
.x4_c01079{left:298.799535px;}
.xf_c01079{left:300.958350px;}
.x5_c01079{left:313.919535px;}
.x10_c01079{left:316.080000px;}
.x11_c01079{left:366.120000px;}
.x8_c01079{left:369.719100px;}
.x12_c01079{left:377.279850px;}
.x9_c01079{left:384.479685px;}
.x33_c01079{left:420.838530px;}
.x34_c01079{left:442.798920px;}
.xa_c01079{left:449.998950px;}
.x1c_c01079{left:451.798515px;}
.x25_c01079{left:456.839535px;}
.x26_c01079{left:471.598530px;}
.xb_c01079{left:475.199385px;}
.x2c_c01079{left:483.478635px;}
.x2d_c01079{left:496.439670px;}
.x1e_c01079{left:500.038920px;}
.x18_c01079{left:503.998950px;}
.x1f_c01079{left:515.158770px;}
.x19_c01079{left:519.479685px;}
.x15_c01079{left:539.279850px;}
.x1d_c01079{left:542.158770px;}
.x16_c01079{left:559.798515px;}
.x27_c01079{left:581.399820px;}
.x28_c01079{left:595.799520px;}
.x2a_c01079{left:656.638545px;}
.x2b_c01079{left:698.399235px;}
.x6_c01079{left:716.759085px;}
.x7_c01079{left:740.519070px;}
.x2f_c01079{left:748.798560px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls13_c01079{letter-spacing:-34.101200pt;}
.ls12_c01079{letter-spacing:-10.716760pt;}
.ls11_c01079{letter-spacing:-9.743200pt;}
.ls1b_c01079{letter-spacing:-6.593333pt;}
.ls16_c01079{letter-spacing:-6.029333pt;}
.ls17_c01079{letter-spacing:-5.943000pt;}
.ls5_c01079{letter-spacing:-5.285000pt;}
.lse_c01079{letter-spacing:-4.664473pt;}
.lsc_c01079{letter-spacing:-4.619300pt;}
.ls14_c01079{letter-spacing:-4.035067pt;}
.lsb_c01079{letter-spacing:-3.961300pt;}
.ls1c_c01079{letter-spacing:-3.932400pt;}
.ls6_c01079{letter-spacing:-3.304000pt;}
.ls4_c01079{letter-spacing:-2.639000pt;}
.ls2_c01079{letter-spacing:-1.981700pt;}
.ls10_c01079{letter-spacing:-1.945600pt;}
.ls19_c01079{letter-spacing:-1.346667pt;}
.ls3_c01079{letter-spacing:-1.323700pt;}
.ls1d_c01079{letter-spacing:-1.244400pt;}
.ls9_c01079{letter-spacing:-0.658000pt;}
.ls15_c01079{letter-spacing:-0.645367pt;}
.ls7_c01079{letter-spacing:0.000000pt;}
.ls0_c01079{letter-spacing:0.658000pt;}
.ls8_c01079{letter-spacing:0.707267pt;}
.lsa_c01079{letter-spacing:1.346400pt;}
.ls18_c01079{letter-spacing:1.469867pt;}
.ls1_c01079{letter-spacing:3.961300pt;}
.lsf_c01079{letter-spacing:3.998933pt;}
.lsd_c01079{letter-spacing:6.861867pt;}
.ls1a_c01079{letter-spacing:12.049600pt;}
.ws0_c01079{word-spacing:0.000000pt;}
._15_c01079{margin-left:-45.366406pt;}
._2_c01079{margin-left:-15.613526pt;}
._5_c01079{margin-left:-13.734343pt;}
._13_c01079{margin-left:-10.624878pt;}
._17_c01079{margin-left:-8.517825pt;}
._18_c01079{margin-left:-7.150196pt;}
._19_c01079{margin-left:-5.915317pt;}
._14_c01079{margin-left:-4.513706pt;}
._d_c01079{margin-left:-3.565008pt;}
._10_c01079{margin-left:-2.239947pt;}
._1a_c01079{margin-left:-1.213694pt;}
._7_c01079{width:1.545164pt;}
._b_c01079{width:2.961343pt;}
._6_c01079{width:4.234432pt;}
._1_c01079{width:5.786847pt;}
._8_c01079{width:7.035343pt;}
._3_c01079{width:8.548730pt;}
._0_c01079{width:10.431677pt;}
._16_c01079{width:11.411968pt;}
._9_c01079{width:12.407381pt;}
._f_c01079{width:13.857464pt;}
._11_c01079{width:15.419402pt;}
._4_c01079{width:17.499947pt;}
._12_c01079{width:19.379764pt;}
._a_c01079{width:20.605543pt;}
._c_c01079{width:23.008974pt;}
._e_c01079{width:35.253057pt;}
.fs7_c01079{font-size:37.333333pt;}
.fsa_c01079{font-size:61.333333pt;}
.fsd_c01079{font-size:62.000000pt;}
.fsf_c01079{font-size:63.333333pt;}
.fs5_c01079{font-size:66.000000pt;}
.fsb_c01079{font-size:66.666667pt;}
.fs10_c01079{font-size:67.333333pt;}
.fs11_c01079{font-size:68.000000pt;}
.fs3_c01079{font-size:68.666667pt;}
.fs13_c01079{font-size:69.333333pt;}
.fs0_c01079{font-size:70.000000pt;}
.fse_c01079{font-size:70.666667pt;}
.fs4_c01079{font-size:71.333333pt;}
.fs9_c01079{font-size:72.666667pt;}
.fs2_c01079{font-size:73.333333pt;}
.fs8_c01079{font-size:74.666667pt;}
.fs14_c01079{font-size:75.333333pt;}
.fsc_c01079{font-size:76.000000pt;}
.fs12_c01079{font-size:76.666667pt;}
.fs6_c01079{font-size:90.000000pt;}
.fs1_c01079{font-size:102.666667pt;}
.y0_c01079{bottom:0.000000pt;}
.y28_c01079{bottom:188.479453pt;}
.y29_c01079{bottom:188.480000pt;}
.y27_c01079{bottom:215.039200pt;}
.y26_c01079{bottom:241.278787pt;}
.y24_c01079{bottom:267.838640pt;}
.y25_c01079{bottom:267.839333pt;}
.y23_c01079{bottom:293.759667pt;}
.y22_c01079{bottom:320.639587pt;}
.y21_c01079{bottom:320.639733pt;}
.y20_c01079{bottom:346.879307pt;}
.y1f_c01079{bottom:373.759320pt;}
.y1d_c01079{bottom:400.319787pt;}
.y1e_c01079{bottom:400.319867pt;}
.y1c_c01079{bottom:427.199707pt;}
.y1b_c01079{bottom:427.200373pt;}
.y1a_c01079{bottom:480.319880pt;}
.y18_c01079{bottom:532.798707pt;}
.y19_c01079{bottom:532.798787pt;}
.y17_c01079{bottom:585.599653pt;}
.y16_c01079{bottom:611.839240pt;}
.y15_c01079{bottom:639.039587pt;}
.y14_c01079{bottom:665.279293pt;}
.y13_c01079{bottom:691.520627pt;}
.y12_c01079{bottom:718.080387pt;}
.y11_c01079{bottom:744.640133pt;}
.y10_c01079{bottom:744.640293pt;}
.ye_c01079{bottom:770.879453pt;}
.yf_c01079{bottom:770.879880pt;}
.yc_c01079{bottom:824.639520pt;}
.yd_c01079{bottom:824.639573pt;}
.yb_c01079{bottom:851.519453pt;}
.ya_c01079{bottom:851.520120pt;}
.y9_c01079{bottom:903.999027pt;}
.y8_c01079{bottom:903.999187pt;}
.y7_c01079{bottom:930.238773pt;}
.y6_c01079{bottom:930.239560pt;}
.y5_c01079{bottom:956.799320pt;}
.y4_c01079{bottom:956.800107pt;}
.y2_c01079{bottom:983.359827pt;}
.y3_c01079{bottom:983.359867pt;}
.y1_c01079{bottom:1010.239747pt;}
.h8_c01079{height:36.640625pt;}
.hb_c01079{height:63.968750pt;}
.he_c01079{height:64.664062pt;}
.h6_c01079{height:64.775391pt;}
.hc_c01079{height:65.429688pt;}
.h10_c01079{height:66.054688pt;}
.h11_c01079{height:66.083984pt;}
.h12_c01079{height:66.705078pt;}
.h14_c01079{height:66.738281pt;}
.h4_c01079{height:67.392578pt;}
.h15_c01079{height:68.046875pt;}
.h1_c01079{height:68.701172pt;}
.h5_c01079{height:70.009766pt;}
.hf_c01079{height:71.218750pt;}
.ha_c01079{height:71.318359pt;}
.h3_c01079{height:71.972656pt;}
.h9_c01079{height:73.281250pt;}
.h16_c01079{height:74.450521pt;}
.hd_c01079{height:75.109375pt;}
.h13_c01079{height:75.768229pt;}
.h7_c01079{height:93.867188pt;}
.h2_c01079{height:107.078125pt;}
.h0_c01079{height:1122.666667pt;}
.w0_c01079{width:793.333333pt;}
.x0_c01079{left:0.000000pt;}
.x20_c01079{left:126.082587pt;}
.x21_c01079{left:168.319333pt;}
.x1a_c01079{left:173.437987pt;}
.x1_c01079{left:174.399867pt;}
.xc_c01079{left:175.361307pt;}
.x31_c01079{left:176.316960pt;}
.x22_c01079{left:180.159733pt;}
.x23_c01079{left:191.039067pt;}
.x24_c01079{left:200.639587pt;}
.x29_c01079{left:207.999067pt;}
.x13_c01079{left:211.839867pt;}
.x32_c01079{left:218.559067pt;}
.x2e_c01079{left:219.518533pt;}
.x30_c01079{left:221.119587pt;}
.x14_c01079{left:232.960000pt;}
.x2_c01079{left:234.878920pt;}
.x3_c01079{left:244.158667pt;}
.x17_c01079{left:245.438920pt;}
.xd_c01079{left:248.318787pt;}
.x1b_c01079{left:252.159733pt;}
.xe_c01079{left:258.238787pt;}
.x4_c01079{left:265.599587pt;}
.xf_c01079{left:267.518533pt;}
.x5_c01079{left:279.039587pt;}
.x10_c01079{left:280.960000pt;}
.x11_c01079{left:325.440000pt;}
.x8_c01079{left:328.639200pt;}
.x12_c01079{left:335.359867pt;}
.x9_c01079{left:341.759720pt;}
.x33_c01079{left:374.078693pt;}
.x34_c01079{left:393.599040pt;}
.xa_c01079{left:399.999067pt;}
.x1c_c01079{left:401.598680pt;}
.x25_c01079{left:406.079587pt;}
.x26_c01079{left:419.198693pt;}
.xb_c01079{left:422.399453pt;}
.x2c_c01079{left:429.758787pt;}
.x2d_c01079{left:441.279707pt;}
.x1e_c01079{left:444.479040pt;}
.x18_c01079{left:447.999067pt;}
.x1f_c01079{left:457.918907pt;}
.x19_c01079{left:461.759720pt;}
.x15_c01079{left:479.359867pt;}
.x1d_c01079{left:481.918907pt;}
.x16_c01079{left:497.598680pt;}
.x27_c01079{left:516.799840pt;}
.x28_c01079{left:529.599573pt;}
.x2a_c01079{left:583.678707pt;}
.x2b_c01079{left:620.799320pt;}
.x6_c01079{left:637.119187pt;}
.x7_c01079{left:658.239173pt;}
.x2f_c01079{left:665.598720pt;}
}





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

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_4792f6ca79d61ad072a6c4e0.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_94129e18bd58deaaadbf1c40.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01080;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01080;src:url('chunks/assets/font_49f78463cd8013351585d759.woff2')format("woff");}.ff4_c01080{font-family:ff4_c01080;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01080;src:url('chunks/assets/font_2d47574821506feb601b1d57.woff2')format("woff");}.ff5_c01080{font-family:ff5_c01080;line-height:1.364746;font-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_c01080{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1b_c01080{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m3_c01080{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m4_c01080{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1f_c01080{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m17_c01080{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m0_c01080{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2_c01080{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m10_c01080{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m20_c01080{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m13_c01080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01080{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.md_c01080{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m7_c01080{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m5_c01080{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m11_c01080{transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284091,0.000000,0.000000,0.250000,0,0);}
.ma_c01080{transform:matrix(0.295082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295082,0.000000,0.000000,0.250000,0,0);}
.m15_c01080{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m1c_c01080{transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327778,0.000000,0.000000,0.250000,0,0);}
.m19_c01080{transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329545,0.000000,0.000000,0.250000,0,0);}
.m12_c01080{transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338889,0.000000,0.000000,0.250000,0,0);}
.me_c01080{transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);}
.m1d_c01080{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_c01080{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.m1a_c01080{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.m6_c01080{transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376623,0.000000,0.000000,0.250000,0,0);}
.m14_c01080{transform:matrix(0.376923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376923,0.000000,0.000000,0.250000,0,0);}
.m1e_c01080{transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382812,0.000000,0.000000,0.250000,0,0);}
.m8_c01080{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.mc_c01080{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m16_c01080{transform:matrix(0.503846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503846,0.000000,0.000000,0.250000,0,0);}
.mb_c01080{transform:matrix(0.546053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546053,0.000000,0.000000,0.250000,0,0);}
.m9_c01080{transform:matrix(0.576389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576389,0.000000,0.000000,0.250000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.ls24_c01080{letter-spacing:-11.831407px;}
.lsd_c01080{letter-spacing:-6.502275px;}
.ls25_c01080{letter-spacing:-6.051443px;}
.ls7_c01080{letter-spacing:-4.591125px;}
.lse_c01080{letter-spacing:-3.983018px;}
.ls8_c01080{letter-spacing:-3.818588px;}
.ls9_c01080{letter-spacing:-3.055500px;}
.ls18_c01080{letter-spacing:-2.715218px;}
.ls15_c01080{letter-spacing:-2.402550px;}
.ls6_c01080{letter-spacing:-2.291625px;}
.ls12_c01080{letter-spacing:-2.276100px;}
.ls5_c01080{letter-spacing:-1.526963px;}
.lsc_c01080{letter-spacing:-1.524750px;}
.ls23_c01080{letter-spacing:-1.468320px;}
.lsb_c01080{letter-spacing:-0.763875px;}
.ls22_c01080{letter-spacing:-0.536625px;}
.lsa_c01080{letter-spacing:0.000000px;}
.ls21_c01080{letter-spacing:0.573750px;}
.lsf_c01080{letter-spacing:0.725700px;}
.ls0_c01080{letter-spacing:0.763875px;}
.ls19_c01080{letter-spacing:1.039837px;}
.ls4_c01080{letter-spacing:1.526963px;}
.ls16_c01080{letter-spacing:2.130300px;}
.ls20_c01080{letter-spacing:2.558587px;}
.ls11_c01080{letter-spacing:2.843505px;}
.ls13_c01080{letter-spacing:3.175050px;}
.ls10_c01080{letter-spacing:3.304545px;}
.ls2_c01080{letter-spacing:6.394950px;}
.ls1f_c01080{letter-spacing:7.395630px;}
.ls14_c01080{letter-spacing:8.524845px;}
.ls1b_c01080{letter-spacing:9.000975px;}
.ls1_c01080{letter-spacing:9.947205px;}
.ls3_c01080{letter-spacing:11.368350px;}
.ls1a_c01080{letter-spacing:15.840000px;}
.ls17_c01080{letter-spacing:16.125000px;}
.ls1d_c01080{letter-spacing:21.215700px;}
.ls1e_c01080{letter-spacing:22.733700px;}
.ls1c_c01080{letter-spacing:30.462300px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:0.000000px;}
._13_c01080{margin-left:-15.958300px;}
._1_c01080{margin-left:-12.681793px;}
._0_c01080{margin-left:-9.848437px;}
._b_c01080{margin-left:-8.271854px;}
._5_c01080{margin-left:-5.615387px;}
._c_c01080{margin-left:-3.944320px;}
._2_c01080{margin-left:-2.684136px;}
._6_c01080{margin-left:-1.203881px;}
._3_c01080{width:1.723631px;}
._15_c01080{width:2.855039px;}
._4_c01080{width:3.911910px;}
._8_c01080{width:5.575683px;}
._e_c01080{width:7.276974px;}
._11_c01080{width:8.923919px;}
._9_c01080{width:10.442739px;}
._f_c01080{width:11.954219px;}
._d_c01080{width:13.549993px;}
._a_c01080{width:14.977929px;}
._12_c01080{width:17.826660px;}
._7_c01080{width:19.199158px;}
._10_c01080{width:22.074344px;}
._14_c01080{width:25.669396px;}
.fc0_c01080{color:transparent;}
.fs6_c01080{font-size:25.500000px;}
.fs7_c01080{font-size:27.000000px;}
.fs9_c01080{font-size:28.500000px;}
.fsa_c01080{font-size:32.250000px;}
.fsd_c01080{font-size:33.000000px;}
.fsc_c01080{font-size:33.750000px;}
.fs3_c01080{font-size:40.500000px;}
.fsf_c01080{font-size:42.000000px;}
.fs5_c01080{font-size:44.250000px;}
.fs8_c01080{font-size:45.750000px;}
.fs10_c01080{font-size:48.000000px;}
.fse_c01080{font-size:48.750000px;}
.fsb_c01080{font-size:53.250000px;}
.fs0_c01080{font-size:78.750000px;}
.fs1_c01080{font-size:80.250000px;}
.fs11_c01080{font-size:83.250000px;}
.fs2_c01080{font-size:87.750000px;}
.fs4_c01080{font-size:173.250000px;}
.y0_c01080{bottom:0.000000px;}
.y18_c01080{bottom:186.119460px;}
.y17_c01080{bottom:215.280600px;}
.y16_c01080{bottom:274.319370px;}
.y15_c01080{bottom:333.720435px;}
.y13_c01080{bottom:363.599505px;}
.y14_c01080{bottom:363.600150px;}
.y12_c01080{bottom:393.479235px;}
.y11_c01080{bottom:423.180135px;}
.y10_c01080{bottom:429.119385px;}
.yf_c01080{bottom:452.518620px;}
.ye_c01080{bottom:452.519070px;}
.yd_c01080{bottom:483.119475px;}
.yc_c01080{bottom:512.639010px;}
.yb_c01080{bottom:542.878920px;}
.ya_c01080{bottom:542.879655px;}
.y9_c01080{bottom:601.920525px;}
.y8_c01080{bottom:810.720195px;}
.y7_c01080{bottom:870.479640px;}
.y6_c01080{bottom:900.719565px;}
.y5_c01080{bottom:960.479010px;}
.y4_c01080{bottom:1019.159685px;}
.y3_c01080{bottom:1048.679220px;}
.y2_c01080{bottom:1108.438665px;}
.y1_c01080{bottom:1138.319190px;}
.h7_c01080{height:26.595703px;}
.h8_c01080{height:28.160156px;}
.ha_c01080{height:29.724609px;}
.hb_c01080{height:32.501953px;}
.he_c01080{height:33.257812px;}
.hd_c01080{height:34.013672px;}
.h4_c01080{height:42.240234px;}
.h10_c01080{height:43.804688px;}
.h6_c01080{height:44.595703px;}
.h12_c01080{height:45.213867px;}
.h9_c01080{height:46.107422px;}
.h11_c01080{height:48.375000px;}
.hf_c01080{height:49.130859px;}
.hc_c01080{height:53.666016px;}
.h1_c01080{height:77.288818px;}
.h2_c01080{height:78.760986px;}
.h13_c01080{height:81.705322px;}
.h3_c01080{height:86.121826px;}
.h5_c01080{height:180.694336px;}
.h0_c01080{height:1263.000000px;}
.w0_c01080{width:892.500000px;}
.x0_c01080{left:0.000000px;}
.x22_c01080{left:136.799535px;}
.x4_c01080{left:189.716910px;}
.x3_c01080{left:190.800450px;}
.x1_c01080{left:191.878950px;}
.x9_c01080{left:192.958350px;}
.xa_c01080{left:203.399850px;}
.x2_c01080{left:210.238785px;}
.xb_c01080{left:269.279850px;}
.xc_c01080{left:299.878950px;}
.x7_c01080{left:317.518635px;}
.xd_c01080{left:325.079385px;}
.x15_c01080{left:326.878950px;}
.x16_c01080{left:334.439685px;}
.x8_c01080{left:340.558635px;}
.xe_c01080{left:385.918350px;}
.x17_c01080{left:407.158770px;}
.x18_c01080{left:441.358665px;}
.xf_c01080{left:455.039985px;}
.x10_c01080{left:476.639700px;}
.x11_c01080{left:493.918350px;}
.x20_c01080{left:503.278800px;}
.x5_c01080{left:506.879520px;}
.x21_c01080{left:523.798920px;}
.x6_c01080{left:529.558635px;}
.x19_c01080{left:581.038920px;}
.x1a_c01080{left:602.999400px;}
.x12_c01080{left:648.000000px;}
.x13_c01080{left:669.599670px;}
.x1b_c01080{left:671.399235px;}
.x1c_c01080{left:678.599070px;}
.x1d_c01080{left:691.558635px;}
.x1e_c01080{left:718.558635px;}
.x1f_c01080{left:740.159820px;}
.x14_c01080{left:758.158770px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls24_c01080{letter-spacing:-10.516807pt;}
.lsd_c01080{letter-spacing:-5.779800pt;}
.ls25_c01080{letter-spacing:-5.379060pt;}
.ls7_c01080{letter-spacing:-4.081000pt;}
.lse_c01080{letter-spacing:-3.540460pt;}
.ls8_c01080{letter-spacing:-3.394300pt;}
.ls9_c01080{letter-spacing:-2.716000pt;}
.ls18_c01080{letter-spacing:-2.413527pt;}
.ls15_c01080{letter-spacing:-2.135600pt;}
.ls6_c01080{letter-spacing:-2.037000pt;}
.ls12_c01080{letter-spacing:-2.023200pt;}
.ls5_c01080{letter-spacing:-1.357300pt;}
.lsc_c01080{letter-spacing:-1.355333pt;}
.ls23_c01080{letter-spacing:-1.305173pt;}
.lsb_c01080{letter-spacing:-0.679000pt;}
.ls22_c01080{letter-spacing:-0.477000pt;}
.lsa_c01080{letter-spacing:0.000000pt;}
.ls21_c01080{letter-spacing:0.510000pt;}
.lsf_c01080{letter-spacing:0.645067pt;}
.ls0_c01080{letter-spacing:0.679000pt;}
.ls19_c01080{letter-spacing:0.924300pt;}
.ls4_c01080{letter-spacing:1.357300pt;}
.ls16_c01080{letter-spacing:1.893600pt;}
.ls20_c01080{letter-spacing:2.274300pt;}
.ls11_c01080{letter-spacing:2.527560pt;}
.ls13_c01080{letter-spacing:2.822267pt;}
.ls10_c01080{letter-spacing:2.937373pt;}
.ls2_c01080{letter-spacing:5.684400pt;}
.ls1f_c01080{letter-spacing:6.573893pt;}
.ls14_c01080{letter-spacing:7.577640pt;}
.ls1b_c01080{letter-spacing:8.000867pt;}
.ls1_c01080{letter-spacing:8.841960pt;}
.ls3_c01080{letter-spacing:10.105200pt;}
.ls1a_c01080{letter-spacing:14.080000pt;}
.ls17_c01080{letter-spacing:14.333333pt;}
.ls1d_c01080{letter-spacing:18.858400pt;}
.ls1e_c01080{letter-spacing:20.207733pt;}
.ls1c_c01080{letter-spacing:27.077600pt;}
.ws0_c01080{word-spacing:0.000000pt;}
._13_c01080{margin-left:-14.185156pt;}
._1_c01080{margin-left:-11.272705pt;}
._0_c01080{margin-left:-8.754166pt;}
._b_c01080{margin-left:-7.352759pt;}
._5_c01080{margin-left:-4.991455pt;}
._c_c01080{margin-left:-3.506062pt;}
._2_c01080{margin-left:-2.385899pt;}
._6_c01080{margin-left:-1.070117pt;}
._3_c01080{width:1.532117pt;}
._15_c01080{width:2.537813pt;}
._4_c01080{width:3.477253pt;}
._8_c01080{width:4.956163pt;}
._e_c01080{width:6.468421pt;}
._11_c01080{width:7.932373pt;}
._9_c01080{width:9.282435pt;}
._f_c01080{width:10.625973pt;}
._d_c01080{width:12.044438pt;}
._a_c01080{width:13.313715pt;}
._12_c01080{width:15.845920pt;}
._7_c01080{width:17.065918pt;}
._10_c01080{width:19.621639pt;}
._14_c01080{width:22.817241pt;}
.fs6_c01080{font-size:22.666667pt;}
.fs7_c01080{font-size:24.000000pt;}
.fs9_c01080{font-size:25.333333pt;}
.fsa_c01080{font-size:28.666667pt;}
.fsd_c01080{font-size:29.333333pt;}
.fsc_c01080{font-size:30.000000pt;}
.fs3_c01080{font-size:36.000000pt;}
.fsf_c01080{font-size:37.333333pt;}
.fs5_c01080{font-size:39.333333pt;}
.fs8_c01080{font-size:40.666667pt;}
.fs10_c01080{font-size:42.666667pt;}
.fse_c01080{font-size:43.333333pt;}
.fsb_c01080{font-size:47.333333pt;}
.fs0_c01080{font-size:70.000000pt;}
.fs1_c01080{font-size:71.333333pt;}
.fs11_c01080{font-size:74.000000pt;}
.fs2_c01080{font-size:78.000000pt;}
.fs4_c01080{font-size:154.000000pt;}
.y0_c01080{bottom:0.000000pt;}
.y18_c01080{bottom:165.439520pt;}
.y17_c01080{bottom:191.360533pt;}
.y16_c01080{bottom:243.839440pt;}
.y15_c01080{bottom:296.640387pt;}
.y13_c01080{bottom:323.199560pt;}
.y14_c01080{bottom:323.200133pt;}
.y12_c01080{bottom:349.759320pt;}
.y11_c01080{bottom:376.160120pt;}
.y10_c01080{bottom:381.439453pt;}
.yf_c01080{bottom:402.238773pt;}
.ye_c01080{bottom:402.239173pt;}
.yd_c01080{bottom:429.439533pt;}
.yc_c01080{bottom:455.679120pt;}
.yb_c01080{bottom:482.559040pt;}
.ya_c01080{bottom:482.559693pt;}
.y9_c01080{bottom:535.040467pt;}
.y8_c01080{bottom:720.640173pt;}
.y7_c01080{bottom:773.759680pt;}
.y6_c01080{bottom:800.639613pt;}
.y5_c01080{bottom:853.759120pt;}
.y4_c01080{bottom:905.919720pt;}
.y3_c01080{bottom:932.159307pt;}
.y2_c01080{bottom:985.278813pt;}
.y1_c01080{bottom:1011.839280pt;}
.h7_c01080{height:23.640625pt;}
.h8_c01080{height:25.031250pt;}
.ha_c01080{height:26.421875pt;}
.hb_c01080{height:28.890625pt;}
.he_c01080{height:29.562500pt;}
.hd_c01080{height:30.234375pt;}
.h4_c01080{height:37.546875pt;}
.h10_c01080{height:38.937500pt;}
.h6_c01080{height:39.640625pt;}
.h12_c01080{height:40.190104pt;}
.h9_c01080{height:40.984375pt;}
.h11_c01080{height:43.000000pt;}
.hf_c01080{height:43.671875pt;}
.hc_c01080{height:47.703125pt;}
.h1_c01080{height:68.701172pt;}
.h2_c01080{height:70.009766pt;}
.h13_c01080{height:72.626953pt;}
.h3_c01080{height:76.552734pt;}
.h5_c01080{height:160.617188pt;}
.h0_c01080{height:1122.666667pt;}
.w0_c01080{width:793.333333pt;}
.x0_c01080{left:0.000000pt;}
.x22_c01080{left:121.599587pt;}
.x4_c01080{left:168.637253pt;}
.x3_c01080{left:169.600400pt;}
.x1_c01080{left:170.559067pt;}
.x9_c01080{left:171.518533pt;}
.xa_c01080{left:180.799867pt;}
.x2_c01080{left:186.878920pt;}
.xb_c01080{left:239.359867pt;}
.xc_c01080{left:266.559067pt;}
.x7_c01080{left:282.238787pt;}
.xd_c01080{left:288.959453pt;}
.x15_c01080{left:290.559067pt;}
.x16_c01080{left:297.279720pt;}
.x8_c01080{left:302.718787pt;}
.xe_c01080{left:343.038533pt;}
.x17_c01080{left:361.918907pt;}
.x18_c01080{left:392.318813pt;}
.xf_c01080{left:404.479987pt;}
.x10_c01080{left:423.679733pt;}
.x11_c01080{left:439.038533pt;}
.x20_c01080{left:447.358933pt;}
.x5_c01080{left:450.559573pt;}
.x21_c01080{left:465.599040pt;}
.x6_c01080{left:470.718787pt;}
.x19_c01080{left:516.479040pt;}
.x1a_c01080{left:535.999467pt;}
.x12_c01080{left:576.000000pt;}
.x13_c01080{left:595.199707pt;}
.x1b_c01080{left:596.799320pt;}
.x1c_c01080{left:603.199173pt;}
.x1d_c01080{left:614.718787pt;}
.x1e_c01080{left:638.718787pt;}
.x1f_c01080{left:657.919840pt;}
.x14_c01080{left:673.918907pt;}
}





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

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_3e36aee3d1e0c8310b1a66b6.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_66bc244e2ca596d3f64706cf.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.311035;font-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_c01081{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m7_c01081{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.mc_c01081{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.ma_c01081{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.me_c01081{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m1_c01081{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.mf_c01081{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m2_c01081{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m4_c01081{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m0_c01081{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m9_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01081{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mb_c01081{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m8_c01081{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_c01081{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m11_c01081{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m6_c01081{transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);}
.m5_c01081{transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.v1_c01081{vertical-align:1.433580px;}
.ls11_c01081{letter-spacing:-4.543088px;}
.lsf_c01081{letter-spacing:-4.410975px;}
.lsa_c01081{letter-spacing:-3.961500px;}
.ls7_c01081{letter-spacing:-3.787875px;}
.ls10_c01081{letter-spacing:-3.614625px;}
.ls6_c01081{letter-spacing:-3.151800px;}
.ls0_c01081{letter-spacing:-3.031875px;}
.ls9_c01081{letter-spacing:-2.384753px;}
.ls4_c01081{letter-spacing:-2.267213px;}
.ls13_c01081{letter-spacing:-2.224028px;}
.ls2_c01081{letter-spacing:-1.632533px;}
.ls8_c01081{letter-spacing:-1.515000px;}
.ls1_c01081{letter-spacing:-1.512000px;}
.lsc_c01081{letter-spacing:-1.470750px;}
.ls14_c01081{letter-spacing:-1.431315px;}
.ls12_c01081{letter-spacing:-0.818850px;}
.ls3_c01081{letter-spacing:-0.756000px;}
.lsd_c01081{letter-spacing:-0.749250px;}
.ls5_c01081{letter-spacing:0.000000px;}
.lse_c01081{letter-spacing:1.661625px;}
.lsb_c01081{letter-spacing:2.592075px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01081{word-spacing:0.000000px;}
._10_c01081{margin-left:-18.778604px;}
._7_c01081{margin-left:-13.151311px;}
._f_c01081{margin-left:-5.107240px;}
._8_c01081{margin-left:-3.085062px;}
._15_c01081{margin-left:-1.721112px;}
._1_c01081{width:1.178403px;}
._4_c01081{width:3.462940px;}
._5_c01081{width:5.029399px;}
._6_c01081{width:6.463013px;}
._9_c01081{width:7.951145px;}
._2_c01081{width:9.349624px;}
._d_c01081{width:10.552924px;}
._3_c01081{width:11.626589px;}
._a_c01081{width:13.361876px;}
._0_c01081{width:15.324568px;}
._b_c01081{width:16.935793px;}
._e_c01081{width:18.542293px;}
._13_c01081{width:20.955557px;}
._12_c01081{width:22.054604px;}
._16_c01081{width:23.462472px;}
._c_c01081{width:25.388394px;}
._11_c01081{width:28.885803px;}
._14_c01081{width:30.004053px;}
.fc0_c01081{color:transparent;}
.fs5_c01081{font-size:69.750000px;}
.fs6_c01081{font-size:71.250000px;}
.fs8_c01081{font-size:75.000000px;}
.fs4_c01081{font-size:75.750000px;}
.fs9_c01081{font-size:76.500000px;}
.fs2_c01081{font-size:77.250000px;}
.fs0_c01081{font-size:78.750000px;}
.fsa_c01081{font-size:79.500000px;}
.fs7_c01081{font-size:80.250000px;}
.fs3_c01081{font-size:82.500000px;}
.fs1_c01081{font-size:83.250000px;}
.y0_c01081{bottom:0.000000px;}
.y1a_c01081{bottom:187.919100px;}
.y18_c01081{bottom:217.437885px;}
.y19_c01081{bottom:217.438635px;}
.y17_c01081{bottom:276.838950px;}
.y15_c01081{bottom:305.998905px;}
.y16_c01081{bottom:305.999385px;}
.y14_c01081{bottom:485.279040px;}
.y12_c01081{bottom:515.158035px;}
.y13_c01081{bottom:515.158770px;}
.y11_c01081{bottom:574.559100px;}
.y10_c01081{bottom:574.559940px;}
.yf_c01081{bottom:604.439670px;}
.ye_c01081{bottom:604.440645px;}
.yd_c01081{bottom:663.479415px;}
.yc_c01081{bottom:692.998950px;}
.yb_c01081{bottom:692.999745px;}
.ya_c01081{bottom:753.119385px;}
.y9_c01081{bottom:783.000000px;}
.y8_c01081{bottom:783.001815px;}
.y7_c01081{bottom:843.119640px;}
.y6_c01081{bottom:872.999355px;}
.y5_c01081{bottom:932.037420px;}
.y4_c01081{bottom:991.438470px;}
.y3_c01081{bottom:1021.320000px;}
.y2_c01081{bottom:1081.437840px;}
.y1_c01081{bottom:1140.838905px;}
.h7_c01081{height:68.455811px;}
.h8_c01081{height:69.927979px;}
.ha_c01081{height:73.608398px;}
.hc_c01081{height:75.080566px;}
.hb_c01081{height:75.816650px;}
.h6_c01081{height:76.341797px;}
.h1_c01081{height:77.288818px;}
.h4_c01081{height:77.853516px;}
.hd_c01081{height:78.024902px;}
.h3_c01081{height:78.722398px;}
.h9_c01081{height:78.760986px;}
.h5_c01081{height:80.969238px;}
.h2_c01081{height:83.900391px;}
.h0_c01081{height:1263.000000px;}
.w0_c01081{width:892.500000px;}
.x0_c01081{left:0.000000px;}
.x8_c01081{left:140.398665px;}
.x4_c01081{left:141.478980px;}
.x1a_c01081{left:165.958350px;}
.x1_c01081{left:196.199850px;}
.x5_c01081{left:208.080000px;}
.x17_c01081{left:209.879535px;}
.x13_c01081{left:217.079385px;}
.x15_c01081{left:221.398635px;}
.x9_c01081{left:227.878350px;}
.xf_c01081{left:230.759100px;}
.x12_c01081{left:233.998950px;}
.x18_c01081{left:235.080000px;}
.x14_c01081{left:240.119385px;}
.x16_c01081{left:245.158785px;}
.xa_c01081{left:250.918350px;}
.xb_c01081{left:273.239850px;}
.x1b_c01081{left:321.839535px;}
.xc_c01081{left:329.398635px;}
.x2_c01081{left:330.479685px;}
.x1c_c01081{left:344.518635px;}
.x3_c01081{left:371.518635px;}
.xd_c01081{left:399.238770px;}
.xe_c01081{left:431.639100px;}
.x6_c01081{left:604.439670px;}
.x7_c01081{left:621.718545px;}
.x10_c01081{left:693.359850px;}
.x11_c01081{left:719.998950px;}
.x19_c01081{left:749.159370px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.v1_c01081{vertical-align:1.274293pt;}
.ls11_c01081{letter-spacing:-4.038300pt;}
.lsf_c01081{letter-spacing:-3.920867pt;}
.lsa_c01081{letter-spacing:-3.521333pt;}
.ls7_c01081{letter-spacing:-3.367000pt;}
.ls10_c01081{letter-spacing:-3.213000pt;}
.ls6_c01081{letter-spacing:-2.801600pt;}
.ls0_c01081{letter-spacing:-2.695000pt;}
.ls9_c01081{letter-spacing:-2.119780pt;}
.ls4_c01081{letter-spacing:-2.015300pt;}
.ls13_c01081{letter-spacing:-1.976913pt;}
.ls2_c01081{letter-spacing:-1.451140pt;}
.ls8_c01081{letter-spacing:-1.346667pt;}
.ls1_c01081{letter-spacing:-1.344000pt;}
.lsc_c01081{letter-spacing:-1.307333pt;}
.ls14_c01081{letter-spacing:-1.272280pt;}
.ls12_c01081{letter-spacing:-0.727867pt;}
.ls3_c01081{letter-spacing:-0.672000pt;}
.lsd_c01081{letter-spacing:-0.666000pt;}
.ls5_c01081{letter-spacing:0.000000pt;}
.lse_c01081{letter-spacing:1.477000pt;}
.lsb_c01081{letter-spacing:2.304067pt;}
.ws0_c01081{word-spacing:0.000000pt;}
._10_c01081{margin-left:-16.692092pt;}
._7_c01081{margin-left:-11.690054pt;}
._f_c01081{margin-left:-4.539769pt;}
._8_c01081{margin-left:-2.742277pt;}
._15_c01081{margin-left:-1.529877pt;}
._1_c01081{width:1.047469pt;}
._4_c01081{width:3.078169pt;}
._5_c01081{width:4.470577pt;}
._6_c01081{width:5.744900pt;}
._9_c01081{width:7.067685pt;}
._2_c01081{width:8.310777pt;}
._d_c01081{width:9.380377pt;}
._3_c01081{width:10.334746pt;}
._a_c01081{width:11.877223pt;}
._0_c01081{width:13.621838pt;}
._b_c01081{width:15.054038pt;}
._e_c01081{width:16.482038pt;}
._13_c01081{width:18.627162pt;}
._12_c01081{width:19.604092pt;}
._16_c01081{width:20.855531pt;}
._c_c01081{width:22.567462pt;}
._11_c01081{width:25.676269pt;}
._14_c01081{width:26.670269pt;}
.fs5_c01081{font-size:62.000000pt;}
.fs6_c01081{font-size:63.333333pt;}
.fs8_c01081{font-size:66.666667pt;}
.fs4_c01081{font-size:67.333333pt;}
.fs9_c01081{font-size:68.000000pt;}
.fs2_c01081{font-size:68.666667pt;}
.fs0_c01081{font-size:70.000000pt;}
.fsa_c01081{font-size:70.666667pt;}
.fs7_c01081{font-size:71.333333pt;}
.fs3_c01081{font-size:73.333333pt;}
.fs1_c01081{font-size:74.000000pt;}
.y0_c01081{bottom:0.000000pt;}
.y1a_c01081{bottom:167.039200pt;}
.y18_c01081{bottom:193.278120pt;}
.y19_c01081{bottom:193.278787pt;}
.y17_c01081{bottom:246.079067pt;}
.y15_c01081{bottom:271.999027pt;}
.y16_c01081{bottom:271.999453pt;}
.y14_c01081{bottom:431.359147pt;}
.y12_c01081{bottom:457.918253pt;}
.y13_c01081{bottom:457.918907pt;}
.y11_c01081{bottom:510.719200pt;}
.y10_c01081{bottom:510.719947pt;}
.yf_c01081{bottom:537.279707pt;}
.ye_c01081{bottom:537.280573pt;}
.yd_c01081{bottom:589.759480pt;}
.yc_c01081{bottom:615.999067pt;}
.yb_c01081{bottom:615.999773pt;}
.ya_c01081{bottom:669.439453pt;}
.y9_c01081{bottom:696.000000pt;}
.y8_c01081{bottom:696.001613pt;}
.y7_c01081{bottom:749.439680pt;}
.y6_c01081{bottom:775.999427pt;}
.y5_c01081{bottom:828.477707pt;}
.y4_c01081{bottom:881.278640pt;}
.y3_c01081{bottom:907.840000pt;}
.y2_c01081{bottom:961.278080pt;}
.y1_c01081{bottom:1014.079027pt;}
.h7_c01081{height:60.849609pt;}
.h8_c01081{height:62.158203pt;}
.ha_c01081{height:65.429688pt;}
.hc_c01081{height:66.738281pt;}
.hb_c01081{height:67.392578pt;}
.h6_c01081{height:67.859375pt;}
.h1_c01081{height:68.701172pt;}
.h4_c01081{height:69.203125pt;}
.hd_c01081{height:69.355469pt;}
.h3_c01081{height:69.975465pt;}
.h9_c01081{height:70.009766pt;}
.h5_c01081{height:71.972656pt;}
.h2_c01081{height:74.578125pt;}
.h0_c01081{height:1122.666667pt;}
.w0_c01081{width:793.333333pt;}
.x0_c01081{left:0.000000pt;}
.x8_c01081{left:124.798813pt;}
.x4_c01081{left:125.759093pt;}
.x1a_c01081{left:147.518533pt;}
.x1_c01081{left:174.399867pt;}
.x5_c01081{left:184.960000pt;}
.x17_c01081{left:186.559587pt;}
.x13_c01081{left:192.959453pt;}
.x15_c01081{left:196.798787pt;}
.x9_c01081{left:202.558533pt;}
.xf_c01081{left:205.119200pt;}
.x12_c01081{left:207.999067pt;}
.x18_c01081{left:208.960000pt;}
.x14_c01081{left:213.439453pt;}
.x16_c01081{left:217.918920pt;}
.xa_c01081{left:223.038533pt;}
.xb_c01081{left:242.879867pt;}
.x1b_c01081{left:286.079587pt;}
.xc_c01081{left:292.798787pt;}
.x2_c01081{left:293.759720pt;}
.x1c_c01081{left:306.238787pt;}
.x3_c01081{left:330.238787pt;}
.xd_c01081{left:354.878907pt;}
.xe_c01081{left:383.679200pt;}
.x6_c01081{left:537.279707pt;}
.x7_c01081{left:552.638707pt;}
.x10_c01081{left:616.319867pt;}
.x11_c01081{left:639.999067pt;}
.x19_c01081{left:665.919440pt;}
}





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

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_62987b3dfd4eec95af33a1ce.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_b66c2ed8fa254579f21a7c92.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01082;src:url('chunks/assets/font_872ffeec537e52a7f9fc5786.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.432129;font-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_c01082{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m3_c01082{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m9_c01082{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5_c01082{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m6_c01082{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_c01082{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.ma_c01082{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m0_c01082{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m2_c01082{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mb_c01082{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.me_c01082{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_c01082{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.m7_c01082{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.mc_c01082{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_c01082{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.mf_c01082{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls12_c01082{letter-spacing:-7.953750px;}
.ls10_c01082{letter-spacing:-6.878250px;}
.lsa_c01082{letter-spacing:-2.381400px;}
.lse_c01082{letter-spacing:-1.599675px;}
.ls7_c01082{letter-spacing:-1.590750px;}
.ls8_c01082{letter-spacing:-1.588410px;}
.ls9_c01082{letter-spacing:-1.404780px;}
.lsc_c01082{letter-spacing:-1.377765px;}
.ls6_c01082{letter-spacing:-0.795375px;}
.lsd_c01082{letter-spacing:-0.793800px;}
.ls5_c01082{letter-spacing:0.000000px;}
.ls11_c01082{letter-spacing:0.742500px;}
.ls1_c01082{letter-spacing:0.795375px;}
.ls4_c01082{letter-spacing:1.590750px;}
.lsf_c01082{letter-spacing:2.363400px;}
.ls0_c01082{letter-spacing:2.386125px;}
.lsb_c01082{letter-spacing:3.300750px;}
.ls2_c01082{letter-spacing:3.977663px;}
.ls3_c01082{letter-spacing:5.566838px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01082{word-spacing:0.000000px;}
._b_c01082{margin-left:-54.584282px;}
._f_c01082{margin-left:-16.548141px;}
._4_c01082{margin-left:-9.743578px;}
._d_c01082{margin-left:-8.647545px;}
._1_c01082{margin-left:-6.488984px;}
._6_c01082{margin-left:-4.496657px;}
._2_c01082{margin-left:-2.574807px;}
._0_c01082{margin-left:-1.220864px;}
._5_c01082{width:1.463939px;}
._3_c01082{width:2.985023px;}
._c_c01082{width:4.567468px;}
._9_c01082{width:6.150248px;}
._8_c01082{width:8.071382px;}
._10_c01082{width:9.284768px;}
._11_c01082{width:10.473782px;}
._e_c01082{width:12.211691px;}
._a_c01082{width:13.797827px;}
._12_c01082{width:15.207134px;}
._7_c01082{width:17.096880px;}
._14_c01082{width:18.340398px;}
._1b_c01082{width:19.592730px;}
._1a_c01082{width:22.719709px;}
._17_c01082{width:24.412500px;}
._18_c01082{width:25.955586px;}
._16_c01082{width:27.459902px;}
._19_c01082{width:30.239968px;}
._15_c01082{width:40.005000px;}
._13_c01082{width:61.976250px;}
.fc0_c01082{color:transparent;}
.fs5_c01082{font-size:75.000000px;}
.fs6_c01082{font-size:76.500000px;}
.fs4_c01082{font-size:78.000000px;}
.fs0_c01082{font-size:78.750000px;}
.fs2_c01082{font-size:81.000000px;}
.fs3_c01082{font-size:82.500000px;}
.fs1_c01082{font-size:84.750000px;}
.y0_c01082{bottom:0.000000px;}
.y1e_c01082{bottom:330.479685px;}
.y1d_c01082{bottom:360.358635px;}
.y1c_c01082{bottom:360.358950px;}
.y1b_c01082{bottom:419.399820px;}
.y1a_c01082{bottom:448.919535px;}
.y19_c01082{bottom:448.920345px;}
.y17_c01082{bottom:509.039220px;}
.y18_c01082{bottom:509.039985px;}
.y16_c01082{bottom:538.918950px;}
.y15_c01082{bottom:598.680135px;}
.y14_c01082{bottom:628.199850px;}
.y13_c01082{bottom:687.239220px;}
.y12_c01082{bottom:687.239295px;}
.y11_c01082{bottom:718.378920px;}
.yf_c01082{bottom:776.878950px;}
.y10_c01082{bottom:776.879520px;}
.yd_c01082{bottom:807.839040px;}
.ye_c01082{bottom:807.839535px;}
.yb_c01082{bottom:866.519580px;}
.yc_c01082{bottom:866.519715px;}
.ya_c01082{bottom:896.759490px;}
.y9_c01082{bottom:956.519070px;}
.y8_c01082{bottom:956.520060px;}
.y7_c01082{bottom:986.399775px;}
.y5_c01082{bottom:1045.439160px;}
.y6_c01082{bottom:1045.439205px;}
.y4_c01082{bottom:1075.679070px;}
.y2_c01082{bottom:1105.198740px;}
.y3_c01082{bottom:1105.198785px;}
.y1_c01082{bottom:1135.438665px;}
.h9_c01082{height:73.608398px;}
.h7_c01082{height:75.080566px;}
.h6_c01082{height:75.585938px;}
.h5_c01082{height:76.552734px;}
.h1_c01082{height:77.288818px;}
.h8_c01082{height:78.222656px;}
.h4_c01082{height:80.969238px;}
.h3_c01082{height:81.632812px;}
.h2_c01082{height:83.177490px;}
.h0_c01082{height:1263.000000px;}
.w0_c01082{width:892.500000px;}
.x0_c01082{left:0.000000px;}
.x9_c01082{left:129.958950px;}
.x1_c01082{left:131.040000px;}
.x16_c01082{left:132.119415px;}
.x21_c01082{left:143.279250px;}
.x1c_c01082{left:154.439250px;}
.x1f_c01082{left:193.319250px;}
.x14_c01082{left:198.719535px;}
.xe_c01082{left:200.159850px;}
.xa_c01082{left:210.599700px;}
.x17_c01082{left:212.040000px;}
.x19_c01082{left:216.718500px;}
.xf_c01082{left:221.398635px;}
.x15_c01082{left:222.838950px;}
.x1d_c01082{left:230.759100px;}
.xb_c01082{left:233.639700px;}
.x18_c01082{left:241.559685px;}
.x1e_c01082{left:256.679700px;}
.x8_c01082{left:271.799535px;}
.x20_c01082{left:299.878950px;}
.xc_c01082{left:306.719535px;}
.x11_c01082{left:319.319850px;}
.x10_c01082{left:326.158785px;}
.x12_c01082{left:348.839535px;}
.xd_c01082{left:395.278800px;}
.x22_c01082{left:421.558635px;}
.x2_c01082{left:429.478635px;}
.x13_c01082{left:439.199850px;}
.x3_c01082{left:443.519070px;}
.x5_c01082{left:489.599070px;}
.x6_c01082{left:502.558635px;}
.x7_c01082{left:591.119385px;}
.x4_c01082{left:623.878920px;}
.x1a_c01082{left:645.839535px;}
.x1b_c01082{left:682.918350px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls12_c01082{letter-spacing:-7.070000pt;}
.ls10_c01082{letter-spacing:-6.114000pt;}
.lsa_c01082{letter-spacing:-2.116800pt;}
.lse_c01082{letter-spacing:-1.421933pt;}
.ls7_c01082{letter-spacing:-1.414000pt;}
.ls8_c01082{letter-spacing:-1.411920pt;}
.ls9_c01082{letter-spacing:-1.248693pt;}
.lsc_c01082{letter-spacing:-1.224680pt;}
.ls6_c01082{letter-spacing:-0.707000pt;}
.lsd_c01082{letter-spacing:-0.705600pt;}
.ls5_c01082{letter-spacing:0.000000pt;}
.ls11_c01082{letter-spacing:0.660000pt;}
.ls1_c01082{letter-spacing:0.707000pt;}
.ls4_c01082{letter-spacing:1.414000pt;}
.lsf_c01082{letter-spacing:2.100800pt;}
.ls0_c01082{letter-spacing:2.121000pt;}
.lsb_c01082{letter-spacing:2.934000pt;}
.ls2_c01082{letter-spacing:3.535700pt;}
.ls3_c01082{letter-spacing:4.948300pt;}
.ws0_c01082{word-spacing:0.000000pt;}
._b_c01082{margin-left:-48.519362pt;}
._f_c01082{margin-left:-14.709459pt;}
._4_c01082{margin-left:-8.660959pt;}
._d_c01082{margin-left:-7.686707pt;}
._1_c01082{margin-left:-5.767986pt;}
._6_c01082{margin-left:-3.997028pt;}
._2_c01082{margin-left:-2.288717pt;}
._0_c01082{margin-left:-1.085212pt;}
._5_c01082{width:1.301279pt;}
._3_c01082{width:2.653354pt;}
._c_c01082{width:4.059972pt;}
._9_c01082{width:5.466887pt;}
._8_c01082{width:7.174562pt;}
._10_c01082{width:8.253127pt;}
._11_c01082{width:9.310028pt;}
._e_c01082{width:10.854836pt;}
._a_c01082{width:12.264735pt;}
._12_c01082{width:13.517453pt;}
._7_c01082{width:15.197226pt;}
._14_c01082{width:16.302576pt;}
._1b_c01082{width:17.415760pt;}
._1a_c01082{width:20.195297pt;}
._17_c01082{width:21.700000pt;}
._18_c01082{width:23.071632pt;}
._16_c01082{width:24.408802pt;}
._19_c01082{width:26.879972pt;}
._15_c01082{width:35.560000pt;}
._13_c01082{width:55.090000pt;}
.fs5_c01082{font-size:66.666667pt;}
.fs6_c01082{font-size:68.000000pt;}
.fs4_c01082{font-size:69.333333pt;}
.fs0_c01082{font-size:70.000000pt;}
.fs2_c01082{font-size:72.000000pt;}
.fs3_c01082{font-size:73.333333pt;}
.fs1_c01082{font-size:75.333333pt;}
.y0_c01082{bottom:0.000000pt;}
.y1e_c01082{bottom:293.759720pt;}
.y1d_c01082{bottom:320.318787pt;}
.y1c_c01082{bottom:320.319067pt;}
.y1b_c01082{bottom:372.799840pt;}
.y1a_c01082{bottom:399.039587pt;}
.y19_c01082{bottom:399.040307pt;}
.y17_c01082{bottom:452.479307pt;}
.y18_c01082{bottom:452.479987pt;}
.y16_c01082{bottom:479.039067pt;}
.y15_c01082{bottom:532.160120pt;}
.y14_c01082{bottom:558.399867pt;}
.y13_c01082{bottom:610.879307pt;}
.y12_c01082{bottom:610.879373pt;}
.y11_c01082{bottom:638.559040pt;}
.yf_c01082{bottom:690.559067pt;}
.y10_c01082{bottom:690.559573pt;}
.yd_c01082{bottom:718.079147pt;}
.ye_c01082{bottom:718.079587pt;}
.yb_c01082{bottom:770.239627pt;}
.yc_c01082{bottom:770.239747pt;}
.ya_c01082{bottom:797.119547pt;}
.y9_c01082{bottom:850.239173pt;}
.y8_c01082{bottom:850.240053pt;}
.y7_c01082{bottom:876.799800pt;}
.y5_c01082{bottom:929.279253pt;}
.y6_c01082{bottom:929.279293pt;}
.y4_c01082{bottom:956.159173pt;}
.y2_c01082{bottom:982.398880pt;}
.y3_c01082{bottom:982.398920pt;}
.y1_c01082{bottom:1009.278813pt;}
.h9_c01082{height:65.429688pt;}
.h7_c01082{height:66.738281pt;}
.h6_c01082{height:67.187500pt;}
.h5_c01082{height:68.046875pt;}
.h1_c01082{height:68.701172pt;}
.h8_c01082{height:69.531250pt;}
.h4_c01082{height:71.972656pt;}
.h3_c01082{height:72.562500pt;}
.h2_c01082{height:73.935547pt;}
.h0_c01082{height:1122.666667pt;}
.w0_c01082{width:793.333333pt;}
.x0_c01082{left:0.000000pt;}
.x9_c01082{left:115.519067pt;}
.x1_c01082{left:116.480000pt;}
.x16_c01082{left:117.439480pt;}
.x21_c01082{left:127.359333pt;}
.x1c_c01082{left:137.279333pt;}
.x1f_c01082{left:171.839333pt;}
.x14_c01082{left:176.639587pt;}
.xe_c01082{left:177.919867pt;}
.xa_c01082{left:187.199733pt;}
.x17_c01082{left:188.480000pt;}
.x19_c01082{left:192.638667pt;}
.xf_c01082{left:196.798787pt;}
.x15_c01082{left:198.079067pt;}
.x1d_c01082{left:205.119200pt;}
.xb_c01082{left:207.679733pt;}
.x18_c01082{left:214.719720pt;}
.x1e_c01082{left:228.159733pt;}
.x8_c01082{left:241.599587pt;}
.x20_c01082{left:266.559067pt;}
.xc_c01082{left:272.639587pt;}
.x11_c01082{left:283.839867pt;}
.x10_c01082{left:289.918920pt;}
.x12_c01082{left:310.079587pt;}
.xd_c01082{left:351.358933pt;}
.x22_c01082{left:374.718787pt;}
.x2_c01082{left:381.758787pt;}
.x13_c01082{left:390.399867pt;}
.x3_c01082{left:394.239173pt;}
.x5_c01082{left:435.199173pt;}
.x6_c01082{left:446.718787pt;}
.x7_c01082{left:525.439453pt;}
.x4_c01082{left:554.559040pt;}
.x1a_c01082{left:574.079587pt;}
.x1b_c01082{left:607.038533pt;}
}





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

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
.sc__c01083{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
}
.y0_c01083{bottom:0.000000px;}
.h0_c01083{height:1263.000000px;}
.w0_c01083{width:892.500000px;}
.x0_c01083{left:0.000000px;}
@media print{
.y0_c01083{bottom:0.000000pt;}
.h0_c01083{height:1122.666667pt;}
.w0_c01083{width:793.333333pt;}
.x0_c01083{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_c01084 {
    display:none;
  }
  .loading-indicator_c01084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01084 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01084 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01084" -> "#page-container .classname_c01084")
 */
.pf_c01084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01084 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01084 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01084 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01084 {overflow:visible;}
  }
}
.c_c01084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01084 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01084:after { /* webkit #35443 */
  content: '';
}
.t_c01084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01084 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01084 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01084 { /* info for Javascript */
  display:none;
}
.l_c01084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_7c4438e8d902219094b130cf.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01084;src:url('chunks/assets/font_093319670e956ac4bfc8b599.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_225397128b5ff03aaf6f6d4d.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_e9c21c8c9c17f651e8982b43.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01084;src:url('chunks/assets/font_6a6fbae35a629f5ea45e5438.woff2')format("woff");}.ff5_c01084{font-family:ff5_c01084;line-height:1.311035;font-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_c01084{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.ma_c01084{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m12_c01084{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mb_c01084{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m1_c01084{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m8_c01084{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.mf_c01084{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m9_c01084{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m3_c01084{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m11_c01084{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m4_c01084{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m7_c01084{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.me_c01084{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m0_c01084{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m10_c01084{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m5_c01084{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m2_c01084{transform:matrix(0.276188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276188,0.000000,0.000000,0.250000,0,0);}
.mc_c01084{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.md_c01084{transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls9_c01084{letter-spacing:-16.341975px;}
.lsc_c01084{letter-spacing:-8.778000px;}
.lse_c01084{letter-spacing:-8.671163px;}
.ls14_c01084{letter-spacing:-7.946663px;}
.ls11_c01084{letter-spacing:-7.222163px;}
.ls2_c01084{letter-spacing:-6.504750px;}
.ls8_c01084{letter-spacing:-5.779463px;}
.ls15_c01084{letter-spacing:-5.510145px;}
.lsf_c01084{letter-spacing:-5.054963px;}
.ls3_c01084{letter-spacing:-4.330463px;}
.lsa_c01084{letter-spacing:-3.823875px;}
.ls12_c01084{letter-spacing:-3.717900px;}
.ls10_c01084{letter-spacing:-3.614625px;}
.lsd_c01084{letter-spacing:-2.890125px;}
.ls18_c01084{letter-spacing:-2.849963px;}
.lsb_c01084{letter-spacing:-2.800350px;}
.ls6_c01084{letter-spacing:-2.431575px;}
.ls1a_c01084{letter-spacing:-2.380118px;}
.ls16_c01084{letter-spacing:-2.360355px;}
.ls1b_c01084{letter-spacing:-2.310398px;}
.ls13_c01084{letter-spacing:-2.165625px;}
.ls4_c01084{letter-spacing:-1.621050px;}
.ls5_c01084{letter-spacing:-0.810525px;}
.ls7_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:0.810525px;}
.ls19_c01084{letter-spacing:1.621050px;}
.ls17_c01084{letter-spacing:1.621800px;}
.ls1_c01084{letter-spacing:2.890125px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:0.000000px;}
._15_c01084{margin-left:-93.964818px;}
._13_c01084{margin-left:-39.816520px;}
._14_c01084{margin-left:-6.588463px;}
._f_c01084{margin-left:-4.929967px;}
._2_c01084{width:2.481071px;}
._3_c01084{width:4.469795px;}
._4_c01084{width:6.251426px;}
._a_c01084{width:7.476496px;}
._b_c01084{width:8.649156px;}
._8_c01084{width:10.753468px;}
._9_c01084{width:11.766834px;}
._12_c01084{width:13.130569px;}
._7_c01084{width:14.725988px;}
._1_c01084{width:16.609869px;}
._11_c01084{width:18.016101px;}
._10_c01084{width:20.556308px;}
._5_c01084{width:28.636823px;}
._6_c01084{width:30.054952px;}
._d_c01084{width:32.574780px;}
._0_c01084{width:46.868532px;}
._e_c01084{width:47.951901px;}
._c_c01084{width:53.997069px;}
.fc0_c01084{color:transparent;}
.fs2_c01084{font-size:73.291800px;}
.fs5_c01084{font-size:73.500000px;}
.fs4_c01084{font-size:77.250000px;}
.fsb_c01084{font-size:78.000000px;}
.fs0_c01084{font-size:78.750000px;}
.fs9_c01084{font-size:79.500000px;}
.fs1_c01084{font-size:80.250000px;}
.fs7_c01084{font-size:81.000000px;}
.fs8_c01084{font-size:81.750000px;}
.fs6_c01084{font-size:82.500000px;}
.fs3_c01084{font-size:83.250000px;}
.fsa_c01084{font-size:96.000000px;}
.y0_c01084{bottom:0.000000px;}
.y1d_c01084{bottom:184.319625px;}
.y1b_c01084{bottom:214.558920px;}
.y1c_c01084{bottom:214.559685px;}
.y1a_c01084{bottom:244.438635px;}
.y19_c01084{bottom:304.199850px;}
.y18_c01084{bottom:333.358110px;}
.y17_c01084{bottom:362.880000px;}
.y16_c01084{bottom:362.880930px;}
.y15_c01084{bottom:393.479235px;}
.y14_c01084{bottom:393.479325px;}
.y13_c01084{bottom:453.238770px;}
.y12_c01084{bottom:483.839535px;}
.y11_c01084{bottom:514.079400px;}
.y10_c01084{bottom:514.080030px;}
.yf_c01084{bottom:573.118785px;}
.ye_c01084{bottom:602.999400px;}
.yd_c01084{bottom:602.999640px;}
.yc_c01084{bottom:632.160780px;}
.ya_c01084{bottom:662.757975px;}
.yb_c01084{bottom:662.759085px;}
.y9_c01084{bottom:842.758800px;}
.y8_c01084{bottom:871.919955px;}
.y7_c01084{bottom:902.519295px;}
.y6_c01084{bottom:962.278755px;}
.y5_c01084{bottom:991.800105px;}
.y4_c01084{bottom:1022.039175px;}
.y3_c01084{bottom:1082.158815px;}
.y2_c01084{bottom:1111.319190px;}
.y1_c01084{bottom:1141.559055px;}
.h6_c01084{height:72.136230px;}
.h3_c01084{height:76.441057px;}
.hf_c01084{height:76.552734px;}
.h1_c01084{height:77.288818px;}
.h5_c01084{height:77.853516px;}
.ha_c01084{height:78.024902px;}
.h2_c01084{height:78.721802px;}
.hb_c01084{height:78.760986px;}
.h8_c01084{height:79.497070px;}
.h9_c01084{height:80.193237px;}
.h7_c01084{height:81.533203px;}
.hd_c01084{height:81.705322px;}
.he_c01084{height:82.133789px;}
.h4_c01084{height:82.274414px;}
.hc_c01084{height:100.125000px;}
.h0_c01084{height:1263.000000px;}
.w0_c01084{width:892.500000px;}
.x0_c01084{left:0.000000px;}
.x8_c01084{left:136.438665px;}
.x1_c01084{left:138.239850px;}
.x10_c01084{left:140.040360px;}
.x1f_c01084{left:141.118245px;}
.x24_c01084{left:142.199640px;}
.x16_c01084{left:174.239250px;}
.x1b_c01084{left:191.519685px;}
.x17_c01084{left:195.838950px;}
.x3_c01084{left:198.358635px;}
.x1d_c01084{left:209.518635px;}
.x9_c01084{left:218.519685px;}
.x1e_c01084{left:228.239250px;}
.x23_c01084{left:229.318800px;}
.x4_c01084{left:231.120000px;}
.x18_c01084{left:236.518635px;}
.x1c_c01084{left:237.599700px;}
.xa_c01084{left:243.000000px;}
.x5_c01084{left:289.798515px;}
.x6_c01084{left:313.199385px;}
.xb_c01084{left:321.839535px;}
.xc_c01084{left:336.598530px;}
.x7_c01084{left:356.039385px;}
.x19_c01084{left:357.838950px;}
.x1a_c01084{left:397.439250px;}
.xd_c01084{left:421.919535px;}
.x20_c01084{left:424.080000px;}
.x25_c01084{left:435.239820px;}
.x21_c01084{left:438.118785px;}
.x2_c01084{left:441.358665px;}
.x26_c01084{left:460.799565px;}
.x22_c01084{left:462.958335px;}
.xe_c01084{left:466.559100px;}
.x11_c01084{left:483.119385px;}
.xf_c01084{left:486.000000px;}
.x12_c01084{left:525.959385px;}
.x13_c01084{left:627.479685px;}
.x14_c01084{left:653.398635px;}
.x15_c01084{left:721.798560px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls9_c01084{letter-spacing:-14.526200pt;}
.lsc_c01084{letter-spacing:-7.802667pt;}
.lse_c01084{letter-spacing:-7.707700pt;}
.ls14_c01084{letter-spacing:-7.063700pt;}
.ls11_c01084{letter-spacing:-6.419700pt;}
.ls2_c01084{letter-spacing:-5.782000pt;}
.ls8_c01084{letter-spacing:-5.137300pt;}
.ls15_c01084{letter-spacing:-4.897907pt;}
.lsf_c01084{letter-spacing:-4.493300pt;}
.ls3_c01084{letter-spacing:-3.849300pt;}
.lsa_c01084{letter-spacing:-3.399000pt;}
.ls12_c01084{letter-spacing:-3.304800pt;}
.ls10_c01084{letter-spacing:-3.213000pt;}
.lsd_c01084{letter-spacing:-2.569000pt;}
.ls18_c01084{letter-spacing:-2.533300pt;}
.lsb_c01084{letter-spacing:-2.489200pt;}
.ls6_c01084{letter-spacing:-2.161400pt;}
.ls1a_c01084{letter-spacing:-2.115660pt;}
.ls16_c01084{letter-spacing:-2.098093pt;}
.ls1b_c01084{letter-spacing:-2.053687pt;}
.ls13_c01084{letter-spacing:-1.925000pt;}
.ls4_c01084{letter-spacing:-1.440933pt;}
.ls5_c01084{letter-spacing:-0.720467pt;}
.ls7_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:0.720467pt;}
.ls19_c01084{letter-spacing:1.440933pt;}
.ls17_c01084{letter-spacing:1.441600pt;}
.ls1_c01084{letter-spacing:2.569000pt;}
.ws0_c01084{word-spacing:0.000000pt;}
._15_c01084{margin-left:-83.524283pt;}
._13_c01084{margin-left:-35.392462pt;}
._14_c01084{margin-left:-5.856412pt;}
._f_c01084{margin-left:-4.382193pt;}
._2_c01084{width:2.205396pt;}
._3_c01084{width:3.973151pt;}
._4_c01084{width:5.556823pt;}
._a_c01084{width:6.645774pt;}
._b_c01084{width:7.688139pt;}
._8_c01084{width:9.558638pt;}
._9_c01084{width:10.459408pt;}
._12_c01084{width:11.671617pt;}
._7_c01084{width:13.089768pt;}
._1_c01084{width:14.764328pt;}
._11_c01084{width:16.014312pt;}
._10_c01084{width:18.272273pt;}
._5_c01084{width:25.454954pt;}
._6_c01084{width:26.715513pt;}
._d_c01084{width:28.955360pt;}
._0_c01084{width:41.660917pt;}
._e_c01084{width:42.623912pt;}
._c_c01084{width:47.997394pt;}
.fs2_c01084{font-size:65.148267pt;}
.fs5_c01084{font-size:65.333333pt;}
.fs4_c01084{font-size:68.666667pt;}
.fsb_c01084{font-size:69.333333pt;}
.fs0_c01084{font-size:70.000000pt;}
.fs9_c01084{font-size:70.666667pt;}
.fs1_c01084{font-size:71.333333pt;}
.fs7_c01084{font-size:72.000000pt;}
.fs8_c01084{font-size:72.666667pt;}
.fs6_c01084{font-size:73.333333pt;}
.fs3_c01084{font-size:74.000000pt;}
.fsa_c01084{font-size:85.333333pt;}
.y0_c01084{bottom:0.000000pt;}
.y1d_c01084{bottom:163.839667pt;}
.y1b_c01084{bottom:190.719040pt;}
.y1c_c01084{bottom:190.719720pt;}
.y1a_c01084{bottom:217.278787pt;}
.y19_c01084{bottom:270.399867pt;}
.y18_c01084{bottom:296.318320pt;}
.y17_c01084{bottom:322.560000pt;}
.y16_c01084{bottom:322.560827pt;}
.y15_c01084{bottom:349.759320pt;}
.y14_c01084{bottom:349.759400pt;}
.y13_c01084{bottom:402.878907pt;}
.y12_c01084{bottom:430.079587pt;}
.y11_c01084{bottom:456.959467pt;}
.y10_c01084{bottom:456.960027pt;}
.yf_c01084{bottom:509.438920pt;}
.ye_c01084{bottom:535.999467pt;}
.yd_c01084{bottom:535.999680pt;}
.yc_c01084{bottom:561.920693pt;}
.ya_c01084{bottom:589.118200pt;}
.yb_c01084{bottom:589.119187pt;}
.y9_c01084{bottom:749.118933pt;}
.y8_c01084{bottom:775.039960pt;}
.y7_c01084{bottom:802.239373pt;}
.y6_c01084{bottom:855.358893pt;}
.y5_c01084{bottom:881.600093pt;}
.y4_c01084{bottom:908.479267pt;}
.y3_c01084{bottom:961.918947pt;}
.y2_c01084{bottom:987.839280pt;}
.y1_c01084{bottom:1014.719160pt;}
.h6_c01084{height:64.121094pt;}
.h3_c01084{height:67.947606pt;}
.hf_c01084{height:68.046875pt;}
.h1_c01084{height:68.701172pt;}
.h5_c01084{height:69.203125pt;}
.ha_c01084{height:69.355469pt;}
.h2_c01084{height:69.974935pt;}
.hb_c01084{height:70.009766pt;}
.h8_c01084{height:70.664062pt;}
.h9_c01084{height:71.282878pt;}
.h7_c01084{height:72.473958pt;}
.hd_c01084{height:72.626953pt;}
.he_c01084{height:73.007812pt;}
.h4_c01084{height:73.132813pt;}
.hc_c01084{height:89.000000pt;}
.h0_c01084{height:1122.666667pt;}
.w0_c01084{width:793.333333pt;}
.x0_c01084{left:0.000000pt;}
.x8_c01084{left:121.278813pt;}
.x1_c01084{left:122.879867pt;}
.x10_c01084{left:124.480320pt;}
.x1f_c01084{left:125.438440pt;}
.x24_c01084{left:126.399680pt;}
.x16_c01084{left:154.879333pt;}
.x1b_c01084{left:170.239720pt;}
.x17_c01084{left:174.079067pt;}
.x3_c01084{left:176.318787pt;}
.x1d_c01084{left:186.238787pt;}
.x9_c01084{left:194.239720pt;}
.x1e_c01084{left:202.879333pt;}
.x23_c01084{left:203.838933pt;}
.x4_c01084{left:205.440000pt;}
.x18_c01084{left:210.238787pt;}
.x1c_c01084{left:211.199733pt;}
.xa_c01084{left:216.000000pt;}
.x5_c01084{left:257.598680pt;}
.x6_c01084{left:278.399453pt;}
.xb_c01084{left:286.079587pt;}
.xc_c01084{left:299.198693pt;}
.x7_c01084{left:316.479453pt;}
.x19_c01084{left:318.079067pt;}
.x1a_c01084{left:353.279333pt;}
.xd_c01084{left:375.039587pt;}
.x20_c01084{left:376.960000pt;}
.x25_c01084{left:386.879840pt;}
.x21_c01084{left:389.438920pt;}
.x2_c01084{left:392.318813pt;}
.x26_c01084{left:409.599613pt;}
.x22_c01084{left:411.518520pt;}
.xe_c01084{left:414.719200pt;}
.x11_c01084{left:429.439453pt;}
.xf_c01084{left:432.000000pt;}
.x12_c01084{left:467.519453pt;}
.x13_c01084{left:557.759720pt;}
.x14_c01084{left:580.798787pt;}
.x15_c01084{left:641.598720pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_6e716108cf2a20a0fd2cfb23.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_235813859e4f48d6f8f53fd3.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01085;src:url('chunks/assets/font_2fb904f747a2e74886bebea8.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_5967a66dec4f15f75b22609d.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01085;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff5_c01085{font-family:ff5_c01085;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01085;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff6_c01085{font-family:ff6_c01085;line-height:1.432129;font-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_c01085{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.mb_c01085{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m7_c01085{transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);}
.mc_c01085{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m17_c01085{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.ma_c01085{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m13_c01085{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.m10_c01085{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m0_c01085{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m8_c01085{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m15_c01085{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1_c01085{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m18_c01085{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m14_c01085{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5_c01085{transform:matrix(0.243644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243644,0.000000,0.000000,0.250000,0,0);}
.m12_c01085{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.mf_c01085{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m2_c01085{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.md_c01085{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m11_c01085{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m3_c01085{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m4_c01085{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m16_c01085{transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);}
.m9_c01085{transform:matrix(0.299528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299528,0.000000,0.000000,0.250000,0,0);}
.me_c01085{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.v0_c01085{vertical-align:0.000000px;}
.ls1d_c01085{letter-spacing:-9.843750px;}
.ls1e_c01085{letter-spacing:-8.233650px;}
.lsc_c01085{letter-spacing:-7.700385px;}
.ls17_c01085{letter-spacing:-7.576538px;}
.ls1b_c01085{letter-spacing:-6.055875px;}
.ls12_c01085{letter-spacing:-4.543088px;}
.ls8_c01085{letter-spacing:-4.371705px;}
.lsb_c01085{letter-spacing:-4.334498px;}
.ls11_c01085{letter-spacing:-3.242903px;}
.lsf_c01085{letter-spacing:-3.132300px;}
.ls14_c01085{letter-spacing:-3.052500px;}
.ls5_c01085{letter-spacing:-3.031875px;}
.ls18_c01085{letter-spacing:-2.974125px;}
.ls13_c01085{letter-spacing:-2.969250px;}
.ls15_c01085{letter-spacing:-2.488350px;}
.lse_c01085{letter-spacing:-2.425500px;}
.ls6_c01085{letter-spacing:-2.267213px;}
.ls2_c01085{letter-spacing:-1.621050px;}
.ls4_c01085{letter-spacing:-1.603118px;}
.ls7_c01085{letter-spacing:-1.512000px;}
.ls9_c01085{letter-spacing:-0.810525px;}
.ls19_c01085{letter-spacing:-0.764400px;}
.lsa_c01085{letter-spacing:-0.756000px;}
.ls3_c01085{letter-spacing:0.000000px;}
.ls1a_c01085{letter-spacing:0.779220px;}
.ls1f_c01085{letter-spacing:0.834750px;}
.ls0_c01085{letter-spacing:1.512000px;}
.ls10_c01085{letter-spacing:1.677375px;}
.ls1_c01085{letter-spacing:3.031875px;}
.lsd_c01085{letter-spacing:3.569108px;}
.ls1c_c01085{letter-spacing:12.036698px;}
.ls16_c01085{letter-spacing:25.936800px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01085{word-spacing:0.000000px;}
._1_c01085{margin-left:-15.190330px;}
._b_c01085{margin-left:-9.253078px;}
._e_c01085{margin-left:-7.064172px;}
._4_c01085{margin-left:-5.054129px;}
._a_c01085{margin-left:-2.479676px;}
._f_c01085{width:1.321621px;}
._0_c01085{width:2.744842px;}
._c_c01085{width:4.566857px;}
._3_c01085{width:5.615425px;}
._7_c01085{width:8.410015px;}
._6_c01085{width:9.621894px;}
._d_c01085{width:11.387371px;}
._2_c01085{width:12.466125px;}
._8_c01085{width:15.177185px;}
._5_c01085{width:16.475406px;}
._11_c01085{width:19.457684px;}
._12_c01085{width:22.182286px;}
._13_c01085{width:24.633666px;}
._10_c01085{width:45.674165px;}
._9_c01085{width:48.171496px;}
.fc0_c01085{color:transparent;}
.fsb_c01085{font-size:69.000000px;}
.fs8_c01085{font-size:76.500000px;}
.fs4_c01085{font-size:77.250000px;}
.fsa_c01085{font-size:78.000000px;}
.fs2_c01085{font-size:78.750000px;}
.fs3_c01085{font-size:79.500000px;}
.fs0_c01085{font-size:80.250000px;}
.fs1_c01085{font-size:81.750000px;}
.fs6_c01085{font-size:82.500000px;}
.fs5_c01085{font-size:88.500000px;}
.fs7_c01085{font-size:89.250000px;}
.fs9_c01085{font-size:114.000000px;}
.y0_c01085{bottom:0.000000px;}
.y20_c01085{bottom:184.319850px;}
.y1e_c01085{bottom:213.839190px;}
.y1f_c01085{bottom:213.839535px;}
.y1d_c01085{bottom:273.600750px;}
.y1c_c01085{bottom:303.480030px;}
.y1a_c01085{bottom:334.080045px;}
.y1b_c01085{bottom:334.080435px;}
.y19_c01085{bottom:392.760720px;}
.y18_c01085{bottom:422.639700px;}
.y16_c01085{bottom:452.879130px;}
.y17_c01085{bottom:452.879520px;}
.y15_c01085{bottom:513.359250px;}
.y14_c01085{bottom:542.880570px;}
.y13_c01085{bottom:572.759535px;}
.y12_c01085{bottom:572.760660px;}
.y11_c01085{bottom:602.280195px;}
.y10_c01085{bottom:662.399820px;}
.ye_c01085{bottom:692.279640px;}
.yf_c01085{bottom:692.280435px;}
.yd_c01085{bottom:722.159370px;}
.yc_c01085{bottom:722.159565px;}
.yb_c01085{bottom:781.200435px;}
.ya_c01085{bottom:811.079400px;}
.y9_c01085{bottom:841.680090px;}
.y8_c01085{bottom:841.680225px;}
.y7_c01085{bottom:901.439670px;}
.y6_c01085{bottom:931.320285px;}
.y5_c01085{bottom:961.199340px;}
.y4_c01085{bottom:1020.599670px;}
.y3_c01085{bottom:1050.119385px;}
.y2_c01085{bottom:1080.360015px;}
.y1_c01085{bottom:1140.479640px;}
.h10_c01085{height:71.964844px;}
.ha_c01085{height:75.080566px;}
.h5_c01085{height:75.816650px;}
.h11_c01085{height:76.552734px;}
.h3_c01085{height:77.288818px;}
.he_c01085{height:77.853516px;}
.hd_c01085{height:77.986084px;}
.h4_c01085{height:78.024902px;}
.hf_c01085{height:78.609375px;}
.h1_c01085{height:78.721802px;}
.hb_c01085{height:78.760986px;}
.h2_c01085{height:80.233154px;}
.h7_c01085{height:80.928955px;}
.h9_c01085{height:80.969238px;}
.h6_c01085{height:87.462891px;}
.h8_c01085{height:89.947266px;}
.hc_c01085{height:118.898438px;}
.h0_c01085{height:1263.000000px;}
.w0_c01085{width:892.500000px;}
.x0_c01085{left:0.000000px;}
.x4_c01085{left:140.039400px;}
.x1_c01085{left:141.838950px;}
.x10_c01085{left:142.918830px;}
.x29_c01085{left:143.999400px;}
.x18_c01085{left:156.599700px;}
.x1f_c01085{left:164.158785px;}
.x5_c01085{left:166.678500px;}
.x19_c01085{left:173.159850px;}
.x2a_c01085{left:176.759100px;}
.x1c_c01085{left:225.358635px;}
.x1d_c01085{left:236.159385px;}
.x26_c01085{left:239.758500px;}
.x27_c01085{left:263.159385px;}
.x20_c01085{left:268.918950px;}
.x28_c01085{left:278.638500px;}
.x1e_c01085{left:288.359850px;}
.x13_c01085{left:290.159385px;}
.x6_c01085{left:296.639100px;}
.xc_c01085{left:305.999385px;}
.x7_c01085{left:322.198785px;}
.xb_c01085{left:326.158785px;}
.xd_c01085{left:330.479685px;}
.x2_c01085{left:332.279250px;}
.x25_c01085{left:333.358635px;}
.xe_c01085{left:338.759100px;}
.x9_c01085{left:340.919535px;}
.x1a_c01085{left:343.798515px;}
.x21_c01085{left:344.879535px;}
.xa_c01085{left:356.039385px;}
.x3_c01085{left:362.878350px;}
.xf_c01085{left:367.919535px;}
.x1b_c01085{left:374.758500px;}
.x22_c01085{left:389.878320px;}
.x11_c01085{left:407.519670px;}
.x14_c01085{left:415.078815px;}
.x12_c01085{left:450.719100px;}
.x15_c01085{left:458.279850px;}
.x23_c01085{left:474.119985px;}
.x24_c01085{left:511.198785px;}
.x8_c01085{left:568.799520px;}
.x16_c01085{left:590.039985px;}
.x17_c01085{left:605.159820px;}
.x2b_c01085{left:633.598530px;}
.x2c_c01085{left:676.799520px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls1d_c01085{letter-spacing:-8.750000pt;}
.ls1e_c01085{letter-spacing:-7.318800pt;}
.lsc_c01085{letter-spacing:-6.844787pt;}
.ls17_c01085{letter-spacing:-6.734700pt;}
.ls1b_c01085{letter-spacing:-5.383000pt;}
.ls12_c01085{letter-spacing:-4.038300pt;}
.ls8_c01085{letter-spacing:-3.885960pt;}
.lsb_c01085{letter-spacing:-3.852887pt;}
.ls11_c01085{letter-spacing:-2.882580pt;}
.lsf_c01085{letter-spacing:-2.784267pt;}
.ls14_c01085{letter-spacing:-2.713333pt;}
.ls5_c01085{letter-spacing:-2.695000pt;}
.ls18_c01085{letter-spacing:-2.643667pt;}
.ls13_c01085{letter-spacing:-2.639333pt;}
.ls15_c01085{letter-spacing:-2.211867pt;}
.lse_c01085{letter-spacing:-2.156000pt;}
.ls6_c01085{letter-spacing:-2.015300pt;}
.ls2_c01085{letter-spacing:-1.440933pt;}
.ls4_c01085{letter-spacing:-1.424993pt;}
.ls7_c01085{letter-spacing:-1.344000pt;}
.ls9_c01085{letter-spacing:-0.720467pt;}
.ls19_c01085{letter-spacing:-0.679467pt;}
.lsa_c01085{letter-spacing:-0.672000pt;}
.ls3_c01085{letter-spacing:0.000000pt;}
.ls1a_c01085{letter-spacing:0.692640pt;}
.ls1f_c01085{letter-spacing:0.742000pt;}
.ls0_c01085{letter-spacing:1.344000pt;}
.ls10_c01085{letter-spacing:1.491000pt;}
.ls1_c01085{letter-spacing:2.695000pt;}
.lsd_c01085{letter-spacing:3.172540pt;}
.ls1c_c01085{letter-spacing:10.699287pt;}
.ls16_c01085{letter-spacing:23.054933pt;}
.ws0_c01085{word-spacing:0.000000pt;}
._1_c01085{margin-left:-13.502515pt;}
._b_c01085{margin-left:-8.224958pt;}
._e_c01085{margin-left:-6.279264pt;}
._4_c01085{margin-left:-4.492559pt;}
._a_c01085{margin-left:-2.204157pt;}
._f_c01085{width:1.174774pt;}
._0_c01085{width:2.439859pt;}
._c_c01085{width:4.059429pt;}
._3_c01085{width:4.991489pt;}
._7_c01085{width:7.475569pt;}
._6_c01085{width:8.552795pt;}
._d_c01085{width:10.122108pt;}
._2_c01085{width:11.081000pt;}
._8_c01085{width:13.490831pt;}
._5_c01085{width:14.644805pt;}
._11_c01085{width:17.295719pt;}
._12_c01085{width:19.717587pt;}
._13_c01085{width:21.896592pt;}
._10_c01085{width:40.599258pt;}
._9_c01085{width:42.819108pt;}
.fsb_c01085{font-size:61.333333pt;}
.fs8_c01085{font-size:68.000000pt;}
.fs4_c01085{font-size:68.666667pt;}
.fsa_c01085{font-size:69.333333pt;}
.fs2_c01085{font-size:70.000000pt;}
.fs3_c01085{font-size:70.666667pt;}
.fs0_c01085{font-size:71.333333pt;}
.fs1_c01085{font-size:72.666667pt;}
.fs6_c01085{font-size:73.333333pt;}
.fs5_c01085{font-size:78.666667pt;}
.fs7_c01085{font-size:79.333333pt;}
.fs9_c01085{font-size:101.333333pt;}
.y0_c01085{bottom:0.000000pt;}
.y20_c01085{bottom:163.839867pt;}
.y1e_c01085{bottom:190.079280pt;}
.y1f_c01085{bottom:190.079587pt;}
.y1d_c01085{bottom:243.200667pt;}
.y1c_c01085{bottom:269.760027pt;}
.y1a_c01085{bottom:296.960040pt;}
.y1b_c01085{bottom:296.960387pt;}
.y19_c01085{bottom:349.120640pt;}
.y18_c01085{bottom:375.679733pt;}
.y16_c01085{bottom:402.559227pt;}
.y17_c01085{bottom:402.559573pt;}
.y15_c01085{bottom:456.319333pt;}
.y14_c01085{bottom:482.560507pt;}
.y13_c01085{bottom:509.119587pt;}
.y12_c01085{bottom:509.120587pt;}
.y11_c01085{bottom:535.360173pt;}
.y10_c01085{bottom:588.799840pt;}
.ye_c01085{bottom:615.359680pt;}
.yf_c01085{bottom:615.360387pt;}
.yd_c01085{bottom:641.919440pt;}
.yc_c01085{bottom:641.919613pt;}
.yb_c01085{bottom:694.400387pt;}
.ya_c01085{bottom:720.959467pt;}
.y9_c01085{bottom:748.160080pt;}
.y8_c01085{bottom:748.160200pt;}
.y7_c01085{bottom:801.279707pt;}
.y6_c01085{bottom:827.840253pt;}
.y5_c01085{bottom:854.399413pt;}
.y4_c01085{bottom:907.199707pt;}
.y3_c01085{bottom:933.439453pt;}
.y2_c01085{bottom:960.320013pt;}
.y1_c01085{bottom:1013.759680pt;}
.h10_c01085{height:63.968750pt;}
.ha_c01085{height:66.738281pt;}
.h5_c01085{height:67.392578pt;}
.h11_c01085{height:68.046875pt;}
.h3_c01085{height:68.701172pt;}
.he_c01085{height:69.203125pt;}
.hd_c01085{height:69.320964pt;}
.h4_c01085{height:69.355469pt;}
.hf_c01085{height:69.875000pt;}
.h1_c01085{height:69.974935pt;}
.hb_c01085{height:70.009766pt;}
.h2_c01085{height:71.318359pt;}
.h7_c01085{height:71.936849pt;}
.h9_c01085{height:71.972656pt;}
.h6_c01085{height:77.744792pt;}
.h8_c01085{height:79.953125pt;}
.hc_c01085{height:105.687500pt;}
.h0_c01085{height:1122.666667pt;}
.w0_c01085{width:793.333333pt;}
.x0_c01085{left:0.000000pt;}
.x4_c01085{left:124.479467pt;}
.x1_c01085{left:126.079067pt;}
.x10_c01085{left:127.038960pt;}
.x29_c01085{left:127.999467pt;}
.x18_c01085{left:139.199733pt;}
.x1f_c01085{left:145.918920pt;}
.x5_c01085{left:148.158667pt;}
.x19_c01085{left:153.919867pt;}
.x2a_c01085{left:157.119200pt;}
.x1c_c01085{left:200.318787pt;}
.x1d_c01085{left:209.919453pt;}
.x26_c01085{left:213.118667pt;}
.x27_c01085{left:233.919453pt;}
.x20_c01085{left:239.039067pt;}
.x28_c01085{left:247.678667pt;}
.x1e_c01085{left:256.319867pt;}
.x13_c01085{left:257.919453pt;}
.x6_c01085{left:263.679200pt;}
.xc_c01085{left:271.999453pt;}
.x7_c01085{left:286.398920pt;}
.xb_c01085{left:289.918920pt;}
.xd_c01085{left:293.759720pt;}
.x2_c01085{left:295.359333pt;}
.x25_c01085{left:296.318787pt;}
.xe_c01085{left:301.119200pt;}
.x9_c01085{left:303.039587pt;}
.x1a_c01085{left:305.598680pt;}
.x21_c01085{left:306.559587pt;}
.xa_c01085{left:316.479453pt;}
.x3_c01085{left:322.558533pt;}
.xf_c01085{left:327.039587pt;}
.x1b_c01085{left:333.118667pt;}
.x22_c01085{left:346.558507pt;}
.x11_c01085{left:362.239707pt;}
.x14_c01085{left:368.958947pt;}
.x12_c01085{left:400.639200pt;}
.x15_c01085{left:407.359867pt;}
.x23_c01085{left:421.439987pt;}
.x24_c01085{left:454.398920pt;}
.x8_c01085{left:505.599573pt;}
.x16_c01085{left:524.479987pt;}
.x17_c01085{left:537.919840pt;}
.x2b_c01085{left:563.198693pt;}
.x2c_c01085{left:601.599573pt;}
}





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

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_2b373beeacb418d2fb48a4fc.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_9ccf24ae46660ee8672fb39f.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01086;src:url('chunks/assets/font_4f36caf5046f95b4bd3769a4.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_bb40badf77163c08e9516fb9.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01086;src:url('chunks/assets/font_3c4c65ffede32c14d9338a26.woff2')format("woff");}.ff5_c01086{font-family:ff5_c01086;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01086;src:url('chunks/assets/font_2c62cc7473e90e08a6ebe6f7.woff2')format("woff");}.ff6_c01086{font-family:ff6_c01086;line-height:1.432129;font-style:normal;font-weight: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_c01086;src:url('chunks/assets/font_df7e7a061b5129498a3348c7.woff2')format("woff");}.ff7_c01086{font-family:ff7_c01086;line-height:1.364746;font-style:normal;font-weight: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_c01086;src:url('chunks/assets/font_f5e9bff2a1077c19f34030f8.woff2')format("woff");}.ff8_c01086{font-family:ff8_c01086;line-height:1.281250;font-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_c01086{transform:matrix(0.170103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170103,0.000000,0.000000,0.250000,0,0);}
.md_c01086{transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185976,0.000000,0.000000,0.250000,0,0);}
.m1c_c01086{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m1d_c01086{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m18_c01086{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.mc_c01086{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m28_c01086{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m1b_c01086{transform:matrix(0.205752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205752,0.000000,0.000000,0.250000,0,0);}
.m27_c01086{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m22_c01086{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m1e_c01086{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m29_c01086{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m17_c01086{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m15_c01086{transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);}
.m3_c01086{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m16_c01086{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m6_c01086{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m26_c01086{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1f_c01086{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m21_c01086{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m0_c01086{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m25_c01086{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m14_c01086{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m4_c01086{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m8_c01086{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m19_c01086{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m2a_c01086{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m24_c01086{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m20_c01086{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m2b_c01086{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m2_c01086{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m2c_c01086{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m7_c01086{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m1_c01086{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2d_c01086{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m5_c01086{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1a_c01086{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m2e_c01086{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m9_c01086{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m11_c01086{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_c01086{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.mf_c01086{transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351190,0.000000,0.000000,0.250000,0,0);}
.m23_c01086{transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);}
.mb_c01086{transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);}
.m10_c01086{transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575758,0.000000,0.000000,0.250000,0,0);}
.m12_c01086{transform:matrix(0.705882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705882,0.000000,0.000000,0.250000,0,0);}
.m13_c01086{transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721154,0.000000,0.000000,0.250000,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls2a_c01086{letter-spacing:-14.875560px;}
.ls18_c01086{letter-spacing:-12.278700px;}
.ls36_c01086{letter-spacing:-9.286800px;}
.ls26_c01086{letter-spacing:-8.915775px;}
.ls1e_c01086{letter-spacing:-8.914500px;}
.ls24_c01086{letter-spacing:-8.550855px;}
.ls32_c01086{letter-spacing:-7.848698px;}
.lse_c01086{letter-spacing:-6.685875px;}
.ls9_c01086{letter-spacing:-5.945625px;}
.ls28_c01086{letter-spacing:-5.466375px;}
.ls2b_c01086{letter-spacing:-5.354213px;}
.lsa_c01086{letter-spacing:-5.196713px;}
.lsb_c01086{letter-spacing:-4.456463px;}
.ls3b_c01086{letter-spacing:-4.381650px;}
.ls1f_c01086{letter-spacing:-4.145895px;}
.ls22_c01086{letter-spacing:-4.053428px;}
.ls10_c01086{letter-spacing:-3.818588px;}
.ls11_c01086{letter-spacing:-3.721725px;}
.ls7_c01086{letter-spacing:-3.717000px;}
.ls35_c01086{letter-spacing:-3.637710px;}
.ls37_c01086{letter-spacing:-3.482550px;}
.ls3c_c01086{letter-spacing:-3.457125px;}
.ls15_c01086{letter-spacing:-3.412988px;}
.ls2_c01086{letter-spacing:-3.242903px;}
.ls8_c01086{letter-spacing:-3.055500px;}
.ls5_c01086{letter-spacing:-2.968875px;}
.ls31_c01086{letter-spacing:-2.664900px;}
.ls23_c01086{letter-spacing:-2.497500px;}
.ls27_c01086{letter-spacing:-2.431575px;}
.ls33_c01086{letter-spacing:-2.430000px;}
.ls12_c01086{letter-spacing:-2.387025px;}
.ls2e_c01086{letter-spacing:-2.337233px;}
.lsd_c01086{letter-spacing:-2.291625px;}
.ls3a_c01086{letter-spacing:-2.271878px;}
.ls4_c01086{letter-spacing:-2.229413px;}
.lsf_c01086{letter-spacing:-2.165625px;}
.ls30_c01086{letter-spacing:-1.789875px;}
.ls14_c01086{letter-spacing:-1.687500px;}
.ls34_c01086{letter-spacing:-1.636200px;}
.ls2c_c01086{letter-spacing:-1.634325px;}
.ls3_c01086{letter-spacing:-1.621050px;}
.ls38_c01086{letter-spacing:-1.530323px;}
.ls6_c01086{letter-spacing:-1.489163px;}
.ls1b_c01086{letter-spacing:-1.362600px;}
.ls20_c01086{letter-spacing:-0.824175px;}
.ls21_c01086{letter-spacing:-0.810525px;}
.ls2d_c01086{letter-spacing:-0.763875px;}
.ls39_c01086{letter-spacing:-0.740250px;}
.ls1_c01086{letter-spacing:0.000000px;}
.ls19_c01086{letter-spacing:0.810525px;}
.lsc_c01086{letter-spacing:0.826875px;}
.ls1d_c01086{letter-spacing:1.300650px;}
.ls25_c01086{letter-spacing:1.446615px;}
.ls1c_c01086{letter-spacing:1.593750px;}
.ls0_c01086{letter-spacing:2.069483px;}
.ls2f_c01086{letter-spacing:2.447550px;}
.ls16_c01086{letter-spacing:4.034400px;}
.ls13_c01086{letter-spacing:4.140000px;}
.ls1a_c01086{letter-spacing:5.209627px;}
.ls29_c01086{letter-spacing:8.679825px;}
.ls17_c01086{letter-spacing:9.923100px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:0.000000px;}
._0_c01086{width:3.082119px;}
._3_c01086{width:4.652652px;}
._4_c01086{width:5.659854px;}
._b_c01086{width:7.251873px;}
._8_c01086{width:8.560452px;}
._7_c01086{width:9.686614px;}
._9_c01086{width:11.010754px;}
._f_c01086{width:12.710220px;}
._2_c01086{width:13.848986px;}
._a_c01086{width:15.508163px;}
._c_c01086{width:17.442172px;}
._13_c01086{width:19.256644px;}
._1_c01086{width:20.306298px;}
._d_c01086{width:21.386803px;}
._11_c01086{width:22.847227px;}
._5_c01086{width:24.465894px;}
._10_c01086{width:25.792788px;}
._12_c01086{width:27.340527px;}
._e_c01086{width:42.139571px;}
._14_c01086{width:53.148405px;}
._6_c01086{width:54.550155px;}
.fc0_c01086{color:transparent;}
.fs10_c01086{font-size:19.500000px;}
.fsd_c01086{font-size:24.750000px;}
.fsf_c01086{font-size:25.500000px;}
.fsc_c01086{font-size:31.500000px;}
.fs8_c01086{font-size:48.750000px;}
.fs6_c01086{font-size:51.750000px;}
.fs7_c01086{font-size:56.250000px;}
.fs9_c01086{font-size:57.750000px;}
.fse_c01086{font-size:60.000000px;}
.fsa_c01086{font-size:61.500000px;}
.fsb_c01086{font-size:72.750000px;}
.fs16_c01086{font-size:74.250000px;}
.fs3_c01086{font-size:75.750000px;}
.fs14_c01086{font-size:76.500000px;}
.fs5_c01086{font-size:77.250000px;}
.fs1_c01086{font-size:78.750000px;}
.fs2_c01086{font-size:79.500000px;}
.fs0_c01086{font-size:80.250000px;}
.fs19_c01086{font-size:81.000000px;}
.fs18_c01086{font-size:81.750000px;}
.fs12_c01086{font-size:82.500000px;}
.fs13_c01086{font-size:83.250000px;}
.fs17_c01086{font-size:84.000000px;}
.fs15_c01086{font-size:84.750000px;}
.fs11_c01086{font-size:85.500000px;}
.fs4_c01086{font-size:89.250000px;}
.y0_c01086{bottom:0.000000px;}
.y21_c01086{bottom:183.240435px;}
.y20_c01086{bottom:213.480285px;}
.y1f_c01086{bottom:273.239850px;}
.y1e_c01086{bottom:302.759535px;}
.y1d_c01086{bottom:332.640150px;}
.y1c_c01086{bottom:391.679670px;}
.y1b_c01086{bottom:428.400885px;}
.y1a_c01086{bottom:452.161050px;}
.y19_c01086{bottom:512.640750px;}
.y18_c01086{bottom:542.160420px;}
.y17_c01086{bottom:572.039385px;}
.y16_c01086{bottom:630.719520px;}
.y15_c01086{bottom:660.240870px;}
.y14_c01086{bottom:690.480885px;}
.y12_c01086{bottom:748.259535px;}
.y11_c01086{bottom:749.340585px;}
.y13_c01086{bottom:749.699850px;}
.y10_c01086{bottom:750.780900px;}
.ye_c01086{bottom:752.760135px;}
.yf_c01086{bottom:753.480285px;}
.yd_c01086{bottom:754.740870px;}
.yc_c01086{bottom:780.839535px;}
.yb_c01086{bottom:811.079400px;}
.ya_c01086{bottom:870.840540px;}
.y9_c01086{bottom:900.719520px;}
.y8_c01086{bottom:930.959385px;}
.y7_c01086{bottom:930.960360px;}
.y6_c01086{bottom:960.840090px;}
.y5_c01086{bottom:1020.960570px;}
.y4_c01086{bottom:1050.839535px;}
.y3_c01086{bottom:1050.840435px;}
.y2_c01086{bottom:1080.720150px;}
.y1_c01086{bottom:1139.759490px;}
.h12_c01086{height:20.337891px;}
.h11_c01086{height:25.014404px;}
.hf_c01086{height:25.813477px;}
.he_c01086{height:31.130859px;}
.ha_c01086{height:50.844727px;}
.h8_c01086{height:53.973633px;}
.h9_c01086{height:58.666992px;}
.h10_c01086{height:59.296875px;}
.hb_c01086{height:60.231445px;}
.hc_c01086{height:61.980469px;}
.hd_c01086{height:71.897461px;}
.h19_c01086{height:72.836060px;}
.h5_c01086{height:76.341797px;}
.h17_c01086{height:77.097656px;}
.h2_c01086{height:77.288818px;}
.h7_c01086{height:77.853516px;}
.h1_c01086{height:78.721802px;}
.h1f_c01086{height:78.760986px;}
.h3_c01086{height:79.365234px;}
.h4_c01086{height:80.121094px;}
.h1d_c01086{height:81.632812px;}
.h15_c01086{height:81.664673px;}
.h1b_c01086{height:82.388672px;}
.h1a_c01086{height:83.015625px;}
.h18_c01086{height:83.136108px;}
.h14_c01086{height:83.144531px;}
.h1e_c01086{height:83.177490px;}
.h1c_c01086{height:83.900391px;}
.h13_c01086{height:83.913574px;}
.h16_c01086{height:84.498047px;}
.h6_c01086{height:88.204102px;}
.h0_c01086{height:1263.000000px;}
.w0_c01086{width:892.500000px;}
.x0_c01086{left:0.000000px;}
.x7_c01086{left:136.438665px;}
.x1_c01086{left:137.519685px;}
.x4_c01086{left:138.598800px;}
.x12_c01086{left:170.999400px;}
.x27_c01086{left:196.559100px;}
.x19_c01086{left:206.278800px;}
.x1b_c01086{left:214.559685px;}
.x37_c01086{left:227.159850px;}
.x3_c01086{left:235.080000px;}
.x36_c01086{left:237.958950px;}
.x1c_c01086{left:239.758500px;}
.x38_c01086{left:253.798950px;}
.x1d_c01086{left:255.239250px;}
.x2a_c01086{left:258.479235px;}
.xb_c01086{left:263.159385px;}
.xd_c01086{left:276.838950px;}
.x2b_c01086{left:281.878350px;}
.x9_c01086{left:284.038950px;}
.x32_c01086{left:286.558635px;}
.xe_c01086{left:291.238785px;}
.xc_c01086{left:293.040000px;}
.x8_c01086{left:300.239850px;}
.x2c_c01086{left:324.359250px;}
.x15_c01086{left:330.118785px;}
.x28_c01086{left:335.878350px;}
.x33_c01086{left:341.998950px;}
.x21_c01086{left:344.518635px;}
.x2d_c01086{left:347.399235px;}
.x29_c01086{left:356.039385px;}
.x16_c01086{left:362.519100px;}
.x2e_c01086{left:366.120000px;}
.x17_c01086{left:370.439235px;}
.xf_c01086{left:384.118785px;}
.x24_c01086{left:385.559100px;}
.x26_c01086{left:390.598530px;}
.x1a_c01086{left:395.639700px;}
.x25_c01086{left:399.599670px;}
.x18_c01086{left:403.559685px;}
.x10_c01086{left:428.039985px;}
.x1e_c01086{left:432.000000px;}
.x1f_c01086{left:438.118785px;}
.x2_c01086{left:445.318770px;}
.x2f_c01086{left:452.518620px;}
.x34_c01086{left:454.319820px;}
.x30_c01086{left:475.558635px;}
.x20_c01086{left:483.119385px;}
.x11_c01086{left:491.039385px;}
.x31_c01086{left:518.398635px;}
.x5_c01086{left:522.719565px;}
.x35_c01086{left:557.278800px;}
.x6_c01086{left:571.678530px;}
.x22_c01086{left:579.239220px;}
.x13_c01086{left:613.798515px;}
.x23_c01086{left:616.679070px;}
.x14_c01086{left:663.119985px;}
.xa_c01086{left:740.878320px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls2a_c01086{letter-spacing:-13.222720pt;}
.ls18_c01086{letter-spacing:-10.914400pt;}
.ls36_c01086{letter-spacing:-8.254933pt;}
.ls26_c01086{letter-spacing:-7.925133pt;}
.ls1e_c01086{letter-spacing:-7.924000pt;}
.ls24_c01086{letter-spacing:-7.600760pt;}
.ls32_c01086{letter-spacing:-6.976620pt;}
.lse_c01086{letter-spacing:-5.943000pt;}
.ls9_c01086{letter-spacing:-5.285000pt;}
.ls28_c01086{letter-spacing:-4.859000pt;}
.ls2b_c01086{letter-spacing:-4.759300pt;}
.lsa_c01086{letter-spacing:-4.619300pt;}
.lsb_c01086{letter-spacing:-3.961300pt;}
.ls3b_c01086{letter-spacing:-3.894800pt;}
.ls1f_c01086{letter-spacing:-3.685240pt;}
.ls22_c01086{letter-spacing:-3.603047pt;}
.ls10_c01086{letter-spacing:-3.394300pt;}
.ls11_c01086{letter-spacing:-3.308200pt;}
.ls7_c01086{letter-spacing:-3.304000pt;}
.ls35_c01086{letter-spacing:-3.233520pt;}
.ls37_c01086{letter-spacing:-3.095600pt;}
.ls3c_c01086{letter-spacing:-3.073000pt;}
.ls15_c01086{letter-spacing:-3.033767pt;}
.ls2_c01086{letter-spacing:-2.882580pt;}
.ls8_c01086{letter-spacing:-2.716000pt;}
.ls5_c01086{letter-spacing:-2.639000pt;}
.ls31_c01086{letter-spacing:-2.368800pt;}
.ls23_c01086{letter-spacing:-2.220000pt;}
.ls27_c01086{letter-spacing:-2.161400pt;}
.ls33_c01086{letter-spacing:-2.160000pt;}
.ls12_c01086{letter-spacing:-2.121800pt;}
.ls2e_c01086{letter-spacing:-2.077540pt;}
.lsd_c01086{letter-spacing:-2.037000pt;}
.ls3a_c01086{letter-spacing:-2.019447pt;}
.ls4_c01086{letter-spacing:-1.981700pt;}
.lsf_c01086{letter-spacing:-1.925000pt;}
.ls30_c01086{letter-spacing:-1.591000pt;}
.ls14_c01086{letter-spacing:-1.500000pt;}
.ls34_c01086{letter-spacing:-1.454400pt;}
.ls2c_c01086{letter-spacing:-1.452733pt;}
.ls3_c01086{letter-spacing:-1.440933pt;}
.ls38_c01086{letter-spacing:-1.360287pt;}
.ls6_c01086{letter-spacing:-1.323700pt;}
.ls1b_c01086{letter-spacing:-1.211200pt;}
.ls20_c01086{letter-spacing:-0.732600pt;}
.ls21_c01086{letter-spacing:-0.720467pt;}
.ls2d_c01086{letter-spacing:-0.679000pt;}
.ls39_c01086{letter-spacing:-0.658000pt;}
.ls1_c01086{letter-spacing:0.000000pt;}
.ls19_c01086{letter-spacing:0.720467pt;}
.lsc_c01086{letter-spacing:0.735000pt;}
.ls1d_c01086{letter-spacing:1.156133pt;}
.ls25_c01086{letter-spacing:1.285880pt;}
.ls1c_c01086{letter-spacing:1.416667pt;}
.ls0_c01086{letter-spacing:1.839540pt;}
.ls2f_c01086{letter-spacing:2.175600pt;}
.ls16_c01086{letter-spacing:3.586133pt;}
.ls13_c01086{letter-spacing:3.680000pt;}
.ls1a_c01086{letter-spacing:4.630780pt;}
.ls29_c01086{letter-spacing:7.715400pt;}
.ls17_c01086{letter-spacing:8.820533pt;}
.ws0_c01086{word-spacing:0.000000pt;}
._0_c01086{width:2.739661pt;}
._3_c01086{width:4.135691pt;}
._4_c01086{width:5.030981pt;}
._b_c01086{width:6.446109pt;}
._8_c01086{width:7.609291pt;}
._7_c01086{width:8.610324pt;}
._9_c01086{width:9.787337pt;}
._f_c01086{width:11.297974pt;}
._2_c01086{width:12.310209pt;}
._a_c01086{width:13.785034pt;}
._c_c01086{width:15.504153pt;}
._13_c01086{width:17.117017pt;}
._1_c01086{width:18.050043pt;}
._d_c01086{width:19.010492pt;}
._11_c01086{width:20.308646pt;}
._5_c01086{width:21.747461pt;}
._10_c01086{width:22.926922pt;}
._12_c01086{width:24.302690pt;}
._e_c01086{width:37.457396pt;}
._14_c01086{width:47.243026pt;}
._6_c01086{width:48.489026pt;}
.fs10_c01086{font-size:17.333333pt;}
.fsd_c01086{font-size:22.000000pt;}
.fsf_c01086{font-size:22.666667pt;}
.fsc_c01086{font-size:28.000000pt;}
.fs8_c01086{font-size:43.333333pt;}
.fs6_c01086{font-size:46.000000pt;}
.fs7_c01086{font-size:50.000000pt;}
.fs9_c01086{font-size:51.333333pt;}
.fse_c01086{font-size:53.333333pt;}
.fsa_c01086{font-size:54.666667pt;}
.fsb_c01086{font-size:64.666667pt;}
.fs16_c01086{font-size:66.000000pt;}
.fs3_c01086{font-size:67.333333pt;}
.fs14_c01086{font-size:68.000000pt;}
.fs5_c01086{font-size:68.666667pt;}
.fs1_c01086{font-size:70.000000pt;}
.fs2_c01086{font-size:70.666667pt;}
.fs0_c01086{font-size:71.333333pt;}
.fs19_c01086{font-size:72.000000pt;}
.fs18_c01086{font-size:72.666667pt;}
.fs12_c01086{font-size:73.333333pt;}
.fs13_c01086{font-size:74.000000pt;}
.fs17_c01086{font-size:74.666667pt;}
.fs15_c01086{font-size:75.333333pt;}
.fs11_c01086{font-size:76.000000pt;}
.fs4_c01086{font-size:79.333333pt;}
.y0_c01086{bottom:0.000000pt;}
.y21_c01086{bottom:162.880387pt;}
.y20_c01086{bottom:189.760253pt;}
.y1f_c01086{bottom:242.879867pt;}
.y1e_c01086{bottom:269.119587pt;}
.y1d_c01086{bottom:295.680133pt;}
.y1c_c01086{bottom:348.159707pt;}
.y1b_c01086{bottom:380.800787pt;}
.y1a_c01086{bottom:401.920933pt;}
.y19_c01086{bottom:455.680667pt;}
.y18_c01086{bottom:481.920373pt;}
.y17_c01086{bottom:508.479453pt;}
.y16_c01086{bottom:560.639573pt;}
.y15_c01086{bottom:586.880773pt;}
.y14_c01086{bottom:613.760787pt;}
.y12_c01086{bottom:665.119587pt;}
.y11_c01086{bottom:666.080520pt;}
.y13_c01086{bottom:666.399867pt;}
.y10_c01086{bottom:667.360800pt;}
.ye_c01086{bottom:669.120120pt;}
.yf_c01086{bottom:669.760253pt;}
.yd_c01086{bottom:670.880773pt;}
.yc_c01086{bottom:694.079587pt;}
.yb_c01086{bottom:720.959467pt;}
.ya_c01086{bottom:774.080480pt;}
.y9_c01086{bottom:800.639573pt;}
.y8_c01086{bottom:827.519453pt;}
.y7_c01086{bottom:827.520320pt;}
.y6_c01086{bottom:854.080080pt;}
.y5_c01086{bottom:907.520507pt;}
.y4_c01086{bottom:934.079587pt;}
.y3_c01086{bottom:934.080387pt;}
.y2_c01086{bottom:960.640133pt;}
.y1_c01086{bottom:1013.119547pt;}
.h12_c01086{height:18.078125pt;}
.h11_c01086{height:22.235026pt;}
.hf_c01086{height:22.945312pt;}
.he_c01086{height:27.671875pt;}
.ha_c01086{height:45.195312pt;}
.h8_c01086{height:47.976562pt;}
.h9_c01086{height:52.148438pt;}
.h10_c01086{height:52.708333pt;}
.hb_c01086{height:53.539062pt;}
.hc_c01086{height:55.093750pt;}
.hd_c01086{height:63.908854pt;}
.h19_c01086{height:64.743164pt;}
.h5_c01086{height:67.859375pt;}
.h17_c01086{height:68.531250pt;}
.h2_c01086{height:68.701172pt;}
.h7_c01086{height:69.203125pt;}
.h1_c01086{height:69.974935pt;}
.h1f_c01086{height:70.009766pt;}
.h3_c01086{height:70.546875pt;}
.h4_c01086{height:71.218750pt;}
.h1d_c01086{height:72.562500pt;}
.h15_c01086{height:72.590820pt;}
.h1b_c01086{height:73.234375pt;}
.h1a_c01086{height:73.791667pt;}
.h18_c01086{height:73.898763pt;}
.h14_c01086{height:73.906250pt;}
.h1e_c01086{height:73.935547pt;}
.h1c_c01086{height:74.578125pt;}
.h13_c01086{height:74.589844pt;}
.h16_c01086{height:75.109375pt;}
.h6_c01086{height:78.403646pt;}
.h0_c01086{height:1122.666667pt;}
.w0_c01086{width:793.333333pt;}
.x0_c01086{left:0.000000pt;}
.x7_c01086{left:121.278813pt;}
.x1_c01086{left:122.239720pt;}
.x4_c01086{left:123.198933pt;}
.x12_c01086{left:151.999467pt;}
.x27_c01086{left:174.719200pt;}
.x19_c01086{left:183.358933pt;}
.x1b_c01086{left:190.719720pt;}
.x37_c01086{left:201.919867pt;}
.x3_c01086{left:208.960000pt;}
.x36_c01086{left:211.519067pt;}
.x1c_c01086{left:213.118667pt;}
.x38_c01086{left:225.599067pt;}
.x1d_c01086{left:226.879333pt;}
.x2a_c01086{left:229.759320pt;}
.xb_c01086{left:233.919453pt;}
.xd_c01086{left:246.079067pt;}
.x2b_c01086{left:250.558533pt;}
.x9_c01086{left:252.479067pt;}
.x32_c01086{left:254.718787pt;}
.xe_c01086{left:258.878920pt;}
.xc_c01086{left:260.480000pt;}
.x8_c01086{left:266.879867pt;}
.x2c_c01086{left:288.319333pt;}
.x15_c01086{left:293.438920pt;}
.x28_c01086{left:298.558533pt;}
.x33_c01086{left:303.999067pt;}
.x21_c01086{left:306.238787pt;}
.x2d_c01086{left:308.799320pt;}
.x29_c01086{left:316.479453pt;}
.x16_c01086{left:322.239200pt;}
.x2e_c01086{left:325.440000pt;}
.x17_c01086{left:329.279320pt;}
.xf_c01086{left:341.438920pt;}
.x24_c01086{left:342.719200pt;}
.x26_c01086{left:347.198693pt;}
.x1a_c01086{left:351.679733pt;}
.x25_c01086{left:355.199707pt;}
.x18_c01086{left:358.719720pt;}
.x10_c01086{left:380.479987pt;}
.x1e_c01086{left:384.000000pt;}
.x1f_c01086{left:389.438920pt;}
.x2_c01086{left:395.838907pt;}
.x2f_c01086{left:402.238773pt;}
.x34_c01086{left:403.839840pt;}
.x30_c01086{left:422.718787pt;}
.x20_c01086{left:429.439453pt;}
.x11_c01086{left:436.479453pt;}
.x31_c01086{left:460.798787pt;}
.x5_c01086{left:464.639613pt;}
.x35_c01086{left:495.358933pt;}
.x6_c01086{left:508.158693pt;}
.x22_c01086{left:514.879307pt;}
.x13_c01086{left:545.598680pt;}
.x23_c01086{left:548.159173pt;}
.x14_c01086{left:589.439987pt;}
.xa_c01086{left:658.558507pt;}
}





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

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_c9e72867d34a0253be1b590b.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_bbc4448f5723cf0bc408e042.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01087;src:url('chunks/assets/font_fdc117724836b1313c11dbc4.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01087;src:url('chunks/assets/font_e3199fe92c370e2474ee906d.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01087;src:url('chunks/assets/font_9b449c82ac79c784657c868d.woff2')format("woff");}.ff5_c01087{font-family:ff5_c01087;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01087;src:url('chunks/assets/font_76909031287d131a1693612e.woff2')format("woff");}.ff6_c01087{font-family:ff6_c01087;line-height:1.432129;font-style:normal;font-weight: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_c01087;src:url('chunks/assets/font_873f872dd4658309e5c48f5e.woff2')format("woff");}.ff7_c01087{font-family:ff7_c01087;line-height:1.364746;font-style:normal;font-weight: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_c01087;src:url('chunks/assets/font_b188f551610aa7cccee5d50c.woff2')format("woff");}.ff8_c01087{font-family:ff8_c01087;line-height:1.432129;font-style:normal;font-weight: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_c01087;src:url('chunks/assets/font_7c81ca51b17175333e585b3d.woff2')format("woff");}.ff9_c01087{font-family:ff9_c01087;line-height:1.284180;font-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_c01087{transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182018,0.000000,0.000000,0.250000,0,0);}
.ma_c01087{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);}
.m1c_c01087{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m2_c01087{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m16_c01087{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m2b_c01087{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.md_c01087{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m29_c01087{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc_c01087{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1f_c01087{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_c01087{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m2c_c01087{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.m11_c01087{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.mb_c01087{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m2e_c01087{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m6_c01087{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m20_c01087{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5_c01087{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m34_c01087{transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231383,0.000000,0.000000,0.250000,0,0);}
.m2a_c01087{transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);}
.m25_c01087{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m14_c01087{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.me_c01087{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m32_c01087{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m23_c01087{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m2f_c01087{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m18_c01087{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m0_c01087{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m8_c01087{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m2d_c01087{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m4_c01087{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m12_c01087{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m27_c01087{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01087{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m28_c01087{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m30_c01087{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m22_c01087{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m3_c01087{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m21_c01087{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m24_c01087{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m26_c01087{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m33_c01087{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.m31_c01087{transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);}
.m1a_c01087{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m15_c01087{transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313725,0.000000,0.000000,0.250000,0,0);}
.m1b_c01087{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m13_c01087{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m10_c01087{transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398810,0.000000,0.000000,0.250000,0,0);}
.m17_c01087{transform:matrix(0.422414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422414,0.000000,0.000000,0.250000,0,0);}
.m1e_c01087{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);}
.mf_c01087{transform:matrix(0.523256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523256,0.000000,0.000000,0.250000,0,0);}
.m1d_c01087{transform:matrix(1.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.156250,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls12_c01087{letter-spacing:-24.726600px;}
.ls13_c01087{letter-spacing:-13.002600px;}
.ls8_c01087{letter-spacing:-8.325900px;}
.ls3a_c01087{letter-spacing:-8.105250px;}
.ls36_c01087{letter-spacing:-8.025803px;}
.ls39_c01087{letter-spacing:-7.896600px;}
.ls28_c01087{letter-spacing:-7.821000px;}
.ls38_c01087{letter-spacing:-7.090200px;}
.ls32_c01087{letter-spacing:-6.644400px;}
.lsa_c01087{letter-spacing:-5.945625px;}
.ls2a_c01087{letter-spacing:-5.522400px;}
.lsc_c01087{letter-spacing:-5.196713px;}
.ls25_c01087{letter-spacing:-4.456463px;}
.ls2e_c01087{letter-spacing:-4.416225px;}
.ls9_c01087{letter-spacing:-4.371578px;}
.ls24_c01087{letter-spacing:-4.302150px;}
.ls10_c01087{letter-spacing:-3.752400px;}
.ls6_c01087{letter-spacing:-3.717000px;}
.ls1c_c01087{letter-spacing:-3.549600px;}
.ls2b_c01087{letter-spacing:-3.242903px;}
.ls35_c01087{letter-spacing:-3.118500px;}
.lsd_c01087{letter-spacing:-3.055500px;}
.ls7_c01087{letter-spacing:-2.968875px;}
.ls37_c01087{letter-spacing:-2.559180px;}
.lse_c01087{letter-spacing:-2.431575px;}
.ls19_c01087{letter-spacing:-2.333625px;}
.ls4_c01087{letter-spacing:-2.331990px;}
.ls5_c01087{letter-spacing:-2.229413px;}
.ls26_c01087{letter-spacing:-2.189250px;}
.ls1b_c01087{letter-spacing:-1.790250px;}
.ls2f_c01087{letter-spacing:-1.713600px;}
.ls34_c01087{letter-spacing:-1.630988px;}
.ls14_c01087{letter-spacing:-1.621050px;}
.ls29_c01087{letter-spacing:-1.604610px;}
.ls11_c01087{letter-spacing:-1.543575px;}
.ls2c_c01087{letter-spacing:-1.497878px;}
.lsb_c01087{letter-spacing:-1.489163px;}
.ls27_c01087{letter-spacing:-0.810525px;}
.ls33_c01087{letter-spacing:-0.764400px;}
.ls15_c01087{letter-spacing:-0.740250px;}
.lsf_c01087{letter-spacing:0.000000px;}
.ls21_c01087{letter-spacing:0.429300px;}
.ls0_c01087{letter-spacing:0.740250px;}
.ls1_c01087{letter-spacing:0.810525px;}
.ls31_c01087{letter-spacing:0.890055px;}
.ls30_c01087{letter-spacing:1.610250px;}
.ls1d_c01087{letter-spacing:1.660500px;}
.ls22_c01087{letter-spacing:1.668000px;}
.ls1e_c01087{letter-spacing:1.867110px;}
.ls2d_c01087{letter-spacing:2.287500px;}
.ls18_c01087{letter-spacing:4.141950px;}
.ls17_c01087{letter-spacing:4.230135px;}
.ls23_c01087{letter-spacing:4.866000px;}
.ls2_c01087{letter-spacing:5.377568px;}
.ls16_c01087{letter-spacing:5.598000px;}
.ls3_c01087{letter-spacing:5.672873px;}
.ls20_c01087{letter-spacing:5.896365px;}
.ls1a_c01087{letter-spacing:11.356808px;}
.ls1f_c01087{letter-spacing:78.748875px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01087{word-spacing:0.000000px;}
._19_c01087{margin-left:-11.838212px;}
._18_c01087{margin-left:-9.405705px;}
._9_c01087{margin-left:-6.512952px;}
._1b_c01087{margin-left:-5.418705px;}
._15_c01087{margin-left:-1.936834px;}
._b_c01087{width:1.103050px;}
._1a_c01087{width:2.423939px;}
._4_c01087{width:4.059280px;}
._8_c01087{width:5.292713px;}
._2_c01087{width:6.552000px;}
._0_c01087{width:7.698407px;}
._1_c01087{width:9.021214px;}
._7_c01087{width:10.501907px;}
._3_c01087{width:11.707034px;}
._16_c01087{width:12.713118px;}
._1c_c01087{width:13.981156px;}
._1d_c01087{width:15.182170px;}
._c_c01087{width:17.994702px;}
._a_c01087{width:19.411370px;}
._12_c01087{width:23.407903px;}
._f_c01087{width:24.799103px;}
._10_c01087{width:25.949299px;}
._d_c01087{width:27.069525px;}
._14_c01087{width:28.437071px;}
._13_c01087{width:31.540653px;}
._11_c01087{width:33.641970px;}
._e_c01087{width:35.359196px;}
._17_c01087{width:37.592100px;}
._5_c01087{width:45.163630px;}
._6_c01087{width:48.620072px;}
.fc0_c01087{color:transparent;}
.fs17_c01087{font-size:24.000000px;}
.fsf_c01087{font-size:26.250000px;}
.fs18_c01087{font-size:27.000000px;}
.fs16_c01087{font-size:28.500000px;}
.fs19_c01087{font-size:30.000000px;}
.fs13_c01087{font-size:30.750000px;}
.fsc_c01087{font-size:31.500000px;}
.fsb_c01087{font-size:32.250000px;}
.fs15_c01087{font-size:33.750000px;}
.fsa_c01087{font-size:36.000000px;}
.fs11_c01087{font-size:38.250000px;}
.fsd_c01087{font-size:39.750000px;}
.fs12_c01087{font-size:43.500000px;}
.fse_c01087{font-size:44.250000px;}
.fs10_c01087{font-size:46.500000px;}
.fs14_c01087{font-size:51.000000px;}
.fs1a_c01087{font-size:64.500000px;}
.fs20_c01087{font-size:70.500000px;}
.fs1c_c01087{font-size:75.750000px;}
.fs9_c01087{font-size:76.500000px;}
.fs3_c01087{font-size:77.250000px;}
.fs8_c01087{font-size:78.000000px;}
.fs1_c01087{font-size:78.750000px;}
.fs5_c01087{font-size:79.500000px;}
.fs4_c01087{font-size:80.250000px;}
.fs0_c01087{font-size:81.000000px;}
.fs6_c01087{font-size:82.500000px;}
.fs1d_c01087{font-size:84.000000px;}
.fs1e_c01087{font-size:84.750000px;}
.fs7_c01087{font-size:85.500000px;}
.fs1f_c01087{font-size:86.250000px;}
.fs2_c01087{font-size:87.000000px;}
.fs1b_c01087{font-size:93.750000px;}
.y0_c01087{bottom:0.000000px;}
.y21_c01087{bottom:181.439250px;}
.y20_c01087{bottom:211.679100px;}
.y1f_c01087{bottom:211.679190px;}
.y1e_c01087{bottom:271.438635px;}
.y1d_c01087{bottom:300.960000px;}
.y1c_c01087{bottom:330.838950px;}
.y1b_c01087{bottom:330.839100px;}
.y1a_c01087{bottom:389.879970px;}
.y19_c01087{bottom:419.759085px;}
.y18_c01087{bottom:449.639700px;}
.y17_c01087{bottom:510.119385px;}
.y16_c01087{bottom:539.639100px;}
.y15_c01087{bottom:569.878920px;}
.y14_c01087{bottom:569.879130px;}
.y13_c01087{bottom:628.920000px;}
.y12_c01087{bottom:658.439670px;}
.y11_c01087{bottom:688.679670px;}
.y10_c01087{bottom:748.439205px;}
.yf_c01087{bottom:754.198785px;}
.yd_c01087{bottom:778.679025px;}
.ye_c01087{bottom:778.679070px;}
.yb_c01087{bottom:808.918905px;}
.yc_c01087{bottom:808.918950px;}
.y9_c01087{bottom:839.157990px;}
.ya_c01087{bottom:839.158815px;}
.y8_c01087{bottom:898.559055px;}
.y7_c01087{bottom:928.439100px;}
.y6_c01087{bottom:958.318815px;}
.y5_c01087{bottom:958.319565px;}
.y4_c01087{bottom:1018.439205px;}
.y3_c01087{bottom:1048.679265px;}
.y2_c01087{bottom:1078.198785px;}
.y1_c01087{bottom:1137.599025px;}
.h1c_c01087{height:25.031250px;}
.h1d_c01087{height:27.210938px;}
.h13_c01087{height:27.377930px;}
.h1b_c01087{height:28.722656px;}
.h1e_c01087{height:29.648438px;}
.h1f_c01087{height:31.289062px;}
.h18_c01087{height:32.071289px;}
.h10_c01087{height:32.853516px;}
.h1a_c01087{height:33.107300px;}
.hf_c01087{height:33.635742px;}
.he_c01087{height:37.546875px;}
.h15_c01087{height:39.893555px;}
.h11_c01087{height:41.458008px;}
.h17_c01087{height:45.369141px;}
.h16_c01087{height:45.955078px;}
.h12_c01087{height:46.151367px;}
.h14_c01087{height:48.498047px;}
.h19_c01087{height:53.191406px;}
.h20_c01087{height:63.744141px;}
.h2b_c01087{height:73.529297px;}
.h24_c01087{height:74.344482px;}
.hc_c01087{height:75.080566px;}
.h22_c01087{height:75.778931px;}
.hb_c01087{height:76.514648px;}
.h21_c01087{height:76.552734px;}
.h2_c01087{height:77.288818px;}
.h4_c01087{height:77.853516px;}
.h8_c01087{height:78.024902px;}
.h6_c01087{height:78.721802px;}
.hd_c01087{height:78.760986px;}
.h5_c01087{height:79.365234px;}
.h2a_c01087{height:79.457520px;}
.h1_c01087{height:79.497070px;}
.h7_c01087{height:80.121094px;}
.h9_c01087{height:80.969238px;}
.h28_c01087{height:83.756836px;}
.ha_c01087{height:84.498047px;}
.h29_c01087{height:84.607544px;}
.h25_c01087{height:84.656250px;}
.h26_c01087{height:85.412109px;}
.h3_c01087{height:85.980469px;}
.h27_c01087{height:86.167969px;}
.h23_c01087{height:92.651367px;}
.h0_c01087{height:1263.000000px;}
.w0_c01087{width:892.500000px;}
.x0_c01087{left:0.000000px;}
.x9_c01087{left:134.639100px;}
.x1_c01087{left:136.079400px;}
.x8_c01087{left:137.520120px;}
.x18_c01087{left:139.319250px;}
.x25_c01087{left:160.198785px;}
.x10_c01087{left:161.279850px;}
.x31_c01087{left:162.718500px;}
.x22_c01087{left:167.398665px;}
.x19_c01087{left:169.918350px;}
.x2_c01087{left:176.038950px;}
.x1a_c01087{left:211.679100px;}
.x37_c01087{left:227.878350px;}
.x5_c01087{left:230.399850px;}
.x32_c01087{left:251.638500px;}
.x38_c01087{left:259.558635px;}
.x1b_c01087{left:268.918950px;}
.x23_c01087{left:271.079385px;}
.x33_c01087{left:275.398635px;}
.x39_c01087{left:285.838515px;}
.x3b_c01087{left:287.278800px;}
.x16_c01087{left:289.439235px;}
.xb_c01087{left:292.319850px;}
.x17_c01087{left:304.559100px;}
.x3a_c01087{left:311.399850px;}
.x36_c01087{left:314.998950px;}
.x1c_c01087{left:317.879535px;}
.xa_c01087{left:322.559685px;}
.x3c_c01087{left:325.799535px;}
.x1d_c01087{left:329.398635px;}
.x2c_c01087{left:336.239250px;}
.x1e_c01087{left:343.439235px;}
.x27_c01087{left:350.639100px;}
.x1f_c01087{left:355.319250px;}
.x11_c01087{left:366.479235px;}
.xc_c01087{left:377.639100px;}
.x34_c01087{left:399.238770px;}
.xd_c01087{left:402.478635px;}
.x24_c01087{left:410.398635px;}
.x35_c01087{left:420.479235px;}
.xe_c01087{left:422.639700px;}
.x20_c01087{left:434.519670px;}
.xf_c01087{left:456.478635px;}
.x2f_c01087{left:465.479685px;}
.x21_c01087{left:486.000000px;}
.x30_c01087{left:490.319235px;}
.x28_c01087{left:491.398635px;}
.x12_c01087{left:500.759085px;}
.x6_c01087{left:503.639700px;}
.x3_c01087{left:511.918950px;}
.x13_c01087{left:516.239820px;}
.x29_c01087{left:523.798920px;}
.x2d_c01087{left:549.719565px;}
.x4_c01087{left:554.759085px;}
.x7_c01087{left:597.958335px;}
.x2a_c01087{left:606.239220px;}
.x2e_c01087{left:626.039385px;}
.x2b_c01087{left:649.438620px;}
.x14_c01087{left:674.639100px;}
.x26_c01087{left:681.838950px;}
.x15_c01087{left:694.439250px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls12_c01087{letter-spacing:-21.979200pt;}
.ls13_c01087{letter-spacing:-11.557867pt;}
.ls8_c01087{letter-spacing:-7.400800pt;}
.ls3a_c01087{letter-spacing:-7.204667pt;}
.ls36_c01087{letter-spacing:-7.134047pt;}
.ls39_c01087{letter-spacing:-7.019200pt;}
.ls28_c01087{letter-spacing:-6.952000pt;}
.ls38_c01087{letter-spacing:-6.302400pt;}
.ls32_c01087{letter-spacing:-5.906133pt;}
.lsa_c01087{letter-spacing:-5.285000pt;}
.ls2a_c01087{letter-spacing:-4.908800pt;}
.lsc_c01087{letter-spacing:-4.619300pt;}
.ls25_c01087{letter-spacing:-3.961300pt;}
.ls2e_c01087{letter-spacing:-3.925533pt;}
.ls9_c01087{letter-spacing:-3.885847pt;}
.ls24_c01087{letter-spacing:-3.824133pt;}
.ls10_c01087{letter-spacing:-3.335467pt;}
.ls6_c01087{letter-spacing:-3.304000pt;}
.ls1c_c01087{letter-spacing:-3.155200pt;}
.ls2b_c01087{letter-spacing:-2.882580pt;}
.ls35_c01087{letter-spacing:-2.772000pt;}
.lsd_c01087{letter-spacing:-2.716000pt;}
.ls7_c01087{letter-spacing:-2.639000pt;}
.ls37_c01087{letter-spacing:-2.274827pt;}
.lse_c01087{letter-spacing:-2.161400pt;}
.ls19_c01087{letter-spacing:-2.074333pt;}
.ls4_c01087{letter-spacing:-2.072880pt;}
.ls5_c01087{letter-spacing:-1.981700pt;}
.ls26_c01087{letter-spacing:-1.946000pt;}
.ls1b_c01087{letter-spacing:-1.591333pt;}
.ls2f_c01087{letter-spacing:-1.523200pt;}
.ls34_c01087{letter-spacing:-1.449767pt;}
.ls14_c01087{letter-spacing:-1.440933pt;}
.ls29_c01087{letter-spacing:-1.426320pt;}
.ls11_c01087{letter-spacing:-1.372067pt;}
.ls2c_c01087{letter-spacing:-1.331447pt;}
.lsb_c01087{letter-spacing:-1.323700pt;}
.ls27_c01087{letter-spacing:-0.720467pt;}
.ls33_c01087{letter-spacing:-0.679467pt;}
.ls15_c01087{letter-spacing:-0.658000pt;}
.lsf_c01087{letter-spacing:0.000000pt;}
.ls21_c01087{letter-spacing:0.381600pt;}
.ls0_c01087{letter-spacing:0.658000pt;}
.ls1_c01087{letter-spacing:0.720467pt;}
.ls31_c01087{letter-spacing:0.791160pt;}
.ls30_c01087{letter-spacing:1.431333pt;}
.ls1d_c01087{letter-spacing:1.476000pt;}
.ls22_c01087{letter-spacing:1.482667pt;}
.ls1e_c01087{letter-spacing:1.659653pt;}
.ls2d_c01087{letter-spacing:2.033333pt;}
.ls18_c01087{letter-spacing:3.681733pt;}
.ls17_c01087{letter-spacing:3.760120pt;}
.ls23_c01087{letter-spacing:4.325333pt;}
.ls2_c01087{letter-spacing:4.780060pt;}
.ls16_c01087{letter-spacing:4.976000pt;}
.ls3_c01087{letter-spacing:5.042553pt;}
.ls20_c01087{letter-spacing:5.241213pt;}
.ls1a_c01087{letter-spacing:10.094940pt;}
.ls1f_c01087{letter-spacing:69.999000pt;}
.ws0_c01087{word-spacing:0.000000pt;}
._19_c01087{margin-left:-10.522856pt;}
._18_c01087{margin-left:-8.360627pt;}
._9_c01087{margin-left:-5.789291pt;}
._1b_c01087{margin-left:-4.816627pt;}
._15_c01087{margin-left:-1.721630pt;}
._b_c01087{width:0.980489pt;}
._1a_c01087{width:2.154613pt;}
._4_c01087{width:3.608249pt;}
._8_c01087{width:4.704634pt;}
._2_c01087{width:5.824000pt;}
._0_c01087{width:6.843028pt;}
._1_c01087{width:8.018857pt;}
._7_c01087{width:9.335028pt;}
._3_c01087{width:10.406253pt;}
._16_c01087{width:11.300549pt;}
._1c_c01087{width:12.427694pt;}
._1d_c01087{width:13.495262pt;}
._c_c01087{width:15.995291pt;}
._a_c01087{width:17.254551pt;}
._12_c01087{width:20.807025pt;}
._f_c01087{width:22.043647pt;}
._10_c01087{width:23.066043pt;}
._d_c01087{width:24.061800pt;}
._14_c01087{width:25.277396pt;}
._13_c01087{width:28.036136pt;}
._11_c01087{width:29.903974pt;}
._e_c01087{width:31.430396pt;}
._17_c01087{width:33.415200pt;}
._5_c01087{width:40.145449pt;}
._6_c01087{width:43.217842pt;}
.fs17_c01087{font-size:21.333333pt;}
.fsf_c01087{font-size:23.333333pt;}
.fs18_c01087{font-size:24.000000pt;}
.fs16_c01087{font-size:25.333333pt;}
.fs19_c01087{font-size:26.666667pt;}
.fs13_c01087{font-size:27.333333pt;}
.fsc_c01087{font-size:28.000000pt;}
.fsb_c01087{font-size:28.666667pt;}
.fs15_c01087{font-size:30.000000pt;}
.fsa_c01087{font-size:32.000000pt;}
.fs11_c01087{font-size:34.000000pt;}
.fsd_c01087{font-size:35.333333pt;}
.fs12_c01087{font-size:38.666667pt;}
.fse_c01087{font-size:39.333333pt;}
.fs10_c01087{font-size:41.333333pt;}
.fs14_c01087{font-size:45.333333pt;}
.fs1a_c01087{font-size:57.333333pt;}
.fs20_c01087{font-size:62.666667pt;}
.fs1c_c01087{font-size:67.333333pt;}
.fs9_c01087{font-size:68.000000pt;}
.fs3_c01087{font-size:68.666667pt;}
.fs8_c01087{font-size:69.333333pt;}
.fs1_c01087{font-size:70.000000pt;}
.fs5_c01087{font-size:70.666667pt;}
.fs4_c01087{font-size:71.333333pt;}
.fs0_c01087{font-size:72.000000pt;}
.fs6_c01087{font-size:73.333333pt;}
.fs1d_c01087{font-size:74.666667pt;}
.fs1e_c01087{font-size:75.333333pt;}
.fs7_c01087{font-size:76.000000pt;}
.fs1f_c01087{font-size:76.666667pt;}
.fs2_c01087{font-size:77.333333pt;}
.fs1b_c01087{font-size:83.333333pt;}
.y0_c01087{bottom:0.000000pt;}
.y21_c01087{bottom:161.279333pt;}
.y20_c01087{bottom:188.159200pt;}
.y1f_c01087{bottom:188.159280pt;}
.y1e_c01087{bottom:241.278787pt;}
.y1d_c01087{bottom:267.520000pt;}
.y1c_c01087{bottom:294.079067pt;}
.y1b_c01087{bottom:294.079200pt;}
.y1a_c01087{bottom:346.559973pt;}
.y19_c01087{bottom:373.119187pt;}
.y18_c01087{bottom:399.679733pt;}
.y17_c01087{bottom:453.439453pt;}
.y16_c01087{bottom:479.679200pt;}
.y15_c01087{bottom:506.559040pt;}
.y14_c01087{bottom:506.559227pt;}
.y13_c01087{bottom:559.040000pt;}
.y12_c01087{bottom:585.279707pt;}
.y11_c01087{bottom:612.159707pt;}
.y10_c01087{bottom:665.279293pt;}
.yf_c01087{bottom:670.398920pt;}
.yd_c01087{bottom:692.159133pt;}
.ye_c01087{bottom:692.159173pt;}
.yb_c01087{bottom:719.039027pt;}
.yc_c01087{bottom:719.039067pt;}
.y9_c01087{bottom:745.918213pt;}
.ya_c01087{bottom:745.918947pt;}
.y8_c01087{bottom:798.719160pt;}
.y7_c01087{bottom:825.279200pt;}
.y6_c01087{bottom:851.838947pt;}
.y5_c01087{bottom:851.839613pt;}
.y4_c01087{bottom:905.279293pt;}
.y3_c01087{bottom:932.159347pt;}
.y2_c01087{bottom:958.398920pt;}
.y1_c01087{bottom:1011.199133pt;}
.h1c_c01087{height:22.250000pt;}
.h1d_c01087{height:24.187500pt;}
.h13_c01087{height:24.335938pt;}
.h1b_c01087{height:25.531250pt;}
.h1e_c01087{height:26.354167pt;}
.h1f_c01087{height:27.812500pt;}
.h18_c01087{height:28.507812pt;}
.h10_c01087{height:29.203125pt;}
.h1a_c01087{height:29.428711pt;}
.hf_c01087{height:29.898438pt;}
.he_c01087{height:33.375000pt;}
.h15_c01087{height:35.460938pt;}
.h11_c01087{height:36.851562pt;}
.h17_c01087{height:40.328125pt;}
.h16_c01087{height:40.848958pt;}
.h12_c01087{height:41.023438pt;}
.h14_c01087{height:43.109375pt;}
.h19_c01087{height:47.281250pt;}
.h20_c01087{height:56.661458pt;}
.h2b_c01087{height:65.359375pt;}
.h24_c01087{height:66.083984pt;}
.hc_c01087{height:66.738281pt;}
.h22_c01087{height:67.359049pt;}
.hb_c01087{height:68.013021pt;}
.h21_c01087{height:68.046875pt;}
.h2_c01087{height:68.701172pt;}
.h4_c01087{height:69.203125pt;}
.h8_c01087{height:69.355469pt;}
.h6_c01087{height:69.974935pt;}
.hd_c01087{height:70.009766pt;}
.h5_c01087{height:70.546875pt;}
.h2a_c01087{height:70.628906pt;}
.h1_c01087{height:70.664062pt;}
.h7_c01087{height:71.218750pt;}
.h9_c01087{height:71.972656pt;}
.h28_c01087{height:74.450521pt;}
.ha_c01087{height:75.109375pt;}
.h29_c01087{height:75.206706pt;}
.h25_c01087{height:75.250000pt;}
.h26_c01087{height:75.921875pt;}
.h3_c01087{height:76.427083pt;}
.h27_c01087{height:76.593750pt;}
.h23_c01087{height:82.356771pt;}
.h0_c01087{height:1122.666667pt;}
.w0_c01087{width:793.333333pt;}
.x0_c01087{left:0.000000pt;}
.x9_c01087{left:119.679200pt;}
.x1_c01087{left:120.959467pt;}
.x8_c01087{left:122.240107pt;}
.x18_c01087{left:123.839333pt;}
.x25_c01087{left:142.398920pt;}
.x10_c01087{left:143.359867pt;}
.x31_c01087{left:144.638667pt;}
.x22_c01087{left:148.798813pt;}
.x19_c01087{left:151.038533pt;}
.x2_c01087{left:156.479067pt;}
.x1a_c01087{left:188.159200pt;}
.x37_c01087{left:202.558533pt;}
.x5_c01087{left:204.799867pt;}
.x32_c01087{left:223.678667pt;}
.x38_c01087{left:230.718787pt;}
.x1b_c01087{left:239.039067pt;}
.x23_c01087{left:240.959453pt;}
.x33_c01087{left:244.798787pt;}
.x39_c01087{left:254.078680pt;}
.x3b_c01087{left:255.358933pt;}
.x16_c01087{left:257.279320pt;}
.xb_c01087{left:259.839867pt;}
.x17_c01087{left:270.719200pt;}
.x3a_c01087{left:276.799867pt;}
.x36_c01087{left:279.999067pt;}
.x1c_c01087{left:282.559587pt;}
.xa_c01087{left:286.719720pt;}
.x3c_c01087{left:289.599587pt;}
.x1d_c01087{left:292.798787pt;}
.x2c_c01087{left:298.879333pt;}
.x1e_c01087{left:305.279320pt;}
.x27_c01087{left:311.679200pt;}
.x1f_c01087{left:315.839333pt;}
.x11_c01087{left:325.759320pt;}
.xc_c01087{left:335.679200pt;}
.x34_c01087{left:354.878907pt;}
.xd_c01087{left:357.758787pt;}
.x24_c01087{left:364.798787pt;}
.x35_c01087{left:373.759320pt;}
.xe_c01087{left:375.679733pt;}
.x20_c01087{left:386.239707pt;}
.xf_c01087{left:405.758787pt;}
.x2f_c01087{left:413.759720pt;}
.x21_c01087{left:432.000000pt;}
.x30_c01087{left:435.839320pt;}
.x28_c01087{left:436.798787pt;}
.x12_c01087{left:445.119187pt;}
.x6_c01087{left:447.679733pt;}
.x3_c01087{left:455.039067pt;}
.x13_c01087{left:458.879840pt;}
.x29_c01087{left:465.599040pt;}
.x2d_c01087{left:488.639613pt;}
.x4_c01087{left:493.119187pt;}
.x7_c01087{left:531.518520pt;}
.x2a_c01087{left:538.879307pt;}
.x2e_c01087{left:556.479453pt;}
.x2b_c01087{left:577.278773pt;}
.x14_c01087{left:599.679200pt;}
.x26_c01087{left:606.079067pt;}
.x15_c01087{left:617.279333pt;}
}





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

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_200a5b2b322e4f07a8d541a2.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_67d6aa1789f07599093951a2.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01088;src:url('chunks/assets/font_9086059f2d247a8d2bac4ccd.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01088;src:url('chunks/assets/font_05e5b78d97770cea22038e35.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01088;src:url('chunks/assets/font_b5d1d713cb948d1a6037fe8d.woff2')format("woff");}.ff5_c01088{font-family:ff5_c01088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01088;src:url('chunks/assets/font_1a0a0ab87c73f0b0803b51cc.woff2')format("woff");}.ff6_c01088{font-family:ff6_c01088;line-height:1.432129;font-style:normal;font-weight: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_c01088;src:url('chunks/assets/font_8c33eb1f4eb2a472e37bb1e3.woff2')format("woff");}.ff7_c01088{font-family:ff7_c01088;line-height:1.364746;font-style:normal;font-weight: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_c01088;src:url('chunks/assets/font_95e083354a11c479a1fe178b.woff2')format("woff");}.ff8_c01088{font-family:ff8_c01088;line-height:1.281250;font-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_c01088{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m3_c01088{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m1a_c01088{transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171296,0.000000,0.000000,0.250000,0,0);}
.m17_c01088{transform:matrix(0.180693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180693,0.000000,0.000000,0.250000,0,0);}
.m7_c01088{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m11_c01088{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.ma_c01088{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m5_c01088{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.mc_c01088{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m6_c01088{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m10_c01088{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_c01088{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1f_c01088{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1c_c01088{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1b_c01088{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1_c01088{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m18_c01088{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m13_c01088{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m15_c01088{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m0_c01088{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m8_c01088{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m2_c01088{transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);}
.mb_c01088{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1d_c01088{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m4_c01088{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m1e_c01088{transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);}
.md_c01088{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.m19_c01088{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.mf_c01088{transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268349,0.000000,0.000000,0.250000,0,0);}
.m12_c01088{transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);}
.m9_c01088{transform:matrix(0.271008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271008,0.000000,0.000000,0.250000,0,0);}
.m14_c01088{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls27_c01088{letter-spacing:-15.136800px;}
.ls10_c01088{letter-spacing:-14.529900px;}
.ls18_c01088{letter-spacing:-13.779728px;}
.ls20_c01088{letter-spacing:-11.415525px;}
.ls24_c01088{letter-spacing:-10.943100px;}
.ls17_c01088{letter-spacing:-9.786293px;}
.ls4_c01088{letter-spacing:-9.355500px;}
.ls29_c01088{letter-spacing:-8.105250px;}
.ls21_c01088{letter-spacing:-7.684425px;}
.ls7_c01088{letter-spacing:-6.489450px;}
.ls26_c01088{letter-spacing:-5.739668px;}
.ls23_c01088{letter-spacing:-5.300663px;}
.ls16_c01088{letter-spacing:-5.016450px;}
.ls28_c01088{letter-spacing:-4.862348px;}
.lsb_c01088{letter-spacing:-4.544910px;}
.ls14_c01088{letter-spacing:-4.543088px;}
.ls25_c01088{letter-spacing:-4.453800px;}
.ls11_c01088{letter-spacing:-3.787875px;}
.ls22_c01088{letter-spacing:-3.555075px;}
.ls1e_c01088{letter-spacing:-3.242903px;}
.ls1a_c01088{letter-spacing:-3.118500px;}
.ls1d_c01088{letter-spacing:-3.053250px;}
.ls2_c01088{letter-spacing:-3.031875px;}
.ls19_c01088{letter-spacing:-2.771775px;}
.lsa_c01088{letter-spacing:-2.431575px;}
.ls12_c01088{letter-spacing:-2.338088px;}
.lsd_c01088{letter-spacing:-2.267213px;}
.ls15_c01088{letter-spacing:-1.645800px;}
.ls9_c01088{letter-spacing:-1.621050px;}
.lsf_c01088{letter-spacing:-1.560038px;}
.ls3_c01088{letter-spacing:-1.512000px;}
.ls13_c01088{letter-spacing:-1.489163px;}
.lsc_c01088{letter-spacing:-0.810525px;}
.ls1b_c01088{letter-spacing:-0.764775px;}
.lse_c01088{letter-spacing:-0.756000px;}
.ls5_c01088{letter-spacing:-0.745875px;}
.ls6_c01088{letter-spacing:0.000000px;}
.ls0_c01088{letter-spacing:0.810525px;}
.ls1_c01088{letter-spacing:1.512000px;}
.ls1c_c01088{letter-spacing:1.689885px;}
.ls1f_c01088{letter-spacing:2.338088px;}
.ls8_c01088{letter-spacing:5.828550px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:0.000000px;}
._11_c01088{margin-left:-11.284390px;}
._d_c01088{margin-left:-3.002161px;}
._e_c01088{margin-left:-1.082824px;}
._b_c01088{width:1.460469px;}
._6_c01088{width:2.480307px;}
._12_c01088{width:3.696732px;}
._3_c01088{width:4.702261px;}
._0_c01088{width:6.607125px;}
._2_c01088{width:7.884470px;}
._7_c01088{width:9.099472px;}
._f_c01088{width:10.323822px;}
._1_c01088{width:11.343089px;}
._9_c01088{width:12.584371px;}
._5_c01088{width:14.160623px;}
._4_c01088{width:15.866025px;}
._13_c01088{width:17.385603px;}
._10_c01088{width:26.737160px;}
._a_c01088{width:29.855821px;}
._c_c01088{width:32.758910px;}
._8_c01088{width:52.589068px;}
.fc0_c01088{color:transparent;}
.fs10_c01088{font-size:34.500000px;}
.fs3_c01088{font-size:68.250000px;}
.fsd_c01088{font-size:72.750000px;}
.fs2_c01088{font-size:74.250000px;}
.fsb_c01088{font-size:75.000000px;}
.fs11_c01088{font-size:75.750000px;}
.fse_c01088{font-size:76.500000px;}
.fs7_c01088{font-size:77.250000px;}
.fs8_c01088{font-size:78.000000px;}
.fs0_c01088{font-size:78.750000px;}
.fs9_c01088{font-size:79.500000px;}
.fs4_c01088{font-size:80.250000px;}
.fs5_c01088{font-size:81.000000px;}
.fsa_c01088{font-size:81.750000px;}
.fsc_c01088{font-size:84.750000px;}
.fs1_c01088{font-size:87.750000px;}
.fsf_c01088{font-size:88.500000px;}
.fs6_c01088{font-size:89.250000px;}
.fs12_c01088{font-size:92.250000px;}
.y0_c01088{bottom:0.000000px;}
.y19_c01088{bottom:240.121035px;}
.y18_c01088{bottom:269.640750px;}
.y17_c01088{bottom:299.160435px;}
.y16_c01088{bottom:358.199850px;}
.y15_c01088{bottom:388.080210px;}
.y14_c01088{bottom:418.320285px;}
.y13_c01088{bottom:418.320375px;}
.y12_c01088{bottom:448.560285px;}
.y11_c01088{bottom:508.680720px;}
.y10_c01088{bottom:538.200435px;}
.yf_c01088{bottom:568.081050px;}
.ye_c01088{bottom:627.840585px;}
.yd_c01088{bottom:657.721155px;}
.yc_c01088{bottom:687.600135px;}
.yb_c01088{bottom:747.000600px;}
.ya_c01088{bottom:776.519715px;}
.y9_c01088{bottom:807.121035px;}
.y8_c01088{bottom:837.720150px;}
.y7_c01088{bottom:897.481290px;}
.y6_c01088{bottom:927.721350px;}
.y5_c01088{bottom:957.240870px;}
.y4_c01088{bottom:1016.641290px;}
.y3_c01088{bottom:1046.520270px;}
.y2_c01088{bottom:1076.941320px;}
.y1_c01088{bottom:1136.160465px;}
.h12_c01088{height:35.982422px;}
.h5_c01088{height:71.182617px;}
.h4_c01088{height:74.830078px;}
.h13_c01088{height:74.862305px;}
.h10_c01088{height:75.080566px;}
.hf_c01088{height:75.875977px;}
.h1_c01088{height:77.288818px;}
.h9_c01088{height:77.853516px;}
.hb_c01088{height:78.024902px;}
.hd_c01088{height:78.222656px;}
.ha_c01088{height:78.609375px;}
.h6_c01088{height:78.721802px;}
.h15_c01088{height:78.760986px;}
.h2_c01088{height:79.365234px;}
.h7_c01088{height:79.457520px;}
.h17_c01088{height:79.497070px;}
.h16_c01088{height:80.050781px;}
.h18_c01088{height:80.233154px;}
.hc_c01088{height:82.388672px;}
.he_c01088{height:83.177490px;}
.h3_c01088{height:86.721680px;}
.h11_c01088{height:87.462891px;}
.h19_c01088{height:87.550415px;}
.h8_c01088{height:88.204102px;}
.h14_c01088{height:91.168945px;}
.h0_c01088{height:1263.000000px;}
.w0_c01088{width:892.500000px;}
.x0_c01088{left:0.000000px;}
.x23_c01088{left:111.958350px;}
.x22_c01088{left:142.918350px;}
.x1_c01088{left:143.999400px;}
.x12_c01088{left:145.440675px;}
.x19_c01088{left:179.639700px;}
.x13_c01088{left:213.478635px;}
.x21_c01088{left:219.599100px;}
.x7_c01088{left:227.878350px;}
.x2c_c01088{left:231.838515px;}
.xb_c01088{left:234.719100px;}
.x8_c01088{left:241.918950px;}
.x26_c01088{left:262.080000px;}
.x16_c01088{left:275.759535px;}
.x14_c01088{left:277.199850px;}
.xc_c01088{left:291.599700px;}
.x2_c01088{left:293.399250px;}
.x17_c01088{left:301.678500px;}
.x15_c01088{left:307.798950px;}
.x3_c01088{left:316.798515px;}
.x1d_c01088{left:318.238785px;}
.x29_c01088{left:319.319850px;}
.xd_c01088{left:321.839535px;}
.x2d_c01088{left:325.438635px;}
.x4_c01088{left:331.559100px;}
.xe_c01088{left:336.959385px;}
.x25_c01088{left:343.439235px;}
.x2e_c01088{left:355.678530px;}
.x24_c01088{left:360.358635px;}
.x1e_c01088{left:380.878950px;}
.x2a_c01088{left:382.319235px;}
.x18_c01088{left:401.039985px;}
.x1f_c01088{left:411.838950px;}
.x2b_c01088{left:413.279250px;}
.x2f_c01088{left:415.798920px;}
.x9_c01088{left:417.598530px;}
.xa_c01088{left:441.358665px;}
.x5_c01088{left:457.198785px;}
.x1a_c01088{left:463.678530px;}
.x20_c01088{left:464.759535px;}
.xf_c01088{left:471.959385px;}
.x1b_c01088{left:480.958920px;}
.x6_c01088{left:486.718500px;}
.x10_c01088{left:502.919535px;}
.x27_c01088{left:581.759085px;}
.x28_c01088{left:609.838530px;}
.x11_c01088{left:617.399235px;}
.x1c_c01088{left:667.798560px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls27_c01088{letter-spacing:-13.454933pt;}
.ls10_c01088{letter-spacing:-12.915467pt;}
.ls18_c01088{letter-spacing:-12.248647pt;}
.ls20_c01088{letter-spacing:-10.147133pt;}
.ls24_c01088{letter-spacing:-9.727200pt;}
.ls17_c01088{letter-spacing:-8.698927pt;}
.ls4_c01088{letter-spacing:-8.316000pt;}
.ls29_c01088{letter-spacing:-7.204667pt;}
.ls21_c01088{letter-spacing:-6.830600pt;}
.ls7_c01088{letter-spacing:-5.768400pt;}
.ls26_c01088{letter-spacing:-5.101927pt;}
.ls23_c01088{letter-spacing:-4.711700pt;}
.ls16_c01088{letter-spacing:-4.459067pt;}
.ls28_c01088{letter-spacing:-4.322087pt;}
.lsb_c01088{letter-spacing:-4.039920pt;}
.ls14_c01088{letter-spacing:-4.038300pt;}
.ls25_c01088{letter-spacing:-3.958933pt;}
.ls11_c01088{letter-spacing:-3.367000pt;}
.ls22_c01088{letter-spacing:-3.160067pt;}
.ls1e_c01088{letter-spacing:-2.882580pt;}
.ls1a_c01088{letter-spacing:-2.772000pt;}
.ls1d_c01088{letter-spacing:-2.714000pt;}
.ls2_c01088{letter-spacing:-2.695000pt;}
.ls19_c01088{letter-spacing:-2.463800pt;}
.lsa_c01088{letter-spacing:-2.161400pt;}
.ls12_c01088{letter-spacing:-2.078300pt;}
.lsd_c01088{letter-spacing:-2.015300pt;}
.ls15_c01088{letter-spacing:-1.462933pt;}
.ls9_c01088{letter-spacing:-1.440933pt;}
.lsf_c01088{letter-spacing:-1.386700pt;}
.ls3_c01088{letter-spacing:-1.344000pt;}
.ls13_c01088{letter-spacing:-1.323700pt;}
.lsc_c01088{letter-spacing:-0.720467pt;}
.ls1b_c01088{letter-spacing:-0.679800pt;}
.lse_c01088{letter-spacing:-0.672000pt;}
.ls5_c01088{letter-spacing:-0.663000pt;}
.ls6_c01088{letter-spacing:0.000000pt;}
.ls0_c01088{letter-spacing:0.720467pt;}
.ls1_c01088{letter-spacing:1.344000pt;}
.ls1c_c01088{letter-spacing:1.502120pt;}
.ls1f_c01088{letter-spacing:2.078300pt;}
.ls8_c01088{letter-spacing:5.180933pt;}
.ws0_c01088{word-spacing:0.000000pt;}
._11_c01088{margin-left:-10.030569pt;}
._d_c01088{margin-left:-2.668587pt;}
._e_c01088{margin-left:-0.962510pt;}
._b_c01088{width:1.298195pt;}
._6_c01088{width:2.204717pt;}
._12_c01088{width:3.285984pt;}
._3_c01088{width:4.179787pt;}
._0_c01088{width:5.873000pt;}
._2_c01088{width:7.008418pt;}
._7_c01088{width:8.088419pt;}
._f_c01088{width:9.176731pt;}
._1_c01088{width:10.082746pt;}
._9_c01088{width:11.186108pt;}
._5_c01088{width:12.587221pt;}
._4_c01088{width:14.103133pt;}
._13_c01088{width:15.453869pt;}
._10_c01088{width:23.766364pt;}
._a_c01088{width:26.538507pt;}
._c_c01088{width:29.119031pt;}
._8_c01088{width:46.745838pt;}
.fs10_c01088{font-size:30.666667pt;}
.fs3_c01088{font-size:60.666667pt;}
.fsd_c01088{font-size:64.666667pt;}
.fs2_c01088{font-size:66.000000pt;}
.fsb_c01088{font-size:66.666667pt;}
.fs11_c01088{font-size:67.333333pt;}
.fse_c01088{font-size:68.000000pt;}
.fs7_c01088{font-size:68.666667pt;}
.fs8_c01088{font-size:69.333333pt;}
.fs0_c01088{font-size:70.000000pt;}
.fs9_c01088{font-size:70.666667pt;}
.fs4_c01088{font-size:71.333333pt;}
.fs5_c01088{font-size:72.000000pt;}
.fsa_c01088{font-size:72.666667pt;}
.fsc_c01088{font-size:75.333333pt;}
.fs1_c01088{font-size:78.000000pt;}
.fsf_c01088{font-size:78.666667pt;}
.fs6_c01088{font-size:79.333333pt;}
.fs12_c01088{font-size:82.000000pt;}
.y0_c01088{bottom:0.000000pt;}
.y19_c01088{bottom:213.440920pt;}
.y18_c01088{bottom:239.680667pt;}
.y17_c01088{bottom:265.920387pt;}
.y16_c01088{bottom:318.399867pt;}
.y15_c01088{bottom:344.960187pt;}
.y14_c01088{bottom:371.840253pt;}
.y13_c01088{bottom:371.840333pt;}
.y12_c01088{bottom:398.720253pt;}
.y11_c01088{bottom:452.160640pt;}
.y10_c01088{bottom:478.400387pt;}
.yf_c01088{bottom:504.960933pt;}
.ye_c01088{bottom:558.080520pt;}
.yd_c01088{bottom:584.641027pt;}
.yc_c01088{bottom:611.200120pt;}
.yb_c01088{bottom:664.000533pt;}
.ya_c01088{bottom:690.239747pt;}
.y9_c01088{bottom:717.440920pt;}
.y8_c01088{bottom:744.640133pt;}
.y7_c01088{bottom:797.761147pt;}
.y6_c01088{bottom:824.641200pt;}
.y5_c01088{bottom:850.880773pt;}
.y4_c01088{bottom:903.681147pt;}
.y3_c01088{bottom:930.240240pt;}
.y2_c01088{bottom:957.281173pt;}
.y1_c01088{bottom:1009.920413pt;}
.h12_c01088{height:31.984375pt;}
.h5_c01088{height:63.273438pt;}
.h4_c01088{height:66.515625pt;}
.h13_c01088{height:66.544271pt;}
.h10_c01088{height:66.738281pt;}
.hf_c01088{height:67.445312pt;}
.h1_c01088{height:68.701172pt;}
.h9_c01088{height:69.203125pt;}
.hb_c01088{height:69.355469pt;}
.hd_c01088{height:69.531250pt;}
.ha_c01088{height:69.875000pt;}
.h6_c01088{height:69.974935pt;}
.h15_c01088{height:70.009766pt;}
.h2_c01088{height:70.546875pt;}
.h7_c01088{height:70.628906pt;}
.h17_c01088{height:70.664062pt;}
.h16_c01088{height:71.156250pt;}
.h18_c01088{height:71.318359pt;}
.hc_c01088{height:73.234375pt;}
.he_c01088{height:73.935547pt;}
.h3_c01088{height:77.085938pt;}
.h11_c01088{height:77.744792pt;}
.h19_c01088{height:77.822591pt;}
.h8_c01088{height:78.403646pt;}
.h14_c01088{height:81.039063pt;}
.h0_c01088{height:1122.666667pt;}
.w0_c01088{width:793.333333pt;}
.x0_c01088{left:0.000000pt;}
.x23_c01088{left:99.518533pt;}
.x22_c01088{left:127.038533pt;}
.x1_c01088{left:127.999467pt;}
.x12_c01088{left:129.280600pt;}
.x19_c01088{left:159.679733pt;}
.x13_c01088{left:189.758787pt;}
.x21_c01088{left:195.199200pt;}
.x7_c01088{left:202.558533pt;}
.x2c_c01088{left:206.078680pt;}
.xb_c01088{left:208.639200pt;}
.x8_c01088{left:215.039067pt;}
.x26_c01088{left:232.960000pt;}
.x16_c01088{left:245.119587pt;}
.x14_c01088{left:246.399867pt;}
.xc_c01088{left:259.199733pt;}
.x2_c01088{left:260.799333pt;}
.x17_c01088{left:268.158667pt;}
.x15_c01088{left:273.599067pt;}
.x3_c01088{left:281.598680pt;}
.x1d_c01088{left:282.878920pt;}
.x29_c01088{left:283.839867pt;}
.xd_c01088{left:286.079587pt;}
.x2d_c01088{left:289.278787pt;}
.x4_c01088{left:294.719200pt;}
.xe_c01088{left:299.519453pt;}
.x25_c01088{left:305.279320pt;}
.x2e_c01088{left:316.158693pt;}
.x24_c01088{left:320.318787pt;}
.x1e_c01088{left:338.559067pt;}
.x2a_c01088{left:339.839320pt;}
.x18_c01088{left:356.479987pt;}
.x1f_c01088{left:366.079067pt;}
.x2b_c01088{left:367.359333pt;}
.x2f_c01088{left:369.599040pt;}
.x9_c01088{left:371.198693pt;}
.xa_c01088{left:392.318813pt;}
.x5_c01088{left:406.398920pt;}
.x1a_c01088{left:412.158693pt;}
.x20_c01088{left:413.119587pt;}
.xf_c01088{left:419.519453pt;}
.x1b_c01088{left:427.519040pt;}
.x6_c01088{left:432.638667pt;}
.x10_c01088{left:447.039587pt;}
.x27_c01088{left:517.119187pt;}
.x28_c01088{left:542.078693pt;}
.x11_c01088{left:548.799320pt;}
.x1c_c01088{left:593.598720pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_6665fb76b84323f671b08041.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_1ea8e61f00b5718a24fb9683.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01089;src:url('chunks/assets/font_3ea1c4b91ab73c59cad6a609.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_3146f47f2131dc7c0584ac99.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01089;src:url('chunks/assets/font_c756bbe9676da151e7fd1ba1.woff2')format("woff");}.ff5_c01089{font-family:ff5_c01089;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01089;src:url('chunks/assets/font_ade8e92423c04b8c7a7ef495.woff2')format("woff");}.ff6_c01089{font-family:ff6_c01089;line-height:1.432129;font-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_c01089{transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);}
.m7_c01089{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m13_c01089{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m1_c01089{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.mf_c01089{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m2_c01089{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m9_c01089{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m10_c01089{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.ma_c01089{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m6_c01089{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m5_c01089{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m14_c01089{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m3_c01089{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m8_c01089{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_c01089{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mc_c01089{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m12_c01089{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m4_c01089{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c01089{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m11_c01089{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.mb_c01089{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.v0_c01089{vertical-align:0.000000px;}
.ls18_c01089{letter-spacing:-17.700053px;}
.ls23_c01089{letter-spacing:-7.865303px;}
.ls17_c01089{letter-spacing:-7.426125px;}
.ls13_c01089{letter-spacing:-5.945625px;}
.ls19_c01089{letter-spacing:-5.505150px;}
.ls5_c01089{letter-spacing:-5.196713px;}
.ls1a_c01089{letter-spacing:-4.719503px;}
.lsf_c01089{letter-spacing:-3.932250px;}
.ls16_c01089{letter-spacing:-3.717000px;}
.ls7_c01089{letter-spacing:-3.145800px;}
.ls4_c01089{letter-spacing:-3.086100px;}
.ls1_c01089{letter-spacing:-3.055500px;}
.ls6_c01089{letter-spacing:-2.968875px;}
.ls8_c01089{letter-spacing:-2.359350px;}
.lsb_c01089{letter-spacing:-2.291625px;}
.lsa_c01089{letter-spacing:-2.229413px;}
.lse_c01089{letter-spacing:-1.573703px;}
.lsc_c01089{letter-spacing:-1.526963px;}
.ls12_c01089{letter-spacing:-1.489163px;}
.ls1e_c01089{letter-spacing:-0.819000px;}
.ls1b_c01089{letter-spacing:-0.786450px;}
.ls21_c01089{letter-spacing:-0.772200px;}
.ls10_c01089{letter-spacing:-0.763875px;}
.ls15_c01089{letter-spacing:-0.740250px;}
.ls3_c01089{letter-spacing:0.000000px;}
.ls1c_c01089{letter-spacing:0.740250px;}
.ls22_c01089{letter-spacing:0.763875px;}
.ls2_c01089{letter-spacing:0.850500px;}
.ls1f_c01089{letter-spacing:1.526963px;}
.ls11_c01089{letter-spacing:1.621800px;}
.ls14_c01089{letter-spacing:2.359350px;}
.ls1d_c01089{letter-spacing:5.031000px;}
.ls0_c01089{letter-spacing:5.196713px;}
.lsd_c01089{letter-spacing:6.081750px;}
.ls9_c01089{letter-spacing:6.291600px;}
.ls20_c01089{letter-spacing:6.917295px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:0.000000px;}
._a_c01089{margin-left:-14.548798px;}
._13_c01089{margin-left:-2.601945px;}
._7_c01089{width:1.570275px;}
._6_c01089{width:2.820379px;}
._2_c01089{width:4.836097px;}
._d_c01089{width:6.205262px;}
._1_c01089{width:7.913405px;}
._4_c01089{width:9.741784px;}
._14_c01089{width:10.867439px;}
._3_c01089{width:12.371417px;}
._5_c01089{width:15.641696px;}
._c_c01089{width:17.981344px;}
._15_c01089{width:20.703880px;}
._8_c01089{width:22.127264px;}
._b_c01089{width:23.189178px;}
._11_c01089{width:25.262625px;}
._f_c01089{width:27.276818px;}
._10_c01089{width:28.777839px;}
._e_c01089{width:33.143502px;}
._0_c01089{width:37.206552px;}
._12_c01089{width:38.647456px;}
._9_c01089{width:49.738797px;}
.fc0_c01089{color:transparent;}
.fs9_c01089{font-size:29.250000px;}
.fs6_c01089{font-size:75.000000px;}
.fs4_c01089{font-size:75.750000px;}
.fs5_c01089{font-size:76.500000px;}
.fsa_c01089{font-size:78.000000px;}
.fs0_c01089{font-size:78.750000px;}
.fs1_c01089{font-size:79.500000px;}
.fs3_c01089{font-size:80.250000px;}
.fs2_c01089{font-size:81.000000px;}
.fs8_c01089{font-size:87.750000px;}
.fs7_c01089{font-size:90.000000px;}
.fsb_c01089{font-size:96.000000px;}
.y0_c01089{bottom:0.000000px;}
.y19_c01089{bottom:183.960600px;}
.y18_c01089{bottom:213.480285px;}
.y17_c01089{bottom:243.720150px;}
.y16_c01089{bottom:302.400285px;}
.y15_c01089{bottom:332.280900px;}
.y14_c01089{bottom:332.281695px;}
.y13_c01089{bottom:362.880000px;}
.y12_c01089{bottom:421.560285px;}
.y11_c01089{bottom:451.079295px;}
.y10_c01089{bottom:481.321515px;}
.yf_c01089{bottom:511.920600px;}
.ye_c01089{bottom:571.680135px;}
.yc_c01089{bottom:601.559265px;}
.yd_c01089{bottom:601.560750px;}
.yb_c01089{bottom:630.720405px;}
.ya_c01089{bottom:660.600135px;}
.y9_c01089{bottom:841.680090px;}
.y8_c01089{bottom:871.200690px;}
.y7_c01089{bottom:901.080420px;}
.y6_c01089{bottom:960.119940px;}
.y5_c01089{bottom:990.000555px;}
.y4_c01089{bottom:1020.601320px;}
.y3_c01089{bottom:1080.000000px;}
.y2_c01089{bottom:1109.160465px;}
.y1_c01089{bottom:1139.761140px;}
.hc_c01089{height:30.506836px;}
.ha_c01089{height:74.307495px;}
.h6_c01089{height:76.341797px;}
.hf_c01089{height:76.552734px;}
.h7_c01089{height:77.097656px;}
.h4_c01089{height:77.288818px;}
.h10_c01089{height:77.986084px;}
.h8_c01089{height:78.222656px;}
.hd_c01089{height:78.609375px;}
.h5_c01089{height:78.721802px;}
.h1_c01089{height:79.365234px;}
.h2_c01089{height:80.121094px;}
.h3_c01089{height:81.632812px;}
.hb_c01089{height:86.721680px;}
.h9_c01089{height:93.867188px;}
.he_c01089{height:100.125000px;}
.h0_c01089{height:1263.000000px;}
.w0_c01089{width:892.500000px;}
.x0_c01089{left:0.000000px;}
.xa_c01089{left:135.718500px;}
.x1_c01089{left:137.158815px;}
.x11_c01089{left:138.599220px;}
.x1f_c01089{left:213.839535px;}
.xb_c01089{left:221.759535px;}
.xc_c01089{left:236.518635px;}
.x1c_c01089{left:237.958950px;}
.x20_c01089{left:246.239850px;}
.x1d_c01089{left:255.598500px;}
.x6_c01089{left:262.439250px;}
.x2_c01089{left:264.958950px;}
.x7_c01089{left:277.918350px;}
.x1e_c01089{left:285.838515px;}
.x3_c01089{left:289.798515px;}
.x4_c01089{left:304.918350px;}
.x13_c01089{left:306.719535px;}
.x15_c01089{left:331.559100px;}
.x1a_c01089{left:338.399850px;}
.x14_c01089{left:345.238785px;}
.xd_c01089{left:356.759535px;}
.xe_c01089{left:371.879535px;}
.x5_c01089{left:380.878950px;}
.x18_c01089{left:393.119985px;}
.x19_c01089{left:430.198785px;}
.x1b_c01089{left:455.758530px;}
.x8_c01089{left:478.798515px;}
.xf_c01089{left:484.918950px;}
.x16_c01089{left:501.479235px;}
.x9_c01089{left:510.839535px;}
.x17_c01089{left:514.079400px;}
.x12_c01089{left:516.239820px;}
.x10_c01089{left:518.398635px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls18_c01089{letter-spacing:-15.733380pt;}
.ls23_c01089{letter-spacing:-6.991380pt;}
.ls17_c01089{letter-spacing:-6.601000pt;}
.ls13_c01089{letter-spacing:-5.285000pt;}
.ls19_c01089{letter-spacing:-4.893467pt;}
.ls5_c01089{letter-spacing:-4.619300pt;}
.ls1a_c01089{letter-spacing:-4.195113pt;}
.lsf_c01089{letter-spacing:-3.495333pt;}
.ls16_c01089{letter-spacing:-3.304000pt;}
.ls7_c01089{letter-spacing:-2.796267pt;}
.ls4_c01089{letter-spacing:-2.743200pt;}
.ls1_c01089{letter-spacing:-2.716000pt;}
.ls6_c01089{letter-spacing:-2.639000pt;}
.ls8_c01089{letter-spacing:-2.097200pt;}
.lsb_c01089{letter-spacing:-2.037000pt;}
.lsa_c01089{letter-spacing:-1.981700pt;}
.lse_c01089{letter-spacing:-1.398847pt;}
.lsc_c01089{letter-spacing:-1.357300pt;}
.ls12_c01089{letter-spacing:-1.323700pt;}
.ls1e_c01089{letter-spacing:-0.728000pt;}
.ls1b_c01089{letter-spacing:-0.699067pt;}
.ls21_c01089{letter-spacing:-0.686400pt;}
.ls10_c01089{letter-spacing:-0.679000pt;}
.ls15_c01089{letter-spacing:-0.658000pt;}
.ls3_c01089{letter-spacing:0.000000pt;}
.ls1c_c01089{letter-spacing:0.658000pt;}
.ls22_c01089{letter-spacing:0.679000pt;}
.ls2_c01089{letter-spacing:0.756000pt;}
.ls1f_c01089{letter-spacing:1.357300pt;}
.ls11_c01089{letter-spacing:1.441600pt;}
.ls14_c01089{letter-spacing:2.097200pt;}
.ls1d_c01089{letter-spacing:4.472000pt;}
.ls0_c01089{letter-spacing:4.619300pt;}
.lsd_c01089{letter-spacing:5.406000pt;}
.ls9_c01089{letter-spacing:5.592533pt;}
.ls20_c01089{letter-spacing:6.148707pt;}
.ws0_c01089{word-spacing:0.000000pt;}
._a_c01089{margin-left:-12.932265pt;}
._13_c01089{margin-left:-2.312840pt;}
._7_c01089{width:1.395800pt;}
._6_c01089{width:2.507004pt;}
._2_c01089{width:4.298753pt;}
._d_c01089{width:5.515789pt;}
._1_c01089{width:7.034138pt;}
._4_c01089{width:8.659363pt;}
._14_c01089{width:9.659946pt;}
._3_c01089{width:10.996815pt;}
._5_c01089{width:13.903730pt;}
._c_c01089{width:15.983417pt;}
._15_c01089{width:18.403449pt;}
._8_c01089{width:19.668679pt;}
._b_c01089{width:20.612603pt;}
._11_c01089{width:22.455666pt;}
._f_c01089{width:24.246060pt;}
._10_c01089{width:25.580301pt;}
._e_c01089{width:29.460890pt;}
._0_c01089{width:33.072491pt;}
._12_c01089{width:34.353294pt;}
._9_c01089{width:44.212264pt;}
.fs9_c01089{font-size:26.000000pt;}
.fs6_c01089{font-size:66.666667pt;}
.fs4_c01089{font-size:67.333333pt;}
.fs5_c01089{font-size:68.000000pt;}
.fsa_c01089{font-size:69.333333pt;}
.fs0_c01089{font-size:70.000000pt;}
.fs1_c01089{font-size:70.666667pt;}
.fs3_c01089{font-size:71.333333pt;}
.fs2_c01089{font-size:72.000000pt;}
.fs8_c01089{font-size:78.000000pt;}
.fs7_c01089{font-size:80.000000pt;}
.fsb_c01089{font-size:85.333333pt;}
.y0_c01089{bottom:0.000000pt;}
.y19_c01089{bottom:163.520533pt;}
.y18_c01089{bottom:189.760253pt;}
.y17_c01089{bottom:216.640133pt;}
.y16_c01089{bottom:268.800253pt;}
.y15_c01089{bottom:295.360800pt;}
.y14_c01089{bottom:295.361507pt;}
.y13_c01089{bottom:322.560000pt;}
.y12_c01089{bottom:374.720253pt;}
.y11_c01089{bottom:400.959373pt;}
.y10_c01089{bottom:427.841347pt;}
.yf_c01089{bottom:455.040533pt;}
.ye_c01089{bottom:508.160120pt;}
.yc_c01089{bottom:534.719347pt;}
.yd_c01089{bottom:534.720667pt;}
.yb_c01089{bottom:560.640360pt;}
.ya_c01089{bottom:587.200120pt;}
.y9_c01089{bottom:748.160080pt;}
.y8_c01089{bottom:774.400613pt;}
.y7_c01089{bottom:800.960373pt;}
.y6_c01089{bottom:853.439947pt;}
.y5_c01089{bottom:880.000493pt;}
.y4_c01089{bottom:907.201173pt;}
.y3_c01089{bottom:960.000000pt;}
.y2_c01089{bottom:985.920413pt;}
.y1_c01089{bottom:1013.121013pt;}
.hc_c01089{height:27.117188pt;}
.ha_c01089{height:66.051107pt;}
.h6_c01089{height:67.859375pt;}
.hf_c01089{height:68.046875pt;}
.h7_c01089{height:68.531250pt;}
.h4_c01089{height:68.701172pt;}
.h10_c01089{height:69.320964pt;}
.h8_c01089{height:69.531250pt;}
.hd_c01089{height:69.875000pt;}
.h5_c01089{height:69.974935pt;}
.h1_c01089{height:70.546875pt;}
.h2_c01089{height:71.218750pt;}
.h3_c01089{height:72.562500pt;}
.hb_c01089{height:77.085938pt;}
.h9_c01089{height:83.437500pt;}
.he_c01089{height:89.000000pt;}
.h0_c01089{height:1122.666667pt;}
.w0_c01089{width:793.333333pt;}
.x0_c01089{left:0.000000pt;}
.xa_c01089{left:120.638667pt;}
.x1_c01089{left:121.918947pt;}
.x11_c01089{left:123.199307pt;}
.x1f_c01089{left:190.079587pt;}
.xb_c01089{left:197.119587pt;}
.xc_c01089{left:210.238787pt;}
.x1c_c01089{left:211.519067pt;}
.x20_c01089{left:218.879867pt;}
.x1d_c01089{left:227.198667pt;}
.x6_c01089{left:233.279333pt;}
.x2_c01089{left:235.519067pt;}
.x7_c01089{left:247.038533pt;}
.x1e_c01089{left:254.078680pt;}
.x3_c01089{left:257.598680pt;}
.x4_c01089{left:271.038533pt;}
.x13_c01089{left:272.639587pt;}
.x15_c01089{left:294.719200pt;}
.x1a_c01089{left:300.799867pt;}
.x14_c01089{left:306.878920pt;}
.xd_c01089{left:317.119587pt;}
.xe_c01089{left:330.559587pt;}
.x5_c01089{left:338.559067pt;}
.x18_c01089{left:349.439987pt;}
.x19_c01089{left:382.398920pt;}
.x1b_c01089{left:405.118693pt;}
.x8_c01089{left:425.598680pt;}
.xf_c01089{left:431.039067pt;}
.x16_c01089{left:445.759320pt;}
.x9_c01089{left:454.079587pt;}
.x17_c01089{left:456.959467pt;}
.x12_c01089{left:458.879840pt;}
.x10_c01089{left:460.798787pt;}
}





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

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_cdded7467cb0e4003114bc79.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_70ec7be150f0f57a4bb09713.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01090;src:url('chunks/assets/font_978f2eeb91c1219519ab4c38.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_0a85e7ebe966c4bbcebd11d3.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01090;src:url('chunks/assets/font_7336fb4600078e56e300b336.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01090;src:url('chunks/assets/font_0460481ba19467e2dd1efaf9.woff2')format("woff");}.ff6_c01090{font-family:ff6_c01090;line-height:1.432129;font-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_c01090{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1a_c01090{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m10_c01090{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m19_c01090{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m15_c01090{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m0_c01090{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m12_c01090{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m2_c01090{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.me_c01090{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m6_c01090{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m13_c01090{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m16_c01090{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m17_c01090{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1_c01090{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m7_c01090{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m18_c01090{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m5_c01090{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.mc_c01090{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m3_c01090{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m8_c01090{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m11_c01090{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.mb_c01090{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m4_c01090{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m9_c01090{transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317708,0.000000,0.000000,0.250000,0,0);}
.m14_c01090{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.ma_c01090{transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);}
.md_c01090{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.lsa_c01090{letter-spacing:-9.968700px;}
.ls16_c01090{letter-spacing:-9.017400px;}
.ls1f_c01090{letter-spacing:-6.685875px;}
.ls1c_c01090{letter-spacing:-5.945625px;}
.ls4_c01090{letter-spacing:-4.766850px;}
.ls19_c01090{letter-spacing:-4.456463px;}
.ls1e_c01090{letter-spacing:-4.297425px;}
.ls15_c01090{letter-spacing:-3.717000px;}
.lsf_c01090{letter-spacing:-3.549000px;}
.ls12_c01090{letter-spacing:-3.121673px;}
.ls7_c01090{letter-spacing:-2.968875px;}
.lsc_c01090{letter-spacing:-2.952000px;}
.ls11_c01090{letter-spacing:-2.229413px;}
.lse_c01090{letter-spacing:-1.589753px;}
.ls9_c01090{letter-spacing:-1.560450px;}
.ls10_c01090{letter-spacing:-1.489163px;}
.ls8_c01090{letter-spacing:-0.780225px;}
.ls6_c01090{letter-spacing:-0.740250px;}
.ls1d_c01090{letter-spacing:-0.710685px;}
.lsd_c01090{letter-spacing:-0.601178px;}
.ls5_c01090{letter-spacing:0.000000px;}
.lsb_c01090{letter-spacing:0.778800px;}
.ls2_c01090{letter-spacing:0.780225px;}
.ls3_c01090{letter-spacing:1.560450px;}
.ls0_c01090{letter-spacing:2.229413px;}
.ls1_c01090{letter-spacing:3.121673px;}
.ls14_c01090{letter-spacing:3.895500px;}
.ls17_c01090{letter-spacing:5.460803px;}
.ls1a_c01090{letter-spacing:7.022025px;}
.ls13_c01090{letter-spacing:8.582475px;}
.ls20_c01090{letter-spacing:11.169090px;}
.ls1b_c01090{letter-spacing:13.672620px;}
.ls18_c01090{letter-spacing:14.197635px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:0.000000px;}
._19_c01090{margin-left:-43.673537px;}
._c_c01090{margin-left:-28.200237px;}
._16_c01090{margin-left:-18.053153px;}
._15_c01090{margin-left:-16.323331px;}
._b_c01090{margin-left:-12.251226px;}
._d_c01090{margin-left:-6.293479px;}
._6_c01090{margin-left:-2.865366px;}
._14_c01090{margin-left:-1.170686px;}
._2_c01090{width:2.974562px;}
._4_c01090{width:4.526600px;}
._18_c01090{width:5.609584px;}
._3_c01090{width:6.643375px;}
._9_c01090{width:8.617965px;}
._8_c01090{width:9.964522px;}
._7_c01090{width:11.682393px;}
._1_c01090{width:13.088369px;}
._5_c01090{width:15.415015px;}
._0_c01090{width:17.470759px;}
._17_c01090{width:22.127383px;}
._a_c01090{width:25.651579px;}
._10_c01090{width:28.162085px;}
._f_c01090{width:29.629717px;}
._11_c01090{width:32.458729px;}
._e_c01090{width:34.568219px;}
._12_c01090{width:35.713036px;}
._13_c01090{width:37.241172px;}
.fc0_c01090{color:transparent;}
.fs8_c01090{font-size:57.750000px;}
.fs5_c01090{font-size:66.000000px;}
.fs3_c01090{font-size:70.500000px;}
.fs7_c01090{font-size:72.000000px;}
.fsa_c01090{font-size:74.250000px;}
.fse_c01090{font-size:76.500000px;}
.fs2_c01090{font-size:77.250000px;}
.fs9_c01090{font-size:78.000000px;}
.fs1_c01090{font-size:78.750000px;}
.fsb_c01090{font-size:79.500000px;}
.fs0_c01090{font-size:80.250000px;}
.fs4_c01090{font-size:81.000000px;}
.fs10_c01090{font-size:82.500000px;}
.fsc_c01090{font-size:84.750000px;}
.fs6_c01090{font-size:86.250000px;}
.fsf_c01090{font-size:90.000000px;}
.fsd_c01090{font-size:96.000000px;}
.y0_c01090{bottom:0.000000px;}
.y1b_c01090{bottom:177.120000px;}
.y1a_c01090{bottom:206.638935px;}
.y19_c01090{bottom:236.518665px;}
.y18_c01090{bottom:266.040000px;}
.y17_c01090{bottom:325.079385px;}
.y16_c01090{bottom:355.320120px;}
.y15_c01090{bottom:385.199850px;}
.y14_c01090{bottom:444.600135px;}
.y12_c01090{bottom:474.478800px;}
.y13_c01090{bottom:474.479235px;}
.y11_c01090{bottom:505.978905px;}
.y10_c01090{bottom:534.958920px;}
.yf_c01090{bottom:594.720150px;}
.yd_c01090{bottom:624.239070px;}
.ye_c01090{bottom:624.239820px;}
.yc_c01090{bottom:654.118785px;}
.yb_c01090{bottom:833.760135px;}
.y9_c01090{bottom:863.999250px;}
.ya_c01090{bottom:864.000000px;}
.y8_c01090{bottom:893.878965px;}
.y7_c01090{bottom:953.999355px;}
.y6_c01090{bottom:983.519070px;}
.y5_c01090{bottom:1013.759040px;}
.y4_c01090{bottom:1072.800105px;}
.y3_c01090{bottom:1074.958920px;}
.y2_c01090{bottom:1102.319820px;}
.y1_c01090{bottom:1132.559685px;}
.h9_c01090{height:60.231445px;}
.h6_c01090{height:66.515625px;}
.h4_c01090{height:69.673828px;}
.h10_c01090{height:75.043213px;}
.h16_c01090{height:75.080566px;}
.h8_c01090{height:75.093750px;}
.h3_c01090{height:75.778931px;}
.h13_c01090{height:76.514648px;}
.h14_c01090{height:76.552734px;}
.h2_c01090{height:77.288818px;}
.hb_c01090{height:77.440430px;}
.ha_c01090{height:78.609375px;}
.h15_c01090{height:79.365234px;}
.h18_c01090{height:79.497070px;}
.hc_c01090{height:80.121094px;}
.h1_c01090{height:80.876953px;}
.h17_c01090{height:80.969238px;}
.h11_c01090{height:82.133789px;}
.hd_c01090{height:83.177490px;}
.he_c01090{height:83.756836px;}
.h5_c01090{height:84.480469px;}
.h7_c01090{height:89.956055px;}
.h12_c01090{height:93.867188px;}
.hf_c01090{height:100.125000px;}
.h0_c01090{height:1263.000000px;}
.w0_c01090{width:892.500000px;}
.x0_c01090{left:0.000000px;}
.x1_c01090{left:140.398665px;}
.x3_c01090{left:141.479715px;}
.x17_c01090{left:142.918620px;}
.x1f_c01090{left:144.358770px;}
.x7_c01090{left:152.639700px;}
.x4_c01090{left:157.679100px;}
.x8_c01090{left:159.478665px;}
.x5_c01090{left:176.038950px;}
.x9_c01090{left:194.398635px;}
.x6_c01090{left:205.199385px;}
.xf_c01090{left:219.239850px;}
.x15_c01090{left:240.478635px;}
.x1d_c01090{left:241.559685px;}
.x10_c01090{left:252.358635px;}
.x13_c01090{left:254.519100px;}
.x1c_c01090{left:255.598500px;}
.x16_c01090{left:264.238785px;}
.xd_c01090{left:266.040000px;}
.x20_c01090{left:274.678500px;}
.xa_c01090{left:287.278800px;}
.x1a_c01090{left:289.798515px;}
.xe_c01090{left:295.559685px;}
.x21_c01090{left:300.958350px;}
.x2_c01090{left:311.759100px;}
.x1b_c01090{left:321.839535px;}
.x1e_c01090{left:354.958350px;}
.xb_c01090{left:391.318770px;}
.xc_c01090{left:414.719565px;}
.x11_c01090{left:481.319820px;}
.x18_c01090{left:511.918950px;}
.x19_c01090{left:520.559100px;}
.x12_c01090{left:524.159820px;}
.x14_c01090{left:664.199385px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.lsa_c01090{letter-spacing:-8.861067pt;}
.ls16_c01090{letter-spacing:-8.015467pt;}
.ls1f_c01090{letter-spacing:-5.943000pt;}
.ls1c_c01090{letter-spacing:-5.285000pt;}
.ls4_c01090{letter-spacing:-4.237200pt;}
.ls19_c01090{letter-spacing:-3.961300pt;}
.ls1e_c01090{letter-spacing:-3.819933pt;}
.ls15_c01090{letter-spacing:-3.304000pt;}
.lsf_c01090{letter-spacing:-3.154667pt;}
.ls12_c01090{letter-spacing:-2.774820pt;}
.ls7_c01090{letter-spacing:-2.639000pt;}
.lsc_c01090{letter-spacing:-2.624000pt;}
.ls11_c01090{letter-spacing:-1.981700pt;}
.lse_c01090{letter-spacing:-1.413113pt;}
.ls9_c01090{letter-spacing:-1.387067pt;}
.ls10_c01090{letter-spacing:-1.323700pt;}
.ls8_c01090{letter-spacing:-0.693533pt;}
.ls6_c01090{letter-spacing:-0.658000pt;}
.ls1d_c01090{letter-spacing:-0.631720pt;}
.lsd_c01090{letter-spacing:-0.534380pt;}
.ls5_c01090{letter-spacing:0.000000pt;}
.lsb_c01090{letter-spacing:0.692267pt;}
.ls2_c01090{letter-spacing:0.693533pt;}
.ls3_c01090{letter-spacing:1.387067pt;}
.ls0_c01090{letter-spacing:1.981700pt;}
.ls1_c01090{letter-spacing:2.774820pt;}
.ls14_c01090{letter-spacing:3.462667pt;}
.ls17_c01090{letter-spacing:4.854047pt;}
.ls1a_c01090{letter-spacing:6.241800pt;}
.ls13_c01090{letter-spacing:7.628867pt;}
.ls20_c01090{letter-spacing:9.928080pt;}
.ls1b_c01090{letter-spacing:12.153440pt;}
.ls18_c01090{letter-spacing:12.620120pt;}
.ws0_c01090{word-spacing:0.000000pt;}
._19_c01090{margin-left:-38.820922pt;}
._c_c01090{margin-left:-25.066878pt;}
._16_c01090{margin-left:-16.047247pt;}
._15_c01090{margin-left:-14.509627pt;}
._b_c01090{margin-left:-10.889978pt;}
._d_c01090{margin-left:-5.594204pt;}
._6_c01090{margin-left:-2.546992pt;}
._14_c01090{margin-left:-1.040609pt;}
._2_c01090{width:2.644055pt;}
._4_c01090{width:4.023645pt;}
._18_c01090{width:4.986297pt;}
._3_c01090{width:5.905222pt;}
._9_c01090{width:7.660413pt;}
._8_c01090{width:8.857353pt;}
._7_c01090{width:10.384349pt;}
._1_c01090{width:11.634106pt;}
._5_c01090{width:13.702236pt;}
._0_c01090{width:15.529563pt;}
._17_c01090{width:19.668785pt;}
._a_c01090{width:22.801404pt;}
._10_c01090{width:25.032964pt;}
._f_c01090{width:26.337526pt;}
._11_c01090{width:28.852204pt;}
._e_c01090{width:30.727306pt;}
._12_c01090{width:31.744921pt;}
._13_c01090{width:33.103264pt;}
.fs8_c01090{font-size:51.333333pt;}
.fs5_c01090{font-size:58.666667pt;}
.fs3_c01090{font-size:62.666667pt;}
.fs7_c01090{font-size:64.000000pt;}
.fsa_c01090{font-size:66.000000pt;}
.fse_c01090{font-size:68.000000pt;}
.fs2_c01090{font-size:68.666667pt;}
.fs9_c01090{font-size:69.333333pt;}
.fs1_c01090{font-size:70.000000pt;}
.fsb_c01090{font-size:70.666667pt;}
.fs0_c01090{font-size:71.333333pt;}
.fs4_c01090{font-size:72.000000pt;}
.fs10_c01090{font-size:73.333333pt;}
.fsc_c01090{font-size:75.333333pt;}
.fs6_c01090{font-size:76.666667pt;}
.fsf_c01090{font-size:80.000000pt;}
.fsd_c01090{font-size:85.333333pt;}
.y0_c01090{bottom:0.000000pt;}
.y1b_c01090{bottom:157.440000pt;}
.y1a_c01090{bottom:183.679053pt;}
.y19_c01090{bottom:210.238813pt;}
.y18_c01090{bottom:236.480000pt;}
.y17_c01090{bottom:288.959453pt;}
.y16_c01090{bottom:315.840107pt;}
.y15_c01090{bottom:342.399867pt;}
.y14_c01090{bottom:395.200120pt;}
.y12_c01090{bottom:421.758933pt;}
.y13_c01090{bottom:421.759320pt;}
.y11_c01090{bottom:449.759027pt;}
.y10_c01090{bottom:475.519040pt;}
.yf_c01090{bottom:528.640133pt;}
.yd_c01090{bottom:554.879173pt;}
.ye_c01090{bottom:554.879840pt;}
.yc_c01090{bottom:581.438920pt;}
.yb_c01090{bottom:741.120120pt;}
.y9_c01090{bottom:767.999333pt;}
.ya_c01090{bottom:768.000000pt;}
.y8_c01090{bottom:794.559080pt;}
.y7_c01090{bottom:847.999427pt;}
.y6_c01090{bottom:874.239173pt;}
.y5_c01090{bottom:901.119147pt;}
.y4_c01090{bottom:953.600093pt;}
.y3_c01090{bottom:955.519040pt;}
.y2_c01090{bottom:979.839840pt;}
.y1_c01090{bottom:1006.719720pt;}
.h9_c01090{height:53.539062pt;}
.h6_c01090{height:59.125000pt;}
.h4_c01090{height:61.932292pt;}
.h10_c01090{height:66.705078pt;}
.h16_c01090{height:66.738281pt;}
.h8_c01090{height:66.750000pt;}
.h3_c01090{height:67.359049pt;}
.h13_c01090{height:68.013021pt;}
.h14_c01090{height:68.046875pt;}
.h2_c01090{height:68.701172pt;}
.hb_c01090{height:68.835938pt;}
.ha_c01090{height:69.875000pt;}
.h15_c01090{height:70.546875pt;}
.h18_c01090{height:70.664062pt;}
.hc_c01090{height:71.218750pt;}
.h1_c01090{height:71.890625pt;}
.h17_c01090{height:71.972656pt;}
.h11_c01090{height:73.007812pt;}
.hd_c01090{height:73.935547pt;}
.he_c01090{height:74.450521pt;}
.h5_c01090{height:75.093750pt;}
.h7_c01090{height:79.960938pt;}
.h12_c01090{height:83.437500pt;}
.hf_c01090{height:89.000000pt;}
.h0_c01090{height:1122.666667pt;}
.w0_c01090{width:793.333333pt;}
.x0_c01090{left:0.000000pt;}
.x1_c01090{left:124.798813pt;}
.x3_c01090{left:125.759747pt;}
.x17_c01090{left:127.038773pt;}
.x1f_c01090{left:128.318907pt;}
.x7_c01090{left:135.679733pt;}
.x4_c01090{left:140.159200pt;}
.x8_c01090{left:141.758813pt;}
.x5_c01090{left:156.479067pt;}
.x9_c01090{left:172.798787pt;}
.x6_c01090{left:182.399453pt;}
.xf_c01090{left:194.879867pt;}
.x15_c01090{left:213.758787pt;}
.x1d_c01090{left:214.719720pt;}
.x10_c01090{left:224.318787pt;}
.x13_c01090{left:226.239200pt;}
.x1c_c01090{left:227.198667pt;}
.x16_c01090{left:234.878920pt;}
.xd_c01090{left:236.480000pt;}
.x20_c01090{left:244.158667pt;}
.xa_c01090{left:255.358933pt;}
.x1a_c01090{left:257.598680pt;}
.xe_c01090{left:262.719720pt;}
.x21_c01090{left:267.518533pt;}
.x2_c01090{left:277.119200pt;}
.x1b_c01090{left:286.079587pt;}
.x1e_c01090{left:315.518533pt;}
.xb_c01090{left:347.838907pt;}
.xc_c01090{left:368.639613pt;}
.x11_c01090{left:427.839840pt;}
.x18_c01090{left:455.039067pt;}
.x19_c01090{left:462.719200pt;}
.x12_c01090{left:465.919840pt;}
.x14_c01090{left:590.399453pt;}
}





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

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_d01e4e86b482750fad9433bd.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_084f7f1ec28f5bdbb29c9f5c.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01091;src:url('chunks/assets/font_b13b580045ee5320c8c4af57.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01091;src:url('chunks/assets/font_f08f6f81e8f5cb49ae3ce604.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01091;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff5_c01091{font-family:ff5_c01091;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01091;src:url('chunks/assets/font_43d6fb29b4f45727814014e1.woff2')format("woff");}.ff6_c01091{font-family:ff6_c01091;line-height:1.432129;font-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_c01091{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m14_c01091{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m19_c01091{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.md_c01091{transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);}
.m1e_c01091{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m1c_c01091{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m16_c01091{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m1_c01091{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6_c01091{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m3_c01091{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m17_c01091{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m4_c01091{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.mb_c01091{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m5_c01091{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.ma_c01091{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.me_c01091{transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237864,0.000000,0.000000,0.250000,0,0);}
.m7_c01091{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1a_c01091{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_c01091{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m10_c01091{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1b_c01091{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m11_c01091{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1d_c01091{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m15_c01091{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.mf_c01091{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m18_c01091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01091{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m2_c01091{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m8_c01091{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.mc_c01091{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m12_c01091{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.ls1d_c01091{letter-spacing:-12.124800px;}
.ls11_c01091{letter-spacing:-8.430300px;}
.ls22_c01091{letter-spacing:-8.095500px;}
.ls20_c01091{letter-spacing:-6.623663px;}
.ls21_c01091{letter-spacing:-5.890500px;}
.ls18_c01091{letter-spacing:-5.150250px;}
.ls6_c01091{letter-spacing:-4.828200px;}
.ls28_c01091{letter-spacing:-4.815000px;}
.ls7_c01091{letter-spacing:-4.770000px;}
.ls25_c01091{letter-spacing:-4.634850px;}
.ls1f_c01091{letter-spacing:-4.498905px;}
.lsb_c01091{letter-spacing:-4.418663px;}
.ls27_c01091{letter-spacing:-4.012500px;}
.ls17_c01091{letter-spacing:-3.820703px;}
.ls4_c01091{letter-spacing:-3.678413px;}
.ls26_c01091{letter-spacing:-3.209198px;}
.lsf_c01091{letter-spacing:-3.151800px;}
.ls0_c01091{letter-spacing:-3.113700px;}
.ls2_c01091{letter-spacing:-2.945250px;}
.ls1c_c01091{letter-spacing:-2.407500px;}
.ls15_c01091{letter-spacing:-2.335275px;}
.lse_c01091{letter-spacing:-2.205000px;}
.lsa_c01091{letter-spacing:-2.184000px;}
.ls19_c01091{letter-spacing:-1.605000px;}
.ls5_c01091{letter-spacing:-1.473413px;}
.ls23_c01091{letter-spacing:-0.801698px;}
.ls9_c01091{letter-spacing:-0.787050px;}
.ls1b_c01091{letter-spacing:-0.731588px;}
.ls3_c01091{letter-spacing:0.000000px;}
.ls1e_c01091{letter-spacing:0.874800px;}
.lsc_c01091{letter-spacing:1.009800px;}
.ls16_c01091{letter-spacing:1.556048px;}
.lsd_c01091{letter-spacing:2.360355px;}
.ls29_c01091{letter-spacing:2.616300px;}
.ls24_c01091{letter-spacing:3.127500px;}
.ls8_c01091{letter-spacing:3.425625px;}
.ls1_c01091{letter-spacing:3.427200px;}
.ls10_c01091{letter-spacing:4.012500px;}
.ls12_c01091{letter-spacing:4.488998px;}
.ls2a_c01091{letter-spacing:7.120710px;}
.ls1a_c01091{letter-spacing:7.384440px;}
.ls13_c01091{letter-spacing:7.880273px;}
.ls14_c01091{letter-spacing:8.330325px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:0.000000px;}
._f_c01091{margin-left:-4.330661px;}
._4_c01091{margin-left:-3.182000px;}
._10_c01091{margin-left:-1.569144px;}
._9_c01091{width:1.878411px;}
._1_c01091{width:4.070102px;}
._5_c01091{width:5.267242px;}
._b_c01091{width:6.342743px;}
._2_c01091{width:7.639074px;}
._0_c01091{width:9.023101px;}
._7_c01091{width:10.440955px;}
._3_c01091{width:12.318759px;}
._d_c01091{width:13.503314px;}
._c_c01091{width:15.710434px;}
._6_c01091{width:19.666981px;}
._e_c01091{width:20.790236px;}
._8_c01091{width:23.682966px;}
._a_c01091{width:33.272184px;}
.fc0_c01091{color:transparent;}
.fs9_c01091{font-size:72.000000px;}
.fsc_c01091{font-size:75.000000px;}
.fs5_c01091{font-size:76.500000px;}
.fs6_c01091{font-size:77.250000px;}
.fs3_c01091{font-size:78.000000px;}
.fs2_c01091{font-size:78.750000px;}
.fs4_c01091{font-size:79.500000px;}
.fs0_c01091{font-size:80.250000px;}
.fsa_c01091{font-size:81.000000px;}
.fs7_c01091{font-size:81.750000px;}
.fsd_c01091{font-size:82.500000px;}
.fs1_c01091{font-size:84.000000px;}
.fsb_c01091{font-size:84.750000px;}
.fs8_c01091{font-size:96.000000px;}
.y0_c01091{bottom:0.000000px;}
.y18_c01091{bottom:209.518635px;}
.y17_c01091{bottom:238.679100px;}
.y16_c01091{bottom:268.918950px;}
.y15_c01091{bottom:327.960000px;}
.y14_c01091{bottom:358.199850px;}
.y13_c01091{bottom:388.078815px;}
.y12_c01091{bottom:447.840090px;}
.y10_c01091{bottom:478.079205px;}
.y11_c01091{bottom:478.080000px;}
.ye_c01091{bottom:507.958875px;}
.yf_c01091{bottom:507.958920px;}
.yd_c01091{bottom:538.198785px;}
.yc_c01091{bottom:597.599070px;}
.yb_c01091{bottom:627.479880px;}
.ya_c01091{bottom:656.999400px;}
.y9_c01091{bottom:837.000000px;}
.y8_c01091{bottom:866.878965px;}
.y7_c01091{bottom:897.118740px;}
.y6_c01091{bottom:956.519070px;}
.y5_c01091{bottom:986.399025px;}
.y4_c01091{bottom:1016.278755px;}
.y3_c01091{bottom:1076.399235px;}
.y2_c01091{bottom:1107.359250px;}
.y1_c01091{bottom:1136.878875px;}
.h9_c01091{height:75.080566px;}
.h10_c01091{height:75.093750px;}
.h13_c01091{height:75.585938px;}
.h7_c01091{height:75.603516px;}
.hb_c01091{height:75.778931px;}
.h4_c01091{height:76.552734px;}
.h6_c01091{height:77.250366px;}
.h3_c01091{height:77.288818px;}
.hd_c01091{height:77.853516px;}
.h5_c01091{height:78.024902px;}
.ha_c01091{height:78.721802px;}
.h15_c01091{height:79.365234px;}
.h16_c01091{height:79.497070px;}
.h8_c01091{height:80.121094px;}
.hc_c01091{height:80.193237px;}
.h1_c01091{height:80.876953px;}
.h14_c01091{height:80.969238px;}
.h11_c01091{height:81.632812px;}
.hf_c01091{height:82.441406px;}
.h12_c01091{height:83.177490px;}
.h2_c01091{height:84.656250px;}
.he_c01091{height:100.125000px;}
.h0_c01091{height:1263.000000px;}
.w0_c01091{width:892.500000px;}
.x0_c01091{left:0.000000px;}
.x15_c01091{left:133.198785px;}
.x6_c01091{left:134.279850px;}
.x1_c01091{left:135.359250px;}
.x4_c01091{left:136.799565px;}
.x16_c01091{left:147.598500px;}
.x7_c01091{left:152.998950px;}
.x22_c01091{left:167.039400px;}
.x13_c01091{left:168.118815px;}
.x5_c01091{left:169.199850px;}
.x8_c01091{left:171.358665px;}
.xe_c01091{left:187.559685px;}
.x9_c01091{left:204.479250px;}
.x21_c01091{left:214.559685px;}
.x26_c01091{left:223.918350px;}
.xa_c01091{left:234.719100px;}
.xf_c01091{left:248.039385px;}
.x2_c01091{left:249.118785px;}
.xb_c01091{left:258.120000px;}
.x10_c01091{left:273.599100px;}
.x27_c01091{left:275.039385px;}
.x3_c01091{left:282.598500px;}
.x11_c01091{left:288.359850px;}
.x1e_c01091{left:307.078785px;}
.x28_c01091{left:309.239250px;}
.xc_c01091{left:314.998950px;}
.x17_c01091{left:321.839535px;}
.x29_c01091{left:329.398635px;}
.x19_c01091{left:338.759100px;}
.xd_c01091{left:345.958950px;}
.x14_c01091{left:348.839535px;}
.x2a_c01091{left:353.878950px;}
.x18_c01091{left:375.119385px;}
.x1a_c01091{left:400.319820px;}
.x1b_c01091{left:414.719565px;}
.x12_c01091{left:419.759085px;}
.x1c_c01091{left:493.559100px;}
.x1f_c01091{left:502.558635px;}
.x23_c01091{left:505.798515px;}
.x24_c01091{left:587.159370px;}
.x25_c01091{left:601.918350px;}
.x1d_c01091{left:621.718545px;}
.x20_c01091{left:730.438620px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls1d_c01091{letter-spacing:-10.777600pt;}
.ls11_c01091{letter-spacing:-7.493600pt;}
.ls22_c01091{letter-spacing:-7.196000pt;}
.ls20_c01091{letter-spacing:-5.887700pt;}
.ls21_c01091{letter-spacing:-5.236000pt;}
.ls18_c01091{letter-spacing:-4.578000pt;}
.ls6_c01091{letter-spacing:-4.291733pt;}
.ls28_c01091{letter-spacing:-4.280000pt;}
.ls7_c01091{letter-spacing:-4.240000pt;}
.ls25_c01091{letter-spacing:-4.119867pt;}
.ls1f_c01091{letter-spacing:-3.999027pt;}
.lsb_c01091{letter-spacing:-3.927700pt;}
.ls27_c01091{letter-spacing:-3.566667pt;}
.ls17_c01091{letter-spacing:-3.396180pt;}
.ls4_c01091{letter-spacing:-3.269700pt;}
.ls26_c01091{letter-spacing:-2.852620pt;}
.lsf_c01091{letter-spacing:-2.801600pt;}
.ls0_c01091{letter-spacing:-2.767733pt;}
.ls2_c01091{letter-spacing:-2.618000pt;}
.ls1c_c01091{letter-spacing:-2.140000pt;}
.ls15_c01091{letter-spacing:-2.075800pt;}
.lse_c01091{letter-spacing:-1.960000pt;}
.lsa_c01091{letter-spacing:-1.941333pt;}
.ls19_c01091{letter-spacing:-1.426667pt;}
.ls5_c01091{letter-spacing:-1.309700pt;}
.ls23_c01091{letter-spacing:-0.712620pt;}
.ls9_c01091{letter-spacing:-0.699600pt;}
.ls1b_c01091{letter-spacing:-0.650300pt;}
.ls3_c01091{letter-spacing:0.000000pt;}
.ls1e_c01091{letter-spacing:0.777600pt;}
.lsc_c01091{letter-spacing:0.897600pt;}
.ls16_c01091{letter-spacing:1.383153pt;}
.lsd_c01091{letter-spacing:2.098093pt;}
.ls29_c01091{letter-spacing:2.325600pt;}
.ls24_c01091{letter-spacing:2.780000pt;}
.ls8_c01091{letter-spacing:3.045000pt;}
.ls1_c01091{letter-spacing:3.046400pt;}
.ls10_c01091{letter-spacing:3.566667pt;}
.ls12_c01091{letter-spacing:3.990220pt;}
.ls2a_c01091{letter-spacing:6.329520pt;}
.ls1a_c01091{letter-spacing:6.563947pt;}
.ls13_c01091{letter-spacing:7.004687pt;}
.ls14_c01091{letter-spacing:7.404733pt;}
.ws0_c01091{word-spacing:0.000000pt;}
._f_c01091{margin-left:-3.849477pt;}
._4_c01091{margin-left:-2.828445pt;}
._10_c01091{margin-left:-1.394795pt;}
._9_c01091{width:1.669699pt;}
._1_c01091{width:3.617868pt;}
._5_c01091{width:4.681993pt;}
._b_c01091{width:5.637994pt;}
._2_c01091{width:6.790288pt;}
._0_c01091{width:8.020535pt;}
._7_c01091{width:9.280849pt;}
._3_c01091{width:10.950008pt;}
._d_c01091{width:12.002946pt;}
._c_c01091{width:13.964830pt;}
._6_c01091{width:17.481761pt;}
._e_c01091{width:18.480209pt;}
._8_c01091{width:21.051525pt;}
._a_c01091{width:29.575275pt;}
.fs9_c01091{font-size:64.000000pt;}
.fsc_c01091{font-size:66.666667pt;}
.fs5_c01091{font-size:68.000000pt;}
.fs6_c01091{font-size:68.666667pt;}
.fs3_c01091{font-size:69.333333pt;}
.fs2_c01091{font-size:70.000000pt;}
.fs4_c01091{font-size:70.666667pt;}
.fs0_c01091{font-size:71.333333pt;}
.fsa_c01091{font-size:72.000000pt;}
.fs7_c01091{font-size:72.666667pt;}
.fsd_c01091{font-size:73.333333pt;}
.fs1_c01091{font-size:74.666667pt;}
.fsb_c01091{font-size:75.333333pt;}
.fs8_c01091{font-size:85.333333pt;}
.y0_c01091{bottom:0.000000pt;}
.y18_c01091{bottom:186.238787pt;}
.y17_c01091{bottom:212.159200pt;}
.y16_c01091{bottom:239.039067pt;}
.y15_c01091{bottom:291.520000pt;}
.y14_c01091{bottom:318.399867pt;}
.y13_c01091{bottom:344.958947pt;}
.y12_c01091{bottom:398.080080pt;}
.y10_c01091{bottom:424.959293pt;}
.y11_c01091{bottom:424.960000pt;}
.ye_c01091{bottom:451.519000pt;}
.yf_c01091{bottom:451.519040pt;}
.yd_c01091{bottom:478.398920pt;}
.yc_c01091{bottom:531.199173pt;}
.yb_c01091{bottom:557.759893pt;}
.ya_c01091{bottom:583.999467pt;}
.y9_c01091{bottom:744.000000pt;}
.y8_c01091{bottom:770.559080pt;}
.y7_c01091{bottom:797.438880pt;}
.y6_c01091{bottom:850.239173pt;}
.y5_c01091{bottom:876.799133pt;}
.y4_c01091{bottom:903.358893pt;}
.y3_c01091{bottom:956.799320pt;}
.y2_c01091{bottom:984.319333pt;}
.y1_c01091{bottom:1010.559000pt;}
.h9_c01091{height:66.738281pt;}
.h10_c01091{height:66.750000pt;}
.h13_c01091{height:67.187500pt;}
.h7_c01091{height:67.203125pt;}
.hb_c01091{height:67.359049pt;}
.h4_c01091{height:68.046875pt;}
.h6_c01091{height:68.666992pt;}
.h3_c01091{height:68.701172pt;}
.hd_c01091{height:69.203125pt;}
.h5_c01091{height:69.355469pt;}
.ha_c01091{height:69.974935pt;}
.h15_c01091{height:70.546875pt;}
.h16_c01091{height:70.664062pt;}
.h8_c01091{height:71.218750pt;}
.hc_c01091{height:71.282878pt;}
.h1_c01091{height:71.890625pt;}
.h14_c01091{height:71.972656pt;}
.h11_c01091{height:72.562500pt;}
.hf_c01091{height:73.281250pt;}
.h12_c01091{height:73.935547pt;}
.h2_c01091{height:75.250000pt;}
.he_c01091{height:89.000000pt;}
.h0_c01091{height:1122.666667pt;}
.w0_c01091{width:793.333333pt;}
.x0_c01091{left:0.000000pt;}
.x15_c01091{left:118.398920pt;}
.x6_c01091{left:119.359867pt;}
.x1_c01091{left:120.319333pt;}
.x4_c01091{left:121.599613pt;}
.x16_c01091{left:131.198667pt;}
.x7_c01091{left:135.999067pt;}
.x22_c01091{left:148.479467pt;}
.x13_c01091{left:149.438947pt;}
.x5_c01091{left:150.399867pt;}
.x8_c01091{left:152.318813pt;}
.xe_c01091{left:166.719720pt;}
.x9_c01091{left:181.759333pt;}
.x21_c01091{left:190.719720pt;}
.x26_c01091{left:199.038533pt;}
.xa_c01091{left:208.639200pt;}
.xf_c01091{left:220.479453pt;}
.x2_c01091{left:221.438920pt;}
.xb_c01091{left:229.440000pt;}
.x10_c01091{left:243.199200pt;}
.x27_c01091{left:244.479453pt;}
.x3_c01091{left:251.198667pt;}
.x11_c01091{left:256.319867pt;}
.x1e_c01091{left:272.958920pt;}
.x28_c01091{left:274.879333pt;}
.xc_c01091{left:279.999067pt;}
.x17_c01091{left:286.079587pt;}
.x29_c01091{left:292.798787pt;}
.x19_c01091{left:301.119200pt;}
.xd_c01091{left:307.519067pt;}
.x14_c01091{left:310.079587pt;}
.x2a_c01091{left:314.559067pt;}
.x18_c01091{left:333.439453pt;}
.x1a_c01091{left:355.839840pt;}
.x1b_c01091{left:368.639613pt;}
.x12_c01091{left:373.119187pt;}
.x1c_c01091{left:438.719200pt;}
.x1f_c01091{left:446.718787pt;}
.x23_c01091{left:449.598680pt;}
.x24_c01091{left:521.919440pt;}
.x25_c01091{left:535.038533pt;}
.x1d_c01091{left:552.638707pt;}
.x20_c01091{left:649.278773pt;}
}





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

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_a55b38883e69feb95eda5c71.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_d47495eed8aa7597edbfdb88.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01092;src:url('chunks/assets/font_a82be367d72d5f4b5a03b9ba.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_fa727e90ad397c65f9e15f7e.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01092;src:url('chunks/assets/font_d47fbcd8d97ce4a56f57f376.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01092;src:url('chunks/assets/font_e14e7398b714d9dffab70be8.woff2')format("woff");}.ff6_c01092{font-family:ff6_c01092;line-height:1.364746;font-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_c01092{transform:matrix(0.179204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179204,0.000000,0.000000,0.250000,0,0);}
.me_c01092{transform:matrix(0.191038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191038,0.000000,0.000000,0.250000,0,0);}
.md_c01092{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m13_c01092{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1_c01092{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m15_c01092{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m12_c01092{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m11_c01092{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.mb_c01092{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m9_c01092{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m1b_c01092{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.mc_c01092{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m18_c01092{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m2_c01092{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m3_c01092{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m5_c01092{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m10_c01092{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m14_c01092{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);}
.m17_c01092{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m1c_c01092{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.ma_c01092{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m1a_c01092{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m0_c01092{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1d_c01092{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m19_c01092{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m8_c01092{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m4_c01092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01092{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.mf_c01092{transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373737,0.000000,0.000000,0.250000,0,0);}
.m7_c01092{transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls12_c01092{letter-spacing:-7.865303px;}
.ls15_c01092{letter-spacing:-7.496850px;}
.ls21_c01092{letter-spacing:-7.377600px;}
.ls23_c01092{letter-spacing:-6.177150px;}
.ls27_c01092{letter-spacing:-4.862348px;}
.ls1a_c01092{letter-spacing:-4.498905px;}
.ls1f_c01092{letter-spacing:-4.422000px;}
.ls13_c01092{letter-spacing:-3.891323px;}
.lsa_c01092{letter-spacing:-3.752400px;}
.ls9_c01092{letter-spacing:-3.242903px;}
.ls4_c01092{letter-spacing:-3.113700px;}
.lsd_c01092{letter-spacing:-2.997150px;}
.ls16_c01092{letter-spacing:-2.941500px;}
.lsf_c01092{letter-spacing:-2.431575px;}
.lsc_c01092{letter-spacing:-2.335275px;}
.ls8_c01092{letter-spacing:-2.250645px;}
.ls10_c01092{letter-spacing:-1.621050px;}
.lsb_c01092{letter-spacing:-1.503345px;}
.lse_c01092{letter-spacing:-0.810525px;}
.ls24_c01092{letter-spacing:-0.784800px;}
.ls1c_c01092{letter-spacing:-0.778425px;}
.ls26_c01092{letter-spacing:-0.771728px;}
.ls1e_c01092{letter-spacing:-0.747300px;}
.ls5_c01092{letter-spacing:0.000000px;}
.ls1d_c01092{letter-spacing:0.810000px;}
.ls1_c01092{letter-spacing:0.810525px;}
.ls7_c01092{letter-spacing:0.815850px;}
.ls11_c01092{letter-spacing:1.621050px;}
.ls0_c01092{letter-spacing:2.250645px;}
.ls17_c01092{letter-spacing:2.421848px;}
.ls6_c01092{letter-spacing:2.664750px;}
.ls25_c01092{letter-spacing:3.149213px;}
.ls1b_c01092{letter-spacing:3.752400px;}
.ls22_c01092{letter-spacing:3.891323px;}
.ls2_c01092{letter-spacing:4.053428px;}
.ls18_c01092{letter-spacing:4.862348px;}
.ls14_c01092{letter-spacing:5.246205px;}
.ls3_c01092{letter-spacing:5.672873px;}
.ls19_c01092{letter-spacing:6.877350px;}
.ls20_c01092{letter-spacing:16.702875px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:0.000000px;}
._15_c01092{margin-left:-69.513677px;}
._12_c01092{margin-left:-33.946585px;}
._e_c01092{margin-left:-16.695450px;}
._7_c01092{margin-left:-10.729895px;}
._11_c01092{margin-left:-6.299495px;}
._3_c01092{margin-left:-4.895282px;}
._a_c01092{margin-left:-2.451615px;}
._16_c01092{margin-left:-1.434669px;}
._10_c01092{width:1.868429px;}
._b_c01092{width:3.090420px;}
._1_c01092{width:4.927443px;}
._6_c01092{width:6.523741px;}
._f_c01092{width:7.863010px;}
._9_c01092{width:8.911440px;}
._0_c01092{width:10.983186px;}
._4_c01092{width:12.505140px;}
._8_c01092{width:13.642752px;}
._2_c01092{width:14.932952px;}
._c_c01092{width:16.901370px;}
._14_c01092{width:20.214651px;}
._13_c01092{width:25.360740px;}
._d_c01092{width:26.899560px;}
._5_c01092{width:34.471500px;}
.fc0_c01092{color:transparent;}
.fs8_c01092{font-size:72.750000px;}
.fs5_c01092{font-size:74.250000px;}
.fs9_c01092{font-size:75.000000px;}
.fsc_c01092{font-size:75.750000px;}
.fs6_c01092{font-size:76.500000px;}
.fsd_c01092{font-size:77.250000px;}
.fsa_c01092{font-size:78.000000px;}
.fsb_c01092{font-size:78.750000px;}
.fs3_c01092{font-size:79.500000px;}
.fs0_c01092{font-size:80.250000px;}
.fs7_c01092{font-size:81.750000px;}
.fs1_c01092{font-size:82.500000px;}
.fs2_c01092{font-size:83.250000px;}
.fs4_c01092{font-size:84.750000px;}
.y0_c01092{bottom:0.000000px;}
.y1b_c01092{bottom:214.559685px;}
.y1a_c01092{bottom:243.720150px;}
.y19_c01092{bottom:273.239850px;}
.y18_c01092{bottom:332.279250px;}
.y17_c01092{bottom:361.798950px;}
.y16_c01092{bottom:392.038920px;}
.y15_c01092{bottom:452.159415px;}
.y14_c01092{bottom:482.399715px;}
.y13_c01092{bottom:512.279850px;}
.y12_c01092{bottom:571.680135px;}
.y11_c01092{bottom:601.559100px;}
.y10_c01092{bottom:601.559535px;}
.yf_c01092{bottom:631.439670px;}
.ye_c01092{bottom:691.199385px;}
.yc_c01092{bottom:721.438380px;}
.yd_c01092{bottom:721.439205px;}
.yb_c01092{bottom:752.039985px;}
.ya_c01092{bottom:840.960015px;}
.y9_c01092{bottom:871.199805px;}
.y8_c01092{bottom:871.200765px;}
.y7_c01092{bottom:901.078770px;}
.y6_c01092{bottom:960.840090px;}
.y5_c01092{bottom:990.359805px;}
.y4_c01092{bottom:1020.238770px;}
.y3_c01092{bottom:1080.000000px;}
.y2_c01092{bottom:1109.519715px;}
.y1_c01092{bottom:1139.759490px;}
.hd_c01092{height:71.364624px;}
.hf_c01092{height:73.571777px;}
.h8_c01092{height:75.043213px;}
.h15_c01092{height:76.341797px;}
.ha_c01092{height:77.097656px;}
.h11_c01092{height:77.250366px;}
.h7_c01092{height:77.440430px;}
.h17_c01092{height:77.853516px;}
.h12_c01092{height:77.986084px;}
.h4_c01092{height:78.024902px;}
.hc_c01092{height:78.568359px;}
.h10_c01092{height:78.609375px;}
.h5_c01092{height:78.721802px;}
.he_c01092{height:78.760986px;}
.h16_c01092{height:79.365234px;}
.h13_c01092{height:80.121094px;}
.h14_c01092{height:80.193237px;}
.h1_c01092{height:80.876953px;}
.hb_c01092{height:80.969238px;}
.h9_c01092{height:82.388672px;}
.h2_c01092{height:83.144531px;}
.h6_c01092{height:83.756836px;}
.h3_c01092{height:83.900391px;}
.h0_c01092{height:1263.000000px;}
.w0_c01092{width:892.500000px;}
.x0_c01092{left:0.000000px;}
.x7_c01092{left:136.438665px;}
.x1_c01092{left:138.239850px;}
.x28_c01092{left:162.718500px;}
.x2d_c01092{left:165.958350px;}
.x8_c01092{left:168.838950px;}
.x22_c01092{left:196.199850px;}
.x12_c01092{left:203.759100px;}
.xd_c01092{left:205.919535px;}
.x17_c01092{left:213.478635px;}
.x6_c01092{left:214.918950px;}
.x13_c01092{left:219.239850px;}
.x23_c01092{left:220.319250px;}
.xe_c01092{left:225.358635px;}
.x18_c01092{left:236.159385px;}
.x29_c01092{left:256.318800px;}
.x2a_c01092{left:271.438635px;}
.x15_c01092{left:283.679700px;}
.x16_c01092{left:299.158785px;}
.x24_c01092{left:306.358635px;}
.x14_c01092{left:307.439685px;}
.x9_c01092{left:327.599100px;}
.x25_c01092{left:331.199850px;}
.x19_c01092{left:332.279250px;}
.x27_c01092{left:335.159850px;}
.xf_c01092{left:344.159385px;}
.xa_c01092{left:351.359235px;}
.x26_c01092{left:364.318800px;}
.x10_c01092{left:375.839535px;}
.x2b_c01092{left:396.359850px;}
.x1f_c01092{left:410.398635px;}
.x11_c01092{left:415.439670px;}
.x1a_c01092{left:416.519070px;}
.x2c_c01092{left:425.518665px;}
.x20_c01092{left:429.478635px;}
.x1b_c01092{left:435.239820px;}
.x1c_c01092{left:453.238770px;}
.x2_c01092{left:457.559685px;}
.x21_c01092{left:476.639700px;}
.x3_c01092{left:482.399235px;}
.x4_c01092{left:502.558635px;}
.x1d_c01092{left:520.199850px;}
.x5_c01092{left:529.919535px;}
.x1e_c01092{left:535.319820px;}
.xb_c01092{left:560.159415px;}
.xc_c01092{left:577.078770px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls12_c01092{letter-spacing:-6.991380pt;}
.ls15_c01092{letter-spacing:-6.663867pt;}
.ls21_c01092{letter-spacing:-6.557867pt;}
.ls23_c01092{letter-spacing:-5.490800pt;}
.ls27_c01092{letter-spacing:-4.322087pt;}
.ls1a_c01092{letter-spacing:-3.999027pt;}
.ls1f_c01092{letter-spacing:-3.930667pt;}
.ls13_c01092{letter-spacing:-3.458953pt;}
.lsa_c01092{letter-spacing:-3.335467pt;}
.ls9_c01092{letter-spacing:-2.882580pt;}
.ls4_c01092{letter-spacing:-2.767733pt;}
.lsd_c01092{letter-spacing:-2.664133pt;}
.ls16_c01092{letter-spacing:-2.614667pt;}
.lsf_c01092{letter-spacing:-2.161400pt;}
.lsc_c01092{letter-spacing:-2.075800pt;}
.ls8_c01092{letter-spacing:-2.000573pt;}
.ls10_c01092{letter-spacing:-1.440933pt;}
.lsb_c01092{letter-spacing:-1.336307pt;}
.lse_c01092{letter-spacing:-0.720467pt;}
.ls24_c01092{letter-spacing:-0.697600pt;}
.ls1c_c01092{letter-spacing:-0.691933pt;}
.ls26_c01092{letter-spacing:-0.685980pt;}
.ls1e_c01092{letter-spacing:-0.664267pt;}
.ls5_c01092{letter-spacing:0.000000pt;}
.ls1d_c01092{letter-spacing:0.720000pt;}
.ls1_c01092{letter-spacing:0.720467pt;}
.ls7_c01092{letter-spacing:0.725200pt;}
.ls11_c01092{letter-spacing:1.440933pt;}
.ls0_c01092{letter-spacing:2.000573pt;}
.ls17_c01092{letter-spacing:2.152753pt;}
.ls6_c01092{letter-spacing:2.368667pt;}
.ls25_c01092{letter-spacing:2.799300pt;}
.ls1b_c01092{letter-spacing:3.335467pt;}
.ls22_c01092{letter-spacing:3.458953pt;}
.ls2_c01092{letter-spacing:3.603047pt;}
.ls18_c01092{letter-spacing:4.322087pt;}
.ls14_c01092{letter-spacing:4.663293pt;}
.ls3_c01092{letter-spacing:5.042553pt;}
.ls19_c01092{letter-spacing:6.113200pt;}
.ls20_c01092{letter-spacing:14.847000pt;}
.ws0_c01092{word-spacing:0.000000pt;}
._15_c01092{margin-left:-61.789935pt;}
._12_c01092{margin-left:-30.174742pt;}
._e_c01092{margin-left:-14.840400pt;}
._7_c01092{margin-left:-9.537685pt;}
._11_c01092{margin-left:-5.599551pt;}
._3_c01092{margin-left:-4.351362pt;}
._a_c01092{margin-left:-2.179213pt;}
._16_c01092{margin-left:-1.275261pt;}
._10_c01092{width:1.660826pt;}
._b_c01092{width:2.747040pt;}
._1_c01092{width:4.379950pt;}
._6_c01092{width:5.798881pt;}
._f_c01092{width:6.989342pt;}
._9_c01092{width:7.921280pt;}
._0_c01092{width:9.762832pt;}
._4_c01092{width:11.115680pt;}
._8_c01092{width:12.126890pt;}
._2_c01092{width:13.273735pt;}
._c_c01092{width:15.023440pt;}
._14_c01092{width:17.968578pt;}
._13_c01092{width:22.542880pt;}
._d_c01092{width:23.910720pt;}
._5_c01092{width:30.641333pt;}
.fs8_c01092{font-size:64.666667pt;}
.fs5_c01092{font-size:66.000000pt;}
.fs9_c01092{font-size:66.666667pt;}
.fsc_c01092{font-size:67.333333pt;}
.fs6_c01092{font-size:68.000000pt;}
.fsd_c01092{font-size:68.666667pt;}
.fsa_c01092{font-size:69.333333pt;}
.fsb_c01092{font-size:70.000000pt;}
.fs3_c01092{font-size:70.666667pt;}
.fs0_c01092{font-size:71.333333pt;}
.fs7_c01092{font-size:72.666667pt;}
.fs1_c01092{font-size:73.333333pt;}
.fs2_c01092{font-size:74.000000pt;}
.fs4_c01092{font-size:75.333333pt;}
.y0_c01092{bottom:0.000000pt;}
.y1b_c01092{bottom:190.719720pt;}
.y1a_c01092{bottom:216.640133pt;}
.y19_c01092{bottom:242.879867pt;}
.y18_c01092{bottom:295.359333pt;}
.y17_c01092{bottom:321.599067pt;}
.y16_c01092{bottom:348.479040pt;}
.y15_c01092{bottom:401.919480pt;}
.y14_c01092{bottom:428.799747pt;}
.y13_c01092{bottom:455.359867pt;}
.y12_c01092{bottom:508.160120pt;}
.y11_c01092{bottom:534.719200pt;}
.y10_c01092{bottom:534.719587pt;}
.yf_c01092{bottom:561.279707pt;}
.ye_c01092{bottom:614.399453pt;}
.yc_c01092{bottom:641.278560pt;}
.yd_c01092{bottom:641.279293pt;}
.yb_c01092{bottom:668.479987pt;}
.ya_c01092{bottom:747.520013pt;}
.y9_c01092{bottom:774.399827pt;}
.y8_c01092{bottom:774.400680pt;}
.y7_c01092{bottom:800.958907pt;}
.y6_c01092{bottom:854.080080pt;}
.y5_c01092{bottom:880.319827pt;}
.y4_c01092{bottom:906.878907pt;}
.y3_c01092{bottom:960.000000pt;}
.y2_c01092{bottom:986.239747pt;}
.y1_c01092{bottom:1013.119547pt;}
.hd_c01092{height:63.435221pt;}
.hf_c01092{height:65.397135pt;}
.h8_c01092{height:66.705078pt;}
.h15_c01092{height:67.859375pt;}
.ha_c01092{height:68.531250pt;}
.h11_c01092{height:68.666992pt;}
.h7_c01092{height:68.835938pt;}
.h17_c01092{height:69.203125pt;}
.h12_c01092{height:69.320964pt;}
.h4_c01092{height:69.355469pt;}
.hc_c01092{height:69.838542pt;}
.h10_c01092{height:69.875000pt;}
.h5_c01092{height:69.974935pt;}
.he_c01092{height:70.009766pt;}
.h16_c01092{height:70.546875pt;}
.h13_c01092{height:71.218750pt;}
.h14_c01092{height:71.282878pt;}
.h1_c01092{height:71.890625pt;}
.hb_c01092{height:71.972656pt;}
.h9_c01092{height:73.234375pt;}
.h2_c01092{height:73.906250pt;}
.h6_c01092{height:74.450521pt;}
.h3_c01092{height:74.578125pt;}
.h0_c01092{height:1122.666667pt;}
.w0_c01092{width:793.333333pt;}
.x0_c01092{left:0.000000pt;}
.x7_c01092{left:121.278813pt;}
.x1_c01092{left:122.879867pt;}
.x28_c01092{left:144.638667pt;}
.x2d_c01092{left:147.518533pt;}
.x8_c01092{left:150.079067pt;}
.x22_c01092{left:174.399867pt;}
.x12_c01092{left:181.119200pt;}
.xd_c01092{left:183.039587pt;}
.x17_c01092{left:189.758787pt;}
.x6_c01092{left:191.039067pt;}
.x13_c01092{left:194.879867pt;}
.x23_c01092{left:195.839333pt;}
.xe_c01092{left:200.318787pt;}
.x18_c01092{left:209.919453pt;}
.x29_c01092{left:227.838933pt;}
.x2a_c01092{left:241.278787pt;}
.x15_c01092{left:252.159733pt;}
.x16_c01092{left:265.918920pt;}
.x24_c01092{left:272.318787pt;}
.x14_c01092{left:273.279720pt;}
.x9_c01092{left:291.199200pt;}
.x25_c01092{left:294.399867pt;}
.x19_c01092{left:295.359333pt;}
.x27_c01092{left:297.919867pt;}
.xf_c01092{left:305.919453pt;}
.xa_c01092{left:312.319320pt;}
.x26_c01092{left:323.838933pt;}
.x10_c01092{left:334.079587pt;}
.x2b_c01092{left:352.319867pt;}
.x1f_c01092{left:364.798787pt;}
.x11_c01092{left:369.279707pt;}
.x1a_c01092{left:370.239173pt;}
.x2c_c01092{left:378.238813pt;}
.x20_c01092{left:381.758787pt;}
.x1b_c01092{left:386.879840pt;}
.x1c_c01092{left:402.878907pt;}
.x2_c01092{left:406.719720pt;}
.x21_c01092{left:423.679733pt;}
.x3_c01092{left:428.799320pt;}
.x4_c01092{left:446.718787pt;}
.x1d_c01092{left:462.399867pt;}
.x5_c01092{left:471.039587pt;}
.x1e_c01092{left:475.839840pt;}
.xb_c01092{left:497.919480pt;}
.xc_c01092{left:512.958907pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_374e40111e66b69c545dfaae.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_a41fcaf65536f67b4a3e4d97.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01093;src:url('chunks/assets/font_3af2b2b65df76471fd4a75a0.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01093;src:url('chunks/assets/font_531b4dd78c5ab3e5aff5678d.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01093;src:url('chunks/assets/font_388f8609306b3821c861a2ae.woff2')format("woff");}.ff5_c01093{font-family:ff5_c01093;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01093;src:url('chunks/assets/font_6ab2aca107c46e385783e988.woff2')format("woff");}.ff6_c01093{font-family:ff6_c01093;line-height:1.432129;font-style:normal;font-weight: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_c01093;src:url('chunks/assets/font_ba29ce87f8e03f59524f7c92.woff2')format("woff");}.ff7_c01093{font-family:ff7_c01093;line-height:1.432129;font-style:normal;font-weight: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_c01093;src:url('chunks/assets/font_6ba3920be4811a6ca15ac269.woff2')format("woff");}.ff8_c01093{font-family:ff8_c01093;line-height:1.364746;font-style:normal;font-weight: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_c01093;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff9_c01093{font-family:ff9_c01093;line-height:1.432129;font-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_c01093{transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);}
.m6_c01093{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m4_c01093{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1f_c01093{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.md_c01093{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m25_c01093{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m26_c01093{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m19_c01093{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.ma_c01093{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m1_c01093{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m5_c01093{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1b_c01093{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m11_c01093{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m22_c01093{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m23_c01093{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m21_c01093{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m13_c01093{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m7_c01093{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m1c_c01093{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m8_c01093{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1d_c01093{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m0_c01093{transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);}
.mb_c01093{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m10_c01093{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m20_c01093{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.me_c01093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01093{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m27_c01093{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m24_c01093{transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265464,0.000000,0.000000,0.250000,0,0);}
.mc_c01093{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m1e_c01093{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m2_c01093{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.m1a_c01093{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.mf_c01093{transform:matrix(0.305046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305046,0.000000,0.000000,0.250000,0,0);}
.m9_c01093{transform:matrix(0.307339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307339,0.000000,0.000000,0.250000,0,0);}
.m15_c01093{transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386364,0.000000,0.000000,0.250000,0,0);}
.m17_c01093{transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);}
.m16_c01093{transform:matrix(0.391509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391509,0.000000,0.000000,0.250000,0,0);}
.m12_c01093{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m14_c01093{transform:matrix(0.480263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480263,0.000000,0.000000,0.250000,0,0);}
.m18_c01093{transform:matrix(0.594444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594444,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.ls30_c01093{letter-spacing:-14.810055px;}
.ls2e_c01093{letter-spacing:-10.597350px;}
.ls35_c01093{letter-spacing:-10.432500px;}
.ls32_c01093{letter-spacing:-7.518315px;}
.ls27_c01093{letter-spacing:-6.747000px;}
.ls20_c01093{letter-spacing:-6.224850px;}
.ls16_c01093{letter-spacing:-5.569200px;}
.ls1a_c01093{letter-spacing:-4.460745px;}
.ls10_c01093{letter-spacing:-4.012500px;}
.ls7_c01093{letter-spacing:-3.890250px;}
.ls8_c01093{letter-spacing:-3.713445px;}
.ls34_c01093{letter-spacing:-3.651375px;}
.ls2a_c01093{letter-spacing:-3.209198px;}
.ls25_c01093{letter-spacing:-3.089625px;}
.ls12_c01093{letter-spacing:-3.086100px;}
.ls1b_c01093{letter-spacing:-3.073800px;}
.ls5_c01093{letter-spacing:-3.053475px;}
.ls13_c01093{letter-spacing:-3.048458px;}
.ls18_c01093{letter-spacing:-2.999250px;}
.lsd_c01093{letter-spacing:-2.973300px;}
.ls1f_c01093{letter-spacing:-2.425913px;}
.lsb_c01093{letter-spacing:-2.407500px;}
.ls24_c01093{letter-spacing:-2.386125px;}
.lse_c01093{letter-spacing:-2.315820px;}
.ls14_c01093{letter-spacing:-2.269800px;}
.ls9_c01093{letter-spacing:-2.226000px;}
.ls29_c01093{letter-spacing:-2.012715px;}
.ls6_c01093{letter-spacing:-1.617825px;}
.ls11_c01093{letter-spacing:-1.605000px;}
.ls26_c01093{letter-spacing:-1.590750px;}
.ls28_c01093{letter-spacing:-1.543575px;}
.ls19_c01093{letter-spacing:-1.487445px;}
.ls31_c01093{letter-spacing:-1.410623px;}
.ls33_c01093{letter-spacing:-0.826575px;}
.ls15_c01093{letter-spacing:-0.801698px;}
.ls2f_c01093{letter-spacing:-0.778425px;}
.lsf_c01093{letter-spacing:-0.738555px;}
.lsa_c01093{letter-spacing:0.000000px;}
.ls22_c01093{letter-spacing:0.313538px;}
.ls1e_c01093{letter-spacing:1.171635px;}
.ls0_c01093{letter-spacing:1.455713px;}
.ls17_c01093{letter-spacing:1.692600px;}
.ls2b_c01093{letter-spacing:1.755780px;}
.ls2c_c01093{letter-spacing:2.407500px;}
.ls21_c01093{letter-spacing:2.880000px;}
.lsc_c01093{letter-spacing:5.890500px;}
.ls2d_c01093{letter-spacing:6.055875px;}
.ls1c_c01093{letter-spacing:6.332700px;}
.ls1d_c01093{letter-spacing:7.778400px;}
.ls36_c01093{letter-spacing:9.618750px;}
.ls2_c01093{letter-spacing:9.803767px;}
.ls3_c01093{letter-spacing:12.256425px;}
.ls23_c01093{letter-spacing:13.071232px;}
.ls1_c01093{letter-spacing:16.337325px;}
.ls4_c01093{letter-spacing:16.853303px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01093{word-spacing:0.000000px;}
._c_c01093{margin-left:-85.166243px;}
._3_c01093{margin-left:-18.198887px;}
._b_c01093{margin-left:-10.800927px;}
._13_c01093{margin-left:-7.602800px;}
._6_c01093{margin-left:-2.941233px;}
._0_c01093{width:1.908059px;}
._4_c01093{width:3.259678px;}
._8_c01093{width:5.215557px;}
._d_c01093{width:6.241240px;}
._10_c01093{width:7.334419px;}
._7_c01093{width:8.459394px;}
._1_c01093{width:10.406936px;}
._a_c01093{width:12.171294px;}
._e_c01093{width:13.777608px;}
._2_c01093{width:15.070308px;}
._f_c01093{width:16.273290px;}
._12_c01093{width:21.442351px;}
._9_c01093{width:27.665970px;}
._11_c01093{width:30.928286px;}
._5_c01093{width:33.915116px;}
.fc0_c01093{color:transparent;}
.fsc_c01093{font-size:27.000000px;}
.fsb_c01093{font-size:28.500000px;}
.fs11_c01093{font-size:33.750000px;}
.fsf_c01093{font-size:39.750000px;}
.fse_c01093{font-size:41.250000px;}
.fsd_c01093{font-size:42.000000px;}
.fs12_c01093{font-size:45.750000px;}
.fs10_c01093{font-size:48.000000px;}
.fs15_c01093{font-size:72.750000px;}
.fs16_c01093{font-size:73.500000px;}
.fs9_c01093{font-size:75.000000px;}
.fs14_c01093{font-size:75.750000px;}
.fs8_c01093{font-size:76.500000px;}
.fs5_c01093{font-size:78.000000px;}
.fsa_c01093{font-size:78.750000px;}
.fs3_c01093{font-size:79.500000px;}
.fs4_c01093{font-size:80.250000px;}
.fs6_c01093{font-size:81.000000px;}
.fs7_c01093{font-size:81.750000px;}
.fs1_c01093{font-size:82.500000px;}
.fs2_c01093{font-size:85.500000px;}
.fs0_c01093{font-size:92.250000px;}
.fs13_c01093{font-size:96.000000px;}
.y0_c01093{bottom:0.000000px;}
.y1e_c01093{bottom:237.958950px;}
.y1d_c01093{bottom:268.198830px;}
.y1c_c01093{bottom:298.438635px;}
.y1b_c01093{bottom:298.438665px;}
.y1a_c01093{bottom:357.838950px;}
.y19_c01093{bottom:387.358665px;}
.y18_c01093{bottom:426.599670px;}
.y17_c01093{bottom:477.359850px;}
.y16_c01093{bottom:506.879520px;}
.y15_c01093{bottom:537.119385px;}
.y14_c01093{bottom:596.519670px;}
.y13_c01093{bottom:626.760015px;}
.y12_c01093{bottom:656.640150px;}
.y11_c01093{bottom:656.640465px;}
.y10_c01093{bottom:716.038920px;}
.yf_c01093{bottom:745.919535px;}
.ye_c01093{bottom:752.039985px;}
.yd_c01093{bottom:775.439205px;}
.yc_c01093{bottom:775.439340px;}
.yb_c01093{bottom:835.918950px;}
.ya_c01093{bottom:865.799565px;}
.y9_c01093{bottom:896.039340px;}
.y8_c01093{bottom:896.039385px;}
.y7_c01093{bottom:955.439670px;}
.y6_c01093{bottom:985.316715px;}
.y5_c01093{bottom:1014.838995px;}
.y4_c01093{bottom:1074.958920px;}
.y2_c01093{bottom:1105.558965px;}
.y3_c01093{bottom:1105.559685px;}
.y1_c01093{bottom:1135.079400px;}
.h11_c01093{height:28.160156px;}
.h10_c01093{height:29.724609px;}
.h16_c01093{height:34.013672px;}
.h14_c01093{height:39.284180px;}
.h13_c01093{height:43.022461px;}
.h12_c01093{height:43.804688px;}
.h17_c01093{height:46.107422px;}
.h15_c01093{height:48.375000px;}
.hb_c01093{height:75.080566px;}
.h1e_c01093{height:75.875977px;}
.h1d_c01093{height:76.341797px;}
.hd_c01093{height:76.514648px;}
.hc_c01093{height:76.552734px;}
.h1f_c01093{height:76.658203px;}
.h1a_c01093{height:77.288818px;}
.h4_c01093{height:78.024902px;}
.he_c01093{height:78.222656px;}
.h8_c01093{height:78.609375px;}
.h6_c01093{height:78.721802px;}
.h19_c01093{height:78.760986px;}
.hf_c01093{height:79.365234px;}
.h9_c01093{height:79.457520px;}
.h1b_c01093{height:80.121094px;}
.ha_c01093{height:80.233154px;}
.h1c_c01093{height:80.876953px;}
.h5_c01093{height:80.969238px;}
.h7_c01093{height:81.533203px;}
.h2_c01093{height:83.144531px;}
.h3_c01093{height:83.913574px;}
.h20_c01093{height:84.498047px;}
.h1_c01093{height:91.168945px;}
.h18_c01093{height:100.125000px;}
.h0_c01093{height:1263.000000px;}
.w0_c01093{width:892.500000px;}
.x0_c01093{left:0.000000px;}
.x1b_c01093{left:133.559685px;}
.x1_c01093{left:134.639100px;}
.x5_c01093{left:136.439010px;}
.x19_c01093{left:142.918350px;}
.x15_c01093{left:154.439250px;}
.x2e_c01093{left:167.759565px;}
.x16_c01093{left:168.838950px;}
.x2f_c01093{left:212.758500px;}
.x2_c01093{left:216.000000px;}
.x17_c01093{left:228.959400px;}
.x30_c01093{left:244.799535px;}
.xe_c01093{left:249.118785px;}
.x1f_c01093{left:255.598500px;}
.x1c_c01093{left:260.278800px;}
.x11_c01093{left:263.879535px;}
.xc_c01093{left:270.000000px;}
.x1d_c01093{left:281.159850px;}
.xf_c01093{left:285.120000px;}
.x12_c01093{left:287.998950px;}
.x20_c01093{left:289.080000px;}
.x6_c01093{left:294.119385px;}
.x2b_c01093{left:296.639100px;}
.x18_c01093{left:297.718500px;}
.x24_c01093{left:301.319250px;}
.x8_c01093{left:304.559100px;}
.x3_c01093{left:305.999385px;}
.x31_c01093{left:308.519100px;}
.x7_c01093{left:309.598530px;}
.x1e_c01093{left:312.120000px;}
.x29_c01093{left:317.159385px;}
.x21_c01093{left:323.639100px;}
.x9_c01093{left:330.479685px;}
.x4_c01093{left:334.798950px;}
.x2a_c01093{left:342.359850px;}
.x22_c01093{left:351.718500px;}
.xd_c01093{left:357.118785px;}
.x32_c01093{left:362.159850px;}
.x23_c01093{left:382.678530px;}
.x10_c01093{left:392.759085px;}
.xa_c01093{left:400.319820px;}
.x13_c01093{left:403.198785px;}
.x2c_c01093{left:418.318770px;}
.x14_c01093{left:427.319820px;}
.xb_c01093{left:431.639100px;}
.x2d_c01093{left:449.998950px;}
.x1a_c01093{left:539.639100px;}
.x25_c01093{left:680.759535px;}
.x26_c01093{left:698.039985px;}
.x27_c01093{left:714.598530px;}
.x28_c01093{left:731.878920px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls30_c01093{letter-spacing:-13.164493pt;}
.ls2e_c01093{letter-spacing:-9.419867pt;}
.ls35_c01093{letter-spacing:-9.273333pt;}
.ls32_c01093{letter-spacing:-6.682947pt;}
.ls27_c01093{letter-spacing:-5.997333pt;}
.ls20_c01093{letter-spacing:-5.533200pt;}
.ls16_c01093{letter-spacing:-4.950400pt;}
.ls1a_c01093{letter-spacing:-3.965107pt;}
.ls10_c01093{letter-spacing:-3.566667pt;}
.ls7_c01093{letter-spacing:-3.458000pt;}
.ls8_c01093{letter-spacing:-3.300840pt;}
.ls34_c01093{letter-spacing:-3.245667pt;}
.ls2a_c01093{letter-spacing:-2.852620pt;}
.ls25_c01093{letter-spacing:-2.746333pt;}
.ls12_c01093{letter-spacing:-2.743200pt;}
.ls1b_c01093{letter-spacing:-2.732267pt;}
.ls5_c01093{letter-spacing:-2.714200pt;}
.ls13_c01093{letter-spacing:-2.709740pt;}
.ls18_c01093{letter-spacing:-2.666000pt;}
.lsd_c01093{letter-spacing:-2.642933pt;}
.ls1f_c01093{letter-spacing:-2.156367pt;}
.lsb_c01093{letter-spacing:-2.140000pt;}
.ls24_c01093{letter-spacing:-2.121000pt;}
.lse_c01093{letter-spacing:-2.058507pt;}
.ls14_c01093{letter-spacing:-2.017600pt;}
.ls9_c01093{letter-spacing:-1.978667pt;}
.ls29_c01093{letter-spacing:-1.789080pt;}
.ls6_c01093{letter-spacing:-1.438067pt;}
.ls11_c01093{letter-spacing:-1.426667pt;}
.ls26_c01093{letter-spacing:-1.414000pt;}
.ls28_c01093{letter-spacing:-1.372067pt;}
.ls19_c01093{letter-spacing:-1.322173pt;}
.ls31_c01093{letter-spacing:-1.253887pt;}
.ls33_c01093{letter-spacing:-0.734733pt;}
.ls15_c01093{letter-spacing:-0.712620pt;}
.ls2f_c01093{letter-spacing:-0.691933pt;}
.lsf_c01093{letter-spacing:-0.656493pt;}
.lsa_c01093{letter-spacing:0.000000pt;}
.ls22_c01093{letter-spacing:0.278700pt;}
.ls1e_c01093{letter-spacing:1.041453pt;}
.ls0_c01093{letter-spacing:1.293967pt;}
.ls17_c01093{letter-spacing:1.504533pt;}
.ls2b_c01093{letter-spacing:1.560693pt;}
.ls2c_c01093{letter-spacing:2.140000pt;}
.ls21_c01093{letter-spacing:2.560000pt;}
.lsc_c01093{letter-spacing:5.236000pt;}
.ls2d_c01093{letter-spacing:5.383000pt;}
.ls1c_c01093{letter-spacing:5.629067pt;}
.ls1d_c01093{letter-spacing:6.914133pt;}
.ls36_c01093{letter-spacing:8.550000pt;}
.ls2_c01093{letter-spacing:8.714460pt;}
.ls3_c01093{letter-spacing:10.894600pt;}
.ls23_c01093{letter-spacing:11.618873pt;}
.ls1_c01093{letter-spacing:14.522067pt;}
.ls4_c01093{letter-spacing:14.980713pt;}
.ws0_c01093{word-spacing:0.000000pt;}
._c_c01093{margin-left:-75.703327pt;}
._3_c01093{margin-left:-16.176789pt;}
._b_c01093{margin-left:-9.600824pt;}
._13_c01093{margin-left:-6.758045pt;}
._6_c01093{margin-left:-2.614429pt;}
._0_c01093{width:1.696053pt;}
._4_c01093{width:2.897492pt;}
._8_c01093{width:4.636050pt;}
._d_c01093{width:5.547769pt;}
._10_c01093{width:6.519484pt;}
._7_c01093{width:7.519462pt;}
._1_c01093{width:9.250610pt;}
._a_c01093{width:10.818928pt;}
._e_c01093{width:12.246763pt;}
._2_c01093{width:13.395829pt;}
._f_c01093{width:14.465146pt;}
._12_c01093{width:19.059867pt;}
._9_c01093{width:24.591974pt;}
._11_c01093{width:27.491810pt;}
._5_c01093{width:30.146770pt;}
.fsc_c01093{font-size:24.000000pt;}
.fsb_c01093{font-size:25.333333pt;}
.fs11_c01093{font-size:30.000000pt;}
.fsf_c01093{font-size:35.333333pt;}
.fse_c01093{font-size:36.666667pt;}
.fsd_c01093{font-size:37.333333pt;}
.fs12_c01093{font-size:40.666667pt;}
.fs10_c01093{font-size:42.666667pt;}
.fs15_c01093{font-size:64.666667pt;}
.fs16_c01093{font-size:65.333333pt;}
.fs9_c01093{font-size:66.666667pt;}
.fs14_c01093{font-size:67.333333pt;}
.fs8_c01093{font-size:68.000000pt;}
.fs5_c01093{font-size:69.333333pt;}
.fsa_c01093{font-size:70.000000pt;}
.fs3_c01093{font-size:70.666667pt;}
.fs4_c01093{font-size:71.333333pt;}
.fs6_c01093{font-size:72.000000pt;}
.fs7_c01093{font-size:72.666667pt;}
.fs1_c01093{font-size:73.333333pt;}
.fs2_c01093{font-size:76.000000pt;}
.fs0_c01093{font-size:82.000000pt;}
.fs13_c01093{font-size:85.333333pt;}
.y0_c01093{bottom:0.000000pt;}
.y1e_c01093{bottom:211.519067pt;}
.y1d_c01093{bottom:238.398960pt;}
.y1c_c01093{bottom:265.278787pt;}
.y1b_c01093{bottom:265.278813pt;}
.y1a_c01093{bottom:318.079067pt;}
.y19_c01093{bottom:344.318813pt;}
.y18_c01093{bottom:379.199707pt;}
.y17_c01093{bottom:424.319867pt;}
.y16_c01093{bottom:450.559573pt;}
.y15_c01093{bottom:477.439453pt;}
.y14_c01093{bottom:530.239707pt;}
.y13_c01093{bottom:557.120013pt;}
.y12_c01093{bottom:583.680133pt;}
.y11_c01093{bottom:583.680413pt;}
.y10_c01093{bottom:636.479040pt;}
.yf_c01093{bottom:663.039587pt;}
.ye_c01093{bottom:668.479987pt;}
.yd_c01093{bottom:689.279293pt;}
.yc_c01093{bottom:689.279413pt;}
.yb_c01093{bottom:743.039067pt;}
.ya_c01093{bottom:769.599613pt;}
.y9_c01093{bottom:796.479413pt;}
.y8_c01093{bottom:796.479453pt;}
.y7_c01093{bottom:849.279707pt;}
.y6_c01093{bottom:875.837080pt;}
.y5_c01093{bottom:902.079107pt;}
.y4_c01093{bottom:955.519040pt;}
.y2_c01093{bottom:982.719080pt;}
.y3_c01093{bottom:982.719720pt;}
.y1_c01093{bottom:1008.959467pt;}
.h11_c01093{height:25.031250pt;}
.h10_c01093{height:26.421875pt;}
.h16_c01093{height:30.234375pt;}
.h14_c01093{height:34.919271pt;}
.h13_c01093{height:38.242188pt;}
.h12_c01093{height:38.937500pt;}
.h17_c01093{height:40.984375pt;}
.h15_c01093{height:43.000000pt;}
.hb_c01093{height:66.738281pt;}
.h1e_c01093{height:67.445312pt;}
.h1d_c01093{height:67.859375pt;}
.hd_c01093{height:68.013021pt;}
.hc_c01093{height:68.046875pt;}
.h1f_c01093{height:68.140625pt;}
.h1a_c01093{height:68.701172pt;}
.h4_c01093{height:69.355469pt;}
.he_c01093{height:69.531250pt;}
.h8_c01093{height:69.875000pt;}
.h6_c01093{height:69.974935pt;}
.h19_c01093{height:70.009766pt;}
.hf_c01093{height:70.546875pt;}
.h9_c01093{height:70.628906pt;}
.h1b_c01093{height:71.218750pt;}
.ha_c01093{height:71.318359pt;}
.h1c_c01093{height:71.890625pt;}
.h5_c01093{height:71.972656pt;}
.h7_c01093{height:72.473958pt;}
.h2_c01093{height:73.906250pt;}
.h3_c01093{height:74.589844pt;}
.h20_c01093{height:75.109375pt;}
.h1_c01093{height:81.039063pt;}
.h18_c01093{height:89.000000pt;}
.h0_c01093{height:1122.666667pt;}
.w0_c01093{width:793.333333pt;}
.x0_c01093{left:0.000000pt;}
.x1b_c01093{left:118.719720pt;}
.x1_c01093{left:119.679200pt;}
.x5_c01093{left:121.279120pt;}
.x19_c01093{left:127.038533pt;}
.x15_c01093{left:137.279333pt;}
.x2e_c01093{left:149.119613pt;}
.x16_c01093{left:150.079067pt;}
.x2f_c01093{left:189.118667pt;}
.x2_c01093{left:192.000000pt;}
.x17_c01093{left:203.519467pt;}
.x30_c01093{left:217.599587pt;}
.xe_c01093{left:221.438920pt;}
.x1f_c01093{left:227.198667pt;}
.x1c_c01093{left:231.358933pt;}
.x11_c01093{left:234.559587pt;}
.xc_c01093{left:240.000000pt;}
.x1d_c01093{left:249.919867pt;}
.xf_c01093{left:253.440000pt;}
.x12_c01093{left:255.999067pt;}
.x20_c01093{left:256.960000pt;}
.x6_c01093{left:261.439453pt;}
.x2b_c01093{left:263.679200pt;}
.x18_c01093{left:264.638667pt;}
.x24_c01093{left:267.839333pt;}
.x8_c01093{left:270.719200pt;}
.x3_c01093{left:271.999453pt;}
.x31_c01093{left:274.239200pt;}
.x7_c01093{left:275.198693pt;}
.x1e_c01093{left:277.440000pt;}
.x29_c01093{left:281.919453pt;}
.x21_c01093{left:287.679200pt;}
.x9_c01093{left:293.759720pt;}
.x4_c01093{left:297.599067pt;}
.x2a_c01093{left:304.319867pt;}
.x22_c01093{left:312.638667pt;}
.xd_c01093{left:317.438920pt;}
.x32_c01093{left:321.919867pt;}
.x23_c01093{left:340.158693pt;}
.x10_c01093{left:349.119187pt;}
.xa_c01093{left:355.839840pt;}
.x13_c01093{left:358.398920pt;}
.x2c_c01093{left:371.838907pt;}
.x14_c01093{left:379.839840pt;}
.xb_c01093{left:383.679200pt;}
.x2d_c01093{left:399.999067pt;}
.x1a_c01093{left:479.679200pt;}
.x25_c01093{left:605.119587pt;}
.x26_c01093{left:620.479987pt;}
.x27_c01093{left:635.198693pt;}
.x28_c01093{left:650.559040pt;}
}





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

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_193358ec575d10e1200b3400.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_ffb304f35df1f36740973d8f.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01094;src:url('chunks/assets/font_bc6fa46b303ede0dd20112d7.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_7c337780d4591c68e75814f6.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01094;src:url('chunks/assets/font_23bfa6d249c85b71dbf8ab59.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01094;src:url('chunks/assets/font_649c808f6a378d09b924a8a5.woff2')format("woff");}.ff6_c01094{font-family:ff6_c01094;line-height:1.432129;font-style:normal;font-weight: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_c01094;src:url('chunks/assets/font_a58c678ed9362f820dbcfd66.woff2')format("woff");}.ff7_c01094{font-family:ff7_c01094;line-height:1.432129;font-style:normal;font-weight: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_c01094;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff8_c01094{font-family:ff8_c01094;line-height:1.432129;font-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_c01094{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m16_c01094{transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191964,0.000000,0.000000,0.250000,0,0);}
.m1c_c01094{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m18_c01094{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m14_c01094{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.mb_c01094{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.m1b_c01094{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m3_c01094{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m9_c01094{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m2_c01094{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m15_c01094{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1d_c01094{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);}
.m8_c01094{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m0_c01094{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.ma_c01094{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m5_c01094{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1_c01094{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.me_c01094{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.md_c01094{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.mc_c01094{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m1a_c01094{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m17_c01094{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m4_c01094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01094{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m10_c01094{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m19_c01094{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_c01094{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01094{transform:matrix(0.453704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453704,0.000000,0.000000,0.250000,0,0);}
.m11_c01094{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m12_c01094{transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778846,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls10_c01094{letter-spacing:-9.138675px;}
.ls15_c01094{letter-spacing:-7.725600px;}
.lsa_c01094{letter-spacing:-7.362495px;}
.ls5_c01094{letter-spacing:-5.996925px;}
.ls9_c01094{letter-spacing:-5.890950px;}
.ls21_c01094{letter-spacing:-5.151600px;}
.ls1c_c01094{letter-spacing:-4.862348px;}
.ls24_c01094{letter-spacing:-4.544910px;}
.lsb_c01094{letter-spacing:-4.420200px;}
.ls29_c01094{letter-spacing:-4.053428px;}
.lsc_c01094{letter-spacing:-3.963533px;}
.ls14_c01094{letter-spacing:-3.935250px;}
.ls6_c01094{letter-spacing:-3.896100px;}
.ls17_c01094{letter-spacing:-3.861000px;}
.ls27_c01094{letter-spacing:-3.819750px;}
.ls7_c01094{letter-spacing:-3.680850px;}
.ls22_c01094{letter-spacing:-3.471525px;}
.ls13_c01094{letter-spacing:-3.242903px;}
.ls2_c01094{letter-spacing:-3.237975px;}
.ls18_c01094{letter-spacing:-3.089228px;}
.ls8_c01094{letter-spacing:-2.941500px;}
.ls11_c01094{letter-spacing:-2.431575px;}
.lsf_c01094{letter-spacing:-2.210100px;}
.ls1f_c01094{letter-spacing:-2.166450px;}
.ls26_c01094{letter-spacing:-2.024250px;}
.lse_c01094{letter-spacing:-1.621050px;}
.ls16_c01094{letter-spacing:-1.526400px;}
.lsd_c01094{letter-spacing:-1.469955px;}
.ls12_c01094{letter-spacing:-0.810525px;}
.ls4_c01094{letter-spacing:0.000000px;}
.ls1e_c01094{letter-spacing:0.615188px;}
.ls1_c01094{letter-spacing:0.738555px;}
.ls1b_c01094{letter-spacing:0.810525px;}
.ls19_c01094{letter-spacing:2.499525px;}
.ls20_c01094{letter-spacing:2.893725px;}
.ls2b_c01094{letter-spacing:3.262500px;}
.ls28_c01094{letter-spacing:3.408975px;}
.ls23_c01094{letter-spacing:3.905160px;}
.ls0_c01094{letter-spacing:4.420200px;}
.ls3_c01094{letter-spacing:8.559600px;}
.ls1a_c01094{letter-spacing:10.536825px;}
.ls25_c01094{letter-spacing:10.562400px;}
.ls1d_c01094{letter-spacing:11.347350px;}
.ls2a_c01094{letter-spacing:15.419820px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:0.000000px;}
._13_c01094{margin-left:-16.251802px;}
._12_c01094{margin-left:-7.647582px;}
._11_c01094{margin-left:-6.590197px;}
._17_c01094{margin-left:-4.276923px;}
._9_c01094{margin-left:-2.800482px;}
._1_c01094{width:1.383182px;}
._15_c01094{width:2.718488px;}
._0_c01094{width:3.911577px;}
._b_c01094{width:5.111186px;}
._3_c01094{width:6.526656px;}
._8_c01094{width:7.664118px;}
._4_c01094{width:9.658897px;}
._5_c01094{width:11.137656px;}
._e_c01094{width:12.817284px;}
._a_c01094{width:13.840884px;}
._2_c01094{width:19.376947px;}
._6_c01094{width:21.386803px;}
._d_c01094{width:23.911801px;}
._7_c01094{width:25.448127px;}
._16_c01094{width:27.115389px;}
._14_c01094{width:28.548450px;}
._c_c01094{width:34.295829px;}
._10_c01094{width:60.716476px;}
._f_c01094{width:66.567617px;}
.fc0_c01094{color:transparent;}
.fsb_c01094{font-size:18.750000px;}
.fsc_c01094{font-size:19.500000px;}
.fsd_c01094{font-size:20.250000px;}
.fs9_c01094{font-size:52.500000px;}
.fsa_c01094{font-size:58.500000px;}
.fs10_c01094{font-size:75.000000px;}
.fse_c01094{font-size:76.500000px;}
.fs7_c01094{font-size:77.250000px;}
.fs8_c01094{font-size:78.000000px;}
.fs2_c01094{font-size:79.500000px;}
.fs6_c01094{font-size:80.250000px;}
.fs5_c01094{font-size:81.000000px;}
.fs11_c01094{font-size:81.750000px;}
.fs4_c01094{font-size:82.500000px;}
.fs3_c01094{font-size:83.250000px;}
.fs1_c01094{font-size:84.000000px;}
.fsf_c01094{font-size:86.250000px;}
.fs0_c01094{font-size:92.250000px;}
.y0_c01094{bottom:0.000000px;}
.y1d_c01094{bottom:240.478635px;}
.y1c_c01094{bottom:270.358515px;}
.y1b_c01094{bottom:299.878965px;}
.y1a_c01094{bottom:359.279250px;}
.y19_c01094{bottom:389.159820px;}
.y18_c01094{bottom:419.399820px;}
.y17_c01094{bottom:479.518620px;}
.y16_c01094{bottom:509.760135px;}
.y15_c01094{bottom:539.639100px;}
.y14_c01094{bottom:539.639535px;}
.y13_c01094{bottom:598.680135px;}
.y12_c01094{bottom:628.199850px;}
.y11_c01094{bottom:658.798215px;}
.y10_c01094{bottom:718.560285px;}
.ye_c01094{bottom:748.079595px;}
.yf_c01094{bottom:748.080000px;}
.yd_c01094{bottom:752.039985px;}
.yb_c01094{bottom:777.958080px;}
.yc_c01094{bottom:777.958920px;}
.ya_c01094{bottom:837.720150px;}
.y9_c01094{bottom:867.239865px;}
.y8_c01094{bottom:897.480195px;}
.y7_c01094{bottom:957.600135px;}
.y6_c01094{bottom:987.479190px;}
.y5_c01094{bottom:1017.359850px;}
.y4_c01094{bottom:1076.760135px;}
.y3_c01094{bottom:1107.000000px;}
.y2_c01094{bottom:1107.000870px;}
.y1_c01094{bottom:1136.878875px;}
.h10_c01094{height:19.555664px;}
.h11_c01094{height:20.337891px;}
.h12_c01094{height:21.120117px;}
.he_c01094{height:51.500244px;}
.hf_c01094{height:57.385986px;}
.h14_c01094{height:75.043213px;}
.h19_c01094{height:75.585938px;}
.hd_c01094{height:75.816650px;}
.ha_c01094{height:76.344727px;}
.hc_c01094{height:76.514648px;}
.hb_c01094{height:77.986084px;}
.h7_c01094{height:78.024902px;}
.h17_c01094{height:78.222656px;}
.h9_c01094{height:78.721802px;}
.h16_c01094{height:79.457520px;}
.h6_c01094{height:79.497070px;}
.h3_c01094{height:80.121094px;}
.h5_c01094{height:80.969238px;}
.h13_c01094{height:81.664673px;}
.h8_c01094{height:82.274414px;}
.h18_c01094{height:82.388672px;}
.h2_c01094{height:82.400391px;}
.h4_c01094{height:83.900391px;}
.h15_c01094{height:89.956055px;}
.h1_c01094{height:91.168945px;}
.h0_c01094{height:1263.000000px;}
.w0_c01094{width:892.500000px;}
.x0_c01094{left:0.000000px;}
.x29_c01094{left:133.559685px;}
.xf_c01094{left:134.639100px;}
.xb_c01094{left:135.718500px;}
.x1_c01094{left:136.799565px;}
.x8_c01094{left:138.239085px;}
.x21_c01094{left:158.758500px;}
.x28_c01094{left:163.079400px;}
.x1a_c01094{left:168.479685px;}
.x19_c01094{left:181.798515px;}
.x2_c01094{left:199.439685px;}
.x10_c01094{left:203.759100px;}
.x25_c01094{left:222.838950px;}
.x3_c01094{left:224.999400px;}
.x4_c01094{left:240.478635px;}
.x22_c01094{left:256.679700px;}
.x26_c01094{left:259.919535px;}
.xc_c01094{left:262.439250px;}
.xd_c01094{left:292.319850px;}
.x23_c01094{left:306.358635px;}
.x2a_c01094{left:323.639100px;}
.xe_c01094{left:324.718500px;}
.x24_c01094{left:327.958350px;}
.x1f_c01094{left:343.798515px;}
.x16_c01094{left:352.799370px;}
.x5_c01094{left:364.679700px;}
.x15_c01094{left:388.078815px;}
.x6_c01094{left:390.598530px;}
.x1b_c01094{left:408.599070px;}
.x11_c01094{left:410.398635px;}
.x17_c01094{left:415.439670px;}
.x7_c01094{left:424.080000px;}
.x1c_c01094{left:426.958920px;}
.x18_c01094{left:430.559685px;}
.x12_c01094{left:461.519670px;}
.x27_c01094{left:466.918350px;}
.x1d_c01094{left:471.959385px;}
.x9_c01094{left:473.399820px;}
.x1e_c01094{left:490.319235px;}
.x13_c01094{left:498.598530px;}
.xa_c01094{left:515.519670px;}
.x20_c01094{left:519.838950px;}
.x14_c01094{left:525.239220px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls10_c01094{letter-spacing:-8.123267pt;}
.ls15_c01094{letter-spacing:-6.867200pt;}
.lsa_c01094{letter-spacing:-6.544440pt;}
.ls5_c01094{letter-spacing:-5.330600pt;}
.ls9_c01094{letter-spacing:-5.236400pt;}
.ls21_c01094{letter-spacing:-4.579200pt;}
.ls1c_c01094{letter-spacing:-4.322087pt;}
.ls24_c01094{letter-spacing:-4.039920pt;}
.lsb_c01094{letter-spacing:-3.929067pt;}
.ls29_c01094{letter-spacing:-3.603047pt;}
.lsc_c01094{letter-spacing:-3.523140pt;}
.ls14_c01094{letter-spacing:-3.498000pt;}
.ls6_c01094{letter-spacing:-3.463200pt;}
.ls17_c01094{letter-spacing:-3.432000pt;}
.ls27_c01094{letter-spacing:-3.395333pt;}
.ls7_c01094{letter-spacing:-3.271867pt;}
.ls22_c01094{letter-spacing:-3.085800pt;}
.ls13_c01094{letter-spacing:-2.882580pt;}
.ls2_c01094{letter-spacing:-2.878200pt;}
.ls18_c01094{letter-spacing:-2.745980pt;}
.ls8_c01094{letter-spacing:-2.614667pt;}
.ls11_c01094{letter-spacing:-2.161400pt;}
.lsf_c01094{letter-spacing:-1.964533pt;}
.ls1f_c01094{letter-spacing:-1.925733pt;}
.ls26_c01094{letter-spacing:-1.799333pt;}
.lse_c01094{letter-spacing:-1.440933pt;}
.ls16_c01094{letter-spacing:-1.356800pt;}
.lsd_c01094{letter-spacing:-1.306627pt;}
.ls12_c01094{letter-spacing:-0.720467pt;}
.ls4_c01094{letter-spacing:0.000000pt;}
.ls1e_c01094{letter-spacing:0.546833pt;}
.ls1_c01094{letter-spacing:0.656493pt;}
.ls1b_c01094{letter-spacing:0.720467pt;}
.ls19_c01094{letter-spacing:2.221800pt;}
.ls20_c01094{letter-spacing:2.572200pt;}
.ls2b_c01094{letter-spacing:2.900000pt;}
.ls28_c01094{letter-spacing:3.030200pt;}
.ls23_c01094{letter-spacing:3.471253pt;}
.ls0_c01094{letter-spacing:3.929067pt;}
.ls3_c01094{letter-spacing:7.608533pt;}
.ls1a_c01094{letter-spacing:9.366067pt;}
.ls25_c01094{letter-spacing:9.388800pt;}
.ls1d_c01094{letter-spacing:10.086533pt;}
.ls2a_c01094{letter-spacing:13.706507pt;}
.ws0_c01094{word-spacing:0.000000pt;}
._13_c01094{margin-left:-14.446046pt;}
._12_c01094{margin-left:-6.797851pt;}
._11_c01094{margin-left:-5.857953pt;}
._17_c01094{margin-left:-3.801710pt;}
._9_c01094{margin-left:-2.489317pt;}
._1_c01094{width:1.229495pt;}
._15_c01094{width:2.416434pt;}
._0_c01094{width:3.476957pt;}
._b_c01094{width:4.543276pt;}
._3_c01094{width:5.801472pt;}
._8_c01094{width:6.812549pt;}
._4_c01094{width:8.585686pt;}
._5_c01094{width:9.900138pt;}
._e_c01094{width:11.393142pt;}
._a_c01094{width:12.303008pt;}
._2_c01094{width:17.223953pt;}
._6_c01094{width:19.010492pt;}
._d_c01094{width:21.254934pt;}
._7_c01094{width:22.620557pt;}
._16_c01094{width:24.102568pt;}
._14_c01094{width:25.376400pt;}
._c_c01094{width:30.485181pt;}
._10_c01094{width:53.970201pt;}
._f_c01094{width:59.171215pt;}
.fsb_c01094{font-size:16.666667pt;}
.fsc_c01094{font-size:17.333333pt;}
.fsd_c01094{font-size:18.000000pt;}
.fs9_c01094{font-size:46.666667pt;}
.fsa_c01094{font-size:52.000000pt;}
.fs10_c01094{font-size:66.666667pt;}
.fse_c01094{font-size:68.000000pt;}
.fs7_c01094{font-size:68.666667pt;}
.fs8_c01094{font-size:69.333333pt;}
.fs2_c01094{font-size:70.666667pt;}
.fs6_c01094{font-size:71.333333pt;}
.fs5_c01094{font-size:72.000000pt;}
.fs11_c01094{font-size:72.666667pt;}
.fs4_c01094{font-size:73.333333pt;}
.fs3_c01094{font-size:74.000000pt;}
.fs1_c01094{font-size:74.666667pt;}
.fsf_c01094{font-size:76.666667pt;}
.fs0_c01094{font-size:82.000000pt;}
.y0_c01094{bottom:0.000000pt;}
.y1d_c01094{bottom:213.758787pt;}
.y1c_c01094{bottom:240.318680pt;}
.y1b_c01094{bottom:266.559080pt;}
.y1a_c01094{bottom:319.359333pt;}
.y19_c01094{bottom:345.919840pt;}
.y18_c01094{bottom:372.799840pt;}
.y17_c01094{bottom:426.238773pt;}
.y16_c01094{bottom:453.120120pt;}
.y15_c01094{bottom:479.679200pt;}
.y14_c01094{bottom:479.679587pt;}
.y13_c01094{bottom:532.160120pt;}
.y12_c01094{bottom:558.399867pt;}
.y11_c01094{bottom:585.598413pt;}
.y10_c01094{bottom:638.720253pt;}
.ye_c01094{bottom:664.959640pt;}
.yf_c01094{bottom:664.960000pt;}
.yd_c01094{bottom:668.479987pt;}
.yb_c01094{bottom:691.518293pt;}
.yc_c01094{bottom:691.519040pt;}
.ya_c01094{bottom:744.640133pt;}
.y9_c01094{bottom:770.879880pt;}
.y8_c01094{bottom:797.760173pt;}
.y7_c01094{bottom:851.200120pt;}
.y6_c01094{bottom:877.759280pt;}
.y5_c01094{bottom:904.319867pt;}
.y4_c01094{bottom:957.120120pt;}
.y3_c01094{bottom:984.000000pt;}
.y2_c01094{bottom:984.000773pt;}
.y1_c01094{bottom:1010.559000pt;}
.h10_c01094{height:17.382812pt;}
.h11_c01094{height:18.078125pt;}
.h12_c01094{height:18.773437pt;}
.he_c01094{height:45.777995pt;}
.hf_c01094{height:51.009766pt;}
.h14_c01094{height:66.705078pt;}
.h19_c01094{height:67.187500pt;}
.hd_c01094{height:67.392578pt;}
.ha_c01094{height:67.861979pt;}
.hc_c01094{height:68.013021pt;}
.hb_c01094{height:69.320964pt;}
.h7_c01094{height:69.355469pt;}
.h17_c01094{height:69.531250pt;}
.h9_c01094{height:69.974935pt;}
.h16_c01094{height:70.628906pt;}
.h6_c01094{height:70.664062pt;}
.h3_c01094{height:71.218750pt;}
.h5_c01094{height:71.972656pt;}
.h13_c01094{height:72.590820pt;}
.h8_c01094{height:73.132813pt;}
.h18_c01094{height:73.234375pt;}
.h2_c01094{height:73.244792pt;}
.h4_c01094{height:74.578125pt;}
.h15_c01094{height:79.960938pt;}
.h1_c01094{height:81.039063pt;}
.h0_c01094{height:1122.666667pt;}
.w0_c01094{width:793.333333pt;}
.x0_c01094{left:0.000000pt;}
.x29_c01094{left:118.719720pt;}
.xf_c01094{left:119.679200pt;}
.xb_c01094{left:120.638667pt;}
.x1_c01094{left:121.599613pt;}
.x8_c01094{left:122.879187pt;}
.x21_c01094{left:141.118667pt;}
.x28_c01094{left:144.959467pt;}
.x1a_c01094{left:149.759720pt;}
.x19_c01094{left:161.598680pt;}
.x2_c01094{left:177.279720pt;}
.x10_c01094{left:181.119200pt;}
.x25_c01094{left:198.079067pt;}
.x3_c01094{left:199.999467pt;}
.x4_c01094{left:213.758787pt;}
.x22_c01094{left:228.159733pt;}
.x26_c01094{left:231.039587pt;}
.xc_c01094{left:233.279333pt;}
.xd_c01094{left:259.839867pt;}
.x23_c01094{left:272.318787pt;}
.x2a_c01094{left:287.679200pt;}
.xe_c01094{left:288.638667pt;}
.x24_c01094{left:291.518533pt;}
.x1f_c01094{left:305.598680pt;}
.x16_c01094{left:313.599440pt;}
.x5_c01094{left:324.159733pt;}
.x15_c01094{left:344.958947pt;}
.x6_c01094{left:347.198693pt;}
.x1b_c01094{left:363.199173pt;}
.x11_c01094{left:364.798787pt;}
.x17_c01094{left:369.279707pt;}
.x7_c01094{left:376.960000pt;}
.x1c_c01094{left:379.519040pt;}
.x18_c01094{left:382.719720pt;}
.x12_c01094{left:410.239707pt;}
.x27_c01094{left:415.038533pt;}
.x1d_c01094{left:419.519453pt;}
.x9_c01094{left:420.799840pt;}
.x1e_c01094{left:435.839320pt;}
.x13_c01094{left:443.198693pt;}
.xa_c01094{left:458.239707pt;}
.x20_c01094{left:462.079067pt;}
.x14_c01094{left:466.879307pt;}
}





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

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_4dbc2f2714b883620d1e3e21.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_0f8c5d3796bc8a48eb50d257.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01095;src:url('chunks/assets/font_967f834c4b54226a4f32ce52.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01095;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01095;src:url('chunks/assets/font_2907d66d4141bc17edfa7c55.woff2')format("woff");}.ff5_c01095{font-family:ff5_c01095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01095;src:url('chunks/assets/font_e30cd3bd9e7d0b0823db1298.woff2')format("woff");}.ff6_c01095{font-family:ff6_c01095;line-height:1.432129;font-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_c01095{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m15_c01095{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m1_c01095{transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172764,0.000000,0.000000,0.250000,0,0);}
.m7_c01095{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m1b_c01095{transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);}
.m20_c01095{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m22_c01095{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1e_c01095{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c01095{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m12_c01095{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m19_c01095{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m24_c01095{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m6_c01095{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.m26_c01095{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_c01095{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m14_c01095{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m5_c01095{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m21_c01095{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m18_c01095{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m4_c01095{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m2_c01095{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m3_c01095{transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232609,0.000000,0.000000,0.250000,0,0);}
.m25_c01095{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.mc_c01095{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m13_c01095{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.me_c01095{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m23_c01095{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m9_c01095{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m1d_c01095{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.mf_c01095{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m8_c01095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01095{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m27_c01095{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m1a_c01095{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.md_c01095{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.m1f_c01095{transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);}
.m17_c01095{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m10_c01095{transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);}
.ma_c01095{transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);}
.m16_c01095{transform:matrix(0.968750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.968750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.968750,0.000000,0.000000,0.250000,0,0);}
.v0_c01095{vertical-align:0.000000px;}
.ls1_c01095{letter-spacing:-26.042175px;}
.ls2f_c01095{letter-spacing:-14.552100px;}
.ls2_c01095{letter-spacing:-13.744575px;}
.ls1a_c01095{letter-spacing:-12.121200px;}
.ls16_c01095{letter-spacing:-11.312843px;}
.ls3_c01095{letter-spacing:-11.281500px;}
.ls2a_c01095{letter-spacing:-10.506983px;}
.ls1c_c01095{letter-spacing:-9.698625px;}
.ls18_c01095{letter-spacing:-8.619653px;}
.ls1b_c01095{letter-spacing:-6.811875px;}
.ls2c_c01095{letter-spacing:-6.301350px;}
.lsb_c01095{letter-spacing:-5.304525px;}
.ls26_c01095{letter-spacing:-5.300663px;}
.ls25_c01095{letter-spacing:-5.155800px;}
.ls20_c01095{letter-spacing:-3.891323px;}
.ls11_c01095{letter-spacing:-3.787875px;}
.ls30_c01095{letter-spacing:-3.333825px;}
.ls5_c01095{letter-spacing:-3.242903px;}
.ls2d_c01095{letter-spacing:-3.113700px;}
.ls10_c01095{letter-spacing:-3.031875px;}
.ls23_c01095{letter-spacing:-2.431575px;}
.ls17_c01095{letter-spacing:-2.335275px;}
.lsd_c01095{letter-spacing:-2.267213px;}
.ls9_c01095{letter-spacing:-2.248710px;}
.ls13_c01095{letter-spacing:-2.184000px;}
.ls4_c01095{letter-spacing:-1.621050px;}
.lsa_c01095{letter-spacing:-1.560038px;}
.ls19_c01095{letter-spacing:-1.556048px;}
.lsc_c01095{letter-spacing:-1.555200px;}
.ls22_c01095{letter-spacing:-1.515465px;}
.lsf_c01095{letter-spacing:-1.512000px;}
.ls32_c01095{letter-spacing:-1.441125px;}
.ls8_c01095{letter-spacing:-0.838200px;}
.ls0_c01095{letter-spacing:-0.831668px;}
.ls14_c01095{letter-spacing:-0.810525px;}
.lse_c01095{letter-spacing:-0.756000px;}
.ls6_c01095{letter-spacing:0.000000px;}
.ls27_c01095{letter-spacing:0.810525px;}
.ls21_c01095{letter-spacing:1.459380px;}
.ls15_c01095{letter-spacing:1.716000px;}
.ls28_c01095{letter-spacing:3.031875px;}
.ls12_c01095{letter-spacing:3.866100px;}
.ls2e_c01095{letter-spacing:3.932250px;}
.ls2b_c01095{letter-spacing:4.115700px;}
.ls1e_c01095{letter-spacing:4.236750px;}
.ls1d_c01095{letter-spacing:4.561425px;}
.ls29_c01095{letter-spacing:6.459600px;}
.ls31_c01095{letter-spacing:6.484200px;}
.ls7_c01095{letter-spacing:7.425000px;}
.ls1f_c01095{letter-spacing:8.417250px;}
.ls24_c01095{letter-spacing:8.915775px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01095{word-spacing:0.000000px;}
._3_c01095{margin-left:-21.329834px;}
._11_c01095{margin-left:-17.925560px;}
._10_c01095{margin-left:-13.291913px;}
._4_c01095{margin-left:-9.032001px;}
._13_c01095{margin-left:-7.213940px;}
._12_c01095{margin-left:-1.177559px;}
._5_c01095{width:1.435145px;}
._7_c01095{width:3.545083px;}
._2_c01095{width:5.623734px;}
._1_c01095{width:7.101355px;}
._6_c01095{width:8.882622px;}
._8_c01095{width:10.344241px;}
._0_c01095{width:12.157729px;}
._f_c01095{width:14.087077px;}
._9_c01095{width:29.861637px;}
._a_c01095{width:32.602439px;}
._d_c01095{width:35.548174px;}
._c_c01095{width:39.167342px;}
._b_c01095{width:40.863981px;}
._e_c01095{width:45.572504px;}
.fc0_c01095{color:transparent;}
.fsd_c01095{font-size:30.000000px;}
.fse_c01095{font-size:42.750000px;}
.fsf_c01095{font-size:43.500000px;}
.fs4_c01095{font-size:66.000000px;}
.fs5_c01095{font-size:69.000000px;}
.fs8_c01095{font-size:73.500000px;}
.fs12_c01095{font-size:76.500000px;}
.fs14_c01095{font-size:77.250000px;}
.fs9_c01095{font-size:78.000000px;}
.fs6_c01095{font-size:78.750000px;}
.fsb_c01095{font-size:79.500000px;}
.fs3_c01095{font-size:80.250000px;}
.fs7_c01095{font-size:81.000000px;}
.fsa_c01095{font-size:82.500000px;}
.fs0_c01095{font-size:83.250000px;}
.fsc_c01095{font-size:84.000000px;}
.fs10_c01095{font-size:84.750000px;}
.fs13_c01095{font-size:85.500000px;}
.fs2_c01095{font-size:86.250000px;}
.fs1_c01095{font-size:92.250000px;}
.fs11_c01095{font-size:101.250000px;}
.y0_c01095{bottom:0.000000px;}
.y1b_c01095{bottom:207.720750px;}
.y1a_c01095{bottom:237.599700px;}
.y19_c01095{bottom:267.839535px;}
.y18_c01095{bottom:326.880585px;}
.y17_c01095{bottom:356.039385px;}
.y16_c01095{bottom:386.279250px;}
.y15_c01095{bottom:446.040570px;}
.y14_c01095{bottom:476.639700px;}
.y13_c01095{bottom:507.240420px;}
.y12_c01095{bottom:566.279850px;}
.y11_c01095{bottom:595.440315px;}
.y10_c01095{bottom:625.319235px;}
.yf_c01095{bottom:684.719520px;}
.ye_c01095{bottom:714.600135px;}
.yd_c01095{bottom:745.199385px;}
.yc_c01095{bottom:753.480285px;}
.yb_c01095{bottom:805.319820px;}
.ya_c01095{bottom:834.840435px;}
.y9_c01095{bottom:864.720150px;}
.y8_c01095{bottom:894.600765px;}
.y7_c01095{bottom:954.719520px;}
.y6_c01095{bottom:984.600135px;}
.y5_c01095{bottom:1014.840090px;}
.y4_c01095{bottom:1074.240420px;}
.y3_c01095{bottom:1076.039985px;}
.y2_c01095{bottom:1104.119385px;}
.y1_c01095{bottom:1134.000000px;}
.h13_c01095{height:31.289062px;}
.h14_c01095{height:44.586914px;}
.h15_c01095{height:45.369141px;}
.h6_c01095{height:66.515625px;}
.h7_c01095{height:71.964844px;}
.hd_c01095{height:72.100342px;}
.he_c01095{height:76.552734px;}
.h19_c01095{height:77.097656px;}
.hc_c01095{height:77.288818px;}
.h1c_c01095{height:77.853516px;}
.h18_c01095{height:78.609375px;}
.h5_c01095{height:78.721802px;}
.ha_c01095{height:78.760986px;}
.h9_c01095{height:79.365234px;}
.hb_c01095{height:79.497070px;}
.h11_c01095{height:80.121094px;}
.h10_c01095{height:80.876953px;}
.hf_c01095{height:80.928955px;}
.h3_c01095{height:82.274414px;}
.h1a_c01095{height:82.400391px;}
.h12_c01095{height:83.015625px;}
.h16_c01095{height:83.136108px;}
.h1d_c01095{height:83.144531px;}
.h1_c01095{height:83.900391px;}
.h1b_c01095{height:84.498047px;}
.h4_c01095{height:85.239258px;}
.h8_c01095{height:89.956055px;}
.h2_c01095{height:91.168945px;}
.h17_c01095{height:105.600586px;}
.h0_c01095{height:1263.000000px;}
.w0_c01095{width:892.500000px;}
.x0_c01095{left:0.000000px;}
.x4_c01095{left:135.000000px;}
.x1_c01095{left:136.438665px;}
.x2f_c01095{left:137.519685px;}
.x7_c01095{left:143.638500px;}
.x8_c01095{left:155.159415px;}
.x5_c01095{left:161.279850px;}
.xc_c01095{left:169.918350px;}
.x9_c01095{left:175.318800px;}
.x6_c01095{left:191.519685px;}
.xd_c01095{left:192.958350px;}
.x27_c01095{left:200.159850px;}
.x1d_c01095{left:206.998950px;}
.xe_c01095{left:215.639100px;}
.x1e_c01095{left:221.759535px;}
.x30_c01095{left:228.959400px;}
.xa_c01095{left:231.120000px;}
.x28_c01095{left:232.919535px;}
.x2_c01095{left:235.439250px;}
.x1c_c01095{left:246.239850px;}
.x22_c01095{left:251.638500px;}
.x14_c01095{left:254.159850px;}
.xf_c01095{left:256.679700px;}
.xb_c01095{left:262.439250px;}
.x3_c01095{left:264.599700px;}
.x1f_c01095{left:266.040000px;}
.x31_c01095{left:267.478635px;}
.x15_c01095{left:269.279850px;}
.x1a_c01095{left:278.999385px;}
.x10_c01095{left:280.078785px;}
.x23_c01095{left:284.038950px;}
.x1b_c01095{left:286.199385px;}
.x32_c01095{left:299.878950px;}
.x24_c01095{left:308.519100px;}
.x17_c01095{left:328.319250px;}
.x2b_c01095{left:330.118785px;}
.x25_c01095{left:338.038950px;}
.x20_c01095{left:339.838515px;}
.x18_c01095{left:350.639100px;}
.x26_c01095{left:368.998950px;}
.x21_c01095{left:371.159385px;}
.x16_c01095{left:376.918950px;}
.x29_c01095{left:380.158785px;}
.x2c_c01095{left:393.119985px;}
.x11_c01095{left:405.359250px;}
.x2a_c01095{left:423.359850px;}
.x12_c01095{left:435.599070px;}
.x19_c01095{left:498.959385px;}
.x13_c01095{left:507.958920px;}
.x2d_c01095{left:553.318770px;}
.x2e_c01095{left:590.758530px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls1_c01095{letter-spacing:-23.148600pt;}
.ls2f_c01095{letter-spacing:-12.935200pt;}
.ls2_c01095{letter-spacing:-12.217400pt;}
.ls1a_c01095{letter-spacing:-10.774400pt;}
.ls16_c01095{letter-spacing:-10.055860pt;}
.ls3_c01095{letter-spacing:-10.028000pt;}
.ls2a_c01095{letter-spacing:-9.339540pt;}
.ls1c_c01095{letter-spacing:-8.621000pt;}
.ls18_c01095{letter-spacing:-7.661913pt;}
.ls1b_c01095{letter-spacing:-6.055000pt;}
.ls2c_c01095{letter-spacing:-5.601200pt;}
.lsb_c01095{letter-spacing:-4.715133pt;}
.ls26_c01095{letter-spacing:-4.711700pt;}
.ls25_c01095{letter-spacing:-4.582933pt;}
.ls20_c01095{letter-spacing:-3.458953pt;}
.ls11_c01095{letter-spacing:-3.367000pt;}
.ls30_c01095{letter-spacing:-2.963400pt;}
.ls5_c01095{letter-spacing:-2.882580pt;}
.ls2d_c01095{letter-spacing:-2.767733pt;}
.ls10_c01095{letter-spacing:-2.695000pt;}
.ls23_c01095{letter-spacing:-2.161400pt;}
.ls17_c01095{letter-spacing:-2.075800pt;}
.lsd_c01095{letter-spacing:-2.015300pt;}
.ls9_c01095{letter-spacing:-1.998853pt;}
.ls13_c01095{letter-spacing:-1.941333pt;}
.ls4_c01095{letter-spacing:-1.440933pt;}
.lsa_c01095{letter-spacing:-1.386700pt;}
.ls19_c01095{letter-spacing:-1.383153pt;}
.lsc_c01095{letter-spacing:-1.382400pt;}
.ls22_c01095{letter-spacing:-1.347080pt;}
.lsf_c01095{letter-spacing:-1.344000pt;}
.ls32_c01095{letter-spacing:-1.281000pt;}
.ls8_c01095{letter-spacing:-0.745067pt;}
.ls0_c01095{letter-spacing:-0.739260pt;}
.ls14_c01095{letter-spacing:-0.720467pt;}
.lse_c01095{letter-spacing:-0.672000pt;}
.ls6_c01095{letter-spacing:0.000000pt;}
.ls27_c01095{letter-spacing:0.720467pt;}
.ls21_c01095{letter-spacing:1.297227pt;}
.ls15_c01095{letter-spacing:1.525333pt;}
.ls28_c01095{letter-spacing:2.695000pt;}
.ls12_c01095{letter-spacing:3.436533pt;}
.ls2e_c01095{letter-spacing:3.495333pt;}
.ls2b_c01095{letter-spacing:3.658400pt;}
.ls1e_c01095{letter-spacing:3.766000pt;}
.ls1d_c01095{letter-spacing:4.054600pt;}
.ls29_c01095{letter-spacing:5.741867pt;}
.ls31_c01095{letter-spacing:5.763733pt;}
.ls7_c01095{letter-spacing:6.600000pt;}
.ls1f_c01095{letter-spacing:7.482000pt;}
.ls24_c01095{letter-spacing:7.925133pt;}
.ws0_c01095{word-spacing:0.000000pt;}
._3_c01095{margin-left:-18.959852pt;}
._11_c01095{margin-left:-15.933831pt;}
._10_c01095{margin-left:-11.815034pt;}
._4_c01095{margin-left:-8.028446pt;}
._13_c01095{margin-left:-6.412391pt;}
._12_c01095{margin-left:-1.046719pt;}
._5_c01095{width:1.275685pt;}
._7_c01095{width:3.151185pt;}
._2_c01095{width:4.998874pt;}
._1_c01095{width:6.312315pt;}
._6_c01095{width:7.895664pt;}
._8_c01095{width:9.194881pt;}
._0_c01095{width:10.806870pt;}
._f_c01095{width:12.521847pt;}
._9_c01095{width:26.543677pt;}
._a_c01095{width:28.979946pt;}
._d_c01095{width:31.598377pt;}
._c_c01095{width:34.815415pt;}
._b_c01095{width:36.323538pt;}
._e_c01095{width:40.508892pt;}
.fsd_c01095{font-size:26.666667pt;}
.fse_c01095{font-size:38.000000pt;}
.fsf_c01095{font-size:38.666667pt;}
.fs4_c01095{font-size:58.666667pt;}
.fs5_c01095{font-size:61.333333pt;}
.fs8_c01095{font-size:65.333333pt;}
.fs12_c01095{font-size:68.000000pt;}
.fs14_c01095{font-size:68.666667pt;}
.fs9_c01095{font-size:69.333333pt;}
.fs6_c01095{font-size:70.000000pt;}
.fsb_c01095{font-size:70.666667pt;}
.fs3_c01095{font-size:71.333333pt;}
.fs7_c01095{font-size:72.000000pt;}
.fsa_c01095{font-size:73.333333pt;}
.fs0_c01095{font-size:74.000000pt;}
.fsc_c01095{font-size:74.666667pt;}
.fs10_c01095{font-size:75.333333pt;}
.fs13_c01095{font-size:76.000000pt;}
.fs2_c01095{font-size:76.666667pt;}
.fs1_c01095{font-size:82.000000pt;}
.fs11_c01095{font-size:90.000000pt;}
.y0_c01095{bottom:0.000000pt;}
.y1b_c01095{bottom:184.640667pt;}
.y1a_c01095{bottom:211.199733pt;}
.y19_c01095{bottom:238.079587pt;}
.y18_c01095{bottom:290.560520pt;}
.y17_c01095{bottom:316.479453pt;}
.y16_c01095{bottom:343.359333pt;}
.y15_c01095{bottom:396.480507pt;}
.y14_c01095{bottom:423.679733pt;}
.y13_c01095{bottom:450.880373pt;}
.y12_c01095{bottom:503.359867pt;}
.y11_c01095{bottom:529.280280pt;}
.y10_c01095{bottom:555.839320pt;}
.yf_c01095{bottom:608.639573pt;}
.ye_c01095{bottom:635.200120pt;}
.yd_c01095{bottom:662.399453pt;}
.yc_c01095{bottom:669.760253pt;}
.yb_c01095{bottom:715.839840pt;}
.ya_c01095{bottom:742.080387pt;}
.y9_c01095{bottom:768.640133pt;}
.y8_c01095{bottom:795.200680pt;}
.y7_c01095{bottom:848.639573pt;}
.y6_c01095{bottom:875.200120pt;}
.y5_c01095{bottom:902.080080pt;}
.y4_c01095{bottom:954.880373pt;}
.y3_c01095{bottom:956.479987pt;}
.y2_c01095{bottom:981.439453pt;}
.y1_c01095{bottom:1008.000000pt;}
.h13_c01095{height:27.812500pt;}
.h14_c01095{height:39.632812pt;}
.h15_c01095{height:40.328125pt;}
.h6_c01095{height:59.125000pt;}
.h7_c01095{height:63.968750pt;}
.hd_c01095{height:64.089193pt;}
.he_c01095{height:68.046875pt;}
.h19_c01095{height:68.531250pt;}
.hc_c01095{height:68.701172pt;}
.h1c_c01095{height:69.203125pt;}
.h18_c01095{height:69.875000pt;}
.h5_c01095{height:69.974935pt;}
.ha_c01095{height:70.009766pt;}
.h9_c01095{height:70.546875pt;}
.hb_c01095{height:70.664062pt;}
.h11_c01095{height:71.218750pt;}
.h10_c01095{height:71.890625pt;}
.hf_c01095{height:71.936849pt;}
.h3_c01095{height:73.132813pt;}
.h1a_c01095{height:73.244792pt;}
.h12_c01095{height:73.791667pt;}
.h16_c01095{height:73.898763pt;}
.h1d_c01095{height:73.906250pt;}
.h1_c01095{height:74.578125pt;}
.h1b_c01095{height:75.109375pt;}
.h4_c01095{height:75.768229pt;}
.h8_c01095{height:79.960938pt;}
.h2_c01095{height:81.039063pt;}
.h17_c01095{height:93.867188pt;}
.h0_c01095{height:1122.666667pt;}
.w0_c01095{width:793.333333pt;}
.x0_c01095{left:0.000000pt;}
.x4_c01095{left:120.000000pt;}
.x1_c01095{left:121.278813pt;}
.x2f_c01095{left:122.239720pt;}
.x7_c01095{left:127.678667pt;}
.x8_c01095{left:137.919480pt;}
.x5_c01095{left:143.359867pt;}
.xc_c01095{left:151.038533pt;}
.x9_c01095{left:155.838933pt;}
.x6_c01095{left:170.239720pt;}
.xd_c01095{left:171.518533pt;}
.x27_c01095{left:177.919867pt;}
.x1d_c01095{left:183.999067pt;}
.xe_c01095{left:191.679200pt;}
.x1e_c01095{left:197.119587pt;}
.x30_c01095{left:203.519467pt;}
.xa_c01095{left:205.440000pt;}
.x28_c01095{left:207.039587pt;}
.x2_c01095{left:209.279333pt;}
.x1c_c01095{left:218.879867pt;}
.x22_c01095{left:223.678667pt;}
.x14_c01095{left:225.919867pt;}
.xf_c01095{left:228.159733pt;}
.xb_c01095{left:233.279333pt;}
.x3_c01095{left:235.199733pt;}
.x1f_c01095{left:236.480000pt;}
.x31_c01095{left:237.758787pt;}
.x15_c01095{left:239.359867pt;}
.x1a_c01095{left:247.999453pt;}
.x10_c01095{left:248.958920pt;}
.x23_c01095{left:252.479067pt;}
.x1b_c01095{left:254.399453pt;}
.x32_c01095{left:266.559067pt;}
.x24_c01095{left:274.239200pt;}
.x17_c01095{left:291.839333pt;}
.x2b_c01095{left:293.438920pt;}
.x25_c01095{left:300.479067pt;}
.x20_c01095{left:302.078680pt;}
.x18_c01095{left:311.679200pt;}
.x26_c01095{left:327.999067pt;}
.x21_c01095{left:329.919453pt;}
.x16_c01095{left:335.039067pt;}
.x29_c01095{left:337.918920pt;}
.x2c_c01095{left:349.439987pt;}
.x11_c01095{left:360.319333pt;}
.x2a_c01095{left:376.319867pt;}
.x12_c01095{left:387.199173pt;}
.x19_c01095{left:443.519453pt;}
.x13_c01095{left:451.519040pt;}
.x2d_c01095{left:491.838907pt;}
.x2e_c01095{left:525.118693pt;}
}





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

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_064ef9a8fb27353c95cfaf67.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_77287ba9881483ef61220c88.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01096;src:url('chunks/assets/font_bd4399abbd9ed38e4809e5ae.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01096;src:url('chunks/assets/font_0357cb67c02bcd1917ef1535.woff2')format("woff");}.ff4_c01096{font-family:ff4_c01096;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01096;src:url('chunks/assets/font_93b4e555ec66fae908978493.woff2')format("woff");}.ff5_c01096{font-family:ff5_c01096;line-height:1.284180;font-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_c01096{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m12_c01096{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m6_c01096{transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);}
.m9_c01096{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m10_c01096{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m5_c01096{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m13_c01096{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m11_c01096{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m4_c01096{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.mc_c01096{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m1_c01096{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.mf_c01096{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m2_c01096{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.ma_c01096{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.me_c01096{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m14_c01096{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m7_c01096{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m3_c01096{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.mb_c01096{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m0_c01096{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m8_c01096{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls1c_c01096{letter-spacing:-8.228250px;}
.lsd_c01096{letter-spacing:-8.131200px;}
.ls18_c01096{letter-spacing:-7.363913px;}
.ls11_c01096{letter-spacing:-6.623663px;}
.ls17_c01096{letter-spacing:-5.672873px;}
.ls4_c01096{letter-spacing:-5.150250px;}
.ls15_c01096{letter-spacing:-4.862348px;}
.ls12_c01096{letter-spacing:-4.418663px;}
.ls1a_c01096{letter-spacing:-4.297425px;}
.ls16_c01096{letter-spacing:-4.053428px;}
.ls10_c01096{letter-spacing:-3.681600px;}
.ls7_c01096{letter-spacing:-3.678413px;}
.ls14_c01096{letter-spacing:-2.968875px;}
.ls5_c01096{letter-spacing:-2.945250px;}
.ls8_c01096{letter-spacing:-2.431575px;}
.ls6_c01096{letter-spacing:-2.205000px;}
.lse_c01096{letter-spacing:-1.621050px;}
.ls13_c01096{letter-spacing:-1.589753px;}
.ls3_c01096{letter-spacing:-1.473413px;}
.ls9_c01096{letter-spacing:-0.810525px;}
.ls1d_c01096{letter-spacing:-0.785700px;}
.lsf_c01096{letter-spacing:-0.779220px;}
.lsb_c01096{letter-spacing:-0.772650px;}
.lsc_c01096{letter-spacing:-0.731588px;}
.lsa_c01096{letter-spacing:0.000000px;}
.ls0_c01096{letter-spacing:0.731588px;}
.ls1_c01096{letter-spacing:0.810525px;}
.ls2_c01096{letter-spacing:1.473413px;}
.ls19_c01096{letter-spacing:2.430000px;}
.ls1b_c01096{letter-spacing:4.128300px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01096{word-spacing:0.000000px;}
._3_c01096{margin-left:-26.619590px;}
._a_c01096{margin-left:-11.599625px;}
._15_c01096{margin-left:-8.101617px;}
._e_c01096{margin-left:-6.766958px;}
._13_c01096{margin-left:-5.168943px;}
._c_c01096{margin-left:-4.016633px;}
._d_c01096{margin-left:-2.879637px;}
._b_c01096{margin-left:-1.811103px;}
._4_c01096{width:1.774635px;}
._2_c01096{width:2.906479px;}
._0_c01096{width:4.480610px;}
._5_c01096{width:5.772772px;}
._8_c01096{width:6.878084px;}
._7_c01096{width:8.659445px;}
._12_c01096{width:9.685543px;}
._f_c01096{width:11.056058px;}
._6_c01096{width:12.948163px;}
._11_c01096{width:15.041338px;}
._10_c01096{width:16.554442px;}
._14_c01096{width:22.393159px;}
._9_c01096{width:26.848797px;}
._17_c01096{width:27.986204px;}
._1_c01096{width:33.626633px;}
._16_c01096{width:36.128697px;}
.fc0_c01096{color:transparent;}
.fs9_c01096{font-size:74.250000px;}
.fs7_c01096{font-size:75.750000px;}
.fs3_c01096{font-size:76.500000px;}
.fs2_c01096{font-size:77.250000px;}
.fs5_c01096{font-size:78.000000px;}
.fs0_c01096{font-size:78.750000px;}
.fsa_c01096{font-size:79.500000px;}
.fs1_c01096{font-size:80.250000px;}
.fs8_c01096{font-size:81.000000px;}
.fs6_c01096{font-size:82.500000px;}
.fs4_c01096{font-size:84.000000px;}
.y0_c01096{bottom:0.000000px;}
.y1d_c01096{bottom:227.159850px;}
.y1c_c01096{bottom:256.679700px;}
.y1b_c01096{bottom:287.280435px;}
.y1a_c01096{bottom:347.040000px;}
.y19_c01096{bottom:376.198785px;}
.y18_c01096{bottom:405.720150px;}
.y17_c01096{bottom:405.720240px;}
.y16_c01096{bottom:465.479685px;}
.y15_c01096{bottom:495.719565px;}
.y14_c01096{bottom:526.319850px;}
.y13_c01096{bottom:585.719100px;}
.y12_c01096{bottom:614.879520px;}
.y11_c01096{bottom:644.400030px;}
.y10_c01096{bottom:704.519670px;}
.yf_c01096{bottom:733.680135px;}
.yd_c01096{bottom:763.919340px;}
.ye_c01096{bottom:763.920000px;}
.yc_c01096{bottom:824.038965px;}
.ya_c01096{bottom:853.919445px;}
.yb_c01096{bottom:853.919490px;}
.y8_c01096{bottom:884.158635px;}
.y9_c01096{bottom:884.159370px;}
.y7_c01096{bottom:943.559685px;}
.y6_c01096{bottom:973.799565px;}
.y5_c01096{bottom:973.799655px;}
.y4_c01096{bottom:1003.319190px;}
.y3_c01096{bottom:1063.439670px;}
.y2_c01096{bottom:1093.320555px;}
.y1_c01096{bottom:1122.840090px;}
.hf_c01096{height:72.872314px;}
.h5_c01096{height:75.080566px;}
.h3_c01096{height:75.778931px;}
.hc_c01096{height:76.341797px;}
.h8_c01096{height:76.514648px;}
.h9_c01096{height:76.552734px;}
.h4_c01096{height:77.097656px;}
.h1_c01096{height:77.288818px;}
.h10_c01096{height:78.568359px;}
.h2_c01096{height:78.721802px;}
.h6_c01096{height:78.760986px;}
.h11_c01096{height:79.497070px;}
.hb_c01096{height:80.928955px;}
.ha_c01096{height:80.969238px;}
.he_c01096{height:81.533203px;}
.hd_c01096{height:81.632812px;}
.h7_c01096{height:83.015625px;}
.h0_c01096{height:1263.000000px;}
.w0_c01096{width:892.500000px;}
.x0_c01096{left:0.000000px;}
.x22_c01096{left:159.478665px;}
.xd_c01096{left:160.559685px;}
.x3_c01096{left:161.639100px;}
.x1_c01096{left:163.799565px;}
.x2_c01096{left:164.878965px;}
.xe_c01096{left:194.039400px;}
.x1a_c01096{left:230.759100px;}
.x1b_c01096{left:245.878950px;}
.xf_c01096{left:247.678500px;}
.x18_c01096{left:250.559100px;}
.x23_c01096{left:251.638500px;}
.x13_c01096{left:266.399250px;}
.x7_c01096{left:267.478635px;}
.x19_c01096{left:269.279850px;}
.x14_c01096{left:281.519100px;}
.x8_c01096{left:282.598500px;}
.x24_c01096{left:287.998950px;}
.x1e_c01096{left:298.438635px;}
.x1c_c01096{left:304.559100px;}
.x10_c01096{left:311.759100px;}
.x1f_c01096{left:313.558635px;}
.x1d_c01096{left:320.040000px;}
.x4_c01096{left:339.479235px;}
.x11_c01096{left:357.118785px;}
.x16_c01096{left:365.038950px;}
.x25_c01096{left:374.399235px;}
.x5_c01096{left:378.000000px;}
.x12_c01096{left:389.519070px;}
.x17_c01096{left:396.359850px;}
.x9_c01096{left:399.599670px;}
.x15_c01096{left:405.000000px;}
.xa_c01096{left:412.918350px;}
.x6_c01096{left:427.319820px;}
.x20_c01096{left:433.438665px;}
.x21_c01096{left:462.599070px;}
.xb_c01096{left:595.438620px;}
.xc_c01096{left:636.479235px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls1c_c01096{letter-spacing:-7.314000pt;}
.lsd_c01096{letter-spacing:-7.227733pt;}
.ls18_c01096{letter-spacing:-6.545700pt;}
.ls11_c01096{letter-spacing:-5.887700pt;}
.ls17_c01096{letter-spacing:-5.042553pt;}
.ls4_c01096{letter-spacing:-4.578000pt;}
.ls15_c01096{letter-spacing:-4.322087pt;}
.ls12_c01096{letter-spacing:-3.927700pt;}
.ls1a_c01096{letter-spacing:-3.819933pt;}
.ls16_c01096{letter-spacing:-3.603047pt;}
.ls10_c01096{letter-spacing:-3.272533pt;}
.ls7_c01096{letter-spacing:-3.269700pt;}
.ls14_c01096{letter-spacing:-2.639000pt;}
.ls5_c01096{letter-spacing:-2.618000pt;}
.ls8_c01096{letter-spacing:-2.161400pt;}
.ls6_c01096{letter-spacing:-1.960000pt;}
.lse_c01096{letter-spacing:-1.440933pt;}
.ls13_c01096{letter-spacing:-1.413113pt;}
.ls3_c01096{letter-spacing:-1.309700pt;}
.ls9_c01096{letter-spacing:-0.720467pt;}
.ls1d_c01096{letter-spacing:-0.698400pt;}
.lsf_c01096{letter-spacing:-0.692640pt;}
.lsb_c01096{letter-spacing:-0.686800pt;}
.lsc_c01096{letter-spacing:-0.650300pt;}
.lsa_c01096{letter-spacing:0.000000pt;}
.ls0_c01096{letter-spacing:0.650300pt;}
.ls1_c01096{letter-spacing:0.720467pt;}
.ls2_c01096{letter-spacing:1.309700pt;}
.ls19_c01096{letter-spacing:2.160000pt;}
.ls1b_c01096{letter-spacing:3.669600pt;}
.ws0_c01096{word-spacing:0.000000pt;}
._3_c01096{margin-left:-23.661858pt;}
._a_c01096{margin-left:-10.310778pt;}
._15_c01096{margin-left:-7.201438pt;}
._e_c01096{margin-left:-6.015074pt;}
._13_c01096{margin-left:-4.594616pt;}
._c_c01096{margin-left:-3.570340pt;}
._d_c01096{margin-left:-2.559678pt;}
._b_c01096{margin-left:-1.609869pt;}
._4_c01096{width:1.577453pt;}
._2_c01096{width:2.583536pt;}
._0_c01096{width:3.982764pt;}
._5_c01096{width:5.131353pt;}
._8_c01096{width:6.113852pt;}
._7_c01096{width:7.697285pt;}
._12_c01096{width:8.609371pt;}
._f_c01096{width:9.827607pt;}
._6_c01096{width:11.509479pt;}
._11_c01096{width:13.370079pt;}
._10_c01096{width:14.715060pt;}
._14_c01096{width:19.905030pt;}
._9_c01096{width:23.865598pt;}
._17_c01096{width:24.876626pt;}
._1_c01096{width:29.890340pt;}
._16_c01096{width:32.114397pt;}
.fs9_c01096{font-size:66.000000pt;}
.fs7_c01096{font-size:67.333333pt;}
.fs3_c01096{font-size:68.000000pt;}
.fs2_c01096{font-size:68.666667pt;}
.fs5_c01096{font-size:69.333333pt;}
.fs0_c01096{font-size:70.000000pt;}
.fsa_c01096{font-size:70.666667pt;}
.fs1_c01096{font-size:71.333333pt;}
.fs8_c01096{font-size:72.000000pt;}
.fs6_c01096{font-size:73.333333pt;}
.fs4_c01096{font-size:74.666667pt;}
.y0_c01096{bottom:0.000000pt;}
.y1d_c01096{bottom:201.919867pt;}
.y1c_c01096{bottom:228.159733pt;}
.y1b_c01096{bottom:255.360387pt;}
.y1a_c01096{bottom:308.480000pt;}
.y19_c01096{bottom:334.398920pt;}
.y18_c01096{bottom:360.640133pt;}
.y17_c01096{bottom:360.640213pt;}
.y16_c01096{bottom:413.759720pt;}
.y15_c01096{bottom:440.639613pt;}
.y14_c01096{bottom:467.839867pt;}
.y13_c01096{bottom:520.639200pt;}
.y12_c01096{bottom:546.559573pt;}
.y11_c01096{bottom:572.800027pt;}
.y10_c01096{bottom:626.239707pt;}
.yf_c01096{bottom:652.160120pt;}
.yd_c01096{bottom:679.039413pt;}
.ye_c01096{bottom:679.040000pt;}
.yc_c01096{bottom:732.479080pt;}
.ya_c01096{bottom:759.039507pt;}
.yb_c01096{bottom:759.039547pt;}
.y8_c01096{bottom:785.918787pt;}
.y9_c01096{bottom:785.919440pt;}
.y7_c01096{bottom:838.719720pt;}
.y6_c01096{bottom:865.599613pt;}
.y5_c01096{bottom:865.599693pt;}
.y4_c01096{bottom:891.839280pt;}
.y3_c01096{bottom:945.279707pt;}
.y2_c01096{bottom:971.840493pt;}
.y1_c01096{bottom:998.080080pt;}
.hf_c01096{height:64.775391pt;}
.h5_c01096{height:66.738281pt;}
.h3_c01096{height:67.359049pt;}
.hc_c01096{height:67.859375pt;}
.h8_c01096{height:68.013021pt;}
.h9_c01096{height:68.046875pt;}
.h4_c01096{height:68.531250pt;}
.h1_c01096{height:68.701172pt;}
.h10_c01096{height:69.838542pt;}
.h2_c01096{height:69.974935pt;}
.h6_c01096{height:70.009766pt;}
.h11_c01096{height:70.664062pt;}
.hb_c01096{height:71.936849pt;}
.ha_c01096{height:71.972656pt;}
.he_c01096{height:72.473958pt;}
.hd_c01096{height:72.562500pt;}
.h7_c01096{height:73.791667pt;}
.h0_c01096{height:1122.666667pt;}
.w0_c01096{width:793.333333pt;}
.x0_c01096{left:0.000000pt;}
.x22_c01096{left:141.758813pt;}
.xd_c01096{left:142.719720pt;}
.x3_c01096{left:143.679200pt;}
.x1_c01096{left:145.599613pt;}
.x2_c01096{left:146.559080pt;}
.xe_c01096{left:172.479467pt;}
.x1a_c01096{left:205.119200pt;}
.x1b_c01096{left:218.559067pt;}
.xf_c01096{left:220.158667pt;}
.x18_c01096{left:222.719200pt;}
.x23_c01096{left:223.678667pt;}
.x13_c01096{left:236.799333pt;}
.x7_c01096{left:237.758787pt;}
.x19_c01096{left:239.359867pt;}
.x14_c01096{left:250.239200pt;}
.x8_c01096{left:251.198667pt;}
.x24_c01096{left:255.999067pt;}
.x1e_c01096{left:265.278787pt;}
.x1c_c01096{left:270.719200pt;}
.x10_c01096{left:277.119200pt;}
.x1f_c01096{left:278.718787pt;}
.x1d_c01096{left:284.480000pt;}
.x4_c01096{left:301.759320pt;}
.x11_c01096{left:317.438920pt;}
.x16_c01096{left:324.479067pt;}
.x25_c01096{left:332.799320pt;}
.x5_c01096{left:336.000000pt;}
.x12_c01096{left:346.239173pt;}
.x17_c01096{left:352.319867pt;}
.x9_c01096{left:355.199707pt;}
.x15_c01096{left:360.000000pt;}
.xa_c01096{left:367.038533pt;}
.x6_c01096{left:379.839840pt;}
.x20_c01096{left:385.278813pt;}
.x21_c01096{left:411.199173pt;}
.xb_c01096{left:529.278773pt;}
.xc_c01096{left:565.759320pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_d01bf7600e7fdd4cc5747430.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_eb0509f770b31a2223dc2248.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01097;src:url('chunks/assets/font_c1fa490fa5d89f80c255ae90.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01097;src:url('chunks/assets/font_7b23cd897c7ed854a389ca5d.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.364746;font-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_c01097{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.ma_c01097{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.m10_c01097{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m14_c01097{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c01097{transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);}
.md_c01097{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m12_c01097{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c01097{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m11_c01097{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.me_c01097{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m3_c01097{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m9_c01097{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m6_c01097{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m1_c01097{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01097{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m5_c01097{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m4_c01097{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m2_c01097{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.mf_c01097{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.m7_c01097{transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285047,0.000000,0.000000,0.250000,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.ls1a_c01097{letter-spacing:-10.761900px;}
.ls12_c01097{letter-spacing:-8.554650px;}
.ls5_c01097{letter-spacing:-8.252895px;}
.lsd_c01097{letter-spacing:-6.749550px;}
.ls1d_c01097{letter-spacing:-5.946525px;}
.ls11_c01097{letter-spacing:-5.444550px;}
.ls1b_c01097{letter-spacing:-5.304525px;}
.ls1c_c01097{letter-spacing:-5.246205px;}
.ls14_c01097{letter-spacing:-4.862348px;}
.ls18_c01097{letter-spacing:-4.498905px;}
.ls19_c01097{letter-spacing:-4.168433px;}
.lsc_c01097{letter-spacing:-3.752400px;}
.ls7_c01097{letter-spacing:-3.555900px;}
.lsa_c01097{letter-spacing:-3.242903px;}
.ls8_c01097{letter-spacing:-2.997150px;}
.lsb_c01097{letter-spacing:-2.431575px;}
.ls15_c01097{letter-spacing:-2.337300px;}
.ls6_c01097{letter-spacing:-2.267160px;}
.ls13_c01097{letter-spacing:-2.250645px;}
.ls10_c01097{letter-spacing:-1.621050px;}
.ls17_c01097{letter-spacing:-1.503345px;}
.lse_c01097{letter-spacing:-1.473413px;}
.ls9_c01097{letter-spacing:-0.810525px;}
.ls16_c01097{letter-spacing:-0.749700px;}
.ls4_c01097{letter-spacing:-0.747300px;}
.lsf_c01097{letter-spacing:0.000000px;}
.ls3_c01097{letter-spacing:0.747300px;}
.ls0_c01097{letter-spacing:0.810525px;}
.ls1_c01097{letter-spacing:1.503345px;}
.ls2_c01097{letter-spacing:2.250645px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:0.000000px;}
._9_c01097{margin-left:-14.324326px;}
._1_c01097{margin-left:-12.921174px;}
._e_c01097{margin-left:-10.998225px;}
._13_c01097{margin-left:-9.646335px;}
._14_c01097{margin-left:-2.619224px;}
._15_c01097{width:1.392180px;}
._6_c01097{width:2.616701px;}
._0_c01097{width:3.956640px;}
._d_c01097{width:5.017020px;}
._5_c01097{width:6.412186px;}
._7_c01097{width:8.458966px;}
._8_c01097{width:10.140439px;}
._3_c01097{width:12.136078px;}
._4_c01097{width:13.490268px;}
._b_c01097{width:14.945699px;}
._2_c01097{width:16.211311px;}
._10_c01097{width:17.609760px;}
._f_c01097{width:19.596240px;}
._16_c01097{width:22.600924px;}
._12_c01097{width:24.117800px;}
._a_c01097{width:31.463160px;}
._c_c01097{width:36.158610px;}
._11_c01097{width:49.487999px;}
.fc0_c01097{color:transparent;}
.fs7_c01097{font-size:76.500000px;}
.fsa_c01097{font-size:78.000000px;}
.fs4_c01097{font-size:78.750000px;}
.fs0_c01097{font-size:79.500000px;}
.fs3_c01097{font-size:80.250000px;}
.fs2_c01097{font-size:81.000000px;}
.fs8_c01097{font-size:81.750000px;}
.fs6_c01097{font-size:82.500000px;}
.fs5_c01097{font-size:83.250000px;}
.fs1_c01097{font-size:84.000000px;}
.fs9_c01097{font-size:87.000000px;}
.y0_c01097{bottom:0.000000px;}
.y22_c01097{bottom:183.958950px;}
.y21_c01097{bottom:214.200435px;}
.y20_c01097{bottom:214.200480px;}
.y1f_c01097{bottom:244.440285px;}
.y1e_c01097{bottom:244.440900px;}
.y1d_c01097{bottom:303.479685px;}
.y1c_c01097{bottom:333.360345px;}
.y1b_c01097{bottom:363.600150px;}
.y1a_c01097{bottom:363.600930px;}
.y19_c01097{bottom:392.759580px;}
.y18_c01097{bottom:452.879520px;}
.y17_c01097{bottom:482.760135px;}
.y15_c01097{bottom:512.999295px;}
.y16_c01097{bottom:513.000000px;}
.y14_c01097{bottom:572.759535px;}
.y12_c01097{bottom:602.277765px;}
.y13_c01097{bottom:602.279250px;}
.y11_c01097{bottom:631.798215px;}
.y10_c01097{bottom:691.560285px;}
.yf_c01097{bottom:721.439205px;}
.ye_c01097{bottom:752.040030px;}
.yd_c01097{bottom:811.440315px;}
.yc_c01097{bottom:840.960885px;}
.yb_c01097{bottom:870.838905px;}
.ya_c01097{bottom:901.080420px;}
.y9_c01097{bottom:901.080735px;}
.y8_c01097{bottom:960.479190px;}
.y7_c01097{bottom:990.359805px;}
.y5_c01097{bottom:1020.239760px;}
.y6_c01097{bottom:1020.240420px;}
.y3_c01097{bottom:1079.999820px;}
.y4_c01097{bottom:1080.000000px;}
.y2_c01097{bottom:1109.878965px;}
.y1_c01097{bottom:1139.400240px;}
.he_c01097{height:75.080566px;}
.h10_c01097{height:76.514648px;}
.h11_c01097{height:76.552734px;}
.h6_c01097{height:77.288818px;}
.h1_c01097{height:78.024902px;}
.h4_c01097{height:78.721802px;}
.h8_c01097{height:78.760986px;}
.h3_c01097{height:79.497070px;}
.ha_c01097{height:80.121094px;}
.hc_c01097{height:80.193237px;}
.h5_c01097{height:80.876953px;}
.hb_c01097{height:80.928955px;}
.hf_c01097{height:80.969238px;}
.h7_c01097{height:81.664673px;}
.h2_c01097{height:82.441406px;}
.h9_c01097{height:83.015625px;}
.hd_c01097{height:85.980469px;}
.h0_c01097{height:1263.000000px;}
.w0_c01097{width:892.500000px;}
.x0_c01097{left:0.000000px;}
.x20_c01097{left:129.238785px;}
.x14_c01097{left:130.319850px;}
.x9_c01097{left:131.758500px;}
.xc_c01097{left:132.839565px;}
.x1_c01097{left:134.279850px;}
.x15_c01097{left:171.358665px;}
.x5_c01097{left:181.080000px;}
.x1d_c01097{left:217.438635px;}
.x21_c01097{left:222.838950px;}
.x6_c01097{left:228.959400px;}
.xd_c01097{left:237.238785px;}
.x2_c01097{left:246.239850px;}
.x7_c01097{left:252.719535px;}
.xe_c01097{left:260.998950px;}
.x1a_c01097{left:265.319850px;}
.x3_c01097{left:266.399250px;}
.x22_c01097{left:269.639100px;}
.xa_c01097{left:278.638500px;}
.x1b_c01097{left:280.439685px;}
.x8_c01097{left:287.639700px;}
.xf_c01097{left:297.718500px;}
.x4_c01097{left:300.239850px;}
.xb_c01097{left:302.398635px;}
.x10_c01097{left:313.199385px;}
.x24_c01097{left:349.559685px;}
.x18_c01097{left:372.238785px;}
.x23_c01097{left:380.878950px;}
.x19_c01097{left:387.358665px;}
.x1c_c01097{left:402.478635px;}
.x25_c01097{left:405.718500px;}
.x26_c01097{left:496.798920px;}
.x16_c01097{left:507.238770px;}
.x27_c01097{left:511.918950px;}
.x17_c01097{left:550.078770px;}
.x11_c01097{left:571.678530px;}
.x12_c01097{left:610.558635px;}
.x13_c01097{left:626.398635px;}
.x1e_c01097{left:646.918950px;}
.x1f_c01097{left:662.399820px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls1a_c01097{letter-spacing:-9.566133pt;}
.ls12_c01097{letter-spacing:-7.604133pt;}
.ls5_c01097{letter-spacing:-7.335907pt;}
.lsd_c01097{letter-spacing:-5.999600pt;}
.ls1d_c01097{letter-spacing:-5.285800pt;}
.ls11_c01097{letter-spacing:-4.839600pt;}
.ls1b_c01097{letter-spacing:-4.715133pt;}
.ls1c_c01097{letter-spacing:-4.663293pt;}
.ls14_c01097{letter-spacing:-4.322087pt;}
.ls18_c01097{letter-spacing:-3.999027pt;}
.ls19_c01097{letter-spacing:-3.705273pt;}
.lsc_c01097{letter-spacing:-3.335467pt;}
.ls7_c01097{letter-spacing:-3.160800pt;}
.lsa_c01097{letter-spacing:-2.882580pt;}
.ls8_c01097{letter-spacing:-2.664133pt;}
.lsb_c01097{letter-spacing:-2.161400pt;}
.ls15_c01097{letter-spacing:-2.077600pt;}
.ls6_c01097{letter-spacing:-2.015253pt;}
.ls13_c01097{letter-spacing:-2.000573pt;}
.ls10_c01097{letter-spacing:-1.440933pt;}
.ls17_c01097{letter-spacing:-1.336307pt;}
.lse_c01097{letter-spacing:-1.309700pt;}
.ls9_c01097{letter-spacing:-0.720467pt;}
.ls16_c01097{letter-spacing:-0.666400pt;}
.ls4_c01097{letter-spacing:-0.664267pt;}
.lsf_c01097{letter-spacing:0.000000pt;}
.ls3_c01097{letter-spacing:0.664267pt;}
.ls0_c01097{letter-spacing:0.720467pt;}
.ls1_c01097{letter-spacing:1.336307pt;}
.ls2_c01097{letter-spacing:2.000573pt;}
.ws0_c01097{word-spacing:0.000000pt;}
._9_c01097{margin-left:-12.732734pt;}
._1_c01097{margin-left:-11.485488pt;}
._e_c01097{margin-left:-9.776200pt;}
._13_c01097{margin-left:-8.574520pt;}
._14_c01097{margin-left:-2.328199pt;}
._15_c01097{width:1.237493pt;}
._6_c01097{width:2.325957pt;}
._0_c01097{width:3.517013pt;}
._d_c01097{width:4.459573pt;}
._5_c01097{width:5.699721pt;}
._7_c01097{width:7.519081pt;}
._8_c01097{width:9.013723pt;}
._3_c01097{width:10.787625pt;}
._4_c01097{width:11.991349pt;}
._b_c01097{width:13.285066pt;}
._2_c01097{width:14.410054pt;}
._10_c01097{width:15.653120pt;}
._f_c01097{width:17.418880pt;}
._16_c01097{width:20.089710pt;}
._12_c01097{width:21.438044pt;}
._a_c01097{width:27.967253pt;}
._c_c01097{width:32.140987pt;}
._11_c01097{width:43.989332pt;}
.fs7_c01097{font-size:68.000000pt;}
.fsa_c01097{font-size:69.333333pt;}
.fs4_c01097{font-size:70.000000pt;}
.fs0_c01097{font-size:70.666667pt;}
.fs3_c01097{font-size:71.333333pt;}
.fs2_c01097{font-size:72.000000pt;}
.fs8_c01097{font-size:72.666667pt;}
.fs6_c01097{font-size:73.333333pt;}
.fs5_c01097{font-size:74.000000pt;}
.fs1_c01097{font-size:74.666667pt;}
.fs9_c01097{font-size:77.333333pt;}
.y0_c01097{bottom:0.000000pt;}
.y22_c01097{bottom:163.519067pt;}
.y21_c01097{bottom:190.400387pt;}
.y20_c01097{bottom:190.400427pt;}
.y1f_c01097{bottom:217.280253pt;}
.y1e_c01097{bottom:217.280800pt;}
.y1d_c01097{bottom:269.759720pt;}
.y1c_c01097{bottom:296.320307pt;}
.y1b_c01097{bottom:323.200133pt;}
.y1a_c01097{bottom:323.200827pt;}
.y19_c01097{bottom:349.119627pt;}
.y18_c01097{bottom:402.559573pt;}
.y17_c01097{bottom:429.120120pt;}
.y15_c01097{bottom:455.999373pt;}
.y16_c01097{bottom:456.000000pt;}
.y14_c01097{bottom:509.119587pt;}
.y12_c01097{bottom:535.358013pt;}
.y13_c01097{bottom:535.359333pt;}
.y11_c01097{bottom:561.598413pt;}
.y10_c01097{bottom:614.720253pt;}
.yf_c01097{bottom:641.279293pt;}
.ye_c01097{bottom:668.480027pt;}
.yd_c01097{bottom:721.280280pt;}
.yc_c01097{bottom:747.520787pt;}
.yb_c01097{bottom:774.079027pt;}
.ya_c01097{bottom:800.960373pt;}
.y9_c01097{bottom:800.960653pt;}
.y8_c01097{bottom:853.759280pt;}
.y7_c01097{bottom:880.319827pt;}
.y5_c01097{bottom:906.879787pt;}
.y6_c01097{bottom:906.880373pt;}
.y3_c01097{bottom:959.999840pt;}
.y4_c01097{bottom:960.000000pt;}
.y2_c01097{bottom:986.559080pt;}
.y1_c01097{bottom:1012.800213pt;}
.he_c01097{height:66.738281pt;}
.h10_c01097{height:68.013021pt;}
.h11_c01097{height:68.046875pt;}
.h6_c01097{height:68.701172pt;}
.h1_c01097{height:69.355469pt;}
.h4_c01097{height:69.974935pt;}
.h8_c01097{height:70.009766pt;}
.h3_c01097{height:70.664062pt;}
.ha_c01097{height:71.218750pt;}
.hc_c01097{height:71.282878pt;}
.h5_c01097{height:71.890625pt;}
.hb_c01097{height:71.936849pt;}
.hf_c01097{height:71.972656pt;}
.h7_c01097{height:72.590820pt;}
.h2_c01097{height:73.281250pt;}
.h9_c01097{height:73.791667pt;}
.hd_c01097{height:76.427083pt;}
.h0_c01097{height:1122.666667pt;}
.w0_c01097{width:793.333333pt;}
.x0_c01097{left:0.000000pt;}
.x20_c01097{left:114.878920pt;}
.x14_c01097{left:115.839867pt;}
.x9_c01097{left:117.118667pt;}
.xc_c01097{left:118.079613pt;}
.x1_c01097{left:119.359867pt;}
.x15_c01097{left:152.318813pt;}
.x5_c01097{left:160.960000pt;}
.x1d_c01097{left:193.278787pt;}
.x21_c01097{left:198.079067pt;}
.x6_c01097{left:203.519467pt;}
.xd_c01097{left:210.878920pt;}
.x2_c01097{left:218.879867pt;}
.x7_c01097{left:224.639587pt;}
.xe_c01097{left:231.999067pt;}
.x1a_c01097{left:235.839867pt;}
.x3_c01097{left:236.799333pt;}
.x22_c01097{left:239.679200pt;}
.xa_c01097{left:247.678667pt;}
.x1b_c01097{left:249.279720pt;}
.x8_c01097{left:255.679733pt;}
.xf_c01097{left:264.638667pt;}
.x4_c01097{left:266.879867pt;}
.xb_c01097{left:268.798787pt;}
.x10_c01097{left:278.399453pt;}
.x24_c01097{left:310.719720pt;}
.x18_c01097{left:330.878920pt;}
.x23_c01097{left:338.559067pt;}
.x19_c01097{left:344.318813pt;}
.x1c_c01097{left:357.758787pt;}
.x25_c01097{left:360.638667pt;}
.x26_c01097{left:441.599040pt;}
.x16_c01097{left:450.878907pt;}
.x27_c01097{left:455.039067pt;}
.x17_c01097{left:488.958907pt;}
.x11_c01097{left:508.158693pt;}
.x12_c01097{left:542.718787pt;}
.x13_c01097{left:556.798787pt;}
.x1e_c01097{left:575.039067pt;}
.x1f_c01097{left:588.799840pt;}
}





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

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_39f0c07026a27a67a3615693.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_b943ecd1b9ea536e3b5c0461.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01098;src:url('chunks/assets/font_ecd83622beb3c05b097768d5.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01098;src:url('chunks/assets/font_bebc9d5dc90db1305250d18e.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01098;src:url('chunks/assets/font_86fed6eca4a84ef3ad5966d2.woff2')format("woff");}.ff5_c01098{font-family:ff5_c01098;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01098;src:url('chunks/assets/font_be6f408e453ba956d69c2781.woff2')format("woff");}.ff6_c01098{font-family:ff6_c01098;line-height:1.432129;font-style:normal;font-weight: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_c01098;src:url('chunks/assets/font_0e6b60893f25f1a82e865678.woff2')format("woff");}.ff7_c01098{font-family:ff7_c01098;line-height:1.432129;font-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_c01098{transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);}
.m7_c01098{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m11_c01098{transform:matrix(0.194954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194954,0.000000,0.000000,0.250000,0,0);}
.m5_c01098{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c01098{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.mb_c01098{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1_c01098{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m16_c01098{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m6_c01098{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m2_c01098{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m9_c01098{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1b_c01098{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m3_c01098{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m12_c01098{transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240099,0.000000,0.000000,0.250000,0,0);}
.m0_c01098{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.me_c01098{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m1c_c01098{transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243304,0.000000,0.000000,0.250000,0,0);}
.ma_c01098{transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);}
.m14_c01098{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.md_c01098{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m1d_c01098{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m8_c01098{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m1a_c01098{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m4_c01098{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m18_c01098{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m10_c01098{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m15_c01098{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m17_c01098{transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305825,0.000000,0.000000,0.250000,0,0);}
.m19_c01098{transform:matrix(0.313084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313084,0.000000,0.000000,0.250000,0,0);}
.m13_c01098{transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls21_c01098{letter-spacing:-15.414000px;}
.ls1d_c01098{letter-spacing:-8.582475px;}
.lse_c01098{letter-spacing:-5.196713px;}
.ls6_c01098{letter-spacing:-4.456463px;}
.ls1a_c01098{letter-spacing:-4.053428px;}
.lsc_c01098{letter-spacing:-3.715575px;}
.ls17_c01098{letter-spacing:-3.242903px;}
.lsb_c01098{letter-spacing:-3.113700px;}
.ls1e_c01098{letter-spacing:-2.992523px;}
.ls4_c01098{letter-spacing:-2.968875px;}
.ls16_c01098{letter-spacing:-2.884958px;}
.ls1c_c01098{letter-spacing:-2.431575px;}
.ls2_c01098{letter-spacing:-2.425500px;}
.ls18_c01098{letter-spacing:-2.340675px;}
.ls0_c01098{letter-spacing:-2.335275px;}
.ls5_c01098{letter-spacing:-2.229413px;}
.ls15_c01098{letter-spacing:-2.105850px;}
.ls7_c01098{letter-spacing:-1.621050px;}
.ls11_c01098{letter-spacing:-1.588410px;}
.ls1f_c01098{letter-spacing:-1.556048px;}
.ls13_c01098{letter-spacing:-1.553250px;}
.lsd_c01098{letter-spacing:-1.535100px;}
.lsa_c01098{letter-spacing:-1.489163px;}
.ls8_c01098{letter-spacing:-0.810525px;}
.ls19_c01098{letter-spacing:-0.769500px;}
.ls10_c01098{letter-spacing:-0.764775px;}
.ls22_c01098{letter-spacing:-0.756000px;}
.ls14_c01098{letter-spacing:-0.740250px;}
.ls1_c01098{letter-spacing:0.000000px;}
.ls3_c01098{letter-spacing:0.793800px;}
.ls12_c01098{letter-spacing:1.556048px;}
.ls20_c01098{letter-spacing:2.408963px;}
.ls1b_c01098{letter-spacing:3.274200px;}
.lsf_c01098{letter-spacing:4.117425px;}
.ls9_c01098{letter-spacing:6.889838px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01098{word-spacing:0.000000px;}
._b_c01098{margin-left:-17.314597px;}
._a_c01098{margin-left:-3.202526px;}
._5_c01098{margin-left:-1.704581px;}
._0_c01098{width:2.793245px;}
._2_c01098{width:3.938704px;}
._3_c01098{width:5.122985px;}
._4_c01098{width:6.851621px;}
._8_c01098{width:8.702053px;}
._1_c01098{width:10.497137px;}
._c_c01098{width:12.294381px;}
._d_c01098{width:14.277231px;}
._9_c01098{width:15.982684px;}
._e_c01098{width:18.759745px;}
._6_c01098{width:20.944112px;}
._7_c01098{width:55.600799px;}
.fc0_c01098{color:transparent;}
.fsb_c01098{font-size:71.250000px;}
.fsa_c01098{font-size:74.250000px;}
.fs9_c01098{font-size:75.750000px;}
.fs5_c01098{font-size:77.250000px;}
.fs8_c01098{font-size:78.000000px;}
.fs4_c01098{font-size:78.750000px;}
.fs1_c01098{font-size:79.500000px;}
.fs0_c01098{font-size:80.250000px;}
.fs3_c01098{font-size:81.000000px;}
.fs7_c01098{font-size:81.750000px;}
.fs2_c01098{font-size:82.500000px;}
.fsd_c01098{font-size:84.000000px;}
.fs6_c01098{font-size:89.250000px;}
.fsc_c01098{font-size:96.000000px;}
.y0_c01098{bottom:0.000000px;}
.y1d_c01098{bottom:213.119385px;}
.y1c_c01098{bottom:242.279850px;}
.y1b_c01098{bottom:272.158785px;}
.y1a_c01098{bottom:331.920000px;}
.y19_c01098{bottom:361.439685px;}
.y18_c01098{bottom:391.320285px;}
.y17_c01098{bottom:451.080000px;}
.y16_c01098{bottom:480.958920px;}
.y15_c01098{bottom:511.198785px;}
.y14_c01098{bottom:570.599070px;}
.y13_c01098{bottom:599.759535px;}
.y12_c01098{bottom:629.640150px;}
.y10_c01098{bottom:689.759040px;}
.y11_c01098{bottom:689.759085px;}
.yf_c01098{bottom:719.998950px;}
.ye_c01098{bottom:779.760090px;}
.yd_c01098{bottom:810.000000px;}
.yb_c01098{bottom:839.878905px;}
.yc_c01098{bottom:839.878965px;}
.ya_c01098{bottom:869.400240px;}
.y9_c01098{bottom:929.159820px;}
.y8_c01098{bottom:959.038515px;}
.y6_c01098{bottom:988.919445px;}
.y7_c01098{bottom:988.919490px;}
.y5_c01098{bottom:1019.159370px;}
.y4_c01098{bottom:1078.559685px;}
.y2_c01098{bottom:1108.440165px;}
.y3_c01098{bottom:1108.440315px;}
.y1_c01098{bottom:1138.680090px;}
.h12_c01098{height:74.307495px;}
.h14_c01098{height:74.311523px;}
.h10_c01098{height:74.344482px;}
.hc_c01098{height:75.778931px;}
.h16_c01098{height:75.816650px;}
.hf_c01098{height:76.552734px;}
.h5_c01098{height:77.288818px;}
.h13_c01098{height:77.440430px;}
.h8_c01098{height:77.827148px;}
.h9_c01098{height:77.853516px;}
.h18_c01098{height:78.024902px;}
.h17_c01098{height:78.609375px;}
.h7_c01098{height:78.721802px;}
.hb_c01098{height:78.760986px;}
.h19_c01098{height:79.365234px;}
.hd_c01098{height:79.497070px;}
.h2_c01098{height:80.121094px;}
.he_c01098{height:80.233154px;}
.h11_c01098{height:80.791992px;}
.h1_c01098{height:80.876953px;}
.h6_c01098{height:80.969238px;}
.h4_c01098{height:81.632812px;}
.h1a_c01098{height:83.015625px;}
.h3_c01098{height:83.144531px;}
.ha_c01098{height:88.204102px;}
.h15_c01098{height:100.125000px;}
.h0_c01098{height:1263.000000px;}
.w0_c01098{width:892.500000px;}
.x0_c01098{left:0.000000px;}
.x8_c01098{left:134.279850px;}
.x1_c01098{left:135.359250px;}
.x17_c01098{left:136.800060px;}
.x2d_c01098{left:137.878950px;}
.x1c_c01098{left:159.839565px;}
.x6_c01098{left:205.919535px;}
.x28_c01098{left:213.478635px;}
.x7_c01098{left:220.678500px;}
.x2b_c01098{left:224.279250px;}
.x2e_c01098{left:226.439685px;}
.xb_c01098{left:243.359250px;}
.x29_c01098{left:247.319250px;}
.x2a_c01098{left:253.798950px;}
.x2c_c01098{left:255.598500px;}
.x10_c01098{left:258.120000px;}
.x25_c01098{left:266.040000px;}
.xc_c01098{left:267.478635px;}
.x2_c01098{left:270.000000px;}
.xd_c01098{left:282.598500px;}
.x3_c01098{left:284.759100px;}
.x1d_c01098{left:294.478635px;}
.x16_c01098{left:301.319250px;}
.x9_c01098{left:304.918350px;}
.x13_c01098{left:308.519100px;}
.x1e_c01098{left:318.238785px;}
.x26_c01098{left:320.040000px;}
.xa_c01098{left:330.479685px;}
.x31_c01098{left:340.199385px;}
.x27_c01098{left:341.998950px;}
.x4_c01098{left:353.519685px;}
.x1f_c01098{left:367.199385px;}
.x14_c01098{left:371.518635px;}
.x18_c01098{left:374.399235px;}
.x32_c01098{left:381.958350px;}
.x2f_c01098{left:391.679670px;}
.xe_c01098{left:401.039985px;}
.x15_c01098{left:403.918950px;}
.x33_c01098{left:405.000000px;}
.x20_c01098{left:407.158770px;}
.x5_c01098{left:409.678530px;}
.x30_c01098{left:419.038920px;}
.x21_c01098{left:431.639100px;}
.x19_c01098{left:434.519670px;}
.x22_c01098{left:504.359850px;}
.xf_c01098{left:511.559685px;}
.x1a_c01098{left:512.639100px;}
.x1b_c01098{left:527.399820px;}
.x11_c01098{left:578.159820px;}
.x23_c01098{left:593.639100px;}
.x12_c01098{left:604.078770px;}
.x24_c01098{left:634.318770px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls21_c01098{letter-spacing:-13.701333pt;}
.ls1d_c01098{letter-spacing:-7.628867pt;}
.lse_c01098{letter-spacing:-4.619300pt;}
.ls6_c01098{letter-spacing:-3.961300pt;}
.ls1a_c01098{letter-spacing:-3.603047pt;}
.lsc_c01098{letter-spacing:-3.302733pt;}
.ls17_c01098{letter-spacing:-2.882580pt;}
.lsb_c01098{letter-spacing:-2.767733pt;}
.ls1e_c01098{letter-spacing:-2.660020pt;}
.ls4_c01098{letter-spacing:-2.639000pt;}
.ls16_c01098{letter-spacing:-2.564407pt;}
.ls1c_c01098{letter-spacing:-2.161400pt;}
.ls2_c01098{letter-spacing:-2.156000pt;}
.ls18_c01098{letter-spacing:-2.080600pt;}
.ls0_c01098{letter-spacing:-2.075800pt;}
.ls5_c01098{letter-spacing:-1.981700pt;}
.ls15_c01098{letter-spacing:-1.871867pt;}
.ls7_c01098{letter-spacing:-1.440933pt;}
.ls11_c01098{letter-spacing:-1.411920pt;}
.ls1f_c01098{letter-spacing:-1.383153pt;}
.ls13_c01098{letter-spacing:-1.380667pt;}
.lsd_c01098{letter-spacing:-1.364533pt;}
.lsa_c01098{letter-spacing:-1.323700pt;}
.ls8_c01098{letter-spacing:-0.720467pt;}
.ls19_c01098{letter-spacing:-0.684000pt;}
.ls10_c01098{letter-spacing:-0.679800pt;}
.ls22_c01098{letter-spacing:-0.672000pt;}
.ls14_c01098{letter-spacing:-0.658000pt;}
.ls1_c01098{letter-spacing:0.000000pt;}
.ls3_c01098{letter-spacing:0.705600pt;}
.ls12_c01098{letter-spacing:1.383153pt;}
.ls20_c01098{letter-spacing:2.141300pt;}
.ls1b_c01098{letter-spacing:2.910400pt;}
.lsf_c01098{letter-spacing:3.659933pt;}
.ls9_c01098{letter-spacing:6.124300pt;}
.ws0_c01098{word-spacing:0.000000pt;}
._b_c01098{margin-left:-15.390753pt;}
._a_c01098{margin-left:-2.846690pt;}
._5_c01098{margin-left:-1.515183pt;}
._0_c01098{width:2.482885pt;}
._2_c01098{width:3.501070pt;}
._3_c01098{width:4.553764pt;}
._4_c01098{width:6.090330pt;}
._8_c01098{width:7.735158pt;}
._1_c01098{width:9.330789pt;}
._c_c01098{width:10.928339pt;}
._d_c01098{width:12.690872pt;}
._9_c01098{width:14.206830pt;}
._e_c01098{width:16.675329pt;}
._6_c01098{width:18.616989pt;}
._7_c01098{width:49.422932pt;}
.fsb_c01098{font-size:63.333333pt;}
.fsa_c01098{font-size:66.000000pt;}
.fs9_c01098{font-size:67.333333pt;}
.fs5_c01098{font-size:68.666667pt;}
.fs8_c01098{font-size:69.333333pt;}
.fs4_c01098{font-size:70.000000pt;}
.fs1_c01098{font-size:70.666667pt;}
.fs0_c01098{font-size:71.333333pt;}
.fs3_c01098{font-size:72.000000pt;}
.fs7_c01098{font-size:72.666667pt;}
.fs2_c01098{font-size:73.333333pt;}
.fsd_c01098{font-size:74.666667pt;}
.fs6_c01098{font-size:79.333333pt;}
.fsc_c01098{font-size:85.333333pt;}
.y0_c01098{bottom:0.000000pt;}
.y1d_c01098{bottom:189.439453pt;}
.y1c_c01098{bottom:215.359867pt;}
.y1b_c01098{bottom:241.918920pt;}
.y1a_c01098{bottom:295.040000pt;}
.y19_c01098{bottom:321.279720pt;}
.y18_c01098{bottom:347.840253pt;}
.y17_c01098{bottom:400.960000pt;}
.y16_c01098{bottom:427.519040pt;}
.y15_c01098{bottom:454.398920pt;}
.y14_c01098{bottom:507.199173pt;}
.y13_c01098{bottom:533.119587pt;}
.y12_c01098{bottom:559.680133pt;}
.y10_c01098{bottom:613.119147pt;}
.y11_c01098{bottom:613.119187pt;}
.yf_c01098{bottom:639.999067pt;}
.ye_c01098{bottom:693.120080pt;}
.yd_c01098{bottom:720.000000pt;}
.yb_c01098{bottom:746.559027pt;}
.yc_c01098{bottom:746.559080pt;}
.ya_c01098{bottom:772.800213pt;}
.y9_c01098{bottom:825.919840pt;}
.y8_c01098{bottom:852.478680pt;}
.y6_c01098{bottom:879.039507pt;}
.y7_c01098{bottom:879.039547pt;}
.y5_c01098{bottom:905.919440pt;}
.y4_c01098{bottom:958.719720pt;}
.y2_c01098{bottom:985.280147pt;}
.y3_c01098{bottom:985.280280pt;}
.y1_c01098{bottom:1012.160080pt;}
.h12_c01098{height:66.051107pt;}
.h14_c01098{height:66.054688pt;}
.h10_c01098{height:66.083984pt;}
.hc_c01098{height:67.359049pt;}
.h16_c01098{height:67.392578pt;}
.hf_c01098{height:68.046875pt;}
.h5_c01098{height:68.701172pt;}
.h13_c01098{height:68.835938pt;}
.h8_c01098{height:69.179688pt;}
.h9_c01098{height:69.203125pt;}
.h18_c01098{height:69.355469pt;}
.h17_c01098{height:69.875000pt;}
.h7_c01098{height:69.974935pt;}
.hb_c01098{height:70.009766pt;}
.h19_c01098{height:70.546875pt;}
.hd_c01098{height:70.664062pt;}
.h2_c01098{height:71.218750pt;}
.he_c01098{height:71.318359pt;}
.h11_c01098{height:71.815104pt;}
.h1_c01098{height:71.890625pt;}
.h6_c01098{height:71.972656pt;}
.h4_c01098{height:72.562500pt;}
.h1a_c01098{height:73.791667pt;}
.h3_c01098{height:73.906250pt;}
.ha_c01098{height:78.403646pt;}
.h15_c01098{height:89.000000pt;}
.h0_c01098{height:1122.666667pt;}
.w0_c01098{width:793.333333pt;}
.x0_c01098{left:0.000000pt;}
.x8_c01098{left:119.359867pt;}
.x1_c01098{left:120.319333pt;}
.x17_c01098{left:121.600053pt;}
.x2d_c01098{left:122.559067pt;}
.x1c_c01098{left:142.079613pt;}
.x6_c01098{left:183.039587pt;}
.x28_c01098{left:189.758787pt;}
.x7_c01098{left:196.158667pt;}
.x2b_c01098{left:199.359333pt;}
.x2e_c01098{left:201.279720pt;}
.xb_c01098{left:216.319333pt;}
.x29_c01098{left:219.839333pt;}
.x2a_c01098{left:225.599067pt;}
.x2c_c01098{left:227.198667pt;}
.x10_c01098{left:229.440000pt;}
.x25_c01098{left:236.480000pt;}
.xc_c01098{left:237.758787pt;}
.x2_c01098{left:240.000000pt;}
.xd_c01098{left:251.198667pt;}
.x3_c01098{left:253.119200pt;}
.x1d_c01098{left:261.758787pt;}
.x16_c01098{left:267.839333pt;}
.x9_c01098{left:271.038533pt;}
.x13_c01098{left:274.239200pt;}
.x1e_c01098{left:282.878920pt;}
.x26_c01098{left:284.480000pt;}
.xa_c01098{left:293.759720pt;}
.x31_c01098{left:302.399453pt;}
.x27_c01098{left:303.999067pt;}
.x4_c01098{left:314.239720pt;}
.x1f_c01098{left:326.399453pt;}
.x14_c01098{left:330.238787pt;}
.x18_c01098{left:332.799320pt;}
.x32_c01098{left:339.518533pt;}
.x2f_c01098{left:348.159707pt;}
.xe_c01098{left:356.479987pt;}
.x15_c01098{left:359.039067pt;}
.x33_c01098{left:360.000000pt;}
.x20_c01098{left:361.918907pt;}
.x5_c01098{left:364.158693pt;}
.x30_c01098{left:372.479040pt;}
.x21_c01098{left:383.679200pt;}
.x19_c01098{left:386.239707pt;}
.x22_c01098{left:448.319867pt;}
.xf_c01098{left:454.719720pt;}
.x1a_c01098{left:455.679200pt;}
.x1b_c01098{left:468.799840pt;}
.x11_c01098{left:513.919840pt;}
.x23_c01098{left:527.679200pt;}
.x12_c01098{left:536.958907pt;}
.x24_c01098{left:563.838907pt;}
}





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

.ir_c01099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_2730f90bc7a8c572c87522a7.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01099;src:url('chunks/assets/font_65d0d1781c6696aa7a42abc3.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01099;src:url('chunks/assets/font_f443d0c0ac6f9e4046aa989f.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01099;src:url('chunks/assets/font_da82e5071be60e0138301502.woff2')format("woff");}.ff4_c01099{font-family:ff4_c01099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01099;src:url('chunks/assets/font_a1186cb9bc01c0469f4aa451.woff2')format("woff");}.ff5_c01099{font-family:ff5_c01099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01099;src:url('chunks/assets/font_501d22133973045a63629675.woff2')format("woff");}.ff6_c01099{font-family:ff6_c01099;line-height:1.311035;font-style:normal;font-weight: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_c01099;src:url('chunks/assets/font_10b25eae494363a55d07e0e8.woff2')format("woff");}.ff7_c01099{font-family:ff7_c01099;line-height:1.364746;font-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_c01099{transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179612,0.000000,0.000000,0.250000,0,0);}
.m25_c01099{transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193694,0.000000,0.000000,0.250000,0,0);}
.m1e_c01099{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m18_c01099{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m6_c01099{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);}
.m8_c01099{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m1c_c01099{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m22_c01099{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m2_c01099{transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);}
.m16_c01099{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m13_c01099{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m15_c01099{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m1b_c01099{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m17_c01099{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m7_c01099{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.ma_c01099{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m9_c01099{transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);}
.mf_c01099{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m5_c01099{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m0_c01099{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1d_c01099{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m3_c01099{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m1_c01099{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.me_c01099{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m24_c01099{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m11_c01099{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m20_c01099{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.md_c01099{transform:matrix(0.263043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263043,0.000000,0.000000,0.250000,0,0);}
.mc_c01099{transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);}
.m19_c01099{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m10_c01099{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m1f_c01099{transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);}
.m4_c01099{transform:matrix(0.297794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297794,0.000000,0.000000,0.250000,0,0);}
.m23_c01099{transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);}
.m21_c01099{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m14_c01099{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_c01099{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.mb_c01099{transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529412,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls26_c01099{letter-spacing:-23.286855px;}
.ls28_c01099{letter-spacing:-10.319850px;}
.ls29_c01099{letter-spacing:-8.175038px;}
.ls1f_c01099{letter-spacing:-6.685875px;}
.ls17_c01099{letter-spacing:-5.945625px;}
.ls25_c01099{letter-spacing:-5.199698px;}
.ls6_c01099{letter-spacing:-5.196713px;}
.lsb_c01099{letter-spacing:-5.175000px;}
.ls19_c01099{letter-spacing:-4.456463px;}
.ls13_c01099{letter-spacing:-4.381650px;}
.ls4_c01099{letter-spacing:-4.380750px;}
.ls2b_c01099{letter-spacing:-4.371705px;}
.ls1c_c01099{letter-spacing:-4.015545px;}
.ls2c_c01099{letter-spacing:-3.870293px;}
.ls16_c01099{letter-spacing:-3.717000px;}
.ls27_c01099{letter-spacing:-3.614625px;}
.ls20_c01099{letter-spacing:-3.512250px;}
.ls21_c01099{letter-spacing:-3.242903px;}
.ls2a_c01099{letter-spacing:-3.102000px;}
.ls5_c01099{letter-spacing:-2.968875px;}
.ls18_c01099{letter-spacing:-2.913750px;}
.ls14_c01099{letter-spacing:-2.685150px;}
.ls9_c01099{letter-spacing:-2.518890px;}
.ls1d_c01099{letter-spacing:-2.431575px;}
.ls3_c01099{letter-spacing:-2.229413px;}
.ls1b_c01099{letter-spacing:-1.621050px;}
.ls1e_c01099{letter-spacing:-1.590750px;}
.lsc_c01099{letter-spacing:-1.589753px;}
.ls12_c01099{letter-spacing:-1.489163px;}
.ls23_c01099{letter-spacing:-1.042875px;}
.ls1a_c01099{letter-spacing:-0.810525px;}
.ls15_c01099{letter-spacing:-0.740250px;}
.ls10_c01099{letter-spacing:-0.706388px;}
.ls2_c01099{letter-spacing:0.000000px;}
.ls0_c01099{letter-spacing:0.740250px;}
.lsd_c01099{letter-spacing:0.781200px;}
.ls24_c01099{letter-spacing:1.591200px;}
.ls22_c01099{letter-spacing:1.621050px;}
.lsf_c01099{letter-spacing:1.770975px;}
.ls11_c01099{letter-spacing:2.139000px;}
.ls1_c01099{letter-spacing:2.229413px;}
.lse_c01099{letter-spacing:2.370975px;}
.ls7_c01099{letter-spacing:2.503793px;}
.ls8_c01099{letter-spacing:5.873175px;}
.lsa_c01099{letter-spacing:15.178875px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01099{word-spacing:0.000000px;}
._c_c01099{margin-left:-16.214774px;}
._7_c01099{margin-left:-7.355547px;}
._6_c01099{margin-left:-4.604691px;}
._4_c01099{margin-left:-3.312671px;}
._5_c01099{margin-left:-1.039322px;}
._8_c01099{width:3.079036px;}
._18_c01099{width:4.679207px;}
._a_c01099{width:5.736878px;}
._0_c01099{width:6.771074px;}
._9_c01099{width:7.969114px;}
._3_c01099{width:9.540949px;}
._e_c01099{width:11.179647px;}
._2_c01099{width:12.380065px;}
._1_c01099{width:13.618431px;}
._b_c01099{width:15.002202px;}
._11_c01099{width:17.121256px;}
._f_c01099{width:19.884880px;}
._19_c01099{width:21.204998px;}
._14_c01099{width:23.481170px;}
._16_c01099{width:27.893042px;}
._12_c01099{width:30.302525px;}
._17_c01099{width:31.816946px;}
._15_c01099{width:32.878184px;}
._13_c01099{width:36.980584px;}
._d_c01099{width:38.251282px;}
._10_c01099{width:41.486689px;}
.fc0_c01099{color:transparent;}
.fsb_c01099{font-size:12.750000px;}
.fs4_c01099{font-size:51.000000px;}
.fs5_c01099{font-size:63.750000px;}
.fs2_c01099{font-size:66.750000px;}
.fs3_c01099{font-size:67.500000px;}
.fs9_c01099{font-size:69.750000px;}
.fs13_c01099{font-size:70.500000px;}
.fs8_c01099{font-size:74.250000px;}
.fs6_c01099{font-size:75.000000px;}
.fsa_c01099{font-size:75.750000px;}
.fse_c01099{font-size:76.500000px;}
.fs11_c01099{font-size:77.250000px;}
.fs12_c01099{font-size:78.000000px;}
.fs0_c01099{font-size:78.750000px;}
.fs10_c01099{font-size:79.500000px;}
.fs7_c01099{font-size:80.250000px;}
.fsd_c01099{font-size:81.750000px;}
.fs1_c01099{font-size:82.500000px;}
.fs14_c01099{font-size:83.250000px;}
.fsc_c01099{font-size:86.250000px;}
.fsf_c01099{font-size:96.000000px;}
.y0_c01099{bottom:0.000000px;}
.y25_c01099{bottom:177.120000px;}
.y23_c01099{bottom:206.638980px;}
.y24_c01099{bottom:206.639700px;}
.y22_c01099{bottom:235.800135px;}
.y21_c01099{bottom:235.800240px;}
.y20_c01099{bottom:295.559685px;}
.y1f_c01099{bottom:325.799475px;}
.y1e_c01099{bottom:356.039385px;}
.y1d_c01099{bottom:356.040045px;}
.y1c_c01099{bottom:415.078815px;}
.y1b_c01099{bottom:444.600135px;}
.y1a_c01099{bottom:474.840225px;}
.y18_c01099{bottom:534.599625px;}
.y19_c01099{bottom:534.599670px;}
.y17_c01099{bottom:564.839535px;}
.y16_c01099{bottom:564.840435px;}
.y15_c01099{bottom:594.720150px;}
.y14_c01099{bottom:594.720240px;}
.y13_c01099{bottom:654.479685px;}
.y12_c01099{bottom:683.999400px;}
.y11_c01099{bottom:683.999535px;}
.y10_c01099{bottom:713.519070px;}
.yf_c01099{bottom:713.519295px;}
.ye_c01099{bottom:773.278755px;}
.yd_c01099{bottom:803.517810px;}
.yc_c01099{bottom:833.759835px;}
.yb_c01099{bottom:863.279370px;}
.ya_c01099{bottom:923.759490px;}
.y8_c01099{bottom:953.640060px;}
.y9_c01099{bottom:953.640105px;}
.y7_c01099{bottom:983.879970px;}
.y6_c01099{bottom:983.880255px;}
.y5_c01099{bottom:1013.399775px;}
.y4_c01099{bottom:1072.800105px;}
.y3_c01099{bottom:1074.958920px;}
.y2_c01099{bottom:1103.399415px;}
.y1_c01099{bottom:1132.918950px;}
.hc_c01099{height:13.297852px;}
.h5_c01099{height:53.191406px;}
.h3_c01099{height:65.478882px;}
.h4_c01099{height:66.214600px;}
.h6_c01099{height:66.489258px;}
.ha_c01099{height:72.747070px;}
.h17_c01099{height:73.529297px;}
.h10_c01099{height:75.080566px;}
.h15_c01099{height:75.816650px;}
.h16_c01099{height:76.552734px;}
.h1_c01099{height:77.288818px;}
.h9_c01099{height:77.440430px;}
.h13_c01099{height:77.986084px;}
.h18_c01099{height:78.024902px;}
.h7_c01099{height:78.222656px;}
.h12_c01099{height:78.721802px;}
.he_c01099{height:78.760986px;}
.hb_c01099{height:79.004883px;}
.h14_c01099{height:79.365234px;}
.hf_c01099{height:80.233154px;}
.h8_c01099{height:80.876953px;}
.h2_c01099{height:80.969238px;}
.h19_c01099{height:82.274414px;}
.hd_c01099{height:89.956055px;}
.h11_c01099{height:100.125000px;}
.h0_c01099{height:1263.000000px;}
.w0_c01099{width:892.500000px;}
.x0_c01099{left:0.000000px;}
.x22_c01099{left:134.279850px;}
.xb_c01099{left:135.718500px;}
.x1_c01099{left:136.799565px;}
.x4_c01099{left:137.878305px;}
.xc_c01099{left:187.198785px;}
.x5_c01099{left:188.639100px;}
.x33_c01099{left:192.958350px;}
.xd_c01099{left:209.159385px;}
.x35_c01099{left:210.958950px;}
.x34_c01099{left:212.399250px;}
.x15_c01099{left:213.478635px;}
.x2a_c01099{left:223.559100px;}
.x36_c01099{left:224.999400px;}
.x2c_c01099{left:232.558635px;}
.xf_c01099{left:239.758500px;}
.x2b_c01099{left:244.799535px;}
.x6_c01099{left:246.958350px;}
.x37_c01099{left:252.719535px;}
.x2d_c01099{left:257.038950px;}
.x10_c01099{left:259.919535px;}
.x7_c01099{left:271.079385px;}
.xe_c01099{left:272.878950px;}
.x23_c01099{left:275.039385px;}
.x14_c01099{left:292.319850px;}
.x11_c01099{left:293.758500px;}
.x24_c01099{left:298.799535px;}
.x1e_c01099{left:314.998950px;}
.x25_c01099{left:320.399235px;}
.x18_c01099{left:325.079385px;}
.x2_c01099{left:327.958350px;}
.x2e_c01099{left:329.039385px;}
.x1f_c01099{left:330.479685px;}
.x19_c01099{left:350.279850px;}
.x2f_c01099{left:353.158785px;}
.x8_c01099{left:358.199850px;}
.x3_c01099{left:359.999385px;}
.x38_c01099{left:363.239250px;}
.x1b_c01099{left:367.558635px;}
.x26_c01099{left:368.998950px;}
.x39_c01099{left:377.639100px;}
.x1c_c01099{left:383.039385px;}
.x9_c01099{left:386.279250px;}
.x27_c01099{left:394.919535px;}
.xa_c01099{left:417.598530px;}
.x30_c01099{left:438.479685px;}
.x16_c01099{left:445.318770px;}
.x1d_c01099{left:449.998950px;}
.x17_c01099{left:455.758530px;}
.x3a_c01099{left:462.599070px;}
.x12_c01099{left:465.118785px;}
.x28_c01099{left:475.558635px;}
.x1a_c01099{left:478.080000px;}
.x31_c01099{left:487.438665px;}
.x3b_c01099{left:495.719565px;}
.x3c_c01099{left:499.679670px;}
.x32_c01099{left:505.798515px;}
.x13_c01099{left:526.318770px;}
.x20_c01099{left:528.119985px;}
.x29_c01099{left:531.359850px;}
.x3d_c01099{left:542.878920px;}
.x21_c01099{left:547.199850px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls26_c01099{letter-spacing:-20.699427pt;}
.ls28_c01099{letter-spacing:-9.173200pt;}
.ls29_c01099{letter-spacing:-7.266700pt;}
.ls1f_c01099{letter-spacing:-5.943000pt;}
.ls17_c01099{letter-spacing:-5.285000pt;}
.ls25_c01099{letter-spacing:-4.621953pt;}
.ls6_c01099{letter-spacing:-4.619300pt;}
.lsb_c01099{letter-spacing:-4.600000pt;}
.ls19_c01099{letter-spacing:-3.961300pt;}
.ls13_c01099{letter-spacing:-3.894800pt;}
.ls4_c01099{letter-spacing:-3.894000pt;}
.ls2b_c01099{letter-spacing:-3.885960pt;}
.ls1c_c01099{letter-spacing:-3.569373pt;}
.ls2c_c01099{letter-spacing:-3.440260pt;}
.ls16_c01099{letter-spacing:-3.304000pt;}
.ls27_c01099{letter-spacing:-3.213000pt;}
.ls20_c01099{letter-spacing:-3.122000pt;}
.ls21_c01099{letter-spacing:-2.882580pt;}
.ls2a_c01099{letter-spacing:-2.757333pt;}
.ls5_c01099{letter-spacing:-2.639000pt;}
.ls18_c01099{letter-spacing:-2.590000pt;}
.ls14_c01099{letter-spacing:-2.386800pt;}
.ls9_c01099{letter-spacing:-2.239013pt;}
.ls1d_c01099{letter-spacing:-2.161400pt;}
.ls3_c01099{letter-spacing:-1.981700pt;}
.ls1b_c01099{letter-spacing:-1.440933pt;}
.ls1e_c01099{letter-spacing:-1.414000pt;}
.lsc_c01099{letter-spacing:-1.413113pt;}
.ls12_c01099{letter-spacing:-1.323700pt;}
.ls23_c01099{letter-spacing:-0.927000pt;}
.ls1a_c01099{letter-spacing:-0.720467pt;}
.ls15_c01099{letter-spacing:-0.658000pt;}
.ls10_c01099{letter-spacing:-0.627900pt;}
.ls2_c01099{letter-spacing:0.000000pt;}
.ls0_c01099{letter-spacing:0.658000pt;}
.lsd_c01099{letter-spacing:0.694400pt;}
.ls24_c01099{letter-spacing:1.414400pt;}
.ls22_c01099{letter-spacing:1.440933pt;}
.lsf_c01099{letter-spacing:1.574200pt;}
.ls11_c01099{letter-spacing:1.901333pt;}
.ls1_c01099{letter-spacing:1.981700pt;}
.lse_c01099{letter-spacing:2.107533pt;}
.ls7_c01099{letter-spacing:2.225593pt;}
.ls8_c01099{letter-spacing:5.220600pt;}
.lsa_c01099{letter-spacing:13.492333pt;}
.ws0_c01099{word-spacing:0.000000pt;}
._c_c01099{margin-left:-14.413132pt;}
._7_c01099{margin-left:-6.538264pt;}
._6_c01099{margin-left:-4.093058pt;}
._4_c01099{margin-left:-2.944596pt;}
._5_c01099{margin-left:-0.923842pt;}
._8_c01099{width:2.736921pt;}
._18_c01099{width:4.159295pt;}
._a_c01099{width:5.099447pt;}
._0_c01099{width:6.018732pt;}
._9_c01099{width:7.083657pt;}
._3_c01099{width:8.480843pt;}
._e_c01099{width:9.937464pt;}
._2_c01099{width:11.004502pt;}
._1_c01099{width:12.105272pt;}
._b_c01099{width:13.335291pt;}
._11_c01099{width:15.218895pt;}
._f_c01099{width:17.675449pt;}
._19_c01099{width:18.848887pt;}
._14_c01099{width:20.872151pt;}
._16_c01099{width:24.793815pt;}
._12_c01099{width:26.935577pt;}
._17_c01099{width:28.281730pt;}
._15_c01099{width:29.225053pt;}
._13_c01099{width:32.871630pt;}
._d_c01099{width:34.001140pt;}
._10_c01099{width:36.877057pt;}
.fsb_c01099{font-size:11.333333pt;}
.fs4_c01099{font-size:45.333333pt;}
.fs5_c01099{font-size:56.666667pt;}
.fs2_c01099{font-size:59.333333pt;}
.fs3_c01099{font-size:60.000000pt;}
.fs9_c01099{font-size:62.000000pt;}
.fs13_c01099{font-size:62.666667pt;}
.fs8_c01099{font-size:66.000000pt;}
.fs6_c01099{font-size:66.666667pt;}
.fsa_c01099{font-size:67.333333pt;}
.fse_c01099{font-size:68.000000pt;}
.fs11_c01099{font-size:68.666667pt;}
.fs12_c01099{font-size:69.333333pt;}
.fs0_c01099{font-size:70.000000pt;}
.fs10_c01099{font-size:70.666667pt;}
.fs7_c01099{font-size:71.333333pt;}
.fsd_c01099{font-size:72.666667pt;}
.fs1_c01099{font-size:73.333333pt;}
.fs14_c01099{font-size:74.000000pt;}
.fsc_c01099{font-size:76.666667pt;}
.fsf_c01099{font-size:85.333333pt;}
.y0_c01099{bottom:0.000000pt;}
.y25_c01099{bottom:157.440000pt;}
.y23_c01099{bottom:183.679093pt;}
.y24_c01099{bottom:183.679733pt;}
.y22_c01099{bottom:209.600120pt;}
.y21_c01099{bottom:209.600213pt;}
.y20_c01099{bottom:262.719720pt;}
.y1f_c01099{bottom:289.599533pt;}
.y1e_c01099{bottom:316.479453pt;}
.y1d_c01099{bottom:316.480040pt;}
.y1c_c01099{bottom:368.958947pt;}
.y1b_c01099{bottom:395.200120pt;}
.y1a_c01099{bottom:422.080200pt;}
.y18_c01099{bottom:475.199667pt;}
.y19_c01099{bottom:475.199707pt;}
.y17_c01099{bottom:502.079587pt;}
.y16_c01099{bottom:502.080387pt;}
.y15_c01099{bottom:528.640133pt;}
.y14_c01099{bottom:528.640213pt;}
.y13_c01099{bottom:581.759720pt;}
.y12_c01099{bottom:607.999467pt;}
.y11_c01099{bottom:607.999587pt;}
.y10_c01099{bottom:634.239173pt;}
.yf_c01099{bottom:634.239373pt;}
.ye_c01099{bottom:687.358893pt;}
.yd_c01099{bottom:714.238053pt;}
.yc_c01099{bottom:741.119853pt;}
.yb_c01099{bottom:767.359440pt;}
.ya_c01099{bottom:821.119547pt;}
.y8_c01099{bottom:847.680053pt;}
.y9_c01099{bottom:847.680093pt;}
.y7_c01099{bottom:874.559973pt;}
.y6_c01099{bottom:874.560227pt;}
.y5_c01099{bottom:900.799800pt;}
.y4_c01099{bottom:953.600093pt;}
.y3_c01099{bottom:955.519040pt;}
.y2_c01099{bottom:980.799480pt;}
.y1_c01099{bottom:1007.039067pt;}
.hc_c01099{height:11.820312pt;}
.h5_c01099{height:47.281250pt;}
.h3_c01099{height:58.203451pt;}
.h4_c01099{height:58.857422pt;}
.h6_c01099{height:59.101562pt;}
.ha_c01099{height:64.664062pt;}
.h17_c01099{height:65.359375pt;}
.h10_c01099{height:66.738281pt;}
.h15_c01099{height:67.392578pt;}
.h16_c01099{height:68.046875pt;}
.h1_c01099{height:68.701172pt;}
.h9_c01099{height:68.835938pt;}
.h13_c01099{height:69.320964pt;}
.h18_c01099{height:69.355469pt;}
.h7_c01099{height:69.531250pt;}
.h12_c01099{height:69.974935pt;}
.he_c01099{height:70.009766pt;}
.hb_c01099{height:70.226562pt;}
.h14_c01099{height:70.546875pt;}
.hf_c01099{height:71.318359pt;}
.h8_c01099{height:71.890625pt;}
.h2_c01099{height:71.972656pt;}
.h19_c01099{height:73.132813pt;}
.hd_c01099{height:79.960938pt;}
.h11_c01099{height:89.000000pt;}
.h0_c01099{height:1122.666667pt;}
.w0_c01099{width:793.333333pt;}
.x0_c01099{left:0.000000pt;}
.x22_c01099{left:119.359867pt;}
.xb_c01099{left:120.638667pt;}
.x1_c01099{left:121.599613pt;}
.x4_c01099{left:122.558493pt;}
.xc_c01099{left:166.398920pt;}
.x5_c01099{left:167.679200pt;}
.x33_c01099{left:171.518533pt;}
.xd_c01099{left:185.919453pt;}
.x35_c01099{left:187.519067pt;}
.x34_c01099{left:188.799333pt;}
.x15_c01099{left:189.758787pt;}
.x2a_c01099{left:198.719200pt;}
.x36_c01099{left:199.999467pt;}
.x2c_c01099{left:206.718787pt;}
.xf_c01099{left:213.118667pt;}
.x2b_c01099{left:217.599587pt;}
.x6_c01099{left:219.518533pt;}
.x37_c01099{left:224.639587pt;}
.x2d_c01099{left:228.479067pt;}
.x10_c01099{left:231.039587pt;}
.x7_c01099{left:240.959453pt;}
.xe_c01099{left:242.559067pt;}
.x23_c01099{left:244.479453pt;}
.x14_c01099{left:259.839867pt;}
.x11_c01099{left:261.118667pt;}
.x24_c01099{left:265.599587pt;}
.x1e_c01099{left:279.999067pt;}
.x25_c01099{left:284.799320pt;}
.x18_c01099{left:288.959453pt;}
.x2_c01099{left:291.518533pt;}
.x2e_c01099{left:292.479453pt;}
.x1f_c01099{left:293.759720pt;}
.x19_c01099{left:311.359867pt;}
.x2f_c01099{left:313.918920pt;}
.x8_c01099{left:318.399867pt;}
.x3_c01099{left:319.999453pt;}
.x38_c01099{left:322.879333pt;}
.x1b_c01099{left:326.718787pt;}
.x26_c01099{left:327.999067pt;}
.x39_c01099{left:335.679200pt;}
.x1c_c01099{left:340.479453pt;}
.x9_c01099{left:343.359333pt;}
.x27_c01099{left:351.039587pt;}
.xa_c01099{left:371.198693pt;}
.x30_c01099{left:389.759720pt;}
.x16_c01099{left:395.838907pt;}
.x1d_c01099{left:399.999067pt;}
.x17_c01099{left:405.118693pt;}
.x3a_c01099{left:411.199173pt;}
.x12_c01099{left:413.438920pt;}
.x28_c01099{left:422.718787pt;}
.x1a_c01099{left:424.960000pt;}
.x31_c01099{left:433.278813pt;}
.x3b_c01099{left:440.639613pt;}
.x3c_c01099{left:444.159707pt;}
.x32_c01099{left:449.598680pt;}
.x13_c01099{left:467.838907pt;}
.x20_c01099{left:469.439987pt;}
.x29_c01099{left:472.319867pt;}
.x3d_c01099{left:482.559040pt;}
.x21_c01099{left:486.399867pt;}
}





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

.ir_c01100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_b37953877aa1d86f6fce7338.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01100;src:url('chunks/assets/font_bf2bf7c0633ee9aeb67eac5b.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01100;src:url('chunks/assets/font_10b91d198c9595cb5ee63079.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01100;src:url('chunks/assets/font_e10e2d563088a5f2f27e200b.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01100;src:url('chunks/assets/font_654086ca55dcf7e0da797595.woff2')format("woff");}.ff5_c01100{font-family:ff5_c01100;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01100;src:url('chunks/assets/font_61c7745b974284753ebf101f.woff2')format("woff");}.ff6_c01100{font-family:ff6_c01100;line-height:1.432129;font-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_c01100{transform:matrix(0.176087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176087,0.000000,0.000000,0.250000,0,0);}
.m11_c01100{transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197248,0.000000,0.000000,0.250000,0,0);}
.ma_c01100{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.me_c01100{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7_c01100{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c01100{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m10_c01100{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m1e_c01100{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m4_c01100{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m17_c01100{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_c01100{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m8_c01100{transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);}
.m1a_c01100{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m1b_c01100{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m1c_c01100{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m2_c01100{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m13_c01100{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m3_c01100{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m1_c01100{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m19_c01100{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.mf_c01100{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m12_c01100{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01100{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.md_c01100{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.mc_c01100{transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259346,0.000000,0.000000,0.250000,0,0);}
.m1d_c01100{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m14_c01100{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m18_c01100{transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);}
.m15_c01100{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m16_c01100{transform:matrix(0.420213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420213,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls28_c01100{letter-spacing:-10.944450px;}
.ls16_c01100{letter-spacing:-6.301350px;}
.ls23_c01100{letter-spacing:-5.354213px;}
.ls1c_c01100{letter-spacing:-5.291325px;}
.ls3_c01100{letter-spacing:-5.248350px;}
.ls12_c01100{letter-spacing:-5.103900px;}
.ls2d_c01100{letter-spacing:-5.056200px;}
.ls1b_c01100{letter-spacing:-4.862348px;}
.ls5_c01100{letter-spacing:-4.502828px;}
.ls2e_c01100{letter-spacing:-4.091948px;}
.ls15_c01100{letter-spacing:-4.053428px;}
.ls26_c01100{letter-spacing:-3.962400px;}
.ls1d_c01100{letter-spacing:-3.748500px;}
.lsf_c01100{letter-spacing:-3.678750px;}
.ls14_c01100{letter-spacing:-3.242903px;}
.ls22_c01100{letter-spacing:-3.055500px;}
.ls4_c01100{letter-spacing:-3.046035px;}
.ls11_c01100{letter-spacing:-2.889000px;}
.ls10_c01100{letter-spacing:-2.431575px;}
.ls17_c01100{letter-spacing:-2.359350px;}
.ls1f_c01100{letter-spacing:-2.293553px;}
.lsa_c01100{letter-spacing:-2.291625px;}
.ls9_c01100{letter-spacing:-1.621050px;}
.lsd_c01100{letter-spacing:-1.573703px;}
.ls2b_c01100{letter-spacing:-1.558995px;}
.ls7_c01100{letter-spacing:-1.526963px;}
.ls8_c01100{letter-spacing:-0.810525px;}
.lse_c01100{letter-spacing:-0.781358px;}
.ls2c_c01100{letter-spacing:-0.772200px;}
.ls13_c01100{letter-spacing:-0.763875px;}
.lsb_c01100{letter-spacing:0.000000px;}
.ls21_c01100{letter-spacing:0.729473px;}
.ls2_c01100{letter-spacing:0.763875px;}
.ls6_c01100{letter-spacing:0.766425px;}
.ls0_c01100{letter-spacing:0.810525px;}
.ls20_c01100{letter-spacing:1.446615px;}
.ls27_c01100{letter-spacing:1.521900px;}
.lsc_c01100{letter-spacing:1.677375px;}
.ls2a_c01100{letter-spacing:2.291625px;}
.ls25_c01100{letter-spacing:2.393250px;}
.ls29_c01100{letter-spacing:2.431575px;}
.ls19_c01100{letter-spacing:2.497500px;}
.ls18_c01100{letter-spacing:3.026400px;}
.ls24_c01100{letter-spacing:3.122798px;}
.ls1e_c01100{letter-spacing:3.242903px;}
.ls1_c01100{letter-spacing:3.329168px;}
.ls1a_c01100{letter-spacing:3.800558px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:0.000000px;}
._5_c01100{margin-left:-4.646880px;}
._4_c01100{margin-left:-2.992887px;}
._d_c01100{margin-left:-1.751102px;}
._3_c01100{width:1.441119px;}
._0_c01100{width:2.760632px;}
._6_c01100{width:4.480101px;}
._2_c01100{width:6.026159px;}
._a_c01100{width:7.455030px;}
._1_c01100{width:9.381825px;}
._7_c01100{width:11.337286px;}
._9_c01100{width:12.511137px;}
._8_c01100{width:14.594881px;}
._b_c01100{width:15.951552px;}
._e_c01100{width:17.045295px;}
._c_c01100{width:20.401510px;}
.fc0_c01100{color:transparent;}
.fsd_c01100{font-size:24.000000px;}
.fse_c01100{font-size:35.250000px;}
.fs10_c01100{font-size:57.000000px;}
.fs11_c01100{font-size:74.250000px;}
.fsf_c01100{font-size:75.000000px;}
.fsb_c01100{font-size:76.500000px;}
.fsc_c01100{font-size:77.250000px;}
.fs8_c01100{font-size:78.000000px;}
.fs3_c01100{font-size:78.750000px;}
.fs12_c01100{font-size:79.500000px;}
.fs0_c01100{font-size:80.250000px;}
.fs5_c01100{font-size:81.750000px;}
.fs2_c01100{font-size:82.500000px;}
.fs9_c01100{font-size:83.250000px;}
.fs7_c01100{font-size:85.500000px;}
.fs6_c01100{font-size:86.250000px;}
.fsa_c01100{font-size:87.750000px;}
.fs4_c01100{font-size:90.750000px;}
.fs1_c01100{font-size:91.500000px;}
.y0_c01100{bottom:0.000000px;}
.y1b_c01100{bottom:212.760150px;}
.y1a_c01100{bottom:241.559685px;}
.y19_c01100{bottom:271.799535px;}
.y18_c01100{bottom:330.838950px;}
.y17_c01100{bottom:361.078260px;}
.y16_c01100{bottom:391.320285px;}
.y15_c01100{bottom:421.199385px;}
.y14_c01100{bottom:430.559685px;}
.y13_c01100{bottom:480.958920px;}
.y12_c01100{bottom:510.480285px;}
.y11_c01100{bottom:540.720150px;}
.y10_c01100{bottom:599.759535px;}
.yf_c01100{bottom:629.279250px;}
.ye_c01100{bottom:659.879970px;}
.yd_c01100{bottom:718.919535px;}
.yc_c01100{bottom:749.159370px;}
.yb_c01100{bottom:778.679070px;}
.ya_c01100{bottom:838.799565px;}
.y9_c01100{bottom:868.319190px;}
.y8_c01100{bottom:898.919955px;}
.y7_c01100{bottom:958.320285px;}
.y6_c01100{bottom:958.320555px;}
.y5_c01100{bottom:987.840090px;}
.y4_c01100{bottom:1017.719055px;}
.y3_c01100{bottom:1077.480285px;}
.y2_c01100{bottom:1107.359250px;}
.y1_c01100{bottom:1137.599025px;}
.h11_c01100{height:25.031250px;}
.h12_c01100{height:36.764648px;}
.h15_c01100{height:56.332031px;}
.h16_c01100{height:74.830078px;}
.hf_c01100{height:75.080566px;}
.h10_c01100{height:75.816650px;}
.h14_c01100{height:76.552734px;}
.h4_c01100{height:77.288818px;}
.h17_c01100{height:78.024902px;}
.h13_c01100{height:78.222656px;}
.hb_c01100{height:78.609375px;}
.h5_c01100{height:78.721802px;}
.h9_c01100{height:78.760986px;}
.hd_c01100{height:80.193237px;}
.h7_c01100{height:80.233154px;}
.h1_c01100{height:80.876953px;}
.hc_c01100{height:81.664673px;}
.h3_c01100{height:83.144531px;}
.ha_c01100{height:84.498047px;}
.h8_c01100{height:85.239258px;}
.he_c01100{height:86.721680px;}
.h6_c01100{height:89.686523px;}
.h2_c01100{height:90.427734px;}
.h0_c01100{height:1263.000000px;}
.w0_c01100{width:892.500000px;}
.x0_c01100{left:0.000000px;}
.x6_c01100{left:139.319250px;}
.x1_c01100{left:140.759565px;}
.x21_c01100{left:142.199850px;}
.x2a_c01100{left:173.878350px;}
.x9_c01100{left:192.599100px;}
.xa_c01100{left:210.958950px;}
.x29_c01100{left:217.799535px;}
.x2_c01100{left:221.398635px;}
.x17_c01100{left:243.000000px;}
.x13_c01100{left:252.719535px;}
.x19_c01100{left:263.518635px;}
.x3_c01100{left:265.679100px;}
.x1b_c01100{left:271.799535px;}
.x18_c01100{left:276.838950px;}
.x1a_c01100{left:284.038950px;}
.x14_c01100{left:289.798515px;}
.x1f_c01100{left:296.639100px;}
.x20_c01100{left:303.838950px;}
.x15_c01100{left:307.798950px;}
.x1c_c01100{left:309.598530px;}
.xb_c01100{left:311.759100px;}
.x22_c01100{left:319.679100px;}
.x23_c01100{left:338.038950px;}
.xc_c01100{left:344.879535px;}
.x16_c01100{left:354.239850px;}
.x26_c01100{left:358.199850px;}
.x4_c01100{left:370.080000px;}
.x27_c01100{left:379.079385px;}
.x1d_c01100{left:384.118785px;}
.x7_c01100{left:386.999400px;}
.x5_c01100{left:401.039985px;}
.x1e_c01100{left:403.198785px;}
.x28_c01100{left:409.678530px;}
.xd_c01100{left:412.918350px;}
.x24_c01100{left:419.759085px;}
.x8_c01100{left:430.198785px;}
.x25_c01100{left:435.239820px;}
.x11_c01100{left:446.759085px;}
.x12_c01100{left:489.239820px;}
.xe_c01100{left:532.798515px;}
.xf_c01100{left:554.399820px;}
.x10_c01100{left:689.759085px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls28_c01100{letter-spacing:-9.728400pt;}
.ls16_c01100{letter-spacing:-5.601200pt;}
.ls23_c01100{letter-spacing:-4.759300pt;}
.ls1c_c01100{letter-spacing:-4.703400pt;}
.ls3_c01100{letter-spacing:-4.665200pt;}
.ls12_c01100{letter-spacing:-4.536800pt;}
.ls2d_c01100{letter-spacing:-4.494400pt;}
.ls1b_c01100{letter-spacing:-4.322087pt;}
.ls5_c01100{letter-spacing:-4.002513pt;}
.ls2e_c01100{letter-spacing:-3.637287pt;}
.ls15_c01100{letter-spacing:-3.603047pt;}
.ls26_c01100{letter-spacing:-3.522133pt;}
.ls1d_c01100{letter-spacing:-3.332000pt;}
.lsf_c01100{letter-spacing:-3.270000pt;}
.ls14_c01100{letter-spacing:-2.882580pt;}
.ls22_c01100{letter-spacing:-2.716000pt;}
.ls4_c01100{letter-spacing:-2.707587pt;}
.ls11_c01100{letter-spacing:-2.568000pt;}
.ls10_c01100{letter-spacing:-2.161400pt;}
.ls17_c01100{letter-spacing:-2.097200pt;}
.ls1f_c01100{letter-spacing:-2.038713pt;}
.lsa_c01100{letter-spacing:-2.037000pt;}
.ls9_c01100{letter-spacing:-1.440933pt;}
.lsd_c01100{letter-spacing:-1.398847pt;}
.ls2b_c01100{letter-spacing:-1.385773pt;}
.ls7_c01100{letter-spacing:-1.357300pt;}
.ls8_c01100{letter-spacing:-0.720467pt;}
.lse_c01100{letter-spacing:-0.694540pt;}
.ls2c_c01100{letter-spacing:-0.686400pt;}
.ls13_c01100{letter-spacing:-0.679000pt;}
.lsb_c01100{letter-spacing:0.000000pt;}
.ls21_c01100{letter-spacing:0.648420pt;}
.ls2_c01100{letter-spacing:0.679000pt;}
.ls6_c01100{letter-spacing:0.681267pt;}
.ls0_c01100{letter-spacing:0.720467pt;}
.ls20_c01100{letter-spacing:1.285880pt;}
.ls27_c01100{letter-spacing:1.352800pt;}
.lsc_c01100{letter-spacing:1.491000pt;}
.ls2a_c01100{letter-spacing:2.037000pt;}
.ls25_c01100{letter-spacing:2.127333pt;}
.ls29_c01100{letter-spacing:2.161400pt;}
.ls19_c01100{letter-spacing:2.220000pt;}
.ls18_c01100{letter-spacing:2.690133pt;}
.ls24_c01100{letter-spacing:2.775820pt;}
.ls1e_c01100{letter-spacing:2.882580pt;}
.ls1_c01100{letter-spacing:2.959260pt;}
.ls1a_c01100{letter-spacing:3.378273pt;}
.ws0_c01100{word-spacing:0.000000pt;}
._5_c01100{margin-left:-4.130560pt;}
._4_c01100{margin-left:-2.660344pt;}
._d_c01100{margin-left:-1.556535pt;}
._3_c01100{width:1.280995pt;}
._0_c01100{width:2.453895pt;}
._6_c01100{width:3.982312pt;}
._2_c01100{width:5.356586pt;}
._a_c01100{width:6.626694pt;}
._1_c01100{width:8.339400pt;}
._7_c01100{width:10.077587pt;}
._9_c01100{width:11.121011pt;}
._8_c01100{width:12.973228pt;}
._b_c01100{width:14.179157pt;}
._e_c01100{width:15.151373pt;}
._c_c01100{width:18.134676pt;}
.fsd_c01100{font-size:21.333333pt;}
.fse_c01100{font-size:31.333333pt;}
.fs10_c01100{font-size:50.666667pt;}
.fs11_c01100{font-size:66.000000pt;}
.fsf_c01100{font-size:66.666667pt;}
.fsb_c01100{font-size:68.000000pt;}
.fsc_c01100{font-size:68.666667pt;}
.fs8_c01100{font-size:69.333333pt;}
.fs3_c01100{font-size:70.000000pt;}
.fs12_c01100{font-size:70.666667pt;}
.fs0_c01100{font-size:71.333333pt;}
.fs5_c01100{font-size:72.666667pt;}
.fs2_c01100{font-size:73.333333pt;}
.fs9_c01100{font-size:74.000000pt;}
.fs7_c01100{font-size:76.000000pt;}
.fs6_c01100{font-size:76.666667pt;}
.fsa_c01100{font-size:78.000000pt;}
.fs4_c01100{font-size:80.666667pt;}
.fs1_c01100{font-size:81.333333pt;}
.y0_c01100{bottom:0.000000pt;}
.y1b_c01100{bottom:189.120133pt;}
.y1a_c01100{bottom:214.719720pt;}
.y19_c01100{bottom:241.599587pt;}
.y18_c01100{bottom:294.079067pt;}
.y17_c01100{bottom:320.958453pt;}
.y16_c01100{bottom:347.840253pt;}
.y15_c01100{bottom:374.399453pt;}
.y14_c01100{bottom:382.719720pt;}
.y13_c01100{bottom:427.519040pt;}
.y12_c01100{bottom:453.760253pt;}
.y11_c01100{bottom:480.640133pt;}
.y10_c01100{bottom:533.119587pt;}
.yf_c01100{bottom:559.359333pt;}
.ye_c01100{bottom:586.559973pt;}
.yd_c01100{bottom:639.039587pt;}
.yc_c01100{bottom:665.919440pt;}
.yb_c01100{bottom:692.159173pt;}
.ya_c01100{bottom:745.599613pt;}
.y9_c01100{bottom:771.839280pt;}
.y8_c01100{bottom:799.039960pt;}
.y7_c01100{bottom:851.840253pt;}
.y6_c01100{bottom:851.840493pt;}
.y5_c01100{bottom:878.080080pt;}
.y4_c01100{bottom:904.639160pt;}
.y3_c01100{bottom:957.760253pt;}
.y2_c01100{bottom:984.319333pt;}
.y1_c01100{bottom:1011.199133pt;}
.h11_c01100{height:22.250000pt;}
.h12_c01100{height:32.679688pt;}
.h15_c01100{height:50.072917pt;}
.h16_c01100{height:66.515625pt;}
.hf_c01100{height:66.738281pt;}
.h10_c01100{height:67.392578pt;}
.h14_c01100{height:68.046875pt;}
.h4_c01100{height:68.701172pt;}
.h17_c01100{height:69.355469pt;}
.h13_c01100{height:69.531250pt;}
.hb_c01100{height:69.875000pt;}
.h5_c01100{height:69.974935pt;}
.h9_c01100{height:70.009766pt;}
.hd_c01100{height:71.282878pt;}
.h7_c01100{height:71.318359pt;}
.h1_c01100{height:71.890625pt;}
.hc_c01100{height:72.590820pt;}
.h3_c01100{height:73.906250pt;}
.ha_c01100{height:75.109375pt;}
.h8_c01100{height:75.768229pt;}
.he_c01100{height:77.085938pt;}
.h6_c01100{height:79.721354pt;}
.h2_c01100{height:80.380208pt;}
.h0_c01100{height:1122.666667pt;}
.w0_c01100{width:793.333333pt;}
.x0_c01100{left:0.000000pt;}
.x6_c01100{left:123.839333pt;}
.x1_c01100{left:125.119613pt;}
.x21_c01100{left:126.399867pt;}
.x2a_c01100{left:154.558533pt;}
.x9_c01100{left:171.199200pt;}
.xa_c01100{left:187.519067pt;}
.x29_c01100{left:193.599587pt;}
.x2_c01100{left:196.798787pt;}
.x17_c01100{left:216.000000pt;}
.x13_c01100{left:224.639587pt;}
.x19_c01100{left:234.238787pt;}
.x3_c01100{left:236.159200pt;}
.x1b_c01100{left:241.599587pt;}
.x18_c01100{left:246.079067pt;}
.x1a_c01100{left:252.479067pt;}
.x14_c01100{left:257.598680pt;}
.x1f_c01100{left:263.679200pt;}
.x20_c01100{left:270.079067pt;}
.x15_c01100{left:273.599067pt;}
.x1c_c01100{left:275.198693pt;}
.xb_c01100{left:277.119200pt;}
.x22_c01100{left:284.159200pt;}
.x23_c01100{left:300.479067pt;}
.xc_c01100{left:306.559587pt;}
.x16_c01100{left:314.879867pt;}
.x26_c01100{left:318.399867pt;}
.x4_c01100{left:328.960000pt;}
.x27_c01100{left:336.959453pt;}
.x1d_c01100{left:341.438920pt;}
.x7_c01100{left:343.999467pt;}
.x5_c01100{left:356.479987pt;}
.x1e_c01100{left:358.398920pt;}
.x28_c01100{left:364.158693pt;}
.xd_c01100{left:367.038533pt;}
.x24_c01100{left:373.119187pt;}
.x8_c01100{left:382.398920pt;}
.x25_c01100{left:386.879840pt;}
.x11_c01100{left:397.119187pt;}
.x12_c01100{left:434.879840pt;}
.xe_c01100{left:473.598680pt;}
.xf_c01100{left:492.799840pt;}
.x10_c01100{left:613.119187pt;}
}





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

.ir_c01101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_bd90b3a215e9b626c1e53ff1.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01101;src:url('chunks/assets/font_41bb4877ac6bae66fa0ec868.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01101;src:url('chunks/assets/font_f82e5bd5e0a905f4f101fec3.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01101;src:url('chunks/assets/font_d4de535ec4b899c04892d3a7.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01101;src:url('chunks/assets/font_95fb9e80dd2be395763b9c97.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01101;src:url('chunks/assets/font_6e114999b84be4391056810d.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:1.432129;font-style:normal;font-weight: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_c01101;src:url('chunks/assets/font_a9e98fcc689cc55bbda1a325.woff2')format("woff");}.ff7_c01101{font-family:ff7_c01101;line-height:1.432129;font-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_c01101{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.md_c01101{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m5_c01101{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m4_c01101{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m1_c01101{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.mb_c01101{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m6_c01101{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m3_c01101{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m9_c01101{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m14_c01101{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m0_c01101{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m2_c01101{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.ma_c01101{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m7_c01101{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m18_c01101{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.mf_c01101{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_c01101{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m16_c01101{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.mc_c01101{transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272321,0.000000,0.000000,0.250000,0,0);}
.m15_c01101{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.m17_c01101{transform:matrix(0.330645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330645,0.000000,0.000000,0.250000,0,0);}
.m10_c01101{transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);}
.m13_c01101{transform:matrix(0.363971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363971,0.000000,0.000000,0.250000,0,0);}
.me_c01101{transform:matrix(0.403409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403409,0.000000,0.000000,0.250000,0,0);}
.m12_c01101{transform:matrix(0.463542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463542,0.000000,0.000000,0.250000,0,0);}
.v0_c01101{vertical-align:0.000000px;}
.ls4_c01101{letter-spacing:-5.948250px;}
.lsf_c01101{letter-spacing:-5.734800px;}
.lse_c01101{letter-spacing:-4.543088px;}
.ls13_c01101{letter-spacing:-4.461900px;}
.ls12_c01101{letter-spacing:-3.787875px;}
.ls11_c01101{letter-spacing:-3.242903px;}
.ls9_c01101{letter-spacing:-3.031875px;}
.ls6_c01101{letter-spacing:-2.431575px;}
.ls2_c01101{letter-spacing:-2.267213px;}
.ls1a_c01101{letter-spacing:-2.004008px;}
.ls5_c01101{letter-spacing:-1.621050px;}
.lsa_c01101{letter-spacing:-1.512000px;}
.lsd_c01101{letter-spacing:-1.473413px;}
.ls1c_c01101{letter-spacing:-1.468800px;}
.lsc_c01101{letter-spacing:-0.825675px;}
.ls7_c01101{letter-spacing:-0.810525px;}
.ls10_c01101{letter-spacing:-0.793800px;}
.lsb_c01101{letter-spacing:-0.756000px;}
.ls3_c01101{letter-spacing:0.000000px;}
.ls17_c01101{letter-spacing:0.810360px;}
.ls1_c01101{letter-spacing:0.810525px;}
.ls8_c01101{letter-spacing:1.716000px;}
.ls0_c01101{letter-spacing:3.031875px;}
.ls18_c01101{letter-spacing:4.120800px;}
.ls16_c01101{letter-spacing:7.079475px;}
.ls15_c01101{letter-spacing:13.234125px;}
.ls19_c01101{letter-spacing:16.761600px;}
.ls1b_c01101{letter-spacing:17.193600px;}
.ls14_c01101{letter-spacing:24.787980px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01101{word-spacing:0.000000px;}
._c_c01101{margin-left:-22.907890px;}
._10_c01101{margin-left:-19.507284px;}
._f_c01101{margin-left:-9.121222px;}
._9_c01101{margin-left:-2.559738px;}
._e_c01101{width:1.438944px;}
._5_c01101{width:2.708879px;}
._4_c01101{width:4.238056px;}
._d_c01101{width:5.386621px;}
._3_c01101{width:6.470975px;}
._0_c01101{width:7.905047px;}
._1_c01101{width:9.966937px;}
._7_c01101{width:12.184503px;}
._2_c01101{width:14.421525px;}
._a_c01101{width:15.534779px;}
._b_c01101{width:24.726133px;}
._8_c01101{width:34.526241px;}
._6_c01101{width:51.101481px;}
._11_c01101{width:60.097396px;}
.fc0_c01101{color:transparent;}
.fs7_c01101{font-size:31.500000px;}
.fs8_c01101{font-size:33.000000px;}
.fsc_c01101{font-size:36.000000px;}
.fs9_c01101{font-size:37.500000px;}
.fsa_c01101{font-size:39.750000px;}
.fs6_c01101{font-size:42.000000px;}
.fs10_c01101{font-size:46.500000px;}
.fse_c01101{font-size:48.000000px;}
.fsd_c01101{font-size:51.000000px;}
.fsb_c01101{font-size:52.500000px;}
.fsf_c01101{font-size:74.250000px;}
.fs11_c01101{font-size:76.500000px;}
.fs1_c01101{font-size:78.000000px;}
.fs0_c01101{font-size:78.750000px;}
.fs3_c01101{font-size:80.250000px;}
.fs5_c01101{font-size:81.000000px;}
.fs4_c01101{font-size:81.750000px;}
.fs2_c01101{font-size:82.500000px;}
.y0_c01101{bottom:0.000000px;}
.y18_c01101{bottom:241.198785px;}
.y17_c01101{bottom:270.720150px;}
.y16_c01101{bottom:300.598320px;}
.y15_c01101{bottom:359.999385px;}
.y14_c01101{bottom:389.879970px;}
.y13_c01101{bottom:420.119985px;}
.y12_c01101{bottom:429.119385px;}
.y11_c01101{bottom:480.238770px;}
.y10_c01101{bottom:509.760135px;}
.yf_c01101{bottom:539.639100px;}
.ye_c01101{bottom:539.639265px;}
.yd_c01101{bottom:598.680135px;}
.yb_c01101{bottom:628.559055px;}
.yc_c01101{bottom:628.559100px;}
.ya_c01101{bottom:658.438770px;}
.y9_c01101{bottom:838.079400px;}
.y8_c01101{bottom:867.960015px;}
.y7_c01101{bottom:897.839745px;}
.y6_c01101{bottom:957.959385px;}
.y5_c01101{bottom:987.840090px;}
.y4_c01101{bottom:1017.359070px;}
.y3_c01101{bottom:1076.760135px;}
.y2_c01101{bottom:1106.279850px;}
.y1_c01101{bottom:1136.519715px;}
.ha_c01101{height:31.130859px;}
.hb_c01101{height:34.417969px;}
.hf_c01101{height:37.546875px;}
.hc_c01101{height:37.792969px;}
.hd_c01101{height:40.060547px;}
.h9_c01101{height:41.507812px;}
.h13_c01101{height:48.498047px;}
.h10_c01101{height:50.028809px;}
.h11_c01101{height:50.062500px;}
.he_c01101{height:54.755859px;}
.h14_c01101{height:75.080566px;}
.h2_c01101{height:76.552734px;}
.h1_c01101{height:77.288818px;}
.h12_c01101{height:77.440430px;}
.h4_c01101{height:78.721802px;}
.h8_c01101{height:78.760986px;}
.h7_c01101{height:79.497070px;}
.h6_c01101{height:80.233154px;}
.h5_c01101{height:80.928955px;}
.h3_c01101{height:80.969238px;}
.h0_c01101{height:1263.000000px;}
.w0_c01101{width:892.500000px;}
.x0_c01101{left:0.000000px;}
.x14_c01101{left:131.399250px;}
.x1_c01101{left:132.478665px;}
.x6_c01101{left:133.918950px;}
.x1b_c01101{left:156.599700px;}
.x12_c01101{left:166.678500px;}
.x1c_c01101{left:183.238785px;}
.x23_c01101{left:207.359850px;}
.x2_c01101{left:210.238785px;}
.x19_c01101{left:212.040000px;}
.x3_c01101{left:226.078785px;}
.x1a_c01101{left:227.519100px;}
.x1d_c01101{left:240.119385px;}
.x7_c01101{left:245.519685px;}
.x1e_c01101{left:248.759535px;}
.x8_c01101{left:260.639700px;}
.xd_c01101{left:281.878350px;}
.x17_c01101{left:283.679700px;}
.x16_c01101{left:293.040000px;}
.x24_c01101{left:294.119385px;}
.xe_c01101{left:305.279250px;}
.x21_c01101{left:310.679700px;}
.x18_c01101{left:316.798515px;}
.x15_c01101{left:318.958950px;}
.x4_c01101{left:337.679700px;}
.x13_c01101{left:343.080000px;}
.x1f_c01101{left:344.159385px;}
.xf_c01101{left:348.478635px;}
.x20_c01101{left:351.359235px;}
.x22_c01101{left:363.598530px;}
.x5_c01101{left:391.318770px;}
.xb_c01101{left:439.199850px;}
.xc_c01101{left:481.679070px;}
.x25_c01101{left:482.758530px;}
.x10_c01101{left:530.998950px;}
.x11_c01101{left:574.199850px;}
.x9_c01101{left:583.558635px;}
.xa_c01101{left:607.318770px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.ls4_c01101{letter-spacing:-5.287333pt;}
.lsf_c01101{letter-spacing:-5.097600pt;}
.lse_c01101{letter-spacing:-4.038300pt;}
.ls13_c01101{letter-spacing:-3.966133pt;}
.ls12_c01101{letter-spacing:-3.367000pt;}
.ls11_c01101{letter-spacing:-2.882580pt;}
.ls9_c01101{letter-spacing:-2.695000pt;}
.ls6_c01101{letter-spacing:-2.161400pt;}
.ls2_c01101{letter-spacing:-2.015300pt;}
.ls1a_c01101{letter-spacing:-1.781340pt;}
.ls5_c01101{letter-spacing:-1.440933pt;}
.lsa_c01101{letter-spacing:-1.344000pt;}
.lsd_c01101{letter-spacing:-1.309700pt;}
.ls1c_c01101{letter-spacing:-1.305600pt;}
.lsc_c01101{letter-spacing:-0.733933pt;}
.ls7_c01101{letter-spacing:-0.720467pt;}
.ls10_c01101{letter-spacing:-0.705600pt;}
.lsb_c01101{letter-spacing:-0.672000pt;}
.ls3_c01101{letter-spacing:0.000000pt;}
.ls17_c01101{letter-spacing:0.720320pt;}
.ls1_c01101{letter-spacing:0.720467pt;}
.ls8_c01101{letter-spacing:1.525333pt;}
.ls0_c01101{letter-spacing:2.695000pt;}
.ls18_c01101{letter-spacing:3.662933pt;}
.ls16_c01101{letter-spacing:6.292867pt;}
.ls15_c01101{letter-spacing:11.763667pt;}
.ls19_c01101{letter-spacing:14.899200pt;}
.ls1b_c01101{letter-spacing:15.283200pt;}
.ls14_c01101{letter-spacing:22.033760pt;}
.ws0_c01101{word-spacing:0.000000pt;}
._c_c01101{margin-left:-20.362569pt;}
._10_c01101{margin-left:-17.339808pt;}
._f_c01101{margin-left:-8.107753pt;}
._9_c01101{margin-left:-2.275323pt;}
._e_c01101{width:1.279062pt;}
._5_c01101{width:2.407892pt;}
._4_c01101{width:3.767161pt;}
._d_c01101{width:4.788108pt;}
._3_c01101{width:5.751977pt;}
._0_c01101{width:7.026708pt;}
._1_c01101{width:8.859499pt;}
._7_c01101{width:10.830669pt;}
._2_c01101{width:12.819133pt;}
._a_c01101{width:13.808692pt;}
._b_c01101{width:21.978785pt;}
._8_c01101{width:30.689992pt;}
._6_c01101{width:45.423538pt;}
._11_c01101{width:53.419908pt;}
.fs7_c01101{font-size:28.000000pt;}
.fs8_c01101{font-size:29.333333pt;}
.fsc_c01101{font-size:32.000000pt;}
.fs9_c01101{font-size:33.333333pt;}
.fsa_c01101{font-size:35.333333pt;}
.fs6_c01101{font-size:37.333333pt;}
.fs10_c01101{font-size:41.333333pt;}
.fse_c01101{font-size:42.666667pt;}
.fsd_c01101{font-size:45.333333pt;}
.fsb_c01101{font-size:46.666667pt;}
.fsf_c01101{font-size:66.000000pt;}
.fs11_c01101{font-size:68.000000pt;}
.fs1_c01101{font-size:69.333333pt;}
.fs0_c01101{font-size:70.000000pt;}
.fs3_c01101{font-size:71.333333pt;}
.fs5_c01101{font-size:72.000000pt;}
.fs4_c01101{font-size:72.666667pt;}
.fs2_c01101{font-size:73.333333pt;}
.y0_c01101{bottom:0.000000pt;}
.y18_c01101{bottom:214.398920pt;}
.y17_c01101{bottom:240.640133pt;}
.y16_c01101{bottom:267.198507pt;}
.y15_c01101{bottom:319.999453pt;}
.y14_c01101{bottom:346.559973pt;}
.y13_c01101{bottom:373.439987pt;}
.y12_c01101{bottom:381.439453pt;}
.y11_c01101{bottom:426.878907pt;}
.y10_c01101{bottom:453.120120pt;}
.yf_c01101{bottom:479.679200pt;}
.ye_c01101{bottom:479.679347pt;}
.yd_c01101{bottom:532.160120pt;}
.yb_c01101{bottom:558.719160pt;}
.yc_c01101{bottom:558.719200pt;}
.ya_c01101{bottom:585.278907pt;}
.y9_c01101{bottom:744.959467pt;}
.y8_c01101{bottom:771.520013pt;}
.y7_c01101{bottom:798.079773pt;}
.y6_c01101{bottom:851.519453pt;}
.y5_c01101{bottom:878.080080pt;}
.y4_c01101{bottom:904.319173pt;}
.y3_c01101{bottom:957.120120pt;}
.y2_c01101{bottom:983.359867pt;}
.y1_c01101{bottom:1010.239747pt;}
.ha_c01101{height:27.671875pt;}
.hb_c01101{height:30.593750pt;}
.hf_c01101{height:33.375000pt;}
.hc_c01101{height:33.593750pt;}
.hd_c01101{height:35.609375pt;}
.h9_c01101{height:36.895833pt;}
.h13_c01101{height:43.109375pt;}
.h10_c01101{height:44.470052pt;}
.h11_c01101{height:44.500000pt;}
.he_c01101{height:48.671875pt;}
.h14_c01101{height:66.738281pt;}
.h2_c01101{height:68.046875pt;}
.h1_c01101{height:68.701172pt;}
.h12_c01101{height:68.835938pt;}
.h4_c01101{height:69.974935pt;}
.h8_c01101{height:70.009766pt;}
.h7_c01101{height:70.664062pt;}
.h6_c01101{height:71.318359pt;}
.h5_c01101{height:71.936849pt;}
.h3_c01101{height:71.972656pt;}
.h0_c01101{height:1122.666667pt;}
.w0_c01101{width:793.333333pt;}
.x0_c01101{left:0.000000pt;}
.x14_c01101{left:116.799333pt;}
.x1_c01101{left:117.758813pt;}
.x6_c01101{left:119.039067pt;}
.x1b_c01101{left:139.199733pt;}
.x12_c01101{left:148.158667pt;}
.x1c_c01101{left:162.878920pt;}
.x23_c01101{left:184.319867pt;}
.x2_c01101{left:186.878920pt;}
.x19_c01101{left:188.480000pt;}
.x3_c01101{left:200.958920pt;}
.x1a_c01101{left:202.239200pt;}
.x1d_c01101{left:213.439453pt;}
.x7_c01101{left:218.239720pt;}
.x1e_c01101{left:221.119587pt;}
.x8_c01101{left:231.679733pt;}
.xd_c01101{left:250.558533pt;}
.x17_c01101{left:252.159733pt;}
.x16_c01101{left:260.480000pt;}
.x24_c01101{left:261.439453pt;}
.xe_c01101{left:271.359333pt;}
.x21_c01101{left:276.159733pt;}
.x18_c01101{left:281.598680pt;}
.x15_c01101{left:283.519067pt;}
.x4_c01101{left:300.159733pt;}
.x13_c01101{left:304.960000pt;}
.x1f_c01101{left:305.919453pt;}
.xf_c01101{left:309.758787pt;}
.x20_c01101{left:312.319320pt;}
.x22_c01101{left:323.198693pt;}
.x5_c01101{left:347.838907pt;}
.xb_c01101{left:390.399867pt;}
.xc_c01101{left:428.159173pt;}
.x25_c01101{left:429.118693pt;}
.x10_c01101{left:471.999067pt;}
.x11_c01101{left:510.399867pt;}
.x9_c01101{left:518.718787pt;}
.xa_c01101{left:539.838907pt;}
}





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

.ir_c01102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_de12537742b71a363c07be6e.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01102;src:url('chunks/assets/font_0ebe3d0eec5c4228c6d4c5b8.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01102;src:url('chunks/assets/font_196784c50e361a8f3a1624c6.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01102;src:url('chunks/assets/font_47d61fc92d04341e2aaf7a1e.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01102;src:url('chunks/assets/font_27150082269b7aba0038a273.woff2')format("woff");}.ff5_c01102{font-family:ff5_c01102;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01102;src:url('chunks/assets/font_487a2099773539917ff39c0e.woff2')format("woff");}.ff6_c01102{font-family:ff6_c01102;line-height:1.432129;font-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_c01102{transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);}
.m5_c01102{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.mc_c01102{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m6_c01102{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m2_c01102{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m8_c01102{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.ma_c01102{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m0_c01102{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.mb_c01102{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m7_c01102{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m3_c01102{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m4_c01102{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m16_c01102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01102{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m10_c01102{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.me_c01102{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.mf_c01102{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m17_c01102{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.md_c01102{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m12_c01102{transform:matrix(0.295082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295082,0.000000,0.000000,0.250000,0,0);}
.m11_c01102{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m13_c01102{transform:matrix(0.384259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384259,0.000000,0.000000,0.250000,0,0);}
.m15_c01102{transform:matrix(0.388587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388587,0.000000,0.000000,0.250000,0,0);}
.m14_c01102{transform:matrix(0.524590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524590,0.000000,0.000000,0.250000,0,0);}
.v0_c01102{vertical-align:0.000000px;}
.ls11_c01102{letter-spacing:-7.294725px;}
.lsf_c01102{letter-spacing:-6.180000px;}
.ls17_c01102{letter-spacing:-6.122273px;}
.ls1a_c01102{letter-spacing:-5.834505px;}
.ls6_c01102{letter-spacing:-5.196713px;}
.lsb_c01102{letter-spacing:-4.456463px;}
.ls18_c01102{letter-spacing:-4.252500px;}
.ls20_c01102{letter-spacing:-4.053428px;}
.ls2_c01102{letter-spacing:-3.964058px;}
.lsd_c01102{letter-spacing:-3.896100px;}
.lsc_c01102{letter-spacing:-3.717000px;}
.ls19_c01102{letter-spacing:-3.476250px;}
.ls8_c01102{letter-spacing:-3.242903px;}
.ls23_c01102{letter-spacing:-3.118500px;}
.ls4_c01102{letter-spacing:-2.968875px;}
.lsa_c01102{letter-spacing:-2.431575px;}
.ls5_c01102{letter-spacing:-2.229413px;}
.ls22_c01102{letter-spacing:-2.064150px;}
.ls1c_c01102{letter-spacing:-1.907775px;}
.lse_c01102{letter-spacing:-1.621050px;}
.ls16_c01102{letter-spacing:-1.573703px;}
.ls12_c01102{letter-spacing:-1.558995px;}
.ls7_c01102{letter-spacing:-1.489163px;}
.ls9_c01102{letter-spacing:-0.810525px;}
.ls3_c01102{letter-spacing:-0.740250px;}
.ls10_c01102{letter-spacing:0.000000px;}
.ls21_c01102{letter-spacing:0.793800px;}
.ls0_c01102{letter-spacing:0.810525px;}
.ls14_c01102{letter-spacing:1.006418px;}
.ls15_c01102{letter-spacing:2.381400px;}
.ls1e_c01102{letter-spacing:2.898690px;}
.ls1_c01102{letter-spacing:3.242903px;}
.ls1f_c01102{letter-spacing:6.000638px;}
.ls1d_c01102{letter-spacing:8.578125px;}
.ls1b_c01102{letter-spacing:11.343338px;}
.ls13_c01102{letter-spacing:22.470000px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01102{word-spacing:0.000000px;}
._13_c01102{margin-left:-6.246169px;}
._11_c01102{margin-left:-3.554686px;}
._d_c01102{margin-left:-1.284389px;}
._a_c01102{width:1.184667px;}
._9_c01102{width:2.530594px;}
._c_c01102{width:3.691759px;}
._e_c01102{width:4.997059px;}
._8_c01102{width:6.515686px;}
._6_c01102{width:7.832980px;}
._7_c01102{width:9.082668px;}
._4_c01102{width:10.329964px;}
._2_c01102{width:11.484662px;}
._3_c01102{width:13.109825px;}
._1_c01102{width:15.039824px;}
._12_c01102{width:18.016563px;}
._5_c01102{width:23.426179px;}
._10_c01102{width:25.591466px;}
._f_c01102{width:26.890406px;}
._b_c01102{width:35.212483px;}
._0_c01102{width:40.716068px;}
.fc0_c01102{color:transparent;}
.fsb_c01102{font-size:40.500000px;}
.fs9_c01102{font-size:41.250000px;}
.fsa_c01102{font-size:45.750000px;}
.fsd_c01102{font-size:48.750000px;}
.fsc_c01102{font-size:69.000000px;}
.fse_c01102{font-size:74.250000px;}
.fs4_c01102{font-size:77.250000px;}
.fs1_c01102{font-size:78.750000px;}
.fs7_c01102{font-size:79.500000px;}
.fs2_c01102{font-size:80.250000px;}
.fs3_c01102{font-size:81.000000px;}
.fs0_c01102{font-size:81.750000px;}
.fs5_c01102{font-size:82.500000px;}
.fs6_c01102{font-size:83.250000px;}
.fs8_c01102{font-size:90.750000px;}
.y0_c01102{bottom:0.000000px;}
.y1e_c01102{bottom:243.359250px;}
.y1c_c01102{bottom:273.599970px;}
.y1d_c01102{bottom:273.600750px;}
.y1b_c01102{bottom:303.479685px;}
.y1a_c01102{bottom:303.479880px;}
.y19_c01102{bottom:362.520750px;}
.y18_c01102{bottom:392.040570px;}
.y17_c01102{bottom:421.919535px;}
.y16_c01102{bottom:430.200435px;}
.y15_c01102{bottom:482.760135px;}
.y14_c01102{bottom:512.279850px;}
.y12_c01102{bottom:542.519070px;}
.y13_c01102{bottom:542.519670px;}
.y11_c01102{bottom:601.199760px;}
.y10_c01102{bottom:631.439670px;}
.yf_c01102{bottom:631.439940px;}
.ye_c01102{bottom:691.199385px;}
.yd_c01102{bottom:721.080000px;}
.yc_c01102{bottom:751.319820px;}
.yb_c01102{bottom:811.079400px;}
.ya_c01102{bottom:840.960015px;}
.y9_c01102{bottom:870.839970px;}
.y8_c01102{bottom:930.239220px;}
.y7_c01102{bottom:959.760675px;}
.y6_c01102{bottom:990.000555px;}
.y5_c01102{bottom:1050.119385px;}
.y4_c01102{bottom:1080.359250px;}
.y3_c01102{bottom:1080.360240px;}
.y2_c01102{bottom:1110.239955px;}
.y1_c01102{bottom:1139.759490px;}
.h10_c01102{height:42.240234px;}
.he_c01102{height:43.022461px;}
.hf_c01102{height:45.213867px;}
.h11_c01102{height:47.715820px;}
.h13_c01102{height:47.821655px;}
.h12_c01102{height:67.686035px;}
.h15_c01102{height:72.872314px;}
.hc_c01102{height:75.816650px;}
.h2_c01102{height:77.288818px;}
.hd_c01102{height:78.024902px;}
.h3_c01102{height:78.721802px;}
.hb_c01102{height:78.760986px;}
.h14_c01102{height:79.497070px;}
.h8_c01102{height:80.121094px;}
.h5_c01102{height:80.569336px;}
.h9_c01102{height:80.876953px;}
.h6_c01102{height:80.928955px;}
.h4_c01102{height:81.632812px;}
.h7_c01102{height:81.664673px;}
.h1_c01102{height:82.388672px;}
.ha_c01102{height:89.686523px;}
.h0_c01102{height:1263.000000px;}
.w0_c01102{width:892.500000px;}
.x0_c01102{left:0.000000px;}
.x6_c01102{left:133.198785px;}
.x1_c01102{left:135.000000px;}
.x3_c01102{left:136.799610px;}
.x1b_c01102{left:184.679100px;}
.x2_c01102{left:186.478665px;}
.x19_c01102{left:197.638500px;}
.x5_c01102{left:201.239250px;}
.x12_c01102{left:210.599700px;}
.x10_c01102{left:212.758500px;}
.x1c_c01102{left:219.239850px;}
.x11_c01102{left:227.878350px;}
.x1a_c01102{left:231.120000px;}
.x13_c01102{left:240.119385px;}
.x7_c01102{left:253.078785px;}
.xc_c01102{left:263.518635px;}
.x14_c01102{left:286.199385px;}
.x8_c01102{left:290.879535px;}
.x9_c01102{left:307.078785px;}
.x15_c01102{left:318.599700px;}
.x1d_c01102{left:326.878950px;}
.xd_c01102{left:337.318800px;}
.x1e_c01102{left:347.040000px;}
.xe_c01102{left:363.239250px;}
.x1f_c01102{left:380.878950px;}
.x4_c01102{left:406.438665px;}
.x20_c01102{left:465.479685px;}
.xf_c01102{left:499.679670px;}
.x21_c01102{left:529.919535px;}
.xa_c01102{left:542.158770px;}
.xb_c01102{left:566.639100px;}
.x16_c01102{left:575.638545px;}
.x17_c01102{left:590.399235px;}
.x18_c01102{left:705.958335px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls11_c01102{letter-spacing:-6.484200pt;}
.lsf_c01102{letter-spacing:-5.493333pt;}
.ls17_c01102{letter-spacing:-5.442020pt;}
.ls1a_c01102{letter-spacing:-5.186227pt;}
.ls6_c01102{letter-spacing:-4.619300pt;}
.lsb_c01102{letter-spacing:-3.961300pt;}
.ls18_c01102{letter-spacing:-3.780000pt;}
.ls20_c01102{letter-spacing:-3.603047pt;}
.ls2_c01102{letter-spacing:-3.523607pt;}
.lsd_c01102{letter-spacing:-3.463200pt;}
.lsc_c01102{letter-spacing:-3.304000pt;}
.ls19_c01102{letter-spacing:-3.090000pt;}
.ls8_c01102{letter-spacing:-2.882580pt;}
.ls23_c01102{letter-spacing:-2.772000pt;}
.ls4_c01102{letter-spacing:-2.639000pt;}
.lsa_c01102{letter-spacing:-2.161400pt;}
.ls5_c01102{letter-spacing:-1.981700pt;}
.ls22_c01102{letter-spacing:-1.834800pt;}
.ls1c_c01102{letter-spacing:-1.695800pt;}
.lse_c01102{letter-spacing:-1.440933pt;}
.ls16_c01102{letter-spacing:-1.398847pt;}
.ls12_c01102{letter-spacing:-1.385773pt;}
.ls7_c01102{letter-spacing:-1.323700pt;}
.ls9_c01102{letter-spacing:-0.720467pt;}
.ls3_c01102{letter-spacing:-0.658000pt;}
.ls10_c01102{letter-spacing:0.000000pt;}
.ls21_c01102{letter-spacing:0.705600pt;}
.ls0_c01102{letter-spacing:0.720467pt;}
.ls14_c01102{letter-spacing:0.894593pt;}
.ls15_c01102{letter-spacing:2.116800pt;}
.ls1e_c01102{letter-spacing:2.576613pt;}
.ls1_c01102{letter-spacing:2.882580pt;}
.ls1f_c01102{letter-spacing:5.333900pt;}
.ls1d_c01102{letter-spacing:7.625000pt;}
.ls1b_c01102{letter-spacing:10.082967pt;}
.ls13_c01102{letter-spacing:19.973333pt;}
.ws0_c01102{word-spacing:0.000000pt;}
._13_c01102{margin-left:-5.552150pt;}
._11_c01102{margin-left:-3.159721pt;}
._d_c01102{margin-left:-1.141679pt;}
._a_c01102{width:1.053038pt;}
._9_c01102{width:2.249417pt;}
._c_c01102{width:3.281564pt;}
._e_c01102{width:4.441830pt;}
._8_c01102{width:5.791721pt;}
._6_c01102{width:6.962649pt;}
._7_c01102{width:8.073483pt;}
._4_c01102{width:9.182191pt;}
._2_c01102{width:10.208589pt;}
._3_c01102{width:11.653177pt;}
._1_c01102{width:13.368732pt;}
._12_c01102{width:16.014722pt;}
._5_c01102{width:20.823270pt;}
._10_c01102{width:22.747969pt;}
._f_c01102{width:23.902583pt;}
._b_c01102{width:31.299985pt;}
._0_c01102{width:36.192060pt;}
.fsb_c01102{font-size:36.000000pt;}
.fs9_c01102{font-size:36.666667pt;}
.fsa_c01102{font-size:40.666667pt;}
.fsd_c01102{font-size:43.333333pt;}
.fsc_c01102{font-size:61.333333pt;}
.fse_c01102{font-size:66.000000pt;}
.fs4_c01102{font-size:68.666667pt;}
.fs1_c01102{font-size:70.000000pt;}
.fs7_c01102{font-size:70.666667pt;}
.fs2_c01102{font-size:71.333333pt;}
.fs3_c01102{font-size:72.000000pt;}
.fs0_c01102{font-size:72.666667pt;}
.fs5_c01102{font-size:73.333333pt;}
.fs6_c01102{font-size:74.000000pt;}
.fs8_c01102{font-size:80.666667pt;}
.y0_c01102{bottom:0.000000pt;}
.y1e_c01102{bottom:216.319333pt;}
.y1c_c01102{bottom:243.199973pt;}
.y1d_c01102{bottom:243.200667pt;}
.y1b_c01102{bottom:269.759720pt;}
.y1a_c01102{bottom:269.759893pt;}
.y19_c01102{bottom:322.240667pt;}
.y18_c01102{bottom:348.480507pt;}
.y17_c01102{bottom:375.039587pt;}
.y16_c01102{bottom:382.400387pt;}
.y15_c01102{bottom:429.120120pt;}
.y14_c01102{bottom:455.359867pt;}
.y12_c01102{bottom:482.239173pt;}
.y13_c01102{bottom:482.239707pt;}
.y11_c01102{bottom:534.399787pt;}
.y10_c01102{bottom:561.279707pt;}
.yf_c01102{bottom:561.279947pt;}
.ye_c01102{bottom:614.399453pt;}
.yd_c01102{bottom:640.960000pt;}
.yc_c01102{bottom:667.839840pt;}
.yb_c01102{bottom:720.959467pt;}
.ya_c01102{bottom:747.520013pt;}
.y9_c01102{bottom:774.079973pt;}
.y8_c01102{bottom:826.879307pt;}
.y7_c01102{bottom:853.120600pt;}
.y6_c01102{bottom:880.000493pt;}
.y5_c01102{bottom:933.439453pt;}
.y4_c01102{bottom:960.319333pt;}
.y3_c01102{bottom:960.320213pt;}
.y2_c01102{bottom:986.879960pt;}
.y1_c01102{bottom:1013.119547pt;}
.h10_c01102{height:37.546875pt;}
.he_c01102{height:38.242188pt;}
.hf_c01102{height:40.190104pt;}
.h11_c01102{height:42.414062pt;}
.h13_c01102{height:42.508138pt;}
.h12_c01102{height:60.165365pt;}
.h15_c01102{height:64.775391pt;}
.hc_c01102{height:67.392578pt;}
.h2_c01102{height:68.701172pt;}
.hd_c01102{height:69.355469pt;}
.h3_c01102{height:69.974935pt;}
.hb_c01102{height:70.009766pt;}
.h14_c01102{height:70.664062pt;}
.h8_c01102{height:71.218750pt;}
.h5_c01102{height:71.617188pt;}
.h9_c01102{height:71.890625pt;}
.h6_c01102{height:71.936849pt;}
.h4_c01102{height:72.562500pt;}
.h7_c01102{height:72.590820pt;}
.h1_c01102{height:73.234375pt;}
.ha_c01102{height:79.721354pt;}
.h0_c01102{height:1122.666667pt;}
.w0_c01102{width:793.333333pt;}
.x0_c01102{left:0.000000pt;}
.x6_c01102{left:118.398920pt;}
.x1_c01102{left:120.000000pt;}
.x3_c01102{left:121.599653pt;}
.x1b_c01102{left:164.159200pt;}
.x2_c01102{left:165.758813pt;}
.x19_c01102{left:175.678667pt;}
.x5_c01102{left:178.879333pt;}
.x12_c01102{left:187.199733pt;}
.x10_c01102{left:189.118667pt;}
.x1c_c01102{left:194.879867pt;}
.x11_c01102{left:202.558533pt;}
.x1a_c01102{left:205.440000pt;}
.x13_c01102{left:213.439453pt;}
.x7_c01102{left:224.958920pt;}
.xc_c01102{left:234.238787pt;}
.x14_c01102{left:254.399453pt;}
.x8_c01102{left:258.559587pt;}
.x9_c01102{left:272.958920pt;}
.x15_c01102{left:283.199733pt;}
.x1d_c01102{left:290.559067pt;}
.xd_c01102{left:299.838933pt;}
.x1e_c01102{left:308.480000pt;}
.xe_c01102{left:322.879333pt;}
.x1f_c01102{left:338.559067pt;}
.x4_c01102{left:361.278813pt;}
.x20_c01102{left:413.759720pt;}
.xf_c01102{left:444.159707pt;}
.x21_c01102{left:471.039587pt;}
.xa_c01102{left:481.918907pt;}
.xb_c01102{left:503.679200pt;}
.x16_c01102{left:511.678707pt;}
.x17_c01102{left:524.799320pt;}
.x18_c01102{left:627.518520pt;}
}





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

.ir_c01103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_81eb65de50077d019e21cf18.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01103;src:url('chunks/assets/font_c1056a603cfb35e4ef65fe29.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01103;src:url('chunks/assets/font_50f895dd3c68455cc6a143a6.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01103;src:url('chunks/assets/font_1841bcc15f89ad2602555823.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01103;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff5_c01103{font-family:ff5_c01103;line-height:1.432129;font-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_c01103{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.mc_c01103{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.ma_c01103{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m10_c01103{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m6_c01103{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.me_c01103{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_c01103{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m3_c01103{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m4_c01103{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m15_c01103{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m13_c01103{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m7_c01103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01103{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m2_c01103{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m8_c01103{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m1_c01103{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m11_c01103{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m14_c01103{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m5_c01103{transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273364,0.000000,0.000000,0.250000,0,0);}
.mf_c01103{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_c01103{transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282710,0.000000,0.000000,0.250000,0,0);}
.md_c01103{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m9_c01103{transform:matrix(0.327320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327320,0.000000,0.000000,0.250000,0,0);}
.v0_c01103{vertical-align:0.000000px;}
.lsa_c01103{letter-spacing:-8.025803px;}
.ls17_c01103{letter-spacing:-7.294725px;}
.ls19_c01103{letter-spacing:-6.814500px;}
.ls10_c01103{letter-spacing:-5.945625px;}
.ls21_c01103{letter-spacing:-5.196713px;}
.ls9_c01103{letter-spacing:-4.798950px;}
.ls20_c01103{letter-spacing:-4.475850px;}
.ls12_c01103{letter-spacing:-4.407923px;}
.ls3_c01103{letter-spacing:-4.380750px;}
.ls1a_c01103{letter-spacing:-4.334498px;}
.ls15_c01103{letter-spacing:-3.717000px;}
.ls14_c01103{letter-spacing:-3.680850px;}
.ls13_c01103{letter-spacing:-3.433800px;}
.ls6_c01103{letter-spacing:-3.209198px;}
.ls4_c01103{letter-spacing:-2.968875px;}
.ls1b_c01103{letter-spacing:-2.470950px;}
.lsb_c01103{letter-spacing:-2.407500px;}
.ls8_c01103{letter-spacing:-2.335275px;}
.lsf_c01103{letter-spacing:-2.229413px;}
.ls7_c01103{letter-spacing:-1.605000px;}
.ls1c_c01103{letter-spacing:-1.529543px;}
.ls1e_c01103{letter-spacing:-1.526963px;}
.lsd_c01103{letter-spacing:-1.489163px;}
.ls1d_c01103{letter-spacing:-1.399950px;}
.lsc_c01103{letter-spacing:-0.801698px;}
.ls11_c01103{letter-spacing:-0.747300px;}
.lse_c01103{letter-spacing:-0.740250px;}
.ls5_c01103{letter-spacing:-0.738555px;}
.ls2_c01103{letter-spacing:0.000000px;}
.ls1_c01103{letter-spacing:0.740250px;}
.ls16_c01103{letter-spacing:0.801698px;}
.ls1f_c01103{letter-spacing:1.605000px;}
.ls0_c01103{letter-spacing:2.229413px;}
.ls18_c01103{letter-spacing:11.662500px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01103{word-spacing:0.000000px;}
._b_c01103{margin-left:-8.350366px;}
._c_c01103{margin-left:-4.731119px;}
._17_c01103{margin-left:-3.669869px;}
._14_c01103{margin-left:-1.992524px;}
._7_c01103{width:1.921738px;}
._18_c01103{width:3.437958px;}
._6_c01103{width:4.624287px;}
._5_c01103{width:6.208236px;}
._19_c01103{width:7.220409px;}
._4_c01103{width:8.264627px;}
._8_c01103{width:9.543123px;}
._1_c01103{width:11.492567px;}
._9_c01103{width:12.713289px;}
._0_c01103{width:14.600524px;}
._13_c01103{width:16.798039px;}
._2_c01103{width:19.085665px;}
._3_c01103{width:20.785199px;}
._a_c01103{width:22.916842px;}
._d_c01103{width:24.699454px;}
._16_c01103{width:26.032105px;}
._e_c01103{width:27.408893px;}
._15_c01103{width:28.618583px;}
._f_c01103{width:31.028704px;}
._10_c01103{width:32.901349px;}
._12_c01103{width:34.257454px;}
._11_c01103{width:42.389832px;}
.fc0_c01103{color:transparent;}
.fs4_c01103{font-size:72.750000px;}
.fs6_c01103{font-size:75.000000px;}
.fs8_c01103{font-size:76.500000px;}
.fs7_c01103{font-size:77.250000px;}
.fs0_c01103{font-size:78.750000px;}
.fs2_c01103{font-size:79.500000px;}
.fs3_c01103{font-size:80.250000px;}
.fs9_c01103{font-size:81.750000px;}
.fs1_c01103{font-size:82.500000px;}
.fs5_c01103{font-size:96.000000px;}
.y0_c01103{bottom:0.000000px;}
.y21_c01103{bottom:238.680750px;}
.y20_c01103{bottom:268.559685px;}
.y1f_c01103{bottom:298.081035px;}
.y1e_c01103{bottom:298.081140px;}
.y1d_c01103{bottom:357.840585px;}
.y1c_c01103{bottom:387.720405px;}
.y1b_c01103{bottom:417.600135px;}
.y1a_c01103{bottom:417.600225px;}
.y19_c01103{bottom:447.840135px;}
.y18_c01103{bottom:447.840930px;}
.y17_c01103{bottom:507.960570px;}
.y16_c01103{bottom:537.839535px;}
.y15_c01103{bottom:537.840435px;}
.y14_c01103{bottom:567.720150px;}
.y13_c01103{bottom:567.720285px;}
.y12_c01103{bottom:597.239820px;}
.y11_c01103{bottom:597.240030px;}
.y10_c01103{bottom:656.280900px;}
.yf_c01103{bottom:686.159910px;}
.ye_c01103{bottom:716.399820px;}
.yd_c01103{bottom:746.280435px;}
.yc_c01103{bottom:806.039985px;}
.yb_c01103{bottom:835.920540px;}
.y9_c01103{bottom:866.159775px;}
.ya_c01103{bottom:866.160465px;}
.y7_c01103{bottom:895.320030px;}
.y8_c01103{bottom:895.320930px;}
.y6_c01103{bottom:955.439670px;}
.y5_c01103{bottom:985.320285px;}
.y4_c01103{bottom:1014.840090px;}
.y3_c01103{bottom:1074.960570px;}
.y2_c01103{bottom:1104.480285px;}
.y1_c01103{bottom:1134.720150px;}
.ha_c01103{height:73.571777px;}
.hc_c01103{height:75.080566px;}
.h8_c01103{height:75.875977px;}
.h1_c01103{height:77.288818px;}
.hb_c01103{height:77.853516px;}
.h3_c01103{height:78.024902px;}
.h4_c01103{height:78.721802px;}
.h6_c01103{height:78.760986px;}
.h7_c01103{height:80.121094px;}
.hd_c01103{height:80.233154px;}
.h5_c01103{height:80.876953px;}
.h2_c01103{height:80.969238px;}
.h9_c01103{height:100.125000px;}
.h0_c01103{height:1263.000000px;}
.w0_c01103{width:892.500000px;}
.x0_c01103{left:0.000000px;}
.x27_c01103{left:134.639100px;}
.x17_c01103{left:135.718500px;}
.x4_c01103{left:136.799565px;}
.x1_c01103{left:138.239850px;}
.x5_c01103{left:162.718500px;}
.x1f_c01103{left:212.399250px;}
.xd_c01103{left:214.559685px;}
.x2_c01103{left:218.878950px;}
.x6_c01103{left:223.199850px;}
.x7_c01103{left:254.519100px;}
.x16_c01103{left:263.518635px;}
.x3_c01103{left:268.559685px;}
.x28_c01103{left:275.398635px;}
.x20_c01103{left:299.519685px;}
.x11_c01103{left:304.199850px;}
.x8_c01103{left:305.279250px;}
.xc_c01103{left:308.519100px;}
.x18_c01103{left:313.919535px;}
.x29_c01103{left:320.758500px;}
.x1e_c01103{left:324.000000px;}
.x23_c01103{left:326.519685px;}
.xe_c01103{left:331.918350px;}
.x1a_c01103{left:333.358635px;}
.x19_c01103{left:334.439685px;}
.x9_c01103{left:336.239250px;}
.x24_c01103{left:341.278800px;}
.x21_c01103{left:344.879535px;}
.x1b_c01103{left:348.839535px;}
.xf_c01103{left:349.918950px;}
.x12_c01103{left:351.000000px;}
.x13_c01103{left:373.319850px;}
.x22_c01103{left:378.718530px;}
.x10_c01103{left:438.118785px;}
.x25_c01103{left:443.878320px;}
.x1c_c01103{left:506.879520px;}
.x26_c01103{left:514.438665px;}
.x1d_c01103{left:527.038920px;}
.xa_c01103{left:612.719100px;}
.xb_c01103{left:629.999400px;}
.x14_c01103{left:708.838950px;}
.x15_c01103{left:731.158770px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.lsa_c01103{letter-spacing:-7.134047pt;}
.ls17_c01103{letter-spacing:-6.484200pt;}
.ls19_c01103{letter-spacing:-6.057333pt;}
.ls10_c01103{letter-spacing:-5.285000pt;}
.ls21_c01103{letter-spacing:-4.619300pt;}
.ls9_c01103{letter-spacing:-4.265733pt;}
.ls20_c01103{letter-spacing:-3.978533pt;}
.ls12_c01103{letter-spacing:-3.918153pt;}
.ls3_c01103{letter-spacing:-3.894000pt;}
.ls1a_c01103{letter-spacing:-3.852887pt;}
.ls15_c01103{letter-spacing:-3.304000pt;}
.ls14_c01103{letter-spacing:-3.271867pt;}
.ls13_c01103{letter-spacing:-3.052267pt;}
.ls6_c01103{letter-spacing:-2.852620pt;}
.ls4_c01103{letter-spacing:-2.639000pt;}
.ls1b_c01103{letter-spacing:-2.196400pt;}
.lsb_c01103{letter-spacing:-2.140000pt;}
.ls8_c01103{letter-spacing:-2.075800pt;}
.lsf_c01103{letter-spacing:-1.981700pt;}
.ls7_c01103{letter-spacing:-1.426667pt;}
.ls1c_c01103{letter-spacing:-1.359593pt;}
.ls1e_c01103{letter-spacing:-1.357300pt;}
.lsd_c01103{letter-spacing:-1.323700pt;}
.ls1d_c01103{letter-spacing:-1.244400pt;}
.lsc_c01103{letter-spacing:-0.712620pt;}
.ls11_c01103{letter-spacing:-0.664267pt;}
.lse_c01103{letter-spacing:-0.658000pt;}
.ls5_c01103{letter-spacing:-0.656493pt;}
.ls2_c01103{letter-spacing:0.000000pt;}
.ls1_c01103{letter-spacing:0.658000pt;}
.ls16_c01103{letter-spacing:0.712620pt;}
.ls1f_c01103{letter-spacing:1.426667pt;}
.ls0_c01103{letter-spacing:1.981700pt;}
.ls18_c01103{letter-spacing:10.366667pt;}
.ws0_c01103{word-spacing:0.000000pt;}
._b_c01103{margin-left:-7.422547pt;}
._c_c01103{margin-left:-4.205439pt;}
._17_c01103{margin-left:-3.262106pt;}
._14_c01103{margin-left:-1.771132pt;}
._7_c01103{width:1.708211pt;}
._18_c01103{width:3.055962pt;}
._6_c01103{width:4.110477pt;}
._5_c01103{width:5.518432pt;}
._19_c01103{width:6.418142pt;}
._4_c01103{width:7.346335pt;}
._8_c01103{width:8.482776pt;}
._1_c01103{width:10.215615pt;}
._9_c01103{width:11.300701pt;}
._0_c01103{width:12.978244pt;}
._13_c01103{width:14.931590pt;}
._2_c01103{width:16.965035pt;}
._3_c01103{width:18.475733pt;}
._a_c01103{width:20.370526pt;}
._d_c01103{width:21.955070pt;}
._16_c01103{width:23.139649pt;}
._e_c01103{width:24.363460pt;}
._15_c01103{width:25.438740pt;}
._f_c01103{width:27.581070pt;}
._10_c01103{width:29.245643pt;}
._12_c01103{width:30.451070pt;}
._11_c01103{width:37.679851pt;}
.fs4_c01103{font-size:64.666667pt;}
.fs6_c01103{font-size:66.666667pt;}
.fs8_c01103{font-size:68.000000pt;}
.fs7_c01103{font-size:68.666667pt;}
.fs0_c01103{font-size:70.000000pt;}
.fs2_c01103{font-size:70.666667pt;}
.fs3_c01103{font-size:71.333333pt;}
.fs9_c01103{font-size:72.666667pt;}
.fs1_c01103{font-size:73.333333pt;}
.fs5_c01103{font-size:85.333333pt;}
.y0_c01103{bottom:0.000000pt;}
.y21_c01103{bottom:212.160667pt;}
.y20_c01103{bottom:238.719720pt;}
.y1f_c01103{bottom:264.960920pt;}
.y1e_c01103{bottom:264.961013pt;}
.y1d_c01103{bottom:318.080520pt;}
.y1c_c01103{bottom:344.640360pt;}
.y1b_c01103{bottom:371.200120pt;}
.y1a_c01103{bottom:371.200200pt;}
.y19_c01103{bottom:398.080120pt;}
.y18_c01103{bottom:398.080827pt;}
.y17_c01103{bottom:451.520507pt;}
.y16_c01103{bottom:478.079587pt;}
.y15_c01103{bottom:478.080387pt;}
.y14_c01103{bottom:504.640133pt;}
.y13_c01103{bottom:504.640253pt;}
.y12_c01103{bottom:530.879840pt;}
.y11_c01103{bottom:530.880027pt;}
.y10_c01103{bottom:583.360800pt;}
.yf_c01103{bottom:609.919920pt;}
.ye_c01103{bottom:636.799840pt;}
.yd_c01103{bottom:663.360387pt;}
.yc_c01103{bottom:716.479987pt;}
.yb_c01103{bottom:743.040480pt;}
.y9_c01103{bottom:769.919800pt;}
.ya_c01103{bottom:769.920413pt;}
.y7_c01103{bottom:795.840027pt;}
.y8_c01103{bottom:795.840827pt;}
.y6_c01103{bottom:849.279707pt;}
.y5_c01103{bottom:875.840253pt;}
.y4_c01103{bottom:902.080080pt;}
.y3_c01103{bottom:955.520507pt;}
.y2_c01103{bottom:981.760253pt;}
.y1_c01103{bottom:1008.640133pt;}
.ha_c01103{height:65.397135pt;}
.hc_c01103{height:66.738281pt;}
.h8_c01103{height:67.445312pt;}
.h1_c01103{height:68.701172pt;}
.hb_c01103{height:69.203125pt;}
.h3_c01103{height:69.355469pt;}
.h4_c01103{height:69.974935pt;}
.h6_c01103{height:70.009766pt;}
.h7_c01103{height:71.218750pt;}
.hd_c01103{height:71.318359pt;}
.h5_c01103{height:71.890625pt;}
.h2_c01103{height:71.972656pt;}
.h9_c01103{height:89.000000pt;}
.h0_c01103{height:1122.666667pt;}
.w0_c01103{width:793.333333pt;}
.x0_c01103{left:0.000000pt;}
.x27_c01103{left:119.679200pt;}
.x17_c01103{left:120.638667pt;}
.x4_c01103{left:121.599613pt;}
.x1_c01103{left:122.879867pt;}
.x5_c01103{left:144.638667pt;}
.x1f_c01103{left:188.799333pt;}
.xd_c01103{left:190.719720pt;}
.x2_c01103{left:194.559067pt;}
.x6_c01103{left:198.399867pt;}
.x7_c01103{left:226.239200pt;}
.x16_c01103{left:234.238787pt;}
.x3_c01103{left:238.719720pt;}
.x28_c01103{left:244.798787pt;}
.x20_c01103{left:266.239720pt;}
.x11_c01103{left:270.399867pt;}
.x8_c01103{left:271.359333pt;}
.xc_c01103{left:274.239200pt;}
.x18_c01103{left:279.039587pt;}
.x29_c01103{left:285.118667pt;}
.x1e_c01103{left:288.000000pt;}
.x23_c01103{left:290.239720pt;}
.xe_c01103{left:295.038533pt;}
.x1a_c01103{left:296.318787pt;}
.x19_c01103{left:297.279720pt;}
.x9_c01103{left:298.879333pt;}
.x24_c01103{left:303.358933pt;}
.x21_c01103{left:306.559587pt;}
.x1b_c01103{left:310.079587pt;}
.xf_c01103{left:311.039067pt;}
.x12_c01103{left:312.000000pt;}
.x13_c01103{left:331.839867pt;}
.x22_c01103{left:336.638693pt;}
.x10_c01103{left:389.438920pt;}
.x25_c01103{left:394.558507pt;}
.x1c_c01103{left:450.559573pt;}
.x26_c01103{left:457.278813pt;}
.x1d_c01103{left:468.479040pt;}
.xa_c01103{left:544.639200pt;}
.xb_c01103{left:559.999467pt;}
.x14_c01103{left:630.079067pt;}
.x15_c01103{left:649.918907pt;}
}





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

.ir_c01104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_db48dfe6812d9388e83a678a.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01104;src:url('chunks/assets/font_ea0ffd86867c44ad5f49cb75.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01104;src:url('chunks/assets/font_c5bb9fb46f437887a3d3a9f1.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01104;src:url('chunks/assets/font_f94925f2c3fad57bef5ceb38.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01104;src:url('chunks/assets/font_7462d9348236b90560cfa660.woff2')format("woff");}.ff5_c01104{font-family:ff5_c01104;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01104;src:url('chunks/assets/font_29e924c0015a771aef7a7834.woff2')format("woff");}.ff6_c01104{font-family:ff6_c01104;line-height:1.432129;font-style:normal;font-weight: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_c01104;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff7_c01104{font-family:ff7_c01104;line-height:1.432129;font-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_c01104{transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188596,0.000000,0.000000,0.250000,0,0);}
.m12_c01104{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m4_c01104{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c01104{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m10_c01104{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m0_c01104{transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);}
.m17_c01104{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m1d_c01104{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m19_c01104{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m13_c01104{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m7_c01104{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m1_c01104{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m14_c01104{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.md_c01104{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m16_c01104{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.ma_c01104{transform:matrix(0.234914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234914,0.000000,0.000000,0.250000,0,0);}
.m9_c01104{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1c_c01104{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1b_c01104{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.me_c01104{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m6_c01104{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m18_c01104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01104{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c01104{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m8_c01104{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mb_c01104{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m15_c01104{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m1a_c01104{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.mc_c01104{transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);}
.mf_c01104{transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418750,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.ls19_c01104{letter-spacing:-15.964500px;}
.lsa_c01104{letter-spacing:-11.142338px;}
.ls28_c01104{letter-spacing:-9.754725px;}
.lsc_c01104{letter-spacing:-8.835750px;}
.ls11_c01104{letter-spacing:-8.095500px;}
.lsf_c01104{letter-spacing:-6.623663px;}
.ls7_c01104{letter-spacing:-5.933347px;}
.ls2a_c01104{letter-spacing:-5.890500px;}
.ls25_c01104{letter-spacing:-5.150250px;}
.ls21_c01104{letter-spacing:-4.862348px;}
.ls18_c01104{letter-spacing:-4.753575px;}
.ls10_c01104{letter-spacing:-4.418663px;}
.ls1f_c01104{letter-spacing:-3.974895px;}
.lsb_c01104{letter-spacing:-3.678413px;}
.ls24_c01104{letter-spacing:-3.545775px;}
.lse_c01104{letter-spacing:-2.945250px;}
.ls23_c01104{letter-spacing:-2.835075px;}
.ls14_c01104{letter-spacing:-2.431575px;}
.ls16_c01104{letter-spacing:-2.267213px;}
.ls1d_c01104{letter-spacing:-2.238000px;}
.ls12_c01104{letter-spacing:-2.205000px;}
.ls9_c01104{letter-spacing:-1.621050px;}
.ls2b_c01104{letter-spacing:-1.544288px;}
.ls27_c01104{letter-spacing:-1.503345px;}
.lsd_c01104{letter-spacing:-1.473413px;}
.ls1e_c01104{letter-spacing:-1.344000px;}
.ls8_c01104{letter-spacing:-0.810525px;}
.ls22_c01104{letter-spacing:-0.809190px;}
.ls17_c01104{letter-spacing:-0.731588px;}
.ls13_c01104{letter-spacing:0.000000px;}
.ls5_c01104{letter-spacing:0.446700px;}
.ls6_c01104{letter-spacing:0.810525px;}
.ls29_c01104{letter-spacing:0.825675px;}
.ls3_c01104{letter-spacing:0.894000px;}
.ls0_c01104{letter-spacing:1.473413px;}
.ls20_c01104{letter-spacing:1.650000px;}
.ls26_c01104{letter-spacing:2.417183px;}
.ls1_c01104{letter-spacing:3.123750px;}
.ls4_c01104{letter-spacing:3.135300px;}
.ls2_c01104{letter-spacing:4.164150px;}
.ls1b_c01104{letter-spacing:4.846800px;}
.ls15_c01104{letter-spacing:8.901090px;}
.ls1a_c01104{letter-spacing:9.888900px;}
.ls1c_c01104{letter-spacing:9.993750px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01104{word-spacing:0.000000px;}
._19_c01104{margin-left:-22.281702px;}
._1a_c01104{margin-left:-19.293485px;}
._18_c01104{margin-left:-15.199147px;}
._13_c01104{margin-left:-12.808354px;}
._e_c01104{margin-left:-8.134137px;}
._d_c01104{margin-left:-6.717134px;}
._14_c01104{margin-left:-4.126116px;}
._15_c01104{margin-left:-2.695135px;}
._a_c01104{width:1.653779px;}
._7_c01104{width:3.355162px;}
._3_c01104{width:4.647744px;}
._0_c01104{width:6.215565px;}
._4_c01104{width:7.992580px;}
._11_c01104{width:9.099805px;}
._1_c01104{width:10.906251px;}
._f_c01104{width:11.966946px;}
._10_c01104{width:13.603200px;}
._8_c01104{width:14.645738px;}
._9_c01104{width:15.911982px;}
._17_c01104{width:17.678530px;}
._1b_c01104{width:18.944374px;}
._1c_c01104{width:21.431172px;}
._2_c01104{width:22.910295px;}
._16_c01104{width:26.861934px;}
._12_c01104{width:28.204143px;}
._c_c01104{width:30.352627px;}
._b_c01104{width:33.910070px;}
._5_c01104{width:36.274391px;}
._6_c01104{width:45.891284px;}
.fc0_c01104{color:transparent;}
.fs9_c01104{font-size:25.500000px;}
.fsc_c01104{font-size:30.000000px;}
.fsb_c01104{font-size:30.750000px;}
.fs8_c01104{font-size:38.250000px;}
.fsa_c01104{font-size:42.000000px;}
.fs10_c01104{font-size:75.750000px;}
.fs4_c01104{font-size:76.500000px;}
.fsf_c01104{font-size:77.250000px;}
.fs5_c01104{font-size:78.000000px;}
.fs2_c01104{font-size:78.750000px;}
.fs11_c01104{font-size:79.500000px;}
.fs1_c01104{font-size:80.250000px;}
.fs3_c01104{font-size:81.000000px;}
.fs12_c01104{font-size:81.750000px;}
.fse_c01104{font-size:82.500000px;}
.fs6_c01104{font-size:83.250000px;}
.fs0_c01104{font-size:84.750000px;}
.fsd_c01104{font-size:85.500000px;}
.fs7_c01104{font-size:87.000000px;}
.fs13_c01104{font-size:96.000000px;}
.y0_c01104{bottom:0.000000px;}
.y22_c01104{bottom:180.719100px;}
.y21_c01104{bottom:210.238785px;}
.y1f_c01104{bottom:240.838785px;}
.y20_c01104{bottom:240.839535px;}
.y1e_c01104{bottom:300.239850px;}
.y1c_c01104{bottom:329.758800px;}
.y1d_c01104{bottom:329.759535px;}
.y1a_c01104{bottom:359.638485px;}
.y1b_c01104{bottom:359.638530px;}
.y18_c01104{bottom:389.159565px;}
.y19_c01104{bottom:389.159820px;}
.y17_c01104{bottom:449.639700px;}
.y16_c01104{bottom:480.238770px;}
.y14_c01104{bottom:510.478095px;}
.y15_c01104{bottom:510.478635px;}
.y13_c01104{bottom:569.158770px;}
.y12_c01104{bottom:598.678530px;}
.y11_c01104{bottom:628.559100px;}
.y10_c01104{bottom:659.159820px;}
.yf_c01104{bottom:659.160615px;}
.ye_c01104{bottom:718.199385px;}
.yd_c01104{bottom:747.539385px;}
.yc_c01104{bottom:753.839535px;}
.yb_c01104{bottom:777.598875px;}
.ya_c01104{bottom:837.718500px;}
.y9_c01104{bottom:867.239865px;}
.y7_c01104{bottom:897.838170px;}
.y8_c01104{bottom:897.838905px;}
.y6_c01104{bottom:957.239220px;}
.y4_c01104{bottom:987.478410px;}
.y5_c01104{bottom:987.479190px;}
.y3_c01104{bottom:1017.718320px;}
.y2_c01104{bottom:1077.119385px;}
.y1_c01104{bottom:1106.279850px;}
.hc_c01104{height:26.595703px;}
.hf_c01104{height:31.289062px;}
.he_c01104{height:32.071289px;}
.hb_c01104{height:39.893555px;}
.hd_c01104{height:43.804688px;}
.h14_c01104{height:74.344482px;}
.h7_c01104{height:75.080566px;}
.h13_c01104{height:75.816650px;}
.h1a_c01104{height:76.552734px;}
.h3_c01104{height:77.250366px;}
.h4_c01104{height:77.288818px;}
.h16_c01104{height:78.024902px;}
.h8_c01104{height:78.609375px;}
.h2_c01104{height:78.721802px;}
.h5_c01104{height:78.760986px;}
.h12_c01104{height:79.457520px;}
.h6_c01104{height:79.497070px;}
.h18_c01104{height:80.233154px;}
.h11_c01104{height:80.928955px;}
.h17_c01104{height:83.177490px;}
.h1_c01104{height:83.756836px;}
.h9_c01104{height:83.900391px;}
.h15_c01104{height:83.913574px;}
.h10_c01104{height:84.498047px;}
.ha_c01104{height:85.980469px;}
.h19_c01104{height:100.125000px;}
.h0_c01104{height:1263.000000px;}
.w0_c01104{width:892.500000px;}
.x0_c01104{left:0.000000px;}
.x31_c01104{left:135.359250px;}
.x6_c01104{left:136.438665px;}
.x1_c01104{left:137.519685px;}
.x3_c01104{left:138.599100px;}
.x13_c01104{left:148.679700px;}
.x15_c01104{left:159.119415px;}
.x20_c01104{left:160.198785px;}
.x2_c01104{left:164.519685px;}
.x23_c01104{left:167.398665px;}
.x25_c01104{left:199.798950px;}
.xf_c01104{left:217.799535px;}
.x2d_c01104{left:226.078785px;}
.x26_c01104{left:230.759100px;}
.x2e_c01104{left:237.238785px;}
.x10_c01104{left:241.918950px;}
.x35_c01104{left:246.239850px;}
.x36_c01104{left:271.079385px;}
.x29_c01104{left:275.759535px;}
.x7_c01104{left:286.558635px;}
.x2a_c01104{left:303.479685px;}
.x8_c01104{left:310.679700px;}
.x1b_c01104{left:317.518635px;}
.x2f_c01104{left:318.958950px;}
.x14_c01104{left:324.359250px;}
.x27_c01104{left:330.118785px;}
.x30_c01104{left:332.638530px;}
.x9_c01104{left:340.558635px;}
.x16_c01104{left:349.198785px;}
.x28_c01104{left:362.519100px;}
.x17_c01104{left:363.959385px;}
.xb_c01104{left:366.838515px;}
.xa_c01104{left:371.518635px;}
.x1a_c01104{left:378.718530px;}
.xc_c01104{left:382.319235px;}
.x11_c01104{left:383.398635px;}
.x32_c01104{left:413.279250px;}
.x12_c01104{left:425.518665px;}
.x1c_c01104{left:429.478635px;}
.x33_c01104{left:432.359250px;}
.x1d_c01104{left:443.159820px;}
.x34_c01104{left:462.958335px;}
.x18_c01104{left:520.199850px;}
.x19_c01104{left:534.958920px;}
.x21_c01104{left:554.038920px;}
.xd_c01104{left:584.998950px;}
.x22_c01104{left:587.518620px;}
.x24_c01104{left:610.558635px;}
.x4_c01104{left:613.798515px;}
.x1e_c01104{left:616.319820px;}
.x5_c01104{left:628.918350px;}
.x2b_c01104{left:633.959385px;}
.x1f_c01104{left:636.119985px;}
.xe_c01104{left:640.798515px;}
.x2c_c01104{left:657.358605px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls19_c01104{letter-spacing:-14.190667pt;}
.lsa_c01104{letter-spacing:-9.904300pt;}
.ls28_c01104{letter-spacing:-8.670867pt;}
.lsc_c01104{letter-spacing:-7.854000pt;}
.ls11_c01104{letter-spacing:-7.196000pt;}
.lsf_c01104{letter-spacing:-5.887700pt;}
.ls7_c01104{letter-spacing:-5.274087pt;}
.ls2a_c01104{letter-spacing:-5.236000pt;}
.ls25_c01104{letter-spacing:-4.578000pt;}
.ls21_c01104{letter-spacing:-4.322087pt;}
.ls18_c01104{letter-spacing:-4.225400pt;}
.ls10_c01104{letter-spacing:-3.927700pt;}
.ls1f_c01104{letter-spacing:-3.533240pt;}
.lsb_c01104{letter-spacing:-3.269700pt;}
.ls24_c01104{letter-spacing:-3.151800pt;}
.lse_c01104{letter-spacing:-2.618000pt;}
.ls23_c01104{letter-spacing:-2.520067pt;}
.ls14_c01104{letter-spacing:-2.161400pt;}
.ls16_c01104{letter-spacing:-2.015300pt;}
.ls1d_c01104{letter-spacing:-1.989333pt;}
.ls12_c01104{letter-spacing:-1.960000pt;}
.ls9_c01104{letter-spacing:-1.440933pt;}
.ls2b_c01104{letter-spacing:-1.372700pt;}
.ls27_c01104{letter-spacing:-1.336307pt;}
.lsd_c01104{letter-spacing:-1.309700pt;}
.ls1e_c01104{letter-spacing:-1.194667pt;}
.ls8_c01104{letter-spacing:-0.720467pt;}
.ls22_c01104{letter-spacing:-0.719280pt;}
.ls17_c01104{letter-spacing:-0.650300pt;}
.ls13_c01104{letter-spacing:0.000000pt;}
.ls5_c01104{letter-spacing:0.397067pt;}
.ls6_c01104{letter-spacing:0.720467pt;}
.ls29_c01104{letter-spacing:0.733933pt;}
.ls3_c01104{letter-spacing:0.794667pt;}
.ls0_c01104{letter-spacing:1.309700pt;}
.ls20_c01104{letter-spacing:1.466667pt;}
.ls26_c01104{letter-spacing:2.148607pt;}
.ls1_c01104{letter-spacing:2.776667pt;}
.ls4_c01104{letter-spacing:2.786933pt;}
.ls2_c01104{letter-spacing:3.701467pt;}
.ls1b_c01104{letter-spacing:4.308267pt;}
.ls15_c01104{letter-spacing:7.912080pt;}
.ls1a_c01104{letter-spacing:8.790133pt;}
.ls1c_c01104{letter-spacing:8.883333pt;}
.ws0_c01104{word-spacing:0.000000pt;}
._19_c01104{margin-left:-19.805957pt;}
._1a_c01104{margin-left:-17.149764pt;}
._18_c01104{margin-left:-13.510353pt;}
._13_c01104{margin-left:-11.385204pt;}
._e_c01104{margin-left:-7.230344pt;}
._d_c01104{margin-left:-5.970786pt;}
._14_c01104{margin-left:-3.667659pt;}
._15_c01104{margin-left:-2.395676pt;}
._a_c01104{width:1.470026pt;}
._7_c01104{width:2.982366pt;}
._3_c01104{width:4.131328pt;}
._0_c01104{width:5.524947pt;}
._4_c01104{width:7.104516pt;}
._11_c01104{width:8.088716pt;}
._1_c01104{width:9.694445pt;}
._f_c01104{width:10.637286pt;}
._10_c01104{width:12.091734pt;}
._8_c01104{width:13.018434pt;}
._9_c01104{width:14.143984pt;}
._17_c01104{width:15.714249pt;}
._1b_c01104{width:16.839443pt;}
._1c_c01104{width:19.049931pt;}
._2_c01104{width:20.364706pt;}
._16_c01104{width:23.877275pt;}
._12_c01104{width:25.070350pt;}
._c_c01104{width:26.980112pt;}
._b_c01104{width:30.142284pt;}
._5_c01104{width:32.243903pt;}
._6_c01104{width:40.792252pt;}
.fs9_c01104{font-size:22.666667pt;}
.fsc_c01104{font-size:26.666667pt;}
.fsb_c01104{font-size:27.333333pt;}
.fs8_c01104{font-size:34.000000pt;}
.fsa_c01104{font-size:37.333333pt;}
.fs10_c01104{font-size:67.333333pt;}
.fs4_c01104{font-size:68.000000pt;}
.fsf_c01104{font-size:68.666667pt;}
.fs5_c01104{font-size:69.333333pt;}
.fs2_c01104{font-size:70.000000pt;}
.fs11_c01104{font-size:70.666667pt;}
.fs1_c01104{font-size:71.333333pt;}
.fs3_c01104{font-size:72.000000pt;}
.fs12_c01104{font-size:72.666667pt;}
.fse_c01104{font-size:73.333333pt;}
.fs6_c01104{font-size:74.000000pt;}
.fs0_c01104{font-size:75.333333pt;}
.fsd_c01104{font-size:76.000000pt;}
.fs7_c01104{font-size:77.333333pt;}
.fs13_c01104{font-size:85.333333pt;}
.y0_c01104{bottom:0.000000pt;}
.y22_c01104{bottom:160.639200pt;}
.y21_c01104{bottom:186.878920pt;}
.y1f_c01104{bottom:214.078920pt;}
.y20_c01104{bottom:214.079587pt;}
.y1e_c01104{bottom:266.879867pt;}
.y1c_c01104{bottom:293.118933pt;}
.y1d_c01104{bottom:293.119587pt;}
.y1a_c01104{bottom:319.678653pt;}
.y1b_c01104{bottom:319.678693pt;}
.y18_c01104{bottom:345.919613pt;}
.y19_c01104{bottom:345.919840pt;}
.y17_c01104{bottom:399.679733pt;}
.y16_c01104{bottom:426.878907pt;}
.y14_c01104{bottom:453.758307pt;}
.y15_c01104{bottom:453.758787pt;}
.y13_c01104{bottom:505.918907pt;}
.y12_c01104{bottom:532.158693pt;}
.y11_c01104{bottom:558.719200pt;}
.y10_c01104{bottom:585.919840pt;}
.yf_c01104{bottom:585.920547pt;}
.ye_c01104{bottom:638.399453pt;}
.yd_c01104{bottom:664.479453pt;}
.yc_c01104{bottom:670.079587pt;}
.yb_c01104{bottom:691.199000pt;}
.ya_c01104{bottom:744.638667pt;}
.y9_c01104{bottom:770.879880pt;}
.y7_c01104{bottom:798.078373pt;}
.y8_c01104{bottom:798.079027pt;}
.y6_c01104{bottom:850.879307pt;}
.y4_c01104{bottom:877.758587pt;}
.y5_c01104{bottom:877.759280pt;}
.y3_c01104{bottom:904.638507pt;}
.y2_c01104{bottom:957.439453pt;}
.y1_c01104{bottom:983.359867pt;}
.hc_c01104{height:23.640625pt;}
.hf_c01104{height:27.812500pt;}
.he_c01104{height:28.507812pt;}
.hb_c01104{height:35.460938pt;}
.hd_c01104{height:38.937500pt;}
.h14_c01104{height:66.083984pt;}
.h7_c01104{height:66.738281pt;}
.h13_c01104{height:67.392578pt;}
.h1a_c01104{height:68.046875pt;}
.h3_c01104{height:68.666992pt;}
.h4_c01104{height:68.701172pt;}
.h16_c01104{height:69.355469pt;}
.h8_c01104{height:69.875000pt;}
.h2_c01104{height:69.974935pt;}
.h5_c01104{height:70.009766pt;}
.h12_c01104{height:70.628906pt;}
.h6_c01104{height:70.664062pt;}
.h18_c01104{height:71.318359pt;}
.h11_c01104{height:71.936849pt;}
.h17_c01104{height:73.935547pt;}
.h1_c01104{height:74.450521pt;}
.h9_c01104{height:74.578125pt;}
.h15_c01104{height:74.589844pt;}
.h10_c01104{height:75.109375pt;}
.ha_c01104{height:76.427083pt;}
.h19_c01104{height:89.000000pt;}
.h0_c01104{height:1122.666667pt;}
.w0_c01104{width:793.333333pt;}
.x0_c01104{left:0.000000pt;}
.x31_c01104{left:120.319333pt;}
.x6_c01104{left:121.278813pt;}
.x1_c01104{left:122.239720pt;}
.x3_c01104{left:123.199200pt;}
.x13_c01104{left:132.159733pt;}
.x15_c01104{left:141.439480pt;}
.x20_c01104{left:142.398920pt;}
.x2_c01104{left:146.239720pt;}
.x23_c01104{left:148.798813pt;}
.x25_c01104{left:177.599067pt;}
.xf_c01104{left:193.599587pt;}
.x2d_c01104{left:200.958920pt;}
.x26_c01104{left:205.119200pt;}
.x2e_c01104{left:210.878920pt;}
.x10_c01104{left:215.039067pt;}
.x35_c01104{left:218.879867pt;}
.x36_c01104{left:240.959453pt;}
.x29_c01104{left:245.119587pt;}
.x7_c01104{left:254.718787pt;}
.x2a_c01104{left:269.759720pt;}
.x8_c01104{left:276.159733pt;}
.x1b_c01104{left:282.238787pt;}
.x2f_c01104{left:283.519067pt;}
.x14_c01104{left:288.319333pt;}
.x27_c01104{left:293.438920pt;}
.x30_c01104{left:295.678693pt;}
.x9_c01104{left:302.718787pt;}
.x16_c01104{left:310.398920pt;}
.x28_c01104{left:322.239200pt;}
.x17_c01104{left:323.519453pt;}
.xb_c01104{left:326.078680pt;}
.xa_c01104{left:330.238787pt;}
.x1a_c01104{left:336.638693pt;}
.xc_c01104{left:339.839320pt;}
.x11_c01104{left:340.798787pt;}
.x32_c01104{left:367.359333pt;}
.x12_c01104{left:378.238813pt;}
.x1c_c01104{left:381.758787pt;}
.x33_c01104{left:384.319333pt;}
.x1d_c01104{left:393.919840pt;}
.x34_c01104{left:411.518520pt;}
.x18_c01104{left:462.399867pt;}
.x19_c01104{left:475.519040pt;}
.x21_c01104{left:492.479040pt;}
.xd_c01104{left:519.999067pt;}
.x22_c01104{left:522.238773pt;}
.x24_c01104{left:542.718787pt;}
.x4_c01104{left:545.598680pt;}
.x1e_c01104{left:547.839840pt;}
.x5_c01104{left:559.038533pt;}
.x2b_c01104{left:563.519453pt;}
.x1f_c01104{left:565.439987pt;}
.xe_c01104{left:569.598680pt;}
.x2c_c01104{left:584.318760pt;}
}





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

.ir_c01105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_4d2ac35340d3cdbc28f3f7e9.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01105;src:url('chunks/assets/font_941a479584a307bdcc184792.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01105;src:url('chunks/assets/font_2df2b91dbe2de7e7cbd7ac37.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01105;src:url('chunks/assets/font_58dd8e3e4ab74c40c9abf896.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.432129;font-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_c01105{transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184579,0.000000,0.000000,0.250000,0,0);}
.m8_c01105{transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);}
.m10_c01105{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.md_c01105{transform:matrix(0.204741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204741,0.000000,0.000000,0.250000,0,0);}
.mb_c01105{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.me_c01105{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.ma_c01105{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m3_c01105{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.mf_c01105{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m5_c01105{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m0_c01105{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m2_c01105{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.mc_c01105{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m1_c01105{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m6_c01105{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m9_c01105{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_c01105{transform:matrix(0.320093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320093,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls1b_c01105{letter-spacing:-9.082425px;}
.lse_c01105{letter-spacing:-6.811875px;}
.lsf_c01105{letter-spacing:-5.300663px;}
.ls12_c01105{letter-spacing:-5.272425px;}
.ls17_c01105{letter-spacing:-4.542600px;}
.lsb_c01105{letter-spacing:-3.787875px;}
.ls1c_c01105{letter-spacing:-3.303518px;}
.ls9_c01105{letter-spacing:-3.031875px;}
.ls3_c01105{letter-spacing:-2.970000px;}
.ls7_c01105{letter-spacing:-2.477025px;}
.lsc_c01105{letter-spacing:-2.382623px;}
.ls2_c01105{letter-spacing:-2.357100px;}
.ls4_c01105{letter-spacing:-2.267213px;}
.ls11_c01105{letter-spacing:-2.184000px;}
.ls14_c01105{letter-spacing:-2.100000px;}
.ls10_c01105{letter-spacing:-1.651350px;}
.ls1a_c01105{letter-spacing:-1.612800px;}
.lsd_c01105{letter-spacing:-1.589753px;}
.ls8_c01105{letter-spacing:-1.512000px;}
.ls6_c01105{letter-spacing:-0.825675px;}
.lsa_c01105{letter-spacing:-0.756000px;}
.ls5_c01105{letter-spacing:0.000000px;}
.ls15_c01105{letter-spacing:1.512000px;}
.ls0_c01105{letter-spacing:3.031875px;}
.ls1_c01105{letter-spacing:4.543088px;}
.ls16_c01105{letter-spacing:5.861520px;}
.ls18_c01105{letter-spacing:7.325400px;}
.ls19_c01105{letter-spacing:7.994333px;}
.ls1d_c01105{letter-spacing:11.169090px;}
.ls13_c01105{letter-spacing:17.121000px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01105{word-spacing:0.000000px;}
._d_c01105{margin-left:-19.706582px;}
._0_c01105{margin-left:-13.611656px;}
._19_c01105{margin-left:-10.960558px;}
._1_c01105{margin-left:-8.763930px;}
._2_c01105{margin-left:-6.268803px;}
._3_c01105{margin-left:-5.095670px;}
._e_c01105{margin-left:-4.062955px;}
._13_c01105{margin-left:-3.019820px;}
._a_c01105{margin-left:-1.824384px;}
._b_c01105{width:1.002221px;}
._4_c01105{width:2.016994px;}
._5_c01105{width:3.388734px;}
._f_c01105{width:5.065866px;}
._6_c01105{width:6.233971px;}
._10_c01105{width:7.452258px;}
._8_c01105{width:8.489311px;}
._7_c01105{width:10.386374px;}
._14_c01105{width:11.522070px;}
._c_c01105{width:13.079309px;}
._16_c01105{width:15.194849px;}
._1b_c01105{width:18.225461px;}
._11_c01105{width:19.518273px;}
._1a_c01105{width:28.223939px;}
._12_c01105{width:29.798818px;}
._18_c01105{width:31.023795px;}
._17_c01105{width:34.268850px;}
._15_c01105{width:35.878318px;}
._9_c01105{width:43.635193px;}
.fc0_c01105{color:transparent;}
.fs7_c01105{font-size:72.000000px;}
.fs6_c01105{font-size:75.000000px;}
.fs5_c01105{font-size:78.000000px;}
.fs2_c01105{font-size:78.750000px;}
.fs4_c01105{font-size:80.250000px;}
.fs0_c01105{font-size:81.000000px;}
.fs3_c01105{font-size:81.750000px;}
.fs1_c01105{font-size:82.500000px;}
.fsa_c01105{font-size:84.000000px;}
.fs8_c01105{font-size:84.750000px;}
.fs9_c01105{font-size:87.000000px;}
.y0_c01105{bottom:0.000000px;}
.y17_c01105{bottom:209.520285px;}
.y16_c01105{bottom:239.401065px;}
.y15_c01105{bottom:268.920600px;}
.y14_c01105{bottom:328.680150px;}
.y13_c01105{bottom:358.199850px;}
.y12_c01105{bottom:388.080465px;}
.y11_c01105{bottom:447.840135px;}
.y10_c01105{bottom:478.800300px;}
.yf_c01105{bottom:508.319820px;}
.ye_c01105{bottom:508.320720px;}
.yd_c01105{bottom:538.200435px;}
.yc_c01105{bottom:597.600720px;}
.yb_c01105{bottom:627.121335px;}
.ya_c01105{bottom:657.001050px;}
.y9_c01105{bottom:836.640750px;}
.y8_c01105{bottom:866.520510px;}
.y7_c01105{bottom:896.400240px;}
.y6_c01105{bottom:956.159820px;}
.y5_c01105{bottom:986.040480px;}
.y4_c01105{bottom:1016.280390px;}
.y3_c01105{bottom:1075.680915px;}
.y2_c01105{bottom:1105.200435px;}
.y1_c01105{bottom:1135.440315px;}
.ha_c01105{height:73.608398px;}
.hb_c01105{height:75.093750px;}
.h9_c01105{height:76.514648px;}
.h7_c01105{height:76.552734px;}
.h3_c01105{height:77.288818px;}
.h5_c01105{height:78.721802px;}
.h8_c01105{height:78.760986px;}
.hf_c01105{height:79.497070px;}
.h4_c01105{height:80.193237px;}
.h6_c01105{height:80.876953px;}
.h2_c01105{height:80.969238px;}
.h1_c01105{height:81.632812px;}
.he_c01105{height:82.441406px;}
.hc_c01105{height:83.177490px;}
.hd_c01105{height:85.385742px;}
.h0_c01105{height:1263.000000px;}
.w0_c01105{width:892.500000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:131.399250px;}
.x4_c01105{left:132.478665px;}
.xf_c01105{left:133.559745px;}
.x1c_c01105{left:135.358890px;}
.x9_c01105{left:190.438665px;}
.x10_c01105{left:191.519685px;}
.xa_c01105{left:214.559685px;}
.x11_c01105{left:215.639100px;}
.x2_c01105{left:233.278800px;}
.x3_c01105{left:266.758500px;}
.x8_c01105{left:275.039385px;}
.x15_c01105{left:276.118785px;}
.x1b_c01105{left:277.199850px;}
.x1d_c01105{left:282.598500px;}
.xb_c01105{left:295.198785px;}
.x12_c01105{left:296.279850px;}
.xc_c01105{left:302.039385px;}
.x1e_c01105{left:306.358635px;}
.x18_c01105{left:320.758500px;}
.xd_c01105{left:334.798950px;}
.x5_c01105{left:339.838515px;}
.x19_c01105{left:350.639100px;}
.xe_c01105{left:360.358635px;}
.x1a_c01105{left:383.039385px;}
.x13_c01105{left:403.918950px;}
.x14_c01105{left:439.559100px;}
.x6_c01105{left:484.198785px;}
.x7_c01105{left:497.159820px;}
.x16_c01105{left:707.398635px;}
.x17_c01105{left:723.238770px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls1b_c01105{letter-spacing:-8.073267pt;}
.lse_c01105{letter-spacing:-6.055000pt;}
.lsf_c01105{letter-spacing:-4.711700pt;}
.ls12_c01105{letter-spacing:-4.686600pt;}
.ls17_c01105{letter-spacing:-4.037867pt;}
.lsb_c01105{letter-spacing:-3.367000pt;}
.ls1c_c01105{letter-spacing:-2.936460pt;}
.ls9_c01105{letter-spacing:-2.695000pt;}
.ls3_c01105{letter-spacing:-2.640000pt;}
.ls7_c01105{letter-spacing:-2.201800pt;}
.lsc_c01105{letter-spacing:-2.117887pt;}
.ls2_c01105{letter-spacing:-2.095200pt;}
.ls4_c01105{letter-spacing:-2.015300pt;}
.ls11_c01105{letter-spacing:-1.941333pt;}
.ls14_c01105{letter-spacing:-1.866667pt;}
.ls10_c01105{letter-spacing:-1.467867pt;}
.ls1a_c01105{letter-spacing:-1.433600pt;}
.lsd_c01105{letter-spacing:-1.413113pt;}
.ls8_c01105{letter-spacing:-1.344000pt;}
.ls6_c01105{letter-spacing:-0.733933pt;}
.lsa_c01105{letter-spacing:-0.672000pt;}
.ls5_c01105{letter-spacing:0.000000pt;}
.ls15_c01105{letter-spacing:1.344000pt;}
.ls0_c01105{letter-spacing:2.695000pt;}
.ls1_c01105{letter-spacing:4.038300pt;}
.ls16_c01105{letter-spacing:5.210240pt;}
.ls18_c01105{letter-spacing:6.511467pt;}
.ls19_c01105{letter-spacing:7.106073pt;}
.ls1d_c01105{letter-spacing:9.928080pt;}
.ls13_c01105{letter-spacing:15.218667pt;}
.ws0_c01105{word-spacing:0.000000pt;}
._d_c01105{margin-left:-17.516962pt;}
._0_c01105{margin-left:-12.099250pt;}
._19_c01105{margin-left:-9.742718pt;}
._1_c01105{margin-left:-7.790160pt;}
._2_c01105{margin-left:-5.572269pt;}
._3_c01105{margin-left:-4.529485pt;}
._e_c01105{margin-left:-3.611515pt;}
._13_c01105{margin-left:-2.684285pt;}
._a_c01105{margin-left:-1.621674pt;}
._b_c01105{width:0.890863pt;}
._4_c01105{width:1.792883pt;}
._5_c01105{width:3.012208pt;}
._f_c01105{width:4.502992pt;}
._6_c01105{width:5.541308pt;}
._10_c01105{width:6.624230pt;}
._8_c01105{width:7.546054pt;}
._7_c01105{width:9.232332pt;}
._14_c01105{width:10.241840pt;}
._c_c01105{width:11.626053pt;}
._16_c01105{width:13.506532pt;}
._1b_c01105{width:16.200409pt;}
._11_c01105{width:17.349576pt;}
._1a_c01105{width:25.087946pt;}
._12_c01105{width:26.487838pt;}
._18_c01105{width:27.576706pt;}
._17_c01105{width:30.461200pt;}
._15_c01105{width:31.891838pt;}
._9_c01105{width:38.786838pt;}
.fs7_c01105{font-size:64.000000pt;}
.fs6_c01105{font-size:66.666667pt;}
.fs5_c01105{font-size:69.333333pt;}
.fs2_c01105{font-size:70.000000pt;}
.fs4_c01105{font-size:71.333333pt;}
.fs0_c01105{font-size:72.000000pt;}
.fs3_c01105{font-size:72.666667pt;}
.fs1_c01105{font-size:73.333333pt;}
.fsa_c01105{font-size:74.666667pt;}
.fs8_c01105{font-size:75.333333pt;}
.fs9_c01105{font-size:77.333333pt;}
.y0_c01105{bottom:0.000000pt;}
.y17_c01105{bottom:186.240253pt;}
.y16_c01105{bottom:212.800947pt;}
.y15_c01105{bottom:239.040533pt;}
.y14_c01105{bottom:292.160133pt;}
.y13_c01105{bottom:318.399867pt;}
.y12_c01105{bottom:344.960413pt;}
.y11_c01105{bottom:398.080120pt;}
.y10_c01105{bottom:425.600267pt;}
.yf_c01105{bottom:451.839840pt;}
.ye_c01105{bottom:451.840640pt;}
.yd_c01105{bottom:478.400387pt;}
.yc_c01105{bottom:531.200640pt;}
.yb_c01105{bottom:557.441187pt;}
.ya_c01105{bottom:584.000933pt;}
.y9_c01105{bottom:743.680667pt;}
.y8_c01105{bottom:770.240453pt;}
.y7_c01105{bottom:796.800213pt;}
.y6_c01105{bottom:849.919840pt;}
.y5_c01105{bottom:876.480427pt;}
.y4_c01105{bottom:903.360347pt;}
.y3_c01105{bottom:956.160813pt;}
.y2_c01105{bottom:982.400387pt;}
.y1_c01105{bottom:1009.280280pt;}
.ha_c01105{height:65.429688pt;}
.hb_c01105{height:66.750000pt;}
.h9_c01105{height:68.013021pt;}
.h7_c01105{height:68.046875pt;}
.h3_c01105{height:68.701172pt;}
.h5_c01105{height:69.974935pt;}
.h8_c01105{height:70.009766pt;}
.hf_c01105{height:70.664062pt;}
.h4_c01105{height:71.282878pt;}
.h6_c01105{height:71.890625pt;}
.h2_c01105{height:71.972656pt;}
.h1_c01105{height:72.562500pt;}
.he_c01105{height:73.281250pt;}
.hc_c01105{height:73.935547pt;}
.hd_c01105{height:75.898438pt;}
.h0_c01105{height:1122.666667pt;}
.w0_c01105{width:793.333333pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:116.799333pt;}
.x4_c01105{left:117.758813pt;}
.xf_c01105{left:118.719773pt;}
.x1c_c01105{left:120.319013pt;}
.x9_c01105{left:169.278813pt;}
.x10_c01105{left:170.239720pt;}
.xa_c01105{left:190.719720pt;}
.x11_c01105{left:191.679200pt;}
.x2_c01105{left:207.358933pt;}
.x3_c01105{left:237.118667pt;}
.x8_c01105{left:244.479453pt;}
.x15_c01105{left:245.438920pt;}
.x1b_c01105{left:246.399867pt;}
.x1d_c01105{left:251.198667pt;}
.xb_c01105{left:262.398920pt;}
.x12_c01105{left:263.359867pt;}
.xc_c01105{left:268.479453pt;}
.x1e_c01105{left:272.318787pt;}
.x18_c01105{left:285.118667pt;}
.xd_c01105{left:297.599067pt;}
.x5_c01105{left:302.078680pt;}
.x19_c01105{left:311.679200pt;}
.xe_c01105{left:320.318787pt;}
.x1a_c01105{left:340.479453pt;}
.x13_c01105{left:359.039067pt;}
.x14_c01105{left:390.719200pt;}
.x6_c01105{left:430.398920pt;}
.x7_c01105{left:441.919840pt;}
.x16_c01105{left:628.798787pt;}
.x17_c01105{left:642.878907pt;}
}





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

.ir_c01106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_3cd7ca8669eabd6ee5be6080.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01106;src:url('chunks/assets/font_5d0c06da3652f77030febd66.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01106;src:url('chunks/assets/font_e4f8f2c62bf534066bf3de2c.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01106;src:url('chunks/assets/font_a2be99e364de3a886e6cc0e8.woff2')format("woff");}.ff4_c01106{font-family:ff4_c01106;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01106;src:url('chunks/assets/font_10b25eae494363a55d07e0e8.woff2')format("woff");}.ff5_c01106{font-family:ff5_c01106;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01106;src:url('chunks/assets/font_75bce903d82e602a33af867e.woff2')format("woff");}.ff6_c01106{font-family:ff6_c01106;line-height:1.432129;font-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_c01106{transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198198,0.000000,0.000000,0.250000,0,0);}
.m13_c01106{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m16_c01106{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mb_c01106{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m6_c01106{transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);}
.m15_c01106{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m14_c01106{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.me_c01106{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.md_c01106{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m2_c01106{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m12_c01106{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m5_c01106{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m10_c01106{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m1_c01106{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m3_c01106{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m4_c01106{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.m11_c01106{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.mc_c01106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01106{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m8_c01106{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.mf_c01106{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m7_c01106{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m0_c01106{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m9_c01106{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.ls21_c01106{letter-spacing:-14.100000px;}
.ls19_c01106{letter-spacing:-8.673450px;}
.ls1b_c01106{letter-spacing:-7.226550px;}
.ls17_c01106{letter-spacing:-6.503100px;}
.ls16_c01106{letter-spacing:-5.778855px;}
.lsb_c01106{letter-spacing:-5.103900px;}
.ls15_c01106{letter-spacing:-5.056200px;}
.ls11_c01106{letter-spacing:-4.727768px;}
.ls8_c01106{letter-spacing:-4.706490px;}
.ls2_c01106{letter-spacing:-4.340700px;}
.ls1e_c01106{letter-spacing:-4.030658px;}
.ls0_c01106{letter-spacing:-3.617250px;}
.ls20_c01106{letter-spacing:-3.386250px;}
.lse_c01106{letter-spacing:-3.242903px;}
.ls6_c01106{letter-spacing:-3.089625px;}
.lsa_c01106{letter-spacing:-2.894595px;}
.ls10_c01106{letter-spacing:-2.431575px;}
.ls1d_c01106{letter-spacing:-2.277075px;}
.lsc_c01106{letter-spacing:-2.206433px;}
.ls3_c01106{letter-spacing:-2.170350px;}
.lsd_c01106{letter-spacing:-2.071913px;}
.lsf_c01106{letter-spacing:-1.621050px;}
.ls22_c01106{letter-spacing:-1.468800px;}
.ls13_c01106{letter-spacing:-1.446900px;}
.ls14_c01106{letter-spacing:-0.818850px;}
.ls4_c01106{letter-spacing:-0.810525px;}
.ls1_c01106{letter-spacing:-0.778425px;}
.ls1a_c01106{letter-spacing:-0.734400px;}
.ls18_c01106{letter-spacing:-0.722655px;}
.ls5_c01106{letter-spacing:0.000000px;}
.ls7_c01106{letter-spacing:0.759578px;}
.ls1c_c01106{letter-spacing:1.565550px;}
.ls9_c01106{letter-spacing:3.554273px;}
.ls12_c01106{letter-spacing:7.120710px;}
.ls1f_c01106{letter-spacing:9.230760px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01106{word-spacing:0.000000px;}
._7_c01106{margin-left:-3.654933px;}
._4_c01106{margin-left:-2.191740px;}
._8_c01106{margin-left:-1.120950px;}
._10_c01106{width:1.836421px;}
._3_c01106{width:2.873258px;}
._e_c01106{width:4.304480px;}
._9_c01106{width:5.525279px;}
._5_c01106{width:7.543905px;}
._a_c01106{width:9.647715px;}
._0_c01106{width:11.574737px;}
._d_c01106{width:12.765006px;}
._2_c01106{width:13.842752px;}
._1_c01106{width:19.922353px;}
._b_c01106{width:23.349592px;}
._6_c01106{width:29.094797px;}
._c_c01106{width:34.347965px;}
._f_c01106{width:36.067387px;}
.fc0_c01106{color:transparent;}
.fs3_c01106{font-size:69.000000px;}
.fs2_c01106{font-size:69.750000px;}
.fsf_c01106{font-size:70.500000px;}
.fsb_c01106{font-size:72.750000px;}
.fsa_c01106{font-size:73.500000px;}
.fsc_c01106{font-size:75.750000px;}
.fs9_c01106{font-size:76.500000px;}
.fs4_c01106{font-size:77.250000px;}
.fse_c01106{font-size:78.000000px;}
.fs6_c01106{font-size:78.750000px;}
.fs0_c01106{font-size:79.500000px;}
.fs1_c01106{font-size:80.250000px;}
.fs8_c01106{font-size:81.000000px;}
.fs5_c01106{font-size:81.750000px;}
.fs7_c01106{font-size:83.250000px;}
.fsd_c01106{font-size:84.000000px;}
.y0_c01106{bottom:0.000000px;}
.y19_c01106{bottom:208.080000px;}
.y18_c01106{bottom:237.599700px;}
.y17_c01106{bottom:237.600630px;}
.y16_c01106{bottom:267.478635px;}
.y15_c01106{bottom:267.478710px;}
.y14_c01106{bottom:357.118785px;}
.y13_c01106{bottom:386.279250px;}
.y12_c01106{bottom:416.159820px;}
.y11_c01106{bottom:416.160090px;}
.y10_c01106{bottom:476.639700px;}
.yf_c01106{bottom:506.880615px;}
.ye_c01106{bottom:536.760720px;}
.yd_c01106{bottom:595.799520px;}
.yc_c01106{bottom:624.959970px;}
.yb_c01106{bottom:655.200780px;}
.ya_c01106{bottom:835.198785px;}
.y8_c01106{bottom:865.079130px;}
.y9_c01106{bottom:865.079400px;}
.y7_c01106{bottom:894.599580px;}
.y6_c01106{bottom:954.719520px;}
.y5_c01106{bottom:984.239220px;}
.y4_c01106{bottom:1014.840090px;}
.y3_c01106{bottom:1073.879520px;}
.y2_c01106{bottom:1103.399235px;}
.y1_c01106{bottom:1133.639100px;}
.h5_c01106{height:70.294922px;}
.h10_c01106{height:71.400146px;}
.h6_c01106{height:71.964844px;}
.h14_c01106{height:73.529297px;}
.hf_c01106{height:74.074219px;}
.hc_c01106{height:75.080566px;}
.h13_c01106{height:76.552734px;}
.h9_c01106{height:77.288818px;}
.h7_c01106{height:77.853516px;}
.hd_c01106{height:77.986084px;}
.h1_c01106{height:78.024902px;}
.h3_c01106{height:78.721802px;}
.h4_c01106{height:78.760986px;}
.h11_c01106{height:79.004883px;}
.he_c01106{height:79.457520px;}
.hb_c01106{height:79.497070px;}
.h8_c01106{height:80.233154px;}
.h2_c01106{height:80.876953px;}
.ha_c01106{height:82.274414px;}
.h12_c01106{height:82.441406px;}
.h0_c01106{height:1263.000000px;}
.w0_c01106{width:892.500000px;}
.x0_c01106{left:0.000000px;}
.x4_c01106{left:130.319850px;}
.x1_c01106{left:131.399250px;}
.xc_c01106{left:132.478665px;}
.x16_c01106{left:133.915875px;}
.x20_c01106{left:134.999595px;}
.x13_c01106{left:164.878950px;}
.x5_c01106{left:171.719565px;}
.x17_c01106{left:202.679700px;}
.x8_c01106{left:214.198785px;}
.x1c_c01106{left:216.718500px;}
.x1a_c01106{left:217.799535px;}
.x6_c01106{left:222.118785px;}
.x2_c01106{left:224.279250px;}
.x18_c01106{left:231.120000px;}
.x1d_c01106{left:240.839535px;}
.x21_c01106{left:249.118785px;}
.x7_c01106{left:254.878350px;}
.x9_c01106{left:258.479235px;}
.x19_c01106{left:262.080000px;}
.x22_c01106{left:263.518635px;}
.x14_c01106{left:277.199850px;}
.xa_c01106{left:278.638500px;}
.xf_c01106{left:280.439685px;}
.x3_c01106{left:286.199385px;}
.x15_c01106{left:299.519685px;}
.x10_c01106{left:305.279250px;}
.xb_c01106{left:318.599700px;}
.x11_c01106{left:325.079385px;}
.x23_c01106{left:329.039385px;}
.x1e_c01106{left:336.239250px;}
.x1b_c01106{left:337.318800px;}
.x24_c01106{left:347.399235px;}
.x1f_c01106{left:351.718500px;}
.x12_c01106{left:356.039385px;}
.x25_c01106{left:362.519100px;}
.x26_c01106{left:392.038920px;}
.x27_c01106{left:422.998950px;}
.xd_c01106{left:546.838950px;}
.xe_c01106{left:589.679070px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls21_c01106{letter-spacing:-12.533333pt;}
.ls19_c01106{letter-spacing:-7.709733pt;}
.ls1b_c01106{letter-spacing:-6.423600pt;}
.ls17_c01106{letter-spacing:-5.780533pt;}
.ls16_c01106{letter-spacing:-5.136760pt;}
.lsb_c01106{letter-spacing:-4.536800pt;}
.ls15_c01106{letter-spacing:-4.494400pt;}
.ls11_c01106{letter-spacing:-4.202460pt;}
.ls8_c01106{letter-spacing:-4.183547pt;}
.ls2_c01106{letter-spacing:-3.858400pt;}
.ls1e_c01106{letter-spacing:-3.582807pt;}
.ls0_c01106{letter-spacing:-3.215333pt;}
.ls20_c01106{letter-spacing:-3.010000pt;}
.lse_c01106{letter-spacing:-2.882580pt;}
.ls6_c01106{letter-spacing:-2.746333pt;}
.lsa_c01106{letter-spacing:-2.572973pt;}
.ls10_c01106{letter-spacing:-2.161400pt;}
.ls1d_c01106{letter-spacing:-2.024067pt;}
.lsc_c01106{letter-spacing:-1.961273pt;}
.ls3_c01106{letter-spacing:-1.929200pt;}
.lsd_c01106{letter-spacing:-1.841700pt;}
.lsf_c01106{letter-spacing:-1.440933pt;}
.ls22_c01106{letter-spacing:-1.305600pt;}
.ls13_c01106{letter-spacing:-1.286133pt;}
.ls14_c01106{letter-spacing:-0.727867pt;}
.ls4_c01106{letter-spacing:-0.720467pt;}
.ls1_c01106{letter-spacing:-0.691933pt;}
.ls1a_c01106{letter-spacing:-0.652800pt;}
.ls18_c01106{letter-spacing:-0.642360pt;}
.ls5_c01106{letter-spacing:0.000000pt;}
.ls7_c01106{letter-spacing:0.675180pt;}
.ls1c_c01106{letter-spacing:1.391600pt;}
.ls9_c01106{letter-spacing:3.159353pt;}
.ls12_c01106{letter-spacing:6.329520pt;}
.ls1f_c01106{letter-spacing:8.205120pt;}
.ws0_c01106{word-spacing:0.000000pt;}
._7_c01106{margin-left:-3.248829pt;}
._4_c01106{margin-left:-1.948213pt;}
._8_c01106{margin-left:-0.996400pt;}
._10_c01106{width:1.632374pt;}
._3_c01106{width:2.554007pt;}
._e_c01106{width:3.826205pt;}
._9_c01106{width:4.911359pt;}
._5_c01106{width:6.705694pt;}
._a_c01106{width:8.575747pt;}
._0_c01106{width:10.288656pt;}
._d_c01106{width:11.346672pt;}
._2_c01106{width:12.304669pt;}
._1_c01106{width:17.708758pt;}
._b_c01106{width:20.755193pt;}
._6_c01106{width:25.862042pt;}
._c_c01106{width:30.531525pt;}
._f_c01106{width:32.059899pt;}
.fs3_c01106{font-size:61.333333pt;}
.fs2_c01106{font-size:62.000000pt;}
.fsf_c01106{font-size:62.666667pt;}
.fsb_c01106{font-size:64.666667pt;}
.fsa_c01106{font-size:65.333333pt;}
.fsc_c01106{font-size:67.333333pt;}
.fs9_c01106{font-size:68.000000pt;}
.fs4_c01106{font-size:68.666667pt;}
.fse_c01106{font-size:69.333333pt;}
.fs6_c01106{font-size:70.000000pt;}
.fs0_c01106{font-size:70.666667pt;}
.fs1_c01106{font-size:71.333333pt;}
.fs8_c01106{font-size:72.000000pt;}
.fs5_c01106{font-size:72.666667pt;}
.fs7_c01106{font-size:74.000000pt;}
.fsd_c01106{font-size:74.666667pt;}
.y0_c01106{bottom:0.000000pt;}
.y19_c01106{bottom:184.960000pt;}
.y18_c01106{bottom:211.199733pt;}
.y17_c01106{bottom:211.200560pt;}
.y16_c01106{bottom:237.758787pt;}
.y15_c01106{bottom:237.758853pt;}
.y14_c01106{bottom:317.438920pt;}
.y13_c01106{bottom:343.359333pt;}
.y12_c01106{bottom:369.919840pt;}
.y11_c01106{bottom:369.920080pt;}
.y10_c01106{bottom:423.679733pt;}
.yf_c01106{bottom:450.560547pt;}
.ye_c01106{bottom:477.120640pt;}
.yd_c01106{bottom:529.599573pt;}
.yc_c01106{bottom:555.519973pt;}
.yb_c01106{bottom:582.400693pt;}
.ya_c01106{bottom:742.398920pt;}
.y8_c01106{bottom:768.959227pt;}
.y9_c01106{bottom:768.959467pt;}
.y7_c01106{bottom:795.199627pt;}
.y6_c01106{bottom:848.639573pt;}
.y5_c01106{bottom:874.879307pt;}
.y4_c01106{bottom:902.080080pt;}
.y3_c01106{bottom:954.559573pt;}
.y2_c01106{bottom:980.799320pt;}
.y1_c01106{bottom:1007.679200pt;}
.h5_c01106{height:62.484375pt;}
.h10_c01106{height:63.466797pt;}
.h6_c01106{height:63.968750pt;}
.h14_c01106{height:65.359375pt;}
.hf_c01106{height:65.843750pt;}
.hc_c01106{height:66.738281pt;}
.h13_c01106{height:68.046875pt;}
.h9_c01106{height:68.701172pt;}
.h7_c01106{height:69.203125pt;}
.hd_c01106{height:69.320964pt;}
.h1_c01106{height:69.355469pt;}
.h3_c01106{height:69.974935pt;}
.h4_c01106{height:70.009766pt;}
.h11_c01106{height:70.226562pt;}
.he_c01106{height:70.628906pt;}
.hb_c01106{height:70.664062pt;}
.h8_c01106{height:71.318359pt;}
.h2_c01106{height:71.890625pt;}
.ha_c01106{height:73.132813pt;}
.h12_c01106{height:73.281250pt;}
.h0_c01106{height:1122.666667pt;}
.w0_c01106{width:793.333333pt;}
.x0_c01106{left:0.000000pt;}
.x4_c01106{left:115.839867pt;}
.x1_c01106{left:116.799333pt;}
.xc_c01106{left:117.758813pt;}
.x16_c01106{left:119.036333pt;}
.x20_c01106{left:119.999640pt;}
.x13_c01106{left:146.559067pt;}
.x5_c01106{left:152.639613pt;}
.x17_c01106{left:180.159733pt;}
.x8_c01106{left:190.398920pt;}
.x1c_c01106{left:192.638667pt;}
.x1a_c01106{left:193.599587pt;}
.x6_c01106{left:197.438920pt;}
.x2_c01106{left:199.359333pt;}
.x18_c01106{left:205.440000pt;}
.x1d_c01106{left:214.079587pt;}
.x21_c01106{left:221.438920pt;}
.x7_c01106{left:226.558533pt;}
.x9_c01106{left:229.759320pt;}
.x19_c01106{left:232.960000pt;}
.x22_c01106{left:234.238787pt;}
.x14_c01106{left:246.399867pt;}
.xa_c01106{left:247.678667pt;}
.xf_c01106{left:249.279720pt;}
.x3_c01106{left:254.399453pt;}
.x15_c01106{left:266.239720pt;}
.x10_c01106{left:271.359333pt;}
.xb_c01106{left:283.199733pt;}
.x11_c01106{left:288.959453pt;}
.x23_c01106{left:292.479453pt;}
.x1e_c01106{left:298.879333pt;}
.x1b_c01106{left:299.838933pt;}
.x24_c01106{left:308.799320pt;}
.x1f_c01106{left:312.638667pt;}
.x12_c01106{left:316.479453pt;}
.x25_c01106{left:322.239200pt;}
.x26_c01106{left:348.479040pt;}
.x27_c01106{left:375.999067pt;}
.xd_c01106{left:486.079067pt;}
.xe_c01106{left:524.159173pt;}
}





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

.ir_c01107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_2ccbfe6f8701350908609f60.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01107;src:url('chunks/assets/font_474fe04f57033c7314e58eec.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01107;src:url('chunks/assets/font_34d3bee3067ef584ec660363.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01107;src:url('chunks/assets/font_d958331fa2beb41e31b32a9c.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01107;src:url('chunks/assets/font_01b08b7759a19422c8fffa4a.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01107;src:url('chunks/assets/font_9bec09ed1df7fc9ac80e397c.woff2')format("woff");}.ff6_c01107{font-family:ff6_c01107;line-height:1.432129;font-style:normal;font-weight: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_c01107;src:url('chunks/assets/font_95e1b0c571083353bafcb56c.woff2')format("woff");}.ff7_c01107{font-family:ff7_c01107;line-height:1.364746;font-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_c01107{transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184524,0.000000,0.000000,0.250000,0,0);}
.m9_c01107{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.ma_c01107{transform:matrix(0.191748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191748,0.000000,0.000000,0.250000,0,0);}
.m7_c01107{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m26_c01107{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m1e_c01107{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m6_c01107{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m2_c01107{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m29_c01107{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m3_c01107{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m13_c01107{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m8_c01107{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m1f_c01107{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m1_c01107{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1d_c01107{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m0_c01107{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m11_c01107{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m5_c01107{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m21_c01107{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m25_c01107{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m28_c01107{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m22_c01107{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m24_c01107{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m27_c01107{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.mb_c01107{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1c_c01107{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m20_c01107{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m23_c01107{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m4_c01107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01107{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m16_c01107{transform:matrix(0.288793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288793,0.000000,0.000000,0.250000,0,0);}
.m15_c01107{transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288889,0.000000,0.000000,0.250000,0,0);}
.md_c01107{transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296296,0.000000,0.000000,0.250000,0,0);}
.m12_c01107{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.me_c01107{transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);}
.m17_c01107{transform:matrix(0.303191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303191,0.000000,0.000000,0.250000,0,0);}
.mc_c01107{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m18_c01107{transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315217,0.000000,0.000000,0.250000,0,0);}
.m1b_c01107{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m19_c01107{transform:matrix(0.335227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335227,0.000000,0.000000,0.250000,0,0);}
.m14_c01107{transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340426,0.000000,0.000000,0.250000,0,0);}
.m10_c01107{transform:matrix(1.981481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.981481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.981481,0.000000,0.000000,0.250000,0,0);}
.v0_c01107{vertical-align:0.000000px;}
.ls33_c01107{letter-spacing:-16.329600px;}
.ls2b_c01107{letter-spacing:-13.599600px;}
.ls38_c01107{letter-spacing:-13.249275px;}
.ls35_c01107{letter-spacing:-8.058600px;}
.ls30_c01107{letter-spacing:-6.227100px;}
.ls1c_c01107{letter-spacing:-5.057775px;}
.ls16_c01107{letter-spacing:-4.911300px;}
.ls2d_c01107{letter-spacing:-4.815000px;}
.ls34_c01107{letter-spacing:-4.677750px;}
.ls32_c01107{letter-spacing:-4.544910px;}
.ls13_c01107{letter-spacing:-4.012500px;}
.ls15_c01107{letter-spacing:-3.972375px;}
.lsf_c01107{letter-spacing:-3.749288px;}
.ls31_c01107{letter-spacing:-3.209198px;}
.ls17_c01107{letter-spacing:-3.089625px;}
.ls14_c01107{letter-spacing:-2.512913px;}
.ls2c_c01107{letter-spacing:-2.425500px;}
.ls12_c01107{letter-spacing:-2.407500px;}
.ls8_c01107{letter-spacing:-2.382623px;}
.ls37_c01107{letter-spacing:-2.338088px;}
.ls18_c01107{letter-spacing:-1.790700px;}
.lsd_c01107{letter-spacing:-1.677375px;}
.lsc_c01107{letter-spacing:-1.605000px;}
.ls9_c01107{letter-spacing:-1.589753px;}
.ls2e_c01107{letter-spacing:-1.512420px;}
.lse_c01107{letter-spacing:-0.834750px;}
.lsb_c01107{letter-spacing:-0.801698px;}
.ls11_c01107{letter-spacing:-0.794475px;}
.ls2f_c01107{letter-spacing:-0.787050px;}
.ls36_c01107{letter-spacing:-0.771728px;}
.ls19_c01107{letter-spacing:-0.631395px;}
.ls29_c01107{letter-spacing:-0.570000px;}
.lsa_c01107{letter-spacing:0.000000px;}
.ls5_c01107{letter-spacing:0.632775px;}
.ls4_c01107{letter-spacing:0.794475px;}
.ls2_c01107{letter-spacing:0.834750px;}
.ls0_c01107{letter-spacing:1.589753px;}
.ls1f_c01107{letter-spacing:1.653578px;}
.ls3_c01107{letter-spacing:1.677375px;}
.ls1a_c01107{letter-spacing:1.887600px;}
.ls7_c01107{letter-spacing:2.512913px;}
.ls39_c01107{letter-spacing:2.526075px;}
.ls27_c01107{letter-spacing:2.998800px;}
.ls1b_c01107{letter-spacing:3.172125px;}
.ls1_c01107{letter-spacing:3.354750px;}
.ls1e_c01107{letter-spacing:3.791783px;}
.ls10_c01107{letter-spacing:3.937500px;}
.ls22_c01107{letter-spacing:4.328700px;}
.ls6_c01107{letter-spacing:4.766850px;}
.ls24_c01107{letter-spacing:5.080950px;}
.ls21_c01107{letter-spacing:5.841615px;}
.ls25_c01107{letter-spacing:6.749925px;}
.ls28_c01107{letter-spacing:7.112700px;}
.ls23_c01107{letter-spacing:7.270230px;}
.ls1d_c01107{letter-spacing:7.513650px;}
.ls2a_c01107{letter-spacing:12.323400px;}
.ls26_c01107{letter-spacing:15.242850px;}
.ls20_c01107{letter-spacing:18.822038px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01107{word-spacing:0.000000px;}
._9_c01107{margin-left:-6.740933px;}
._6_c01107{margin-left:-5.063843px;}
._b_c01107{margin-left:-1.259034px;}
._1_c01107{width:2.010580px;}
._4_c01107{width:3.367348px;}
._0_c01107{width:5.298272px;}
._5_c01107{width:6.993855px;}
._7_c01107{width:8.348535px;}
._d_c01107{width:9.748904px;}
._3_c01107{width:11.451031px;}
._2_c01107{width:13.522769px;}
._8_c01107{width:14.949348px;}
._a_c01107{width:17.582473px;}
._c_c01107{width:19.093362px;}
.fc0_c01107{color:transparent;}
.fsb_c01107{font-size:20.250000px;}
.fs14_c01107{font-size:28.500000px;}
.fs12_c01107{font-size:31.500000px;}
.fs13_c01107{font-size:32.250000px;}
.fs11_c01107{font-size:33.000000px;}
.fse_c01107{font-size:33.750000px;}
.fs10_c01107{font-size:34.500000px;}
.fs7_c01107{font-size:35.250000px;}
.fsa_c01107{font-size:38.250000px;}
.fs9_c01107{font-size:39.000000px;}
.fs8_c01107{font-size:40.500000px;}
.fsc_c01107{font-size:41.250000px;}
.fsf_c01107{font-size:43.500000px;}
.fsd_c01107{font-size:44.250000px;}
.fs4_c01107{font-size:76.500000px;}
.fs6_c01107{font-size:77.250000px;}
.fs17_c01107{font-size:78.000000px;}
.fs2_c01107{font-size:78.750000px;}
.fs3_c01107{font-size:79.500000px;}
.fs0_c01107{font-size:80.250000px;}
.fs19_c01107{font-size:81.000000px;}
.fs1_c01107{font-size:81.750000px;}
.fs16_c01107{font-size:82.500000px;}
.fs18_c01107{font-size:83.250000px;}
.fs15_c01107{font-size:84.000000px;}
.fs5_c01107{font-size:115.500000px;}
.y0_c01107{bottom:0.000000px;}
.y19_c01107{bottom:238.319850px;}
.y18_c01107{bottom:267.478635px;}
.y17_c01107{bottom:297.720150px;}
.y16_c01107{bottom:357.838950px;}
.y15_c01107{bottom:388.078815px;}
.y14_c01107{bottom:417.959385px;}
.y13_c01107{bottom:477.719100px;}
.y12_c01107{bottom:506.518620px;}
.y11_c01107{bottom:536.399235px;}
.y10_c01107{bottom:596.878920px;}
.yf_c01107{bottom:626.039385px;}
.ye_c01107{bottom:656.640150px;}
.yd_c01107{bottom:715.679670px;}
.yc_c01107{bottom:745.199385px;}
.yb_c01107{bottom:752.039985px;}
.ya_c01107{bottom:775.439205px;}
.y9_c01107{bottom:835.559685px;}
.y8_c01107{bottom:865.799565px;}
.y7_c01107{bottom:895.319190px;}
.y6_c01107{bottom:955.439670px;}
.y5_c01107{bottom:984.959385px;}
.y4_c01107{bottom:1015.199340px;}
.y3_c01107{bottom:1074.958920px;}
.y2_c01107{bottom:1104.119385px;}
.y1_c01107{bottom:1134.720150px;}
.hd_c01107{height:21.120117px;}
.h17_c01107{height:27.957275px;}
.h16_c01107{height:29.724609px;}
.h14_c01107{height:32.853516px;}
.h15_c01107{height:33.635742px;}
.h13_c01107{height:34.417969px;}
.h10_c01107{height:35.200195px;}
.h12_c01107{height:35.982422px;}
.h9_c01107{height:36.764648px;}
.hc_c01107{height:39.893555px;}
.hb_c01107{height:40.675781px;}
.ha_c01107{height:42.240234px;}
.h11_c01107{height:42.990234px;}
.he_c01107{height:43.022461px;}
.hf_c01107{height:46.151367px;}
.h6_c01107{height:75.043213px;}
.h1e_c01107{height:77.853516px;}
.h1a_c01107{height:78.609375px;}
.h2_c01107{height:78.721802px;}
.h1f_c01107{height:79.309570px;}
.h4_c01107{height:79.365234px;}
.h1c_c01107{height:79.457520px;}
.h5_c01107{height:80.121094px;}
.h20_c01107{height:80.193237px;}
.h8_c01107{height:80.569336px;}
.h1_c01107{height:80.876953px;}
.h19_c01107{height:80.928955px;}
.h1d_c01107{height:82.274414px;}
.h3_c01107{height:82.388672px;}
.h18_c01107{height:83.015625px;}
.h21_c01107{height:83.144531px;}
.h1b_c01107{height:83.900391px;}
.h7_c01107{height:120.462891px;}
.h0_c01107{height:1263.000000px;}
.w0_c01107{width:892.500000px;}
.x0_c01107{left:0.000000px;}
.x7_c01107{left:131.399250px;}
.x1_c01107{left:132.478665px;}
.xa_c01107{left:133.559685px;}
.x1f_c01107{left:180.359850px;}
.x36_c01107{left:183.238785px;}
.x2_c01107{left:185.399250px;}
.x3_c01107{left:198.358635px;}
.x29_c01107{left:200.519100px;}
.x8_c01107{left:203.038950px;}
.x37_c01107{left:206.639700px;}
.x4_c01107{left:210.958950px;}
.x2c_c01107{left:212.399250px;}
.x9_c01107{left:218.158785px;}
.x20_c01107{left:220.319250px;}
.x17_c01107{left:222.118785px;}
.x38_c01107{left:224.279250px;}
.x2d_c01107{left:240.478635px;}
.x18_c01107{left:244.799535px;}
.x21_c01107{left:254.159850px;}
.x39_c01107{left:255.598500px;}
.x2a_c01107{left:259.919535px;}
.x35_c01107{left:265.319850px;}
.x2b_c01107{left:283.679700px;}
.x22_c01107{left:286.199385px;}
.x16_c01107{left:313.558635px;}
.x23_c01107{left:314.998950px;}
.x19_c01107{left:317.518635px;}
.x1a_c01107{left:327.599100px;}
.x5_c01107{left:334.439685px;}
.x24_c01107{left:337.679700px;}
.x1b_c01107{left:341.998950px;}
.x31_c01107{left:352.438635px;}
.x6_c01107{left:363.598530px;}
.x32_c01107{left:385.199850px;}
.x1c_c01107{left:422.639700px;}
.x27_c01107{left:444.598530px;}
.x25_c01107{left:445.679670px;}
.x1d_c01107{left:446.759085px;}
.x12_c01107{left:452.518620px;}
.xb_c01107{left:457.918950px;}
.x1e_c01107{left:465.838950px;}
.x33_c01107{left:467.279250px;}
.x13_c01107{left:472.679670px;}
.xc_c01107{left:473.759085px;}
.x14_c01107{left:483.119385px;}
.x28_c01107{left:486.000000px;}
.x15_c01107{left:492.118785px;}
.x34_c01107{left:509.758530px;}
.x26_c01107{left:519.838950px;}
.x2e_c01107{left:591.119385px;}
.x2f_c01107{left:613.439250px;}
.xd_c01107{left:641.879520px;}
.x30_c01107{left:646.918950px;}
.xe_c01107{left:674.639100px;}
.xf_c01107{left:689.759085px;}
.x10_c01107{left:742.679670px;}
.x11_c01107{left:766.078770px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls33_c01107{letter-spacing:-14.515200pt;}
.ls2b_c01107{letter-spacing:-12.088533pt;}
.ls38_c01107{letter-spacing:-11.777133pt;}
.ls35_c01107{letter-spacing:-7.163200pt;}
.ls30_c01107{letter-spacing:-5.535200pt;}
.ls1c_c01107{letter-spacing:-4.495800pt;}
.ls16_c01107{letter-spacing:-4.365600pt;}
.ls2d_c01107{letter-spacing:-4.280000pt;}
.ls34_c01107{letter-spacing:-4.158000pt;}
.ls32_c01107{letter-spacing:-4.039920pt;}
.ls13_c01107{letter-spacing:-3.566667pt;}
.ls15_c01107{letter-spacing:-3.531000pt;}
.lsf_c01107{letter-spacing:-3.332700pt;}
.ls31_c01107{letter-spacing:-2.852620pt;}
.ls17_c01107{letter-spacing:-2.746333pt;}
.ls14_c01107{letter-spacing:-2.233700pt;}
.ls2c_c01107{letter-spacing:-2.156000pt;}
.ls12_c01107{letter-spacing:-2.140000pt;}
.ls8_c01107{letter-spacing:-2.117887pt;}
.ls37_c01107{letter-spacing:-2.078300pt;}
.ls18_c01107{letter-spacing:-1.591733pt;}
.lsd_c01107{letter-spacing:-1.491000pt;}
.lsc_c01107{letter-spacing:-1.426667pt;}
.ls9_c01107{letter-spacing:-1.413113pt;}
.ls2e_c01107{letter-spacing:-1.344373pt;}
.lse_c01107{letter-spacing:-0.742000pt;}
.lsb_c01107{letter-spacing:-0.712620pt;}
.ls11_c01107{letter-spacing:-0.706200pt;}
.ls2f_c01107{letter-spacing:-0.699600pt;}
.ls36_c01107{letter-spacing:-0.685980pt;}
.ls19_c01107{letter-spacing:-0.561240pt;}
.ls29_c01107{letter-spacing:-0.506667pt;}
.lsa_c01107{letter-spacing:0.000000pt;}
.ls5_c01107{letter-spacing:0.562467pt;}
.ls4_c01107{letter-spacing:0.706200pt;}
.ls2_c01107{letter-spacing:0.742000pt;}
.ls0_c01107{letter-spacing:1.413113pt;}
.ls1f_c01107{letter-spacing:1.469847pt;}
.ls3_c01107{letter-spacing:1.491000pt;}
.ls1a_c01107{letter-spacing:1.677867pt;}
.ls7_c01107{letter-spacing:2.233700pt;}
.ls39_c01107{letter-spacing:2.245400pt;}
.ls27_c01107{letter-spacing:2.665600pt;}
.ls1b_c01107{letter-spacing:2.819667pt;}
.ls1_c01107{letter-spacing:2.982000pt;}
.ls1e_c01107{letter-spacing:3.370473pt;}
.ls10_c01107{letter-spacing:3.500000pt;}
.ls22_c01107{letter-spacing:3.847733pt;}
.ls6_c01107{letter-spacing:4.237200pt;}
.ls24_c01107{letter-spacing:4.516400pt;}
.ls21_c01107{letter-spacing:5.192547pt;}
.ls25_c01107{letter-spacing:5.999933pt;}
.ls28_c01107{letter-spacing:6.322400pt;}
.ls23_c01107{letter-spacing:6.462427pt;}
.ls1d_c01107{letter-spacing:6.678800pt;}
.ls2a_c01107{letter-spacing:10.954133pt;}
.ls26_c01107{letter-spacing:13.549200pt;}
.ls20_c01107{letter-spacing:16.730700pt;}
.ws0_c01107{word-spacing:0.000000pt;}
._9_c01107{margin-left:-5.991940pt;}
._6_c01107{margin-left:-4.501194pt;}
._b_c01107{margin-left:-1.119142pt;}
._1_c01107{width:1.787183pt;}
._4_c01107{width:2.993198pt;}
._0_c01107{width:4.709575pt;}
._5_c01107{width:6.216760pt;}
._7_c01107{width:7.420920pt;}
._d_c01107{width:8.665692pt;}
._3_c01107{width:10.178695pt;}
._2_c01107{width:12.020239pt;}
._8_c01107{width:13.288309pt;}
._a_c01107{width:15.628865pt;}
._c_c01107{width:16.971878pt;}
.fsb_c01107{font-size:18.000000pt;}
.fs14_c01107{font-size:25.333333pt;}
.fs12_c01107{font-size:28.000000pt;}
.fs13_c01107{font-size:28.666667pt;}
.fs11_c01107{font-size:29.333333pt;}
.fse_c01107{font-size:30.000000pt;}
.fs10_c01107{font-size:30.666667pt;}
.fs7_c01107{font-size:31.333333pt;}
.fsa_c01107{font-size:34.000000pt;}
.fs9_c01107{font-size:34.666667pt;}
.fs8_c01107{font-size:36.000000pt;}
.fsc_c01107{font-size:36.666667pt;}
.fsf_c01107{font-size:38.666667pt;}
.fsd_c01107{font-size:39.333333pt;}
.fs4_c01107{font-size:68.000000pt;}
.fs6_c01107{font-size:68.666667pt;}
.fs17_c01107{font-size:69.333333pt;}
.fs2_c01107{font-size:70.000000pt;}
.fs3_c01107{font-size:70.666667pt;}
.fs0_c01107{font-size:71.333333pt;}
.fs19_c01107{font-size:72.000000pt;}
.fs1_c01107{font-size:72.666667pt;}
.fs16_c01107{font-size:73.333333pt;}
.fs18_c01107{font-size:74.000000pt;}
.fs15_c01107{font-size:74.666667pt;}
.fs5_c01107{font-size:102.666667pt;}
.y0_c01107{bottom:0.000000pt;}
.y19_c01107{bottom:211.839867pt;}
.y18_c01107{bottom:237.758787pt;}
.y17_c01107{bottom:264.640133pt;}
.y16_c01107{bottom:318.079067pt;}
.y15_c01107{bottom:344.958947pt;}
.y14_c01107{bottom:371.519453pt;}
.y13_c01107{bottom:424.639200pt;}
.y12_c01107{bottom:450.238773pt;}
.y11_c01107{bottom:476.799320pt;}
.y10_c01107{bottom:530.559040pt;}
.yf_c01107{bottom:556.479453pt;}
.ye_c01107{bottom:583.680133pt;}
.yd_c01107{bottom:636.159707pt;}
.yc_c01107{bottom:662.399453pt;}
.yb_c01107{bottom:668.479987pt;}
.ya_c01107{bottom:689.279293pt;}
.y9_c01107{bottom:742.719720pt;}
.y8_c01107{bottom:769.599613pt;}
.y7_c01107{bottom:795.839280pt;}
.y6_c01107{bottom:849.279707pt;}
.y5_c01107{bottom:875.519453pt;}
.y4_c01107{bottom:902.399413pt;}
.y3_c01107{bottom:955.519040pt;}
.y2_c01107{bottom:981.439453pt;}
.y1_c01107{bottom:1008.640133pt;}
.hd_c01107{height:18.773437pt;}
.h17_c01107{height:24.850911pt;}
.h16_c01107{height:26.421875pt;}
.h14_c01107{height:29.203125pt;}
.h15_c01107{height:29.898438pt;}
.h13_c01107{height:30.593750pt;}
.h10_c01107{height:31.289062pt;}
.h12_c01107{height:31.984375pt;}
.h9_c01107{height:32.679688pt;}
.hc_c01107{height:35.460938pt;}
.hb_c01107{height:36.156250pt;}
.ha_c01107{height:37.546875pt;}
.h11_c01107{height:38.213542pt;}
.he_c01107{height:38.242188pt;}
.hf_c01107{height:41.023438pt;}
.h6_c01107{height:66.705078pt;}
.h1e_c01107{height:69.203125pt;}
.h1a_c01107{height:69.875000pt;}
.h2_c01107{height:69.974935pt;}
.h1f_c01107{height:70.497396pt;}
.h4_c01107{height:70.546875pt;}
.h1c_c01107{height:70.628906pt;}
.h5_c01107{height:71.218750pt;}
.h20_c01107{height:71.282878pt;}
.h8_c01107{height:71.617188pt;}
.h1_c01107{height:71.890625pt;}
.h19_c01107{height:71.936849pt;}
.h1d_c01107{height:73.132813pt;}
.h3_c01107{height:73.234375pt;}
.h18_c01107{height:73.791667pt;}
.h21_c01107{height:73.906250pt;}
.h1b_c01107{height:74.578125pt;}
.h7_c01107{height:107.078125pt;}
.h0_c01107{height:1122.666667pt;}
.w0_c01107{width:793.333333pt;}
.x0_c01107{left:0.000000pt;}
.x7_c01107{left:116.799333pt;}
.x1_c01107{left:117.758813pt;}
.xa_c01107{left:118.719720pt;}
.x1f_c01107{left:160.319867pt;}
.x36_c01107{left:162.878920pt;}
.x2_c01107{left:164.799333pt;}
.x3_c01107{left:176.318787pt;}
.x29_c01107{left:178.239200pt;}
.x8_c01107{left:180.479067pt;}
.x37_c01107{left:183.679733pt;}
.x4_c01107{left:187.519067pt;}
.x2c_c01107{left:188.799333pt;}
.x9_c01107{left:193.918920pt;}
.x20_c01107{left:195.839333pt;}
.x17_c01107{left:197.438920pt;}
.x38_c01107{left:199.359333pt;}
.x2d_c01107{left:213.758787pt;}
.x18_c01107{left:217.599587pt;}
.x21_c01107{left:225.919867pt;}
.x39_c01107{left:227.198667pt;}
.x2a_c01107{left:231.039587pt;}
.x35_c01107{left:235.839867pt;}
.x2b_c01107{left:252.159733pt;}
.x22_c01107{left:254.399453pt;}
.x16_c01107{left:278.718787pt;}
.x23_c01107{left:279.999067pt;}
.x19_c01107{left:282.238787pt;}
.x1a_c01107{left:291.199200pt;}
.x5_c01107{left:297.279720pt;}
.x24_c01107{left:300.159733pt;}
.x1b_c01107{left:303.999067pt;}
.x31_c01107{left:313.278787pt;}
.x6_c01107{left:323.198693pt;}
.x32_c01107{left:342.399867pt;}
.x1c_c01107{left:375.679733pt;}
.x27_c01107{left:395.198693pt;}
.x25_c01107{left:396.159707pt;}
.x1d_c01107{left:397.119187pt;}
.x12_c01107{left:402.238773pt;}
.xb_c01107{left:407.039067pt;}
.x1e_c01107{left:414.079067pt;}
.x33_c01107{left:415.359333pt;}
.x13_c01107{left:420.159707pt;}
.xc_c01107{left:421.119187pt;}
.x14_c01107{left:429.439453pt;}
.x28_c01107{left:432.000000pt;}
.x15_c01107{left:437.438920pt;}
.x34_c01107{left:453.118693pt;}
.x26_c01107{left:462.079067pt;}
.x2e_c01107{left:525.439453pt;}
.x2f_c01107{left:545.279333pt;}
.xd_c01107{left:570.559573pt;}
.x30_c01107{left:575.039067pt;}
.xe_c01107{left:599.679200pt;}
.xf_c01107{left:613.119187pt;}
.x10_c01107{left:660.159707pt;}
.x11_c01107{left:680.958907pt;}
}





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

.ir_c01108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_fd5b71c41a1b36b8ea74e16a.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01108;src:url('chunks/assets/font_ab0f686cf610aa79dcdd3049.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01108;src:url('chunks/assets/font_9f27f9f52033e33eac436d5e.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01108;src:url('chunks/assets/font_af2909a887741181c6162418.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01108;src:url('chunks/assets/font_b8691da54a8a719c8ecb6e6e.woff2')format("woff");}.ff5_c01108{font-family:ff5_c01108;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01108;src:url('chunks/assets/font_14975ed0fc5db9928676d7ea.woff2')format("woff");}.ff6_c01108{font-family:ff6_c01108;line-height:1.364746;font-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_c01108{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_c01108{transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);}
.mc_c01108{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m20_c01108{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1a_c01108{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m0_c01108{transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);}
.m16_c01108{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m3_c01108{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m1e_c01108{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1b_c01108{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);}
.md_c01108{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m10_c01108{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m21_c01108{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m5_c01108{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m13_c01108{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m17_c01108{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.m11_c01108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01108{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m14_c01108{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m2_c01108{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m19_c01108{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.me_c01108{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m1c_c01108{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m1_c01108{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.ma_c01108{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m4_c01108{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m1d_c01108{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m12_c01108{transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);}
.m7_c01108{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m1f_c01108{transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);}
.m8_c01108{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m9_c01108{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.mb_c01108{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.mf_c01108{transform:matrix(0.344444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344444,0.000000,0.000000,0.250000,0,0);}
.v0_c01108{vertical-align:0.000000px;}
.ls1f_c01108{letter-spacing:-29.997000px;}
.ls1c_c01108{letter-spacing:-21.915000px;}
.ls2b_c01108{letter-spacing:-7.426125px;}
.ls3_c01108{letter-spacing:-6.465578px;}
.ls9_c01108{letter-spacing:-6.395925px;}
.ls28_c01108{letter-spacing:-6.216600px;}
.ls24_c01108{letter-spacing:-5.945625px;}
.lse_c01108{letter-spacing:-5.196713px;}
.ls21_c01108{letter-spacing:-4.635900px;}
.ls1a_c01108{letter-spacing:-4.496625px;}
.ls19_c01108{letter-spacing:-4.456463px;}
.lsf_c01108{letter-spacing:-3.791783px;}
.lsc_c01108{letter-spacing:-3.717000px;}
.ls1e_c01108{letter-spacing:-3.327600px;}
.ls23_c01108{letter-spacing:-2.971800px;}
.ls4_c01108{letter-spacing:-2.968875px;}
.ls1b_c01108{letter-spacing:-2.664735px;}
.ls29_c01108{letter-spacing:-2.516250px;}
.ls20_c01108{letter-spacing:-2.477025px;}
.ls2a_c01108{letter-spacing:-2.378040px;}
.lsd_c01108{letter-spacing:-2.229413px;}
.ls22_c01108{letter-spacing:-2.227500px;}
.ls1d_c01108{letter-spacing:-2.226000px;}
.ls5_c01108{letter-spacing:-1.651350px;}
.lsa_c01108{letter-spacing:-1.575000px;}
.lsb_c01108{letter-spacing:-1.489163px;}
.ls27_c01108{letter-spacing:-1.442220px;}
.ls2_c01108{letter-spacing:-0.846653px;}
.ls6_c01108{letter-spacing:-0.825675px;}
.ls8_c01108{letter-spacing:-0.740250px;}
.ls10_c01108{letter-spacing:-0.632775px;}
.ls7_c01108{letter-spacing:0.000000px;}
.ls25_c01108{letter-spacing:0.740250px;}
.ls1_c01108{letter-spacing:3.159450px;}
.ls11_c01108{letter-spacing:3.791783px;}
.ls18_c01108{letter-spacing:3.810375px;}
.ls14_c01108{letter-spacing:5.062365px;}
.ls26_c01108{letter-spacing:6.450000px;}
.ls0_c01108{letter-spacing:7.584450px;}
.ls13_c01108{letter-spacing:8.600752px;}
.ls12_c01108{letter-spacing:9.916200px;}
.ls15_c01108{letter-spacing:10.084800px;}
.ls17_c01108{letter-spacing:17.580465px;}
.ls16_c01108{letter-spacing:20.924970px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01108{word-spacing:0.000000px;}
._b_c01108{margin-left:-35.869151px;}
._10_c01108{margin-left:-4.517422px;}
._12_c01108{margin-left:-2.054216px;}
._f_c01108{margin-left:-1.042750px;}
._1_c01108{width:2.428553px;}
._4_c01108{width:3.677655px;}
._5_c01108{width:5.832738px;}
._2_c01108{width:7.030368px;}
._9_c01108{width:8.085851px;}
._0_c01108{width:9.400755px;}
._3_c01108{width:11.289658px;}
._8_c01108{width:13.562787px;}
._c_c01108{width:14.687446px;}
._d_c01108{width:16.613262px;}
._14_c01108{width:18.580602px;}
._e_c01108{width:19.869748px;}
._6_c01108{width:21.556402px;}
._15_c01108{width:22.648767px;}
._13_c01108{width:25.046770px;}
._a_c01108{width:27.979802px;}
._7_c01108{width:33.940315px;}
._17_c01108{width:36.752624px;}
._11_c01108{width:38.493358px;}
._18_c01108{width:44.231007px;}
._19_c01108{width:45.879869px;}
._16_c01108{width:48.706726px;}
._1a_c01108{width:55.599193px;}
.fc0_c01108{color:transparent;}
.fs6_c01108{font-size:22.500000px;}
.fs7_c01108{font-size:31.500000px;}
.fs8_c01108{font-size:32.250000px;}
.fs9_c01108{font-size:33.000000px;}
.fsa_c01108{font-size:33.750000px;}
.fs5_c01108{font-size:44.250000px;}
.fs11_c01108{font-size:74.250000px;}
.fs10_c01108{font-size:75.000000px;}
.fs4_c01108{font-size:75.750000px;}
.fsb_c01108{font-size:78.000000px;}
.fs1_c01108{font-size:78.750000px;}
.fse_c01108{font-size:79.500000px;}
.fs3_c01108{font-size:80.250000px;}
.fsf_c01108{font-size:81.000000px;}
.fs2_c01108{font-size:81.750000px;}
.fs12_c01108{font-size:82.500000px;}
.fs13_c01108{font-size:84.000000px;}
.fs0_c01108{font-size:84.750000px;}
.fsc_c01108{font-size:88.500000px;}
.fsd_c01108{font-size:90.000000px;}
.y0_c01108{bottom:0.000000px;}
.y1f_c01108{bottom:179.998950px;}
.y1e_c01108{bottom:209.518635px;}
.y1d_c01108{bottom:209.519535px;}
.y1c_c01108{bottom:239.399250px;}
.y1b_c01108{bottom:239.399415px;}
.y1a_c01108{bottom:268.918950px;}
.y19_c01108{bottom:328.319250px;}
.y18_c01108{bottom:358.559100px;}
.y17_c01108{bottom:388.439715px;}
.y16_c01108{bottom:448.560285px;}
.y15_c01108{bottom:478.080525px;}
.y14_c01108{bottom:508.319820px;}
.y13_c01108{bottom:537.839535px;}
.y12_c01108{bottom:597.239820px;}
.y11_c01108{bottom:626.398635px;}
.y10_c01108{bottom:656.999400px;}
.yf_c01108{bottom:716.759085px;}
.ye_c01108{bottom:746.278800px;}
.yd_c01108{bottom:752.039985px;}
.yc_c01108{bottom:776.160210px;}
.yb_c01108{bottom:836.279850px;}
.ya_c01108{bottom:865.799565px;}
.y9_c01108{bottom:896.039475px;}
.y8_c01108{bottom:955.798920px;}
.y6_c01108{bottom:986.038830px;}
.y7_c01108{bottom:986.038875px;}
.y4_c01108{bottom:1016.278020px;}
.y5_c01108{bottom:1016.278755px;}
.y3_c01108{bottom:1075.679070px;}
.y2_c01108{bottom:1104.478635px;}
.y1_c01108{bottom:1134.359250px;}
.h8_c01108{height:23.466797px;}
.h9_c01108{height:30.900146px;}
.ha_c01108{height:31.635864px;}
.hb_c01108{height:32.371582px;}
.hc_c01108{height:33.107300px;}
.h7_c01108{height:46.151367px;}
.h14_c01108{height:72.872314px;}
.h13_c01108{height:73.571777px;}
.h11_c01108{height:74.307495px;}
.hd_c01108{height:76.552734px;}
.h3_c01108{height:77.288818px;}
.h10_c01108{height:78.024902px;}
.h5_c01108{height:78.760986px;}
.h6_c01108{height:79.004883px;}
.h12_c01108{height:79.497070px;}
.h4_c01108{height:80.193237px;}
.h15_c01108{height:80.969238px;}
.h16_c01108{height:82.441406px;}
.h2_c01108{height:83.177490px;}
.h1_c01108{height:85.412109px;}
.he_c01108{height:87.462891px;}
.hf_c01108{height:88.945312px;}
.h0_c01108{height:1263.000000px;}
.w0_c01108{width:892.500000px;}
.x0_c01108{left:0.000000px;}
.x1c_c01108{left:132.119415px;}
.xa_c01108{left:133.198785px;}
.x4_c01108{left:134.279850px;}
.x1_c01108{left:136.079400px;}
.x22_c01108{left:167.039400px;}
.xc_c01108{left:177.120000px;}
.x18_c01108{left:200.159850px;}
.x21_c01108{left:208.080000px;}
.x15_c01108{left:209.159385px;}
.x25_c01108{left:214.559685px;}
.x1d_c01108{left:222.479685px;}
.x19_c01108{left:223.918350px;}
.x2_c01108{left:226.798950px;}
.xd_c01108{left:228.598500px;}
.x5_c01108{left:229.679700px;}
.x1e_c01108{left:237.958950px;}
.x26_c01108{left:239.040000px;}
.xe_c01108{left:252.358635px;}
.x6_c01108{left:253.798950px;}
.x3_c01108{left:257.759100px;}
.x29_c01108{left:275.039385px;}
.xf_c01108{left:278.999385px;}
.x7_c01108{left:291.599700px;}
.x1a_c01108{left:314.278800px;}
.x23_c01108{left:316.439235px;}
.x10_c01108{left:320.399235px;}
.x16_c01108{left:321.478635px;}
.x9_c01108{left:339.838515px;}
.x1b_c01108{left:343.798515px;}
.x17_c01108{left:352.438635px;}
.x11_c01108{left:365.399850px;}
.x24_c01108{left:370.439235px;}
.x8_c01108{left:375.839535px;}
.x1f_c01108{left:379.799535px;}
.x27_c01108{left:380.878950px;}
.x28_c01108{left:398.879565px;}
.x20_c01108{left:406.079400px;}
.xb_c01108{left:412.199850px;}
.x12_c01108{left:493.918350px;}
.x13_c01108{left:532.439250px;}
.x14_c01108{left:557.998950px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls1f_c01108{letter-spacing:-26.664000pt;}
.ls1c_c01108{letter-spacing:-19.480000pt;}
.ls2b_c01108{letter-spacing:-6.601000pt;}
.ls3_c01108{letter-spacing:-5.747180pt;}
.ls9_c01108{letter-spacing:-5.685267pt;}
.ls28_c01108{letter-spacing:-5.525867pt;}
.ls24_c01108{letter-spacing:-5.285000pt;}
.lse_c01108{letter-spacing:-4.619300pt;}
.ls21_c01108{letter-spacing:-4.120800pt;}
.ls1a_c01108{letter-spacing:-3.997000pt;}
.ls19_c01108{letter-spacing:-3.961300pt;}
.lsf_c01108{letter-spacing:-3.370473pt;}
.lsc_c01108{letter-spacing:-3.304000pt;}
.ls1e_c01108{letter-spacing:-2.957867pt;}
.ls23_c01108{letter-spacing:-2.641600pt;}
.ls4_c01108{letter-spacing:-2.639000pt;}
.ls1b_c01108{letter-spacing:-2.368653pt;}
.ls29_c01108{letter-spacing:-2.236667pt;}
.ls20_c01108{letter-spacing:-2.201800pt;}
.ls2a_c01108{letter-spacing:-2.113813pt;}
.lsd_c01108{letter-spacing:-1.981700pt;}
.ls22_c01108{letter-spacing:-1.980000pt;}
.ls1d_c01108{letter-spacing:-1.978667pt;}
.ls5_c01108{letter-spacing:-1.467867pt;}
.lsa_c01108{letter-spacing:-1.400000pt;}
.lsb_c01108{letter-spacing:-1.323700pt;}
.ls27_c01108{letter-spacing:-1.281973pt;}
.ls2_c01108{letter-spacing:-0.752580pt;}
.ls6_c01108{letter-spacing:-0.733933pt;}
.ls8_c01108{letter-spacing:-0.658000pt;}
.ls10_c01108{letter-spacing:-0.562467pt;}
.ls7_c01108{letter-spacing:0.000000pt;}
.ls25_c01108{letter-spacing:0.658000pt;}
.ls1_c01108{letter-spacing:2.808400pt;}
.ls11_c01108{letter-spacing:3.370473pt;}
.ls18_c01108{letter-spacing:3.387000pt;}
.ls14_c01108{letter-spacing:4.499880pt;}
.ls26_c01108{letter-spacing:5.733333pt;}
.ls0_c01108{letter-spacing:6.741733pt;}
.ls13_c01108{letter-spacing:7.645113pt;}
.ls12_c01108{letter-spacing:8.814400pt;}
.ls15_c01108{letter-spacing:8.964267pt;}
.ls17_c01108{letter-spacing:15.627080pt;}
.ls16_c01108{letter-spacing:18.599973pt;}
.ws0_c01108{word-spacing:0.000000pt;}
._b_c01108{margin-left:-31.883690pt;}
._10_c01108{margin-left:-4.015486pt;}
._12_c01108{margin-left:-1.825970pt;}
._f_c01108{margin-left:-0.926888pt;}
._1_c01108{width:2.158714pt;}
._4_c01108{width:3.269026pt;}
._5_c01108{width:5.184656pt;}
._2_c01108{width:6.249216pt;}
._9_c01108{width:7.187423pt;}
._0_c01108{width:8.356226pt;}
._3_c01108{width:10.035252pt;}
._8_c01108{width:12.055811pt;}
._c_c01108{width:13.055507pt;}
._d_c01108{width:14.767344pt;}
._14_c01108{width:16.516091pt;}
._e_c01108{width:17.661998pt;}
._6_c01108{width:19.161246pt;}
._15_c01108{width:20.132238pt;}
._13_c01108{width:22.263796pt;}
._a_c01108{width:24.870935pt;}
._7_c01108{width:30.169169pt;}
._17_c01108{width:32.668999pt;}
._11_c01108{width:34.216318pt;}
._18_c01108{width:39.316451pt;}
._19_c01108{width:40.782106pt;}
._16_c01108{width:43.294868pt;}
._1a_c01108{width:49.421505pt;}
.fs6_c01108{font-size:20.000000pt;}
.fs7_c01108{font-size:28.000000pt;}
.fs8_c01108{font-size:28.666667pt;}
.fs9_c01108{font-size:29.333333pt;}
.fsa_c01108{font-size:30.000000pt;}
.fs5_c01108{font-size:39.333333pt;}
.fs11_c01108{font-size:66.000000pt;}
.fs10_c01108{font-size:66.666667pt;}
.fs4_c01108{font-size:67.333333pt;}
.fsb_c01108{font-size:69.333333pt;}
.fs1_c01108{font-size:70.000000pt;}
.fse_c01108{font-size:70.666667pt;}
.fs3_c01108{font-size:71.333333pt;}
.fsf_c01108{font-size:72.000000pt;}
.fs2_c01108{font-size:72.666667pt;}
.fs12_c01108{font-size:73.333333pt;}
.fs13_c01108{font-size:74.666667pt;}
.fs0_c01108{font-size:75.333333pt;}
.fsc_c01108{font-size:78.666667pt;}
.fsd_c01108{font-size:80.000000pt;}
.y0_c01108{bottom:0.000000pt;}
.y1f_c01108{bottom:159.999067pt;}
.y1e_c01108{bottom:186.238787pt;}
.y1d_c01108{bottom:186.239587pt;}
.y1c_c01108{bottom:212.799333pt;}
.y1b_c01108{bottom:212.799480pt;}
.y1a_c01108{bottom:239.039067pt;}
.y19_c01108{bottom:291.839333pt;}
.y18_c01108{bottom:318.719200pt;}
.y17_c01108{bottom:345.279747pt;}
.y16_c01108{bottom:398.720253pt;}
.y15_c01108{bottom:424.960467pt;}
.y14_c01108{bottom:451.839840pt;}
.y13_c01108{bottom:478.079587pt;}
.y12_c01108{bottom:530.879840pt;}
.y11_c01108{bottom:556.798787pt;}
.y10_c01108{bottom:583.999467pt;}
.yf_c01108{bottom:637.119187pt;}
.ye_c01108{bottom:663.358933pt;}
.yd_c01108{bottom:668.479987pt;}
.yc_c01108{bottom:689.920187pt;}
.yb_c01108{bottom:743.359867pt;}
.ya_c01108{bottom:769.599613pt;}
.y9_c01108{bottom:796.479533pt;}
.y8_c01108{bottom:849.599040pt;}
.y6_c01108{bottom:876.478960pt;}
.y7_c01108{bottom:876.479000pt;}
.y4_c01108{bottom:903.358240pt;}
.y5_c01108{bottom:903.358893pt;}
.y3_c01108{bottom:956.159173pt;}
.y2_c01108{bottom:981.758787pt;}
.y1_c01108{bottom:1008.319333pt;}
.h8_c01108{height:20.859375pt;}
.h9_c01108{height:27.466797pt;}
.ha_c01108{height:28.120768pt;}
.hb_c01108{height:28.774740pt;}
.hc_c01108{height:29.428711pt;}
.h7_c01108{height:41.023438pt;}
.h14_c01108{height:64.775391pt;}
.h13_c01108{height:65.397135pt;}
.h11_c01108{height:66.051107pt;}
.hd_c01108{height:68.046875pt;}
.h3_c01108{height:68.701172pt;}
.h10_c01108{height:69.355469pt;}
.h5_c01108{height:70.009766pt;}
.h6_c01108{height:70.226562pt;}
.h12_c01108{height:70.664062pt;}
.h4_c01108{height:71.282878pt;}
.h15_c01108{height:71.972656pt;}
.h16_c01108{height:73.281250pt;}
.h2_c01108{height:73.935547pt;}
.h1_c01108{height:75.921875pt;}
.he_c01108{height:77.744792pt;}
.hf_c01108{height:79.062500pt;}
.h0_c01108{height:1122.666667pt;}
.w0_c01108{width:793.333333pt;}
.x0_c01108{left:0.000000pt;}
.x1c_c01108{left:117.439480pt;}
.xa_c01108{left:118.398920pt;}
.x4_c01108{left:119.359867pt;}
.x1_c01108{left:120.959467pt;}
.x22_c01108{left:148.479467pt;}
.xc_c01108{left:157.440000pt;}
.x18_c01108{left:177.919867pt;}
.x21_c01108{left:184.960000pt;}
.x15_c01108{left:185.919453pt;}
.x25_c01108{left:190.719720pt;}
.x1d_c01108{left:197.759720pt;}
.x19_c01108{left:199.038533pt;}
.x2_c01108{left:201.599067pt;}
.xd_c01108{left:203.198667pt;}
.x5_c01108{left:204.159733pt;}
.x1e_c01108{left:211.519067pt;}
.x26_c01108{left:212.480000pt;}
.xe_c01108{left:224.318787pt;}
.x6_c01108{left:225.599067pt;}
.x3_c01108{left:229.119200pt;}
.x29_c01108{left:244.479453pt;}
.xf_c01108{left:247.999453pt;}
.x7_c01108{left:259.199733pt;}
.x1a_c01108{left:279.358933pt;}
.x23_c01108{left:281.279320pt;}
.x10_c01108{left:284.799320pt;}
.x16_c01108{left:285.758787pt;}
.x9_c01108{left:302.078680pt;}
.x1b_c01108{left:305.598680pt;}
.x17_c01108{left:313.278787pt;}
.x11_c01108{left:324.799867pt;}
.x24_c01108{left:329.279320pt;}
.x8_c01108{left:334.079587pt;}
.x1f_c01108{left:337.599587pt;}
.x27_c01108{left:338.559067pt;}
.x28_c01108{left:354.559613pt;}
.x20_c01108{left:360.959467pt;}
.xb_c01108{left:366.399867pt;}
.x12_c01108{left:439.038533pt;}
.x13_c01108{left:473.279333pt;}
.x14_c01108{left:495.999067pt;}
}





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

.ir_c01109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_3d3f2ea57856ee60ed13ca1d.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01109;src:url('chunks/assets/font_299c8425307f358fb36af0fd.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01109;src:url('chunks/assets/font_4a03e915aab064ff31618293.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01109;src:url('chunks/assets/font_f61afbc1d9cdea39ba426e5d.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01109;src:url('chunks/assets/font_9ddf09f8acc6ef7832a70495.woff2')format("woff");}.ff5_c01109{font-family:ff5_c01109;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01109;src:url('chunks/assets/font_f9b249394ac66c371cc2076c.woff2')format("woff");}.ff6_c01109{font-family:ff6_c01109;line-height:1.432129;font-style:normal;font-weight: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_c01109;src:url('chunks/assets/font_3cfe19b3df6f210d8d3b75fe.woff2')format("woff");}.ff7_c01109{font-family:ff7_c01109;line-height:1.281250;font-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_c01109{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m16_c01109{transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);}
.m18_c01109{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.mf_c01109{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.m3_c01109{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1a_c01109{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m2_c01109{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m19_c01109{transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);}
.m14_c01109{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.me_c01109{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m1_c01109{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m12_c01109{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.md_c01109{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m1c_c01109{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m9_c01109{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m4_c01109{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.mb_c01109{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m7_c01109{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.ma_c01109{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m11_c01109{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m1b_c01109{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5_c01109{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m13_c01109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01109{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m0_c01109{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1d_c01109{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m6_c01109{transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);}
.m8_c01109{transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);}
.mc_c01109{transform:matrix(0.285398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285398,0.000000,0.000000,0.250000,0,0);}
.m15_c01109{transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314433,0.000000,0.000000,0.250000,0,0);}
.v0_c01109{vertical-align:0.000000px;}
.ls13_c01109{letter-spacing:-16.424550px;}
.ls1e_c01109{letter-spacing:-8.948250px;}
.ls2a_c01109{letter-spacing:-8.914500px;}
.ls16_c01109{letter-spacing:-8.830950px;}
.ls25_c01109{letter-spacing:-5.611050px;}
.ls12_c01109{letter-spacing:-5.196713px;}
.lsb_c01109{letter-spacing:-4.722300px;}
.ls24_c01109{letter-spacing:-4.461900px;}
.ls20_c01109{letter-spacing:-4.456463px;}
.ls9_c01109{letter-spacing:-4.141800px;}
.ls2b_c01109{letter-spacing:-3.935250px;}
.ls28_c01109{letter-spacing:-3.854475px;}
.ls2_c01109{letter-spacing:-3.717000px;}
.ls21_c01109{letter-spacing:-3.148200px;}
.lsd_c01109{letter-spacing:-3.145800px;}
.ls4_c01109{letter-spacing:-2.968875px;}
.ls26_c01109{letter-spacing:-2.493960px;}
.ls19_c01109{letter-spacing:-2.360355px;}
.ls7_c01109{letter-spacing:-2.359350px;}
.ls3_c01109{letter-spacing:-2.229413px;}
.lsa_c01109{letter-spacing:-1.574895px;}
.ls1b_c01109{letter-spacing:-1.558995px;}
.ls27_c01109{letter-spacing:-1.500075px;}
.ls11_c01109{letter-spacing:-1.489163px;}
.ls1d_c01109{letter-spacing:-0.834300px;}
.ls14_c01109{letter-spacing:-0.787800px;}
.lsc_c01109{letter-spacing:-0.787050px;}
.ls17_c01109{letter-spacing:-0.786450px;}
.lsf_c01109{letter-spacing:-0.777443px;}
.ls1c_c01109{letter-spacing:-0.747300px;}
.ls29_c01109{letter-spacing:-0.740250px;}
.ls6_c01109{letter-spacing:0.000000px;}
.ls22_c01109{letter-spacing:0.740250px;}
.ls8_c01109{letter-spacing:0.756000px;}
.ls0_c01109{letter-spacing:0.786450px;}
.ls15_c01109{letter-spacing:0.811125px;}
.ls23_c01109{letter-spacing:0.946050px;}
.ls18_c01109{letter-spacing:1.007325px;}
.lse_c01109{letter-spacing:1.573703px;}
.ls10_c01109{letter-spacing:2.337300px;}
.ls1_c01109{letter-spacing:2.359350px;}
.ls1a_c01109{letter-spacing:3.102705px;}
.ls1f_c01109{letter-spacing:3.118500px;}
.ls5_c01109{letter-spacing:3.242903px;}
.ls2c_c01109{letter-spacing:4.722300px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01109{word-spacing:0.000000px;}
._a_c01109{margin-left:-8.031657px;}
._8_c01109{margin-left:-5.804989px;}
._7_c01109{margin-left:-3.959862px;}
._6_c01109{margin-left:-1.888395px;}
._e_c01109{width:1.120106px;}
._9_c01109{width:2.691482px;}
._d_c01109{width:3.948495px;}
._1_c01109{width:5.373677px;}
._5_c01109{width:6.853350px;}
._4_c01109{width:8.080703px;}
._0_c01109{width:9.851655px;}
._3_c01109{width:11.273131px;}
._2_c01109{width:13.543633px;}
._b_c01109{width:14.847722px;}
._c_c01109{width:18.900380px;}
._f_c01109{width:20.499663px;}
._10_c01109{width:34.519417px;}
.fc0_c01109{color:transparent;}
.fs6_c01109{font-size:62.250000px;}
.fsb_c01109{font-size:70.500000px;}
.fsc_c01109{font-size:72.750000px;}
.fsa_c01109{font-size:77.250000px;}
.fs9_c01109{font-size:78.000000px;}
.fs0_c01109{font-size:78.750000px;}
.fs7_c01109{font-size:79.500000px;}
.fs1_c01109{font-size:80.250000px;}
.fs5_c01109{font-size:81.000000px;}
.fs2_c01109{font-size:81.750000px;}
.fs3_c01109{font-size:82.500000px;}
.fsd_c01109{font-size:83.250000px;}
.fse_c01109{font-size:84.000000px;}
.fs8_c01109{font-size:84.750000px;}
.fs4_c01109{font-size:87.750000px;}
.y0_c01109{bottom:0.000000px;}
.y1a_c01109{bottom:240.121035px;}
.y19_c01109{bottom:269.279895px;}
.y18_c01109{bottom:299.519685px;}
.y17_c01109{bottom:358.560750px;}
.y16_c01109{bottom:388.799955px;}
.y15_c01109{bottom:418.679670px;}
.y14_c01109{bottom:448.560285px;}
.y13_c01109{bottom:508.680720px;}
.y12_c01109{bottom:538.200435px;}
.y11_c01109{bottom:568.081050px;}
.y10_c01109{bottom:627.479685px;}
.yf_c01109{bottom:657.360300px;}
.ye_c01109{bottom:687.600135px;}
.yd_c01109{bottom:747.359850px;}
.yc_c01109{bottom:776.879520px;}
.yb_c01109{bottom:776.880390px;}
.ya_c01109{bottom:807.839535px;}
.y9_c01109{bottom:866.880615px;}
.y8_c01109{bottom:896.400240px;}
.y7_c01109{bottom:896.401125px;}
.y6_c01109{bottom:926.280855px;}
.y5_c01109{bottom:956.159820px;}
.y4_c01109{bottom:1016.280390px;}
.y3_c01109{bottom:1045.799280px;}
.y2_c01109{bottom:1076.400885px;}
.y1_c01109{bottom:1135.799565px;}
.h9_c01109{height:62.736328px;}
.h11_c01109{height:73.529297px;}
.hf_c01109{height:75.816650px;}
.h13_c01109{height:75.875977px;}
.h1_c01109{height:77.288818px;}
.ha_c01109{height:77.986084px;}
.h12_c01109{height:78.024902px;}
.he_c01109{height:78.609375px;}
.h14_c01109{height:78.721802px;}
.h2_c01109{height:78.760986px;}
.h6_c01109{height:79.365234px;}
.hc_c01109{height:80.121094px;}
.h3_c01109{height:80.233154px;}
.h5_c01109{height:80.876953px;}
.h10_c01109{height:80.928955px;}
.h4_c01109{height:80.969238px;}
.h8_c01109{height:81.632812px;}
.h15_c01109{height:81.664673px;}
.h19_c01109{height:81.705322px;}
.hb_c01109{height:82.388672px;}
.h18_c01109{height:83.177490px;}
.hd_c01109{height:83.756836px;}
.h16_c01109{height:84.656250px;}
.h17_c01109{height:85.412109px;}
.h7_c01109{height:86.721680px;}
.h0_c01109{height:1263.000000px;}
.w0_c01109{width:892.500000px;}
.x0_c01109{left:0.000000px;}
.xe_c01109{left:134.638365px;}
.x1_c01109{left:135.718500px;}
.x12_c01109{left:136.799565px;}
.x30_c01109{left:137.878950px;}
.x17_c01109{left:167.759565px;}
.x1f_c01109{left:209.159385px;}
.x27_c01109{left:210.599700px;}
.x8_c01109{left:216.000000px;}
.x20_c01109{left:232.199385px;}
.x28_c01109{left:236.518635px;}
.x23_c01109{left:240.478635px;}
.x9_c01109{left:243.359250px;}
.x2e_c01109{left:244.438635px;}
.x13_c01109{left:271.079385px;}
.x29_c01109{left:273.958350px;}
.x24_c01109{left:280.798950px;}
.x2_c01109{left:288.719100px;}
.x14_c01109{left:299.878950px;}
.x25_c01109{left:304.199850px;}
.x2a_c01109{left:306.358635px;}
.xa_c01109{left:324.000000px;}
.x3_c01109{left:326.158785px;}
.x21_c01109{left:330.118785px;}
.x37_c01109{left:335.519100px;}
.xb_c01109{left:339.479235px;}
.xf_c01109{left:346.319850px;}
.x26_c01109{left:347.399235px;}
.x4_c01109{left:349.559685px;}
.xc_c01109{left:354.958350px;}
.x33_c01109{left:357.118785px;}
.x1c_c01109{left:363.598530px;}
.x10_c01109{left:366.838515px;}
.x18_c01109{left:375.478635px;}
.x2f_c01109{left:378.000000px;}
.x34_c01109{left:381.599100px;}
.x5_c01109{left:389.878320px;}
.x1d_c01109{left:392.759085px;}
.x11_c01109{left:400.319820px;}
.x35_c01109{left:401.758530px;}
.x22_c01109{left:403.918950px;}
.x19_c01109{left:418.679670px;}
.x6_c01109{left:427.319820px;}
.x36_c01109{left:432.718500px;}
.x7_c01109{left:442.439670px;}
.xd_c01109{left:477.359850px;}
.x2c_c01109{left:506.159415px;}
.x1e_c01109{left:546.118785px;}
.x2d_c01109{left:548.999400px;}
.x2b_c01109{left:582.479235px;}
.x1a_c01109{left:601.559100px;}
.x15_c01109{left:618.478635px;}
.x31_c01109{left:629.999400px;}
.x1b_c01109{left:644.758530px;}
.x16_c01109{left:649.438620px;}
.x32_c01109{left:674.279850px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls13_c01109{letter-spacing:-14.599600pt;}
.ls1e_c01109{letter-spacing:-7.954000pt;}
.ls2a_c01109{letter-spacing:-7.924000pt;}
.ls16_c01109{letter-spacing:-7.849733pt;}
.ls25_c01109{letter-spacing:-4.987600pt;}
.ls12_c01109{letter-spacing:-4.619300pt;}
.lsb_c01109{letter-spacing:-4.197600pt;}
.ls24_c01109{letter-spacing:-3.966133pt;}
.ls20_c01109{letter-spacing:-3.961300pt;}
.ls9_c01109{letter-spacing:-3.681600pt;}
.ls2b_c01109{letter-spacing:-3.498000pt;}
.ls28_c01109{letter-spacing:-3.426200pt;}
.ls2_c01109{letter-spacing:-3.304000pt;}
.ls21_c01109{letter-spacing:-2.798400pt;}
.lsd_c01109{letter-spacing:-2.796267pt;}
.ls4_c01109{letter-spacing:-2.639000pt;}
.ls26_c01109{letter-spacing:-2.216853pt;}
.ls19_c01109{letter-spacing:-2.098093pt;}
.ls7_c01109{letter-spacing:-2.097200pt;}
.ls3_c01109{letter-spacing:-1.981700pt;}
.lsa_c01109{letter-spacing:-1.399907pt;}
.ls1b_c01109{letter-spacing:-1.385773pt;}
.ls27_c01109{letter-spacing:-1.333400pt;}
.ls11_c01109{letter-spacing:-1.323700pt;}
.ls1d_c01109{letter-spacing:-0.741600pt;}
.ls14_c01109{letter-spacing:-0.700267pt;}
.lsc_c01109{letter-spacing:-0.699600pt;}
.ls17_c01109{letter-spacing:-0.699067pt;}
.lsf_c01109{letter-spacing:-0.691060pt;}
.ls1c_c01109{letter-spacing:-0.664267pt;}
.ls29_c01109{letter-spacing:-0.658000pt;}
.ls6_c01109{letter-spacing:0.000000pt;}
.ls22_c01109{letter-spacing:0.658000pt;}
.ls8_c01109{letter-spacing:0.672000pt;}
.ls0_c01109{letter-spacing:0.699067pt;}
.ls15_c01109{letter-spacing:0.721000pt;}
.ls23_c01109{letter-spacing:0.840933pt;}
.ls18_c01109{letter-spacing:0.895400pt;}
.lse_c01109{letter-spacing:1.398847pt;}
.ls10_c01109{letter-spacing:2.077600pt;}
.ls1_c01109{letter-spacing:2.097200pt;}
.ls1a_c01109{letter-spacing:2.757960pt;}
.ls1f_c01109{letter-spacing:2.772000pt;}
.ls5_c01109{letter-spacing:2.882580pt;}
.ls2c_c01109{letter-spacing:4.197600pt;}
.ws0_c01109{word-spacing:0.000000pt;}
._a_c01109{margin-left:-7.139250pt;}
._8_c01109{margin-left:-5.159991pt;}
._7_c01109{margin-left:-3.519877pt;}
._6_c01109{margin-left:-1.678574pt;}
._e_c01109{width:0.995649pt;}
._9_c01109{width:2.392428pt;}
._d_c01109{width:3.509774pt;}
._1_c01109{width:4.776602pt;}
._5_c01109{width:6.091867pt;}
._4_c01109{width:7.182847pt;}
._0_c01109{width:8.757026pt;}
._3_c01109{width:10.020561pt;}
._2_c01109{width:12.038785pt;}
._b_c01109{width:13.197975pt;}
._c_c01109{width:16.800338pt;}
._f_c01109{width:18.221922pt;}
._10_c01109{width:30.683926pt;}
.fs6_c01109{font-size:55.333333pt;}
.fsb_c01109{font-size:62.666667pt;}
.fsc_c01109{font-size:64.666667pt;}
.fsa_c01109{font-size:68.666667pt;}
.fs9_c01109{font-size:69.333333pt;}
.fs0_c01109{font-size:70.000000pt;}
.fs7_c01109{font-size:70.666667pt;}
.fs1_c01109{font-size:71.333333pt;}
.fs5_c01109{font-size:72.000000pt;}
.fs2_c01109{font-size:72.666667pt;}
.fs3_c01109{font-size:73.333333pt;}
.fsd_c01109{font-size:74.000000pt;}
.fse_c01109{font-size:74.666667pt;}
.fs8_c01109{font-size:75.333333pt;}
.fs4_c01109{font-size:78.000000pt;}
.y0_c01109{bottom:0.000000pt;}
.y1a_c01109{bottom:213.440920pt;}
.y19_c01109{bottom:239.359907pt;}
.y18_c01109{bottom:266.239720pt;}
.y17_c01109{bottom:318.720667pt;}
.y16_c01109{bottom:345.599960pt;}
.y15_c01109{bottom:372.159707pt;}
.y14_c01109{bottom:398.720253pt;}
.y13_c01109{bottom:452.160640pt;}
.y12_c01109{bottom:478.400387pt;}
.y11_c01109{bottom:504.960933pt;}
.y10_c01109{bottom:557.759720pt;}
.yf_c01109{bottom:584.320267pt;}
.ye_c01109{bottom:611.200120pt;}
.yd_c01109{bottom:664.319867pt;}
.yc_c01109{bottom:690.559573pt;}
.yb_c01109{bottom:690.560347pt;}
.ya_c01109{bottom:718.079587pt;}
.y9_c01109{bottom:770.560547pt;}
.y8_c01109{bottom:796.800213pt;}
.y7_c01109{bottom:796.801000pt;}
.y6_c01109{bottom:823.360760pt;}
.y5_c01109{bottom:849.919840pt;}
.y4_c01109{bottom:903.360347pt;}
.y3_c01109{bottom:929.599360pt;}
.y2_c01109{bottom:956.800787pt;}
.y1_c01109{bottom:1009.599613pt;}
.h9_c01109{height:55.765625pt;}
.h11_c01109{height:65.359375pt;}
.hf_c01109{height:67.392578pt;}
.h13_c01109{height:67.445312pt;}
.h1_c01109{height:68.701172pt;}
.ha_c01109{height:69.320964pt;}
.h12_c01109{height:69.355469pt;}
.he_c01109{height:69.875000pt;}
.h14_c01109{height:69.974935pt;}
.h2_c01109{height:70.009766pt;}
.h6_c01109{height:70.546875pt;}
.hc_c01109{height:71.218750pt;}
.h3_c01109{height:71.318359pt;}
.h5_c01109{height:71.890625pt;}
.h10_c01109{height:71.936849pt;}
.h4_c01109{height:71.972656pt;}
.h8_c01109{height:72.562500pt;}
.h15_c01109{height:72.590820pt;}
.h19_c01109{height:72.626953pt;}
.hb_c01109{height:73.234375pt;}
.h18_c01109{height:73.935547pt;}
.hd_c01109{height:74.450521pt;}
.h16_c01109{height:75.250000pt;}
.h17_c01109{height:75.921875pt;}
.h7_c01109{height:77.085938pt;}
.h0_c01109{height:1122.666667pt;}
.w0_c01109{width:793.333333pt;}
.x0_c01109{left:0.000000pt;}
.xe_c01109{left:119.678547pt;}
.x1_c01109{left:120.638667pt;}
.x12_c01109{left:121.599613pt;}
.x30_c01109{left:122.559067pt;}
.x17_c01109{left:149.119613pt;}
.x1f_c01109{left:185.919453pt;}
.x27_c01109{left:187.199733pt;}
.x8_c01109{left:192.000000pt;}
.x20_c01109{left:206.399453pt;}
.x28_c01109{left:210.238787pt;}
.x23_c01109{left:213.758787pt;}
.x9_c01109{left:216.319333pt;}
.x2e_c01109{left:217.278787pt;}
.x13_c01109{left:240.959453pt;}
.x29_c01109{left:243.518533pt;}
.x24_c01109{left:249.599067pt;}
.x2_c01109{left:256.639200pt;}
.x14_c01109{left:266.559067pt;}
.x25_c01109{left:270.399867pt;}
.x2a_c01109{left:272.318787pt;}
.xa_c01109{left:288.000000pt;}
.x3_c01109{left:289.918920pt;}
.x21_c01109{left:293.438920pt;}
.x37_c01109{left:298.239200pt;}
.xb_c01109{left:301.759320pt;}
.xf_c01109{left:307.839867pt;}
.x26_c01109{left:308.799320pt;}
.x4_c01109{left:310.719720pt;}
.xc_c01109{left:315.518533pt;}
.x33_c01109{left:317.438920pt;}
.x1c_c01109{left:323.198693pt;}
.x10_c01109{left:326.078680pt;}
.x18_c01109{left:333.758787pt;}
.x2f_c01109{left:336.000000pt;}
.x34_c01109{left:339.199200pt;}
.x5_c01109{left:346.558507pt;}
.x1d_c01109{left:349.119187pt;}
.x11_c01109{left:355.839840pt;}
.x35_c01109{left:357.118693pt;}
.x22_c01109{left:359.039067pt;}
.x19_c01109{left:372.159707pt;}
.x6_c01109{left:379.839840pt;}
.x36_c01109{left:384.638667pt;}
.x7_c01109{left:393.279707pt;}
.xd_c01109{left:424.319867pt;}
.x2c_c01109{left:449.919480pt;}
.x1e_c01109{left:485.438920pt;}
.x2d_c01109{left:487.999467pt;}
.x2b_c01109{left:517.759320pt;}
.x1a_c01109{left:534.719200pt;}
.x15_c01109{left:549.758787pt;}
.x31_c01109{left:559.999467pt;}
.x1b_c01109{left:573.118693pt;}
.x16_c01109{left:577.278773pt;}
.x32_c01109{left:599.359867pt;}
}





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

.ir_c01110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_c94f155d682f1565930dd124.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01110;src:url('chunks/assets/font_3c12e7f7acc62337a8f6c84a.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01110;src:url('chunks/assets/font_e804cd015556ba5783a8a769.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01110;src:url('chunks/assets/font_1d156fa0acc6286f95533b9e.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01110;src:url('chunks/assets/font_dd22a71e2be1c1d16e220ace.woff2')format("woff");}.ff5_c01110{font-family:ff5_c01110;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01110;src:url('chunks/assets/font_a0a95d54547991efa0476ad6.woff2')format("woff");}.ff6_c01110{font-family:ff6_c01110;line-height:1.284180;font-style:normal;font-weight: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_c01110;src:url('chunks/assets/font_6ee7aee3f274da86f19437f7.woff2')format("woff");}.ff7_c01110{font-family:ff7_c01110;line-height:1.432129;font-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_c01110{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m14_c01110{transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);}
.m11_c01110{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m1a_c01110{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m15_c01110{transform:matrix(0.204348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204348,0.000000,0.000000,0.250000,0,0);}
.m1e_c01110{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c01110{transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);}
.m18_c01110{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.m1b_c01110{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.m1d_c01110{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m17_c01110{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m1c_c01110{transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220297,0.000000,0.000000,0.250000,0,0);}
.m16_c01110{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m19_c01110{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m8_c01110{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m12_c01110{transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228632,0.000000,0.000000,0.250000,0,0);}
.ma_c01110{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m3_c01110{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m2_c01110{transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232843,0.000000,0.000000,0.250000,0,0);}
.m6_c01110{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m0_c01110{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m4_c01110{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m9_c01110{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m13_c01110{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.mf_c01110{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.md_c01110{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.mb_c01110{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_c01110{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1_c01110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01110{transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);}
.me_c01110{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.v0_c01110{vertical-align:0.000000px;}
.lsa_c01110{letter-spacing:-14.877000px;}
.ls11_c01110{letter-spacing:-11.882228px;}
.lse_c01110{letter-spacing:-4.834800px;}
.ls14_c01110{letter-spacing:-4.453800px;}
.ls18_c01110{letter-spacing:-4.098803px;}
.ls6_c01110{letter-spacing:-4.023900px;}
.ls19_c01110{letter-spacing:-3.924375px;}
.ls1f_c01110{letter-spacing:-3.401933px;}
.ls7_c01110{letter-spacing:-2.431575px;}
.ls15_c01110{letter-spacing:-2.382623px;}
.ls12_c01110{letter-spacing:-2.337233px;}
.ls16_c01110{letter-spacing:-2.331990px;}
.ls1a_c01110{letter-spacing:-1.921500px;}
.ls1d_c01110{letter-spacing:-1.806428px;}
.ls10_c01110{letter-spacing:-1.621050px;}
.ls9_c01110{letter-spacing:-1.590750px;}
.ls4_c01110{letter-spacing:-1.589753px;}
.lsc_c01110{letter-spacing:-1.575000px;}
.ls1c_c01110{letter-spacing:-0.848400px;}
.lsf_c01110{letter-spacing:-0.810525px;}
.ls13_c01110{letter-spacing:-0.795375px;}
.ls5_c01110{letter-spacing:0.000000px;}
.lsb_c01110{letter-spacing:0.794475px;}
.ls3_c01110{letter-spacing:0.795375px;}
.ls1b_c01110{letter-spacing:0.914250px;}
.ls2_c01110{letter-spacing:1.589753px;}
.ls0_c01110{letter-spacing:2.386125px;}
.ls20_c01110{letter-spacing:3.483000px;}
.ls1_c01110{letter-spacing:3.977663px;}
.lsd_c01110{letter-spacing:4.094250px;}
.ls1e_c01110{letter-spacing:5.929875px;}
.ls17_c01110{letter-spacing:15.353250px;}
.ls8_c01110{letter-spacing:16.574220px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01110{word-spacing:0.000000px;}
._0_c01110{margin-left:-10.770085px;}
._c_c01110{margin-left:-7.931291px;}
._d_c01110{margin-left:-4.726206px;}
._7_c01110{margin-left:-3.441820px;}
._3_c01110{margin-left:-2.206518px;}
._5_c01110{width:1.052766px;}
._2_c01110{width:2.888531px;}
._10_c01110{width:4.173718px;}
._8_c01110{width:5.670032px;}
._e_c01110{width:6.712819px;}
._b_c01110{width:7.937098px;}
._9_c01110{width:9.130472px;}
._1_c01110{width:10.993245px;}
._f_c01110{width:12.598602px;}
._a_c01110{width:14.479305px;}
._6_c01110{width:15.608568px;}
._4_c01110{width:16.676404px;}
.fc0_c01110{color:transparent;}
.fs2_c01110{font-size:73.500000px;}
.fs8_c01110{font-size:75.000000px;}
.fs6_c01110{font-size:75.750000px;}
.fs1_c01110{font-size:76.500000px;}
.fs3_c01110{font-size:78.000000px;}
.fs4_c01110{font-size:78.750000px;}
.fs7_c01110{font-size:79.500000px;}
.fs0_c01110{font-size:80.250000px;}
.fsb_c01110{font-size:81.000000px;}
.fsa_c01110{font-size:81.750000px;}
.fsc_c01110{font-size:82.500000px;}
.fse_c01110{font-size:84.000000px;}
.fsd_c01110{font-size:86.250000px;}
.fs9_c01110{font-size:87.750000px;}
.fs5_c01110{font-size:90.000000px;}
.y0_c01110{bottom:0.000000px;}
.y14_c01110{bottom:214.200435px;}
.y13_c01110{bottom:243.720150px;}
.y12_c01110{bottom:273.960000px;}
.y11_c01110{bottom:333.721185px;}
.y10_c01110{bottom:363.240900px;}
.yf_c01110{bottom:392.401515px;}
.ye_c01110{bottom:452.520315px;}
.yd_c01110{bottom:483.480285px;}
.yc_c01110{bottom:513.360900px;}
.yb_c01110{bottom:572.761185px;}
.ya_c01110{bottom:601.920000px;}
.y9_c01110{bottom:631.800570px;}
.y8_c01110{bottom:841.320930px;}
.y7_c01110{bottom:870.840540px;}
.y6_c01110{bottom:960.480840px;}
.y5_c01110{bottom:990.361545px;}
.y4_c01110{bottom:1020.240420px;}
.y3_c01110{bottom:1080.000000px;}
.y2_c01110{bottom:1109.880615px;}
.y1_c01110{bottom:1139.761140px;}
.h18_c01110{height:74.307495px;}
.h8_c01110{height:76.341797px;}
.h5_c01110{height:76.514648px;}
.he_c01110{height:76.552734px;}
.h4_c01110{height:76.658203px;}
.h6_c01110{height:77.288818px;}
.hb_c01110{height:78.222656px;}
.h3_c01110{height:78.721802px;}
.h9_c01110{height:79.365234px;}
.h2_c01110{height:79.787109px;}
.ha_c01110{height:80.121094px;}
.hd_c01110{height:80.233154px;}
.h1_c01110{height:80.876953px;}
.h10_c01110{height:80.928955px;}
.hf_c01110{height:81.632812px;}
.h13_c01110{height:82.133789px;}
.h16_c01110{height:82.916016px;}
.h17_c01110{height:83.698242px;}
.h14_c01110{height:84.607544px;}
.h12_c01110{height:84.649658px;}
.h15_c01110{height:84.656250px;}
.h11_c01110{height:86.121826px;}
.hc_c01110{height:86.721680px;}
.h7_c01110{height:88.945312px;}
.h0_c01110{height:1263.000000px;}
.w0_c01110{width:892.500000px;}
.x0_c01110{left:0.000000px;}
.x12_c01110{left:140.398665px;}
.x4_c01110{left:142.199850px;}
.x1_c01110{left:143.279250px;}
.x25_c01110{left:163.799565px;}
.x7_c01110{left:168.118815px;}
.x26_c01110{left:182.879565px;}
.xe_c01110{left:187.559685px;}
.x18_c01110{left:188.639100px;}
.x27_c01110{left:198.358635px;}
.x10_c01110{left:202.318800px;}
.xf_c01110{left:203.399850px;}
.x5_c01110{left:213.478635px;}
.x6_c01110{left:226.439685px;}
.x11_c01110{left:234.719100px;}
.x8_c01110{left:255.959400px;}
.x2_c01110{left:257.038950px;}
.x19_c01110{left:263.879535px;}
.x15_c01110{left:266.040000px;}
.x1f_c01110{left:281.159850px;}
.x3_c01110{left:282.239250px;}
.x13_c01110{left:306.358635px;}
.x9_c01110{left:309.959385px;}
.x20_c01110{left:313.558635px;}
.x14_c01110{left:331.918350px;}
.x1a_c01110{left:336.239250px;}
.x17_c01110{left:341.998950px;}
.x1b_c01110{left:358.199850px;}
.x16_c01110{left:374.399235px;}
.x21_c01110{left:433.438665px;}
.x22_c01110{left:448.919535px;}
.xa_c01110{left:449.998950px;}
.x1c_c01110{left:461.519670px;}
.xb_c01110{left:465.479685px;}
.x1d_c01110{left:491.759535px;}
.x1e_c01110{left:526.679670px;}
.x23_c01110{left:537.478635px;}
.xc_c01110{left:550.439670px;}
.x24_c01110{left:561.238770px;}
.xd_c01110{left:582.838530px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.lsa_c01110{letter-spacing:-13.224000pt;}
.ls11_c01110{letter-spacing:-10.561980pt;}
.lse_c01110{letter-spacing:-4.297600pt;}
.ls14_c01110{letter-spacing:-3.958933pt;}
.ls18_c01110{letter-spacing:-3.643380pt;}
.ls6_c01110{letter-spacing:-3.576800pt;}
.ls19_c01110{letter-spacing:-3.488333pt;}
.ls1f_c01110{letter-spacing:-3.023940pt;}
.ls7_c01110{letter-spacing:-2.161400pt;}
.ls15_c01110{letter-spacing:-2.117887pt;}
.ls12_c01110{letter-spacing:-2.077540pt;}
.ls16_c01110{letter-spacing:-2.072880pt;}
.ls1a_c01110{letter-spacing:-1.708000pt;}
.ls1d_c01110{letter-spacing:-1.605713pt;}
.ls10_c01110{letter-spacing:-1.440933pt;}
.ls9_c01110{letter-spacing:-1.414000pt;}
.ls4_c01110{letter-spacing:-1.413113pt;}
.lsc_c01110{letter-spacing:-1.400000pt;}
.ls1c_c01110{letter-spacing:-0.754133pt;}
.lsf_c01110{letter-spacing:-0.720467pt;}
.ls13_c01110{letter-spacing:-0.707000pt;}
.ls5_c01110{letter-spacing:0.000000pt;}
.lsb_c01110{letter-spacing:0.706200pt;}
.ls3_c01110{letter-spacing:0.707000pt;}
.ls1b_c01110{letter-spacing:0.812667pt;}
.ls2_c01110{letter-spacing:1.413113pt;}
.ls0_c01110{letter-spacing:2.121000pt;}
.ls20_c01110{letter-spacing:3.096000pt;}
.ls1_c01110{letter-spacing:3.535700pt;}
.lsd_c01110{letter-spacing:3.639333pt;}
.ls1e_c01110{letter-spacing:5.271000pt;}
.ls17_c01110{letter-spacing:13.647333pt;}
.ls8_c01110{letter-spacing:14.732640pt;}
.ws0_c01110{word-spacing:0.000000pt;}
._0_c01110{margin-left:-9.573409pt;}
._c_c01110{margin-left:-7.050037pt;}
._d_c01110{margin-left:-4.201072pt;}
._7_c01110{margin-left:-3.059396pt;}
._3_c01110{margin-left:-1.961350pt;}
._5_c01110{width:0.935792pt;}
._2_c01110{width:2.567583pt;}
._10_c01110{width:3.709972pt;}
._8_c01110{width:5.040028pt;}
._e_c01110{width:5.966950pt;}
._b_c01110{width:7.055198pt;}
._9_c01110{width:8.115975pt;}
._1_c01110{width:9.771774pt;}
._f_c01110{width:11.198757pt;}
._a_c01110{width:12.870494pt;}
._6_c01110{width:13.874283pt;}
._4_c01110{width:14.823470pt;}
.fs2_c01110{font-size:65.333333pt;}
.fs8_c01110{font-size:66.666667pt;}
.fs6_c01110{font-size:67.333333pt;}
.fs1_c01110{font-size:68.000000pt;}
.fs3_c01110{font-size:69.333333pt;}
.fs4_c01110{font-size:70.000000pt;}
.fs7_c01110{font-size:70.666667pt;}
.fs0_c01110{font-size:71.333333pt;}
.fsb_c01110{font-size:72.000000pt;}
.fsa_c01110{font-size:72.666667pt;}
.fsc_c01110{font-size:73.333333pt;}
.fse_c01110{font-size:74.666667pt;}
.fsd_c01110{font-size:76.666667pt;}
.fs9_c01110{font-size:78.000000pt;}
.fs5_c01110{font-size:80.000000pt;}
.y0_c01110{bottom:0.000000pt;}
.y14_c01110{bottom:190.400387pt;}
.y13_c01110{bottom:216.640133pt;}
.y12_c01110{bottom:243.520000pt;}
.y11_c01110{bottom:296.641053pt;}
.y10_c01110{bottom:322.880800pt;}
.yf_c01110{bottom:348.801347pt;}
.ye_c01110{bottom:402.240280pt;}
.yd_c01110{bottom:429.760253pt;}
.yc_c01110{bottom:456.320800pt;}
.yb_c01110{bottom:509.121053pt;}
.ya_c01110{bottom:535.040000pt;}
.y9_c01110{bottom:561.600507pt;}
.y8_c01110{bottom:747.840827pt;}
.y7_c01110{bottom:774.080480pt;}
.y6_c01110{bottom:853.760747pt;}
.y5_c01110{bottom:880.321373pt;}
.y4_c01110{bottom:906.880373pt;}
.y3_c01110{bottom:960.000000pt;}
.y2_c01110{bottom:986.560547pt;}
.y1_c01110{bottom:1013.121013pt;}
.h18_c01110{height:66.051107pt;}
.h8_c01110{height:67.859375pt;}
.h5_c01110{height:68.013021pt;}
.he_c01110{height:68.046875pt;}
.h4_c01110{height:68.140625pt;}
.h6_c01110{height:68.701172pt;}
.hb_c01110{height:69.531250pt;}
.h3_c01110{height:69.974935pt;}
.h9_c01110{height:70.546875pt;}
.h2_c01110{height:70.921875pt;}
.ha_c01110{height:71.218750pt;}
.hd_c01110{height:71.318359pt;}
.h1_c01110{height:71.890625pt;}
.h10_c01110{height:71.936849pt;}
.hf_c01110{height:72.562500pt;}
.h13_c01110{height:73.007812pt;}
.h16_c01110{height:73.703125pt;}
.h17_c01110{height:74.398438pt;}
.h14_c01110{height:75.206706pt;}
.h12_c01110{height:75.244141pt;}
.h15_c01110{height:75.250000pt;}
.h11_c01110{height:76.552734pt;}
.hc_c01110{height:77.085938pt;}
.h7_c01110{height:79.062500pt;}
.h0_c01110{height:1122.666667pt;}
.w0_c01110{width:793.333333pt;}
.x0_c01110{left:0.000000pt;}
.x12_c01110{left:124.798813pt;}
.x4_c01110{left:126.399867pt;}
.x1_c01110{left:127.359333pt;}
.x25_c01110{left:145.599613pt;}
.x7_c01110{left:149.438947pt;}
.x26_c01110{left:162.559613pt;}
.xe_c01110{left:166.719720pt;}
.x18_c01110{left:167.679200pt;}
.x27_c01110{left:176.318787pt;}
.x10_c01110{left:179.838933pt;}
.xf_c01110{left:180.799867pt;}
.x5_c01110{left:189.758787pt;}
.x6_c01110{left:201.279720pt;}
.x11_c01110{left:208.639200pt;}
.x8_c01110{left:227.519467pt;}
.x2_c01110{left:228.479067pt;}
.x19_c01110{left:234.559587pt;}
.x15_c01110{left:236.480000pt;}
.x1f_c01110{left:249.919867pt;}
.x3_c01110{left:250.879333pt;}
.x13_c01110{left:272.318787pt;}
.x9_c01110{left:275.519453pt;}
.x20_c01110{left:278.718787pt;}
.x14_c01110{left:295.038533pt;}
.x1a_c01110{left:298.879333pt;}
.x17_c01110{left:303.999067pt;}
.x1b_c01110{left:318.399867pt;}
.x16_c01110{left:332.799320pt;}
.x21_c01110{left:385.278813pt;}
.x22_c01110{left:399.039587pt;}
.xa_c01110{left:399.999067pt;}
.x1c_c01110{left:410.239707pt;}
.xb_c01110{left:413.759720pt;}
.x1d_c01110{left:437.119587pt;}
.x1e_c01110{left:468.159707pt;}
.x23_c01110{left:477.758787pt;}
.xc_c01110{left:489.279707pt;}
.x24_c01110{left:498.878907pt;}
.xd_c01110{left:518.078693pt;}
}





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

.ir_c01111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_f692945356a71727b35a0625.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01111;src:url('chunks/assets/font_c0469abc7518f1cfcd6d94fd.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01111;src:url('chunks/assets/font_808a49c29773ea28c29cf97b.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01111;src:url('chunks/assets/font_105864c2bb91e8d09900172b.woff2')format("woff");}.ff4_c01111{font-family:ff4_c01111;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01111;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff5_c01111{font-family:ff5_c01111;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01111;src:url('chunks/assets/font_ee0dbb80bb462dd372161c22.woff2')format("woff");}.ff6_c01111{font-family:ff6_c01111;line-height:1.284180;font-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_c01111{transform:matrix(0.165138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165138,0.000000,0.000000,0.250000,0,0);}
.mf_c01111{transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175439,0.000000,0.000000,0.250000,0,0);}
.m13_c01111{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m15_c01111{transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);}
.m4_c01111{transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223810,0.000000,0.000000,0.250000,0,0);}
.m12_c01111{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m16_c01111{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.m19_c01111{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m14_c01111{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m3_c01111{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1_c01111{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.md_c01111{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.mc_c01111{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m6_c01111{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m11_c01111{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m2_c01111{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m9_c01111{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m0_c01111{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m17_c01111{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.ma_c01111{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m5_c01111{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m8_c01111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01111{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m7_c01111{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m18_c01111{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mb_c01111{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.v0_c01111{vertical-align:0.000000px;}
.ls1e_c01111{letter-spacing:-10.308600px;}
.ls1b_c01111{letter-spacing:-8.253000px;}
.ls2a_c01111{letter-spacing:-7.583565px;}
.ls28_c01111{letter-spacing:-7.222500px;}
.ls29_c01111{letter-spacing:-6.480000px;}
.ls26_c01111{letter-spacing:-5.618303px;}
.ls1d_c01111{letter-spacing:-5.252625px;}
.lsb_c01111{letter-spacing:-4.815000px;}
.ls13_c01111{letter-spacing:-4.629623px;}
.ls1a_c01111{letter-spacing:-4.496625px;}
.ls30_c01111{letter-spacing:-4.190288px;}
.ls16_c01111{letter-spacing:-3.860025px;}
.ls11_c01111{letter-spacing:-3.686378px;}
.ls31_c01111{letter-spacing:-3.681600px;}
.ls2b_c01111{letter-spacing:-3.322200px;}
.lse_c01111{letter-spacing:-3.209198px;}
.ls6_c01111{letter-spacing:-3.089625px;}
.ls15_c01111{letter-spacing:-2.512913px;}
.ls9_c01111{letter-spacing:-2.407500px;}
.ls17_c01111{letter-spacing:-2.337233px;}
.ls2c_c01111{letter-spacing:-2.310398px;}
.ls14_c01111{letter-spacing:-1.677375px;}
.lsc_c01111{letter-spacing:-1.605000px;}
.ls23_c01111{letter-spacing:-1.575600px;}
.ls8_c01111{letter-spacing:-1.560038px;}
.ls2d_c01111{letter-spacing:-1.529580px;}
.ls27_c01111{letter-spacing:-1.501500px;}
.ls1c_c01111{letter-spacing:-1.496250px;}
.lsf_c01111{letter-spacing:-0.834750px;}
.ls32_c01111{letter-spacing:-0.819000px;}
.lsd_c01111{letter-spacing:-0.801698px;}
.ls2e_c01111{letter-spacing:-0.779625px;}
.ls10_c01111{letter-spacing:-0.756600px;}
.ls19_c01111{letter-spacing:-0.748913px;}
.lsa_c01111{letter-spacing:0.000000px;}
.ls2f_c01111{letter-spacing:0.770400px;}
.ls20_c01111{letter-spacing:0.801698px;}
.ls24_c01111{letter-spacing:0.834300px;}
.ls3_c01111{letter-spacing:0.834750px;}
.ls1f_c01111{letter-spacing:1.482000px;}
.ls18_c01111{letter-spacing:1.531710px;}
.ls25_c01111{letter-spacing:1.540800px;}
.ls5_c01111{letter-spacing:1.605000px;}
.ls0_c01111{letter-spacing:1.677375px;}
.ls7_c01111{letter-spacing:2.400750px;}
.ls1_c01111{letter-spacing:2.512913px;}
.ls2_c01111{letter-spacing:3.354750px;}
.ls12_c01111{letter-spacing:5.024250px;}
.ls4_c01111{letter-spacing:5.618303px;}
.ls21_c01111{letter-spacing:7.480395px;}
.ls22_c01111{letter-spacing:12.491400px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01111{word-spacing:0.000000px;}
._f_c01111{margin-left:-28.208490px;}
._b_c01111{margin-left:-19.442939px;}
._d_c01111{margin-left:-3.858052px;}
._3_c01111{margin-left:-1.878235px;}
._1_c01111{width:1.653599px;}
._9_c01111{width:2.875004px;}
._4_c01111{width:4.588759px;}
._8_c01111{width:6.580821px;}
._c_c01111{width:7.909940px;}
._6_c01111{width:8.987262px;}
._10_c01111{width:10.030993px;}
._a_c01111{width:11.349017px;}
._0_c01111{width:12.535692px;}
._7_c01111{width:13.546328px;}
._5_c01111{width:15.295843px;}
._16_c01111{width:16.549258px;}
._2_c01111{width:17.622836px;}
._12_c01111{width:22.916183px;}
._11_c01111{width:24.002026px;}
._15_c01111{width:25.784226px;}
._14_c01111{width:28.239784px;}
._e_c01111{width:31.657816px;}
._13_c01111{width:35.803620px;}
.fc0_c01111{color:transparent;}
.fs8_c01111{font-size:69.000000px;}
.fsa_c01111{font-size:71.250000px;}
.fs4_c01111{font-size:75.750000px;}
.fs9_c01111{font-size:77.250000px;}
.fs3_c01111{font-size:78.000000px;}
.fs2_c01111{font-size:78.750000px;}
.fs0_c01111{font-size:80.250000px;}
.fs7_c01111{font-size:81.000000px;}
.fs6_c01111{font-size:81.750000px;}
.fs1_c01111{font-size:82.500000px;}
.fse_c01111{font-size:84.750000px;}
.fsb_c01111{font-size:85.500000px;}
.fs5_c01111{font-size:87.750000px;}
.fsd_c01111{font-size:88.500000px;}
.fsc_c01111{font-size:115.500000px;}
.y0_c01111{bottom:0.000000px;}
.y1a_c01111{bottom:181.439250px;}
.y19_c01111{bottom:211.319070px;}
.y18_c01111{bottom:241.198785px;}
.y17_c01111{bottom:270.720150px;}
.y16_c01111{bottom:330.479685px;}
.y15_c01111{bottom:360.358635px;}
.y14_c01111{bottom:389.879970px;}
.y13_c01111{bottom:449.278800px;}
.y12_c01111{bottom:479.518620px;}
.y11_c01111{bottom:510.119385px;}
.y10_c01111{bottom:569.519670px;}
.yf_c01111{bottom:598.680135px;}
.ye_c01111{bottom:628.559100px;}
.yd_c01111{bottom:688.679670px;}
.yc_c01111{bottom:718.919535px;}
.yb_c01111{bottom:748.439205px;}
.ya_c01111{bottom:777.958920px;}
.y9_c01111{bottom:838.438665px;}
.y8_c01111{bottom:867.599115px;}
.y7_c01111{bottom:897.838905px;}
.y6_c01111{bottom:957.600135px;}
.y5_c01111{bottom:987.479190px;}
.y4_c01111{bottom:1017.719055px;}
.y3_c01111{bottom:1076.760135px;}
.y2_c01111{bottom:1106.279850px;}
.y1_c01111{bottom:1136.158815px;}
.hb_c01111{height:71.964844px;}
.hd_c01111{height:74.311523px;}
.h6_c01111{height:76.341797px;}
.h13_c01111{height:76.514648px;}
.hc_c01111{height:77.853516px;}
.h5_c01111{height:78.609375px;}
.h4_c01111{height:78.721802px;}
.h3_c01111{height:79.365234px;}
.hf_c01111{height:80.193237px;}
.h1_c01111{height:80.876953px;}
.ha_c01111{height:81.533203px;}
.h9_c01111{height:81.632812px;}
.h8_c01111{height:82.388672px;}
.h2_c01111{height:83.144531px;}
.he_c01111{height:84.498047px;}
.h12_c01111{height:85.412109px;}
.h7_c01111{height:86.721680px;}
.h11_c01111{height:87.462891px;}
.h10_c01111{height:120.462891px;}
.h0_c01111{height:1263.000000px;}
.w0_c01111{width:892.500000px;}
.x0_c01111{left:0.000000px;}
.xb_c01111{left:132.119415px;}
.x4_c01111{left:133.559685px;}
.x1_c01111{left:134.639100px;}
.x23_c01111{left:169.199850px;}
.x1d_c01111{left:197.279250px;}
.x24_c01111{left:214.559685px;}
.x1b_c01111{left:221.039400px;}
.x19_c01111{left:229.679700px;}
.x1a_c01111{left:236.159385px;}
.x2_c01111{left:239.399250px;}
.x1c_c01111{left:255.959400px;}
.x1e_c01111{left:259.919535px;}
.x5_c01111{left:264.238785px;}
.x18_c01111{left:267.839535px;}
.x3_c01111{left:272.519685px;}
.x1f_c01111{left:274.678500px;}
.x6_c01111{left:279.358635px;}
.x15_c01111{left:307.439685px;}
.x9_c01111{left:314.998950px;}
.x16_c01111{left:331.199850px;}
.xc_c01111{left:333.358635px;}
.x22_c01111{left:336.598530px;}
.x7_c01111{left:343.080000px;}
.xa_c01111{left:352.079385px;}
.xd_c01111{left:353.519685px;}
.x20_c01111{left:362.519100px;}
.x8_c01111{left:372.238785px;}
.x17_c01111{left:383.039385px;}
.xe_c01111{left:387.358665px;}
.x21_c01111{left:411.838950px;}
.x25_c01111{left:465.479685px;}
.x26_c01111{left:496.078770px;}
.xf_c01111{left:530.639700px;}
.x10_c01111{left:551.159820px;}
.x11_c01111{left:655.918350px;}
.x12_c01111{left:676.799520px;}
.x13_c01111{left:710.999400px;}
.x14_c01111{left:736.559100px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls1e_c01111{letter-spacing:-9.163200pt;}
.ls1b_c01111{letter-spacing:-7.336000pt;}
.ls2a_c01111{letter-spacing:-6.740947pt;}
.ls28_c01111{letter-spacing:-6.420000pt;}
.ls29_c01111{letter-spacing:-5.760000pt;}
.ls26_c01111{letter-spacing:-4.994047pt;}
.ls1d_c01111{letter-spacing:-4.669000pt;}
.lsb_c01111{letter-spacing:-4.280000pt;}
.ls13_c01111{letter-spacing:-4.115220pt;}
.ls1a_c01111{letter-spacing:-3.997000pt;}
.ls30_c01111{letter-spacing:-3.724700pt;}
.ls16_c01111{letter-spacing:-3.431133pt;}
.ls11_c01111{letter-spacing:-3.276780pt;}
.ls31_c01111{letter-spacing:-3.272533pt;}
.ls2b_c01111{letter-spacing:-2.953067pt;}
.lse_c01111{letter-spacing:-2.852620pt;}
.ls6_c01111{letter-spacing:-2.746333pt;}
.ls15_c01111{letter-spacing:-2.233700pt;}
.ls9_c01111{letter-spacing:-2.140000pt;}
.ls17_c01111{letter-spacing:-2.077540pt;}
.ls2c_c01111{letter-spacing:-2.053687pt;}
.ls14_c01111{letter-spacing:-1.491000pt;}
.lsc_c01111{letter-spacing:-1.426667pt;}
.ls23_c01111{letter-spacing:-1.400533pt;}
.ls8_c01111{letter-spacing:-1.386700pt;}
.ls2d_c01111{letter-spacing:-1.359627pt;}
.ls27_c01111{letter-spacing:-1.334667pt;}
.ls1c_c01111{letter-spacing:-1.330000pt;}
.lsf_c01111{letter-spacing:-0.742000pt;}
.ls32_c01111{letter-spacing:-0.728000pt;}
.lsd_c01111{letter-spacing:-0.712620pt;}
.ls2e_c01111{letter-spacing:-0.693000pt;}
.ls10_c01111{letter-spacing:-0.672533pt;}
.ls19_c01111{letter-spacing:-0.665700pt;}
.lsa_c01111{letter-spacing:0.000000pt;}
.ls2f_c01111{letter-spacing:0.684800pt;}
.ls20_c01111{letter-spacing:0.712620pt;}
.ls24_c01111{letter-spacing:0.741600pt;}
.ls3_c01111{letter-spacing:0.742000pt;}
.ls1f_c01111{letter-spacing:1.317333pt;}
.ls18_c01111{letter-spacing:1.361520pt;}
.ls25_c01111{letter-spacing:1.369600pt;}
.ls5_c01111{letter-spacing:1.426667pt;}
.ls0_c01111{letter-spacing:1.491000pt;}
.ls7_c01111{letter-spacing:2.134000pt;}
.ls1_c01111{letter-spacing:2.233700pt;}
.ls2_c01111{letter-spacing:2.982000pt;}
.ls12_c01111{letter-spacing:4.466000pt;}
.ls4_c01111{letter-spacing:4.994047pt;}
.ls21_c01111{letter-spacing:6.649240pt;}
.ls22_c01111{letter-spacing:11.103467pt;}
.ws0_c01111{word-spacing:0.000000pt;}
._f_c01111{margin-left:-25.074213pt;}
._b_c01111{margin-left:-17.282613pt;}
._d_c01111{margin-left:-3.429380pt;}
._3_c01111{margin-left:-1.669542pt;}
._1_c01111{width:1.469866pt;}
._9_c01111{width:2.555559pt;}
._4_c01111{width:4.078897pt;}
._8_c01111{width:5.849619pt;}
._c_c01111{width:7.031057pt;}
._6_c01111{width:7.988677pt;}
._10_c01111{width:8.916438pt;}
._a_c01111{width:10.088015pt;}
._0_c01111{width:11.142837pt;}
._7_c01111{width:12.041181pt;}
._5_c01111{width:13.596305pt;}
._16_c01111{width:14.710452pt;}
._2_c01111{width:15.664743pt;}
._12_c01111{width:20.369940pt;}
._11_c01111{width:21.335134pt;}
._15_c01111{width:22.919312pt;}
._14_c01111{width:25.102030pt;}
._e_c01111{width:28.140281pt;}
._13_c01111{width:31.825440pt;}
.fs8_c01111{font-size:61.333333pt;}
.fsa_c01111{font-size:63.333333pt;}
.fs4_c01111{font-size:67.333333pt;}
.fs9_c01111{font-size:68.666667pt;}
.fs3_c01111{font-size:69.333333pt;}
.fs2_c01111{font-size:70.000000pt;}
.fs0_c01111{font-size:71.333333pt;}
.fs7_c01111{font-size:72.000000pt;}
.fs6_c01111{font-size:72.666667pt;}
.fs1_c01111{font-size:73.333333pt;}
.fse_c01111{font-size:75.333333pt;}
.fsb_c01111{font-size:76.000000pt;}
.fs5_c01111{font-size:78.000000pt;}
.fsd_c01111{font-size:78.666667pt;}
.fsc_c01111{font-size:102.666667pt;}
.y0_c01111{bottom:0.000000pt;}
.y1a_c01111{bottom:161.279333pt;}
.y19_c01111{bottom:187.839173pt;}
.y18_c01111{bottom:214.398920pt;}
.y17_c01111{bottom:240.640133pt;}
.y16_c01111{bottom:293.759720pt;}
.y15_c01111{bottom:320.318787pt;}
.y14_c01111{bottom:346.559973pt;}
.y13_c01111{bottom:399.358933pt;}
.y12_c01111{bottom:426.238773pt;}
.y11_c01111{bottom:453.439453pt;}
.y10_c01111{bottom:506.239707pt;}
.yf_c01111{bottom:532.160120pt;}
.ye_c01111{bottom:558.719200pt;}
.yd_c01111{bottom:612.159707pt;}
.yc_c01111{bottom:639.039587pt;}
.yb_c01111{bottom:665.279293pt;}
.ya_c01111{bottom:691.519040pt;}
.y9_c01111{bottom:745.278813pt;}
.y8_c01111{bottom:771.199213pt;}
.y7_c01111{bottom:798.079027pt;}
.y6_c01111{bottom:851.200120pt;}
.y5_c01111{bottom:877.759280pt;}
.y4_c01111{bottom:904.639160pt;}
.y3_c01111{bottom:957.120120pt;}
.y2_c01111{bottom:983.359867pt;}
.y1_c01111{bottom:1009.918947pt;}
.hb_c01111{height:63.968750pt;}
.hd_c01111{height:66.054688pt;}
.h6_c01111{height:67.859375pt;}
.h13_c01111{height:68.013021pt;}
.hc_c01111{height:69.203125pt;}
.h5_c01111{height:69.875000pt;}
.h4_c01111{height:69.974935pt;}
.h3_c01111{height:70.546875pt;}
.hf_c01111{height:71.282878pt;}
.h1_c01111{height:71.890625pt;}
.ha_c01111{height:72.473958pt;}
.h9_c01111{height:72.562500pt;}
.h8_c01111{height:73.234375pt;}
.h2_c01111{height:73.906250pt;}
.he_c01111{height:75.109375pt;}
.h12_c01111{height:75.921875pt;}
.h7_c01111{height:77.085938pt;}
.h11_c01111{height:77.744792pt;}
.h10_c01111{height:107.078125pt;}
.h0_c01111{height:1122.666667pt;}
.w0_c01111{width:793.333333pt;}
.x0_c01111{left:0.000000pt;}
.xb_c01111{left:117.439480pt;}
.x4_c01111{left:118.719720pt;}
.x1_c01111{left:119.679200pt;}
.x23_c01111{left:150.399867pt;}
.x1d_c01111{left:175.359333pt;}
.x24_c01111{left:190.719720pt;}
.x1b_c01111{left:196.479467pt;}
.x19_c01111{left:204.159733pt;}
.x1a_c01111{left:209.919453pt;}
.x2_c01111{left:212.799333pt;}
.x1c_c01111{left:227.519467pt;}
.x1e_c01111{left:231.039587pt;}
.x5_c01111{left:234.878920pt;}
.x18_c01111{left:238.079587pt;}
.x3_c01111{left:242.239720pt;}
.x1f_c01111{left:244.158667pt;}
.x6_c01111{left:248.318787pt;}
.x15_c01111{left:273.279720pt;}
.x9_c01111{left:279.999067pt;}
.x16_c01111{left:294.399867pt;}
.xc_c01111{left:296.318787pt;}
.x22_c01111{left:299.198693pt;}
.x7_c01111{left:304.960000pt;}
.xa_c01111{left:312.959453pt;}
.xd_c01111{left:314.239720pt;}
.x20_c01111{left:322.239200pt;}
.x8_c01111{left:330.878920pt;}
.x17_c01111{left:340.479453pt;}
.xe_c01111{left:344.318813pt;}
.x21_c01111{left:366.079067pt;}
.x25_c01111{left:413.759720pt;}
.x26_c01111{left:440.958907pt;}
.xf_c01111{left:471.679733pt;}
.x10_c01111{left:489.919840pt;}
.x11_c01111{left:583.038533pt;}
.x12_c01111{left:601.599573pt;}
.x13_c01111{left:631.999467pt;}
.x14_c01111{left:654.719200pt;}
}





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

.ir_c01112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_852712186bfad68038db9bd5.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01112;src:url('chunks/assets/font_d91854abc0b4d4906c9c13d8.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01112;src:url('chunks/assets/font_67da98ce8840bd7422f41bd3.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01112;src:url('chunks/assets/font_173203392d57b492e83de9e7.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01112;src:url('chunks/assets/font_a5e229df0203c6daf9842ec4.woff2')format("woff");}.ff5_c01112{font-family:ff5_c01112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01112;src:url('chunks/assets/font_545a9cab86195332b11e4e58.woff2')format("woff");}.ff6_c01112{font-family:ff6_c01112;line-height:1.364746;font-style:normal;font-weight: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_c01112;src:url('chunks/assets/font_5f73eeadb62be95996ce289e.woff2')format("woff");}.ff7_c01112{font-family:ff7_c01112;line-height:1.311035;font-style:normal;font-weight: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_c01112;src:url('chunks/assets/font_a2d76b9c06d002d7b545e47e.woff2')format("woff");}.ff8_c01112{font-family:ff8_c01112;line-height:1.432129;font-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_c01112{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m1d_c01112{transform:matrix(0.186957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186957,0.000000,0.000000,0.250000,0,0);}
.m1f_c01112{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m19_c01112{transform:matrix(0.196903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196903,0.000000,0.000000,0.250000,0,0);}
.m18_c01112{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.m3_c01112{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m11_c01112{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1e_c01112{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m10_c01112{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1a_c01112{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m1_c01112{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m5_c01112{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m12_c01112{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m9_c01112{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_c01112{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.mf_c01112{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m2_c01112{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m6_c01112{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m8_c01112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c01112{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m4_c01112{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c01112{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m14_c01112{transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257979,0.000000,0.000000,0.250000,0,0);}
.m13_c01112{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.ma_c01112{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m1c_c01112{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m1b_c01112{transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);}
.m17_c01112{transform:matrix(0.327160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327160,0.000000,0.000000,0.250000,0,0);}
.mb_c01112{transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);}
.m16_c01112{transform:matrix(0.355978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355978,0.000000,0.000000,0.250000,0,0);}
.m15_c01112{transform:matrix(0.414414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414414,0.000000,0.000000,0.250000,0,0);}
.mc_c01112{transform:matrix(0.459302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459302,0.000000,0.000000,0.250000,0,0);}
.md_c01112{transform:matrix(0.469512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469512,0.000000,0.000000,0.250000,0,0);}
.v0_c01112{vertical-align:0.000000px;}
.ls26_c01112{letter-spacing:-10.003500px;}
.ls16_c01112{letter-spacing:-7.363913px;}
.ls2c_c01112{letter-spacing:-7.021613px;}
.ls3_c01112{letter-spacing:-6.623663px;}
.ls2a_c01112{letter-spacing:-6.344250px;}
.ls1d_c01112{letter-spacing:-5.859150px;}
.ls11_c01112{letter-spacing:-5.618303px;}
.ls9_c01112{letter-spacing:-5.150250px;}
.ls29_c01112{letter-spacing:-4.815000px;}
.ls27_c01112{letter-spacing:-4.762950px;}
.ls15_c01112{letter-spacing:-4.687500px;}
.lsa_c01112{letter-spacing:-4.418663px;}
.ls17_c01112{letter-spacing:-4.261275px;}
.ls28_c01112{letter-spacing:-4.012500px;}
.lse_c01112{letter-spacing:-3.984885px;}
.ls6_c01112{letter-spacing:-3.823200px;}
.ls2f_c01112{letter-spacing:-3.715575px;}
.lsd_c01112{letter-spacing:-3.713445px;}
.ls8_c01112{letter-spacing:-3.678413px;}
.ls14_c01112{letter-spacing:-3.001500px;}
.ls1_c01112{letter-spacing:-2.945250px;}
.ls2d_c01112{letter-spacing:-2.514413px;}
.ls4_c01112{letter-spacing:-2.407500px;}
.ls1f_c01112{letter-spacing:-2.362500px;}
.ls2_c01112{letter-spacing:-2.205000px;}
.ls5_c01112{letter-spacing:-1.605000px;}
.ls1b_c01112{letter-spacing:-1.545180px;}
.ls13_c01112{letter-spacing:-1.503345px;}
.ls10_c01112{letter-spacing:-1.473413px;}
.ls7_c01112{letter-spacing:-0.801698px;}
.ls25_c01112{letter-spacing:-0.731588px;}
.ls18_c01112{letter-spacing:0.000000px;}
.ls23_c01112{letter-spacing:0.524400px;}
.ls21_c01112{letter-spacing:0.726150px;}
.lsf_c01112{letter-spacing:0.759458px;}
.ls19_c01112{letter-spacing:0.799500px;}
.ls1e_c01112{letter-spacing:1.713600px;}
.ls24_c01112{letter-spacing:1.719833px;}
.ls20_c01112{letter-spacing:2.160675px;}
.lsb_c01112{letter-spacing:2.945250px;}
.ls12_c01112{letter-spacing:4.536000px;}
.ls0_c01112{letter-spacing:4.815000px;}
.ls2b_c01112{letter-spacing:6.375637px;}
.ls2e_c01112{letter-spacing:6.872250px;}
.lsc_c01112{letter-spacing:8.901090px;}
.ls1a_c01112{letter-spacing:15.749700px;}
.ls22_c01112{letter-spacing:17.649833px;}
.ls1c_c01112{letter-spacing:32.429250px;}
.sc__c01112{text-shadow:none;}
.sc0_c01112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01112{-webkit-text-stroke:0px transparent;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01112{word-spacing:0.000000px;}
._a_c01112{margin-left:-4.711973px;}
._5_c01112{width:2.370625px;}
._7_c01112{width:4.637047px;}
._3_c01112{width:6.497104px;}
._9_c01112{width:7.551352px;}
._c_c01112{width:9.052007px;}
._4_c01112{width:10.672736px;}
._0_c01112{width:11.741640px;}
._2_c01112{width:14.019932px;}
._f_c01112{width:16.902502px;}
._e_c01112{width:18.505136px;}
._8_c01112{width:22.864474px;}
._d_c01112{width:24.904246px;}
._b_c01112{width:30.596027px;}
._6_c01112{width:33.388374px;}
._1_c01112{width:39.165834px;}
.fc0_c01112{color:transparent;}
.fs9_c01112{font-size:26.250000px;}
.fsb_c01112{font-size:30.750000px;}
.fsa_c01112{font-size:32.250000px;}
.fs12_c01112{font-size:60.750000px;}
.fs16_c01112{font-size:63.750000px;}
.fs11_c01112{font-size:69.000000px;}
.fsc_c01112{font-size:70.500000px;}
.fs18_c01112{font-size:71.250000px;}
.fse_c01112{font-size:72.000000px;}
.fsf_c01112{font-size:74.250000px;}
.fs8_c01112{font-size:75.000000px;}
.fs4_c01112{font-size:76.500000px;}
.fsd_c01112{font-size:78.000000px;}
.fs0_c01112{font-size:78.750000px;}
.fs3_c01112{font-size:79.500000px;}
.fs1_c01112{font-size:80.250000px;}
.fs2_c01112{font-size:81.000000px;}
.fs5_c01112{font-size:81.750000px;}
.fs15_c01112{font-size:82.500000px;}
.fs10_c01112{font-size:83.250000px;}
.fs6_c01112{font-size:84.000000px;}
.fs14_c01112{font-size:84.750000px;}
.fs13_c01112{font-size:85.500000px;}
.fs17_c01112{font-size:86.250000px;}
.fs7_c01112{font-size:87.000000px;}
.y0_c01112{bottom:0.000000px;}
.y1c_c01112{bottom:180.360900px;}
.y1d_c01112{bottom:180.361515px;}
.y1b_c01112{bottom:239.760150px;}
.y1a_c01112{bottom:269.281515px;}
.y19_c01112{bottom:299.520510px;}
.y18_c01112{bottom:359.640150px;}
.y17_c01112{bottom:388.441365px;}
.y15_c01112{bottom:418.680930px;}
.y16_c01112{bottom:418.681185px;}
.y14_c01112{bottom:479.161050px;}
.y13_c01112{bottom:508.680720px;}
.y12_c01112{bottom:538.921215px;}
.y11_c01112{bottom:597.959970px;}
.y10_c01112{bottom:627.840585px;}
.yf_c01112{bottom:657.720570px;}
.ye_c01112{bottom:717.121635px;}
.yd_c01112{bottom:747.000600px;}
.yc_c01112{bottom:755.640750px;}
.yb_c01112{bottom:776.881170px;}
.ya_c01112{bottom:837.720150px;}
.y9_c01112{bottom:867.960825px;}
.y8_c01112{bottom:897.840540px;}
.y7_c01112{bottom:897.841215px;}
.y6_c01112{bottom:956.879970px;}
.y5_c01112{bottom:986.400585px;}
.y4_c01112{bottom:1016.640495px;}
.y3_c01112{bottom:1076.760135px;}
.y2_c01112{bottom:1106.640750px;}
.y1_c01112{bottom:1136.521365px;}
.hc_c01112{height:27.377930px;}
.he_c01112{height:32.071289px;}
.hd_c01112{height:33.635742px;}
.h17_c01112{height:60.038086px;}
.h1b_c01112{height:64.248047px;}
.h16_c01112{height:71.964844px;}
.h14_c01112{height:72.836060px;}
.hf_c01112{height:73.529297px;}
.ha_c01112{height:73.608398px;}
.h1d_c01112{height:74.311523px;}
.h6_c01112{height:75.080566px;}
.h13_c01112{height:75.093750px;}
.h10_c01112{height:76.514648px;}
.h11_c01112{height:77.250366px;}
.h1_c01112{height:77.288818px;}
.h12_c01112{height:77.986084px;}
.h5_c01112{height:78.024902px;}
.h2_c01112{height:78.721802px;}
.hb_c01112{height:78.760986px;}
.h3_c01112{height:79.457520px;}
.h4_c01112{height:79.497070px;}
.h7_c01112{height:80.233154px;}
.h1a_c01112{height:80.969238px;}
.h1e_c01112{height:81.533203px;}
.h15_c01112{height:81.664673px;}
.h8_c01112{height:82.441406px;}
.h19_c01112{height:83.756836px;}
.h18_c01112{height:84.498047px;}
.h1c_c01112{height:85.239258px;}
.h9_c01112{height:85.980469px;}
.h0_c01112{height:1263.000000px;}
.w0_c01112{width:892.500000px;}
.x0_c01112{left:0.000000px;}
.x29_c01112{left:136.438665px;}
.x24_c01112{left:138.239715px;}
.x5_c01112{left:139.319250px;}
.x4_c01112{left:140.400300px;}
.x1_c01112{left:141.479715px;}
.x2a_c01112{left:176.399850px;}
.x15_c01112{left:187.559685px;}
.x16_c01112{left:211.319850px;}
.x6_c01112{left:215.279850px;}
.x27_c01112{left:223.199850px;}
.xf_c01112{left:226.798950px;}
.x25_c01112{left:233.639700px;}
.x7_c01112{left:241.198785px;}
.x28_c01112{left:246.958350px;}
.x26_c01112{left:248.398635px;}
.x10_c01112{left:257.759100px;}
.x2c_c01112{left:259.919535px;}
.x8_c01112{left:278.638500px;}
.xc_c01112{left:293.040000px;}
.x17_c01112{left:294.478635px;}
.x9_c01112{left:311.038950px;}
.x2_c01112{left:314.639700px;}
.xd_c01112{left:316.798515px;}
.x18_c01112{left:323.279850px;}
.xa_c01112{left:336.239250px;}
.x3_c01112{left:338.759100px;}
.x2b_c01112{left:340.558635px;}
.xb_c01112{left:356.759535px;}
.xe_c01112{left:369.359850px;}
.x19_c01112{left:377.639100px;}
.x1a_c01112{left:401.758530px;}
.x2d_c01112{left:415.439670px;}
.x2e_c01112{left:435.958335px;}
.x1b_c01112{left:446.759085px;}
.x1c_c01112{left:516.599070px;}
.x20_c01112{left:521.279250px;}
.x1d_c01112{left:540.718500px;}
.x11_c01112{left:545.759535px;}
.x21_c01112{left:553.679670px;}
.x12_c01112{left:559.080000px;}
.x1e_c01112{left:564.839535px;}
.x13_c01112{left:566.279850px;}
.x1f_c01112{left:589.319820px;}
.x14_c01112{left:590.399235px;}
.x22_c01112{left:636.119985px;}
.x23_c01112{left:679.319235px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls26_c01112{letter-spacing:-8.892000pt;}
.ls16_c01112{letter-spacing:-6.545700pt;}
.ls2c_c01112{letter-spacing:-6.241433pt;}
.ls3_c01112{letter-spacing:-5.887700pt;}
.ls2a_c01112{letter-spacing:-5.639333pt;}
.ls1d_c01112{letter-spacing:-5.208133pt;}
.ls11_c01112{letter-spacing:-4.994047pt;}
.ls9_c01112{letter-spacing:-4.578000pt;}
.ls29_c01112{letter-spacing:-4.280000pt;}
.ls27_c01112{letter-spacing:-4.233733pt;}
.ls15_c01112{letter-spacing:-4.166667pt;}
.lsa_c01112{letter-spacing:-3.927700pt;}
.ls17_c01112{letter-spacing:-3.787800pt;}
.ls28_c01112{letter-spacing:-3.566667pt;}
.lse_c01112{letter-spacing:-3.542120pt;}
.ls6_c01112{letter-spacing:-3.398400pt;}
.ls2f_c01112{letter-spacing:-3.302733pt;}
.lsd_c01112{letter-spacing:-3.300840pt;}
.ls8_c01112{letter-spacing:-3.269700pt;}
.ls14_c01112{letter-spacing:-2.668000pt;}
.ls1_c01112{letter-spacing:-2.618000pt;}
.ls2d_c01112{letter-spacing:-2.235033pt;}
.ls4_c01112{letter-spacing:-2.140000pt;}
.ls1f_c01112{letter-spacing:-2.100000pt;}
.ls2_c01112{letter-spacing:-1.960000pt;}
.ls5_c01112{letter-spacing:-1.426667pt;}
.ls1b_c01112{letter-spacing:-1.373493pt;}
.ls13_c01112{letter-spacing:-1.336307pt;}
.ls10_c01112{letter-spacing:-1.309700pt;}
.ls7_c01112{letter-spacing:-0.712620pt;}
.ls25_c01112{letter-spacing:-0.650300pt;}
.ls18_c01112{letter-spacing:0.000000pt;}
.ls23_c01112{letter-spacing:0.466133pt;}
.ls21_c01112{letter-spacing:0.645467pt;}
.lsf_c01112{letter-spacing:0.675073pt;}
.ls19_c01112{letter-spacing:0.710667pt;}
.ls1e_c01112{letter-spacing:1.523200pt;}
.ls24_c01112{letter-spacing:1.528740pt;}
.ls20_c01112{letter-spacing:1.920600pt;}
.lsb_c01112{letter-spacing:2.618000pt;}
.ls12_c01112{letter-spacing:4.032000pt;}
.ls0_c01112{letter-spacing:4.280000pt;}
.ls2b_c01112{letter-spacing:5.667233pt;}
.ls2e_c01112{letter-spacing:6.108667pt;}
.lsc_c01112{letter-spacing:7.912080pt;}
.ls1a_c01112{letter-spacing:13.999733pt;}
.ls22_c01112{letter-spacing:15.688740pt;}
.ls1c_c01112{letter-spacing:28.826000pt;}
.ws0_c01112{word-spacing:0.000000pt;}
._a_c01112{margin-left:-4.188420pt;}
._5_c01112{width:2.107222pt;}
._7_c01112{width:4.121820pt;}
._3_c01112{width:5.775204pt;}
._9_c01112{width:6.712313pt;}
._c_c01112{width:8.046229pt;}
._4_c01112{width:9.486877pt;}
._0_c01112{width:10.437013pt;}
._2_c01112{width:12.462162pt;}
._f_c01112{width:15.024446pt;}
._e_c01112{width:16.449010pt;}
._8_c01112{width:20.323977pt;}
._d_c01112{width:22.137107pt;}
._b_c01112{width:27.196468pt;}
._6_c01112{width:29.678555pt;}
._1_c01112{width:34.814075pt;}
.fs9_c01112{font-size:23.333333pt;}
.fsb_c01112{font-size:27.333333pt;}
.fsa_c01112{font-size:28.666667pt;}
.fs12_c01112{font-size:54.000000pt;}
.fs16_c01112{font-size:56.666667pt;}
.fs11_c01112{font-size:61.333333pt;}
.fsc_c01112{font-size:62.666667pt;}
.fs18_c01112{font-size:63.333333pt;}
.fse_c01112{font-size:64.000000pt;}
.fsf_c01112{font-size:66.000000pt;}
.fs8_c01112{font-size:66.666667pt;}
.fs4_c01112{font-size:68.000000pt;}
.fsd_c01112{font-size:69.333333pt;}
.fs0_c01112{font-size:70.000000pt;}
.fs3_c01112{font-size:70.666667pt;}
.fs1_c01112{font-size:71.333333pt;}
.fs2_c01112{font-size:72.000000pt;}
.fs5_c01112{font-size:72.666667pt;}
.fs15_c01112{font-size:73.333333pt;}
.fs10_c01112{font-size:74.000000pt;}
.fs6_c01112{font-size:74.666667pt;}
.fs14_c01112{font-size:75.333333pt;}
.fs13_c01112{font-size:76.000000pt;}
.fs17_c01112{font-size:76.666667pt;}
.fs7_c01112{font-size:77.333333pt;}
.y0_c01112{bottom:0.000000pt;}
.y1c_c01112{bottom:160.320800pt;}
.y1d_c01112{bottom:160.321347pt;}
.y1b_c01112{bottom:213.120133pt;}
.y1a_c01112{bottom:239.361347pt;}
.y19_c01112{bottom:266.240453pt;}
.y18_c01112{bottom:319.680133pt;}
.y17_c01112{bottom:345.281213pt;}
.y15_c01112{bottom:372.160827pt;}
.y16_c01112{bottom:372.161053pt;}
.y14_c01112{bottom:425.920933pt;}
.y13_c01112{bottom:452.160640pt;}
.y12_c01112{bottom:479.041080pt;}
.y11_c01112{bottom:531.519973pt;}
.y10_c01112{bottom:558.080520pt;}
.yf_c01112{bottom:584.640507pt;}
.ye_c01112{bottom:637.441453pt;}
.yd_c01112{bottom:664.000533pt;}
.yc_c01112{bottom:671.680667pt;}
.yb_c01112{bottom:690.561040pt;}
.ya_c01112{bottom:744.640133pt;}
.y9_c01112{bottom:771.520733pt;}
.y8_c01112{bottom:798.080480pt;}
.y7_c01112{bottom:798.081080pt;}
.y6_c01112{bottom:850.559973pt;}
.y5_c01112{bottom:876.800520pt;}
.y4_c01112{bottom:903.680440pt;}
.y3_c01112{bottom:957.120120pt;}
.y2_c01112{bottom:983.680667pt;}
.y1_c01112{bottom:1010.241213pt;}
.hc_c01112{height:24.335938pt;}
.he_c01112{height:28.507812pt;}
.hd_c01112{height:29.898438pt;}
.h17_c01112{height:53.367188pt;}
.h1b_c01112{height:57.109375pt;}
.h16_c01112{height:63.968750pt;}
.h14_c01112{height:64.743164pt;}
.hf_c01112{height:65.359375pt;}
.ha_c01112{height:65.429688pt;}
.h1d_c01112{height:66.054688pt;}
.h6_c01112{height:66.738281pt;}
.h13_c01112{height:66.750000pt;}
.h10_c01112{height:68.013021pt;}
.h11_c01112{height:68.666992pt;}
.h1_c01112{height:68.701172pt;}
.h12_c01112{height:69.320964pt;}
.h5_c01112{height:69.355469pt;}
.h2_c01112{height:69.974935pt;}
.hb_c01112{height:70.009766pt;}
.h3_c01112{height:70.628906pt;}
.h4_c01112{height:70.664062pt;}
.h7_c01112{height:71.318359pt;}
.h1a_c01112{height:71.972656pt;}
.h1e_c01112{height:72.473958pt;}
.h15_c01112{height:72.590820pt;}
.h8_c01112{height:73.281250pt;}
.h19_c01112{height:74.450521pt;}
.h18_c01112{height:75.109375pt;}
.h1c_c01112{height:75.768229pt;}
.h9_c01112{height:76.427083pt;}
.h0_c01112{height:1122.666667pt;}
.w0_c01112{width:793.333333pt;}
.x0_c01112{left:0.000000pt;}
.x29_c01112{left:121.278813pt;}
.x24_c01112{left:122.879747pt;}
.x5_c01112{left:123.839333pt;}
.x4_c01112{left:124.800267pt;}
.x1_c01112{left:125.759747pt;}
.x2a_c01112{left:156.799867pt;}
.x15_c01112{left:166.719720pt;}
.x16_c01112{left:187.839867pt;}
.x6_c01112{left:191.359867pt;}
.x27_c01112{left:198.399867pt;}
.xf_c01112{left:201.599067pt;}
.x25_c01112{left:207.679733pt;}
.x7_c01112{left:214.398920pt;}
.x28_c01112{left:219.518533pt;}
.x26_c01112{left:220.798787pt;}
.x10_c01112{left:229.119200pt;}
.x2c_c01112{left:231.039587pt;}
.x8_c01112{left:247.678667pt;}
.xc_c01112{left:260.480000pt;}
.x17_c01112{left:261.758787pt;}
.x9_c01112{left:276.479067pt;}
.x2_c01112{left:279.679733pt;}
.xd_c01112{left:281.598680pt;}
.x18_c01112{left:287.359867pt;}
.xa_c01112{left:298.879333pt;}
.x3_c01112{left:301.119200pt;}
.x2b_c01112{left:302.718787pt;}
.xb_c01112{left:317.119587pt;}
.xe_c01112{left:328.319867pt;}
.x19_c01112{left:335.679200pt;}
.x1a_c01112{left:357.118693pt;}
.x2d_c01112{left:369.279707pt;}
.x2e_c01112{left:387.518520pt;}
.x1b_c01112{left:397.119187pt;}
.x1c_c01112{left:459.199173pt;}
.x20_c01112{left:463.359333pt;}
.x1d_c01112{left:480.638667pt;}
.x11_c01112{left:485.119587pt;}
.x21_c01112{left:492.159707pt;}
.x12_c01112{left:496.960000pt;}
.x1e_c01112{left:502.079587pt;}
.x13_c01112{left:503.359867pt;}
.x1f_c01112{left:523.839840pt;}
.x14_c01112{left:524.799320pt;}
.x22_c01112{left:565.439987pt;}
.x23_c01112{left:603.839320pt;}
}





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

.ir_c01113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_56c568f659c604f969c1817f.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01113;src:url('chunks/assets/font_e0b77a3e3a3334b72797f6df.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01113;src:url('chunks/assets/font_51759835ad09e1dc69b04ea7.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01113;src:url('chunks/assets/font_eab32564e8c85648e9ca6ea3.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01113;src:url('chunks/assets/font_0ad29a921f676cde74dd93e3.woff2')format("woff");}.ff5_c01113{font-family:ff5_c01113;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01113;src:url('chunks/assets/font_b12fb0eb6dfc6ccce333fb1a.woff2')format("woff");}.ff6_c01113{font-family:ff6_c01113;line-height:1.364746;font-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_c01113{transform:matrix(0.181579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181579,0.000000,0.000000,0.250000,0,0);}
.mb_c01113{transform:matrix(0.186937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186937,0.000000,0.000000,0.250000,0,0);}
.m1_c01113{transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192478,0.000000,0.000000,0.250000,0,0);}
.m19_c01113{transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201754,0.000000,0.000000,0.250000,0,0);}
.m13_c01113{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m7_c01113{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m5_c01113{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1b_c01113{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m6_c01113{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m15_c01113{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.me_c01113{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m0_c01113{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.mf_c01113{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.ma_c01113{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m4_c01113{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m10_c01113{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m3_c01113{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m8_c01113{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m14_c01113{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m17_c01113{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m18_c01113{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.mc_c01113{transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247807,0.000000,0.000000,0.250000,0,0);}
.m16_c01113{transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);}
.m12_c01113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01113{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m2_c01113{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m11_c01113{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m1a_c01113{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.md_c01113{transform:matrix(0.260684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260684,0.000000,0.000000,0.250000,0,0);}
.v0_c01113{vertical-align:0.000000px;}
.ls16_c01113{letter-spacing:-19.673550px;}
.ls5_c01113{letter-spacing:-10.402875px;}
.ls20_c01113{letter-spacing:-8.320028px;}
.ls24_c01113{letter-spacing:-8.247593px;}
.ls26_c01113{letter-spacing:-7.439355px;}
.ls10_c01113{letter-spacing:-6.685875px;}
.ls15_c01113{letter-spacing:-6.053400px;}
.ls2a_c01113{letter-spacing:-5.945625px;}
.ls17_c01113{letter-spacing:-5.756400px;}
.lse_c01113{letter-spacing:-5.196713px;}
.ls23_c01113{letter-spacing:-4.456463px;}
.lsa_c01113{letter-spacing:-4.053428px;}
.ls7_c01113{letter-spacing:-3.891323px;}
.ls1f_c01113{letter-spacing:-3.823200px;}
.ls1c_c01113{letter-spacing:-3.717000px;}
.ls27_c01113{letter-spacing:-3.614625px;}
.ls14_c01113{letter-spacing:-3.160500px;}
.ls8_c01113{letter-spacing:-3.113700px;}
.ls6_c01113{letter-spacing:-2.968875px;}
.ls11_c01113{letter-spacing:-2.673000px;}
.ls3_c01113{letter-spacing:-2.431575px;}
.ls1a_c01113{letter-spacing:-2.375175px;}
.lsd_c01113{letter-spacing:-2.335275px;}
.ls21_c01113{letter-spacing:-2.293500px;}
.ls29_c01113{letter-spacing:-2.230950px;}
.lsb_c01113{letter-spacing:-2.229413px;}
.ls19_c01113{letter-spacing:-1.621050px;}
.ls28_c01113{letter-spacing:-1.573703px;}
.lsc_c01113{letter-spacing:-1.489163px;}
.ls2_c01113{letter-spacing:-0.810525px;}
.ls1b_c01113{letter-spacing:-0.779625px;}
.ls1e_c01113{letter-spacing:-0.740250px;}
.ls4_c01113{letter-spacing:0.000000px;}
.ls25_c01113{letter-spacing:0.778425px;}
.ls1_c01113{letter-spacing:0.810525px;}
.ls1d_c01113{letter-spacing:1.501478px;}
.ls0_c01113{letter-spacing:2.229413px;}
.ls9_c01113{letter-spacing:2.359350px;}
.ls18_c01113{letter-spacing:2.431905px;}
.lsf_c01113{letter-spacing:5.859150px;}
.ls12_c01113{letter-spacing:6.882750px;}
.ls22_c01113{letter-spacing:22.720500px;}
.ls13_c01113{letter-spacing:66.085088px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01113{word-spacing:0.000000px;}
._d_c01113{margin-left:-9.558507px;}
._a_c01113{margin-left:-2.428487px;}
._e_c01113{margin-left:-1.394811px;}
._1_c01113{width:2.504983px;}
._2_c01113{width:3.724994px;}
._0_c01113{width:5.776671px;}
._8_c01113{width:7.476954px;}
._7_c01113{width:9.586876px;}
._6_c01113{width:10.633598px;}
._4_c01113{width:13.249150px;}
._3_c01113{width:14.985947px;}
._5_c01113{width:19.663544px;}
._b_c01113{width:22.851229px;}
._9_c01113{width:33.245338px;}
._c_c01113{width:39.201988px;}
.fc0_c01113{color:transparent;}
.fs6_c01113{font-size:71.250000px;}
.fs7_c01113{font-size:73.500000px;}
.fsb_c01113{font-size:75.750000px;}
.fse_c01113{font-size:76.500000px;}
.fsc_c01113{font-size:78.000000px;}
.fs2_c01113{font-size:78.750000px;}
.fs4_c01113{font-size:79.500000px;}
.fs0_c01113{font-size:80.250000px;}
.fs5_c01113{font-size:81.000000px;}
.fs3_c01113{font-size:82.500000px;}
.fs8_c01113{font-size:83.250000px;}
.fs1_c01113{font-size:84.750000px;}
.fs9_c01113{font-size:85.500000px;}
.fsa_c01113{font-size:87.750000px;}
.fsf_c01113{font-size:89.250000px;}
.fsd_c01113{font-size:92.250000px;}
.y0_c01113{bottom:0.000000px;}
.y1c_c01113{bottom:181.080000px;}
.y1b_c01113{bottom:181.080870px;}
.y1a_c01113{bottom:210.960600px;}
.y19_c01113{bottom:270.720315px;}
.y18_c01113{bottom:300.239850px;}
.y17_c01113{bottom:330.481335px;}
.y16_c01113{bottom:390.240870px;}
.y15_c01113{bottom:420.480885px;}
.y14_c01113{bottom:450.361545px;}
.y13_c01113{bottom:510.121035px;}
.y11_c01113{bottom:539.999910px;}
.y12_c01113{bottom:540.000000px;}
.y10_c01113{bottom:570.239820px;}
.yf_c01113{bottom:629.280900px;}
.ye_c01113{bottom:658.800570px;}
.yd_c01113{bottom:689.401515px;}
.yc_c01113{bottom:749.520270px;}
.yb_c01113{bottom:778.680720px;}
.ya_c01113{bottom:809.279850px;}
.y9_c01113{bottom:869.040990px;}
.y8_c01113{bottom:898.560705px;}
.y7_c01113{bottom:898.561590px;}
.y6_c01113{bottom:928.441320px;}
.y5_c01113{bottom:988.200990px;}
.y4_c01113{bottom:1017.720705px;}
.y3_c01113{bottom:1048.321560px;}
.y2_c01113{bottom:1108.081050px;}
.y1_c01113{bottom:1137.600675px;}
.h8_c01113{height:74.311523px;}
.he_c01113{height:74.344482px;}
.h11_c01113{height:76.552734px;}
.h9_c01113{height:76.658203px;}
.h13_c01113{height:77.097656px;}
.h15_c01113{height:77.250366px;}
.h3_c01113{height:77.288818px;}
.h1_c01113{height:78.721802px;}
.hf_c01113{height:78.760986px;}
.h6_c01113{height:80.121094px;}
.h4_c01113{height:80.876953px;}
.hd_c01113{height:80.928955px;}
.h5_c01113{height:80.969238px;}
.h7_c01113{height:81.632812px;}
.ha_c01113{height:82.274414px;}
.h2_c01113{height:83.136108px;}
.h10_c01113{height:83.144531px;}
.hb_c01113{height:84.498047px;}
.hc_c01113{height:86.721680px;}
.h14_c01113{height:88.204102px;}
.h12_c01113{height:91.168945px;}
.h0_c01113{height:1263.000000px;}
.w0_c01113{width:892.500000px;}
.x0_c01113{left:0.000000px;}
.x7_c01113{left:136.079400px;}
.x4_c01113{left:137.519685px;}
.x1_c01113{left:138.599100px;}
.x20_c01113{left:168.838950px;}
.xc_c01113{left:204.838515px;}
.xb_c01113{left:211.319850px;}
.x13_c01113{left:225.719535px;}
.x1a_c01113{left:227.159850px;}
.x23_c01113{left:229.679700px;}
.x21_c01113{left:233.639700px;}
.x26_c01113{left:235.080000px;}
.x9_c01113{left:243.359250px;}
.x14_c01113{left:249.118785px;}
.x1d_c01113{left:250.918350px;}
.x24_c01113{left:253.798950px;}
.xa_c01113{left:258.479235px;}
.x1e_c01113{left:265.679100px;}
.xd_c01113{left:271.438635px;}
.x27_c01113{left:283.679700px;}
.x15_c01113{left:295.559685px;}
.x1c_c01113{left:300.239850px;}
.xe_c01113{left:303.838950px;}
.x1b_c01113{left:311.038950px;}
.x22_c01113{left:335.878350px;}
.x1f_c01113{left:338.759100px;}
.x8_c01113{left:352.438635px;}
.xf_c01113{left:362.159850px;}
.x25_c01113{left:369.719100px;}
.x5_c01113{left:372.238785px;}
.x11_c01113{left:381.958350px;}
.x2_c01113{left:384.479685px;}
.x10_c01113{left:385.918350px;}
.x16_c01113{left:390.959385px;}
.x3_c01113{left:399.599670px;}
.x6_c01113{left:408.958335px;}
.x12_c01113{left:415.439670px;}
.x17_c01113{left:423.359850px;}
.x18_c01113{left:481.679070px;}
.x19_c01113{left:504.719100px;}
.x28_c01113{left:673.559685px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.ls16_c01113{letter-spacing:-17.487600pt;}
.ls5_c01113{letter-spacing:-9.247000pt;}
.ls20_c01113{letter-spacing:-7.395580pt;}
.ls24_c01113{letter-spacing:-7.331193pt;}
.ls26_c01113{letter-spacing:-6.612760pt;}
.ls10_c01113{letter-spacing:-5.943000pt;}
.ls15_c01113{letter-spacing:-5.380800pt;}
.ls2a_c01113{letter-spacing:-5.285000pt;}
.ls17_c01113{letter-spacing:-5.116800pt;}
.lse_c01113{letter-spacing:-4.619300pt;}
.ls23_c01113{letter-spacing:-3.961300pt;}
.lsa_c01113{letter-spacing:-3.603047pt;}
.ls7_c01113{letter-spacing:-3.458953pt;}
.ls1f_c01113{letter-spacing:-3.398400pt;}
.ls1c_c01113{letter-spacing:-3.304000pt;}
.ls27_c01113{letter-spacing:-3.213000pt;}
.ls14_c01113{letter-spacing:-2.809333pt;}
.ls8_c01113{letter-spacing:-2.767733pt;}
.ls6_c01113{letter-spacing:-2.639000pt;}
.ls11_c01113{letter-spacing:-2.376000pt;}
.ls3_c01113{letter-spacing:-2.161400pt;}
.ls1a_c01113{letter-spacing:-2.111267pt;}
.lsd_c01113{letter-spacing:-2.075800pt;}
.ls21_c01113{letter-spacing:-2.038667pt;}
.ls29_c01113{letter-spacing:-1.983067pt;}
.lsb_c01113{letter-spacing:-1.981700pt;}
.ls19_c01113{letter-spacing:-1.440933pt;}
.ls28_c01113{letter-spacing:-1.398847pt;}
.lsc_c01113{letter-spacing:-1.323700pt;}
.ls2_c01113{letter-spacing:-0.720467pt;}
.ls1b_c01113{letter-spacing:-0.693000pt;}
.ls1e_c01113{letter-spacing:-0.658000pt;}
.ls4_c01113{letter-spacing:0.000000pt;}
.ls25_c01113{letter-spacing:0.691933pt;}
.ls1_c01113{letter-spacing:0.720467pt;}
.ls1d_c01113{letter-spacing:1.334647pt;}
.ls0_c01113{letter-spacing:1.981700pt;}
.ls9_c01113{letter-spacing:2.097200pt;}
.ls18_c01113{letter-spacing:2.161693pt;}
.lsf_c01113{letter-spacing:5.208133pt;}
.ls12_c01113{letter-spacing:6.118000pt;}
.ls22_c01113{letter-spacing:20.196000pt;}
.ls13_c01113{letter-spacing:58.742300pt;}
.ws0_c01113{word-spacing:0.000000pt;}
._d_c01113{margin-left:-8.496450pt;}
._a_c01113{margin-left:-2.158655pt;}
._e_c01113{margin-left:-1.239832pt;}
._1_c01113{width:2.226652pt;}
._2_c01113{width:3.311106pt;}
._0_c01113{width:5.134818pt;}
._8_c01113{width:6.646182pt;}
._7_c01113{width:8.521668pt;}
._6_c01113{width:9.452087pt;}
._4_c01113{width:11.777023pt;}
._3_c01113{width:13.320842pt;}
._5_c01113{width:17.478706pt;}
._b_c01113{width:20.312204pt;}
._9_c01113{width:29.551411pt;}
._c_c01113{width:34.846211pt;}
.fs6_c01113{font-size:63.333333pt;}
.fs7_c01113{font-size:65.333333pt;}
.fsb_c01113{font-size:67.333333pt;}
.fse_c01113{font-size:68.000000pt;}
.fsc_c01113{font-size:69.333333pt;}
.fs2_c01113{font-size:70.000000pt;}
.fs4_c01113{font-size:70.666667pt;}
.fs0_c01113{font-size:71.333333pt;}
.fs5_c01113{font-size:72.000000pt;}
.fs3_c01113{font-size:73.333333pt;}
.fs8_c01113{font-size:74.000000pt;}
.fs1_c01113{font-size:75.333333pt;}
.fs9_c01113{font-size:76.000000pt;}
.fsa_c01113{font-size:78.000000pt;}
.fsf_c01113{font-size:79.333333pt;}
.fsd_c01113{font-size:82.000000pt;}
.y0_c01113{bottom:0.000000pt;}
.y1c_c01113{bottom:160.960000pt;}
.y1b_c01113{bottom:160.960773pt;}
.y1a_c01113{bottom:187.520533pt;}
.y19_c01113{bottom:240.640280pt;}
.y18_c01113{bottom:266.879867pt;}
.y17_c01113{bottom:293.761187pt;}
.y16_c01113{bottom:346.880773pt;}
.y15_c01113{bottom:373.760787pt;}
.y14_c01113{bottom:400.321373pt;}
.y13_c01113{bottom:453.440920pt;}
.y11_c01113{bottom:479.999920pt;}
.y12_c01113{bottom:480.000000pt;}
.y10_c01113{bottom:506.879840pt;}
.yf_c01113{bottom:559.360800pt;}
.ye_c01113{bottom:585.600507pt;}
.yd_c01113{bottom:612.801347pt;}
.yc_c01113{bottom:666.240240pt;}
.yb_c01113{bottom:692.160640pt;}
.ya_c01113{bottom:719.359867pt;}
.y9_c01113{bottom:772.480880pt;}
.y8_c01113{bottom:798.720627pt;}
.y7_c01113{bottom:798.721413pt;}
.y6_c01113{bottom:825.281173pt;}
.y5_c01113{bottom:878.400880pt;}
.y4_c01113{bottom:904.640627pt;}
.y3_c01113{bottom:931.841387pt;}
.y2_c01113{bottom:984.960933pt;}
.y1_c01113{bottom:1011.200600pt;}
.h8_c01113{height:66.054688pt;}
.he_c01113{height:66.083984pt;}
.h11_c01113{height:68.046875pt;}
.h9_c01113{height:68.140625pt;}
.h13_c01113{height:68.531250pt;}
.h15_c01113{height:68.666992pt;}
.h3_c01113{height:68.701172pt;}
.h1_c01113{height:69.974935pt;}
.hf_c01113{height:70.009766pt;}
.h6_c01113{height:71.218750pt;}
.h4_c01113{height:71.890625pt;}
.hd_c01113{height:71.936849pt;}
.h5_c01113{height:71.972656pt;}
.h7_c01113{height:72.562500pt;}
.ha_c01113{height:73.132813pt;}
.h2_c01113{height:73.898763pt;}
.h10_c01113{height:73.906250pt;}
.hb_c01113{height:75.109375pt;}
.hc_c01113{height:77.085938pt;}
.h14_c01113{height:78.403646pt;}
.h12_c01113{height:81.039063pt;}
.h0_c01113{height:1122.666667pt;}
.w0_c01113{width:793.333333pt;}
.x0_c01113{left:0.000000pt;}
.x7_c01113{left:120.959467pt;}
.x4_c01113{left:122.239720pt;}
.x1_c01113{left:123.199200pt;}
.x20_c01113{left:150.079067pt;}
.xc_c01113{left:182.078680pt;}
.xb_c01113{left:187.839867pt;}
.x13_c01113{left:200.639587pt;}
.x1a_c01113{left:201.919867pt;}
.x23_c01113{left:204.159733pt;}
.x21_c01113{left:207.679733pt;}
.x26_c01113{left:208.960000pt;}
.x9_c01113{left:216.319333pt;}
.x14_c01113{left:221.438920pt;}
.x1d_c01113{left:223.038533pt;}
.x24_c01113{left:225.599067pt;}
.xa_c01113{left:229.759320pt;}
.x1e_c01113{left:236.159200pt;}
.xd_c01113{left:241.278787pt;}
.x27_c01113{left:252.159733pt;}
.x15_c01113{left:262.719720pt;}
.x1c_c01113{left:266.879867pt;}
.xe_c01113{left:270.079067pt;}
.x1b_c01113{left:276.479067pt;}
.x22_c01113{left:298.558533pt;}
.x1f_c01113{left:301.119200pt;}
.x8_c01113{left:313.278787pt;}
.xf_c01113{left:321.919867pt;}
.x25_c01113{left:328.639200pt;}
.x5_c01113{left:330.878920pt;}
.x11_c01113{left:339.518533pt;}
.x2_c01113{left:341.759720pt;}
.x10_c01113{left:343.038533pt;}
.x16_c01113{left:347.519453pt;}
.x3_c01113{left:355.199707pt;}
.x6_c01113{left:363.518520pt;}
.x12_c01113{left:369.279707pt;}
.x17_c01113{left:376.319867pt;}
.x18_c01113{left:428.159173pt;}
.x19_c01113{left:448.639200pt;}
.x28_c01113{left:598.719720pt;}
}





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

.ir_c01114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_907c055b1c4bd4e37db41d39.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01114;src:url('chunks/assets/font_4c4b662c0ad97c7125ec3351.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01114;src:url('chunks/assets/font_1ac39b04b02818245a58ba4f.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01114;src:url('chunks/assets/font_9581d5b340194c4ba4451fc1.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01114;src:url('chunks/assets/font_1747c0f4b3703de3c41462ce.woff2')format("woff");}.ff5_c01114{font-family:ff5_c01114;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01114;src:url('chunks/assets/font_72621ce9a812bd38c44eda68.woff2')format("woff");}.ff6_c01114{font-family:ff6_c01114;line-height:1.364746;font-style:normal;font-weight: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_c01114;src:url('chunks/assets/font_9039540dcfc03ff47bccfd03.woff2')format("woff");}.ff7_c01114{font-family:ff7_c01114;line-height:1.432129;font-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_c01114{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m2_c01114{transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);}
.m19_c01114{transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);}
.m9_c01114{transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);}
.m18_c01114{transform:matrix(0.199029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199029,0.000000,0.000000,0.250000,0,0);}
.m3_c01114{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.me_c01114{transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200855,0.000000,0.000000,0.250000,0,0);}
.m13_c01114{transform:matrix(0.203883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203883,0.000000,0.000000,0.250000,0,0);}
.m16_c01114{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m14_c01114{transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213918,0.000000,0.000000,0.250000,0,0);}
.m1_c01114{transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216981,0.000000,0.000000,0.250000,0,0);}
.m15_c01114{transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);}
.m4_c01114{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m10_c01114{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m17_c01114{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m12_c01114{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m1a_c01114{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m0_c01114{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m6_c01114{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1d_c01114{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.mf_c01114{transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235043,0.000000,0.000000,0.250000,0,0);}
.m5_c01114{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m1b_c01114{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.ma_c01114{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m1e_c01114{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m8_c01114{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m11_c01114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01114{transform:matrix(0.258547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258547,0.000000,0.000000,0.250000,0,0);}
.mc_c01114{transform:matrix(0.260593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260593,0.000000,0.000000,0.250000,0,0);}
.m1c_c01114{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.mb_c01114{transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334184,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.ls1b_c01114{letter-spacing:-7.177950px;}
.ls21_c01114{letter-spacing:-6.132825px;}
.ls17_c01114{letter-spacing:-5.800275px;}
.ls18_c01114{letter-spacing:-5.598450px;}
.ls1e_c01114{letter-spacing:-5.562128px;}
.ls19_c01114{letter-spacing:-4.862348px;}
.ls12_c01114{letter-spacing:-4.053428px;}
.ls16_c01114{letter-spacing:-3.593100px;}
.ls13_c01114{letter-spacing:-3.418650px;}
.ls10_c01114{letter-spacing:-3.242903px;}
.ls15_c01114{letter-spacing:-2.806965px;}
.ls1c_c01114{letter-spacing:-2.560778px;}
.ls7_c01114{letter-spacing:-2.431575px;}
.ls1d_c01114{letter-spacing:-2.382623px;}
.ls27_c01114{letter-spacing:-2.337233px;}
.lsc_c01114{letter-spacing:-1.709325px;}
.ls1f_c01114{letter-spacing:-1.637700px;}
.lsb_c01114{letter-spacing:-1.621050px;}
.lse_c01114{letter-spacing:-1.589753px;}
.ls20_c01114{letter-spacing:-0.919275px;}
.ls23_c01114{letter-spacing:-0.874500px;}
.ls8_c01114{letter-spacing:-0.865755px;}
.lsd_c01114{letter-spacing:-0.850650px;}
.lsa_c01114{letter-spacing:-0.810525px;}
.lsf_c01114{letter-spacing:-0.794475px;}
.ls9_c01114{letter-spacing:0.000000px;}
.ls5_c01114{letter-spacing:0.794475px;}
.ls1a_c01114{letter-spacing:0.850650px;}
.ls11_c01114{letter-spacing:1.525425px;}
.ls2_c01114{letter-spacing:1.589753px;}
.ls4_c01114{letter-spacing:1.709325px;}
.ls0_c01114{letter-spacing:2.382623px;}
.ls26_c01114{letter-spacing:2.431905px;}
.ls3_c01114{letter-spacing:2.560778px;}
.ls29_c01114{letter-spacing:3.972375px;}
.ls6_c01114{letter-spacing:4.270103px;}
.ls22_c01114{letter-spacing:4.301843px;}
.ls1_c01114{letter-spacing:6.829275px;}
.ls25_c01114{letter-spacing:7.460100px;}
.ls24_c01114{letter-spacing:11.301675px;}
.ls14_c01114{letter-spacing:13.167000px;}
.ls28_c01114{letter-spacing:13.672620px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01114{word-spacing:0.000000px;}
._11_c01114{margin-left:-14.750501px;}
._3_c01114{margin-left:-11.822708px;}
._d_c01114{margin-left:-10.649619px;}
._e_c01114{margin-left:-2.378388px;}
._10_c01114{margin-left:-1.375058px;}
._4_c01114{width:2.134780px;}
._7_c01114{width:4.068707px;}
._6_c01114{width:5.400241px;}
._b_c01114{width:6.668679px;}
._0_c01114{width:7.960595px;}
._1_c01114{width:9.447513px;}
._f_c01114{width:10.523929px;}
._2_c01114{width:11.708718px;}
._5_c01114{width:13.861874px;}
._a_c01114{width:15.305331px;}
._c_c01114{width:19.276567px;}
._9_c01114{width:20.469124px;}
._8_c01114{width:22.678046px;}
.fc0_c01114{color:transparent;}
.fs5_c01114{font-size:34.500000px;}
.fs7_c01114{font-size:71.250000px;}
.fsa_c01114{font-size:72.000000px;}
.fsb_c01114{font-size:72.750000px;}
.fs8_c01114{font-size:73.500000px;}
.fsc_c01114{font-size:75.750000px;}
.fs4_c01114{font-size:77.250000px;}
.fs11_c01114{font-size:78.000000px;}
.fsd_c01114{font-size:78.750000px;}
.fs1_c01114{font-size:79.500000px;}
.fs0_c01114{font-size:80.250000px;}
.fse_c01114{font-size:81.000000px;}
.fsf_c01114{font-size:81.750000px;}
.fs6_c01114{font-size:82.500000px;}
.fs3_c01114{font-size:84.750000px;}
.fs9_c01114{font-size:87.750000px;}
.fs2_c01114{font-size:88.500000px;}
.fs10_c01114{font-size:90.000000px;}
.y0_c01114{bottom:0.000000px;}
.y1b_c01114{bottom:181.080000px;}
.y19_c01114{bottom:211.319430px;}
.y1a_c01114{bottom:211.319850px;}
.y18_c01114{bottom:270.359250px;}
.y17_c01114{bottom:299.878950px;}
.y16_c01114{bottom:329.759535px;}
.y15_c01114{bottom:389.519070px;}
.y13_c01114{bottom:419.399820px;}
.y14_c01114{bottom:420.479235px;}
.y12_c01114{bottom:449.639700px;}
.y11_c01114{bottom:509.760135px;}
.y10_c01114{bottom:538.559685px;}
.yf_c01114{bottom:568.799520px;}
.ye_c01114{bottom:628.199850px;}
.yd_c01114{bottom:657.719520px;}
.yc_c01114{bottom:688.318770px;}
.yb_c01114{bottom:748.080000px;}
.ya_c01114{bottom:777.238770px;}
.y9_c01114{bottom:807.839535px;}
.y8_c01114{bottom:867.960015px;}
.y7_c01114{bottom:897.479640px;}
.y6_c01114{bottom:927.719520px;}
.y5_c01114{bottom:987.479190px;}
.y4_c01114{bottom:1016.998905px;}
.y3_c01114{bottom:1047.238770px;}
.y2_c01114{bottom:1107.000000px;}
.y1_c01114{bottom:1136.878875px;}
.h7_c01114{height:35.982422px;}
.ha_c01114{height:74.311523px;}
.hd_c01114{height:75.093750px;}
.he_c01114{height:75.778931px;}
.hf_c01114{height:75.875977px;}
.h17_c01114{height:76.514648px;}
.hb_c01114{height:76.658203px;}
.h12_c01114{height:77.250366px;}
.h6_c01114{height:77.853516px;}
.h2_c01114{height:77.986084px;}
.h18_c01114{height:78.609375px;}
.h1_c01114{height:78.721802px;}
.h10_c01114{height:79.004883px;}
.h14_c01114{height:80.121094px;}
.h5_c01114{height:80.876953px;}
.h11_c01114{height:80.928955px;}
.h13_c01114{height:81.632812px;}
.h15_c01114{height:82.388672px;}
.h4_c01114{height:83.136108px;}
.h8_c01114{height:83.144531px;}
.h9_c01114{height:83.756836px;}
.hc_c01114{height:86.721680px;}
.h3_c01114{height:87.462891px;}
.h16_c01114{height:93.867188px;}
.h0_c01114{height:1263.000000px;}
.w0_c01114{width:892.500000px;}
.x0_c01114{left:0.000000px;}
.x9_c01114{left:135.718500px;}
.x1_c01114{left:137.158815px;}
.x25_c01114{left:138.958350px;}
.x21_c01114{left:150.838515px;}
.x14_c01114{left:161.279850px;}
.xf_c01114{left:169.199850px;}
.xe_c01114{left:170.279250px;}
.x22_c01114{left:172.439715px;}
.x10_c01114{left:175.318800px;}
.x2_c01114{left:179.639700px;}
.x15_c01114{left:197.279250px;}
.x11_c01114{left:205.919535px;}
.x1a_c01114{left:218.158785px;}
.xc_c01114{left:230.038950px;}
.x23_c01114{left:235.080000px;}
.x12_c01114{left:237.599700px;}
.x7_c01114{left:241.198785px;}
.x2c_c01114{left:253.439685px;}
.x8_c01114{left:256.679700px;}
.xd_c01114{left:262.439250px;}
.x16_c01114{left:264.238785px;}
.x24_c01114{left:279.358635px;}
.x27_c01114{left:281.878350px;}
.xa_c01114{left:286.919535px;}
.xb_c01114{left:291.238785px;}
.x3_c01114{left:294.839535px;}
.x28_c01114{left:305.279250px;}
.x13_c01114{left:311.759100px;}
.x4_c01114{left:319.319850px;}
.x1b_c01114{left:322.918950px;}
.x19_c01114{left:340.919535px;}
.x29_c01114{left:344.159385px;}
.x17_c01114{left:363.959385px;}
.x18_c01114{left:382.319235px;}
.x1c_c01114{left:384.479685px;}
.x2a_c01114{left:385.559100px;}
.x5_c01114{left:409.319235px;}
.x2b_c01114{left:416.519070px;}
.x1d_c01114{left:417.598530px;}
.x6_c01114{left:424.080000px;}
.x26_c01114{left:450.359850px;}
.x1e_c01114{left:498.239220px;}
.x1f_c01114{left:538.198785px;}
.x20_c01114{left:577.078770px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls1b_c01114{letter-spacing:-6.380400pt;}
.ls21_c01114{letter-spacing:-5.451400pt;}
.ls17_c01114{letter-spacing:-5.155800pt;}
.ls18_c01114{letter-spacing:-4.976400pt;}
.ls1e_c01114{letter-spacing:-4.944113pt;}
.ls19_c01114{letter-spacing:-4.322087pt;}
.ls12_c01114{letter-spacing:-3.603047pt;}
.ls16_c01114{letter-spacing:-3.193867pt;}
.ls13_c01114{letter-spacing:-3.038800pt;}
.ls10_c01114{letter-spacing:-2.882580pt;}
.ls15_c01114{letter-spacing:-2.495080pt;}
.ls1c_c01114{letter-spacing:-2.276247pt;}
.ls7_c01114{letter-spacing:-2.161400pt;}
.ls1d_c01114{letter-spacing:-2.117887pt;}
.ls27_c01114{letter-spacing:-2.077540pt;}
.lsc_c01114{letter-spacing:-1.519400pt;}
.ls1f_c01114{letter-spacing:-1.455733pt;}
.lsb_c01114{letter-spacing:-1.440933pt;}
.lse_c01114{letter-spacing:-1.413113pt;}
.ls20_c01114{letter-spacing:-0.817133pt;}
.ls23_c01114{letter-spacing:-0.777333pt;}
.ls8_c01114{letter-spacing:-0.769560pt;}
.lsd_c01114{letter-spacing:-0.756133pt;}
.lsa_c01114{letter-spacing:-0.720467pt;}
.lsf_c01114{letter-spacing:-0.706200pt;}
.ls9_c01114{letter-spacing:0.000000pt;}
.ls5_c01114{letter-spacing:0.706200pt;}
.ls1a_c01114{letter-spacing:0.756133pt;}
.ls11_c01114{letter-spacing:1.355933pt;}
.ls2_c01114{letter-spacing:1.413113pt;}
.ls4_c01114{letter-spacing:1.519400pt;}
.ls0_c01114{letter-spacing:2.117887pt;}
.ls26_c01114{letter-spacing:2.161693pt;}
.ls3_c01114{letter-spacing:2.276247pt;}
.ls29_c01114{letter-spacing:3.531000pt;}
.ls6_c01114{letter-spacing:3.795647pt;}
.ls22_c01114{letter-spacing:3.823860pt;}
.ls1_c01114{letter-spacing:6.070467pt;}
.ls25_c01114{letter-spacing:6.631200pt;}
.ls24_c01114{letter-spacing:10.045933pt;}
.ls14_c01114{letter-spacing:11.704000pt;}
.ls28_c01114{letter-spacing:12.153440pt;}
.ws0_c01114{word-spacing:0.000000pt;}
._11_c01114{margin-left:-13.111557pt;}
._3_c01114{margin-left:-10.509074pt;}
._d_c01114{margin-left:-9.466328pt;}
._e_c01114{margin-left:-2.114123pt;}
._10_c01114{margin-left:-1.222274pt;}
._4_c01114{width:1.897582pt;}
._7_c01114{width:3.616628pt;}
._6_c01114{width:4.800215pt;}
._b_c01114{width:5.927715pt;}
._0_c01114{width:7.076085pt;}
._1_c01114{width:8.397789pt;}
._f_c01114{width:9.354603pt;}
._2_c01114{width:10.407749pt;}
._5_c01114{width:12.321666pt;}
._a_c01114{width:13.604739pt;}
._c_c01114{width:17.134726pt;}
._9_c01114{width:18.194777pt;}
._8_c01114{width:20.158263pt;}
.fs5_c01114{font-size:30.666667pt;}
.fs7_c01114{font-size:63.333333pt;}
.fsa_c01114{font-size:64.000000pt;}
.fsb_c01114{font-size:64.666667pt;}
.fs8_c01114{font-size:65.333333pt;}
.fsc_c01114{font-size:67.333333pt;}
.fs4_c01114{font-size:68.666667pt;}
.fs11_c01114{font-size:69.333333pt;}
.fsd_c01114{font-size:70.000000pt;}
.fs1_c01114{font-size:70.666667pt;}
.fs0_c01114{font-size:71.333333pt;}
.fse_c01114{font-size:72.000000pt;}
.fsf_c01114{font-size:72.666667pt;}
.fs6_c01114{font-size:73.333333pt;}
.fs3_c01114{font-size:75.333333pt;}
.fs9_c01114{font-size:78.000000pt;}
.fs2_c01114{font-size:78.666667pt;}
.fs10_c01114{font-size:80.000000pt;}
.y0_c01114{bottom:0.000000pt;}
.y1b_c01114{bottom:160.960000pt;}
.y19_c01114{bottom:187.839493pt;}
.y1a_c01114{bottom:187.839867pt;}
.y18_c01114{bottom:240.319333pt;}
.y17_c01114{bottom:266.559067pt;}
.y16_c01114{bottom:293.119587pt;}
.y15_c01114{bottom:346.239173pt;}
.y13_c01114{bottom:372.799840pt;}
.y14_c01114{bottom:373.759320pt;}
.y12_c01114{bottom:399.679733pt;}
.y11_c01114{bottom:453.120120pt;}
.y10_c01114{bottom:478.719720pt;}
.yf_c01114{bottom:505.599573pt;}
.ye_c01114{bottom:558.399867pt;}
.yd_c01114{bottom:584.639573pt;}
.yc_c01114{bottom:611.838907pt;}
.yb_c01114{bottom:664.960000pt;}
.ya_c01114{bottom:690.878907pt;}
.y9_c01114{bottom:718.079587pt;}
.y8_c01114{bottom:771.520013pt;}
.y7_c01114{bottom:797.759680pt;}
.y6_c01114{bottom:824.639573pt;}
.y5_c01114{bottom:877.759280pt;}
.y4_c01114{bottom:903.999027pt;}
.y3_c01114{bottom:930.878907pt;}
.y2_c01114{bottom:984.000000pt;}
.y1_c01114{bottom:1010.559000pt;}
.h7_c01114{height:31.984375pt;}
.ha_c01114{height:66.054688pt;}
.hd_c01114{height:66.750000pt;}
.he_c01114{height:67.359049pt;}
.hf_c01114{height:67.445312pt;}
.h17_c01114{height:68.013021pt;}
.hb_c01114{height:68.140625pt;}
.h12_c01114{height:68.666992pt;}
.h6_c01114{height:69.203125pt;}
.h2_c01114{height:69.320964pt;}
.h18_c01114{height:69.875000pt;}
.h1_c01114{height:69.974935pt;}
.h10_c01114{height:70.226562pt;}
.h14_c01114{height:71.218750pt;}
.h5_c01114{height:71.890625pt;}
.h11_c01114{height:71.936849pt;}
.h13_c01114{height:72.562500pt;}
.h15_c01114{height:73.234375pt;}
.h4_c01114{height:73.898763pt;}
.h8_c01114{height:73.906250pt;}
.h9_c01114{height:74.450521pt;}
.hc_c01114{height:77.085938pt;}
.h3_c01114{height:77.744792pt;}
.h16_c01114{height:83.437500pt;}
.h0_c01114{height:1122.666667pt;}
.w0_c01114{width:793.333333pt;}
.x0_c01114{left:0.000000pt;}
.x9_c01114{left:120.638667pt;}
.x1_c01114{left:121.918947pt;}
.x25_c01114{left:123.518533pt;}
.x21_c01114{left:134.078680pt;}
.x14_c01114{left:143.359867pt;}
.xf_c01114{left:150.399867pt;}
.xe_c01114{left:151.359333pt;}
.x22_c01114{left:153.279747pt;}
.x10_c01114{left:155.838933pt;}
.x2_c01114{left:159.679733pt;}
.x15_c01114{left:175.359333pt;}
.x11_c01114{left:183.039587pt;}
.x1a_c01114{left:193.918920pt;}
.xc_c01114{left:204.479067pt;}
.x23_c01114{left:208.960000pt;}
.x12_c01114{left:211.199733pt;}
.x7_c01114{left:214.398920pt;}
.x2c_c01114{left:225.279720pt;}
.x8_c01114{left:228.159733pt;}
.xd_c01114{left:233.279333pt;}
.x16_c01114{left:234.878920pt;}
.x24_c01114{left:248.318787pt;}
.x27_c01114{left:250.558533pt;}
.xa_c01114{left:255.039587pt;}
.xb_c01114{left:258.878920pt;}
.x3_c01114{left:262.079587pt;}
.x28_c01114{left:271.359333pt;}
.x13_c01114{left:277.119200pt;}
.x4_c01114{left:283.839867pt;}
.x1b_c01114{left:287.039067pt;}
.x19_c01114{left:303.039587pt;}
.x29_c01114{left:305.919453pt;}
.x17_c01114{left:323.519453pt;}
.x18_c01114{left:339.839320pt;}
.x1c_c01114{left:341.759720pt;}
.x2a_c01114{left:342.719200pt;}
.x5_c01114{left:363.839320pt;}
.x2b_c01114{left:370.239173pt;}
.x1d_c01114{left:371.198693pt;}
.x6_c01114{left:376.960000pt;}
.x26_c01114{left:400.319867pt;}
.x1e_c01114{left:442.879307pt;}
.x1f_c01114{left:478.398920pt;}
.x20_c01114{left:512.958907pt;}
}





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

.ir_c01115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_bfcdf6591131d350906d51a2.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01115;src:url('chunks/assets/font_7105eb34fc260abf666baee5.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01115;src:url('chunks/assets/font_5a6675e758c6ef08db3521ff.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01115;src:url('chunks/assets/font_1d1e341d65dbeb0437e4abfc.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01115;src:url('chunks/assets/font_04b6e192fc5dd073ed4b39b9.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01115;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff6_c01115{font-family:ff6_c01115;line-height:1.432129;font-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_c01115{transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160256,0.000000,0.000000,0.250000,0,0);}
.ma_c01115{transform:matrix(0.194954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194954,0.000000,0.000000,0.250000,0,0);}
.m16_c01115{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m5_c01115{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.m7_c01115{transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);}
.m1b_c01115{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c01115{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.mf_c01115{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m9_c01115{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m18_c01115{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.me_c01115{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m17_c01115{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m2_c01115{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m13_c01115{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m3_c01115{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.mc_c01115{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m19_c01115{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m10_c01115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01115{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m1_c01115{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m12_c01115{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m8_c01115{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.m14_c01115{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m11_c01115{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m1a_c01115{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01115{transform:matrix(0.323661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323661,0.000000,0.000000,0.250000,0,0);}
.m6_c01115{transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);}
.md_c01115{transform:matrix(0.415865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415865,0.000000,0.000000,0.250000,0,0);}
.v0_c01115{vertical-align:0.000000px;}
.lsb_c01115{letter-spacing:-12.162825px;}
.ls11_c01115{letter-spacing:-11.004000px;}
.ls18_c01115{letter-spacing:-8.755425px;}
.ls22_c01115{letter-spacing:-8.332500px;}
.ls1a_c01115{letter-spacing:-6.797175px;}
.lsc_c01115{letter-spacing:-6.294150px;}
.ls1b_c01115{letter-spacing:-5.945625px;}
.ls17_c01115{letter-spacing:-5.247533px;}
.ls3_c01115{letter-spacing:-5.196713px;}
.ls1e_c01115{letter-spacing:-4.677750px;}
.lsf_c01115{letter-spacing:-4.456463px;}
.ls10_c01115{letter-spacing:-4.247978px;}
.ls15_c01115{letter-spacing:-3.901898px;}
.ls12_c01115{letter-spacing:-3.828615px;}
.ls13_c01115{letter-spacing:-3.717000px;}
.ls6_c01115{letter-spacing:-3.121673px;}
.ls1c_c01115{letter-spacing:-3.118500px;}
.ls5_c01115{letter-spacing:-2.968875px;}
.ls14_c01115{letter-spacing:-2.340675px;}
.ls19_c01115{letter-spacing:-2.338088px;}
.ls16_c01115{letter-spacing:-2.247000px;}
.lse_c01115{letter-spacing:-2.229413px;}
.ls8_c01115{letter-spacing:-1.560450px;}
.ls7_c01115{letter-spacing:-1.556048px;}
.ls21_c01115{letter-spacing:-1.515000px;}
.ls2_c01115{letter-spacing:-1.489163px;}
.ls9_c01115{letter-spacing:-0.780225px;}
.ls1_c01115{letter-spacing:-0.740250px;}
.ls4_c01115{letter-spacing:0.000000px;}
.ls20_c01115{letter-spacing:0.819788px;}
.lsd_c01115{letter-spacing:1.560450px;}
.ls1f_c01115{letter-spacing:1.591200px;}
.lsa_c01115{letter-spacing:1.692600px;}
.ls0_c01115{letter-spacing:2.229413px;}
.ls1d_c01115{letter-spacing:7.020000px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01115{word-spacing:0.000000px;}
._c_c01115{margin-left:-8.221351px;}
._4_c01115{margin-left:-5.562000px;}
._12_c01115{margin-left:-3.853594px;}
._16_c01115{margin-left:-1.656195px;}
._13_c01115{width:1.267289px;}
._10_c01115{width:2.415984px;}
._9_c01115{width:3.883004px;}
._a_c01115{width:4.931734px;}
._2_c01115{width:6.859800px;}
._5_c01115{width:8.157600px;}
._f_c01115{width:9.169792px;}
._b_c01115{width:10.993351px;}
._8_c01115{width:12.035722px;}
._6_c01115{width:14.062031px;}
._e_c01115{width:15.121965px;}
._11_c01115{width:17.213922px;}
._1_c01115{width:18.498012px;}
._7_c01115{width:34.049390px;}
._d_c01115{width:37.213628px;}
._14_c01115{width:54.880608px;}
._15_c01115{width:57.241005px;}
._17_c01115{width:62.266235px;}
._3_c01115{width:87.127930px;}
._0_c01115{width:139.662605px;}
.fc0_c01115{color:transparent;}
.fs1_c01115{font-size:71.250000px;}
.fsa_c01115{font-size:73.500000px;}
.fsf_c01115{font-size:75.000000px;}
.fse_c01115{font-size:75.750000px;}
.fs8_c01115{font-size:76.500000px;}
.fs2_c01115{font-size:77.250000px;}
.fs4_c01115{font-size:78.000000px;}
.fs0_c01115{font-size:78.750000px;}
.fs3_c01115{font-size:80.250000px;}
.fs7_c01115{font-size:81.750000px;}
.fsd_c01115{font-size:82.500000px;}
.fs5_c01115{font-size:83.250000px;}
.fs9_c01115{font-size:84.000000px;}
.fsc_c01115{font-size:87.750000px;}
.fsb_c01115{font-size:96.000000px;}
.fs6_c01115{font-size:106.500000px;}
.y0_c01115{bottom:0.000000px;}
.y1f_c01115{bottom:179.639700px;}
.y1e_c01115{bottom:179.639745px;}
.y1d_c01115{bottom:209.879655px;}
.y1c_c01115{bottom:269.639100px;}
.y1a_c01115{bottom:299.158260px;}
.y1b_c01115{bottom:299.158785px;}
.y19_c01115{bottom:329.400285px;}
.y18_c01115{bottom:358.919295px;}
.y17_c01115{bottom:419.038920px;}
.y16_c01115{bottom:448.199385px;}
.y15_c01115{bottom:478.800240px;}
.y14_c01115{bottom:538.559685px;}
.y13_c01115{bottom:568.440315px;}
.y12_c01115{bottom:598.679505px;}
.y11_c01115{bottom:658.078770px;}
.yf_c01115{bottom:688.319670px;}
.y10_c01115{bottom:688.320285px;}
.ye_c01115{bottom:718.199385px;}
.yd_c01115{bottom:718.200000px;}
.yc_c01115{bottom:777.238770px;}
.yb_c01115{bottom:807.480285px;}
.y9_c01115{bottom:837.719670px;}
.ya_c01115{bottom:837.720150px;}
.y8_c01115{bottom:898.199805px;}
.y7_c01115{bottom:928.439670px;}
.y6_c01115{bottom:957.960135px;}
.y5_c01115{bottom:1016.998905px;}
.y4_c01115{bottom:1046.879520px;}
.y2_c01115{bottom:1077.479625px;}
.y3_c01115{bottom:1077.480285px;}
.y1_c01115{bottom:1136.878875px;}
.h2_c01115{height:71.806641px;}
.h18_c01115{height:73.608398px;}
.h17_c01115{height:74.307495px;}
.ha_c01115{height:75.043213px;}
.he_c01115{height:75.080566px;}
.h3_c01115{height:75.778931px;}
.h9_c01115{height:75.816650px;}
.h5_c01115{height:76.514648px;}
.h16_c01115{height:76.552734px;}
.hc_c01115{height:76.658203px;}
.h1_c01115{height:77.288818px;}
.h4_c01115{height:78.721802px;}
.hf_c01115{height:78.760986px;}
.h13_c01115{height:79.365234px;}
.h12_c01115{height:80.233154px;}
.h8_c01115{height:80.791992px;}
.h10_c01115{height:80.876953px;}
.h15_c01115{height:80.928955px;}
.hd_c01115{height:81.351562px;}
.h6_c01115{height:82.274414px;}
.hb_c01115{height:83.015625px;}
.h14_c01115{height:86.721680px;}
.h11_c01115{height:100.125000px;}
.h7_c01115{height:111.076172px;}
.h0_c01115{height:1263.000000px;}
.w0_c01115{width:892.500000px;}
.x0_c01115{left:0.000000px;}
.x1e_c01115{left:134.279850px;}
.x12_c01115{left:135.718500px;}
.xc_c01115{left:136.799565px;}
.x4_c01115{left:137.878950px;}
.x1_c01115{left:139.319250px;}
.x29_c01115{left:159.478665px;}
.x26_c01115{left:167.759565px;}
.x1d_c01115{left:169.199850px;}
.xd_c01115{left:186.839565px;}
.x2a_c01115{left:188.639100px;}
.x13_c01115{left:196.559100px;}
.x1a_c01115{left:211.679100px;}
.x2_c01115{left:213.119385px;}
.x14_c01115{left:215.639100px;}
.x3_c01115{left:228.598500px;}
.x1b_c01115{left:232.919535px;}
.x10_c01115{left:251.638500px;}
.x24_c01115{left:254.159850px;}
.x11_c01115{left:266.399250px;}
.x5_c01115{left:267.839535px;}
.x25_c01115{left:277.199850px;}
.x2d_c01115{left:279.358635px;}
.x1f_c01115{left:284.399850px;}
.x15_c01115{left:289.080000px;}
.x6_c01115{left:292.319850px;}
.x1c_c01115{left:304.199850px;}
.x18_c01115{left:314.998950px;}
.x2e_c01115{left:322.559685px;}
.x16_c01115{left:324.718500px;}
.x19_c01115{left:336.239250px;}
.x17_c01115{left:337.318800px;}
.x20_c01115{left:338.399850px;}
.x22_c01115{left:343.080000px;}
.x23_c01115{left:356.759535px;}
.x21_c01115{left:370.798515px;}
.x2f_c01115{left:390.598530px;}
.x31_c01115{left:401.758530px;}
.x7_c01115{left:407.519670px;}
.x32_c01115{left:415.439670px;}
.x30_c01115{left:421.919535px;}
.x8_c01115{left:431.639100px;}
.xe_c01115{left:440.279250px;}
.x9_c01115{left:479.879520px;}
.x2b_c01115{left:507.599670px;}
.xa_c01115{left:518.398635px;}
.xb_c01115{left:532.798515px;}
.x2c_c01115{left:557.278800px;}
.xf_c01115{left:575.999400px;}
.x27_c01115{left:662.399820px;}
.x28_c01115{left:704.519670px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.lsb_c01115{letter-spacing:-10.811400pt;}
.ls11_c01115{letter-spacing:-9.781333pt;}
.ls18_c01115{letter-spacing:-7.782600pt;}
.ls22_c01115{letter-spacing:-7.406667pt;}
.ls1a_c01115{letter-spacing:-6.041933pt;}
.lsc_c01115{letter-spacing:-5.594800pt;}
.ls1b_c01115{letter-spacing:-5.285000pt;}
.ls17_c01115{letter-spacing:-4.664473pt;}
.ls3_c01115{letter-spacing:-4.619300pt;}
.ls1e_c01115{letter-spacing:-4.158000pt;}
.lsf_c01115{letter-spacing:-3.961300pt;}
.ls10_c01115{letter-spacing:-3.775980pt;}
.ls15_c01115{letter-spacing:-3.468353pt;}
.ls12_c01115{letter-spacing:-3.403213pt;}
.ls13_c01115{letter-spacing:-3.304000pt;}
.ls6_c01115{letter-spacing:-2.774820pt;}
.ls1c_c01115{letter-spacing:-2.772000pt;}
.ls5_c01115{letter-spacing:-2.639000pt;}
.ls14_c01115{letter-spacing:-2.080600pt;}
.ls19_c01115{letter-spacing:-2.078300pt;}
.ls16_c01115{letter-spacing:-1.997333pt;}
.lse_c01115{letter-spacing:-1.981700pt;}
.ls8_c01115{letter-spacing:-1.387067pt;}
.ls7_c01115{letter-spacing:-1.383153pt;}
.ls21_c01115{letter-spacing:-1.346667pt;}
.ls2_c01115{letter-spacing:-1.323700pt;}
.ls9_c01115{letter-spacing:-0.693533pt;}
.ls1_c01115{letter-spacing:-0.658000pt;}
.ls4_c01115{letter-spacing:0.000000pt;}
.ls20_c01115{letter-spacing:0.728700pt;}
.lsd_c01115{letter-spacing:1.387067pt;}
.ls1f_c01115{letter-spacing:1.414400pt;}
.lsa_c01115{letter-spacing:1.504533pt;}
.ls0_c01115{letter-spacing:1.981700pt;}
.ls1d_c01115{letter-spacing:6.240000pt;}
.ws0_c01115{word-spacing:0.000000pt;}
._c_c01115{margin-left:-7.307868pt;}
._4_c01115{margin-left:-4.944000pt;}
._12_c01115{margin-left:-3.425417pt;}
._16_c01115{margin-left:-1.472174pt;}
._13_c01115{width:1.126479pt;}
._10_c01115{width:2.147542pt;}
._9_c01115{width:3.451559pt;}
._a_c01115{width:4.383763pt;}
._2_c01115{width:6.097600pt;}
._5_c01115{width:7.251200pt;}
._f_c01115{width:8.150926pt;}
._b_c01115{width:9.771868pt;}
._8_c01115{width:10.698419pt;}
._6_c01115{width:12.499583pt;}
._e_c01115{width:13.441747pt;}
._11_c01115{width:15.301264pt;}
._1_c01115{width:16.442677pt;}
._7_c01115{width:30.266125pt;}
._d_c01115{width:33.078781pt;}
._14_c01115{width:48.782762pt;}
._15_c01115{width:50.880893pt;}
._17_c01115{width:55.347764pt;}
._3_c01115{width:77.447049pt;}
._0_c01115{width:124.144538pt;}
.fs1_c01115{font-size:63.333333pt;}
.fsa_c01115{font-size:65.333333pt;}
.fsf_c01115{font-size:66.666667pt;}
.fse_c01115{font-size:67.333333pt;}
.fs8_c01115{font-size:68.000000pt;}
.fs2_c01115{font-size:68.666667pt;}
.fs4_c01115{font-size:69.333333pt;}
.fs0_c01115{font-size:70.000000pt;}
.fs3_c01115{font-size:71.333333pt;}
.fs7_c01115{font-size:72.666667pt;}
.fsd_c01115{font-size:73.333333pt;}
.fs5_c01115{font-size:74.000000pt;}
.fs9_c01115{font-size:74.666667pt;}
.fsc_c01115{font-size:78.000000pt;}
.fsb_c01115{font-size:85.333333pt;}
.fs6_c01115{font-size:94.666667pt;}
.y0_c01115{bottom:0.000000pt;}
.y1f_c01115{bottom:159.679733pt;}
.y1e_c01115{bottom:159.679773pt;}
.y1d_c01115{bottom:186.559693pt;}
.y1c_c01115{bottom:239.679200pt;}
.y1a_c01115{bottom:265.918453pt;}
.y1b_c01115{bottom:265.918920pt;}
.y19_c01115{bottom:292.800253pt;}
.y18_c01115{bottom:319.039373pt;}
.y17_c01115{bottom:372.479040pt;}
.y16_c01115{bottom:398.399453pt;}
.y15_c01115{bottom:425.600213pt;}
.y14_c01115{bottom:478.719720pt;}
.y13_c01115{bottom:505.280280pt;}
.y12_c01115{bottom:532.159560pt;}
.y11_c01115{bottom:584.958907pt;}
.yf_c01115{bottom:611.839707pt;}
.y10_c01115{bottom:611.840253pt;}
.ye_c01115{bottom:638.399453pt;}
.yd_c01115{bottom:638.400000pt;}
.yc_c01115{bottom:690.878907pt;}
.yb_c01115{bottom:717.760253pt;}
.y9_c01115{bottom:744.639707pt;}
.ya_c01115{bottom:744.640133pt;}
.y8_c01115{bottom:798.399827pt;}
.y7_c01115{bottom:825.279707pt;}
.y6_c01115{bottom:851.520120pt;}
.y5_c01115{bottom:903.999027pt;}
.y4_c01115{bottom:930.559573pt;}
.y2_c01115{bottom:957.759667pt;}
.y3_c01115{bottom:957.760253pt;}
.y1_c01115{bottom:1010.559000pt;}
.h2_c01115{height:63.828125pt;}
.h18_c01115{height:65.429688pt;}
.h17_c01115{height:66.051107pt;}
.ha_c01115{height:66.705078pt;}
.he_c01115{height:66.738281pt;}
.h3_c01115{height:67.359049pt;}
.h9_c01115{height:67.392578pt;}
.h5_c01115{height:68.013021pt;}
.h16_c01115{height:68.046875pt;}
.hc_c01115{height:68.140625pt;}
.h1_c01115{height:68.701172pt;}
.h4_c01115{height:69.974935pt;}
.hf_c01115{height:70.009766pt;}
.h13_c01115{height:70.546875pt;}
.h12_c01115{height:71.318359pt;}
.h8_c01115{height:71.815104pt;}
.h10_c01115{height:71.890625pt;}
.h15_c01115{height:71.936849pt;}
.hd_c01115{height:72.312500pt;}
.h6_c01115{height:73.132813pt;}
.hb_c01115{height:73.791667pt;}
.h14_c01115{height:77.085938pt;}
.h11_c01115{height:89.000000pt;}
.h7_c01115{height:98.734375pt;}
.h0_c01115{height:1122.666667pt;}
.w0_c01115{width:793.333333pt;}
.x0_c01115{left:0.000000pt;}
.x1e_c01115{left:119.359867pt;}
.x12_c01115{left:120.638667pt;}
.xc_c01115{left:121.599613pt;}
.x4_c01115{left:122.559067pt;}
.x1_c01115{left:123.839333pt;}
.x29_c01115{left:141.758813pt;}
.x26_c01115{left:149.119613pt;}
.x1d_c01115{left:150.399867pt;}
.xd_c01115{left:166.079613pt;}
.x2a_c01115{left:167.679200pt;}
.x13_c01115{left:174.719200pt;}
.x1a_c01115{left:188.159200pt;}
.x2_c01115{left:189.439453pt;}
.x14_c01115{left:191.679200pt;}
.x3_c01115{left:203.198667pt;}
.x1b_c01115{left:207.039587pt;}
.x10_c01115{left:223.678667pt;}
.x24_c01115{left:225.919867pt;}
.x11_c01115{left:236.799333pt;}
.x5_c01115{left:238.079587pt;}
.x25_c01115{left:246.399867pt;}
.x2d_c01115{left:248.318787pt;}
.x1f_c01115{left:252.799867pt;}
.x15_c01115{left:256.960000pt;}
.x6_c01115{left:259.839867pt;}
.x1c_c01115{left:270.399867pt;}
.x18_c01115{left:279.999067pt;}
.x2e_c01115{left:286.719720pt;}
.x16_c01115{left:288.638667pt;}
.x19_c01115{left:298.879333pt;}
.x17_c01115{left:299.838933pt;}
.x20_c01115{left:300.799867pt;}
.x22_c01115{left:304.960000pt;}
.x23_c01115{left:317.119587pt;}
.x21_c01115{left:329.598680pt;}
.x2f_c01115{left:347.198693pt;}
.x31_c01115{left:357.118693pt;}
.x7_c01115{left:362.239707pt;}
.x32_c01115{left:369.279707pt;}
.x30_c01115{left:375.039587pt;}
.x8_c01115{left:383.679200pt;}
.xe_c01115{left:391.359333pt;}
.x9_c01115{left:426.559573pt;}
.x2b_c01115{left:451.199707pt;}
.xa_c01115{left:460.798787pt;}
.xb_c01115{left:473.598680pt;}
.x2c_c01115{left:495.358933pt;}
.xf_c01115{left:511.999467pt;}
.x27_c01115{left:588.799840pt;}
.x28_c01115{left:626.239707pt;}
}





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

.ir_c01116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_42071d2e0f497094af689ce1.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01116;src:url('chunks/assets/font_3cebbc5d246470768c890ac3.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01116;src:url('chunks/assets/font_f07ab8a90d94a652e9a454a2.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01116;src:url('chunks/assets/font_6908c56a8ea955ed102936f9.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01116;src:url('chunks/assets/font_d6e93a043efd5c18e23be99f.woff2')format("woff");}.ff5_c01116{font-family:ff5_c01116;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01116;src:url('chunks/assets/font_efb4b51b1196c2e66908eaa7.woff2')format("woff");}.ff6_c01116{font-family:ff6_c01116;line-height:1.364746;font-style:normal;font-weight: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_c01116;src:url('chunks/assets/font_ddcd80356e8788ba8c604362.woff2')format("woff");}.ff7_c01116{font-family:ff7_c01116;line-height:1.432129;font-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_c01116{transform:matrix(0.070312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070312,0.000000,0.000000,0.250000,0,0);}
.m8_c01116{transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206140,0.000000,0.000000,0.250000,0,0);}
.ma_c01116{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m9_c01116{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.me_c01116{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m11_c01116{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m17_c01116{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m7_c01116{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m13_c01116{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m2_c01116{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m1_c01116{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m5_c01116{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mf_c01116{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m10_c01116{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m18_c01116{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.md_c01116{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m4_c01116{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m15_c01116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01116{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m3_c01116{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m0_c01116{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m14_c01116{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.mc_c01116{transform:matrix(0.317010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317010,0.000000,0.000000,0.250000,0,0);}
.m12_c01116{transform:matrix(0.538462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538462,0.000000,0.000000,0.250000,0,0);}
.mb_c01116{transform:matrix(0.910112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910112,0.000000,0.000000,0.250000,0,0);}
.v0_c01116{vertical-align:0.000000px;}
.ls17_c01116{letter-spacing:-11.239875px;}
.ls10_c01116{letter-spacing:-10.003500px;}
.ls9_c01116{letter-spacing:-9.853718px;}
.ls18_c01116{letter-spacing:-6.685875px;}
.ls3_c01116{letter-spacing:-5.196713px;}
.ls15_c01116{letter-spacing:-4.456463px;}
.ls21_c01116{letter-spacing:-4.420800px;}
.ls1f_c01116{letter-spacing:-4.053428px;}
.ls1b_c01116{letter-spacing:-3.932175px;}
.ls8_c01116{letter-spacing:-3.717000px;}
.ls14_c01116{letter-spacing:-3.242903px;}
.ls16_c01116{letter-spacing:-3.083850px;}
.lsb_c01116{letter-spacing:-2.968875px;}
.lse_c01116{letter-spacing:-2.431575px;}
.lsa_c01116{letter-spacing:-2.362500px;}
.ls1c_c01116{letter-spacing:-2.338088px;}
.lsc_c01116{letter-spacing:-2.229413px;}
.ls6_c01116{letter-spacing:-2.226000px;}
.ls7_c01116{letter-spacing:-1.621050px;}
.ls25_c01116{letter-spacing:-1.555200px;}
.ls12_c01116{letter-spacing:-1.489163px;}
.ls1d_c01116{letter-spacing:-0.840068px;}
.ls5_c01116{letter-spacing:-0.810525px;}
.ls4_c01116{letter-spacing:-0.804173px;}
.ls11_c01116{letter-spacing:-0.740250px;}
.lsd_c01116{letter-spacing:0.000000px;}
.ls2_c01116{letter-spacing:0.810525px;}
.ls20_c01116{letter-spacing:0.811980px;}
.ls0_c01116{letter-spacing:1.489163px;}
.ls19_c01116{letter-spacing:1.551000px;}
.lsf_c01116{letter-spacing:1.653600px;}
.ls13_c01116{letter-spacing:1.716000px;}
.ls1e_c01116{letter-spacing:2.089328px;}
.ls22_c01116{letter-spacing:3.003000px;}
.ls24_c01116{letter-spacing:4.171500px;}
.ls1_c01116{letter-spacing:5.672873px;}
.ls23_c01116{letter-spacing:5.942408px;}
.ls1a_c01116{letter-spacing:13.712400px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01116{word-spacing:0.000000px;}
._10_c01116{margin-left:-3.959161px;}
._11_c01116{margin-left:-2.363347px;}
._a_c01116{width:2.047692px;}
._7_c01116{width:4.314653px;}
._1_c01116{width:5.709167px;}
._0_c01116{width:7.294968px;}
._9_c01116{width:9.087350px;}
._5_c01116{width:10.773535px;}
._2_c01116{width:12.075422px;}
._6_c01116{width:13.489786px;}
._4_c01116{width:15.763804px;}
._c_c01116{width:16.978084px;}
._e_c01116{width:18.283729px;}
._d_c01116{width:19.829903px;}
._b_c01116{width:21.179323px;}
._3_c01116{width:22.388878px;}
._8_c01116{width:24.454698px;}
._f_c01116{width:25.874086px;}
._12_c01116{width:28.991590px;}
.fc0_c01116{color:transparent;}
.fse_c01116{font-size:9.750000px;}
.fsa_c01116{font-size:66.000000px;}
.fsf_c01116{font-size:72.000000px;}
.fs9_c01116{font-size:72.750000px;}
.fs4_c01116{font-size:74.250000px;}
.fsd_c01116{font-size:75.750000px;}
.fs1_c01116{font-size:77.250000px;}
.fsb_c01116{font-size:78.000000px;}
.fs0_c01116{font-size:78.750000px;}
.fs3_c01116{font-size:79.500000px;}
.fs2_c01116{font-size:80.250000px;}
.fs10_c01116{font-size:81.000000px;}
.fsc_c01116{font-size:81.750000px;}
.fs7_c01116{font-size:82.500000px;}
.fs6_c01116{font-size:85.500000px;}
.fs5_c01116{font-size:96.000000px;}
.fs8_c01116{font-size:133.500000px;}
.y0_c01116{bottom:0.000000px;}
.y19_c01116{bottom:181.800150px;}
.y18_c01116{bottom:181.800240px;}
.y17_c01116{bottom:211.679970px;}
.y16_c01116{bottom:271.081035px;}
.y15_c01116{bottom:301.320120px;}
.y13_c01116{bottom:331.198905px;}
.y14_c01116{bottom:331.199850px;}
.y12_c01116{bottom:510.839535px;}
.y11_c01116{bottom:540.000000px;}
.y10_c01116{bottom:570.959970px;}
.yf_c01116{bottom:630.001050px;}
.ye_c01116{bottom:659.520720px;}
.yd_c01116{bottom:689.760720px;}
.yc_c01116{bottom:749.520270px;}
.yb_c01116{bottom:751.680720px;}
.ya_c01116{bottom:779.401890px;}
.y9_c01116{bottom:811.081050px;}
.y8_c01116{bottom:869.759490px;}
.y7_c01116{bottom:899.280855px;}
.y6_c01116{bottom:929.880270px;}
.y5_c01116{bottom:988.921140px;}
.y4_c01116{bottom:1018.440855px;}
.y3_c01116{bottom:1048.319820px;}
.y2_c01116{bottom:1108.440315px;}
.y1_c01116{bottom:1137.959925px;}
.h11_c01116{height:10.168945px;}
.hd_c01116{height:64.743164px;}
.h13_c01116{height:75.093750px;}
.h2_c01116{height:75.778931px;}
.hc_c01116{height:75.875977px;}
.he_c01116{height:76.514648px;}
.h12_c01116{height:76.552734px;}
.h1_c01116{height:77.288818px;}
.h5_c01116{height:77.440430px;}
.h8_c01116{height:77.986084px;}
.h4_c01116{height:78.024902px;}
.h14_c01116{height:78.609375px;}
.h3_c01116{height:78.721802px;}
.h17_c01116{height:78.760986px;}
.h10_c01116{height:79.004883px;}
.h6_c01116{height:79.365234px;}
.h16_c01116{height:79.497070px;}
.h15_c01116{height:80.193237px;}
.ha_c01116{height:80.928955px;}
.hf_c01116{height:82.388672px;}
.h9_c01116{height:84.498047px;}
.h7_c01116{height:100.125000px;}
.hb_c01116{height:139.236328px;}
.h0_c01116{height:1263.000000px;}
.w0_c01116{width:892.500000px;}
.x0_c01116{left:0.000000px;}
.x9_c01116{left:108.359250px;}
.x19_c01116{left:136.799565px;}
.xa_c01116{left:137.878950px;}
.x1_c01116{left:139.678500px;}
.x2_c01116{left:164.519685px;}
.x8_c01116{left:172.439715px;}
.x16_c01116{left:191.158785px;}
.x3_c01116{left:199.439685px;}
.x1c_c01116{left:201.959400px;}
.xb_c01116{left:223.918350px;}
.x1d_c01116{left:227.519100px;}
.x14_c01116{left:236.518635px;}
.x23_c01116{left:238.319850px;}
.x24_c01116{left:253.439685px;}
.x1e_c01116{left:261.359850px;}
.x17_c01116{left:265.319850px;}
.x15_c01116{left:267.478635px;}
.x1a_c01116{left:269.639100px;}
.x4_c01116{left:271.438635px;}
.xe_c01116{left:287.278800px;}
.x1f_c01116{left:290.159385px;}
.x5_c01116{left:294.478635px;}
.x18_c01116{left:296.639100px;}
.xf_c01116{left:319.679100px;}
.x10_c01116{left:324.000000px;}
.x1b_c01116{left:326.878950px;}
.xc_c01116{left:331.559100px;}
.x11_c01116{left:347.399235px;}
.xd_c01116{left:356.039385px;}
.x20_c01116{left:381.958350px;}
.x12_c01116{left:400.319820px;}
.x21_c01116{left:402.478635px;}
.x13_c01116{left:415.798920px;}
.x22_c01116{left:434.878920px;}
.x6_c01116{left:517.678530px;}
.x7_c01116{left:567.359250px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls17_c01116{letter-spacing:-9.991000pt;}
.ls10_c01116{letter-spacing:-8.892000pt;}
.ls9_c01116{letter-spacing:-8.758860pt;}
.ls18_c01116{letter-spacing:-5.943000pt;}
.ls3_c01116{letter-spacing:-4.619300pt;}
.ls15_c01116{letter-spacing:-3.961300pt;}
.ls21_c01116{letter-spacing:-3.929600pt;}
.ls1f_c01116{letter-spacing:-3.603047pt;}
.ls1b_c01116{letter-spacing:-3.495267pt;}
.ls8_c01116{letter-spacing:-3.304000pt;}
.ls14_c01116{letter-spacing:-2.882580pt;}
.ls16_c01116{letter-spacing:-2.741200pt;}
.lsb_c01116{letter-spacing:-2.639000pt;}
.lse_c01116{letter-spacing:-2.161400pt;}
.lsa_c01116{letter-spacing:-2.100000pt;}
.ls1c_c01116{letter-spacing:-2.078300pt;}
.lsc_c01116{letter-spacing:-1.981700pt;}
.ls6_c01116{letter-spacing:-1.978667pt;}
.ls7_c01116{letter-spacing:-1.440933pt;}
.ls25_c01116{letter-spacing:-1.382400pt;}
.ls12_c01116{letter-spacing:-1.323700pt;}
.ls1d_c01116{letter-spacing:-0.746727pt;}
.ls5_c01116{letter-spacing:-0.720467pt;}
.ls4_c01116{letter-spacing:-0.714820pt;}
.ls11_c01116{letter-spacing:-0.658000pt;}
.lsd_c01116{letter-spacing:0.000000pt;}
.ls2_c01116{letter-spacing:0.720467pt;}
.ls20_c01116{letter-spacing:0.721760pt;}
.ls0_c01116{letter-spacing:1.323700pt;}
.ls19_c01116{letter-spacing:1.378667pt;}
.lsf_c01116{letter-spacing:1.469867pt;}
.ls13_c01116{letter-spacing:1.525333pt;}
.ls1e_c01116{letter-spacing:1.857180pt;}
.ls22_c01116{letter-spacing:2.669333pt;}
.ls24_c01116{letter-spacing:3.708000pt;}
.ls1_c01116{letter-spacing:5.042553pt;}
.ls23_c01116{letter-spacing:5.282140pt;}
.ls1a_c01116{letter-spacing:12.188800pt;}
.ws0_c01116{word-spacing:0.000000pt;}
._10_c01116{margin-left:-3.519254pt;}
._11_c01116{margin-left:-2.100753pt;}
._a_c01116{width:1.820171pt;}
._7_c01116{width:3.835247pt;}
._1_c01116{width:5.074815pt;}
._0_c01116{width:6.484416pt;}
._9_c01116{width:8.077644pt;}
._5_c01116{width:9.576475pt;}
._2_c01116{width:10.733708pt;}
._6_c01116{width:11.990921pt;}
._4_c01116{width:14.012270pt;}
._c_c01116{width:15.091630pt;}
._e_c01116{width:16.252204pt;}
._d_c01116{width:17.626580pt;}
._b_c01116{width:18.826065pt;}
._3_c01116{width:19.901225pt;}
._8_c01116{width:21.737509pt;}
._f_c01116{width:22.999188pt;}
._12_c01116{width:25.770302pt;}
.fse_c01116{font-size:8.666667pt;}
.fsa_c01116{font-size:58.666667pt;}
.fsf_c01116{font-size:64.000000pt;}
.fs9_c01116{font-size:64.666667pt;}
.fs4_c01116{font-size:66.000000pt;}
.fsd_c01116{font-size:67.333333pt;}
.fs1_c01116{font-size:68.666667pt;}
.fsb_c01116{font-size:69.333333pt;}
.fs0_c01116{font-size:70.000000pt;}
.fs3_c01116{font-size:70.666667pt;}
.fs2_c01116{font-size:71.333333pt;}
.fs10_c01116{font-size:72.000000pt;}
.fsc_c01116{font-size:72.666667pt;}
.fs7_c01116{font-size:73.333333pt;}
.fs6_c01116{font-size:76.000000pt;}
.fs5_c01116{font-size:85.333333pt;}
.fs8_c01116{font-size:118.666667pt;}
.y0_c01116{bottom:0.000000pt;}
.y19_c01116{bottom:161.600133pt;}
.y18_c01116{bottom:161.600213pt;}
.y17_c01116{bottom:188.159973pt;}
.y16_c01116{bottom:240.960920pt;}
.y15_c01116{bottom:267.840107pt;}
.y13_c01116{bottom:294.399027pt;}
.y14_c01116{bottom:294.399867pt;}
.y12_c01116{bottom:454.079587pt;}
.y11_c01116{bottom:480.000000pt;}
.y10_c01116{bottom:507.519973pt;}
.yf_c01116{bottom:560.000933pt;}
.ye_c01116{bottom:586.240640pt;}
.yd_c01116{bottom:613.120640pt;}
.yc_c01116{bottom:666.240240pt;}
.yb_c01116{bottom:668.160640pt;}
.ya_c01116{bottom:692.801680pt;}
.y9_c01116{bottom:720.960933pt;}
.y8_c01116{bottom:773.119547pt;}
.y7_c01116{bottom:799.360760pt;}
.y6_c01116{bottom:826.560240pt;}
.y5_c01116{bottom:879.041013pt;}
.y4_c01116{bottom:905.280760pt;}
.y3_c01116{bottom:931.839840pt;}
.y2_c01116{bottom:985.280280pt;}
.y1_c01116{bottom:1011.519933pt;}
.h11_c01116{height:9.039062pt;}
.hd_c01116{height:57.549479pt;}
.h13_c01116{height:66.750000pt;}
.h2_c01116{height:67.359049pt;}
.hc_c01116{height:67.445312pt;}
.he_c01116{height:68.013021pt;}
.h12_c01116{height:68.046875pt;}
.h1_c01116{height:68.701172pt;}
.h5_c01116{height:68.835938pt;}
.h8_c01116{height:69.320964pt;}
.h4_c01116{height:69.355469pt;}
.h14_c01116{height:69.875000pt;}
.h3_c01116{height:69.974935pt;}
.h17_c01116{height:70.009766pt;}
.h10_c01116{height:70.226562pt;}
.h6_c01116{height:70.546875pt;}
.h16_c01116{height:70.664062pt;}
.h15_c01116{height:71.282878pt;}
.ha_c01116{height:71.936849pt;}
.hf_c01116{height:73.234375pt;}
.h9_c01116{height:75.109375pt;}
.h7_c01116{height:89.000000pt;}
.hb_c01116{height:123.765625pt;}
.h0_c01116{height:1122.666667pt;}
.w0_c01116{width:793.333333pt;}
.x0_c01116{left:0.000000pt;}
.x9_c01116{left:96.319333pt;}
.x19_c01116{left:121.599613pt;}
.xa_c01116{left:122.559067pt;}
.x1_c01116{left:124.158667pt;}
.x2_c01116{left:146.239720pt;}
.x8_c01116{left:153.279747pt;}
.x16_c01116{left:169.918920pt;}
.x3_c01116{left:177.279720pt;}
.x1c_c01116{left:179.519467pt;}
.xb_c01116{left:199.038533pt;}
.x1d_c01116{left:202.239200pt;}
.x14_c01116{left:210.238787pt;}
.x23_c01116{left:211.839867pt;}
.x24_c01116{left:225.279720pt;}
.x1e_c01116{left:232.319867pt;}
.x17_c01116{left:235.839867pt;}
.x15_c01116{left:237.758787pt;}
.x1a_c01116{left:239.679200pt;}
.x4_c01116{left:241.278787pt;}
.xe_c01116{left:255.358933pt;}
.x1f_c01116{left:257.919453pt;}
.x5_c01116{left:261.758787pt;}
.x18_c01116{left:263.679200pt;}
.xf_c01116{left:284.159200pt;}
.x10_c01116{left:288.000000pt;}
.x1b_c01116{left:290.559067pt;}
.xc_c01116{left:294.719200pt;}
.x11_c01116{left:308.799320pt;}
.xd_c01116{left:316.479453pt;}
.x20_c01116{left:339.518533pt;}
.x12_c01116{left:355.839840pt;}
.x21_c01116{left:357.758787pt;}
.x13_c01116{left:369.599040pt;}
.x22_c01116{left:386.559040pt;}
.x6_c01116{left:460.158693pt;}
.x7_c01116{left:504.319333pt;}
}





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

.ir_c01117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_2ff5732e55f584fff826cf11.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01117;src:url('chunks/assets/font_98f0936506471da3cc2aca79.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01117;src:url('chunks/assets/font_3795e348d23c1e636230818d.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01117;src:url('chunks/assets/font_a2d8a9f3428ff075837bbe5d.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01117;src:url('chunks/assets/font_2ba55f10604c201cc5f9372b.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01117;src:url('chunks/assets/font_74e878b7e5a1fc563bb30f6a.woff2')format("woff");}.ff6_c01117{font-family:ff6_c01117;line-height:1.364746;font-style:normal;font-weight: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_c01117;src:url('chunks/assets/font_0b9b80ccd52767d169f9e66f.woff2')format("woff");}.ff7_c01117{font-family:ff7_c01117;line-height:1.284180;font-style:normal;font-weight: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_c01117;src:url('chunks/assets/font_dfb419dbb07fd6825e835802.woff2')format("woff");}.ff8_c01117{font-family:ff8_c01117;line-height:1.432129;font-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_c01117{transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);}
.m1b_c01117{transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);}
.md_c01117{transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);}
.m6_c01117{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c01117{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m1_c01117{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb_c01117{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.me_c01117{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m3_c01117{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m8_c01117{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.ma_c01117{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m0_c01117{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m5_c01117{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m17_c01117{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m7_c01117{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m4_c01117{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.mc_c01117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01117{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m19_c01117{transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252336,0.000000,0.000000,0.250000,0,0);}
.m2_c01117{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1a_c01117{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m10_c01117{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m11_c01117{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.m9_c01117{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m13_c01117{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m14_c01117{transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);}
.m16_c01117{transform:matrix(0.304455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304455,0.000000,0.000000,0.250000,0,0);}
.m15_c01117{transform:matrix(0.341584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341584,0.000000,0.000000,0.250000,0,0);}
.v0_c01117{vertical-align:0.000000px;}
.ls3_c01117{letter-spacing:-18.000000px;}
.ls26_c01117{letter-spacing:-17.094840px;}
.lse_c01117{letter-spacing:-11.773913px;}
.ls11_c01117{letter-spacing:-9.711900px;}
.ls1f_c01117{letter-spacing:-8.681850px;}
.ls8_c01117{letter-spacing:-6.940575px;}
.ls28_c01117{letter-spacing:-6.473783px;}
.ls20_c01117{letter-spacing:-6.269513px;}
.ls1e_c01117{letter-spacing:-5.999633px;}
.ls17_c01117{letter-spacing:-5.890500px;}
.ls1a_c01117{letter-spacing:-5.666093px;}
.ls18_c01117{letter-spacing:-5.602800px;}
.lsf_c01117{letter-spacing:-5.150250px;}
.ls13_c01117{letter-spacing:-4.875000px;}
.lsb_c01117{letter-spacing:-4.418663px;}
.ls10_c01117{letter-spacing:-4.046625px;}
.ls6_c01117{letter-spacing:-3.678413px;}
.ls29_c01117{letter-spacing:-3.651375px;}
.ls21_c01117{letter-spacing:-3.556575px;}
.ls19_c01117{letter-spacing:-3.237300px;}
.ls25_c01117{letter-spacing:-3.179205px;}
.lsa_c01117{letter-spacing:-2.945250px;}
.ls22_c01117{letter-spacing:-2.695050px;}
.lsc_c01117{letter-spacing:-2.427158px;}
.ls15_c01117{letter-spacing:-2.251463px;}
.ls7_c01117{letter-spacing:-2.205000px;}
.ls12_c01117{letter-spacing:-2.149875px;}
.ls23_c01117{letter-spacing:-1.643775px;}
.ls5_c01117{letter-spacing:-1.635000px;}
.ls1_c01117{letter-spacing:-1.619468px;}
.lsd_c01117{letter-spacing:-1.545300px;}
.ls4_c01117{letter-spacing:-1.473413px;}
.ls1d_c01117{letter-spacing:-1.456088px;}
.ls16_c01117{letter-spacing:-0.809325px;}
.ls27_c01117{letter-spacing:-0.745523px;}
.ls14_c01117{letter-spacing:-0.731588px;}
.ls2_c01117{letter-spacing:0.000000px;}
.ls24_c01117{letter-spacing:0.613575px;}
.ls1b_c01117{letter-spacing:3.366765px;}
.ls9_c01117{letter-spacing:4.828125px;}
.ls1c_c01117{letter-spacing:8.901090px;}
.ls0_c01117{letter-spacing:9.711900px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01117{word-spacing:0.000000px;}
._c_c01117{margin-left:-22.808477px;}
._3_c01117{margin-left:-2.062750px;}
._e_c01117{margin-left:-1.030050px;}
._0_c01117{width:1.152578px;}
._4_c01117{width:2.319606px;}
._6_c01117{width:4.061025px;}
._1_c01117{width:6.311748px;}
._5_c01117{width:8.378735px;}
._d_c01117{width:9.686780px;}
._f_c01117{width:11.111964px;}
._a_c01117{width:14.322195px;}
._7_c01117{width:15.631644px;}
._11_c01117{width:17.781183px;}
._b_c01117{width:20.258557px;}
._8_c01117{width:27.069163px;}
._9_c01117{width:33.002822px;}
._2_c01117{width:46.439727px;}
._10_c01117{width:49.977143px;}
.fc0_c01117{color:transparent;}
.fs7_c01117{font-size:70.500000px;}
.fsd_c01117{font-size:75.750000px;}
.fs5_c01117{font-size:76.500000px;}
.fs3_c01117{font-size:77.250000px;}
.fs6_c01117{font-size:78.000000px;}
.fs2_c01117{font-size:78.750000px;}
.fse_c01117{font-size:79.500000px;}
.fs4_c01117{font-size:80.250000px;}
.fs9_c01117{font-size:81.000000px;}
.fs0_c01117{font-size:81.750000px;}
.fsb_c01117{font-size:82.500000px;}
.fs8_c01117{font-size:84.000000px;}
.fsc_c01117{font-size:84.750000px;}
.fsa_c01117{font-size:86.250000px;}
.fs1_c01117{font-size:90.000000px;}
.y0_c01117{bottom:0.000000px;}
.y20_c01117{bottom:182.520315px;}
.y1e_c01117{bottom:212.759370px;}
.y1f_c01117{bottom:212.760150px;}
.y1d_c01117{bottom:272.160435px;}
.y1c_c01117{bottom:302.039385px;}
.y1a_c01117{bottom:331.919220px;}
.y1b_c01117{bottom:331.920000px;}
.y19_c01117{bottom:391.320285px;}
.y18_c01117{bottom:429.839535px;}
.y17_c01117{bottom:451.080000px;}
.y16_c01117{bottom:482.039985px;}
.y15_c01117{bottom:482.040075px;}
.y14_c01117{bottom:541.799520px;}
.y13_c01117{bottom:572.039385px;}
.y12_c01117{bottom:572.040030px;}
.y11_c01117{bottom:601.561365px;}
.y10_c01117{bottom:660.600135px;}
.yf_c01117{bottom:690.480885px;}
.ye_c01117{bottom:720.720750px;}
.yd_c01117{bottom:780.480285px;}
.yc_c01117{bottom:810.720150px;}
.yb_c01117{bottom:840.600810px;}
.ya_c01117{bottom:900.360255px;}
.y9_c01117{bottom:929.879970px;}
.y8_c01117{bottom:959.760675px;}
.y7_c01117{bottom:959.760825px;}
.y6_c01117{bottom:1019.520270px;}
.y4_c01117{bottom:1049.400840px;}
.y5_c01117{bottom:1049.400885px;}
.y2_c01117{bottom:1079.639850px;}
.y3_c01117{bottom:1079.640750px;}
.y1_c01117{bottom:1139.759490px;}
.ha_c01117{height:73.529297px;}
.h11_c01117{height:74.344482px;}
.hc_c01117{height:75.043213px;}
.h8_c01117{height:75.080566px;}
.h12_c01117{height:76.341797px;}
.h9_c01117{height:76.552734px;}
.h7_c01117{height:77.097656px;}
.h3_c01117{height:77.288818px;}
.h5_c01117{height:77.853516px;}
.h6_c01117{height:78.760986px;}
.hd_c01117{height:79.497070px;}
.h13_c01117{height:80.121094px;}
.h1_c01117{height:80.193237px;}
.h4_c01117{height:80.233154px;}
.h14_c01117{height:80.569336px;}
.hb_c01117{height:83.015625px;}
.h10_c01117{height:83.136108px;}
.hf_c01117{height:83.144531px;}
.he_c01117{height:85.239258px;}
.h2_c01117{height:88.945312px;}
.h0_c01117{height:1263.000000px;}
.w0_c01117{width:892.500000px;}
.x0_c01117{left:0.000000px;}
.xd_c01117{left:137.878950px;}
.x7_c01117{left:138.958395px;}
.x1_c01117{left:140.398665px;}
.x1f_c01117{left:163.799565px;}
.x21_c01117{left:165.599100px;}
.x25_c01117{left:199.078785px;}
.x2b_c01117{left:211.679100px;}
.x22_c01117{left:218.158785px;}
.x18_c01117{left:223.199850px;}
.x28_c01117{left:224.999400px;}
.x2c_c01117{left:226.798950px;}
.x8_c01117{left:230.038950px;}
.x26_c01117{left:231.838515px;}
.x13_c01117{left:237.238785px;}
.x2a_c01117{left:248.398635px;}
.x9_c01117{left:255.239250px;}
.x29_c01117{left:258.479235px;}
.x11_c01117{left:262.080000px;}
.x2_c01117{left:267.839535px;}
.xa_c01117{left:271.079385px;}
.x12_c01117{left:277.918350px;}
.xe_c01117{left:282.959400px;}
.x23_c01117{left:285.479235px;}
.x19_c01117{left:287.278800px;}
.x1a_c01117{left:312.838515px;}
.x3_c01117{left:314.278800px;}
.x1d_c01117{left:321.839535px;}
.x24_c01117{left:335.159850px;}
.x1b_c01117{left:340.919535px;}
.x27_c01117{left:348.478635px;}
.xf_c01117{left:354.599100px;}
.x1c_c01117{left:373.679100px;}
.x1e_c01117{left:378.359235px;}
.x10_c01117{left:385.199850px;}
.x16_c01117{left:388.439715px;}
.x4_c01117{left:390.598530px;}
.x14_c01117{left:406.438665px;}
.x5_c01117{left:411.479685px;}
.x17_c01117{left:431.639100px;}
.x15_c01117{left:439.918350px;}
.x6_c01117{left:443.878320px;}
.xb_c01117{left:471.959385px;}
.xc_c01117{left:486.718500px;}
.x20_c01117{left:631.798920px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls3_c01117{letter-spacing:-16.000000pt;}
.ls26_c01117{letter-spacing:-15.195413pt;}
.lse_c01117{letter-spacing:-10.465700pt;}
.ls11_c01117{letter-spacing:-8.632800pt;}
.ls1f_c01117{letter-spacing:-7.717200pt;}
.ls8_c01117{letter-spacing:-6.169400pt;}
.ls28_c01117{letter-spacing:-5.754473pt;}
.ls20_c01117{letter-spacing:-5.572900pt;}
.ls1e_c01117{letter-spacing:-5.333007pt;}
.ls17_c01117{letter-spacing:-5.236000pt;}
.ls1a_c01117{letter-spacing:-5.036527pt;}
.ls18_c01117{letter-spacing:-4.980267pt;}
.lsf_c01117{letter-spacing:-4.578000pt;}
.ls13_c01117{letter-spacing:-4.333333pt;}
.lsb_c01117{letter-spacing:-3.927700pt;}
.ls10_c01117{letter-spacing:-3.597000pt;}
.ls6_c01117{letter-spacing:-3.269700pt;}
.ls29_c01117{letter-spacing:-3.245667pt;}
.ls21_c01117{letter-spacing:-3.161400pt;}
.ls19_c01117{letter-spacing:-2.877600pt;}
.ls25_c01117{letter-spacing:-2.825960pt;}
.lsa_c01117{letter-spacing:-2.618000pt;}
.ls22_c01117{letter-spacing:-2.395600pt;}
.lsc_c01117{letter-spacing:-2.157473pt;}
.ls15_c01117{letter-spacing:-2.001300pt;}
.ls7_c01117{letter-spacing:-1.960000pt;}
.ls12_c01117{letter-spacing:-1.911000pt;}
.ls23_c01117{letter-spacing:-1.461133pt;}
.ls5_c01117{letter-spacing:-1.453333pt;}
.ls1_c01117{letter-spacing:-1.439527pt;}
.lsd_c01117{letter-spacing:-1.373600pt;}
.ls4_c01117{letter-spacing:-1.309700pt;}
.ls1d_c01117{letter-spacing:-1.294300pt;}
.ls16_c01117{letter-spacing:-0.719400pt;}
.ls27_c01117{letter-spacing:-0.662687pt;}
.ls14_c01117{letter-spacing:-0.650300pt;}
.ls2_c01117{letter-spacing:0.000000pt;}
.ls24_c01117{letter-spacing:0.545400pt;}
.ls1b_c01117{letter-spacing:2.992680pt;}
.ls9_c01117{letter-spacing:4.291667pt;}
.ls1c_c01117{letter-spacing:7.912080pt;}
.ls0_c01117{letter-spacing:8.632800pt;}
.ws0_c01117{word-spacing:0.000000pt;}
._c_c01117{margin-left:-20.274201pt;}
._3_c01117{margin-left:-1.833555pt;}
._e_c01117{margin-left:-0.915600pt;}
._0_c01117{width:1.024514pt;}
._4_c01117{width:2.061872pt;}
._6_c01117{width:3.609800pt;}
._1_c01117{width:5.610442pt;}
._5_c01117{width:7.447764pt;}
._d_c01117{width:8.610471pt;}
._f_c01117{width:9.877301pt;}
._a_c01117{width:12.730840pt;}
._7_c01117{width:13.894795pt;}
._11_c01117{width:15.805496pt;}
._b_c01117{width:18.007606pt;}
._8_c01117{width:24.061478pt;}
._9_c01117{width:29.335842pt;}
._2_c01117{width:41.279758pt;}
._10_c01117{width:44.424127pt;}
.fs7_c01117{font-size:62.666667pt;}
.fsd_c01117{font-size:67.333333pt;}
.fs5_c01117{font-size:68.000000pt;}
.fs3_c01117{font-size:68.666667pt;}
.fs6_c01117{font-size:69.333333pt;}
.fs2_c01117{font-size:70.000000pt;}
.fse_c01117{font-size:70.666667pt;}
.fs4_c01117{font-size:71.333333pt;}
.fs9_c01117{font-size:72.000000pt;}
.fs0_c01117{font-size:72.666667pt;}
.fsb_c01117{font-size:73.333333pt;}
.fs8_c01117{font-size:74.666667pt;}
.fsc_c01117{font-size:75.333333pt;}
.fsa_c01117{font-size:76.666667pt;}
.fs1_c01117{font-size:80.000000pt;}
.y0_c01117{bottom:0.000000pt;}
.y20_c01117{bottom:162.240280pt;}
.y1e_c01117{bottom:189.119440pt;}
.y1f_c01117{bottom:189.120133pt;}
.y1d_c01117{bottom:241.920387pt;}
.y1c_c01117{bottom:268.479453pt;}
.y1a_c01117{bottom:295.039307pt;}
.y1b_c01117{bottom:295.040000pt;}
.y19_c01117{bottom:347.840253pt;}
.y18_c01117{bottom:382.079587pt;}
.y17_c01117{bottom:400.960000pt;}
.y16_c01117{bottom:428.479987pt;}
.y15_c01117{bottom:428.480067pt;}
.y14_c01117{bottom:481.599573pt;}
.y13_c01117{bottom:508.479453pt;}
.y12_c01117{bottom:508.480027pt;}
.y11_c01117{bottom:534.721213pt;}
.y10_c01117{bottom:587.200120pt;}
.yf_c01117{bottom:613.760787pt;}
.ye_c01117{bottom:640.640667pt;}
.yd_c01117{bottom:693.760253pt;}
.yc_c01117{bottom:720.640133pt;}
.yb_c01117{bottom:747.200720pt;}
.ya_c01117{bottom:800.320227pt;}
.y9_c01117{bottom:826.559973pt;}
.y8_c01117{bottom:853.120600pt;}
.y7_c01117{bottom:853.120733pt;}
.y6_c01117{bottom:906.240240pt;}
.y4_c01117{bottom:932.800747pt;}
.y5_c01117{bottom:932.800787pt;}
.y2_c01117{bottom:959.679867pt;}
.y3_c01117{bottom:959.680667pt;}
.y1_c01117{bottom:1013.119547pt;}
.ha_c01117{height:65.359375pt;}
.h11_c01117{height:66.083984pt;}
.hc_c01117{height:66.705078pt;}
.h8_c01117{height:66.738281pt;}
.h12_c01117{height:67.859375pt;}
.h9_c01117{height:68.046875pt;}
.h7_c01117{height:68.531250pt;}
.h3_c01117{height:68.701172pt;}
.h5_c01117{height:69.203125pt;}
.h6_c01117{height:70.009766pt;}
.hd_c01117{height:70.664062pt;}
.h13_c01117{height:71.218750pt;}
.h1_c01117{height:71.282878pt;}
.h4_c01117{height:71.318359pt;}
.h14_c01117{height:71.617188pt;}
.hb_c01117{height:73.791667pt;}
.h10_c01117{height:73.898763pt;}
.hf_c01117{height:73.906250pt;}
.he_c01117{height:75.768229pt;}
.h2_c01117{height:79.062500pt;}
.h0_c01117{height:1122.666667pt;}
.w0_c01117{width:793.333333pt;}
.x0_c01117{left:0.000000pt;}
.xd_c01117{left:122.559067pt;}
.x7_c01117{left:123.518573pt;}
.x1_c01117{left:124.798813pt;}
.x1f_c01117{left:145.599613pt;}
.x21_c01117{left:147.199200pt;}
.x25_c01117{left:176.958920pt;}
.x2b_c01117{left:188.159200pt;}
.x22_c01117{left:193.918920pt;}
.x18_c01117{left:198.399867pt;}
.x28_c01117{left:199.999467pt;}
.x2c_c01117{left:201.599067pt;}
.x8_c01117{left:204.479067pt;}
.x26_c01117{left:206.078680pt;}
.x13_c01117{left:210.878920pt;}
.x2a_c01117{left:220.798787pt;}
.x9_c01117{left:226.879333pt;}
.x29_c01117{left:229.759320pt;}
.x11_c01117{left:232.960000pt;}
.x2_c01117{left:238.079587pt;}
.xa_c01117{left:240.959453pt;}
.x12_c01117{left:247.038533pt;}
.xe_c01117{left:251.519467pt;}
.x23_c01117{left:253.759320pt;}
.x19_c01117{left:255.358933pt;}
.x1a_c01117{left:278.078680pt;}
.x3_c01117{left:279.358933pt;}
.x1d_c01117{left:286.079587pt;}
.x24_c01117{left:297.919867pt;}
.x1b_c01117{left:303.039587pt;}
.x27_c01117{left:309.758787pt;}
.xf_c01117{left:315.199200pt;}
.x1c_c01117{left:332.159200pt;}
.x1e_c01117{left:336.319320pt;}
.x10_c01117{left:342.399867pt;}
.x16_c01117{left:345.279747pt;}
.x4_c01117{left:347.198693pt;}
.x14_c01117{left:361.278813pt;}
.x5_c01117{left:365.759720pt;}
.x17_c01117{left:383.679200pt;}
.x15_c01117{left:391.038533pt;}
.x6_c01117{left:394.558507pt;}
.xb_c01117{left:419.519453pt;}
.xc_c01117{left:432.638667pt;}
.x20_c01117{left:561.599040pt;}
}





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

.ir_c01118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_9157c3f8aa6ac21d559e52b9.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01118;src:url('chunks/assets/font_83afc042f634f3cb35f395f9.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01118;src:url('chunks/assets/font_eb0dc963768a420038cab7bb.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01118;src:url('chunks/assets/font_0b09e4bcd4e35fe72cf043c4.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:1.432129;font-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_c01118{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m1b_c01118{transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210648,0.000000,0.000000,0.250000,0,0);}
.m1e_c01118{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m16_c01118{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.md_c01118{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.ma_c01118{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m20_c01118{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m10_c01118{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m6_c01118{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m21_c01118{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m3_c01118{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc_c01118{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m4_c01118{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m13_c01118{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m19_c01118{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m14_c01118{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m11_c01118{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m2_c01118{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1a_c01118{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m18_c01118{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m1d_c01118{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.mb_c01118{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1_c01118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01118{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m0_c01118{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.me_c01118{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c01118{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.m5_c01118{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m17_c01118{transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265217,0.000000,0.000000,0.250000,0,0);}
.m7_c01118{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m12_c01118{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m1f_c01118{transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291262,0.000000,0.000000,0.250000,0,0);}
.m8_c01118{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.mf_c01118{transform:matrix(0.318807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318807,0.000000,0.000000,0.250000,0,0);}
.v0_c01118{vertical-align:0.000000px;}
.ls24_c01118{letter-spacing:-13.825013px;}
.ls1f_c01118{letter-spacing:-7.434045px;}
.ls21_c01118{letter-spacing:-7.431075px;}
.ls2a_c01118{letter-spacing:-7.131600px;}
.ls14_c01118{letter-spacing:-6.686745px;}
.lse_c01118{letter-spacing:-6.271200px;}
.ls22_c01118{letter-spacing:-5.946600px;}
.ls1d_c01118{letter-spacing:-5.522400px;}
.ls7_c01118{letter-spacing:-5.513288px;}
.lsf_c01118{letter-spacing:-5.199300px;}
.ls23_c01118{letter-spacing:-5.062500px;}
.ls1e_c01118{letter-spacing:-4.677750px;}
.ls29_c01118{letter-spacing:-4.503675px;}
.ls15_c01118{letter-spacing:-4.460745px;}
.lsb_c01118{letter-spacing:-4.261275px;}
.ls1b_c01118{letter-spacing:-4.120200px;}
.ls19_c01118{letter-spacing:-3.932250px;}
.ls18_c01118{letter-spacing:-3.787800px;}
.ls4_c01118{letter-spacing:-3.751800px;}
.ls1a_c01118{letter-spacing:-3.717000px;}
.ls6_c01118{letter-spacing:-3.713445px;}
.ls11_c01118{letter-spacing:-3.576675px;}
.ls16_c01118{letter-spacing:-3.145800px;}
.ls1c_c01118{letter-spacing:-3.084600px;}
.lsa_c01118{letter-spacing:-3.003000px;}
.ls2_c01118{letter-spacing:-2.973300px;}
.ls8_c01118{letter-spacing:-2.359350px;}
.ls25_c01118{letter-spacing:-2.334998px;}
.ls3_c01118{letter-spacing:-2.226000px;}
.ls17_c01118{letter-spacing:-1.573703px;}
.ls27_c01118{letter-spacing:-1.510500px;}
.ls13_c01118{letter-spacing:-1.487445px;}
.lsd_c01118{letter-spacing:-0.794205px;}
.ls9_c01118{letter-spacing:-0.786450px;}
.ls20_c01118{letter-spacing:-0.772200px;}
.ls10_c01118{letter-spacing:-0.738555px;}
.lsc_c01118{letter-spacing:0.000000px;}
.ls1_c01118{letter-spacing:0.738555px;}
.ls0_c01118{letter-spacing:1.487445px;}
.ls5_c01118{letter-spacing:1.540800px;}
.ls12_c01118{letter-spacing:4.091948px;}
.ls28_c01118{letter-spacing:5.189625px;}
.ls26_c01118{letter-spacing:7.120710px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01118{word-spacing:0.000000px;}
._e_c01118{margin-left:-13.855215px;}
._6_c01118{margin-left:-7.845692px;}
._a_c01118{margin-left:-2.650032px;}
._4_c01118{width:1.820476px;}
._c_c01118{width:3.288115px;}
._2_c01118{width:4.483546px;}
._5_c01118{width:6.670124px;}
._8_c01118{width:9.053358px;}
._1_c01118{width:10.515739px;}
._0_c01118{width:12.202879px;}
._b_c01118{width:13.761197px;}
._f_c01118{width:15.108204px;}
._7_c01118{width:16.696954px;}
._d_c01118{width:17.786988px;}
._9_c01118{width:19.147335px;}
._11_c01118{width:20.269317px;}
._3_c01118{width:35.457267px;}
._10_c01118{width:39.998768px;}
.fc0_c01118{color:transparent;}
.fs9_c01118{font-size:62.250000px;}
.fs5_c01118{font-size:77.250000px;}
.fs1_c01118{font-size:78.000000px;}
.fs3_c01118{font-size:78.750000px;}
.fs0_c01118{font-size:79.500000px;}
.fs2_c01118{font-size:80.250000px;}
.fs7_c01118{font-size:81.000000px;}
.fs6_c01118{font-size:81.750000px;}
.fsb_c01118{font-size:82.500000px;}
.fsc_c01118{font-size:84.000000px;}
.fs8_c01118{font-size:86.250000px;}
.fs4_c01118{font-size:96.000000px;}
.fsa_c01118{font-size:115.500000px;}
.y0_c01118{bottom:0.000000px;}
.y1d_c01118{bottom:183.599700px;}
.y1c_c01118{bottom:214.200435px;}
.y1b_c01118{bottom:273.599100px;}
.y1a_c01118{bottom:303.118695px;}
.y19_c01118{bottom:332.998830px;}
.y18_c01118{bottom:392.759085px;}
.y17_c01118{bottom:422.639700px;}
.y16_c01118{bottom:433.799565px;}
.y14_c01118{bottom:452.519970px;}
.y15_c01118{bottom:452.520315px;}
.y13_c01118{bottom:513.359250px;}
.y12_c01118{bottom:543.239820px;}
.y10_c01118{bottom:572.758800px;}
.y11_c01118{bottom:572.759535px;}
.yf_c01118{bottom:602.279250px;}
.ye_c01118{bottom:662.040570px;}
.yd_c01118{bottom:691.919535px;}
.yc_c01118{bottom:721.800105px;}
.yb_c01118{bottom:781.559685px;}
.ya_c01118{bottom:811.799535px;}
.y9_c01118{bottom:842.039340px;}
.y8_c01118{bottom:901.798920px;}
.y7_c01118{bottom:932.040615px;}
.y6_c01118{bottom:932.041485px;}
.y5_c01118{bottom:961.919490px;}
.y4_c01118{bottom:1021.319820px;}
.y3_c01118{bottom:1051.200435px;}
.y2_c01118{bottom:1081.079400px;}
.y1_c01118{bottom:1140.479640px;}
.hf_c01118{height:61.094971px;}
.h9_c01118{height:75.816650px;}
.h7_c01118{height:76.552734px;}
.hc_c01118{height:77.288818px;}
.h1_c01118{height:78.024902px;}
.h2_c01118{height:78.609375px;}
.h5_c01118{height:78.721802px;}
.h4_c01118{height:79.365234px;}
.hd_c01118{height:79.497070px;}
.h6_c01118{height:80.121094px;}
.ha_c01118{height:80.193237px;}
.hb_c01118{height:80.233154px;}
.h3_c01118{height:80.876953px;}
.h11_c01118{height:80.969238px;}
.h12_c01118{height:82.400391px;}
.he_c01118{height:89.956055px;}
.h8_c01118{height:100.125000px;}
.h10_c01118{height:120.462891px;}
.h0_c01118{height:1263.000000px;}
.w0_c01118{width:892.500000px;}
.x0_c01118{left:0.000000px;}
.x4_c01118{left:133.198785px;}
.x1_c01118{left:134.279850px;}
.xa_c01118{left:135.718305px;}
.x21_c01118{left:143.279250px;}
.x1e_c01118{left:155.518665px;}
.x5_c01118{left:157.319850px;}
.x14_c01118{left:175.679700px;}
.x22_c01118{left:177.120000px;}
.xf_c01118{left:196.918350px;}
.x15_c01118{left:199.439685px;}
.x16_c01118{left:200.878350px;}
.x2a_c01118{left:212.758500px;}
.xc_c01118{left:216.359250px;}
.x11_c01118{left:220.319250px;}
.x17_c01118{left:222.479685px;}
.x2b_c01118{left:227.519100px;}
.x10_c01118{left:231.120000px;}
.x20_c01118{left:233.998950px;}
.x18_c01118{left:237.958950px;}
.x2_c01118{left:243.000000px;}
.xd_c01118{left:245.878950px;}
.x6_c01118{left:246.958350px;}
.x2c_c01118{left:250.559100px;}
.x29_c01118{left:253.439685px;}
.x7_c01118{left:270.359250px;}
.x12_c01118{left:275.759535px;}
.xe_c01118{left:278.279250px;}
.x3_c01118{left:280.078785px;}
.x24_c01118{left:305.279250px;}
.x13_c01118{left:307.078785px;}
.x25_c01118{left:329.039385px;}
.x23_c01118{left:352.079385px;}
.x19_c01118{left:362.519100px;}
.x8_c01118{left:367.199385px;}
.x1f_c01118{left:384.838950px;}
.x1a_c01118{left:388.798920px;}
.x9_c01118{left:390.239220px;}
.x1b_c01118{left:421.919535px;}
.x26_c01118{left:438.479685px;}
.xb_c01118{left:445.679670px;}
.x27_c01118{left:449.278800px;}
.x28_c01118{left:500.759085px;}
.x1c_c01118{left:588.958920px;}
.x1d_c01118{left:631.439670px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls24_c01118{letter-spacing:-12.288900pt;}
.ls1f_c01118{letter-spacing:-6.608040pt;}
.ls21_c01118{letter-spacing:-6.605400pt;}
.ls2a_c01118{letter-spacing:-6.339200pt;}
.ls14_c01118{letter-spacing:-5.943773pt;}
.lse_c01118{letter-spacing:-5.574400pt;}
.ls22_c01118{letter-spacing:-5.285867pt;}
.ls1d_c01118{letter-spacing:-4.908800pt;}
.ls7_c01118{letter-spacing:-4.900700pt;}
.lsf_c01118{letter-spacing:-4.621600pt;}
.ls23_c01118{letter-spacing:-4.500000pt;}
.ls1e_c01118{letter-spacing:-4.158000pt;}
.ls29_c01118{letter-spacing:-4.003267pt;}
.ls15_c01118{letter-spacing:-3.965107pt;}
.lsb_c01118{letter-spacing:-3.787800pt;}
.ls1b_c01118{letter-spacing:-3.662400pt;}
.ls19_c01118{letter-spacing:-3.495333pt;}
.ls18_c01118{letter-spacing:-3.366933pt;}
.ls4_c01118{letter-spacing:-3.334933pt;}
.ls1a_c01118{letter-spacing:-3.304000pt;}
.ls6_c01118{letter-spacing:-3.300840pt;}
.ls11_c01118{letter-spacing:-3.179267pt;}
.ls16_c01118{letter-spacing:-2.796267pt;}
.ls1c_c01118{letter-spacing:-2.741867pt;}
.lsa_c01118{letter-spacing:-2.669333pt;}
.ls2_c01118{letter-spacing:-2.642933pt;}
.ls8_c01118{letter-spacing:-2.097200pt;}
.ls25_c01118{letter-spacing:-2.075553pt;}
.ls3_c01118{letter-spacing:-1.978667pt;}
.ls17_c01118{letter-spacing:-1.398847pt;}
.ls27_c01118{letter-spacing:-1.342667pt;}
.ls13_c01118{letter-spacing:-1.322173pt;}
.lsd_c01118{letter-spacing:-0.705960pt;}
.ls9_c01118{letter-spacing:-0.699067pt;}
.ls20_c01118{letter-spacing:-0.686400pt;}
.ls10_c01118{letter-spacing:-0.656493pt;}
.lsc_c01118{letter-spacing:0.000000pt;}
.ls1_c01118{letter-spacing:0.656493pt;}
.ls0_c01118{letter-spacing:1.322173pt;}
.ls5_c01118{letter-spacing:1.369600pt;}
.ls12_c01118{letter-spacing:3.637287pt;}
.ls28_c01118{letter-spacing:4.613000pt;}
.ls26_c01118{letter-spacing:6.329520pt;}
.ws0_c01118{word-spacing:0.000000pt;}
._e_c01118{margin-left:-12.315747pt;}
._6_c01118{margin-left:-6.973948pt;}
._a_c01118{margin-left:-2.355584pt;}
._4_c01118{width:1.618201pt;}
._c_c01118{width:2.922769pt;}
._2_c01118{width:3.985374pt;}
._5_c01118{width:5.928999pt;}
._8_c01118{width:8.047429pt;}
._1_c01118{width:9.347324pt;}
._0_c01118{width:10.847003pt;}
._b_c01118{width:12.232175pt;}
._f_c01118{width:13.429515pt;}
._7_c01118{width:14.841737pt;}
._d_c01118{width:15.810656pt;}
._9_c01118{width:17.019854pt;}
._11_c01118{width:18.017171pt;}
._3_c01118{width:31.517571pt;}
._10_c01118{width:35.554461pt;}
.fs9_c01118{font-size:55.333333pt;}
.fs5_c01118{font-size:68.666667pt;}
.fs1_c01118{font-size:69.333333pt;}
.fs3_c01118{font-size:70.000000pt;}
.fs0_c01118{font-size:70.666667pt;}
.fs2_c01118{font-size:71.333333pt;}
.fs7_c01118{font-size:72.000000pt;}
.fs6_c01118{font-size:72.666667pt;}
.fsb_c01118{font-size:73.333333pt;}
.fsc_c01118{font-size:74.666667pt;}
.fs8_c01118{font-size:76.666667pt;}
.fs4_c01118{font-size:85.333333pt;}
.fsa_c01118{font-size:102.666667pt;}
.y0_c01118{bottom:0.000000pt;}
.y1d_c01118{bottom:163.199733pt;}
.y1c_c01118{bottom:190.400387pt;}
.y1b_c01118{bottom:243.199200pt;}
.y1a_c01118{bottom:269.438840pt;}
.y19_c01118{bottom:295.998960pt;}
.y18_c01118{bottom:349.119187pt;}
.y17_c01118{bottom:375.679733pt;}
.y16_c01118{bottom:385.599613pt;}
.y14_c01118{bottom:402.239973pt;}
.y15_c01118{bottom:402.240280pt;}
.y13_c01118{bottom:456.319333pt;}
.y12_c01118{bottom:482.879840pt;}
.y10_c01118{bottom:509.118933pt;}
.y11_c01118{bottom:509.119587pt;}
.yf_c01118{bottom:535.359333pt;}
.ye_c01118{bottom:588.480507pt;}
.yd_c01118{bottom:615.039587pt;}
.yc_c01118{bottom:641.600093pt;}
.yb_c01118{bottom:694.719720pt;}
.ya_c01118{bottom:721.599587pt;}
.y9_c01118{bottom:748.479413pt;}
.y8_c01118{bottom:801.599040pt;}
.y7_c01118{bottom:828.480547pt;}
.y6_c01118{bottom:828.481320pt;}
.y5_c01118{bottom:855.039547pt;}
.y4_c01118{bottom:907.839840pt;}
.y3_c01118{bottom:934.400387pt;}
.y2_c01118{bottom:960.959467pt;}
.y1_c01118{bottom:1013.759680pt;}
.hf_c01118{height:54.306641pt;}
.h9_c01118{height:67.392578pt;}
.h7_c01118{height:68.046875pt;}
.hc_c01118{height:68.701172pt;}
.h1_c01118{height:69.355469pt;}
.h2_c01118{height:69.875000pt;}
.h5_c01118{height:69.974935pt;}
.h4_c01118{height:70.546875pt;}
.hd_c01118{height:70.664062pt;}
.h6_c01118{height:71.218750pt;}
.ha_c01118{height:71.282878pt;}
.hb_c01118{height:71.318359pt;}
.h3_c01118{height:71.890625pt;}
.h11_c01118{height:71.972656pt;}
.h12_c01118{height:73.244792pt;}
.he_c01118{height:79.960938pt;}
.h8_c01118{height:89.000000pt;}
.h10_c01118{height:107.078125pt;}
.h0_c01118{height:1122.666667pt;}
.w0_c01118{width:793.333333pt;}
.x0_c01118{left:0.000000pt;}
.x4_c01118{left:118.398920pt;}
.x1_c01118{left:119.359867pt;}
.xa_c01118{left:120.638493pt;}
.x21_c01118{left:127.359333pt;}
.x1e_c01118{left:138.238813pt;}
.x5_c01118{left:139.839867pt;}
.x14_c01118{left:156.159733pt;}
.x22_c01118{left:157.440000pt;}
.xf_c01118{left:175.038533pt;}
.x15_c01118{left:177.279720pt;}
.x16_c01118{left:178.558533pt;}
.x2a_c01118{left:189.118667pt;}
.xc_c01118{left:192.319333pt;}
.x11_c01118{left:195.839333pt;}
.x17_c01118{left:197.759720pt;}
.x2b_c01118{left:202.239200pt;}
.x10_c01118{left:205.440000pt;}
.x20_c01118{left:207.999067pt;}
.x18_c01118{left:211.519067pt;}
.x2_c01118{left:216.000000pt;}
.xd_c01118{left:218.559067pt;}
.x6_c01118{left:219.518533pt;}
.x2c_c01118{left:222.719200pt;}
.x29_c01118{left:225.279720pt;}
.x7_c01118{left:240.319333pt;}
.x12_c01118{left:245.119587pt;}
.xe_c01118{left:247.359333pt;}
.x3_c01118{left:248.958920pt;}
.x24_c01118{left:271.359333pt;}
.x13_c01118{left:272.958920pt;}
.x25_c01118{left:292.479453pt;}
.x23_c01118{left:312.959453pt;}
.x19_c01118{left:322.239200pt;}
.x8_c01118{left:326.399453pt;}
.x1f_c01118{left:342.079067pt;}
.x1a_c01118{left:345.599040pt;}
.x9_c01118{left:346.879307pt;}
.x1b_c01118{left:375.039587pt;}
.x26_c01118{left:389.759720pt;}
.xb_c01118{left:396.159707pt;}
.x27_c01118{left:399.358933pt;}
.x28_c01118{left:445.119187pt;}
.x1c_c01118{left:523.519040pt;}
.x1d_c01118{left:561.279707pt;}
}





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

.ir_c01119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_f0996ec6907739367037c953.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01119;src:url('chunks/assets/font_de5196d6357f9507d48a3883.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01119;src:url('chunks/assets/font_21df0e34d2bbd2a7c8c01920.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01119;src:url('chunks/assets/font_66b6e9cec01a1e751d121e68.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01119;src:url('chunks/assets/font_63c9019eb8bebd46ebc11cd3.woff2')format("woff");}.ff5_c01119{font-family:ff5_c01119;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01119;src:url('chunks/assets/font_437bd993342eb12ee2b92388.woff2')format("woff");}.ff6_c01119{font-family:ff6_c01119;line-height:1.311035;font-style:normal;font-weight: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_c01119;src:url('chunks/assets/font_777d784cdcd60989a79f8f77.woff2')format("woff");}.ff7_c01119{font-family:ff7_c01119;line-height:1.432129;font-style:normal;font-weight: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_c01119;src:url('chunks/assets/font_66d12384faef2b5c902c1405.woff2')format("woff");}.ff8_c01119{font-family:ff8_c01119;line-height:1.432129;font-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_c01119{transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167453,0.000000,0.000000,0.250000,0,0);}
.m4_c01119{transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);}
.m17_c01119{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c01119{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);}
.mb_c01119{transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217822,0.000000,0.000000,0.250000,0,0);}
.m8_c01119{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m15_c01119{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m1b_c01119{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m9_c01119{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m3_c01119{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.md_c01119{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m1_c01119{transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239316,0.000000,0.000000,0.250000,0,0);}
.m2_c01119{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m12_c01119{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m1d_c01119{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m14_c01119{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m20_c01119{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m1e_c01119{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m6_c01119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01119{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c01119{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m7_c01119{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m1f_c01119{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m5_c01119{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m1a_c01119{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_c01119{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m1c_c01119{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m19_c01119{transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275253,0.000000,0.000000,0.250000,0,0);}
.m13_c01119{transform:matrix(0.288618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288618,0.000000,0.000000,0.250000,0,0);}
.ma_c01119{transform:matrix(0.339041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339041,0.000000,0.000000,0.250000,0,0);}
.m16_c01119{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.m10_c01119{transform:matrix(0.393617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393617,0.000000,0.000000,0.250000,0,0);}
.m18_c01119{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.v0_c01119{vertical-align:0.000000px;}
.ls1f_c01119{letter-spacing:-23.571075px;}
.ls9_c01119{letter-spacing:-22.698000px;}
.ls2e_c01119{letter-spacing:-17.541000px;}
.ls23_c01119{letter-spacing:-14.089500px;}
.ls17_c01119{letter-spacing:-12.750480px;}
.ls5_c01119{letter-spacing:-12.539475px;}
.ls25_c01119{letter-spacing:-11.697300px;}
.ls30_c01119{letter-spacing:-10.536825px;}
.ls22_c01119{letter-spacing:-9.578250px;}
.ls1b_c01119{letter-spacing:-8.847600px;}
.ls1e_c01119{letter-spacing:-8.806500px;}
.ls18_c01119{letter-spacing:-7.301250px;}
.ls7_c01119{letter-spacing:-7.046100px;}
.ls13_c01119{letter-spacing:-5.945625px;}
.ls10_c01119{letter-spacing:-5.196713px;}
.ls19_c01119{letter-spacing:-4.862348px;}
.lsf_c01119{letter-spacing:-4.456463px;}
.ls27_c01119{letter-spacing:-3.915000px;}
.ls11_c01119{letter-spacing:-3.717000px;}
.lsb_c01119{letter-spacing:-3.242903px;}
.ls6_c01119{letter-spacing:-2.968875px;}
.ls16_c01119{letter-spacing:-2.431575px;}
.lse_c01119{letter-spacing:-2.348100px;}
.ls31_c01119{letter-spacing:-2.294348px;}
.ls4_c01119{letter-spacing:-2.229413px;}
.ls2f_c01119{letter-spacing:-2.186250px;}
.ls15_c01119{letter-spacing:-2.184000px;}
.ls28_c01119{letter-spacing:-2.022000px;}
.ls1a_c01119{letter-spacing:-1.632533px;}
.lsc_c01119{letter-spacing:-1.621050px;}
.ls8_c01119{letter-spacing:-1.566000px;}
.ls12_c01119{letter-spacing:-1.489163px;}
.ls14_c01119{letter-spacing:-0.810525px;}
.ls26_c01119{letter-spacing:-0.740250px;}
.lsa_c01119{letter-spacing:0.000000px;}
.ls0_c01119{letter-spacing:0.783000px;}
.ls3_c01119{letter-spacing:1.489163px;}
.ls1_c01119{letter-spacing:1.566000px;}
.ls2_c01119{letter-spacing:2.229413px;}
.ls2b_c01119{letter-spacing:2.464875px;}
.ls20_c01119{letter-spacing:2.946075px;}
.ls1c_c01119{letter-spacing:3.446625px;}
.ls2c_c01119{letter-spacing:4.882500px;}
.ls2a_c01119{letter-spacing:5.715000px;}
.ls2d_c01119{letter-spacing:7.721100px;}
.ls1d_c01119{letter-spacing:7.944000px;}
.ls29_c01119{letter-spacing:8.175668px;}
.ls24_c01119{letter-spacing:9.385950px;}
.lsd_c01119{letter-spacing:10.459020px;}
.ls21_c01119{letter-spacing:63.822600px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01119{word-spacing:0.000000px;}
._1_c01119{margin-left:-54.018031px;}
._11_c01119{margin-left:-31.401110px;}
._4_c01119{margin-left:-28.988593px;}
._d_c01119{margin-left:-27.486110px;}
._0_c01119{margin-left:-18.769758px;}
._1d_c01119{margin-left:-17.287794px;}
._2_c01119{margin-left:-13.289108px;}
._1c_c01119{margin-left:-10.161722px;}
._1a_c01119{margin-left:-4.293257px;}
._a_c01119{margin-left:-1.766065px;}
._1b_c01119{width:1.098221px;}
._f_c01119{width:2.785080px;}
._17_c01119{width:3.803328px;}
._7_c01119{width:4.806841px;}
._3_c01119{width:6.114661px;}
._1e_c01119{width:7.134825px;}
._6_c01119{width:8.348986px;}
._18_c01119{width:10.920297px;}
._b_c01119{width:12.454784px;}
._c_c01119{width:14.040436px;}
._15_c01119{width:15.978359px;}
._8_c01119{width:17.442174px;}
._19_c01119{width:18.666731px;}
._9_c01119{width:20.626646px;}
._16_c01119{width:22.469935px;}
._12_c01119{width:25.258661px;}
._e_c01119{width:26.770899px;}
._14_c01119{width:28.366181px;}
._13_c01119{width:35.129513px;}
._5_c01119{width:37.104147px;}
._10_c01119{width:40.066007px;}
.fc0_c01119{color:transparent;}
.fs13_c01119{font-size:30.000000px;}
.fs16_c01119{font-size:51.750000px;}
.fsa_c01119{font-size:60.000000px;}
.fse_c01119{font-size:69.750000px;}
.fsd_c01119{font-size:70.500000px;}
.fsb_c01119{font-size:71.250000px;}
.fs5_c01119{font-size:72.000000px;}
.fsf_c01119{font-size:73.500000px;}
.fs14_c01119{font-size:74.250000px;}
.fs15_c01119{font-size:75.000000px;}
.fs9_c01119{font-size:75.750000px;}
.fs4_c01119{font-size:78.000000px;}
.fs0_c01119{font-size:78.750000px;}
.fsc_c01119{font-size:79.500000px;}
.fs3_c01119{font-size:80.250000px;}
.fs11_c01119{font-size:81.750000px;}
.fs6_c01119{font-size:82.500000px;}
.fs7_c01119{font-size:83.250000px;}
.fs12_c01119{font-size:84.000000px;}
.fs1_c01119{font-size:87.750000px;}
.fs2_c01119{font-size:90.000000px;}
.fs10_c01119{font-size:92.250000px;}
.fs8_c01119{font-size:109.500000px;}
.y0_c01119{bottom:0.000000px;}
.y1c_c01119{bottom:240.480285px;}
.y1b_c01119{bottom:270.360900px;}
.y1a_c01119{bottom:300.600750px;}
.y19_c01119{bottom:359.640150px;}
.y18_c01119{bottom:389.520720px;}
.y17_c01119{bottom:419.399820px;}
.y16_c01119{bottom:428.760135px;}
.y15_c01119{bottom:480.240420px;}
.y14_c01119{bottom:510.121035px;}
.y13_c01119{bottom:539.640750px;}
.y12_c01119{bottom:599.041035px;}
.y11_c01119{bottom:628.560495px;}
.y10_c01119{bottom:658.800570px;}
.yf_c01119{bottom:658.800660px;}
.ye_c01119{bottom:689.040570px;}
.yd_c01119{bottom:751.680720px;}
.yc_c01119{bottom:777.960570px;}
.yb_c01119{bottom:808.920600px;}
.ya_c01119{bottom:868.680090px;}
.y8_c01119{bottom:898.560360px;}
.y9_c01119{bottom:898.560705px;}
.y7_c01119{bottom:929.159820px;}
.y6_c01119{bottom:929.160180px;}
.y5_c01119{bottom:958.679715px;}
.y4_c01119{bottom:1018.800105px;}
.y3_c01119{bottom:1048.680720px;}
.y2_c01119{bottom:1078.200435px;}
.y1_c01119{bottom:1138.680090px;}
.h18_c01119{height:31.289062px;}
.h1c_c01119{height:53.973633px;}
.hd_c01119{height:59.296875px;}
.h12_c01119{height:72.747070px;}
.h11_c01119{height:73.529297px;}
.h13_c01119{height:74.074219px;}
.he_c01119{height:74.311523px;}
.h7_c01119{height:75.093750px;}
.hc_c01119{height:76.341797px;}
.h5_c01119{height:76.514648px;}
.h6_c01119{height:76.552734px;}
.h1_c01119{height:77.288818px;}
.h19_c01119{height:77.440430px;}
.h1d_c01119{height:78.024902px;}
.h1a_c01119{height:78.222656px;}
.h10_c01119{height:78.568359px;}
.h4_c01119{height:78.721802px;}
.h9_c01119{height:78.760986px;}
.h1b_c01119{height:79.365234px;}
.h8_c01119{height:80.969238px;}
.hf_c01119{height:81.533203px;}
.ha_c01119{height:82.274414px;}
.h15_c01119{height:82.388672px;}
.h2_c01119{height:86.721680px;}
.h16_c01119{height:87.609375px;}
.h3_c01119{height:88.945312px;}
.h14_c01119{height:91.168945px;}
.h17_c01119{height:93.867188px;}
.hb_c01119{height:108.216797px;}
.h0_c01119{height:1263.000000px;}
.w0_c01119{width:892.500000px;}
.x0_c01119{left:0.000000px;}
.x1f_c01119{left:135.000000px;}
.x5_c01119{left:136.799565px;}
.x6_c01119{left:137.878950px;}
.x1_c01119{left:139.319250px;}
.x1d_c01119{left:145.078815px;}
.x2a_c01119{left:169.199850px;}
.x12_c01119{left:170.279250px;}
.x2_c01119{left:183.238785px;}
.x2b_c01119{left:193.678500px;}
.x24_c01119{left:203.759100px;}
.x28_c01119{left:210.238785px;}
.x20_c01119{left:211.319850px;}
.xb_c01119{left:217.079385px;}
.x3_c01119{left:227.519100px;}
.x13_c01119{left:233.278800px;}
.x29_c01119{left:241.918950px;}
.xf_c01119{left:260.998950px;}
.xc_c01119{left:266.758500px;}
.x10_c01119{left:276.118785px;}
.x25_c01119{left:284.399850px;}
.x1c_c01119{left:288.719100px;}
.x14_c01119{left:290.518635px;}
.x7_c01119{left:297.000000px;}
.xd_c01119{left:300.958350px;}
.x27_c01119{left:303.479685px;}
.x15_c01119{left:313.919535px;}
.xe_c01119{left:333.358635px;}
.x23_c01119{left:340.199385px;}
.x2c_c01119{left:345.238785px;}
.x4_c01119{left:346.679100px;}
.x26_c01119{left:352.079385px;}
.x21_c01119{left:377.639100px;}
.x2d_c01119{left:388.798920px;}
.x22_c01119{left:393.479235px;}
.x1e_c01119{left:421.919535px;}
.x16_c01119{left:425.879520px;}
.x17_c01119{left:458.279850px;}
.x18_c01119{left:516.599070px;}
.x11_c01119{left:520.918350px;}
.x19_c01119{left:540.000000px;}
.x8_c01119{left:559.798515px;}
.x1b_c01119{left:579.239220px;}
.x1a_c01119{left:583.199385px;}
.x9_c01119{left:692.998950px;}
.xa_c01119{left:717.119985px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls1f_c01119{letter-spacing:-20.952067pt;}
.ls9_c01119{letter-spacing:-20.176000pt;}
.ls2e_c01119{letter-spacing:-15.592000pt;}
.ls23_c01119{letter-spacing:-12.524000pt;}
.ls17_c01119{letter-spacing:-11.333760pt;}
.ls5_c01119{letter-spacing:-11.146200pt;}
.ls25_c01119{letter-spacing:-10.397600pt;}
.ls30_c01119{letter-spacing:-9.366067pt;}
.ls22_c01119{letter-spacing:-8.514000pt;}
.ls1b_c01119{letter-spacing:-7.864533pt;}
.ls1e_c01119{letter-spacing:-7.828000pt;}
.ls18_c01119{letter-spacing:-6.490000pt;}
.ls7_c01119{letter-spacing:-6.263200pt;}
.ls13_c01119{letter-spacing:-5.285000pt;}
.ls10_c01119{letter-spacing:-4.619300pt;}
.ls19_c01119{letter-spacing:-4.322087pt;}
.lsf_c01119{letter-spacing:-3.961300pt;}
.ls27_c01119{letter-spacing:-3.480000pt;}
.ls11_c01119{letter-spacing:-3.304000pt;}
.lsb_c01119{letter-spacing:-2.882580pt;}
.ls6_c01119{letter-spacing:-2.639000pt;}
.ls16_c01119{letter-spacing:-2.161400pt;}
.lse_c01119{letter-spacing:-2.087200pt;}
.ls31_c01119{letter-spacing:-2.039420pt;}
.ls4_c01119{letter-spacing:-1.981700pt;}
.ls2f_c01119{letter-spacing:-1.943333pt;}
.ls15_c01119{letter-spacing:-1.941333pt;}
.ls28_c01119{letter-spacing:-1.797333pt;}
.ls1a_c01119{letter-spacing:-1.451140pt;}
.lsc_c01119{letter-spacing:-1.440933pt;}
.ls8_c01119{letter-spacing:-1.392000pt;}
.ls12_c01119{letter-spacing:-1.323700pt;}
.ls14_c01119{letter-spacing:-0.720467pt;}
.ls26_c01119{letter-spacing:-0.658000pt;}
.lsa_c01119{letter-spacing:0.000000pt;}
.ls0_c01119{letter-spacing:0.696000pt;}
.ls3_c01119{letter-spacing:1.323700pt;}
.ls1_c01119{letter-spacing:1.392000pt;}
.ls2_c01119{letter-spacing:1.981700pt;}
.ls2b_c01119{letter-spacing:2.191000pt;}
.ls20_c01119{letter-spacing:2.618733pt;}
.ls1c_c01119{letter-spacing:3.063667pt;}
.ls2c_c01119{letter-spacing:4.340000pt;}
.ls2a_c01119{letter-spacing:5.080000pt;}
.ls2d_c01119{letter-spacing:6.863200pt;}
.ls1d_c01119{letter-spacing:7.061333pt;}
.ls29_c01119{letter-spacing:7.267260pt;}
.ls24_c01119{letter-spacing:8.343067pt;}
.lsd_c01119{letter-spacing:9.296907pt;}
.ls21_c01119{letter-spacing:56.731200pt;}
.ws0_c01119{word-spacing:0.000000pt;}
._1_c01119{margin-left:-48.016028pt;}
._11_c01119{margin-left:-27.912097pt;}
._4_c01119{margin-left:-25.767638pt;}
._d_c01119{margin-left:-24.432097pt;}
._0_c01119{margin-left:-16.684230pt;}
._1d_c01119{margin-left:-15.366928pt;}
._2_c01119{margin-left:-11.812541pt;}
._1c_c01119{margin-left:-9.032642pt;}
._1a_c01119{margin-left:-3.816228pt;}
._a_c01119{margin-left:-1.569836pt;}
._1b_c01119{width:0.976196pt;}
._f_c01119{width:2.475627pt;}
._17_c01119{width:3.380736pt;}
._7_c01119{width:4.272747pt;}
._3_c01119{width:5.435254pt;}
._1e_c01119{width:6.342067pt;}
._6_c01119{width:7.421321pt;}
._18_c01119{width:9.706930pt;}
._b_c01119{width:11.070919pt;}
._c_c01119{width:12.480387pt;}
._15_c01119{width:14.202985pt;}
._8_c01119{width:15.504155pt;}
._19_c01119{width:16.592650pt;}
._9_c01119{width:18.334796pt;}
._16_c01119{width:19.973276pt;}
._12_c01119{width:22.452143pt;}
._e_c01119{width:23.796355pt;}
._14_c01119{width:25.214383pt;}
._13_c01119{width:31.226234pt;}
._5_c01119{width:32.981464pt;}
._10_c01119{width:35.614229pt;}
.fs13_c01119{font-size:26.666667pt;}
.fs16_c01119{font-size:46.000000pt;}
.fsa_c01119{font-size:53.333333pt;}
.fse_c01119{font-size:62.000000pt;}
.fsd_c01119{font-size:62.666667pt;}
.fsb_c01119{font-size:63.333333pt;}
.fs5_c01119{font-size:64.000000pt;}
.fsf_c01119{font-size:65.333333pt;}
.fs14_c01119{font-size:66.000000pt;}
.fs15_c01119{font-size:66.666667pt;}
.fs9_c01119{font-size:67.333333pt;}
.fs4_c01119{font-size:69.333333pt;}
.fs0_c01119{font-size:70.000000pt;}
.fsc_c01119{font-size:70.666667pt;}
.fs3_c01119{font-size:71.333333pt;}
.fs11_c01119{font-size:72.666667pt;}
.fs6_c01119{font-size:73.333333pt;}
.fs7_c01119{font-size:74.000000pt;}
.fs12_c01119{font-size:74.666667pt;}
.fs1_c01119{font-size:78.000000pt;}
.fs2_c01119{font-size:80.000000pt;}
.fs10_c01119{font-size:82.000000pt;}
.fs8_c01119{font-size:97.333333pt;}
.y0_c01119{bottom:0.000000pt;}
.y1c_c01119{bottom:213.760253pt;}
.y1b_c01119{bottom:240.320800pt;}
.y1a_c01119{bottom:267.200667pt;}
.y19_c01119{bottom:319.680133pt;}
.y18_c01119{bottom:346.240640pt;}
.y17_c01119{bottom:372.799840pt;}
.y16_c01119{bottom:381.120120pt;}
.y15_c01119{bottom:426.880373pt;}
.y14_c01119{bottom:453.440920pt;}
.y13_c01119{bottom:479.680667pt;}
.y12_c01119{bottom:532.480920pt;}
.y11_c01119{bottom:558.720440pt;}
.y10_c01119{bottom:585.600507pt;}
.yf_c01119{bottom:585.600587pt;}
.ye_c01119{bottom:612.480507pt;}
.yd_c01119{bottom:668.160640pt;}
.yc_c01119{bottom:691.520507pt;}
.yb_c01119{bottom:719.040533pt;}
.ya_c01119{bottom:772.160080pt;}
.y8_c01119{bottom:798.720320pt;}
.y9_c01119{bottom:798.720627pt;}
.y7_c01119{bottom:825.919840pt;}
.y6_c01119{bottom:825.920160pt;}
.y5_c01119{bottom:852.159747pt;}
.y4_c01119{bottom:905.600093pt;}
.y3_c01119{bottom:932.160640pt;}
.y2_c01119{bottom:958.400387pt;}
.y1_c01119{bottom:1012.160080pt;}
.h18_c01119{height:27.812500pt;}
.h1c_c01119{height:47.976562pt;}
.hd_c01119{height:52.708333pt;}
.h12_c01119{height:64.664062pt;}
.h11_c01119{height:65.359375pt;}
.h13_c01119{height:65.843750pt;}
.he_c01119{height:66.054688pt;}
.h7_c01119{height:66.750000pt;}
.hc_c01119{height:67.859375pt;}
.h5_c01119{height:68.013021pt;}
.h6_c01119{height:68.046875pt;}
.h1_c01119{height:68.701172pt;}
.h19_c01119{height:68.835938pt;}
.h1d_c01119{height:69.355469pt;}
.h1a_c01119{height:69.531250pt;}
.h10_c01119{height:69.838542pt;}
.h4_c01119{height:69.974935pt;}
.h9_c01119{height:70.009766pt;}
.h1b_c01119{height:70.546875pt;}
.h8_c01119{height:71.972656pt;}
.hf_c01119{height:72.473958pt;}
.ha_c01119{height:73.132813pt;}
.h15_c01119{height:73.234375pt;}
.h2_c01119{height:77.085938pt;}
.h16_c01119{height:77.875000pt;}
.h3_c01119{height:79.062500pt;}
.h14_c01119{height:81.039063pt;}
.h17_c01119{height:83.437500pt;}
.hb_c01119{height:96.192708pt;}
.h0_c01119{height:1122.666667pt;}
.w0_c01119{width:793.333333pt;}
.x0_c01119{left:0.000000pt;}
.x1f_c01119{left:120.000000pt;}
.x5_c01119{left:121.599613pt;}
.x6_c01119{left:122.559067pt;}
.x1_c01119{left:123.839333pt;}
.x1d_c01119{left:128.958947pt;}
.x2a_c01119{left:150.399867pt;}
.x12_c01119{left:151.359333pt;}
.x2_c01119{left:162.878920pt;}
.x2b_c01119{left:172.158667pt;}
.x24_c01119{left:181.119200pt;}
.x28_c01119{left:186.878920pt;}
.x20_c01119{left:187.839867pt;}
.xb_c01119{left:192.959453pt;}
.x3_c01119{left:202.239200pt;}
.x13_c01119{left:207.358933pt;}
.x29_c01119{left:215.039067pt;}
.xf_c01119{left:231.999067pt;}
.xc_c01119{left:237.118667pt;}
.x10_c01119{left:245.438920pt;}
.x25_c01119{left:252.799867pt;}
.x1c_c01119{left:256.639200pt;}
.x14_c01119{left:258.238787pt;}
.x7_c01119{left:264.000000pt;}
.xd_c01119{left:267.518533pt;}
.x27_c01119{left:269.759720pt;}
.x15_c01119{left:279.039587pt;}
.xe_c01119{left:296.318787pt;}
.x23_c01119{left:302.399453pt;}
.x2c_c01119{left:306.878920pt;}
.x4_c01119{left:308.159200pt;}
.x26_c01119{left:312.959453pt;}
.x21_c01119{left:335.679200pt;}
.x2d_c01119{left:345.599040pt;}
.x22_c01119{left:349.759320pt;}
.x1e_c01119{left:375.039587pt;}
.x16_c01119{left:378.559573pt;}
.x17_c01119{left:407.359867pt;}
.x18_c01119{left:459.199173pt;}
.x11_c01119{left:463.038533pt;}
.x19_c01119{left:480.000000pt;}
.x8_c01119{left:497.598680pt;}
.x1b_c01119{left:514.879307pt;}
.x1a_c01119{left:518.399453pt;}
.x9_c01119{left:615.999067pt;}
.xa_c01119{left:637.439987pt;}
}





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

.ir_c01120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_86f00acc28ea1a3dd2f47618.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01120;src:url('chunks/assets/font_89ff8e4c071878a899de14a6.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01120;src:url('chunks/assets/font_4bfd16afc8dbd93de81a46dd.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01120;src:url('chunks/assets/font_0b09e4bcd4e35fe72cf043c4.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01120;src:url('chunks/assets/font_e0507454f3a1cc0b5239b2bc.woff2')format("woff");}.ff5_c01120{font-family:ff5_c01120;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01120;src:url('chunks/assets/font_cc6ceee21a39483485b6236a.woff2')format("woff");}.ff6_c01120{font-family:ff6_c01120;line-height:1.364746;font-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_c01120{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.md_c01120{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m7_c01120{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m1d_c01120{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m15_c01120{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.mb_c01120{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m3_c01120{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m1b_c01120{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m1a_c01120{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1_c01120{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.mc_c01120{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m0_c01120{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.ma_c01120{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1e_c01120{transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);}
.m5_c01120{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m6_c01120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01120{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c01120{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m8_c01120{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m9_c01120{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m4_c01120{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m18_c01120{transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);}
.mf_c01120{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m16_c01120{transform:matrix(0.341667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01120{transform:matrix(0.347087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347087,0.000000,0.000000,0.250000,0,0);}
.m19_c01120{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.m10_c01120{transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371622,0.000000,0.000000,0.250000,0,0);}
.m11_c01120{transform:matrix(0.378049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378049,0.000000,0.000000,0.250000,0,0);}
.m14_c01120{transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);}
.m13_c01120{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.me_c01120{transform:matrix(0.405405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405405,0.000000,0.000000,0.250000,0,0);}
.m12_c01120{transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448718,0.000000,0.000000,0.250000,0,0);}
.v0_c01120{vertical-align:0.000000px;}
.ls27_c01120{letter-spacing:-27.438075px;}
.ls2d_c01120{letter-spacing:-21.066848px;}
.ls2b_c01120{letter-spacing:-8.175038px;}
.ls12_c01120{letter-spacing:-7.426125px;}
.lsc_c01120{letter-spacing:-6.111788px;}
.ls9_c01120{letter-spacing:-5.945625px;}
.ls11_c01120{letter-spacing:-5.196713px;}
.ls15_c01120{letter-spacing:-4.456463px;}
.lsa_c01120{letter-spacing:-3.717000px;}
.ls16_c01120{letter-spacing:-3.303518px;}
.ls4_c01120{letter-spacing:-3.113700px;}
.ls6_c01120{letter-spacing:-2.968875px;}
.ls14_c01120{letter-spacing:-2.886000px;}
.ls19_c01120{letter-spacing:-2.477025px;}
.ls18_c01120{letter-spacing:-2.335275px;}
.ls1f_c01120{letter-spacing:-2.331990px;}
.lse_c01120{letter-spacing:-2.267213px;}
.ls1e_c01120{letter-spacing:-2.250645px;}
.ls7_c01120{letter-spacing:-2.229413px;}
.ls1d_c01120{letter-spacing:-1.653150px;}
.ls17_c01120{letter-spacing:-1.651350px;}
.ls1b_c01120{letter-spacing:-1.555200px;}
.lsf_c01120{letter-spacing:-1.489163px;}
.lsb_c01120{letter-spacing:-0.825675px;}
.ls29_c01120{letter-spacing:-0.748125px;}
.ls8_c01120{letter-spacing:-0.740250px;}
.ls10_c01120{letter-spacing:0.000000px;}
.ls2a_c01120{letter-spacing:0.675848px;}
.ls13_c01120{letter-spacing:0.724620px;}
.ls2_c01120{letter-spacing:0.740250px;}
.ls20_c01120{letter-spacing:0.778425px;}
.ls2c_c01120{letter-spacing:0.808500px;}
.ls1a_c01120{letter-spacing:0.825675px;}
.ls24_c01120{letter-spacing:1.433250px;}
.ls28_c01120{letter-spacing:2.227800px;}
.ls3_c01120{letter-spacing:2.229413px;}
.ls1c_c01120{letter-spacing:2.335275px;}
.ls5_c01120{letter-spacing:2.359350px;}
.ls23_c01120{letter-spacing:2.925292px;}
.ls1_c01120{letter-spacing:3.717000px;}
.ls21_c01120{letter-spacing:3.855600px;}
.ls22_c01120{letter-spacing:5.455050px;}
.ls0_c01120{letter-spacing:8.256750px;}
.lsd_c01120{letter-spacing:9.082425px;}
.ls25_c01120{letter-spacing:11.336700px;}
.ls26_c01120{letter-spacing:26.415112px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01120{word-spacing:0.000000px;}
._12_c01120{margin-left:-17.918820px;}
._9_c01120{margin-left:-13.100033px;}
._19_c01120{margin-left:-10.655800px;}
._17_c01120{margin-left:-9.562523px;}
._14_c01120{margin-left:-7.158286px;}
._a_c01120{margin-left:-4.169961px;}
._15_c01120{margin-left:-2.487415px;}
._c_c01120{width:1.264220px;}
._13_c01120{width:2.816917px;}
._10_c01120{width:3.892375px;}
._e_c01120{width:5.055275px;}
._8_c01120{width:6.616738px;}
._18_c01120{width:7.626250px;}
._b_c01120{width:8.813715px;}
._0_c01120{width:10.151204px;}
._d_c01120{width:11.432435px;}
._16_c01120{width:12.439231px;}
._7_c01120{width:13.505417px;}
._11_c01120{width:15.104399px;}
._f_c01120{width:18.486562px;}
._4_c01120{width:20.042142px;}
._3_c01120{width:21.884046px;}
._2_c01120{width:23.716469px;}
._1_c01120{width:25.554642px;}
._6_c01120{width:28.189320px;}
._5_c01120{width:32.216744px;}
.fc0_c01120{color:transparent;}
.fsd_c01120{font-size:26.250000px;}
.fs9_c01120{font-size:27.750000px;}
.fsc_c01120{font-size:29.250000px;}
.fsb_c01120{font-size:30.750000px;}
.fse_c01120{font-size:34.500000px;}
.fsa_c01120{font-size:63.000000px;}
.fs10_c01120{font-size:67.500000px;}
.fs11_c01120{font-size:70.500000px;}
.fs12_c01120{font-size:71.250000px;}
.fs8_c01120{font-size:72.000000px;}
.fs13_c01120{font-size:72.750000px;}
.fs16_c01120{font-size:75.045060px;}
.fs6_c01120{font-size:77.250000px;}
.fs4_c01120{font-size:78.000000px;}
.fs1_c01120{font-size:78.750000px;}
.fs7_c01120{font-size:79.500000px;}
.fs0_c01120{font-size:80.250000px;}
.fs5_c01120{font-size:81.000000px;}
.fs2_c01120{font-size:81.750000px;}
.fs3_c01120{font-size:82.500000px;}
.fs15_c01120{font-size:84.750000px;}
.fs14_c01120{font-size:90.000000px;}
.fsf_c01120{font-size:101.250000px;}
.y0_c01120{bottom:0.000000px;}
.y1d_c01120{bottom:182.520315px;}
.y1c_c01120{bottom:212.760150px;}
.y1b_c01120{bottom:271.799535px;}
.y1a_c01120{bottom:300.960000px;}
.y19_c01120{bottom:330.838950px;}
.y18_c01120{bottom:390.959385px;}
.y17_c01120{bottom:421.199385px;}
.y16_c01120{bottom:429.478635px;}
.y15_c01120{bottom:451.080000px;}
.y14_c01120{bottom:511.198785px;}
.y13_c01120{bottom:541.438620px;}
.y12_c01120{bottom:570.959970px;}
.y11_c01120{bottom:600.479685px;}
.y10_c01120{bottom:660.239220px;}
.yf_c01120{bottom:690.119220px;}
.ye_c01120{bottom:719.998950px;}
.yd_c01120{bottom:780.119385px;}
.yb_c01120{bottom:810.359205px;}
.yc_c01120{bottom:810.359250px;}
.ya_c01120{bottom:840.599115px;}
.y9_c01120{bottom:900.719520px;}
.y8_c01120{bottom:930.600405px;}
.y6_c01120{bottom:960.119175px;}
.y7_c01120{bottom:960.119940px;}
.y5_c01120{bottom:989.998905px;}
.y4_c01120{bottom:1049.760135px;}
.y3_c01120{bottom:1079.639550px;}
.y2_c01120{bottom:1110.239955px;}
.y1_c01120{bottom:1139.759490px;}
.hf_c01120{height:27.377930px;}
.he_c01120{height:28.907227px;}
.hb_c01120{height:28.942383px;}
.hd_c01120{height:30.164429px;}
.h10_c01120{height:35.982422px;}
.hc_c01120{height:65.707031px;}
.h12_c01120{height:66.708984px;}
.h13_c01120{height:71.050781px;}
.h15_c01120{height:71.400146px;}
.h14_c01120{height:71.806641px;}
.h1b_c01120{height:73.652622px;}
.ha_c01120{height:75.093750px;}
.h8_c01120{height:75.816650px;}
.h6_c01120{height:76.552734px;}
.h2_c01120{height:77.288818px;}
.h17_c01120{height:77.853516px;}
.h9_c01120{height:78.024902px;}
.h5_c01120{height:78.609375px;}
.h7_c01120{height:79.497070px;}
.h3_c01120{height:80.193237px;}
.h1_c01120{height:80.876953px;}
.h1a_c01120{height:80.928955px;}
.h4_c01120{height:80.969238px;}
.h18_c01120{height:83.144531px;}
.h19_c01120{height:83.177490px;}
.h16_c01120{height:93.867188px;}
.h11_c01120{height:105.600586px;}
.h0_c01120{height:1263.000000px;}
.w0_c01120{width:892.500000px;}
.x0_c01120{left:0.000000px;}
.x1e_c01120{left:134.279850px;}
.x13_c01120{left:139.319250px;}
.xa_c01120{left:140.759565px;}
.x1_c01120{left:142.199850px;}
.x4_c01120{left:143.639535px;}
.x25_c01120{left:147.959400px;}
.x1f_c01120{left:170.999400px;}
.x18_c01120{left:173.878350px;}
.x5_c01120{left:179.639700px;}
.x2a_c01120{left:195.838950px;}
.x20_c01120{left:205.199385px;}
.x21_c01120{left:216.718500px;}
.x2b_c01120{left:218.878950px;}
.x6_c01120{left:219.958350px;}
.x2c_c01120{left:235.439250px;}
.x27_c01120{left:250.918350px;}
.x11_c01120{left:251.999400px;}
.x28_c01120{left:266.399250px;}
.xf_c01120{left:267.839535px;}
.x12_c01120{left:271.079385px;}
.x1a_c01120{left:272.519685px;}
.x31_c01120{left:282.598500px;}
.xb_c01120{left:286.558635px;}
.x2f_c01120{left:287.998950px;}
.x14_c01120{left:289.080000px;}
.x1b_c01120{left:294.839535px;}
.x7_c01120{left:296.279850px;}
.x2_c01120{left:302.398635px;}
.x22_c01120{left:309.959385px;}
.xc_c01120{left:311.399850px;}
.x10_c01120{left:317.518635px;}
.x23_c01120{left:330.479685px;}
.x3_c01120{left:339.120000px;}
.x16_c01120{left:342.719100px;}
.x24_c01120{left:349.918950px;}
.x32_c01120{left:354.239850px;}
.x30_c01120{left:364.318800px;}
.x17_c01120{left:374.040000px;}
.x29_c01120{left:376.198785px;}
.x15_c01120{left:380.158785px;}
.x2d_c01120{left:474.119985px;}
.x2e_c01120{left:488.519670px;}
.x8_c01120{left:496.439670px;}
.x9_c01120{left:527.038920px;}
.xd_c01120{left:553.679670px;}
.x1c_c01120{left:558.719100px;}
.xe_c01120{left:568.079400px;}
.x1d_c01120{left:584.278800px;}
.x19_c01120{left:768.239220px;}
.x26_c01120{left:770.038965px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls27_c01120{letter-spacing:-24.389400pt;}
.ls2d_c01120{letter-spacing:-18.726087pt;}
.ls2b_c01120{letter-spacing:-7.266700pt;}
.ls12_c01120{letter-spacing:-6.601000pt;}
.lsc_c01120{letter-spacing:-5.432700pt;}
.ls9_c01120{letter-spacing:-5.285000pt;}
.ls11_c01120{letter-spacing:-4.619300pt;}
.ls15_c01120{letter-spacing:-3.961300pt;}
.lsa_c01120{letter-spacing:-3.304000pt;}
.ls16_c01120{letter-spacing:-2.936460pt;}
.ls4_c01120{letter-spacing:-2.767733pt;}
.ls6_c01120{letter-spacing:-2.639000pt;}
.ls14_c01120{letter-spacing:-2.565333pt;}
.ls19_c01120{letter-spacing:-2.201800pt;}
.ls18_c01120{letter-spacing:-2.075800pt;}
.ls1f_c01120{letter-spacing:-2.072880pt;}
.lse_c01120{letter-spacing:-2.015300pt;}
.ls1e_c01120{letter-spacing:-2.000573pt;}
.ls7_c01120{letter-spacing:-1.981700pt;}
.ls1d_c01120{letter-spacing:-1.469467pt;}
.ls17_c01120{letter-spacing:-1.467867pt;}
.ls1b_c01120{letter-spacing:-1.382400pt;}
.lsf_c01120{letter-spacing:-1.323700pt;}
.lsb_c01120{letter-spacing:-0.733933pt;}
.ls29_c01120{letter-spacing:-0.665000pt;}
.ls8_c01120{letter-spacing:-0.658000pt;}
.ls10_c01120{letter-spacing:0.000000pt;}
.ls2a_c01120{letter-spacing:0.600753pt;}
.ls13_c01120{letter-spacing:0.644107pt;}
.ls2_c01120{letter-spacing:0.658000pt;}
.ls20_c01120{letter-spacing:0.691933pt;}
.ls2c_c01120{letter-spacing:0.718667pt;}
.ls1a_c01120{letter-spacing:0.733933pt;}
.ls24_c01120{letter-spacing:1.274000pt;}
.ls28_c01120{letter-spacing:1.980267pt;}
.ls3_c01120{letter-spacing:1.981700pt;}
.ls1c_c01120{letter-spacing:2.075800pt;}
.ls5_c01120{letter-spacing:2.097200pt;}
.ls23_c01120{letter-spacing:2.600260pt;}
.ls1_c01120{letter-spacing:3.304000pt;}
.ls21_c01120{letter-spacing:3.427200pt;}
.ls22_c01120{letter-spacing:4.848933pt;}
.ls0_c01120{letter-spacing:7.339333pt;}
.lsd_c01120{letter-spacing:8.073267pt;}
.ls25_c01120{letter-spacing:10.077067pt;}
.ls26_c01120{letter-spacing:23.480100pt;}
.ws0_c01120{word-spacing:0.000000pt;}
._12_c01120{margin-left:-15.927840pt;}
._9_c01120{margin-left:-11.644474pt;}
._19_c01120{margin-left:-9.471822pt;}
._17_c01120{margin-left:-8.500021pt;}
._14_c01120{margin-left:-6.362921pt;}
._a_c01120{margin-left:-3.706632pt;}
._15_c01120{margin-left:-2.211036pt;}
._c_c01120{width:1.123751pt;}
._13_c01120{width:2.503926pt;}
._10_c01120{width:3.459889pt;}
._e_c01120{width:4.493577pt;}
._8_c01120{width:5.881545pt;}
._18_c01120{width:6.778889pt;}
._b_c01120{width:7.834413pt;}
._0_c01120{width:9.023293pt;}
._d_c01120{width:10.162164pt;}
._16_c01120{width:11.057094pt;}
._7_c01120{width:12.004815pt;}
._11_c01120{width:13.426132pt;}
._f_c01120{width:16.432500pt;}
._4_c01120{width:17.815238pt;}
._3_c01120{width:19.452485pt;}
._2_c01120{width:21.081306pt;}
._1_c01120{width:22.715238pt;}
._6_c01120{width:25.057174pt;}
._5_c01120{width:28.637106pt;}
.fsd_c01120{font-size:23.333333pt;}
.fs9_c01120{font-size:24.666667pt;}
.fsc_c01120{font-size:26.000000pt;}
.fsb_c01120{font-size:27.333333pt;}
.fse_c01120{font-size:30.666667pt;}
.fsa_c01120{font-size:56.000000pt;}
.fs10_c01120{font-size:60.000000pt;}
.fs11_c01120{font-size:62.666667pt;}
.fs12_c01120{font-size:63.333333pt;}
.fs8_c01120{font-size:64.000000pt;}
.fs13_c01120{font-size:64.666667pt;}
.fs16_c01120{font-size:66.706720pt;}
.fs6_c01120{font-size:68.666667pt;}
.fs4_c01120{font-size:69.333333pt;}
.fs1_c01120{font-size:70.000000pt;}
.fs7_c01120{font-size:70.666667pt;}
.fs0_c01120{font-size:71.333333pt;}
.fs5_c01120{font-size:72.000000pt;}
.fs2_c01120{font-size:72.666667pt;}
.fs3_c01120{font-size:73.333333pt;}
.fs15_c01120{font-size:75.333333pt;}
.fs14_c01120{font-size:80.000000pt;}
.fsf_c01120{font-size:90.000000pt;}
.y0_c01120{bottom:0.000000pt;}
.y1d_c01120{bottom:162.240280pt;}
.y1c_c01120{bottom:189.120133pt;}
.y1b_c01120{bottom:241.599587pt;}
.y1a_c01120{bottom:267.520000pt;}
.y19_c01120{bottom:294.079067pt;}
.y18_c01120{bottom:347.519453pt;}
.y17_c01120{bottom:374.399453pt;}
.y16_c01120{bottom:381.758787pt;}
.y15_c01120{bottom:400.960000pt;}
.y14_c01120{bottom:454.398920pt;}
.y13_c01120{bottom:481.278773pt;}
.y12_c01120{bottom:507.519973pt;}
.y11_c01120{bottom:533.759720pt;}
.y10_c01120{bottom:586.879307pt;}
.yf_c01120{bottom:613.439307pt;}
.ye_c01120{bottom:639.999067pt;}
.yd_c01120{bottom:693.439453pt;}
.yb_c01120{bottom:720.319293pt;}
.yc_c01120{bottom:720.319333pt;}
.ya_c01120{bottom:747.199213pt;}
.y9_c01120{bottom:800.639573pt;}
.y8_c01120{bottom:827.200360pt;}
.y6_c01120{bottom:853.439267pt;}
.y7_c01120{bottom:853.439947pt;}
.y5_c01120{bottom:879.999027pt;}
.y4_c01120{bottom:933.120120pt;}
.y3_c01120{bottom:959.679600pt;}
.y2_c01120{bottom:986.879960pt;}
.y1_c01120{bottom:1013.119547pt;}
.hf_c01120{height:24.335938pt;}
.he_c01120{height:25.695312pt;}
.hb_c01120{height:25.726562pt;}
.hd_c01120{height:26.812826pt;}
.h10_c01120{height:31.984375pt;}
.hc_c01120{height:58.406250pt;}
.h12_c01120{height:59.296875pt;}
.h13_c01120{height:63.156250pt;}
.h15_c01120{height:63.466797pt;}
.h14_c01120{height:63.828125pt;}
.h1b_c01120{height:65.468998pt;}
.ha_c01120{height:66.750000pt;}
.h8_c01120{height:67.392578pt;}
.h6_c01120{height:68.046875pt;}
.h2_c01120{height:68.701172pt;}
.h17_c01120{height:69.203125pt;}
.h9_c01120{height:69.355469pt;}
.h5_c01120{height:69.875000pt;}
.h7_c01120{height:70.664062pt;}
.h3_c01120{height:71.282878pt;}
.h1_c01120{height:71.890625pt;}
.h1a_c01120{height:71.936849pt;}
.h4_c01120{height:71.972656pt;}
.h18_c01120{height:73.906250pt;}
.h19_c01120{height:73.935547pt;}
.h16_c01120{height:83.437500pt;}
.h11_c01120{height:93.867188pt;}
.h0_c01120{height:1122.666667pt;}
.w0_c01120{width:793.333333pt;}
.x0_c01120{left:0.000000pt;}
.x1e_c01120{left:119.359867pt;}
.x13_c01120{left:123.839333pt;}
.xa_c01120{left:125.119613pt;}
.x1_c01120{left:126.399867pt;}
.x4_c01120{left:127.679587pt;}
.x25_c01120{left:131.519467pt;}
.x1f_c01120{left:151.999467pt;}
.x18_c01120{left:154.558533pt;}
.x5_c01120{left:159.679733pt;}
.x2a_c01120{left:174.079067pt;}
.x20_c01120{left:182.399453pt;}
.x21_c01120{left:192.638667pt;}
.x2b_c01120{left:194.559067pt;}
.x6_c01120{left:195.518533pt;}
.x2c_c01120{left:209.279333pt;}
.x27_c01120{left:223.038533pt;}
.x11_c01120{left:223.999467pt;}
.x28_c01120{left:236.799333pt;}
.xf_c01120{left:238.079587pt;}
.x12_c01120{left:240.959453pt;}
.x1a_c01120{left:242.239720pt;}
.x31_c01120{left:251.198667pt;}
.xb_c01120{left:254.718787pt;}
.x2f_c01120{left:255.999067pt;}
.x14_c01120{left:256.960000pt;}
.x1b_c01120{left:262.079587pt;}
.x7_c01120{left:263.359867pt;}
.x2_c01120{left:268.798787pt;}
.x22_c01120{left:275.519453pt;}
.xc_c01120{left:276.799867pt;}
.x10_c01120{left:282.238787pt;}
.x23_c01120{left:293.759720pt;}
.x3_c01120{left:301.440000pt;}
.x16_c01120{left:304.639200pt;}
.x24_c01120{left:311.039067pt;}
.x32_c01120{left:314.879867pt;}
.x30_c01120{left:323.838933pt;}
.x17_c01120{left:332.480000pt;}
.x29_c01120{left:334.398920pt;}
.x15_c01120{left:337.918920pt;}
.x2d_c01120{left:421.439987pt;}
.x2e_c01120{left:434.239707pt;}
.x8_c01120{left:441.279707pt;}
.x9_c01120{left:468.479040pt;}
.xd_c01120{left:492.159707pt;}
.x1c_c01120{left:496.639200pt;}
.xe_c01120{left:504.959467pt;}
.x1d_c01120{left:519.358933pt;}
.x19_c01120{left:682.879307pt;}
.x26_c01120{left:684.479080pt;}
}





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

.ir_c01121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_e6cb6b884730b428a8a3dbb3.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01121;src:url('chunks/assets/font_7424ec166c3a05c339993319.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01121;src:url('chunks/assets/font_71fce6e55307a55c30a6d89a.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01121;src:url('chunks/assets/font_e59a7688c42c0de3b1785a25.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01121;src:url('chunks/assets/font_46560451413c1b55f9950a52.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01121;src:url('chunks/assets/font_a198b5735d4320696690466c.woff2')format("woff");}.ff6_c01121{font-family:ff6_c01121;line-height:1.432129;font-style:normal;font-weight: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_c01121;src:url('chunks/assets/font_a76c8afca2b71175d2f9c37a.woff2')format("woff");}.ff7_c01121{font-family:ff7_c01121;line-height:1.432129;font-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_c01121{transform:matrix(0.192661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192661,0.000000,0.000000,0.250000,0,0);}
.m6_c01121{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m1a_c01121{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m1b_c01121{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.me_c01121{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m7_c01121{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m3_c01121{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m17_c01121{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m1c_c01121{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m10_c01121{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m2_c01121{transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245726,0.000000,0.000000,0.250000,0,0);}
.m19_c01121{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.mc_c01121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01121{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.md_c01121{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m9_c01121{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m5_c01121{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m8_c01121{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.ma_c01121{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m1_c01121{transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278761,0.000000,0.000000,0.250000,0,0);}
.m15_c01121{transform:matrix(0.295732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295732,0.000000,0.000000,0.250000,0,0);}
.mf_c01121{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.m18_c01121{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m16_c01121{transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319620,0.000000,0.000000,0.250000,0,0);}
.m11_c01121{transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);}
.m12_c01121{transform:matrix(0.343960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343960,0.000000,0.000000,0.250000,0,0);}
.mb_c01121{transform:matrix(0.352273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352273,0.000000,0.000000,0.250000,0,0);}
.m14_c01121{transform:matrix(0.395570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395570,0.000000,0.000000,0.250000,0,0);}
.m13_c01121{transform:matrix(0.673611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673611,0.000000,0.000000,0.250000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.ls7_c01121{letter-spacing:-22.130550px;}
.ls20_c01121{letter-spacing:-10.902593px;}
.ls9_c01121{letter-spacing:-10.709250px;}
.ls14_c01121{letter-spacing:-8.914500px;}
.ls10_c01121{letter-spacing:-6.395925px;}
.ls12_c01121{letter-spacing:-5.196713px;}
.ls13_c01121{letter-spacing:-5.111100px;}
.ls1c_c01121{letter-spacing:-4.862348px;}
.ls11_c01121{letter-spacing:-4.456463px;}
.ls19_c01121{letter-spacing:-4.132875px;}
.ls1b_c01121{letter-spacing:-4.053428px;}
.ls17_c01121{letter-spacing:-3.749288px;}
.lsf_c01121{letter-spacing:-3.717000px;}
.lsb_c01121{letter-spacing:-3.242903px;}
.ls18_c01121{letter-spacing:-2.971800px;}
.ls2_c01121{letter-spacing:-2.968875px;}
.ls6_c01121{letter-spacing:-2.695050px;}
.lsd_c01121{letter-spacing:-2.431575px;}
.ls3_c01121{letter-spacing:-2.229413px;}
.lsa_c01121{letter-spacing:-2.184000px;}
.ls1a_c01121{letter-spacing:-1.890608px;}
.ls15_c01121{letter-spacing:-1.621050px;}
.ls5_c01121{letter-spacing:-1.489163px;}
.ls21_c01121{letter-spacing:-1.173743px;}
.ls8_c01121{letter-spacing:-0.810525px;}
.ls23_c01121{letter-spacing:-0.768450px;}
.ls4_c01121{letter-spacing:-0.740250px;}
.ls1f_c01121{letter-spacing:-0.556200px;}
.lsc_c01121{letter-spacing:0.000000px;}
.ls1_c01121{letter-spacing:0.810525px;}
.ls1e_c01121{letter-spacing:1.095150px;}
.ls16_c01121{letter-spacing:1.405050px;}
.ls22_c01121{letter-spacing:1.545180px;}
.lse_c01121{letter-spacing:1.621800px;}
.ls0_c01121{letter-spacing:2.229413px;}
.ls1d_c01121{letter-spacing:3.924375px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01121{word-spacing:0.000000px;}
._12_c01121{margin-left:-18.755219px;}
._14_c01121{margin-left:-11.306836px;}
._b_c01121{margin-left:-8.137356px;}
._5_c01121{margin-left:-3.958673px;}
._6_c01121{margin-left:-1.945274px;}
._f_c01121{width:1.387180px;}
._3_c01121{width:2.447641px;}
._7_c01121{width:3.935002px;}
._2_c01121{width:5.951940px;}
._0_c01121{width:7.714320px;}
._1_c01121{width:9.649074px;}
._8_c01121{width:11.262038px;}
._11_c01121{width:12.686946px;}
._4_c01121{width:15.039021px;}
._a_c01121{width:17.118631px;}
._9_c01121{width:19.592584px;}
._13_c01121{width:20.702390px;}
._c_c01121{width:22.998984px;}
._10_c01121{width:26.530756px;}
._d_c01121{width:32.854619px;}
._e_c01121{width:36.003443px;}
.fc0_c01121{color:transparent;}
.fsd_c01121{font-size:27.000000px;}
.fs8_c01121{font-size:43.500000px;}
.fs9_c01121{font-size:49.500000px;}
.fse_c01121{font-size:59.250000px;}
.fsf_c01121{font-size:61.500000px;}
.fs11_c01121{font-size:76.500000px;}
.fs5_c01121{font-size:78.000000px;}
.fs0_c01121{font-size:78.750000px;}
.fs6_c01121{font-size:79.500000px;}
.fs3_c01121{font-size:80.250000px;}
.fs7_c01121{font-size:81.000000px;}
.fs4_c01121{font-size:81.750000px;}
.fsa_c01121{font-size:83.250000px;}
.fs1_c01121{font-size:84.750000px;}
.fsb_c01121{font-size:86.250000px;}
.fs2_c01121{font-size:87.750000px;}
.fs10_c01121{font-size:96.000000px;}
.fsc_c01121{font-size:111.750000px;}
.y0_c01121{bottom:0.000000px;}
.y1f_c01121{bottom:178.560315px;}
.y1e_c01121{bottom:208.440585px;}
.y1d_c01121{bottom:238.680495px;}
.y1c_c01121{bottom:267.839535px;}
.y1b_c01121{bottom:267.840525px;}
.y1a_c01121{bottom:357.479685px;}
.y19_c01121{bottom:387.719565px;}
.y18_c01121{bottom:418.320285px;}
.y17_c01121{bottom:429.121035px;}
.y16_c01121{bottom:478.080000px;}
.y15_c01121{bottom:507.240420px;}
.y14_c01121{bottom:537.480285px;}
.y13_c01121{bottom:537.480375px;}
.y12_c01121{bottom:597.239820px;}
.y11_c01121{bottom:626.759535px;}
.y10_c01121{bottom:657.001050px;}
.yf_c01121{bottom:716.760720px;}
.ye_c01121{bottom:746.280435px;}
.yd_c01121{bottom:752.400885px;}
.yc_c01121{bottom:776.879730px;}
.yb_c01121{bottom:835.920600px;}
.ya_c01121{bottom:866.161260px;}
.y8_c01121{bottom:896.040945px;}
.y9_c01121{bottom:896.040990px;}
.y6_c01121{bottom:926.280150px;}
.y7_c01121{bottom:926.280855px;}
.y5_c01121{bottom:986.399775px;}
.y4_c01121{bottom:1015.559895px;}
.y3_c01121{bottom:1045.079955px;}
.y2_c01121{bottom:1075.680720px;}
.y1_c01121{bottom:1135.440315px;}
.h11_c01121{height:28.160156px;}
.hb_c01121{height:42.671631px;}
.hc_c01121{height:48.557373px;}
.h14_c01121{height:58.150635px;}
.h12_c01121{height:61.795898px;}
.h13_c01121{height:61.980469px;}
.h18_c01121{height:75.080566px;}
.h7_c01121{height:76.514648px;}
.h6_c01121{height:76.552734px;}
.h1_c01121{height:77.288818px;}
.h8_c01121{height:77.986084px;}
.h17_c01121{height:78.024902px;}
.h15_c01121{height:78.609375px;}
.h4_c01121{height:78.721802px;}
.h9_c01121{height:78.760986px;}
.hd_c01121{height:79.365234px;}
.ha_c01121{height:79.497070px;}
.h19_c01121{height:80.233154px;}
.h5_c01121{height:80.791992px;}
.he_c01121{height:81.705322px;}
.h2_c01121{height:83.756836px;}
.h3_c01121{height:86.721680px;}
.hf_c01121{height:89.956055px;}
.h16_c01121{height:100.125000px;}
.h10_c01121{height:116.551758px;}
.h0_c01121{height:1263.000000px;}
.w0_c01121{width:892.500000px;}
.x0_c01121{left:0.000000px;}
.x4_c01121{left:131.399250px;}
.x1_c01121{left:132.839565px;}
.xe_c01121{left:134.279805px;}
.x1d_c01121{left:136.079400px;}
.x18_c01121{left:145.798950px;}
.x19_c01121{left:164.158785px;}
.x15_c01121{left:173.519100px;}
.x13_c01121{left:200.159850px;}
.x12_c01121{left:202.679700px;}
.x2_c01121{left:214.198785px;}
.x14_c01121{left:223.918350px;}
.x5_c01121{left:225.719535px;}
.x1a_c01121{left:235.439250px;}
.x3_c01121{left:244.799535px;}
.xc_c01121{left:286.199385px;}
.xd_c01121{left:318.238785px;}
.x1f_c01121{left:324.000000px;}
.x27_c01121{left:325.079385px;}
.x11_c01121{left:334.439685px;}
.x1b_c01121{left:336.598530px;}
.x16_c01121{left:341.998950px;}
.x22_c01121{left:360.358635px;}
.x1c_c01121{left:368.998950px;}
.x17_c01121{left:371.159385px;}
.x23_c01121{left:379.079385px;}
.x24_c01121{left:394.558635px;}
.x20_c01121{left:406.799565px;}
.x21_c01121{left:417.598530px;}
.x6_c01121{left:463.319235px;}
.x7_c01121{left:485.639100px;}
.x8_c01121{left:545.398635px;}
.x9_c01121{left:559.798515px;}
.x25_c01121{left:596.519670px;}
.x26_c01121{left:629.279250px;}
.xf_c01121{left:672.119385px;}
.xa_c01121{left:674.279850px;}
.xb_c01121{left:699.478635px;}
.x10_c01121{left:703.438620px;}
.x1e_c01121{left:722.879520px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls7_c01121{letter-spacing:-19.671600pt;}
.ls20_c01121{letter-spacing:-9.691193pt;}
.ls9_c01121{letter-spacing:-9.519333pt;}
.ls14_c01121{letter-spacing:-7.924000pt;}
.ls10_c01121{letter-spacing:-5.685267pt;}
.ls12_c01121{letter-spacing:-4.619300pt;}
.ls13_c01121{letter-spacing:-4.543200pt;}
.ls1c_c01121{letter-spacing:-4.322087pt;}
.ls11_c01121{letter-spacing:-3.961300pt;}
.ls19_c01121{letter-spacing:-3.673667pt;}
.ls1b_c01121{letter-spacing:-3.603047pt;}
.ls17_c01121{letter-spacing:-3.332700pt;}
.lsf_c01121{letter-spacing:-3.304000pt;}
.lsb_c01121{letter-spacing:-2.882580pt;}
.ls18_c01121{letter-spacing:-2.641600pt;}
.ls2_c01121{letter-spacing:-2.639000pt;}
.ls6_c01121{letter-spacing:-2.395600pt;}
.lsd_c01121{letter-spacing:-2.161400pt;}
.ls3_c01121{letter-spacing:-1.981700pt;}
.lsa_c01121{letter-spacing:-1.941333pt;}
.ls1a_c01121{letter-spacing:-1.680540pt;}
.ls15_c01121{letter-spacing:-1.440933pt;}
.ls5_c01121{letter-spacing:-1.323700pt;}
.ls21_c01121{letter-spacing:-1.043327pt;}
.ls8_c01121{letter-spacing:-0.720467pt;}
.ls23_c01121{letter-spacing:-0.683067pt;}
.ls4_c01121{letter-spacing:-0.658000pt;}
.ls1f_c01121{letter-spacing:-0.494400pt;}
.lsc_c01121{letter-spacing:0.000000pt;}
.ls1_c01121{letter-spacing:0.720467pt;}
.ls1e_c01121{letter-spacing:0.973467pt;}
.ls16_c01121{letter-spacing:1.248933pt;}
.ls22_c01121{letter-spacing:1.373493pt;}
.lse_c01121{letter-spacing:1.441600pt;}
.ls0_c01121{letter-spacing:1.981700pt;}
.ls1d_c01121{letter-spacing:3.488333pt;}
.ws0_c01121{word-spacing:0.000000pt;}
._12_c01121{margin-left:-16.671306pt;}
._14_c01121{margin-left:-10.050521pt;}
._b_c01121{margin-left:-7.233206pt;}
._5_c01121{margin-left:-3.518821pt;}
._6_c01121{margin-left:-1.729132pt;}
._f_c01121{width:1.233049pt;}
._3_c01121{width:2.175681pt;}
._7_c01121{width:3.497779pt;}
._2_c01121{width:5.290613pt;}
._0_c01121{width:6.857174pt;}
._1_c01121{width:8.576955pt;}
._8_c01121{width:10.010700pt;}
._11_c01121{width:11.277285pt;}
._4_c01121{width:13.368019pt;}
._a_c01121{width:15.216561pt;}
._9_c01121{width:17.415630pt;}
._13_c01121{width:18.402125pt;}
._c_c01121{width:20.443541pt;}
._10_c01121{width:23.582894pt;}
._d_c01121{width:29.204106pt;}
._e_c01121{width:32.003060pt;}
.fsd_c01121{font-size:24.000000pt;}
.fs8_c01121{font-size:38.666667pt;}
.fs9_c01121{font-size:44.000000pt;}
.fse_c01121{font-size:52.666667pt;}
.fsf_c01121{font-size:54.666667pt;}
.fs11_c01121{font-size:68.000000pt;}
.fs5_c01121{font-size:69.333333pt;}
.fs0_c01121{font-size:70.000000pt;}
.fs6_c01121{font-size:70.666667pt;}
.fs3_c01121{font-size:71.333333pt;}
.fs7_c01121{font-size:72.000000pt;}
.fs4_c01121{font-size:72.666667pt;}
.fsa_c01121{font-size:74.000000pt;}
.fs1_c01121{font-size:75.333333pt;}
.fsb_c01121{font-size:76.666667pt;}
.fs2_c01121{font-size:78.000000pt;}
.fs10_c01121{font-size:85.333333pt;}
.fsc_c01121{font-size:99.333333pt;}
.y0_c01121{bottom:0.000000pt;}
.y1f_c01121{bottom:158.720280pt;}
.y1e_c01121{bottom:185.280520pt;}
.y1d_c01121{bottom:212.160440pt;}
.y1c_c01121{bottom:238.079587pt;}
.y1b_c01121{bottom:238.080467pt;}
.y1a_c01121{bottom:317.759720pt;}
.y19_c01121{bottom:344.639613pt;}
.y18_c01121{bottom:371.840253pt;}
.y17_c01121{bottom:381.440920pt;}
.y16_c01121{bottom:424.960000pt;}
.y15_c01121{bottom:450.880373pt;}
.y14_c01121{bottom:477.760253pt;}
.y13_c01121{bottom:477.760333pt;}
.y12_c01121{bottom:530.879840pt;}
.y11_c01121{bottom:557.119587pt;}
.y10_c01121{bottom:584.000933pt;}
.yf_c01121{bottom:637.120640pt;}
.ye_c01121{bottom:663.360387pt;}
.yd_c01121{bottom:668.800787pt;}
.yc_c01121{bottom:690.559760pt;}
.yb_c01121{bottom:743.040533pt;}
.ya_c01121{bottom:769.921120pt;}
.y8_c01121{bottom:796.480840pt;}
.y9_c01121{bottom:796.480880pt;}
.y6_c01121{bottom:823.360133pt;}
.y7_c01121{bottom:823.360760pt;}
.y5_c01121{bottom:876.799800pt;}
.y4_c01121{bottom:902.719907pt;}
.y3_c01121{bottom:928.959960pt;}
.y2_c01121{bottom:956.160640pt;}
.y1_c01121{bottom:1009.280280pt;}
.h11_c01121{height:25.031250pt;}
.hb_c01121{height:37.930339pt;}
.hc_c01121{height:43.162109pt;}
.h14_c01121{height:51.689453pt;}
.h12_c01121{height:54.929688pt;}
.h13_c01121{height:55.093750pt;}
.h18_c01121{height:66.738281pt;}
.h7_c01121{height:68.013021pt;}
.h6_c01121{height:68.046875pt;}
.h1_c01121{height:68.701172pt;}
.h8_c01121{height:69.320964pt;}
.h17_c01121{height:69.355469pt;}
.h15_c01121{height:69.875000pt;}
.h4_c01121{height:69.974935pt;}
.h9_c01121{height:70.009766pt;}
.hd_c01121{height:70.546875pt;}
.ha_c01121{height:70.664062pt;}
.h19_c01121{height:71.318359pt;}
.h5_c01121{height:71.815104pt;}
.he_c01121{height:72.626953pt;}
.h2_c01121{height:74.450521pt;}
.h3_c01121{height:77.085938pt;}
.hf_c01121{height:79.960938pt;}
.h16_c01121{height:89.000000pt;}
.h10_c01121{height:103.601562pt;}
.h0_c01121{height:1122.666667pt;}
.w0_c01121{width:793.333333pt;}
.x0_c01121{left:0.000000pt;}
.x4_c01121{left:116.799333pt;}
.x1_c01121{left:118.079613pt;}
.xe_c01121{left:119.359827pt;}
.x1d_c01121{left:120.959467pt;}
.x18_c01121{left:129.599067pt;}
.x19_c01121{left:145.918920pt;}
.x15_c01121{left:154.239200pt;}
.x13_c01121{left:177.919867pt;}
.x12_c01121{left:180.159733pt;}
.x2_c01121{left:190.398920pt;}
.x14_c01121{left:199.038533pt;}
.x5_c01121{left:200.639587pt;}
.x1a_c01121{left:209.279333pt;}
.x3_c01121{left:217.599587pt;}
.xc_c01121{left:254.399453pt;}
.xd_c01121{left:282.878920pt;}
.x1f_c01121{left:288.000000pt;}
.x27_c01121{left:288.959453pt;}
.x11_c01121{left:297.279720pt;}
.x1b_c01121{left:299.198693pt;}
.x16_c01121{left:303.999067pt;}
.x22_c01121{left:320.318787pt;}
.x1c_c01121{left:327.999067pt;}
.x17_c01121{left:329.919453pt;}
.x23_c01121{left:336.959453pt;}
.x24_c01121{left:350.718787pt;}
.x20_c01121{left:361.599613pt;}
.x21_c01121{left:371.198693pt;}
.x6_c01121{left:411.839320pt;}
.x7_c01121{left:431.679200pt;}
.x8_c01121{left:484.798787pt;}
.x9_c01121{left:497.598680pt;}
.x25_c01121{left:530.239707pt;}
.x26_c01121{left:559.359333pt;}
.xf_c01121{left:597.439453pt;}
.xa_c01121{left:599.359867pt;}
.xb_c01121{left:621.758787pt;}
.x10_c01121{left:625.278773pt;}
.x1e_c01121{left:642.559573pt;}
}





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

.ir_c01122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_aed1938963a8f3d9e58a2fa1.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01122;src:url('chunks/assets/font_a7a8b838e7bd3fe683e529f1.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01122;src:url('chunks/assets/font_d8d7d77204892ef3714b1aee.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01122;src:url('chunks/assets/font_33999e6cdfcda4b3bd62c56d.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01122;src:url('chunks/assets/font_da110125260b26fb0254fced.woff2')format("woff");}.ff5_c01122{font-family:ff5_c01122;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01122;src:url('chunks/assets/font_6ee7aee3f274da86f19437f7.woff2')format("woff");}.ff6_c01122{font-family:ff6_c01122;line-height:1.432129;font-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_c01122{transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199561,0.000000,0.000000,0.250000,0,0);}
.m9_c01122{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c01122{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c01122{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m19_c01122{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m4_c01122{transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);}
.m11_c01122{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m3_c01122{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m7_c01122{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m0_c01122{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m14_c01122{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m5_c01122{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m6_c01122{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1_c01122{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m17_c01122{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m2_c01122{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.md_c01122{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mc_c01122{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.me_c01122{transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);}
.ma_c01122{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m10_c01122{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_c01122{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m18_c01122{transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);}
.m15_c01122{transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299020,0.000000,0.000000,0.250000,0,0);}
.mb_c01122{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m13_c01122{transform:matrix(0.317927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317927,0.000000,0.000000,0.250000,0,0);}
.v0_c01122{vertical-align:0.000000px;}
.ls23_c01122{letter-spacing:-12.236400px;}
.ls1c_c01122{letter-spacing:-8.861325px;}
.ls25_c01122{letter-spacing:-8.827500px;}
.ls1f_c01122{letter-spacing:-7.275728px;}
.ls18_c01122{letter-spacing:-6.600825px;}
.ls19_c01122{letter-spacing:-6.575250px;}
.ls13_c01122{letter-spacing:-6.574950px;}
.lsa_c01122{letter-spacing:-5.300663px;}
.ls1b_c01122{letter-spacing:-5.083943px;}
.ls26_c01122{letter-spacing:-4.952475px;}
.ls22_c01122{letter-spacing:-4.748625px;}
.ls1d_c01122{letter-spacing:-4.629623px;}
.ls1a_c01122{letter-spacing:-4.456463px;}
.ls11_c01122{letter-spacing:-3.860025px;}
.lsb_c01122{letter-spacing:-3.787875px;}
.lsc_c01122{letter-spacing:-3.296700px;}
.ls17_c01122{letter-spacing:-3.209198px;}
.ls3_c01122{letter-spacing:-3.089625px;}
.ls4_c01122{letter-spacing:-3.031875px;}
.ls24_c01122{letter-spacing:-2.712000px;}
.ls1_c01122{letter-spacing:-2.425500px;}
.lsd_c01122{letter-spacing:-2.407500px;}
.lsf_c01122{letter-spacing:-2.315250px;}
.ls2_c01122{letter-spacing:-2.310398px;}
.ls7_c01122{letter-spacing:-2.267213px;}
.ls5_c01122{letter-spacing:-1.650000px;}
.lse_c01122{letter-spacing:-1.605000px;}
.ls21_c01122{letter-spacing:-1.540800px;}
.ls8_c01122{letter-spacing:-1.512000px;}
.ls15_c01122{letter-spacing:-0.801698px;}
.ls10_c01122{letter-spacing:-0.770400px;}
.ls9_c01122{letter-spacing:-0.756000px;}
.ls14_c01122{letter-spacing:0.000000px;}
.ls16_c01122{letter-spacing:0.816683px;}
.ls0_c01122{letter-spacing:1.605000px;}
.ls6_c01122{letter-spacing:2.542500px;}
.ls12_c01122{letter-spacing:3.269183px;}
.ls1e_c01122{letter-spacing:3.299175px;}
.ls20_c01122{letter-spacing:4.391100px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01122{word-spacing:0.000000px;}
._11_c01122{margin-left:-9.710360px;}
._f_c01122{margin-left:-6.686238px;}
._e_c01122{margin-left:-5.165455px;}
._d_c01122{margin-left:-3.964457px;}
._b_c01122{margin-left:-1.700818px;}
._10_c01122{width:1.426405px;}
._8_c01122{width:3.378193px;}
._18_c01122{width:4.848456px;}
._c_c01122{width:5.946461px;}
._9_c01122{width:7.321993px;}
._a_c01122{width:9.462181px;}
._17_c01122{width:10.550074px;}
._0_c01122{width:11.866382px;}
._12_c01122{width:13.762168px;}
._7_c01122{width:14.836439px;}
._6_c01122{width:17.109074px;}
._14_c01122{width:19.703055px;}
._1_c01122{width:21.034670px;}
._3_c01122{width:23.223072px;}
._5_c01122{width:25.396330px;}
._15_c01122{width:28.232481px;}
._2_c01122{width:30.552637px;}
._4_c01122{width:32.948939px;}
._13_c01122{width:34.414235px;}
._16_c01122{width:51.116443px;}
._19_c01122{width:57.110045px;}
.fc0_c01122{color:transparent;}
.fs8_c01122{font-size:68.250000px;}
.fsc_c01122{font-size:72.750000px;}
.fs4_c01122{font-size:74.250000px;}
.fsd_c01122{font-size:76.500000px;}
.fsb_c01122{font-size:76.776060px;}
.fse_c01122{font-size:77.250000px;}
.fs9_c01122{font-size:78.000000px;}
.fs2_c01122{font-size:78.750000px;}
.fsa_c01122{font-size:79.500000px;}
.fs1_c01122{font-size:80.250000px;}
.fs5_c01122{font-size:81.750000px;}
.fs0_c01122{font-size:82.500000px;}
.fs3_c01122{font-size:84.750000px;}
.fs6_c01122{font-size:85.500000px;}
.fs7_c01122{font-size:96.000000px;}
.y0_c01122{bottom:0.000000px;}
.y20_c01122{bottom:179.639700px;}
.y1f_c01122{bottom:179.639850px;}
.y1e_c01122{bottom:209.159385px;}
.y1d_c01122{bottom:268.918950px;}
.y1c_c01122{bottom:298.438635px;}
.y1b_c01122{bottom:328.319250px;}
.y1a_c01122{bottom:387.719565px;}
.y19_c01122{bottom:417.600135px;}
.y18_c01122{bottom:417.601095px;}
.y17_c01122{bottom:448.199385px;}
.y16_c01122{bottom:508.319820px;}
.y15_c01122{bottom:537.839535px;}
.y14_c01122{bottom:567.720150px;}
.y13_c01122{bottom:626.759535px;}
.y11_c01122{bottom:656.639445px;}
.y12_c01122{bottom:656.640150px;}
.y10_c01122{bottom:686.879355px;}
.yf_c01122{bottom:716.759085px;}
.ye_c01122{bottom:776.879520px;}
.yd_c01122{bottom:807.119385px;}
.yc_c01122{bottom:807.119565px;}
.yb_c01122{bottom:836.639100px;}
.ya_c01122{bottom:836.639280px;}
.y9_c01122{bottom:866.158815px;}
.y8_c01122{bottom:926.279205px;}
.y7_c01122{bottom:955.798920px;}
.y6_c01122{bottom:986.038875px;}
.y5_c01122{bottom:1045.800105px;}
.y3_c01122{bottom:1076.039700px;}
.y4_c01122{bottom:1076.039985px;}
.y2_c01122{bottom:1106.279610px;}
.y1_c01122{bottom:1135.438665px;}
.hd_c01122{height:67.450195px;}
.h5_c01122{height:74.830078px;}
.h12_c01122{height:75.080566px;}
.h10_c01122{height:75.351504px;}
.h13_c01122{height:75.816650px;}
.h11_c01122{height:75.875977px;}
.he_c01122{height:76.514648px;}
.h3_c01122{height:77.288818px;}
.h6_c01122{height:78.721802px;}
.h15_c01122{height:78.760986px;}
.h7_c01122{height:79.365234px;}
.hf_c01122{height:80.121094px;}
.h2_c01122{height:80.876953px;}
.ha_c01122{height:80.969238px;}
.hb_c01122{height:82.133789px;}
.h8_c01122{height:82.388672px;}
.h1_c01122{height:83.144531px;}
.h14_c01122{height:83.756836px;}
.h9_c01122{height:84.498047px;}
.h4_c01122{height:85.412109px;}
.hc_c01122{height:100.125000px;}
.h0_c01122{height:1263.000000px;}
.w0_c01122{width:892.500000px;}
.x0_c01122{left:0.000000px;}
.xd_c01122{left:134.639100px;}
.x1_c01122{left:136.438665px;}
.x7_c01122{left:138.239160px;}
.x19_c01122{left:156.958950px;}
.x13_c01122{left:158.040000px;}
.xe_c01122{left:169.199850px;}
.x29_c01122{left:176.759100px;}
.x2a_c01122{left:202.679700px;}
.x27_c01122{left:216.000000px;}
.xa_c01122{left:217.079385px;}
.x2_c01122{left:244.438635px;}
.x28_c01122{left:273.239850px;}
.x16_c01122{left:280.439685px;}
.x18_c01122{left:294.119385px;}
.x2b_c01122{left:302.039385px;}
.x17_c01122{left:312.838515px;}
.x2c_c01122{left:316.080000px;}
.x1c_c01122{left:317.159385px;}
.x9_c01122{left:325.438635px;}
.x1d_c01122{left:331.918350px;}
.xb_c01122{left:343.080000px;}
.x3_c01122{left:360.719535px;}
.xc_c01122{left:375.478635px;}
.x1f_c01122{left:385.199850px;}
.x4_c01122{left:386.638500px;}
.x20_c01122{left:400.319820px;}
.x1a_c01122{left:416.878320px;}
.x1b_c01122{left:429.839535px;}
.x11_c01122{left:449.998950px;}
.x8_c01122{left:457.559685px;}
.x12_c01122{left:458.639100px;}
.x14_c01122{left:460.079400px;}
.xf_c01122{left:476.278800px;}
.x21_c01122{left:482.039985px;}
.x10_c01122{left:488.519670px;}
.x5_c01122{left:490.319235px;}
.x22_c01122{left:505.439250px;}
.x15_c01122{left:509.039985px;}
.x6_c01122{left:519.479685px;}
.x1e_c01122{left:542.878920px;}
.x23_c01122{left:584.998950px;}
.x24_c01122{left:609.479235px;}
.x2d_c01122{left:655.559100px;}
.x25_c01122{left:688.318770px;}
.x2e_c01122{left:699.119385px;}
.x26_c01122{left:739.798920px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls23_c01122{letter-spacing:-10.876800pt;}
.ls1c_c01122{letter-spacing:-7.876733pt;}
.ls25_c01122{letter-spacing:-7.846667pt;}
.ls1f_c01122{letter-spacing:-6.467313pt;}
.ls18_c01122{letter-spacing:-5.867400pt;}
.ls19_c01122{letter-spacing:-5.844667pt;}
.ls13_c01122{letter-spacing:-5.844400pt;}
.lsa_c01122{letter-spacing:-4.711700pt;}
.ls1b_c01122{letter-spacing:-4.519060pt;}
.ls26_c01122{letter-spacing:-4.402200pt;}
.ls22_c01122{letter-spacing:-4.221000pt;}
.ls1d_c01122{letter-spacing:-4.115220pt;}
.ls1a_c01122{letter-spacing:-3.961300pt;}
.ls11_c01122{letter-spacing:-3.431133pt;}
.lsb_c01122{letter-spacing:-3.367000pt;}
.lsc_c01122{letter-spacing:-2.930400pt;}
.ls17_c01122{letter-spacing:-2.852620pt;}
.ls3_c01122{letter-spacing:-2.746333pt;}
.ls4_c01122{letter-spacing:-2.695000pt;}
.ls24_c01122{letter-spacing:-2.410667pt;}
.ls1_c01122{letter-spacing:-2.156000pt;}
.lsd_c01122{letter-spacing:-2.140000pt;}
.lsf_c01122{letter-spacing:-2.058000pt;}
.ls2_c01122{letter-spacing:-2.053687pt;}
.ls7_c01122{letter-spacing:-2.015300pt;}
.ls5_c01122{letter-spacing:-1.466667pt;}
.lse_c01122{letter-spacing:-1.426667pt;}
.ls21_c01122{letter-spacing:-1.369600pt;}
.ls8_c01122{letter-spacing:-1.344000pt;}
.ls15_c01122{letter-spacing:-0.712620pt;}
.ls10_c01122{letter-spacing:-0.684800pt;}
.ls9_c01122{letter-spacing:-0.672000pt;}
.ls14_c01122{letter-spacing:0.000000pt;}
.ls16_c01122{letter-spacing:0.725940pt;}
.ls0_c01122{letter-spacing:1.426667pt;}
.ls6_c01122{letter-spacing:2.260000pt;}
.ls12_c01122{letter-spacing:2.905940pt;}
.ls1e_c01122{letter-spacing:2.932600pt;}
.ls20_c01122{letter-spacing:3.903200pt;}
.ws0_c01122{word-spacing:0.000000pt;}
._11_c01122{margin-left:-8.631431pt;}
._f_c01122{margin-left:-5.943323pt;}
._e_c01122{margin-left:-4.591515pt;}
._d_c01122{margin-left:-3.523962pt;}
._b_c01122{margin-left:-1.511838pt;}
._10_c01122{width:1.267915pt;}
._8_c01122{width:3.002838pt;}
._18_c01122{width:4.309738pt;}
._c_c01122{width:5.285743pt;}
._9_c01122{width:6.508438pt;}
._a_c01122{width:8.410828pt;}
._17_c01122{width:9.377844pt;}
._0_c01122{width:10.547895pt;}
._12_c01122{width:12.233038pt;}
._7_c01122{width:13.187946pt;}
._6_c01122{width:15.208066pt;}
._14_c01122{width:17.513827pt;}
._1_c01122{width:18.697485pt;}
._3_c01122{width:20.642731pt;}
._5_c01122{width:22.574515pt;}
._15_c01122{width:25.095538pt;}
._2_c01122{width:27.157900pt;}
._4_c01122{width:29.287946pt;}
._13_c01122{width:30.590431pt;}
._16_c01122{width:45.436838pt;}
._19_c01122{width:50.764485pt;}
.fs8_c01122{font-size:60.666667pt;}
.fsc_c01122{font-size:64.666667pt;}
.fs4_c01122{font-size:66.000000pt;}
.fsd_c01122{font-size:68.000000pt;}
.fsb_c01122{font-size:68.245387pt;}
.fse_c01122{font-size:68.666667pt;}
.fs9_c01122{font-size:69.333333pt;}
.fs2_c01122{font-size:70.000000pt;}
.fsa_c01122{font-size:70.666667pt;}
.fs1_c01122{font-size:71.333333pt;}
.fs5_c01122{font-size:72.666667pt;}
.fs0_c01122{font-size:73.333333pt;}
.fs3_c01122{font-size:75.333333pt;}
.fs6_c01122{font-size:76.000000pt;}
.fs7_c01122{font-size:85.333333pt;}
.y0_c01122{bottom:0.000000pt;}
.y20_c01122{bottom:159.679733pt;}
.y1f_c01122{bottom:159.679867pt;}
.y1e_c01122{bottom:185.919453pt;}
.y1d_c01122{bottom:239.039067pt;}
.y1c_c01122{bottom:265.278787pt;}
.y1b_c01122{bottom:291.839333pt;}
.y1a_c01122{bottom:344.639613pt;}
.y19_c01122{bottom:371.200120pt;}
.y18_c01122{bottom:371.200973pt;}
.y17_c01122{bottom:398.399453pt;}
.y16_c01122{bottom:451.839840pt;}
.y15_c01122{bottom:478.079587pt;}
.y14_c01122{bottom:504.640133pt;}
.y13_c01122{bottom:557.119587pt;}
.y11_c01122{bottom:583.679507pt;}
.y12_c01122{bottom:583.680133pt;}
.y10_c01122{bottom:610.559427pt;}
.yf_c01122{bottom:637.119187pt;}
.ye_c01122{bottom:690.559573pt;}
.yd_c01122{bottom:717.439453pt;}
.yc_c01122{bottom:717.439613pt;}
.yb_c01122{bottom:743.679200pt;}
.ya_c01122{bottom:743.679360pt;}
.y9_c01122{bottom:769.918947pt;}
.y8_c01122{bottom:823.359293pt;}
.y7_c01122{bottom:849.599040pt;}
.y6_c01122{bottom:876.479000pt;}
.y5_c01122{bottom:929.600093pt;}
.y3_c01122{bottom:956.479733pt;}
.y4_c01122{bottom:956.479987pt;}
.y2_c01122{bottom:983.359653pt;}
.y1_c01122{bottom:1009.278813pt;}
.hd_c01122{height:59.955729pt;}
.h5_c01122{height:66.515625pt;}
.h12_c01122{height:66.738281pt;}
.h10_c01122{height:66.979115pt;}
.h13_c01122{height:67.392578pt;}
.h11_c01122{height:67.445312pt;}
.he_c01122{height:68.013021pt;}
.h3_c01122{height:68.701172pt;}
.h6_c01122{height:69.974935pt;}
.h15_c01122{height:70.009766pt;}
.h7_c01122{height:70.546875pt;}
.hf_c01122{height:71.218750pt;}
.h2_c01122{height:71.890625pt;}
.ha_c01122{height:71.972656pt;}
.hb_c01122{height:73.007812pt;}
.h8_c01122{height:73.234375pt;}
.h1_c01122{height:73.906250pt;}
.h14_c01122{height:74.450521pt;}
.h9_c01122{height:75.109375pt;}
.h4_c01122{height:75.921875pt;}
.hc_c01122{height:89.000000pt;}
.h0_c01122{height:1122.666667pt;}
.w0_c01122{width:793.333333pt;}
.x0_c01122{left:0.000000pt;}
.xd_c01122{left:119.679200pt;}
.x1_c01122{left:121.278813pt;}
.x7_c01122{left:122.879253pt;}
.x19_c01122{left:139.519067pt;}
.x13_c01122{left:140.480000pt;}
.xe_c01122{left:150.399867pt;}
.x29_c01122{left:157.119200pt;}
.x2a_c01122{left:180.159733pt;}
.x27_c01122{left:192.000000pt;}
.xa_c01122{left:192.959453pt;}
.x2_c01122{left:217.278787pt;}
.x28_c01122{left:242.879867pt;}
.x16_c01122{left:249.279720pt;}
.x18_c01122{left:261.439453pt;}
.x2b_c01122{left:268.479453pt;}
.x17_c01122{left:278.078680pt;}
.x2c_c01122{left:280.960000pt;}
.x1c_c01122{left:281.919453pt;}
.x9_c01122{left:289.278787pt;}
.x1d_c01122{left:295.038533pt;}
.xb_c01122{left:304.960000pt;}
.x3_c01122{left:320.639587pt;}
.xc_c01122{left:333.758787pt;}
.x1f_c01122{left:342.399867pt;}
.x4_c01122{left:343.678667pt;}
.x20_c01122{left:355.839840pt;}
.x1a_c01122{left:370.558507pt;}
.x1b_c01122{left:382.079587pt;}
.x11_c01122{left:399.999067pt;}
.x8_c01122{left:406.719720pt;}
.x12_c01122{left:407.679200pt;}
.x14_c01122{left:408.959467pt;}
.xf_c01122{left:423.358933pt;}
.x21_c01122{left:428.479987pt;}
.x10_c01122{left:434.239707pt;}
.x5_c01122{left:435.839320pt;}
.x22_c01122{left:449.279333pt;}
.x15_c01122{left:452.479987pt;}
.x6_c01122{left:461.759720pt;}
.x1e_c01122{left:482.559040pt;}
.x23_c01122{left:519.999067pt;}
.x24_c01122{left:541.759320pt;}
.x2d_c01122{left:582.719200pt;}
.x25_c01122{left:611.838907pt;}
.x2e_c01122{left:621.439453pt;}
.x26_c01122{left:657.599040pt;}
}





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

.ir_c01123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_98b675af7e5dbc783b0bc2df.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01123;src:url('chunks/assets/font_218ada9c3c9345855a5f73d8.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01123;src:url('chunks/assets/font_59212191956bccd623dad18e.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01123;src:url('chunks/assets/font_471c9f3006ed4bf308616b35.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01123;src:url('chunks/assets/font_ee22ef1119e859cba7c7dc6b.woff2')format("woff");}.ff5_c01123{font-family:ff5_c01123;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01123;src:url('chunks/assets/font_0952ca138d5b0e06ba5c5e69.woff2')format("woff");}.ff6_c01123{font-family:ff6_c01123;line-height:1.432129;font-style:normal;font-weight: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_c01123;src:url('chunks/assets/font_843f74b680232dd5743571fc.woff2')format("woff");}.ff7_c01123{font-family:ff7_c01123;line-height:1.364746;font-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_c01123{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m15_c01123{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m13_c01123{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m6_c01123{transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209135,0.000000,0.000000,0.250000,0,0);}
.m16_c01123{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.md_c01123{transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218421,0.000000,0.000000,0.250000,0,0);}
.m19_c01123{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m12_c01123{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m21_c01123{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.mb_c01123{transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229381,0.000000,0.000000,0.250000,0,0);}
.ma_c01123{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m8_c01123{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.me_c01123{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m3_c01123{transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238532,0.000000,0.000000,0.250000,0,0);}
.m4_c01123{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1_c01123{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.mc_c01123{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1c_c01123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01123{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m20_c01123{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.mf_c01123{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m2_c01123{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m1f_c01123{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m11_c01123{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m5_c01123{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m18_c01123{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m14_c01123{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m9_c01123{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_c01123{transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);}
.m1b_c01123{transform:matrix(0.321078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321078,0.000000,0.000000,0.250000,0,0);}
.m1e_c01123{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.m1a_c01123{transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);}
.m7_c01123{transform:matrix(0.566667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566667,0.000000,0.000000,0.250000,0,0);}
.m10_c01123{transform:matrix(0.902062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902062,0.000000,0.000000,0.250000,0,0);}
.v0_c01123{vertical-align:0.000000px;}
.ls15_c01123{letter-spacing:-15.041588px;}
.ls1d_c01123{letter-spacing:-13.094273px;}
.ls25_c01123{letter-spacing:-12.572333px;}
.ls8_c01123{letter-spacing:-11.757600px;}
.ls10_c01123{letter-spacing:-9.555120px;}
.ls1a_c01123{letter-spacing:-9.441338px;}
.ls12_c01123{letter-spacing:-9.270000px;}
.ls28_c01123{letter-spacing:-8.254125px;}
.ls9_c01123{letter-spacing:-7.071375px;}
.ls20_c01123{letter-spacing:-6.122273px;}
.ls2c_c01123{letter-spacing:-5.945625px;}
.ls1c_c01123{letter-spacing:-5.887890px;}
.ls5_c01123{letter-spacing:-5.196713px;}
.ls27_c01123{letter-spacing:-5.048235px;}
.ls13_c01123{letter-spacing:-4.456463px;}
.ls11_c01123{letter-spacing:-4.329135px;}
.ls17_c01123{letter-spacing:-4.044900px;}
.ls1f_c01123{letter-spacing:-3.891323px;}
.ls2d_c01123{letter-spacing:-3.751800px;}
.ls3_c01123{letter-spacing:-3.717000px;}
.lsc_c01123{letter-spacing:-3.113700px;}
.ls7_c01123{letter-spacing:-3.089228px;}
.ls19_c01123{letter-spacing:-3.053700px;}
.lsa_c01123{letter-spacing:-2.968875px;}
.ls14_c01123{letter-spacing:-2.371913px;}
.lsf_c01123{letter-spacing:-2.317500px;}
.ls2a_c01123{letter-spacing:-2.245620px;}
.lsb_c01123{letter-spacing:-2.229413px;}
.lse_c01123{letter-spacing:-1.545000px;}
.ls4_c01123{letter-spacing:-1.489163px;}
.ls1b_c01123{letter-spacing:-0.787050px;}
.ls6_c01123{letter-spacing:-0.771728px;}
.ls2_c01123{letter-spacing:-0.740250px;}
.lsd_c01123{letter-spacing:0.000000px;}
.ls1_c01123{letter-spacing:0.740250px;}
.ls16_c01123{letter-spacing:0.790163px;}
.ls18_c01123{letter-spacing:0.814800px;}
.ls2b_c01123{letter-spacing:0.819000px;}
.ls24_c01123{letter-spacing:0.849420px;}
.ls29_c01123{letter-spacing:1.482000px;}
.ls21_c01123{letter-spacing:1.545000px;}
.ls22_c01123{letter-spacing:1.906515px;}
.ls1e_c01123{letter-spacing:2.186190px;}
.ls23_c01123{letter-spacing:2.767395px;}
.ls0_c01123{letter-spacing:3.089228px;}
.ls26_c01123{letter-spacing:9.056835px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01123{word-spacing:0.000000px;}
._3_c01123{margin-left:-41.862764px;}
._14_c01123{margin-left:-21.780794px;}
._15_c01123{margin-left:-17.222536px;}
._12_c01123{margin-left:-14.314970px;}
._1a_c01123{margin-left:-10.838868px;}
._7_c01123{margin-left:-5.587877px;}
._9_c01123{margin-left:-3.668546px;}
._a_c01123{width:1.097166px;}
._0_c01123{width:2.338548px;}
._2_c01123{width:3.725350px;}
._d_c01123{width:5.089449px;}
._5_c01123{width:6.095220px;}
._8_c01123{width:8.142780px;}
._b_c01123{width:9.993420px;}
._17_c01123{width:11.141565px;}
._1_c01123{width:12.647131px;}
._1b_c01123{width:13.647524px;}
._13_c01123{width:14.847231px;}
._19_c01123{width:15.991059px;}
._4_c01123{width:18.926065px;}
._c_c01123{width:22.127264px;}
._16_c01123{width:24.433941px;}
._10_c01123{width:27.163044px;}
._f_c01123{width:30.428590px;}
._18_c01123{width:31.656014px;}
._11_c01123{width:35.584736px;}
._6_c01123{width:47.155678px;}
._e_c01123{width:51.651679px;}
.fc0_c01123{color:transparent;}
.fs11_c01123{font-size:30.750000px;}
.fs7_c01123{font-size:33.750000px;}
.fs9_c01123{font-size:56.250000px;}
.fsf_c01123{font-size:58.500000px;}
.fs8_c01123{font-size:71.250000px;}
.fs2_c01123{font-size:72.000000px;}
.fsa_c01123{font-size:72.750000px;}
.fs5_c01123{font-size:76.500000px;}
.fs1_c01123{font-size:77.250000px;}
.fs6_c01123{font-size:78.000000px;}
.fs0_c01123{font-size:78.750000px;}
.fsc_c01123{font-size:79.500000px;}
.fs4_c01123{font-size:80.250000px;}
.fsb_c01123{font-size:81.000000px;}
.fs3_c01123{font-size:81.750000px;}
.fsd_c01123{font-size:82.500000px;}
.fse_c01123{font-size:84.750000px;}
.fs12_c01123{font-size:86.250000px;}
.fs10_c01123{font-size:96.000000px;}
.y0_c01123{bottom:0.000000px;}
.y1d_c01123{bottom:180.359850px;}
.y1c_c01123{bottom:209.879535px;}
.y1b_c01123{bottom:240.119385px;}
.y1a_c01123{bottom:299.160435px;}
.y19_c01123{bottom:329.039385px;}
.y18_c01123{bottom:329.040270px;}
.y17_c01123{bottom:358.920000px;}
.y16_c01123{bottom:418.679670px;}
.y15_c01123{bottom:448.919535px;}
.y14_c01123{bottom:479.159415px;}
.y13_c01123{bottom:538.918395px;}
.y12_c01123{bottom:569.160420px;}
.y11_c01123{bottom:599.040270px;}
.y10_c01123{bottom:628.920000px;}
.yf_c01123{bottom:687.959700px;}
.ye_c01123{bottom:717.479235px;}
.yd_c01123{bottom:748.080000px;}
.yc_c01123{bottom:778.319820px;}
.yb_c01123{bottom:838.799565px;}
.ya_c01123{bottom:867.960015px;}
.y9_c01123{bottom:897.838905px;}
.y8_c01123{bottom:957.600135px;}
.y7_c01123{bottom:987.119940px;}
.y6_c01123{bottom:987.120390px;}
.y5_c01123{bottom:1017.719055px;}
.y4_c01123{bottom:1017.719955px;}
.y3_c01123{bottom:1047.599670px;}
.y2_c01123{bottom:1107.359250px;}
.y1_c01123{bottom:1137.959925px;}
.h1a_c01123{height:32.071289px;}
.h8_c01123{height:35.200195px;}
.h14_c01123{height:57.385986px;}
.ha_c01123{height:58.666992px;}
.h9_c01123{height:74.311523px;}
.h13_c01123{height:75.080566px;}
.h3_c01123{height:75.093750px;}
.h2_c01123{height:75.778931px;}
.hb_c01123{height:75.875977px;}
.h7_c01123{height:76.514648px;}
.h1d_c01123{height:76.552734px;}
.h6_c01123{height:77.097656px;}
.h1_c01123{height:77.288818px;}
.h15_c01123{height:77.986084px;}
.h18_c01123{height:78.024902px;}
.h1c_c01123{height:78.609375px;}
.h11_c01123{height:78.760986px;}
.he_c01123{height:79.457520px;}
.h10_c01123{height:79.497070px;}
.hd_c01123{height:80.121094px;}
.h4_c01123{height:80.193237px;}
.h17_c01123{height:80.791992px;}
.h5_c01123{height:80.876953px;}
.hf_c01123{height:80.928955px;}
.h16_c01123{height:81.351562px;}
.hc_c01123{height:81.632812px;}
.h12_c01123{height:83.177490px;}
.h1b_c01123{height:85.239258px;}
.h19_c01123{height:100.125000px;}
.h0_c01123{height:1263.000000px;}
.w0_c01123{width:892.500000px;}
.x0_c01123{left:0.000000px;}
.x2d_c01123{left:136.799565px;}
.x1b_c01123{left:137.878950px;}
.xb_c01123{left:138.958350px;}
.x6_c01123{left:140.039400px;}
.x1_c01123{left:141.118815px;}
.xe_c01123{left:147.598500px;}
.x19_c01123{left:161.639100px;}
.x1f_c01123{left:171.358665px;}
.x5_c01123{left:173.519100px;}
.x9_c01123{left:219.958350px;}
.x7_c01123{left:221.759535px;}
.x30_c01123{left:242.639100px;}
.x1c_c01123{left:243.718500px;}
.x34_c01123{left:247.678500px;}
.xf_c01123{left:257.759100px;}
.xa_c01123{left:269.639100px;}
.x10_c01123{left:270.718500px;}
.x31_c01123{left:273.958350px;}
.x2_c01123{left:307.798950px;}
.x2e_c01123{left:318.958950px;}
.x23_c01123{left:320.040000px;}
.x20_c01123{left:321.119385px;}
.x2f_c01123{left:333.719535px;}
.x21_c01123{left:335.519100px;}
.x24_c01123{left:338.759100px;}
.x32_c01123{left:341.278800px;}
.x25_c01123{left:356.759535px;}
.x11_c01123{left:364.679700px;}
.x33_c01123{left:373.319850px;}
.x26_c01123{left:375.119385px;}
.x27_c01123{left:386.279250px;}
.x12_c01123{left:387.358665px;}
.x1a_c01123{left:388.439715px;}
.x28_c01123{left:418.679670px;}
.x13_c01123{left:429.119385px;}
.x29_c01123{left:451.798515px;}
.x2a_c01123{left:459.359250px;}
.x2b_c01123{left:469.798920px;}
.x2c_c01123{left:483.119385px;}
.x14_c01123{left:490.678530px;}
.x3_c01123{left:532.080000px;}
.x1d_c01123{left:552.239220px;}
.x15_c01123{left:559.439250px;}
.x1e_c01123{left:562.679070px;}
.x4_c01123{left:581.399820px;}
.xc_c01123{left:601.199850px;}
.xd_c01123{left:614.159370px;}
.x16_c01123{left:666.719100px;}
.x8_c01123{left:684.719520px;}
.x17_c01123{left:688.679670px;}
.x18_c01123{left:713.159820px;}
.x22_c01123{left:768.598575px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls15_c01123{letter-spacing:-13.370300pt;}
.ls1d_c01123{letter-spacing:-11.639353pt;}
.ls25_c01123{letter-spacing:-11.175407pt;}
.ls8_c01123{letter-spacing:-10.451200pt;}
.ls10_c01123{letter-spacing:-8.493440pt;}
.ls1a_c01123{letter-spacing:-8.392300pt;}
.ls12_c01123{letter-spacing:-8.240000pt;}
.ls28_c01123{letter-spacing:-7.337000pt;}
.ls9_c01123{letter-spacing:-6.285667pt;}
.ls20_c01123{letter-spacing:-5.442020pt;}
.ls2c_c01123{letter-spacing:-5.285000pt;}
.ls1c_c01123{letter-spacing:-5.233680pt;}
.ls5_c01123{letter-spacing:-4.619300pt;}
.ls27_c01123{letter-spacing:-4.487320pt;}
.ls13_c01123{letter-spacing:-3.961300pt;}
.ls11_c01123{letter-spacing:-3.848120pt;}
.ls17_c01123{letter-spacing:-3.595467pt;}
.ls1f_c01123{letter-spacing:-3.458953pt;}
.ls2d_c01123{letter-spacing:-3.334933pt;}
.ls3_c01123{letter-spacing:-3.304000pt;}
.lsc_c01123{letter-spacing:-2.767733pt;}
.ls7_c01123{letter-spacing:-2.745980pt;}
.ls19_c01123{letter-spacing:-2.714400pt;}
.lsa_c01123{letter-spacing:-2.639000pt;}
.ls14_c01123{letter-spacing:-2.108367pt;}
.lsf_c01123{letter-spacing:-2.060000pt;}
.ls2a_c01123{letter-spacing:-1.996107pt;}
.lsb_c01123{letter-spacing:-1.981700pt;}
.lse_c01123{letter-spacing:-1.373333pt;}
.ls4_c01123{letter-spacing:-1.323700pt;}
.ls1b_c01123{letter-spacing:-0.699600pt;}
.ls6_c01123{letter-spacing:-0.685980pt;}
.ls2_c01123{letter-spacing:-0.658000pt;}
.lsd_c01123{letter-spacing:0.000000pt;}
.ls1_c01123{letter-spacing:0.658000pt;}
.ls16_c01123{letter-spacing:0.702367pt;}
.ls18_c01123{letter-spacing:0.724267pt;}
.ls2b_c01123{letter-spacing:0.728000pt;}
.ls24_c01123{letter-spacing:0.755040pt;}
.ls29_c01123{letter-spacing:1.317333pt;}
.ls21_c01123{letter-spacing:1.373333pt;}
.ls22_c01123{letter-spacing:1.694680pt;}
.ls1e_c01123{letter-spacing:1.943280pt;}
.ls23_c01123{letter-spacing:2.459907pt;}
.ls0_c01123{letter-spacing:2.745980pt;}
.ls26_c01123{letter-spacing:8.050520pt;}
.ws0_c01123{word-spacing:0.000000pt;}
._3_c01123{margin-left:-37.211346pt;}
._14_c01123{margin-left:-19.360706pt;}
._15_c01123{margin-left:-15.308921pt;}
._12_c01123{margin-left:-12.724418pt;}
._1a_c01123{margin-left:-9.634549pt;}
._7_c01123{margin-left:-4.967002pt;}
._9_c01123{margin-left:-3.260930pt;}
._a_c01123{width:0.975258pt;}
._0_c01123{width:2.078709pt;}
._2_c01123{width:3.311423pt;}
._d_c01123{width:4.523955pt;}
._5_c01123{width:5.417974pt;}
._8_c01123{width:7.238026pt;}
._b_c01123{width:8.883040pt;}
._17_c01123{width:9.903613pt;}
._1_c01123{width:11.241894pt;}
._1b_c01123{width:12.131132pt;}
._13_c01123{width:13.197539pt;}
._19_c01123{width:14.214275pt;}
._4_c01123{width:16.823169pt;}
._c_c01123{width:19.668679pt;}
._16_c01123{width:21.719058pt;}
._10_c01123{width:24.144928pt;}
._f_c01123{width:27.047635pt;}
._18_c01123{width:28.138679pt;}
._11_c01123{width:31.630876pt;}
._6_c01123{width:41.916158pt;}
._e_c01123{width:45.912604pt;}
.fs11_c01123{font-size:27.333333pt;}
.fs7_c01123{font-size:30.000000pt;}
.fs9_c01123{font-size:50.000000pt;}
.fsf_c01123{font-size:52.000000pt;}
.fs8_c01123{font-size:63.333333pt;}
.fs2_c01123{font-size:64.000000pt;}
.fsa_c01123{font-size:64.666667pt;}
.fs5_c01123{font-size:68.000000pt;}
.fs1_c01123{font-size:68.666667pt;}
.fs6_c01123{font-size:69.333333pt;}
.fs0_c01123{font-size:70.000000pt;}
.fsc_c01123{font-size:70.666667pt;}
.fs4_c01123{font-size:71.333333pt;}
.fsb_c01123{font-size:72.000000pt;}
.fs3_c01123{font-size:72.666667pt;}
.fsd_c01123{font-size:73.333333pt;}
.fse_c01123{font-size:75.333333pt;}
.fs12_c01123{font-size:76.666667pt;}
.fs10_c01123{font-size:85.333333pt;}
.y0_c01123{bottom:0.000000pt;}
.y1d_c01123{bottom:160.319867pt;}
.y1c_c01123{bottom:186.559587pt;}
.y1b_c01123{bottom:213.439453pt;}
.y1a_c01123{bottom:265.920387pt;}
.y19_c01123{bottom:292.479453pt;}
.y18_c01123{bottom:292.480240pt;}
.y17_c01123{bottom:319.040000pt;}
.y16_c01123{bottom:372.159707pt;}
.y15_c01123{bottom:399.039587pt;}
.y14_c01123{bottom:425.919480pt;}
.y13_c01123{bottom:479.038573pt;}
.y12_c01123{bottom:505.920373pt;}
.y11_c01123{bottom:532.480240pt;}
.y10_c01123{bottom:559.040000pt;}
.yf_c01123{bottom:611.519733pt;}
.ye_c01123{bottom:637.759320pt;}
.yd_c01123{bottom:664.960000pt;}
.yc_c01123{bottom:691.839840pt;}
.yb_c01123{bottom:745.599613pt;}
.ya_c01123{bottom:771.520013pt;}
.y9_c01123{bottom:798.079027pt;}
.y8_c01123{bottom:851.200120pt;}
.y7_c01123{bottom:877.439947pt;}
.y6_c01123{bottom:877.440347pt;}
.y5_c01123{bottom:904.639160pt;}
.y4_c01123{bottom:904.639960pt;}
.y3_c01123{bottom:931.199707pt;}
.y2_c01123{bottom:984.319333pt;}
.y1_c01123{bottom:1011.519933pt;}
.h1a_c01123{height:28.507812pt;}
.h8_c01123{height:31.289062pt;}
.h14_c01123{height:51.009766pt;}
.ha_c01123{height:52.148438pt;}
.h9_c01123{height:66.054688pt;}
.h13_c01123{height:66.738281pt;}
.h3_c01123{height:66.750000pt;}
.h2_c01123{height:67.359049pt;}
.hb_c01123{height:67.445312pt;}
.h7_c01123{height:68.013021pt;}
.h1d_c01123{height:68.046875pt;}
.h6_c01123{height:68.531250pt;}
.h1_c01123{height:68.701172pt;}
.h15_c01123{height:69.320964pt;}
.h18_c01123{height:69.355469pt;}
.h1c_c01123{height:69.875000pt;}
.h11_c01123{height:70.009766pt;}
.he_c01123{height:70.628906pt;}
.h10_c01123{height:70.664062pt;}
.hd_c01123{height:71.218750pt;}
.h4_c01123{height:71.282878pt;}
.h17_c01123{height:71.815104pt;}
.h5_c01123{height:71.890625pt;}
.hf_c01123{height:71.936849pt;}
.h16_c01123{height:72.312500pt;}
.hc_c01123{height:72.562500pt;}
.h12_c01123{height:73.935547pt;}
.h1b_c01123{height:75.768229pt;}
.h19_c01123{height:89.000000pt;}
.h0_c01123{height:1122.666667pt;}
.w0_c01123{width:793.333333pt;}
.x0_c01123{left:0.000000pt;}
.x2d_c01123{left:121.599613pt;}
.x1b_c01123{left:122.559067pt;}
.xb_c01123{left:123.518533pt;}
.x6_c01123{left:124.479467pt;}
.x1_c01123{left:125.438947pt;}
.xe_c01123{left:131.198667pt;}
.x19_c01123{left:143.679200pt;}
.x1f_c01123{left:152.318813pt;}
.x5_c01123{left:154.239200pt;}
.x9_c01123{left:195.518533pt;}
.x7_c01123{left:197.119587pt;}
.x30_c01123{left:215.679200pt;}
.x1c_c01123{left:216.638667pt;}
.x34_c01123{left:220.158667pt;}
.xf_c01123{left:229.119200pt;}
.xa_c01123{left:239.679200pt;}
.x10_c01123{left:240.638667pt;}
.x31_c01123{left:243.518533pt;}
.x2_c01123{left:273.599067pt;}
.x2e_c01123{left:283.519067pt;}
.x23_c01123{left:284.480000pt;}
.x20_c01123{left:285.439453pt;}
.x2f_c01123{left:296.639587pt;}
.x21_c01123{left:298.239200pt;}
.x24_c01123{left:301.119200pt;}
.x32_c01123{left:303.358933pt;}
.x25_c01123{left:317.119587pt;}
.x11_c01123{left:324.159733pt;}
.x33_c01123{left:331.839867pt;}
.x26_c01123{left:333.439453pt;}
.x27_c01123{left:343.359333pt;}
.x12_c01123{left:344.318813pt;}
.x1a_c01123{left:345.279747pt;}
.x28_c01123{left:372.159707pt;}
.x13_c01123{left:381.439453pt;}
.x29_c01123{left:401.598680pt;}
.x2a_c01123{left:408.319333pt;}
.x2b_c01123{left:417.599040pt;}
.x2c_c01123{left:429.439453pt;}
.x14_c01123{left:436.158693pt;}
.x3_c01123{left:472.960000pt;}
.x1d_c01123{left:490.879307pt;}
.x15_c01123{left:497.279333pt;}
.x1e_c01123{left:500.159173pt;}
.x4_c01123{left:516.799840pt;}
.xc_c01123{left:534.399867pt;}
.xd_c01123{left:545.919440pt;}
.x16_c01123{left:592.639200pt;}
.x8_c01123{left:608.639573pt;}
.x17_c01123{left:612.159707pt;}
.x18_c01123{left:633.919840pt;}
.x22_c01123{left:683.198733pt;}
}





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

.ir_c01124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_1397ad698085572f0e9e6709.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01124;src:url('chunks/assets/font_296850d34feb5667a8c4b22e.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01124;src:url('chunks/assets/font_41cf49ce48bc8229ac4a1b32.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01124;src:url('chunks/assets/font_9747bd18b076dc29d2e8ac7b.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01124;src:url('chunks/assets/font_b90543a5bf34e3997af0cca8.woff2')format("woff");}.ff5_c01124{font-family:ff5_c01124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01124;src:url('chunks/assets/font_32e99de274144d5ccede7cda.woff2')format("woff");}.ff6_c01124{font-family:ff6_c01124;line-height:1.364746;font-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_c01124{transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165909,0.000000,0.000000,0.250000,0,0);}
.m1c_c01124{transform:matrix(0.169922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169922,0.000000,0.000000,0.250000,0,0);}
.m19_c01124{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m1e_c01124{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m12_c01124{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m6_c01124{transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195455,0.000000,0.000000,0.250000,0,0);}
.m20_c01124{transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);}
.m15_c01124{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m8_c01124{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m1f_c01124{transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);}
.m25_c01124{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m22_c01124{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m27_c01124{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m23_c01124{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2_c01124{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m7_c01124{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1b_c01124{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m0_c01124{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1a_c01124{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.me_c01124{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.mf_c01124{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.ma_c01124{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m13_c01124{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m4_c01124{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.md_c01124{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.mb_c01124{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m9_c01124{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m16_c01124{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m14_c01124{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mc_c01124{transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);}
.m18_c01124{transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);}
.m28_c01124{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m5_c01124{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m17_c01124{transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);}
.m24_c01124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01124{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c01124{transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256637,0.000000,0.000000,0.250000,0,0);}
.m21_c01124{transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259709,0.000000,0.000000,0.250000,0,0);}
.m11_c01124{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_c01124{transform:matrix(0.292056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292056,0.000000,0.000000,0.250000,0,0);}
.m26_c01124{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.v0_c01124{vertical-align:0.000000px;}
.ls22_c01124{letter-spacing:-27.590400px;}
.ls29_c01124{letter-spacing:-25.071053px;}
.ls24_c01124{letter-spacing:-24.572700px;}
.ls33_c01124{letter-spacing:-16.853303px;}
.ls30_c01124{letter-spacing:-16.641900px;}
.ls23_c01124{letter-spacing:-14.693250px;}
.lse_c01124{letter-spacing:-10.672200px;}
.ls3_c01124{letter-spacing:-8.958600px;}
.ls27_c01124{letter-spacing:-8.827500px;}
.ls1b_c01124{letter-spacing:-8.316900px;}
.ls28_c01124{letter-spacing:-7.223648px;}
.ls25_c01124{letter-spacing:-6.143378px;}
.ls31_c01124{letter-spacing:-5.300663px;}
.ls11_c01124{letter-spacing:-5.136000px;}
.ls1_c01124{letter-spacing:-4.796400px;}
.ls2_c01124{letter-spacing:-4.463438px;}
.ls2b_c01124{letter-spacing:-4.344435px;}
.ls26_c01124{letter-spacing:-4.012500px;}
.ls34_c01124{letter-spacing:-3.932250px;}
.ls4_c01124{letter-spacing:-3.653573px;}
.ls32_c01124{letter-spacing:-3.540000px;}
.ls2d_c01124{letter-spacing:-3.209198px;}
.lsc_c01124{letter-spacing:-3.145800px;}
.ls5_c01124{letter-spacing:-3.138525px;}
.ls17_c01124{letter-spacing:-3.118500px;}
.ls2c_c01124{letter-spacing:-3.067268px;}
.ls14_c01124{letter-spacing:-3.031875px;}
.ls9_c01124{letter-spacing:-2.407500px;}
.ls18_c01124{letter-spacing:-2.358675px;}
.lsf_c01124{letter-spacing:-2.356050px;}
.lsb_c01124{letter-spacing:-2.315820px;}
.ls2f_c01124{letter-spacing:-2.269800px;}
.ls12_c01124{letter-spacing:-2.267213px;}
.ls2a_c01124{letter-spacing:-2.249100px;}
.ls13_c01124{letter-spacing:-2.123250px;}
.ls15_c01124{letter-spacing:-1.605000px;}
.ls10_c01124{letter-spacing:-1.574895px;}
.ls1a_c01124{letter-spacing:-1.544288px;}
.ls20_c01124{letter-spacing:-1.526963px;}
.ls6_c01124{letter-spacing:-1.512000px;}
.lsa_c01124{letter-spacing:-0.801698px;}
.lsd_c01124{letter-spacing:-0.777600px;}
.ls8_c01124{letter-spacing:-0.756000px;}
.ls7_c01124{letter-spacing:0.000000px;}
.ls19_c01124{letter-spacing:0.763875px;}
.ls21_c01124{letter-spacing:0.801150px;}
.ls16_c01124{letter-spacing:0.801698px;}
.ls0_c01124{letter-spacing:1.512000px;}
.ls1d_c01124{letter-spacing:1.517340px;}
.ls1c_c01124{letter-spacing:2.331990px;}
.ls2e_c01124{letter-spacing:2.497500px;}
.ls1f_c01124{letter-spacing:3.031875px;}
.ls1e_c01124{letter-spacing:3.159000px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01124{word-spacing:0.000000px;}
._1_c01124{margin-left:-16.930523px;}
._d_c01124{margin-left:-7.559678px;}
._c_c01124{margin-left:-5.568231px;}
._e_c01124{margin-left:-3.594622px;}
._a_c01124{margin-left:-1.158110px;}
._f_c01124{width:1.049766px;}
._0_c01124{width:2.050347px;}
._10_c01124{width:3.366129px;}
._b_c01124{width:5.597732px;}
._12_c01124{width:6.738657px;}
._7_c01124{width:7.767879px;}
._8_c01124{width:9.951899px;}
._11_c01124{width:12.004822px;}
._9_c01124{width:13.071377px;}
._13_c01124{width:14.772131px;}
._3_c01124{width:20.821863px;}
._4_c01124{width:21.822110px;}
._6_c01124{width:24.645358px;}
._2_c01124{width:26.832124px;}
._5_c01124{width:30.473948px;}
._1a_c01124{width:31.909294px;}
._15_c01124{width:36.500140px;}
._17_c01124{width:39.761117px;}
._16_c01124{width:42.359867px;}
._14_c01124{width:46.434211px;}
._18_c01124{width:47.820998px;}
._19_c01124{width:51.268370px;}
.fc0_c01124{color:transparent;}
.fs10_c01124{font-size:58.500000px;}
.fsf_c01124{font-size:66.000000px;}
.fs17_c01124{font-size:74.250000px;}
.fsd_c01124{font-size:75.000000px;}
.fsb_c01124{font-size:75.750000px;}
.fs16_c01124{font-size:76.500000px;}
.fs15_c01124{font-size:77.250000px;}
.fs8_c01124{font-size:78.000000px;}
.fs5_c01124{font-size:78.750000px;}
.fsc_c01124{font-size:79.500000px;}
.fs7_c01124{font-size:80.250000px;}
.fs9_c01124{font-size:81.000000px;}
.fs11_c01124{font-size:81.750000px;}
.fs6_c01124{font-size:82.500000px;}
.fs4_c01124{font-size:83.250000px;}
.fs0_c01124{font-size:84.000000px;}
.fs3_c01124{font-size:84.750000px;}
.fs13_c01124{font-size:85.500000px;}
.fs14_c01124{font-size:87.750000px;}
.fse_c01124{font-size:90.000000px;}
.fsa_c01124{font-size:90.750000px;}
.fs1_c01124{font-size:93.750000px;}
.fs2_c01124{font-size:94.500000px;}
.fs12_c01124{font-size:96.000000px;}
.y0_c01124{bottom:0.000000px;}
.y19_c01124{bottom:243.359025px;}
.y1a_c01124{bottom:243.359250px;}
.y17_c01124{bottom:273.599025px;}
.y18_c01124{bottom:273.599100px;}
.y16_c01124{bottom:303.838950px;}
.y15_c01124{bottom:362.519100px;}
.y14_c01124{bottom:392.399820px;}
.y13_c01124{bottom:482.760135px;}
.y12_c01124{bottom:512.639100px;}
.y11_c01124{bottom:542.878920px;}
.y10_c01124{bottom:601.920000px;}
.yf_c01124{bottom:631.080420px;}
.ye_c01124{bottom:661.320285px;}
.yd_c01124{bottom:721.080000px;}
.yc_c01124{bottom:753.119385px;}
.yb_c01124{bottom:781.559685px;}
.ya_c01124{bottom:841.319190px;}
.y9_c01124{bottom:871.559940px;}
.y8_c01124{bottom:901.439670px;}
.y7_c01124{bottom:961.199340px;}
.y6_c01124{bottom:961.199700px;}
.y5_c01124{bottom:991.800105px;}
.y4_c01124{bottom:1021.319820px;}
.y3_c01124{bottom:1081.079400px;}
.y2_c01124{bottom:1110.599025px;}
.y1_c01124{bottom:1140.479640px;}
.h18_c01124{height:61.013672px;}
.h16_c01124{height:64.743164px;}
.h11_c01124{height:73.608398px;}
.h22_c01124{height:75.080566px;}
.he_c01124{height:76.341797px;}
.h1e_c01124{height:76.514648px;}
.h20_c01124{height:76.552734px;}
.h21_c01124{height:77.097656px;}
.h6_c01124{height:77.288818px;}
.h23_c01124{height:77.440430px;}
.h1f_c01124{height:77.853516px;}
.h9_c01124{height:78.609375px;}
.h8_c01124{height:78.721802px;}
.h10_c01124{height:78.760986px;}
.h14_c01124{height:79.365234px;}
.hf_c01124{height:80.121094px;}
.ha_c01124{height:80.876953px;}
.h7_c01124{height:80.969238px;}
.h1b_c01124{height:81.533203px;}
.hb_c01124{height:81.632812px;}
.h24_c01124{height:81.664673px;}
.h5_c01124{height:81.705322px;}
.h19_c01124{height:82.388672px;}
.h12_c01124{height:82.441406px;}
.h17_c01124{height:83.015625px;}
.h13_c01124{height:83.144531px;}
.h4_c01124{height:83.177490px;}
.h1c_c01124{height:84.498047px;}
.h1_c01124{height:84.656250px;}
.hd_c01124{height:85.412109px;}
.h1d_c01124{height:86.721680px;}
.h15_c01124{height:88.945312px;}
.hc_c01124{height:89.686523px;}
.h2_c01124{height:92.651367px;}
.h3_c01124{height:93.392578px;}
.h1a_c01124{height:94.875000px;}
.h0_c01124{height:1263.000000px;}
.w0_c01124{width:892.500000px;}
.x0_c01124{left:0.000000px;}
.x2f_c01124{left:137.158815px;}
.x23_c01124{left:138.239850px;}
.x9_c01124{left:139.319250px;}
.x1_c01124{left:140.398665px;}
.x6_c01124{left:142.199850px;}
.x2a_c01124{left:162.359250px;}
.x11_c01124{left:176.399850px;}
.x18_c01124{left:197.999400px;}
.x1f_c01124{left:200.878350px;}
.x7_c01124{left:210.958950px;}
.x19_c01124{left:214.198785px;}
.x20_c01124{left:216.000000px;}
.x37_c01124{left:224.638500px;}
.x8_c01124{left:225.719535px;}
.xa_c01124{left:230.038950px;}
.x12_c01124{left:232.919535px;}
.x32_c01124{left:240.478635px;}
.x13_c01124{left:243.359250px;}
.x2_c01124{left:245.519685px;}
.x2b_c01124{left:250.559100px;}
.x21_c01124{left:253.078785px;}
.x14_c01124{left:272.158785px;}
.x22_c01124{left:274.319250px;}
.x3_c01124{left:277.199850px;}
.x2c_c01124{left:286.919535px;}
.x16_c01124{left:287.998950px;}
.x1a_c01124{left:298.079385px;}
.x33_c01124{left:306.719535px;}
.x31_c01124{left:314.278800px;}
.x1d_c01124{left:315.719100px;}
.x38_c01124{left:317.518635px;}
.xb_c01124{left:323.639100px;}
.x17_c01124{left:334.439685px;}
.x30_c01124{left:335.878350px;}
.x39_c01124{left:336.959385px;}
.x24_c01124{left:338.038950px;}
.x4_c01124{left:344.159385px;}
.x1e_c01124{left:348.839535px;}
.x1b_c01124{left:352.079385px;}
.xc_c01124{left:353.158785px;}
.xe_c01124{left:367.919535px;}
.x5_c01124{left:376.559685px;}
.x25_c01124{left:381.958350px;}
.x1c_c01124{left:383.039385px;}
.xd_c01124{left:384.118785px;}
.x2d_c01124{left:389.878320px;}
.x2e_c01124{left:421.919535px;}
.x34_c01124{left:439.918350px;}
.x35_c01124{left:462.239820px;}
.x26_c01124{left:464.039385px;}
.x27_c01124{left:485.639100px;}
.xf_c01124{left:501.479235px;}
.x28_c01124{left:505.080000px;}
.x15_c01124{left:529.199385px;}
.x10_c01124{left:532.798515px;}
.x29_c01124{left:539.279850px;}
.x36_c01124{left:611.639700px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls22_c01124{letter-spacing:-24.524800pt;}
.ls29_c01124{letter-spacing:-22.285380pt;}
.ls24_c01124{letter-spacing:-21.842400pt;}
.ls33_c01124{letter-spacing:-14.980713pt;}
.ls30_c01124{letter-spacing:-14.792800pt;}
.ls23_c01124{letter-spacing:-13.060667pt;}
.lse_c01124{letter-spacing:-9.486400pt;}
.ls3_c01124{letter-spacing:-7.963200pt;}
.ls27_c01124{letter-spacing:-7.846667pt;}
.ls1b_c01124{letter-spacing:-7.392800pt;}
.ls28_c01124{letter-spacing:-6.421020pt;}
.ls25_c01124{letter-spacing:-5.460780pt;}
.ls31_c01124{letter-spacing:-4.711700pt;}
.ls11_c01124{letter-spacing:-4.565333pt;}
.ls1_c01124{letter-spacing:-4.263467pt;}
.ls2_c01124{letter-spacing:-3.967500pt;}
.ls2b_c01124{letter-spacing:-3.861720pt;}
.ls26_c01124{letter-spacing:-3.566667pt;}
.ls34_c01124{letter-spacing:-3.495333pt;}
.ls4_c01124{letter-spacing:-3.247620pt;}
.ls32_c01124{letter-spacing:-3.146667pt;}
.ls2d_c01124{letter-spacing:-2.852620pt;}
.lsc_c01124{letter-spacing:-2.796267pt;}
.ls5_c01124{letter-spacing:-2.789800pt;}
.ls17_c01124{letter-spacing:-2.772000pt;}
.ls2c_c01124{letter-spacing:-2.726460pt;}
.ls14_c01124{letter-spacing:-2.695000pt;}
.ls9_c01124{letter-spacing:-2.140000pt;}
.ls18_c01124{letter-spacing:-2.096600pt;}
.lsf_c01124{letter-spacing:-2.094267pt;}
.lsb_c01124{letter-spacing:-2.058507pt;}
.ls2f_c01124{letter-spacing:-2.017600pt;}
.ls12_c01124{letter-spacing:-2.015300pt;}
.ls2a_c01124{letter-spacing:-1.999200pt;}
.ls13_c01124{letter-spacing:-1.887333pt;}
.ls15_c01124{letter-spacing:-1.426667pt;}
.ls10_c01124{letter-spacing:-1.399907pt;}
.ls1a_c01124{letter-spacing:-1.372700pt;}
.ls20_c01124{letter-spacing:-1.357300pt;}
.ls6_c01124{letter-spacing:-1.344000pt;}
.lsa_c01124{letter-spacing:-0.712620pt;}
.lsd_c01124{letter-spacing:-0.691200pt;}
.ls8_c01124{letter-spacing:-0.672000pt;}
.ls7_c01124{letter-spacing:0.000000pt;}
.ls19_c01124{letter-spacing:0.679000pt;}
.ls21_c01124{letter-spacing:0.712133pt;}
.ls16_c01124{letter-spacing:0.712620pt;}
.ls0_c01124{letter-spacing:1.344000pt;}
.ls1d_c01124{letter-spacing:1.348747pt;}
.ls1c_c01124{letter-spacing:2.072880pt;}
.ls2e_c01124{letter-spacing:2.220000pt;}
.ls1f_c01124{letter-spacing:2.695000pt;}
.ls1e_c01124{letter-spacing:2.808000pt;}
.ws0_c01124{word-spacing:0.000000pt;}
._1_c01124{margin-left:-15.049354pt;}
._d_c01124{margin-left:-6.719714pt;}
._c_c01124{margin-left:-4.949538pt;}
._e_c01124{margin-left:-3.195220pt;}
._a_c01124{margin-left:-1.029431pt;}
._f_c01124{width:0.933126pt;}
._0_c01124{width:1.822531pt;}
._10_c01124{width:2.992115pt;}
._b_c01124{width:4.975762pt;}
._12_c01124{width:5.989917pt;}
._7_c01124{width:6.904781pt;}
._8_c01124{width:8.846132pt;}
._11_c01124{width:10.670953pt;}
._9_c01124{width:11.619002pt;}
._13_c01124{width:13.130783pt;}
._3_c01124{width:18.508323pt;}
._4_c01124{width:19.397431pt;}
._6_c01124{width:21.906985pt;}
._2_c01124{width:23.850777pt;}
._5_c01124{width:27.087954pt;}
._1a_c01124{width:28.363817pt;}
._15_c01124{width:32.444569pt;}
._17_c01124{width:35.343215pt;}
._16_c01124{width:37.653215pt;}
._14_c01124{width:41.274854pt;}
._18_c01124{width:42.507554pt;}
._19_c01124{width:45.571885pt;}
.fs10_c01124{font-size:52.000000pt;}
.fsf_c01124{font-size:58.666667pt;}
.fs17_c01124{font-size:66.000000pt;}
.fsd_c01124{font-size:66.666667pt;}
.fsb_c01124{font-size:67.333333pt;}
.fs16_c01124{font-size:68.000000pt;}
.fs15_c01124{font-size:68.666667pt;}
.fs8_c01124{font-size:69.333333pt;}
.fs5_c01124{font-size:70.000000pt;}
.fsc_c01124{font-size:70.666667pt;}
.fs7_c01124{font-size:71.333333pt;}
.fs9_c01124{font-size:72.000000pt;}
.fs11_c01124{font-size:72.666667pt;}
.fs6_c01124{font-size:73.333333pt;}
.fs4_c01124{font-size:74.000000pt;}
.fs0_c01124{font-size:74.666667pt;}
.fs3_c01124{font-size:75.333333pt;}
.fs13_c01124{font-size:76.000000pt;}
.fs14_c01124{font-size:78.000000pt;}
.fse_c01124{font-size:80.000000pt;}
.fsa_c01124{font-size:80.666667pt;}
.fs1_c01124{font-size:83.333333pt;}
.fs2_c01124{font-size:84.000000pt;}
.fs12_c01124{font-size:85.333333pt;}
.y0_c01124{bottom:0.000000pt;}
.y19_c01124{bottom:216.319133pt;}
.y1a_c01124{bottom:216.319333pt;}
.y17_c01124{bottom:243.199133pt;}
.y18_c01124{bottom:243.199200pt;}
.y16_c01124{bottom:270.079067pt;}
.y15_c01124{bottom:322.239200pt;}
.y14_c01124{bottom:348.799840pt;}
.y13_c01124{bottom:429.120120pt;}
.y12_c01124{bottom:455.679200pt;}
.y11_c01124{bottom:482.559040pt;}
.y10_c01124{bottom:535.040000pt;}
.yf_c01124{bottom:560.960373pt;}
.ye_c01124{bottom:587.840253pt;}
.yd_c01124{bottom:640.960000pt;}
.yc_c01124{bottom:669.439453pt;}
.yb_c01124{bottom:694.719720pt;}
.ya_c01124{bottom:747.839280pt;}
.y9_c01124{bottom:774.719947pt;}
.y8_c01124{bottom:801.279707pt;}
.y7_c01124{bottom:854.399413pt;}
.y6_c01124{bottom:854.399733pt;}
.y5_c01124{bottom:881.600093pt;}
.y4_c01124{bottom:907.839840pt;}
.y3_c01124{bottom:960.959467pt;}
.y2_c01124{bottom:987.199133pt;}
.y1_c01124{bottom:1013.759680pt;}
.h18_c01124{height:54.234375pt;}
.h16_c01124{height:57.549479pt;}
.h11_c01124{height:65.429688pt;}
.h22_c01124{height:66.738281pt;}
.he_c01124{height:67.859375pt;}
.h1e_c01124{height:68.013021pt;}
.h20_c01124{height:68.046875pt;}
.h21_c01124{height:68.531250pt;}
.h6_c01124{height:68.701172pt;}
.h23_c01124{height:68.835938pt;}
.h1f_c01124{height:69.203125pt;}
.h9_c01124{height:69.875000pt;}
.h8_c01124{height:69.974935pt;}
.h10_c01124{height:70.009766pt;}
.h14_c01124{height:70.546875pt;}
.hf_c01124{height:71.218750pt;}
.ha_c01124{height:71.890625pt;}
.h7_c01124{height:71.972656pt;}
.h1b_c01124{height:72.473958pt;}
.hb_c01124{height:72.562500pt;}
.h24_c01124{height:72.590820pt;}
.h5_c01124{height:72.626953pt;}
.h19_c01124{height:73.234375pt;}
.h12_c01124{height:73.281250pt;}
.h17_c01124{height:73.791667pt;}
.h13_c01124{height:73.906250pt;}
.h4_c01124{height:73.935547pt;}
.h1c_c01124{height:75.109375pt;}
.h1_c01124{height:75.250000pt;}
.hd_c01124{height:75.921875pt;}
.h1d_c01124{height:77.085938pt;}
.h15_c01124{height:79.062500pt;}
.hc_c01124{height:79.721354pt;}
.h2_c01124{height:82.356771pt;}
.h3_c01124{height:83.015625pt;}
.h1a_c01124{height:84.333333pt;}
.h0_c01124{height:1122.666667pt;}
.w0_c01124{width:793.333333pt;}
.x0_c01124{left:0.000000pt;}
.x2f_c01124{left:121.918947pt;}
.x23_c01124{left:122.879867pt;}
.x9_c01124{left:123.839333pt;}
.x1_c01124{left:124.798813pt;}
.x6_c01124{left:126.399867pt;}
.x2a_c01124{left:144.319333pt;}
.x11_c01124{left:156.799867pt;}
.x18_c01124{left:175.999467pt;}
.x1f_c01124{left:178.558533pt;}
.x7_c01124{left:187.519067pt;}
.x19_c01124{left:190.398920pt;}
.x20_c01124{left:192.000000pt;}
.x37_c01124{left:199.678667pt;}
.x8_c01124{left:200.639587pt;}
.xa_c01124{left:204.479067pt;}
.x12_c01124{left:207.039587pt;}
.x32_c01124{left:213.758787pt;}
.x13_c01124{left:216.319333pt;}
.x2_c01124{left:218.239720pt;}
.x2b_c01124{left:222.719200pt;}
.x21_c01124{left:224.958920pt;}
.x14_c01124{left:241.918920pt;}
.x22_c01124{left:243.839333pt;}
.x3_c01124{left:246.399867pt;}
.x2c_c01124{left:255.039587pt;}
.x16_c01124{left:255.999067pt;}
.x1a_c01124{left:264.959453pt;}
.x33_c01124{left:272.639587pt;}
.x31_c01124{left:279.358933pt;}
.x1d_c01124{left:280.639200pt;}
.x38_c01124{left:282.238787pt;}
.xb_c01124{left:287.679200pt;}
.x17_c01124{left:297.279720pt;}
.x30_c01124{left:298.558533pt;}
.x39_c01124{left:299.519453pt;}
.x24_c01124{left:300.479067pt;}
.x4_c01124{left:305.919453pt;}
.x1e_c01124{left:310.079587pt;}
.x1b_c01124{left:312.959453pt;}
.xc_c01124{left:313.918920pt;}
.xe_c01124{left:327.039587pt;}
.x5_c01124{left:334.719720pt;}
.x25_c01124{left:339.518533pt;}
.x1c_c01124{left:340.479453pt;}
.xd_c01124{left:341.438920pt;}
.x2d_c01124{left:346.558507pt;}
.x2e_c01124{left:375.039587pt;}
.x34_c01124{left:391.038533pt;}
.x35_c01124{left:410.879840pt;}
.x26_c01124{left:412.479453pt;}
.x27_c01124{left:431.679200pt;}
.xf_c01124{left:445.759320pt;}
.x28_c01124{left:448.960000pt;}
.x15_c01124{left:470.399453pt;}
.x10_c01124{left:473.598680pt;}
.x29_c01124{left:479.359867pt;}
.x36_c01124{left:543.679733pt;}
}





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

.ir_c01125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_e652cd6c5be963f23a7fa61f.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01125;src:url('chunks/assets/font_da405e3d701f8845cf5b52ab.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01125;src:url('chunks/assets/font_80925a13d9f21f026f1f3b39.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01125;src:url('chunks/assets/font_38d0626ef589ec484e62844d.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01125;src:url('chunks/assets/font_7c9ad71ac77e12ade3a840fa.woff2')format("woff");}.ff5_c01125{font-family:ff5_c01125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01125;src:url('chunks/assets/font_3b8ded13e11ae37a856a3d86.woff2')format("woff");}.ff6_c01125{font-family:ff6_c01125;line-height:1.364746;font-style:normal;font-weight: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_c01125;src:url('chunks/assets/font_83972a90efd39a527653c23f.woff2')format("woff");}.ff7_c01125{font-family:ff7_c01125;line-height:1.364746;font-style:normal;font-weight: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_c01125;src:url('chunks/assets/font_055e3db776d2c3d6dc1c5a92.woff2')format("woff");}.ff8_c01125{font-family:ff8_c01125;line-height:1.432129;font-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_c01125{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m18_c01125{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mc_c01125{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.mf_c01125{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m15_c01125{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m5_c01125{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.mb_c01125{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m6_c01125{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m2_c01125{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m20_c01125{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m16_c01125{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m9_c01125{transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);}
.m4_c01125{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m1_c01125{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m14_c01125{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m19_c01125{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m8_c01125{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m0_c01125{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m1c_c01125{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m17_c01125{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m3_c01125{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m11_c01125{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m1d_c01125{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.ma_c01125{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m1f_c01125{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m12_c01125{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m10_c01125{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m1a_c01125{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m1b_c01125{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.md_c01125{transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);}
.m1e_c01125{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m7_c01125{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_c01125{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_c01125{vertical-align:0.000000px;}
.ls2a_c01125{letter-spacing:-13.765500px;}
.ls16_c01125{letter-spacing:-10.350000px;}
.ls10_c01125{letter-spacing:-10.025400px;}
.ls17_c01125{letter-spacing:-8.105250px;}
.lsc_c01125{letter-spacing:-6.247500px;}
.lsa_c01125{letter-spacing:-5.049000px;}
.ls1c_c01125{letter-spacing:-4.862348px;}
.ls5_c01125{letter-spacing:-4.591125px;}
.ls12_c01125{letter-spacing:-4.321350px;}
.ls1b_c01125{letter-spacing:-4.053428px;}
.ls28_c01125{letter-spacing:-3.858600px;}
.ls26_c01125{letter-spacing:-3.818588px;}
.ls2b_c01125{letter-spacing:-3.713580px;}
.lse_c01125{letter-spacing:-3.277545px;}
.ls29_c01125{letter-spacing:-3.242903px;}
.ls15_c01125{letter-spacing:-3.113700px;}
.ls11_c01125{letter-spacing:-3.055500px;}
.ls21_c01125{letter-spacing:-2.471783px;}
.ls19_c01125{letter-spacing:-2.431575px;}
.ls1_c01125{letter-spacing:-2.335275px;}
.ls24_c01125{letter-spacing:-2.295000px;}
.ls8_c01125{letter-spacing:-2.291625px;}
.ls3_c01125{letter-spacing:-1.648350px;}
.ls18_c01125{letter-spacing:-1.621050px;}
.ls9_c01125{letter-spacing:-1.526963px;}
.ls14_c01125{letter-spacing:-0.823433px;}
.ls6_c01125{letter-spacing:-0.810525px;}
.ls4_c01125{letter-spacing:-0.763875px;}
.ls27_c01125{letter-spacing:-0.724620px;}
.ls7_c01125{letter-spacing:0.000000px;}
.ls1f_c01125{letter-spacing:0.738375px;}
.lsf_c01125{letter-spacing:0.739500px;}
.ls2_c01125{letter-spacing:0.809325px;}
.ls23_c01125{letter-spacing:1.638000px;}
.ls1a_c01125{letter-spacing:2.335275px;}
.ls22_c01125{letter-spacing:2.582250px;}
.ls0_c01125{letter-spacing:3.242903px;}
.ls25_c01125{letter-spacing:5.263500px;}
.ls1e_c01125{letter-spacing:5.350350px;}
.ls20_c01125{letter-spacing:5.355000px;}
.ls13_c01125{letter-spacing:6.187500px;}
.lsd_c01125{letter-spacing:6.242400px;}
.ls1d_c01125{letter-spacing:15.429600px;}
.lsb_c01125{letter-spacing:18.225750px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01125{word-spacing:0.000000px;}
._e_c01125{margin-left:-8.917980px;}
._2_c01125{margin-left:-3.876675px;}
._b_c01125{margin-left:-1.444833px;}
._4_c01125{width:1.885485px;}
._d_c01125{width:3.293378px;}
._0_c01125{width:4.566001px;}
._1_c01125{width:6.270304px;}
._5_c01125{width:8.320120px;}
._3_c01125{width:10.006899px;}
._6_c01125{width:11.106787px;}
._9_c01125{width:12.921579px;}
._a_c01125{width:14.304094px;}
._7_c01125{width:20.568688px;}
._8_c01125{width:23.189325px;}
._c_c01125{width:38.375104px;}
.fc0_c01125{color:transparent;}
.fs13_c01125{font-size:30.750000px;}
.fse_c01125{font-size:36.000000px;}
.fsf_c01125{font-size:39.750000px;}
.fs10_c01125{font-size:41.250000px;}
.fs11_c01125{font-size:56.250000px;}
.fs8_c01125{font-size:70.500000px;}
.fs5_c01125{font-size:71.250000px;}
.fsc_c01125{font-size:72.750000px;}
.fsa_c01125{font-size:73.500000px;}
.fs2_c01125{font-size:74.250000px;}
.fs6_c01125{font-size:75.000000px;}
.fs7_c01125{font-size:76.500000px;}
.fs12_c01125{font-size:77.250000px;}
.fsb_c01125{font-size:78.000000px;}
.fs3_c01125{font-size:78.750000px;}
.fs0_c01125{font-size:80.250000px;}
.fs1_c01125{font-size:81.750000px;}
.fs4_c01125{font-size:82.500000px;}
.fsd_c01125{font-size:86.250000px;}
.fs9_c01125{font-size:87.000000px;}
.fs14_c01125{font-size:96.000000px;}
.y0_c01125{bottom:0.000000px;}
.y1b_c01125{bottom:178.919535px;}
.y1a_c01125{bottom:208.439250px;}
.y19_c01125{bottom:267.839535px;}
.y18_c01125{bottom:297.359250px;}
.y17_c01125{bottom:327.599100px;}
.y16_c01125{bottom:387.358665px;}
.y15_c01125{bottom:417.600135px;}
.y14_c01125{bottom:447.479235px;}
.y13_c01125{bottom:507.238770px;}
.y12_c01125{bottom:537.119385px;}
.y11_c01125{bottom:567.000000px;}
.y10_c01125{bottom:626.398635px;}
.yf_c01125{bottom:657.358635px;}
.ye_c01125{bottom:686.879970px;}
.yd_c01125{bottom:746.639700px;}
.yc_c01125{bottom:753.119385px;}
.yb_c01125{bottom:775.800105px;}
.ya_c01125{bottom:806.399235px;}
.y9_c01125{bottom:866.158815px;}
.y8_c01125{bottom:896.039340px;}
.y7_c01125{bottom:926.640105px;}
.y6_c01125{bottom:986.038875px;}
.y5_c01125{bottom:1015.919490px;}
.y4_c01125{bottom:1076.039985px;}
.y3_c01125{bottom:1076.040165px;}
.y2_c01125{bottom:1105.559685px;}
.y1_c01125{bottom:1136.158815px;}
.h19_c01125{height:32.071289px;}
.h11_c01125{height:37.546875px;}
.h12_c01125{height:40.060547px;}
.h13_c01125{height:40.766602px;}
.h14_c01125{height:56.689453px;}
.h7_c01125{height:71.806641px;}
.he_c01125{height:71.897461px;}
.ha_c01125{height:73.529297px;}
.h17_c01125{height:75.080566px;}
.h18_c01125{height:75.778931px;}
.h1a_c01125{height:76.552734px;}
.hc_c01125{height:76.658203px;}
.h1c_c01125{height:77.097656px;}
.h4_c01125{height:77.288818px;}
.h3_c01125{height:77.440430px;}
.h15_c01125{height:77.853516px;}
.h8_c01125{height:78.222656px;}
.hd_c01125{height:78.609375px;}
.h5_c01125{height:78.721802px;}
.h16_c01125{height:79.365234px;}
.h9_c01125{height:79.787109px;}
.h1_c01125{height:80.876953px;}
.hf_c01125{height:81.533203px;}
.h2_c01125{height:82.388672px;}
.h6_c01125{height:83.144531px;}
.h10_c01125{height:85.239258px;}
.hb_c01125{height:85.980469px;}
.h1b_c01125{height:100.125000px;}
.h0_c01125{height:1263.000000px;}
.w0_c01125{width:892.500000px;}
.x0_c01125{left:0.000000px;}
.x20_c01125{left:136.079400px;}
.x15_c01125{left:137.158815px;}
.x1_c01125{left:138.599100px;}
.x4_c01125{left:140.398665px;}
.x16_c01125{left:163.799565px;}
.x1f_c01125{left:165.239850px;}
.x18_c01125{left:169.918350px;}
.x25_c01125{left:183.238785px;}
.x11_c01125{left:190.079400px;}
.x12_c01125{left:215.639100px;}
.x2c_c01125{left:218.158785px;}
.x2a_c01125{left:219.599100px;}
.x7_c01125{left:230.399850px;}
.x2_c01125{left:232.199385px;}
.x1c_c01125{left:233.278800px;}
.x2d_c01125{left:237.599700px;}
.x21_c01125{left:240.119385px;}
.x19_c01125{left:242.279850px;}
.x13_c01125{left:244.079385px;}
.x23_c01125{left:248.398635px;}
.x1a_c01125{left:257.038950px;}
.x17_c01125{left:258.120000px;}
.x5_c01125{left:259.199385px;}
.x22_c01125{left:270.718500px;}
.x14_c01125{left:276.479685px;}
.x2b_c01125{left:277.559100px;}
.xf_c01125{left:285.838515px;}
.x3_c01125{left:288.359850px;}
.x8_c01125{left:293.040000px;}
.x24_c01125{left:299.878950px;}
.x1b_c01125{left:331.918350px;}
.x10_c01125{left:332.999385px;}
.x9_c01125{left:339.479235px;}
.x2e_c01125{left:362.519100px;}
.x26_c01125{left:364.318800px;}
.xa_c01125{left:371.879535px;}
.x1d_c01125{left:375.119385px;}
.x27_c01125{left:388.798920px;}
.x2f_c01125{left:391.679670px;}
.x1e_c01125{left:404.279850px;}
.x28_c01125{left:409.319235px;}
.x6_c01125{left:440.638500px;}
.xb_c01125{left:442.439670px;}
.x29_c01125{left:465.118785px;}
.xc_c01125{left:487.799565px;}
.xd_c01125{left:529.558635px;}
.xe_c01125{left:552.598530px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls2a_c01125{letter-spacing:-12.236000pt;}
.ls16_c01125{letter-spacing:-9.200000pt;}
.ls10_c01125{letter-spacing:-8.911467pt;}
.ls17_c01125{letter-spacing:-7.204667pt;}
.lsc_c01125{letter-spacing:-5.553333pt;}
.lsa_c01125{letter-spacing:-4.488000pt;}
.ls1c_c01125{letter-spacing:-4.322087pt;}
.ls5_c01125{letter-spacing:-4.081000pt;}
.ls12_c01125{letter-spacing:-3.841200pt;}
.ls1b_c01125{letter-spacing:-3.603047pt;}
.ls28_c01125{letter-spacing:-3.429867pt;}
.ls26_c01125{letter-spacing:-3.394300pt;}
.ls2b_c01125{letter-spacing:-3.300960pt;}
.lse_c01125{letter-spacing:-2.913373pt;}
.ls29_c01125{letter-spacing:-2.882580pt;}
.ls15_c01125{letter-spacing:-2.767733pt;}
.ls11_c01125{letter-spacing:-2.716000pt;}
.ls21_c01125{letter-spacing:-2.197140pt;}
.ls19_c01125{letter-spacing:-2.161400pt;}
.ls1_c01125{letter-spacing:-2.075800pt;}
.ls24_c01125{letter-spacing:-2.040000pt;}
.ls8_c01125{letter-spacing:-2.037000pt;}
.ls3_c01125{letter-spacing:-1.465200pt;}
.ls18_c01125{letter-spacing:-1.440933pt;}
.ls9_c01125{letter-spacing:-1.357300pt;}
.ls14_c01125{letter-spacing:-0.731940pt;}
.ls6_c01125{letter-spacing:-0.720467pt;}
.ls4_c01125{letter-spacing:-0.679000pt;}
.ls27_c01125{letter-spacing:-0.644107pt;}
.ls7_c01125{letter-spacing:0.000000pt;}
.ls1f_c01125{letter-spacing:0.656333pt;}
.lsf_c01125{letter-spacing:0.657333pt;}
.ls2_c01125{letter-spacing:0.719400pt;}
.ls23_c01125{letter-spacing:1.456000pt;}
.ls1a_c01125{letter-spacing:2.075800pt;}
.ls22_c01125{letter-spacing:2.295333pt;}
.ls0_c01125{letter-spacing:2.882580pt;}
.ls25_c01125{letter-spacing:4.678667pt;}
.ls1e_c01125{letter-spacing:4.755867pt;}
.ls20_c01125{letter-spacing:4.760000pt;}
.ls13_c01125{letter-spacing:5.500000pt;}
.lsd_c01125{letter-spacing:5.548800pt;}
.ls1d_c01125{letter-spacing:13.715200pt;}
.lsb_c01125{letter-spacing:16.200667pt;}
.ws0_c01125{word-spacing:0.000000pt;}
._e_c01125{margin-left:-7.927094pt;}
._2_c01125{margin-left:-3.445933pt;}
._b_c01125{margin-left:-1.284296pt;}
._4_c01125{width:1.675987pt;}
._d_c01125{width:2.927447pt;}
._0_c01125{width:4.058668pt;}
._1_c01125{width:5.573604pt;}
._5_c01125{width:7.395663pt;}
._3_c01125{width:8.895022pt;}
._6_c01125{width:9.872700pt;}
._9_c01125{width:11.485848pt;}
._a_c01125{width:12.714750pt;}
._7_c01125{width:18.283278pt;}
._8_c01125{width:20.612733pt;}
._c_c01125{width:34.111204pt;}
.fs13_c01125{font-size:27.333333pt;}
.fse_c01125{font-size:32.000000pt;}
.fsf_c01125{font-size:35.333333pt;}
.fs10_c01125{font-size:36.666667pt;}
.fs11_c01125{font-size:50.000000pt;}
.fs8_c01125{font-size:62.666667pt;}
.fs5_c01125{font-size:63.333333pt;}
.fsc_c01125{font-size:64.666667pt;}
.fsa_c01125{font-size:65.333333pt;}
.fs2_c01125{font-size:66.000000pt;}
.fs6_c01125{font-size:66.666667pt;}
.fs7_c01125{font-size:68.000000pt;}
.fs12_c01125{font-size:68.666667pt;}
.fsb_c01125{font-size:69.333333pt;}
.fs3_c01125{font-size:70.000000pt;}
.fs0_c01125{font-size:71.333333pt;}
.fs1_c01125{font-size:72.666667pt;}
.fs4_c01125{font-size:73.333333pt;}
.fsd_c01125{font-size:76.666667pt;}
.fs9_c01125{font-size:77.333333pt;}
.fs14_c01125{font-size:85.333333pt;}
.y0_c01125{bottom:0.000000pt;}
.y1b_c01125{bottom:159.039587pt;}
.y1a_c01125{bottom:185.279333pt;}
.y19_c01125{bottom:238.079587pt;}
.y18_c01125{bottom:264.319333pt;}
.y17_c01125{bottom:291.199200pt;}
.y16_c01125{bottom:344.318813pt;}
.y15_c01125{bottom:371.200120pt;}
.y14_c01125{bottom:397.759320pt;}
.y13_c01125{bottom:450.878907pt;}
.y12_c01125{bottom:477.439453pt;}
.y11_c01125{bottom:504.000000pt;}
.y10_c01125{bottom:556.798787pt;}
.yf_c01125{bottom:584.318787pt;}
.ye_c01125{bottom:610.559973pt;}
.yd_c01125{bottom:663.679733pt;}
.yc_c01125{bottom:669.439453pt;}
.yb_c01125{bottom:689.600093pt;}
.ya_c01125{bottom:716.799320pt;}
.y9_c01125{bottom:769.918947pt;}
.y8_c01125{bottom:796.479413pt;}
.y7_c01125{bottom:823.680093pt;}
.y6_c01125{bottom:876.479000pt;}
.y5_c01125{bottom:903.039547pt;}
.y4_c01125{bottom:956.479987pt;}
.y3_c01125{bottom:956.480147pt;}
.y2_c01125{bottom:982.719720pt;}
.y1_c01125{bottom:1009.918947pt;}
.h19_c01125{height:28.507812pt;}
.h11_c01125{height:33.375000pt;}
.h12_c01125{height:35.609375pt;}
.h13_c01125{height:36.236979pt;}
.h14_c01125{height:50.390625pt;}
.h7_c01125{height:63.828125pt;}
.he_c01125{height:63.908854pt;}
.ha_c01125{height:65.359375pt;}
.h17_c01125{height:66.738281pt;}
.h18_c01125{height:67.359049pt;}
.h1a_c01125{height:68.046875pt;}
.hc_c01125{height:68.140625pt;}
.h1c_c01125{height:68.531250pt;}
.h4_c01125{height:68.701172pt;}
.h3_c01125{height:68.835938pt;}
.h15_c01125{height:69.203125pt;}
.h8_c01125{height:69.531250pt;}
.hd_c01125{height:69.875000pt;}
.h5_c01125{height:69.974935pt;}
.h16_c01125{height:70.546875pt;}
.h9_c01125{height:70.921875pt;}
.h1_c01125{height:71.890625pt;}
.hf_c01125{height:72.473958pt;}
.h2_c01125{height:73.234375pt;}
.h6_c01125{height:73.906250pt;}
.h10_c01125{height:75.768229pt;}
.hb_c01125{height:76.427083pt;}
.h1b_c01125{height:89.000000pt;}
.h0_c01125{height:1122.666667pt;}
.w0_c01125{width:793.333333pt;}
.x0_c01125{left:0.000000pt;}
.x20_c01125{left:120.959467pt;}
.x15_c01125{left:121.918947pt;}
.x1_c01125{left:123.199200pt;}
.x4_c01125{left:124.798813pt;}
.x16_c01125{left:145.599613pt;}
.x1f_c01125{left:146.879867pt;}
.x18_c01125{left:151.038533pt;}
.x25_c01125{left:162.878920pt;}
.x11_c01125{left:168.959467pt;}
.x12_c01125{left:191.679200pt;}
.x2c_c01125{left:193.918920pt;}
.x2a_c01125{left:195.199200pt;}
.x7_c01125{left:204.799867pt;}
.x2_c01125{left:206.399453pt;}
.x1c_c01125{left:207.358933pt;}
.x2d_c01125{left:211.199733pt;}
.x21_c01125{left:213.439453pt;}
.x19_c01125{left:215.359867pt;}
.x13_c01125{left:216.959453pt;}
.x23_c01125{left:220.798787pt;}
.x1a_c01125{left:228.479067pt;}
.x17_c01125{left:229.440000pt;}
.x5_c01125{left:230.399453pt;}
.x22_c01125{left:240.638667pt;}
.x14_c01125{left:245.759720pt;}
.x2b_c01125{left:246.719200pt;}
.xf_c01125{left:254.078680pt;}
.x3_c01125{left:256.319867pt;}
.x8_c01125{left:260.480000pt;}
.x24_c01125{left:266.559067pt;}
.x1b_c01125{left:295.038533pt;}
.x10_c01125{left:295.999453pt;}
.x9_c01125{left:301.759320pt;}
.x2e_c01125{left:322.239200pt;}
.x26_c01125{left:323.838933pt;}
.xa_c01125{left:330.559587pt;}
.x1d_c01125{left:333.439453pt;}
.x27_c01125{left:345.599040pt;}
.x2f_c01125{left:348.159707pt;}
.x1e_c01125{left:359.359867pt;}
.x28_c01125{left:363.839320pt;}
.x6_c01125{left:391.678667pt;}
.xb_c01125{left:393.279707pt;}
.x29_c01125{left:413.438920pt;}
.xc_c01125{left:433.599613pt;}
.xd_c01125{left:470.718787pt;}
.xe_c01125{left:491.198693pt;}
}





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

.ir_c01126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_a9ee3c7b9c41fa20361b996b.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01126;src:url('chunks/assets/font_86c59ff8c4fc02ad59f71157.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01126;src:url('chunks/assets/font_61a3598a177e48f9f7c7f55b.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01126;src:url('chunks/assets/font_44cb55f7827cf8ff82677814.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01126;src:url('chunks/assets/font_427f3cc262fe7221edce8072.woff2')format("woff");}.ff5_c01126{font-family:ff5_c01126;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01126;src:url('chunks/assets/font_005bb489b8b4b144f86e1fa9.woff2')format("woff");}.ff6_c01126{font-family:ff6_c01126;line-height:1.364746;font-style:normal;font-weight: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_c01126;src:url('chunks/assets/font_74d376efd37dce63ff0a11d9.woff2')format("woff");}.ff7_c01126{font-family:ff7_c01126;line-height:1.281250;font-style:normal;font-weight: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_c01126;src:url('chunks/assets/font_488d56dd95c20bc6e9e73793.woff2')format("woff");}.ff8_c01126{font-family:ff8_c01126;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c01126{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m15_c01126{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m1a_c01126{transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218137,0.000000,0.000000,0.250000,0,0);}
.ma_c01126{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m20_c01126{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m10_c01126{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m1b_c01126{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1e_c01126{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.me_c01126{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m2a_c01126{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1_c01126{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.mf_c01126{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.mc_c01126{transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);}
.m0_c01126{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m25_c01126{transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);}
.m4_c01126{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m6_c01126{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m19_c01126{transform:matrix(0.239754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239754,0.000000,0.000000,0.250000,0,0);}
.m7_c01126{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mb_c01126{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m28_c01126{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m22_c01126{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m24_c01126{transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);}
.m8_c01126{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m2_c01126{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m2b_c01126{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m5_c01126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c01126{transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);}
.m3_c01126{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m1f_c01126{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m26_c01126{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m27_c01126{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m13_c01126{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m9_c01126{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_c01126{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m18_c01126{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m23_c01126{transform:matrix(0.325472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325472,0.000000,0.000000,0.250000,0,0);}
.m16_c01126{transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346939,0.000000,0.000000,0.250000,0,0);}
.m1c_c01126{transform:matrix(0.352381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352381,0.000000,0.000000,0.250000,0,0);}
.m1d_c01126{transform:matrix(0.369048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369048,0.000000,0.000000,0.250000,0,0);}
.m14_c01126{transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392857,0.000000,0.000000,0.250000,0,0);}
.m17_c01126{transform:matrix(0.460227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460227,0.000000,0.000000,0.250000,0,0);}
.m11_c01126{transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470588,0.000000,0.000000,0.250000,0,0);}
.m12_c01126{transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495690,0.000000,0.000000,0.250000,0,0);}
.v0_c01126{vertical-align:0.000000px;}
.ls1b_c01126{letter-spacing:-15.128865px;}
.ls22_c01126{letter-spacing:-14.998500px;}
.ls2c_c01126{letter-spacing:-14.859780px;}
.ls23_c01126{letter-spacing:-13.836375px;}
.ls29_c01126{letter-spacing:-11.248800px;}
.ls20_c01126{letter-spacing:-8.600085px;}
.ls25_c01126{letter-spacing:-8.325833px;}
.ls24_c01126{letter-spacing:-8.127000px;}
.ls2a_c01126{letter-spacing:-6.917295px;}
.ls8_c01126{letter-spacing:-5.946600px;}
.ls19_c01126{letter-spacing:-5.672873px;}
.lsc_c01126{letter-spacing:-3.860025px;}
.ls12_c01126{letter-spacing:-3.854475px;}
.ls11_c01126{letter-spacing:-3.787875px;}
.ls26_c01126{letter-spacing:-3.717000px;}
.ls4_c01126{letter-spacing:-3.242903px;}
.ls16_c01126{letter-spacing:-3.089625px;}
.ls7_c01126{letter-spacing:-3.031875px;}
.ls30_c01126{letter-spacing:-3.028950px;}
.ls2e_c01126{letter-spacing:-2.973600px;}
.ls1_c01126{letter-spacing:-2.431575px;}
.lsd_c01126{letter-spacing:-2.271285px;}
.ls10_c01126{letter-spacing:-2.267213px;}
.lsa_c01126{letter-spacing:-2.245620px;}
.ls21_c01126{letter-spacing:-1.722015px;}
.ls14_c01126{letter-spacing:-1.621050px;}
.ls6_c01126{letter-spacing:-1.512000px;}
.ls3_c01126{letter-spacing:-0.818850px;}
.ls2_c01126{letter-spacing:-0.810525px;}
.ls9_c01126{letter-spacing:-0.794205px;}
.ls1f_c01126{letter-spacing:-0.770400px;}
.lsf_c01126{letter-spacing:-0.756000px;}
.lsb_c01126{letter-spacing:0.000000px;}
.ls1a_c01126{letter-spacing:0.770400px;}
.ls0_c01126{letter-spacing:0.810525px;}
.ls13_c01126{letter-spacing:0.818100px;}
.ls1d_c01126{letter-spacing:1.433250px;}
.ls18_c01126{letter-spacing:1.501478px;}
.ls2b_c01126{letter-spacing:1.527068px;}
.ls5_c01126{letter-spacing:1.621050px;}
.ls15_c01126{letter-spacing:1.653600px;}
.ls2d_c01126{letter-spacing:2.208180px;}
.ls28_c01126{letter-spacing:2.293110px;}
.ls27_c01126{letter-spacing:2.310398px;}
.ls2f_c01126{letter-spacing:2.470950px;}
.ls1c_c01126{letter-spacing:2.898000px;}
.ls17_c01126{letter-spacing:4.091948px;}
.lse_c01126{letter-spacing:4.170000px;}
.ls1e_c01126{letter-spacing:12.045600px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01126{word-spacing:0.000000px;}
._9_c01126{margin-left:-18.943191px;}
._12_c01126{margin-left:-11.579605px;}
._13_c01126{margin-left:-7.420940px;}
._3_c01126{margin-left:-3.165387px;}
._14_c01126{margin-left:-1.709238px;}
._10_c01126{width:2.804367px;}
._7_c01126{width:4.004524px;}
._f_c01126{width:5.380442px;}
._b_c01126{width:6.708835px;}
._2_c01126{width:8.056841px;}
._a_c01126{width:9.213851px;}
._d_c01126{width:10.356411px;}
._c_c01126{width:11.799898px;}
._e_c01126{width:13.071228px;}
._11_c01126{width:14.836439px;}
._0_c01126{width:16.194709px;}
._1_c01126{width:19.216446px;}
._4_c01126{width:20.395462px;}
._8_c01126{width:21.786854px;}
._5_c01126{width:23.115669px;}
._6_c01126{width:25.520270px;}
._15_c01126{width:27.877924px;}
.fc0_c01126{color:transparent;}
.fs8_c01126{font-size:30.750000px;}
.fsd_c01126{font-size:31.500000px;}
.fs10_c01126{font-size:32.250000px;}
.fsf_c01126{font-size:33.000000px;}
.fse_c01126{font-size:36.750000px;}
.fsa_c01126{font-size:38.250000px;}
.fsc_c01126{font-size:42.000000px;}
.fsb_c01126{font-size:43.500000px;}
.fs15_c01126{font-size:66.750000px;}
.fs6_c01126{font-size:75.000000px;}
.fs4_c01126{font-size:75.750000px;}
.fs5_c01126{font-size:76.500000px;}
.fs3_c01126{font-size:78.000000px;}
.fs2_c01126{font-size:78.750000px;}
.fs1_c01126{font-size:79.500000px;}
.fs0_c01126{font-size:80.250000px;}
.fs12_c01126{font-size:81.000000px;}
.fs13_c01126{font-size:81.750000px;}
.fs9_c01126{font-size:82.500000px;}
.fs7_c01126{font-size:83.250000px;}
.fs16_c01126{font-size:88.500000px;}
.fs14_c01126{font-size:89.250000px;}
.fs11_c01126{font-size:91.500000px;}
.y0_c01126{bottom:0.000000px;}
.y1b_c01126{bottom:208.080000px;}
.y1a_c01126{bottom:237.240435px;}
.y19_c01126{bottom:267.119385px;}
.y18_c01126{bottom:357.120435px;}
.y17_c01126{bottom:386.999400px;}
.y16_c01126{bottom:425.520315px;}
.y15_c01126{bottom:476.639700px;}
.y14_c01126{bottom:505.800150px;}
.y13_c01126{bottom:536.039985px;}
.y12_c01126{bottom:596.160420px;}
.y11_c01126{bottom:626.039385px;}
.y10_c01126{bottom:655.920000px;}
.yf_c01126{bottom:715.320285px;}
.ye_c01126{bottom:745.199385px;}
.yd_c01126{bottom:751.319820px;}
.yb_c01126{bottom:775.439160px;}
.yc_c01126{bottom:775.439205px;}
.ya_c01126{bottom:805.679070px;}
.y9_c01126{bottom:865.440315px;}
.y8_c01126{bottom:894.960015px;}
.y7_c01126{bottom:925.199805px;}
.y6_c01126{bottom:984.959385px;}
.y5_c01126{bottom:1014.480075px;}
.y3_c01126{bottom:1044.359760px;}
.y4_c01126{bottom:1044.359805px;}
.y2_c01126{bottom:1074.599670px;}
.y1_c01126{bottom:1134.720150px;}
.hd_c01126{height:32.071289px;}
.h12_c01126{height:32.853516px;}
.h15_c01126{height:33.635742px;}
.h14_c01126{height:34.417969px;}
.h13_c01126{height:36.319336px;}
.hf_c01126{height:39.893555px;}
.h11_c01126{height:41.507812px;}
.h10_c01126{height:42.990234px;}
.h20_c01126{height:69.618164px;}
.h9_c01126{height:73.571777px;}
.hc_c01126{height:74.307495px;}
.h17_c01126{height:75.043213px;}
.h6_c01126{height:76.341797px;}
.h21_c01126{height:76.552734px;}
.h8_c01126{height:77.097656px;}
.h3_c01126{height:77.288818px;}
.h2_c01126{height:77.986084px;}
.h23_c01126{height:78.024902px;}
.h5_c01126{height:78.609375px;}
.h1_c01126{height:78.721802px;}
.ha_c01126{height:78.760986px;}
.h1a_c01126{height:79.365234px;}
.h18_c01126{height:79.457520px;}
.h4_c01126{height:80.121094px;}
.h1e_c01126{height:80.791992px;}
.h7_c01126{height:80.876953px;}
.h1c_c01126{height:80.928955px;}
.he_c01126{height:80.969238px;}
.h1d_c01126{height:81.632812px;}
.hb_c01126{height:81.705322px;}
.h19_c01126{height:82.274414px;}
.h1b_c01126{height:82.388672px;}
.h22_c01126{height:87.462891px;}
.h1f_c01126{height:89.947266px;}
.h16_c01126{height:90.427734px;}
.h0_c01126{height:1263.000000px;}
.w0_c01126{width:892.500000px;}
.x0_c01126{left:0.000000px;}
.x2d_c01126{left:130.679100px;}
.x1c_c01126{left:131.758500px;}
.x1_c01126{left:132.839565px;}
.xc_c01126{left:134.638845px;}
.x11_c01126{left:178.558665px;}
.x12_c01126{left:190.438665px;}
.x3d_c01126{left:191.878950px;}
.x13_c01126{left:202.679700px;}
.x2_c01126{left:204.120000px;}
.x20_c01126{left:211.319850px;}
.x22_c01126{left:213.839535px;}
.x3e_c01126{left:215.639100px;}
.x1d_c01126{left:218.158785px;}
.x5_c01126{left:219.599100px;}
.x17_c01126{left:223.559100px;}
.x30_c01126{left:224.999400px;}
.x3b_c01126{left:227.519100px;}
.x3_c01126{left:235.080000px;}
.x31_c01126{left:239.758500px;}
.x18_c01126{left:249.118785px;}
.x21_c01126{left:260.998950px;}
.x19_c01126{left:263.879535px;}
.x34_c01126{left:278.279250px;}
.x23_c01126{left:281.159850px;}
.x14_c01126{left:291.958950px;}
.x2e_c01126{left:294.478635px;}
.x6_c01126{left:304.199850px;}
.x35_c01126{left:308.878350px;}
.x15_c01126{left:316.080000px;}
.x3a_c01126{left:320.040000px;}
.x7_c01126{left:328.319250px;}
.x26_c01126{left:330.118785px;}
.x2f_c01126{left:331.918350px;}
.x8_c01126{left:343.080000px;}
.xd_c01126{left:347.399235px;}
.x27_c01126{left:351.718500px;}
.x28_c01126{left:360.719535px;}
.x3c_c01126{left:361.798950px;}
.xe_c01126{left:366.838515px;}
.x1e_c01126{left:369.359850px;}
.x1a_c01126{left:378.359235px;}
.x24_c01126{left:389.519070px;}
.x4_c01126{left:398.879565px;}
.x16_c01126{left:401.039985px;}
.x32_c01126{left:407.878920px;}
.x1b_c01126{left:409.319235px;}
.x33_c01126{left:422.998950px;}
.x36_c01126{left:430.198785px;}
.x29_c01126{left:435.958335px;}
.x9_c01126{left:440.279250px;}
.x37_c01126{left:444.959385px;}
.x25_c01126{left:487.799565px;}
.xa_c01126{left:518.398635px;}
.xb_c01126{left:551.878320px;}
.x38_c01126{left:565.559685px;}
.x39_c01126{left:599.398635px;}
.x1f_c01126{left:619.198785px;}
.xf_c01126{left:659.159820px;}
.x10_c01126{left:699.119385px;}
.x2a_c01126{left:717.838530px;}
.x2b_c01126{left:732.958335px;}
.x2c_c01126{left:741.959385px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls1b_c01126{letter-spacing:-13.447880pt;}
.ls22_c01126{letter-spacing:-13.332000pt;}
.ls2c_c01126{letter-spacing:-13.208693pt;}
.ls23_c01126{letter-spacing:-12.299000pt;}
.ls29_c01126{letter-spacing:-9.998933pt;}
.ls20_c01126{letter-spacing:-7.644520pt;}
.ls25_c01126{letter-spacing:-7.400740pt;}
.ls24_c01126{letter-spacing:-7.224000pt;}
.ls2a_c01126{letter-spacing:-6.148707pt;}
.ls8_c01126{letter-spacing:-5.285867pt;}
.ls19_c01126{letter-spacing:-5.042553pt;}
.lsc_c01126{letter-spacing:-3.431133pt;}
.ls12_c01126{letter-spacing:-3.426200pt;}
.ls11_c01126{letter-spacing:-3.367000pt;}
.ls26_c01126{letter-spacing:-3.304000pt;}
.ls4_c01126{letter-spacing:-2.882580pt;}
.ls16_c01126{letter-spacing:-2.746333pt;}
.ls7_c01126{letter-spacing:-2.695000pt;}
.ls30_c01126{letter-spacing:-2.692400pt;}
.ls2e_c01126{letter-spacing:-2.643200pt;}
.ls1_c01126{letter-spacing:-2.161400pt;}
.lsd_c01126{letter-spacing:-2.018920pt;}
.ls10_c01126{letter-spacing:-2.015300pt;}
.lsa_c01126{letter-spacing:-1.996107pt;}
.ls21_c01126{letter-spacing:-1.530680pt;}
.ls14_c01126{letter-spacing:-1.440933pt;}
.ls6_c01126{letter-spacing:-1.344000pt;}
.ls3_c01126{letter-spacing:-0.727867pt;}
.ls2_c01126{letter-spacing:-0.720467pt;}
.ls9_c01126{letter-spacing:-0.705960pt;}
.ls1f_c01126{letter-spacing:-0.684800pt;}
.lsf_c01126{letter-spacing:-0.672000pt;}
.lsb_c01126{letter-spacing:0.000000pt;}
.ls1a_c01126{letter-spacing:0.684800pt;}
.ls0_c01126{letter-spacing:0.720467pt;}
.ls13_c01126{letter-spacing:0.727200pt;}
.ls1d_c01126{letter-spacing:1.274000pt;}
.ls18_c01126{letter-spacing:1.334647pt;}
.ls2b_c01126{letter-spacing:1.357393pt;}
.ls5_c01126{letter-spacing:1.440933pt;}
.ls15_c01126{letter-spacing:1.469867pt;}
.ls2d_c01126{letter-spacing:1.962827pt;}
.ls28_c01126{letter-spacing:2.038320pt;}
.ls27_c01126{letter-spacing:2.053687pt;}
.ls2f_c01126{letter-spacing:2.196400pt;}
.ls1c_c01126{letter-spacing:2.576000pt;}
.ls17_c01126{letter-spacing:3.637287pt;}
.lse_c01126{letter-spacing:3.706667pt;}
.ls1e_c01126{letter-spacing:10.707200pt;}
.ws0_c01126{word-spacing:0.000000pt;}
._9_c01126{margin-left:-16.838392pt;}
._12_c01126{margin-left:-10.292982pt;}
._13_c01126{margin-left:-6.596391pt;}
._3_c01126{margin-left:-2.813677pt;}
._14_c01126{margin-left:-1.519323pt;}
._10_c01126{width:2.492770pt;}
._7_c01126{width:3.559577pt;}
._f_c01126{width:4.782615pt;}
._b_c01126{width:5.963409pt;}
._2_c01126{width:7.161636pt;}
._a_c01126{width:8.190090pt;}
._d_c01126{width:9.205699pt;}
._c_c01126{width:10.488798pt;}
._e_c01126{width:11.618869pt;}
._11_c01126{width:13.187946pt;}
._0_c01126{width:14.395297pt;}
._1_c01126{width:17.081285pt;}
._4_c01126{width:18.129300pt;}
._8_c01126{width:19.366092pt;}
._5_c01126{width:20.547262pt;}
._6_c01126{width:22.684685pt;}
._15_c01126{width:24.780377pt;}
.fs8_c01126{font-size:27.333333pt;}
.fsd_c01126{font-size:28.000000pt;}
.fs10_c01126{font-size:28.666667pt;}
.fsf_c01126{font-size:29.333333pt;}
.fse_c01126{font-size:32.666667pt;}
.fsa_c01126{font-size:34.000000pt;}
.fsc_c01126{font-size:37.333333pt;}
.fsb_c01126{font-size:38.666667pt;}
.fs15_c01126{font-size:59.333333pt;}
.fs6_c01126{font-size:66.666667pt;}
.fs4_c01126{font-size:67.333333pt;}
.fs5_c01126{font-size:68.000000pt;}
.fs3_c01126{font-size:69.333333pt;}
.fs2_c01126{font-size:70.000000pt;}
.fs1_c01126{font-size:70.666667pt;}
.fs0_c01126{font-size:71.333333pt;}
.fs12_c01126{font-size:72.000000pt;}
.fs13_c01126{font-size:72.666667pt;}
.fs9_c01126{font-size:73.333333pt;}
.fs7_c01126{font-size:74.000000pt;}
.fs16_c01126{font-size:78.666667pt;}
.fs14_c01126{font-size:79.333333pt;}
.fs11_c01126{font-size:81.333333pt;}
.y0_c01126{bottom:0.000000pt;}
.y1b_c01126{bottom:184.960000pt;}
.y1a_c01126{bottom:210.880387pt;}
.y19_c01126{bottom:237.439453pt;}
.y18_c01126{bottom:317.440387pt;}
.y17_c01126{bottom:343.999467pt;}
.y16_c01126{bottom:378.240280pt;}
.y15_c01126{bottom:423.679733pt;}
.y14_c01126{bottom:449.600133pt;}
.y13_c01126{bottom:476.479987pt;}
.y12_c01126{bottom:529.920373pt;}
.y11_c01126{bottom:556.479453pt;}
.y10_c01126{bottom:583.040000pt;}
.yf_c01126{bottom:635.840253pt;}
.ye_c01126{bottom:662.399453pt;}
.yd_c01126{bottom:667.839840pt;}
.yb_c01126{bottom:689.279253pt;}
.yc_c01126{bottom:689.279293pt;}
.ya_c01126{bottom:716.159173pt;}
.y9_c01126{bottom:769.280280pt;}
.y8_c01126{bottom:795.520013pt;}
.y7_c01126{bottom:822.399827pt;}
.y6_c01126{bottom:875.519453pt;}
.y5_c01126{bottom:901.760067pt;}
.y3_c01126{bottom:928.319787pt;}
.y4_c01126{bottom:928.319827pt;}
.y2_c01126{bottom:955.199707pt;}
.y1_c01126{bottom:1008.640133pt;}
.hd_c01126{height:28.507812pt;}
.h12_c01126{height:29.203125pt;}
.h15_c01126{height:29.898438pt;}
.h14_c01126{height:30.593750pt;}
.h13_c01126{height:32.283854pt;}
.hf_c01126{height:35.460938pt;}
.h11_c01126{height:36.895833pt;}
.h10_c01126{height:38.213542pt;}
.h20_c01126{height:61.882812pt;}
.h9_c01126{height:65.397135pt;}
.hc_c01126{height:66.051107pt;}
.h17_c01126{height:66.705078pt;}
.h6_c01126{height:67.859375pt;}
.h21_c01126{height:68.046875pt;}
.h8_c01126{height:68.531250pt;}
.h3_c01126{height:68.701172pt;}
.h2_c01126{height:69.320964pt;}
.h23_c01126{height:69.355469pt;}
.h5_c01126{height:69.875000pt;}
.h1_c01126{height:69.974935pt;}
.ha_c01126{height:70.009766pt;}
.h1a_c01126{height:70.546875pt;}
.h18_c01126{height:70.628906pt;}
.h4_c01126{height:71.218750pt;}
.h1e_c01126{height:71.815104pt;}
.h7_c01126{height:71.890625pt;}
.h1c_c01126{height:71.936849pt;}
.he_c01126{height:71.972656pt;}
.h1d_c01126{height:72.562500pt;}
.hb_c01126{height:72.626953pt;}
.h19_c01126{height:73.132813pt;}
.h1b_c01126{height:73.234375pt;}
.h22_c01126{height:77.744792pt;}
.h1f_c01126{height:79.953125pt;}
.h16_c01126{height:80.380208pt;}
.h0_c01126{height:1122.666667pt;}
.w0_c01126{width:793.333333pt;}
.x0_c01126{left:0.000000pt;}
.x2d_c01126{left:116.159200pt;}
.x1c_c01126{left:117.118667pt;}
.x1_c01126{left:118.079613pt;}
.xc_c01126{left:119.678973pt;}
.x11_c01126{left:158.718813pt;}
.x12_c01126{left:169.278813pt;}
.x3d_c01126{left:170.559067pt;}
.x13_c01126{left:180.159733pt;}
.x2_c01126{left:181.440000pt;}
.x20_c01126{left:187.839867pt;}
.x22_c01126{left:190.079587pt;}
.x3e_c01126{left:191.679200pt;}
.x1d_c01126{left:193.918920pt;}
.x5_c01126{left:195.199200pt;}
.x17_c01126{left:198.719200pt;}
.x30_c01126{left:199.999467pt;}
.x3b_c01126{left:202.239200pt;}
.x3_c01126{left:208.960000pt;}
.x31_c01126{left:213.118667pt;}
.x18_c01126{left:221.438920pt;}
.x21_c01126{left:231.999067pt;}
.x19_c01126{left:234.559587pt;}
.x34_c01126{left:247.359333pt;}
.x23_c01126{left:249.919867pt;}
.x14_c01126{left:259.519067pt;}
.x2e_c01126{left:261.758787pt;}
.x6_c01126{left:270.399867pt;}
.x35_c01126{left:274.558533pt;}
.x15_c01126{left:280.960000pt;}
.x3a_c01126{left:284.480000pt;}
.x7_c01126{left:291.839333pt;}
.x26_c01126{left:293.438920pt;}
.x2f_c01126{left:295.038533pt;}
.x8_c01126{left:304.960000pt;}
.xd_c01126{left:308.799320pt;}
.x27_c01126{left:312.638667pt;}
.x28_c01126{left:320.639587pt;}
.x3c_c01126{left:321.599067pt;}
.xe_c01126{left:326.078680pt;}
.x1e_c01126{left:328.319867pt;}
.x1a_c01126{left:336.319320pt;}
.x24_c01126{left:346.239173pt;}
.x4_c01126{left:354.559613pt;}
.x16_c01126{left:356.479987pt;}
.x32_c01126{left:362.559040pt;}
.x1b_c01126{left:363.839320pt;}
.x33_c01126{left:375.999067pt;}
.x36_c01126{left:382.398920pt;}
.x29_c01126{left:387.518520pt;}
.x9_c01126{left:391.359333pt;}
.x37_c01126{left:395.519453pt;}
.x25_c01126{left:433.599613pt;}
.xa_c01126{left:460.798787pt;}
.xb_c01126{left:490.558507pt;}
.x38_c01126{left:502.719720pt;}
.x39_c01126{left:532.798787pt;}
.x1f_c01126{left:550.398920pt;}
.xf_c01126{left:585.919840pt;}
.x10_c01126{left:621.439453pt;}
.x2a_c01126{left:638.078693pt;}
.x2b_c01126{left:651.518520pt;}
.x2c_c01126{left:659.519453pt;}
}





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

.ir_c01127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_9dae51e6d1de69c3424fc220.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01127;src:url('chunks/assets/font_48ae40e3d35c5071347f16a1.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01127;src:url('chunks/assets/font_1e3df2948d3ce4be3671ac69.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01127;src:url('chunks/assets/font_1b582b049100fc22bd340bce.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01127;src:url('chunks/assets/font_5ddf37bd492158a3f2847eaf.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01127;src:url('chunks/assets/font_2f6dca1dab318a1d136e568f.woff2')format("woff");}.ff6_c01127{font-family:ff6_c01127;line-height:1.432129;font-style:normal;font-weight: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_c01127;src:url('chunks/assets/font_bc276a0384b76866e8502a51.woff2')format("woff");}.ff7_c01127{font-family:ff7_c01127;line-height:1.364746;font-style:normal;font-weight: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_c01127;src:url('chunks/assets/font_e86b839094ce34be7ade99b3.woff2')format("woff");}.ff8_c01127{font-family:ff8_c01127;line-height:1.432129;font-style:normal;font-weight: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_c01127;src:url('chunks/assets/font_4c251a8da7797a5e32ec63d6.woff2')format("woff");}.ff9_c01127{font-family:ff9_c01127;line-height:1.432129;font-style:normal;font-weight: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_c01127;src:url('chunks/assets/font_094a72963195582251756b5b.woff2')format("woff");}.ffa_c01127{font-family:ffa_c01127;line-height:1.432129;font-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_c01127{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m6_c01127{transform:matrix(0.192708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192708,0.000000,0.000000,0.250000,0,0);}
.m11_c01127{transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193966,0.000000,0.000000,0.250000,0,0);}
.m1c_c01127{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m1e_c01127{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.md_c01127{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m21_c01127{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.mb_c01127{transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);}
.m17_c01127{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m1f_c01127{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m1_c01127{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m20_c01127{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.me_c01127{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m14_c01127{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m2_c01127{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m0_c01127{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.ma_c01127{transform:matrix(0.243852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243852,0.000000,0.000000,0.250000,0,0);}
.mf_c01127{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m10_c01127{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.mc_c01127{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m13_c01127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01127{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m9_c01127{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1d_c01127{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m4_c01127{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.m12_c01127{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m1b_c01127{transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);}
.m1a_c01127{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m19_c01127{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m15_c01127{transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337838,0.000000,0.000000,0.250000,0,0);}
.m5_c01127{transform:matrix(0.379902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379902,0.000000,0.000000,0.250000,0,0);}
.m7_c01127{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.m16_c01127{transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);}
.m18_c01127{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_c01127{vertical-align:0.000000px;}
.lsf_c01127{letter-spacing:-16.354800px;}
.ls1f_c01127{letter-spacing:-13.142400px;}
.lse_c01127{letter-spacing:-6.811200px;}
.ls22_c01127{letter-spacing:-6.651900px;}
.lsa_c01127{letter-spacing:-6.075000px;}
.ls23_c01127{letter-spacing:-5.622750px;}
.lsd_c01127{letter-spacing:-5.431500px;}
.ls9_c01127{letter-spacing:-4.634850px;}
.ls3_c01127{letter-spacing:-3.860025px;}
.ls24_c01127{letter-spacing:-3.785250px;}
.ls4_c01127{letter-spacing:-3.089625px;}
.ls25_c01127{letter-spacing:-3.084600px;}
.ls17_c01127{letter-spacing:-3.055500px;}
.ls14_c01127{letter-spacing:-3.028200px;}
.ls8_c01127{letter-spacing:-2.313450px;}
.ls18_c01127{letter-spacing:-2.310398px;}
.ls13_c01127{letter-spacing:-2.271150px;}
.ls6_c01127{letter-spacing:-1.541505px;}
.ls26_c01127{letter-spacing:-1.540800px;}
.ls11_c01127{letter-spacing:-1.537200px;}
.ls15_c01127{letter-spacing:-1.514873px;}
.lsb_c01127{letter-spacing:-0.771150px;}
.ls16_c01127{letter-spacing:-0.757050px;}
.ls1c_c01127{letter-spacing:-0.432510px;}
.lsc_c01127{letter-spacing:0.000000px;}
.ls1e_c01127{letter-spacing:0.414000px;}
.ls0_c01127{letter-spacing:0.771150px;}
.ls21_c01127{letter-spacing:1.540800px;}
.ls5_c01127{letter-spacing:1.619468px;}
.ls2_c01127{letter-spacing:2.313450px;}
.ls12_c01127{letter-spacing:2.493960px;}
.ls20_c01127{letter-spacing:3.728550px;}
.ls27_c01127{letter-spacing:4.050000px;}
.ls10_c01127{letter-spacing:4.378500px;}
.ls1d_c01127{letter-spacing:6.590220px;}
.ls7_c01127{letter-spacing:7.086690px;}
.ls19_c01127{letter-spacing:12.058695px;}
.ls1_c01127{letter-spacing:13.634625px;}
.ls1b_c01127{letter-spacing:31.363950px;}
.ls1a_c01127{letter-spacing:40.499550px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01127{word-spacing:0.000000px;}
._13_c01127{margin-left:-20.424536px;}
._11_c01127{margin-left:-10.517973px;}
._6_c01127{margin-left:-6.789790px;}
._9_c01127{margin-left:-5.453335px;}
._c_c01127{margin-left:-3.761984px;}
._f_c01127{margin-left:-2.459141px;}
._d_c01127{width:1.014262px;}
._15_c01127{width:2.598627px;}
._b_c01127{width:3.724253px;}
._0_c01127{width:5.088159px;}
._7_c01127{width:6.336469px;}
._e_c01127{width:7.418539px;}
._14_c01127{width:9.161272px;}
._8_c01127{width:10.246539px;}
._16_c01127{width:11.376488px;}
._1_c01127{width:12.688196px;}
._17_c01127{width:13.865193px;}
._10_c01127{width:15.390987px;}
._12_c01127{width:18.921494px;}
._a_c01127{width:21.483195px;}
._3_c01127{width:22.642429px;}
._5_c01127{width:27.372992px;}
._2_c01127{width:30.529261px;}
._4_c01127{width:37.211295px;}
.fc0_c01127{color:transparent;}
.fse_c01127{font-size:34.500000px;}
.fs10_c01127{font-size:39.000000px;}
.fs15_c01127{font-size:39.750000px;}
.fs11_c01127{font-size:42.000000px;}
.fs14_c01127{font-size:48.000000px;}
.fsd_c01127{font-size:49.500000px;}
.fsf_c01127{font-size:55.500000px;}
.fs12_c01127{font-size:60.000000px;}
.fs6_c01127{font-size:72.000000px;}
.fs7_c01127{font-size:74.250000px;}
.fs5_c01127{font-size:76.500000px;}
.fsb_c01127{font-size:77.250000px;}
.fs9_c01127{font-size:78.750000px;}
.fs2_c01127{font-size:79.500000px;}
.fs0_c01127{font-size:80.250000px;}
.fs3_c01127{font-size:81.000000px;}
.fs1_c01127{font-size:81.750000px;}
.fs4_c01127{font-size:82.500000px;}
.fs17_c01127{font-size:83.250000px;}
.fs8_c01127{font-size:84.000000px;}
.fs16_c01127{font-size:85.500000px;}
.fsc_c01127{font-size:87.000000px;}
.fsa_c01127{font-size:91.500000px;}
.fs13_c01127{font-size:108.000000px;}
.fs18_c01127{font-size:115.500000px;}
.y0_c01127{bottom:0.000000px;}
.y1e_c01127{bottom:206.639700px;}
.y1d_c01127{bottom:206.640630px;}
.y1c_c01127{bottom:236.518635px;}
.y1b_c01127{bottom:265.679100px;}
.y1a_c01127{bottom:325.799535px;}
.y19_c01127{bottom:355.680135px;}
.y18_c01127{bottom:385.199850px;}
.y17_c01127{bottom:445.679670px;}
.y16_c01127{bottom:475.199385px;}
.y15_c01127{bottom:505.080000px;}
.y14_c01127{bottom:564.839535px;}
.y13_c01127{bottom:594.359250px;}
.y12_c01127{bottom:624.239820px;}
.y11_c01127{bottom:684.358605px;}
.y10_c01127{bottom:714.239220px;}
.ye_c01127{bottom:743.220150px;}
.yf_c01127{bottom:743.938620px;}
.yd_c01127{bottom:744.479235px;}
.yc_c01127{bottom:752.039985px;}
.yb_c01127{bottom:804.238770px;}
.ya_c01127{bottom:833.760135px;}
.y9_c01127{bottom:864.000000px;}
.y8_c01127{bottom:923.398590px;}
.y7_c01127{bottom:953.279640px;}
.y6_c01127{bottom:983.519070px;}
.y5_c01127{bottom:1013.399775px;}
.y4_c01127{bottom:1074.238770px;}
.y3_c01127{bottom:1103.039985px;}
.y2_c01127{bottom:1103.040945px;}
.y1_c01127{bottom:1132.918950px;}
.h12_c01127{height:33.843018px;}
.h14_c01127{height:40.675781px;}
.h19_c01127{height:41.458008px;}
.h15_c01127{height:42.328125px;}
.h18_c01127{height:47.437500px;}
.h11_c01127{height:48.557373px;}
.h13_c01127{height:54.849609px;}
.h16_c01127{height:60.468750px;}
.h8_c01127{height:71.156250px;}
.he_c01127{height:75.778931px;}
.h1e_c01127{height:77.250366px;}
.h1b_c01127{height:77.288818px;}
.h9_c01127{height:77.440430px;}
.h3_c01127{height:78.024902px;}
.hb_c01127{height:79.365234px;}
.h4_c01127{height:79.457520px;}
.h7_c01127{height:79.787109px;}
.h5_c01127{height:80.050781px;}
.hf_c01127{height:80.121094px;}
.h1_c01127{height:80.876953px;}
.h6_c01127{height:80.928955px;}
.h1d_c01127{height:81.632812px;}
.h1c_c01127{height:81.664673px;}
.h2_c01127{height:82.388672px;}
.ha_c01127{height:83.015625px;}
.h1a_c01127{height:84.498047px;}
.hd_c01127{height:84.656250px;}
.h10_c01127{height:85.385742px;}
.hc_c01127{height:90.427734px;}
.h17_c01127{height:112.640625px;}
.h1f_c01127{height:120.462891px;}
.h0_c01127{height:1263.000000px;}
.w0_c01127{width:892.500000px;}
.x0_c01127{left:0.000000px;}
.x1a_c01127{left:131.399250px;}
.x1_c01127{left:132.839565px;}
.x4_c01127{left:134.638530px;}
.x5_c01127{left:164.519685px;}
.x17_c01127{left:180.359850px;}
.x9_c01127{left:190.799565px;}
.x24_c01127{left:206.639700px;}
.x6_c01127{left:213.839535px;}
.x25_c01127{left:217.438635px;}
.xe_c01127{left:229.679700px;}
.xa_c01127{left:239.040000px;}
.x20_c01127{left:265.319850px;}
.x1b_c01127{left:281.519100px;}
.x1d_c01127{left:285.479235px;}
.x21_c01127{left:294.839535px;}
.xb_c01127{left:299.158785px;}
.x2_c01127{left:309.239250px;}
.x18_c01127{left:319.319850px;}
.xc_c01127{left:323.639100px;}
.x11_c01127{left:340.199385px;}
.x3_c01127{left:342.719100px;}
.x19_c01127{left:350.639100px;}
.x15_c01127{left:366.838515px;}
.x7_c01127{left:380.519685px;}
.x16_c01127{left:381.599100px;}
.xd_c01127{left:387.358665px;}
.x12_c01127{left:428.399235px;}
.x13_c01127{left:458.639100px;}
.x8_c01127{left:464.398635px;}
.x1c_c01127{left:491.759535px;}
.x14_c01127{left:527.399820px;}
.xf_c01127{left:554.399820px;}
.x10_c01127{left:574.559100px;}
.x1e_c01127{left:584.639700px;}
.x1f_c01127{left:600.118785px;}
.x22_c01127{left:609.838530px;}
.x23_c01127{left:624.958335px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.lsf_c01127{letter-spacing:-14.537600pt;}
.ls1f_c01127{letter-spacing:-11.682133pt;}
.lse_c01127{letter-spacing:-6.054400pt;}
.ls22_c01127{letter-spacing:-5.912800pt;}
.lsa_c01127{letter-spacing:-5.400000pt;}
.ls23_c01127{letter-spacing:-4.998000pt;}
.lsd_c01127{letter-spacing:-4.828000pt;}
.ls9_c01127{letter-spacing:-4.119867pt;}
.ls3_c01127{letter-spacing:-3.431133pt;}
.ls24_c01127{letter-spacing:-3.364667pt;}
.ls4_c01127{letter-spacing:-2.746333pt;}
.ls25_c01127{letter-spacing:-2.741867pt;}
.ls17_c01127{letter-spacing:-2.716000pt;}
.ls14_c01127{letter-spacing:-2.691733pt;}
.ls8_c01127{letter-spacing:-2.056400pt;}
.ls18_c01127{letter-spacing:-2.053687pt;}
.ls13_c01127{letter-spacing:-2.018800pt;}
.ls6_c01127{letter-spacing:-1.370227pt;}
.ls26_c01127{letter-spacing:-1.369600pt;}
.ls11_c01127{letter-spacing:-1.366400pt;}
.ls15_c01127{letter-spacing:-1.346553pt;}
.lsb_c01127{letter-spacing:-0.685467pt;}
.ls16_c01127{letter-spacing:-0.672933pt;}
.ls1c_c01127{letter-spacing:-0.384453pt;}
.lsc_c01127{letter-spacing:0.000000pt;}
.ls1e_c01127{letter-spacing:0.368000pt;}
.ls0_c01127{letter-spacing:0.685467pt;}
.ls21_c01127{letter-spacing:1.369600pt;}
.ls5_c01127{letter-spacing:1.439527pt;}
.ls2_c01127{letter-spacing:2.056400pt;}
.ls12_c01127{letter-spacing:2.216853pt;}
.ls20_c01127{letter-spacing:3.314267pt;}
.ls27_c01127{letter-spacing:3.600000pt;}
.ls10_c01127{letter-spacing:3.892000pt;}
.ls1d_c01127{letter-spacing:5.857973pt;}
.ls7_c01127{letter-spacing:6.299280pt;}
.ls19_c01127{letter-spacing:10.718840pt;}
.ls1_c01127{letter-spacing:12.119667pt;}
.ls1b_c01127{letter-spacing:27.879067pt;}
.ls1a_c01127{letter-spacing:35.999600pt;}
.ws0_c01127{word-spacing:0.000000pt;}
._13_c01127{margin-left:-18.155144pt;}
._11_c01127{margin-left:-9.349310pt;}
._6_c01127{margin-left:-6.035369pt;}
._9_c01127{margin-left:-4.847409pt;}
._c_c01127{margin-left:-3.343986pt;}
._f_c01127{margin-left:-2.185903pt;}
._d_c01127{width:0.901566pt;}
._15_c01127{width:2.309891pt;}
._b_c01127{width:3.310447pt;}
._0_c01127{width:4.522808pt;}
._7_c01127{width:5.632417pt;}
._e_c01127{width:6.594257pt;}
._14_c01127{width:8.143353pt;}
._8_c01127{width:9.108035pt;}
._16_c01127{width:10.112434pt;}
._1_c01127{width:11.278396pt;}
._17_c01127{width:12.324616pt;}
._10_c01127{width:13.680877pt;}
._12_c01127{width:16.819106pt;}
._a_c01127{width:19.096173pt;}
._3_c01127{width:20.126604pt;}
._5_c01127{width:24.331549pt;}
._2_c01127{width:27.137121pt;}
._4_c01127{width:33.076706pt;}
.fse_c01127{font-size:30.666667pt;}
.fs10_c01127{font-size:34.666667pt;}
.fs15_c01127{font-size:35.333333pt;}
.fs11_c01127{font-size:37.333333pt;}
.fs14_c01127{font-size:42.666667pt;}
.fsd_c01127{font-size:44.000000pt;}
.fsf_c01127{font-size:49.333333pt;}
.fs12_c01127{font-size:53.333333pt;}
.fs6_c01127{font-size:64.000000pt;}
.fs7_c01127{font-size:66.000000pt;}
.fs5_c01127{font-size:68.000000pt;}
.fsb_c01127{font-size:68.666667pt;}
.fs9_c01127{font-size:70.000000pt;}
.fs2_c01127{font-size:70.666667pt;}
.fs0_c01127{font-size:71.333333pt;}
.fs3_c01127{font-size:72.000000pt;}
.fs1_c01127{font-size:72.666667pt;}
.fs4_c01127{font-size:73.333333pt;}
.fs17_c01127{font-size:74.000000pt;}
.fs8_c01127{font-size:74.666667pt;}
.fs16_c01127{font-size:76.000000pt;}
.fsc_c01127{font-size:77.333333pt;}
.fsa_c01127{font-size:81.333333pt;}
.fs13_c01127{font-size:96.000000pt;}
.fs18_c01127{font-size:102.666667pt;}
.y0_c01127{bottom:0.000000pt;}
.y1e_c01127{bottom:183.679733pt;}
.y1d_c01127{bottom:183.680560pt;}
.y1c_c01127{bottom:210.238787pt;}
.y1b_c01127{bottom:236.159200pt;}
.y1a_c01127{bottom:289.599587pt;}
.y19_c01127{bottom:316.160120pt;}
.y18_c01127{bottom:342.399867pt;}
.y17_c01127{bottom:396.159707pt;}
.y16_c01127{bottom:422.399453pt;}
.y15_c01127{bottom:448.960000pt;}
.y14_c01127{bottom:502.079587pt;}
.y13_c01127{bottom:528.319333pt;}
.y12_c01127{bottom:554.879840pt;}
.y11_c01127{bottom:608.318760pt;}
.y10_c01127{bottom:634.879307pt;}
.ye_c01127{bottom:660.640133pt;}
.yf_c01127{bottom:661.278773pt;}
.yd_c01127{bottom:661.759320pt;}
.yc_c01127{bottom:668.479987pt;}
.yb_c01127{bottom:714.878907pt;}
.ya_c01127{bottom:741.120120pt;}
.y9_c01127{bottom:768.000000pt;}
.y8_c01127{bottom:820.798747pt;}
.y7_c01127{bottom:847.359680pt;}
.y6_c01127{bottom:874.239173pt;}
.y5_c01127{bottom:900.799800pt;}
.y4_c01127{bottom:954.878907pt;}
.y3_c01127{bottom:980.479987pt;}
.y2_c01127{bottom:980.480840pt;}
.y1_c01127{bottom:1007.039067pt;}
.h12_c01127{height:30.082682pt;}
.h14_c01127{height:36.156250pt;}
.h19_c01127{height:36.851562pt;}
.h15_c01127{height:37.625000pt;}
.h18_c01127{height:42.166667pt;}
.h11_c01127{height:43.162109pt;}
.h13_c01127{height:48.755208pt;}
.h16_c01127{height:53.750000pt;}
.h8_c01127{height:63.250000pt;}
.he_c01127{height:67.359049pt;}
.h1e_c01127{height:68.666992pt;}
.h1b_c01127{height:68.701172pt;}
.h9_c01127{height:68.835938pt;}
.h3_c01127{height:69.355469pt;}
.hb_c01127{height:70.546875pt;}
.h4_c01127{height:70.628906pt;}
.h7_c01127{height:70.921875pt;}
.h5_c01127{height:71.156250pt;}
.hf_c01127{height:71.218750pt;}
.h1_c01127{height:71.890625pt;}
.h6_c01127{height:71.936849pt;}
.h1d_c01127{height:72.562500pt;}
.h1c_c01127{height:72.590820pt;}
.h2_c01127{height:73.234375pt;}
.ha_c01127{height:73.791667pt;}
.h1a_c01127{height:75.109375pt;}
.hd_c01127{height:75.250000pt;}
.h10_c01127{height:75.898438pt;}
.hc_c01127{height:80.380208pt;}
.h17_c01127{height:100.125000pt;}
.h1f_c01127{height:107.078125pt;}
.h0_c01127{height:1122.666667pt;}
.w0_c01127{width:793.333333pt;}
.x0_c01127{left:0.000000pt;}
.x1a_c01127{left:116.799333pt;}
.x1_c01127{left:118.079613pt;}
.x4_c01127{left:119.678693pt;}
.x5_c01127{left:146.239720pt;}
.x17_c01127{left:160.319867pt;}
.x9_c01127{left:169.599613pt;}
.x24_c01127{left:183.679733pt;}
.x6_c01127{left:190.079587pt;}
.x25_c01127{left:193.278787pt;}
.xe_c01127{left:204.159733pt;}
.xa_c01127{left:212.480000pt;}
.x20_c01127{left:235.839867pt;}
.x1b_c01127{left:250.239200pt;}
.x1d_c01127{left:253.759320pt;}
.x21_c01127{left:262.079587pt;}
.xb_c01127{left:265.918920pt;}
.x2_c01127{left:274.879333pt;}
.x18_c01127{left:283.839867pt;}
.xc_c01127{left:287.679200pt;}
.x11_c01127{left:302.399453pt;}
.x3_c01127{left:304.639200pt;}
.x19_c01127{left:311.679200pt;}
.x15_c01127{left:326.078680pt;}
.x7_c01127{left:338.239720pt;}
.x16_c01127{left:339.199200pt;}
.xd_c01127{left:344.318813pt;}
.x12_c01127{left:380.799320pt;}
.x13_c01127{left:407.679200pt;}
.x8_c01127{left:412.798787pt;}
.x1c_c01127{left:437.119587pt;}
.x14_c01127{left:468.799840pt;}
.xf_c01127{left:492.799840pt;}
.x10_c01127{left:510.719200pt;}
.x1e_c01127{left:519.679733pt;}
.x1f_c01127{left:533.438920pt;}
.x22_c01127{left:542.078693pt;}
.x23_c01127{left:555.518520pt;}
}





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

.ir_c01128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_04b92b430e936ee863ef3fed.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01128;src:url('chunks/assets/font_56e5b822edfe8f46bc67fcb5.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01128;src:url('chunks/assets/font_079bb51e5cb56776e3495fb3.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01128;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01128;src:url('chunks/assets/font_a52ce0c9412fba3f8e821625.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01128;src:url('chunks/assets/font_db5915c9094cf81b45714c6b.woff2')format("woff");}.ff6_c01128{font-family:ff6_c01128;line-height:1.432129;font-style:normal;font-weight: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_c01128;src:url('chunks/assets/font_c94b9602a6d65e178b52ca12.woff2')format("woff");}.ff7_c01128{font-family:ff7_c01128;line-height:1.364746;font-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_c01128{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m13_c01128{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.me_c01128{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.mc_c01128{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.md_c01128{transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216837,0.000000,0.000000,0.250000,0,0);}
.m1c_c01128{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m14_c01128{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_c01128{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m1a_c01128{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m3_c01128{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m6_c01128{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m2_c01128{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m7_c01128{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m17_c01128{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m11_c01128{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.ma_c01128{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m0_c01128{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.mb_c01128{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m16_c01128{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m4_c01128{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m12_c01128{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m10_c01128{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m1b_c01128{transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);}
.m8_c01128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01128{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m15_c01128{transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269417,0.000000,0.000000,0.250000,0,0);}
.m18_c01128{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m1_c01128{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m9_c01128{transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);}
.m5_c01128{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.ls3_c01128{letter-spacing:-15.867225px;}
.lsf_c01128{letter-spacing:-14.047200px;}
.ls11_c01128{letter-spacing:-8.915775px;}
.ls20_c01128{letter-spacing:-8.773110px;}
.ls19_c01128{letter-spacing:-6.335550px;}
.ls9_c01128{letter-spacing:-4.591125px;}
.ls5_c01128{letter-spacing:-3.860025px;}
.lsb_c01128{letter-spacing:-3.818588px;}
.ls22_c01128{letter-spacing:-3.780900px;}
.ls1d_c01128{letter-spacing:-3.476250px;}
.ls2_c01128{letter-spacing:-3.089625px;}
.ls10_c01128{letter-spacing:-3.081975px;}
.ls14_c01128{letter-spacing:-3.055500px;}
.ls17_c01128{letter-spacing:-3.000225px;}
.ls15_c01128{letter-spacing:-2.945175px;}
.ls21_c01128{letter-spacing:-2.497500px;}
.ls12_c01128{letter-spacing:-2.431575px;}
.ls1e_c01128{letter-spacing:-2.310398px;}
.ls1a_c01128{letter-spacing:-2.294348px;}
.ls7_c01128{letter-spacing:-2.291625px;}
.ls13_c01128{letter-spacing:-1.727250px;}
.ls1c_c01128{letter-spacing:-1.703250px;}
.lsc_c01128{letter-spacing:-1.621050px;}
.ls8_c01128{letter-spacing:-1.526963px;}
.ls18_c01128{letter-spacing:-1.517528px;}
.lse_c01128{letter-spacing:-1.500165px;}
.lsd_c01128{letter-spacing:-0.810525px;}
.lsa_c01128{letter-spacing:-0.763875px;}
.ls4_c01128{letter-spacing:0.000000px;}
.ls16_c01128{letter-spacing:1.503345px;}
.ls0_c01128{letter-spacing:1.526963px;}
.ls6_c01128{letter-spacing:1.540800px;}
.ls1_c01128{letter-spacing:2.291625px;}
.ls23_c01128{letter-spacing:2.431575px;}
.ls1f_c01128{letter-spacing:3.968250px;}
.ls24_c01128{letter-spacing:11.582760px;}
.ls1b_c01128{letter-spacing:14.925150px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01128{word-spacing:0.000000px;}
._12_c01128{margin-left:-11.166689px;}
._0_c01128{margin-left:-5.350581px;}
._d_c01128{margin-left:-3.756834px;}
._11_c01128{margin-left:-1.952985px;}
._14_c01128{width:1.312870px;}
._4_c01128{width:2.690115px;}
._5_c01128{width:3.948449px;}
._3_c01128{width:5.300471px;}
._a_c01128{width:6.403626px;}
._2_c01128{width:7.567875px;}
._9_c01128{width:8.666027px;}
._e_c01128{width:10.108274px;}
._1_c01128{width:12.159015px;}
._c_c01128{width:13.220882px;}
._7_c01128{width:14.227204px;}
._10_c01128{width:16.149500px;}
._6_c01128{width:19.821750px;}
._b_c01128{width:20.963005px;}
._8_c01128{width:28.905450px;}
._15_c01128{width:38.366725px;}
._f_c01128{width:41.422225px;}
._13_c01128{width:50.639171px;}
.fc0_c01128{color:transparent;}
.fse_c01128{font-size:33.750000px;}
.fs8_c01128{font-size:72.000000px;}
.fsa_c01128{font-size:73.500000px;}
.fs1_c01128{font-size:74.250000px;}
.fsd_c01128{font-size:75.000000px;}
.fs7_c01128{font-size:76.500000px;}
.fs2_c01128{font-size:77.250000px;}
.fs4_c01128{font-size:78.750000px;}
.fsb_c01128{font-size:79.500000px;}
.fs0_c01128{font-size:80.250000px;}
.fs6_c01128{font-size:81.000000px;}
.fs9_c01128{font-size:81.750000px;}
.fs3_c01128{font-size:82.500000px;}
.fsf_c01128{font-size:83.250000px;}
.fs10_c01128{font-size:84.000000px;}
.fsc_c01128{font-size:85.500000px;}
.fs5_c01128{font-size:90.000000px;}
.y0_c01128{bottom:0.000000px;}
.y1b_c01128{bottom:212.760150px;}
.y1a_c01128{bottom:243.000000px;}
.y19_c01128{bottom:243.000870px;}
.y18_c01128{bottom:272.880585px;}
.y17_c01128{bottom:331.920870px;}
.y16_c01128{bottom:361.800585px;}
.y15_c01128{bottom:391.679670px;}
.y14_c01128{bottom:451.440900px;}
.y13_c01128{bottom:481.680720px;}
.y12_c01128{bottom:511.920600px;}
.y11_c01128{bottom:571.680135px;}
.y10_c01128{bottom:601.199160px;}
.ye_c01128{bottom:630.360015px;}
.yf_c01128{bottom:630.360300px;}
.yd_c01128{bottom:690.840135px;}
.yc_c01128{bottom:721.080000px;}
.yb_c01128{bottom:810.360900px;}
.ya_c01128{bottom:840.601500px;}
.y9_c01128{bottom:871.199805px;}
.y8_c01128{bottom:930.959385px;}
.y7_c01128{bottom:960.119940px;}
.y6_c01128{bottom:990.359805px;}
.y5_c01128{bottom:1050.121035px;}
.y3_c01128{bottom:1080.360540px;}
.y4_c01128{bottom:1080.360900px;}
.y2_c01128{bottom:1110.600450px;}
.y1_c01128{bottom:1139.759490px;}
.h14_c01128{height:33.123779px;}
.h12_c01128{height:73.608398px;}
.ha_c01128{height:75.093750px;}
.h13_c01128{height:75.816650px;}
.hc_c01128{height:76.658203px;}
.h9_c01128{height:77.097656px;}
.h5_c01128{height:77.288818px;}
.h2_c01128{height:77.440430px;}
.h3_c01128{height:77.853516px;}
.h7_c01128{height:78.721802px;}
.he_c01128{height:78.760986px;}
.h8_c01128{height:79.457520px;}
.h15_c01128{height:79.497070px;}
.h10_c01128{height:79.787109px;}
.hd_c01128{height:80.121094px;}
.hb_c01128{height:80.233154px;}
.h1_c01128{height:80.876953px;}
.h11_c01128{height:81.632812px;}
.h18_c01128{height:82.441406px;}
.h4_c01128{height:83.144531px;}
.h16_c01128{height:83.900391px;}
.hf_c01128{height:83.913574px;}
.h17_c01128{height:88.945312px;}
.h6_c01128{height:93.867188px;}
.h0_c01128{height:1263.000000px;}
.w0_c01128{width:892.500000px;}
.x0_c01128{left:0.000000px;}
.x31_c01128{left:136.799565px;}
.x13_c01128{left:137.878950px;}
.x1_c01128{left:138.958350px;}
.x8_c01128{left:140.760240px;}
.x1e_c01128{left:168.838950px;}
.x2b_c01128{left:185.399250px;}
.x14_c01128{left:190.079400px;}
.x25_c01128{left:195.479685px;}
.x28_c01128{left:202.318800px;}
.xc_c01128{left:208.798515px;}
.x22_c01128{left:210.599700px;}
.x15_c01128{left:214.198785px;}
.x2a_c01128{left:218.519685px;}
.x23_c01128{left:223.918350px;}
.x29_c01128{left:236.879535px;}
.x19_c01128{left:241.918950px;}
.xa_c01128{left:259.199385px;}
.x26_c01128{left:262.439250px;}
.x2_c01128{left:268.198785px;}
.x27_c01128{left:273.239850px;}
.x2d_c01128{left:280.078785px;}
.x21_c01128{left:282.239250px;}
.x1f_c01128{left:283.679700px;}
.x24_c01128{left:285.120000px;}
.x3_c01128{left:286.919535px;}
.xb_c01128{left:288.719100px;}
.x2c_c01128{left:295.918950px;}
.x1c_c01128{left:301.678500px;}
.x4_c01128{left:302.759535px;}
.x1a_c01128{left:306.719535px;}
.x2f_c01128{left:312.479235px;}
.xd_c01128{left:314.998950px;}
.x9_c01128{left:318.238785px;}
.x20_c01128{left:326.158785px;}
.x30_c01128{left:327.958350px;}
.x1d_c01128{left:331.559100px;}
.xe_c01128{left:334.078785px;}
.x1b_c01128{left:340.558635px;}
.xf_c01128{left:349.918950px;}
.x16_c01128{left:393.838530px;}
.x5_c01128{left:426.958920px;}
.x10_c01128{left:434.519670px;}
.x6_c01128{left:452.879520px;}
.x17_c01128{left:457.918950px;}
.x18_c01128{left:473.399820px;}
.x7_c01128{left:485.279850px;}
.x11_c01128{left:523.798920px;}
.x12_c01128{left:556.199385px;}
.x2e_c01128{left:558.359850px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls3_c01128{letter-spacing:-14.104200pt;}
.lsf_c01128{letter-spacing:-12.486400pt;}
.ls11_c01128{letter-spacing:-7.925133pt;}
.ls20_c01128{letter-spacing:-7.798320pt;}
.ls19_c01128{letter-spacing:-5.631600pt;}
.ls9_c01128{letter-spacing:-4.081000pt;}
.ls5_c01128{letter-spacing:-3.431133pt;}
.lsb_c01128{letter-spacing:-3.394300pt;}
.ls22_c01128{letter-spacing:-3.360800pt;}
.ls1d_c01128{letter-spacing:-3.090000pt;}
.ls2_c01128{letter-spacing:-2.746333pt;}
.ls10_c01128{letter-spacing:-2.739533pt;}
.ls14_c01128{letter-spacing:-2.716000pt;}
.ls17_c01128{letter-spacing:-2.666867pt;}
.ls15_c01128{letter-spacing:-2.617933pt;}
.ls21_c01128{letter-spacing:-2.220000pt;}
.ls12_c01128{letter-spacing:-2.161400pt;}
.ls1e_c01128{letter-spacing:-2.053687pt;}
.ls1a_c01128{letter-spacing:-2.039420pt;}
.ls7_c01128{letter-spacing:-2.037000pt;}
.ls13_c01128{letter-spacing:-1.535333pt;}
.ls1c_c01128{letter-spacing:-1.514000pt;}
.lsc_c01128{letter-spacing:-1.440933pt;}
.ls8_c01128{letter-spacing:-1.357300pt;}
.ls18_c01128{letter-spacing:-1.348913pt;}
.lse_c01128{letter-spacing:-1.333480pt;}
.lsd_c01128{letter-spacing:-0.720467pt;}
.lsa_c01128{letter-spacing:-0.679000pt;}
.ls4_c01128{letter-spacing:0.000000pt;}
.ls16_c01128{letter-spacing:1.336307pt;}
.ls0_c01128{letter-spacing:1.357300pt;}
.ls6_c01128{letter-spacing:1.369600pt;}
.ls1_c01128{letter-spacing:2.037000pt;}
.ls23_c01128{letter-spacing:2.161400pt;}
.ls1f_c01128{letter-spacing:3.527333pt;}
.ls24_c01128{letter-spacing:10.295787pt;}
.ls1b_c01128{letter-spacing:13.266800pt;}
.ws0_c01128{word-spacing:0.000000pt;}
._12_c01128{margin-left:-9.925946pt;}
._0_c01128{margin-left:-4.756072pt;}
._d_c01128{margin-left:-3.339408pt;}
._11_c01128{margin-left:-1.735986pt;}
._14_c01128{width:1.166995pt;}
._4_c01128{width:2.391214pt;}
._5_c01128{width:3.509732pt;}
._3_c01128{width:4.711530pt;}
._a_c01128{width:5.692112pt;}
._2_c01128{width:6.727000pt;}
._9_c01128{width:7.703135pt;}
._e_c01128{width:8.985132pt;}
._1_c01128{width:10.808014pt;}
._c_c01128{width:11.751895pt;}
._7_c01128{width:12.646404pt;}
._10_c01128{width:14.355111pt;}
._6_c01128{width:17.619333pt;}
._b_c01128{width:18.633783pt;}
._8_c01128{width:25.693733pt;}
._15_c01128{width:34.103755pt;}
._f_c01128{width:36.819755pt;}
._13_c01128{width:45.012596pt;}
.fse_c01128{font-size:30.000000pt;}
.fs8_c01128{font-size:64.000000pt;}
.fsa_c01128{font-size:65.333333pt;}
.fs1_c01128{font-size:66.000000pt;}
.fsd_c01128{font-size:66.666667pt;}
.fs7_c01128{font-size:68.000000pt;}
.fs2_c01128{font-size:68.666667pt;}
.fs4_c01128{font-size:70.000000pt;}
.fsb_c01128{font-size:70.666667pt;}
.fs0_c01128{font-size:71.333333pt;}
.fs6_c01128{font-size:72.000000pt;}
.fs9_c01128{font-size:72.666667pt;}
.fs3_c01128{font-size:73.333333pt;}
.fsf_c01128{font-size:74.000000pt;}
.fs10_c01128{font-size:74.666667pt;}
.fsc_c01128{font-size:76.000000pt;}
.fs5_c01128{font-size:80.000000pt;}
.y0_c01128{bottom:0.000000pt;}
.y1b_c01128{bottom:189.120133pt;}
.y1a_c01128{bottom:216.000000pt;}
.y19_c01128{bottom:216.000773pt;}
.y18_c01128{bottom:242.560520pt;}
.y17_c01128{bottom:295.040773pt;}
.y16_c01128{bottom:321.600520pt;}
.y15_c01128{bottom:348.159707pt;}
.y14_c01128{bottom:401.280800pt;}
.y13_c01128{bottom:428.160640pt;}
.y12_c01128{bottom:455.040533pt;}
.y11_c01128{bottom:508.160120pt;}
.y10_c01128{bottom:534.399253pt;}
.ye_c01128{bottom:560.320013pt;}
.yf_c01128{bottom:560.320267pt;}
.yd_c01128{bottom:614.080120pt;}
.yc_c01128{bottom:640.960000pt;}
.yb_c01128{bottom:720.320800pt;}
.ya_c01128{bottom:747.201333pt;}
.y9_c01128{bottom:774.399827pt;}
.y8_c01128{bottom:827.519453pt;}
.y7_c01128{bottom:853.439947pt;}
.y6_c01128{bottom:880.319827pt;}
.y5_c01128{bottom:933.440920pt;}
.y3_c01128{bottom:960.320480pt;}
.y4_c01128{bottom:960.320800pt;}
.y2_c01128{bottom:987.200400pt;}
.y1_c01128{bottom:1013.119547pt;}
.h14_c01128{height:29.443359pt;}
.h12_c01128{height:65.429688pt;}
.ha_c01128{height:66.750000pt;}
.h13_c01128{height:67.392578pt;}
.hc_c01128{height:68.140625pt;}
.h9_c01128{height:68.531250pt;}
.h5_c01128{height:68.701172pt;}
.h2_c01128{height:68.835938pt;}
.h3_c01128{height:69.203125pt;}
.h7_c01128{height:69.974935pt;}
.he_c01128{height:70.009766pt;}
.h8_c01128{height:70.628906pt;}
.h15_c01128{height:70.664062pt;}
.h10_c01128{height:70.921875pt;}
.hd_c01128{height:71.218750pt;}
.hb_c01128{height:71.318359pt;}
.h1_c01128{height:71.890625pt;}
.h11_c01128{height:72.562500pt;}
.h18_c01128{height:73.281250pt;}
.h4_c01128{height:73.906250pt;}
.h16_c01128{height:74.578125pt;}
.hf_c01128{height:74.589844pt;}
.h17_c01128{height:79.062500pt;}
.h6_c01128{height:83.437500pt;}
.h0_c01128{height:1122.666667pt;}
.w0_c01128{width:793.333333pt;}
.x0_c01128{left:0.000000pt;}
.x31_c01128{left:121.599613pt;}
.x13_c01128{left:122.559067pt;}
.x1_c01128{left:123.518533pt;}
.x8_c01128{left:125.120213pt;}
.x1e_c01128{left:150.079067pt;}
.x2b_c01128{left:164.799333pt;}
.x14_c01128{left:168.959467pt;}
.x25_c01128{left:173.759720pt;}
.x28_c01128{left:179.838933pt;}
.xc_c01128{left:185.598680pt;}
.x22_c01128{left:187.199733pt;}
.x15_c01128{left:190.398920pt;}
.x2a_c01128{left:194.239720pt;}
.x23_c01128{left:199.038533pt;}
.x29_c01128{left:210.559587pt;}
.x19_c01128{left:215.039067pt;}
.xa_c01128{left:230.399453pt;}
.x26_c01128{left:233.279333pt;}
.x2_c01128{left:238.398920pt;}
.x27_c01128{left:242.879867pt;}
.x2d_c01128{left:248.958920pt;}
.x21_c01128{left:250.879333pt;}
.x1f_c01128{left:252.159733pt;}
.x24_c01128{left:253.440000pt;}
.x3_c01128{left:255.039587pt;}
.xb_c01128{left:256.639200pt;}
.x2c_c01128{left:263.039067pt;}
.x1c_c01128{left:268.158667pt;}
.x4_c01128{left:269.119587pt;}
.x1a_c01128{left:272.639587pt;}
.x2f_c01128{left:277.759320pt;}
.xd_c01128{left:279.999067pt;}
.x9_c01128{left:282.878920pt;}
.x20_c01128{left:289.918920pt;}
.x30_c01128{left:291.518533pt;}
.x1d_c01128{left:294.719200pt;}
.xe_c01128{left:296.958920pt;}
.x1b_c01128{left:302.718787pt;}
.xf_c01128{left:311.039067pt;}
.x16_c01128{left:350.078693pt;}
.x5_c01128{left:379.519040pt;}
.x10_c01128{left:386.239707pt;}
.x6_c01128{left:402.559573pt;}
.x17_c01128{left:407.039067pt;}
.x18_c01128{left:420.799840pt;}
.x7_c01128{left:431.359867pt;}
.x11_c01128{left:465.599040pt;}
.x12_c01128{left:494.399453pt;}
.x2e_c01128{left:496.319867pt;}
}





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

.ir_c01129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_8fa682a0d35a20adaa679628.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01129;src:url('chunks/assets/font_d2f92c1d34dc10d9873008ea.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01129;src:url('chunks/assets/font_853a10d9167c31ac2d9817c8.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01129;src:url('chunks/assets/font_932dd8a590191160f1cd5307.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01129;src:url('chunks/assets/font_2aae353727055462b0293226.woff2')format("woff");}.ff5_c01129{font-family:ff5_c01129;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01129;src:url('chunks/assets/font_43e98e69095bdc7bda5e4b91.woff2')format("woff");}.ff6_c01129{font-family:ff6_c01129;line-height:1.432129;font-style:normal;font-weight: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_c01129;src:url('chunks/assets/font_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff7_c01129{font-family:ff7_c01129;line-height:1.432129;font-style:normal;font-weight: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_c01129;src:url('chunks/assets/font_20d5b8c540be42e4174b4239.woff2')format("woff");}.ff8_c01129{font-family:ff8_c01129;line-height:1.364746;font-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_c01129{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.ma_c01129{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.m14_c01129{transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203271,0.000000,0.000000,0.250000,0,0);}
.m4_c01129{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m1b_c01129{transform:matrix(0.218487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218487,0.000000,0.000000,0.250000,0,0);}
.m16_c01129{transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219388,0.000000,0.000000,0.250000,0,0);}
.md_c01129{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.mb_c01129{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m19_c01129{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.me_c01129{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1c_c01129{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m13_c01129{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m3_c01129{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1d_c01129{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m15_c01129{transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236413,0.000000,0.000000,0.250000,0,0);}
.m7_c01129{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc_c01129{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m10_c01129{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m5_c01129{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m9_c01129{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m8_c01129{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m12_c01129{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m11_c01129{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.mf_c01129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01129{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m2_c01129{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m6_c01129{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m18_c01129{transform:matrix(0.263274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263274,0.000000,0.000000,0.250000,0,0);}
.m1_c01129{transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263636,0.000000,0.000000,0.250000,0,0);}
.m17_c01129{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.v0_c01129{vertical-align:0.000000px;}
.ls1a_c01129{letter-spacing:-10.848600px;}
.lsa_c01129{letter-spacing:-9.777300px;}
.ls1d_c01129{letter-spacing:-8.827500px;}
.ls6_c01129{letter-spacing:-7.363913px;}
.ls2_c01129{letter-spacing:-7.111500px;}
.ls16_c01129{letter-spacing:-6.117428px;}
.ls28_c01129{letter-spacing:-6.007418px;}
.ls1c_c01129{letter-spacing:-6.002325px;}
.ls1_c01129{letter-spacing:-5.906430px;}
.ls18_c01129{letter-spacing:-5.618303px;}
.ls5_c01129{letter-spacing:-5.150250px;}
.ls19_c01129{letter-spacing:-5.064593px;}
.ls17_c01129{letter-spacing:-4.597800px;}
.lsb_c01129{letter-spacing:-4.418663px;}
.ls23_c01129{letter-spacing:-4.012500px;}
.ls4_c01129{letter-spacing:-3.678413px;}
.ls27_c01129{letter-spacing:-3.560348px;}
.ls26_c01129{letter-spacing:-3.417015px;}
.ls1f_c01129{letter-spacing:-3.209198px;}
.ls1e_c01129{letter-spacing:-3.088800px;}
.ls13_c01129{letter-spacing:-3.087000px;}
.ls3_c01129{letter-spacing:-2.945250px;}
.ls9_c01129{letter-spacing:-2.407500px;}
.ls14_c01129{letter-spacing:-2.315250px;}
.ls25_c01129{letter-spacing:-2.247975px;}
.lsc_c01129{letter-spacing:-2.205000px;}
.ls11_c01129{letter-spacing:-1.605000px;}
.ls2a_c01129{letter-spacing:-1.598400px;}
.ls24_c01129{letter-spacing:-1.544288px;}
.ls10_c01129{letter-spacing:-1.473413px;}
.ls22_c01129{letter-spacing:-0.802950px;}
.ls8_c01129{letter-spacing:-0.801698px;}
.ls12_c01129{letter-spacing:-0.786713px;}
.lsd_c01129{letter-spacing:-0.771750px;}
.ls7_c01129{letter-spacing:-0.731588px;}
.lsf_c01129{letter-spacing:0.000000px;}
.lse_c01129{letter-spacing:0.724620px;}
.ls15_c01129{letter-spacing:0.771750px;}
.ls0_c01129{letter-spacing:0.801698px;}
.ls20_c01129{letter-spacing:1.517528px;}
.ls1b_c01129{letter-spacing:3.299175px;}
.ls21_c01129{letter-spacing:3.784995px;}
.ls29_c01129{letter-spacing:4.046625px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01129{word-spacing:0.000000px;}
._a_c01129{margin-left:-9.965028px;}
._d_c01129{margin-left:-8.431065px;}
._5_c01129{margin-left:-6.651740px;}
._9_c01129{margin-left:-3.017928px;}
._12_c01129{width:1.622103px;}
._0_c01129{width:2.654302px;}
._6_c01129{width:4.309936px;}
._7_c01129{width:5.701559px;}
._10_c01129{width:7.143081px;}
._1_c01129{width:8.329689px;}
._b_c01129{width:9.581145px;}
._3_c01129{width:10.885399px;}
._f_c01129{width:12.194052px;}
._4_c01129{width:13.874262px;}
._8_c01129{width:15.473889px;}
._11_c01129{width:17.504804px;}
._c_c01129{width:19.285848px;}
._2_c01129{width:21.503666px;}
._e_c01129{width:24.706150px;}
.fc0_c01129{color:transparent;}
.fsb_c01129{font-size:69.000000px;}
.fs7_c01129{font-size:72.750000px;}
.fsc_c01129{font-size:73.500000px;}
.fs8_c01129{font-size:74.250000px;}
.fsf_c01129{font-size:76.500000px;}
.fs6_c01129{font-size:77.250000px;}
.fs5_c01129{font-size:78.000000px;}
.fs2_c01129{font-size:78.750000px;}
.fsa_c01129{font-size:79.500000px;}
.fs3_c01129{font-size:80.250000px;}
.fs4_c01129{font-size:81.750000px;}
.fs1_c01129{font-size:82.500000px;}
.fs11_c01129{font-size:83.250000px;}
.fse_c01129{font-size:84.750000px;}
.fs10_c01129{font-size:89.250000px;}
.fs9_c01129{font-size:92.250000px;}
.fs0_c01129{font-size:93.000000px;}
.fsd_c01129{font-size:96.000000px;}
.y0_c01129{bottom:0.000000px;}
.y19_c01129{bottom:183.601335px;}
.y18_c01129{bottom:213.841185px;}
.y17_c01129{bottom:213.841365px;}
.y16_c01129{bottom:243.360900px;}
.y15_c01129{bottom:243.361065px;}
.y14_c01129{bottom:272.880585px;}
.y13_c01129{bottom:362.520750px;}
.y12_c01129{bottom:392.040570px;}
.y11_c01129{bottom:421.921185px;}
.y10_c01129{bottom:482.041620px;}
.yf_c01129{bottom:511.920600px;}
.ye_c01129{bottom:541.801215px;}
.yd_c01129{bottom:601.920000px;}
.yc_c01129{bottom:631.080420px;}
.yb_c01129{bottom:660.961035px;}
.ya_c01129{bottom:720.360330px;}
.y9_c01129{bottom:840.241515px;}
.y8_c01129{bottom:870.120390px;}
.y7_c01129{bottom:900.001005px;}
.y6_c01129{bottom:960.121575px;}
.y5_c01129{bottom:990.360690px;}
.y4_c01129{bottom:1020.240420px;}
.y3_c01129{bottom:1080.000000px;}
.y2_c01129{bottom:1109.881410px;}
.y1_c01129{bottom:1139.761140px;}
.h12_c01129{height:71.964844px;}
.h9_c01129{height:75.875977px;}
.he_c01129{height:76.514648px;}
.h13_c01129{height:76.658203px;}
.h16_c01129{height:77.097656px;}
.h3_c01129{height:77.288818px;}
.hb_c01129{height:77.440430px;}
.h8_c01129{height:77.853516px;}
.h11_c01129{height:77.986084px;}
.h7_c01129{height:78.609375px;}
.h4_c01129{height:78.721802px;}
.h6_c01129{height:79.365234px;}
.h10_c01129{height:80.121094px;}
.h18_c01129{height:80.193237px;}
.h5_c01129{height:80.791992px;}
.hf_c01129{height:80.876953px;}
.ha_c01129{height:80.928955px;}
.h2_c01129{height:80.969238px;}
.h19_c01129{height:81.705322px;}
.hd_c01129{height:83.144531px;}
.h15_c01129{height:83.756836px;}
.h17_c01129{height:88.204102px;}
.hc_c01129{height:91.168945px;}
.h1_c01129{height:91.910156px;}
.h14_c01129{height:100.125000px;}
.h0_c01129{height:1263.000000px;}
.w0_c01129{width:892.500000px;}
.x0_c01129{left:0.000000px;}
.xf_c01129{left:141.118815px;}
.x5_c01129{left:142.199850px;}
.x1_c01129{left:143.279250px;}
.x4_c01129{left:144.720405px;}
.x26_c01129{left:164.519685px;}
.x10_c01129{left:166.319250px;}
.x1c_c01129{left:174.239250px;}
.x27_c01129{left:177.479250px;}
.x9_c01129{left:194.759535px;}
.x18_c01129{left:221.759535px;}
.xa_c01129{left:226.078785px;}
.xb_c01129{left:236.159385px;}
.x19_c01129{left:237.238785px;}
.x1b_c01129{left:250.918350px;}
.x1f_c01129{left:258.120000px;}
.x28_c01129{left:264.238785px;}
.x29_c01129{left:271.799535px;}
.x20_c01129{left:272.878950px;}
.x2_c01129{left:282.598500px;}
.x3_c01129{left:314.639700px;}
.xc_c01129{left:321.839535px;}
.x16_c01129{left:327.958350px;}
.x2a_c01129{left:335.519100px;}
.xd_c01129{left:352.438635px;}
.x21_c01129{left:355.678530px;}
.x17_c01129{left:361.439685px;}
.xe_c01129{left:363.239250px;}
.x14_c01129{left:366.120000px;}
.x22_c01129{left:373.319850px;}
.x1a_c01129{left:380.878950px;}
.x23_c01129{left:385.559100px;}
.x2b_c01129{left:388.439715px;}
.x11_c01129{left:395.278800px;}
.x15_c01129{left:405.000000px;}
.x6_c01129{left:414.719565px;}
.x12_c01129{left:440.999400px;}
.x7_c01129{left:444.598530px;}
.x13_c01129{left:456.478635px;}
.x8_c01129{left:474.838530px;}
.x1d_c01129{left:533.518620px;}
.x1e_c01129{left:548.638500px;}
.x24_c01129{left:561.958920px;}
.x25_c01129{left:593.639100px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls1a_c01129{letter-spacing:-9.643200pt;}
.lsa_c01129{letter-spacing:-8.690933pt;}
.ls1d_c01129{letter-spacing:-7.846667pt;}
.ls6_c01129{letter-spacing:-6.545700pt;}
.ls2_c01129{letter-spacing:-6.321333pt;}
.ls16_c01129{letter-spacing:-5.437713pt;}
.ls28_c01129{letter-spacing:-5.339927pt;}
.ls1c_c01129{letter-spacing:-5.335400pt;}
.ls1_c01129{letter-spacing:-5.250160pt;}
.ls18_c01129{letter-spacing:-4.994047pt;}
.ls5_c01129{letter-spacing:-4.578000pt;}
.ls19_c01129{letter-spacing:-4.501860pt;}
.ls17_c01129{letter-spacing:-4.086933pt;}
.lsb_c01129{letter-spacing:-3.927700pt;}
.ls23_c01129{letter-spacing:-3.566667pt;}
.ls4_c01129{letter-spacing:-3.269700pt;}
.ls27_c01129{letter-spacing:-3.164753pt;}
.ls26_c01129{letter-spacing:-3.037347pt;}
.ls1f_c01129{letter-spacing:-2.852620pt;}
.ls1e_c01129{letter-spacing:-2.745600pt;}
.ls13_c01129{letter-spacing:-2.744000pt;}
.ls3_c01129{letter-spacing:-2.618000pt;}
.ls9_c01129{letter-spacing:-2.140000pt;}
.ls14_c01129{letter-spacing:-2.058000pt;}
.ls25_c01129{letter-spacing:-1.998200pt;}
.lsc_c01129{letter-spacing:-1.960000pt;}
.ls11_c01129{letter-spacing:-1.426667pt;}
.ls2a_c01129{letter-spacing:-1.420800pt;}
.ls24_c01129{letter-spacing:-1.372700pt;}
.ls10_c01129{letter-spacing:-1.309700pt;}
.ls22_c01129{letter-spacing:-0.713733pt;}
.ls8_c01129{letter-spacing:-0.712620pt;}
.ls12_c01129{letter-spacing:-0.699300pt;}
.lsd_c01129{letter-spacing:-0.686000pt;}
.ls7_c01129{letter-spacing:-0.650300pt;}
.lsf_c01129{letter-spacing:0.000000pt;}
.lse_c01129{letter-spacing:0.644107pt;}
.ls15_c01129{letter-spacing:0.686000pt;}
.ls0_c01129{letter-spacing:0.712620pt;}
.ls20_c01129{letter-spacing:1.348913pt;}
.ls1b_c01129{letter-spacing:2.932600pt;}
.ls21_c01129{letter-spacing:3.364440pt;}
.ls29_c01129{letter-spacing:3.597000pt;}
.ws0_c01129{word-spacing:0.000000pt;}
._a_c01129{margin-left:-8.857802pt;}
._d_c01129{margin-left:-7.494280pt;}
._5_c01129{margin-left:-5.912658pt;}
._9_c01129{margin-left:-2.682603pt;}
._12_c01129{width:1.441869pt;}
._0_c01129{width:2.359379pt;}
._6_c01129{width:3.831054pt;}
._7_c01129{width:5.068052pt;}
._10_c01129{width:6.349406pt;}
._1_c01129{width:7.404168pt;}
._b_c01129{width:8.516573pt;}
._3_c01129{width:9.675910pt;}
._f_c01129{width:10.839157pt;}
._4_c01129{width:12.332677pt;}
._8_c01129{width:13.754568pt;}
._11_c01129{width:15.559826pt;}
._c_c01129{width:17.142976pt;}
._2_c01129{width:19.114370pt;}
._e_c01129{width:21.961022pt;}
.fsb_c01129{font-size:61.333333pt;}
.fs7_c01129{font-size:64.666667pt;}
.fsc_c01129{font-size:65.333333pt;}
.fs8_c01129{font-size:66.000000pt;}
.fsf_c01129{font-size:68.000000pt;}
.fs6_c01129{font-size:68.666667pt;}
.fs5_c01129{font-size:69.333333pt;}
.fs2_c01129{font-size:70.000000pt;}
.fsa_c01129{font-size:70.666667pt;}
.fs3_c01129{font-size:71.333333pt;}
.fs4_c01129{font-size:72.666667pt;}
.fs1_c01129{font-size:73.333333pt;}
.fs11_c01129{font-size:74.000000pt;}
.fse_c01129{font-size:75.333333pt;}
.fs10_c01129{font-size:79.333333pt;}
.fs9_c01129{font-size:82.000000pt;}
.fs0_c01129{font-size:82.666667pt;}
.fsd_c01129{font-size:85.333333pt;}
.y0_c01129{bottom:0.000000pt;}
.y19_c01129{bottom:163.201187pt;}
.y18_c01129{bottom:190.081053pt;}
.y17_c01129{bottom:190.081213pt;}
.y16_c01129{bottom:216.320800pt;}
.y15_c01129{bottom:216.320947pt;}
.y14_c01129{bottom:242.560520pt;}
.y13_c01129{bottom:322.240667pt;}
.y12_c01129{bottom:348.480507pt;}
.y11_c01129{bottom:375.041053pt;}
.y10_c01129{bottom:428.481440pt;}
.yf_c01129{bottom:455.040533pt;}
.ye_c01129{bottom:481.601080pt;}
.yd_c01129{bottom:535.040000pt;}
.yc_c01129{bottom:560.960373pt;}
.yb_c01129{bottom:587.520920pt;}
.ya_c01129{bottom:640.320293pt;}
.y9_c01129{bottom:746.881347pt;}
.y8_c01129{bottom:773.440347pt;}
.y7_c01129{bottom:800.000893pt;}
.y6_c01129{bottom:853.441400pt;}
.y5_c01129{bottom:880.320613pt;}
.y4_c01129{bottom:906.880373pt;}
.y3_c01129{bottom:960.000000pt;}
.y2_c01129{bottom:986.561253pt;}
.y1_c01129{bottom:1013.121013pt;}
.h12_c01129{height:63.968750pt;}
.h9_c01129{height:67.445312pt;}
.he_c01129{height:68.013021pt;}
.h13_c01129{height:68.140625pt;}
.h16_c01129{height:68.531250pt;}
.h3_c01129{height:68.701172pt;}
.hb_c01129{height:68.835938pt;}
.h8_c01129{height:69.203125pt;}
.h11_c01129{height:69.320964pt;}
.h7_c01129{height:69.875000pt;}
.h4_c01129{height:69.974935pt;}
.h6_c01129{height:70.546875pt;}
.h10_c01129{height:71.218750pt;}
.h18_c01129{height:71.282878pt;}
.h5_c01129{height:71.815104pt;}
.hf_c01129{height:71.890625pt;}
.ha_c01129{height:71.936849pt;}
.h2_c01129{height:71.972656pt;}
.h19_c01129{height:72.626953pt;}
.hd_c01129{height:73.906250pt;}
.h15_c01129{height:74.450521pt;}
.h17_c01129{height:78.403646pt;}
.hc_c01129{height:81.039063pt;}
.h1_c01129{height:81.697917pt;}
.h14_c01129{height:89.000000pt;}
.h0_c01129{height:1122.666667pt;}
.w0_c01129{width:793.333333pt;}
.x0_c01129{left:0.000000pt;}
.xf_c01129{left:125.438947pt;}
.x5_c01129{left:126.399867pt;}
.x1_c01129{left:127.359333pt;}
.x4_c01129{left:128.640360pt;}
.x26_c01129{left:146.239720pt;}
.x10_c01129{left:147.839333pt;}
.x1c_c01129{left:154.879333pt;}
.x27_c01129{left:157.759333pt;}
.x9_c01129{left:173.119587pt;}
.x18_c01129{left:197.119587pt;}
.xa_c01129{left:200.958920pt;}
.xb_c01129{left:209.919453pt;}
.x19_c01129{left:210.878920pt;}
.x1b_c01129{left:223.038533pt;}
.x1f_c01129{left:229.440000pt;}
.x28_c01129{left:234.878920pt;}
.x29_c01129{left:241.599587pt;}
.x20_c01129{left:242.559067pt;}
.x2_c01129{left:251.198667pt;}
.x3_c01129{left:279.679733pt;}
.xc_c01129{left:286.079587pt;}
.x16_c01129{left:291.518533pt;}
.x2a_c01129{left:298.239200pt;}
.xd_c01129{left:313.278787pt;}
.x21_c01129{left:316.158693pt;}
.x17_c01129{left:321.279720pt;}
.xe_c01129{left:322.879333pt;}
.x14_c01129{left:325.440000pt;}
.x22_c01129{left:331.839867pt;}
.x1a_c01129{left:338.559067pt;}
.x23_c01129{left:342.719200pt;}
.x2b_c01129{left:345.279747pt;}
.x11_c01129{left:351.358933pt;}
.x15_c01129{left:360.000000pt;}
.x6_c01129{left:368.639613pt;}
.x12_c01129{left:391.999467pt;}
.x7_c01129{left:395.198693pt;}
.x13_c01129{left:405.758787pt;}
.x8_c01129{left:422.078693pt;}
.x1d_c01129{left:474.238773pt;}
.x1e_c01129{left:487.678667pt;}
.x24_c01129{left:499.519040pt;}
.x25_c01129{left:527.679200pt;}
}





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

.ir_c01130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_7c60025a1a4c0e7ef716cbfb.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01130;src:url('chunks/assets/font_93aef807c6f13062dd57d6f7.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01130;src:url('chunks/assets/font_16613111cd7f807a5c3450cc.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01130;src:url('chunks/assets/font_4aa43e11c61fcad477640ef3.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01130;src:url('chunks/assets/font_9428b48a0bff9ea006ff5a91.woff2')format("woff");}.ff5_c01130{font-family:ff5_c01130;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01130;src:url('chunks/assets/font_c6ded61e651d7566304888e3.woff2')format("woff");}.ff6_c01130{font-family:ff6_c01130;line-height:1.432129;font-style:normal;font-weight: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_c01130;src:url('chunks/assets/font_043606f4f4e00b536d8116af.woff2')format("woff");}.ff7_c01130{font-family:ff7_c01130;line-height:1.311035;font-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_c01130{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.md_c01130{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mb_c01130{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m1_c01130{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mf_c01130{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m11_c01130{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m8_c01130{transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227041,0.000000,0.000000,0.250000,0,0);}
.m7_c01130{transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231579,0.000000,0.000000,0.250000,0,0);}
.m3_c01130{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m12_c01130{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m5_c01130{transform:matrix(0.236264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236264,0.000000,0.000000,0.250000,0,0);}
.mc_c01130{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.ma_c01130{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m2_c01130{transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);}
.m6_c01130{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m0_c01130{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c01130{transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290865,0.000000,0.000000,0.250000,0,0);}
.m10_c01130{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m4_c01130{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.lsf_c01130{letter-spacing:-13.153200px;}
.ls15_c01130{letter-spacing:-9.823950px;}
.ls1a_c01130{letter-spacing:-9.630000px;}
.lsb_c01130{letter-spacing:-7.090200px;}
.ls4_c01130{letter-spacing:-6.919200px;}
.lse_c01130{letter-spacing:-5.945625px;}
.lsd_c01130{letter-spacing:-5.196713px;}
.ls17_c01130{letter-spacing:-4.456463px;}
.ls14_c01130{letter-spacing:-4.429733px;}
.ls1b_c01130{letter-spacing:-4.012500px;}
.ls7_c01130{letter-spacing:-3.791213px;}
.ls13_c01130{letter-spacing:-3.717000px;}
.ls9_c01130{letter-spacing:-3.300885px;}
.ls6_c01130{letter-spacing:-3.209198px;}
.ls1_c01130{letter-spacing:-2.968875px;}
.ls19_c01130{letter-spacing:-2.407500px;}
.ls1c_c01130{letter-spacing:-2.381400px;}
.ls2_c01130{letter-spacing:-2.229413px;}
.ls10_c01130{letter-spacing:-1.605000px;}
.ls12_c01130{letter-spacing:-1.560038px;}
.lsa_c01130{letter-spacing:-1.489163px;}
.ls5_c01130{letter-spacing:-0.801698px;}
.lsc_c01130{letter-spacing:-0.740250px;}
.ls3_c01130{letter-spacing:0.000000px;}
.ls0_c01130{letter-spacing:0.801698px;}
.ls18_c01130{letter-spacing:1.605000px;}
.ls11_c01130{letter-spacing:3.546450px;}
.ls16_c01130{letter-spacing:4.181700px;}
.ls8_c01130{letter-spacing:4.859963px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01130{word-spacing:0.000000px;}
._5_c01130{margin-left:-23.987315px;}
._9_c01130{margin-left:-13.963564px;}
._d_c01130{margin-left:-3.174361px;}
._6_c01130{margin-left:-1.725621px;}
._2_c01130{width:1.894294px;}
._1_c01130{width:3.627596px;}
._3_c01130{width:4.726530px;}
._0_c01130{width:6.646381px;}
._c_c01130{width:7.802060px;}
._a_c01130{width:9.247791px;}
._b_c01130{width:10.763892px;}
._7_c01130{width:11.892721px;}
._4_c01130{width:13.814042px;}
._8_c01130{width:15.710105px;}
._e_c01130{width:31.602964px;}
.fc0_c01130{color:transparent;}
.fs4_c01130{font-size:68.250000px;}
.fs5_c01130{font-size:71.250000px;}
.fs8_c01130{font-size:72.750000px;}
.fs6_c01130{font-size:73.500000px;}
.fs7_c01130{font-size:78.000000px;}
.fs0_c01130{font-size:78.750000px;}
.fsc_c01130{font-size:79.500000px;}
.fs1_c01130{font-size:80.250000px;}
.fse_c01130{font-size:81.000000px;}
.fsa_c01130{font-size:82.500000px;}
.fs9_c01130{font-size:83.250000px;}
.fsb_c01130{font-size:85.500000px;}
.fs3_c01130{font-size:90.000000px;}
.fs2_c01130{font-size:93.000000px;}
.fsd_c01130{font-size:96.000000px;}
.y0_c01130{bottom:0.000000px;}
.y1f_c01130{bottom:210.601335px;}
.y1d_c01130{bottom:240.120855px;}
.y1e_c01130{bottom:240.121035px;}
.y1b_c01130{bottom:269.999220px;}
.y1c_c01130{bottom:270.000000px;}
.y1a_c01130{bottom:329.400285px;}
.y19_c01130{bottom:358.919400px;}
.y18_c01130{bottom:389.520720px;}
.y17_c01130{bottom:389.521530px;}
.y16_c01130{bottom:448.560285px;}
.y14_c01130{bottom:478.799565px;}
.y15_c01130{bottom:478.800150px;}
.y12_c01130{bottom:509.400150px;}
.y13_c01130{bottom:509.400885px;}
.y11_c01130{bottom:568.801215px;}
.y10_c01130{bottom:598.679760px;}
.ye_c01130{bottom:628.559970px;}
.yf_c01130{bottom:628.560750px;}
.yd_c01130{bottom:687.961035px;}
.yc_c01130{bottom:717.480885px;}
.yb_c01130{bottom:717.481560px;}
.ya_c01130{bottom:807.841185px;}
.y9_c01130{bottom:838.081050px;}
.y8_c01130{bottom:867.960015px;}
.y7_c01130{bottom:927.360255px;}
.y6_c01130{bottom:956.879970px;}
.y5_c01130{bottom:987.480840px;}
.y4_c01130{bottom:1017.361545px;}
.y3_c01130{bottom:1077.121035px;}
.y2_c01130{bottom:1106.640750px;}
.y1_c01130{bottom:1136.521365px;}
.h8_c01130{height:69.893188px;}
.h6_c01130{height:71.182617px;}
.h7_c01130{height:74.311523px;}
.hb_c01130{height:75.875977px;}
.ha_c01130{height:76.552734px;}
.h9_c01130{height:76.658203px;}
.h1_c01130{height:77.288818px;}
.h10_c01130{height:78.024902px;}
.h4_c01130{height:78.721802px;}
.h2_c01130{height:78.760986px;}
.hd_c01130{height:79.365234px;}
.h12_c01130{height:79.457520px;}
.he_c01130{height:80.969238px;}
.hc_c01130{height:81.664673px;}
.hf_c01130{height:84.498047px;}
.h3_c01130{height:91.910156px;}
.h5_c01130{height:93.867188px;}
.h11_c01130{height:100.125000px;}
.h0_c01130{height:1263.000000px;}
.w0_c01130{width:892.500000px;}
.x0_c01130{left:0.000000px;}
.x1a_c01130{left:140.038860px;}
.xc_c01130{left:141.479715px;}
.x1_c01130{left:142.918350px;}
.x6_c01130{left:143.999400px;}
.xf_c01130{left:166.678500px;}
.x1e_c01130{left:182.518665px;}
.x1b_c01130{left:214.198785px;}
.xd_c01130{left:217.079385px;}
.x27_c01130{left:219.599100px;}
.x25_c01130{left:228.959400px;}
.x10_c01130{left:239.040000px;}
.x28_c01130{left:243.359250px;}
.x26_c01130{left:244.438635px;}
.xe_c01130{left:248.398635px;}
.x11_c01130{left:263.159385px;}
.x22_c01130{left:280.078785px;}
.x15_c01130{left:281.159850px;}
.x2_c01130{left:299.519685px;}
.x23_c01130{left:305.999385px;}
.x3_c01130{left:314.278800px;}
.x12_c01130{left:315.719100px;}
.x1c_c01130{left:317.159385px;}
.x1d_c01130{left:341.278800px;}
.x24_c01130{left:347.399235px;}
.x8_c01130{left:349.918950px;}
.x18_c01130{left:358.559100px;}
.x9_c01130{left:371.159385px;}
.x4_c01130{left:375.839535px;}
.x13_c01130{left:378.359235px;}
.x19_c01130{left:391.318770px;}
.x1f_c01130{left:399.958920px;}
.xa_c01130{left:401.758530px;}
.x5_c01130{left:405.000000px;}
.x14_c01130{left:408.958335px;}
.xb_c01130{left:418.679670px;}
.x7_c01130{left:444.959385px;}
.x20_c01130{left:461.519670px;}
.x16_c01130{left:483.119385px;}
.x21_c01130{left:486.718500px;}
.x17_c01130{left:497.878320px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.lsf_c01130{letter-spacing:-11.691733pt;}
.ls15_c01130{letter-spacing:-8.732400pt;}
.ls1a_c01130{letter-spacing:-8.560000pt;}
.lsb_c01130{letter-spacing:-6.302400pt;}
.ls4_c01130{letter-spacing:-6.150400pt;}
.lse_c01130{letter-spacing:-5.285000pt;}
.lsd_c01130{letter-spacing:-4.619300pt;}
.ls17_c01130{letter-spacing:-3.961300pt;}
.ls14_c01130{letter-spacing:-3.937540pt;}
.ls1b_c01130{letter-spacing:-3.566667pt;}
.ls7_c01130{letter-spacing:-3.369967pt;}
.ls13_c01130{letter-spacing:-3.304000pt;}
.ls9_c01130{letter-spacing:-2.934120pt;}
.ls6_c01130{letter-spacing:-2.852620pt;}
.ls1_c01130{letter-spacing:-2.639000pt;}
.ls19_c01130{letter-spacing:-2.140000pt;}
.ls1c_c01130{letter-spacing:-2.116800pt;}
.ls2_c01130{letter-spacing:-1.981700pt;}
.ls10_c01130{letter-spacing:-1.426667pt;}
.ls12_c01130{letter-spacing:-1.386700pt;}
.lsa_c01130{letter-spacing:-1.323700pt;}
.ls5_c01130{letter-spacing:-0.712620pt;}
.lsc_c01130{letter-spacing:-0.658000pt;}
.ls3_c01130{letter-spacing:0.000000pt;}
.ls0_c01130{letter-spacing:0.712620pt;}
.ls18_c01130{letter-spacing:1.426667pt;}
.ls11_c01130{letter-spacing:3.152400pt;}
.ls16_c01130{letter-spacing:3.717067pt;}
.ls8_c01130{letter-spacing:4.319967pt;}
.ws0_c01130{word-spacing:0.000000pt;}
._5_c01130{margin-left:-21.322058pt;}
._9_c01130{margin-left:-12.412057pt;}
._d_c01130{margin-left:-2.821654pt;}
._6_c01130{margin-left:-1.533885pt;}
._2_c01130{width:1.683817pt;}
._1_c01130{width:3.224530pt;}
._3_c01130{width:4.201360pt;}
._0_c01130{width:5.907894pt;}
._c_c01130{width:6.935164pt;}
._a_c01130{width:8.220258pt;}
._b_c01130{width:9.567904pt;}
._7_c01130{width:10.571308pt;}
._4_c01130{width:12.279149pt;}
._8_c01130{width:13.964538pt;}
._e_c01130{width:28.091523pt;}
.fs4_c01130{font-size:60.666667pt;}
.fs5_c01130{font-size:63.333333pt;}
.fs8_c01130{font-size:64.666667pt;}
.fs6_c01130{font-size:65.333333pt;}
.fs7_c01130{font-size:69.333333pt;}
.fs0_c01130{font-size:70.000000pt;}
.fsc_c01130{font-size:70.666667pt;}
.fs1_c01130{font-size:71.333333pt;}
.fse_c01130{font-size:72.000000pt;}
.fsa_c01130{font-size:73.333333pt;}
.fs9_c01130{font-size:74.000000pt;}
.fsb_c01130{font-size:76.000000pt;}
.fs3_c01130{font-size:80.000000pt;}
.fs2_c01130{font-size:82.666667pt;}
.fsd_c01130{font-size:85.333333pt;}
.y0_c01130{bottom:0.000000pt;}
.y1f_c01130{bottom:187.201187pt;}
.y1d_c01130{bottom:213.440760pt;}
.y1e_c01130{bottom:213.440920pt;}
.y1b_c01130{bottom:239.999307pt;}
.y1c_c01130{bottom:240.000000pt;}
.y1a_c01130{bottom:292.800253pt;}
.y19_c01130{bottom:319.039467pt;}
.y18_c01130{bottom:346.240640pt;}
.y17_c01130{bottom:346.241360pt;}
.y16_c01130{bottom:398.720253pt;}
.y14_c01130{bottom:425.599613pt;}
.y15_c01130{bottom:425.600133pt;}
.y12_c01130{bottom:452.800133pt;}
.y13_c01130{bottom:452.800787pt;}
.y11_c01130{bottom:505.601080pt;}
.y10_c01130{bottom:532.159787pt;}
.ye_c01130{bottom:558.719973pt;}
.yf_c01130{bottom:558.720667pt;}
.yd_c01130{bottom:611.520920pt;}
.yc_c01130{bottom:637.760787pt;}
.yb_c01130{bottom:637.761387pt;}
.ya_c01130{bottom:718.081053pt;}
.y9_c01130{bottom:744.960933pt;}
.y8_c01130{bottom:771.520013pt;}
.y7_c01130{bottom:824.320227pt;}
.y6_c01130{bottom:850.559973pt;}
.y5_c01130{bottom:877.760747pt;}
.y4_c01130{bottom:904.321373pt;}
.y3_c01130{bottom:957.440920pt;}
.y2_c01130{bottom:983.680667pt;}
.y1_c01130{bottom:1010.241213pt;}
.h8_c01130{height:62.127279pt;}
.h6_c01130{height:63.273438pt;}
.h7_c01130{height:66.054688pt;}
.hb_c01130{height:67.445312pt;}
.ha_c01130{height:68.046875pt;}
.h9_c01130{height:68.140625pt;}
.h1_c01130{height:68.701172pt;}
.h10_c01130{height:69.355469pt;}
.h4_c01130{height:69.974935pt;}
.h2_c01130{height:70.009766pt;}
.hd_c01130{height:70.546875pt;}
.h12_c01130{height:70.628906pt;}
.he_c01130{height:71.972656pt;}
.hc_c01130{height:72.590820pt;}
.hf_c01130{height:75.109375pt;}
.h3_c01130{height:81.697917pt;}
.h5_c01130{height:83.437500pt;}
.h11_c01130{height:89.000000pt;}
.h0_c01130{height:1122.666667pt;}
.w0_c01130{width:793.333333pt;}
.x0_c01130{left:0.000000pt;}
.x1a_c01130{left:124.478987pt;}
.xc_c01130{left:125.759747pt;}
.x1_c01130{left:127.038533pt;}
.x6_c01130{left:127.999467pt;}
.xf_c01130{left:148.158667pt;}
.x1e_c01130{left:162.238813pt;}
.x1b_c01130{left:190.398920pt;}
.xd_c01130{left:192.959453pt;}
.x27_c01130{left:195.199200pt;}
.x25_c01130{left:203.519467pt;}
.x10_c01130{left:212.480000pt;}
.x28_c01130{left:216.319333pt;}
.x26_c01130{left:217.278787pt;}
.xe_c01130{left:220.798787pt;}
.x11_c01130{left:233.919453pt;}
.x22_c01130{left:248.958920pt;}
.x15_c01130{left:249.919867pt;}
.x2_c01130{left:266.239720pt;}
.x23_c01130{left:271.999453pt;}
.x3_c01130{left:279.358933pt;}
.x12_c01130{left:280.639200pt;}
.x1c_c01130{left:281.919453pt;}
.x1d_c01130{left:303.358933pt;}
.x24_c01130{left:308.799320pt;}
.x8_c01130{left:311.039067pt;}
.x18_c01130{left:318.719200pt;}
.x9_c01130{left:329.919453pt;}
.x4_c01130{left:334.079587pt;}
.x13_c01130{left:336.319320pt;}
.x19_c01130{left:347.838907pt;}
.x1f_c01130{left:355.519040pt;}
.xa_c01130{left:357.118693pt;}
.x5_c01130{left:360.000000pt;}
.x14_c01130{left:363.518520pt;}
.xb_c01130{left:372.159707pt;}
.x7_c01130{left:395.519453pt;}
.x20_c01130{left:410.239707pt;}
.x16_c01130{left:429.439453pt;}
.x21_c01130{left:432.638667pt;}
.x17_c01130{left:442.558507pt;}
}





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

.ir_c01131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_cc10f3c242c2d89100b7d9aa.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01131;src:url('chunks/assets/font_09b756a930c77b3f8a0bdabe.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01131;src:url('chunks/assets/font_a6feec2415317c63b96d3a32.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01131;src:url('chunks/assets/font_e561b4b3cf3b02381b717527.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01131;src:url('chunks/assets/font_340ebd41f46638b8f4e16886.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01131;src:url('chunks/assets/font_650cf39feec84e064bf0163c.woff2')format("woff");}.ff6_c01131{font-family:ff6_c01131;line-height:1.432129;font-style:normal;font-weight: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_c01131;src:url('chunks/assets/font_c7f011d8f7bce899fed5fede.woff2')format("woff");}.ff7_c01131{font-family:ff7_c01131;line-height:1.432129;font-style:normal;font-weight: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_c01131;src:url('chunks/assets/font_f06d034385d43081e440bdd2.woff2')format("woff");}.ff8_c01131{font-family:ff8_c01131;line-height:1.432129;font-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_c01131{transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182039,0.000000,0.000000,0.250000,0,0);}
.m1c_c01131{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m10_c01131{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1b_c01131{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mc_c01131{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m1_c01131{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m17_c01131{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m2_c01131{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m9_c01131{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.ma_c01131{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m16_c01131{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m18_c01131{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m6_c01131{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m1a_c01131{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m4_c01131{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m5_c01131{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m11_c01131{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m12_c01131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01131{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.me_c01131{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m8_c01131{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.mb_c01131{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m1d_c01131{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.mf_c01131{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m7_c01131{transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279703,0.000000,0.000000,0.250000,0,0);}
.m15_c01131{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.md_c01131{transform:matrix(0.287611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287611,0.000000,0.000000,0.250000,0,0);}
.m14_c01131{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);}
.m19_c01131{transform:matrix(0.447368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447368,0.000000,0.000000,0.250000,0,0);}
.m13_c01131{transform:matrix(0.486842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486842,0.000000,0.000000,0.250000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls19_c01131{letter-spacing:-18.998100px;}
.ls27_c01131{letter-spacing:-16.348500px;}
.ls17_c01131{letter-spacing:-16.298273px;}
.ls20_c01131{letter-spacing:-10.162500px;}
.ls1a_c01131{letter-spacing:-6.593550px;}
.ls29_c01131{letter-spacing:-6.216600px;}
.ls10_c01131{letter-spacing:-5.945625px;}
.ls2a_c01131{letter-spacing:-5.880840px;}
.ls6_c01131{letter-spacing:-5.196713px;}
.lsd_c01131{letter-spacing:-4.456463px;}
.ls14_c01131{letter-spacing:-4.252500px;}
.ls25_c01131{letter-spacing:-3.818588px;}
.ls8_c01131{letter-spacing:-3.717000px;}
.ls12_c01131{letter-spacing:-3.614625px;}
.lsc_c01131{letter-spacing:-3.031875px;}
.ls24_c01131{letter-spacing:-3.003000px;}
.ls1c_c01131{letter-spacing:-2.997150px;}
.ls3_c01131{letter-spacing:-2.968875px;}
.ls1f_c01131{letter-spacing:-2.681550px;}
.ls15_c01131{letter-spacing:-2.520000px;}
.ls9_c01131{letter-spacing:-2.229413px;}
.lsf_c01131{letter-spacing:-2.014950px;}
.ls4_c01131{letter-spacing:-1.680000px;}
.ls13_c01131{letter-spacing:-1.558995px;}
.ls22_c01131{letter-spacing:-1.544288px;}
.lse_c01131{letter-spacing:-1.543575px;}
.ls1b_c01131{letter-spacing:-1.517528px;}
.lsb_c01131{letter-spacing:-1.514873px;}
.ls2_c01131{letter-spacing:-1.489163px;}
.ls18_c01131{letter-spacing:-1.468575px;}
.ls5_c01131{letter-spacing:-0.839160px;}
.ls7_c01131{letter-spacing:-0.740250px;}
.ls1_c01131{letter-spacing:0.000000px;}
.ls1d_c01131{letter-spacing:0.769215px;}
.ls0_c01131{letter-spacing:0.839160px;}
.ls1e_c01131{letter-spacing:2.625262px;}
.ls28_c01131{letter-spacing:3.856410px;}
.ls21_c01131{letter-spacing:3.864015px;}
.lsa_c01131{letter-spacing:4.117425px;}
.ls11_c01131{letter-spacing:5.152575px;}
.ls16_c01131{letter-spacing:5.218065px;}
.ls23_c01131{letter-spacing:5.451338px;}
.ls26_c01131{letter-spacing:7.443900px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01131{word-spacing:0.000000px;}
._f_c01131{margin-left:-12.316173px;}
._10_c01131{margin-left:-10.260858px;}
._15_c01131{margin-left:-5.034963px;}
._2_c01131{margin-left:-3.318134px;}
._0_c01131{margin-left:-1.548284px;}
._4_c01131{width:1.309930px;}
._12_c01131{width:2.881959px;}
._6_c01131{width:3.973402px;}
._14_c01131{width:5.158503px;}
._7_c01131{width:6.417936px;}
._b_c01131{width:7.723814px;}
._8_c01131{width:9.374669px;}
._c_c01131{width:10.918070px;}
._3_c01131{width:12.019829px;}
._e_c01131{width:13.827691px;}
._9_c01131{width:15.353397px;}
._5_c01131{width:17.615136px;}
._17_c01131{width:21.596823px;}
._d_c01131{width:22.823341px;}
._19_c01131{width:25.579265px;}
._1a_c01131{width:27.588537px;}
._18_c01131{width:28.591081px;}
._11_c01131{width:30.858881px;}
._13_c01131{width:35.358370px;}
._1_c01131{width:43.824880px;}
._16_c01131{width:47.171488px;}
._a_c01131{width:51.423979px;}
.fc0_c01131{color:transparent;}
.fsd_c01131{font-size:26.250000px;}
.fsb_c01131{font-size:28.500000px;}
.fsc_c01131{font-size:30.000000px;}
.fsf_c01131{font-size:71.250000px;}
.fse_c01131{font-size:75.000000px;}
.fs4_c01131{font-size:75.750000px;}
.fs7_c01131{font-size:76.500000px;}
.fs3_c01131{font-size:77.250000px;}
.fs5_c01131{font-size:78.000000px;}
.fs0_c01131{font-size:78.750000px;}
.fs6_c01131{font-size:79.500000px;}
.fs9_c01131{font-size:80.250000px;}
.fs10_c01131{font-size:81.000000px;}
.fs1_c01131{font-size:82.500000px;}
.fs2_c01131{font-size:84.000000px;}
.fs8_c01131{font-size:84.750000px;}
.fsa_c01131{font-size:85.500000px;}
.y0_c01131{bottom:0.000000px;}
.y22_c01131{bottom:180.000390px;}
.y21_c01131{bottom:210.240435px;}
.y20_c01131{bottom:240.480285px;}
.y1f_c01131{bottom:240.480990px;}
.y1e_c01131{bottom:298.801185px;}
.y1d_c01131{bottom:329.400465px;}
.y1c_c01131{bottom:358.920000px;}
.y1b_c01131{bottom:419.760720px;}
.y1a_c01131{bottom:428.760135px;}
.y18_c01131{bottom:449.640585px;}
.y19_c01131{bottom:449.641335px;}
.y16_c01131{bottom:479.519535px;}
.y17_c01131{bottom:479.520315px;}
.y15_c01131{bottom:538.920600px;}
.y14_c01131{bottom:568.440315px;}
.y13_c01131{bottom:598.680135px;}
.y12_c01131{bottom:598.680285px;}
.y11_c01131{bottom:657.721155px;}
.y10_c01131{bottom:687.240870px;}
.yf_c01131{bottom:717.839355px;}
.ye_c01131{bottom:777.240420px;}
.yd_c01131{bottom:807.480105px;}
.yc_c01131{bottom:837.720150px;}
.yb_c01131{bottom:837.721050px;}
.ya_c01131{bottom:867.600765px;}
.y9_c01131{bottom:867.601530px;}
.y8_c01131{bottom:927.721155px;}
.y7_c01131{bottom:956.879970px;}
.y5_c01131{bottom:988.200675px;}
.y6_c01131{bottom:988.200990px;}
.y4_c01131{bottom:1017.720195px;}
.y3_c01131{bottom:1076.400885px;}
.y2_c01131{bottom:1106.279850px;}
.y1_c01131{bottom:1136.521365px;}
.hf_c01131{height:27.377930px;}
.hd_c01131{height:29.724609px;}
.he_c01131{height:31.289062px;}
.h13_c01131{height:74.311523px;}
.h6_c01131{height:74.344482px;}
.h9_c01131{height:75.043213px;}
.h4_c01131{height:75.778931px;}
.h10_c01131{height:76.341797px;}
.h17_c01131{height:76.552734px;}
.h14_c01131{height:77.250366px;}
.h1_c01131{height:77.288818px;}
.h5_c01131{height:77.853516px;}
.h8_c01131{height:78.024902px;}
.h11_c01131{height:78.222656px;}
.h7_c01131{height:78.609375px;}
.hb_c01131{height:78.760986px;}
.h12_c01131{height:79.004883px;}
.h16_c01131{height:79.457520px;}
.h15_c01131{height:79.497070px;}
.h2_c01131{height:80.969238px;}
.h3_c01131{height:82.400391px;}
.ha_c01131{height:83.756836px;}
.hc_c01131{height:84.498047px;}
.h0_c01131{height:1263.000000px;}
.w0_c01131{width:892.500000px;}
.x0_c01131{left:0.000000px;}
.x25_c01131{left:132.119415px;}
.x12_c01131{left:133.918950px;}
.x11_c01131{left:135.718500px;}
.x5_c01131{left:136.799610px;}
.x1_c01131{left:137.878950px;}
.x4_c01131{left:138.958350px;}
.x18_c01131{left:156.958950px;}
.x13_c01131{left:160.559685px;}
.x1f_c01131{left:172.798950px;}
.x17_c01131{left:200.519100px;}
.x2_c01131{left:212.399250px;}
.x20_c01131{left:228.598500px;}
.x3_c01131{left:231.838515px;}
.x15_c01131{left:266.758500px;}
.x24_c01131{left:286.919535px;}
.x21_c01131{left:291.599700px;}
.x1b_c01131{left:304.199850px;}
.x16_c01131{left:307.439685px;}
.x7_c01131{left:310.318800px;}
.x26_c01131{left:312.838515px;}
.x22_c01131{left:316.080000px;}
.x1c_c01131{left:325.438635px;}
.x27_c01131{left:338.038950px;}
.x23_c01131{left:363.959385px;}
.xa_c01131{left:365.759100px;}
.x8_c01131{left:373.319850px;}
.xb_c01131{left:385.559100px;}
.x1d_c01131{left:394.558635px;}
.x19_c01131{left:397.798515px;}
.x9_c01131{left:403.918950px;}
.x28_c01131{left:406.799565px;}
.xc_c01131{left:419.399820px;}
.x1e_c01131{left:428.399235px;}
.x29_c01131{left:430.559685px;}
.x1a_c01131{left:440.638500px;}
.x2a_c01131{left:451.439250px;}
.x2b_c01131{left:482.039985px;}
.xd_c01131{left:575.279250px;}
.x14_c01131{left:595.799520px;}
.xe_c01131{left:602.279250px;}
.xf_c01131{left:676.438620px;}
.x10_c01131{left:702.359250px;}
.x6_c01131{left:759.599070px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls19_c01131{letter-spacing:-16.887200pt;}
.ls27_c01131{letter-spacing:-14.532000pt;}
.ls17_c01131{letter-spacing:-14.487353pt;}
.ls20_c01131{letter-spacing:-9.033333pt;}
.ls1a_c01131{letter-spacing:-5.860933pt;}
.ls29_c01131{letter-spacing:-5.525867pt;}
.ls10_c01131{letter-spacing:-5.285000pt;}
.ls2a_c01131{letter-spacing:-5.227413pt;}
.ls6_c01131{letter-spacing:-4.619300pt;}
.lsd_c01131{letter-spacing:-3.961300pt;}
.ls14_c01131{letter-spacing:-3.780000pt;}
.ls25_c01131{letter-spacing:-3.394300pt;}
.ls8_c01131{letter-spacing:-3.304000pt;}
.ls12_c01131{letter-spacing:-3.213000pt;}
.lsc_c01131{letter-spacing:-2.695000pt;}
.ls24_c01131{letter-spacing:-2.669333pt;}
.ls1c_c01131{letter-spacing:-2.664133pt;}
.ls3_c01131{letter-spacing:-2.639000pt;}
.ls1f_c01131{letter-spacing:-2.383600pt;}
.ls15_c01131{letter-spacing:-2.240000pt;}
.ls9_c01131{letter-spacing:-1.981700pt;}
.lsf_c01131{letter-spacing:-1.791067pt;}
.ls4_c01131{letter-spacing:-1.493333pt;}
.ls13_c01131{letter-spacing:-1.385773pt;}
.ls22_c01131{letter-spacing:-1.372700pt;}
.lse_c01131{letter-spacing:-1.372067pt;}
.ls1b_c01131{letter-spacing:-1.348913pt;}
.lsb_c01131{letter-spacing:-1.346553pt;}
.ls2_c01131{letter-spacing:-1.323700pt;}
.ls18_c01131{letter-spacing:-1.305400pt;}
.ls5_c01131{letter-spacing:-0.745920pt;}
.ls7_c01131{letter-spacing:-0.658000pt;}
.ls1_c01131{letter-spacing:0.000000pt;}
.ls1d_c01131{letter-spacing:0.683747pt;}
.ls0_c01131{letter-spacing:0.745920pt;}
.ls1e_c01131{letter-spacing:2.333567pt;}
.ls28_c01131{letter-spacing:3.427920pt;}
.ls21_c01131{letter-spacing:3.434680pt;}
.lsa_c01131{letter-spacing:3.659933pt;}
.ls11_c01131{letter-spacing:4.580067pt;}
.ls16_c01131{letter-spacing:4.638280pt;}
.ls23_c01131{letter-spacing:4.845633pt;}
.ls26_c01131{letter-spacing:6.616800pt;}
.ws0_c01131{word-spacing:0.000000pt;}
._f_c01131{margin-left:-10.947709pt;}
._10_c01131{margin-left:-9.120762pt;}
._15_c01131{margin-left:-4.475523pt;}
._2_c01131{margin-left:-2.949453pt;}
._0_c01131{margin-left:-1.376253pt;}
._4_c01131{width:1.164382pt;}
._12_c01131{width:2.561742pt;}
._6_c01131{width:3.531913pt;}
._14_c01131{width:4.585336pt;}
._7_c01131{width:5.704832pt;}
._b_c01131{width:6.865612pt;}
._8_c01131{width:8.333039pt;}
._c_c01131{width:9.704951pt;}
._3_c01131{width:10.684292pt;}
._e_c01131{width:12.291281pt;}
._9_c01131{width:13.647464pt;}
._5_c01131{width:15.657899pt;}
._17_c01131{width:19.197176pt;}
._d_c01131{width:20.287414pt;}
._19_c01131{width:22.737124pt;}
._1a_c01131{width:24.523144pt;}
._18_c01131{width:25.414294pt;}
._11_c01131{width:27.430116pt;}
._13_c01131{width:31.429662pt;}
._1_c01131{width:38.955449pt;}
._16_c01131{width:41.930211pt;}
._a_c01131{width:45.710204pt;}
.fsd_c01131{font-size:23.333333pt;}
.fsb_c01131{font-size:25.333333pt;}
.fsc_c01131{font-size:26.666667pt;}
.fsf_c01131{font-size:63.333333pt;}
.fse_c01131{font-size:66.666667pt;}
.fs4_c01131{font-size:67.333333pt;}
.fs7_c01131{font-size:68.000000pt;}
.fs3_c01131{font-size:68.666667pt;}
.fs5_c01131{font-size:69.333333pt;}
.fs0_c01131{font-size:70.000000pt;}
.fs6_c01131{font-size:70.666667pt;}
.fs9_c01131{font-size:71.333333pt;}
.fs10_c01131{font-size:72.000000pt;}
.fs1_c01131{font-size:73.333333pt;}
.fs2_c01131{font-size:74.666667pt;}
.fs8_c01131{font-size:75.333333pt;}
.fsa_c01131{font-size:76.000000pt;}
.y0_c01131{bottom:0.000000pt;}
.y22_c01131{bottom:160.000347pt;}
.y21_c01131{bottom:186.880387pt;}
.y20_c01131{bottom:213.760253pt;}
.y1f_c01131{bottom:213.760880pt;}
.y1e_c01131{bottom:265.601053pt;}
.y1d_c01131{bottom:292.800413pt;}
.y1c_c01131{bottom:319.040000pt;}
.y1b_c01131{bottom:373.120640pt;}
.y1a_c01131{bottom:381.120120pt;}
.y18_c01131{bottom:399.680520pt;}
.y19_c01131{bottom:399.681187pt;}
.y16_c01131{bottom:426.239587pt;}
.y17_c01131{bottom:426.240280pt;}
.y15_c01131{bottom:479.040533pt;}
.y14_c01131{bottom:505.280280pt;}
.y13_c01131{bottom:532.160120pt;}
.y12_c01131{bottom:532.160253pt;}
.y11_c01131{bottom:584.641027pt;}
.y10_c01131{bottom:610.880773pt;}
.yf_c01131{bottom:638.079427pt;}
.ye_c01131{bottom:690.880373pt;}
.yd_c01131{bottom:717.760093pt;}
.yc_c01131{bottom:744.640133pt;}
.yb_c01131{bottom:744.640933pt;}
.ya_c01131{bottom:771.200680pt;}
.y9_c01131{bottom:771.201360pt;}
.y8_c01131{bottom:824.641027pt;}
.y7_c01131{bottom:850.559973pt;}
.y5_c01131{bottom:878.400600pt;}
.y6_c01131{bottom:878.400880pt;}
.y4_c01131{bottom:904.640173pt;}
.y3_c01131{bottom:956.800787pt;}
.y2_c01131{bottom:983.359867pt;}
.y1_c01131{bottom:1010.241213pt;}
.hf_c01131{height:24.335938pt;}
.hd_c01131{height:26.421875pt;}
.he_c01131{height:27.812500pt;}
.h13_c01131{height:66.054688pt;}
.h6_c01131{height:66.083984pt;}
.h9_c01131{height:66.705078pt;}
.h4_c01131{height:67.359049pt;}
.h10_c01131{height:67.859375pt;}
.h17_c01131{height:68.046875pt;}
.h14_c01131{height:68.666992pt;}
.h1_c01131{height:68.701172pt;}
.h5_c01131{height:69.203125pt;}
.h8_c01131{height:69.355469pt;}
.h11_c01131{height:69.531250pt;}
.h7_c01131{height:69.875000pt;}
.hb_c01131{height:70.009766pt;}
.h12_c01131{height:70.226562pt;}
.h16_c01131{height:70.628906pt;}
.h15_c01131{height:70.664062pt;}
.h2_c01131{height:71.972656pt;}
.h3_c01131{height:73.244792pt;}
.ha_c01131{height:74.450521pt;}
.hc_c01131{height:75.109375pt;}
.h0_c01131{height:1122.666667pt;}
.w0_c01131{width:793.333333pt;}
.x0_c01131{left:0.000000pt;}
.x25_c01131{left:117.439480pt;}
.x12_c01131{left:119.039067pt;}
.x11_c01131{left:120.638667pt;}
.x5_c01131{left:121.599653pt;}
.x1_c01131{left:122.559067pt;}
.x4_c01131{left:123.518533pt;}
.x18_c01131{left:139.519067pt;}
.x13_c01131{left:142.719720pt;}
.x1f_c01131{left:153.599067pt;}
.x17_c01131{left:178.239200pt;}
.x2_c01131{left:188.799333pt;}
.x20_c01131{left:203.198667pt;}
.x3_c01131{left:206.078680pt;}
.x15_c01131{left:237.118667pt;}
.x24_c01131{left:255.039587pt;}
.x21_c01131{left:259.199733pt;}
.x1b_c01131{left:270.399867pt;}
.x16_c01131{left:273.279720pt;}
.x7_c01131{left:275.838933pt;}
.x26_c01131{left:278.078680pt;}
.x22_c01131{left:280.960000pt;}
.x1c_c01131{left:289.278787pt;}
.x27_c01131{left:300.479067pt;}
.x23_c01131{left:323.519453pt;}
.xa_c01131{left:325.119200pt;}
.x8_c01131{left:331.839867pt;}
.xb_c01131{left:342.719200pt;}
.x1d_c01131{left:350.718787pt;}
.x19_c01131{left:353.598680pt;}
.x9_c01131{left:359.039067pt;}
.x28_c01131{left:361.599613pt;}
.xc_c01131{left:372.799840pt;}
.x1e_c01131{left:380.799320pt;}
.x29_c01131{left:382.719720pt;}
.x1a_c01131{left:391.678667pt;}
.x2a_c01131{left:401.279333pt;}
.x2b_c01131{left:428.479987pt;}
.xd_c01131{left:511.359333pt;}
.x14_c01131{left:529.599573pt;}
.xe_c01131{left:535.359333pt;}
.xf_c01131{left:601.278773pt;}
.x10_c01131{left:624.319333pt;}
.x6_c01131{left:675.199173pt;}
}





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

.ir_c01132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_7b5dd762554d9739174eb493.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01132;src:url('chunks/assets/font_1eb4dbcd3ebd5d9b2afb6ac3.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01132;src:url('chunks/assets/font_c3e11223a390ba197d41b664.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01132;src:url('chunks/assets/font_da110125260b26fb0254fced.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01132;src:url('chunks/assets/font_c241649efb95ff924cac73f1.woff2')format("woff");}.ff5_c01132{font-family:ff5_c01132;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01132;src:url('chunks/assets/font_0573db058a6a406c718a5150.woff2')format("woff");}.ff6_c01132{font-family:ff6_c01132;line-height:1.432129;font-style:normal;font-weight: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_c01132;src:url('chunks/assets/font_5b3656176d7073a39d5da385.woff2')format("woff");}.ff7_c01132{font-family:ff7_c01132;line-height:1.432129;font-style:normal;font-weight: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_c01132;src:url('chunks/assets/font_c53b8ea588b33982e1c96689.woff2')format("woff");}.ff8_c01132{font-family:ff8_c01132;line-height:1.284180;font-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_c01132{transform:matrix(0.134434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134434,0.000000,0.000000,0.250000,0,0);}
.m14_c01132{transform:matrix(0.157658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157658,0.000000,0.000000,0.250000,0,0);}
.m8_c01132{transform:matrix(0.165094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165094,0.000000,0.000000,0.250000,0,0);}
.m24_c01132{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m7_c01132{transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);}
.m31_c01132{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1f_c01132{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.me_c01132{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.m2d_c01132{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m23_c01132{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_c01132{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.m20_c01132{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1c_c01132{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);}
.m32_c01132{transform:matrix(0.219072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219072,0.000000,0.000000,0.250000,0,0);}
.m13_c01132{transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220183,0.000000,0.000000,0.250000,0,0);}
.m1d_c01132{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1b_c01132{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m12_c01132{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m1e_c01132{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m2_c01132{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m17_c01132{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m2b_c01132{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m6_c01132{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m22_c01132{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.ma_c01132{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m18_c01132{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.mb_c01132{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m15_c01132{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m1a_c01132{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m29_c01132{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m25_c01132{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m10_c01132{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.mc_c01132{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.mf_c01132{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m4_c01132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01132{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3_c01132{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m9_c01132{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m5_c01132{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m26_c01132{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m2f_c01132{transform:matrix(0.266204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266204,0.000000,0.000000,0.250000,0,0);}
.m2a_c01132{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_c01132{transform:matrix(0.281863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281863,0.000000,0.000000,0.250000,0,0);}
.m1_c01132{transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282110,0.000000,0.000000,0.250000,0,0);}
.m11_c01132{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m27_c01132{transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);}
.m30_c01132{transform:matrix(0.302752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302752,0.000000,0.000000,0.250000,0,0);}
.m28_c01132{transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303030,0.000000,0.000000,0.250000,0,0);}
.m2e_c01132{transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318015,0.000000,0.000000,0.250000,0,0);}
.md_c01132{transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337891,0.000000,0.000000,0.250000,0,0);}
.m2c_c01132{transform:matrix(0.396429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396429,0.000000,0.000000,0.250000,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls4_c01132{letter-spacing:-15.287250px;}
.ls23_c01132{letter-spacing:-11.599500px;}
.ls2e_c01132{letter-spacing:-8.042018px;}
.ls20_c01132{letter-spacing:-7.078050px;}
.ls27_c01132{letter-spacing:-6.656265px;}
.ls33_c01132{letter-spacing:-6.341490px;}
.ls26_c01132{letter-spacing:-5.997600px;}
.ls32_c01132{letter-spacing:-5.945625px;}
.lsb_c01132{letter-spacing:-5.196713px;}
.lse_c01132{letter-spacing:-4.770000px;}
.ls29_c01132{letter-spacing:-4.759425px;}
.ls1c_c01132{letter-spacing:-4.753575px;}
.ls25_c01132{letter-spacing:-4.456463px;}
.lsc_c01132{letter-spacing:-3.717000px;}
.ls28_c01132{letter-spacing:-3.179205px;}
.ls2_c01132{letter-spacing:-2.968875px;}
.ls1b_c01132{letter-spacing:-2.431905px;}
.ls34_c01132{letter-spacing:-2.385000px;}
.ls14_c01132{letter-spacing:-2.338088px;}
.ls18_c01132{letter-spacing:-2.269800px;}
.ls6_c01132{letter-spacing:-2.230020px;}
.ls3_c01132{letter-spacing:-2.229413px;}
.ls13_c01132{letter-spacing:-2.168400px;}
.ls5_c01132{letter-spacing:-1.605000px;}
.ls9_c01132{letter-spacing:-1.590000px;}
.ls2a_c01132{letter-spacing:-1.500165px;}
.ls7_c01132{letter-spacing:-1.497600px;}
.lsa_c01132{letter-spacing:-1.489163px;}
.ls1a_c01132{letter-spacing:-1.309560px;}
.ls15_c01132{letter-spacing:-0.801698px;}
.ls12_c01132{letter-spacing:-0.794205px;}
.ls1d_c01132{letter-spacing:-0.779100px;}
.lsd_c01132{letter-spacing:-0.740250px;}
.ls10_c01132{letter-spacing:0.000000px;}
.ls2f_c01132{letter-spacing:0.696750px;}
.ls8_c01132{letter-spacing:0.719100px;}
.ls19_c01132{letter-spacing:0.764775px;}
.ls0_c01132{letter-spacing:0.794205px;}
.ls30_c01132{letter-spacing:0.795375px;}
.ls24_c01132{letter-spacing:0.850500px;}
.lsf_c01132{letter-spacing:1.590000px;}
.ls22_c01132{letter-spacing:2.317950px;}
.ls1_c01132{letter-spacing:2.385000px;}
.ls16_c01132{letter-spacing:2.407500px;}
.ls2b_c01132{letter-spacing:3.087000px;}
.ls1f_c01132{letter-spacing:4.781775px;}
.ls11_c01132{letter-spacing:9.086850px;}
.ls2c_c01132{letter-spacing:9.139972px;}
.ls31_c01132{letter-spacing:9.932475px;}
.ls17_c01132{letter-spacing:10.257885px;}
.ls21_c01132{letter-spacing:16.733955px;}
.ls1e_c01132{letter-spacing:18.823350px;}
.ls2d_c01132{letter-spacing:20.062500px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01132{word-spacing:0.000000px;}
._12_c01132{margin-left:-21.684961px;}
._10_c01132{margin-left:-12.599737px;}
._e_c01132{margin-left:-6.970044px;}
._b_c01132{margin-left:-4.546475px;}
._d_c01132{margin-left:-3.288838px;}
._c_c01132{margin-left:-1.507528px;}
._f_c01132{width:1.467202px;}
._1_c01132{width:2.521144px;}
._a_c01132{width:3.826930px;}
._2_c01132{width:5.123787px;}
._0_c01132{width:6.355095px;}
._11_c01132{width:7.732277px;}
._3_c01132{width:8.984142px;}
._13_c01132{width:10.118751px;}
._4_c01132{width:11.430191px;}
._5_c01132{width:13.508522px;}
._7_c01132{width:15.610657px;}
._6_c01132{width:18.110033px;}
._9_c01132{width:21.512891px;}
._8_c01132{width:23.586115px;}
.fc0_c01132{color:transparent;}
.fs10_c01132{font-size:24.000000px;}
.fs11_c01132{font-size:35.250000px;}
.fs13_c01132{font-size:52.500000px;}
.fsc_c01132{font-size:71.250000px;}
.fse_c01132{font-size:72.000000px;}
.fs17_c01132{font-size:72.750000px;}
.fsb_c01132{font-size:73.500000px;}
.fs12_c01132{font-size:74.250000px;}
.fsd_c01132{font-size:75.000000px;}
.fs6_c01132{font-size:75.750000px;}
.fs4_c01132{font-size:76.500000px;}
.fs9_c01132{font-size:77.250000px;}
.fs3_c01132{font-size:78.000000px;}
.fs0_c01132{font-size:78.750000px;}
.fs5_c01132{font-size:79.500000px;}
.fs2_c01132{font-size:80.250000px;}
.fs15_c01132{font-size:81.000000px;}
.fs1_c01132{font-size:81.750000px;}
.fsf_c01132{font-size:82.500000px;}
.fsa_c01132{font-size:83.250000px;}
.fs7_c01132{font-size:84.000000px;}
.fs16_c01132{font-size:84.750000px;}
.fs8_c01132{font-size:96.000000px;}
.fs14_c01132{font-size:102.000000px;}
.y0_c01132{bottom:0.000000px;}
.y23_c01132{bottom:181.800150px;}
.y22_c01132{bottom:181.800195px;}
.y20_c01132{bottom:212.039220px;}
.y21_c01132{bottom:212.040000px;}
.y1f_c01132{bottom:241.918950px;}
.y1e_c01132{bottom:272.158785px;}
.y1c_c01132{bottom:331.559070px;}
.y1d_c01132{bottom:331.559100px;}
.y1b_c01132{bottom:360.719535px;}
.y1a_c01132{bottom:390.959385px;}
.y19_c01132{bottom:421.919535px;}
.y18_c01132{bottom:431.279850px;}
.y17_c01132{bottom:482.399235px;}
.y16_c01132{bottom:511.918950px;}
.y14_c01132{bottom:541.798830px;}
.y15_c01132{bottom:541.799520px;}
.y13_c01132{bottom:570.959970px;}
.y12_c01132{bottom:600.838950px;}
.y11_c01132{bottom:660.239220px;}
.y10_c01132{bottom:690.840135px;}
.yf_c01132{bottom:690.841095px;}
.ye_c01132{bottom:720.719100px;}
.yc_c01132{bottom:750.958920px;}
.yd_c01132{bottom:751.319820px;}
.yb_c01132{bottom:780.839535px;}
.ya_c01132{bottom:840.599115px;}
.y8_c01132{bottom:870.118695px;}
.y9_c01132{bottom:870.118740px;}
.y7_c01132{bottom:900.358605px;}
.y6_c01132{bottom:930.600135px;}
.y5_c01132{bottom:989.998905px;}
.y4_c01132{bottom:1019.879475px;}
.y3_c01132{bottom:1050.119385px;}
.y2_c01132{bottom:1079.639100px;}
.y1_c01132{bottom:1139.759490px;}
.h1d_c01132{height:25.031250px;}
.h1e_c01132{height:36.764648px;}
.h21_c01132{height:51.500244px;}
.h26_c01132{height:71.400146px;}
.h1c_c01132{height:73.571777px;}
.h17_c01132{height:73.608398px;}
.h16_c01132{height:74.311523px;}
.hc_c01132{height:75.043213px;}
.h15_c01132{height:75.080566px;}
.h1a_c01132{height:75.093750px;}
.hd_c01132{height:75.778931px;}
.h8_c01132{height:76.341797px;}
.h13_c01132{height:76.658203px;}
.h5_c01132{height:77.097656px;}
.h7_c01132{height:77.250366px;}
.h1_c01132{height:77.288818px;}
.h1f_c01132{height:77.440430px;}
.h14_c01132{height:77.853516px;}
.h6_c01132{height:77.986084px;}
.h12_c01132{height:78.024902px;}
.h20_c01132{height:78.222656px;}
.h4_c01132{height:78.609375px;}
.h19_c01132{height:78.760986px;}
.h9_c01132{height:79.365234px;}
.h24_c01132{height:79.497070px;}
.hf_c01132{height:80.121094px;}
.h2_c01132{height:80.233154px;}
.h3_c01132{height:80.876953px;}
.h22_c01132{height:80.969238px;}
.h1b_c01132{height:81.533203px;}
.h18_c01132{height:81.664673px;}
.h11_c01132{height:82.274414px;}
.h10_c01132{height:82.388672px;}
.he_c01132{height:82.441406px;}
.h25_c01132{height:83.177490px;}
.ha_c01132{height:87.609375px;}
.hb_c01132{height:100.125000px;}
.h23_c01132{height:106.382812px;}
.h0_c01132{height:1263.000000px;}
.w0_c01132{width:892.500000px;}
.x0_c01132{left:0.000000px;}
.x8_c01132{left:133.559685px;}
.x1_c01132{left:135.000000px;}
.x2d_c01132{left:155.159415px;}
.x3a_c01132{left:156.958950px;}
.x27_c01132{left:185.399250px;}
.x28_c01132{left:207.719100px;}
.x34_c01132{left:224.638500px;}
.x18_c01132{left:232.558635px;}
.x35_c01132{left:239.399250px;}
.x22_c01132{left:243.718500px;}
.x10_c01132{left:247.678500px;}
.x11_c01132{left:255.959400px;}
.x23_c01132{left:261.719100px;}
.x30_c01132{left:292.679100px;}
.x19_c01132{left:308.159850px;}
.x31_c01132{left:316.798515px;}
.x12_c01132{left:323.279850px;}
.x9_c01132{left:328.678500px;}
.x32_c01132{left:332.279250px;}
.xa_c01132{left:342.719100px;}
.x13_c01132{left:351.359235px;}
.x4_c01132{left:365.759100px;}
.x24_c01132{left:366.838515px;}
.xb_c01132{left:374.758500px;}
.x14_c01132{left:381.958350px;}
.x5_c01132{left:389.878320px;}
.x3b_c01132{left:396.719100px;}
.x2_c01132{left:402.839535px;}
.xd_c01132{left:405.359250px;}
.xc_c01132{left:407.158770px;}
.x6_c01132{left:410.039385px;}
.x15_c01132{left:415.798920px;}
.x1a_c01132{left:418.679670px;}
.x3_c01132{left:428.758530px;}
.x33_c01132{left:431.279850px;}
.x3c_c01132{left:435.958335px;}
.x7_c01132{left:443.878320px;}
.x40_c01132{left:456.839535px;}
.x2e_c01132{left:464.759535px;}
.x2f_c01132{left:471.598530px;}
.x16_c01132{left:479.159415px;}
.xe_c01132{left:483.478635px;}
.x1b_c01132{left:485.279850px;}
.x17_c01132{left:507.958920px;}
.x25_c01132{left:533.518620px;}
.x26_c01132{left:548.638500px;}
.x3d_c01132{left:570.958335px;}
.x20_c01132{left:589.679070px;}
.x21_c01132{left:605.159820px;}
.x1c_c01132{left:615.958920px;}
.x3e_c01132{left:619.559685px;}
.x3f_c01132{left:633.959385px;}
.xf_c01132{left:640.080000px;}
.x36_c01132{left:656.279250px;}
.x29_c01132{left:661.679670px;}
.x37_c01132{left:667.080000px;}
.x1d_c01132{left:673.559685px;}
.x38_c01132{left:691.558635px;}
.x2a_c01132{left:705.958335px;}
.x39_c01132{left:708.118785px;}
.x1e_c01132{left:731.878920px;}
.x2b_c01132{left:753.119385px;}
.x1f_c01132{left:754.559685px;}
.x2c_c01132{left:766.078770px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls4_c01132{letter-spacing:-13.588667pt;}
.ls23_c01132{letter-spacing:-10.310667pt;}
.ls2e_c01132{letter-spacing:-7.148460pt;}
.ls20_c01132{letter-spacing:-6.291600pt;}
.ls27_c01132{letter-spacing:-5.916680pt;}
.ls33_c01132{letter-spacing:-5.636880pt;}
.ls26_c01132{letter-spacing:-5.331200pt;}
.ls32_c01132{letter-spacing:-5.285000pt;}
.lsb_c01132{letter-spacing:-4.619300pt;}
.lse_c01132{letter-spacing:-4.240000pt;}
.ls29_c01132{letter-spacing:-4.230600pt;}
.ls1c_c01132{letter-spacing:-4.225400pt;}
.ls25_c01132{letter-spacing:-3.961300pt;}
.lsc_c01132{letter-spacing:-3.304000pt;}
.ls28_c01132{letter-spacing:-2.825960pt;}
.ls2_c01132{letter-spacing:-2.639000pt;}
.ls1b_c01132{letter-spacing:-2.161693pt;}
.ls34_c01132{letter-spacing:-2.120000pt;}
.ls14_c01132{letter-spacing:-2.078300pt;}
.ls18_c01132{letter-spacing:-2.017600pt;}
.ls6_c01132{letter-spacing:-1.982240pt;}
.ls3_c01132{letter-spacing:-1.981700pt;}
.ls13_c01132{letter-spacing:-1.927467pt;}
.ls5_c01132{letter-spacing:-1.426667pt;}
.ls9_c01132{letter-spacing:-1.413333pt;}
.ls2a_c01132{letter-spacing:-1.333480pt;}
.ls7_c01132{letter-spacing:-1.331200pt;}
.lsa_c01132{letter-spacing:-1.323700pt;}
.ls1a_c01132{letter-spacing:-1.164053pt;}
.ls15_c01132{letter-spacing:-0.712620pt;}
.ls12_c01132{letter-spacing:-0.705960pt;}
.ls1d_c01132{letter-spacing:-0.692533pt;}
.lsd_c01132{letter-spacing:-0.658000pt;}
.ls10_c01132{letter-spacing:0.000000pt;}
.ls2f_c01132{letter-spacing:0.619333pt;}
.ls8_c01132{letter-spacing:0.639200pt;}
.ls19_c01132{letter-spacing:0.679800pt;}
.ls0_c01132{letter-spacing:0.705960pt;}
.ls30_c01132{letter-spacing:0.707000pt;}
.ls24_c01132{letter-spacing:0.756000pt;}
.lsf_c01132{letter-spacing:1.413333pt;}
.ls22_c01132{letter-spacing:2.060400pt;}
.ls1_c01132{letter-spacing:2.120000pt;}
.ls16_c01132{letter-spacing:2.140000pt;}
.ls2b_c01132{letter-spacing:2.744000pt;}
.ls1f_c01132{letter-spacing:4.250467pt;}
.ls11_c01132{letter-spacing:8.077200pt;}
.ls2c_c01132{letter-spacing:8.124420pt;}
.ls31_c01132{letter-spacing:8.828867pt;}
.ls17_c01132{letter-spacing:9.118120pt;}
.ls21_c01132{letter-spacing:14.874627pt;}
.ls1e_c01132{letter-spacing:16.731867pt;}
.ls2d_c01132{letter-spacing:17.833333pt;}
.ws0_c01132{word-spacing:0.000000pt;}
._12_c01132{margin-left:-19.275521pt;}
._10_c01132{margin-left:-11.199766pt;}
._e_c01132{margin-left:-6.195594pt;}
._b_c01132{margin-left:-4.041311pt;}
._d_c01132{margin-left:-2.923411pt;}
._c_c01132{margin-left:-1.340025pt;}
._f_c01132{width:1.304179pt;}
._1_c01132{width:2.241017pt;}
._a_c01132{width:3.401715pt;}
._2_c01132{width:4.554477pt;}
._0_c01132{width:5.648974pt;}
._11_c01132{width:6.873135pt;}
._3_c01132{width:7.985904pt;}
._13_c01132{width:8.994445pt;}
._4_c01132{width:10.160170pt;}
._5_c01132{width:12.007575pt;}
._7_c01132{width:13.876140pt;}
._6_c01132{width:16.097808pt;}
._9_c01132{width:19.122570pt;}
._8_c01132{width:20.965436pt;}
.fs10_c01132{font-size:21.333333pt;}
.fs11_c01132{font-size:31.333333pt;}
.fs13_c01132{font-size:46.666667pt;}
.fsc_c01132{font-size:63.333333pt;}
.fse_c01132{font-size:64.000000pt;}
.fs17_c01132{font-size:64.666667pt;}
.fsb_c01132{font-size:65.333333pt;}
.fs12_c01132{font-size:66.000000pt;}
.fsd_c01132{font-size:66.666667pt;}
.fs6_c01132{font-size:67.333333pt;}
.fs4_c01132{font-size:68.000000pt;}
.fs9_c01132{font-size:68.666667pt;}
.fs3_c01132{font-size:69.333333pt;}
.fs0_c01132{font-size:70.000000pt;}
.fs5_c01132{font-size:70.666667pt;}
.fs2_c01132{font-size:71.333333pt;}
.fs15_c01132{font-size:72.000000pt;}
.fs1_c01132{font-size:72.666667pt;}
.fsf_c01132{font-size:73.333333pt;}
.fsa_c01132{font-size:74.000000pt;}
.fs7_c01132{font-size:74.666667pt;}
.fs16_c01132{font-size:75.333333pt;}
.fs8_c01132{font-size:85.333333pt;}
.fs14_c01132{font-size:90.666667pt;}
.y0_c01132{bottom:0.000000pt;}
.y23_c01132{bottom:161.600133pt;}
.y22_c01132{bottom:161.600173pt;}
.y20_c01132{bottom:188.479307pt;}
.y21_c01132{bottom:188.480000pt;}
.y1f_c01132{bottom:215.039067pt;}
.y1e_c01132{bottom:241.918920pt;}
.y1c_c01132{bottom:294.719173pt;}
.y1d_c01132{bottom:294.719200pt;}
.y1b_c01132{bottom:320.639587pt;}
.y1a_c01132{bottom:347.519453pt;}
.y19_c01132{bottom:375.039587pt;}
.y18_c01132{bottom:383.359867pt;}
.y17_c01132{bottom:428.799320pt;}
.y16_c01132{bottom:455.039067pt;}
.y14_c01132{bottom:481.598960pt;}
.y15_c01132{bottom:481.599573pt;}
.y13_c01132{bottom:507.519973pt;}
.y12_c01132{bottom:534.079067pt;}
.y11_c01132{bottom:586.879307pt;}
.y10_c01132{bottom:614.080120pt;}
.yf_c01132{bottom:614.080973pt;}
.ye_c01132{bottom:640.639200pt;}
.yc_c01132{bottom:667.519040pt;}
.yd_c01132{bottom:667.839840pt;}
.yb_c01132{bottom:694.079587pt;}
.ya_c01132{bottom:747.199213pt;}
.y8_c01132{bottom:773.438840pt;}
.y9_c01132{bottom:773.438880pt;}
.y7_c01132{bottom:800.318760pt;}
.y6_c01132{bottom:827.200120pt;}
.y5_c01132{bottom:879.999027pt;}
.y4_c01132{bottom:906.559533pt;}
.y3_c01132{bottom:933.439453pt;}
.y2_c01132{bottom:959.679200pt;}
.y1_c01132{bottom:1013.119547pt;}
.h1d_c01132{height:22.250000pt;}
.h1e_c01132{height:32.679688pt;}
.h21_c01132{height:45.777995pt;}
.h26_c01132{height:63.466797pt;}
.h1c_c01132{height:65.397135pt;}
.h17_c01132{height:65.429688pt;}
.h16_c01132{height:66.054688pt;}
.hc_c01132{height:66.705078pt;}
.h15_c01132{height:66.738281pt;}
.h1a_c01132{height:66.750000pt;}
.hd_c01132{height:67.359049pt;}
.h8_c01132{height:67.859375pt;}
.h13_c01132{height:68.140625pt;}
.h5_c01132{height:68.531250pt;}
.h7_c01132{height:68.666992pt;}
.h1_c01132{height:68.701172pt;}
.h1f_c01132{height:68.835938pt;}
.h14_c01132{height:69.203125pt;}
.h6_c01132{height:69.320964pt;}
.h12_c01132{height:69.355469pt;}
.h20_c01132{height:69.531250pt;}
.h4_c01132{height:69.875000pt;}
.h19_c01132{height:70.009766pt;}
.h9_c01132{height:70.546875pt;}
.h24_c01132{height:70.664062pt;}
.hf_c01132{height:71.218750pt;}
.h2_c01132{height:71.318359pt;}
.h3_c01132{height:71.890625pt;}
.h22_c01132{height:71.972656pt;}
.h1b_c01132{height:72.473958pt;}
.h18_c01132{height:72.590820pt;}
.h11_c01132{height:73.132813pt;}
.h10_c01132{height:73.234375pt;}
.he_c01132{height:73.281250pt;}
.h25_c01132{height:73.935547pt;}
.ha_c01132{height:77.875000pt;}
.hb_c01132{height:89.000000pt;}
.h23_c01132{height:94.562500pt;}
.h0_c01132{height:1122.666667pt;}
.w0_c01132{width:793.333333pt;}
.x0_c01132{left:0.000000pt;}
.x8_c01132{left:118.719720pt;}
.x1_c01132{left:120.000000pt;}
.x2d_c01132{left:137.919480pt;}
.x3a_c01132{left:139.519067pt;}
.x27_c01132{left:164.799333pt;}
.x28_c01132{left:184.639200pt;}
.x34_c01132{left:199.678667pt;}
.x18_c01132{left:206.718787pt;}
.x35_c01132{left:212.799333pt;}
.x22_c01132{left:216.638667pt;}
.x10_c01132{left:220.158667pt;}
.x11_c01132{left:227.519467pt;}
.x23_c01132{left:232.639200pt;}
.x30_c01132{left:260.159200pt;}
.x19_c01132{left:273.919867pt;}
.x31_c01132{left:281.598680pt;}
.x12_c01132{left:287.359867pt;}
.x9_c01132{left:292.158667pt;}
.x32_c01132{left:295.359333pt;}
.xa_c01132{left:304.639200pt;}
.x13_c01132{left:312.319320pt;}
.x4_c01132{left:325.119200pt;}
.x24_c01132{left:326.078680pt;}
.xb_c01132{left:333.118667pt;}
.x14_c01132{left:339.518533pt;}
.x5_c01132{left:346.558507pt;}
.x3b_c01132{left:352.639200pt;}
.x2_c01132{left:358.079587pt;}
.xd_c01132{left:360.319333pt;}
.xc_c01132{left:361.918907pt;}
.x6_c01132{left:364.479453pt;}
.x15_c01132{left:369.599040pt;}
.x1a_c01132{left:372.159707pt;}
.x3_c01132{left:381.118693pt;}
.x33_c01132{left:383.359867pt;}
.x3c_c01132{left:387.518520pt;}
.x7_c01132{left:394.558507pt;}
.x40_c01132{left:406.079587pt;}
.x2e_c01132{left:413.119587pt;}
.x2f_c01132{left:419.198693pt;}
.x16_c01132{left:425.919480pt;}
.xe_c01132{left:429.758787pt;}
.x1b_c01132{left:431.359867pt;}
.x17_c01132{left:451.519040pt;}
.x25_c01132{left:474.238773pt;}
.x26_c01132{left:487.678667pt;}
.x3d_c01132{left:507.518520pt;}
.x20_c01132{left:524.159173pt;}
.x21_c01132{left:537.919840pt;}
.x1c_c01132{left:547.519040pt;}
.x3e_c01132{left:550.719720pt;}
.x3f_c01132{left:563.519453pt;}
.xf_c01132{left:568.960000pt;}
.x36_c01132{left:583.359333pt;}
.x29_c01132{left:588.159707pt;}
.x37_c01132{left:592.960000pt;}
.x1d_c01132{left:598.719720pt;}
.x38_c01132{left:614.718787pt;}
.x2a_c01132{left:627.518520pt;}
.x39_c01132{left:629.438920pt;}
.x1e_c01132{left:650.559040pt;}
.x2b_c01132{left:669.439453pt;}
.x1f_c01132{left:670.719720pt;}
.x2c_c01132{left:680.958907pt;}
}





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

.ir_c01133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_2dfb57706156f4729f68967a.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01133;src:url('chunks/assets/font_c1b4e105609fd1b6f34ec716.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01133;src:url('chunks/assets/font_d7f8a26d7affd6820df33071.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01133;src:url('chunks/assets/font_522590ac038829cd2335639f.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01133;src:url('chunks/assets/font_2c5d71029f4c5fe60bf77197.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01133;src:url('chunks/assets/font_cab3f0cc9dcd171746051896.woff2')format("woff");}.ff6_c01133{font-family:ff6_c01133;line-height:1.364746;font-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_c01133{transform:matrix(0.169811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169811,0.000000,0.000000,0.250000,0,0);}
.m8_c01133{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m6_c01133{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m5_c01133{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.mf_c01133{transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213942,0.000000,0.000000,0.250000,0,0);}
.m2_c01133{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.me_c01133{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m17_c01133{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m18_c01133{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m10_c01133{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m7_c01133{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m1a_c01133{transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234536,0.000000,0.000000,0.250000,0,0);}
.m3_c01133{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m12_c01133{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m13_c01133{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m14_c01133{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m0_c01133{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1_c01133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01133{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m19_c01133{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m4_c01133{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m9_c01133{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.mc_c01133{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m15_c01133{transform:matrix(0.258696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258696,0.000000,0.000000,0.250000,0,0);}
.m16_c01133{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.ma_c01133{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.md_c01133{transform:matrix(0.309278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309278,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls2b_c01133{letter-spacing:-21.384675px;}
.ls29_c01133{letter-spacing:-20.690573px;}
.ls2c_c01133{letter-spacing:-9.630000px;}
.ls1a_c01133{letter-spacing:-8.687250px;}
.ls27_c01133{letter-spacing:-6.945750px;}
.ls10_c01133{letter-spacing:-5.618303px;}
.ls26_c01133{letter-spacing:-5.530883px;}
.ls18_c01133{letter-spacing:-5.401628px;}
.ls15_c01133{letter-spacing:-5.150250px;}
.ls28_c01133{letter-spacing:-5.072363px;}
.ls1_c01133{letter-spacing:-4.629623px;}
.ls12_c01133{letter-spacing:-4.418663px;}
.lsb_c01133{letter-spacing:-4.407923px;}
.ls14_c01133{letter-spacing:-4.368150px;}
.ls25_c01133{letter-spacing:-3.950843px;}
.ls2_c01133{letter-spacing:-3.860025px;}
.ls8_c01133{letter-spacing:-3.678413px;}
.ls16_c01133{letter-spacing:-3.637500px;}
.ls1f_c01133{letter-spacing:-3.209198px;}
.ls5_c01133{letter-spacing:-3.163050px;}
.lsd_c01133{letter-spacing:-3.089625px;}
.ls1d_c01133{letter-spacing:-3.001350px;}
.ls13_c01133{letter-spacing:-2.971800px;}
.ls7_c01133{letter-spacing:-2.945250px;}
.lsf_c01133{letter-spacing:-2.407500px;}
.ls23_c01133{letter-spacing:-2.369318px;}
.ls1e_c01133{letter-spacing:-2.310398px;}
.ls6_c01133{letter-spacing:-2.205000px;}
.ls1c_c01133{letter-spacing:-1.755780px;}
.ls9_c01133{letter-spacing:-1.605000px;}
.ls1b_c01133{letter-spacing:-1.581525px;}
.ls22_c01133{letter-spacing:-1.570590px;}
.ls2a_c01133{letter-spacing:-1.473413px;}
.lsc_c01133{letter-spacing:-1.405950px;}
.ls11_c01133{letter-spacing:-0.801698px;}
.ls3_c01133{letter-spacing:0.000000px;}
.ls0_c01133{letter-spacing:0.731588px;}
.ls19_c01133{letter-spacing:0.745523px;}
.ls17_c01133{letter-spacing:0.770400px;}
.ls20_c01133{letter-spacing:1.473413px;}
.ls4_c01133{letter-spacing:1.684050px;}
.lse_c01133{letter-spacing:2.310398px;}
.ls24_c01133{letter-spacing:3.113700px;}
.lsa_c01133{letter-spacing:9.306900px;}
.ls21_c01133{letter-spacing:11.042550px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01133{word-spacing:0.000000px;}
._d_c01133{margin-left:-15.793033px;}
._b_c01133{margin-left:-14.709889px;}
._11_c01133{margin-left:-13.261556px;}
._c_c01133{margin-left:-11.271213px;}
._9_c01133{margin-left:-10.143664px;}
._6_c01133{margin-left:-6.370181px;}
._a_c01133{margin-left:-4.878751px;}
._e_c01133{width:1.710866px;}
._5_c01133{width:4.114785px;}
._2_c01133{width:6.205824px;}
._1_c01133{width:8.039933px;}
._3_c01133{width:9.284964px;}
._10_c01133{width:10.600904px;}
._f_c01133{width:11.684657px;}
._0_c01133{width:12.760923px;}
._4_c01133{width:14.083811px;}
._8_c01133{width:17.116650px;}
._7_c01133{width:19.725835px;}
._12_c01133{width:30.053882px;}
.fc0_c01133{color:transparent;}
.fs1_c01133{font-size:43.500000px;}
.fse_c01133{font-size:51.750000px;}
.fs7_c01133{font-size:72.750000px;}
.fs3_c01133{font-size:74.250000px;}
.fsa_c01133{font-size:76.500000px;}
.fs8_c01133{font-size:77.250000px;}
.fs9_c01133{font-size:78.000000px;}
.fs4_c01133{font-size:78.750000px;}
.fsb_c01133{font-size:79.500000px;}
.fs0_c01133{font-size:80.250000px;}
.fs6_c01133{font-size:81.000000px;}
.fs2_c01133{font-size:81.750000px;}
.fs5_c01133{font-size:82.500000px;}
.fsc_c01133{font-size:86.250000px;}
.fsd_c01133{font-size:87.750000px;}
.y0_c01133{bottom:0.000000px;}
.y17_c01133{bottom:177.480900px;}
.y16_c01133{bottom:207.361515px;}
.y15_c01133{bottom:267.121035px;}
.y14_c01133{bottom:296.279850px;}
.y13_c01133{bottom:326.521335px;}
.y12_c01133{bottom:385.920000px;}
.y11_c01133{bottom:415.080465px;}
.y10_c01133{bottom:445.320285px;}
.yf_c01133{bottom:505.800150px;}
.ye_c01133{bottom:535.680720px;}
.yd_c01133{bottom:565.920600px;}
.yc_c01133{bottom:624.601620px;}
.yb_c01133{bottom:654.481335px;}
.ya_c01133{bottom:684.360255px;}
.y9_c01133{bottom:804.960570px;}
.y8_c01133{bottom:864.720150px;}
.y7_c01133{bottom:894.600765px;}
.y6_c01133{bottom:953.640105px;}
.y5_c01133{bottom:983.520720px;}
.y4_c01133{bottom:1013.401515px;}
.y3_c01133{bottom:1074.240420px;}
.y2_c01133{bottom:1104.121035px;}
.y1_c01133{bottom:1133.640750px;}
.h2_c01133{height:45.369141px;}
.h14_c01133{height:53.973633px;}
.ha_c01133{height:75.875977px;}
.he_c01133{height:76.514648px;}
.h5_c01133{height:77.288818px;}
.h4_c01133{height:77.440430px;}
.hb_c01133{height:77.853516px;}
.hf_c01133{height:77.986084px;}
.hc_c01133{height:78.609375px;}
.h8_c01133{height:78.721802px;}
.h7_c01133{height:78.760986px;}
.h13_c01133{height:79.457520px;}
.h9_c01133{height:79.497070px;}
.hd_c01133{height:79.787109px;}
.h1_c01133{height:80.876953px;}
.h6_c01133{height:80.969238px;}
.h10_c01133{height:82.133789px;}
.h3_c01133{height:82.388672px;}
.h11_c01133{height:85.239258px;}
.h12_c01133{height:86.721680px;}
.h0_c01133{height:1263.000000px;}
.w0_c01133{width:892.500000px;}
.x0_c01133{left:0.000000px;}
.x21_c01133{left:135.000000px;}
.x19_c01133{left:136.799565px;}
.xa_c01133{left:138.239850px;}
.x1_c01133{left:140.039400px;}
.x5_c01133{left:141.118815px;}
.x1a_c01133{left:160.198785px;}
.x2b_c01133{left:184.679100px;}
.x2c_c01133{left:200.159850px;}
.x10_c01133{left:209.879535px;}
.xb_c01133{left:214.559685px;}
.x2e_c01133{left:218.158785px;}
.x29_c01133{left:221.398635px;}
.x26_c01133{left:223.199850px;}
.x11_c01133{left:227.519100px;}
.x2f_c01133{left:233.998950px;}
.xc_c01133{left:240.119385px;}
.xf_c01133{left:250.199850px;}
.x12_c01133{left:252.719535px;}
.x27_c01133{left:254.159850px;}
.x1d_c01133{left:256.318800px;}
.xd_c01133{left:277.199850px;}
.x1e_c01133{left:279.358635px;}
.x1f_c01133{left:294.119385px;}
.x13_c01133{left:298.079385px;}
.x6_c01133{left:304.199850px;}
.xe_c01133{left:308.519100px;}
.x7_c01133{left:319.679100px;}
.x28_c01133{left:323.639100px;}
.x1b_c01133{left:324.718500px;}
.x1c_c01133{left:340.199385px;}
.x2d_c01133{left:347.758500px;}
.x2a_c01133{left:348.839535px;}
.x2_c01133{left:352.799535px;}
.x3_c01133{left:357.838950px;}
.x17_c01133{left:364.679700px;}
.x16_c01133{left:374.399235px;}
.x4_c01133{left:389.878320px;}
.x18_c01133{left:395.998950px;}
.x22_c01133{left:408.958335px;}
.x23_c01133{left:433.079400px;}
.x14_c01133{left:440.279250px;}
.x15_c01133{left:454.319820px;}
.x24_c01133{left:460.079400px;}
.x8_c01133{left:474.119985px;}
.x9_c01133{left:488.519670px;}
.x25_c01133{left:490.678530px;}
.x20_c01133{left:529.558635px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls2b_c01133{letter-spacing:-19.008600pt;}
.ls29_c01133{letter-spacing:-18.391620pt;}
.ls2c_c01133{letter-spacing:-8.560000pt;}
.ls1a_c01133{letter-spacing:-7.722000pt;}
.ls27_c01133{letter-spacing:-6.174000pt;}
.ls10_c01133{letter-spacing:-4.994047pt;}
.ls26_c01133{letter-spacing:-4.916340pt;}
.ls18_c01133{letter-spacing:-4.801447pt;}
.ls15_c01133{letter-spacing:-4.578000pt;}
.ls28_c01133{letter-spacing:-4.508767pt;}
.ls1_c01133{letter-spacing:-4.115220pt;}
.ls12_c01133{letter-spacing:-3.927700pt;}
.lsb_c01133{letter-spacing:-3.918153pt;}
.ls14_c01133{letter-spacing:-3.882800pt;}
.ls25_c01133{letter-spacing:-3.511860pt;}
.ls2_c01133{letter-spacing:-3.431133pt;}
.ls8_c01133{letter-spacing:-3.269700pt;}
.ls16_c01133{letter-spacing:-3.233333pt;}
.ls1f_c01133{letter-spacing:-2.852620pt;}
.ls5_c01133{letter-spacing:-2.811600pt;}
.lsd_c01133{letter-spacing:-2.746333pt;}
.ls1d_c01133{letter-spacing:-2.667867pt;}
.ls13_c01133{letter-spacing:-2.641600pt;}
.ls7_c01133{letter-spacing:-2.618000pt;}
.lsf_c01133{letter-spacing:-2.140000pt;}
.ls23_c01133{letter-spacing:-2.106060pt;}
.ls1e_c01133{letter-spacing:-2.053687pt;}
.ls6_c01133{letter-spacing:-1.960000pt;}
.ls1c_c01133{letter-spacing:-1.560693pt;}
.ls9_c01133{letter-spacing:-1.426667pt;}
.ls1b_c01133{letter-spacing:-1.405800pt;}
.ls22_c01133{letter-spacing:-1.396080pt;}
.ls2a_c01133{letter-spacing:-1.309700pt;}
.lsc_c01133{letter-spacing:-1.249733pt;}
.ls11_c01133{letter-spacing:-0.712620pt;}
.ls3_c01133{letter-spacing:0.000000pt;}
.ls0_c01133{letter-spacing:0.650300pt;}
.ls19_c01133{letter-spacing:0.662687pt;}
.ls17_c01133{letter-spacing:0.684800pt;}
.ls20_c01133{letter-spacing:1.309700pt;}
.ls4_c01133{letter-spacing:1.496933pt;}
.lse_c01133{letter-spacing:2.053687pt;}
.ls24_c01133{letter-spacing:2.767733pt;}
.lsa_c01133{letter-spacing:8.272800pt;}
.ls21_c01133{letter-spacing:9.815600pt;}
.ws0_c01133{word-spacing:0.000000pt;}
._d_c01133{margin-left:-14.038252pt;}
._b_c01133{margin-left:-13.075457pt;}
._11_c01133{margin-left:-11.788049pt;}
._c_c01133{margin-left:-10.018856pt;}
._9_c01133{margin-left:-9.016590pt;}
._6_c01133{margin-left:-5.662383pt;}
._a_c01133{margin-left:-4.336667pt;}
._e_c01133{width:1.520770pt;}
._5_c01133{width:3.657587pt;}
._2_c01133{width:5.516288pt;}
._1_c01133{width:7.146607pt;}
._3_c01133{width:8.253301pt;}
._10_c01133{width:9.423026pt;}
._f_c01133{width:10.386362pt;}
._0_c01133{width:11.343043pt;}
._4_c01133{width:12.518943pt;}
._8_c01133{width:15.214800pt;}
._7_c01133{width:17.534076pt;}
._12_c01133{width:26.714562pt;}
.fs1_c01133{font-size:38.666667pt;}
.fse_c01133{font-size:46.000000pt;}
.fs7_c01133{font-size:64.666667pt;}
.fs3_c01133{font-size:66.000000pt;}
.fsa_c01133{font-size:68.000000pt;}
.fs8_c01133{font-size:68.666667pt;}
.fs9_c01133{font-size:69.333333pt;}
.fs4_c01133{font-size:70.000000pt;}
.fsb_c01133{font-size:70.666667pt;}
.fs0_c01133{font-size:71.333333pt;}
.fs6_c01133{font-size:72.000000pt;}
.fs2_c01133{font-size:72.666667pt;}
.fs5_c01133{font-size:73.333333pt;}
.fsc_c01133{font-size:76.666667pt;}
.fsd_c01133{font-size:78.000000pt;}
.y0_c01133{bottom:0.000000pt;}
.y17_c01133{bottom:157.760800pt;}
.y16_c01133{bottom:184.321347pt;}
.y15_c01133{bottom:237.440920pt;}
.y14_c01133{bottom:263.359867pt;}
.y13_c01133{bottom:290.241187pt;}
.y12_c01133{bottom:343.040000pt;}
.y11_c01133{bottom:368.960413pt;}
.y10_c01133{bottom:395.840253pt;}
.yf_c01133{bottom:449.600133pt;}
.ye_c01133{bottom:476.160640pt;}
.yd_c01133{bottom:503.040533pt;}
.yc_c01133{bottom:555.201440pt;}
.yb_c01133{bottom:581.761187pt;}
.ya_c01133{bottom:608.320227pt;}
.y9_c01133{bottom:715.520507pt;}
.y8_c01133{bottom:768.640133pt;}
.y7_c01133{bottom:795.200680pt;}
.y6_c01133{bottom:847.680093pt;}
.y5_c01133{bottom:874.240640pt;}
.y4_c01133{bottom:900.801347pt;}
.y3_c01133{bottom:954.880373pt;}
.y2_c01133{bottom:981.440920pt;}
.y1_c01133{bottom:1007.680667pt;}
.h2_c01133{height:40.328125pt;}
.h14_c01133{height:47.976562pt;}
.ha_c01133{height:67.445312pt;}
.he_c01133{height:68.013021pt;}
.h5_c01133{height:68.701172pt;}
.h4_c01133{height:68.835938pt;}
.hb_c01133{height:69.203125pt;}
.hf_c01133{height:69.320964pt;}
.hc_c01133{height:69.875000pt;}
.h8_c01133{height:69.974935pt;}
.h7_c01133{height:70.009766pt;}
.h13_c01133{height:70.628906pt;}
.h9_c01133{height:70.664062pt;}
.hd_c01133{height:70.921875pt;}
.h1_c01133{height:71.890625pt;}
.h6_c01133{height:71.972656pt;}
.h10_c01133{height:73.007812pt;}
.h3_c01133{height:73.234375pt;}
.h11_c01133{height:75.768229pt;}
.h12_c01133{height:77.085938pt;}
.h0_c01133{height:1122.666667pt;}
.w0_c01133{width:793.333333pt;}
.x0_c01133{left:0.000000pt;}
.x21_c01133{left:120.000000pt;}
.x19_c01133{left:121.599613pt;}
.xa_c01133{left:122.879867pt;}
.x1_c01133{left:124.479467pt;}
.x5_c01133{left:125.438947pt;}
.x1a_c01133{left:142.398920pt;}
.x2b_c01133{left:164.159200pt;}
.x2c_c01133{left:177.919867pt;}
.x10_c01133{left:186.559587pt;}
.xb_c01133{left:190.719720pt;}
.x2e_c01133{left:193.918920pt;}
.x29_c01133{left:196.798787pt;}
.x26_c01133{left:198.399867pt;}
.x11_c01133{left:202.239200pt;}
.x2f_c01133{left:207.999067pt;}
.xc_c01133{left:213.439453pt;}
.xf_c01133{left:222.399867pt;}
.x12_c01133{left:224.639587pt;}
.x27_c01133{left:225.919867pt;}
.x1d_c01133{left:227.838933pt;}
.xd_c01133{left:246.399867pt;}
.x1e_c01133{left:248.318787pt;}
.x1f_c01133{left:261.439453pt;}
.x13_c01133{left:264.959453pt;}
.x6_c01133{left:270.399867pt;}
.xe_c01133{left:274.239200pt;}
.x7_c01133{left:284.159200pt;}
.x28_c01133{left:287.679200pt;}
.x1b_c01133{left:288.638667pt;}
.x1c_c01133{left:302.399453pt;}
.x2d_c01133{left:309.118667pt;}
.x2a_c01133{left:310.079587pt;}
.x2_c01133{left:313.599587pt;}
.x3_c01133{left:318.079067pt;}
.x17_c01133{left:324.159733pt;}
.x16_c01133{left:332.799320pt;}
.x4_c01133{left:346.558507pt;}
.x18_c01133{left:351.999067pt;}
.x22_c01133{left:363.518520pt;}
.x23_c01133{left:384.959467pt;}
.x14_c01133{left:391.359333pt;}
.x15_c01133{left:403.839840pt;}
.x24_c01133{left:408.959467pt;}
.x8_c01133{left:421.439987pt;}
.x9_c01133{left:434.239707pt;}
.x25_c01133{left:436.158693pt;}
.x20_c01133{left:470.718787pt;}
}





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

.ir_c01134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_add5e7b75d76d9ef7cccdddd.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01134;src:url('chunks/assets/font_99a3176878e3130f2b8809da.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01134;src:url('chunks/assets/font_b00d0b415da6ceda5ae65713.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01134;src:url('chunks/assets/font_9db49f32e8ce65141b09ee47.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01134;src:url('chunks/assets/font_f1d2412221b47095ecd69240.woff2')format("woff");}.ff5_c01134{font-family:ff5_c01134;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01134;src:url('chunks/assets/font_9b4f3c93d42902f88d32205b.woff2')format("woff");}.ff6_c01134{font-family:ff6_c01134;line-height:1.364746;font-style:normal;font-weight: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_c01134;src:url('chunks/assets/font_fcb71ec4e7a6447477f06ad3.woff2')format("woff");}.ff7_c01134{font-family:ff7_c01134;line-height:1.284180;font-style:normal;font-weight: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_c01134;src:url('chunks/assets/font_322d6ae3394f9439b2102a79.woff2')format("woff");}.ff8_c01134{font-family:ff8_c01134;line-height:1.432129;font-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_c01134{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.mb_c01134{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mc_c01134{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1a_c01134{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m1_c01134{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m19_c01134{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m5_c01134{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m1d_c01134{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m4_c01134{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m17_c01134{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m7_c01134{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m13_c01134{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m6_c01134{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.md_c01134{transform:matrix(0.239085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239085,0.000000,0.000000,0.250000,0,0);}
.m8_c01134{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m9_c01134{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m18_c01134{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.mf_c01134{transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);}
.ma_c01134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01134{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m3_c01134{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m16_c01134{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m2_c01134{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m15_c01134{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.m11_c01134{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m1e_c01134{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m0_c01134{transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);}
.m1b_c01134{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m12_c01134{transform:matrix(0.337379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337379,0.000000,0.000000,0.250000,0,0);}
.m14_c01134{transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345070,0.000000,0.000000,0.250000,0,0);}
.m10_c01134{transform:matrix(0.480263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480263,0.000000,0.000000,0.250000,0,0);}
.v0_c01134{vertical-align:0.000000px;}
.ls2b_c01134{letter-spacing:-16.348500px;}
.ls29_c01134{letter-spacing:-12.910425px;}
.ls4_c01134{letter-spacing:-5.945625px;}
.ls1f_c01134{letter-spacing:-5.196713px;}
.ls2a_c01134{letter-spacing:-4.815000px;}
.ls13_c01134{letter-spacing:-4.456463px;}
.ls23_c01134{letter-spacing:-4.422600px;}
.ls1e_c01134{letter-spacing:-4.012500px;}
.ls16_c01134{letter-spacing:-3.778065px;}
.lsb_c01134{letter-spacing:-3.717000px;}
.ls27_c01134{letter-spacing:-3.713445px;}
.ls14_c01134{letter-spacing:-3.209198px;}
.lsf_c01134{letter-spacing:-3.113700px;}
.lsc_c01134{letter-spacing:-2.968875px;}
.ls1_c01134{letter-spacing:-2.820675px;}
.ls8_c01134{letter-spacing:-2.407500px;}
.ls1c_c01134{letter-spacing:-2.404890px;}
.ls7_c01134{letter-spacing:-2.370923px;}
.ls10_c01134{letter-spacing:-2.335275px;}
.lsd_c01134{letter-spacing:-2.229413px;}
.lsa_c01134{letter-spacing:-1.605000px;}
.ls21_c01134{letter-spacing:-1.556048px;}
.lse_c01134{letter-spacing:-1.489163px;}
.ls2_c01134{letter-spacing:-0.865200px;}
.ls24_c01134{letter-spacing:-0.809325px;}
.ls9_c01134{letter-spacing:-0.801698px;}
.ls20_c01134{letter-spacing:-0.778425px;}
.ls26_c01134{letter-spacing:-0.740250px;}
.ls3_c01134{letter-spacing:0.000000px;}
.ls1a_c01134{letter-spacing:0.718290px;}
.ls22_c01134{letter-spacing:0.729473px;}
.ls0_c01134{letter-spacing:0.740250px;}
.ls12_c01134{letter-spacing:0.745523px;}
.ls1d_c01134{letter-spacing:0.778425px;}
.ls18_c01134{letter-spacing:0.780900px;}
.ls11_c01134{letter-spacing:1.556048px;}
.ls17_c01134{letter-spacing:2.335275px;}
.ls28_c01134{letter-spacing:3.258900px;}
.ls25_c01134{letter-spacing:4.236750px;}
.ls19_c01134{letter-spacing:6.517530px;}
.ls6_c01134{letter-spacing:8.196450px;}
.ls15_c01134{letter-spacing:8.383500px;}
.ls1b_c01134{letter-spacing:10.003875px;}
.ls5_c01134{letter-spacing:34.125000px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01134{word-spacing:0.000000px;}
._11_c01134{margin-left:-18.746898px;}
._13_c01134{margin-left:-15.962179px;}
._15_c01134{margin-left:-4.755743px;}
._12_c01134{margin-left:-2.335755px;}
._8_c01134{width:1.446221px;}
._10_c01134{width:3.273233px;}
._9_c01134{width:4.375499px;}
._1_c01134{width:6.098294px;}
._0_c01134{width:8.032832px;}
._2_c01134{width:9.305501px;}
._4_c01134{width:10.745491px;}
._3_c01134{width:12.835257px;}
._c_c01134{width:15.997795px;}
._a_c01134{width:17.141721px;}
._7_c01134{width:19.558647px;}
._f_c01134{width:20.766524px;}
._5_c01134{width:21.945744px;}
._6_c01134{width:25.743286px;}
._e_c01134{width:27.140058px;}
._b_c01134{width:29.247468px;}
._d_c01134{width:33.114464px;}
._14_c01134{width:35.315075px;}
._16_c01134{width:36.633446px;}
.fc0_c01134{color:transparent;}
.fsc_c01134{font-size:27.000000px;}
.fsb_c01134{font-size:28.500000px;}
.fse_c01134{font-size:53.250000px;}
.fsd_c01134{font-size:69.000000px;}
.fs6_c01134{font-size:72.750000px;}
.fs11_c01134{font-size:73.500000px;}
.fs12_c01134{font-size:76.500000px;}
.fs7_c01134{font-size:77.250000px;}
.fs8_c01134{font-size:77.288340px;}
.fs4_c01134{font-size:78.000000px;}
.fs3_c01134{font-size:78.750000px;}
.fs5_c01134{font-size:79.500000px;}
.fs2_c01134{font-size:80.250000px;}
.fs9_c01134{font-size:81.000000px;}
.fs10_c01134{font-size:81.750000px;}
.fs0_c01134{font-size:82.500000px;}
.fs1_c01134{font-size:84.000000px;}
.fsa_c01134{font-size:88.500000px;}
.fs13_c01134{font-size:96.000000px;}
.fsf_c01134{font-size:101.250000px;}
.y0_c01134{bottom:0.000000px;}
.y1d_c01134{bottom:236.879535px;}
.y1c_c01134{bottom:267.119385px;}
.y1b_c01134{bottom:267.120270px;}
.y1a_c01134{bottom:297.000000px;}
.y19_c01134{bottom:356.398635px;}
.y18_c01134{bottom:386.279250px;}
.y17_c01134{bottom:386.280195px;}
.y16_c01134{bottom:416.159910px;}
.y15_c01134{bottom:446.399820px;}
.y14_c01134{bottom:506.518620px;}
.y13_c01134{bottom:536.039985px;}
.y12_c01134{bottom:565.918950px;}
.y11_c01134{bottom:625.319235px;}
.y10_c01134{bottom:654.838950px;}
.yf_c01134{bottom:685.078770px;}
.ye_c01134{bottom:744.840135px;}
.yd_c01134{bottom:753.839535px;}
.yc_c01134{bottom:774.719415px;}
.yb_c01134{bottom:805.319820px;}
.ya_c01134{bottom:865.438665px;}
.y9_c01134{bottom:894.960015px;}
.y8_c01134{bottom:894.960120px;}
.y6_c01134{bottom:924.479595px;}
.y7_c01134{bottom:924.479640px;}
.y5_c01134{bottom:954.719520px;}
.y4_c01134{bottom:1014.119940px;}
.y3_c01134{bottom:1043.639655px;}
.y2_c01134{bottom:1074.238770px;}
.y1_c01134{bottom:1134.359250px;}
.hf_c01134{height:26.683594px;}
.he_c01134{height:28.166016px;}
.h13_c01134{height:53.666016px;}
.h10_c01134{height:67.686035px;}
.h17_c01134{height:74.074219px;}
.h11_c01134{height:75.778931px;}
.hb_c01134{height:75.854279px;}
.h7_c01134{height:75.875977px;}
.h19_c01134{height:77.097656px;}
.h4_c01134{height:77.288818px;}
.ha_c01134{height:77.853516px;}
.h6_c01134{height:77.986084px;}
.h1b_c01134{height:78.024902px;}
.h5_c01134{height:78.609375px;}
.h8_c01134{height:78.721802px;}
.h3_c01134{height:78.760986px;}
.h18_c01134{height:79.365234px;}
.hc_c01134{height:79.457520px;}
.h15_c01134{height:79.497070px;}
.h9_c01134{height:80.876953px;}
.h1_c01134{height:80.969238px;}
.h12_c01134{height:81.632812px;}
.h16_c01134{height:82.388672px;}
.h2_c01134{height:82.441406px;}
.hd_c01134{height:87.462891px;}
.h1a_c01134{height:100.125000px;}
.h14_c01134{height:105.600586px;}
.h0_c01134{height:1263.000000px;}
.w0_c01134{width:892.500000px;}
.x0_c01134{left:0.000000px;}
.xf_c01134{left:145.798950px;}
.x1_c01134{left:147.239250px;}
.x16_c01134{left:148.317930px;}
.x2_c01134{left:170.999400px;}
.x3_c01134{left:194.759535px;}
.x13_c01134{left:208.439250px;}
.x19_c01134{left:214.198785px;}
.x4_c01134{left:224.638500px;}
.xd_c01134{left:225.719535px;}
.x20_c01134{left:227.878350px;}
.x5_c01134{left:229.318800px;}
.x1a_c01134{left:234.359850px;}
.xe_c01134{left:240.839535px;}
.x21_c01134{left:252.358635px;}
.x6_c01134{left:262.080000px;}
.x17_c01134{left:265.679100px;}
.x10_c01134{left:277.918350px;}
.x1b_c01134{left:287.278800px;}
.x18_c01134{left:292.319850px;}
.x11_c01134{left:300.599100px;}
.x7_c01134{left:310.318800px;}
.x22_c01134{left:313.199385px;}
.x14_c01134{left:320.399235px;}
.x8_c01134{left:325.438635px;}
.x23_c01134{left:334.439685px;}
.x28_c01134{left:335.878350px;}
.x24_c01134{left:349.198785px;}
.x15_c01134{left:350.279850px;}
.x2b_c01134{left:372.238785px;}
.x12_c01134{left:389.159820px;}
.x29_c01134{left:419.038920px;}
.x2e_c01134{left:433.438665px;}
.x2a_c01134{left:435.599070px;}
.x1c_c01134{left:459.718500px;}
.x26_c01134{left:467.999400px;}
.x1d_c01134{left:470.878320px;}
.x2c_c01134{left:473.759085px;}
.x27_c01134{left:484.198785px;}
.x9_c01134{left:492.479685px;}
.x1e_c01134{left:496.078770px;}
.x2d_c01134{left:498.959385px;}
.xa_c01134{left:523.439670px;}
.x1f_c01134{left:527.038920px;}
.x25_c01134{left:529.199385px;}
.xb_c01134{left:657.719520px;}
.xc_c01134{left:676.799520px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls2b_c01134{letter-spacing:-14.532000pt;}
.ls29_c01134{letter-spacing:-11.475933pt;}
.ls4_c01134{letter-spacing:-5.285000pt;}
.ls1f_c01134{letter-spacing:-4.619300pt;}
.ls2a_c01134{letter-spacing:-4.280000pt;}
.ls13_c01134{letter-spacing:-3.961300pt;}
.ls23_c01134{letter-spacing:-3.931200pt;}
.ls1e_c01134{letter-spacing:-3.566667pt;}
.ls16_c01134{letter-spacing:-3.358280pt;}
.lsb_c01134{letter-spacing:-3.304000pt;}
.ls27_c01134{letter-spacing:-3.300840pt;}
.ls14_c01134{letter-spacing:-2.852620pt;}
.lsf_c01134{letter-spacing:-2.767733pt;}
.lsc_c01134{letter-spacing:-2.639000pt;}
.ls1_c01134{letter-spacing:-2.507267pt;}
.ls8_c01134{letter-spacing:-2.140000pt;}
.ls1c_c01134{letter-spacing:-2.137680pt;}
.ls7_c01134{letter-spacing:-2.107487pt;}
.ls10_c01134{letter-spacing:-2.075800pt;}
.lsd_c01134{letter-spacing:-1.981700pt;}
.lsa_c01134{letter-spacing:-1.426667pt;}
.ls21_c01134{letter-spacing:-1.383153pt;}
.lse_c01134{letter-spacing:-1.323700pt;}
.ls2_c01134{letter-spacing:-0.769067pt;}
.ls24_c01134{letter-spacing:-0.719400pt;}
.ls9_c01134{letter-spacing:-0.712620pt;}
.ls20_c01134{letter-spacing:-0.691933pt;}
.ls26_c01134{letter-spacing:-0.658000pt;}
.ls3_c01134{letter-spacing:0.000000pt;}
.ls1a_c01134{letter-spacing:0.638480pt;}
.ls22_c01134{letter-spacing:0.648420pt;}
.ls0_c01134{letter-spacing:0.658000pt;}
.ls12_c01134{letter-spacing:0.662687pt;}
.ls1d_c01134{letter-spacing:0.691933pt;}
.ls18_c01134{letter-spacing:0.694133pt;}
.ls11_c01134{letter-spacing:1.383153pt;}
.ls17_c01134{letter-spacing:2.075800pt;}
.ls28_c01134{letter-spacing:2.896800pt;}
.ls25_c01134{letter-spacing:3.766000pt;}
.ls19_c01134{letter-spacing:5.793360pt;}
.ls6_c01134{letter-spacing:7.285733pt;}
.ls15_c01134{letter-spacing:7.452000pt;}
.ls1b_c01134{letter-spacing:8.892333pt;}
.ls5_c01134{letter-spacing:30.333333pt;}
.ws0_c01134{word-spacing:0.000000pt;}
._11_c01134{margin-left:-16.663909pt;}
._13_c01134{margin-left:-14.188604pt;}
._15_c01134{margin-left:-4.227327pt;}
._12_c01134{margin-left:-2.076226pt;}
._8_c01134{width:1.285530pt;}
._10_c01134{width:2.909540pt;}
._9_c01134{width:3.889332pt;}
._1_c01134{width:5.420706pt;}
._0_c01134{width:7.140295pt;}
._2_c01134{width:8.271557pt;}
._4_c01134{width:9.551547pt;}
._3_c01134{width:11.409117pt;}
._c_c01134{width:14.220262pt;}
._a_c01134{width:15.237085pt;}
._7_c01134{width:17.385464pt;}
._f_c01134{width:18.459132pt;}
._5_c01134{width:19.507328pt;}
._6_c01134{width:22.882921pt;}
._e_c01134{width:24.124496pt;}
._b_c01134{width:25.997749pt;}
._d_c01134{width:29.435079pt;}
._14_c01134{width:31.391177pt;}
._16_c01134{width:32.563063pt;}
.fsc_c01134{font-size:24.000000pt;}
.fsb_c01134{font-size:25.333333pt;}
.fse_c01134{font-size:47.333333pt;}
.fsd_c01134{font-size:61.333333pt;}
.fs6_c01134{font-size:64.666667pt;}
.fs11_c01134{font-size:65.333333pt;}
.fs12_c01134{font-size:68.000000pt;}
.fs7_c01134{font-size:68.666667pt;}
.fs8_c01134{font-size:68.700747pt;}
.fs4_c01134{font-size:69.333333pt;}
.fs3_c01134{font-size:70.000000pt;}
.fs5_c01134{font-size:70.666667pt;}
.fs2_c01134{font-size:71.333333pt;}
.fs9_c01134{font-size:72.000000pt;}
.fs10_c01134{font-size:72.666667pt;}
.fs0_c01134{font-size:73.333333pt;}
.fs1_c01134{font-size:74.666667pt;}
.fsa_c01134{font-size:78.666667pt;}
.fs13_c01134{font-size:85.333333pt;}
.fsf_c01134{font-size:90.000000pt;}
.y0_c01134{bottom:0.000000pt;}
.y1d_c01134{bottom:210.559587pt;}
.y1c_c01134{bottom:237.439453pt;}
.y1b_c01134{bottom:237.440240pt;}
.y1a_c01134{bottom:264.000000pt;}
.y19_c01134{bottom:316.798787pt;}
.y18_c01134{bottom:343.359333pt;}
.y17_c01134{bottom:343.360173pt;}
.y16_c01134{bottom:369.919920pt;}
.y15_c01134{bottom:396.799840pt;}
.y14_c01134{bottom:450.238773pt;}
.y13_c01134{bottom:476.479987pt;}
.y12_c01134{bottom:503.039067pt;}
.y11_c01134{bottom:555.839320pt;}
.y10_c01134{bottom:582.079067pt;}
.yf_c01134{bottom:608.958907pt;}
.ye_c01134{bottom:662.080120pt;}
.yd_c01134{bottom:670.079587pt;}
.yc_c01134{bottom:688.639480pt;}
.yb_c01134{bottom:715.839840pt;}
.ya_c01134{bottom:769.278813pt;}
.y9_c01134{bottom:795.520013pt;}
.y8_c01134{bottom:795.520107pt;}
.y6_c01134{bottom:821.759640pt;}
.y7_c01134{bottom:821.759680pt;}
.y5_c01134{bottom:848.639573pt;}
.y4_c01134{bottom:901.439947pt;}
.y3_c01134{bottom:927.679693pt;}
.y2_c01134{bottom:954.878907pt;}
.y1_c01134{bottom:1008.319333pt;}
.hf_c01134{height:23.718750pt;}
.he_c01134{height:25.036458pt;}
.h13_c01134{height:47.703125pt;}
.h10_c01134{height:60.165365pt;}
.h17_c01134{height:65.843750pt;}
.h11_c01134{height:67.359049pt;}
.hb_c01134{height:67.426026pt;}
.h7_c01134{height:67.445312pt;}
.h19_c01134{height:68.531250pt;}
.h4_c01134{height:68.701172pt;}
.ha_c01134{height:69.203125pt;}
.h6_c01134{height:69.320964pt;}
.h1b_c01134{height:69.355469pt;}
.h5_c01134{height:69.875000pt;}
.h8_c01134{height:69.974935pt;}
.h3_c01134{height:70.009766pt;}
.h18_c01134{height:70.546875pt;}
.hc_c01134{height:70.628906pt;}
.h15_c01134{height:70.664062pt;}
.h9_c01134{height:71.890625pt;}
.h1_c01134{height:71.972656pt;}
.h12_c01134{height:72.562500pt;}
.h16_c01134{height:73.234375pt;}
.h2_c01134{height:73.281250pt;}
.hd_c01134{height:77.744792pt;}
.h1a_c01134{height:89.000000pt;}
.h14_c01134{height:93.867188pt;}
.h0_c01134{height:1122.666667pt;}
.w0_c01134{width:793.333333pt;}
.x0_c01134{left:0.000000pt;}
.xf_c01134{left:129.599067pt;}
.x1_c01134{left:130.879333pt;}
.x16_c01134{left:131.838160pt;}
.x2_c01134{left:151.999467pt;}
.x3_c01134{left:173.119587pt;}
.x13_c01134{left:185.279333pt;}
.x19_c01134{left:190.398920pt;}
.x4_c01134{left:199.678667pt;}
.xd_c01134{left:200.639587pt;}
.x20_c01134{left:202.558533pt;}
.x5_c01134{left:203.838933pt;}
.x1a_c01134{left:208.319867pt;}
.xe_c01134{left:214.079587pt;}
.x21_c01134{left:224.318787pt;}
.x6_c01134{left:232.960000pt;}
.x17_c01134{left:236.159200pt;}
.x10_c01134{left:247.038533pt;}
.x1b_c01134{left:255.358933pt;}
.x18_c01134{left:259.839867pt;}
.x11_c01134{left:267.199200pt;}
.x7_c01134{left:275.838933pt;}
.x22_c01134{left:278.399453pt;}
.x14_c01134{left:284.799320pt;}
.x8_c01134{left:289.278787pt;}
.x23_c01134{left:297.279720pt;}
.x28_c01134{left:298.558533pt;}
.x24_c01134{left:310.398920pt;}
.x15_c01134{left:311.359867pt;}
.x2b_c01134{left:330.878920pt;}
.x12_c01134{left:345.919840pt;}
.x29_c01134{left:372.479040pt;}
.x2e_c01134{left:385.278813pt;}
.x2a_c01134{left:387.199173pt;}
.x1c_c01134{left:408.638667pt;}
.x26_c01134{left:415.999467pt;}
.x1d_c01134{left:418.558507pt;}
.x2c_c01134{left:421.119187pt;}
.x27_c01134{left:430.398920pt;}
.x9_c01134{left:437.759720pt;}
.x1e_c01134{left:440.958907pt;}
.x2d_c01134{left:443.519453pt;}
.xa_c01134{left:465.279707pt;}
.x1f_c01134{left:468.479040pt;}
.x25_c01134{left:470.399453pt;}
.xb_c01134{left:584.639573pt;}
.xc_c01134{left:601.599573pt;}
}





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

.ir_c01135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_777f78317a803546a8091479.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01135;src:url('chunks/assets/font_0412f612f8bf61ad2391965e.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01135;src:url('chunks/assets/font_0b92ceef6d17e546317fec97.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01135;src:url('chunks/assets/font_a064214860821b20f148ae19.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01135;src:url('chunks/assets/font_7464dffe77350ffc6a20a432.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01135;src:url('chunks/assets/font_f671eb9f9abb77b36dc0594c.woff2')format("woff");}.ff6_c01135{font-family:ff6_c01135;line-height:1.364746;font-style:normal;font-weight: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_c01135;src:url('chunks/assets/font_9c843b789de2a1e437cd4b0c.woff2')format("woff");}.ff7_c01135{font-family:ff7_c01135;line-height:1.432129;font-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_c01135{transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151316,0.000000,0.000000,0.250000,0,0);}
.m12_c01135{transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172170,0.000000,0.000000,0.250000,0,0);}
.m1c_c01135{transform:matrix(0.186404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186404,0.000000,0.000000,0.250000,0,0);}
.m13_c01135{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m24_c01135{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.mb_c01135{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m1b_c01135{transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207589,0.000000,0.000000,0.250000,0,0);}
.m1f_c01135{transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);}
.m19_c01135{transform:matrix(0.213043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213043,0.000000,0.000000,0.250000,0,0);}
.m8_c01135{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m21_c01135{transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223039,0.000000,0.000000,0.250000,0,0);}
.m22_c01135{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.mc_c01135{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m1_c01135{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m5_c01135{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m1d_c01135{transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);}
.m15_c01135{transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232906,0.000000,0.000000,0.250000,0,0);}
.md_c01135{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m14_c01135{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m0_c01135{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m11_c01135{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m7_c01135{transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240291,0.000000,0.000000,0.250000,0,0);}
.m23_c01135{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.me_c01135{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m16_c01135{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m3_c01135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01135{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m20_c01135{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.mf_c01135{transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);}
.m9_c01135{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m6_c01135{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m1e_c01135{transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);}
.m18_c01135{transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313158,0.000000,0.000000,0.250000,0,0);}
.m17_c01135{transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);}
.ma_c01135{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m10_c01135{transform:matrix(0.353535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353535,0.000000,0.000000,0.250000,0,0);}
.m1a_c01135{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls1e_c01135{letter-spacing:-16.102125px;}
.ls24_c01135{letter-spacing:-11.363400px;}
.ls23_c01135{letter-spacing:-10.836000px;}
.ls16_c01135{letter-spacing:-10.075725px;}
.ls9_c01135{letter-spacing:-8.678250px;}
.ls18_c01135{letter-spacing:-8.175038px;}
.lsb_c01135{letter-spacing:-6.165338px;}
.ls25_c01135{letter-spacing:-6.014250px;}
.ls8_c01135{letter-spacing:-5.945625px;}
.ls17_c01135{letter-spacing:-5.196713px;}
.lsd_c01135{letter-spacing:-4.353315px;}
.ls2c_c01135{letter-spacing:-4.079250px;}
.ls19_c01135{letter-spacing:-3.927690px;}
.ls12_c01135{letter-spacing:-3.717000px;}
.ls15_c01135{letter-spacing:-3.686918px;}
.ls10_c01135{letter-spacing:-3.263400px;}
.ls14_c01135{letter-spacing:-3.087000px;}
.ls4_c01135{letter-spacing:-2.968875px;}
.ls22_c01135{letter-spacing:-2.638388px;}
.lsf_c01135{letter-spacing:-2.447550px;}
.ls1_c01135{letter-spacing:-2.382623px;}
.ls6_c01135{letter-spacing:-2.229413px;}
.ls21_c01135{letter-spacing:-1.796213px;}
.ls2a_c01135{letter-spacing:-1.653600px;}
.lsa_c01135{letter-spacing:-1.632533px;}
.ls2_c01135{letter-spacing:-1.589753px;}
.ls7_c01135{letter-spacing:-1.489163px;}
.ls26_c01135{letter-spacing:-0.891608px;}
.ls11_c01135{letter-spacing:-0.815850px;}
.ls1d_c01135{letter-spacing:-0.801900px;}
.lsc_c01135{letter-spacing:-0.780225px;}
.lse_c01135{letter-spacing:-0.740250px;}
.ls5_c01135{letter-spacing:0.000000px;}
.ls1a_c01135{letter-spacing:0.740250px;}
.ls2b_c01135{letter-spacing:0.778425px;}
.ls13_c01135{letter-spacing:0.819788px;}
.ls28_c01135{letter-spacing:1.683000px;}
.ls20_c01135{letter-spacing:1.756155px;}
.ls1f_c01135{letter-spacing:2.313450px;}
.ls29_c01135{letter-spacing:2.382623px;}
.ls1c_c01135{letter-spacing:2.946075px;}
.ls0_c01135{letter-spacing:3.177900px;}
.ls27_c01135{letter-spacing:3.711398px;}
.ls3_c01135{letter-spacing:4.091948px;}
.ls1b_c01135{letter-spacing:8.713200px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01135{word-spacing:0.000000px;}
._12_c01135{margin-left:-15.131668px;}
._5_c01135{margin-left:-10.827768px;}
._9_c01135{margin-left:-3.833423px;}
._7_c01135{margin-left:-1.481908px;}
._6_c01135{width:1.847954px;}
._4_c01135{width:2.932946px;}
._b_c01135{width:3.938704px;}
._1_c01135{width:5.004131px;}
._0_c01135{width:6.194966px;}
._a_c01135{width:7.780143px;}
._3_c01135{width:8.956209px;}
._8_c01135{width:10.842081px;}
._2_c01135{width:11.856540px;}
._e_c01135{width:13.448825px;}
._f_c01135{width:14.760612px;}
._11_c01135{width:15.906903px;}
._c_c01135{width:17.124893px;}
._d_c01135{width:20.643213px;}
._10_c01135{width:37.576528px;}
.fc0_c01135{color:transparent;}
.fs2_c01135{font-size:57.750000px;}
.fs12_c01135{font-size:67.500000px;}
.fs13_c01135{font-size:69.750000px;}
.fsf_c01135{font-size:71.250000px;}
.fsa_c01135{font-size:74.250000px;}
.fs14_c01135{font-size:76.500000px;}
.fs5_c01135{font-size:77.250000px;}
.fs6_c01135{font-size:78.000000px;}
.fs1_c01135{font-size:78.750000px;}
.fsc_c01135{font-size:79.500000px;}
.fs0_c01135{font-size:80.250000px;}
.fsb_c01135{font-size:81.000000px;}
.fsd_c01135{font-size:82.500000px;}
.fs4_c01135{font-size:83.250000px;}
.fs11_c01135{font-size:84.000000px;}
.fs3_c01135{font-size:85.500000px;}
.fs10_c01135{font-size:86.250000px;}
.fse_c01135{font-size:87.750000px;}
.fs7_c01135{font-size:88.500000px;}
.fs9_c01135{font-size:89.250000px;}
.fs8_c01135{font-size:90.000000px;}
.y0_c01135{bottom:0.000000px;}
.y1c_c01135{bottom:184.319850px;}
.y1b_c01135{bottom:213.478635px;}
.y1a_c01135{bottom:243.359250px;}
.y19_c01135{bottom:302.398635px;}
.y18_c01135{bottom:331.920000px;}
.y17_c01135{bottom:361.798950px;}
.y16_c01135{bottom:421.919535px;}
.y15_c01135{bottom:451.439250px;}
.y14_c01135{bottom:482.039985px;}
.y13_c01135{bottom:541.799520px;}
.y12_c01135{bottom:570.960075px;}
.y11_c01135{bottom:600.839790px;}
.y10_c01135{bottom:630.719520px;}
.yf_c01135{bottom:690.479235px;}
.ye_c01135{bottom:720.359850px;}
.yd_c01135{bottom:750.599670px;}
.yc_c01135{bottom:810.718500px;}
.yb_c01135{bottom:840.599220px;}
.ya_c01135{bottom:870.118740px;}
.y9_c01135{bottom:930.598575px;}
.y8_c01135{bottom:960.119295px;}
.y7_c01135{bottom:989.639655px;}
.y5_c01135{bottom:1019.518620px;}
.y6_c01135{bottom:1019.879520px;}
.y4_c01135{bottom:1079.279850px;}
.y3_c01135{bottom:1079.280540px;}
.y2_c01135{bottom:1109.158815px;}
.y1_c01135{bottom:1139.398590px;}
.h3_c01135{height:60.231445px;}
.h17_c01135{height:66.708984px;}
.h19_c01135{height:70.294922px;}
.h13_c01135{height:74.311523px;}
.h1a_c01135{height:77.097656px;}
.h2_c01135{height:77.288818px;}
.hc_c01135{height:77.440430px;}
.h6_c01135{height:77.853516px;}
.he_c01135{height:77.986084px;}
.h7_c01135{height:78.609375px;}
.ha_c01135{height:79.365234px;}
.hd_c01135{height:79.457520px;}
.h12_c01135{height:80.121094px;}
.h1_c01135{height:80.876953px;}
.hf_c01135{height:80.928955px;}
.h10_c01135{height:81.632812px;}
.h5_c01135{height:81.664673px;}
.h15_c01135{height:83.015625px;}
.h16_c01135{height:83.871826px;}
.h4_c01135{height:84.498047px;}
.h14_c01135{height:84.607544px;}
.h11_c01135{height:86.721680px;}
.h8_c01135{height:87.462891px;}
.h18_c01135{height:87.550415px;}
.hb_c01135{height:88.204102px;}
.h9_c01135{height:93.867188px;}
.h0_c01135{height:1263.000000px;}
.w0_c01135{width:892.500000px;}
.x0_c01135{left:0.000000px;}
.x25_c01135{left:139.678500px;}
.x11_c01135{left:140.759565px;}
.x1_c01135{left:141.838950px;}
.x1a_c01135{left:142.918605px;}
.x5_c01135{left:143.999400px;}
.x27_c01135{left:174.598500px;}
.x29_c01135{left:186.478665px;}
.x20_c01135{left:203.038950px;}
.x30_c01135{left:204.838515px;}
.x2d_c01135{left:207.719100px;}
.x21_c01135{left:232.199385px;}
.x28_c01135{left:237.599700px;}
.xa_c01135{left:245.158785px;}
.xe_c01135{left:258.838515px;}
.x2e_c01135{left:322.198785px;}
.x2a_c01135{left:326.519685px;}
.x1b_c01135{left:329.759535px;}
.x14_c01135{left:335.159850px;}
.x1c_c01135{left:354.958350px;}
.x22_c01135{left:356.039385px;}
.x2_c01135{left:362.519100px;}
.x15_c01135{left:365.399850px;}
.x2b_c01135{left:366.479235px;}
.x31_c01135{left:367.558635px;}
.x2f_c01135{left:376.198785px;}
.x16_c01135{left:380.878950px;}
.x2c_c01135{left:389.878320px;}
.x3_c01135{left:395.639700px;}
.x23_c01135{left:401.399235px;}
.xf_c01135{left:413.999400px;}
.xb_c01135{left:418.679670px;}
.x1d_c01135{left:423.359850px;}
.x10_c01135{left:433.799565px;}
.x24_c01135{left:435.239820px;}
.x4_c01135{left:446.399820px;}
.x17_c01135{left:459.359250px;}
.x1e_c01135{left:467.999400px;}
.x32_c01135{left:469.078770px;}
.xc_c01135{left:481.319820px;}
.x33_c01135{left:483.839535px;}
.x26_c01135{left:486.000000px;}
.x1f_c01135{left:500.399820px;}
.xd_c01135{left:511.559685px;}
.x18_c01135{left:561.599670px;}
.x6_c01135{left:585.719100px;}
.x7_c01135{left:611.639700px;}
.x19_c01135{left:616.679070px;}
.x12_c01135{left:650.878920px;}
.x13_c01135{left:665.278800px;}
.x8_c01135{left:683.999400px;}
.x9_c01135{left:708.479685px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls1e_c01135{letter-spacing:-14.313000pt;}
.ls24_c01135{letter-spacing:-10.100800pt;}
.ls23_c01135{letter-spacing:-9.632000pt;}
.ls16_c01135{letter-spacing:-8.956200pt;}
.ls9_c01135{letter-spacing:-7.714000pt;}
.ls18_c01135{letter-spacing:-7.266700pt;}
.lsb_c01135{letter-spacing:-5.480300pt;}
.ls25_c01135{letter-spacing:-5.346000pt;}
.ls8_c01135{letter-spacing:-5.285000pt;}
.ls17_c01135{letter-spacing:-4.619300pt;}
.lsd_c01135{letter-spacing:-3.869613pt;}
.ls2c_c01135{letter-spacing:-3.626000pt;}
.ls19_c01135{letter-spacing:-3.491280pt;}
.ls12_c01135{letter-spacing:-3.304000pt;}
.ls15_c01135{letter-spacing:-3.277260pt;}
.ls10_c01135{letter-spacing:-2.900800pt;}
.ls14_c01135{letter-spacing:-2.744000pt;}
.ls4_c01135{letter-spacing:-2.639000pt;}
.ls22_c01135{letter-spacing:-2.345233pt;}
.lsf_c01135{letter-spacing:-2.175600pt;}
.ls1_c01135{letter-spacing:-2.117887pt;}
.ls6_c01135{letter-spacing:-1.981700pt;}
.ls21_c01135{letter-spacing:-1.596633pt;}
.ls2a_c01135{letter-spacing:-1.469867pt;}
.lsa_c01135{letter-spacing:-1.451140pt;}
.ls2_c01135{letter-spacing:-1.413113pt;}
.ls7_c01135{letter-spacing:-1.323700pt;}
.ls26_c01135{letter-spacing:-0.792540pt;}
.ls11_c01135{letter-spacing:-0.725200pt;}
.ls1d_c01135{letter-spacing:-0.712800pt;}
.lsc_c01135{letter-spacing:-0.693533pt;}
.lse_c01135{letter-spacing:-0.658000pt;}
.ls5_c01135{letter-spacing:0.000000pt;}
.ls1a_c01135{letter-spacing:0.658000pt;}
.ls2b_c01135{letter-spacing:0.691933pt;}
.ls13_c01135{letter-spacing:0.728700pt;}
.ls28_c01135{letter-spacing:1.496000pt;}
.ls20_c01135{letter-spacing:1.561027pt;}
.ls1f_c01135{letter-spacing:2.056400pt;}
.ls29_c01135{letter-spacing:2.117887pt;}
.ls1c_c01135{letter-spacing:2.618733pt;}
.ls0_c01135{letter-spacing:2.824800pt;}
.ls27_c01135{letter-spacing:3.299020pt;}
.ls3_c01135{letter-spacing:3.637287pt;}
.ls1b_c01135{letter-spacing:7.745067pt;}
.ws0_c01135{word-spacing:0.000000pt;}
._12_c01135{margin-left:-13.450371pt;}
._5_c01135{margin-left:-9.624683pt;}
._9_c01135{margin-left:-3.407488pt;}
._7_c01135{margin-left:-1.317252pt;}
._6_c01135{width:1.642626pt;}
._4_c01135{width:2.607063pt;}
._b_c01135{width:3.501070pt;}
._1_c01135{width:4.448116pt;}
._0_c01135{width:5.506637pt;}
._a_c01135{width:6.915683pt;}
._3_c01135{width:7.961074pt;}
._8_c01135{width:9.637405pt;}
._2_c01135{width:10.539146pt;}
._e_c01135{width:11.954511pt;}
._f_c01135{width:13.120544pt;}
._11_c01135{width:14.139469pt;}
._c_c01135{width:15.222127pt;}
._d_c01135{width:18.349523pt;}
._10_c01135{width:33.401358pt;}
.fs2_c01135{font-size:51.333333pt;}
.fs12_c01135{font-size:60.000000pt;}
.fs13_c01135{font-size:62.000000pt;}
.fsf_c01135{font-size:63.333333pt;}
.fsa_c01135{font-size:66.000000pt;}
.fs14_c01135{font-size:68.000000pt;}
.fs5_c01135{font-size:68.666667pt;}
.fs6_c01135{font-size:69.333333pt;}
.fs1_c01135{font-size:70.000000pt;}
.fsc_c01135{font-size:70.666667pt;}
.fs0_c01135{font-size:71.333333pt;}
.fsb_c01135{font-size:72.000000pt;}
.fsd_c01135{font-size:73.333333pt;}
.fs4_c01135{font-size:74.000000pt;}
.fs11_c01135{font-size:74.666667pt;}
.fs3_c01135{font-size:76.000000pt;}
.fs10_c01135{font-size:76.666667pt;}
.fse_c01135{font-size:78.000000pt;}
.fs7_c01135{font-size:78.666667pt;}
.fs9_c01135{font-size:79.333333pt;}
.fs8_c01135{font-size:80.000000pt;}
.y0_c01135{bottom:0.000000pt;}
.y1c_c01135{bottom:163.839867pt;}
.y1b_c01135{bottom:189.758787pt;}
.y1a_c01135{bottom:216.319333pt;}
.y19_c01135{bottom:268.798787pt;}
.y18_c01135{bottom:295.040000pt;}
.y17_c01135{bottom:321.599067pt;}
.y16_c01135{bottom:375.039587pt;}
.y15_c01135{bottom:401.279333pt;}
.y14_c01135{bottom:428.479987pt;}
.y13_c01135{bottom:481.599573pt;}
.y12_c01135{bottom:507.520067pt;}
.y11_c01135{bottom:534.079813pt;}
.y10_c01135{bottom:560.639573pt;}
.yf_c01135{bottom:613.759320pt;}
.ye_c01135{bottom:640.319867pt;}
.yd_c01135{bottom:667.199707pt;}
.yc_c01135{bottom:720.638667pt;}
.yb_c01135{bottom:747.199307pt;}
.ya_c01135{bottom:773.438880pt;}
.y9_c01135{bottom:827.198733pt;}
.y8_c01135{bottom:853.439373pt;}
.y7_c01135{bottom:879.679693pt;}
.y5_c01135{bottom:906.238773pt;}
.y6_c01135{bottom:906.559573pt;}
.y4_c01135{bottom:959.359867pt;}
.y3_c01135{bottom:959.360480pt;}
.y2_c01135{bottom:985.918947pt;}
.y1_c01135{bottom:1012.798747pt;}
.h3_c01135{height:53.539062pt;}
.h17_c01135{height:59.296875pt;}
.h19_c01135{height:62.484375pt;}
.h13_c01135{height:66.054688pt;}
.h1a_c01135{height:68.531250pt;}
.h2_c01135{height:68.701172pt;}
.hc_c01135{height:68.835938pt;}
.h6_c01135{height:69.203125pt;}
.he_c01135{height:69.320964pt;}
.h7_c01135{height:69.875000pt;}
.ha_c01135{height:70.546875pt;}
.hd_c01135{height:70.628906pt;}
.h12_c01135{height:71.218750pt;}
.h1_c01135{height:71.890625pt;}
.hf_c01135{height:71.936849pt;}
.h10_c01135{height:72.562500pt;}
.h5_c01135{height:72.590820pt;}
.h15_c01135{height:73.791667pt;}
.h16_c01135{height:74.552734pt;}
.h4_c01135{height:75.109375pt;}
.h14_c01135{height:75.206706pt;}
.h11_c01135{height:77.085938pt;}
.h8_c01135{height:77.744792pt;}
.h18_c01135{height:77.822591pt;}
.hb_c01135{height:78.403646pt;}
.h9_c01135{height:83.437500pt;}
.h0_c01135{height:1122.666667pt;}
.w0_c01135{width:793.333333pt;}
.x0_c01135{left:0.000000pt;}
.x25_c01135{left:124.158667pt;}
.x11_c01135{left:125.119613pt;}
.x1_c01135{left:126.079067pt;}
.x1a_c01135{left:127.038760pt;}
.x5_c01135{left:127.999467pt;}
.x27_c01135{left:155.198667pt;}
.x29_c01135{left:165.758813pt;}
.x20_c01135{left:180.479067pt;}
.x30_c01135{left:182.078680pt;}
.x2d_c01135{left:184.639200pt;}
.x21_c01135{left:206.399453pt;}
.x28_c01135{left:211.199733pt;}
.xa_c01135{left:217.918920pt;}
.xe_c01135{left:230.078680pt;}
.x2e_c01135{left:286.398920pt;}
.x2a_c01135{left:290.239720pt;}
.x1b_c01135{left:293.119587pt;}
.x14_c01135{left:297.919867pt;}
.x1c_c01135{left:315.518533pt;}
.x22_c01135{left:316.479453pt;}
.x2_c01135{left:322.239200pt;}
.x15_c01135{left:324.799867pt;}
.x2b_c01135{left:325.759320pt;}
.x31_c01135{left:326.718787pt;}
.x2f_c01135{left:334.398920pt;}
.x16_c01135{left:338.559067pt;}
.x2c_c01135{left:346.558507pt;}
.x3_c01135{left:351.679733pt;}
.x23_c01135{left:356.799320pt;}
.xf_c01135{left:367.999467pt;}
.xb_c01135{left:372.159707pt;}
.x1d_c01135{left:376.319867pt;}
.x10_c01135{left:385.599613pt;}
.x24_c01135{left:386.879840pt;}
.x4_c01135{left:396.799840pt;}
.x17_c01135{left:408.319333pt;}
.x1e_c01135{left:415.999467pt;}
.x32_c01135{left:416.958907pt;}
.xc_c01135{left:427.839840pt;}
.x33_c01135{left:430.079587pt;}
.x26_c01135{left:432.000000pt;}
.x1f_c01135{left:444.799840pt;}
.xd_c01135{left:454.719720pt;}
.x18_c01135{left:499.199707pt;}
.x6_c01135{left:520.639200pt;}
.x7_c01135{left:543.679733pt;}
.x19_c01135{left:548.159173pt;}
.x12_c01135{left:578.559040pt;}
.x13_c01135{left:591.358933pt;}
.x8_c01135{left:607.999467pt;}
.x9_c01135{left:629.759720pt;}
}





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

.ir_c01136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_61974247ea36959991a62709.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01136;src:url('chunks/assets/font_c8a676cdaec1183158f7a339.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01136;src:url('chunks/assets/font_865579fa862439d797f738be.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01136;src:url('chunks/assets/font_d391c1cdcb32a18b2e16b774.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01136;src:url('chunks/assets/font_1f1e4d20c9851e521d1eaf09.woff2')format("woff");}.ff5_c01136{font-family:ff5_c01136;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01136;src:url('chunks/assets/font_b3200736d61f4e8f7c8ebcf0.woff2')format("woff");}.ff6_c01136{font-family:ff6_c01136;line-height:1.364746;font-style:normal;font-weight: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_c01136;src:url('chunks/assets/font_f22a222414197a967a7258d0.woff2')format("woff");}.ff7_c01136{font-family:ff7_c01136;line-height:1.432129;font-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_c01136{transform:matrix(0.194737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194737,0.000000,0.000000,0.250000,0,0);}
.ma_c01136{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m16_c01136{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5_c01136{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m15_c01136{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m18_c01136{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m1a_c01136{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_c01136{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.mc_c01136{transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228947,0.000000,0.000000,0.250000,0,0);}
.m3_c01136{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.mb_c01136{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m13_c01136{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.mf_c01136{transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242105,0.000000,0.000000,0.250000,0,0);}
.m1_c01136{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m7_c01136{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m14_c01136{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m8_c01136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01136{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m17_c01136{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.me_c01136{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m19_c01136{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_c01136{transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267327,0.000000,0.000000,0.250000,0,0);}
.m12_c01136{transform:matrix(0.272124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272124,0.000000,0.000000,0.250000,0,0);}
.md_c01136{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m10_c01136{transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);}
.m9_c01136{transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);}
.m6_c01136{transform:matrix(0.631443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631443,0.000000,0.000000,0.250000,0,0);}
.v0_c01136{vertical-align:0.000000px;}
.ls11_c01136{letter-spacing:-22.778385px;}
.ls14_c01136{letter-spacing:-10.644750px;}
.ls1a_c01136{letter-spacing:-8.958075px;}
.ls23_c01136{letter-spacing:-8.915775px;}
.ls24_c01136{letter-spacing:-8.175038px;}
.ls7_c01136{letter-spacing:-7.426125px;}
.ls19_c01136{letter-spacing:-6.749550px;}
.ls21_c01136{letter-spacing:-6.685875px;}
.ls10_c01136{letter-spacing:-6.000750px;}
.ls1b_c01136{letter-spacing:-5.945625px;}
.lse_c01136{letter-spacing:-5.196713px;}
.ls3_c01136{letter-spacing:-4.590000px;}
.ls20_c01136{letter-spacing:-4.456463px;}
.ls8_c01136{letter-spacing:-3.717000px;}
.lsf_c01136{letter-spacing:-3.564750px;}
.ls25_c01136{letter-spacing:-3.540000px;}
.ls5_c01136{letter-spacing:-3.346950px;}
.ls1d_c01136{letter-spacing:-3.242903px;}
.ls4_c01136{letter-spacing:-2.968875px;}
.ls17_c01136{letter-spacing:-2.587350px;}
.ls1c_c01136{letter-spacing:-2.431575px;}
.lsc_c01136{letter-spacing:-2.229413px;}
.lsa_c01136{letter-spacing:-2.105850px;}
.ls6_c01136{letter-spacing:-1.621050px;}
.ls1e_c01136{letter-spacing:-1.560038px;}
.ls9_c01136{letter-spacing:-1.489163px;}
.ls22_c01136{letter-spacing:-1.474980px;}
.lsd_c01136{letter-spacing:-0.810525px;}
.ls13_c01136{letter-spacing:-0.803400px;}
.ls2_c01136{letter-spacing:-0.740250px;}
.lsb_c01136{letter-spacing:0.000000px;}
.ls15_c01136{letter-spacing:0.649058px;}
.ls16_c01136{letter-spacing:0.775913px;}
.ls1_c01136{letter-spacing:0.810525px;}
.ls12_c01136{letter-spacing:0.939600px;}
.ls26_c01136{letter-spacing:1.621050px;}
.ls18_c01136{letter-spacing:4.816500px;}
.ls1f_c01136{letter-spacing:8.546250px;}
.ls0_c01136{letter-spacing:12.969203px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01136{word-spacing:0.000000px;}
._f_c01136{margin-left:-18.872170px;}
._16_c01136{margin-left:-4.925188px;}
._14_c01136{margin-left:-1.509251px;}
._b_c01136{width:2.070612px;}
._2_c01136{width:4.166469px;}
._4_c01136{width:5.841811px;}
._10_c01136{width:7.593364px;}
._6_c01136{width:8.665932px;}
._a_c01136{width:10.247633px;}
._5_c01136{width:11.893598px;}
._0_c01136{width:12.938268px;}
._c_c01136{width:14.918815px;}
._11_c01136{width:16.616012px;}
._8_c01136{width:18.176155px;}
._d_c01136{width:22.224260px;}
._1_c01136{width:23.947608px;}
._15_c01136{width:27.552141px;}
._13_c01136{width:30.454551px;}
._9_c01136{width:35.044612px;}
._e_c01136{width:39.853147px;}
._3_c01136{width:42.139571px;}
._12_c01136{width:44.247634px;}
._7_c01136{width:49.559336px;}
.fc0_c01136{color:transparent;}
.fsa_c01136{font-size:68.250000px;}
.fsc_c01136{font-size:70.500000px;}
.fs9_c01136{font-size:71.250000px;}
.fs5_c01136{font-size:72.750000px;}
.fs6_c01136{font-size:73.500000px;}
.fse_c01136{font-size:75.000000px;}
.fs4_c01136{font-size:75.750000px;}
.fs1_c01136{font-size:76.500000px;}
.fs8_c01136{font-size:78.000000px;}
.fs0_c01136{font-size:78.750000px;}
.fs2_c01136{font-size:79.500000px;}
.fs3_c01136{font-size:80.250000px;}
.fs7_c01136{font-size:81.000000px;}
.fsb_c01136{font-size:82.500000px;}
.fsd_c01136{font-size:84.750000px;}
.y0_c01136{bottom:0.000000px;}
.y1f_c01136{bottom:179.639700px;}
.y1e_c01136{bottom:209.159385px;}
.y1d_c01136{bottom:239.760150px;}
.y1c_c01136{bottom:239.760405px;}
.y1b_c01136{bottom:269.279940px;}
.y1a_c01136{bottom:329.039385px;}
.y19_c01136{bottom:358.920000px;}
.y17_c01136{bottom:388.798740px;}
.y18_c01136{bottom:388.798920px;}
.y16_c01136{bottom:448.560285px;}
.y15_c01136{bottom:478.800150px;}
.y14_c01136{bottom:508.679070px;}
.y13_c01136{bottom:508.679280px;}
.y12_c01136{bottom:567.720150px;}
.y11_c01136{bottom:597.959970px;}
.y10_c01136{bottom:597.960165px;}
.yf_c01136{bottom:627.479685px;}
.ye_c01136{bottom:627.479775px;}
.yd_c01136{bottom:687.239220px;}
.yc_c01136{bottom:717.840135px;}
.yb_c01136{bottom:749.159370px;}
.ya_c01136{bottom:777.959130px;}
.y9_c01136{bottom:837.000000px;}
.y8_c01136{bottom:866.519715px;}
.y7_c01136{bottom:896.759100px;}
.y6_c01136{bottom:957.239220px;}
.y5_c01136{bottom:986.759040px;}
.y4_c01136{bottom:1016.278425px;}
.y3_c01136{bottom:1076.039985px;}
.y2_c01136{bottom:1105.918950px;}
.y1_c01136{bottom:1135.799565px;}
.hd_c01136{height:71.182617px;}
.hf_c01136{height:73.529297px;}
.h15_c01136{height:73.608398px;}
.hc_c01136{height:74.311523px;}
.h5_c01136{height:74.344482px;}
.h2_c01136{height:75.080566px;}
.h6_c01136{height:75.875977px;}
.h14_c01136{height:76.552734px;}
.h9_c01136{height:76.658203px;}
.h1_c01136{height:77.288818px;}
.h3_c01136{height:77.986084px;}
.h12_c01136{height:78.024902px;}
.hb_c01136{height:78.609375px;}
.h4_c01136{height:78.721802px;}
.h11_c01136{height:78.760986px;}
.h8_c01136{height:79.365234px;}
.ha_c01136{height:79.457520px;}
.h7_c01136{height:80.121094px;}
.h13_c01136{height:80.969238px;}
.he_c01136{height:81.533203px;}
.h10_c01136{height:83.756836px;}
.h0_c01136{height:1263.000000px;}
.w0_c01136{width:892.500000px;}
.x0_c01136{left:0.000000px;}
.x6_c01136{left:132.839565px;}
.x1_c01136{left:133.918950px;}
.x4_c01136{left:135.718500px;}
.x25_c01136{left:136.799565px;}
.x26_c01136{left:154.080000px;}
.x7_c01136{left:160.198785px;}
.x5_c01136{left:168.838950px;}
.xa_c01136{left:169.918350px;}
.x19_c01136{left:183.238785px;}
.x1b_c01136{left:185.399250px;}
.x1a_c01136{left:208.798515px;}
.x1f_c01136{left:212.040000px;}
.x1c_c01136{left:216.718500px;}
.x2_c01136{left:228.239250px;}
.x1d_c01136{left:240.839535px;}
.x18_c01136{left:248.759535px;}
.x1e_c01136{left:255.598500px;}
.xb_c01136{left:262.798515px;}
.x20_c01136{left:271.799535px;}
.x21_c01136{left:286.558635px;}
.xc_c01136{left:287.998950px;}
.x3_c01136{left:290.159385px;}
.xd_c01136{left:316.439235px;}
.xe_c01136{left:358.199850px;}
.x8_c01136{left:381.599100px;}
.x9_c01136{left:397.080000px;}
.xf_c01136{left:430.559685px;}
.x10_c01136{left:457.559685px;}
.x11_c01136{left:505.439250px;}
.x22_c01136{left:520.559100px;}
.x12_c01136{left:539.279850px;}
.x23_c01136{left:541.799520px;}
.x13_c01136{left:560.159415px;}
.x14_c01136{left:633.959385px;}
.x15_c01136{left:670.679070px;}
.x16_c01136{left:730.799520px;}
.x24_c01136{left:734.398635px;}
.x17_c01136{left:756.000000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls11_c01136{letter-spacing:-20.247453pt;}
.ls14_c01136{letter-spacing:-9.462000pt;}
.ls1a_c01136{letter-spacing:-7.962733pt;}
.ls23_c01136{letter-spacing:-7.925133pt;}
.ls24_c01136{letter-spacing:-7.266700pt;}
.ls7_c01136{letter-spacing:-6.601000pt;}
.ls19_c01136{letter-spacing:-5.999600pt;}
.ls21_c01136{letter-spacing:-5.943000pt;}
.ls10_c01136{letter-spacing:-5.334000pt;}
.ls1b_c01136{letter-spacing:-5.285000pt;}
.lse_c01136{letter-spacing:-4.619300pt;}
.ls3_c01136{letter-spacing:-4.080000pt;}
.ls20_c01136{letter-spacing:-3.961300pt;}
.ls8_c01136{letter-spacing:-3.304000pt;}
.lsf_c01136{letter-spacing:-3.168667pt;}
.ls25_c01136{letter-spacing:-3.146667pt;}
.ls5_c01136{letter-spacing:-2.975067pt;}
.ls1d_c01136{letter-spacing:-2.882580pt;}
.ls4_c01136{letter-spacing:-2.639000pt;}
.ls17_c01136{letter-spacing:-2.299867pt;}
.ls1c_c01136{letter-spacing:-2.161400pt;}
.lsc_c01136{letter-spacing:-1.981700pt;}
.lsa_c01136{letter-spacing:-1.871867pt;}
.ls6_c01136{letter-spacing:-1.440933pt;}
.ls1e_c01136{letter-spacing:-1.386700pt;}
.ls9_c01136{letter-spacing:-1.323700pt;}
.ls22_c01136{letter-spacing:-1.311093pt;}
.lsd_c01136{letter-spacing:-0.720467pt;}
.ls13_c01136{letter-spacing:-0.714133pt;}
.ls2_c01136{letter-spacing:-0.658000pt;}
.lsb_c01136{letter-spacing:0.000000pt;}
.ls15_c01136{letter-spacing:0.576940pt;}
.ls16_c01136{letter-spacing:0.689700pt;}
.ls1_c01136{letter-spacing:0.720467pt;}
.ls12_c01136{letter-spacing:0.835200pt;}
.ls26_c01136{letter-spacing:1.440933pt;}
.ls18_c01136{letter-spacing:4.281333pt;}
.ls1f_c01136{letter-spacing:7.596667pt;}
.ls0_c01136{letter-spacing:11.528180pt;}
.ws0_c01136{word-spacing:0.000000pt;}
._f_c01136{margin-left:-16.775262pt;}
._16_c01136{margin-left:-4.377945pt;}
._14_c01136{margin-left:-1.341557pt;}
._b_c01136{width:1.840544pt;}
._2_c01136{width:3.703528pt;}
._4_c01136{width:5.192721pt;}
._10_c01136{width:6.749657pt;}
._6_c01136{width:7.703051pt;}
._a_c01136{width:9.109007pt;}
._5_c01136{width:10.572087pt;}
._0_c01136{width:11.500683pt;}
._c_c01136{width:13.261169pt;}
._11_c01136{width:14.769789pt;}
._8_c01136{width:16.156582pt;}
._d_c01136{width:19.754898pt;}
._1_c01136{width:21.286762pt;}
._15_c01136{width:24.490792pt;}
._13_c01136{width:27.070712pt;}
._9_c01136{width:31.150766pt;}
._e_c01136{width:35.425019pt;}
._3_c01136{width:37.457396pt;}
._12_c01136{width:39.331230pt;}
._7_c01136{width:44.052743pt;}
.fsa_c01136{font-size:60.666667pt;}
.fsc_c01136{font-size:62.666667pt;}
.fs9_c01136{font-size:63.333333pt;}
.fs5_c01136{font-size:64.666667pt;}
.fs6_c01136{font-size:65.333333pt;}
.fse_c01136{font-size:66.666667pt;}
.fs4_c01136{font-size:67.333333pt;}
.fs1_c01136{font-size:68.000000pt;}
.fs8_c01136{font-size:69.333333pt;}
.fs0_c01136{font-size:70.000000pt;}
.fs2_c01136{font-size:70.666667pt;}
.fs3_c01136{font-size:71.333333pt;}
.fs7_c01136{font-size:72.000000pt;}
.fsb_c01136{font-size:73.333333pt;}
.fsd_c01136{font-size:75.333333pt;}
.y0_c01136{bottom:0.000000pt;}
.y1f_c01136{bottom:159.679733pt;}
.y1e_c01136{bottom:185.919453pt;}
.y1d_c01136{bottom:213.120133pt;}
.y1c_c01136{bottom:213.120360pt;}
.y1b_c01136{bottom:239.359947pt;}
.y1a_c01136{bottom:292.479453pt;}
.y19_c01136{bottom:319.040000pt;}
.y17_c01136{bottom:345.598880pt;}
.y18_c01136{bottom:345.599040pt;}
.y16_c01136{bottom:398.720253pt;}
.y15_c01136{bottom:425.600133pt;}
.y14_c01136{bottom:452.159173pt;}
.y13_c01136{bottom:452.159360pt;}
.y12_c01136{bottom:504.640133pt;}
.y11_c01136{bottom:531.519973pt;}
.y10_c01136{bottom:531.520147pt;}
.yf_c01136{bottom:557.759720pt;}
.ye_c01136{bottom:557.759800pt;}
.yd_c01136{bottom:610.879307pt;}
.yc_c01136{bottom:638.080120pt;}
.yb_c01136{bottom:665.919440pt;}
.ya_c01136{bottom:691.519227pt;}
.y9_c01136{bottom:744.000000pt;}
.y8_c01136{bottom:770.239747pt;}
.y7_c01136{bottom:797.119200pt;}
.y6_c01136{bottom:850.879307pt;}
.y5_c01136{bottom:877.119147pt;}
.y4_c01136{bottom:903.358600pt;}
.y3_c01136{bottom:956.479987pt;}
.y2_c01136{bottom:983.039067pt;}
.y1_c01136{bottom:1009.599613pt;}
.hd_c01136{height:63.273438pt;}
.hf_c01136{height:65.359375pt;}
.h15_c01136{height:65.429688pt;}
.hc_c01136{height:66.054688pt;}
.h5_c01136{height:66.083984pt;}
.h2_c01136{height:66.738281pt;}
.h6_c01136{height:67.445312pt;}
.h14_c01136{height:68.046875pt;}
.h9_c01136{height:68.140625pt;}
.h1_c01136{height:68.701172pt;}
.h3_c01136{height:69.320964pt;}
.h12_c01136{height:69.355469pt;}
.hb_c01136{height:69.875000pt;}
.h4_c01136{height:69.974935pt;}
.h11_c01136{height:70.009766pt;}
.h8_c01136{height:70.546875pt;}
.ha_c01136{height:70.628906pt;}
.h7_c01136{height:71.218750pt;}
.h13_c01136{height:71.972656pt;}
.he_c01136{height:72.473958pt;}
.h10_c01136{height:74.450521pt;}
.h0_c01136{height:1122.666667pt;}
.w0_c01136{width:793.333333pt;}
.x0_c01136{left:0.000000pt;}
.x6_c01136{left:118.079613pt;}
.x1_c01136{left:119.039067pt;}
.x4_c01136{left:120.638667pt;}
.x25_c01136{left:121.599613pt;}
.x26_c01136{left:136.960000pt;}
.x7_c01136{left:142.398920pt;}
.x5_c01136{left:150.079067pt;}
.xa_c01136{left:151.038533pt;}
.x19_c01136{left:162.878920pt;}
.x1b_c01136{left:164.799333pt;}
.x1a_c01136{left:185.598680pt;}
.x1f_c01136{left:188.480000pt;}
.x1c_c01136{left:192.638667pt;}
.x2_c01136{left:202.879333pt;}
.x1d_c01136{left:214.079587pt;}
.x18_c01136{left:221.119587pt;}
.x1e_c01136{left:227.198667pt;}
.xb_c01136{left:233.598680pt;}
.x20_c01136{left:241.599587pt;}
.x21_c01136{left:254.718787pt;}
.xc_c01136{left:255.999067pt;}
.x3_c01136{left:257.919453pt;}
.xd_c01136{left:281.279320pt;}
.xe_c01136{left:318.399867pt;}
.x8_c01136{left:339.199200pt;}
.x9_c01136{left:352.960000pt;}
.xf_c01136{left:382.719720pt;}
.x10_c01136{left:406.719720pt;}
.x11_c01136{left:449.279333pt;}
.x22_c01136{left:462.719200pt;}
.x12_c01136{left:479.359867pt;}
.x23_c01136{left:481.599573pt;}
.x13_c01136{left:497.919480pt;}
.x14_c01136{left:563.519453pt;}
.x15_c01136{left:596.159173pt;}
.x16_c01136{left:649.599573pt;}
.x24_c01136{left:652.798787pt;}
.x17_c01136{left:672.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_c01137 {
    display:none;
  }
  .loading-indicator_c01137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01137 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01137 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01137" -> "#page-container .classname_c01137")
 */
.pf_c01137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01137 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01137 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01137 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01137 {overflow:visible;}
  }
}
.c_c01137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01137 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01137:after { /* webkit #35443 */
  content: '';
}
.t_c01137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01137 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01137 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01137 { /* info for Javascript */
  display:none;
}
.l_c01137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_7b1999530277e9c0742ea19e.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01137;src:url('chunks/assets/font_398710e5fa8c38c651cfcfe6.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01137;src:url('chunks/assets/font_a1b7bbfbe1fa7b7d91823fc8.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01137;src:url('chunks/assets/font_c212b0b87de1ac403633b0a1.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01137;src:url('chunks/assets/font_7a81ab8c1edc1417b1bf201f.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:1.432129;font-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_c01137{transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);}
.m18_c01137{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m1_c01137{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.md_c01137{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m16_c01137{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m12_c01137{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m15_c01137{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.mc_c01137{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m2_c01137{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.me_c01137{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m8_c01137{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m7_c01137{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m9_c01137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01137{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m17_c01137{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m5_c01137{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.mb_c01137{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m0_c01137{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m4_c01137{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m13_c01137{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m14_c01137{transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276442,0.000000,0.000000,0.250000,0,0);}
.ma_c01137{transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313636,0.000000,0.000000,0.250000,0,0);}
.m6_c01137{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);}
.m10_c01137{transform:matrix(0.379630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379630,0.000000,0.000000,0.250000,0,0);}
.m11_c01137{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_c01137{vertical-align:0.000000px;}
.lsf_c01137{letter-spacing:-20.497500px;}
.ls16_c01137{letter-spacing:-11.048108px;}
.ls1a_c01137{letter-spacing:-7.519980px;}
.ls15_c01137{letter-spacing:-5.379000px;}
.lse_c01137{letter-spacing:-5.150250px;}
.ls1d_c01137{letter-spacing:-4.750200px;}
.ls6_c01137{letter-spacing:-4.463550px;}
.ls1f_c01137{letter-spacing:-4.454190px;}
.ls1e_c01137{letter-spacing:-4.418663px;}
.lsb_c01137{letter-spacing:-4.410975px;}
.ls3_c01137{letter-spacing:-4.357800px;}
.ls8_c01137{letter-spacing:-4.012500px;}
.lsa_c01137{letter-spacing:-3.678413px;}
.ls1c_c01137{letter-spacing:-3.673118px;}
.lsc_c01137{letter-spacing:-2.974125px;}
.ls4_c01137{letter-spacing:-2.945250px;}
.ls7_c01137{letter-spacing:-2.407500px;}
.ls19_c01137{letter-spacing:-2.381400px;}
.ls11_c01137{letter-spacing:-2.315250px;}
.ls2_c01137{letter-spacing:-2.205000px;}
.ls1b_c01137{letter-spacing:-1.653600px;}
.ls5_c01137{letter-spacing:-1.605000px;}
.ls12_c01137{letter-spacing:-1.497878px;}
.ls13_c01137{letter-spacing:-1.473413px;}
.lsd_c01137{letter-spacing:-0.801698px;}
.ls10_c01137{letter-spacing:-0.764235px;}
.ls14_c01137{letter-spacing:-0.731588px;}
.ls9_c01137{letter-spacing:0.000000px;}
.ls18_c01137{letter-spacing:0.865020px;}
.ls1_c01137{letter-spacing:1.473413px;}
.ls0_c01137{letter-spacing:2.205000px;}
.ls17_c01137{letter-spacing:4.023953px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01137{word-spacing:0.000000px;}
._12_c01137{margin-left:-15.699571px;}
._c_c01137{margin-left:-14.252683px;}
._10_c01137{margin-left:-10.379692px;}
._6_c01137{margin-left:-8.349306px;}
._a_c01137{margin-left:-3.803401px;}
._b_c01137{margin-left:-1.413443px;}
._13_c01137{width:1.121446px;}
._5_c01137{width:2.379637px;}
._0_c01137{width:3.715447px;}
._7_c01137{width:5.480231px;}
._2_c01137{width:6.998057px;}
._9_c01137{width:8.464433px;}
._1_c01137{width:9.934565px;}
._3_c01137{width:11.876230px;}
._4_c01137{width:14.722555px;}
._f_c01137{width:16.077044px;}
._e_c01137{width:17.992756px;}
._d_c01137{width:29.240537px;}
._11_c01137{width:51.918455px;}
._8_c01137{width:63.283088px;}
.fc0_c01137{color:transparent;}
.fsa_c01137{font-size:20.250000px;}
.fsb_c01137{font-size:30.000000px;}
.fs5_c01137{font-size:75.000000px;}
.fsd_c01137{font-size:75.750000px;}
.fs6_c01137{font-size:76.500000px;}
.fs4_c01137{font-size:77.250000px;}
.fs9_c01137{font-size:78.000000px;}
.fs0_c01137{font-size:78.750000px;}
.fsc_c01137{font-size:79.500000px;}
.fs2_c01137{font-size:80.250000px;}
.fs1_c01137{font-size:81.000000px;}
.fs3_c01137{font-size:81.750000px;}
.fs7_c01137{font-size:82.500000px;}
.fs8_c01137{font-size:83.250000px;}
.fse_c01137{font-size:84.750000px;}
.y0_c01137{bottom:0.000000px;}
.y1a_c01137{bottom:242.279850px;}
.y19_c01137{bottom:271.801185px;}
.y18_c01137{bottom:301.679790px;}
.y17_c01137{bottom:361.441335px;}
.y16_c01137{bottom:390.961035px;}
.y15_c01137{bottom:420.840135px;}
.y14_c01137{bottom:430.920600px;}
.y13_c01137{bottom:481.321515px;}
.y12_c01137{bottom:511.920600px;}
.y11_c01137{bottom:511.920780px;}
.y10_c01137{bottom:541.440315px;}
.yf_c01137{bottom:541.440465px;}
.ye_c01137{bottom:600.481335px;}
.yc_c01137{bottom:630.360255px;}
.yd_c01137{bottom:630.360300px;}
.yb_c01137{bottom:660.239985px;}
.ya_c01137{bottom:839.880615px;}
.y9_c01137{bottom:869.761140px;}
.y8_c01137{bottom:869.761320px;}
.y7_c01137{bottom:899.641050px;}
.y6_c01137{bottom:959.760675px;}
.y5_c01137{bottom:989.641290px;}
.y4_c01137{bottom:1019.881170px;}
.y3_c01137{bottom:1078.920600px;}
.y2_c01137{bottom:1108.440315px;}
.y1_c01137{bottom:1138.680090px;}
.he_c01137{height:21.120117px;}
.hf_c01137{height:31.289062px;}
.h6_c01137{height:73.608398px;}
.h8_c01137{height:75.816650px;}
.hc_c01137{height:76.552734px;}
.h7_c01137{height:77.097656px;}
.h1_c01137{height:77.288818px;}
.h5_c01137{height:77.853516px;}
.h10_c01137{height:77.986084px;}
.h3_c01137{height:78.721802px;}
.h9_c01137{height:78.760986px;}
.h11_c01137{height:79.004883px;}
.h2_c01137{height:79.497070px;}
.h12_c01137{height:80.121094px;}
.h4_c01137{height:80.233154px;}
.ha_c01137{height:80.969238px;}
.hd_c01137{height:81.351562px;}
.hb_c01137{height:81.705322px;}
.h13_c01137{height:83.177490px;}
.h0_c01137{height:1263.000000px;}
.w0_c01137{width:892.500000px;}
.x0_c01137{left:0.000000px;}
.x18_c01137{left:139.319250px;}
.x8_c01137{left:140.759565px;}
.x1_c01137{left:141.838950px;}
.x1f_c01137{left:166.319250px;}
.x19_c01137{left:172.439715px;}
.x6_c01137{left:207.719100px;}
.x1c_c01137{left:215.639100px;}
.x1a_c01137{left:234.359850px;}
.x20_c01137{left:242.279850px;}
.x2_c01137{left:254.159850px;}
.x21_c01137{left:257.759100px;}
.x7_c01137{left:271.438635px;}
.x3_c01137{left:286.919535px;}
.x10_c01137{left:289.439235px;}
.x4_c01137{left:292.319850px;}
.x1b_c01137{left:303.479685px;}
.xb_c01137{left:314.639700px;}
.x5_c01137{left:315.719100px;}
.x1d_c01137{left:324.359250px;}
.x13_c01137{left:336.598530px;}
.x1e_c01137{left:341.639700px;}
.x11_c01137{left:343.439235px;}
.xe_c01137{left:350.279850px;}
.x14_c01137{left:366.120000px;}
.x12_c01137{left:374.040000px;}
.xc_c01137{left:377.639100px;}
.xf_c01137{left:383.039385px;}
.x15_c01137{left:396.719100px;}
.xd_c01137{left:410.039385px;}
.x9_c01137{left:484.918950px;}
.xa_c01137{left:510.119385px;}
.x16_c01137{left:556.919535px;}
.x17_c01137{left:621.000000px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.lsf_c01137{letter-spacing:-18.220000pt;}
.ls16_c01137{letter-spacing:-9.820540pt;}
.ls1a_c01137{letter-spacing:-6.684427pt;}
.ls15_c01137{letter-spacing:-4.781333pt;}
.lse_c01137{letter-spacing:-4.578000pt;}
.ls1d_c01137{letter-spacing:-4.222400pt;}
.ls6_c01137{letter-spacing:-3.967600pt;}
.ls1f_c01137{letter-spacing:-3.959280pt;}
.ls1e_c01137{letter-spacing:-3.927700pt;}
.lsb_c01137{letter-spacing:-3.920867pt;}
.ls3_c01137{letter-spacing:-3.873600pt;}
.ls8_c01137{letter-spacing:-3.566667pt;}
.lsa_c01137{letter-spacing:-3.269700pt;}
.ls1c_c01137{letter-spacing:-3.264993pt;}
.lsc_c01137{letter-spacing:-2.643667pt;}
.ls4_c01137{letter-spacing:-2.618000pt;}
.ls7_c01137{letter-spacing:-2.140000pt;}
.ls19_c01137{letter-spacing:-2.116800pt;}
.ls11_c01137{letter-spacing:-2.058000pt;}
.ls2_c01137{letter-spacing:-1.960000pt;}
.ls1b_c01137{letter-spacing:-1.469867pt;}
.ls5_c01137{letter-spacing:-1.426667pt;}
.ls12_c01137{letter-spacing:-1.331447pt;}
.ls13_c01137{letter-spacing:-1.309700pt;}
.lsd_c01137{letter-spacing:-0.712620pt;}
.ls10_c01137{letter-spacing:-0.679320pt;}
.ls14_c01137{letter-spacing:-0.650300pt;}
.ls9_c01137{letter-spacing:0.000000pt;}
.ls18_c01137{letter-spacing:0.768907pt;}
.ls1_c01137{letter-spacing:1.309700pt;}
.ls0_c01137{letter-spacing:1.960000pt;}
.ls17_c01137{letter-spacing:3.576847pt;}
.ws0_c01137{word-spacing:0.000000pt;}
._12_c01137{margin-left:-13.955174pt;}
._c_c01137{margin-left:-12.669051pt;}
._10_c01137{margin-left:-9.226393pt;}
._6_c01137{margin-left:-7.421606pt;}
._a_c01137{margin-left:-3.380801pt;}
._b_c01137{margin-left:-1.256394pt;}
._13_c01137{width:0.996841pt;}
._5_c01137{width:2.115233pt;}
._0_c01137{width:3.302619pt;}
._7_c01137{width:4.871316pt;}
._2_c01137{width:6.220495pt;}
._9_c01137{width:7.523940pt;}
._1_c01137{width:8.830724pt;}
._3_c01137{width:10.556649pt;}
._4_c01137{width:13.086716pt;}
._f_c01137{width:14.290705pt;}
._e_c01137{width:15.993561pt;}
._d_c01137{width:25.991589pt;}
._11_c01137{width:46.149738pt;}
._8_c01137{width:56.251634pt;}
.fsa_c01137{font-size:18.000000pt;}
.fsb_c01137{font-size:26.666667pt;}
.fs5_c01137{font-size:66.666667pt;}
.fsd_c01137{font-size:67.333333pt;}
.fs6_c01137{font-size:68.000000pt;}
.fs4_c01137{font-size:68.666667pt;}
.fs9_c01137{font-size:69.333333pt;}
.fs0_c01137{font-size:70.000000pt;}
.fsc_c01137{font-size:70.666667pt;}
.fs2_c01137{font-size:71.333333pt;}
.fs1_c01137{font-size:72.000000pt;}
.fs3_c01137{font-size:72.666667pt;}
.fs7_c01137{font-size:73.333333pt;}
.fs8_c01137{font-size:74.000000pt;}
.fse_c01137{font-size:75.333333pt;}
.y0_c01137{bottom:0.000000pt;}
.y1a_c01137{bottom:215.359867pt;}
.y19_c01137{bottom:241.601053pt;}
.y18_c01137{bottom:268.159813pt;}
.y17_c01137{bottom:321.281187pt;}
.y16_c01137{bottom:347.520920pt;}
.y15_c01137{bottom:374.080120pt;}
.y14_c01137{bottom:383.040533pt;}
.y13_c01137{bottom:427.841347pt;}
.y12_c01137{bottom:455.040533pt;}
.y11_c01137{bottom:455.040693pt;}
.y10_c01137{bottom:481.280280pt;}
.yf_c01137{bottom:481.280413pt;}
.ye_c01137{bottom:533.761187pt;}
.yc_c01137{bottom:560.320227pt;}
.yd_c01137{bottom:560.320267pt;}
.yb_c01137{bottom:586.879987pt;}
.ya_c01137{bottom:746.560547pt;}
.y9_c01137{bottom:773.121013pt;}
.y8_c01137{bottom:773.121173pt;}
.y7_c01137{bottom:799.680933pt;}
.y6_c01137{bottom:853.120600pt;}
.y5_c01137{bottom:879.681147pt;}
.y4_c01137{bottom:906.561040pt;}
.y3_c01137{bottom:959.040533pt;}
.y2_c01137{bottom:985.280280pt;}
.y1_c01137{bottom:1012.160080pt;}
.he_c01137{height:18.773437pt;}
.hf_c01137{height:27.812500pt;}
.h6_c01137{height:65.429688pt;}
.h8_c01137{height:67.392578pt;}
.hc_c01137{height:68.046875pt;}
.h7_c01137{height:68.531250pt;}
.h1_c01137{height:68.701172pt;}
.h5_c01137{height:69.203125pt;}
.h10_c01137{height:69.320964pt;}
.h3_c01137{height:69.974935pt;}
.h9_c01137{height:70.009766pt;}
.h11_c01137{height:70.226562pt;}
.h2_c01137{height:70.664062pt;}
.h12_c01137{height:71.218750pt;}
.h4_c01137{height:71.318359pt;}
.ha_c01137{height:71.972656pt;}
.hd_c01137{height:72.312500pt;}
.hb_c01137{height:72.626953pt;}
.h13_c01137{height:73.935547pt;}
.h0_c01137{height:1122.666667pt;}
.w0_c01137{width:793.333333pt;}
.x0_c01137{left:0.000000pt;}
.x18_c01137{left:123.839333pt;}
.x8_c01137{left:125.119613pt;}
.x1_c01137{left:126.079067pt;}
.x1f_c01137{left:147.839333pt;}
.x19_c01137{left:153.279747pt;}
.x6_c01137{left:184.639200pt;}
.x1c_c01137{left:191.679200pt;}
.x1a_c01137{left:208.319867pt;}
.x20_c01137{left:215.359867pt;}
.x2_c01137{left:225.919867pt;}
.x21_c01137{left:229.119200pt;}
.x7_c01137{left:241.278787pt;}
.x3_c01137{left:255.039587pt;}
.x10_c01137{left:257.279320pt;}
.x4_c01137{left:259.839867pt;}
.x1b_c01137{left:269.759720pt;}
.xb_c01137{left:279.679733pt;}
.x5_c01137{left:280.639200pt;}
.x1d_c01137{left:288.319333pt;}
.x13_c01137{left:299.198693pt;}
.x1e_c01137{left:303.679733pt;}
.x11_c01137{left:305.279320pt;}
.xe_c01137{left:311.359867pt;}
.x14_c01137{left:325.440000pt;}
.x12_c01137{left:332.480000pt;}
.xc_c01137{left:335.679200pt;}
.xf_c01137{left:340.479453pt;}
.x15_c01137{left:352.639200pt;}
.xd_c01137{left:364.479453pt;}
.x9_c01137{left:431.039067pt;}
.xa_c01137{left:453.439453pt;}
.x16_c01137{left:495.039587pt;}
.x17_c01137{left:552.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_c01138 {
    display:none;
  }
  .loading-indicator_c01138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01138 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01138 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01138" -> "#page-container .classname_c01138")
 */
.pf_c01138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01138 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01138 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01138 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01138 {overflow:visible;}
  }
}
.c_c01138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01138 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01138:after { /* webkit #35443 */
  content: '';
}
.t_c01138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01138 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01138 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01138 { /* info for Javascript */
  display:none;
}
.l_c01138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_2634e31a2404bfcacb8746be.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01138;src:url('chunks/assets/font_3af625ac60621631c6d3806c.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01138;src:url('chunks/assets/font_d71530d802203e16d3dbf304.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01138;src:url('chunks/assets/font_38cdfc5141f4aee3300b9197.woff2')format("woff");}.ff4_c01138{font-family:ff4_c01138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01138;src:url('chunks/assets/font_14a1d3187fc68681dcbe3a45.woff2')format("woff");}.ff5_c01138{font-family:ff5_c01138;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01138;src:url('chunks/assets/font_3acf4b8203bb22e7909d5c37.woff2')format("woff");}.ff6_c01138{font-family:ff6_c01138;line-height:1.432129;font-style:normal;font-weight: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_c01138;src:url('chunks/assets/font_543c697ab1d4df4906b2bccf.woff2')format("woff");}.ff7_c01138{font-family:ff7_c01138;line-height:1.364746;font-style:normal;font-weight: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_c01138;src:url('chunks/assets/font_374fb57b29725b1ecccce57c.woff2')format("woff");}.ff8_c01138{font-family:ff8_c01138;line-height:1.432129;font-style:normal;font-weight: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_c01138;src:url('chunks/assets/font_bfeff9ae87508fc7404a75cf.woff2')format("woff");}.ff9_c01138{font-family:ff9_c01138;line-height:1.432129;font-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_c01138{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c01138{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.m27_c01138{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m16_c01138{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m26_c01138{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.md_c01138{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.mb_c01138{transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);}
.m2b_c01138{transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);}
.m25_c01138{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m11_c01138{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m17_c01138{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.m5_c01138{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.mf_c01138{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m1b_c01138{transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223301,0.000000,0.000000,0.250000,0,0);}
.m18_c01138{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m20_c01138{transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225543,0.000000,0.000000,0.250000,0,0);}
.m29_c01138{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m3_c01138{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m2_c01138{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m9_c01138{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m13_c01138{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m6_c01138{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m2c_c01138{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.me_c01138{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m24_c01138{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m1_c01138{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m7_c01138{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m0_c01138{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m2a_c01138{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m22_c01138{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m23_c01138{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.mc_c01138{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m4_c01138{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.ma_c01138{transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);}
.m10_c01138{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m8_c01138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01138{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m21_c01138{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m1c_c01138{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m1d_c01138{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m14_c01138{transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);}
.m1e_c01138{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m19_c01138{transform:matrix(0.388158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388158,0.000000,0.000000,0.250000,0,0);}
.m1a_c01138{transform:matrix(0.426282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426282,0.000000,0.000000,0.250000,0,0);}
.m15_c01138{transform:matrix(0.487069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487069,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.ls11_c01138{letter-spacing:-22.852958px;}
.ls2b_c01138{letter-spacing:-20.690573px;}
.ls2d_c01138{letter-spacing:-17.102550px;}
.ls14_c01138{letter-spacing:-11.475998px;}
.ls13_c01138{letter-spacing:-8.494200px;}
.ls1e_c01138{letter-spacing:-8.105250px;}
.ls33_c01138{letter-spacing:-7.647413px;}
.ls29_c01138{letter-spacing:-7.294725px;}
.lsc_c01138{letter-spacing:-6.118875px;}
.ls1f_c01138{letter-spacing:-6.051150px;}
.ls18_c01138{letter-spacing:-4.853475px;}
.ls2e_c01138{letter-spacing:-4.591125px;}
.ls1c_c01138{letter-spacing:-4.539450px;}
.ls2c_c01138{letter-spacing:-3.818588px;}
.ls19_c01138{letter-spacing:-3.242903px;}
.ls2a_c01138{letter-spacing:-3.118500px;}
.lsd_c01138{letter-spacing:-3.055500px;}
.ls10_c01138{letter-spacing:-2.997300px;}
.ls1a_c01138{letter-spacing:-2.431575px;}
.ls4_c01138{letter-spacing:-2.338088px;}
.ls2f_c01138{letter-spacing:-2.317193px;}
.lsa_c01138{letter-spacing:-2.291625px;}
.ls34_c01138{letter-spacing:-2.186250px;}
.lse_c01138{letter-spacing:-1.621050px;}
.ls5_c01138{letter-spacing:-1.603118px;}
.ls15_c01138{letter-spacing:-1.560038px;}
.ls8_c01138{letter-spacing:-1.526963px;}
.ls17_c01138{letter-spacing:-0.810525px;}
.ls35_c01138{letter-spacing:-0.809190px;}
.ls30_c01138{letter-spacing:-0.804173px;}
.lsf_c01138{letter-spacing:-0.794205px;}
.ls9_c01138{letter-spacing:-0.763875px;}
.ls28_c01138{letter-spacing:-0.675750px;}
.lsb_c01138{letter-spacing:0.000000px;}
.ls3_c01138{letter-spacing:0.763875px;}
.ls16_c01138{letter-spacing:0.779625px;}
.ls0_c01138{letter-spacing:0.810525px;}
.ls1d_c01138{letter-spacing:1.560038px;}
.ls1b_c01138{letter-spacing:1.683000px;}
.ls36_c01138{letter-spacing:2.431575px;}
.ls6_c01138{letter-spacing:2.449425px;}
.ls31_c01138{letter-spacing:3.460800px;}
.ls7_c01138{letter-spacing:4.091948px;}
.ls12_c01138{letter-spacing:5.239050px;}
.ls32_c01138{letter-spacing:6.185100px;}
.ls1_c01138{letter-spacing:6.273225px;}
.ls22_c01138{letter-spacing:11.563358px;}
.ls21_c01138{letter-spacing:11.730225px;}
.ls25_c01138{letter-spacing:13.526100px;}
.ls2_c01138{letter-spacing:17.926282px;}
.ls24_c01138{letter-spacing:18.442350px;}
.ls26_c01138{letter-spacing:21.830288px;}
.ls23_c01138{letter-spacing:23.084573px;}
.ls20_c01138{letter-spacing:25.993642px;}
.ls27_c01138{letter-spacing:27.072345px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01138{word-spacing:0.000000px;}
._1_c01138{margin-left:-6.513007px;}
._8_c01138{margin-left:-4.453891px;}
._0_c01138{margin-left:-3.441635px;}
._a_c01138{margin-left:-1.653047px;}
._7_c01138{width:1.393951px;}
._2_c01138{width:3.114792px;}
._4_c01138{width:4.874610px;}
._6_c01138{width:6.654834px;}
._9_c01138{width:8.570376px;}
._c_c01138{width:10.775711px;}
._3_c01138{width:11.955369px;}
._10_c01138{width:12.978435px;}
._d_c01138{width:14.576334px;}
._f_c01138{width:16.242341px;}
._b_c01138{width:18.682626px;}
._5_c01138{width:19.986352px;}
._13_c01138{width:21.998155px;}
._12_c01138{width:27.490183px;}
._11_c01138{width:28.617377px;}
._e_c01138{width:36.489578px;}
.fc0_c01138{color:transparent;}
.fsa_c01138{font-size:36.750000px;}
.fsb_c01138{font-size:38.250000px;}
.fsc_c01138{font-size:39.750000px;}
.fse_c01138{font-size:42.750000px;}
.fsd_c01138{font-size:43.500000px;}
.fs12_c01138{font-size:45.000000px;}
.fs11_c01138{font-size:55.500000px;}
.fsf_c01138{font-size:57.000000px;}
.fs10_c01138{font-size:58.500000px;}
.fs13_c01138{font-size:69.000000px;}
.fs7_c01138{font-size:71.169000px;}
.fs15_c01138{font-size:75.750000px;}
.fs18_c01138{font-size:76.500000px;}
.fs5_c01138{font-size:77.250000px;}
.fs8_c01138{font-size:78.000000px;}
.fs0_c01138{font-size:78.750000px;}
.fs4_c01138{font-size:79.500000px;}
.fs3_c01138{font-size:80.250000px;}
.fs1b_c01138{font-size:81.000000px;}
.fs1_c01138{font-size:81.750000px;}
.fs2_c01138{font-size:82.500000px;}
.fs6_c01138{font-size:83.250000px;}
.fs17_c01138{font-size:84.000000px;}
.fs9_c01138{font-size:84.750000px;}
.fs16_c01138{font-size:85.500000px;}
.fs1a_c01138{font-size:86.250000px;}
.fs14_c01138{font-size:87.750000px;}
.fs19_c01138{font-size:101.250000px;}
.y0_c01138{bottom:0.000000px;}
.y1f_c01138{bottom:237.599700px;}
.y1e_c01138{bottom:267.119565px;}
.y1d_c01138{bottom:296.639100px;}
.y1c_c01138{bottom:356.398635px;}
.y1b_c01138{bottom:356.398665px;}
.y19_c01138{bottom:385.919190px;}
.y1a_c01138{bottom:385.920000px;}
.y18_c01138{bottom:415.798920px;}
.y17_c01138{bottom:415.799955px;}
.y16_c01138{bottom:445.679670px;}
.y15_c01138{bottom:505.800150px;}
.y14_c01138{bottom:536.039985px;}
.y12_c01138{bottom:566.279040px;}
.y13_c01138{bottom:566.279850px;}
.y11_c01138{bottom:596.158770px;}
.y10_c01138{bottom:654.838950px;}
.yf_c01138{bottom:683.999160px;}
.ye_c01138{bottom:714.239220px;}
.yd_c01138{bottom:744.840135px;}
.yc_c01138{bottom:752.039985px;}
.yb_c01138{bottom:805.319820px;}
.ya_c01138{bottom:834.119385px;}
.y9_c01138{bottom:864.359250px;}
.y8_c01138{bottom:923.759490px;}
.y7_c01138{bottom:953.640105px;}
.y6_c01138{bottom:983.879970px;}
.y5_c01138{bottom:1043.278755px;}
.y4_c01138{bottom:1073.159370px;}
.y2_c01138{bottom:1103.399190px;}
.y3_c01138{bottom:1103.399235px;}
.y1_c01138{bottom:1133.639100px;}
.h12_c01138{height:37.037109px;}
.h13_c01138{height:38.548828px;}
.h16_c01138{height:39.893555px;}
.h14_c01138{height:40.060547px;}
.h17_c01138{height:43.083984px;}
.h15_c01138{height:43.839844px;}
.h1d_c01138{height:46.933594px;}
.h1b_c01138{height:55.933594px;}
.h18_c01138{height:57.445312px;}
.h19_c01138{height:58.957031px;}
.h1e_c01138{height:71.964844px;}
.hb_c01138{height:74.227043px;}
.h20_c01138{height:74.307495px;}
.h23_c01138{height:75.043213px;}
.h9_c01138{height:75.778931px;}
.hd_c01138{height:77.085938px;}
.h5_c01138{height:77.288818px;}
.h1a_c01138{height:77.853516px;}
.h8_c01138{height:77.986084px;}
.h11_c01138{height:78.024902px;}
.hc_c01138{height:78.568359px;}
.h7_c01138{height:78.721802px;}
.h6_c01138{height:78.760986px;}
.h1_c01138{height:79.365234px;}
.h4_c01138{height:80.876953px;}
.h10_c01138{height:80.928955px;}
.h26_c01138{height:81.632812px;}
.ha_c01138{height:82.274414px;}
.h2_c01138{height:82.388672px;}
.h1c_c01138{height:82.916016px;}
.h3_c01138{height:83.144531px;}
.he_c01138{height:83.756836px;}
.hf_c01138{height:83.900391px;}
.h22_c01138{height:84.656250px;}
.h21_c01138{height:86.167969px;}
.h1f_c01138{height:86.721680px;}
.h25_c01138{height:89.956055px;}
.h24_c01138{height:105.600586px;}
.h0_c01138{height:1263.000000px;}
.w0_c01138{width:892.500000px;}
.x0_c01138{left:0.000000px;}
.x12_c01138{left:141.838950px;}
.x1_c01138{left:142.918350px;}
.x6_c01138{left:144.000435px;}
.xa_c01138{left:165.958350px;}
.x2d_c01138{left:175.318800px;}
.x21_c01138{left:180.719100px;}
.xb_c01138{left:192.599100px;}
.x39_c01138{left:198.358635px;}
.x13_c01138{left:206.998950px;}
.x3a_c01138{left:209.159385px;}
.x29_c01138{left:222.118785px;}
.x14_c01138{left:230.399850px;}
.xc_c01138{left:233.998950px;}
.x2_c01138{left:236.159385px;}
.x2b_c01138{left:244.799535px;}
.x22_c01138{left:273.958350px;}
.x2c_c01138{left:279.719535px;}
.x7_c01138{left:282.598500px;}
.x35_c01138{left:292.319850px;}
.x8_c01138{left:296.639100px;}
.xf_c01138{left:305.279250px;}
.xd_c01138{left:312.120000px;}
.x3d_c01138{left:313.558635px;}
.x3_c01138{left:314.998950px;}
.x1b_c01138{left:318.238785px;}
.x23_c01138{left:334.798950px;}
.x4_c01138{left:336.598530px;}
.x10_c01138{left:337.679700px;}
.x3e_c01138{left:343.080000px;}
.x1c_c01138{left:344.159385px;}
.x32_c01138{left:358.199850px;}
.x24_c01138{left:359.999385px;}
.xe_c01138{left:361.439685px;}
.x11_c01138{left:367.558635px;}
.x5_c01138{left:369.719100px;}
.x1d_c01138{left:375.478635px;}
.x33_c01138{left:377.639100px;}
.x36_c01138{left:392.759085px;}
.x37_c01138{left:406.438665px;}
.x19_c01138{left:410.398635px;}
.x1a_c01138{left:435.958335px;}
.x2e_c01138{left:447.838530px;}
.x15_c01138{left:450.359850px;}
.x1e_c01138{left:453.599670px;}
.x3b_c01138{left:463.319235px;}
.x3c_c01138{left:470.878320px;}
.x16_c01138{left:472.679670px;}
.x2f_c01138{left:478.798515px;}
.x30_c01138{left:550.439670px;}
.x34_c01138{left:561.238770px;}
.x1f_c01138{left:577.078770px;}
.x31_c01138{left:582.838530px;}
.x25_c01138{left:601.559100px;}
.x27_c01138{left:605.878320px;}
.x20_c01138{left:610.199385px;}
.x17_c01138{left:611.998950px;}
.x26_c01138{left:616.679070px;}
.x18_c01138{left:635.038920px;}
.x28_c01138{left:638.278800px;}
.x38_c01138{left:643.679070px;}
.x9_c01138{left:656.279250px;}
.x2a_c01138{left:745.919535px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls11_c01138{letter-spacing:-20.313740pt;}
.ls2b_c01138{letter-spacing:-18.391620pt;}
.ls2d_c01138{letter-spacing:-15.202267pt;}
.ls14_c01138{letter-spacing:-10.200887pt;}
.ls13_c01138{letter-spacing:-7.550400pt;}
.ls1e_c01138{letter-spacing:-7.204667pt;}
.ls33_c01138{letter-spacing:-6.797700pt;}
.ls29_c01138{letter-spacing:-6.484200pt;}
.lsc_c01138{letter-spacing:-5.439000pt;}
.ls1f_c01138{letter-spacing:-5.378800pt;}
.ls18_c01138{letter-spacing:-4.314200pt;}
.ls2e_c01138{letter-spacing:-4.081000pt;}
.ls1c_c01138{letter-spacing:-4.035067pt;}
.ls2c_c01138{letter-spacing:-3.394300pt;}
.ls19_c01138{letter-spacing:-2.882580pt;}
.ls2a_c01138{letter-spacing:-2.772000pt;}
.lsd_c01138{letter-spacing:-2.716000pt;}
.ls10_c01138{letter-spacing:-2.664267pt;}
.ls1a_c01138{letter-spacing:-2.161400pt;}
.ls4_c01138{letter-spacing:-2.078300pt;}
.ls2f_c01138{letter-spacing:-2.059727pt;}
.lsa_c01138{letter-spacing:-2.037000pt;}
.ls34_c01138{letter-spacing:-1.943333pt;}
.lse_c01138{letter-spacing:-1.440933pt;}
.ls5_c01138{letter-spacing:-1.424993pt;}
.ls15_c01138{letter-spacing:-1.386700pt;}
.ls8_c01138{letter-spacing:-1.357300pt;}
.ls17_c01138{letter-spacing:-0.720467pt;}
.ls35_c01138{letter-spacing:-0.719280pt;}
.ls30_c01138{letter-spacing:-0.714820pt;}
.lsf_c01138{letter-spacing:-0.705960pt;}
.ls9_c01138{letter-spacing:-0.679000pt;}
.ls28_c01138{letter-spacing:-0.600667pt;}
.lsb_c01138{letter-spacing:0.000000pt;}
.ls3_c01138{letter-spacing:0.679000pt;}
.ls16_c01138{letter-spacing:0.693000pt;}
.ls0_c01138{letter-spacing:0.720467pt;}
.ls1d_c01138{letter-spacing:1.386700pt;}
.ls1b_c01138{letter-spacing:1.496000pt;}
.ls36_c01138{letter-spacing:2.161400pt;}
.ls6_c01138{letter-spacing:2.177267pt;}
.ls31_c01138{letter-spacing:3.076267pt;}
.ls7_c01138{letter-spacing:3.637287pt;}
.ls12_c01138{letter-spacing:4.656933pt;}
.ls32_c01138{letter-spacing:5.497867pt;}
.ls1_c01138{letter-spacing:5.576200pt;}
.ls22_c01138{letter-spacing:10.278540pt;}
.ls21_c01138{letter-spacing:10.426867pt;}
.ls25_c01138{letter-spacing:12.023200pt;}
.ls2_c01138{letter-spacing:15.934473pt;}
.ls24_c01138{letter-spacing:16.393200pt;}
.ls26_c01138{letter-spacing:19.404700pt;}
.ls23_c01138{letter-spacing:20.519620pt;}
.ls20_c01138{letter-spacing:23.105460pt;}
.ls27_c01138{letter-spacing:24.064307pt;}
.ws0_c01138{word-spacing:0.000000pt;}
._1_c01138{margin-left:-5.789340pt;}
._8_c01138{margin-left:-3.959014pt;}
._0_c01138{margin-left:-3.059231pt;}
._a_c01138{margin-left:-1.469375pt;}
._7_c01138{width:1.239068pt;}
._2_c01138{width:2.768704pt;}
._4_c01138{width:4.332986pt;}
._6_c01138{width:5.915408pt;}
._9_c01138{width:7.618112pt;}
._c_c01138{width:9.578409pt;}
._3_c01138{width:10.626995pt;}
._10_c01138{width:11.536387pt;}
._d_c01138{width:12.956742pt;}
._f_c01138{width:14.437636pt;}
._b_c01138{width:16.606779pt;}
._5_c01138{width:17.765647pt;}
._13_c01138{width:19.553916pt;}
._12_c01138{width:24.435718pt;}
._11_c01138{width:25.437668pt;}
._e_c01138{width:32.435180pt;}
.fsa_c01138{font-size:32.666667pt;}
.fsb_c01138{font-size:34.000000pt;}
.fsc_c01138{font-size:35.333333pt;}
.fse_c01138{font-size:38.000000pt;}
.fsd_c01138{font-size:38.666667pt;}
.fs12_c01138{font-size:40.000000pt;}
.fs11_c01138{font-size:49.333333pt;}
.fsf_c01138{font-size:50.666667pt;}
.fs10_c01138{font-size:52.000000pt;}
.fs13_c01138{font-size:61.333333pt;}
.fs7_c01138{font-size:63.261333pt;}
.fs15_c01138{font-size:67.333333pt;}
.fs18_c01138{font-size:68.000000pt;}
.fs5_c01138{font-size:68.666667pt;}
.fs8_c01138{font-size:69.333333pt;}
.fs0_c01138{font-size:70.000000pt;}
.fs4_c01138{font-size:70.666667pt;}
.fs3_c01138{font-size:71.333333pt;}
.fs1b_c01138{font-size:72.000000pt;}
.fs1_c01138{font-size:72.666667pt;}
.fs2_c01138{font-size:73.333333pt;}
.fs6_c01138{font-size:74.000000pt;}
.fs17_c01138{font-size:74.666667pt;}
.fs9_c01138{font-size:75.333333pt;}
.fs16_c01138{font-size:76.000000pt;}
.fs1a_c01138{font-size:76.666667pt;}
.fs14_c01138{font-size:78.000000pt;}
.fs19_c01138{font-size:90.000000pt;}
.y0_c01138{bottom:0.000000pt;}
.y1f_c01138{bottom:211.199733pt;}
.y1e_c01138{bottom:237.439613pt;}
.y1d_c01138{bottom:263.679200pt;}
.y1c_c01138{bottom:316.798787pt;}
.y1b_c01138{bottom:316.798813pt;}
.y19_c01138{bottom:343.039280pt;}
.y1a_c01138{bottom:343.040000pt;}
.y18_c01138{bottom:369.599040pt;}
.y17_c01138{bottom:369.599960pt;}
.y16_c01138{bottom:396.159707pt;}
.y15_c01138{bottom:449.600133pt;}
.y14_c01138{bottom:476.479987pt;}
.y12_c01138{bottom:503.359147pt;}
.y13_c01138{bottom:503.359867pt;}
.y11_c01138{bottom:529.918907pt;}
.y10_c01138{bottom:582.079067pt;}
.yf_c01138{bottom:607.999253pt;}
.ye_c01138{bottom:634.879307pt;}
.yd_c01138{bottom:662.080120pt;}
.yc_c01138{bottom:668.479987pt;}
.yb_c01138{bottom:715.839840pt;}
.ya_c01138{bottom:741.439453pt;}
.y9_c01138{bottom:768.319333pt;}
.y8_c01138{bottom:821.119547pt;}
.y7_c01138{bottom:847.680093pt;}
.y6_c01138{bottom:874.559973pt;}
.y5_c01138{bottom:927.358893pt;}
.y4_c01138{bottom:953.919440pt;}
.y2_c01138{bottom:980.799280pt;}
.y3_c01138{bottom:980.799320pt;}
.y1_c01138{bottom:1007.679200pt;}
.h12_c01138{height:32.921875pt;}
.h13_c01138{height:34.265625pt;}
.h16_c01138{height:35.460938pt;}
.h14_c01138{height:35.609375pt;}
.h17_c01138{height:38.296875pt;}
.h15_c01138{height:38.968750pt;}
.h1d_c01138{height:41.718750pt;}
.h1b_c01138{height:49.718750pt;}
.h18_c01138{height:51.062500pt;}
.h19_c01138{height:52.406250pt;}
.h1e_c01138{height:63.968750pt;}
.hb_c01138{height:65.979594pt;}
.h20_c01138{height:66.051107pt;}
.h23_c01138{height:66.705078pt;}
.h9_c01138{height:67.359049pt;}
.hd_c01138{height:68.520833pt;}
.h5_c01138{height:68.701172pt;}
.h1a_c01138{height:69.203125pt;}
.h8_c01138{height:69.320964pt;}
.h11_c01138{height:69.355469pt;}
.hc_c01138{height:69.838542pt;}
.h7_c01138{height:69.974935pt;}
.h6_c01138{height:70.009766pt;}
.h1_c01138{height:70.546875pt;}
.h4_c01138{height:71.890625pt;}
.h10_c01138{height:71.936849pt;}
.h26_c01138{height:72.562500pt;}
.ha_c01138{height:73.132813pt;}
.h2_c01138{height:73.234375pt;}
.h1c_c01138{height:73.703125pt;}
.h3_c01138{height:73.906250pt;}
.he_c01138{height:74.450521pt;}
.hf_c01138{height:74.578125pt;}
.h22_c01138{height:75.250000pt;}
.h21_c01138{height:76.593750pt;}
.h1f_c01138{height:77.085938pt;}
.h25_c01138{height:79.960938pt;}
.h24_c01138{height:93.867188pt;}
.h0_c01138{height:1122.666667pt;}
.w0_c01138{width:793.333333pt;}
.x0_c01138{left:0.000000pt;}
.x12_c01138{left:126.079067pt;}
.x1_c01138{left:127.038533pt;}
.x6_c01138{left:128.000387pt;}
.xa_c01138{left:147.518533pt;}
.x2d_c01138{left:155.838933pt;}
.x21_c01138{left:160.639200pt;}
.xb_c01138{left:171.199200pt;}
.x39_c01138{left:176.318787pt;}
.x13_c01138{left:183.999067pt;}
.x3a_c01138{left:185.919453pt;}
.x29_c01138{left:197.438920pt;}
.x14_c01138{left:204.799867pt;}
.xc_c01138{left:207.999067pt;}
.x2_c01138{left:209.919453pt;}
.x2b_c01138{left:217.599587pt;}
.x22_c01138{left:243.518533pt;}
.x2c_c01138{left:248.639587pt;}
.x7_c01138{left:251.198667pt;}
.x35_c01138{left:259.839867pt;}
.x8_c01138{left:263.679200pt;}
.xf_c01138{left:271.359333pt;}
.xd_c01138{left:277.440000pt;}
.x3d_c01138{left:278.718787pt;}
.x3_c01138{left:279.999067pt;}
.x1b_c01138{left:282.878920pt;}
.x23_c01138{left:297.599067pt;}
.x4_c01138{left:299.198693pt;}
.x10_c01138{left:300.159733pt;}
.x3e_c01138{left:304.960000pt;}
.x1c_c01138{left:305.919453pt;}
.x32_c01138{left:318.399867pt;}
.x24_c01138{left:319.999453pt;}
.xe_c01138{left:321.279720pt;}
.x11_c01138{left:326.718787pt;}
.x5_c01138{left:328.639200pt;}
.x1d_c01138{left:333.758787pt;}
.x33_c01138{left:335.679200pt;}
.x36_c01138{left:349.119187pt;}
.x37_c01138{left:361.278813pt;}
.x19_c01138{left:364.798787pt;}
.x1a_c01138{left:387.518520pt;}
.x2e_c01138{left:398.078693pt;}
.x15_c01138{left:400.319867pt;}
.x1e_c01138{left:403.199707pt;}
.x3b_c01138{left:411.839320pt;}
.x3c_c01138{left:418.558507pt;}
.x16_c01138{left:420.159707pt;}
.x2f_c01138{left:425.598680pt;}
.x30_c01138{left:489.279707pt;}
.x34_c01138{left:498.878907pt;}
.x1f_c01138{left:512.958907pt;}
.x31_c01138{left:518.078693pt;}
.x25_c01138{left:534.719200pt;}
.x27_c01138{left:538.558507pt;}
.x20_c01138{left:542.399453pt;}
.x17_c01138{left:543.999067pt;}
.x26_c01138{left:548.159173pt;}
.x18_c01138{left:564.479040pt;}
.x28_c01138{left:567.358933pt;}
.x38_c01138{left:572.159173pt;}
.x9_c01138{left:583.359333pt;}
.x2a_c01138{left:663.039587pt;}
}





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

.ir_c01139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_1740c6cea179dfdb70c2331a.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01139;src:url('chunks/assets/font_5c45de9751f2d6d06b75da4e.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01139;src:url('chunks/assets/font_9dd114edef6a08c1abef2ccf.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01139;src:url('chunks/assets/font_aa4032e1028554df1c2eaaea.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01139;src:url('chunks/assets/font_b1e01d63bf224e5243d71158.woff2')format("woff");}.ff5_c01139{font-family:ff5_c01139;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01139;src:url('chunks/assets/font_8a739ae1b35685b54b2af6bc.woff2')format("woff");}.ff6_c01139{font-family:ff6_c01139;line-height:1.432129;font-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_c01139{transform:matrix(0.185096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185096,0.000000,0.000000,0.250000,0,0);}
.m11_c01139{transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188034,0.000000,0.000000,0.250000,0,0);}
.m7_c01139{transform:matrix(0.189904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189904,0.000000,0.000000,0.250000,0,0);}
.m2_c01139{transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197727,0.000000,0.000000,0.250000,0,0);}
.mb_c01139{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.mf_c01139{transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230198,0.000000,0.000000,0.250000,0,0);}
.m14_c01139{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m10_c01139{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m4_c01139{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m15_c01139{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m1_c01139{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m5_c01139{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m13_c01139{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m8_c01139{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.ma_c01139{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.mc_c01139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01139{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m6_c01139{transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257009,0.000000,0.000000,0.250000,0,0);}
.me_c01139{transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263672,0.000000,0.000000,0.250000,0,0);}
.m9_c01139{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.md_c01139{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m12_c01139{transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.ls15_c01139{letter-spacing:-19.502018px;}
.lse_c01139{letter-spacing:-8.175038px;}
.ls18_c01139{letter-spacing:-7.258950px;}
.ls11_c01139{letter-spacing:-6.797175px;}
.lsa_c01139{letter-spacing:-6.685875px;}
.ls19_c01139{letter-spacing:-5.945625px;}
.ls3_c01139{letter-spacing:-5.196713px;}
.ls1a_c01139{letter-spacing:-4.983323px;}
.ls1e_c01139{letter-spacing:-4.852425px;}
.ls1c_c01139{letter-spacing:-4.456463px;}
.ls16_c01139{letter-spacing:-4.012500px;}
.lsb_c01139{letter-spacing:-3.891323px;}
.ls10_c01139{letter-spacing:-3.858600px;}
.ls9_c01139{letter-spacing:-3.717000px;}
.lsc_c01139{letter-spacing:-3.651375px;}
.ls12_c01139{letter-spacing:-3.060750px;}
.ls4_c01139{letter-spacing:-2.968875px;}
.ls5_c01139{letter-spacing:-2.407500px;}
.ls1d_c01139{letter-spacing:-2.315250px;}
.ls17_c01139{letter-spacing:-2.250645px;}
.ls1_c01139{letter-spacing:-2.229413px;}
.ls7_c01139{letter-spacing:-1.605000px;}
.ls2_c01139{letter-spacing:-1.489163px;}
.ls1f_c01139{letter-spacing:-0.802950px;}
.ls8_c01139{letter-spacing:-0.801698px;}
.lsd_c01139{letter-spacing:-0.740250px;}
.ls6_c01139{letter-spacing:0.000000px;}
.ls0_c01139{letter-spacing:0.740250px;}
.ls13_c01139{letter-spacing:1.605000px;}
.lsf_c01139{letter-spacing:1.973400px;}
.ls1b_c01139{letter-spacing:2.968875px;}
.ls14_c01139{letter-spacing:9.975600px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01139{word-spacing:0.000000px;}
._19_c01139{margin-left:-14.789547px;}
._13_c01139{margin-left:-6.220262px;}
._e_c01139{margin-left:-4.596429px;}
._16_c01139{margin-left:-1.157803px;}
._14_c01139{width:1.007614px;}
._c_c01139{width:2.050249px;}
._d_c01139{width:4.068062px;}
._8_c01139{width:5.599749px;}
._0_c01139{width:7.446021px;}
._10_c01139{width:9.077483px;}
._a_c01139{width:10.329519px;}
._f_c01139{width:11.650691px;}
._9_c01139{width:12.875476px;}
._5_c01139{width:14.099476px;}
._b_c01139{width:16.252603px;}
._12_c01139{width:19.608423px;}
._17_c01139{width:20.743196px;}
._7_c01139{width:22.064609px;}
._4_c01139{width:24.628532px;}
._2_c01139{width:25.776043px;}
._18_c01139{width:27.893874px;}
._3_c01139{width:29.532257px;}
._6_c01139{width:32.565322px;}
._1_c01139{width:34.670505px;}
._11_c01139{width:39.372860px;}
._15_c01139{width:42.352404px;}
._1a_c01139{width:47.199362px;}
.fc0_c01139{color:transparent;}
.fsd_c01139{font-size:16.500000px;}
.fs8_c01139{font-size:72.000000px;}
.fsf_c01139{font-size:72.750000px;}
.fse_c01139{font-size:75.000000px;}
.fsa_c01139{font-size:75.750000px;}
.fs6_c01139{font-size:76.500000px;}
.fs3_c01139{font-size:78.000000px;}
.fs0_c01139{font-size:78.750000px;}
.fs5_c01139{font-size:79.500000px;}
.fs1_c01139{font-size:80.250000px;}
.fs4_c01139{font-size:81.750000px;}
.fs2_c01139{font-size:82.500000px;}
.fsb_c01139{font-size:85.500000px;}
.fsc_c01139{font-size:87.750000px;}
.fs7_c01139{font-size:89.250000px;}
.fs9_c01139{font-size:96.000000px;}
.y0_c01139{bottom:0.000000px;}
.y21_c01139{bottom:179.640675px;}
.y20_c01139{bottom:209.520405px;}
.y1f_c01139{bottom:269.279850px;}
.y1e_c01139{bottom:299.158785px;}
.y1d_c01139{bottom:329.039385px;}
.y1c_c01139{bottom:388.439715px;}
.y1b_c01139{bottom:415.439670px;}
.y19_c01139{bottom:448.198560px;}
.y1a_c01139{bottom:448.199385px;}
.y18_c01139{bottom:478.438470px;}
.y17_c01139{bottom:537.839535px;}
.y16_c01139{bottom:568.079400px;}
.y15_c01139{bottom:568.079550px;}
.y14_c01139{bottom:597.599070px;}
.y13_c01139{bottom:597.599880px;}
.y12_c01139{bottom:657.719520px;}
.y11_c01139{bottom:687.240345px;}
.y10_c01139{bottom:717.120075px;}
.yf_c01139{bottom:776.879520px;}
.ye_c01139{bottom:807.478635px;}
.yd_c01139{bottom:837.359250px;}
.yc_c01139{bottom:837.359325px;}
.yb_c01139{bottom:897.118770px;}
.y9_c01139{bottom:926.639925px;}
.ya_c01139{bottom:926.640105px;}
.y8_c01139{bottom:956.519070px;}
.y7_c01139{bottom:956.519115px;}
.y6_c01139{bottom:986.759040px;}
.y5_c01139{bottom:986.759880px;}
.y4_c01139{bottom:1046.879520px;}
.y3_c01139{bottom:1076.039985px;}
.y2_c01139{bottom:1106.639100px;}
.y1_c01139{bottom:1136.519715px;}
.h11_c01139{height:17.208984px;}
.h13_c01139{height:73.608398px;}
.he_c01139{height:74.307495px;}
.ha_c01139{height:75.043213px;}
.hc_c01139{height:75.093750px;}
.h14_c01139{height:75.875977px;}
.h4_c01139{height:76.514648px;}
.h5_c01139{height:76.552734px;}
.h1_c01139{height:77.288818px;}
.h9_c01139{height:78.024902px;}
.h2_c01139{height:78.721802px;}
.h7_c01139{height:78.760986px;}
.h12_c01139{height:79.365234px;}
.h8_c01139{height:80.233154px;}
.h6_c01139{height:80.876953px;}
.h3_c01139{height:80.928955px;}
.hf_c01139{height:83.913574px;}
.h10_c01139{height:86.721680px;}
.hb_c01139{height:88.204102px;}
.hd_c01139{height:100.125000px;}
.h0_c01139{height:1263.000000px;}
.w0_c01139{width:892.500000px;}
.x0_c01139{left:0.000000px;}
.xc_c01139{left:134.639790px;}
.x19_c01139{left:136.079400px;}
.xe_c01139{left:137.878275px;}
.x1_c01139{left:139.678500px;}
.x11_c01139{left:171.719565px;}
.xf_c01139{left:199.078785px;}
.x1a_c01139{left:214.918950px;}
.x10_c01139{left:231.838515px;}
.x15_c01139{left:248.039385px;}
.x1b_c01139{left:253.439685px;}
.x21_c01139{left:263.879535px;}
.x28_c01139{left:282.239250px;}
.xd_c01139{left:297.359250px;}
.x16_c01139{left:299.158785px;}
.x12_c01139{left:307.798950px;}
.x1c_c01139{left:316.798515px;}
.x22_c01139{left:321.119385px;}
.x1e_c01139{left:325.799535px;}
.x5_c01139{left:338.399850px;}
.x25_c01139{left:343.080000px;}
.x1d_c01139{left:346.679100px;}
.x1f_c01139{left:349.559685px;}
.x6_c01139{left:353.519685px;}
.x24_c01139{left:357.118785px;}
.x23_c01139{left:359.999385px;}
.x17_c01139{left:367.199385px;}
.x13_c01139{left:377.639100px;}
.x26_c01139{left:385.199850px;}
.x14_c01139{left:398.159415px;}
.x27_c01139{left:428.399235px;}
.x7_c01139{left:472.318770px;}
.x2_c01139{left:476.278800px;}
.x3_c01139{left:495.719565px;}
.x8_c01139{left:561.238770px;}
.x9_c01139{left:598.678530px;}
.x18_c01139{left:609.838530px;}
.xa_c01139{left:632.878320px;}
.xb_c01139{left:651.239820px;}
.x20_c01139{left:741.598530px;}
.x4_c01139{left:768.598575px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls15_c01139{letter-spacing:-17.335127pt;}
.lse_c01139{letter-spacing:-7.266700pt;}
.ls18_c01139{letter-spacing:-6.452400pt;}
.ls11_c01139{letter-spacing:-6.041933pt;}
.lsa_c01139{letter-spacing:-5.943000pt;}
.ls19_c01139{letter-spacing:-5.285000pt;}
.ls3_c01139{letter-spacing:-4.619300pt;}
.ls1a_c01139{letter-spacing:-4.429620pt;}
.ls1e_c01139{letter-spacing:-4.313267pt;}
.ls1c_c01139{letter-spacing:-3.961300pt;}
.ls16_c01139{letter-spacing:-3.566667pt;}
.lsb_c01139{letter-spacing:-3.458953pt;}
.ls10_c01139{letter-spacing:-3.429867pt;}
.ls9_c01139{letter-spacing:-3.304000pt;}
.lsc_c01139{letter-spacing:-3.245667pt;}
.ls12_c01139{letter-spacing:-2.720667pt;}
.ls4_c01139{letter-spacing:-2.639000pt;}
.ls5_c01139{letter-spacing:-2.140000pt;}
.ls1d_c01139{letter-spacing:-2.058000pt;}
.ls17_c01139{letter-spacing:-2.000573pt;}
.ls1_c01139{letter-spacing:-1.981700pt;}
.ls7_c01139{letter-spacing:-1.426667pt;}
.ls2_c01139{letter-spacing:-1.323700pt;}
.ls1f_c01139{letter-spacing:-0.713733pt;}
.ls8_c01139{letter-spacing:-0.712620pt;}
.lsd_c01139{letter-spacing:-0.658000pt;}
.ls6_c01139{letter-spacing:0.000000pt;}
.ls0_c01139{letter-spacing:0.658000pt;}
.ls13_c01139{letter-spacing:1.426667pt;}
.lsf_c01139{letter-spacing:1.754133pt;}
.ls1b_c01139{letter-spacing:2.639000pt;}
.ls14_c01139{letter-spacing:8.867200pt;}
.ws0_c01139{word-spacing:0.000000pt;}
._19_c01139{margin-left:-13.146264pt;}
._13_c01139{margin-left:-5.529122pt;}
._e_c01139{margin-left:-4.085715pt;}
._16_c01139{margin-left:-1.029158pt;}
._14_c01139{width:0.895657pt;}
._c_c01139{width:1.822443pt;}
._d_c01139{width:3.616055pt;}
._8_c01139{width:4.977555pt;}
._0_c01139{width:6.618685pt;}
._10_c01139{width:8.068874pt;}
._a_c01139{width:9.181794pt;}
._f_c01139{width:10.356170pt;}
._9_c01139{width:11.444868pt;}
._5_c01139{width:12.532867pt;}
._b_c01139{width:14.446758pt;}
._12_c01139{width:17.429709pt;}
._17_c01139{width:18.438396pt;}
._7_c01139{width:19.612986pt;}
._4_c01139{width:21.892029pt;}
._2_c01139{width:22.912038pt;}
._18_c01139{width:24.794555pt;}
._3_c01139{width:26.250895pt;}
._6_c01139{width:28.946953pt;}
._1_c01139{width:30.818226pt;}
._11_c01139{width:34.998098pt;}
._15_c01139{width:37.646581pt;}
._1a_c01139{width:41.954989pt;}
.fsd_c01139{font-size:14.666667pt;}
.fs8_c01139{font-size:64.000000pt;}
.fsf_c01139{font-size:64.666667pt;}
.fse_c01139{font-size:66.666667pt;}
.fsa_c01139{font-size:67.333333pt;}
.fs6_c01139{font-size:68.000000pt;}
.fs3_c01139{font-size:69.333333pt;}
.fs0_c01139{font-size:70.000000pt;}
.fs5_c01139{font-size:70.666667pt;}
.fs1_c01139{font-size:71.333333pt;}
.fs4_c01139{font-size:72.666667pt;}
.fs2_c01139{font-size:73.333333pt;}
.fsb_c01139{font-size:76.000000pt;}
.fsc_c01139{font-size:78.000000pt;}
.fs7_c01139{font-size:79.333333pt;}
.fs9_c01139{font-size:85.333333pt;}
.y0_c01139{bottom:0.000000pt;}
.y21_c01139{bottom:159.680600pt;}
.y20_c01139{bottom:186.240360pt;}
.y1f_c01139{bottom:239.359867pt;}
.y1e_c01139{bottom:265.918920pt;}
.y1d_c01139{bottom:292.479453pt;}
.y1c_c01139{bottom:345.279747pt;}
.y1b_c01139{bottom:369.279707pt;}
.y19_c01139{bottom:398.398720pt;}
.y1a_c01139{bottom:398.399453pt;}
.y18_c01139{bottom:425.278640pt;}
.y17_c01139{bottom:478.079587pt;}
.y16_c01139{bottom:504.959467pt;}
.y15_c01139{bottom:504.959600pt;}
.y14_c01139{bottom:531.199173pt;}
.y13_c01139{bottom:531.199893pt;}
.y12_c01139{bottom:584.639573pt;}
.y11_c01139{bottom:610.880307pt;}
.y10_c01139{bottom:637.440067pt;}
.yf_c01139{bottom:690.559573pt;}
.ye_c01139{bottom:717.758787pt;}
.yd_c01139{bottom:744.319333pt;}
.yc_c01139{bottom:744.319400pt;}
.yb_c01139{bottom:797.438907pt;}
.y9_c01139{bottom:823.679933pt;}
.ya_c01139{bottom:823.680093pt;}
.y8_c01139{bottom:850.239173pt;}
.y7_c01139{bottom:850.239213pt;}
.y6_c01139{bottom:877.119147pt;}
.y5_c01139{bottom:877.119893pt;}
.y4_c01139{bottom:930.559573pt;}
.y3_c01139{bottom:956.479987pt;}
.y2_c01139{bottom:983.679200pt;}
.y1_c01139{bottom:1010.239747pt;}
.h11_c01139{height:15.296875pt;}
.h13_c01139{height:65.429688pt;}
.he_c01139{height:66.051107pt;}
.ha_c01139{height:66.705078pt;}
.hc_c01139{height:66.750000pt;}
.h14_c01139{height:67.445312pt;}
.h4_c01139{height:68.013021pt;}
.h5_c01139{height:68.046875pt;}
.h1_c01139{height:68.701172pt;}
.h9_c01139{height:69.355469pt;}
.h2_c01139{height:69.974935pt;}
.h7_c01139{height:70.009766pt;}
.h12_c01139{height:70.546875pt;}
.h8_c01139{height:71.318359pt;}
.h6_c01139{height:71.890625pt;}
.h3_c01139{height:71.936849pt;}
.hf_c01139{height:74.589844pt;}
.h10_c01139{height:77.085938pt;}
.hb_c01139{height:78.403646pt;}
.hd_c01139{height:89.000000pt;}
.h0_c01139{height:1122.666667pt;}
.w0_c01139{width:793.333333pt;}
.x0_c01139{left:0.000000pt;}
.xc_c01139{left:119.679813pt;}
.x19_c01139{left:120.959467pt;}
.xe_c01139{left:122.558467pt;}
.x1_c01139{left:124.158667pt;}
.x11_c01139{left:152.639613pt;}
.xf_c01139{left:176.958920pt;}
.x1a_c01139{left:191.039067pt;}
.x10_c01139{left:206.078680pt;}
.x15_c01139{left:220.479453pt;}
.x1b_c01139{left:225.279720pt;}
.x21_c01139{left:234.559587pt;}
.x28_c01139{left:250.879333pt;}
.xd_c01139{left:264.319333pt;}
.x16_c01139{left:265.918920pt;}
.x12_c01139{left:273.599067pt;}
.x1c_c01139{left:281.598680pt;}
.x22_c01139{left:285.439453pt;}
.x1e_c01139{left:289.599587pt;}
.x5_c01139{left:300.799867pt;}
.x25_c01139{left:304.960000pt;}
.x1d_c01139{left:308.159200pt;}
.x1f_c01139{left:310.719720pt;}
.x6_c01139{left:314.239720pt;}
.x24_c01139{left:317.438920pt;}
.x23_c01139{left:319.999453pt;}
.x17_c01139{left:326.399453pt;}
.x13_c01139{left:335.679200pt;}
.x26_c01139{left:342.399867pt;}
.x14_c01139{left:353.919480pt;}
.x27_c01139{left:380.799320pt;}
.x7_c01139{left:419.838907pt;}
.x2_c01139{left:423.358933pt;}
.x3_c01139{left:440.639613pt;}
.x8_c01139{left:498.878907pt;}
.x9_c01139{left:532.158693pt;}
.x18_c01139{left:542.078693pt;}
.xa_c01139{left:562.558507pt;}
.xb_c01139{left:578.879840pt;}
.x20_c01139{left:659.198693pt;}
.x4_c01139{left:683.198733pt;}
}





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

.ir_c01140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_22430057a1299f4bde6d1687.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01140;src:url('chunks/assets/font_76fa0a28612159c72e9c44c0.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01140;src:url('chunks/assets/font_0baf472cb747cd27893f9070.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01140;src:url('chunks/assets/font_7dfedb055f89050a0422ad43.woff2')format("woff");}.ff4_c01140{font-family:ff4_c01140;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01140;src:url('chunks/assets/font_889f858414b8e6ba9eee021a.woff2')format("woff");}.ff5_c01140{font-family:ff5_c01140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01140;src:url('chunks/assets/font_171d6f59a50f34755c92cb12.woff2')format("woff");}.ff6_c01140{font-family:ff6_c01140;line-height:1.432129;font-style:normal;font-weight: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_c01140;src:url('chunks/assets/font_a9c848129019b07c67d30a46.woff2')format("woff");}.ff7_c01140{font-family:ff7_c01140;line-height:1.432129;font-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_c01140{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);}
.m4_c01140{transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169118,0.000000,0.000000,0.250000,0,0);}
.m1f_c01140{transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215217,0.000000,0.000000,0.250000,0,0);}
.ma_c01140{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.mb_c01140{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1b_c01140{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m17_c01140{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2_c01140{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m3_c01140{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1_c01140{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.mc_c01140{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m1a_c01140{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m5_c01140{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m16_c01140{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m18_c01140{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m9_c01140{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m0_c01140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01140{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1c_c01140{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.me_c01140{transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);}
.m1d_c01140{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m19_c01140{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_c01140{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m7_c01140{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m12_c01140{transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);}
.m20_c01140{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m21_c01140{transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292553,0.000000,0.000000,0.250000,0,0);}
.m11_c01140{transform:matrix(0.293981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293981,0.000000,0.000000,0.250000,0,0);}
.m10_c01140{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.mf_c01140{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m14_c01140{transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320755,0.000000,0.000000,0.250000,0,0);}
.md_c01140{transform:matrix(0.517857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517857,0.000000,0.000000,0.250000,0,0);}
.m15_c01140{transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638889,0.000000,0.000000,0.250000,0,0);}
.m13_c01140{transform:matrix(1.066667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066667,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls24_c01140{letter-spacing:-26.998200px;}
.ls16_c01140{letter-spacing:-14.629050px;}
.lse_c01140{letter-spacing:-11.139450px;}
.ls21_c01140{letter-spacing:-10.815000px;}
.ls28_c01140{letter-spacing:-9.616200px;}
.ls1b_c01140{letter-spacing:-7.078050px;}
.ls11_c01140{letter-spacing:-6.749550px;}
.ls1a_c01140{letter-spacing:-6.291600px;}
.ls26_c01140{letter-spacing:-6.002250px;}
.ls6_c01140{letter-spacing:-5.246205px;}
.ls25_c01140{letter-spacing:-5.151248px;}
.ls9_c01140{letter-spacing:-4.498905px;}
.ls27_c01140{letter-spacing:-4.336800px;}
.ls1f_c01140{letter-spacing:-4.090275px;}
.ls19_c01140{letter-spacing:-3.932250px;}
.ls0_c01140{letter-spacing:-3.752400px;}
.ls17_c01140{letter-spacing:-3.207600px;}
.ls7_c01140{letter-spacing:-3.179205px;}
.lsa_c01140{letter-spacing:-3.145800px;}
.lsc_c01140{letter-spacing:-3.057525px;}
.ls4_c01140{letter-spacing:-2.997150px;}
.lsd_c01140{letter-spacing:-2.754000px;}
.ls3_c01140{letter-spacing:-2.404890px;}
.ls10_c01140{letter-spacing:-2.359350px;}
.ls8_c01140{letter-spacing:-2.250645px;}
.lsb_c01140{letter-spacing:-2.248125px;}
.ls23_c01140{letter-spacing:-1.693125px;}
.ls1e_c01140{letter-spacing:-1.583213px;}
.ls18_c01140{letter-spacing:-1.573703px;}
.ls1_c01140{letter-spacing:-1.503345px;}
.lsf_c01140{letter-spacing:-0.786450px;}
.ls5_c01140{letter-spacing:-0.747300px;}
.ls1c_c01140{letter-spacing:-0.639900px;}
.ls2_c01140{letter-spacing:0.000000px;}
.ls22_c01140{letter-spacing:0.764775px;}
.ls15_c01140{letter-spacing:1.449000px;}
.ls1d_c01140{letter-spacing:2.674613px;}
.ls20_c01140{letter-spacing:4.150380px;}
.ls14_c01140{letter-spacing:12.299692px;}
.ls13_c01140{letter-spacing:27.430620px;}
.ls12_c01140{letter-spacing:251.618333px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01140{word-spacing:0.000000px;}
._10_c01140{margin-left:-14.973690px;}
._12_c01140{margin-left:-13.191105px;}
._f_c01140{margin-left:-8.737320px;}
._13_c01140{margin-left:-7.269075px;}
._8_c01140{margin-left:-2.692395px;}
._1_c01140{margin-left:-1.284000px;}
._2_c01140{width:1.415520px;}
._11_c01140{width:2.668530px;}
._6_c01140{width:4.446240px;}
._4_c01140{width:5.695095px;}
._e_c01140{width:6.730470px;}
._b_c01140{width:8.583360px;}
._9_c01140{width:10.585230px;}
._5_c01140{width:11.694900px;}
._0_c01140{width:12.767640px;}
._a_c01140{width:15.036420px;}
._d_c01140{width:16.870200px;}
._c_c01140{width:19.111410px;}
._14_c01140{width:31.249287px;}
._7_c01140{width:47.234670px;}
._3_c01140{width:50.302950px;}
.fc0_c01140{color:transparent;}
.fs9_c01140{font-size:30.750000px;}
.fse_c01140{font-size:33.750000px;}
.fs8_c01140{font-size:42.000000px;}
.fs7_c01140{font-size:44.250000px;}
.fs14_c01140{font-size:70.500000px;}
.fs13_c01140{font-size:72.750000px;}
.fs12_c01140{font-size:75.000000px;}
.fs4_c01140{font-size:76.500000px;}
.fs6_c01140{font-size:77.250000px;}
.fs11_c01140{font-size:78.000000px;}
.fs5_c01140{font-size:78.750000px;}
.fs0_c01140{font-size:79.500000px;}
.fs1_c01140{font-size:80.250000px;}
.fs2_c01140{font-size:81.000000px;}
.fs3_c01140{font-size:81.750000px;}
.fsd_c01140{font-size:86.250000px;}
.fsa_c01140{font-size:88.500000px;}
.fs10_c01140{font-size:91.500000px;}
.fsb_c01140{font-size:101.250000px;}
.fsc_c01140{font-size:115.500000px;}
.fsf_c01140{font-size:119.250000px;}
.y0_c01140{bottom:0.000000px;}
.y1e_c01140{bottom:240.841185px;}
.y1c_c01140{bottom:270.719400px;}
.y1d_c01140{bottom:270.720150px;}
.y1b_c01140{bottom:300.239850px;}
.y1a_c01140{bottom:300.239865px;}
.y19_c01140{bottom:359.640150px;}
.y18_c01140{bottom:389.520720px;}
.y17_c01140{bottom:420.119985px;}
.y16_c01140{bottom:431.279850px;}
.y15_c01140{bottom:479.520315px;}
.y14_c01140{bottom:508.680720px;}
.y13_c01140{bottom:539.279850px;}
.y12_c01140{bottom:598.680135px;}
.y11_c01140{bottom:628.200780px;}
.y10_c01140{bottom:658.080900px;}
.yf_c01140{bottom:687.961035px;}
.ye_c01140{bottom:748.440900px;}
.yd_c01140{bottom:754.559685px;}
.yc_c01140{bottom:777.960660px;}
.yb_c01140{bottom:808.200480px;}
.ya_c01140{bottom:868.680090px;}
.y9_c01140{bottom:898.560705px;}
.y7_c01140{bottom:928.439010px;}
.y8_c01140{bottom:928.439670px;}
.y6_c01140{bottom:987.119940px;}
.y5_c01140{bottom:1017.359805px;}
.y3_c01140{bottom:1047.600225px;}
.y4_c01140{bottom:1047.601320px;}
.y2_c01140{bottom:1107.720150px;}
.y1_c01140{bottom:1137.959925px;}
.hc_c01140{height:32.071289px;}
.h13_c01140{height:35.200195px;}
.ha_c01140{height:43.731445px;}
.hb_c01140{height:43.804688px;}
.h1b_c01140{height:73.529297px;}
.h19_c01140{height:73.571777px;}
.h17_c01140{height:73.608398px;}
.h5_c01140{height:75.043213px;}
.h8_c01140{height:75.080566px;}
.h9_c01140{height:75.816650px;}
.h1a_c01140{height:75.875977px;}
.h18_c01140{height:76.552734px;}
.h7_c01140{height:77.288818px;}
.h1_c01140{height:78.024902px;}
.h16_c01140{height:78.609375px;}
.h2_c01140{height:78.721802px;}
.h6_c01140{height:78.760986px;}
.h4_c01140{height:80.233154px;}
.he_c01140{height:80.876953px;}
.h3_c01140{height:81.632812px;}
.h11_c01140{height:84.480469px;}
.hd_c01140{height:87.462891px;}
.h12_c01140{height:89.956055px;}
.h15_c01140{height:90.427734px;}
.hf_c01140{height:105.600586px;}
.h10_c01140{height:120.462891px;}
.h14_c01140{height:124.374023px;}
.h0_c01140{height:1263.000000px;}
.w0_c01140{width:892.500000px;}
.x0_c01140{left:0.000000px;}
.xc_c01140{left:136.438665px;}
.x1_c01140{left:137.519685px;}
.x1d_c01140{left:138.599100px;}
.x15_c01140{left:142.918350px;}
.x16_c01140{left:155.879565px;}
.xd_c01140{left:159.839565px;}
.xe_c01140{left:191.519685px;}
.x1f_c01140{left:214.559685px;}
.x2_c01140{left:233.998950px;}
.x1a_c01140{left:247.678500px;}
.x3_c01140{left:253.798950px;}
.x10_c01140{left:260.278800px;}
.x11_c01140{left:262.439250px;}
.x17_c01140{left:282.959400px;}
.x4_c01140{left:285.120000px;}
.x22_c01140{left:291.238785px;}
.x6_c01140{left:299.878950px;}
.x13_c01140{left:307.798950px;}
.x1e_c01140{left:312.838515px;}
.x12_c01140{left:315.719100px;}
.xf_c01140{left:316.798515px;}
.x23_c01140{left:321.119385px;}
.x18_c01140{left:324.359250px;}
.x14_c01140{left:338.399850px;}
.xb_c01140{left:342.719100px;}
.x24_c01140{left:353.878950px;}
.x5_c01140{left:356.039385px;}
.x7_c01140{left:362.159850px;}
.x19_c01140{left:364.318800px;}
.x25_c01140{left:368.998950px;}
.x8_c01140{left:370.080000px;}
.x26_c01140{left:378.000000px;}
.x9_c01140{left:395.278800px;}
.xa_c01140{left:403.198785px;}
.x1b_c01140{left:426.958920px;}
.x1c_c01140{left:475.919535px;}
.x20_c01140{left:527.759085px;}
.x21_c01140{left:546.479685px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls24_c01140{letter-spacing:-23.998400pt;}
.ls16_c01140{letter-spacing:-13.003600pt;}
.lse_c01140{letter-spacing:-9.901733pt;}
.ls21_c01140{letter-spacing:-9.613333pt;}
.ls28_c01140{letter-spacing:-8.547733pt;}
.ls1b_c01140{letter-spacing:-6.291600pt;}
.ls11_c01140{letter-spacing:-5.999600pt;}
.ls1a_c01140{letter-spacing:-5.592533pt;}
.ls26_c01140{letter-spacing:-5.335333pt;}
.ls6_c01140{letter-spacing:-4.663293pt;}
.ls25_c01140{letter-spacing:-4.578887pt;}
.ls9_c01140{letter-spacing:-3.999027pt;}
.ls27_c01140{letter-spacing:-3.854933pt;}
.ls1f_c01140{letter-spacing:-3.635800pt;}
.ls19_c01140{letter-spacing:-3.495333pt;}
.ls0_c01140{letter-spacing:-3.335467pt;}
.ls17_c01140{letter-spacing:-2.851200pt;}
.ls7_c01140{letter-spacing:-2.825960pt;}
.lsa_c01140{letter-spacing:-2.796267pt;}
.lsc_c01140{letter-spacing:-2.717800pt;}
.ls4_c01140{letter-spacing:-2.664133pt;}
.lsd_c01140{letter-spacing:-2.448000pt;}
.ls3_c01140{letter-spacing:-2.137680pt;}
.ls10_c01140{letter-spacing:-2.097200pt;}
.ls8_c01140{letter-spacing:-2.000573pt;}
.lsb_c01140{letter-spacing:-1.998333pt;}
.ls23_c01140{letter-spacing:-1.505000pt;}
.ls1e_c01140{letter-spacing:-1.407300pt;}
.ls18_c01140{letter-spacing:-1.398847pt;}
.ls1_c01140{letter-spacing:-1.336307pt;}
.lsf_c01140{letter-spacing:-0.699067pt;}
.ls5_c01140{letter-spacing:-0.664267pt;}
.ls1c_c01140{letter-spacing:-0.568800pt;}
.ls2_c01140{letter-spacing:0.000000pt;}
.ls22_c01140{letter-spacing:0.679800pt;}
.ls15_c01140{letter-spacing:1.288000pt;}
.ls1d_c01140{letter-spacing:2.377433pt;}
.ls20_c01140{letter-spacing:3.689227pt;}
.ls14_c01140{letter-spacing:10.933060pt;}
.ls13_c01140{letter-spacing:24.382773pt;}
.ls12_c01140{letter-spacing:223.660740pt;}
.ws0_c01140{word-spacing:0.000000pt;}
._10_c01140{margin-left:-13.309947pt;}
._12_c01140{margin-left:-11.725427pt;}
._f_c01140{margin-left:-7.766507pt;}
._13_c01140{margin-left:-6.461400pt;}
._8_c01140{margin-left:-2.393240pt;}
._1_c01140{margin-left:-1.141333pt;}
._2_c01140{width:1.258240pt;}
._11_c01140{width:2.372027pt;}
._6_c01140{width:3.952213pt;}
._4_c01140{width:5.062307pt;}
._e_c01140{width:5.982640pt;}
._b_c01140{width:7.629653pt;}
._9_c01140{width:9.409093pt;}
._5_c01140{width:10.395467pt;}
._0_c01140{width:11.349013pt;}
._a_c01140{width:13.365707pt;}
._d_c01140{width:14.995733pt;}
._c_c01140{width:16.987920pt;}
._14_c01140{width:27.777144pt;}
._7_c01140{width:41.986373pt;}
._3_c01140{width:44.713733pt;}
.fs9_c01140{font-size:27.333333pt;}
.fse_c01140{font-size:30.000000pt;}
.fs8_c01140{font-size:37.333333pt;}
.fs7_c01140{font-size:39.333333pt;}
.fs14_c01140{font-size:62.666667pt;}
.fs13_c01140{font-size:64.666667pt;}
.fs12_c01140{font-size:66.666667pt;}
.fs4_c01140{font-size:68.000000pt;}
.fs6_c01140{font-size:68.666667pt;}
.fs11_c01140{font-size:69.333333pt;}
.fs5_c01140{font-size:70.000000pt;}
.fs0_c01140{font-size:70.666667pt;}
.fs1_c01140{font-size:71.333333pt;}
.fs2_c01140{font-size:72.000000pt;}
.fs3_c01140{font-size:72.666667pt;}
.fsd_c01140{font-size:76.666667pt;}
.fsa_c01140{font-size:78.666667pt;}
.fs10_c01140{font-size:81.333333pt;}
.fsb_c01140{font-size:90.000000pt;}
.fsc_c01140{font-size:102.666667pt;}
.fsf_c01140{font-size:106.000000pt;}
.y0_c01140{bottom:0.000000pt;}
.y1e_c01140{bottom:214.081053pt;}
.y1c_c01140{bottom:240.639467pt;}
.y1d_c01140{bottom:240.640133pt;}
.y1b_c01140{bottom:266.879867pt;}
.y1a_c01140{bottom:266.879880pt;}
.y19_c01140{bottom:319.680133pt;}
.y18_c01140{bottom:346.240640pt;}
.y17_c01140{bottom:373.439987pt;}
.y16_c01140{bottom:383.359867pt;}
.y15_c01140{bottom:426.240280pt;}
.y14_c01140{bottom:452.160640pt;}
.y13_c01140{bottom:479.359867pt;}
.y12_c01140{bottom:532.160120pt;}
.y11_c01140{bottom:558.400693pt;}
.y10_c01140{bottom:584.960800pt;}
.yf_c01140{bottom:611.520920pt;}
.ye_c01140{bottom:665.280800pt;}
.yd_c01140{bottom:670.719720pt;}
.yc_c01140{bottom:691.520587pt;}
.yb_c01140{bottom:718.400427pt;}
.ya_c01140{bottom:772.160080pt;}
.y9_c01140{bottom:798.720627pt;}
.y7_c01140{bottom:825.279120pt;}
.y8_c01140{bottom:825.279707pt;}
.y6_c01140{bottom:877.439947pt;}
.y5_c01140{bottom:904.319827pt;}
.y3_c01140{bottom:931.200200pt;}
.y4_c01140{bottom:931.201173pt;}
.y2_c01140{bottom:984.640133pt;}
.y1_c01140{bottom:1011.519933pt;}
.hc_c01140{height:28.507812pt;}
.h13_c01140{height:31.289062pt;}
.ha_c01140{height:38.872396pt;}
.hb_c01140{height:38.937500pt;}
.h1b_c01140{height:65.359375pt;}
.h19_c01140{height:65.397135pt;}
.h17_c01140{height:65.429688pt;}
.h5_c01140{height:66.705078pt;}
.h8_c01140{height:66.738281pt;}
.h9_c01140{height:67.392578pt;}
.h1a_c01140{height:67.445312pt;}
.h18_c01140{height:68.046875pt;}
.h7_c01140{height:68.701172pt;}
.h1_c01140{height:69.355469pt;}
.h16_c01140{height:69.875000pt;}
.h2_c01140{height:69.974935pt;}
.h6_c01140{height:70.009766pt;}
.h4_c01140{height:71.318359pt;}
.he_c01140{height:71.890625pt;}
.h3_c01140{height:72.562500pt;}
.h11_c01140{height:75.093750pt;}
.hd_c01140{height:77.744792pt;}
.h12_c01140{height:79.960938pt;}
.h15_c01140{height:80.380208pt;}
.hf_c01140{height:93.867188pt;}
.h10_c01140{height:107.078125pt;}
.h14_c01140{height:110.554688pt;}
.h0_c01140{height:1122.666667pt;}
.w0_c01140{width:793.333333pt;}
.x0_c01140{left:0.000000pt;}
.xc_c01140{left:121.278813pt;}
.x1_c01140{left:122.239720pt;}
.x1d_c01140{left:123.199200pt;}
.x15_c01140{left:127.038533pt;}
.x16_c01140{left:138.559613pt;}
.xd_c01140{left:142.079613pt;}
.xe_c01140{left:170.239720pt;}
.x1f_c01140{left:190.719720pt;}
.x2_c01140{left:207.999067pt;}
.x1a_c01140{left:220.158667pt;}
.x3_c01140{left:225.599067pt;}
.x10_c01140{left:231.358933pt;}
.x11_c01140{left:233.279333pt;}
.x17_c01140{left:251.519467pt;}
.x4_c01140{left:253.440000pt;}
.x22_c01140{left:258.878920pt;}
.x6_c01140{left:266.559067pt;}
.x13_c01140{left:273.599067pt;}
.x1e_c01140{left:278.078680pt;}
.x12_c01140{left:280.639200pt;}
.xf_c01140{left:281.598680pt;}
.x23_c01140{left:285.439453pt;}
.x18_c01140{left:288.319333pt;}
.x14_c01140{left:300.799867pt;}
.xb_c01140{left:304.639200pt;}
.x24_c01140{left:314.559067pt;}
.x5_c01140{left:316.479453pt;}
.x7_c01140{left:321.919867pt;}
.x19_c01140{left:323.838933pt;}
.x25_c01140{left:327.999067pt;}
.x8_c01140{left:328.960000pt;}
.x26_c01140{left:336.000000pt;}
.x9_c01140{left:351.358933pt;}
.xa_c01140{left:358.398920pt;}
.x1b_c01140{left:379.519040pt;}
.x1c_c01140{left:423.039587pt;}
.x20_c01140{left:469.119187pt;}
.x21_c01140{left:485.759720pt;}
}





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

.ir_c01141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_d8139ed1cf489d78599b5911.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01141;src:url('chunks/assets/font_332f4c85194d63efa06d3331.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01141;src:url('chunks/assets/font_6c336208bfaa41103027a420.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01141;src:url('chunks/assets/font_2e2573467c56b503d00496d7.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01141;src:url('chunks/assets/font_fca1a231050ba2b02b82b502.woff2')format("woff");}.ff5_c01141{font-family:ff5_c01141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01141;src:url('chunks/assets/font_b8b1a7595ba676060bac3691.woff2')format("woff");}.ff6_c01141{font-family:ff6_c01141;line-height:1.432129;font-style:normal;font-weight: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_c01141;src:url('chunks/assets/font_cec2f20461ab062fbf10c7e7.woff2')format("woff");}.ff7_c01141{font-family:ff7_c01141;line-height:1.432129;font-style:normal;font-weight: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_c01141;src:url('chunks/assets/font_e671713362574ac8f1f4a2af.woff2')format("woff");}.ff8_c01141{font-family:ff8_c01141;line-height:1.432129;font-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_c01141{transform:matrix(0.158898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158898,0.000000,0.000000,0.250000,0,0);}
.m1b_c01141{transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189130,0.000000,0.000000,0.250000,0,0);}
.m1d_c01141{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m13_c01141{transform:matrix(0.201456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201456,0.000000,0.000000,0.250000,0,0);}
.m14_c01141{transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208738,0.000000,0.000000,0.250000,0,0);}
.md_c01141{transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);}
.m25_c01141{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m11_c01141{transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);}
.m8_c01141{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m3_c01141{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.m23_c01141{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m5_c01141{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.mc_c01141{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m15_c01141{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m28_c01141{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m4_c01141{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m26_c01141{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m20_c01141{transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232456,0.000000,0.000000,0.250000,0,0);}
.m7_c01141{transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234783,0.000000,0.000000,0.250000,0,0);}
.m1_c01141{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m1f_c01141{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m24_c01141{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m17_c01141{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m0_c01141{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m19_c01141{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m1a_c01141{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m9_c01141{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.mf_c01141{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m6_c01141{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.mb_c01141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01141{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m27_c01141{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_c01141{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m18_c01141{transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);}
.m21_c01141{transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324074,0.000000,0.000000,0.250000,0,0);}
.m22_c01141{transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343137,0.000000,0.000000,0.250000,0,0);}
.me_c01141{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);}
.m1c_c01141{transform:matrix(0.524390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524390,0.000000,0.000000,0.250000,0,0);}
.m10_c01141{transform:matrix(0.551724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551724,0.000000,0.000000,0.250000,0,0);}
.ma_c01141{transform:matrix(0.627717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627717,0.000000,0.000000,0.250000,0,0);}
.m1e_c01141{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);}
.v0_c01141{vertical-align:0.000000px;}
.ls27_c01141{letter-spacing:-16.937550px;}
.lsb_c01141{letter-spacing:-15.171375px;}
.ls15_c01141{letter-spacing:-12.201067px;}
.ls29_c01141{letter-spacing:-8.915775px;}
.ls17_c01141{letter-spacing:-8.761500px;}
.ls1e_c01141{letter-spacing:-8.076405px;}
.ls4_c01141{letter-spacing:-6.879600px;}
.ls1b_c01141{letter-spacing:-4.862348px;}
.ls26_c01141{letter-spacing:-4.766025px;}
.ls21_c01141{letter-spacing:-4.460745px;}
.ls12_c01141{letter-spacing:-4.053428px;}
.ls1_c01141{letter-spacing:-3.878100px;}
.ls1a_c01141{letter-spacing:-3.713445px;}
.ls10_c01141{letter-spacing:-3.242903px;}
.ls9_c01141{letter-spacing:-3.031875px;}
.ls3_c01141{letter-spacing:-2.973300px;}
.ls8_c01141{letter-spacing:-2.431575px;}
.lsa_c01141{letter-spacing:-2.267213px;}
.ls20_c01141{letter-spacing:-2.226000px;}
.ls6_c01141{letter-spacing:-1.621050px;}
.lse_c01141{letter-spacing:-1.589753px;}
.ls1f_c01141{letter-spacing:-1.541505px;}
.lsd_c01141{letter-spacing:-1.512000px;}
.ls2c_c01141{letter-spacing:-0.811125px;}
.ls5_c01141{letter-spacing:-0.810525px;}
.ls18_c01141{letter-spacing:-0.794475px;}
.lsc_c01141{letter-spacing:-0.756000px;}
.ls7_c01141{letter-spacing:0.000000px;}
.ls16_c01141{letter-spacing:0.680775px;}
.ls25_c01141{letter-spacing:0.756000px;}
.ls11_c01141{letter-spacing:0.770310px;}
.ls19_c01141{letter-spacing:0.794475px;}
.ls23_c01141{letter-spacing:0.810525px;}
.ls1d_c01141{letter-spacing:0.826800px;}
.ls22_c01141{letter-spacing:1.540800px;}
.ls2_c01141{letter-spacing:1.589753px;}
.ls24_c01141{letter-spacing:1.786883px;}
.ls14_c01141{letter-spacing:2.274300px;}
.ls28_c01141{letter-spacing:2.359350px;}
.lsf_c01141{letter-spacing:2.382623px;}
.ls0_c01141{letter-spacing:2.696025px;}
.ls2b_c01141{letter-spacing:2.940000px;}
.ls2a_c01141{letter-spacing:3.234000px;}
.ls1c_c01141{letter-spacing:4.650450px;}
.ls13_c01141{letter-spacing:7.499700px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01141{word-spacing:0.000000px;}
._f_c01141{margin-left:-23.785865px;}
._e_c01141{margin-left:-17.227505px;}
._10_c01141{margin-left:-9.576793px;}
._12_c01141{margin-left:-4.943011px;}
._c_c01141{margin-left:-3.835496px;}
._d_c01141{margin-left:-2.121651px;}
._4_c01141{width:1.283928px;}
._1_c01141{width:3.146027px;}
._a_c01141{width:4.494505px;}
._9_c01141{width:5.741239px;}
._5_c01141{width:8.193493px;}
._0_c01141{width:9.613820px;}
._2_c01141{width:10.938193px;}
._3_c01141{width:12.990115px;}
._7_c01141{width:15.568078px;}
._8_c01141{width:19.664915px;}
._6_c01141{width:21.476789px;}
._b_c01141{width:23.223815px;}
._11_c01141{width:28.905515px;}
.fc0_c01141{color:transparent;}
.fsf_c01141{font-size:21.750000px;}
.fsd_c01141{font-size:30.000000px;}
.fs14_c01141{font-size:30.750000px;}
.fs13_c01141{font-size:33.000000px;}
.fse_c01141{font-size:45.750000px;}
.fsb_c01141{font-size:54.000000px;}
.fsa_c01141{font-size:58.500000px;}
.fs16_c01141{font-size:60.000000px;}
.fsc_c01141{font-size:60.750000px;}
.fs9_c01141{font-size:69.000000px;}
.fs1c_c01141{font-size:75.000000px;}
.fs19_c01141{font-size:76.500000px;}
.fs12_c01141{font-size:77.250000px;}
.fs7_c01141{font-size:78.000000px;}
.fs5_c01141{font-size:78.750000px;}
.fs2_c01141{font-size:79.500000px;}
.fs1_c01141{font-size:80.250000px;}
.fs8_c01141{font-size:81.000000px;}
.fs17_c01141{font-size:81.750000px;}
.fs1b_c01141{font-size:82.500000px;}
.fs4_c01141{font-size:83.250000px;}
.fs18_c01141{font-size:85.500000px;}
.fs6_c01141{font-size:86.250000px;}
.fs3_c01141{font-size:87.750000px;}
.fs10_c01141{font-size:88.500000px;}
.fs11_c01141{font-size:90.000000px;}
.fs0_c01141{font-size:93.000000px;}
.fs1a_c01141{font-size:115.500000px;}
.fs15_c01141{font-size:144.000000px;}
.y0_c01141{bottom:0.000000px;}
.y1f_c01141{bottom:182.518665px;}
.y1e_c01141{bottom:211.319850px;}
.y1d_c01141{bottom:241.198785px;}
.y1c_c01141{bottom:302.039385px;}
.y1b_c01141{bottom:331.199850px;}
.y1a_c01141{bottom:361.078785px;}
.y19_c01141{bottom:420.119985px;}
.y18_c01141{bottom:430.198785px;}
.y17_c01141{bottom:449.639700px;}
.y16_c01141{bottom:480.599670px;}
.y15_c01141{bottom:540.718500px;}
.y14_c01141{bottom:570.959745px;}
.y13_c01141{bottom:600.118785px;}
.y12_c01141{bottom:629.638545px;}
.y11_c01141{bottom:689.759085px;}
.y10_c01141{bottom:719.998950px;}
.ye_c01141{bottom:748.080000px;}
.yf_c01141{bottom:748.800105px;}
.yc_c01141{bottom:753.119385px;}
.yd_c01141{bottom:753.298920px;}
.yb_c01141{bottom:809.639100px;}
.ya_c01141{bottom:839.878965px;}
.y9_c01141{bottom:869.398590px;}
.y8_c01141{bottom:929.159820px;}
.y6_c01141{bottom:958.679445px;}
.y7_c01141{bottom:958.679715px;}
.y5_c01141{bottom:988.558590px;}
.y4_c01141{bottom:1018.800105px;}
.y3_c01141{bottom:1078.559685px;}
.y2_c01141{bottom:1107.718590px;}
.y1_c01141{bottom:1137.959925px;}
.h11_c01141{height:21.495117px;}
.h17_c01141{height:30.990234px;}
.hf_c01141{height:31.289062px;}
.h15_c01141{height:34.417969px;}
.h10_c01141{height:45.213867px;}
.hd_c01141{height:56.320312px;}
.hc_c01141{height:58.957031px;}
.he_c01141{height:60.038086px;}
.h19_c01141{height:62.578125px;}
.hb_c01141{height:71.964844px;}
.h21_c01141{height:73.571777px;}
.h1d_c01141{height:75.080566px;}
.h14_c01141{height:75.778931px;}
.h9_c01141{height:76.514648px;}
.h7_c01141{height:77.288818px;}
.h22_c01141{height:77.853516px;}
.h3_c01141{height:78.024902px;}
.h5_c01141{height:78.721802px;}
.h1c_c01141{height:79.497070px;}
.h2_c01141{height:80.876953px;}
.h1f_c01141{height:80.969238px;}
.ha_c01141{height:81.632812px;}
.h6_c01141{height:81.664673px;}
.h1a_c01141{height:82.388672px;}
.h20_c01141{height:83.144531px;}
.h1b_c01141{height:84.498047px;}
.h16_c01141{height:84.607544px;}
.h8_c01141{height:85.239258px;}
.h4_c01141{height:86.721680px;}
.h12_c01141{height:87.462891px;}
.h1_c01141{height:91.910156px;}
.h13_c01141{height:93.867188px;}
.h1e_c01141{height:120.462891px;}
.h18_c01141{height:150.187500px;}
.h0_c01141{height:1263.000000px;}
.w0_c01141{width:892.500000px;}
.x0_c01141{left:0.000000px;}
.xb_c01141{left:138.600405px;}
.x4_c01141{left:140.398665px;}
.x8_c01141{left:141.479715px;}
.x1_c01141{left:142.559100px;}
.x26_c01141{left:163.438665px;}
.x5_c01141{left:165.239850px;}
.x31_c01141{left:166.319250px;}
.x27_c01141{left:170.638500px;}
.x14_c01141{left:196.199850px;}
.x12_c01141{left:198.358635px;}
.x2d_c01141{left:214.198785px;}
.x28_c01141{left:216.359250px;}
.x32_c01141{left:218.519685px;}
.x2f_c01141{left:223.199850px;}
.x13_c01141{left:225.719535px;}
.x30_c01141{left:238.679100px;}
.xe_c01141{left:240.839535px;}
.x10_c01141{left:243.718500px;}
.x2e_c01141{left:251.279250px;}
.x11_c01141{left:255.598500px;}
.xc_c01141{left:269.639100px;}
.xd_c01141{left:285.479235px;}
.xf_c01141{left:287.998950px;}
.x2_c01141{left:292.319850px;}
.x18_c01141{left:294.119385px;}
.x15_c01141{left:299.519685px;}
.x29_c01141{left:311.399850px;}
.x23_c01141{left:317.159385px;}
.x3_c01141{left:319.679100px;}
.x1b_c01141{left:325.438635px;}
.x2a_c01141{left:335.519100px;}
.x1c_c01141{left:340.558635px;}
.x16_c01141{left:344.518635px;}
.x6_c01141{left:347.758500px;}
.x2b_c01141{left:353.519685px;}
.x9_c01141{left:355.678530px;}
.x2c_c01141{left:363.959385px;}
.x1d_c01141{left:370.080000px;}
.x7_c01141{left:371.518635px;}
.x17_c01141{left:375.119385px;}
.x1e_c01141{left:393.838530px;}
.xa_c01141{left:397.439250px;}
.x1f_c01141{left:405.718500px;}
.x20_c01141{left:417.598530px;}
.x21_c01141{left:438.479685px;}
.x24_c01141{left:439.559100px;}
.x25_c01141{left:454.319820px;}
.x22_c01141{left:471.239220px;}
.x19_c01141{left:729.359250px;}
.x1a_c01141{left:739.798920px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls27_c01141{letter-spacing:-15.055600pt;}
.lsb_c01141{letter-spacing:-13.485667pt;}
.ls15_c01141{letter-spacing:-10.845393pt;}
.ls29_c01141{letter-spacing:-7.925133pt;}
.ls17_c01141{letter-spacing:-7.788000pt;}
.ls1e_c01141{letter-spacing:-7.179027pt;}
.ls4_c01141{letter-spacing:-6.115200pt;}
.ls1b_c01141{letter-spacing:-4.322087pt;}
.ls26_c01141{letter-spacing:-4.236467pt;}
.ls21_c01141{letter-spacing:-3.965107pt;}
.ls12_c01141{letter-spacing:-3.603047pt;}
.ls1_c01141{letter-spacing:-3.447200pt;}
.ls1a_c01141{letter-spacing:-3.300840pt;}
.ls10_c01141{letter-spacing:-2.882580pt;}
.ls9_c01141{letter-spacing:-2.695000pt;}
.ls3_c01141{letter-spacing:-2.642933pt;}
.ls8_c01141{letter-spacing:-2.161400pt;}
.lsa_c01141{letter-spacing:-2.015300pt;}
.ls20_c01141{letter-spacing:-1.978667pt;}
.ls6_c01141{letter-spacing:-1.440933pt;}
.lse_c01141{letter-spacing:-1.413113pt;}
.ls1f_c01141{letter-spacing:-1.370227pt;}
.lsd_c01141{letter-spacing:-1.344000pt;}
.ls2c_c01141{letter-spacing:-0.721000pt;}
.ls5_c01141{letter-spacing:-0.720467pt;}
.ls18_c01141{letter-spacing:-0.706200pt;}
.lsc_c01141{letter-spacing:-0.672000pt;}
.ls7_c01141{letter-spacing:0.000000pt;}
.ls16_c01141{letter-spacing:0.605133pt;}
.ls25_c01141{letter-spacing:0.672000pt;}
.ls11_c01141{letter-spacing:0.684720pt;}
.ls19_c01141{letter-spacing:0.706200pt;}
.ls23_c01141{letter-spacing:0.720467pt;}
.ls1d_c01141{letter-spacing:0.734933pt;}
.ls22_c01141{letter-spacing:1.369600pt;}
.ls2_c01141{letter-spacing:1.413113pt;}
.ls24_c01141{letter-spacing:1.588340pt;}
.ls14_c01141{letter-spacing:2.021600pt;}
.ls28_c01141{letter-spacing:2.097200pt;}
.lsf_c01141{letter-spacing:2.117887pt;}
.ls0_c01141{letter-spacing:2.396467pt;}
.ls2b_c01141{letter-spacing:2.613333pt;}
.ls2a_c01141{letter-spacing:2.874667pt;}
.ls1c_c01141{letter-spacing:4.133733pt;}
.ls13_c01141{letter-spacing:6.666400pt;}
.ws0_c01141{word-spacing:0.000000pt;}
._f_c01141{margin-left:-21.142991pt;}
._e_c01141{margin-left:-15.313337pt;}
._10_c01141{margin-left:-8.512705pt;}
._12_c01141{margin-left:-4.393787pt;}
._c_c01141{margin-left:-3.409330pt;}
._d_c01141{margin-left:-1.885912pt;}
._4_c01141{width:1.141269pt;}
._1_c01141{width:2.796468pt;}
._a_c01141{width:3.995115pt;}
._9_c01141{width:5.103324pt;}
._5_c01141{width:7.283105pt;}
._0_c01141{width:8.545618pt;}
._2_c01141{width:9.722838pt;}
._3_c01141{width:11.546769pt;}
._7_c01141{width:13.838292pt;}
._8_c01141{width:17.479925pt;}
._6_c01141{width:19.090479pt;}
._b_c01141{width:20.643391pt;}
._11_c01141{width:25.693791pt;}
.fsf_c01141{font-size:19.333333pt;}
.fsd_c01141{font-size:26.666667pt;}
.fs14_c01141{font-size:27.333333pt;}
.fs13_c01141{font-size:29.333333pt;}
.fse_c01141{font-size:40.666667pt;}
.fsb_c01141{font-size:48.000000pt;}
.fsa_c01141{font-size:52.000000pt;}
.fs16_c01141{font-size:53.333333pt;}
.fsc_c01141{font-size:54.000000pt;}
.fs9_c01141{font-size:61.333333pt;}
.fs1c_c01141{font-size:66.666667pt;}
.fs19_c01141{font-size:68.000000pt;}
.fs12_c01141{font-size:68.666667pt;}
.fs7_c01141{font-size:69.333333pt;}
.fs5_c01141{font-size:70.000000pt;}
.fs2_c01141{font-size:70.666667pt;}
.fs1_c01141{font-size:71.333333pt;}
.fs8_c01141{font-size:72.000000pt;}
.fs17_c01141{font-size:72.666667pt;}
.fs1b_c01141{font-size:73.333333pt;}
.fs4_c01141{font-size:74.000000pt;}
.fs18_c01141{font-size:76.000000pt;}
.fs6_c01141{font-size:76.666667pt;}
.fs3_c01141{font-size:78.000000pt;}
.fs10_c01141{font-size:78.666667pt;}
.fs11_c01141{font-size:80.000000pt;}
.fs0_c01141{font-size:82.666667pt;}
.fs1a_c01141{font-size:102.666667pt;}
.fs15_c01141{font-size:128.000000pt;}
.y0_c01141{bottom:0.000000pt;}
.y1f_c01141{bottom:162.238813pt;}
.y1e_c01141{bottom:187.839867pt;}
.y1d_c01141{bottom:214.398920pt;}
.y1c_c01141{bottom:268.479453pt;}
.y1b_c01141{bottom:294.399867pt;}
.y1a_c01141{bottom:320.958920pt;}
.y19_c01141{bottom:373.439987pt;}
.y18_c01141{bottom:382.398920pt;}
.y17_c01141{bottom:399.679733pt;}
.y16_c01141{bottom:427.199707pt;}
.y15_c01141{bottom:480.638667pt;}
.y14_c01141{bottom:507.519773pt;}
.y13_c01141{bottom:533.438920pt;}
.y12_c01141{bottom:559.678707pt;}
.y11_c01141{bottom:613.119187pt;}
.y10_c01141{bottom:639.999067pt;}
.ye_c01141{bottom:664.960000pt;}
.yf_c01141{bottom:665.600093pt;}
.yc_c01141{bottom:669.439453pt;}
.yd_c01141{bottom:669.599040pt;}
.yb_c01141{bottom:719.679200pt;}
.ya_c01141{bottom:746.559080pt;}
.y9_c01141{bottom:772.798747pt;}
.y8_c01141{bottom:825.919840pt;}
.y6_c01141{bottom:852.159507pt;}
.y7_c01141{bottom:852.159747pt;}
.y5_c01141{bottom:878.718747pt;}
.y4_c01141{bottom:905.600093pt;}
.y3_c01141{bottom:958.719720pt;}
.y2_c01141{bottom:984.638747pt;}
.y1_c01141{bottom:1011.519933pt;}
.h11_c01141{height:19.106771pt;}
.h17_c01141{height:27.546875pt;}
.hf_c01141{height:27.812500pt;}
.h15_c01141{height:30.593750pt;}
.h10_c01141{height:40.190104pt;}
.hd_c01141{height:50.062500pt;}
.hc_c01141{height:52.406250pt;}
.he_c01141{height:53.367188pt;}
.h19_c01141{height:55.625000pt;}
.hb_c01141{height:63.968750pt;}
.h21_c01141{height:65.397135pt;}
.h1d_c01141{height:66.738281pt;}
.h14_c01141{height:67.359049pt;}
.h9_c01141{height:68.013021pt;}
.h7_c01141{height:68.701172pt;}
.h22_c01141{height:69.203125pt;}
.h3_c01141{height:69.355469pt;}
.h5_c01141{height:69.974935pt;}
.h1c_c01141{height:70.664062pt;}
.h2_c01141{height:71.890625pt;}
.h1f_c01141{height:71.972656pt;}
.ha_c01141{height:72.562500pt;}
.h6_c01141{height:72.590820pt;}
.h1a_c01141{height:73.234375pt;}
.h20_c01141{height:73.906250pt;}
.h1b_c01141{height:75.109375pt;}
.h16_c01141{height:75.206706pt;}
.h8_c01141{height:75.768229pt;}
.h4_c01141{height:77.085938pt;}
.h12_c01141{height:77.744792pt;}
.h1_c01141{height:81.697917pt;}
.h13_c01141{height:83.437500pt;}
.h1e_c01141{height:107.078125pt;}
.h18_c01141{height:133.500000pt;}
.h0_c01141{height:1122.666667pt;}
.w0_c01141{width:793.333333pt;}
.x0_c01141{left:0.000000pt;}
.xb_c01141{left:123.200360pt;}
.x4_c01141{left:124.798813pt;}
.x8_c01141{left:125.759747pt;}
.x1_c01141{left:126.719200pt;}
.x26_c01141{left:145.278813pt;}
.x5_c01141{left:146.879867pt;}
.x31_c01141{left:147.839333pt;}
.x27_c01141{left:151.678667pt;}
.x14_c01141{left:174.399867pt;}
.x12_c01141{left:176.318787pt;}
.x2d_c01141{left:190.398920pt;}
.x28_c01141{left:192.319333pt;}
.x32_c01141{left:194.239720pt;}
.x2f_c01141{left:198.399867pt;}
.x13_c01141{left:200.639587pt;}
.x30_c01141{left:212.159200pt;}
.xe_c01141{left:214.079587pt;}
.x10_c01141{left:216.638667pt;}
.x2e_c01141{left:223.359333pt;}
.x11_c01141{left:227.198667pt;}
.xc_c01141{left:239.679200pt;}
.xd_c01141{left:253.759320pt;}
.xf_c01141{left:255.999067pt;}
.x2_c01141{left:259.839867pt;}
.x18_c01141{left:261.439453pt;}
.x15_c01141{left:266.239720pt;}
.x29_c01141{left:276.799867pt;}
.x23_c01141{left:281.919453pt;}
.x3_c01141{left:284.159200pt;}
.x1b_c01141{left:289.278787pt;}
.x2a_c01141{left:298.239200pt;}
.x1c_c01141{left:302.718787pt;}
.x16_c01141{left:306.238787pt;}
.x6_c01141{left:309.118667pt;}
.x2b_c01141{left:314.239720pt;}
.x9_c01141{left:316.158693pt;}
.x2c_c01141{left:323.519453pt;}
.x1d_c01141{left:328.960000pt;}
.x7_c01141{left:330.238787pt;}
.x17_c01141{left:333.439453pt;}
.x1e_c01141{left:350.078693pt;}
.xa_c01141{left:353.279333pt;}
.x1f_c01141{left:360.638667pt;}
.x20_c01141{left:371.198693pt;}
.x21_c01141{left:389.759720pt;}
.x24_c01141{left:390.719200pt;}
.x25_c01141{left:403.839840pt;}
.x22_c01141{left:418.879307pt;}
.x19_c01141{left:648.319333pt;}
.x1a_c01141{left:657.599040pt;}
}





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

.ir_c01142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_eec0987b81220d26800b2348.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01142;src:url('chunks/assets/font_fcd7762b7e42bf2c38828741.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01142;src:url('chunks/assets/font_aafe0a49922d5e39bf7c2ba5.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01142;src:url('chunks/assets/font_42ade839f237ccfa03e614ce.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01142;src:url('chunks/assets/font_c6ded61e651d7566304888e3.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01142;src:url('chunks/assets/font_2e9edd47c439266f42b94eae.woff2')format("woff");}.ff6_c01142{font-family:ff6_c01142;line-height:1.364746;font-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_c01142{transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177885,0.000000,0.000000,0.250000,0,0);}
.m14_c01142{transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204955,0.000000,0.000000,0.250000,0,0);}
.m12_c01142{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m15_c01142{transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207265,0.000000,0.000000,0.250000,0,0);}
.me_c01142{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m17_c01142{transform:matrix(0.216887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216887,0.000000,0.000000,0.250000,0,0);}
.m5_c01142{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.m2_c01142{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m1b_c01142{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m6_c01142{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m3_c01142{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m13_c01142{transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233173,0.000000,0.000000,0.250000,0,0);}
.m4_c01142{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m9_c01142{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m18_c01142{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.mc_c01142{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m19_c01142{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m10_c01142{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m0_c01142{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m1_c01142{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m1a_c01142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01142{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.ma_c01142{transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);}
.m11_c01142{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m16_c01142{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.md_c01142{transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);}
.m7_c01142{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.mf_c01142{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m8_c01142{transform:matrix(0.831731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.831731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.831731,0.000000,0.000000,0.250000,0,0);}
.v0_c01142{vertical-align:0.000000px;}
.ls10_c01142{letter-spacing:-18.968820px;}
.ls24_c01142{letter-spacing:-14.865150px;}
.lsf_c01142{letter-spacing:-14.692463px;}
.ls16_c01142{letter-spacing:-11.682075px;}
.ls1f_c01142{letter-spacing:-7.780275px;}
.lse_c01142{letter-spacing:-7.158375px;}
.ls15_c01142{letter-spacing:-5.566838px;}
.ls14_c01142{letter-spacing:-5.541833px;}
.ls1d_c01142{letter-spacing:-5.431725px;}
.ls1b_c01142{letter-spacing:-4.036793px;}
.ls13_c01142{letter-spacing:-3.977663px;}
.lsc_c01142{letter-spacing:-3.860025px;}
.ls1e_c01142{letter-spacing:-3.649050px;}
.ls17_c01142{letter-spacing:-3.212595px;}
.lsd_c01142{letter-spacing:-3.089625px;}
.ls18_c01142{letter-spacing:-2.408850px;}
.ls12_c01142{letter-spacing:-2.357100px;}
.ls6_c01142{letter-spacing:-2.293110px;}
.ls25_c01142{letter-spacing:-1.605900px;}
.ls19_c01142{letter-spacing:-1.590750px;}
.ls21_c01142{letter-spacing:-1.558995px;}
.ls5_c01142{letter-spacing:-1.540800px;}
.ls1a_c01142{letter-spacing:-0.803400px;}
.ls9_c01142{letter-spacing:-0.802950px;}
.lsb_c01142{letter-spacing:-0.795375px;}
.ls11_c01142{letter-spacing:-0.770400px;}
.ls8_c01142{letter-spacing:0.000000px;}
.ls22_c01142{letter-spacing:0.745523px;}
.ls2_c01142{letter-spacing:0.795375px;}
.ls26_c01142{letter-spacing:0.802950px;}
.ls0_c01142{letter-spacing:1.605900px;}
.ls1_c01142{letter-spacing:2.386125px;}
.lsa_c01142{letter-spacing:2.454848px;}
.ls23_c01142{letter-spacing:2.464875px;}
.ls7_c01142{letter-spacing:2.549250px;}
.ls4_c01142{letter-spacing:3.212595px;}
.ls20_c01142{letter-spacing:3.939750px;}
.ls3_c01142{letter-spacing:3.977663px;}
.ls1c_c01142{letter-spacing:4.570425px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01142{word-spacing:0.000000px;}
._e_c01142{margin-left:-9.062968px;}
._d_c01142{margin-left:-5.292255px;}
._7_c01142{margin-left:-4.241211px;}
._10_c01142{margin-left:-3.017286px;}
._f_c01142{margin-left:-1.811250px;}
._c_c01142{width:1.149973px;}
._9_c01142{width:2.330650px;}
._a_c01142{width:3.756900px;}
._16_c01142{width:4.802843px;}
._5_c01142{width:5.997845px;}
._b_c01142{width:7.080134px;}
._8_c01142{width:8.891206px;}
._6_c01142{width:10.607927px;}
._1_c01142{width:13.229282px;}
._3_c01142{width:15.343500px;}
._15_c01142{width:16.411968px;}
._0_c01142{width:18.523468px;}
._12_c01142{width:20.994670px;}
._4_c01142{width:22.498500px;}
._2_c01142{width:23.937225px;}
._17_c01142{width:25.462795px;}
._13_c01142{width:27.207800px;}
._11_c01142{width:28.326311px;}
._14_c01142{width:29.898626px;}
.fc0_c01142{color:transparent;}
.fs7_c01142{font-size:39.000000px;}
.fs9_c01142{font-size:71.250000px;}
.fsf_c01142{font-size:76.500000px;}
.fsa_c01142{font-size:78.000000px;}
.fs8_c01142{font-size:78.750000px;}
.fs4_c01142{font-size:79.500000px;}
.fs0_c01142{font-size:80.250000px;}
.fs1_c01142{font-size:81.000000px;}
.fsb_c01142{font-size:81.750000px;}
.fs2_c01142{font-size:82.500000px;}
.fs3_c01142{font-size:83.250000px;}
.fs10_c01142{font-size:84.750000px;}
.fs5_c01142{font-size:85.500000px;}
.fs6_c01142{font-size:86.250000px;}
.fsd_c01142{font-size:87.750000px;}
.fsc_c01142{font-size:90.000000px;}
.fse_c01142{font-size:113.250000px;}
.y0_c01142{bottom:0.000000px;}
.y20_c01142{bottom:208.800150px;}
.y1e_c01142{bottom:237.959835px;}
.y1f_c01142{bottom:237.960600px;}
.y1d_c01142{bottom:267.480285px;}
.y1c_c01142{bottom:327.600750px;}
.y1b_c01142{bottom:357.120435px;}
.y1a_c01142{bottom:387.360300px;}
.y19_c01142{bottom:387.361155px;}
.y18_c01142{bottom:417.240870px;}
.y17_c01142{bottom:447.121635px;}
.y16_c01142{bottom:507.240420px;}
.y15_c01142{bottom:536.760135px;}
.y14_c01142{bottom:536.760615px;}
.y13_c01142{bottom:566.640750px;}
.y12_c01142{bottom:626.400285px;}
.y11_c01142{bottom:656.640150px;}
.y10_c01142{bottom:686.161515px;}
.ye_c01142{bottom:776.160960px;}
.yf_c01142{bottom:776.161005px;}
.yd_c01142{bottom:806.400885px;}
.yc_c01142{bottom:836.281500px;}
.yb_c01142{bottom:896.040990px;}
.ya_c01142{bottom:925.919955px;}
.y9_c01142{bottom:925.920435px;}
.y8_c01142{bottom:955.800570px;}
.y7_c01142{bottom:985.681185px;}
.y6_c01142{bottom:1046.161005px;}
.y4_c01142{bottom:1075.680000px;}
.y5_c01142{bottom:1075.680720px;}
.y3_c01142{bottom:1105.200435px;}
.y2_c01142{bottom:1105.200510px;}
.y1_c01142{bottom:1135.440315px;}
.h9_c01142{height:40.675781px;}
.hb_c01142{height:74.311523px;}
.hc_c01142{height:77.085938px;}
.h16_c01142{height:77.097656px;}
.h18_c01142{height:77.250366px;}
.ha_c01142{height:77.288818px;}
.h5_c01142{height:77.986084px;}
.h14_c01142{height:78.024902px;}
.h12_c01142{height:78.609375px;}
.h7_c01142{height:78.721802px;}
.h11_c01142{height:79.457520px;}
.h17_c01142{height:80.121094px;}
.hd_c01142{height:80.233154px;}
.h1_c01142{height:80.876953px;}
.he_c01142{height:80.969238px;}
.h2_c01142{height:81.632812px;}
.h10_c01142{height:82.133789px;}
.h3_c01142{height:83.144531px;}
.h19_c01142{height:83.756836px;}
.h6_c01142{height:83.871826px;}
.h4_c01142{height:83.900391px;}
.h13_c01142{height:86.721680px;}
.h8_c01142{height:89.956055px;}
.hf_c01142{height:93.867188px;}
.h15_c01142{height:111.922852px;}
.h0_c01142{height:1263.000000px;}
.w0_c01142{width:892.500000px;}
.x0_c01142{left:0.000000px;}
.x1f_c01142{left:136.799970px;}
.x24_c01142{left:137.878950px;}
.x9_c01142{left:138.959400px;}
.x1_c01142{left:140.759565px;}
.x18_c01142{left:146.519100px;}
.x23_c01142{left:170.638500px;}
.x14_c01142{left:177.838515px;}
.x2_c01142{left:199.798950px;}
.x26_c01142{left:203.038950px;}
.x2e_c01142{left:206.639700px;}
.x19_c01142{left:213.839535px;}
.x2b_c01142{left:216.000000px;}
.x25_c01142{left:217.079385px;}
.x13_c01142{left:218.158785px;}
.x27_c01142{left:221.759535px;}
.x3_c01142{left:230.399850px;}
.x1a_c01142{left:233.278800px;}
.xa_c01142{left:242.279850px;}
.xb_c01142{left:248.759535px;}
.x4_c01142{left:252.358635px;}
.x6_c01142{left:257.759100px;}
.x5_c01142{left:284.038950px;}
.x1b_c01142{left:287.639700px;}
.x10_c01142{left:297.359250px;}
.x1c_c01142{left:302.759535px;}
.x2f_c01142{left:304.918350px;}
.x17_c01142{left:308.159850px;}
.xc_c01142{left:309.239250px;}
.x2c_c01142{left:311.759100px;}
.x1d_c01142{left:327.239850px;}
.x30_c01142{left:338.399850px;}
.x1e_c01142{left:340.558635px;}
.xd_c01142{left:341.639700px;}
.x2d_c01142{left:342.719100px;}
.x11_c01142{left:346.679100px;}
.x15_c01142{left:363.959385px;}
.x16_c01142{left:384.479685px;}
.x20_c01142{left:386.638500px;}
.x21_c01142{left:401.758530px;}
.x28_c01142{left:415.078815px;}
.x2a_c01142{left:424.080000px;}
.x12_c01142{left:427.319820px;}
.x22_c01142{left:512.639100px;}
.x7_c01142{left:570.239820px;}
.x8_c01142{left:597.239820px;}
.xe_c01142{left:598.678530px;}
.xf_c01142{left:624.239820px;}
.x29_c01142{left:734.398635px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls10_c01142{letter-spacing:-16.861173pt;}
.ls24_c01142{letter-spacing:-13.213467pt;}
.lsf_c01142{letter-spacing:-13.059967pt;}
.ls16_c01142{letter-spacing:-10.384067pt;}
.ls1f_c01142{letter-spacing:-6.915800pt;}
.lse_c01142{letter-spacing:-6.363000pt;}
.ls15_c01142{letter-spacing:-4.948300pt;}
.ls14_c01142{letter-spacing:-4.926073pt;}
.ls1d_c01142{letter-spacing:-4.828200pt;}
.ls1b_c01142{letter-spacing:-3.588260pt;}
.ls13_c01142{letter-spacing:-3.535700pt;}
.lsc_c01142{letter-spacing:-3.431133pt;}
.ls1e_c01142{letter-spacing:-3.243600pt;}
.ls17_c01142{letter-spacing:-2.855640pt;}
.lsd_c01142{letter-spacing:-2.746333pt;}
.ls18_c01142{letter-spacing:-2.141200pt;}
.ls12_c01142{letter-spacing:-2.095200pt;}
.ls6_c01142{letter-spacing:-2.038320pt;}
.ls25_c01142{letter-spacing:-1.427467pt;}
.ls19_c01142{letter-spacing:-1.414000pt;}
.ls21_c01142{letter-spacing:-1.385773pt;}
.ls5_c01142{letter-spacing:-1.369600pt;}
.ls1a_c01142{letter-spacing:-0.714133pt;}
.ls9_c01142{letter-spacing:-0.713733pt;}
.lsb_c01142{letter-spacing:-0.707000pt;}
.ls11_c01142{letter-spacing:-0.684800pt;}
.ls8_c01142{letter-spacing:0.000000pt;}
.ls22_c01142{letter-spacing:0.662687pt;}
.ls2_c01142{letter-spacing:0.707000pt;}
.ls26_c01142{letter-spacing:0.713733pt;}
.ls0_c01142{letter-spacing:1.427467pt;}
.ls1_c01142{letter-spacing:2.121000pt;}
.lsa_c01142{letter-spacing:2.182087pt;}
.ls23_c01142{letter-spacing:2.191000pt;}
.ls7_c01142{letter-spacing:2.266000pt;}
.ls4_c01142{letter-spacing:2.855640pt;}
.ls20_c01142{letter-spacing:3.502000pt;}
.ls3_c01142{letter-spacing:3.535700pt;}
.ls1c_c01142{letter-spacing:4.062600pt;}
.ws0_c01142{word-spacing:0.000000pt;}
._e_c01142{margin-left:-8.055971pt;}
._d_c01142{margin-left:-4.704226pt;}
._7_c01142{margin-left:-3.769966pt;}
._10_c01142{margin-left:-2.682032pt;}
._f_c01142{margin-left:-1.610000pt;}
._c_c01142{width:1.022198pt;}
._9_c01142{width:2.071689pt;}
._a_c01142{width:3.339467pt;}
._16_c01142{width:4.269194pt;}
._5_c01142{width:5.331418pt;}
._b_c01142{width:6.293453pt;}
._8_c01142{width:7.903294pt;}
._6_c01142{width:9.429269pt;}
._1_c01142{width:11.759362pt;}
._3_c01142{width:13.638667pt;}
._15_c01142{width:14.588416pt;}
._0_c01142{width:16.465305pt;}
._12_c01142{width:18.661929pt;}
._4_c01142{width:19.998667pt;}
._2_c01142{width:21.277533pt;}
._17_c01142{width:22.633596pt;}
._13_c01142{width:24.184711pt;}
._11_c01142{width:25.178943pt;}
._14_c01142{width:26.576557pt;}
.fs7_c01142{font-size:34.666667pt;}
.fs9_c01142{font-size:63.333333pt;}
.fsf_c01142{font-size:68.000000pt;}
.fsa_c01142{font-size:69.333333pt;}
.fs8_c01142{font-size:70.000000pt;}
.fs4_c01142{font-size:70.666667pt;}
.fs0_c01142{font-size:71.333333pt;}
.fs1_c01142{font-size:72.000000pt;}
.fsb_c01142{font-size:72.666667pt;}
.fs2_c01142{font-size:73.333333pt;}
.fs3_c01142{font-size:74.000000pt;}
.fs10_c01142{font-size:75.333333pt;}
.fs5_c01142{font-size:76.000000pt;}
.fs6_c01142{font-size:76.666667pt;}
.fsd_c01142{font-size:78.000000pt;}
.fsc_c01142{font-size:80.000000pt;}
.fse_c01142{font-size:100.666667pt;}
.y0_c01142{bottom:0.000000pt;}
.y20_c01142{bottom:185.600133pt;}
.y1e_c01142{bottom:211.519853pt;}
.y1f_c01142{bottom:211.520533pt;}
.y1d_c01142{bottom:237.760253pt;}
.y1c_c01142{bottom:291.200667pt;}
.y1b_c01142{bottom:317.440387pt;}
.y1a_c01142{bottom:344.320267pt;}
.y19_c01142{bottom:344.321027pt;}
.y18_c01142{bottom:370.880773pt;}
.y17_c01142{bottom:397.441453pt;}
.y16_c01142{bottom:450.880373pt;}
.y15_c01142{bottom:477.120120pt;}
.y14_c01142{bottom:477.120547pt;}
.y13_c01142{bottom:503.680667pt;}
.y12_c01142{bottom:556.800253pt;}
.y11_c01142{bottom:583.680133pt;}
.y10_c01142{bottom:609.921347pt;}
.ye_c01142{bottom:689.920853pt;}
.yf_c01142{bottom:689.920893pt;}
.yd_c01142{bottom:716.800787pt;}
.yc_c01142{bottom:743.361333pt;}
.yb_c01142{bottom:796.480880pt;}
.ya_c01142{bottom:823.039960pt;}
.y9_c01142{bottom:823.040387pt;}
.y8_c01142{bottom:849.600507pt;}
.y7_c01142{bottom:876.161053pt;}
.y6_c01142{bottom:929.920893pt;}
.y4_c01142{bottom:956.160000pt;}
.y5_c01142{bottom:956.160640pt;}
.y3_c01142{bottom:982.400387pt;}
.y2_c01142{bottom:982.400453pt;}
.y1_c01142{bottom:1009.280280pt;}
.h9_c01142{height:36.156250pt;}
.hb_c01142{height:66.054688pt;}
.hc_c01142{height:68.520833pt;}
.h16_c01142{height:68.531250pt;}
.h18_c01142{height:68.666992pt;}
.ha_c01142{height:68.701172pt;}
.h5_c01142{height:69.320964pt;}
.h14_c01142{height:69.355469pt;}
.h12_c01142{height:69.875000pt;}
.h7_c01142{height:69.974935pt;}
.h11_c01142{height:70.628906pt;}
.h17_c01142{height:71.218750pt;}
.hd_c01142{height:71.318359pt;}
.h1_c01142{height:71.890625pt;}
.he_c01142{height:71.972656pt;}
.h2_c01142{height:72.562500pt;}
.h10_c01142{height:73.007812pt;}
.h3_c01142{height:73.906250pt;}
.h19_c01142{height:74.450521pt;}
.h6_c01142{height:74.552734pt;}
.h4_c01142{height:74.578125pt;}
.h13_c01142{height:77.085938pt;}
.h8_c01142{height:79.960938pt;}
.hf_c01142{height:83.437500pt;}
.h15_c01142{height:99.486979pt;}
.h0_c01142{height:1122.666667pt;}
.w0_c01142{width:793.333333pt;}
.x0_c01142{left:0.000000pt;}
.x1f_c01142{left:121.599973pt;}
.x24_c01142{left:122.559067pt;}
.x9_c01142{left:123.519467pt;}
.x1_c01142{left:125.119613pt;}
.x18_c01142{left:130.239200pt;}
.x23_c01142{left:151.678667pt;}
.x14_c01142{left:158.078680pt;}
.x2_c01142{left:177.599067pt;}
.x26_c01142{left:180.479067pt;}
.x2e_c01142{left:183.679733pt;}
.x19_c01142{left:190.079587pt;}
.x2b_c01142{left:192.000000pt;}
.x25_c01142{left:192.959453pt;}
.x13_c01142{left:193.918920pt;}
.x27_c01142{left:197.119587pt;}
.x3_c01142{left:204.799867pt;}
.x1a_c01142{left:207.358933pt;}
.xa_c01142{left:215.359867pt;}
.xb_c01142{left:221.119587pt;}
.x4_c01142{left:224.318787pt;}
.x6_c01142{left:229.119200pt;}
.x5_c01142{left:252.479067pt;}
.x1b_c01142{left:255.679733pt;}
.x10_c01142{left:264.319333pt;}
.x1c_c01142{left:269.119587pt;}
.x2f_c01142{left:271.038533pt;}
.x17_c01142{left:273.919867pt;}
.xc_c01142{left:274.879333pt;}
.x2c_c01142{left:277.119200pt;}
.x1d_c01142{left:290.879867pt;}
.x30_c01142{left:300.799867pt;}
.x1e_c01142{left:302.718787pt;}
.xd_c01142{left:303.679733pt;}
.x2d_c01142{left:304.639200pt;}
.x11_c01142{left:308.159200pt;}
.x15_c01142{left:323.519453pt;}
.x16_c01142{left:341.759720pt;}
.x20_c01142{left:343.678667pt;}
.x21_c01142{left:357.118693pt;}
.x28_c01142{left:368.958947pt;}
.x2a_c01142{left:376.960000pt;}
.x12_c01142{left:379.839840pt;}
.x22_c01142{left:455.679200pt;}
.x7_c01142{left:506.879840pt;}
.x8_c01142{left:530.879840pt;}
.xe_c01142{left:532.158693pt;}
.xf_c01142{left:554.879840pt;}
.x29_c01142{left:652.798787pt;}
}





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

.ir_c01143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_4f3d89970d4e63a0fe8579a1.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01143;src:url('chunks/assets/font_774ae127f5aa9e194af4116f.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01143;src:url('chunks/assets/font_03769f4581f0d0b0d2a5e6e3.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01143;src:url('chunks/assets/font_2a9de71e37dea8c878b857a1.woff2')format("woff");}.ff4_c01143{font-family:ff4_c01143;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01143;src:url('chunks/assets/font_2f398287e0830f7a87972e33.woff2')format("woff");}.ff5_c01143{font-family:ff5_c01143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01143;src:url('chunks/assets/font_bf31d38bb2c5082cf9fc7e3e.woff2')format("woff");}.ff6_c01143{font-family:ff6_c01143;line-height:1.311035;font-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_c01143{transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);}
.mc_c01143{transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181416,0.000000,0.000000,0.250000,0,0);}
.md_c01143{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m5_c01143{transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);}
.m1b_c01143{transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195238,0.000000,0.000000,0.250000,0,0);}
.m6_c01143{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);}
.m1c_c01143{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m10_c01143{transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206731,0.000000,0.000000,0.250000,0,0);}
.m14_c01143{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.mf_c01143{transform:matrix(0.210396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210396,0.000000,0.000000,0.250000,0,0);}
.m2_c01143{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c01143{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m17_c01143{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m11_c01143{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.ma_c01143{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.me_c01143{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m3_c01143{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1_c01143{transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236239,0.000000,0.000000,0.250000,0,0);}
.m1a_c01143{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m8_c01143{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m15_c01143{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m18_c01143{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m19_c01143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01143{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m9_c01143{transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261468,0.000000,0.000000,0.250000,0,0);}
.m12_c01143{transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264019,0.000000,0.000000,0.250000,0,0);}
.m13_c01143{transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);}
.mb_c01143{transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283654,0.000000,0.000000,0.250000,0,0);}
.m7_c01143{transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302273,0.000000,0.000000,0.250000,0,0);}
.v0_c01143{vertical-align:0.000000px;}
.ls13_c01143{letter-spacing:-11.142338px;}
.ls1a_c01143{letter-spacing:-10.214400px;}
.ls1b_c01143{letter-spacing:-5.302650px;}
.lsa_c01143{letter-spacing:-5.196713px;}
.ls1f_c01143{letter-spacing:-4.770000px;}
.ls1c_c01143{letter-spacing:-4.496625px;}
.ls14_c01143{letter-spacing:-4.456463px;}
.ls11_c01143{letter-spacing:-4.454858px;}
.ls15_c01143{letter-spacing:-4.261275px;}
.ls16_c01143{letter-spacing:-4.101975px;}
.ls1d_c01143{letter-spacing:-3.975000px;}
.lsf_c01143{letter-spacing:-3.962400px;}
.ls8_c01143{letter-spacing:-3.717000px;}
.lsd_c01143{letter-spacing:-3.588825px;}
.ls1e_c01143{letter-spacing:-3.142800px;}
.lsc_c01143{letter-spacing:-3.102000px;}
.ls7_c01143{letter-spacing:-2.968875px;}
.ls19_c01143{letter-spacing:-2.385000px;}
.ls3_c01143{letter-spacing:-2.378925px;}
.ls17_c01143{letter-spacing:-2.272500px;}
.ls1_c01143{letter-spacing:-2.229413px;}
.lse_c01143{letter-spacing:-1.590000px;}
.ls5_c01143{letter-spacing:-1.489163px;}
.ls6_c01143{letter-spacing:-0.794205px;}
.ls2_c01143{letter-spacing:-0.740250px;}
.ls4_c01143{letter-spacing:0.000000px;}
.ls0_c01143{letter-spacing:0.794205px;}
.ls12_c01143{letter-spacing:2.722200px;}
.lsb_c01143{letter-spacing:3.749288px;}
.ls18_c01143{letter-spacing:4.684838px;}
.ls20_c01143{letter-spacing:4.803750px;}
.ls9_c01143{letter-spacing:9.656250px;}
.ls10_c01143{letter-spacing:12.599955px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:0.000000px;}
._b_c01143{margin-left:-8.029564px;}
._3_c01143{margin-left:-6.924562px;}
._4_c01143{margin-left:-4.637216px;}
._5_c01143{margin-left:-3.148796px;}
._1_c01143{margin-left:-1.299583px;}
._0_c01143{width:2.042701px;}
._6_c01143{width:3.067610px;}
._c_c01143{width:4.741121px;}
._7_c01143{width:6.075087px;}
._9_c01143{width:7.850627px;}
._2_c01143{width:8.979209px;}
._e_c01143{width:10.183950px;}
._d_c01143{width:11.221964px;}
._10_c01143{width:12.555989px;}
._a_c01143{width:13.944936px;}
._11_c01143{width:15.820627px;}
._f_c01143{width:20.689434px;}
._8_c01143{width:23.639198px;}
._12_c01143{width:26.956600px;}
.fc0_c01143{color:transparent;}
.fs8_c01143{font-size:75.750000px;}
.fs9_c01143{font-size:76.500000px;}
.fs5_c01143{font-size:77.250000px;}
.fs2_c01143{font-size:78.000000px;}
.fs0_c01143{font-size:78.750000px;}
.fs3_c01143{font-size:79.500000px;}
.fs4_c01143{font-size:80.250000px;}
.fsb_c01143{font-size:81.000000px;}
.fs1_c01143{font-size:81.750000px;}
.fs6_c01143{font-size:82.500000px;}
.fs7_c01143{font-size:84.750000px;}
.fsa_c01143{font-size:114.000000px;}
.y0_c01143{bottom:0.000000px;}
.y18_c01143{bottom:212.400900px;}
.y17_c01143{bottom:241.920600px;}
.y16_c01143{bottom:271.799535px;}
.y15_c01143{bottom:330.479685px;}
.y14_c01143{bottom:360.719535px;}
.y13_c01143{bottom:390.959385px;}
.y12_c01143{bottom:451.080000px;}
.y11_c01143{bottom:480.960570px;}
.y10_c01143{bottom:510.480285px;}
.yf_c01143{bottom:540.360900px;}
.ye_c01143{bottom:599.400285px;}
.yd_c01143{bottom:629.280900px;}
.yc_c01143{bottom:659.879970px;}
.yb_c01143{bottom:659.880315px;}
.ya_c01143{bottom:839.160465px;}
.y9_c01143{bottom:869.039340px;}
.y7_c01143{bottom:899.280465px;}
.y8_c01143{bottom:899.280855px;}
.y6_c01143{bottom:958.679715px;}
.y5_c01143{bottom:988.200990px;}
.y4_c01143{bottom:1018.440855px;}
.y3_c01143{bottom:1078.920600px;}
.y2_c01143{bottom:1108.799565px;}
.y1_c01143{bottom:1138.320825px;}
.hf_c01143{height:74.307495px;}
.hd_c01143{height:75.080566px;}
.h6_c01143{height:75.778931px;}
.he_c01143{height:75.816650px;}
.hc_c01143{height:76.514648px;}
.h3_c01143{height:76.552734px;}
.h7_c01143{height:77.250366px;}
.h1_c01143{height:77.288818px;}
.h4_c01143{height:77.986084px;}
.h5_c01143{height:78.760986px;}
.hb_c01143{height:79.004883px;}
.h12_c01143{height:79.365234px;}
.h13_c01143{height:79.497070px;}
.h11_c01143{height:80.121094px;}
.h9_c01143{height:80.193237px;}
.h2_c01143{height:80.233154px;}
.h8_c01143{height:80.969238px;}
.ha_c01143{height:83.756836px;}
.h10_c01143{height:118.898438px;}
.h0_c01143{height:1263.000000px;}
.w0_c01143{width:892.500000px;}
.x0_c01143{left:0.000000px;}
.x9_c01143{left:134.279850px;}
.x1_c01143{left:135.359250px;}
.x6_c01143{left:136.438665px;}
.x16_c01143{left:156.599700px;}
.x1d_c01143{left:167.398665px;}
.x15_c01143{left:168.479685px;}
.x17_c01143{left:188.279850px;}
.x27_c01143{left:205.199385px;}
.x18_c01143{left:218.158785px;}
.x10_c01143{left:219.599100px;}
.x14_c01143{left:230.399850px;}
.x11_c01143{left:241.198785px;}
.xa_c01143{left:244.079385px;}
.x12_c01143{left:261.359850px;}
.xb_c01143{left:275.398635px;}
.x13_c01143{left:295.198785px;}
.xc_c01143{left:303.838950px;}
.x29_c01143{left:305.279250px;}
.x19_c01143{left:324.000000px;}
.xd_c01143{left:331.918350px;}
.x2a_c01143{left:335.878350px;}
.x2_c01143{left:338.038950px;}
.x1a_c01143{left:339.120000px;}
.x28_c01143{left:342.359850px;}
.x2b_c01143{left:346.679100px;}
.x2c_c01143{left:354.958350px;}
.x24_c01143{left:358.918350px;}
.x3_c01143{left:362.878350px;}
.xe_c01143{left:365.759100px;}
.x2d_c01143{left:368.998950px;}
.x4_c01143{left:377.639100px;}
.x25_c01143{left:391.679670px;}
.xf_c01143{left:396.719100px;}
.x7_c01143{left:397.798515px;}
.x8_c01143{left:410.759535px;}
.x1e_c01143{left:413.279250px;}
.x2e_c01143{left:428.758530px;}
.x1f_c01143{left:430.198785px;}
.x26_c01143{left:433.438665px;}
.x2f_c01143{left:443.159820px;}
.x1b_c01143{left:505.439250px;}
.x1c_c01143{left:537.119385px;}
.x5_c01143{left:553.318770px;}
.x20_c01143{left:621.718545px;}
.x21_c01143{left:648.000000px;}
.x22_c01143{left:685.078770px;}
.x23_c01143{left:758.519670px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls13_c01143{letter-spacing:-9.904300pt;}
.ls1a_c01143{letter-spacing:-9.079467pt;}
.ls1b_c01143{letter-spacing:-4.713467pt;}
.lsa_c01143{letter-spacing:-4.619300pt;}
.ls1f_c01143{letter-spacing:-4.240000pt;}
.ls1c_c01143{letter-spacing:-3.997000pt;}
.ls14_c01143{letter-spacing:-3.961300pt;}
.ls11_c01143{letter-spacing:-3.959873pt;}
.ls15_c01143{letter-spacing:-3.787800pt;}
.ls16_c01143{letter-spacing:-3.646200pt;}
.ls1d_c01143{letter-spacing:-3.533333pt;}
.lsf_c01143{letter-spacing:-3.522133pt;}
.ls8_c01143{letter-spacing:-3.304000pt;}
.lsd_c01143{letter-spacing:-3.190067pt;}
.ls1e_c01143{letter-spacing:-2.793600pt;}
.lsc_c01143{letter-spacing:-2.757333pt;}
.ls7_c01143{letter-spacing:-2.639000pt;}
.ls19_c01143{letter-spacing:-2.120000pt;}
.ls3_c01143{letter-spacing:-2.114600pt;}
.ls17_c01143{letter-spacing:-2.020000pt;}
.ls1_c01143{letter-spacing:-1.981700pt;}
.lse_c01143{letter-spacing:-1.413333pt;}
.ls5_c01143{letter-spacing:-1.323700pt;}
.ls6_c01143{letter-spacing:-0.705960pt;}
.ls2_c01143{letter-spacing:-0.658000pt;}
.ls4_c01143{letter-spacing:0.000000pt;}
.ls0_c01143{letter-spacing:0.705960pt;}
.ls12_c01143{letter-spacing:2.419733pt;}
.lsb_c01143{letter-spacing:3.332700pt;}
.ls18_c01143{letter-spacing:4.164300pt;}
.ls20_c01143{letter-spacing:4.270000pt;}
.ls9_c01143{letter-spacing:8.583333pt;}
.ls10_c01143{letter-spacing:11.199960pt;}
.ws0_c01143{word-spacing:0.000000pt;}
._b_c01143{margin-left:-7.137390pt;}
._3_c01143{margin-left:-6.155166pt;}
._4_c01143{margin-left:-4.121970pt;}
._5_c01143{margin-left:-2.798930pt;}
._1_c01143{margin-left:-1.155185pt;}
._0_c01143{width:1.815734pt;}
._6_c01143{width:2.726764pt;}
._c_c01143{width:4.214330pt;}
._7_c01143{width:5.400077pt;}
._9_c01143{width:6.978335pt;}
._2_c01143{width:7.981519pt;}
._e_c01143{width:9.052400pt;}
._d_c01143{width:9.975079pt;}
._10_c01143{width:11.160879pt;}
._a_c01143{width:12.395499pt;}
._11_c01143{width:14.062780pt;}
._f_c01143{width:18.390608pt;}
._8_c01143{width:21.012620pt;}
._12_c01143{width:23.961423pt;}
.fs8_c01143{font-size:67.333333pt;}
.fs9_c01143{font-size:68.000000pt;}
.fs5_c01143{font-size:68.666667pt;}
.fs2_c01143{font-size:69.333333pt;}
.fs0_c01143{font-size:70.000000pt;}
.fs3_c01143{font-size:70.666667pt;}
.fs4_c01143{font-size:71.333333pt;}
.fsb_c01143{font-size:72.000000pt;}
.fs1_c01143{font-size:72.666667pt;}
.fs6_c01143{font-size:73.333333pt;}
.fs7_c01143{font-size:75.333333pt;}
.fsa_c01143{font-size:101.333333pt;}
.y0_c01143{bottom:0.000000pt;}
.y18_c01143{bottom:188.800800pt;}
.y17_c01143{bottom:215.040533pt;}
.y16_c01143{bottom:241.599587pt;}
.y15_c01143{bottom:293.759720pt;}
.y14_c01143{bottom:320.639587pt;}
.y13_c01143{bottom:347.519453pt;}
.y12_c01143{bottom:400.960000pt;}
.y11_c01143{bottom:427.520507pt;}
.y10_c01143{bottom:453.760253pt;}
.yf_c01143{bottom:480.320800pt;}
.ye_c01143{bottom:532.800253pt;}
.yd_c01143{bottom:559.360800pt;}
.yc_c01143{bottom:586.559973pt;}
.yb_c01143{bottom:586.560280pt;}
.ya_c01143{bottom:745.920413pt;}
.y9_c01143{bottom:772.479413pt;}
.y7_c01143{bottom:799.360413pt;}
.y8_c01143{bottom:799.360760pt;}
.y6_c01143{bottom:852.159747pt;}
.y5_c01143{bottom:878.400880pt;}
.y4_c01143{bottom:905.280760pt;}
.y3_c01143{bottom:959.040533pt;}
.y2_c01143{bottom:985.599613pt;}
.y1_c01143{bottom:1011.840733pt;}
.hf_c01143{height:66.051107pt;}
.hd_c01143{height:66.738281pt;}
.h6_c01143{height:67.359049pt;}
.he_c01143{height:67.392578pt;}
.hc_c01143{height:68.013021pt;}
.h3_c01143{height:68.046875pt;}
.h7_c01143{height:68.666992pt;}
.h1_c01143{height:68.701172pt;}
.h4_c01143{height:69.320964pt;}
.h5_c01143{height:70.009766pt;}
.hb_c01143{height:70.226562pt;}
.h12_c01143{height:70.546875pt;}
.h13_c01143{height:70.664062pt;}
.h11_c01143{height:71.218750pt;}
.h9_c01143{height:71.282878pt;}
.h2_c01143{height:71.318359pt;}
.h8_c01143{height:71.972656pt;}
.ha_c01143{height:74.450521pt;}
.h10_c01143{height:105.687500pt;}
.h0_c01143{height:1122.666667pt;}
.w0_c01143{width:793.333333pt;}
.x0_c01143{left:0.000000pt;}
.x9_c01143{left:119.359867pt;}
.x1_c01143{left:120.319333pt;}
.x6_c01143{left:121.278813pt;}
.x16_c01143{left:139.199733pt;}
.x1d_c01143{left:148.798813pt;}
.x15_c01143{left:149.759720pt;}
.x17_c01143{left:167.359867pt;}
.x27_c01143{left:182.399453pt;}
.x18_c01143{left:193.918920pt;}
.x10_c01143{left:195.199200pt;}
.x14_c01143{left:204.799867pt;}
.x11_c01143{left:214.398920pt;}
.xa_c01143{left:216.959453pt;}
.x12_c01143{left:232.319867pt;}
.xb_c01143{left:244.798787pt;}
.x13_c01143{left:262.398920pt;}
.xc_c01143{left:270.079067pt;}
.x29_c01143{left:271.359333pt;}
.x19_c01143{left:288.000000pt;}
.xd_c01143{left:295.038533pt;}
.x2a_c01143{left:298.558533pt;}
.x2_c01143{left:300.479067pt;}
.x1a_c01143{left:301.440000pt;}
.x28_c01143{left:304.319867pt;}
.x2b_c01143{left:308.159200pt;}
.x2c_c01143{left:315.518533pt;}
.x24_c01143{left:319.038533pt;}
.x3_c01143{left:322.558533pt;}
.xe_c01143{left:325.119200pt;}
.x2d_c01143{left:327.999067pt;}
.x4_c01143{left:335.679200pt;}
.x25_c01143{left:348.159707pt;}
.xf_c01143{left:352.639200pt;}
.x7_c01143{left:353.598680pt;}
.x8_c01143{left:365.119587pt;}
.x1e_c01143{left:367.359333pt;}
.x2e_c01143{left:381.118693pt;}
.x1f_c01143{left:382.398920pt;}
.x26_c01143{left:385.278813pt;}
.x2f_c01143{left:393.919840pt;}
.x1b_c01143{left:449.279333pt;}
.x1c_c01143{left:477.439453pt;}
.x5_c01143{left:491.838907pt;}
.x20_c01143{left:552.638707pt;}
.x21_c01143{left:576.000000pt;}
.x22_c01143{left:608.958907pt;}
.x23_c01143{left:674.239707pt;}
}





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

.ir_c01144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_21a0e5001d4fbf37344e0d50.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01144;src:url('chunks/assets/font_5831a5b535967a4d288cfed1.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01144;src:url('chunks/assets/font_509da31585893a1e04057c93.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01144;src:url('chunks/assets/font_b9db19942c3b926fa007bd32.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01144;src:url('chunks/assets/font_dfd49e2e38c4d15f002354cc.woff2')format("woff");}.ff5_c01144{font-family:ff5_c01144;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01144;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff6_c01144{font-family:ff6_c01144;line-height:1.432129;font-style:normal;font-weight: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_c01144;src:url('chunks/assets/font_6ece251466142203b6984d3a.woff2')format("woff");}.ff7_c01144{font-family:ff7_c01144;line-height:1.432129;font-style:normal;font-weight: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_c01144;src:url('chunks/assets/font_c89dfb1c677133f4b98a8c8a.woff2')format("woff");}.ff8_c01144{font-family:ff8_c01144;line-height:1.432129;font-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_c01144{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m8_c01144{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.m23_c01144{transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195946,0.000000,0.000000,0.250000,0,0);}
.m20_c01144{transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211009,0.000000,0.000000,0.250000,0,0);}
.m7_c01144{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m11_c01144{transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222543,0.000000,0.000000,0.250000,0,0);}
.m29_c01144{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m25_c01144{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m1d_c01144{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m21_c01144{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m1f_c01144{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m6_c01144{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m10_c01144{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m22_c01144{transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230583,0.000000,0.000000,0.250000,0,0);}
.m24_c01144{transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);}
.m15_c01144{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m3_c01144{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m4_c01144{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.ma_c01144{transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235981,0.000000,0.000000,0.250000,0,0);}
.m26_c01144{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m19_c01144{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.md_c01144{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m0_c01144{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.mc_c01144{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.mf_c01144{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m2_c01144{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m1c_c01144{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m27_c01144{transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247549,0.000000,0.000000,0.250000,0,0);}
.m1_c01144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01144{transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);}
.me_c01144{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m17_c01144{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m1e_c01144{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_c01144{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m28_c01144{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);}
.m12_c01144{transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);}
.m1b_c01144{transform:matrix(0.360656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360656,0.000000,0.000000,0.250000,0,0);}
.m16_c01144{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.m1a_c01144{transform:matrix(0.389831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389831,0.000000,0.000000,0.250000,0,0);}
.m18_c01144{transform:matrix(0.406915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406915,0.000000,0.000000,0.250000,0,0);}
.m14_c01144{transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464286,0.000000,0.000000,0.250000,0,0);}
.m13_c01144{transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);}
.v0_c01144{vertical-align:0.000000px;}
.ls1d_c01144{letter-spacing:-18.179273px;}
.ls12_c01144{letter-spacing:-17.705325px;}
.ls33_c01144{letter-spacing:-12.991800px;}
.ls34_c01144{letter-spacing:-11.771550px;}
.ls32_c01144{letter-spacing:-9.726300px;}
.ls31_c01144{letter-spacing:-8.915775px;}
.ls2c_c01144{letter-spacing:-8.886225px;}
.ls27_c01144{letter-spacing:-8.105250px;}
.ls38_c01144{letter-spacing:-5.890500px;}
.ls24_c01144{letter-spacing:-5.672873px;}
.ls9_c01144{letter-spacing:-5.351145px;}
.ls10_c01144{letter-spacing:-5.185935px;}
.ls17_c01144{letter-spacing:-5.054400px;}
.ls26_c01144{letter-spacing:-4.862348px;}
.ls2f_c01144{letter-spacing:-4.786875px;}
.ls14_c01144{letter-spacing:-4.586355px;}
.ls4_c01144{letter-spacing:-4.504500px;}
.ls25_c01144{letter-spacing:-4.053428px;}
.ls29_c01144{letter-spacing:-4.050000px;}
.ls3_c01144{letter-spacing:-3.892118px;}
.ls19_c01144{letter-spacing:-3.823950px;}
.ls18_c01144{letter-spacing:-3.823875px;}
.ls2b_c01144{letter-spacing:-3.283875px;}
.ls1a_c01144{letter-spacing:-3.242903px;}
.ls16_c01144{letter-spacing:-3.142800px;}
.ls8_c01144{letter-spacing:-3.060750px;}
.lsa_c01144{letter-spacing:-2.431575px;}
.lsb_c01144{letter-spacing:-2.427158px;}
.ls30_c01144{letter-spacing:-2.382623px;}
.ls5_c01144{letter-spacing:-2.288805px;}
.ls22_c01144{letter-spacing:-1.924875px;}
.ls37_c01144{letter-spacing:-1.757700px;}
.ls2d_c01144{letter-spacing:-1.647240px;}
.ls1c_c01144{letter-spacing:-1.632533px;}
.ls15_c01144{letter-spacing:-1.621050px;}
.ls11_c01144{letter-spacing:-1.589753px;}
.ls6_c01144{letter-spacing:-1.526400px;}
.ls36_c01144{letter-spacing:-1.515465px;}
.ls2e_c01144{letter-spacing:-0.811125px;}
.ls2a_c01144{letter-spacing:-0.810525px;}
.ls7_c01144{letter-spacing:-0.763200px;}
.lsc_c01144{letter-spacing:0.000000px;}
.ls0_c01144{letter-spacing:0.763200px;}
.ls13_c01144{letter-spacing:0.773393px;}
.ls2_c01144{letter-spacing:0.810525px;}
.ls35_c01144{letter-spacing:1.584000px;}
.ls1e_c01144{letter-spacing:1.640625px;}
.ls20_c01144{letter-spacing:2.053673px;}
.ls21_c01144{letter-spacing:2.378475px;}
.ls28_c01144{letter-spacing:2.497500px;}
.ls1f_c01144{letter-spacing:2.899575px;}
.ls1b_c01144{letter-spacing:3.060750px;}
.ls23_c01144{letter-spacing:5.197200px;}
.lsd_c01144{letter-spacing:5.723318px;}
.lse_c01144{letter-spacing:5.992875px;}
.lsf_c01144{letter-spacing:12.840068px;}
.ls1_c01144{letter-spacing:27.557850px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01144{word-spacing:0.000000px;}
._a_c01144{margin-left:-47.281560px;}
._6_c01144{margin-left:-17.679393px;}
._d_c01144{margin-left:-4.537554px;}
._f_c01144{margin-left:-1.110187px;}
._1_c01144{width:1.828072px;}
._3_c01144{width:3.768117px;}
._e_c01144{width:5.414782px;}
._9_c01144{width:6.430021px;}
._2_c01144{width:7.927434px;}
._8_c01144{width:9.293978px;}
._0_c01144{width:11.305145px;}
._4_c01144{width:13.216814px;}
._b_c01144{width:16.915809px;}
._7_c01144{width:19.028513px;}
._5_c01144{width:21.650724px;}
._10_c01144{width:23.898128px;}
._c_c01144{width:33.070899px;}
._11_c01144{width:35.124809px;}
.fc0_c01144{color:transparent;}
.fsf_c01144{font-size:24.000000px;}
.fse_c01144{font-size:26.250000px;}
.fs10_c01144{font-size:30.000000px;}
.fs11_c01144{font-size:36.750000px;}
.fs15_c01144{font-size:44.250000px;}
.fs16_c01144{font-size:45.750000px;}
.fs12_c01144{font-size:54.750000px;}
.fs6_c01144{font-size:59.250000px;}
.fs14_c01144{font-size:69.750000px;}
.fs13_c01144{font-size:70.500000px;}
.fs17_c01144{font-size:75.000000px;}
.fs7_c01144{font-size:76.500000px;}
.fsc_c01144{font-size:77.250000px;}
.fsb_c01144{font-size:78.000000px;}
.fs5_c01144{font-size:78.750000px;}
.fs2_c01144{font-size:79.500000px;}
.fs3_c01144{font-size:80.250000px;}
.fsa_c01144{font-size:81.000000px;}
.fs0_c01144{font-size:81.750000px;}
.fs1_c01144{font-size:82.500000px;}
.fs9_c01144{font-size:83.250000px;}
.fs4_c01144{font-size:84.000000px;}
.fs18_c01144{font-size:88.500000px;}
.fs8_c01144{font-size:90.750000px;}
.fsd_c01144{font-size:129.750000px;}
.y0_c01144{bottom:0.000000px;}
.y1e_c01144{bottom:181.080000px;}
.y1d_c01144{bottom:210.601335px;}
.y1c_c01144{bottom:240.480285px;}
.y1b_c01144{bottom:298.801185px;}
.y1a_c01144{bottom:328.320900px;}
.y19_c01144{bottom:358.560750px;}
.y18_c01144{bottom:418.681185px;}
.y17_c01144{bottom:448.921185px;}
.y16_c01144{bottom:478.440900px;}
.y15_c01144{bottom:508.319820px;}
.y14_c01144{bottom:568.081050px;}
.y13_c01144{bottom:597.239820px;}
.y12_c01144{bottom:627.120435px;}
.y11_c01144{bottom:686.879970px;}
.y10_c01144{bottom:716.760720px;}
.yf_c01144{bottom:747.000600px;}
.ye_c01144{bottom:756.720105px;}
.yd_c01144{bottom:761.041035px;}
.yc_c01144{bottom:806.760135px;}
.yb_c01144{bottom:837.360165px;}
.ya_c01144{bottom:866.880615px;}
.y9_c01144{bottom:926.640105px;}
.y8_c01144{bottom:956.520720px;}
.y7_c01144{bottom:956.520885px;}
.y6_c01144{bottom:986.760675px;}
.y5_c01144{bottom:1046.520270px;}
.y4_c01144{bottom:1077.480285px;}
.y3_c01144{bottom:1106.640750px;}
.y2_c01144{bottom:1106.640810px;}
.y1_c01144{bottom:1136.880615px;}
.h13_c01144{height:25.031250px;}
.h12_c01144{height:25.762939px;}
.h14_c01144{height:27.377930px;}
.h15_c01144{height:31.289062px;}
.h16_c01144{height:38.329102px;}
.h1b_c01144{height:44.878784px;}
.h1a_c01144{height:46.151367px;}
.h17_c01144{height:55.177734px;}
.h8_c01144{height:58.555664px;}
.h19_c01144{height:70.294922px;}
.h18_c01144{height:71.050781px;}
.h1d_c01144{height:73.608398px;}
.h9_c01144{height:75.080566px;}
.hf_c01144{height:75.816650px;}
.h23_c01144{height:77.097656px;}
.h7_c01144{height:77.250366px;}
.h1f_c01144{height:77.853516px;}
.h3_c01144{height:78.024902px;}
.he_c01144{height:78.609375px;}
.h4_c01144{height:78.721802px;}
.hd_c01144{height:79.457520px;}
.h24_c01144{height:79.497070px;}
.h5_c01144{height:80.193237px;}
.h1c_c01144{height:80.233154px;}
.h1e_c01144{height:80.791992px;}
.ha_c01144{height:80.876953px;}
.h2_c01144{height:80.969238px;}
.h25_c01144{height:81.533203px;}
.h10_c01144{height:81.705322px;}
.h20_c01144{height:82.274414px;}
.h1_c01144{height:82.388672px;}
.h6_c01144{height:83.015625px;}
.h22_c01144{height:83.144531px;}
.hc_c01144{height:83.900391px;}
.h21_c01144{height:87.462891px;}
.hb_c01144{height:89.686523px;}
.h11_c01144{height:135.325195px;}
.h0_c01144{height:1263.000000px;}
.w0_c01144{width:892.500000px;}
.x0_c01144{left:0.000000px;}
.xa_c01144{left:131.758500px;}
.x1_c01144{left:132.839565px;}
.x28_c01144{left:133.918950px;}
.x1b_c01144{left:135.359250px;}
.x20_c01144{left:158.040000px;}
.x2b_c01144{left:159.478665px;}
.x17_c01144{left:161.639100px;}
.x24_c01144{left:165.958350px;}
.x2_c01144{left:207.359850px;}
.x12_c01144{left:213.119385px;}
.x5_c01144{left:219.958350px;}
.x1c_c01144{left:221.398635px;}
.x18_c01144{left:223.559100px;}
.x29_c01144{left:228.598500px;}
.x6_c01144{left:235.439250px;}
.x19_c01144{left:236.518635px;}
.x3_c01144{left:237.599700px;}
.x1f_c01144{left:238.679100px;}
.x13_c01144{left:246.599100px;}
.xb_c01144{left:248.759535px;}
.x2a_c01144{left:258.120000px;}
.x1d_c01144{left:263.518635px;}
.x27_c01144{left:270.359250px;}
.x10_c01144{left:276.838950px;}
.x14_c01144{left:279.719535px;}
.xc_c01144{left:293.399250px;}
.x7_c01144{left:297.000000px;}
.x15_c01144{left:299.158785px;}
.x1a_c01144{left:304.918350px;}
.x25_c01144{left:310.318800px;}
.xd_c01144{left:313.558635px;}
.x11_c01144{left:317.879535px;}
.x1e_c01144{left:324.359250px;}
.x16_c01144{left:329.759535px;}
.xe_c01144{left:347.758500px;}
.x26_c01144{left:353.158785px;}
.x8_c01144{left:363.959385px;}
.x9_c01144{left:386.638500px;}
.xf_c01144{left:434.878920px;}
.x21_c01144{left:519.479685px;}
.x22_c01144{left:533.879520px;}
.x23_c01144{left:575.999400px;}
.x4_c01144{left:678.958335px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls1d_c01144{letter-spacing:-16.159353pt;}
.ls12_c01144{letter-spacing:-15.738067pt;}
.ls33_c01144{letter-spacing:-11.548267pt;}
.ls34_c01144{letter-spacing:-10.463600pt;}
.ls32_c01144{letter-spacing:-8.645600pt;}
.ls31_c01144{letter-spacing:-7.925133pt;}
.ls2c_c01144{letter-spacing:-7.898867pt;}
.ls27_c01144{letter-spacing:-7.204667pt;}
.ls38_c01144{letter-spacing:-5.236000pt;}
.ls24_c01144{letter-spacing:-5.042553pt;}
.ls9_c01144{letter-spacing:-4.756573pt;}
.ls10_c01144{letter-spacing:-4.609720pt;}
.ls17_c01144{letter-spacing:-4.492800pt;}
.ls26_c01144{letter-spacing:-4.322087pt;}
.ls2f_c01144{letter-spacing:-4.255000pt;}
.ls14_c01144{letter-spacing:-4.076760pt;}
.ls4_c01144{letter-spacing:-4.004000pt;}
.ls25_c01144{letter-spacing:-3.603047pt;}
.ls29_c01144{letter-spacing:-3.600000pt;}
.ls3_c01144{letter-spacing:-3.459660pt;}
.ls19_c01144{letter-spacing:-3.399067pt;}
.ls18_c01144{letter-spacing:-3.399000pt;}
.ls2b_c01144{letter-spacing:-2.919000pt;}
.ls1a_c01144{letter-spacing:-2.882580pt;}
.ls16_c01144{letter-spacing:-2.793600pt;}
.ls8_c01144{letter-spacing:-2.720667pt;}
.lsa_c01144{letter-spacing:-2.161400pt;}
.lsb_c01144{letter-spacing:-2.157473pt;}
.ls30_c01144{letter-spacing:-2.117887pt;}
.ls5_c01144{letter-spacing:-2.034493pt;}
.ls22_c01144{letter-spacing:-1.711000pt;}
.ls37_c01144{letter-spacing:-1.562400pt;}
.ls2d_c01144{letter-spacing:-1.464213pt;}
.ls1c_c01144{letter-spacing:-1.451140pt;}
.ls15_c01144{letter-spacing:-1.440933pt;}
.ls11_c01144{letter-spacing:-1.413113pt;}
.ls6_c01144{letter-spacing:-1.356800pt;}
.ls36_c01144{letter-spacing:-1.347080pt;}
.ls2e_c01144{letter-spacing:-0.721000pt;}
.ls2a_c01144{letter-spacing:-0.720467pt;}
.ls7_c01144{letter-spacing:-0.678400pt;}
.lsc_c01144{letter-spacing:0.000000pt;}
.ls0_c01144{letter-spacing:0.678400pt;}
.ls13_c01144{letter-spacing:0.687460pt;}
.ls2_c01144{letter-spacing:0.720467pt;}
.ls35_c01144{letter-spacing:1.408000pt;}
.ls1e_c01144{letter-spacing:1.458333pt;}
.ls20_c01144{letter-spacing:1.825487pt;}
.ls21_c01144{letter-spacing:2.114200pt;}
.ls28_c01144{letter-spacing:2.220000pt;}
.ls1f_c01144{letter-spacing:2.577400pt;}
.ls1b_c01144{letter-spacing:2.720667pt;}
.ls23_c01144{letter-spacing:4.619733pt;}
.lsd_c01144{letter-spacing:5.087393pt;}
.lse_c01144{letter-spacing:5.327000pt;}
.lsf_c01144{letter-spacing:11.413393pt;}
.ls1_c01144{letter-spacing:24.495867pt;}
.ws0_c01144{word-spacing:0.000000pt;}
._a_c01144{margin-left:-42.028053pt;}
._6_c01144{margin-left:-15.715016pt;}
._d_c01144{margin-left:-4.033382pt;}
._f_c01144{margin-left:-0.986833pt;}
._1_c01144{width:1.624953pt;}
._3_c01144{width:3.349437pt;}
._e_c01144{width:4.813139pt;}
._9_c01144{width:5.715574pt;}
._2_c01144{width:7.046608pt;}
._8_c01144{width:8.261314pt;}
._0_c01144{width:10.049017pt;}
._4_c01144{width:11.748279pt;}
._b_c01144{width:15.036275pt;}
._7_c01144{width:16.914234pt;}
._5_c01144{width:19.245088pt;}
._10_c01144{width:21.242781pt;}
._c_c01144{width:29.396355pt;}
._11_c01144{width:31.222052pt;}
.fsf_c01144{font-size:21.333333pt;}
.fse_c01144{font-size:23.333333pt;}
.fs10_c01144{font-size:26.666667pt;}
.fs11_c01144{font-size:32.666667pt;}
.fs15_c01144{font-size:39.333333pt;}
.fs16_c01144{font-size:40.666667pt;}
.fs12_c01144{font-size:48.666667pt;}
.fs6_c01144{font-size:52.666667pt;}
.fs14_c01144{font-size:62.000000pt;}
.fs13_c01144{font-size:62.666667pt;}
.fs17_c01144{font-size:66.666667pt;}
.fs7_c01144{font-size:68.000000pt;}
.fsc_c01144{font-size:68.666667pt;}
.fsb_c01144{font-size:69.333333pt;}
.fs5_c01144{font-size:70.000000pt;}
.fs2_c01144{font-size:70.666667pt;}
.fs3_c01144{font-size:71.333333pt;}
.fsa_c01144{font-size:72.000000pt;}
.fs0_c01144{font-size:72.666667pt;}
.fs1_c01144{font-size:73.333333pt;}
.fs9_c01144{font-size:74.000000pt;}
.fs4_c01144{font-size:74.666667pt;}
.fs18_c01144{font-size:78.666667pt;}
.fs8_c01144{font-size:80.666667pt;}
.fsd_c01144{font-size:115.333333pt;}
.y0_c01144{bottom:0.000000pt;}
.y1e_c01144{bottom:160.960000pt;}
.y1d_c01144{bottom:187.201187pt;}
.y1c_c01144{bottom:213.760253pt;}
.y1b_c01144{bottom:265.601053pt;}
.y1a_c01144{bottom:291.840800pt;}
.y19_c01144{bottom:318.720667pt;}
.y18_c01144{bottom:372.161053pt;}
.y17_c01144{bottom:399.041053pt;}
.y16_c01144{bottom:425.280800pt;}
.y15_c01144{bottom:451.839840pt;}
.y14_c01144{bottom:504.960933pt;}
.y13_c01144{bottom:530.879840pt;}
.y12_c01144{bottom:557.440387pt;}
.y11_c01144{bottom:610.559973pt;}
.y10_c01144{bottom:637.120640pt;}
.yf_c01144{bottom:664.000533pt;}
.ye_c01144{bottom:672.640093pt;}
.yd_c01144{bottom:676.480920pt;}
.yc_c01144{bottom:717.120120pt;}
.yb_c01144{bottom:744.320147pt;}
.ya_c01144{bottom:770.560547pt;}
.y9_c01144{bottom:823.680093pt;}
.y8_c01144{bottom:850.240640pt;}
.y7_c01144{bottom:850.240787pt;}
.y6_c01144{bottom:877.120600pt;}
.y5_c01144{bottom:930.240240pt;}
.y4_c01144{bottom:957.760253pt;}
.y3_c01144{bottom:983.680667pt;}
.y2_c01144{bottom:983.680720pt;}
.y1_c01144{bottom:1010.560547pt;}
.h13_c01144{height:22.250000pt;}
.h12_c01144{height:22.900391pt;}
.h14_c01144{height:24.335938pt;}
.h15_c01144{height:27.812500pt;}
.h16_c01144{height:34.070312pt;}
.h1b_c01144{height:39.892253pt;}
.h1a_c01144{height:41.023438pt;}
.h17_c01144{height:49.046875pt;}
.h8_c01144{height:52.049479pt;}
.h19_c01144{height:62.484375pt;}
.h18_c01144{height:63.156250pt;}
.h1d_c01144{height:65.429688pt;}
.h9_c01144{height:66.738281pt;}
.hf_c01144{height:67.392578pt;}
.h23_c01144{height:68.531250pt;}
.h7_c01144{height:68.666992pt;}
.h1f_c01144{height:69.203125pt;}
.h3_c01144{height:69.355469pt;}
.he_c01144{height:69.875000pt;}
.h4_c01144{height:69.974935pt;}
.hd_c01144{height:70.628906pt;}
.h24_c01144{height:70.664062pt;}
.h5_c01144{height:71.282878pt;}
.h1c_c01144{height:71.318359pt;}
.h1e_c01144{height:71.815104pt;}
.ha_c01144{height:71.890625pt;}
.h2_c01144{height:71.972656pt;}
.h25_c01144{height:72.473958pt;}
.h10_c01144{height:72.626953pt;}
.h20_c01144{height:73.132813pt;}
.h1_c01144{height:73.234375pt;}
.h6_c01144{height:73.791667pt;}
.h22_c01144{height:73.906250pt;}
.hc_c01144{height:74.578125pt;}
.h21_c01144{height:77.744792pt;}
.hb_c01144{height:79.721354pt;}
.h11_c01144{height:120.289062pt;}
.h0_c01144{height:1122.666667pt;}
.w0_c01144{width:793.333333pt;}
.x0_c01144{left:0.000000pt;}
.xa_c01144{left:117.118667pt;}
.x1_c01144{left:118.079613pt;}
.x28_c01144{left:119.039067pt;}
.x1b_c01144{left:120.319333pt;}
.x20_c01144{left:140.480000pt;}
.x2b_c01144{left:141.758813pt;}
.x17_c01144{left:143.679200pt;}
.x24_c01144{left:147.518533pt;}
.x2_c01144{left:184.319867pt;}
.x12_c01144{left:189.439453pt;}
.x5_c01144{left:195.518533pt;}
.x1c_c01144{left:196.798787pt;}
.x18_c01144{left:198.719200pt;}
.x29_c01144{left:203.198667pt;}
.x6_c01144{left:209.279333pt;}
.x19_c01144{left:210.238787pt;}
.x3_c01144{left:211.199733pt;}
.x1f_c01144{left:212.159200pt;}
.x13_c01144{left:219.199200pt;}
.xb_c01144{left:221.119587pt;}
.x2a_c01144{left:229.440000pt;}
.x1d_c01144{left:234.238787pt;}
.x27_c01144{left:240.319333pt;}
.x10_c01144{left:246.079067pt;}
.x14_c01144{left:248.639587pt;}
.xc_c01144{left:260.799333pt;}
.x7_c01144{left:264.000000pt;}
.x15_c01144{left:265.918920pt;}
.x1a_c01144{left:271.038533pt;}
.x25_c01144{left:275.838933pt;}
.xd_c01144{left:278.718787pt;}
.x11_c01144{left:282.559587pt;}
.x1e_c01144{left:288.319333pt;}
.x16_c01144{left:293.119587pt;}
.xe_c01144{left:309.118667pt;}
.x26_c01144{left:313.918920pt;}
.x8_c01144{left:323.519453pt;}
.x9_c01144{left:343.678667pt;}
.xf_c01144{left:386.559040pt;}
.x21_c01144{left:461.759720pt;}
.x22_c01144{left:474.559573pt;}
.x23_c01144{left:511.999467pt;}
.x4_c01144{left:603.518520pt;}
}





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

.ir_c01145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_9885050481a312455d95e599.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01145;src:url('chunks/assets/font_f8eded001b4ba5559c0b95be.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01145;src:url('chunks/assets/font_c51af4f6b08cabdd272c8fdd.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01145;src:url('chunks/assets/font_ce84e54bd8161b1c9ead1d7f.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01145;src:url('chunks/assets/font_8fb662e324bf6709f02bd919.woff2')format("woff");}.ff5_c01145{font-family:ff5_c01145;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01145;src:url('chunks/assets/font_e7738be34539906d438c7d0f.woff2')format("woff");}.ff6_c01145{font-family:ff6_c01145;line-height:1.284180;font-style:normal;font-weight: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_c01145;src:url('chunks/assets/font_a070cea6662e316f5e4ffd22.woff2')format("woff");}.ff7_c01145{font-family:ff7_c01145;line-height:1.432129;font-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_c01145{transform:matrix(0.170792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170792,0.000000,0.000000,0.250000,0,0);}
.m6_c01145{transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176991,0.000000,0.000000,0.250000,0,0);}
.m1d_c01145{transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185841,0.000000,0.000000,0.250000,0,0);}
.m20_c01145{transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186688,0.000000,0.000000,0.250000,0,0);}
.m22_c01145{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.mb_c01145{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m10_c01145{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m1_c01145{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.m21_c01145{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4_c01145{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.m7_c01145{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.m9_c01145{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.mc_c01145{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m12_c01145{transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227723,0.000000,0.000000,0.250000,0,0);}
.m1f_c01145{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m8_c01145{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m5_c01145{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.me_c01145{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m15_c01145{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m11_c01145{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1a_c01145{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m0_c01145{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m1b_c01145{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m1e_c01145{transform:matrix(0.239496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239496,0.000000,0.000000,0.250000,0,0);}
.m24_c01145{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1c_c01145{transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240476,0.000000,0.000000,0.250000,0,0);}
.m14_c01145{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.ma_c01145{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m2_c01145{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.mf_c01145{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_c01145{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m19_c01145{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.m18_c01145{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m3_c01145{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m16_c01145{transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278351,0.000000,0.000000,0.250000,0,0);}
.m17_c01145{transform:matrix(0.328358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328358,0.000000,0.000000,0.250000,0,0);}
.md_c01145{transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360417,0.000000,0.000000,0.250000,0,0);}
.v0_c01145{vertical-align:0.000000px;}
.ls23_c01145{letter-spacing:-16.145723px;}
.ls28_c01145{letter-spacing:-6.591008px;}
.ls26_c01145{letter-spacing:-6.548400px;}
.ls7_c01145{letter-spacing:-6.497400px;}
.ls4_c01145{letter-spacing:-6.304470px;}
.ls15_c01145{letter-spacing:-6.171225px;}
.ls1f_c01145{letter-spacing:-5.295750px;}
.ls24_c01145{letter-spacing:-4.862348px;}
.ls1d_c01145{letter-spacing:-3.994875px;}
.ls2b_c01145{letter-spacing:-3.786375px;}
.lsc_c01145{letter-spacing:-3.356100px;}
.ls29_c01145{letter-spacing:-3.242903px;}
.lse_c01145{letter-spacing:-3.089625px;}
.ls17_c01145{letter-spacing:-3.028950px;}
.ls2a_c01145{letter-spacing:-3.027375px;}
.lsa_c01145{letter-spacing:-2.560778px;}
.lsd_c01145{letter-spacing:-2.479725px;}
.lsb_c01145{letter-spacing:-2.431575px;}
.ls2c_c01145{letter-spacing:-2.340000px;}
.ls1b_c01145{letter-spacing:-2.310398px;}
.ls10_c01145{letter-spacing:-1.709325px;}
.ls1a_c01145{letter-spacing:-1.621050px;}
.ls12_c01145{letter-spacing:-1.614218px;}
.ls20_c01145{letter-spacing:-1.540800px;}
.ls19_c01145{letter-spacing:-1.530323px;}
.ls9_c01145{letter-spacing:-0.850650px;}
.ls11_c01145{letter-spacing:-0.810525px;}
.ls16_c01145{letter-spacing:-0.791708px;}
.ls21_c01145{letter-spacing:-0.786450px;}
.ls25_c01145{letter-spacing:-0.785400px;}
.ls6_c01145{letter-spacing:-0.764775px;}
.ls8_c01145{letter-spacing:0.000000px;}
.ls2_c01145{letter-spacing:0.770400px;}
.ls3_c01145{letter-spacing:0.810525px;}
.ls1_c01145{letter-spacing:0.850650px;}
.ls22_c01145{letter-spacing:1.560038px;}
.ls0_c01145{letter-spacing:1.709325px;}
.ls2d_c01145{letter-spacing:2.359350px;}
.ls18_c01145{letter-spacing:3.118500px;}
.ls14_c01145{letter-spacing:3.570345px;}
.ls5_c01145{letter-spacing:4.414628px;}
.lsf_c01145{letter-spacing:6.405915px;}
.ls27_c01145{letter-spacing:6.804000px;}
.ls13_c01145{letter-spacing:16.665000px;}
.ls1c_c01145{letter-spacing:31.660800px;}
.ls1e_c01145{letter-spacing:50.352300px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:0.000000px;}
._5_c01145{margin-left:-14.653582px;}
._9_c01145{margin-left:-12.936368px;}
._b_c01145{margin-left:-7.872849px;}
._a_c01145{margin-left:-4.997697px;}
._0_c01145{margin-left:-3.900696px;}
._c_c01145{margin-left:-2.495741px;}
._2_c01145{width:1.957827px;}
._1_c01145{width:3.915790px;}
._4_c01145{width:5.480836px;}
._e_c01145{width:7.443916px;}
._3_c01145{width:9.748070px;}
._8_c01145{width:11.387646px;}
._7_c01145{width:13.248886px;}
._d_c01145{width:14.477051px;}
._6_c01145{width:18.120499px;}
.fc0_c01145{color:transparent;}
.fs10_c01145{font-size:27.000000px;}
.fsf_c01145{font-size:50.250000px;}
.fse_c01145{font-size:72.750000px;}
.fsa_c01145{font-size:75.000000px;}
.fsc_c01145{font-size:75.750000px;}
.fs5_c01145{font-size:76.500000px;}
.fs2_c01145{font-size:77.250000px;}
.fs3_c01145{font-size:78.000000px;}
.fs12_c01145{font-size:78.750000px;}
.fsb_c01145{font-size:79.500000px;}
.fs4_c01145{font-size:80.250000px;}
.fsd_c01145{font-size:81.000000px;}
.fs9_c01145{font-size:83.250000px;}
.fs7_c01145{font-size:84.000000px;}
.fs1_c01145{font-size:84.750000px;}
.fs11_c01145{font-size:86.250000px;}
.fs13_c01145{font-size:89.250000px;}
.fs8_c01145{font-size:90.000000px;}
.fs6_c01145{font-size:91.500000px;}
.fs0_c01145{font-size:93.000000px;}
.fs14_c01145{font-size:115.500000px;}
.y0_c01145{bottom:0.000000px;}
.y19_c01145{bottom:213.119385px;}
.y18_c01145{bottom:242.639100px;}
.y17_c01145{bottom:272.519685px;}
.y16_c01145{bottom:331.559100px;}
.y15_c01145{bottom:361.078785px;}
.y13_c01145{bottom:391.319865px;}
.y14_c01145{bottom:391.320285px;}
.y12_c01145{bottom:451.080000px;}
.y11_c01145{bottom:480.958920px;}
.y10_c01145{bottom:570.599070px;}
.yf_c01145{bottom:600.118080px;}
.ye_c01145{bottom:630.360300px;}
.yd_c01145{bottom:660.239220px;}
.yc_c01145{bottom:719.998950px;}
.yb_c01145{bottom:753.480285px;}
.ya_c01145{bottom:779.399235px;}
.y9_c01145{bottom:840.239865px;}
.y8_c01145{bottom:870.118740px;}
.y7_c01145{bottom:899.999355px;}
.y6_c01145{bottom:959.038965px;}
.y5_c01145{bottom:988.560240px;}
.y4_c01145{bottom:1018.800105px;}
.y3_c01145{bottom:1079.639100px;}
.y2_c01145{bottom:1109.519715px;}
.y1_c01145{bottom:1139.039340px;}
.h14_c01145{height:28.160156px;}
.h13_c01145{height:52.409180px;}
.hd_c01145{height:73.571777px;}
.h1a_c01145{height:74.862305px;}
.h12_c01145{height:75.875977px;}
.h10_c01145{height:76.341797px;}
.h8_c01145{height:77.097656px;}
.h3_c01145{height:77.853516px;}
.h4_c01145{height:78.609375px;}
.h6_c01145{height:78.721802px;}
.h16_c01145{height:79.365234px;}
.he_c01145{height:80.121094px;}
.h5_c01145{height:80.876953px;}
.h11_c01145{height:81.632812px;}
.hc_c01145{height:81.664673px;}
.h7_c01145{height:83.756836px;}
.hf_c01145{height:83.900391px;}
.h19_c01145{height:84.656250px;}
.h15_c01145{height:85.239258px;}
.h2_c01145{height:85.412109px;}
.ha_c01145{height:87.609375px;}
.h17_c01145{height:88.204102px;}
.h1_c01145{height:91.910156px;}
.h9_c01145{height:92.214844px;}
.hb_c01145{height:93.867188px;}
.h18_c01145{height:120.462891px;}
.h0_c01145{height:1263.000000px;}
.w0_c01145{width:892.500000px;}
.x0_c01145{left:0.000000px;}
.x2c_c01145{left:140.398665px;}
.x1b_c01145{left:141.479715px;}
.x5_c01145{left:142.559100px;}
.xc_c01145{left:143.638500px;}
.x1_c01145{left:144.719565px;}
.xe_c01145{left:151.919565px;}
.x29_c01145{left:174.598500px;}
.x4_c01145{left:178.558665px;}
.x31_c01145{left:195.479685px;}
.x6_c01145{left:208.080000px;}
.x1c_c01145{left:219.599100px;}
.x2a_c01145{left:226.798950px;}
.x2f_c01145{left:227.878350px;}
.x7_c01145{left:232.199385px;}
.xd_c01145{left:238.319850px;}
.x2_c01145{left:239.399250px;}
.x30_c01145{left:243.359250px;}
.x1d_c01145{left:246.239850px;}
.x10_c01145{left:253.078785px;}
.x16_c01145{left:259.558635px;}
.x1e_c01145{left:263.518635px;}
.x2b_c01145{left:266.758500px;}
.x3_c01145{left:268.198785px;}
.x2d_c01145{left:272.519685px;}
.x17_c01145{left:274.678500px;}
.x1a_c01145{left:290.518635px;}
.xf_c01145{left:307.798950px;}
.x24_c01145{left:316.080000px;}
.x8_c01145{left:330.118785px;}
.x1f_c01145{left:336.959385px;}
.x2e_c01145{left:344.159385px;}
.x11_c01145{left:349.918950px;}
.x18_c01145{left:351.718500px;}
.x9_c01145{left:355.319250px;}
.x20_c01145{left:366.838515px;}
.x12_c01145{left:374.758500px;}
.x25_c01145{left:379.079385px;}
.x19_c01145{left:381.239850px;}
.x21_c01145{left:398.518665px;}
.x26_c01145{left:409.678530px;}
.xa_c01145{left:417.598530px;}
.x27_c01145{left:419.399820px;}
.x13_c01145{left:438.479685px;}
.xb_c01145{left:448.199385px;}
.x28_c01145{left:462.599070px;}
.x14_c01145{left:470.878320px;}
.x15_c01145{left:501.838530px;}
.x22_c01145{left:589.679070px;}
.x23_c01145{left:614.159370px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls23_c01145{letter-spacing:-14.351753pt;}
.ls28_c01145{letter-spacing:-5.858673pt;}
.ls26_c01145{letter-spacing:-5.820800pt;}
.ls7_c01145{letter-spacing:-5.775467pt;}
.ls4_c01145{letter-spacing:-5.603973pt;}
.ls15_c01145{letter-spacing:-5.485533pt;}
.ls1f_c01145{letter-spacing:-4.707333pt;}
.ls24_c01145{letter-spacing:-4.322087pt;}
.ls1d_c01145{letter-spacing:-3.551000pt;}
.ls2b_c01145{letter-spacing:-3.365667pt;}
.lsc_c01145{letter-spacing:-2.983200pt;}
.ls29_c01145{letter-spacing:-2.882580pt;}
.lse_c01145{letter-spacing:-2.746333pt;}
.ls17_c01145{letter-spacing:-2.692400pt;}
.ls2a_c01145{letter-spacing:-2.691000pt;}
.lsa_c01145{letter-spacing:-2.276247pt;}
.lsd_c01145{letter-spacing:-2.204200pt;}
.lsb_c01145{letter-spacing:-2.161400pt;}
.ls2c_c01145{letter-spacing:-2.080000pt;}
.ls1b_c01145{letter-spacing:-2.053687pt;}
.ls10_c01145{letter-spacing:-1.519400pt;}
.ls1a_c01145{letter-spacing:-1.440933pt;}
.ls12_c01145{letter-spacing:-1.434860pt;}
.ls20_c01145{letter-spacing:-1.369600pt;}
.ls19_c01145{letter-spacing:-1.360287pt;}
.ls9_c01145{letter-spacing:-0.756133pt;}
.ls11_c01145{letter-spacing:-0.720467pt;}
.ls16_c01145{letter-spacing:-0.703740pt;}
.ls21_c01145{letter-spacing:-0.699067pt;}
.ls25_c01145{letter-spacing:-0.698133pt;}
.ls6_c01145{letter-spacing:-0.679800pt;}
.ls8_c01145{letter-spacing:0.000000pt;}
.ls2_c01145{letter-spacing:0.684800pt;}
.ls3_c01145{letter-spacing:0.720467pt;}
.ls1_c01145{letter-spacing:0.756133pt;}
.ls22_c01145{letter-spacing:1.386700pt;}
.ls0_c01145{letter-spacing:1.519400pt;}
.ls2d_c01145{letter-spacing:2.097200pt;}
.ls18_c01145{letter-spacing:2.772000pt;}
.ls14_c01145{letter-spacing:3.173640pt;}
.ls5_c01145{letter-spacing:3.924113pt;}
.lsf_c01145{letter-spacing:5.694147pt;}
.ls27_c01145{letter-spacing:6.048000pt;}
.ls13_c01145{letter-spacing:14.813333pt;}
.ls1c_c01145{letter-spacing:28.142933pt;}
.ls1e_c01145{letter-spacing:44.757600pt;}
.ws0_c01145{word-spacing:0.000000pt;}
._5_c01145{margin-left:-13.025406pt;}
._9_c01145{margin-left:-11.498994pt;}
._b_c01145{margin-left:-6.998088pt;}
._a_c01145{margin-left:-4.442397pt;}
._0_c01145{margin-left:-3.467286pt;}
._c_c01145{margin-left:-2.218436pt;}
._2_c01145{width:1.740290pt;}
._1_c01145{width:3.480702pt;}
._4_c01145{width:4.871854pt;}
._e_c01145{width:6.616814pt;}
._3_c01145{width:8.664951pt;}
._8_c01145{width:10.122352pt;}
._7_c01145{width:11.776787pt;}
._d_c01145{width:12.868490pt;}
._6_c01145{width:16.107110pt;}
.fs10_c01145{font-size:24.000000pt;}
.fsf_c01145{font-size:44.666667pt;}
.fse_c01145{font-size:64.666667pt;}
.fsa_c01145{font-size:66.666667pt;}
.fsc_c01145{font-size:67.333333pt;}
.fs5_c01145{font-size:68.000000pt;}
.fs2_c01145{font-size:68.666667pt;}
.fs3_c01145{font-size:69.333333pt;}
.fs12_c01145{font-size:70.000000pt;}
.fsb_c01145{font-size:70.666667pt;}
.fs4_c01145{font-size:71.333333pt;}
.fsd_c01145{font-size:72.000000pt;}
.fs9_c01145{font-size:74.000000pt;}
.fs7_c01145{font-size:74.666667pt;}
.fs1_c01145{font-size:75.333333pt;}
.fs11_c01145{font-size:76.666667pt;}
.fs13_c01145{font-size:79.333333pt;}
.fs8_c01145{font-size:80.000000pt;}
.fs6_c01145{font-size:81.333333pt;}
.fs0_c01145{font-size:82.666667pt;}
.fs14_c01145{font-size:102.666667pt;}
.y0_c01145{bottom:0.000000pt;}
.y19_c01145{bottom:189.439453pt;}
.y18_c01145{bottom:215.679200pt;}
.y17_c01145{bottom:242.239720pt;}
.y16_c01145{bottom:294.719200pt;}
.y15_c01145{bottom:320.958920pt;}
.y13_c01145{bottom:347.839880pt;}
.y14_c01145{bottom:347.840253pt;}
.y12_c01145{bottom:400.960000pt;}
.y11_c01145{bottom:427.519040pt;}
.y10_c01145{bottom:507.199173pt;}
.yf_c01145{bottom:533.438293pt;}
.ye_c01145{bottom:560.320267pt;}
.yd_c01145{bottom:586.879307pt;}
.yc_c01145{bottom:639.999067pt;}
.yb_c01145{bottom:669.760253pt;}
.ya_c01145{bottom:692.799320pt;}
.y9_c01145{bottom:746.879880pt;}
.y8_c01145{bottom:773.438880pt;}
.y7_c01145{bottom:799.999427pt;}
.y6_c01145{bottom:852.479080pt;}
.y5_c01145{bottom:878.720213pt;}
.y4_c01145{bottom:905.600093pt;}
.y3_c01145{bottom:959.679200pt;}
.y2_c01145{bottom:986.239747pt;}
.y1_c01145{bottom:1012.479413pt;}
.h14_c01145{height:25.031250pt;}
.h13_c01145{height:46.585938pt;}
.hd_c01145{height:65.397135pt;}
.h1a_c01145{height:66.544271pt;}
.h12_c01145{height:67.445312pt;}
.h10_c01145{height:67.859375pt;}
.h8_c01145{height:68.531250pt;}
.h3_c01145{height:69.203125pt;}
.h4_c01145{height:69.875000pt;}
.h6_c01145{height:69.974935pt;}
.h16_c01145{height:70.546875pt;}
.he_c01145{height:71.218750pt;}
.h5_c01145{height:71.890625pt;}
.h11_c01145{height:72.562500pt;}
.hc_c01145{height:72.590820pt;}
.h7_c01145{height:74.450521pt;}
.hf_c01145{height:74.578125pt;}
.h19_c01145{height:75.250000pt;}
.h15_c01145{height:75.768229pt;}
.h2_c01145{height:75.921875pt;}
.ha_c01145{height:77.875000pt;}
.h17_c01145{height:78.403646pt;}
.h1_c01145{height:81.697917pt;}
.h9_c01145{height:81.968750pt;}
.hb_c01145{height:83.437500pt;}
.h18_c01145{height:107.078125pt;}
.h0_c01145{height:1122.666667pt;}
.w0_c01145{width:793.333333pt;}
.x0_c01145{left:0.000000pt;}
.x2c_c01145{left:124.798813pt;}
.x1b_c01145{left:125.759747pt;}
.x5_c01145{left:126.719200pt;}
.xc_c01145{left:127.678667pt;}
.x1_c01145{left:128.639613pt;}
.xe_c01145{left:135.039613pt;}
.x29_c01145{left:155.198667pt;}
.x4_c01145{left:158.718813pt;}
.x31_c01145{left:173.759720pt;}
.x6_c01145{left:184.960000pt;}
.x1c_c01145{left:195.199200pt;}
.x2a_c01145{left:201.599067pt;}
.x2f_c01145{left:202.558533pt;}
.x7_c01145{left:206.399453pt;}
.xd_c01145{left:211.839867pt;}
.x2_c01145{left:212.799333pt;}
.x30_c01145{left:216.319333pt;}
.x1d_c01145{left:218.879867pt;}
.x10_c01145{left:224.958920pt;}
.x16_c01145{left:230.718787pt;}
.x1e_c01145{left:234.238787pt;}
.x2b_c01145{left:237.118667pt;}
.x3_c01145{left:238.398920pt;}
.x2d_c01145{left:242.239720pt;}
.x17_c01145{left:244.158667pt;}
.x1a_c01145{left:258.238787pt;}
.xf_c01145{left:273.599067pt;}
.x24_c01145{left:280.960000pt;}
.x8_c01145{left:293.438920pt;}
.x1f_c01145{left:299.519453pt;}
.x2e_c01145{left:305.919453pt;}
.x11_c01145{left:311.039067pt;}
.x18_c01145{left:312.638667pt;}
.x9_c01145{left:315.839333pt;}
.x20_c01145{left:326.078680pt;}
.x12_c01145{left:333.118667pt;}
.x25_c01145{left:336.959453pt;}
.x19_c01145{left:338.879867pt;}
.x21_c01145{left:354.238813pt;}
.x26_c01145{left:364.158693pt;}
.xa_c01145{left:371.198693pt;}
.x27_c01145{left:372.799840pt;}
.x13_c01145{left:389.759720pt;}
.xb_c01145{left:398.399453pt;}
.x28_c01145{left:411.199173pt;}
.x14_c01145{left:418.558507pt;}
.x15_c01145{left:446.078693pt;}
.x22_c01145{left:524.159173pt;}
.x23_c01145{left:545.919440pt;}
}





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

.ir_c01146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_51f2f9b550f910bfa1961c99.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01146;src:url('chunks/assets/font_36cb7587108a5d3b3804706e.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01146;src:url('chunks/assets/font_8b748b24bced847d2d393e1d.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01146;src:url('chunks/assets/font_3da4d4e34b0690d61ecf784e.woff2')format("woff");}.ff4_c01146{font-family:ff4_c01146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01146;src:url('chunks/assets/font_b6b80f3c9b38e7c67993ea61.woff2')format("woff");}.ff5_c01146{font-family:ff5_c01146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01146;src:url('chunks/assets/font_0808cc3deaed346e8151f113.woff2')format("woff");}.ff6_c01146{font-family:ff6_c01146;line-height:1.364746;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_a5aa9b8e69f13837c35f7d88.woff2')format("woff");}.ff7_c01146{font-family:ff7_c01146;line-height:1.432129;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_a4d0514a4af355c9ecaac66f.woff2')format("woff");}.ff8_c01146{font-family:ff8_c01146;line-height:1.432129;font-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_c01146{transform:matrix(0.186957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186957,0.000000,0.000000,0.250000,0,0);}
.m17_c01146{transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);}
.m13_c01146{transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198276,0.000000,0.000000,0.250000,0,0);}
.m4_c01146{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m14_c01146{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m21_c01146{transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226852,0.000000,0.000000,0.250000,0,0);}
.m2_c01146{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_c01146{transform:matrix(0.228346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228346,0.000000,0.000000,0.250000,0,0);}
.m5_c01146{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m1e_c01146{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m3_c01146{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m11_c01146{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.me_c01146{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m12_c01146{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.mb_c01146{transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238839,0.000000,0.000000,0.250000,0,0);}
.m1b_c01146{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.mc_c01146{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m7_c01146{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_c01146{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m10_c01146{transform:matrix(0.243802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243802,0.000000,0.000000,0.250000,0,0);}
.m6_c01146{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m20_c01146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01146{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m1d_c01146{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m8_c01146{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m1f_c01146{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01146{transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275701,0.000000,0.000000,0.250000,0,0);}
.m1a_c01146{transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283133,0.000000,0.000000,0.250000,0,0);}
.m1_c01146{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m16_c01146{transform:matrix(0.293243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293243,0.000000,0.000000,0.250000,0,0);}
.m18_c01146{transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308442,0.000000,0.000000,0.250000,0,0);}
.m19_c01146{transform:matrix(0.330556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330556,0.000000,0.000000,0.250000,0,0);}
.m15_c01146{transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);}
.ma_c01146{transform:matrix(0.415865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415865,0.000000,0.000000,0.250000,0,0);}
.v0_c01146{vertical-align:0.000000px;}
.ls4_c01146{letter-spacing:-11.915663px;}
.ls1a_c01146{letter-spacing:-8.457900px;}
.ls26_c01146{letter-spacing:-6.122273px;}
.ls24_c01146{letter-spacing:-5.957325px;}
.ls2b_c01146{letter-spacing:-5.402250px;}
.ls14_c01146{letter-spacing:-4.713240px;}
.ls2a_c01146{letter-spacing:-4.221000px;}
.ls18_c01146{letter-spacing:-4.015545px;}
.ls19_c01146{letter-spacing:-4.009763px;}
.ls10_c01146{letter-spacing:-3.858750px;}
.ls15_c01146{letter-spacing:-3.818588px;}
.ls27_c01146{letter-spacing:-3.680850px;}
.ls5_c01146{letter-spacing:-3.300750px;}
.ls3_c01146{letter-spacing:-3.286125px;}
.ls6_c01146{letter-spacing:-3.242903px;}
.ls28_c01146{letter-spacing:-3.055500px;}
.ls20_c01146{letter-spacing:-2.835330px;}
.ls1d_c01146{letter-spacing:-2.475000px;}
.ls9_c01146{letter-spacing:-2.454848px;}
.lsb_c01146{letter-spacing:-2.431575px;}
.ls11_c01146{letter-spacing:-2.315250px;}
.lse_c01146{letter-spacing:-2.291625px;}
.ls12_c01146{letter-spacing:-1.650000px;}
.lsa_c01146{letter-spacing:-1.621050px;}
.ls16_c01146{letter-spacing:-1.557608px;}
.ls1b_c01146{letter-spacing:-1.544288px;}
.ls13_c01146{letter-spacing:-1.526963px;}
.ls21_c01146{letter-spacing:-1.276500px;}
.ls23_c01146{letter-spacing:-1.134000px;}
.ls2d_c01146{letter-spacing:-0.825390px;}
.lsc_c01146{letter-spacing:-0.810525px;}
.ls25_c01146{letter-spacing:-0.779100px;}
.lsd_c01146{letter-spacing:-0.763875px;}
.ls8_c01146{letter-spacing:0.000000px;}
.ls17_c01146{letter-spacing:0.736290px;}
.ls2c_c01146{letter-spacing:0.745523px;}
.ls0_c01146{letter-spacing:0.763875px;}
.ls1_c01146{letter-spacing:0.771750px;}
.ls2_c01146{letter-spacing:0.810525px;}
.lsf_c01146{letter-spacing:1.427400px;}
.ls1e_c01146{letter-spacing:1.544288px;}
.ls1f_c01146{letter-spacing:1.599675px;}
.ls1c_c01146{letter-spacing:2.430000px;}
.ls29_c01146{letter-spacing:2.431575px;}
.ls7_c01146{letter-spacing:2.766938px;}
.ls22_c01146{letter-spacing:65.650200px;}
.sc__c01146{text-shadow:none;}
.sc0_c01146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01146{-webkit-text-stroke:0px transparent;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01146{word-spacing:0.000000px;}
._9_c01146{margin-left:-8.680405px;}
._5_c01146{margin-left:-3.418310px;}
._b_c01146{margin-left:-1.670601px;}
._0_c01146{width:2.576138px;}
._6_c01146{width:4.565023px;}
._3_c01146{width:6.580208px;}
._2_c01146{width:7.740524px;}
._7_c01146{width:9.840944px;}
._4_c01146{width:11.154328px;}
._1_c01146{width:12.214293px;}
._8_c01146{width:14.466091px;}
._a_c01146{width:25.561929px;}
.fc0_c01146{color:transparent;}
.fse_c01146{font-size:21.750000px;}
.fsf_c01146{font-size:24.750000px;}
.fs4_c01146{font-size:56.250000px;}
.fs12_c01146{font-size:57.750000px;}
.fs14_c01146{font-size:62.250000px;}
.fs13_c01146{font-size:67.500000px;}
.fs11_c01146{font-size:72.000000px;}
.fs2_c01146{font-size:75.000000px;}
.fs5_c01146{font-size:78.000000px;}
.fs1_c01146{font-size:78.750000px;}
.fs9_c01146{font-size:79.500000px;}
.fs3_c01146{font-size:80.250000px;}
.fs8_c01146{font-size:81.000000px;}
.fsc_c01146{font-size:82.500000px;}
.fs7_c01146{font-size:83.250000px;}
.fs6_c01146{font-size:84.000000px;}
.fsa_c01146{font-size:86.250000px;}
.fsd_c01146{font-size:87.000000px;}
.fsb_c01146{font-size:90.750000px;}
.fs0_c01146{font-size:95.250000px;}
.fs10_c01146{font-size:138.750000px;}
.y0_c01146{bottom:0.000000px;}
.y16_c01146{bottom:241.200435px;}
.y15_c01146{bottom:271.081035px;}
.y14_c01146{bottom:300.960000px;}
.y13_c01146{bottom:360.360285px;}
.y12_c01146{bottom:390.600135px;}
.y11_c01146{bottom:420.840135px;}
.y10_c01146{bottom:430.200435px;}
.yf_c01146{bottom:480.960570px;}
.ye_c01146{bottom:510.121035px;}
.yd_c01146{bottom:540.000000px;}
.yc_c01146{bottom:599.400285px;}
.yb_c01146{bottom:629.280900px;}
.ya_c01146{bottom:659.159820px;}
.y9_c01146{bottom:839.160465px;}
.y8_c01146{bottom:868.320930px;}
.y7_c01146{bottom:898.199805px;}
.y6_c01146{bottom:958.320285px;}
.y5_c01146{bottom:988.200990px;}
.y4_c01146{bottom:1018.079955px;}
.y3_c01146{bottom:1077.480285px;}
.y2_c01146{bottom:1107.000000px;}
.y1_c01146{bottom:1137.239775px;}
.h13_c01146{height:21.495117px;}
.h14_c01146{height:25.813477px;}
.h5_c01146{height:55.178833px;}
.h17_c01146{height:58.201172px;}
.h19_c01146{height:62.736328px;}
.h18_c01146{height:66.708984px;}
.h16_c01146{height:75.093750px;}
.h7_c01146{height:75.585938px;}
.h8_c01146{height:77.085938px;}
.h6_c01146{height:77.288818px;}
.he_c01146{height:77.986084px;}
.h1c_c01146{height:78.024902px;}
.h3_c01146{height:78.222656px;}
.h4_c01146{height:78.721802px;}
.h1b_c01146{height:78.760986px;}
.h9_c01146{height:79.365234px;}
.h1a_c01146{height:80.121094px;}
.h1d_c01146{height:80.876953px;}
.ha_c01146{height:81.351562px;}
.hd_c01146{height:81.632812px;}
.h2_c01146{height:82.133789px;}
.hb_c01146{height:82.441406px;}
.h11_c01146{height:83.144531px;}
.hc_c01146{height:83.900391px;}
.hf_c01146{height:85.239258px;}
.h12_c01146{height:85.343262px;}
.h10_c01146{height:89.686523px;}
.h1_c01146{height:94.133789px;}
.h15_c01146{height:144.711914px;}
.h0_c01146{height:1263.000000px;}
.w0_c01146{width:892.500000px;}
.x0_c01146{left:0.000000px;}
.x25_c01146{left:136.079400px;}
.x12_c01146{left:137.878950px;}
.x9_c01146{left:139.678500px;}
.x1_c01146{left:141.118815px;}
.x21_c01146{left:150.479250px;}
.x13_c01146{left:164.878950px;}
.x24_c01146{left:171.358665px;}
.x4_c01146{left:173.159850px;}
.x1e_c01146{left:175.318800px;}
.x29_c01146{left:178.199415px;}
.x1f_c01146{left:183.599700px;}
.x20_c01146{left:201.959400px;}
.x18_c01146{left:212.399250px;}
.x2_c01146{left:216.359250px;}
.x26_c01146{left:226.439685px;}
.xe_c01146{left:233.639700px;}
.x5_c01146{left:246.599100px;}
.x1c_c01146{left:248.759535px;}
.x6_c01146{left:264.238785px;}
.x1d_c01146{left:274.678500px;}
.x3_c01146{left:278.279250px;}
.xf_c01146{left:289.798515px;}
.x10_c01146{left:295.559685px;}
.x19_c01146{left:308.159850px;}
.x11_c01146{left:315.719100px;}
.x7_c01146{left:320.758500px;}
.x27_c01146{left:323.639100px;}
.xc_c01146{left:330.838950px;}
.x14_c01146{left:337.318800px;}
.xa_c01146{left:342.359850px;}
.xd_c01146{left:343.439235px;}
.x8_c01146{left:349.559685px;}
.x22_c01146{left:352.438635px;}
.x28_c01146{left:356.039385px;}
.x15_c01146{left:367.558635px;}
.x1a_c01146{left:375.119385px;}
.x23_c01146{left:383.398635px;}
.xb_c01146{left:398.518665px;}
.x1b_c01146{left:406.799565px;}
.x16_c01146{left:482.039985px;}
.x17_c01146{left:524.519070px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls4_c01146{letter-spacing:-10.591700pt;}
.ls1a_c01146{letter-spacing:-7.518133pt;}
.ls26_c01146{letter-spacing:-5.442020pt;}
.ls24_c01146{letter-spacing:-5.295400pt;}
.ls2b_c01146{letter-spacing:-4.802000pt;}
.ls14_c01146{letter-spacing:-4.189547pt;}
.ls2a_c01146{letter-spacing:-3.752000pt;}
.ls18_c01146{letter-spacing:-3.569373pt;}
.ls19_c01146{letter-spacing:-3.564233pt;}
.ls10_c01146{letter-spacing:-3.430000pt;}
.ls15_c01146{letter-spacing:-3.394300pt;}
.ls27_c01146{letter-spacing:-3.271867pt;}
.ls5_c01146{letter-spacing:-2.934000pt;}
.ls3_c01146{letter-spacing:-2.921000pt;}
.ls6_c01146{letter-spacing:-2.882580pt;}
.ls28_c01146{letter-spacing:-2.716000pt;}
.ls20_c01146{letter-spacing:-2.520293pt;}
.ls1d_c01146{letter-spacing:-2.200000pt;}
.ls9_c01146{letter-spacing:-2.182087pt;}
.lsb_c01146{letter-spacing:-2.161400pt;}
.ls11_c01146{letter-spacing:-2.058000pt;}
.lse_c01146{letter-spacing:-2.037000pt;}
.ls12_c01146{letter-spacing:-1.466667pt;}
.lsa_c01146{letter-spacing:-1.440933pt;}
.ls16_c01146{letter-spacing:-1.384540pt;}
.ls1b_c01146{letter-spacing:-1.372700pt;}
.ls13_c01146{letter-spacing:-1.357300pt;}
.ls21_c01146{letter-spacing:-1.134667pt;}
.ls23_c01146{letter-spacing:-1.008000pt;}
.ls2d_c01146{letter-spacing:-0.733680pt;}
.lsc_c01146{letter-spacing:-0.720467pt;}
.ls25_c01146{letter-spacing:-0.692533pt;}
.lsd_c01146{letter-spacing:-0.679000pt;}
.ls8_c01146{letter-spacing:0.000000pt;}
.ls17_c01146{letter-spacing:0.654480pt;}
.ls2c_c01146{letter-spacing:0.662687pt;}
.ls0_c01146{letter-spacing:0.679000pt;}
.ls1_c01146{letter-spacing:0.686000pt;}
.ls2_c01146{letter-spacing:0.720467pt;}
.lsf_c01146{letter-spacing:1.268800pt;}
.ls1e_c01146{letter-spacing:1.372700pt;}
.ls1f_c01146{letter-spacing:1.421933pt;}
.ls1c_c01146{letter-spacing:2.160000pt;}
.ls29_c01146{letter-spacing:2.161400pt;}
.ls7_c01146{letter-spacing:2.459500pt;}
.ls22_c01146{letter-spacing:58.355733pt;}
.ws0_c01146{word-spacing:0.000000pt;}
._9_c01146{margin-left:-7.715915pt;}
._5_c01146{margin-left:-3.038497pt;}
._b_c01146{margin-left:-1.484979pt;}
._0_c01146{width:2.289901pt;}
._6_c01146{width:4.057798pt;}
._3_c01146{width:5.849074pt;}
._2_c01146{width:6.880466pt;}
._7_c01146{width:8.747506pt;}
._4_c01146{width:9.914959pt;}
._1_c01146{width:10.857149pt;}
._8_c01146{width:12.858748pt;}
._a_c01146{width:22.721715pt;}
.fse_c01146{font-size:19.333333pt;}
.fsf_c01146{font-size:22.000000pt;}
.fs4_c01146{font-size:50.000000pt;}
.fs12_c01146{font-size:51.333333pt;}
.fs14_c01146{font-size:55.333333pt;}
.fs13_c01146{font-size:60.000000pt;}
.fs11_c01146{font-size:64.000000pt;}
.fs2_c01146{font-size:66.666667pt;}
.fs5_c01146{font-size:69.333333pt;}
.fs1_c01146{font-size:70.000000pt;}
.fs9_c01146{font-size:70.666667pt;}
.fs3_c01146{font-size:71.333333pt;}
.fs8_c01146{font-size:72.000000pt;}
.fsc_c01146{font-size:73.333333pt;}
.fs7_c01146{font-size:74.000000pt;}
.fs6_c01146{font-size:74.666667pt;}
.fsa_c01146{font-size:76.666667pt;}
.fsd_c01146{font-size:77.333333pt;}
.fsb_c01146{font-size:80.666667pt;}
.fs0_c01146{font-size:84.666667pt;}
.fs10_c01146{font-size:123.333333pt;}
.y0_c01146{bottom:0.000000pt;}
.y16_c01146{bottom:214.400387pt;}
.y15_c01146{bottom:240.960920pt;}
.y14_c01146{bottom:267.520000pt;}
.y13_c01146{bottom:320.320253pt;}
.y12_c01146{bottom:347.200120pt;}
.y11_c01146{bottom:374.080120pt;}
.y10_c01146{bottom:382.400387pt;}
.yf_c01146{bottom:427.520507pt;}
.ye_c01146{bottom:453.440920pt;}
.yd_c01146{bottom:480.000000pt;}
.yc_c01146{bottom:532.800253pt;}
.yb_c01146{bottom:559.360800pt;}
.ya_c01146{bottom:585.919840pt;}
.y9_c01146{bottom:745.920413pt;}
.y8_c01146{bottom:771.840827pt;}
.y7_c01146{bottom:798.399827pt;}
.y6_c01146{bottom:851.840253pt;}
.y5_c01146{bottom:878.400880pt;}
.y4_c01146{bottom:904.959960pt;}
.y3_c01146{bottom:957.760253pt;}
.y2_c01146{bottom:984.000000pt;}
.y1_c01146{bottom:1010.879800pt;}
.h13_c01146{height:19.106771pt;}
.h14_c01146{height:22.945312pt;}
.h5_c01146{height:49.047852pt;}
.h17_c01146{height:51.734375pt;}
.h19_c01146{height:55.765625pt;}
.h18_c01146{height:59.296875pt;}
.h16_c01146{height:66.750000pt;}
.h7_c01146{height:67.187500pt;}
.h8_c01146{height:68.520833pt;}
.h6_c01146{height:68.701172pt;}
.he_c01146{height:69.320964pt;}
.h1c_c01146{height:69.355469pt;}
.h3_c01146{height:69.531250pt;}
.h4_c01146{height:69.974935pt;}
.h1b_c01146{height:70.009766pt;}
.h9_c01146{height:70.546875pt;}
.h1a_c01146{height:71.218750pt;}
.h1d_c01146{height:71.890625pt;}
.ha_c01146{height:72.312500pt;}
.hd_c01146{height:72.562500pt;}
.h2_c01146{height:73.007812pt;}
.hb_c01146{height:73.281250pt;}
.h11_c01146{height:73.906250pt;}
.hc_c01146{height:74.578125pt;}
.hf_c01146{height:75.768229pt;}
.h12_c01146{height:75.860677pt;}
.h10_c01146{height:79.721354pt;}
.h1_c01146{height:83.674479pt;}
.h15_c01146{height:128.632812pt;}
.h0_c01146{height:1122.666667pt;}
.w0_c01146{width:793.333333pt;}
.x0_c01146{left:0.000000pt;}
.x25_c01146{left:120.959467pt;}
.x12_c01146{left:122.559067pt;}
.x9_c01146{left:124.158667pt;}
.x1_c01146{left:125.438947pt;}
.x21_c01146{left:133.759333pt;}
.x13_c01146{left:146.559067pt;}
.x24_c01146{left:152.318813pt;}
.x4_c01146{left:153.919867pt;}
.x1e_c01146{left:155.838933pt;}
.x29_c01146{left:158.399480pt;}
.x1f_c01146{left:163.199733pt;}
.x20_c01146{left:179.519467pt;}
.x18_c01146{left:188.799333pt;}
.x2_c01146{left:192.319333pt;}
.x26_c01146{left:201.279720pt;}
.xe_c01146{left:207.679733pt;}
.x5_c01146{left:219.199200pt;}
.x1c_c01146{left:221.119587pt;}
.x6_c01146{left:234.878920pt;}
.x1d_c01146{left:244.158667pt;}
.x3_c01146{left:247.359333pt;}
.xf_c01146{left:257.598680pt;}
.x10_c01146{left:262.719720pt;}
.x19_c01146{left:273.919867pt;}
.x11_c01146{left:280.639200pt;}
.x7_c01146{left:285.118667pt;}
.x27_c01146{left:287.679200pt;}
.xc_c01146{left:294.079067pt;}
.x14_c01146{left:299.838933pt;}
.xa_c01146{left:304.319867pt;}
.xd_c01146{left:305.279320pt;}
.x8_c01146{left:310.719720pt;}
.x22_c01146{left:313.278787pt;}
.x28_c01146{left:316.479453pt;}
.x15_c01146{left:326.718787pt;}
.x1a_c01146{left:333.439453pt;}
.x23_c01146{left:340.798787pt;}
.xb_c01146{left:354.238813pt;}
.x1b_c01146{left:361.599613pt;}
.x16_c01146{left:428.479987pt;}
.x17_c01146{left:466.239173pt;}
}





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

.ir_c01147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_9ef9721099a8a695a4c907f2.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01147;src:url('chunks/assets/font_360a298100e47c57b90eaee1.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01147;src:url('chunks/assets/font_f77eedf1bc1a2c90539109c9.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01147;src:url('chunks/assets/font_6c78f798118a523f1550fe1e.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01147;src:url('chunks/assets/font_39609f8feb779d0f5cbc59c6.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01147;src:url('chunks/assets/font_4d1b90e725e598bf3cad71d5.woff2')format("woff");}.ff6_c01147{font-family:ff6_c01147;line-height:1.364746;font-style:normal;font-weight: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_c01147;src:url('chunks/assets/font_3be81739c2468cc0178c159e.woff2')format("woff");}.ff7_c01147{font-family:ff7_c01147;line-height:1.364746;font-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_c01147{transform:matrix(0.165138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165138,0.000000,0.000000,0.250000,0,0);}
.m1c_c01147{transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184091,0.000000,0.000000,0.250000,0,0);}
.m1f_c01147{transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);}
.m22_c01147{transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);}
.m15_c01147{transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203297,0.000000,0.000000,0.250000,0,0);}
.m29_c01147{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m27_c01147{transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215347,0.000000,0.000000,0.250000,0,0);}
.m1d_c01147{transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220455,0.000000,0.000000,0.250000,0,0);}
.m12_c01147{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.me_c01147{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m20_c01147{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.md_c01147{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.m28_c01147{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m1b_c01147{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_c01147{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m13_c01147{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m18_c01147{transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230952,0.000000,0.000000,0.250000,0,0);}
.m4_c01147{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m1a_c01147{transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231651,0.000000,0.000000,0.250000,0,0);}
.m26_c01147{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m9_c01147{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m10_c01147{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m23_c01147{transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238208,0.000000,0.000000,0.250000,0,0);}
.m1_c01147{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m17_c01147{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mc_c01147{transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242788,0.000000,0.000000,0.250000,0,0);}
.m0_c01147{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.ma_c01147{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m2_c01147{transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243363,0.000000,0.000000,0.250000,0,0);}
.m8_c01147{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.m19_c01147{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m11_c01147{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m2a_c01147{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m6_c01147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01147{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb_c01147{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m5_c01147{transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267157,0.000000,0.000000,0.250000,0,0);}
.m7_c01147{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m1e_c01147{transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);}
.m14_c01147{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);}
.m21_c01147{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.m24_c01147{transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300781,0.000000,0.000000,0.250000,0,0);}
.m16_c01147{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.v0_c01147{vertical-align:0.000000px;}
.ls1d_c01147{letter-spacing:-17.561700px;}
.ls27_c01147{letter-spacing:-13.242075px;}
.ls2e_c01147{letter-spacing:-11.082825px;}
.ls21_c01147{letter-spacing:-9.220575px;}
.ls6_c01147{letter-spacing:-7.720853px;}
.ls22_c01147{letter-spacing:-6.839288px;}
.ls10_c01147{letter-spacing:-6.171225px;}
.ls2c_c01147{letter-spacing:-6.089250px;}
.lsd_c01147{letter-spacing:-5.549250px;}
.ls1b_c01147{letter-spacing:-5.543250px;}
.ls2a_c01147{letter-spacing:-5.401628px;}
.lsc_c01147{letter-spacing:-5.247900px;}
.ls29_c01147{letter-spacing:-5.196713px;}
.ls23_c01147{letter-spacing:-4.874625px;}
.ls1e_c01147{letter-spacing:-4.629623px;}
.ls1a_c01147{letter-spacing:-4.094250px;}
.ls4_c01147{letter-spacing:-3.860025px;}
.ls28_c01147{letter-spacing:-3.752400px;}
.ls1c_c01147{letter-spacing:-3.717000px;}
.lsb_c01147{letter-spacing:-3.511350px;}
.ls33_c01147{letter-spacing:-3.242903px;}
.ls16_c01147{letter-spacing:-3.089625px;}
.ls9_c01147{letter-spacing:-2.968875px;}
.lsa_c01147{letter-spacing:-2.431575px;}
.lsf_c01147{letter-spacing:-2.375175px;}
.ls5_c01147{letter-spacing:-2.358675px;}
.ls15_c01147{letter-spacing:-2.315820px;}
.ls24_c01147{letter-spacing:-2.288805px;}
.ls8_c01147{letter-spacing:-2.229413px;}
.ls18_c01147{letter-spacing:-1.621050px;}
.ls31_c01147{letter-spacing:-1.588410px;}
.lse_c01147{letter-spacing:-1.526963px;}
.ls35_c01147{letter-spacing:-1.514873px;}
.ls12_c01147{letter-spacing:-1.489163px;}
.ls19_c01147{letter-spacing:-0.810525px;}
.ls14_c01147{letter-spacing:-0.740250px;}
.ls13_c01147{letter-spacing:-0.734400px;}
.ls7_c01147{letter-spacing:0.000000px;}
.ls0_c01147{letter-spacing:0.740250px;}
.ls11_c01147{letter-spacing:0.766425px;}
.ls25_c01147{letter-spacing:0.809325px;}
.ls26_c01147{letter-spacing:0.825000px;}
.ls34_c01147{letter-spacing:0.826875px;}
.ls32_c01147{letter-spacing:1.540800px;}
.ls3_c01147{letter-spacing:1.621050px;}
.ls2b_c01147{letter-spacing:1.699500px;}
.ls2f_c01147{letter-spacing:2.229413px;}
.ls2_c01147{letter-spacing:2.431575px;}
.ls1f_c01147{letter-spacing:2.449425px;}
.ls17_c01147{letter-spacing:2.526075px;}
.ls1_c01147{letter-spacing:4.053428px;}
.ls20_c01147{letter-spacing:8.550000px;}
.ls30_c01147{letter-spacing:15.892200px;}
.ls2d_c01147{letter-spacing:19.338975px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01147{word-spacing:0.000000px;}
._1_c01147{margin-left:-21.912529px;}
._8_c01147{margin-left:-1.177937px;}
._6_c01147{width:1.755739px;}
._3_c01147{width:3.503216px;}
._2_c01147{width:4.788327px;}
._9_c01147{width:6.230871px;}
._5_c01147{width:7.247214px;}
._4_c01147{width:8.646809px;}
._b_c01147{width:9.901141px;}
._c_c01147{width:11.812025px;}
._a_c01147{width:13.873514px;}
._7_c01147{width:15.873018px;}
._d_c01147{width:18.180576px;}
._0_c01147{width:20.521900px;}
.fc0_c01147{color:transparent;}
.fsc_c01147{font-size:68.250000px;}
.fs9_c01147{font-size:71.250000px;}
.fs5_c01147{font-size:73.500000px;}
.fsb_c01147{font-size:75.000000px;}
.fs12_c01147{font-size:75.750000px;}
.fs4_c01147{font-size:76.500000px;}
.fs13_c01147{font-size:77.250000px;}
.fs6_c01147{font-size:78.000000px;}
.fs3_c01147{font-size:78.750000px;}
.fs8_c01147{font-size:79.500000px;}
.fs0_c01147{font-size:80.250000px;}
.fsd_c01147{font-size:81.000000px;}
.fs7_c01147{font-size:81.750000px;}
.fs1_c01147{font-size:82.500000px;}
.fsf_c01147{font-size:83.250000px;}
.fs2_c01147{font-size:84.750000px;}
.fsa_c01147{font-size:85.500000px;}
.fse_c01147{font-size:86.250000px;}
.fs10_c01147{font-size:87.750000px;}
.fs11_c01147{font-size:96.000000px;}
.y0_c01147{bottom:0.000000px;}
.y1a_c01147{bottom:239.760150px;}
.y19_c01147{bottom:268.920600px;}
.y18_c01147{bottom:299.160435px;}
.y17_c01147{bottom:358.560750px;}
.y16_c01147{bottom:388.800570px;}
.y15_c01147{bottom:419.040570px;}
.y14_c01147{bottom:430.920600px;}
.y13_c01147{bottom:479.520315px;}
.y12_c01147{bottom:508.319820px;}
.y11_c01147{bottom:537.839535px;}
.y10_c01147{bottom:597.959970px;}
.yf_c01147{bottom:627.479685px;}
.ye_c01147{bottom:657.719520px;}
.yd_c01147{bottom:717.119985px;}
.yc_c01147{bottom:748.080000px;}
.yb_c01147{bottom:777.240420px;}
.ya_c01147{bottom:837.000000px;}
.y9_c01147{bottom:866.880615px;}
.y8_c01147{bottom:897.479640px;}
.y7_c01147{bottom:956.880960px;}
.y5_c01147{bottom:986.759925px;}
.y6_c01147{bottom:986.760675px;}
.y4_c01147{bottom:1016.639655px;}
.y3_c01147{bottom:1076.760135px;}
.y2_c01147{bottom:1106.280030px;}
.y1_c01147{bottom:1135.799565px;}
.he_c01147{height:67.450195px;}
.hd_c01147{height:73.571777px;}
.h12_c01147{height:73.608398px;}
.h1b_c01147{height:74.307495px;}
.hb_c01147{height:74.311523px;}
.h6_c01147{height:75.080566px;}
.h1d_c01147{height:75.816650px;}
.h7_c01147{height:76.658203px;}
.h4_c01147{height:77.288818px;}
.ha_c01147{height:77.986084px;}
.h11_c01147{height:78.024902px;}
.h8_c01147{height:78.609375px;}
.h5_c01147{height:78.721802px;}
.h1c_c01147{height:78.760986px;}
.h10_c01147{height:79.365234px;}
.h14_c01147{height:80.121094px;}
.h1a_c01147{height:80.193237px;}
.h1_c01147{height:80.876953px;}
.h13_c01147{height:81.533203px;}
.hf_c01147{height:81.632812px;}
.h17_c01147{height:81.705322px;}
.h9_c01147{height:82.388672px;}
.h2_c01147{height:83.144531px;}
.h16_c01147{height:83.900391px;}
.hc_c01147{height:84.498047px;}
.h3_c01147{height:85.412109px;}
.h18_c01147{height:86.721680px;}
.h15_c01147{height:89.956055px;}
.h19_c01147{height:100.125000px;}
.h0_c01147{height:1263.000000px;}
.w0_c01147{width:892.500000px;}
.x0_c01147{left:0.000000px;}
.x7_c01147{left:140.398665px;}
.x1_c01147{left:141.838950px;}
.x6_c01147{left:143.280465px;}
.x25_c01147{left:145.078815px;}
.x24_c01147{left:151.558665px;}
.x28_c01147{left:177.479250px;}
.x12_c01147{left:181.439250px;}
.x30_c01147{left:191.158785px;}
.x1a_c01147{left:194.039400px;}
.x2_c01147{left:205.558635px;}
.x1d_c01147{left:206.639700px;}
.x16_c01147{left:208.439250px;}
.x13_c01147{left:220.319250px;}
.xf_c01147{left:225.719535px;}
.x8_c01147{left:230.038950px;}
.x17_c01147{left:232.919535px;}
.x31_c01147{left:235.439250px;}
.x3_c01147{left:236.879535px;}
.x1b_c01147{left:239.399250px;}
.x2d_c01147{left:243.718500px;}
.x26_c01147{left:263.159385px;}
.x1c_c01147{left:281.878350px;}
.x27_c01147{left:292.319850px;}
.x22_c01147{left:301.319250px;}
.x18_c01147{left:311.399850px;}
.x10_c01147{left:317.879535px;}
.x19_c01147{left:326.519685px;}
.x9_c01147{left:327.958350px;}
.x23_c01147{left:330.118785px;}
.xd_c01147{left:331.918350px;}
.x11_c01147{left:339.479235px;}
.xa_c01147{left:351.718500px;}
.xe_c01147{left:354.958350px;}
.x4_c01147{left:356.039385px;}
.x32_c01147{left:357.479685px;}
.x2a_c01147{left:366.120000px;}
.x2e_c01147{left:371.518635px;}
.x33_c01147{left:372.599700px;}
.xb_c01147{left:381.958350px;}
.x5_c01147{left:386.999400px;}
.x2b_c01147{left:389.878320px;}
.x1f_c01147{left:408.599070px;}
.x2c_c01147{left:411.479685px;}
.x1e_c01147{left:412.559100px;}
.xc_c01147{left:414.358665px;}
.x29_c01147{left:421.558635px;}
.x20_c01147{left:435.239820px;}
.x2f_c01147{left:461.158770px;}
.x34_c01147{left:467.638500px;}
.x21_c01147{left:476.278800px;}
.x14_c01147{left:517.678530px;}
.x15_c01147{left:560.879520px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls1d_c01147{letter-spacing:-15.610400pt;}
.ls27_c01147{letter-spacing:-11.770733pt;}
.ls2e_c01147{letter-spacing:-9.851400pt;}
.ls21_c01147{letter-spacing:-8.196067pt;}
.ls6_c01147{letter-spacing:-6.862980pt;}
.ls22_c01147{letter-spacing:-6.079367pt;}
.ls10_c01147{letter-spacing:-5.485533pt;}
.ls2c_c01147{letter-spacing:-5.412667pt;}
.lsd_c01147{letter-spacing:-4.932667pt;}
.ls1b_c01147{letter-spacing:-4.927333pt;}
.ls2a_c01147{letter-spacing:-4.801447pt;}
.lsc_c01147{letter-spacing:-4.664800pt;}
.ls29_c01147{letter-spacing:-4.619300pt;}
.ls23_c01147{letter-spacing:-4.333000pt;}
.ls1e_c01147{letter-spacing:-4.115220pt;}
.ls1a_c01147{letter-spacing:-3.639333pt;}
.ls4_c01147{letter-spacing:-3.431133pt;}
.ls28_c01147{letter-spacing:-3.335467pt;}
.ls1c_c01147{letter-spacing:-3.304000pt;}
.lsb_c01147{letter-spacing:-3.121200pt;}
.ls33_c01147{letter-spacing:-2.882580pt;}
.ls16_c01147{letter-spacing:-2.746333pt;}
.ls9_c01147{letter-spacing:-2.639000pt;}
.lsa_c01147{letter-spacing:-2.161400pt;}
.lsf_c01147{letter-spacing:-2.111267pt;}
.ls5_c01147{letter-spacing:-2.096600pt;}
.ls15_c01147{letter-spacing:-2.058507pt;}
.ls24_c01147{letter-spacing:-2.034493pt;}
.ls8_c01147{letter-spacing:-1.981700pt;}
.ls18_c01147{letter-spacing:-1.440933pt;}
.ls31_c01147{letter-spacing:-1.411920pt;}
.lse_c01147{letter-spacing:-1.357300pt;}
.ls35_c01147{letter-spacing:-1.346553pt;}
.ls12_c01147{letter-spacing:-1.323700pt;}
.ls19_c01147{letter-spacing:-0.720467pt;}
.ls14_c01147{letter-spacing:-0.658000pt;}
.ls13_c01147{letter-spacing:-0.652800pt;}
.ls7_c01147{letter-spacing:0.000000pt;}
.ls0_c01147{letter-spacing:0.658000pt;}
.ls11_c01147{letter-spacing:0.681267pt;}
.ls25_c01147{letter-spacing:0.719400pt;}
.ls26_c01147{letter-spacing:0.733333pt;}
.ls34_c01147{letter-spacing:0.735000pt;}
.ls32_c01147{letter-spacing:1.369600pt;}
.ls3_c01147{letter-spacing:1.440933pt;}
.ls2b_c01147{letter-spacing:1.510667pt;}
.ls2f_c01147{letter-spacing:1.981700pt;}
.ls2_c01147{letter-spacing:2.161400pt;}
.ls1f_c01147{letter-spacing:2.177267pt;}
.ls17_c01147{letter-spacing:2.245400pt;}
.ls1_c01147{letter-spacing:3.603047pt;}
.ls20_c01147{letter-spacing:7.600000pt;}
.ls30_c01147{letter-spacing:14.126400pt;}
.ls2d_c01147{letter-spacing:17.190200pt;}
.ws0_c01147{word-spacing:0.000000pt;}
._1_c01147{margin-left:-19.477804pt;}
._8_c01147{margin-left:-1.047055pt;}
._6_c01147{width:1.560657pt;}
._3_c01147{width:3.113970pt;}
._2_c01147{width:4.256291pt;}
._9_c01147{width:5.538552pt;}
._5_c01147{width:6.441968pt;}
._4_c01147{width:7.686053pt;}
._b_c01147{width:8.801014pt;}
._c_c01147{width:10.499577pt;}
._a_c01147{width:12.332012pt;}
._7_c01147{width:14.109349pt;}
._d_c01147{width:16.160512pt;}
._0_c01147{width:18.241689pt;}
.fsc_c01147{font-size:60.666667pt;}
.fs9_c01147{font-size:63.333333pt;}
.fs5_c01147{font-size:65.333333pt;}
.fsb_c01147{font-size:66.666667pt;}
.fs12_c01147{font-size:67.333333pt;}
.fs4_c01147{font-size:68.000000pt;}
.fs13_c01147{font-size:68.666667pt;}
.fs6_c01147{font-size:69.333333pt;}
.fs3_c01147{font-size:70.000000pt;}
.fs8_c01147{font-size:70.666667pt;}
.fs0_c01147{font-size:71.333333pt;}
.fsd_c01147{font-size:72.000000pt;}
.fs7_c01147{font-size:72.666667pt;}
.fs1_c01147{font-size:73.333333pt;}
.fsf_c01147{font-size:74.000000pt;}
.fs2_c01147{font-size:75.333333pt;}
.fsa_c01147{font-size:76.000000pt;}
.fse_c01147{font-size:76.666667pt;}
.fs10_c01147{font-size:78.000000pt;}
.fs11_c01147{font-size:85.333333pt;}
.y0_c01147{bottom:0.000000pt;}
.y1a_c01147{bottom:213.120133pt;}
.y19_c01147{bottom:239.040533pt;}
.y18_c01147{bottom:265.920387pt;}
.y17_c01147{bottom:318.720667pt;}
.y16_c01147{bottom:345.600507pt;}
.y15_c01147{bottom:372.480507pt;}
.y14_c01147{bottom:383.040533pt;}
.y13_c01147{bottom:426.240280pt;}
.y12_c01147{bottom:451.839840pt;}
.y11_c01147{bottom:478.079587pt;}
.y10_c01147{bottom:531.519973pt;}
.yf_c01147{bottom:557.759720pt;}
.ye_c01147{bottom:584.639573pt;}
.yd_c01147{bottom:637.439987pt;}
.yc_c01147{bottom:664.960000pt;}
.yb_c01147{bottom:690.880373pt;}
.ya_c01147{bottom:744.000000pt;}
.y9_c01147{bottom:770.560547pt;}
.y8_c01147{bottom:797.759680pt;}
.y7_c01147{bottom:850.560853pt;}
.y5_c01147{bottom:877.119933pt;}
.y6_c01147{bottom:877.120600pt;}
.y4_c01147{bottom:903.679693pt;}
.y3_c01147{bottom:957.120120pt;}
.y2_c01147{bottom:983.360027pt;}
.y1_c01147{bottom:1009.599613pt;}
.he_c01147{height:59.955729pt;}
.hd_c01147{height:65.397135pt;}
.h12_c01147{height:65.429688pt;}
.h1b_c01147{height:66.051107pt;}
.hb_c01147{height:66.054688pt;}
.h6_c01147{height:66.738281pt;}
.h1d_c01147{height:67.392578pt;}
.h7_c01147{height:68.140625pt;}
.h4_c01147{height:68.701172pt;}
.ha_c01147{height:69.320964pt;}
.h11_c01147{height:69.355469pt;}
.h8_c01147{height:69.875000pt;}
.h5_c01147{height:69.974935pt;}
.h1c_c01147{height:70.009766pt;}
.h10_c01147{height:70.546875pt;}
.h14_c01147{height:71.218750pt;}
.h1a_c01147{height:71.282878pt;}
.h1_c01147{height:71.890625pt;}
.h13_c01147{height:72.473958pt;}
.hf_c01147{height:72.562500pt;}
.h17_c01147{height:72.626953pt;}
.h9_c01147{height:73.234375pt;}
.h2_c01147{height:73.906250pt;}
.h16_c01147{height:74.578125pt;}
.hc_c01147{height:75.109375pt;}
.h3_c01147{height:75.921875pt;}
.h18_c01147{height:77.085938pt;}
.h15_c01147{height:79.960938pt;}
.h19_c01147{height:89.000000pt;}
.h0_c01147{height:1122.666667pt;}
.w0_c01147{width:793.333333pt;}
.x0_c01147{left:0.000000pt;}
.x7_c01147{left:124.798813pt;}
.x1_c01147{left:126.079067pt;}
.x6_c01147{left:127.360413pt;}
.x25_c01147{left:128.958947pt;}
.x24_c01147{left:134.718813pt;}
.x28_c01147{left:157.759333pt;}
.x12_c01147{left:161.279333pt;}
.x30_c01147{left:169.918920pt;}
.x1a_c01147{left:172.479467pt;}
.x2_c01147{left:182.718787pt;}
.x1d_c01147{left:183.679733pt;}
.x16_c01147{left:185.279333pt;}
.x13_c01147{left:195.839333pt;}
.xf_c01147{left:200.639587pt;}
.x8_c01147{left:204.479067pt;}
.x17_c01147{left:207.039587pt;}
.x31_c01147{left:209.279333pt;}
.x3_c01147{left:210.559587pt;}
.x1b_c01147{left:212.799333pt;}
.x2d_c01147{left:216.638667pt;}
.x26_c01147{left:233.919453pt;}
.x1c_c01147{left:250.558533pt;}
.x27_c01147{left:259.839867pt;}
.x22_c01147{left:267.839333pt;}
.x18_c01147{left:276.799867pt;}
.x10_c01147{left:282.559587pt;}
.x19_c01147{left:290.239720pt;}
.x9_c01147{left:291.518533pt;}
.x23_c01147{left:293.438920pt;}
.xd_c01147{left:295.038533pt;}
.x11_c01147{left:301.759320pt;}
.xa_c01147{left:312.638667pt;}
.xe_c01147{left:315.518533pt;}
.x4_c01147{left:316.479453pt;}
.x32_c01147{left:317.759720pt;}
.x2a_c01147{left:325.440000pt;}
.x2e_c01147{left:330.238787pt;}
.x33_c01147{left:331.199733pt;}
.xb_c01147{left:339.518533pt;}
.x5_c01147{left:343.999467pt;}
.x2b_c01147{left:346.558507pt;}
.x1f_c01147{left:363.199173pt;}
.x2c_c01147{left:365.759720pt;}
.x1e_c01147{left:366.719200pt;}
.xc_c01147{left:368.318813pt;}
.x29_c01147{left:374.718787pt;}
.x20_c01147{left:386.879840pt;}
.x2f_c01147{left:409.918907pt;}
.x34_c01147{left:415.678667pt;}
.x21_c01147{left:423.358933pt;}
.x14_c01147{left:460.158693pt;}
.x15_c01147{left:498.559573pt;}
}





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

.ir_c01148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_7b052553205920955a250f0d.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01148;src:url('chunks/assets/font_2d085cfa683e91d6b60c68a0.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01148;src:url('chunks/assets/font_23de329249e4d1b421e26fc0.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01148;src:url('chunks/assets/font_92d7f836262ce852a0d416e3.woff2')format("woff");}.ff4_c01148{font-family:ff4_c01148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01148;src:url('chunks/assets/font_3ef1892b1e09b70cb9811683.woff2')format("woff");}.ff5_c01148{font-family:ff5_c01148;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01148;src:url('chunks/assets/font_65c1e0a0485825d5845439b3.woff2')format("woff");}.ff6_c01148{font-family:ff6_c01148;line-height:1.432129;font-style:normal;font-weight: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_c01148;src:url('chunks/assets/font_98a3047a422a5e26872b5d99.woff2')format("woff");}.ff7_c01148{font-family:ff7_c01148;line-height:1.284180;font-style:normal;font-weight: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_c01148;src:url('chunks/assets/font_e0d9459134893061b6aa0066.woff2')format("woff");}.ff8_c01148{font-family:ff8_c01148;line-height:1.432129;font-style:normal;font-weight: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_c01148;src:url('chunks/assets/font_5c488bdf65396de7893a259d.woff2')format("woff");}.ff9_c01148{font-family:ff9_c01148;line-height:1.364746;font-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_c01148{transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158046,0.000000,0.000000,0.250000,0,0);}
.m1_c01148{transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);}
.m8_c01148{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m1c_c01148{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.md_c01148{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m11_c01148{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1b_c01148{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m9_c01148{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m7_c01148{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m3_c01148{transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234234,0.000000,0.000000,0.250000,0,0);}
.m2_c01148{transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237624,0.000000,0.000000,0.250000,0,0);}
.m1d_c01148{transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237981,0.000000,0.000000,0.250000,0,0);}
.m5_c01148{transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240654,0.000000,0.000000,0.250000,0,0);}
.m0_c01148{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m4_c01148{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mc_c01148{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.ma_c01148{transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);}
.mb_c01148{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m15_c01148{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.m1a_c01148{transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268868,0.000000,0.000000,0.250000,0,0);}
.m16_c01148{transform:matrix(0.314189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314189,0.000000,0.000000,0.250000,0,0);}
.m6_c01148{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m18_c01148{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m17_c01148{transform:matrix(0.350962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350962,0.000000,0.000000,0.250000,0,0);}
.m10_c01148{transform:matrix(0.353261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353261,0.000000,0.000000,0.250000,0,0);}
.m14_c01148{transform:matrix(0.418103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418103,0.000000,0.000000,0.250000,0,0);}
.m19_c01148{transform:matrix(0.422222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422222,0.000000,0.000000,0.250000,0,0);}
.mf_c01148{transform:matrix(0.455224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455224,0.000000,0.000000,0.250000,0,0);}
.m12_c01148{transform:matrix(0.528986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528986,0.000000,0.000000,0.250000,0,0);}
.me_c01148{transform:matrix(0.546610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546610,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls22_c01148{letter-spacing:-12.944325px;}
.ls1b_c01148{letter-spacing:-9.617400px;}
.lsa_c01148{letter-spacing:-6.118875px;}
.ls21_c01148{letter-spacing:-5.401628px;}
.ls23_c01148{letter-spacing:-4.012500px;}
.ls1e_c01148{letter-spacing:-3.860025px;}
.ls13_c01148{letter-spacing:-3.717885px;}
.ls18_c01148{letter-spacing:-3.588750px;}
.lse_c01148{letter-spacing:-3.209198px;}
.lsc_c01148{letter-spacing:-3.089625px;}
.lsb_c01148{letter-spacing:-3.055500px;}
.ls1f_c01148{letter-spacing:-2.407500px;}
.ls6_c01148{letter-spacing:-2.396768px;}
.ls2_c01148{letter-spacing:-2.310398px;}
.ls8_c01148{letter-spacing:-2.291625px;}
.ls14_c01148{letter-spacing:-1.605000px;}
.ls12_c01148{letter-spacing:-1.540800px;}
.ls9_c01148{letter-spacing:-1.526963px;}
.lsf_c01148{letter-spacing:-0.801698px;}
.ls15_c01148{letter-spacing:-0.770400px;}
.ls7_c01148{letter-spacing:-0.763875px;}
.ls4_c01148{letter-spacing:0.000000px;}
.ls0_c01148{letter-spacing:0.763875px;}
.ls1_c01148{letter-spacing:0.770400px;}
.ls20_c01148{letter-spacing:0.810105px;}
.ls10_c01148{letter-spacing:0.865200px;}
.ls5_c01148{letter-spacing:1.540800px;}
.ls11_c01148{letter-spacing:1.605000px;}
.ls3_c01148{letter-spacing:1.761300px;}
.ls1c_c01148{letter-spacing:2.333992px;}
.lsd_c01148{letter-spacing:3.113700px;}
.ls24_c01148{letter-spacing:3.939780px;}
.ls1d_c01148{letter-spacing:13.321125px;}
.ls17_c01148{letter-spacing:20.925825px;}
.ls1a_c01148{letter-spacing:26.257050px;}
.ls19_c01148{letter-spacing:33.762000px;}
.ls16_c01148{letter-spacing:87.918600px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01148{word-spacing:0.000000px;}
._c_c01148{margin-left:-12.719934px;}
._10_c01148{margin-left:-9.954146px;}
._6_c01148{margin-left:-8.631367px;}
._1_c01148{margin-left:-5.843632px;}
._7_c01148{margin-left:-3.661997px;}
._4_c01148{margin-left:-1.557056px;}
._3_c01148{width:1.580168px;}
._d_c01148{width:2.790694px;}
._5_c01148{width:4.100207px;}
._2_c01148{width:5.796780px;}
._0_c01148{width:7.730297px;}
._b_c01148{width:8.888390px;}
._9_c01148{width:10.151748px;}
._8_c01148{width:11.889358px;}
._e_c01148{width:13.088919px;}
._f_c01148{width:15.415136px;}
._a_c01148{width:17.205723px;}
.fc0_c01148{color:transparent;}
.fs15_c01148{font-size:33.750000px;}
.fsc_c01148{font-size:34.500000px;}
.fsd_c01148{font-size:36.000000px;}
.fs14_c01148{font-size:36.750000px;}
.fs13_c01148{font-size:39.000000px;}
.fs10_c01148{font-size:43.500000px;}
.fsa_c01148{font-size:44.250000px;}
.fsb_c01148{font-size:50.250000px;}
.fs11_c01148{font-size:51.000000px;}
.fse_c01148{font-size:51.750000px;}
.fs12_c01148{font-size:55.500000px;}
.fs9_c01148{font-size:57.750000px;}
.fsf_c01148{font-size:65.250000px;}
.fs2_c01148{font-size:75.750000px;}
.fs6_c01148{font-size:77.250000px;}
.fs8_c01148{font-size:78.000000px;}
.fs4_c01148{font-size:78.750000px;}
.fs16_c01148{font-size:79.500000px;}
.fs0_c01148{font-size:80.250000px;}
.fs3_c01148{font-size:83.250000px;}
.fs1_c01148{font-size:85.500000px;}
.fs7_c01148{font-size:88.500000px;}
.fs5_c01148{font-size:90.000000px;}
.y0_c01148{bottom:0.000000px;}
.y19_c01148{bottom:419.041470px;}
.y17_c01148{bottom:448.920840px;}
.y18_c01148{bottom:448.921185px;}
.y16_c01148{bottom:479.520315px;}
.y15_c01148{bottom:509.400885px;}
.y14_c01148{bottom:568.801215px;}
.y13_c01148{bottom:598.680135px;}
.y12_c01148{bottom:629.280120px;}
.y11_c01148{bottom:688.681185px;}
.y10_c01148{bottom:718.560285px;}
.ye_c01148{bottom:748.620435px;}
.yf_c01148{bottom:748.800105px;}
.yd_c01148{bottom:755.461035px;}
.yc_c01148{bottom:756.181185px;}
.yb_c01148{bottom:756.540570px;}
.ya_c01148{bottom:809.279850px;}
.y9_c01148{bottom:838.801215px;}
.y8_c01148{bottom:869.040990px;}
.y6_c01148{bottom:898.919055px;}
.y7_c01148{bottom:898.919955px;}
.y5_c01148{bottom:957.961035px;}
.y4_c01148{bottom:987.840090px;}
.y3_c01148{bottom:1018.079955px;}
.y2_c01148{bottom:1108.440315px;}
.y1_c01148{bottom:1138.680090px;}
.h1a_c01148{height:35.200195px;}
.h11_c01148{height:35.982422px;}
.h12_c01148{height:36.281250px;}
.h19_c01148{height:38.329102px;}
.h18_c01148{height:40.675781px;}
.hf_c01148{height:44.595703px;}
.h15_c01148{height:45.369141px;}
.h10_c01148{height:49.661133px;}
.h16_c01148{height:51.398438px;}
.h13_c01148{height:53.973633px;}
.h17_c01148{height:55.933594px;}
.he_c01148{height:60.231445px;}
.h14_c01148{height:64.007446px;}
.h9_c01148{height:75.778931px;}
.hc_c01148{height:75.816650px;}
.h3_c01148{height:76.341797px;}
.h1e_c01148{height:76.514648px;}
.h6_c01148{height:77.288818px;}
.ha_c01148{height:77.853516px;}
.h1c_c01148{height:77.986084px;}
.h1b_c01148{height:78.024902px;}
.hd_c01148{height:78.609375px;}
.h8_c01148{height:78.721802px;}
.h1d_c01148{height:79.309570px;}
.h5_c01148{height:79.365234px;}
.h1_c01148{height:80.876953px;}
.h4_c01148{height:83.900391px;}
.h2_c01148{height:86.167969px;}
.hb_c01148{height:87.462891px;}
.h7_c01148{height:93.867188px;}
.h0_c01148{height:1263.000000px;}
.w0_c01148{width:892.500000px;}
.x0_c01148{left:0.000000px;}
.xa_c01148{left:133.198785px;}
.x1_c01148{left:135.000000px;}
.x6_c01148{left:136.438665px;}
.x18_c01148{left:171.358665px;}
.x28_c01148{left:191.878950px;}
.x20_c01148{left:204.479250px;}
.xb_c01148{left:212.758500px;}
.x29_c01148{left:217.799535px;}
.x21_c01148{left:220.678500px;}
.x19_c01148{left:239.758500px;}
.x2_c01148{left:249.479685px;}
.xc_c01148{left:250.559100px;}
.x22_c01148{left:268.198785px;}
.x7_c01148{left:269.639100px;}
.x1a_c01148{left:271.079385px;}
.x3_c01148{left:274.319250px;}
.x10_c01148{left:277.199850px;}
.x1b_c01148{left:286.199385px;}
.x4_c01148{left:289.080000px;}
.x11_c01148{left:291.599700px;}
.x9_c01148{left:293.758500px;}
.x23_c01148{left:299.158785px;}
.x8_c01148{left:302.759535px;}
.x1e_c01148{left:304.199850px;}
.xd_c01148{left:316.080000px;}
.x12_c01148{left:335.519100px;}
.xe_c01148{left:344.518635px;}
.x25_c01148{left:345.958950px;}
.xf_c01148{left:376.918950px;}
.x1c_c01148{left:378.359235px;}
.x1f_c01148{left:381.239850px;}
.x16_c01148{left:386.638500px;}
.x13_c01148{left:400.319820px;}
.x5_c01148{left:408.239820px;}
.x1d_c01148{left:416.159820px;}
.x24_c01148{left:434.158770px;}
.x17_c01148{left:459.000000px;}
.x26_c01148{left:476.998950px;}
.x27_c01148{left:501.479235px;}
.x14_c01148{left:709.918350px;}
.x15_c01148{left:732.239820px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls22_c01148{letter-spacing:-11.506067pt;}
.ls1b_c01148{letter-spacing:-8.548800pt;}
.lsa_c01148{letter-spacing:-5.439000pt;}
.ls21_c01148{letter-spacing:-4.801447pt;}
.ls23_c01148{letter-spacing:-3.566667pt;}
.ls1e_c01148{letter-spacing:-3.431133pt;}
.ls13_c01148{letter-spacing:-3.304787pt;}
.ls18_c01148{letter-spacing:-3.190000pt;}
.lse_c01148{letter-spacing:-2.852620pt;}
.lsc_c01148{letter-spacing:-2.746333pt;}
.lsb_c01148{letter-spacing:-2.716000pt;}
.ls1f_c01148{letter-spacing:-2.140000pt;}
.ls6_c01148{letter-spacing:-2.130460pt;}
.ls2_c01148{letter-spacing:-2.053687pt;}
.ls8_c01148{letter-spacing:-2.037000pt;}
.ls14_c01148{letter-spacing:-1.426667pt;}
.ls12_c01148{letter-spacing:-1.369600pt;}
.ls9_c01148{letter-spacing:-1.357300pt;}
.lsf_c01148{letter-spacing:-0.712620pt;}
.ls15_c01148{letter-spacing:-0.684800pt;}
.ls7_c01148{letter-spacing:-0.679000pt;}
.ls4_c01148{letter-spacing:0.000000pt;}
.ls0_c01148{letter-spacing:0.679000pt;}
.ls1_c01148{letter-spacing:0.684800pt;}
.ls20_c01148{letter-spacing:0.720093pt;}
.ls10_c01148{letter-spacing:0.769067pt;}
.ls5_c01148{letter-spacing:1.369600pt;}
.ls11_c01148{letter-spacing:1.426667pt;}
.ls3_c01148{letter-spacing:1.565600pt;}
.ls1c_c01148{letter-spacing:2.074660pt;}
.lsd_c01148{letter-spacing:2.767733pt;}
.ls24_c01148{letter-spacing:3.502027pt;}
.ls1d_c01148{letter-spacing:11.841000pt;}
.ls17_c01148{letter-spacing:18.600733pt;}
.ls1a_c01148{letter-spacing:23.339600pt;}
.ls19_c01148{letter-spacing:30.010667pt;}
.ls16_c01148{letter-spacing:78.149867pt;}
.ws0_c01148{word-spacing:0.000000pt;}
._c_c01148{margin-left:-11.306608pt;}
._10_c01148{margin-left:-8.848130pt;}
._6_c01148{margin-left:-7.672326pt;}
._1_c01148{margin-left:-5.194340pt;}
._7_c01148{margin-left:-3.255109pt;}
._4_c01148{margin-left:-1.384050pt;}
._3_c01148{width:1.404594pt;}
._d_c01148{width:2.480617pt;}
._5_c01148{width:3.644628pt;}
._2_c01148{width:5.152693pt;}
._0_c01148{width:6.871375pt;}
._b_c01148{width:7.900791pt;}
._9_c01148{width:9.023776pt;}
._8_c01148{width:10.568319pt;}
._e_c01148{width:11.634595pt;}
._f_c01148{width:13.702343pt;}
._a_c01148{width:15.293976pt;}
.fs15_c01148{font-size:30.000000pt;}
.fsc_c01148{font-size:30.666667pt;}
.fsd_c01148{font-size:32.000000pt;}
.fs14_c01148{font-size:32.666667pt;}
.fs13_c01148{font-size:34.666667pt;}
.fs10_c01148{font-size:38.666667pt;}
.fsa_c01148{font-size:39.333333pt;}
.fsb_c01148{font-size:44.666667pt;}
.fs11_c01148{font-size:45.333333pt;}
.fse_c01148{font-size:46.000000pt;}
.fs12_c01148{font-size:49.333333pt;}
.fs9_c01148{font-size:51.333333pt;}
.fsf_c01148{font-size:58.000000pt;}
.fs2_c01148{font-size:67.333333pt;}
.fs6_c01148{font-size:68.666667pt;}
.fs8_c01148{font-size:69.333333pt;}
.fs4_c01148{font-size:70.000000pt;}
.fs16_c01148{font-size:70.666667pt;}
.fs0_c01148{font-size:71.333333pt;}
.fs3_c01148{font-size:74.000000pt;}
.fs1_c01148{font-size:76.000000pt;}
.fs7_c01148{font-size:78.666667pt;}
.fs5_c01148{font-size:80.000000pt;}
.y0_c01148{bottom:0.000000pt;}
.y19_c01148{bottom:372.481307pt;}
.y17_c01148{bottom:399.040747pt;}
.y18_c01148{bottom:399.041053pt;}
.y16_c01148{bottom:426.240280pt;}
.y15_c01148{bottom:452.800787pt;}
.y14_c01148{bottom:505.601080pt;}
.y13_c01148{bottom:532.160120pt;}
.y12_c01148{bottom:559.360107pt;}
.y11_c01148{bottom:612.161053pt;}
.y10_c01148{bottom:638.720253pt;}
.ye_c01148{bottom:665.440387pt;}
.yf_c01148{bottom:665.600093pt;}
.yd_c01148{bottom:671.520920pt;}
.yc_c01148{bottom:672.161053pt;}
.yb_c01148{bottom:672.480507pt;}
.ya_c01148{bottom:719.359867pt;}
.y9_c01148{bottom:745.601080pt;}
.y8_c01148{bottom:772.480880pt;}
.y6_c01148{bottom:799.039160pt;}
.y7_c01148{bottom:799.039960pt;}
.y5_c01148{bottom:851.520920pt;}
.y4_c01148{bottom:878.080080pt;}
.y3_c01148{bottom:904.959960pt;}
.y2_c01148{bottom:985.280280pt;}
.y1_c01148{bottom:1012.160080pt;}
.h1a_c01148{height:31.289062pt;}
.h11_c01148{height:31.984375pt;}
.h12_c01148{height:32.250000pt;}
.h19_c01148{height:34.070312pt;}
.h18_c01148{height:36.156250pt;}
.hf_c01148{height:39.640625pt;}
.h15_c01148{height:40.328125pt;}
.h10_c01148{height:44.143229pt;}
.h16_c01148{height:45.687500pt;}
.h13_c01148{height:47.976562pt;}
.h17_c01148{height:49.718750pt;}
.he_c01148{height:53.539062pt;}
.h14_c01148{height:56.895508pt;}
.h9_c01148{height:67.359049pt;}
.hc_c01148{height:67.392578pt;}
.h3_c01148{height:67.859375pt;}
.h1e_c01148{height:68.013021pt;}
.h6_c01148{height:68.701172pt;}
.ha_c01148{height:69.203125pt;}
.h1c_c01148{height:69.320964pt;}
.h1b_c01148{height:69.355469pt;}
.hd_c01148{height:69.875000pt;}
.h8_c01148{height:69.974935pt;}
.h1d_c01148{height:70.497396pt;}
.h5_c01148{height:70.546875pt;}
.h1_c01148{height:71.890625pt;}
.h4_c01148{height:74.578125pt;}
.h2_c01148{height:76.593750pt;}
.hb_c01148{height:77.744792pt;}
.h7_c01148{height:83.437500pt;}
.h0_c01148{height:1122.666667pt;}
.w0_c01148{width:793.333333pt;}
.x0_c01148{left:0.000000pt;}
.xa_c01148{left:118.398920pt;}
.x1_c01148{left:120.000000pt;}
.x6_c01148{left:121.278813pt;}
.x18_c01148{left:152.318813pt;}
.x28_c01148{left:170.559067pt;}
.x20_c01148{left:181.759333pt;}
.xb_c01148{left:189.118667pt;}
.x29_c01148{left:193.599587pt;}
.x21_c01148{left:196.158667pt;}
.x19_c01148{left:213.118667pt;}
.x2_c01148{left:221.759720pt;}
.xc_c01148{left:222.719200pt;}
.x22_c01148{left:238.398920pt;}
.x7_c01148{left:239.679200pt;}
.x1a_c01148{left:240.959453pt;}
.x3_c01148{left:243.839333pt;}
.x10_c01148{left:246.399867pt;}
.x1b_c01148{left:254.399453pt;}
.x4_c01148{left:256.960000pt;}
.x11_c01148{left:259.199733pt;}
.x9_c01148{left:261.118667pt;}
.x23_c01148{left:265.918920pt;}
.x8_c01148{left:269.119587pt;}
.x1e_c01148{left:270.399867pt;}
.xd_c01148{left:280.960000pt;}
.x12_c01148{left:298.239200pt;}
.xe_c01148{left:306.238787pt;}
.x25_c01148{left:307.519067pt;}
.xf_c01148{left:335.039067pt;}
.x1c_c01148{left:336.319320pt;}
.x1f_c01148{left:338.879867pt;}
.x16_c01148{left:343.678667pt;}
.x13_c01148{left:355.839840pt;}
.x5_c01148{left:362.879840pt;}
.x1d_c01148{left:369.919840pt;}
.x24_c01148{left:385.918907pt;}
.x17_c01148{left:408.000000pt;}
.x26_c01148{left:423.999067pt;}
.x27_c01148{left:445.759320pt;}
.x14_c01148{left:631.038533pt;}
.x15_c01148{left:650.879840pt;}
}





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

.ir_c01149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_a203565edbd919c9fe6c6a85.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01149;src:url('chunks/assets/font_e01d19d16dd94c9d37d11a59.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01149;src:url('chunks/assets/font_e785e896c9b8a4b30da0b715.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:1.311035;font-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_c01149{transform:matrix(0.211656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211656,0.000000,0.000000,0.250000,0,0);}
.m4_c01149{transform:matrix(0.212079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212079,0.000000,0.000000,0.250000,0,0);}
.m2_c01149{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m9_c01149{transform:matrix(0.224398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224398,0.000000,0.000000,0.250000,0,0);}
.m3_c01149{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.ma_c01149{transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);}
.m1_c01149{transform:matrix(0.290503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290503,0.000000,0.000000,0.250000,0,0);}
.m7_c01149{transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297753,0.000000,0.000000,0.250000,0,0);}
.m0_c01149{transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299731,0.000000,0.000000,0.250000,0,0);}
.m6_c01149{transform:matrix(0.315934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315934,0.000000,0.000000,0.250000,0,0);}
.m5_c01149{transform:matrix(0.318436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318436,0.000000,0.000000,0.250000,0,0);}
.m8_c01149{transform:matrix(0.318681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318681,0.000000,0.000000,0.250000,0,0);}
.v0_c01149{vertical-align:0.000000px;}
.ls18_c01149{letter-spacing:-14.337000px;}
.ls16_c01149{letter-spacing:-12.964050px;}
.ls14_c01149{letter-spacing:-2.934750px;}
.ls17_c01149{letter-spacing:-0.880200px;}
.lsb_c01149{letter-spacing:-0.863603px;}
.lse_c01149{letter-spacing:0.000000px;}
.lsa_c01149{letter-spacing:1.255500px;}
.ls2_c01149{letter-spacing:1.288800px;}
.ls0_c01149{letter-spacing:1.728900px;}
.ls15_c01149{letter-spacing:1.933200px;}
.ls12_c01149{letter-spacing:2.962050px;}
.lsc_c01149{letter-spacing:4.525568px;}
.ls7_c01149{letter-spacing:5.813025px;}
.ls11_c01149{letter-spacing:5.893575px;}
.ls9_c01149{letter-spacing:6.457425px;}
.ls13_c01149{letter-spacing:6.928650px;}
.ls8_c01149{letter-spacing:7.101825px;}
.ls10_c01149{letter-spacing:8.390625px;}
.lsf_c01149{letter-spacing:9.036368px;}
.ls3_c01149{letter-spacing:9.679425px;}
.ls5_c01149{letter-spacing:10.323825px;}
.lsd_c01149{letter-spacing:10.968225px;}
.ls1_c01149{letter-spacing:11.612625px;}
.ls4_c01149{letter-spacing:14.848050px;}
.ls6_c01149{letter-spacing:17.426993px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01149{word-spacing:0.000000px;}
._7_c01149{margin-left:-164.772615px;}
._2_c01149{width:23.466280px;}
._6_c01149{width:25.199758px;}
._8_c01149{width:29.650826px;}
._4_c01149{width:31.079082px;}
._1_c01149{width:32.494170px;}
._5_c01149{width:35.331554px;}
._0_c01149{width:40.620917px;}
._3_c01149{width:46.196251px;}
.fc0_c01149{color:transparent;}
.fs2_c01149{font-size:84.750000px;}
.fs7_c01149{font-size:121.500000px;}
.fs8_c01149{font-size:122.250000px;}
.fs6_c01149{font-size:124.500000px;}
.fs4_c01149{font-size:133.500000px;}
.fs1_c01149{font-size:134.250000px;}
.fs5_c01149{font-size:136.500000px;}
.fs0_c01149{font-size:139.500000px;}
.fs3_c01149{font-size:141.750000px;}
.y0_c01149{bottom:0.000000px;}
.y9_c01149{bottom:103.740420px;}
.y8_c01149{bottom:141.900285px;}
.y7_c01149{bottom:320.101320px;}
.y6_c01149{bottom:320.101770px;}
.y4_c01149{bottom:352.140045px;}
.y5_c01149{bottom:352.140705px;}
.y3_c01149{bottom:384.541035px;}
.y2_c01149{bottom:480.661005px;}
.y1_c01149{bottom:627.900240px;}
.h3_c01149{height:83.177490px;}
.h8_c01149{height:119.245605px;}
.h7_c01149{height:123.041016px;}
.h9_c01149{height:123.205078px;}
.h5_c01149{height:131.022949px;}
.h2_c01149{height:131.759033px;}
.h6_c01149{height:133.967285px;}
.h1_c01149{height:136.911621px;}
.h4_c01149{height:139.119873px;}
.h0_c01149{height:892.500000px;}
.w0_c01149{width:1263.000000px;}
.x0_c01149{left:0.000000px;}
.x1_c01149{left:128.518665px;}
.x3_c01149{left:141.118815px;}
.x4_c01149{left:147.959400px;}
.x2_c01149{left:240.478635px;}
.x5_c01149{left:466.199850px;}
.xf_c01149{left:495.358665px;}
.x6_c01149{left:508.319820px;}
.xd_c01149{left:523.439670px;}
.x7_c01149{left:570.239820px;}
.x10_c01149{left:589.319820px;}
.x8_c01149{left:612.359850px;}
.xe_c01149{left:626.759535px;}
.x9_c01149{left:667.439250px;}
.xa_c01149{left:754.559685px;}
.xb_c01149{left:817.559055px;}
.xc_c01149{left:924.118740px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.ls18_c01149{letter-spacing:-12.744000pt;}
.ls16_c01149{letter-spacing:-11.523600pt;}
.ls14_c01149{letter-spacing:-2.608667pt;}
.ls17_c01149{letter-spacing:-0.782400pt;}
.lsb_c01149{letter-spacing:-0.767647pt;}
.lse_c01149{letter-spacing:0.000000pt;}
.lsa_c01149{letter-spacing:1.116000pt;}
.ls2_c01149{letter-spacing:1.145600pt;}
.ls0_c01149{letter-spacing:1.536800pt;}
.ls15_c01149{letter-spacing:1.718400pt;}
.ls12_c01149{letter-spacing:2.632933pt;}
.lsc_c01149{letter-spacing:4.022727pt;}
.ls7_c01149{letter-spacing:5.167133pt;}
.ls11_c01149{letter-spacing:5.238733pt;}
.ls9_c01149{letter-spacing:5.739933pt;}
.ls13_c01149{letter-spacing:6.158800pt;}
.ls8_c01149{letter-spacing:6.312733pt;}
.ls10_c01149{letter-spacing:7.458333pt;}
.lsf_c01149{letter-spacing:8.032327pt;}
.ls3_c01149{letter-spacing:8.603933pt;}
.ls5_c01149{letter-spacing:9.176733pt;}
.lsd_c01149{letter-spacing:9.749533pt;}
.ls1_c01149{letter-spacing:10.322333pt;}
.ls4_c01149{letter-spacing:13.198267pt;}
.ls6_c01149{letter-spacing:15.490660pt;}
.ws0_c01149{word-spacing:0.000000pt;}
._7_c01149{margin-left:-146.464547pt;}
._2_c01149{width:20.858916pt;}
._6_c01149{width:22.399785pt;}
._8_c01149{width:26.356290pt;}
._4_c01149{width:27.625850pt;}
._1_c01149{width:28.883707pt;}
._5_c01149{width:31.405825pt;}
._0_c01149{width:36.107482pt;}
._3_c01149{width:41.063334pt;}
.fs2_c01149{font-size:75.333333pt;}
.fs7_c01149{font-size:108.000000pt;}
.fs8_c01149{font-size:108.666667pt;}
.fs6_c01149{font-size:110.666667pt;}
.fs4_c01149{font-size:118.666667pt;}
.fs1_c01149{font-size:119.333333pt;}
.fs5_c01149{font-size:121.333333pt;}
.fs0_c01149{font-size:124.000000pt;}
.fs3_c01149{font-size:126.000000pt;}
.y0_c01149{bottom:0.000000pt;}
.y9_c01149{bottom:92.213707pt;}
.y8_c01149{bottom:126.133587pt;}
.y7_c01149{bottom:284.534507pt;}
.y6_c01149{bottom:284.534907pt;}
.y4_c01149{bottom:313.013373pt;}
.y5_c01149{bottom:313.013960pt;}
.y3_c01149{bottom:341.814253pt;}
.y2_c01149{bottom:427.254227pt;}
.y1_c01149{bottom:558.133547pt;}
.h3_c01149{height:73.935547pt;}
.h8_c01149{height:105.996094pt;}
.h7_c01149{height:109.369792pt;}
.h9_c01149{height:109.515625pt;}
.h5_c01149{height:116.464844pt;}
.h2_c01149{height:117.119141pt;}
.h6_c01149{height:119.082031pt;}
.h1_c01149{height:121.699219pt;}
.h4_c01149{height:123.662109pt;}
.h0_c01149{height:793.333333pt;}
.w0_c01149{width:1122.666667pt;}
.x0_c01149{left:0.000000pt;}
.x1_c01149{left:114.238813pt;}
.x3_c01149{left:125.438947pt;}
.x4_c01149{left:131.519467pt;}
.x2_c01149{left:213.758787pt;}
.x5_c01149{left:414.399867pt;}
.xf_c01149{left:440.318813pt;}
.x6_c01149{left:451.839840pt;}
.xd_c01149{left:465.279707pt;}
.x7_c01149{left:506.879840pt;}
.x10_c01149{left:523.839840pt;}
.x8_c01149{left:544.319867pt;}
.xe_c01149{left:557.119587pt;}
.x9_c01149{left:593.279333pt;}
.xa_c01149{left:670.719720pt;}
.xb_c01149{left:726.719160pt;}
.xc_c01149{left:821.438880pt;}
}





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

.ir_c01150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_684f12774e9d858722c0ba9b.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01150;src:url('chunks/assets/font_0ec539420310b403452d7a20.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01150;src:url('chunks/assets/font_bbffe2cf3bba28b74c79bef9.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_5f4e533559f8231e1924e02d.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01150;src:url('chunks/assets/font_717d43fd2d39711f5c0b5561.woff2')format("woff");}.ff5_c01150{font-family:ff5_c01150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01150;src:url('chunks/assets/font_67934037680842712fb0c48f.woff2')format("woff");}.ff6_c01150{font-family:ff6_c01150;line-height:1.284180;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_73bdd02ad95186a1217d6884.woff2')format("woff");}.ff7_c01150{font-family:ff7_c01150;line-height:1.432129;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_7d1b26776738bdd54d1852be.woff2')format("woff");}.ff8_c01150{font-family:ff8_c01150;line-height:1.364746;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_1758827301d6a6b126e2dabf.woff2')format("woff");}.ff9_c01150{font-family:ff9_c01150;line-height:1.432129;font-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_c01150{transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);}
.m14_c01150{transform:matrix(0.159794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159794,0.000000,0.000000,0.250000,0,0);}
.m29_c01150{transform:matrix(0.190341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190341,0.000000,0.000000,0.250000,0,0);}
.m10_c01150{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m2b_c01150{transform:matrix(0.197421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197421,0.000000,0.000000,0.250000,0,0);}
.m2_c01150{transform:matrix(0.199438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199438,0.000000,0.000000,0.250000,0,0);}
.m1e_c01150{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m25_c01150{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m2a_c01150{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m7_c01150{transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);}
.m24_c01150{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m1_c01150{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m21_c01150{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m3_c01150{transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);}
.mc_c01150{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m26_c01150{transform:matrix(0.227848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227848,0.000000,0.000000,0.250000,0,0);}
.m19_c01150{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1c_c01150{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m17_c01150{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m20_c01150{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m13_c01150{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m11_c01150{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m1a_c01150{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m27_c01150{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1b_c01150{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.me_c01150{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m22_c01150{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m12_c01150{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.ma_c01150{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.m18_c01150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01150{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m1d_c01150{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m1f_c01150{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m4_c01150{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.mf_c01150{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.md_c01150{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m15_c01150{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m16_c01150{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.mb_c01150{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m9_c01150{transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289326,0.000000,0.000000,0.250000,0,0);}
.m5_c01150{transform:matrix(0.294944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294944,0.000000,0.000000,0.250000,0,0);}
.m23_c01150{transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);}
.m28_c01150{transform:matrix(0.347826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347826,0.000000,0.000000,0.250000,0,0);}
.m6_c01150{transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361111,0.000000,0.000000,0.250000,0,0);}
.v0_c01150{vertical-align:0.000000px;}
.ls12_c01150{letter-spacing:-11.868150px;}
.ls1a_c01150{letter-spacing:-9.790583px;}
.ls13_c01150{letter-spacing:-9.638033px;}
.lsa_c01150{letter-spacing:-9.347400px;}
.ls1d_c01150{letter-spacing:-7.788150px;}
.ls19_c01150{letter-spacing:-7.415925px;}
.ls20_c01150{letter-spacing:-7.265700px;}
.ls1c_c01150{letter-spacing:-6.247200px;}
.ls29_c01150{letter-spacing:-6.241950px;}
.lse_c01150{letter-spacing:-5.934075px;}
.ls26_c01150{letter-spacing:-5.901000px;}
.ls11_c01150{letter-spacing:-5.508000px;}
.lsf_c01150{letter-spacing:-5.193150px;}
.ls21_c01150{letter-spacing:-4.895550px;}
.ls18_c01150{letter-spacing:-4.692375px;}
.lsc_c01150{letter-spacing:-4.452225px;}
.lsd_c01150{letter-spacing:-3.891525px;}
.ls10_c01150{letter-spacing:-3.711300px;}
.ls23_c01150{letter-spacing:-3.498300px;}
.ls8_c01150{letter-spacing:-2.963700px;}
.ls14_c01150{letter-spacing:-2.875500px;}
.ls25_c01150{letter-spacing:-2.318400px;}
.ls6_c01150{letter-spacing:-2.222108px;}
.ls1f_c01150{letter-spacing:-2.216025px;}
.ls28_c01150{letter-spacing:-1.647150px;}
.ls7_c01150{letter-spacing:-1.481850px;}
.ls1e_c01150{letter-spacing:-0.810900px;}
.ls4_c01150{letter-spacing:-0.740258px;}
.ls2a_c01150{letter-spacing:-0.538718px;}
.ls5_c01150{letter-spacing:0.000000px;}
.ls1_c01150{letter-spacing:0.740258px;}
.ls17_c01150{letter-spacing:0.778050px;}
.ls1b_c01150{letter-spacing:0.821100px;}
.ls27_c01150{letter-spacing:0.879750px;}
.ls2_c01150{letter-spacing:1.481850px;}
.ls16_c01150{letter-spacing:1.571873px;}
.ls22_c01150{letter-spacing:1.586745px;}
.ls24_c01150{letter-spacing:1.695750px;}
.ls2b_c01150{letter-spacing:1.966800px;}
.ls0_c01150{letter-spacing:2.222108px;}
.ls15_c01150{letter-spacing:2.936250px;}
.ls3_c01150{letter-spacing:2.963700px;}
.ls9_c01150{letter-spacing:9.217050px;}
.lsb_c01150{letter-spacing:13.026825px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01150{word-spacing:0.000000px;}
._27_c01150{margin-left:-30.078440px;}
._2b_c01150{margin-left:-17.821894px;}
._24_c01150{margin-left:-14.511925px;}
._2a_c01150{margin-left:-13.339350px;}
._10_c01150{margin-left:-12.256116px;}
._f_c01150{margin-left:-8.446263px;}
._15_c01150{margin-left:-6.761404px;}
._26_c01150{margin-left:-5.540191px;}
._2_c01150{margin-left:-4.389035px;}
._1c_c01150{margin-left:-3.355196px;}
._3_c01150{margin-left:-2.098309px;}
._14_c01150{margin-left:-1.063669px;}
._9_c01150{width:1.448149px;}
._1_c01150{width:2.852049px;}
._13_c01150{width:3.984174px;}
._0_c01150{width:5.339333px;}
._a_c01150{width:7.336092px;}
._b_c01150{width:8.597341px;}
._e_c01150{width:9.745085px;}
._25_c01150{width:10.837619px;}
._12_c01150{width:11.983257px;}
._1f_c01150{width:13.496969px;}
._19_c01150{width:14.885309px;}
._11_c01150{width:16.299282px;}
._20_c01150{width:17.738145px;}
._17_c01150{width:19.310419px;}
._28_c01150{width:20.351422px;}
._18_c01150{width:21.927672px;}
._1a_c01150{width:23.569217px;}
._6_c01150{width:24.706296px;}
._22_c01150{width:25.789960px;}
._1b_c01150{width:26.816100px;}
._4_c01150{width:28.108336px;}
._8_c01150{width:30.573710px;}
._5_c01150{width:32.286708px;}
._21_c01150{width:33.575191px;}
._7_c01150{width:34.799000px;}
._2c_c01150{width:36.130766px;}
._29_c01150{width:37.728895px;}
._d_c01150{width:40.043770px;}
._1d_c01150{width:41.344950px;}
._c_c01150{width:42.766755px;}
._23_c01150{width:44.426590px;}
._16_c01150{width:45.523975px;}
._1e_c01150{width:53.807412px;}
._2d_c01150{width:60.656170px;}
.fc0_c01150{color:transparent;}
.fsc_c01150{font-size:47.250000px;}
.fs10_c01150{font-size:50.250000px;}
.fse_c01150{font-size:51.000000px;}
.fsb_c01150{font-size:51.750000px;}
.fs13_c01150{font-size:52.500000px;}
.fs14_c01150{font-size:53.250000px;}
.fsd_c01150{font-size:54.750000px;}
.fs12_c01150{font-size:55.500000px;}
.fsf_c01150{font-size:57.000000px;}
.fs16_c01150{font-size:58.500000px;}
.fs15_c01150{font-size:59.250000px;}
.fs9_c01150{font-size:60.750000px;}
.fs5_c01150{font-size:63.000000px;}
.fs2_c01150{font-size:64.500000px;}
.fs7_c01150{font-size:65.250000px;}
.fs17_c01150{font-size:66.000000px;}
.fs0_c01150{font-size:66.750000px;}
.fs18_c01150{font-size:67.121400px;}
.fs6_c01150{font-size:67.500000px;}
.fs8_c01150{font-size:68.250000px;}
.fs3_c01150{font-size:69.000000px;}
.fs1_c01150{font-size:69.750000px;}
.fsa_c01150{font-size:72.750000px;}
.fs11_c01150{font-size:78.750000px;}
.fs4_c01150{font-size:81.000000px;}
.y0_c01150{bottom:0.000000px;}
.y1c_c01150{bottom:95.820105px;}
.y3d_c01150{bottom:96.540165px;}
.y1b_c01150{bottom:121.382010px;}
.y3c_c01150{bottom:122.100285px;}
.y3b_c01150{bottom:122.100570px;}
.y1a_c01150{bottom:146.580030px;}
.y3a_c01150{bottom:147.300390px;}
.y5c_c01150{bottom:147.661485px;}
.y5b_c01150{bottom:147.662475px;}
.y19_c01150{bottom:172.140150px;}
.y39_c01150{bottom:172.860510px;}
.y38_c01150{bottom:198.060315px;}
.y5a_c01150{bottom:198.422400px;}
.y18_c01150{bottom:222.900285px;}
.y36_c01150{bottom:223.619520px;}
.y37_c01150{bottom:223.620435px;}
.y59_c01150{bottom:223.620570px;}
.y17_c01150{bottom:248.821515px;}
.y35_c01150{bottom:249.179655px;}
.y58_c01150{bottom:249.541260px;}
.y15_c01150{bottom:274.020705px;}
.y16_c01150{bottom:274.021335px;}
.y34_c01150{bottom:275.100315px;}
.y14_c01150{bottom:299.218740px;}
.y56_c01150{bottom:300.300450px;}
.y57_c01150{bottom:300.301185px;}
.y32_c01150{bottom:300.660135px;}
.y33_c01150{bottom:300.660435px;}
.y13_c01150{bottom:324.780645px;}
.y31_c01150{bottom:325.859955px;}
.y55_c01150{bottom:326.219610px;}
.y12_c01150{bottom:350.340750px;}
.y30_c01150{bottom:351.420090px;}
.y54_c01150{bottom:351.781500px;}
.y11_c01150{bottom:375.900885px;}
.y10_c01150{bottom:375.901755px;}
.y2f_c01150{bottom:376.980195px;}
.y53_c01150{bottom:377.701695px;}
.yf_c01150{bottom:401.822430px;}
.y2e_c01150{bottom:402.900885px;}
.y52_c01150{bottom:402.901500px;}
.ye_c01150{bottom:426.661695px;}
.y51_c01150{bottom:428.101320px;}
.y50_c01150{bottom:428.101575px;}
.yd_c01150{bottom:452.221800px;}
.y2d_c01150{bottom:453.301800px;}
.y2c_c01150{bottom:453.302280px;}
.y4f_c01150{bottom:453.661680px;}
.yc_c01150{bottom:477.421620px;}
.y2b_c01150{bottom:478.500315px;}
.y4e_c01150{bottom:478.861500px;}
.y4d_c01150{bottom:478.862805px;}
.yb_c01150{bottom:502.260885px;}
.y2a_c01150{bottom:503.341350px;}
.y4c_c01150{bottom:504.060840px;}
.y69_c01150{bottom:522.780195px;}
.ya_c01150{bottom:527.821020px;}
.y29_c01150{bottom:528.901470px;}
.y4b_c01150{bottom:529.981500px;}
.y68_c01150{bottom:548.340315px;}
.y9_c01150{bottom:553.382910px;}
.y28_c01150{bottom:554.099460px;}
.y4a_c01150{bottom:555.181320px;}
.y67_c01150{bottom:573.900420px;}
.y8_c01150{bottom:578.943030px;}
.y27_c01150{bottom:579.661380px;}
.y49_c01150{bottom:580.383345px;}
.y66_c01150{bottom:598.741470px;}
.y7_c01150{bottom:604.141065px;}
.y26_c01150{bottom:605.221485px;}
.y48_c01150{bottom:605.581380px;}
.y65_c01150{bottom:623.940255px;}
.y64_c01150{bottom:623.941560px;}
.y6_c01150{bottom:629.340870px;}
.y25_c01150{bottom:630.060750px;}
.y24_c01150{bottom:630.062505px;}
.y47_c01150{bottom:630.422400px;}
.y63_c01150{bottom:649.141365px;}
.y5_c01150{bottom:654.180135px;}
.y23_c01150{bottom:655.262325px;}
.y45_c01150{bottom:655.619730px;}
.y46_c01150{bottom:655.620435px;}
.y62_c01150{bottom:674.341185px;}
.y4_c01150{bottom:679.380570px;}
.y3_c01150{bottom:679.380825px;}
.y22_c01150{bottom:680.101590px;}
.y44_c01150{bottom:681.179850px;}
.y61_c01150{bottom:699.541620px;}
.y2_c01150{bottom:704.940930px;}
.y21_c01150{bottom:705.661695px;}
.y43_c01150{bottom:706.020885px;}
.y1_c01150{bottom:730.140750px;}
.y20_c01150{bottom:731.221830px;}
.y42_c01150{bottom:731.581005px;}
.y41_c01150{bottom:731.583120px;}
.y60_c01150{bottom:748.141335px;}
.y1f_c01150{bottom:756.421650px;}
.y40_c01150{bottom:756.782940px;}
.y5f_c01150{bottom:769.381620px;}
.y1e_c01150{bottom:781.621440px;}
.y3f_c01150{bottom:781.980975px;}
.y5e_c01150{bottom:788.100765px;}
.y1d_c01150{bottom:806.460705px;}
.y3e_c01150{bottom:807.180765px;}
.y5d_c01150{bottom:810.781500px;}
.he_c01150{height:49.280273px;}
.h13_c01150{height:52.409180px;}
.h10_c01150{height:53.191406px;}
.hd_c01150{height:53.973633px;}
.h16_c01150{height:54.755859px;}
.hf_c01150{height:55.177734px;}
.h17_c01150{height:55.538086px;}
.h15_c01150{height:55.933594px;}
.h11_c01150{height:56.332031px;}
.h19_c01150{height:57.814453px;}
.h18_c01150{height:59.712891px;}
.h12_c01150{height:60.038086px;}
.hb_c01150{height:63.360352px;}
.h8_c01150{height:64.039307px;}
.h1a_c01150{height:64.775391px;}
.h1_c01150{height:65.511475px;}
.h6_c01150{height:65.707031px;}
.h1b_c01150{height:65.875983px;}
.h9_c01150{height:66.247559px;}
.ha_c01150{height:66.950317px;}
.h3_c01150{height:67.271484px;}
.h4_c01150{height:67.719727px;}
.h7_c01150{height:68.027344px;}
.h2_c01150{height:68.455811px;}
.hc_c01150{height:71.400146px;}
.h14_c01150{height:77.288818px;}
.h5_c01150{height:79.457520px;}
.h0_c01150{height:892.500000px;}
.w0_c01150{width:1263.000000px;}
.x0_c01150{left:0.000000px;}
.x2_c01150{left:221.041650px;}
.x8_c01150{left:254.878350px;}
.x1_c01150{left:259.199385px;}
.x9_c01150{left:294.478635px;}
.xa_c01150{left:340.199385px;}
.xd_c01150{left:358.199850px;}
.x4_c01150{left:369.359850px;}
.x5_c01150{left:382.678530px;}
.xb_c01150{left:386.999400px;}
.xc_c01150{left:399.958920px;}
.x6_c01150{left:414.719565px;}
.x7_c01150{left:432.718500px;}
.x3_c01150{left:440.999400px;}
.xe_c01150{left:479.161950px;}
.x12_c01150{left:480.601845px;}
.x17_c01150{left:482.399025px;}
.x11_c01150{left:513.000000px;}
.x15_c01150{left:519.118785px;}
.xf_c01150{left:541.079400px;}
.x16_c01150{left:545.039385px;}
.x1c_c01150{left:554.038920px;}
.x10_c01150{left:555.838530px;}
.x18_c01150{left:566.279850px;}
.x13_c01150{left:602.999400px;}
.x19_c01150{left:610.199385px;}
.x14_c01150{left:616.679070px;}
.x1a_c01150{left:624.958335px;}
.x1d_c01150{left:669.599670px;}
.x1b_c01150{left:675.718545px;}
.x1e_c01150{left:689.038920px;}
.x20_c01150{left:744.478530px;}
.x23_c01150{left:745.556655px;}
.x27_c01150{left:746.639445px;}
.x28_c01150{left:748.080375px;}
.x34_c01150{left:749.160510px;}
.x35_c01150{left:775.439205px;}
.x26_c01150{left:777.238770px;}
.x1f_c01150{left:784.438455px;}
.x31_c01150{left:788.399055px;}
.x2f_c01150{left:791.638545px;}
.x2d_c01150{left:794.159820px;}
.x2b_c01150{left:800.278755px;}
.x30_c01150{left:805.679070px;}
.x2e_c01150{left:808.918950px;}
.x32_c01150{left:819.358605px;}
.x2c_c01150{left:821.519070px;}
.x33_c01150{left:837.359250px;}
.x29_c01150{left:838.799565px;}
.x2a_c01150{left:852.838530px;}
.x24_c01150{left:883.079955px;}
.x25_c01150{left:900.719520px;}
.x21_c01150{left:934.919490px;}
.x22_c01150{left:950.039340px;}
.x4a_c01150{left:1004.398590px;}
.x4e_c01150{left:1005.479640px;}
.x36_c01150{left:1041.838530px;}
.x40_c01150{left:1043.639655px;}
.x37_c01150{left:1062.719520px;}
.x4b_c01150{left:1064.878320px;}
.x38_c01150{left:1072.079955px;}
.x4c_c01150{left:1081.799565px;}
.x48_c01150{left:1087.199805px;}
.x41_c01150{left:1088.999355px;}
.x39_c01150{left:1095.479190px;}
.x42_c01150{left:1099.079955px;}
.x3a_c01150{left:1117.078770px;}
.x43_c01150{left:1123.558590px;}
.x3b_c01150{left:1139.398590px;}
.x44_c01150{left:1143.358605px;}
.x3c_c01150{left:1157.039985px;}
.x45_c01150{left:1166.398590px;}
.x3d_c01150{left:1168.559055px;}
.x46_c01150{left:1182.599670px;}
.x4d_c01150{left:1184.039985px;}
.x3e_c01150{left:1190.158815px;}
.x47_c01150{left:1200.598575px;}
.x3f_c01150{left:1211.399235px;}
.x49_c01150{left:1218.958275px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls12_c01150{letter-spacing:-10.549467pt;}
.ls1a_c01150{letter-spacing:-8.702740pt;}
.ls13_c01150{letter-spacing:-8.567140pt;}
.lsa_c01150{letter-spacing:-8.308800pt;}
.ls1d_c01150{letter-spacing:-6.922800pt;}
.ls19_c01150{letter-spacing:-6.591933pt;}
.ls20_c01150{letter-spacing:-6.458400pt;}
.ls1c_c01150{letter-spacing:-5.553067pt;}
.ls29_c01150{letter-spacing:-5.548400pt;}
.lse_c01150{letter-spacing:-5.274733pt;}
.ls26_c01150{letter-spacing:-5.245333pt;}
.ls11_c01150{letter-spacing:-4.896000pt;}
.lsf_c01150{letter-spacing:-4.616133pt;}
.ls21_c01150{letter-spacing:-4.351600pt;}
.ls18_c01150{letter-spacing:-4.171000pt;}
.lsc_c01150{letter-spacing:-3.957533pt;}
.lsd_c01150{letter-spacing:-3.459133pt;}
.ls10_c01150{letter-spacing:-3.298933pt;}
.ls23_c01150{letter-spacing:-3.109600pt;}
.ls8_c01150{letter-spacing:-2.634400pt;}
.ls14_c01150{letter-spacing:-2.556000pt;}
.ls25_c01150{letter-spacing:-2.060800pt;}
.ls6_c01150{letter-spacing:-1.975207pt;}
.ls1f_c01150{letter-spacing:-1.969800pt;}
.ls28_c01150{letter-spacing:-1.464133pt;}
.ls7_c01150{letter-spacing:-1.317200pt;}
.ls1e_c01150{letter-spacing:-0.720800pt;}
.ls4_c01150{letter-spacing:-0.658007pt;}
.ls2a_c01150{letter-spacing:-0.478860pt;}
.ls5_c01150{letter-spacing:0.000000pt;}
.ls1_c01150{letter-spacing:0.658007pt;}
.ls17_c01150{letter-spacing:0.691600pt;}
.ls1b_c01150{letter-spacing:0.729867pt;}
.ls27_c01150{letter-spacing:0.782000pt;}
.ls2_c01150{letter-spacing:1.317200pt;}
.ls16_c01150{letter-spacing:1.397220pt;}
.ls22_c01150{letter-spacing:1.410440pt;}
.ls24_c01150{letter-spacing:1.507333pt;}
.ls2b_c01150{letter-spacing:1.748267pt;}
.ls0_c01150{letter-spacing:1.975207pt;}
.ls15_c01150{letter-spacing:2.610000pt;}
.ls3_c01150{letter-spacing:2.634400pt;}
.ls9_c01150{letter-spacing:8.192933pt;}
.lsb_c01150{letter-spacing:11.579400pt;}
.ws0_c01150{word-spacing:0.000000pt;}
._27_c01150{margin-left:-26.736391pt;}
._2b_c01150{margin-left:-15.841684pt;}
._24_c01150{margin-left:-12.899489pt;}
._2a_c01150{margin-left:-11.857200pt;}
._10_c01150{margin-left:-10.894325pt;}
._f_c01150{margin-left:-7.507789pt;}
._15_c01150{margin-left:-6.010137pt;}
._26_c01150{margin-left:-4.924614pt;}
._2_c01150{margin-left:-3.901364pt;}
._1c_c01150{margin-left:-2.982397pt;}
._3_c01150{margin-left:-1.865163pt;}
._14_c01150{margin-left:-0.945483pt;}
._9_c01150{width:1.287243pt;}
._1_c01150{width:2.535155pt;}
._13_c01150{width:3.541488pt;}
._0_c01150{width:4.746073pt;}
._a_c01150{width:6.520971pt;}
._b_c01150{width:7.642081pt;}
._e_c01150{width:8.662297pt;}
._25_c01150{width:9.633439pt;}
._12_c01150{width:10.651784pt;}
._1f_c01150{width:11.997305pt;}
._19_c01150{width:13.231386pt;}
._11_c01150{width:14.488251pt;}
._20_c01150{width:15.767240pt;}
._17_c01150{width:17.164817pt;}
._28_c01150{width:18.090153pt;}
._18_c01150{width:19.491264pt;}
._1a_c01150{width:20.950415pt;}
._6_c01150{width:21.961152pt;}
._22_c01150{width:22.924409pt;}
._1b_c01150{width:23.836534pt;}
._4_c01150{width:24.985188pt;}
._8_c01150{width:27.176631pt;}
._5_c01150{width:28.699296pt;}
._21_c01150{width:29.844614pt;}
._7_c01150{width:30.932444pt;}
._2c_c01150{width:32.116237pt;}
._29_c01150{width:33.536795pt;}
._d_c01150{width:35.594462pt;}
._1d_c01150{width:36.751067pt;}
._c_c01150{width:38.014893pt;}
._23_c01150{width:39.490302pt;}
._16_c01150{width:40.465755pt;}
._1e_c01150{width:47.828811pt;}
._2d_c01150{width:53.916596pt;}
.fsc_c01150{font-size:42.000000pt;}
.fs10_c01150{font-size:44.666667pt;}
.fse_c01150{font-size:45.333333pt;}
.fsb_c01150{font-size:46.000000pt;}
.fs13_c01150{font-size:46.666667pt;}
.fs14_c01150{font-size:47.333333pt;}
.fsd_c01150{font-size:48.666667pt;}
.fs12_c01150{font-size:49.333333pt;}
.fsf_c01150{font-size:50.666667pt;}
.fs16_c01150{font-size:52.000000pt;}
.fs15_c01150{font-size:52.666667pt;}
.fs9_c01150{font-size:54.000000pt;}
.fs5_c01150{font-size:56.000000pt;}
.fs2_c01150{font-size:57.333333pt;}
.fs7_c01150{font-size:58.000000pt;}
.fs17_c01150{font-size:58.666667pt;}
.fs0_c01150{font-size:59.333333pt;}
.fs18_c01150{font-size:59.663467pt;}
.fs6_c01150{font-size:60.000000pt;}
.fs8_c01150{font-size:60.666667pt;}
.fs3_c01150{font-size:61.333333pt;}
.fs1_c01150{font-size:62.000000pt;}
.fsa_c01150{font-size:64.666667pt;}
.fs11_c01150{font-size:70.000000pt;}
.fs4_c01150{font-size:72.000000pt;}
.y0_c01150{bottom:0.000000pt;}
.y1c_c01150{bottom:85.173427pt;}
.y3d_c01150{bottom:85.813480pt;}
.y1b_c01150{bottom:107.895120pt;}
.y3c_c01150{bottom:108.533587pt;}
.y3b_c01150{bottom:108.533840pt;}
.y1a_c01150{bottom:130.293360pt;}
.y3a_c01150{bottom:130.933680pt;}
.y5c_c01150{bottom:131.254653pt;}
.y5b_c01150{bottom:131.255533pt;}
.y19_c01150{bottom:153.013467pt;}
.y39_c01150{bottom:153.653787pt;}
.y38_c01150{bottom:176.053613pt;}
.y5a_c01150{bottom:176.375467pt;}
.y18_c01150{bottom:198.133587pt;}
.y36_c01150{bottom:198.772907pt;}
.y37_c01150{bottom:198.773720pt;}
.y59_c01150{bottom:198.773840pt;}
.y17_c01150{bottom:221.174680pt;}
.y35_c01150{bottom:221.493027pt;}
.y58_c01150{bottom:221.814453pt;}
.y15_c01150{bottom:243.573960pt;}
.y16_c01150{bottom:243.574520pt;}
.y34_c01150{bottom:244.533613pt;}
.y14_c01150{bottom:265.972213pt;}
.y56_c01150{bottom:266.933733pt;}
.y57_c01150{bottom:266.934387pt;}
.y32_c01150{bottom:267.253453pt;}
.y33_c01150{bottom:267.253720pt;}
.y13_c01150{bottom:288.693907pt;}
.y31_c01150{bottom:289.653293pt;}
.y55_c01150{bottom:289.972987pt;}
.y12_c01150{bottom:311.414000pt;}
.y30_c01150{bottom:312.373413pt;}
.y54_c01150{bottom:312.694667pt;}
.y11_c01150{bottom:334.134120pt;}
.y10_c01150{bottom:334.134893pt;}
.y2f_c01150{bottom:335.093507pt;}
.y53_c01150{bottom:335.734840pt;}
.yf_c01150{bottom:357.175493pt;}
.y2e_c01150{bottom:358.134120pt;}
.y52_c01150{bottom:358.134667pt;}
.ye_c01150{bottom:379.254840pt;}
.y51_c01150{bottom:380.534507pt;}
.y50_c01150{bottom:380.534733pt;}
.yd_c01150{bottom:401.974933pt;}
.y2d_c01150{bottom:402.934933pt;}
.y2c_c01150{bottom:402.935360pt;}
.y4f_c01150{bottom:403.254827pt;}
.yc_c01150{bottom:424.374773pt;}
.y2b_c01150{bottom:425.333613pt;}
.y4e_c01150{bottom:425.654667pt;}
.y4d_c01150{bottom:425.655827pt;}
.yb_c01150{bottom:446.454120pt;}
.y2a_c01150{bottom:447.414533pt;}
.y4c_c01150{bottom:448.054080pt;}
.y69_c01150{bottom:464.693507pt;}
.ya_c01150{bottom:469.174240pt;}
.y29_c01150{bottom:470.134640pt;}
.y4b_c01150{bottom:471.094667pt;}
.y68_c01150{bottom:487.413613pt;}
.y9_c01150{bottom:491.895920pt;}
.y28_c01150{bottom:492.532853pt;}
.y4a_c01150{bottom:493.494507pt;}
.y67_c01150{bottom:510.133707pt;}
.y8_c01150{bottom:514.616027pt;}
.y27_c01150{bottom:515.254560pt;}
.y49_c01150{bottom:515.896307pt;}
.y66_c01150{bottom:532.214640pt;}
.y7_c01150{bottom:537.014280pt;}
.y26_c01150{bottom:537.974653pt;}
.y48_c01150{bottom:538.294560pt;}
.y65_c01150{bottom:554.613560pt;}
.y64_c01150{bottom:554.614720pt;}
.y6_c01150{bottom:559.414107pt;}
.y25_c01150{bottom:560.054000pt;}
.y24_c01150{bottom:560.055560pt;}
.y47_c01150{bottom:560.375467pt;}
.y63_c01150{bottom:577.014547pt;}
.y5_c01150{bottom:581.493453pt;}
.y23_c01150{bottom:582.455400pt;}
.y45_c01150{bottom:582.773093pt;}
.y46_c01150{bottom:582.773720pt;}
.y62_c01150{bottom:599.414387pt;}
.y4_c01150{bottom:603.893840pt;}
.y3_c01150{bottom:603.894067pt;}
.y22_c01150{bottom:604.534747pt;}
.y44_c01150{bottom:605.493200pt;}
.y61_c01150{bottom:621.814773pt;}
.y2_c01150{bottom:626.614160pt;}
.y21_c01150{bottom:627.254840pt;}
.y43_c01150{bottom:627.574120pt;}
.y1_c01150{bottom:649.014000pt;}
.y20_c01150{bottom:649.974960pt;}
.y42_c01150{bottom:650.294227pt;}
.y41_c01150{bottom:650.296107pt;}
.y60_c01150{bottom:665.014520pt;}
.y1f_c01150{bottom:672.374800pt;}
.y40_c01150{bottom:672.695947pt;}
.y5f_c01150{bottom:683.894773pt;}
.y1e_c01150{bottom:694.774613pt;}
.y3f_c01150{bottom:695.094200pt;}
.y5e_c01150{bottom:700.534013pt;}
.y1d_c01150{bottom:716.853960pt;}
.y3e_c01150{bottom:717.494013pt;}
.y5d_c01150{bottom:720.694667pt;}
.he_c01150{height:43.804688pt;}
.h13_c01150{height:46.585938pt;}
.h10_c01150{height:47.281250pt;}
.hd_c01150{height:47.976562pt;}
.h16_c01150{height:48.671875pt;}
.hf_c01150{height:49.046875pt;}
.h17_c01150{height:49.367188pt;}
.h15_c01150{height:49.718750pt;}
.h11_c01150{height:50.072917pt;}
.h19_c01150{height:51.390625pt;}
.h18_c01150{height:53.078125pt;}
.h12_c01150{height:53.367188pt;}
.hb_c01150{height:56.320312pt;}
.h8_c01150{height:56.923828pt;}
.h1a_c01150{height:57.578125pt;}
.h1_c01150{height:58.232422pt;}
.h6_c01150{height:58.406250pt;}
.h1b_c01150{height:58.556430pt;}
.h9_c01150{height:58.886719pt;}
.ha_c01150{height:59.511393pt;}
.h3_c01150{height:59.796875pt;}
.h4_c01150{height:60.195312pt;}
.h7_c01150{height:60.468750pt;}
.h2_c01150{height:60.849609pt;}
.hc_c01150{height:63.466797pt;}
.h14_c01150{height:68.701172pt;}
.h5_c01150{height:70.628906pt;}
.h0_c01150{height:793.333333pt;}
.w0_c01150{width:1122.666667pt;}
.x0_c01150{left:0.000000pt;}
.x2_c01150{left:196.481467pt;}
.x8_c01150{left:226.558533pt;}
.x1_c01150{left:230.399453pt;}
.x9_c01150{left:261.758787pt;}
.xa_c01150{left:302.399453pt;}
.xd_c01150{left:318.399867pt;}
.x4_c01150{left:328.319867pt;}
.x5_c01150{left:340.158693pt;}
.xb_c01150{left:343.999467pt;}
.xc_c01150{left:355.519040pt;}
.x6_c01150{left:368.639613pt;}
.x7_c01150{left:384.638667pt;}
.x3_c01150{left:391.999467pt;}
.xe_c01150{left:425.921733pt;}
.x12_c01150{left:427.201640pt;}
.x17_c01150{left:428.799133pt;}
.x11_c01150{left:456.000000pt;}
.x15_c01150{left:461.438920pt;}
.xf_c01150{left:480.959467pt;}
.x16_c01150{left:484.479453pt;}
.x1c_c01150{left:492.479040pt;}
.x10_c01150{left:494.078693pt;}
.x18_c01150{left:503.359867pt;}
.x13_c01150{left:535.999467pt;}
.x19_c01150{left:542.399453pt;}
.x14_c01150{left:548.159173pt;}
.x1a_c01150{left:555.518520pt;}
.x1d_c01150{left:595.199707pt;}
.x1b_c01150{left:600.638707pt;}
.x1e_c01150{left:612.479040pt;}
.x20_c01150{left:661.758693pt;}
.x23_c01150{left:662.717027pt;}
.x27_c01150{left:663.679507pt;}
.x28_c01150{left:664.960333pt;}
.x34_c01150{left:665.920453pt;}
.x35_c01150{left:689.279293pt;}
.x26_c01150{left:690.878907pt;}
.x1f_c01150{left:697.278627pt;}
.x31_c01150{left:700.799160pt;}
.x2f_c01150{left:703.678707pt;}
.x2d_c01150{left:705.919840pt;}
.x2b_c01150{left:711.358893pt;}
.x30_c01150{left:716.159173pt;}
.x2e_c01150{left:719.039067pt;}
.x32_c01150{left:728.318760pt;}
.x2c_c01150{left:730.239173pt;}
.x33_c01150{left:744.319333pt;}
.x29_c01150{left:745.599613pt;}
.x2a_c01150{left:758.078693pt;}
.x24_c01150{left:784.959960pt;}
.x25_c01150{left:800.639573pt;}
.x21_c01150{left:831.039547pt;}
.x22_c01150{left:844.479413pt;}
.x4a_c01150{left:892.798747pt;}
.x4e_c01150{left:893.759680pt;}
.x36_c01150{left:926.078693pt;}
.x40_c01150{left:927.679693pt;}
.x37_c01150{left:944.639573pt;}
.x4b_c01150{left:946.558507pt;}
.x38_c01150{left:952.959960pt;}
.x4c_c01150{left:961.599613pt;}
.x48_c01150{left:966.399827pt;}
.x41_c01150{left:967.999427pt;}
.x39_c01150{left:973.759280pt;}
.x42_c01150{left:976.959960pt;}
.x3a_c01150{left:992.958907pt;}
.x43_c01150{left:998.718747pt;}
.x3b_c01150{left:1012.798747pt;}
.x44_c01150{left:1016.318760pt;}
.x3c_c01150{left:1028.479987pt;}
.x45_c01150{left:1036.798747pt;}
.x3d_c01150{left:1038.719160pt;}
.x46_c01150{left:1051.199707pt;}
.x4d_c01150{left:1052.479987pt;}
.x3e_c01150{left:1057.918947pt;}
.x47_c01150{left:1067.198733pt;}
.x3f_c01150{left:1076.799320pt;}
.x49_c01150{left:1083.518467pt;}
}





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

.ir_c01151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_b64d1c24a542bf671ca8b50f.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01151;src:url('chunks/assets/font_787032251dfd70b1e34e264c.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01151;src:url('chunks/assets/font_f7926865de57a53e6832e9ef.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01151;src:url('chunks/assets/font_08d801f775b01450ec77dcdf.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01151;src:url('chunks/assets/font_18865212c1e991e657558d26.woff2')format("woff");}.ff5_c01151{font-family:ff5_c01151;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01151;src:url('chunks/assets/font_9aa348c4a3e58d8eca77f611.woff2')format("woff");}.ff6_c01151{font-family:ff6_c01151;line-height:1.364746;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_c0d5ae5bab9a81cc7218bf16.woff2')format("woff");}.ff7_c01151{font-family:ff7_c01151;line-height:1.432129;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_f76fa924f193d04a5db221b0.woff2')format("woff");}.ff8_c01151{font-family:ff8_c01151;line-height:1.284180;font-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_c01151{transform:matrix(0.181507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181507,0.000000,0.000000,0.250000,0,0);}
.m20_c01151{transform:matrix(0.199367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199367,0.000000,0.000000,0.250000,0,0);}
.m26_c01151{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01151{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m34_c01151{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m6_c01151{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1e_c01151{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);}
.mb_c01151{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m31_c01151{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m41_c01151{transform:matrix(0.221224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221224,0.000000,0.000000,0.250000,0,0);}
.m3d_c01151{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.me_c01151{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m1a_c01151{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m3f_c01151{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m5_c01151{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m2b_c01151{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m9_c01151{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.m36_c01151{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m23_c01151{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m19_c01151{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.mc_c01151{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m2e_c01151{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m44_c01151{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m3_c01151{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m45_c01151{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m1d_c01151{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m4_c01151{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m39_c01151{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m46_c01151{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_c01151{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m21_c01151{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m16_c01151{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m2f_c01151{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m11_c01151{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m17_c01151{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m2a_c01151{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m15_c01151{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m22_c01151{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m2_c01151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24_c01151{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m33_c01151{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m28_c01151{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m40_c01151{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m2d_c01151{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.md_c01151{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m43_c01151{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m3e_c01151{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m42_c01151{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m30_c01151{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m29_c01151{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_c01151{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m3a_c01151{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m49_c01151{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m1b_c01151{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m27_c01151{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m48_c01151{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m2c_c01151{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.ma_c01151{transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272436,0.000000,0.000000,0.250000,0,0);}
.m18_c01151{transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);}
.m1f_c01151{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.m32_c01151{transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);}
.m3c_c01151{transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);}
.m35_c01151{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m10_c01151{transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);}
.mf_c01151{transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);}
.m7_c01151{transform:matrix(0.301370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301370,0.000000,0.000000,0.250000,0,0);}
.m47_c01151{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m25_c01151{transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304487,0.000000,0.000000,0.250000,0,0);}
.m8_c01151{transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309859,0.000000,0.000000,0.250000,0,0);}
.m1_c01151{transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);}
.m13_c01151{transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);}
.m37_c01151{transform:matrix(0.332547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332547,0.000000,0.000000,0.250000,0,0);}
.m3b_c01151{transform:matrix(0.538462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538462,0.000000,0.000000,0.250000,0,0);}
.m38_c01151{transform:matrix(0.589506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589506,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.ls16_c01151{letter-spacing:-23.903850px;}
.ls1c_c01151{letter-spacing:-11.849250px;}
.ls67_c01151{letter-spacing:-11.039250px;}
.ls69_c01151{letter-spacing:-10.722375px;}
.ls1d_c01151{letter-spacing:-10.698150px;}
.ls25_c01151{letter-spacing:-10.635375px;}
.ls31_c01151{letter-spacing:-10.252050px;}
.ls30_c01151{letter-spacing:-10.185000px;}
.ls15_c01151{letter-spacing:-10.025273px;}
.ls33_c01151{letter-spacing:-9.403568px;}
.ls1e_c01151{letter-spacing:-9.296550px;}
.ls43_c01151{letter-spacing:-9.231743px;}
.ls42_c01151{letter-spacing:-8.248193px;}
.ls50_c01151{letter-spacing:-7.833000px;}
.ls1a_c01151{letter-spacing:-7.708253px;}
.ls2f_c01151{letter-spacing:-7.097100px;}
.ls1b_c01151{letter-spacing:-6.942300px;}
.ls35_c01151{letter-spacing:-6.834375px;}
.ls12_c01151{letter-spacing:-6.809670px;}
.ls10_c01151{letter-spacing:-6.576000px;}
.ls36_c01151{letter-spacing:-6.485400px;}
.ls21_c01151{letter-spacing:-6.170325px;}
.ls2d_c01151{letter-spacing:-5.012865px;}
.ls4d_c01151{letter-spacing:-4.507650px;}
.ls2b_c01151{letter-spacing:-4.121100px;}
.ls13_c01151{letter-spacing:-4.012800px;}
.ls3e_c01151{letter-spacing:-3.854400px;}
.ls63_c01151{letter-spacing:-3.747975px;}
.ls6_c01151{letter-spacing:-3.589050px;}
.ls2e_c01151{letter-spacing:-3.562500px;}
.ls32_c01151{letter-spacing:-3.312270px;}
.ls60_c01151{letter-spacing:-3.164123px;}
.ls27_c01151{letter-spacing:-3.133725px;}
.ls5e_c01151{letter-spacing:-3.085800px;}
.ls24_c01151{letter-spacing:-3.082425px;}
.ls49_c01151{letter-spacing:-3.081938px;}
.lse_c01151{letter-spacing:-3.024068px;}
.ls5d_c01151{letter-spacing:-2.997000px;}
.ls17_c01151{letter-spacing:-2.992650px;}
.ls59_c01151{letter-spacing:-2.956500px;}
.ls1f_c01151{letter-spacing:-2.905200px;}
.ls11_c01151{letter-spacing:-2.755350px;}
.ls48_c01151{letter-spacing:-2.618550px;}
.ls55_c01151{letter-spacing:-2.491125px;}
.ls4c_c01151{letter-spacing:-2.442825px;}
.ls5f_c01151{letter-spacing:-2.379375px;}
.ls2c_c01151{letter-spacing:-2.352000px;}
.ls18_c01151{letter-spacing:-2.315925px;}
.ls26_c01151{letter-spacing:-2.283750px;}
.ls29_c01151{letter-spacing:-2.283075px;}
.ls61_c01151{letter-spacing:-2.251800px;}
.ls8_c01151{letter-spacing:-2.249438px;}
.ls65_c01151{letter-spacing:-2.223375px;}
.ls58_c01151{letter-spacing:-2.194500px;}
.ls54_c01151{letter-spacing:-2.189453px;}
.ls57_c01151{letter-spacing:-2.189250px;}
.ls3d_c01151{letter-spacing:-2.165625px;}
.ls66_c01151{letter-spacing:-2.164500px;}
.ls3c_c01151{letter-spacing:-2.109000px;}
.ls68_c01151{letter-spacing:-2.108445px;}
.ls40_c01151{letter-spacing:-2.106000px;}
.lsd_c01151{letter-spacing:-1.866975px;}
.lsb_c01151{letter-spacing:-1.653900px;}
.ls9_c01151{letter-spacing:-1.584600px;}
.ls44_c01151{letter-spacing:-1.564500px;}
.ls41_c01151{letter-spacing:-1.543950px;}
.ls5a_c01151{letter-spacing:-1.541250px;}
.ls2a_c01151{letter-spacing:-1.500150px;}
.ls4a_c01151{letter-spacing:-1.481850px;}
.ls38_c01151{letter-spacing:-1.234350px;}
.ls64_c01151{letter-spacing:-1.232100px;}
.ls53_c01151{letter-spacing:-0.843150px;}
.ls5b_c01151{letter-spacing:-0.792300px;}
.ls5c_c01151{letter-spacing:-0.782925px;}
.ls3f_c01151{letter-spacing:-0.781725px;}
.lsf_c01151{letter-spacing:-0.771975px;}
.ls28_c01151{letter-spacing:-0.770625px;}
.ls45_c01151{letter-spacing:-0.759375px;}
.ls56_c01151{letter-spacing:-0.739800px;}
.ls46_c01151{letter-spacing:-0.729300px;}
.ls23_c01151{letter-spacing:-0.721500px;}
.ls4f_c01151{letter-spacing:-0.718740px;}
.ls51_c01151{letter-spacing:-0.696150px;}
.ls52_c01151{letter-spacing:-0.644325px;}
.ls4b_c01151{letter-spacing:-0.641025px;}
.ls4e_c01151{letter-spacing:-0.637875px;}
.ls5_c01151{letter-spacing:0.000000px;}
.ls14_c01151{letter-spacing:0.731250px;}
.ls20_c01151{letter-spacing:0.761250px;}
.ls34_c01151{letter-spacing:0.771450px;}
.ls3_c01151{letter-spacing:0.771975px;}
.ls39_c01151{letter-spacing:0.781725px;}
.ls19_c01151{letter-spacing:0.837375px;}
.ls3a_c01151{letter-spacing:1.523025px;}
.ls4_c01151{letter-spacing:1.543950px;}
.ls62_c01151{letter-spacing:1.563750px;}
.ls47_c01151{letter-spacing:1.697850px;}
.ls22_c01151{letter-spacing:2.283750px;}
.ls0_c01151{letter-spacing:2.315925px;}
.lsa_c01151{letter-spacing:2.352000px;}
.ls1_c01151{letter-spacing:3.082425px;}
.ls37_c01151{letter-spacing:4.704000px;}
.lsc_c01151{letter-spacing:6.858000px;}
.ls3b_c01151{letter-spacing:10.796700px;}
.ls7_c01151{letter-spacing:20.820878px;}
.ls2_c01151{letter-spacing:26.991750px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01151{word-spacing:0.000000px;}
._5_c01151{margin-left:-107.375731px;}
._14_c01151{margin-left:-38.258298px;}
._10_c01151{margin-left:-27.961025px;}
._11_c01151{margin-left:-26.318155px;}
._12_c01151{margin-left:-23.421742px;}
._13_c01151{margin-left:-10.933961px;}
._7_c01151{margin-left:-6.509652px;}
._8_c01151{margin-left:-5.025942px;}
._4_c01151{margin-left:-3.285031px;}
._3_c01151{margin-left:-1.620800px;}
._b_c01151{width:1.220416px;}
._2_c01151{width:2.518469px;}
._1_c01151{width:4.330432px;}
._6_c01151{width:6.323949px;}
._f_c01151{width:7.539630px;}
._c_c01151{width:8.562622px;}
._d_c01151{width:11.086705px;}
._9_c01151{width:13.432758px;}
._a_c01151{width:16.435210px;}
._0_c01151{width:20.410584px;}
._e_c01151{width:31.273061px;}
.fc0_c01151{color:transparent;}
.fsf_c01151{font-size:49.500000px;}
.fse_c01151{font-size:51.000000px;}
.fs10_c01151{font-size:51.750000px;}
.fs12_c01151{font-size:52.164000px;}
.fs4_c01151{font-size:52.500000px;}
.fs1_c01151{font-size:53.250000px;}
.fs6_c01151{font-size:54.000000px;}
.fs0_c01151{font-size:54.750000px;}
.fs5_c01151{font-size:55.500000px;}
.fs2_c01151{font-size:56.250000px;}
.fs3_c01151{font-size:57.000000px;}
.fsa_c01151{font-size:57.750000px;}
.fs8_c01151{font-size:58.500000px;}
.fsb_c01151{font-size:59.250000px;}
.fs7_c01151{font-size:60.000000px;}
.fsd_c01151{font-size:60.750000px;}
.fsc_c01151{font-size:61.500000px;}
.fs9_c01151{font-size:63.000000px;}
.fs11_c01151{font-size:79.500000px;}
.y0_c01151{bottom:0.000000px;}
.y34_c01151{bottom:83.581035px;}
.y32_c01151{bottom:101.581485px;}
.y33_c01151{bottom:101.581620px;}
.y64_c01151{bottom:102.300135px;}
.y63_c01151{bottom:102.300390px;}
.y31_c01151{bottom:119.580570px;}
.y62_c01151{bottom:120.300735px;}
.y61_c01151{bottom:120.301260px;}
.y30_c01151{bottom:137.581035px;}
.y60_c01151{bottom:137.940285px;}
.y5f_c01151{bottom:137.940540px;}
.y2f_c01151{bottom:155.581620px;}
.y5e_c01151{bottom:155.940885px;}
.y5d_c01151{bottom:155.941125px;}
.y2e_c01151{bottom:173.580570px;}
.y5c_c01151{bottom:173.941470px;}
.y2d_c01151{bottom:191.581005px;}
.y5b_c01151{bottom:192.301170px;}
.y2c_c01151{bottom:209.581620px;}
.y5a_c01151{bottom:210.300105px;}
.y2b_c01151{bottom:227.580570px;}
.y58_c01151{bottom:227.941170px;}
.y59_c01151{bottom:227.941470px;}
.y2a_c01151{bottom:245.581005px;}
.y56_c01151{bottom:245.939685px;}
.y57_c01151{bottom:245.940255px;}
.y29_c01151{bottom:263.581605px;}
.y54_c01151{bottom:264.299715px;}
.y55_c01151{bottom:264.300105px;}
.y28_c01151{bottom:281.580570px;}
.y53_c01151{bottom:281.941470px;}
.y27_c01151{bottom:299.940255px;}
.y26_c01151{bottom:318.300105px;}
.y25_c01151{bottom:336.300705px;}
.y24_c01151{bottom:336.300825px;}
.y52_c01151{bottom:336.661605px;}
.y23_c01151{bottom:354.301170px;}
.y51_c01151{bottom:354.660420px;}
.y22_c01151{bottom:371.940855px;}
.y21_c01151{bottom:371.941515px;}
.y50_c01151{bottom:372.661005px;}
.y20_c01151{bottom:389.580555px;}
.y4f_c01151{bottom:390.300825px;}
.y1f_c01151{bottom:407.581005px;}
.y1e_c01151{bottom:407.581260px;}
.y4e_c01151{bottom:408.301170px;}
.y4d_c01151{bottom:408.302085px;}
.y1d_c01151{bottom:425.581605px;}
.y4c_c01151{bottom:425.941110px;}
.y1c_c01151{bottom:443.580555px;}
.y1b_c01151{bottom:443.581575px;}
.y4b_c01151{bottom:443.941455px;}
.y1a_c01151{bottom:461.581920px;}
.y4a_c01151{bottom:462.301170px;}
.y19_c01151{bottom:479.582265px;}
.y49_c01151{bottom:480.300105px;}
.y17_c01151{bottom:497.221020px;}
.y18_c01151{bottom:497.221305px;}
.y48_c01151{bottom:498.300705px;}
.y16_c01151{bottom:515.220105px;}
.y15_c01151{bottom:515.221140px;}
.y47_c01151{bottom:515.940255px;}
.y14_c01151{bottom:533.221485px;}
.y45_c01151{bottom:533.581470px;}
.y46_c01151{bottom:533.581605px;}
.y13_c01151{bottom:550.860510px;}
.y44_c01151{bottom:551.580555px;}
.y12_c01151{bottom:568.860855px;}
.y43_c01151{bottom:569.581005px;}
.y11_c01151{bottom:586.861455px;}
.y10_c01151{bottom:586.861845px;}
.y42_c01151{bottom:587.220705px;}
.yf_c01151{bottom:604.860930px;}
.y41_c01151{bottom:605.221305px;}
.ye_c01151{bottom:622.499955px;}
.y3f_c01151{bottom:623.219700px;}
.y40_c01151{bottom:623.220105px;}
.yd_c01151{bottom:640.141290px;}
.y3e_c01151{bottom:640.861455px;}
.yc_c01151{bottom:658.140240px;}
.yb_c01151{bottom:658.140360px;}
.y3d_c01151{bottom:658.501140px;}
.ya_c01151{bottom:676.140705px;}
.y9_c01151{bottom:676.141365px;}
.y3c_c01151{bottom:676.499955px;}
.y8_c01151{bottom:693.780390px;}
.y3b_c01151{bottom:694.500555px;}
.y6_c01151{bottom:711.419565px;}
.y7_c01151{bottom:711.419955px;}
.y3a_c01151{bottom:712.140240px;}
.y5_c01151{bottom:729.781455px;}
.y4_c01151{bottom:729.782115px;}
.y39_c01151{bottom:730.140705px;}
.y2_c01151{bottom:747.420435px;}
.y3_c01151{bottom:747.421140px;}
.y38_c01151{bottom:747.780390px;}
.y1_c01151{bottom:765.780855px;}
.y37_c01151{bottom:783.781500px;}
.y36_c01151{bottom:801.060240px;}
.y35_c01151{bottom:801.060540px;}
.h19_c01151{height:50.053711px;}
.h1e_c01151{height:51.196113px;}
.h15_c01151{height:51.500244px;}
.h1f_c01151{height:51.525879px;}
.h18_c01151{height:51.626953px;}
.h20_c01151{height:52.154297px;}
.h2_c01151{height:52.261963px;}
.hf_c01151{height:52.910156px;}
.h10_c01151{height:52.998047px;}
.h16_c01151{height:53.191406px;}
.h17_c01151{height:53.666016px;}
.h1_c01151{height:53.734131px;}
.h1a_c01151{height:53.973633px;}
.h1d_c01151{height:54.108398px;}
.h23_c01151{height:54.421875px;}
.he_c01151{height:54.470215px;}
.h5_c01151{height:54.755859px;}
.h1c_c01151{height:55.177734px;}
.h3_c01151{height:55.206299px;}
.h6_c01151{height:55.933594px;}
.h4_c01151{height:55.942383px;}
.h7_c01151{height:56.320312px;}
.hd_c01151{height:56.678467px;}
.h21_c01151{height:56.689453px;}
.h12_c01151{height:57.102539px;}
.h9_c01151{height:57.414551px;}
.hb_c01151{height:57.445312px;}
.hc_c01151{height:57.814453px;}
.h22_c01151{height:58.201172px;}
.h11_c01151{height:58.555664px;}
.h8_c01151{height:58.857422px;}
.h14_c01151{height:60.038086px;}
.h13_c01151{height:60.779297px;}
.ha_c01151{height:61.800293px;}
.h1b_c01151{height:80.121094px;}
.h0_c01151{height:892.500000px;}
.w0_c01151{width:1263.000000px;}
.x0_c01151{left:0.000000px;}
.x14_c01151{left:212.758500px;}
.x9_c01151{left:213.839535px;}
.x1_c01151{left:214.918950px;}
.x1c_c01151{left:257.038950px;}
.x10_c01151{left:258.120000px;}
.xe_c01151{left:259.558635px;}
.x7_c01151{left:263.879535px;}
.x2_c01151{left:264.958950px;}
.xc_c01151{left:266.758500px;}
.x3_c01151{left:278.999385px;}
.xd_c01151{left:280.439685px;}
.x4_c01151{left:313.199385px;}
.x8_c01151{left:358.918350px;}
.x17_c01151{left:361.439685px;}
.x5_c01151{left:373.679100px;}
.x18_c01151{left:383.039385px;}
.x20_c01151{left:384.118785px;}
.x21_c01151{left:394.919535px;}
.x19_c01151{left:398.159415px;}
.x6_c01151{left:403.918950px;}
.x1a_c01151{left:408.958335px;}
.xa_c01151{left:424.080000px;}
.x15_c01151{left:434.519670px;}
.xb_c01151{left:446.759085px;}
.x1d_c01151{left:471.598530px;}
.x1e_c01151{left:483.119385px;}
.xf_c01151{left:515.519670px;}
.x11_c01151{left:542.878920px;}
.x12_c01151{left:546.838950px;}
.x1b_c01151{left:548.279250px;}
.x13_c01151{left:551.519070px;}
.x16_c01151{left:574.199850px;}
.x1f_c01151{left:622.438620px;}
.x22_c01151{left:746.639835px;}
.x23_c01151{left:790.918305px;}
.x31_c01151{left:791.999355px;}
.x24_c01151{left:812.519715px;}
.x34_c01151{left:813.599115px;}
.x32_c01151{left:860.039985px;}
.x35_c01151{left:884.159370px;}
.x2b_c01151{left:905.038965px;}
.x36_c01151{left:909.359805px;}
.x33_c01151{left:914.399235px;}
.x2c_c01151{left:915.839535px;}
.x25_c01151{left:919.438665px;}
.x3a_c01151{left:926.279205px;}
.x26_c01151{left:930.239220px;}
.x3b_c01151{left:939.958920px;}
.x28_c01151{left:945.000000px;}
.x29_c01151{left:955.798920px;}
.x2e_c01151{left:973.799565px;}
.x2f_c01151{left:982.078770px;}
.x30_c01151{left:983.878320px;}
.x2d_c01151{left:1041.479190px;}
.x37_c01151{left:1043.639655px;}
.x27_c01151{left:1056.239865px;}
.x38_c01151{left:1071.359805px;}
.x39_c01151{left:1075.679070px;}
.x3c_c01151{left:1079.639100px;}
.x2a_c01151{left:1082.878965px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls16_c01151{letter-spacing:-21.247867pt;}
.ls1c_c01151{letter-spacing:-10.532667pt;}
.ls67_c01151{letter-spacing:-9.812667pt;}
.ls69_c01151{letter-spacing:-9.531000pt;}
.ls1d_c01151{letter-spacing:-9.509467pt;}
.ls25_c01151{letter-spacing:-9.453667pt;}
.ls31_c01151{letter-spacing:-9.112933pt;}
.ls30_c01151{letter-spacing:-9.053333pt;}
.ls15_c01151{letter-spacing:-8.911353pt;}
.ls33_c01151{letter-spacing:-8.358727pt;}
.ls1e_c01151{letter-spacing:-8.263600pt;}
.ls43_c01151{letter-spacing:-8.205993pt;}
.ls42_c01151{letter-spacing:-7.331727pt;}
.ls50_c01151{letter-spacing:-6.962667pt;}
.ls1a_c01151{letter-spacing:-6.851780pt;}
.ls2f_c01151{letter-spacing:-6.308533pt;}
.ls1b_c01151{letter-spacing:-6.170933pt;}
.ls35_c01151{letter-spacing:-6.075000pt;}
.ls12_c01151{letter-spacing:-6.053040pt;}
.ls10_c01151{letter-spacing:-5.845333pt;}
.ls36_c01151{letter-spacing:-5.764800pt;}
.ls21_c01151{letter-spacing:-5.484733pt;}
.ls2d_c01151{letter-spacing:-4.455880pt;}
.ls4d_c01151{letter-spacing:-4.006800pt;}
.ls2b_c01151{letter-spacing:-3.663200pt;}
.ls13_c01151{letter-spacing:-3.566933pt;}
.ls3e_c01151{letter-spacing:-3.426133pt;}
.ls63_c01151{letter-spacing:-3.331533pt;}
.ls6_c01151{letter-spacing:-3.190267pt;}
.ls2e_c01151{letter-spacing:-3.166667pt;}
.ls32_c01151{letter-spacing:-2.944240pt;}
.ls60_c01151{letter-spacing:-2.812553pt;}
.ls27_c01151{letter-spacing:-2.785533pt;}
.ls5e_c01151{letter-spacing:-2.742933pt;}
.ls24_c01151{letter-spacing:-2.739933pt;}
.ls49_c01151{letter-spacing:-2.739500pt;}
.lse_c01151{letter-spacing:-2.688060pt;}
.ls5d_c01151{letter-spacing:-2.664000pt;}
.ls17_c01151{letter-spacing:-2.660133pt;}
.ls59_c01151{letter-spacing:-2.628000pt;}
.ls1f_c01151{letter-spacing:-2.582400pt;}
.ls11_c01151{letter-spacing:-2.449200pt;}
.ls48_c01151{letter-spacing:-2.327600pt;}
.ls55_c01151{letter-spacing:-2.214333pt;}
.ls4c_c01151{letter-spacing:-2.171400pt;}
.ls5f_c01151{letter-spacing:-2.115000pt;}
.ls2c_c01151{letter-spacing:-2.090667pt;}
.ls18_c01151{letter-spacing:-2.058600pt;}
.ls26_c01151{letter-spacing:-2.030000pt;}
.ls29_c01151{letter-spacing:-2.029400pt;}
.ls61_c01151{letter-spacing:-2.001600pt;}
.ls8_c01151{letter-spacing:-1.999500pt;}
.ls65_c01151{letter-spacing:-1.976333pt;}
.ls58_c01151{letter-spacing:-1.950667pt;}
.ls54_c01151{letter-spacing:-1.946180pt;}
.ls57_c01151{letter-spacing:-1.946000pt;}
.ls3d_c01151{letter-spacing:-1.925000pt;}
.ls66_c01151{letter-spacing:-1.924000pt;}
.ls3c_c01151{letter-spacing:-1.874667pt;}
.ls68_c01151{letter-spacing:-1.874173pt;}
.ls40_c01151{letter-spacing:-1.872000pt;}
.lsd_c01151{letter-spacing:-1.659533pt;}
.lsb_c01151{letter-spacing:-1.470133pt;}
.ls9_c01151{letter-spacing:-1.408533pt;}
.ls44_c01151{letter-spacing:-1.390667pt;}
.ls41_c01151{letter-spacing:-1.372400pt;}
.ls5a_c01151{letter-spacing:-1.370000pt;}
.ls2a_c01151{letter-spacing:-1.333467pt;}
.ls4a_c01151{letter-spacing:-1.317200pt;}
.ls38_c01151{letter-spacing:-1.097200pt;}
.ls64_c01151{letter-spacing:-1.095200pt;}
.ls53_c01151{letter-spacing:-0.749467pt;}
.ls5b_c01151{letter-spacing:-0.704267pt;}
.ls5c_c01151{letter-spacing:-0.695933pt;}
.ls3f_c01151{letter-spacing:-0.694867pt;}
.lsf_c01151{letter-spacing:-0.686200pt;}
.ls28_c01151{letter-spacing:-0.685000pt;}
.ls45_c01151{letter-spacing:-0.675000pt;}
.ls56_c01151{letter-spacing:-0.657600pt;}
.ls46_c01151{letter-spacing:-0.648267pt;}
.ls23_c01151{letter-spacing:-0.641333pt;}
.ls4f_c01151{letter-spacing:-0.638880pt;}
.ls51_c01151{letter-spacing:-0.618800pt;}
.ls52_c01151{letter-spacing:-0.572733pt;}
.ls4b_c01151{letter-spacing:-0.569800pt;}
.ls4e_c01151{letter-spacing:-0.567000pt;}
.ls5_c01151{letter-spacing:0.000000pt;}
.ls14_c01151{letter-spacing:0.650000pt;}
.ls20_c01151{letter-spacing:0.676667pt;}
.ls34_c01151{letter-spacing:0.685733pt;}
.ls3_c01151{letter-spacing:0.686200pt;}
.ls39_c01151{letter-spacing:0.694867pt;}
.ls19_c01151{letter-spacing:0.744333pt;}
.ls3a_c01151{letter-spacing:1.353800pt;}
.ls4_c01151{letter-spacing:1.372400pt;}
.ls62_c01151{letter-spacing:1.390000pt;}
.ls47_c01151{letter-spacing:1.509200pt;}
.ls22_c01151{letter-spacing:2.030000pt;}
.ls0_c01151{letter-spacing:2.058600pt;}
.lsa_c01151{letter-spacing:2.090667pt;}
.ls1_c01151{letter-spacing:2.739933pt;}
.ls37_c01151{letter-spacing:4.181333pt;}
.lsc_c01151{letter-spacing:6.096000pt;}
.ls3b_c01151{letter-spacing:9.597067pt;}
.ls7_c01151{letter-spacing:18.507447pt;}
.ls2_c01151{letter-spacing:23.992667pt;}
.ws0_c01151{word-spacing:0.000000pt;}
._5_c01151{margin-left:-95.445094pt;}
._14_c01151{margin-left:-34.007376pt;}
._10_c01151{margin-left:-24.854245pt;}
._11_c01151{margin-left:-23.393916pt;}
._12_c01151{margin-left:-20.819326pt;}
._13_c01151{margin-left:-9.719076pt;}
._7_c01151{margin-left:-5.786357pt;}
._8_c01151{margin-left:-4.467504pt;}
._4_c01151{margin-left:-2.920027pt;}
._3_c01151{margin-left:-1.440712pt;}
._b_c01151{width:1.084814pt;}
._2_c01151{width:2.238639pt;}
._1_c01151{width:3.849273pt;}
._6_c01151{width:5.621288pt;}
._f_c01151{width:6.701894pt;}
._c_c01151{width:7.611220pt;}
._d_c01151{width:9.854849pt;}
._9_c01151{width:11.940230pt;}
._a_c01151{width:14.609075pt;}
._0_c01151{width:18.142741pt;}
._e_c01151{width:27.798277pt;}
.fsf_c01151{font-size:44.000000pt;}
.fse_c01151{font-size:45.333333pt;}
.fs10_c01151{font-size:46.000000pt;}
.fs12_c01151{font-size:46.368000pt;}
.fs4_c01151{font-size:46.666667pt;}
.fs1_c01151{font-size:47.333333pt;}
.fs6_c01151{font-size:48.000000pt;}
.fs0_c01151{font-size:48.666667pt;}
.fs5_c01151{font-size:49.333333pt;}
.fs2_c01151{font-size:50.000000pt;}
.fs3_c01151{font-size:50.666667pt;}
.fsa_c01151{font-size:51.333333pt;}
.fs8_c01151{font-size:52.000000pt;}
.fsb_c01151{font-size:52.666667pt;}
.fs7_c01151{font-size:53.333333pt;}
.fsd_c01151{font-size:54.000000pt;}
.fsc_c01151{font-size:54.666667pt;}
.fs9_c01151{font-size:56.000000pt;}
.fs11_c01151{font-size:70.666667pt;}
.y0_c01151{bottom:0.000000pt;}
.y34_c01151{bottom:74.294253pt;}
.y32_c01151{bottom:90.294653pt;}
.y33_c01151{bottom:90.294773pt;}
.y64_c01151{bottom:90.933453pt;}
.y63_c01151{bottom:90.933680pt;}
.y31_c01151{bottom:106.293840pt;}
.y62_c01151{bottom:106.933987pt;}
.y61_c01151{bottom:106.934453pt;}
.y30_c01151{bottom:122.294253pt;}
.y60_c01151{bottom:122.613587pt;}
.y5f_c01151{bottom:122.613813pt;}
.y2f_c01151{bottom:138.294773pt;}
.y5e_c01151{bottom:138.614120pt;}
.y5d_c01151{bottom:138.614333pt;}
.y2e_c01151{bottom:154.293840pt;}
.y5c_c01151{bottom:154.614640pt;}
.y2d_c01151{bottom:170.294227pt;}
.y5b_c01151{bottom:170.934373pt;}
.y2c_c01151{bottom:186.294773pt;}
.y5a_c01151{bottom:186.933427pt;}
.y2b_c01151{bottom:202.293840pt;}
.y58_c01151{bottom:202.614373pt;}
.y59_c01151{bottom:202.614640pt;}
.y2a_c01151{bottom:218.294227pt;}
.y56_c01151{bottom:218.613053pt;}
.y57_c01151{bottom:218.613560pt;}
.y29_c01151{bottom:234.294760pt;}
.y54_c01151{bottom:234.933080pt;}
.y55_c01151{bottom:234.933427pt;}
.y28_c01151{bottom:250.293840pt;}
.y53_c01151{bottom:250.614640pt;}
.y27_c01151{bottom:266.613560pt;}
.y26_c01151{bottom:282.933427pt;}
.y25_c01151{bottom:298.933960pt;}
.y24_c01151{bottom:298.934067pt;}
.y52_c01151{bottom:299.254760pt;}
.y23_c01151{bottom:314.934373pt;}
.y51_c01151{bottom:315.253707pt;}
.y22_c01151{bottom:330.614093pt;}
.y21_c01151{bottom:330.614680pt;}
.y50_c01151{bottom:331.254227pt;}
.y20_c01151{bottom:346.293827pt;}
.y4f_c01151{bottom:346.934067pt;}
.y1f_c01151{bottom:362.294227pt;}
.y1e_c01151{bottom:362.294453pt;}
.y4e_c01151{bottom:362.934373pt;}
.y4d_c01151{bottom:362.935187pt;}
.y1d_c01151{bottom:378.294760pt;}
.y4c_c01151{bottom:378.614320pt;}
.y1c_c01151{bottom:394.293827pt;}
.y1b_c01151{bottom:394.294733pt;}
.y4b_c01151{bottom:394.614627pt;}
.y1a_c01151{bottom:410.295040pt;}
.y4a_c01151{bottom:410.934373pt;}
.y19_c01151{bottom:426.295347pt;}
.y49_c01151{bottom:426.933427pt;}
.y17_c01151{bottom:441.974240pt;}
.y18_c01151{bottom:441.974493pt;}
.y48_c01151{bottom:442.933960pt;}
.y16_c01151{bottom:457.973427pt;}
.y15_c01151{bottom:457.974347pt;}
.y47_c01151{bottom:458.613560pt;}
.y14_c01151{bottom:473.974653pt;}
.y45_c01151{bottom:474.294640pt;}
.y46_c01151{bottom:474.294760pt;}
.y13_c01151{bottom:489.653787pt;}
.y44_c01151{bottom:490.293827pt;}
.y12_c01151{bottom:505.654093pt;}
.y43_c01151{bottom:506.294227pt;}
.y11_c01151{bottom:521.654627pt;}
.y10_c01151{bottom:521.654973pt;}
.y42_c01151{bottom:521.973960pt;}
.yf_c01151{bottom:537.654160pt;}
.y41_c01151{bottom:537.974493pt;}
.ye_c01151{bottom:553.333293pt;}
.y3f_c01151{bottom:553.973067pt;}
.y40_c01151{bottom:553.973427pt;}
.yd_c01151{bottom:569.014480pt;}
.y3e_c01151{bottom:569.654627pt;}
.yc_c01151{bottom:585.013547pt;}
.yb_c01151{bottom:585.013653pt;}
.y3d_c01151{bottom:585.334347pt;}
.ya_c01151{bottom:601.013960pt;}
.y9_c01151{bottom:601.014547pt;}
.y3c_c01151{bottom:601.333293pt;}
.y8_c01151{bottom:616.693680pt;}
.y3b_c01151{bottom:617.333827pt;}
.y6_c01151{bottom:632.372947pt;}
.y7_c01151{bottom:632.373293pt;}
.y3a_c01151{bottom:633.013547pt;}
.y5_c01151{bottom:648.694627pt;}
.y4_c01151{bottom:648.695213pt;}
.y39_c01151{bottom:649.013960pt;}
.y2_c01151{bottom:664.373720pt;}
.y3_c01151{bottom:664.374347pt;}
.y38_c01151{bottom:664.693680pt;}
.y1_c01151{bottom:680.694093pt;}
.y37_c01151{bottom:696.694667pt;}
.y36_c01151{bottom:712.053547pt;}
.y35_c01151{bottom:712.053813pt;}
.h19_c01151{height:44.492188pt;}
.h1e_c01151{height:45.507656pt;}
.h15_c01151{height:45.777995pt;}
.h1f_c01151{height:45.800781pt;}
.h18_c01151{height:45.890625pt;}
.h20_c01151{height:46.359375pt;}
.h2_c01151{height:46.455078pt;}
.hf_c01151{height:47.031250pt;}
.h10_c01151{height:47.109375pt;}
.h16_c01151{height:47.281250pt;}
.h17_c01151{height:47.703125pt;}
.h1_c01151{height:47.763672pt;}
.h1a_c01151{height:47.976562pt;}
.h1d_c01151{height:48.096354pt;}
.h23_c01151{height:48.375000pt;}
.he_c01151{height:48.417969pt;}
.h5_c01151{height:48.671875pt;}
.h1c_c01151{height:49.046875pt;}
.h3_c01151{height:49.072266pt;}
.h6_c01151{height:49.718750pt;}
.h4_c01151{height:49.726562pt;}
.h7_c01151{height:50.062500pt;}
.hd_c01151{height:50.380859pt;}
.h21_c01151{height:50.390625pt;}
.h12_c01151{height:50.757812pt;}
.h9_c01151{height:51.035156pt;}
.hb_c01151{height:51.062500pt;}
.hc_c01151{height:51.390625pt;}
.h22_c01151{height:51.734375pt;}
.h11_c01151{height:52.049479pt;}
.h8_c01151{height:52.317708pt;}
.h14_c01151{height:53.367188pt;}
.h13_c01151{height:54.026042pt;}
.ha_c01151{height:54.933594pt;}
.h1b_c01151{height:71.218750pt;}
.h0_c01151{height:793.333333pt;}
.w0_c01151{width:1122.666667pt;}
.x0_c01151{left:0.000000pt;}
.x14_c01151{left:189.118667pt;}
.x9_c01151{left:190.079587pt;}
.x1_c01151{left:191.039067pt;}
.x1c_c01151{left:228.479067pt;}
.x10_c01151{left:229.440000pt;}
.xe_c01151{left:230.718787pt;}
.x7_c01151{left:234.559587pt;}
.x2_c01151{left:235.519067pt;}
.xc_c01151{left:237.118667pt;}
.x3_c01151{left:247.999453pt;}
.xd_c01151{left:249.279720pt;}
.x4_c01151{left:278.399453pt;}
.x8_c01151{left:319.038533pt;}
.x17_c01151{left:321.279720pt;}
.x5_c01151{left:332.159200pt;}
.x18_c01151{left:340.479453pt;}
.x20_c01151{left:341.438920pt;}
.x21_c01151{left:351.039587pt;}
.x19_c01151{left:353.919480pt;}
.x6_c01151{left:359.039067pt;}
.x1a_c01151{left:363.518520pt;}
.xa_c01151{left:376.960000pt;}
.x15_c01151{left:386.239707pt;}
.xb_c01151{left:397.119187pt;}
.x1d_c01151{left:419.198693pt;}
.x1e_c01151{left:429.439453pt;}
.xf_c01151{left:458.239707pt;}
.x11_c01151{left:482.559040pt;}
.x12_c01151{left:486.079067pt;}
.x1b_c01151{left:487.359333pt;}
.x13_c01151{left:490.239173pt;}
.x16_c01151{left:510.399867pt;}
.x1f_c01151{left:553.278773pt;}
.x22_c01151{left:663.679853pt;}
.x23_c01151{left:703.038493pt;}
.x31_c01151{left:703.999427pt;}
.x24_c01151{left:722.239747pt;}
.x34_c01151{left:723.199213pt;}
.x32_c01151{left:764.479987pt;}
.x35_c01151{left:785.919440pt;}
.x2b_c01151{left:804.479080pt;}
.x36_c01151{left:808.319827pt;}
.x33_c01151{left:812.799320pt;}
.x2c_c01151{left:814.079587pt;}
.x25_c01151{left:817.278813pt;}
.x3a_c01151{left:823.359293pt;}
.x26_c01151{left:826.879307pt;}
.x3b_c01151{left:835.519040pt;}
.x28_c01151{left:840.000000pt;}
.x29_c01151{left:849.599040pt;}
.x2e_c01151{left:865.599613pt;}
.x2f_c01151{left:872.958907pt;}
.x30_c01151{left:874.558507pt;}
.x2d_c01151{left:925.759280pt;}
.x37_c01151{left:927.679693pt;}
.x27_c01151{left:938.879880pt;}
.x38_c01151{left:952.319827pt;}
.x39_c01151{left:956.159173pt;}
.x3c_c01151{left:959.679200pt;}
.x2a_c01151{left:962.559080pt;}
}





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

.ir_c01152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
.sc__c01152{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01152{-webkit-text-stroke:0px transparent;}
}
.y0_c01152{bottom:0.000000px;}
.h0_c01152{height:892.500000px;}
.w0_c01152{width:1263.000000px;}
.x0_c01152{left:0.000000px;}
@media print{
.y0_c01152{bottom:0.000000pt;}
.h0_c01152{height:793.333333pt;}
.w0_c01152{width:1122.666667pt;}
.x0_c01152{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_c01153 {
    display:none;
  }
  .loading-indicator_c01153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01153 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01153 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01153" -> "#page-container .classname_c01153")
 */
.pf_c01153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01153 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01153 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01153 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01153 {overflow:visible;}
  }
}
.c_c01153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01153 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01153:after { /* webkit #35443 */
  content: '';
}
.t_c01153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01153 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01153 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01153 { /* info for Javascript */
  display:none;
}
.l_c01153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_7d1cd1134dc16db913156c44.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01153;src:url('chunks/assets/font_7501528811c4ba5f4c22c988.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01153;src:url('chunks/assets/font_6350693c0d036e3e458db9b5.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01153;src:url('chunks/assets/font_b78fda2cc33b6f65878bac29.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01153;src:url('chunks/assets/font_ad5d105c412dad75e14e1c1b.woff2')format("woff");}.ff5_c01153{font-family:ff5_c01153;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01153;src:url('chunks/assets/font_5412b7ce605fc18c6a55372e.woff2')format("woff");}.ff6_c01153{font-family:ff6_c01153;line-height:1.284180;font-style:normal;font-weight: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_c01153;src:url('chunks/assets/font_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff7_c01153{font-family:ff7_c01153;line-height:1.281250;font-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_c01153{transform:matrix(0.122093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122093,0.000000,0.000000,0.250000,0,0);}
.m0_c01153{transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);}
.m2_c01153{transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238255,0.000000,0.000000,0.250000,0,0);}
.m4_c01153{transform:matrix(0.242593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242593,0.000000,0.000000,0.250000,0,0);}
.m1_c01153{transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);}
.m6_c01153{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m3_c01153{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5_c01153{transform:matrix(0.294554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294554,0.000000,0.000000,0.250000,0,0);}
.m7_c01153{transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314516,0.000000,0.000000,0.250000,0,0);}
.v0_c01153{vertical-align:0.000000px;}
.ls3_c01153{letter-spacing:-3.151350px;}
.ls4_c01153{letter-spacing:-2.907188px;}
.ls8_c01153{letter-spacing:-1.909658px;}
.ls5_c01153{letter-spacing:0.000000px;}
.ls6_c01153{letter-spacing:1.802775px;}
.ls0_c01153{letter-spacing:2.710500px;}
.ls9_c01153{letter-spacing:2.973300px;}
.ls2_c01153{letter-spacing:6.856868px;}
.ls1_c01153{letter-spacing:20.767500px;}
.ls7_c01153{letter-spacing:31.691250px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01153{word-spacing:0.000000px;}
._1_c01153{width:49.753817px;}
._0_c01153{width:62.341211px;}
.fc0_c01153{color:transparent;}
.fs7_c01153{font-size:69.750000px;}
.fs5_c01153{font-size:75.750000px;}
.fs6_c01153{font-size:79.500000px;}
.fs3_c01153{font-size:93.750000px;}
.fs0_c01153{font-size:97.500000px;}
.fs1_c01153{font-size:98.250000px;}
.fs4_c01153{font-size:101.250000px;}
.fs2_c01153{font-size:111.750000px;}
.fs8_c01153{font-size:451.500000px;}
.y0_c01153{bottom:0.000000px;}
.y2_c01153{bottom:225.780870px;}
.y4_c01153{bottom:233.701035px;}
.y3_c01153{bottom:261.780435px;}
.y1_c01153{bottom:740.221155px;}
.h8_c01153{height:72.747070px;}
.h7_c01153{height:77.986084px;}
.h6_c01153{height:79.004883px;}
.h4_c01153{height:97.778320px;}
.h1_c01153{height:98.261719px;}
.h2_c01153{height:99.017578px;}
.h5_c01153{height:105.600586px;}
.h3_c01153{height:110.440430px;}
.h9_c01153{height:442.902100px;}
.h0_c01153{height:892.500000px;}
.w0_c01153{width:1263.000000px;}
.x0_c01153{left:0.000000px;}
.x1_c01153{left:101.159415px;}
.x2_c01153{left:206.998950px;}
.x3_c01153{left:241.198785px;}
.x4_c01153{left:319.319850px;}
.x5_c01153{left:365.399850px;}
.x6_c01153{left:526.318770px;}
.x7_c01153{left:586.080000px;}
.x8_c01153{left:801.719055px;}
.xa_c01153{left:871.559055px;}
.x9_c01153{left:892.438665px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls3_c01153{letter-spacing:-2.801200pt;}
.ls4_c01153{letter-spacing:-2.584167pt;}
.ls8_c01153{letter-spacing:-1.697473pt;}
.ls5_c01153{letter-spacing:0.000000pt;}
.ls6_c01153{letter-spacing:1.602467pt;}
.ls0_c01153{letter-spacing:2.409333pt;}
.ls9_c01153{letter-spacing:2.642933pt;}
.ls2_c01153{letter-spacing:6.094993pt;}
.ls1_c01153{letter-spacing:18.460000pt;}
.ls7_c01153{letter-spacing:28.170000pt;}
.ws0_c01153{word-spacing:0.000000pt;}
._1_c01153{width:44.225615pt;}
._0_c01153{width:55.414410pt;}
.fs7_c01153{font-size:62.000000pt;}
.fs5_c01153{font-size:67.333333pt;}
.fs6_c01153{font-size:70.666667pt;}
.fs3_c01153{font-size:83.333333pt;}
.fs0_c01153{font-size:86.666667pt;}
.fs1_c01153{font-size:87.333333pt;}
.fs4_c01153{font-size:90.000000pt;}
.fs2_c01153{font-size:99.333333pt;}
.fs8_c01153{font-size:401.333333pt;}
.y0_c01153{bottom:0.000000pt;}
.y2_c01153{bottom:200.694107pt;}
.y4_c01153{bottom:207.734253pt;}
.y3_c01153{bottom:232.693720pt;}
.y1_c01153{bottom:657.974360pt;}
.h8_c01153{height:64.664062pt;}
.h7_c01153{height:69.320964pt;}
.h6_c01153{height:70.226562pt;}
.h4_c01153{height:86.914062pt;}
.h1_c01153{height:87.343750pt;}
.h2_c01153{height:88.015625pt;}
.h5_c01153{height:93.867188pt;}
.h3_c01153{height:98.169271pt;}
.h9_c01153{height:393.690755pt;}
.h0_c01153{height:793.333333pt;}
.w0_c01153{width:1122.666667pt;}
.x0_c01153{left:0.000000pt;}
.x1_c01153{left:89.919480pt;}
.x2_c01153{left:183.999067pt;}
.x3_c01153{left:214.398920pt;}
.x4_c01153{left:283.839867pt;}
.x5_c01153{left:324.799867pt;}
.x6_c01153{left:467.838907pt;}
.x7_c01153{left:520.960000pt;}
.x8_c01153{left:712.639160pt;}
.xa_c01153{left:774.719160pt;}
.x9_c01153{left:793.278813pt;}
}





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

.ir_c01154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_8b484f62ef38067303830719.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01154;src:url('chunks/assets/font_a1217219cffb8390a6b31fa6.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01154;src:url('chunks/assets/font_76ffe094a8014a756f9081cb.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01154;src:url('chunks/assets/font_34dafec39e0e0227d75354ce.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01154;src:url('chunks/assets/font_3577ff797b37e0fad50504c5.woff2')format("woff");}.ff5_c01154{font-family:ff5_c01154;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01154;src:url('chunks/assets/font_142d8cb965ac7846bb6056b9.woff2')format("woff");}.ff6_c01154{font-family:ff6_c01154;line-height:1.284668;font-style:normal;font-weight: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_c01154;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff7_c01154{font-family:ff7_c01154;line-height:1.284180;font-style:normal;font-weight: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_c01154;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c01154{font-family:ff8_c01154;line-height:1.364746;font-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_c01154{transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147059,0.000000,0.000000,0.250000,0,0);}
.m2d_c01154{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m2e_c01154{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.me_c01154{transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);}
.m2c_c01154{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m2b_c01154{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m17_c01154{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m32_c01154{transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203815,0.000000,0.000000,0.250000,0,0);}
.m27_c01154{transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);}
.m21_c01154{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3_c01154{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m1e_c01154{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m5_c01154{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m4_c01154{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m9_c01154{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m6_c01154{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m2f_c01154{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m7_c01154{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.mf_c01154{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m1c_c01154{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m29_c01154{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m18_c01154{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m12_c01154{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m1b_c01154{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m2a_c01154{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m19_c01154{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m24_c01154{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m25_c01154{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m10_c01154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01154{transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);}
.m1a_c01154{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m30_c01154{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m28_c01154{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m23_c01154{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m26_c01154{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1f_c01154{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m11_c01154{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m22_c01154{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m15_c01154{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m20_c01154{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m14_c01154{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m16_c01154{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m13_c01154{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m1d_c01154{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m2_c01154{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m0_c01154{transform:matrix(0.313063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313063,0.000000,0.000000,0.250000,0,0);}
.m33_c01154{transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);}
.ma_c01154{transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);}
.mb_c01154{transform:matrix(0.586957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586957,0.000000,0.000000,0.250000,0,0);}
.m31_c01154{transform:matrix(0.779730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779730,0.000000,0.000000,0.250000,0,0);}
.md_c01154{transform:matrix(3.666667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.666667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.666667,0.000000,0.000000,0.250000,0,0);}
.m8_c01154{transform:matrix(10.043182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.043182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.043182,0.000000,0.000000,0.250000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls2e_c01154{letter-spacing:-20.056125px;}
.ls33_c01154{letter-spacing:-10.448100px;}
.ls3b_c01154{letter-spacing:-9.424800px;}
.ls11_c01154{letter-spacing:-8.226300px;}
.ls21_c01154{letter-spacing:-8.213243px;}
.ls24_c01154{letter-spacing:-7.395075px;}
.ls34_c01154{letter-spacing:-6.942300px;}
.ls6_c01154{letter-spacing:-6.585075px;}
.lsb_c01154{letter-spacing:-4.995000px;}
.ls29_c01154{letter-spacing:-4.556250px;}
.ls36_c01154{letter-spacing:-4.440975px;}
.ls37_c01154{letter-spacing:-4.279275px;}
.ls22_c01154{letter-spacing:-4.142250px;}
.ls30_c01154{letter-spacing:-3.854400px;}
.ls1c_c01154{letter-spacing:-3.703125px;}
.lsd_c01154{letter-spacing:-3.531000px;}
.ls2b_c01154{letter-spacing:-3.286643px;}
.ls38_c01154{letter-spacing:-3.082425px;}
.ls18_c01154{letter-spacing:-2.998800px;}
.ls2f_c01154{letter-spacing:-2.919300px;}
.ls10_c01154{letter-spacing:-2.812500px;}
.ls13_c01154{letter-spacing:-2.770200px;}
.ls8_c01154{letter-spacing:-2.754000px;}
.lsc_c01154{letter-spacing:-2.475000px;}
.ls2a_c01154{letter-spacing:-2.463818px;}
.ls23_c01154{letter-spacing:-2.315925px;}
.ls39_c01154{letter-spacing:-2.223000px;}
.ls2d_c01154{letter-spacing:-2.187000px;}
.ls27_c01154{letter-spacing:-2.166203px;}
.ls25_c01154{letter-spacing:-2.138070px;}
.ls31_c01154{letter-spacing:-1.607400px;}
.ls1d_c01154{letter-spacing:-1.543950px;}
.ls1b_c01154{letter-spacing:-1.522050px;}
.ls2c_c01154{letter-spacing:-1.519050px;}
.ls15_c01154{letter-spacing:-1.417500px;}
.lsa_c01154{letter-spacing:-0.863603px;}
.ls9_c01154{letter-spacing:-0.863550px;}
.ls1e_c01154{letter-spacing:-0.822825px;}
.ls20_c01154{letter-spacing:-0.771975px;}
.ls3a_c01154{letter-spacing:-0.750825px;}
.ls28_c01154{letter-spacing:-0.728723px;}
.ls7_c01154{letter-spacing:0.000000px;}
.lsf_c01154{letter-spacing:0.638250px;}
.ls17_c01154{letter-spacing:0.705960px;}
.ls12_c01154{letter-spacing:0.749700px;}
.ls32_c01154{letter-spacing:0.761475px;}
.ls1_c01154{letter-spacing:0.771975px;}
.ls1f_c01154{letter-spacing:0.822825px;}
.ls1a_c01154{letter-spacing:1.498500px;}
.ls0_c01154{letter-spacing:1.500000px;}
.ls4_c01154{letter-spacing:1.543950px;}
.ls26_c01154{letter-spacing:1.818000px;}
.ls16_c01154{letter-spacing:2.160000px;}
.ls2_c01154{letter-spacing:2.315925px;}
.ls35_c01154{letter-spacing:2.985675px;}
.ls14_c01154{letter-spacing:3.000000px;}
.ls5_c01154{letter-spacing:3.082425px;}
.ls19_c01154{letter-spacing:3.693600px;}
.ls3_c01154{letter-spacing:3.854400px;}
.lse_c01154{letter-spacing:35.152425px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01154{word-spacing:0.000000px;}
._e_c01154{margin-left:-11.645880px;}
._7_c01154{margin-left:-7.172512px;}
._d_c01154{margin-left:-6.125430px;}
._9_c01154{margin-left:-4.364284px;}
._b_c01154{margin-left:-3.104294px;}
._a_c01154{margin-left:-1.839538px;}
._8_c01154{width:1.697759px;}
._3_c01154{width:3.536727px;}
._2_c01154{width:5.223428px;}
._4_c01154{width:7.117500px;}
._f_c01154{width:8.541370px;}
._c_c01154{width:9.574603px;}
._11_c01154{width:10.681602px;}
._14_c01154{width:12.379253px;}
._10_c01154{width:14.099004px;}
._12_c01154{width:17.049859px;}
._6_c01154{width:19.903214px;}
._13_c01154{width:21.593215px;}
._5_c01154{width:23.132151px;}
._17_c01154{width:24.435218px;}
._16_c01154{width:26.186848px;}
._15_c01154{width:30.720595px;}
._0_c01154{width:268.862520px;}
._1_c01154{width:271.736880px;}
.fc0_c01154{color:transparent;}
.fs9_c01154{font-size:12.750000px;}
.fs8_c01154{font-size:17.250000px;}
.fsa_c01154{font-size:22.500000px;}
.fsd_c01154{font-size:23.250000px;}
.fsf_c01154{font-size:24.000000px;}
.fsc_c01154{font-size:24.750000px;}
.fsb_c01154{font-size:25.500000px;}
.fs10_c01154{font-size:26.250000px;}
.fse_c01154{font-size:27.000000px;}
.fs7_c01154{font-size:28.500000px;}
.fs13_c01154{font-size:33.750000px;}
.fs11_c01154{font-size:36.000000px;}
.fs12_c01154{font-size:36.750000px;}
.fs23_c01154{font-size:38.250000px;}
.fs19_c01154{font-size:51.000000px;}
.fs17_c01154{font-size:51.750000px;}
.fs18_c01154{font-size:52.500000px;}
.fs20_c01154{font-size:53.250000px;}
.fs1e_c01154{font-size:54.000000px;}
.fs15_c01154{font-size:54.750000px;}
.fs1f_c01154{font-size:55.500000px;}
.fs14_c01154{font-size:56.250000px;}
.fs1a_c01154{font-size:57.000000px;}
.fs6_c01154{font-size:57.750000px;}
.fs16_c01154{font-size:59.250000px;}
.fs1b_c01154{font-size:60.000000px;}
.fs1c_c01154{font-size:60.750000px;}
.fs1d_c01154{font-size:61.500000px;}
.fs2_c01154{font-size:76.500000px;}
.fs5_c01154{font-size:82.500000px;}
.fs0_c01154{font-size:83.250000px;}
.fs4_c01154{font-size:84.750000px;}
.fs3_c01154{font-size:85.500000px;}
.fs1_c01154{font-size:88.500000px;}
.fs21_c01154{font-size:138.750000px;}
.fs22_c01154{font-size:186.750000px;}
.y0_c01154{bottom:0.000000px;}
.y5_c01154{bottom:46.859850px;}
.y3_c01154{bottom:55.500000px;}
.y4_c01154{bottom:55.860900px;}
.y2_c01154{bottom:61.979685px;}
.y28_c01154{bottom:308.939685px;}
.y27_c01154{bottom:342.060285px;}
.y26_c01154{bottom:398.220750px;}
.y25_c01154{bottom:457.621035px;}
.y24_c01154{bottom:457.621680px;}
.y23_c01154{bottom:472.380795px;}
.y21_c01154{bottom:487.499910px;}
.y22_c01154{bottom:487.500000px;}
.y20_c01154{bottom:502.260495px;}
.y1f_c01154{bottom:517.381170px;}
.y1e_c01154{bottom:532.141755px;}
.y1c_c01154{bottom:546.540990px;}
.y1d_c01154{bottom:546.541035px;}
.y1b_c01154{bottom:562.020240px;}
.y1a_c01154{bottom:576.780825px;}
.y19_c01154{bottom:591.539985px;}
.y18_c01154{bottom:606.300570px;}
.y17_c01154{bottom:606.300750px;}
.y16_c01154{bottom:621.061335px;}
.y15_c01154{bottom:635.820420px;}
.y14_c01154{bottom:650.581005px;}
.y13_c01154{bottom:665.340915px;}
.y12_c01154{bottom:680.460120px;}
.y11_c01154{bottom:695.220705px;}
.y10_c01154{bottom:709.979685px;}
.yf_c01154{bottom:709.979835px;}
.ye_c01154{bottom:724.740420px;}
.yd_c01154{bottom:724.741065px;}
.yc_c01154{bottom:739.860255px;}
.yb_c01154{bottom:754.621035px;}
.ya_c01154{bottom:754.621680px;}
.y9_c01154{bottom:769.740870px;}
.y7_c01154{bottom:784.860810px;}
.y8_c01154{bottom:784.860900px;}
.y6_c01154{bottom:799.619940px;}
.y1_c01154{bottom:850.020720px;}
.hb_c01154{height:12.513428px;}
.ha_c01154{height:17.991211px;}
.hc_c01154{height:23.466797px;}
.h11_c01154{height:24.249023px;}
.h13_c01154{height:25.031250px;}
.hf_c01154{height:25.201172px;}
.he_c01154{height:25.699219px;}
.h10_c01154{height:25.813477px;}
.h14_c01154{height:25.942383px;}
.h15_c01154{height:26.485840px;}
.hd_c01154{height:26.595703px;}
.h12_c01154{height:26.683594px;}
.h9_c01154{height:29.724609px;}
.h18_c01154{height:35.200195px;}
.h16_c01154{height:36.281250px;}
.h17_c01154{height:36.319336px;}
.h2e_c01154{height:39.893555px;}
.h29_c01154{height:52.261963px;}
.h25_c01154{height:52.998047px;}
.h1f_c01154{height:53.191406px;}
.h1c_c01154{height:53.734131px;}
.h1d_c01154{height:53.973633px;}
.h27_c01154{height:54.470215px;}
.h1e_c01154{height:54.755859px;}
.h1a_c01154{height:55.177734px;}
.h19_c01154{height:55.206299px;}
.h20_c01154{height:55.942383px;}
.h2a_c01154{height:56.332031px;}
.h22_c01154{height:56.678467px;}
.h2b_c01154{height:57.073242px;}
.h28_c01154{height:57.445312px;}
.h1b_c01154{height:58.150635px;}
.h26_c01154{height:58.555664px;}
.h21_c01154{height:58.886719px;}
.h23_c01154{height:59.622803px;}
.h8_c01154{height:60.231445px;}
.h24_c01154{height:60.779297px;}
.h3_c01154{height:79.787109px;}
.h6_c01154{height:83.144531px;}
.h1_c01154{height:83.900391px;}
.h5_c01154{height:85.412109px;}
.h7_c01154{height:86.044922px;}
.h4_c01154{height:86.167969px;}
.h2_c01154{height:87.462891px;}
.h2c_c01154{height:144.711914px;}
.h2d_c01154{height:194.774414px;}
.h0_c01154{height:892.500000px;}
.w0_c01154{width:1263.000000px;}
.x0_c01154{left:0.000000px;}
.x1_c01154{left:93.959400px;}
.x9_c01154{left:99.359850px;}
.xf_c01154{left:175.679700px;}
.x2_c01154{left:182.159415px;}
.x3_c01154{left:207.719100px;}
.x4_c01154{left:237.599700px;}
.x10_c01154{left:252.358635px;}
.x5_c01154{left:301.678500px;}
.x11_c01154{left:329.398635px;}
.x16_c01154{left:353.158785px;}
.x17_c01154{left:380.878950px;}
.x6_c01154{left:402.119385px;}
.x12_c01154{left:407.878920px;}
.x18_c01154{left:426.599670px;}
.x7_c01154{left:439.918350px;}
.x19_c01154{left:466.559100px;}
.xa_c01154{left:474.119985px;}
.x13_c01154{left:484.918950px;}
.xb_c01154{left:498.598530px;}
.x8_c01154{left:502.919535px;}
.x1a_c01154{left:510.119385px;}
.xc_c01154{left:516.958335px;}
.x1b_c01154{left:561.238770px;}
.x14_c01154{left:637.919535px;}
.x15_c01154{left:714.959385px;}
.xd_c01154{left:757.079355px;}
.xe_c01154{left:781.198785px;}
.x20_c01154{left:934.558770px;}
.x2e_c01154{left:935.998905px;}
.x4d_c01154{left:941.758575px;}
.x21_c01154{left:955.078770px;}
.x41_c01154{left:960.479190px;}
.x3b_c01154{left:961.558590px;}
.x2f_c01154{left:970.559685px;}
.x1c_c01154{left:973.799565px;}
.x45_c01154{left:974.877435px;}
.x4c_c01154{left:975.958275px;}
.x42_c01154{left:977.039340px;}
.x37_c01154{left:991.798560px;}
.x30_c01154{left:998.279850px;}
.x22_c01154{left:1001.158815px;}
.x1d_c01154{left:1004.759490px;}
.x23_c01154{left:1012.318815px;}
.x38_c01154{left:1014.479190px;}
.x39_c01154{left:1028.878965px;}
.x31_c01154{left:1031.398590px;}
.x3c_c01154{left:1034.638545px;}
.x24_c01154{left:1037.159820px;}
.x4b_c01154{left:1047.599670px;}
.x1e_c01154{left:1049.399235px;}
.x34_c01154{left:1052.639100px;}
.x3d_c01154{left:1055.519715px;}
.x25_c01154{left:1058.039340px;}
.x1f_c01154{left:1064.159820px;}
.x35_c01154{left:1067.399775px;}
.x36_c01154{left:1085.039340px;}
.x3a_c01154{left:1098.719055px;}
.x2b_c01154{left:1104.478635px;}
.x46_c01154{left:1112.039340px;}
.x49_c01154{left:1113.118740px;}
.x43_c01154{left:1116.719520px;}
.x32_c01154{left:1117.798920px;}
.x47_c01154{left:1124.278755px;}
.x44_c01154{left:1130.399235px;}
.x2c_c01154{left:1134.000000px;}
.x33_c01154{left:1136.519715px;}
.x48_c01154{left:1139.398590px;}
.x4a_c01154{left:1148.038875px;}
.x29_c01154{left:1150.919490px;}
.x2d_c01154{left:1155.599670px;}
.x26_c01154{left:1159.918950px;}
.x3e_c01154{left:1166.039340px;}
.x3f_c01154{left:1183.679070px;}
.x2a_c01154{left:1185.478635px;}
.x27_c01154{left:1205.639655px;}
.x28_c01154{left:1218.239775px;}
.x40_c01154{left:1222.199805px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls2e_c01154{letter-spacing:-17.827667pt;}
.ls33_c01154{letter-spacing:-9.287200pt;}
.ls3b_c01154{letter-spacing:-8.377600pt;}
.ls11_c01154{letter-spacing:-7.312267pt;}
.ls21_c01154{letter-spacing:-7.300660pt;}
.ls24_c01154{letter-spacing:-6.573400pt;}
.ls34_c01154{letter-spacing:-6.170933pt;}
.ls6_c01154{letter-spacing:-5.853400pt;}
.lsb_c01154{letter-spacing:-4.440000pt;}
.ls29_c01154{letter-spacing:-4.050000pt;}
.ls36_c01154{letter-spacing:-3.947533pt;}
.ls37_c01154{letter-spacing:-3.803800pt;}
.ls22_c01154{letter-spacing:-3.682000pt;}
.ls30_c01154{letter-spacing:-3.426133pt;}
.ls1c_c01154{letter-spacing:-3.291667pt;}
.lsd_c01154{letter-spacing:-3.138667pt;}
.ls2b_c01154{letter-spacing:-2.921460pt;}
.ls38_c01154{letter-spacing:-2.739933pt;}
.ls18_c01154{letter-spacing:-2.665600pt;}
.ls2f_c01154{letter-spacing:-2.594933pt;}
.ls10_c01154{letter-spacing:-2.500000pt;}
.ls13_c01154{letter-spacing:-2.462400pt;}
.ls8_c01154{letter-spacing:-2.448000pt;}
.lsc_c01154{letter-spacing:-2.200000pt;}
.ls2a_c01154{letter-spacing:-2.190060pt;}
.ls23_c01154{letter-spacing:-2.058600pt;}
.ls39_c01154{letter-spacing:-1.976000pt;}
.ls2d_c01154{letter-spacing:-1.944000pt;}
.ls27_c01154{letter-spacing:-1.925513pt;}
.ls25_c01154{letter-spacing:-1.900507pt;}
.ls31_c01154{letter-spacing:-1.428800pt;}
.ls1d_c01154{letter-spacing:-1.372400pt;}
.ls1b_c01154{letter-spacing:-1.352933pt;}
.ls2c_c01154{letter-spacing:-1.350267pt;}
.ls15_c01154{letter-spacing:-1.260000pt;}
.lsa_c01154{letter-spacing:-0.767647pt;}
.ls9_c01154{letter-spacing:-0.767600pt;}
.ls1e_c01154{letter-spacing:-0.731400pt;}
.ls20_c01154{letter-spacing:-0.686200pt;}
.ls3a_c01154{letter-spacing:-0.667400pt;}
.ls28_c01154{letter-spacing:-0.647753pt;}
.ls7_c01154{letter-spacing:0.000000pt;}
.lsf_c01154{letter-spacing:0.567333pt;}
.ls17_c01154{letter-spacing:0.627520pt;}
.ls12_c01154{letter-spacing:0.666400pt;}
.ls32_c01154{letter-spacing:0.676867pt;}
.ls1_c01154{letter-spacing:0.686200pt;}
.ls1f_c01154{letter-spacing:0.731400pt;}
.ls1a_c01154{letter-spacing:1.332000pt;}
.ls0_c01154{letter-spacing:1.333333pt;}
.ls4_c01154{letter-spacing:1.372400pt;}
.ls26_c01154{letter-spacing:1.616000pt;}
.ls16_c01154{letter-spacing:1.920000pt;}
.ls2_c01154{letter-spacing:2.058600pt;}
.ls35_c01154{letter-spacing:2.653933pt;}
.ls14_c01154{letter-spacing:2.666667pt;}
.ls5_c01154{letter-spacing:2.739933pt;}
.ls19_c01154{letter-spacing:3.283200pt;}
.ls3_c01154{letter-spacing:3.426133pt;}
.lse_c01154{letter-spacing:31.246600pt;}
.ws0_c01154{word-spacing:0.000000pt;}
._e_c01154{margin-left:-10.351894pt;}
._7_c01154{margin-left:-6.375566pt;}
._d_c01154{margin-left:-5.444827pt;}
._9_c01154{margin-left:-3.879364pt;}
._b_c01154{margin-left:-2.759373pt;}
._a_c01154{margin-left:-1.635145pt;}
._8_c01154{width:1.509119pt;}
._3_c01154{width:3.143757pt;}
._2_c01154{width:4.643047pt;}
._4_c01154{width:6.326667pt;}
._f_c01154{width:7.592329pt;}
._c_c01154{width:8.510758pt;}
._11_c01154{width:9.494757pt;}
._14_c01154{width:11.003780pt;}
._10_c01154{width:12.532448pt;}
._12_c01154{width:15.155431pt;}
._6_c01154{width:17.691746pt;}
._13_c01154{width:19.193969pt;}
._5_c01154{width:20.561912pt;}
._17_c01154{width:21.720194pt;}
._16_c01154{width:23.277198pt;}
._15_c01154{width:27.307196pt;}
._0_c01154{width:238.988907pt;}
._1_c01154{width:241.543893pt;}
.fs9_c01154{font-size:11.333333pt;}
.fs8_c01154{font-size:15.333333pt;}
.fsa_c01154{font-size:20.000000pt;}
.fsd_c01154{font-size:20.666667pt;}
.fsf_c01154{font-size:21.333333pt;}
.fsc_c01154{font-size:22.000000pt;}
.fsb_c01154{font-size:22.666667pt;}
.fs10_c01154{font-size:23.333333pt;}
.fse_c01154{font-size:24.000000pt;}
.fs7_c01154{font-size:25.333333pt;}
.fs13_c01154{font-size:30.000000pt;}
.fs11_c01154{font-size:32.000000pt;}
.fs12_c01154{font-size:32.666667pt;}
.fs23_c01154{font-size:34.000000pt;}
.fs19_c01154{font-size:45.333333pt;}
.fs17_c01154{font-size:46.000000pt;}
.fs18_c01154{font-size:46.666667pt;}
.fs20_c01154{font-size:47.333333pt;}
.fs1e_c01154{font-size:48.000000pt;}
.fs15_c01154{font-size:48.666667pt;}
.fs1f_c01154{font-size:49.333333pt;}
.fs14_c01154{font-size:50.000000pt;}
.fs1a_c01154{font-size:50.666667pt;}
.fs6_c01154{font-size:51.333333pt;}
.fs16_c01154{font-size:52.666667pt;}
.fs1b_c01154{font-size:53.333333pt;}
.fs1c_c01154{font-size:54.000000pt;}
.fs1d_c01154{font-size:54.666667pt;}
.fs2_c01154{font-size:68.000000pt;}
.fs5_c01154{font-size:73.333333pt;}
.fs0_c01154{font-size:74.000000pt;}
.fs4_c01154{font-size:75.333333pt;}
.fs3_c01154{font-size:76.000000pt;}
.fs1_c01154{font-size:78.666667pt;}
.fs21_c01154{font-size:123.333333pt;}
.fs22_c01154{font-size:166.000000pt;}
.y0_c01154{bottom:0.000000pt;}
.y5_c01154{bottom:41.653200pt;}
.y3_c01154{bottom:49.333333pt;}
.y4_c01154{bottom:49.654133pt;}
.y2_c01154{bottom:55.093053pt;}
.y28_c01154{bottom:274.613053pt;}
.y27_c01154{bottom:304.053587pt;}
.y26_c01154{bottom:353.974000pt;}
.y25_c01154{bottom:406.774253pt;}
.y24_c01154{bottom:406.774827pt;}
.y23_c01154{bottom:419.894040pt;}
.y21_c01154{bottom:433.333253pt;}
.y22_c01154{bottom:433.333333pt;}
.y20_c01154{bottom:446.453773pt;}
.y1f_c01154{bottom:459.894373pt;}
.y1e_c01154{bottom:473.014893pt;}
.y1c_c01154{bottom:485.814213pt;}
.y1d_c01154{bottom:485.814253pt;}
.y1b_c01154{bottom:499.573547pt;}
.y1a_c01154{bottom:512.694067pt;}
.y19_c01154{bottom:525.813320pt;}
.y18_c01154{bottom:538.933840pt;}
.y17_c01154{bottom:538.934000pt;}
.y16_c01154{bottom:552.054520pt;}
.y15_c01154{bottom:565.173707pt;}
.y14_c01154{bottom:578.294227pt;}
.y13_c01154{bottom:591.414147pt;}
.y12_c01154{bottom:604.853440pt;}
.y11_c01154{bottom:617.973960pt;}
.y10_c01154{bottom:631.093053pt;}
.yf_c01154{bottom:631.093187pt;}
.ye_c01154{bottom:644.213707pt;}
.yd_c01154{bottom:644.214280pt;}
.yc_c01154{bottom:657.653560pt;}
.yb_c01154{bottom:670.774253pt;}
.ya_c01154{bottom:670.774827pt;}
.y9_c01154{bottom:684.214107pt;}
.y7_c01154{bottom:697.654053pt;}
.y8_c01154{bottom:697.654133pt;}
.y6_c01154{bottom:710.773280pt;}
.y1_c01154{bottom:755.573973pt;}
.hb_c01154{height:11.123047pt;}
.ha_c01154{height:15.992187pt;}
.hc_c01154{height:20.859375pt;}
.h11_c01154{height:21.554687pt;}
.h13_c01154{height:22.250000pt;}
.hf_c01154{height:22.401042pt;}
.he_c01154{height:22.843750pt;}
.h10_c01154{height:22.945312pt;}
.h14_c01154{height:23.059896pt;}
.h15_c01154{height:23.542969pt;}
.hd_c01154{height:23.640625pt;}
.h12_c01154{height:23.718750pt;}
.h9_c01154{height:26.421875pt;}
.h18_c01154{height:31.289062pt;}
.h16_c01154{height:32.250000pt;}
.h17_c01154{height:32.283854pt;}
.h2e_c01154{height:35.460938pt;}
.h29_c01154{height:46.455078pt;}
.h25_c01154{height:47.109375pt;}
.h1f_c01154{height:47.281250pt;}
.h1c_c01154{height:47.763672pt;}
.h1d_c01154{height:47.976562pt;}
.h27_c01154{height:48.417969pt;}
.h1e_c01154{height:48.671875pt;}
.h1a_c01154{height:49.046875pt;}
.h19_c01154{height:49.072266pt;}
.h20_c01154{height:49.726562pt;}
.h2a_c01154{height:50.072917pt;}
.h22_c01154{height:50.380859pt;}
.h2b_c01154{height:50.731771pt;}
.h28_c01154{height:51.062500pt;}
.h1b_c01154{height:51.689453pt;}
.h26_c01154{height:52.049479pt;}
.h21_c01154{height:52.343750pt;}
.h23_c01154{height:52.998047pt;}
.h8_c01154{height:53.539062pt;}
.h24_c01154{height:54.026042pt;}
.h3_c01154{height:70.921875pt;}
.h6_c01154{height:73.906250pt;}
.h1_c01154{height:74.578125pt;}
.h5_c01154{height:75.921875pt;}
.h7_c01154{height:76.484375pt;}
.h4_c01154{height:76.593750pt;}
.h2_c01154{height:77.744792pt;}
.h2c_c01154{height:128.632812pt;}
.h2d_c01154{height:173.132812pt;}
.h0_c01154{height:793.333333pt;}
.w0_c01154{width:1122.666667pt;}
.x0_c01154{left:0.000000pt;}
.x1_c01154{left:83.519467pt;}
.x9_c01154{left:88.319867pt;}
.xf_c01154{left:156.159733pt;}
.x2_c01154{left:161.919480pt;}
.x3_c01154{left:184.639200pt;}
.x4_c01154{left:211.199733pt;}
.x10_c01154{left:224.318787pt;}
.x5_c01154{left:268.158667pt;}
.x11_c01154{left:292.798787pt;}
.x16_c01154{left:313.918920pt;}
.x17_c01154{left:338.559067pt;}
.x6_c01154{left:357.439453pt;}
.x12_c01154{left:362.559040pt;}
.x18_c01154{left:379.199707pt;}
.x7_c01154{left:391.038533pt;}
.x19_c01154{left:414.719200pt;}
.xa_c01154{left:421.439987pt;}
.x13_c01154{left:431.039067pt;}
.xb_c01154{left:443.198693pt;}
.x8_c01154{left:447.039587pt;}
.x1a_c01154{left:453.439453pt;}
.xc_c01154{left:459.518520pt;}
.x1b_c01154{left:498.878907pt;}
.x14_c01154{left:567.039587pt;}
.x15_c01154{left:635.519453pt;}
.xd_c01154{left:672.959427pt;}
.xe_c01154{left:694.398920pt;}
.x20_c01154{left:830.718907pt;}
.x2e_c01154{left:831.999027pt;}
.x4d_c01154{left:837.118733pt;}
.x21_c01154{left:848.958907pt;}
.x41_c01154{left:853.759280pt;}
.x3b_c01154{left:854.718747pt;}
.x2f_c01154{left:862.719720pt;}
.x1c_c01154{left:865.599613pt;}
.x45_c01154{left:866.557720pt;}
.x4c_c01154{left:867.518467pt;}
.x42_c01154{left:868.479413pt;}
.x37_c01154{left:881.598720pt;}
.x30_c01154{left:887.359867pt;}
.x22_c01154{left:889.918947pt;}
.x1d_c01154{left:893.119547pt;}
.x23_c01154{left:899.838947pt;}
.x38_c01154{left:901.759280pt;}
.x39_c01154{left:914.559080pt;}
.x31_c01154{left:916.798747pt;}
.x3c_c01154{left:919.678707pt;}
.x24_c01154{left:921.919840pt;}
.x4b_c01154{left:931.199707pt;}
.x1e_c01154{left:932.799320pt;}
.x34_c01154{left:935.679200pt;}
.x3d_c01154{left:938.239747pt;}
.x25_c01154{left:940.479413pt;}
.x1f_c01154{left:945.919840pt;}
.x35_c01154{left:948.799800pt;}
.x36_c01154{left:964.479413pt;}
.x3a_c01154{left:976.639160pt;}
.x2b_c01154{left:981.758787pt;}
.x46_c01154{left:988.479413pt;}
.x49_c01154{left:989.438880pt;}
.x43_c01154{left:992.639573pt;}
.x32_c01154{left:993.599040pt;}
.x47_c01154{left:999.358893pt;}
.x44_c01154{left:1004.799320pt;}
.x2c_c01154{left:1008.000000pt;}
.x33_c01154{left:1010.239747pt;}
.x48_c01154{left:1012.798747pt;}
.x4a_c01154{left:1020.479000pt;}
.x29_c01154{left:1023.039547pt;}
.x2d_c01154{left:1027.199707pt;}
.x26_c01154{left:1031.039067pt;}
.x3e_c01154{left:1036.479413pt;}
.x3f_c01154{left:1052.159173pt;}
.x2a_c01154{left:1053.758787pt;}
.x27_c01154{left:1071.679693pt;}
.x28_c01154{left:1082.879800pt;}
.x40_c01154{left:1086.399827pt;}
}





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

.ir_c01155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_ea24b1d0194b897f2533c57f.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01155;src:url('chunks/assets/font_5b5b0dd2abf6a260021b44f9.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01155;src:url('chunks/assets/font_5ebeb182fd908d7008527944.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:1.311035;font-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_c01155{transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);}
.m4_c01155{transform:matrix(0.216797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216797,0.000000,0.000000,0.250000,0,0);}
.m2_c01155{transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227679,0.000000,0.000000,0.250000,0,0);}
.m5_c01155{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m1_c01155{transform:matrix(0.274123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274123,0.000000,0.000000,0.250000,0,0);}
.m0_c01155{transform:matrix(0.279160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279160,0.000000,0.000000,0.250000,0,0);}
.v0_c01155{vertical-align:0.000000px;}
.ls1_c01155{letter-spacing:-23.256000px;}
.ls3_c01155{letter-spacing:-4.320000px;}
.ls4_c01155{letter-spacing:-4.106400px;}
.ls2_c01155{letter-spacing:-2.469600px;}
.ls0_c01155{letter-spacing:0.000000px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01155{word-spacing:0.000000px;}
.fc0_c01155{color:transparent;}
.fs2_c01155{font-size:84.000000px;}
.fs0_c01155{font-size:85.170600px;}
.fs1_c01155{font-size:85.500000px;}
.fs5_c01155{font-size:87.000000px;}
.fs3_c01155{font-size:87.750000px;}
.fs4_c01155{font-size:96.000000px;}
.y0_c01155{bottom:0.000000px;}
.y1_c01155{bottom:761.641290px;}
.h2_c01155{height:84.498047px;}
.h3_c01155{height:84.656250px;}
.h6_c01155{height:87.679688px;}
.h4_c01155{height:88.435547px;}
.h1_c01155{height:88.830274px;}
.h5_c01155{height:94.875000px;}
.h0_c01155{height:892.500000px;}
.w0_c01155{width:1263.000000px;}
.x0_c01155{left:0.000000px;}
.x1_c01155{left:74.518665px;}
.x2_c01155{left:162.359250px;}
.x3_c01155{left:191.878950px;}
.x4_c01155{left:258.838515px;}
.x5_c01155{left:332.999385px;}
.x6_c01155{left:367.558635px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls1_c01155{letter-spacing:-20.672000pt;}
.ls3_c01155{letter-spacing:-3.840000pt;}
.ls4_c01155{letter-spacing:-3.650133pt;}
.ls2_c01155{letter-spacing:-2.195200pt;}
.ls0_c01155{letter-spacing:0.000000pt;}
.ws0_c01155{word-spacing:0.000000pt;}
.fs2_c01155{font-size:74.666667pt;}
.fs0_c01155{font-size:75.707200pt;}
.fs1_c01155{font-size:76.000000pt;}
.fs5_c01155{font-size:77.333333pt;}
.fs3_c01155{font-size:78.000000pt;}
.fs4_c01155{font-size:85.333333pt;}
.y0_c01155{bottom:0.000000pt;}
.y1_c01155{bottom:677.014480pt;}
.h2_c01155{height:75.109375pt;}
.h3_c01155{height:75.250000pt;}
.h6_c01155{height:77.937500pt;}
.h4_c01155{height:78.609375pt;}
.h1_c01155{height:78.960244pt;}
.h5_c01155{height:84.333333pt;}
.h0_c01155{height:793.333333pt;}
.w0_c01155{width:1122.666667pt;}
.x0_c01155{left:0.000000pt;}
.x1_c01155{left:66.238813pt;}
.x2_c01155{left:144.319333pt;}
.x3_c01155{left:170.559067pt;}
.x4_c01155{left:230.078680pt;}
.x5_c01155{left:295.999453pt;}
.x6_c01155{left:326.718787pt;}
}





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

.ir_c01156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_395f09e4b0ed258464c14f6f.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01156;src:url('chunks/assets/font_b7cc20bc49ff809d726e30fd.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01156;src:url('chunks/assets/font_ec93350acdd48f94827aa88f.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.311035;font-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_c01156{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.m4_c01156{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c01156{transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223913,0.000000,0.000000,0.250000,0,0);}
.m1_c01156{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m5_c01156{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m0_c01156{transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls1_c01156{letter-spacing:-5.718075px;}
.ls4_c01156{letter-spacing:-5.145600px;}
.ls5_c01156{letter-spacing:-3.262875px;}
.ls0_c01156{letter-spacing:-2.267843px;}
.ls2_c01156{letter-spacing:-1.714950px;}
.ls3_c01156{letter-spacing:0.000000px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01156{word-spacing:0.000000px;}
.fc0_c01156{color:transparent;}
.fs1_c01156{font-size:82.500000px;}
.fs2_c01156{font-size:83.250000px;}
.fs5_c01156{font-size:84.750000px;}
.fs3_c01156{font-size:86.250000px;}
.fs0_c01156{font-size:90.750000px;}
.fs4_c01156{font-size:96.000000px;}
.y0_c01156{bottom:0.000000px;}
.y1_c01156{bottom:772.801215px;}
.h3_c01156{height:83.900391px;}
.h6_c01156{height:85.412109px;}
.h2_c01156{height:86.044922px;}
.h4_c01156{height:86.923828px;}
.h1_c01156{height:89.686523px;}
.h5_c01156{height:94.875000px;}
.h0_c01156{height:892.500000px;}
.w0_c01156{width:1263.000000px;}
.x0_c01156{left:0.000000px;}
.x1_c01156{left:80.279850px;}
.x2_c01156{left:169.199850px;}
.x3_c01156{left:198.358635px;}
.x4_c01156{left:263.518635px;}
.x5_c01156{left:340.199385px;}
.x6_c01156{left:375.839535px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls1_c01156{letter-spacing:-5.082733pt;}
.ls4_c01156{letter-spacing:-4.573867pt;}
.ls5_c01156{letter-spacing:-2.900333pt;}
.ls0_c01156{letter-spacing:-2.015860pt;}
.ls2_c01156{letter-spacing:-1.524400pt;}
.ls3_c01156{letter-spacing:0.000000pt;}
.ws0_c01156{word-spacing:0.000000pt;}
.fs1_c01156{font-size:73.333333pt;}
.fs2_c01156{font-size:74.000000pt;}
.fs5_c01156{font-size:75.333333pt;}
.fs3_c01156{font-size:76.666667pt;}
.fs0_c01156{font-size:80.666667pt;}
.fs4_c01156{font-size:85.333333pt;}
.y0_c01156{bottom:0.000000pt;}
.y1_c01156{bottom:686.934413pt;}
.h3_c01156{height:74.578125pt;}
.h6_c01156{height:75.921875pt;}
.h2_c01156{height:76.484375pt;}
.h4_c01156{height:77.265625pt;}
.h1_c01156{height:79.721354pt;}
.h5_c01156{height:84.333333pt;}
.h0_c01156{height:793.333333pt;}
.w0_c01156{width:1122.666667pt;}
.x0_c01156{left:0.000000pt;}
.x1_c01156{left:71.359867pt;}
.x2_c01156{left:150.399867pt;}
.x3_c01156{left:176.318787pt;}
.x4_c01156{left:234.238787pt;}
.x5_c01156{left:302.399453pt;}
.x6_c01156{left:334.079587pt;}
}





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

.ir_c01157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_0cd4bd5da72051559ee21703.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01157;src:url('chunks/assets/font_bf966753a9073cd970934170.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01157;src:url('chunks/assets/font_997444e4a62dca4c022fe1fb.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01157;src:url('chunks/assets/font_3c59d10f5c83d295d574164e.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01157;src:url('chunks/assets/font_637fc979508de4ca730430b2.woff2')format("woff");}.ff5_c01157{font-family:ff5_c01157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01157;src:url('chunks/assets/font_45de0f88208ebfc18797d3ac.woff2')format("woff");}.ff6_c01157{font-family:ff6_c01157;line-height:1.281250;font-style:normal;font-weight: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_c01157;src:url('chunks/assets/font_8c6b814d7056d4486ca2eabf.woff2')format("woff");}.ff7_c01157{font-family:ff7_c01157;line-height:1.432129;font-style:normal;font-weight: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_c01157;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c01157{font-family:ff8_c01157;line-height:1.364746;font-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_c01157{transform:matrix(0.123377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123377,0.000000,0.000000,0.250000,0,0);}
.mf_c01157{transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172619,0.000000,0.000000,0.250000,0,0);}
.m21_c01157{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m5_c01157{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m39_c01157{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m23_c01157{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m2e_c01157{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m1d_c01157{transform:matrix(0.200617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200617,0.000000,0.000000,0.250000,0,0);}
.m27_c01157{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m12_c01157{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m37_c01157{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m20_c01157{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.m8_c01157{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m18_c01157{transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213542,0.000000,0.000000,0.250000,0,0);}
.m3_c01157{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4_c01157{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m1e_c01157{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m2a_c01157{transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);}
.m33_c01157{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);}
.m2c_c01157{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m2b_c01157{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m36_c01157{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m2_c01157{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m29_c01157{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.mc_c01157{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);}
.m2d_c01157{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m3a_c01157{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);}
.m1a_c01157{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m15_c01157{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m34_c01157{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m3b_c01157{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m9_c01157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01157{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m22_c01157{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m16_c01157{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m1b_c01157{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m26_c01157{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m2f_c01157{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m30_c01157{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m1_c01157{transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257212,0.000000,0.000000,0.250000,0,0);}
.m1f_c01157{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m31_c01157{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m10_c01157{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m24_c01157{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m17_c01157{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m19_c01157{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m35_c01157{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m25_c01157{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m1c_c01157{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.m38_c01157{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m13_c01157{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m32_c01157{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.md_c01157{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m0_c01157{transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301339,0.000000,0.000000,0.250000,0,0);}
.ma_c01157{transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);}
.m7_c01157{transform:matrix(0.356383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356383,0.000000,0.000000,0.250000,0,0);}
.m6_c01157{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m11_c01157{transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390625,0.000000,0.000000,0.250000,0,0);}
.m14_c01157{transform:matrix(2.902174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.902174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.902174,0.000000,0.000000,0.250000,0,0);}
.me_c01157{transform:matrix(3.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.220588,0.000000,0.000000,0.250000,0,0);}
.v0_c01157{vertical-align:0.000000px;}
.ls34_c01157{letter-spacing:-12.425625px;}
.ls22_c01157{letter-spacing:-11.802000px;}
.ls26_c01157{letter-spacing:-11.359425px;}
.lsd_c01157{letter-spacing:-10.732200px;}
.lsc_c01157{letter-spacing:-10.398750px;}
.ls2d_c01157{letter-spacing:-7.703100px;}
.ls20_c01157{letter-spacing:-6.954600px;}
.ls10_c01157{letter-spacing:-5.760240px;}
.ls2f_c01157{letter-spacing:-5.666625px;}
.ls23_c01157{letter-spacing:-5.398350px;}
.ls1a_c01157{letter-spacing:-5.119200px;}
.ls1e_c01157{letter-spacing:-4.671675px;}
.ls2c_c01157{letter-spacing:-4.626375px;}
.ls2b_c01157{letter-spacing:-4.440975px;}
.ls29_c01157{letter-spacing:-4.381875px;}
.ls31_c01157{letter-spacing:-4.373250px;}
.ls6_c01157{letter-spacing:-4.351200px;}
.ls37_c01157{letter-spacing:-4.106250px;}
.ls2e_c01157{letter-spacing:-4.059000px;}
.ls39_c01157{letter-spacing:-3.854400px;}
.ls27_c01157{letter-spacing:-3.468750px;}
.ls1c_c01157{letter-spacing:-3.386250px;}
.ls8_c01157{letter-spacing:-3.179063px;}
.ls38_c01157{letter-spacing:-3.178493px;}
.ls1f_c01157{letter-spacing:-3.082425px;}
.ls21_c01157{letter-spacing:-2.877300px;}
.ls32_c01157{letter-spacing:-2.850000px;}
.ls25_c01157{letter-spacing:-2.315925px;}
.ls36_c01157{letter-spacing:-2.283075px;}
.ls24_c01157{letter-spacing:-2.223000px;}
.ls3d_c01157{letter-spacing:-2.193750px;}
.ls28_c01157{letter-spacing:-2.041650px;}
.ls3a_c01157{letter-spacing:-2.025540px;}
.lsb_c01157{letter-spacing:-1.966500px;}
.ls35_c01157{letter-spacing:-1.543950px;}
.ls3c_c01157{letter-spacing:-1.519403px;}
.ls33_c01157{letter-spacing:-1.497945px;}
.ls7_c01157{letter-spacing:-1.459380px;}
.ls30_c01157{letter-spacing:-1.459050px;}
.ls2a_c01157{letter-spacing:-0.914550px;}
.ls11_c01157{letter-spacing:-0.907695px;}
.ls9_c01157{letter-spacing:-0.874440px;}
.ls3b_c01157{letter-spacing:-0.781875px;}
.ls1d_c01157{letter-spacing:-0.771975px;}
.lsa_c01157{letter-spacing:0.000000px;}
.ls19_c01157{letter-spacing:0.686400px;}
.ls13_c01157{letter-spacing:0.705600px;}
.ls14_c01157{letter-spacing:0.705960px;}
.ls1_c01157{letter-spacing:0.771975px;}
.ls17_c01157{letter-spacing:1.385475px;}
.lsf_c01157{letter-spacing:1.411440px;}
.ls4_c01157{letter-spacing:1.543950px;}
.ls0_c01157{letter-spacing:2.116800px;}
.ls16_c01157{letter-spacing:2.203200px;}
.ls15_c01157{letter-spacing:2.296800px;}
.ls2_c01157{letter-spacing:2.315925px;}
.ls12_c01157{letter-spacing:2.646000px;}
.ls3_c01157{letter-spacing:3.082425px;}
.ls18_c01157{letter-spacing:3.513600px;}
.ls1b_c01157{letter-spacing:5.398350px;}
.ls5_c01157{letter-spacing:8.481323px;}
.lse_c01157{letter-spacing:20.095267px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01157{word-spacing:0.000000px;}
._8_c01157{margin-left:-9.482870px;}
._6_c01157{margin-left:-7.440217px;}
._b_c01157{margin-left:-5.644463px;}
._9_c01157{margin-left:-4.013375px;}
._14_c01157{margin-left:-2.830806px;}
._7_c01157{margin-left:-1.505764px;}
._2_c01157{width:1.478312px;}
._16_c01157{width:2.491757px;}
._11_c01157{width:3.640705px;}
._5_c01157{width:4.719003px;}
._a_c01157{width:6.723115px;}
._c_c01157{width:7.840354px;}
._4_c01157{width:9.286448px;}
._d_c01157{width:10.501281px;}
._3_c01157{width:12.663197px;}
._e_c01157{width:14.875575px;}
._15_c01157{width:16.258205px;}
._10_c01157{width:17.497853px;}
._f_c01157{width:19.035819px;}
._12_c01157{width:21.719711px;}
._13_c01157{width:23.214031px;}
._1_c01157{width:254.385600px;}
._0_c01157{width:260.736000px;}
.fc0_c01157{color:transparent;}
.fs8_c01157{font-size:10.500000px;}
.fs9_c01157{font-size:15.750000px;}
.fs12_c01157{font-size:17.250000px;}
.fse_c01157{font-size:21.750000px;}
.fs11_c01157{font-size:22.500000px;}
.fsc_c01157{font-size:24.000000px;}
.fsd_c01157{font-size:25.500000px;}
.fs5_c01157{font-size:28.500000px;}
.fsb_c01157{font-size:30.000000px;}
.fsf_c01157{font-size:31.500000px;}
.fs15_c01157{font-size:33.000000px;}
.fs10_c01157{font-size:34.500000px;}
.fs6_c01157{font-size:35.250000px;}
.fs13_c01157{font-size:36.000000px;}
.fs14_c01157{font-size:36.750000px;}
.fs7_c01157{font-size:46.500000px;}
.fs20_c01157{font-size:49.500000px;}
.fs1f_c01157{font-size:50.250000px;}
.fs4_c01157{font-size:51.000000px;}
.fs1b_c01157{font-size:51.750000px;}
.fs22_c01157{font-size:52.500000px;}
.fs21_c01157{font-size:53.250000px;}
.fs23_c01157{font-size:54.000000px;}
.fs16_c01157{font-size:54.750000px;}
.fs1d_c01157{font-size:55.500000px;}
.fs18_c01157{font-size:56.250000px;}
.fs1c_c01157{font-size:57.000000px;}
.fsa_c01157{font-size:57.750000px;}
.fs1e_c01157{font-size:58.500000px;}
.fs17_c01157{font-size:59.250000px;}
.fs1a_c01157{font-size:60.000000px;}
.fs19_c01157{font-size:60.750000px;}
.fs3_c01157{font-size:65.250000px;}
.fs1_c01157{font-size:78.000000px;}
.fs0_c01157{font-size:84.000000px;}
.fs2_c01157{font-size:93.750000px;}
.y0_c01157{bottom:0.000000px;}
.ya_c01157{bottom:45.421185px;}
.y8_c01157{bottom:53.341185px;}
.y9_c01157{bottom:55.860900px;}
.y6_c01157{bottom:60.541050px;}
.y5_c01157{bottom:62.340585px;}
.y7_c01157{bottom:64.140150px;}
.y4_c01157{bottom:81.781500px;}
.y3_c01157{bottom:107.341185px;}
.y2_c01157{bottom:110.220150px;}
.y26_c01157{bottom:531.421185px;}
.y25_c01157{bottom:546.180135px;}
.y24_c01157{bottom:546.180915px;}
.y23_c01157{bottom:561.300105px;}
.y22_c01157{bottom:561.300795px;}
.y21_c01157{bottom:576.420000px;}
.y20_c01157{bottom:590.821470px;}
.y1f_c01157{bottom:590.822115px;}
.y1e_c01157{bottom:605.941320px;}
.y1d_c01157{bottom:605.942145px;}
.y1c_c01157{bottom:621.061335px;}
.y1b_c01157{bottom:635.820420px;}
.y1a_c01157{bottom:650.581005px;}
.y19_c01157{bottom:650.581035px;}
.y17_c01157{bottom:665.521320px;}
.y18_c01157{bottom:666.060285px;}
.y16_c01157{bottom:680.100720px;}
.y15_c01157{bottom:680.100900px;}
.y13_c01157{bottom:694.861320px;}
.y14_c01157{bottom:694.861500px;}
.y12_c01157{bottom:709.620435px;}
.y11_c01157{bottom:724.741065px;}
.y10_c01157{bottom:739.860255px;}
.yf_c01157{bottom:754.621035px;}
.ye_c01157{bottom:769.741695px;}
.yd_c01157{bottom:784.860900px;}
.yc_c01157{bottom:784.861635px;}
.yb_c01157{bottom:799.980840px;}
.y1_c01157{bottom:848.580420px;}
.h9_c01157{height:10.305176px;}
.ha_c01157{height:16.426758px;}
.h13_c01157{height:17.991211px;}
.hf_c01157{height:22.684570px;}
.h12_c01157{height:23.466797px;}
.he_c01157{height:25.014404px;}
.hd_c01157{height:25.031250px;}
.h6_c01157{height:29.724609px;}
.hc_c01157{height:31.289062px;}
.h10_c01157{height:32.853516px;}
.h17_c01157{height:34.417969px;}
.h15_c01157{height:35.332031px;}
.h11_c01157{height:35.982422px;}
.h14_c01157{height:36.281250px;}
.h7_c01157{height:36.764648px;}
.h16_c01157{height:37.037109px;}
.h8_c01157{height:48.498047px;}
.h25_c01157{height:51.626953px;}
.h26_c01157{height:52.261963px;}
.h23_c01157{height:52.409180px;}
.h2c_c01157{height:52.998047px;}
.h5_c01157{height:53.191406px;}
.h28_c01157{height:53.666016px;}
.h18_c01157{height:53.734131px;}
.h1d_c01157{height:53.973633px;}
.h27_c01157{height:54.108398px;}
.h21_c01157{height:54.470215px;}
.h29_c01157{height:54.755859px;}
.h2b_c01157{height:55.177734px;}
.h1a_c01157{height:55.206299px;}
.h2a_c01157{height:55.933594px;}
.h1f_c01157{height:55.942383px;}
.h24_c01157{height:56.678467px;}
.h20_c01157{height:57.073242px;}
.h1e_c01157{height:57.445312px;}
.h22_c01157{height:57.814453px;}
.h19_c01157{height:58.150635px;}
.h1c_c01157{height:59.296875px;}
.h1b_c01157{height:60.038086px;}
.hb_c01157{height:60.231445px;}
.h4_c01157{height:68.053711px;}
.h2_c01157{height:81.351562px;}
.h1_c01157{height:84.656250px;}
.h3_c01157{height:92.651367px;}
.h0_c01157{height:892.500000px;}
.w0_c01157{width:1263.000000px;}
.x0_c01157{left:0.000000px;}
.x1_c01157{left:92.159850px;}
.xf_c01157{left:170.638500px;}
.x10_c01157{left:174.239250px;}
.x2_c01157{left:179.998950px;}
.x3_c01157{left:209.159385px;}
.x11_c01157{left:246.599100px;}
.xc_c01157{left:288.359850px;}
.x19_c01157{left:368.639700px;}
.x17_c01157{left:380.158785px;}
.x4_c01157{left:383.398635px;}
.x1a_c01157{left:395.998950px;}
.x12_c01157{left:402.839535px;}
.x7_c01157{left:429.478635px;}
.x1b_c01157{left:440.279250px;}
.x8_c01157{left:443.519070px;}
.xa_c01157{left:469.798920px;}
.x13_c01157{left:479.159415px;}
.x1c_c01157{left:480.599670px;}
.xb_c01157{left:521.638500px;}
.x1d_c01157{left:525.598530px;}
.x5_c01157{left:535.679070px;}
.x14_c01157{left:557.278800px;}
.x1e_c01157{left:576.719520px;}
.x15_c01157{left:633.239220px;}
.x6_c01157{left:673.198785px;}
.x9_c01157{left:675.359250px;}
.x16_c01157{left:710.999400px;}
.xd_c01157{left:753.839535px;}
.xe_c01157{left:781.198785px;}
.x18_c01157{left:863.279850px;}
.x25_c01157{left:934.558635px;}
.x22_c01157{left:935.639220px;}
.x4d_c01157{left:965.879520px;}
.x3e_c01157{left:966.958920px;}
.x1f_c01157{left:973.438665px;}
.x3a_c01157{left:978.479640px;}
.x2e_c01157{left:982.439670px;}
.x48_c01157{left:984.959385px;}
.x26_c01157{left:987.479190px;}
.x2f_c01157{left:988.919490px;}
.x49_c01157{left:993.958920px;}
.x2a_c01157{left:1001.878965px;}
.x36_c01157{left:1003.678530px;}
.x27_c01157{left:1010.519070px;}
.x45_c01157{left:1021.679070px;}
.x37_c01157{left:1026.359250px;}
.x2b_c01157{left:1033.559055px;}
.x30_c01157{left:1046.879520px;}
.x42_c01157{left:1051.198785px;}
.x31_c01157{left:1061.279205px;}
.x28_c01157{left:1068.838530px;}
.x20_c01157{left:1087.199805px;}
.x43_c01157{left:1096.199340px;}
.x29_c01157{left:1099.439205px;}
.x21_c01157{left:1101.958920px;}
.x3f_c01157{left:1107.359250px;}
.x38_c01157{left:1112.759490px;}
.x2c_c01157{left:1114.918305px;}
.x4e_c01157{left:1121.399775px;}
.x4a_c01157{left:1125.359805px;}
.x23_c01157{left:1128.599670px;}
.x2d_c01157{left:1130.399235px;}
.x40_c01157{left:1139.759490px;}
.x39_c01157{left:1141.559055px;}
.x3b_c01157{left:1151.278755px;}
.x4f_c01157{left:1153.439205px;}
.x32_c01157{left:1155.958920px;}
.x3c_c01157{left:1164.599025px;}
.x24_c01157{left:1167.479640px;}
.x33_c01157{left:1173.959385px;}
.x50_c01157{left:1186.918950px;}
.x46_c01157{left:1189.799565px;}
.x4b_c01157{left:1191.239775px;}
.x3d_c01157{left:1192.678530px;}
.x51_c01157{left:1196.279205px;}
.x34_c01157{left:1199.519070px;}
.x4c_c01157{left:1200.959385px;}
.x41_c01157{left:1204.199340px;}
.x47_c01157{left:1205.639655px;}
.x44_c01157{left:1209.599670px;}
.x35_c01157{left:1226.519070px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls34_c01157{letter-spacing:-11.045000pt;}
.ls22_c01157{letter-spacing:-10.490667pt;}
.ls26_c01157{letter-spacing:-10.097267pt;}
.lsd_c01157{letter-spacing:-9.539733pt;}
.lsc_c01157{letter-spacing:-9.243333pt;}
.ls2d_c01157{letter-spacing:-6.847200pt;}
.ls20_c01157{letter-spacing:-6.181867pt;}
.ls10_c01157{letter-spacing:-5.120213pt;}
.ls2f_c01157{letter-spacing:-5.037000pt;}
.ls23_c01157{letter-spacing:-4.798533pt;}
.ls1a_c01157{letter-spacing:-4.550400pt;}
.ls1e_c01157{letter-spacing:-4.152600pt;}
.ls2c_c01157{letter-spacing:-4.112333pt;}
.ls2b_c01157{letter-spacing:-3.947533pt;}
.ls29_c01157{letter-spacing:-3.895000pt;}
.ls31_c01157{letter-spacing:-3.887333pt;}
.ls6_c01157{letter-spacing:-3.867733pt;}
.ls37_c01157{letter-spacing:-3.650000pt;}
.ls2e_c01157{letter-spacing:-3.608000pt;}
.ls39_c01157{letter-spacing:-3.426133pt;}
.ls27_c01157{letter-spacing:-3.083333pt;}
.ls1c_c01157{letter-spacing:-3.010000pt;}
.ls8_c01157{letter-spacing:-2.825833pt;}
.ls38_c01157{letter-spacing:-2.825327pt;}
.ls1f_c01157{letter-spacing:-2.739933pt;}
.ls21_c01157{letter-spacing:-2.557600pt;}
.ls32_c01157{letter-spacing:-2.533333pt;}
.ls25_c01157{letter-spacing:-2.058600pt;}
.ls36_c01157{letter-spacing:-2.029400pt;}
.ls24_c01157{letter-spacing:-1.976000pt;}
.ls3d_c01157{letter-spacing:-1.950000pt;}
.ls28_c01157{letter-spacing:-1.814800pt;}
.ls3a_c01157{letter-spacing:-1.800480pt;}
.lsb_c01157{letter-spacing:-1.748000pt;}
.ls35_c01157{letter-spacing:-1.372400pt;}
.ls3c_c01157{letter-spacing:-1.350580pt;}
.ls33_c01157{letter-spacing:-1.331507pt;}
.ls7_c01157{letter-spacing:-1.297227pt;}
.ls30_c01157{letter-spacing:-1.296933pt;}
.ls2a_c01157{letter-spacing:-0.812933pt;}
.ls11_c01157{letter-spacing:-0.806840pt;}
.ls9_c01157{letter-spacing:-0.777280pt;}
.ls3b_c01157{letter-spacing:-0.695000pt;}
.ls1d_c01157{letter-spacing:-0.686200pt;}
.lsa_c01157{letter-spacing:0.000000pt;}
.ls19_c01157{letter-spacing:0.610133pt;}
.ls13_c01157{letter-spacing:0.627200pt;}
.ls14_c01157{letter-spacing:0.627520pt;}
.ls1_c01157{letter-spacing:0.686200pt;}
.ls17_c01157{letter-spacing:1.231533pt;}
.lsf_c01157{letter-spacing:1.254613pt;}
.ls4_c01157{letter-spacing:1.372400pt;}
.ls0_c01157{letter-spacing:1.881600pt;}
.ls16_c01157{letter-spacing:1.958400pt;}
.ls15_c01157{letter-spacing:2.041600pt;}
.ls2_c01157{letter-spacing:2.058600pt;}
.ls12_c01157{letter-spacing:2.352000pt;}
.ls3_c01157{letter-spacing:2.739933pt;}
.ls18_c01157{letter-spacing:3.123200pt;}
.ls1b_c01157{letter-spacing:4.798533pt;}
.ls5_c01157{letter-spacing:7.538953pt;}
.lse_c01157{letter-spacing:17.862460pt;}
.ws0_c01157{word-spacing:0.000000pt;}
._8_c01157{margin-left:-8.429217pt;}
._6_c01157{margin-left:-6.613526pt;}
._b_c01157{margin-left:-5.017300pt;}
._9_c01157{margin-left:-3.567445pt;}
._14_c01157{margin-left:-2.516272pt;}
._7_c01157{margin-left:-1.338457pt;}
._2_c01157{width:1.314055pt;}
._16_c01157{width:2.214895pt;}
._11_c01157{width:3.236183pt;}
._5_c01157{width:4.194669pt;}
._a_c01157{width:5.976102pt;}
._c_c01157{width:6.969204pt;}
._4_c01157{width:8.254621pt;}
._d_c01157{width:9.334472pt;}
._3_c01157{width:11.256175pt;}
._e_c01157{width:13.222733pt;}
._15_c01157{width:14.451738pt;}
._10_c01157{width:15.553647pt;}
._f_c01157{width:16.920728pt;}
._12_c01157{width:19.306409pt;}
._13_c01157{width:20.634694pt;}
._1_c01157{width:226.120533pt;}
._0_c01157{width:231.765333pt;}
.fs8_c01157{font-size:9.333333pt;}
.fs9_c01157{font-size:14.000000pt;}
.fs12_c01157{font-size:15.333333pt;}
.fse_c01157{font-size:19.333333pt;}
.fs11_c01157{font-size:20.000000pt;}
.fsc_c01157{font-size:21.333333pt;}
.fsd_c01157{font-size:22.666667pt;}
.fs5_c01157{font-size:25.333333pt;}
.fsb_c01157{font-size:26.666667pt;}
.fsf_c01157{font-size:28.000000pt;}
.fs15_c01157{font-size:29.333333pt;}
.fs10_c01157{font-size:30.666667pt;}
.fs6_c01157{font-size:31.333333pt;}
.fs13_c01157{font-size:32.000000pt;}
.fs14_c01157{font-size:32.666667pt;}
.fs7_c01157{font-size:41.333333pt;}
.fs20_c01157{font-size:44.000000pt;}
.fs1f_c01157{font-size:44.666667pt;}
.fs4_c01157{font-size:45.333333pt;}
.fs1b_c01157{font-size:46.000000pt;}
.fs22_c01157{font-size:46.666667pt;}
.fs21_c01157{font-size:47.333333pt;}
.fs23_c01157{font-size:48.000000pt;}
.fs16_c01157{font-size:48.666667pt;}
.fs1d_c01157{font-size:49.333333pt;}
.fs18_c01157{font-size:50.000000pt;}
.fs1c_c01157{font-size:50.666667pt;}
.fsa_c01157{font-size:51.333333pt;}
.fs1e_c01157{font-size:52.000000pt;}
.fs17_c01157{font-size:52.666667pt;}
.fs1a_c01157{font-size:53.333333pt;}
.fs19_c01157{font-size:54.000000pt;}
.fs3_c01157{font-size:58.000000pt;}
.fs1_c01157{font-size:69.333333pt;}
.fs0_c01157{font-size:74.666667pt;}
.fs2_c01157{font-size:83.333333pt;}
.y0_c01157{bottom:0.000000pt;}
.ya_c01157{bottom:40.374387pt;}
.y8_c01157{bottom:47.414387pt;}
.y9_c01157{bottom:49.654133pt;}
.y6_c01157{bottom:53.814267pt;}
.y5_c01157{bottom:55.413853pt;}
.y7_c01157{bottom:57.013467pt;}
.y4_c01157{bottom:72.694667pt;}
.y3_c01157{bottom:95.414387pt;}
.y2_c01157{bottom:97.973467pt;}
.y26_c01157{bottom:472.374387pt;}
.y25_c01157{bottom:485.493453pt;}
.y24_c01157{bottom:485.494147pt;}
.y23_c01157{bottom:498.933427pt;}
.y22_c01157{bottom:498.934040pt;}
.y21_c01157{bottom:512.373333pt;}
.y20_c01157{bottom:525.174640pt;}
.y1f_c01157{bottom:525.175213pt;}
.y1e_c01157{bottom:538.614507pt;}
.y1d_c01157{bottom:538.615240pt;}
.y1c_c01157{bottom:552.054520pt;}
.y1b_c01157{bottom:565.173707pt;}
.y1a_c01157{bottom:578.294227pt;}
.y19_c01157{bottom:578.294253pt;}
.y17_c01157{bottom:591.574507pt;}
.y18_c01157{bottom:592.053587pt;}
.y16_c01157{bottom:604.533973pt;}
.y15_c01157{bottom:604.534133pt;}
.y13_c01157{bottom:617.654507pt;}
.y14_c01157{bottom:617.654667pt;}
.y12_c01157{bottom:630.773720pt;}
.y11_c01157{bottom:644.214280pt;}
.y10_c01157{bottom:657.653560pt;}
.yf_c01157{bottom:670.774253pt;}
.ye_c01157{bottom:684.214840pt;}
.yd_c01157{bottom:697.654133pt;}
.yc_c01157{bottom:697.654787pt;}
.yb_c01157{bottom:711.094080pt;}
.y1_c01157{bottom:754.293707pt;}
.h9_c01157{height:9.160156pt;}
.ha_c01157{height:14.601562pt;}
.h13_c01157{height:15.992187pt;}
.hf_c01157{height:20.164062pt;}
.h12_c01157{height:20.859375pt;}
.he_c01157{height:22.235026pt;}
.hd_c01157{height:22.250000pt;}
.h6_c01157{height:26.421875pt;}
.hc_c01157{height:27.812500pt;}
.h10_c01157{height:29.203125pt;}
.h17_c01157{height:30.593750pt;}
.h15_c01157{height:31.406250pt;}
.h11_c01157{height:31.984375pt;}
.h14_c01157{height:32.250000pt;}
.h7_c01157{height:32.679688pt;}
.h16_c01157{height:32.921875pt;}
.h8_c01157{height:43.109375pt;}
.h25_c01157{height:45.890625pt;}
.h26_c01157{height:46.455078pt;}
.h23_c01157{height:46.585938pt;}
.h2c_c01157{height:47.109375pt;}
.h5_c01157{height:47.281250pt;}
.h28_c01157{height:47.703125pt;}
.h18_c01157{height:47.763672pt;}
.h1d_c01157{height:47.976562pt;}
.h27_c01157{height:48.096354pt;}
.h21_c01157{height:48.417969pt;}
.h29_c01157{height:48.671875pt;}
.h2b_c01157{height:49.046875pt;}
.h1a_c01157{height:49.072266pt;}
.h2a_c01157{height:49.718750pt;}
.h1f_c01157{height:49.726562pt;}
.h24_c01157{height:50.380859pt;}
.h20_c01157{height:50.731771pt;}
.h1e_c01157{height:51.062500pt;}
.h22_c01157{height:51.390625pt;}
.h19_c01157{height:51.689453pt;}
.h1c_c01157{height:52.708333pt;}
.h1b_c01157{height:53.367188pt;}
.hb_c01157{height:53.539062pt;}
.h4_c01157{height:60.492188pt;}
.h2_c01157{height:72.312500pt;}
.h1_c01157{height:75.250000pt;}
.h3_c01157{height:82.356771pt;}
.h0_c01157{height:793.333333pt;}
.w0_c01157{width:1122.666667pt;}
.x0_c01157{left:0.000000pt;}
.x1_c01157{left:81.919867pt;}
.xf_c01157{left:151.678667pt;}
.x10_c01157{left:154.879333pt;}
.x2_c01157{left:159.999067pt;}
.x3_c01157{left:185.919453pt;}
.x11_c01157{left:219.199200pt;}
.xc_c01157{left:256.319867pt;}
.x19_c01157{left:327.679733pt;}
.x17_c01157{left:337.918920pt;}
.x4_c01157{left:340.798787pt;}
.x1a_c01157{left:351.999067pt;}
.x12_c01157{left:358.079587pt;}
.x7_c01157{left:381.758787pt;}
.x1b_c01157{left:391.359333pt;}
.x8_c01157{left:394.239173pt;}
.xa_c01157{left:417.599040pt;}
.x13_c01157{left:425.919480pt;}
.x1c_c01157{left:427.199707pt;}
.xb_c01157{left:463.678667pt;}
.x1d_c01157{left:467.198693pt;}
.x5_c01157{left:476.159173pt;}
.x14_c01157{left:495.358933pt;}
.x1e_c01157{left:512.639573pt;}
.x15_c01157{left:562.879307pt;}
.x6_c01157{left:598.398920pt;}
.x9_c01157{left:600.319333pt;}
.x16_c01157{left:631.999467pt;}
.xd_c01157{left:670.079587pt;}
.xe_c01157{left:694.398920pt;}
.x18_c01157{left:767.359867pt;}
.x25_c01157{left:830.718787pt;}
.x22_c01157{left:831.679307pt;}
.x4d_c01157{left:858.559573pt;}
.x3e_c01157{left:859.519040pt;}
.x1f_c01157{left:865.278813pt;}
.x3a_c01157{left:869.759680pt;}
.x2e_c01157{left:873.279707pt;}
.x48_c01157{left:875.519453pt;}
.x26_c01157{left:877.759280pt;}
.x2f_c01157{left:879.039547pt;}
.x49_c01157{left:883.519040pt;}
.x2a_c01157{left:890.559080pt;}
.x36_c01157{left:892.158693pt;}
.x27_c01157{left:898.239173pt;}
.x45_c01157{left:908.159173pt;}
.x37_c01157{left:912.319333pt;}
.x2b_c01157{left:918.719160pt;}
.x30_c01157{left:930.559573pt;}
.x42_c01157{left:934.398920pt;}
.x31_c01157{left:943.359293pt;}
.x28_c01157{left:950.078693pt;}
.x20_c01157{left:966.399827pt;}
.x43_c01157{left:974.399413pt;}
.x29_c01157{left:977.279293pt;}
.x21_c01157{left:979.519040pt;}
.x3f_c01157{left:984.319333pt;}
.x38_c01157{left:989.119547pt;}
.x2c_c01157{left:991.038493pt;}
.x4e_c01157{left:996.799800pt;}
.x4a_c01157{left:1000.319827pt;}
.x23_c01157{left:1003.199707pt;}
.x2d_c01157{left:1004.799320pt;}
.x40_c01157{left:1013.119547pt;}
.x39_c01157{left:1014.719160pt;}
.x3b_c01157{left:1023.358893pt;}
.x4f_c01157{left:1025.279293pt;}
.x32_c01157{left:1027.519040pt;}
.x3c_c01157{left:1035.199133pt;}
.x24_c01157{left:1037.759680pt;}
.x33_c01157{left:1043.519453pt;}
.x50_c01157{left:1055.039067pt;}
.x46_c01157{left:1057.599613pt;}
.x4b_c01157{left:1058.879800pt;}
.x3d_c01157{left:1060.158693pt;}
.x51_c01157{left:1063.359293pt;}
.x34_c01157{left:1066.239173pt;}
.x4c_c01157{left:1067.519453pt;}
.x41_c01157{left:1070.399413pt;}
.x47_c01157{left:1071.679693pt;}
.x44_c01157{left:1075.199707pt;}
.x35_c01157{left:1090.239173pt;}
}





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

.ir_c01158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_18e8dc1c967d3479f7f7f0dc.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.284668;font-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_c01158{transform:matrix(0.206604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206604,0.000000,0.000000,0.250000,0,0);}
.m2_c01158{transform:matrix(0.219349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219349,0.000000,0.000000,0.250000,0,0);}
.m0_c01158{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.v0_c01158{vertical-align:0.000000px;}
.ls2_c01158{letter-spacing:6.831675px;}
.ls0_c01158{letter-spacing:8.748068px;}
.ls1_c01158{letter-spacing:17.253488px;}
.sc__c01158{text-shadow:none;}
.sc0_c01158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01158{-webkit-text-stroke:0px transparent;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01158{word-spacing:0.000000px;}
.fc0_c01158{color:transparent;}
.fs0_c01158{font-size:195.750000px;}
.fs1_c01158{font-size:198.750000px;}
.y0_c01158{bottom:0.000000px;}
.y1_c01158{bottom:404.339535px;}
.h1_c01158{height:192.117920px;}
.h2_c01158{height:195.062256px;}
.h0_c01158{height:892.500000px;}
.w0_c01158{width:1263.000000px;}
.x0_c01158{left:0.000000px;}
.x1_c01158{left:401.399235px;}
.x2_c01158{left:490.678530px;}
.x3_c01158{left:673.198785px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls2_c01158{letter-spacing:6.072600pt;}
.ls0_c01158{letter-spacing:7.776060pt;}
.ls1_c01158{letter-spacing:15.336433pt;}
.ws0_c01158{word-spacing:0.000000pt;}
.fs0_c01158{font-size:174.000000pt;}
.fs1_c01158{font-size:176.666667pt;}
.y0_c01158{bottom:0.000000pt;}
.y1_c01158{bottom:359.412920pt;}
.h1_c01158{height:170.771484pt;}
.h2_c01158{height:173.388672pt;}
.h0_c01158{height:793.333333pt;}
.w0_c01158{width:1122.666667pt;}
.x0_c01158{left:0.000000pt;}
.x1_c01158{left:356.799320pt;}
.x2_c01158{left:436.158693pt;}
.x3_c01158{left:598.398920pt;}
}





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

.ir_c01159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_a0ded9baaa08a12eb1ebdcd3.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01159;src:url('chunks/assets/font_018f98b3e9af70c7e22c40bd.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01159;src:url('chunks/assets/font_92948b3edee05e0cfea36be4.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01159;src:url('chunks/assets/font_e035b33f86780fe63f138534.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01159;src:url('chunks/assets/font_31bd422492eb807090f813be.woff2')format("woff");}.ff5_c01159{font-family:ff5_c01159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01159;src:url('chunks/assets/font_91ad894ce2e050ca198cdcba.woff2')format("woff");}.ff6_c01159{font-family:ff6_c01159;line-height:1.432129;font-style:normal;font-weight: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_c01159;src:url('chunks/assets/font_fce35db516d6ab5cc190090c.woff2')format("woff");}.ff7_c01159{font-family:ff7_c01159;line-height:1.284668;font-style:normal;font-weight: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_c01159;src:url('chunks/assets/font_711615da5ec3485bfad76dd9.woff2')format("woff");}.ff8_c01159{font-family:ff8_c01159;line-height:1.432129;font-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_c01159{transform:matrix(0.155844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155844,0.000000,0.000000,0.250000,0,0);}
.m1c_c01159{transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);}
.m3_c01159{transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);}
.m8_c01159{transform:matrix(0.204348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204348,0.000000,0.000000,0.250000,0,0);}
.m2_c01159{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m21_c01159{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m7_c01159{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m23_c01159{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4_c01159{transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219027,0.000000,0.000000,0.250000,0,0);}
.m2b_c01159{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m17_c01159{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m5_c01159{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.m22_c01159{transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231707,0.000000,0.000000,0.250000,0,0);}
.m6_c01159{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m18_c01159{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m2c_c01159{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1b_c01159{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m9_c01159{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m30_c01159{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m29_c01159{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.mc_c01159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01159{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m27_c01159{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m13_c01159{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m1e_c01159{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m11_c01159{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m12_c01159{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m2e_c01159{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m19_c01159{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m14_c01159{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m1_c01159{transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);}
.m2a_c01159{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m26_c01159{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m1d_c01159{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m15_c01159{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m2f_c01159{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m20_c01159{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m16_c01159{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.mb_c01159{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_c01159{transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277439,0.000000,0.000000,0.250000,0,0);}
.m1a_c01159{transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278481,0.000000,0.000000,0.250000,0,0);}
.me_c01159{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.mf_c01159{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m10_c01159{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m2d_c01159{transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292614,0.000000,0.000000,0.250000,0,0);}
.md_c01159{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01159{transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);}
.m25_c01159{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_c01159{transform:matrix(2.955128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.955128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.955128,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.v1_c01159{vertical-align:1.445280px;}
.v3_c01159{vertical-align:2.879700px;}
.v2_c01159{vertical-align:4.324980px;}
.v4_c01159{vertical-align:5.759400px;}
.ls6_c01159{letter-spacing:-22.991805px;}
.ls3d_c01159{letter-spacing:-10.896600px;}
.ls2a_c01159{letter-spacing:-10.134585px;}
.ls2f_c01159{letter-spacing:-9.367725px;}
.ls23_c01159{letter-spacing:-8.081700px;}
.ls26_c01159{letter-spacing:-6.802493px;}
.ls33_c01159{letter-spacing:-6.481853px;}
.ls32_c01159{letter-spacing:-6.067500px;}
.ls3b_c01159{letter-spacing:-5.943053px;}
.ls29_c01159{letter-spacing:-5.765175px;}
.ls9_c01159{letter-spacing:-5.135003px;}
.ls22_c01159{letter-spacing:-5.042475px;}
.ls2d_c01159{letter-spacing:-4.852350px;}
.ls34_c01159{letter-spacing:-4.729350px;}
.ls8_c01159{letter-spacing:-4.680600px;}
.ls24_c01159{letter-spacing:-4.620000px;}
.lsd_c01159{letter-spacing:-4.589363px;}
.lse_c01159{letter-spacing:-4.586993px;}
.ls21_c01159{letter-spacing:-4.319775px;}
.ls39_c01159{letter-spacing:-4.288950px;}
.lsf_c01159{letter-spacing:-4.124543px;}
.ls30_c01159{letter-spacing:-3.752123px;}
.ls37_c01159{letter-spacing:-3.699300px;}
.ls28_c01159{letter-spacing:-3.654998px;}
.ls1e_c01159{letter-spacing:-3.602550px;}
.ls35_c01159{letter-spacing:-3.563753px;}
.ls27_c01159{letter-spacing:-3.562500px;}
.ls5_c01159{letter-spacing:-3.116003px;}
.ls3e_c01159{letter-spacing:-3.040200px;}
.ls2b_c01159{letter-spacing:-2.879850px;}
.ls2c_c01159{letter-spacing:-2.808675px;}
.lsb_c01159{letter-spacing:-2.356808px;}
.ls38_c01159{letter-spacing:-2.279430px;}
.ls25_c01159{letter-spacing:-2.163173px;}
.lsc_c01159{letter-spacing:-1.740750px;}
.lsa_c01159{letter-spacing:-1.625400px;}
.ls3a_c01159{letter-spacing:-1.501875px;}
.ls2e_c01159{letter-spacing:-1.499670px;}
.ls36_c01159{letter-spacing:-1.479938px;}
.ls1f_c01159{letter-spacing:-1.440473px;}
.ls12_c01159{letter-spacing:-1.249763px;}
.ls7_c01159{letter-spacing:-0.882450px;}
.ls1d_c01159{letter-spacing:-0.782775px;}
.ls20_c01159{letter-spacing:-0.722700px;}
.ls14_c01159{letter-spacing:-0.647760px;}
.ls11_c01159{letter-spacing:0.000000px;}
.ls2_c01159{letter-spacing:0.722700px;}
.ls18_c01159{letter-spacing:0.734400px;}
.ls13_c01159{letter-spacing:1.323225px;}
.ls19_c01159{letter-spacing:1.438650px;}
.ls1_c01159{letter-spacing:1.440473px;}
.ls16_c01159{letter-spacing:1.453125px;}
.ls15_c01159{letter-spacing:1.454160px;}
.ls17_c01159{letter-spacing:1.501200px;}
.ls1b_c01159{letter-spacing:2.073053px;}
.ls0_c01159{letter-spacing:2.163173px;}
.ls3c_c01159{letter-spacing:2.320500px;}
.ls1c_c01159{letter-spacing:2.512440px;}
.ls10_c01159{letter-spacing:2.727000px;}
.ls3_c01159{letter-spacing:4.319775px;}
.ls1a_c01159{letter-spacing:7.050000px;}
.ls4_c01159{letter-spacing:7.205648px;}
.ls31_c01159{letter-spacing:14.572800px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01159{word-spacing:0.000000px;}
._5_c01159{margin-left:-16.134825px;}
._15_c01159{margin-left:-14.902114px;}
._6_c01159{margin-left:-7.433091px;}
._d_c01159{margin-left:-5.994664px;}
._4_c01159{margin-left:-4.878398px;}
._1_c01159{margin-left:-3.547915px;}
._13_c01159{margin-left:-2.343242px;}
._c_c01159{width:1.249971px;}
._3_c01159{width:2.432427px;}
._7_c01159{width:3.531144px;}
._12_c01159{width:4.803534px;}
._2_c01159{width:6.805194px;}
._17_c01159{width:8.727179px;}
._11_c01159{width:10.402615px;}
._e_c01159{width:12.001546px;}
._b_c01159{width:14.031906px;}
._9_c01159{width:15.215371px;}
._a_c01159{width:17.029181px;}
._19_c01159{width:18.790142px;}
._1c_c01159{width:20.279688px;}
._8_c01159{width:21.343250px;}
._f_c01159{width:22.890456px;}
._10_c01159{width:24.544137px;}
._1b_c01159{width:25.626227px;}
._1a_c01159{width:27.449777px;}
._16_c01159{width:33.949956px;}
._14_c01159{width:71.252053px;}
._0_c01159{width:80.685421px;}
._18_c01159{width:83.690850px;}
.fc0_c01159{color:transparent;}
.fsa_c01159{font-size:22.500000px;}
.fse_c01159{font-size:23.250000px;}
.fsd_c01159{font-size:24.000000px;}
.fsc_c01159{font-size:24.750000px;}
.fsb_c01159{font-size:26.250000px;}
.fsf_c01159{font-size:27.000000px;}
.fs9_c01159{font-size:29.250000px;}
.fs11_c01159{font-size:34.500000px;}
.fs12_c01159{font-size:35.250000px;}
.fs10_c01159{font-size:36.000000px;}
.fs13_c01159{font-size:36.750000px;}
.fs1b_c01159{font-size:37.500000px;}
.fs19_c01159{font-size:47.250000px;}
.fs1a_c01159{font-size:48.000000px;}
.fs1e_c01159{font-size:51.000000px;}
.fs20_c01159{font-size:54.000000px;}
.fs14_c01159{font-size:54.750000px;}
.fs1c_c01159{font-size:56.250000px;}
.fs17_c01159{font-size:57.000000px;}
.fs16_c01159{font-size:57.750000px;}
.fs15_c01159{font-size:59.250000px;}
.fs1d_c01159{font-size:60.750000px;}
.fs18_c01159{font-size:61.500000px;}
.fs1f_c01159{font-size:66.000000px;}
.fs8_c01159{font-size:81.750000px;}
.fs6_c01159{font-size:82.500000px;}
.fs2_c01159{font-size:83.250000px;}
.fs4_c01159{font-size:84.750000px;}
.fs1_c01159{font-size:85.500000px;}
.fs7_c01159{font-size:86.250000px;}
.fs3_c01159{font-size:87.000000px;}
.fs0_c01159{font-size:87.750000px;}
.fs5_c01159{font-size:96.750000px;}
.y0_c01159{bottom:0.000000px;}
.y4_c01159{bottom:42.181350px;}
.y3_c01159{bottom:50.460600px;}
.y2_c01159{bottom:58.021335px;}
.y36_c01159{bottom:182.220750px;}
.y37_c01159{bottom:183.300150px;}
.y35_c01159{bottom:212.101335px;}
.y33_c01159{bottom:227.220750px;}
.y34_c01159{bottom:227.221185px;}
.y32_c01159{bottom:243.061335px;}
.y30_c01159{bottom:257.820435px;}
.y31_c01159{bottom:258.540600px;}
.y2f_c01159{bottom:287.340135px;}
.y2e_c01159{bottom:302.460360px;}
.y2c_c01159{bottom:317.940720px;}
.y2d_c01159{bottom:317.940885px;}
.y2a_c01159{bottom:332.340585px;}
.y2b_c01159{bottom:333.419970px;}
.y29_c01159{bottom:362.581245px;}
.y28_c01159{bottom:377.700435px;}
.y27_c01159{bottom:377.700810px;}
.y26_c01159{bottom:393.181320px;}
.y25_c01159{bottom:393.181965px;}
.y23_c01159{bottom:407.220150px;}
.y24_c01159{bottom:408.301170px;}
.y22_c01159{bottom:437.820870px;}
.y21_c01159{bottom:452.580000px;}
.y20_c01159{bottom:452.580555px;}
.y1f_c01159{bottom:467.699760px;}
.y1e_c01159{bottom:481.740420px;}
.y1c_c01159{bottom:511.979640px;}
.y1d_c01159{bottom:511.980285px;}
.y1b_c01159{bottom:527.100315px;}
.y1a_c01159{bottom:541.860900px;}
.y19_c01159{bottom:541.861035px;}
.y18_c01159{bottom:556.620390px;}
.y17_c01159{bottom:586.861500px;}
.y16_c01159{bottom:586.862130px;}
.y15_c01159{bottom:601.981335px;}
.y14_c01159{bottom:601.982115px;}
.y12_c01159{bottom:616.381170px;}
.y13_c01159{bottom:617.101320px;}
.y11_c01159{bottom:646.260135px;}
.yf_c01159{bottom:661.020285px;}
.y10_c01159{bottom:661.020720px;}
.ye_c01159{bottom:676.140960px;}
.yc_c01159{bottom:690.901470px;}
.yd_c01159{bottom:692.340135px;}
.yb_c01159{bottom:720.780390px;}
.ya_c01159{bottom:735.901065px;}
.y9_c01159{bottom:751.020270px;}
.y8_c01159{bottom:765.780855px;}
.y7_c01159{bottom:780.539985px;}
.y6_c01159{bottom:780.540615px;}
.y5_c01159{bottom:795.659820px;}
.y1_c01159{bottom:845.520270px;}
.hb_c01159{height:23.466797px;}
.h10_c01159{height:24.249023px;}
.hf_c01159{height:25.031250px;}
.hc_c01159{height:25.750122px;}
.he_c01159{height:25.813477px;}
.hd_c01159{height:25.942383px;}
.h11_c01159{height:26.485840px;}
.ha_c01159{height:28.692993px;}
.h14_c01159{height:34.595947px;}
.h13_c01159{height:34.769531px;}
.h12_c01159{height:35.332031px;}
.h15_c01159{height:36.319336px;}
.h24_c01159{height:39.111328px;}
.h20_c01159{height:47.437500px;}
.h1e_c01159{height:49.280273px;}
.h29_c01159{height:53.191406px;}
.h1d_c01159{height:53.707397px;}
.h17_c01159{height:53.734131px;}
.h2c_c01159{height:54.421875px;}
.h16_c01159{height:55.179411px;}
.h26_c01159{height:55.206299px;}
.h1b_c01159{height:55.942383px;}
.h21_c01159{height:56.613831px;}
.h25_c01159{height:56.678467px;}
.h2b_c01159{height:56.689453px;}
.h22_c01159{height:57.073242px;}
.h27_c01159{height:57.445312px;}
.h1f_c01159{height:58.059111px;}
.h18_c01159{height:58.150635px;}
.h19_c01159{height:58.201172px;}
.h1a_c01159{height:58.555664px;}
.h23_c01159{height:59.493531px;}
.h28_c01159{height:60.038086px;}
.h1c_c01159{height:60.779297px;}
.h2a_c01159{height:65.226562px;}
.h9_c01159{height:82.388672px;}
.h7_c01159{height:83.144531px;}
.h3_c01159{height:83.900391px;}
.h2_c01159{height:84.498047px;}
.h5_c01159{height:85.412109px;}
.h8_c01159{height:86.923828px;}
.h4_c01159{height:87.679688px;}
.h1_c01159{height:88.435547px;}
.h6_c01159{height:95.616211px;}
.h0_c01159{height:892.500000px;}
.w0_c01159{width:1263.000000px;}
.x0_c01159{left:0.000000px;}
.x1_c01159{left:92.878350px;}
.xc_c01159{left:174.598500px;}
.x2_c01159{left:181.798515px;}
.x3_c01159{left:212.758500px;}
.xd_c01159{left:251.999400px;}
.x4_c01159{left:276.479685px;}
.x5_c01159{left:313.558635px;}
.xe_c01159{left:329.759535px;}
.x15_c01159{left:374.399235px;}
.x16_c01159{left:401.758530px;}
.xf_c01159{left:408.239820px;}
.x6_c01159{left:432.000000px;}
.x17_c01159{left:446.038920px;}
.x7_c01159{left:469.798920px;}
.x10_c01159{left:484.559685px;}
.x18_c01159{left:486.000000px;}
.x8_c01159{left:520.918350px;}
.x19_c01159{left:530.998950px;}
.x11_c01159{left:563.399235px;}
.x1a_c01159{left:582.838530px;}
.x9_c01159{left:626.759535px;}
.x12_c01159{left:640.439250px;}
.xa_c01159{left:674.639100px;}
.x13_c01159{left:716.038920px;}
.xb_c01159{left:780.119385px;}
.x14_c01159{left:793.798920px;}
.x1b_c01159{left:923.398590px;}
.x2a_c01159{left:924.479400px;}
.x33_c01159{left:925.559055px;}
.x3b_c01159{left:926.638965px;}
.x1f_c01159{left:950.398590px;}
.x1c_c01159{left:963.359730px;}
.x2d_c01159{left:964.798395px;}
.x34_c01159{left:965.879520px;}
.x3c_c01159{left:966.958920px;}
.x24_c01159{left:969.119385px;}
.x26_c01159{left:974.519715px;}
.x42_c01159{left:978.118740px;}
.x27_c01159{left:985.679715px;}
.x43_c01159{left:997.559685px;}
.x25_c01159{left:1012.318815px;}
.x30_c01159{left:1016.639655px;}
.x31_c01159{left:1018.079955px;}
.x2b_c01159{left:1027.438665px;}
.x32_c01159{left:1032.479640px;}
.x37_c01159{left:1043.278755px;}
.x20_c01159{left:1054.079400px;}
.x2c_c01159{left:1063.439670px;}
.x39_c01159{left:1066.679715px;}
.x38_c01159{left:1070.639655px;}
.x2e_c01159{left:1084.319190px;}
.x21_c01159{left:1108.079400px;}
.x2f_c01159{left:1113.479640px;}
.x3a_c01159{left:1117.078770px;}
.x28_c01159{left:1119.959385px;}
.x3d_c01159{left:1121.399775px;}
.x35_c01159{left:1123.199340px;}
.x40_c01159{left:1132.198785px;}
.x29_c01159{left:1134.000000px;}
.x36_c01159{left:1137.599025px;}
.x22_c01159{left:1141.559055px;}
.x41_c01159{left:1169.999355px;}
.x3e_c01159{left:1176.479190px;}
.x1d_c01159{left:1181.159370px;}
.x1e_c01159{left:1194.118740px;}
.x3f_c01159{left:1195.559055px;}
.x44_c01159{left:1202.399775px;}
.x23_c01159{left:1214.279850px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.v1_c01159{vertical-align:1.284693pt;}
.v3_c01159{vertical-align:2.559733pt;}
.v2_c01159{vertical-align:3.844427pt;}
.v4_c01159{vertical-align:5.119467pt;}
.ls6_c01159{letter-spacing:-20.437160pt;}
.ls3d_c01159{letter-spacing:-9.685867pt;}
.ls2a_c01159{letter-spacing:-9.008520pt;}
.ls2f_c01159{letter-spacing:-8.326867pt;}
.ls23_c01159{letter-spacing:-7.183733pt;}
.ls26_c01159{letter-spacing:-6.046660pt;}
.ls33_c01159{letter-spacing:-5.761647pt;}
.ls32_c01159{letter-spacing:-5.393333pt;}
.ls3b_c01159{letter-spacing:-5.282713pt;}
.ls29_c01159{letter-spacing:-5.124600pt;}
.ls9_c01159{letter-spacing:-4.564447pt;}
.ls22_c01159{letter-spacing:-4.482200pt;}
.ls2d_c01159{letter-spacing:-4.313200pt;}
.ls34_c01159{letter-spacing:-4.203867pt;}
.ls8_c01159{letter-spacing:-4.160533pt;}
.ls24_c01159{letter-spacing:-4.106667pt;}
.lsd_c01159{letter-spacing:-4.079433pt;}
.lse_c01159{letter-spacing:-4.077327pt;}
.ls21_c01159{letter-spacing:-3.839800pt;}
.ls39_c01159{letter-spacing:-3.812400pt;}
.lsf_c01159{letter-spacing:-3.666260pt;}
.ls30_c01159{letter-spacing:-3.335220pt;}
.ls37_c01159{letter-spacing:-3.288267pt;}
.ls28_c01159{letter-spacing:-3.248887pt;}
.ls1e_c01159{letter-spacing:-3.202267pt;}
.ls35_c01159{letter-spacing:-3.167780pt;}
.ls27_c01159{letter-spacing:-3.166667pt;}
.ls5_c01159{letter-spacing:-2.769780pt;}
.ls3e_c01159{letter-spacing:-2.702400pt;}
.ls2b_c01159{letter-spacing:-2.559867pt;}
.ls2c_c01159{letter-spacing:-2.496600pt;}
.lsb_c01159{letter-spacing:-2.094940pt;}
.ls38_c01159{letter-spacing:-2.026160pt;}
.ls25_c01159{letter-spacing:-1.922820pt;}
.lsc_c01159{letter-spacing:-1.547333pt;}
.lsa_c01159{letter-spacing:-1.444800pt;}
.ls3a_c01159{letter-spacing:-1.335000pt;}
.ls2e_c01159{letter-spacing:-1.333040pt;}
.ls36_c01159{letter-spacing:-1.315500pt;}
.ls1f_c01159{letter-spacing:-1.280420pt;}
.ls12_c01159{letter-spacing:-1.110900pt;}
.ls7_c01159{letter-spacing:-0.784400pt;}
.ls1d_c01159{letter-spacing:-0.695800pt;}
.ls20_c01159{letter-spacing:-0.642400pt;}
.ls14_c01159{letter-spacing:-0.575787pt;}
.ls11_c01159{letter-spacing:0.000000pt;}
.ls2_c01159{letter-spacing:0.642400pt;}
.ls18_c01159{letter-spacing:0.652800pt;}
.ls13_c01159{letter-spacing:1.176200pt;}
.ls19_c01159{letter-spacing:1.278800pt;}
.ls1_c01159{letter-spacing:1.280420pt;}
.ls16_c01159{letter-spacing:1.291667pt;}
.ls15_c01159{letter-spacing:1.292587pt;}
.ls17_c01159{letter-spacing:1.334400pt;}
.ls1b_c01159{letter-spacing:1.842713pt;}
.ls0_c01159{letter-spacing:1.922820pt;}
.ls3c_c01159{letter-spacing:2.062667pt;}
.ls1c_c01159{letter-spacing:2.233280pt;}
.ls10_c01159{letter-spacing:2.424000pt;}
.ls3_c01159{letter-spacing:3.839800pt;}
.ls1a_c01159{letter-spacing:6.266667pt;}
.ls4_c01159{letter-spacing:6.405020pt;}
.ls31_c01159{letter-spacing:12.953600pt;}
.ws0_c01159{word-spacing:0.000000pt;}
._5_c01159{margin-left:-14.342067pt;}
._15_c01159{margin-left:-13.246324pt;}
._6_c01159{margin-left:-6.607192pt;}
._d_c01159{margin-left:-5.328590pt;}
._4_c01159{margin-left:-4.336354pt;}
._1_c01159{margin-left:-3.153702pt;}
._13_c01159{margin-left:-2.082882pt;}
._c_c01159{width:1.111086pt;}
._3_c01159{width:2.162158pt;}
._7_c01159{width:3.138795pt;}
._12_c01159{width:4.269808pt;}
._2_c01159{width:6.049062pt;}
._17_c01159{width:7.757492pt;}
._11_c01159{width:9.246769pt;}
._e_c01159{width:10.668041pt;}
._b_c01159{width:12.472806pt;}
._9_c01159{width:13.524774pt;}
._a_c01159{width:15.137049pt;}
._19_c01159{width:16.702349pt;}
._1c_c01159{width:18.026389pt;}
._8_c01159{width:18.971778pt;}
._f_c01159{width:20.347072pt;}
._10_c01159{width:21.817011pt;}
._1b_c01159{width:22.778869pt;}
._1a_c01159{width:24.399802pt;}
._16_c01159{width:30.177739pt;}
._14_c01159{width:63.335159pt;}
._0_c01159{width:71.720374pt;}
._18_c01159{width:74.391867pt;}
.fsa_c01159{font-size:20.000000pt;}
.fse_c01159{font-size:20.666667pt;}
.fsd_c01159{font-size:21.333333pt;}
.fsc_c01159{font-size:22.000000pt;}
.fsb_c01159{font-size:23.333333pt;}
.fsf_c01159{font-size:24.000000pt;}
.fs9_c01159{font-size:26.000000pt;}
.fs11_c01159{font-size:30.666667pt;}
.fs12_c01159{font-size:31.333333pt;}
.fs10_c01159{font-size:32.000000pt;}
.fs13_c01159{font-size:32.666667pt;}
.fs1b_c01159{font-size:33.333333pt;}
.fs19_c01159{font-size:42.000000pt;}
.fs1a_c01159{font-size:42.666667pt;}
.fs1e_c01159{font-size:45.333333pt;}
.fs20_c01159{font-size:48.000000pt;}
.fs14_c01159{font-size:48.666667pt;}
.fs1c_c01159{font-size:50.000000pt;}
.fs17_c01159{font-size:50.666667pt;}
.fs16_c01159{font-size:51.333333pt;}
.fs15_c01159{font-size:52.666667pt;}
.fs1d_c01159{font-size:54.000000pt;}
.fs18_c01159{font-size:54.666667pt;}
.fs1f_c01159{font-size:58.666667pt;}
.fs8_c01159{font-size:72.666667pt;}
.fs6_c01159{font-size:73.333333pt;}
.fs2_c01159{font-size:74.000000pt;}
.fs4_c01159{font-size:75.333333pt;}
.fs1_c01159{font-size:76.000000pt;}
.fs7_c01159{font-size:76.666667pt;}
.fs3_c01159{font-size:77.333333pt;}
.fs0_c01159{font-size:78.000000pt;}
.fs5_c01159{font-size:86.000000pt;}
.y0_c01159{bottom:0.000000pt;}
.y4_c01159{bottom:37.494533pt;}
.y3_c01159{bottom:44.853867pt;}
.y2_c01159{bottom:51.574520pt;}
.y36_c01159{bottom:161.974000pt;}
.y37_c01159{bottom:162.933467pt;}
.y35_c01159{bottom:188.534520pt;}
.y33_c01159{bottom:201.974000pt;}
.y34_c01159{bottom:201.974387pt;}
.y32_c01159{bottom:216.054520pt;}
.y30_c01159{bottom:229.173720pt;}
.y31_c01159{bottom:229.813867pt;}
.y2f_c01159{bottom:255.413453pt;}
.y2e_c01159{bottom:268.853653pt;}
.y2c_c01159{bottom:282.613973pt;}
.y2d_c01159{bottom:282.614120pt;}
.y2a_c01159{bottom:295.413853pt;}
.y2b_c01159{bottom:296.373307pt;}
.y29_c01159{bottom:322.294440pt;}
.y28_c01159{bottom:335.733720pt;}
.y27_c01159{bottom:335.734053pt;}
.y26_c01159{bottom:349.494507pt;}
.y25_c01159{bottom:349.495080pt;}
.y23_c01159{bottom:361.973467pt;}
.y24_c01159{bottom:362.934373pt;}
.y22_c01159{bottom:389.174107pt;}
.y21_c01159{bottom:402.293333pt;}
.y20_c01159{bottom:402.293827pt;}
.y1f_c01159{bottom:415.733120pt;}
.y1e_c01159{bottom:428.213707pt;}
.y1c_c01159{bottom:455.093013pt;}
.y1d_c01159{bottom:455.093587pt;}
.y1b_c01159{bottom:468.533613pt;}
.y1a_c01159{bottom:481.654133pt;}
.y19_c01159{bottom:481.654253pt;}
.y18_c01159{bottom:494.773680pt;}
.y17_c01159{bottom:521.654667pt;}
.y16_c01159{bottom:521.655227pt;}
.y15_c01159{bottom:535.094520pt;}
.y14_c01159{bottom:535.095213pt;}
.y12_c01159{bottom:547.894373pt;}
.y13_c01159{bottom:548.534507pt;}
.y11_c01159{bottom:574.453453pt;}
.yf_c01159{bottom:587.573587pt;}
.y10_c01159{bottom:587.573973pt;}
.ye_c01159{bottom:601.014187pt;}
.yc_c01159{bottom:614.134640pt;}
.yd_c01159{bottom:615.413453pt;}
.yb_c01159{bottom:640.693680pt;}
.ya_c01159{bottom:654.134280pt;}
.y9_c01159{bottom:667.573573pt;}
.y8_c01159{bottom:680.694093pt;}
.y7_c01159{bottom:693.813320pt;}
.y6_c01159{bottom:693.813880pt;}
.y5_c01159{bottom:707.253173pt;}
.y1_c01159{bottom:751.573573pt;}
.hb_c01159{height:20.859375pt;}
.h10_c01159{height:21.554687pt;}
.hf_c01159{height:22.250000pt;}
.hc_c01159{height:22.888997pt;}
.he_c01159{height:22.945312pt;}
.hd_c01159{height:23.059896pt;}
.h11_c01159{height:23.542969pt;}
.ha_c01159{height:25.504883pt;}
.h14_c01159{height:30.751953pt;}
.h13_c01159{height:30.906250pt;}
.h12_c01159{height:31.406250pt;}
.h15_c01159{height:32.283854pt;}
.h24_c01159{height:34.765625pt;}
.h20_c01159{height:42.166667pt;}
.h1e_c01159{height:43.804688pt;}
.h29_c01159{height:47.281250pt;}
.h1d_c01159{height:47.739909pt;}
.h17_c01159{height:47.763672pt;}
.h2c_c01159{height:48.375000pt;}
.h16_c01159{height:49.048365pt;}
.h26_c01159{height:49.072266pt;}
.h1b_c01159{height:49.726562pt;}
.h21_c01159{height:50.323405pt;}
.h25_c01159{height:50.380859pt;}
.h2b_c01159{height:50.390625pt;}
.h22_c01159{height:50.731771pt;}
.h27_c01159{height:51.062500pt;}
.h1f_c01159{height:51.608099pt;}
.h18_c01159{height:51.689453pt;}
.h19_c01159{height:51.734375pt;}
.h1a_c01159{height:52.049479pt;}
.h23_c01159{height:52.883139pt;}
.h28_c01159{height:53.367188pt;}
.h1c_c01159{height:54.026042pt;}
.h2a_c01159{height:57.979167pt;}
.h9_c01159{height:73.234375pt;}
.h7_c01159{height:73.906250pt;}
.h3_c01159{height:74.578125pt;}
.h2_c01159{height:75.109375pt;}
.h5_c01159{height:75.921875pt;}
.h8_c01159{height:77.265625pt;}
.h4_c01159{height:77.937500pt;}
.h1_c01159{height:78.609375pt;}
.h6_c01159{height:84.992188pt;}
.h0_c01159{height:793.333333pt;}
.w0_c01159{width:1122.666667pt;}
.x0_c01159{left:0.000000pt;}
.x1_c01159{left:82.558533pt;}
.xc_c01159{left:155.198667pt;}
.x2_c01159{left:161.598680pt;}
.x3_c01159{left:189.118667pt;}
.xd_c01159{left:223.999467pt;}
.x4_c01159{left:245.759720pt;}
.x5_c01159{left:278.718787pt;}
.xe_c01159{left:293.119587pt;}
.x15_c01159{left:332.799320pt;}
.x16_c01159{left:357.118693pt;}
.xf_c01159{left:362.879840pt;}
.x6_c01159{left:384.000000pt;}
.x17_c01159{left:396.479040pt;}
.x7_c01159{left:417.599040pt;}
.x10_c01159{left:430.719720pt;}
.x18_c01159{left:432.000000pt;}
.x8_c01159{left:463.038533pt;}
.x19_c01159{left:471.999067pt;}
.x11_c01159{left:500.799320pt;}
.x1a_c01159{left:518.078693pt;}
.x9_c01159{left:557.119587pt;}
.x12_c01159{left:569.279333pt;}
.xa_c01159{left:599.679200pt;}
.x13_c01159{left:636.479040pt;}
.xb_c01159{left:693.439453pt;}
.x14_c01159{left:705.599040pt;}
.x1b_c01159{left:820.798747pt;}
.x2a_c01159{left:821.759467pt;}
.x33_c01159{left:822.719160pt;}
.x3b_c01159{left:823.679080pt;}
.x1f_c01159{left:844.798747pt;}
.x1c_c01159{left:856.319760pt;}
.x2d_c01159{left:857.598573pt;}
.x34_c01159{left:858.559573pt;}
.x3c_c01159{left:859.519040pt;}
.x24_c01159{left:861.439453pt;}
.x26_c01159{left:866.239747pt;}
.x42_c01159{left:869.438880pt;}
.x27_c01159{left:876.159747pt;}
.x43_c01159{left:886.719720pt;}
.x25_c01159{left:899.838947pt;}
.x30_c01159{left:903.679693pt;}
.x31_c01159{left:904.959960pt;}
.x2b_c01159{left:913.278813pt;}
.x32_c01159{left:917.759680pt;}
.x37_c01159{left:927.358893pt;}
.x20_c01159{left:936.959467pt;}
.x2c_c01159{left:945.279707pt;}
.x39_c01159{left:948.159747pt;}
.x38_c01159{left:951.679693pt;}
.x2e_c01159{left:963.839280pt;}
.x21_c01159{left:984.959467pt;}
.x2f_c01159{left:989.759680pt;}
.x3a_c01159{left:992.958907pt;}
.x28_c01159{left:995.519453pt;}
.x3d_c01159{left:996.799800pt;}
.x35_c01159{left:998.399413pt;}
.x40_c01159{left:1006.398920pt;}
.x29_c01159{left:1008.000000pt;}
.x36_c01159{left:1011.199133pt;}
.x22_c01159{left:1014.719160pt;}
.x41_c01159{left:1039.999427pt;}
.x3e_c01159{left:1045.759280pt;}
.x1d_c01159{left:1049.919440pt;}
.x1e_c01159{left:1061.438880pt;}
.x3f_c01159{left:1062.719160pt;}
.x44_c01159{left:1068.799800pt;}
.x23_c01159{left:1079.359867pt;}
}





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

.ir_c01160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_7837d487d55c4e0dc35b9d93.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01160;src:url('chunks/assets/font_35a3dc4cb7a51b9793a68955.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01160;src:url('chunks/assets/font_90f36875b8c23d22d683d377.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01160;src:url('chunks/assets/font_ce1fe9b010dff7449a4f5a13.woff2')format("woff");}.ff4_c01160{font-family:ff4_c01160;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01160;src:url('chunks/assets/font_1f7944db8aff657f6b4fd1f6.woff2')format("woff");}.ff5_c01160{font-family:ff5_c01160;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01160;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff6_c01160{font-family:ff6_c01160;line-height:1.284180;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_8de776a8b9216c84816c9ac7.woff2')format("woff");}.ff7_c01160{font-family:ff7_c01160;line-height:1.364746;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_399884c257e5da4e9aa498dd.woff2')format("woff");}.ff8_c01160{font-family:ff8_c01160;line-height:1.284668;font-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_c01160{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m3e_c01160{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m2c_c01160{transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);}
.m39_c01160{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.mb_c01160{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m30_c01160{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m1a_c01160{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m2_c01160{transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212719,0.000000,0.000000,0.250000,0,0);}
.m2b_c01160{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m3_c01160{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m19_c01160{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m27_c01160{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);}
.m33_c01160{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m34_c01160{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m3a_c01160{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m41_c01160{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m26_c01160{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m2f_c01160{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mc_c01160{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m21_c01160{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m10_c01160{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m14_c01160{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m2a_c01160{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m1e_c01160{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m28_c01160{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m32_c01160{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m36_c01160{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m5_c01160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01160{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m3d_c01160{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m35_c01160{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m24_c01160{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m40_c01160{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m2e_c01160{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m25_c01160{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m22_c01160{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m29_c01160{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m3c_c01160{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.md_c01160{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m12_c01160{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);}
.m1d_c01160{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m20_c01160{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m23_c01160{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m31_c01160{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m2d_c01160{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.m3f_c01160{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m17_c01160{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m1f_c01160{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m3b_c01160{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m16_c01160{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m18_c01160{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.mf_c01160{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m1c_c01160{transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273256,0.000000,0.000000,0.250000,0,0);}
.m37_c01160{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.me_c01160{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.m38_c01160{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.m15_c01160{transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);}
.m11_c01160{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m4_c01160{transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);}
.m0_c01160{transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);}
.m9_c01160{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m8_c01160{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);}
.ma_c01160{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);}
.m1b_c01160{transform:matrix(0.671875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671875,0.000000,0.000000,0.250000,0,0);}
.m7_c01160{transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013158,0.000000,0.000000,0.250000,0,0);}
.m13_c01160{transform:matrix(4.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.169118,0.000000,0.000000,0.250000,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls26_c01160{letter-spacing:-10.764600px;}
.ls16_c01160{letter-spacing:-7.708253px;}
.ls31_c01160{letter-spacing:-7.528125px;}
.ls2a_c01160{letter-spacing:-6.499350px;}
.ls6_c01160{letter-spacing:-5.652825px;}
.ls13_c01160{letter-spacing:-5.379000px;}
.ls27_c01160{letter-spacing:-4.935525px;}
.ls24_c01160{letter-spacing:-4.633283px;}
.ls35_c01160{letter-spacing:-4.440975px;}
.ls28_c01160{letter-spacing:-4.387500px;}
.ls32_c01160{letter-spacing:-3.984750px;}
.ls22_c01160{letter-spacing:-3.854400px;}
.ls1c_c01160{letter-spacing:-3.650625px;}
.ls1b_c01160{letter-spacing:-3.560063px;}
.ls25_c01160{letter-spacing:-3.523500px;}
.ls18_c01160{letter-spacing:-3.468750px;}
.lsa_c01160{letter-spacing:-3.300000px;}
.ls38_c01160{letter-spacing:-2.955750px;}
.ls9_c01160{letter-spacing:-2.590650px;}
.ls12_c01160{letter-spacing:-2.587500px;}
.ls29_c01160{letter-spacing:-2.439450px;}
.ls1a_c01160{letter-spacing:-2.315925px;}
.ls19_c01160{letter-spacing:-2.247750px;}
.ls2d_c01160{letter-spacing:-2.222438px;}
.ls20_c01160{letter-spacing:-2.193923px;}
.ls1d_c01160{letter-spacing:-2.136750px;}
.ls33_c01160{letter-spacing:-2.081625px;}
.ls14_c01160{letter-spacing:-1.953840px;}
.ls1e_c01160{letter-spacing:-1.543950px;}
.ls2c_c01160{letter-spacing:-1.520700px;}
.ls2e_c01160{letter-spacing:-1.518188px;}
.ls1f_c01160{letter-spacing:-1.481850px;}
.ls30_c01160{letter-spacing:-1.479938px;}
.ls34_c01160{letter-spacing:-1.457460px;}
.ls37_c01160{letter-spacing:-1.401600px;}
.lsd_c01160{letter-spacing:-1.262400px;}
.ls36_c01160{letter-spacing:-1.065600px;}
.ls17_c01160{letter-spacing:-0.771975px;}
.ls21_c01160{letter-spacing:-0.769500px;}
.ls39_c01160{letter-spacing:-0.750825px;}
.ls23_c01160{letter-spacing:-0.732600px;}
.ls2b_c01160{letter-spacing:-0.711750px;}
.ls8_c01160{letter-spacing:0.000000px;}
.ls15_c01160{letter-spacing:0.718875px;}
.ls1_c01160{letter-spacing:0.771975px;}
.lsb_c01160{letter-spacing:0.793800px;}
.ls10_c01160{letter-spacing:1.398600px;}
.lse_c01160{letter-spacing:1.543763px;}
.ls3_c01160{letter-spacing:1.543950px;}
.lsc_c01160{letter-spacing:1.546875px;}
.ls11_c01160{letter-spacing:2.070000px;}
.ls4_c01160{letter-spacing:2.315925px;}
.lsf_c01160{letter-spacing:2.763600px;}
.ls2_c01160{letter-spacing:3.082425px;}
.ls0_c01160{letter-spacing:3.854400px;}
.ls2f_c01160{letter-spacing:4.626375px;}
.ls7_c01160{letter-spacing:8.172600px;}
.ls5_c01160{letter-spacing:9.253298px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01160{word-spacing:0.000000px;}
._15_c01160{margin-left:-11.703923px;}
._12_c01160{margin-left:-6.903805px;}
._9_c01160{margin-left:-5.436475px;}
._e_c01160{margin-left:-3.624450px;}
._d_c01160{margin-left:-1.818024px;}
._5_c01160{width:2.239337px;}
._6_c01160{width:4.188267px;}
._c_c01160{width:5.212663px;}
._7_c01160{width:6.914632px;}
._8_c01160{width:8.185110px;}
._f_c01160{width:9.674171px;}
._a_c01160{width:10.753239px;}
._4_c01160{width:12.997743px;}
._11_c01160{width:14.454216px;}
._10_c01160{width:15.614947px;}
._b_c01160{width:17.158866px;}
._13_c01160{width:19.517835px;}
._1_c01160{width:21.155338px;}
._14_c01160{width:22.322099px;}
._2_c01160{width:23.717978px;}
._3_c01160{width:38.503231px;}
._0_c01160{width:229.929752px;}
.fc0_c01160{color:transparent;}
.fsf_c01160{font-size:23.250000px;}
.fsa_c01160{font-size:24.000000px;}
.fse_c01160{font-size:24.750000px;}
.fsd_c01160{font-size:25.500000px;}
.fs10_c01160{font-size:26.250000px;}
.fsc_c01160{font-size:27.000000px;}
.fs7_c01160{font-size:28.500000px;}
.fs6_c01160{font-size:30.000000px;}
.fs13_c01160{font-size:31.500000px;}
.fs9_c01160{font-size:32.250000px;}
.fs15_c01160{font-size:33.750000px;}
.fs11_c01160{font-size:34.500000px;}
.fs12_c01160{font-size:35.250000px;}
.fs14_c01160{font-size:41.250000px;}
.fs8_c01160{font-size:45.000000px;}
.fs1f_c01160{font-size:45.750000px;}
.fs1e_c01160{font-size:52.500000px;}
.fs1b_c01160{font-size:53.250000px;}
.fsb_c01160{font-size:54.000000px;}
.fs16_c01160{font-size:54.750000px;}
.fs17_c01160{font-size:55.500000px;}
.fs18_c01160{font-size:56.250000px;}
.fs1a_c01160{font-size:57.000000px;}
.fs5_c01160{font-size:57.750000px;}
.fs1d_c01160{font-size:58.500000px;}
.fs1c_c01160{font-size:59.250000px;}
.fs19_c01160{font-size:60.750000px;}
.fs1_c01160{font-size:79.500000px;}
.fs4_c01160{font-size:82.500000px;}
.fs3_c01160{font-size:84.000000px;}
.fs0_c01160{font-size:84.750000px;}
.fs2_c01160{font-size:85.500000px;}
.y0_c01160{bottom:0.000000px;}
.y9_c01160{bottom:42.540600px;}
.y8_c01160{bottom:49.020285px;}
.y6_c01160{bottom:51.541650px;}
.y7_c01160{bottom:55.860900px;}
.y3_c01160{bottom:58.380585px;}
.y5_c01160{bottom:58.741500px;}
.y4_c01160{bottom:63.780900px;}
.y2_c01160{bottom:69.540600px;}
.y2e_c01160{bottom:420.539985px;}
.y2f_c01160{bottom:420.540570px;}
.y2d_c01160{bottom:436.380570px;}
.y2c_c01160{bottom:436.381170px;}
.y2b_c01160{bottom:450.421830px;}
.y2a_c01160{bottom:465.541035px;}
.y29_c01160{bottom:465.541815px;}
.y28_c01160{bottom:480.661005px;}
.y27_c01160{bottom:495.419520px;}
.y26_c01160{bottom:510.541440px;}
.y25_c01160{bottom:525.300570px;}
.y24_c01160{bottom:525.300750px;}
.y23_c01160{bottom:540.061335px;}
.y22_c01160{bottom:540.062115px;}
.y20_c01160{bottom:555.181155px;}
.y21_c01160{bottom:555.181320px;}
.y1f_c01160{bottom:570.660420px;}
.y1e_c01160{bottom:585.060285px;}
.y1d_c01160{bottom:599.820870px;}
.y1c_c01160{bottom:614.940855px;}
.y1b_c01160{bottom:630.060750px;}
.y1a_c01160{bottom:630.061290px;}
.y19_c01160{bottom:644.460570px;}
.y18_c01160{bottom:659.221155px;}
.y17_c01160{bottom:659.221935px;}
.y16_c01160{bottom:674.341140px;}
.y15_c01160{bottom:689.100270px;}
.y14_c01160{bottom:704.220105px;}
.y13_c01160{bottom:704.220285px;}
.y11_c01160{bottom:718.980840px;}
.y12_c01160{bottom:718.980885px;}
.y10_c01160{bottom:734.101500px;}
.yf_c01160{bottom:749.220705px;}
.ye_c01160{bottom:749.220750px;}
.yd_c01160{bottom:763.981335px;}
.yc_c01160{bottom:778.740420px;}
.yb_c01160{bottom:778.741065px;}
.ya_c01160{bottom:793.860255px;}
.y1_c01160{bottom:847.860255px;}
.h10_c01160{height:24.249023px;}
.h11_c01160{height:25.014404px;}
.hb_c01160{height:25.031250px;}
.h12_c01160{height:25.750122px;}
.hf_c01160{height:25.813477px;}
.he_c01160{height:26.595703px;}
.hd_c01160{height:28.160156px;}
.h8_c01160{height:29.724609px;}
.h7_c01160{height:31.289062px;}
.h15_c01160{height:31.746094px;}
.ha_c01160{height:33.635742px;}
.h13_c01160{height:34.769531px;}
.h18_c01160{height:35.200195px;}
.h14_c01160{height:35.525391px;}
.h16_c01160{height:35.982422px;}
.h17_c01160{height:40.766602px;}
.h9_c01160{height:46.933594px;}
.h26_c01160{height:47.715820px;}
.h25_c01160{height:51.525879px;}
.h20_c01160{height:52.261963px;}
.h27_c01160{height:52.998047px;}
.h19_c01160{height:53.734131px;}
.h1a_c01160{height:54.470215px;}
.h28_c01160{height:54.849609px;}
.h1c_c01160{height:55.206299px;}
.h1f_c01160{height:55.942383px;}
.hc_c01160{height:56.320312px;}
.h1d_c01160{height:56.678467px;}
.h1b_c01160{height:56.689453px;}
.h21_c01160{height:57.073242px;}
.h23_c01160{height:57.414551px;}
.h24_c01160{height:57.814453px;}
.h22_c01160{height:58.150635px;}
.h1e_c01160{height:60.038086px;}
.h6_c01160{height:60.231445px;}
.h2_c01160{height:82.916016px;}
.h5_c01160{height:83.144531px;}
.h4_c01160{height:84.656250px;}
.h1_c01160{height:85.412109px;}
.h3_c01160{height:86.167969px;}
.h0_c01160{height:892.500000px;}
.w0_c01160{width:1263.000000px;}
.x0_c01160{left:0.000000px;}
.x1_c01160{left:85.319250px;}
.xc_c01160{left:157.679100px;}
.x2_c01160{left:172.439715px;}
.x3_c01160{left:201.959400px;}
.xd_c01160{left:234.359850px;}
.x4_c01160{left:252.719535px;}
.x8_c01160{left:255.239250px;}
.xe_c01160{left:311.759100px;}
.x15_c01160{left:335.159850px;}
.x5_c01160{left:344.518635px;}
.x16_c01160{left:362.878350px;}
.xf_c01160{left:388.798920px;}
.x17_c01160{left:407.519670px;}
.x6_c01160{left:446.399820px;}
.x9_c01160{left:447.838530px;}
.x18_c01160{left:448.919535px;}
.xa_c01160{left:452.518620px;}
.x7_c01160{left:464.398635px;}
.x10_c01160{left:467.279250px;}
.xb_c01160{left:470.159820px;}
.x19_c01160{left:492.479685px;}
.x1a_c01160{left:501.479235px;}
.x1b_c01160{left:516.958335px;}
.x1c_c01160{left:525.598530px;}
.x11_c01160{left:542.519670px;}
.x12_c01160{left:697.319820px;}
.x13_c01160{left:739.798920px;}
.x14_c01160{left:772.919490px;}
.x1e_c01160{left:927.000645px;}
.x4a_c01160{left:945.718500px;}
.x43_c01160{left:954.719520px;}
.x3a_c01160{left:958.679715px;}
.x33_c01160{left:959.759040px;}
.x1d_c01160{left:964.798560px;}
.x3d_c01160{left:969.478635px;}
.x37_c01160{left:981.719520px;}
.x45_c01160{left:983.519070px;}
.x4e_c01160{left:1000.799565px;}
.x2a_c01160{left:1002.239865px;}
.x1f_c01160{left:1012.679715px;}
.x2b_c01160{left:1021.319820px;}
.x20_c01160{left:1025.279850px;}
.x34_c01160{left:1026.718500px;}
.x2c_c01160{left:1032.479640px;}
.x35_c01160{left:1042.919490px;}
.x4b_c01160{left:1046.518620px;}
.x2f_c01160{left:1048.679070px;}
.x28_c01160{left:1052.639100px;}
.x49_c01160{left:1057.678530px;}
.x3f_c01160{left:1060.559055px;}
.x46_c01160{left:1065.598575px;}
.x4c_c01160{left:1068.479190px;}
.x44_c01160{left:1079.639100px;}
.x38_c01160{left:1082.519715px;}
.x30_c01160{left:1083.599025px;}
.x29_c01160{left:1092.598575px;}
.x36_c01160{left:1096.558590px;}
.x24_c01160{left:1101.238770px;}
.x31_c01160{left:1102.679070px;}
.x39_c01160{left:1103.758575px;}
.x4d_c01160{left:1108.799565px;}
.x2d_c01160{left:1110.239775px;}
.x3b_c01160{left:1112.759490px;}
.x40_c01160{left:1116.719520px;}
.x25_c01160{left:1120.318815px;}
.x4f_c01160{left:1130.399235px;}
.x32_c01160{left:1132.559685px;}
.x41_c01160{left:1134.718590px;}
.x21_c01160{left:1135.799565px;}
.x26_c01160{left:1141.918305px;}
.x47_c01160{left:1143.358605px;}
.x3c_c01160{left:1149.119940px;}
.x22_c01160{left:1153.079955px;}
.x2e_c01160{left:1154.879520px;}
.x48_c01160{left:1156.319820px;}
.x42_c01160{left:1169.279205px;}
.x27_c01160{left:1182.599670px;}
.x23_c01160{left:1195.918305px;}
.x3e_c01160{left:1219.319190px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls26_c01160{letter-spacing:-9.568533pt;}
.ls16_c01160{letter-spacing:-6.851780pt;}
.ls31_c01160{letter-spacing:-6.691667pt;}
.ls2a_c01160{letter-spacing:-5.777200pt;}
.ls6_c01160{letter-spacing:-5.024733pt;}
.ls13_c01160{letter-spacing:-4.781333pt;}
.ls27_c01160{letter-spacing:-4.387133pt;}
.ls24_c01160{letter-spacing:-4.118473pt;}
.ls35_c01160{letter-spacing:-3.947533pt;}
.ls28_c01160{letter-spacing:-3.900000pt;}
.ls32_c01160{letter-spacing:-3.542000pt;}
.ls22_c01160{letter-spacing:-3.426133pt;}
.ls1c_c01160{letter-spacing:-3.245000pt;}
.ls1b_c01160{letter-spacing:-3.164500pt;}
.ls25_c01160{letter-spacing:-3.132000pt;}
.ls18_c01160{letter-spacing:-3.083333pt;}
.lsa_c01160{letter-spacing:-2.933333pt;}
.ls38_c01160{letter-spacing:-2.627333pt;}
.ls9_c01160{letter-spacing:-2.302800pt;}
.ls12_c01160{letter-spacing:-2.300000pt;}
.ls29_c01160{letter-spacing:-2.168400pt;}
.ls1a_c01160{letter-spacing:-2.058600pt;}
.ls19_c01160{letter-spacing:-1.998000pt;}
.ls2d_c01160{letter-spacing:-1.975500pt;}
.ls20_c01160{letter-spacing:-1.950153pt;}
.ls1d_c01160{letter-spacing:-1.899333pt;}
.ls33_c01160{letter-spacing:-1.850333pt;}
.ls14_c01160{letter-spacing:-1.736747pt;}
.ls1e_c01160{letter-spacing:-1.372400pt;}
.ls2c_c01160{letter-spacing:-1.351733pt;}
.ls2e_c01160{letter-spacing:-1.349500pt;}
.ls1f_c01160{letter-spacing:-1.317200pt;}
.ls30_c01160{letter-spacing:-1.315500pt;}
.ls34_c01160{letter-spacing:-1.295520pt;}
.ls37_c01160{letter-spacing:-1.245867pt;}
.lsd_c01160{letter-spacing:-1.122133pt;}
.ls36_c01160{letter-spacing:-0.947200pt;}
.ls17_c01160{letter-spacing:-0.686200pt;}
.ls21_c01160{letter-spacing:-0.684000pt;}
.ls39_c01160{letter-spacing:-0.667400pt;}
.ls23_c01160{letter-spacing:-0.651200pt;}
.ls2b_c01160{letter-spacing:-0.632667pt;}
.ls8_c01160{letter-spacing:0.000000pt;}
.ls15_c01160{letter-spacing:0.639000pt;}
.ls1_c01160{letter-spacing:0.686200pt;}
.lsb_c01160{letter-spacing:0.705600pt;}
.ls10_c01160{letter-spacing:1.243200pt;}
.lse_c01160{letter-spacing:1.372233pt;}
.ls3_c01160{letter-spacing:1.372400pt;}
.lsc_c01160{letter-spacing:1.375000pt;}
.ls11_c01160{letter-spacing:1.840000pt;}
.ls4_c01160{letter-spacing:2.058600pt;}
.lsf_c01160{letter-spacing:2.456533pt;}
.ls2_c01160{letter-spacing:2.739933pt;}
.ls0_c01160{letter-spacing:3.426133pt;}
.ls2f_c01160{letter-spacing:4.112333pt;}
.ls7_c01160{letter-spacing:7.264533pt;}
.ls5_c01160{letter-spacing:8.225153pt;}
.ws0_c01160{word-spacing:0.000000pt;}
._15_c01160{margin-left:-10.403487pt;}
._12_c01160{margin-left:-6.136716pt;}
._9_c01160{margin-left:-4.832422pt;}
._e_c01160{margin-left:-3.221733pt;}
._d_c01160{margin-left:-1.616021pt;}
._5_c01160{width:1.990522pt;}
._6_c01160{width:3.722904pt;}
._c_c01160{width:4.633478pt;}
._7_c01160{width:6.146340pt;}
._8_c01160{width:7.275653pt;}
._f_c01160{width:8.599263pt;}
._a_c01160{width:9.558435pt;}
._4_c01160{width:11.553549pt;}
._11_c01160{width:12.848192pt;}
._10_c01160{width:13.879953pt;}
._b_c01160{width:15.252325pt;}
._13_c01160{width:17.349187pt;}
._1_c01160{width:18.804745pt;}
._14_c01160{width:19.841866pt;}
._2_c01160{width:21.082647pt;}
._3_c01160{width:34.225094pt;}
._0_c01160{width:204.382001pt;}
.fsf_c01160{font-size:20.666667pt;}
.fsa_c01160{font-size:21.333333pt;}
.fse_c01160{font-size:22.000000pt;}
.fsd_c01160{font-size:22.666667pt;}
.fs10_c01160{font-size:23.333333pt;}
.fsc_c01160{font-size:24.000000pt;}
.fs7_c01160{font-size:25.333333pt;}
.fs6_c01160{font-size:26.666667pt;}
.fs13_c01160{font-size:28.000000pt;}
.fs9_c01160{font-size:28.666667pt;}
.fs15_c01160{font-size:30.000000pt;}
.fs11_c01160{font-size:30.666667pt;}
.fs12_c01160{font-size:31.333333pt;}
.fs14_c01160{font-size:36.666667pt;}
.fs8_c01160{font-size:40.000000pt;}
.fs1f_c01160{font-size:40.666667pt;}
.fs1e_c01160{font-size:46.666667pt;}
.fs1b_c01160{font-size:47.333333pt;}
.fsb_c01160{font-size:48.000000pt;}
.fs16_c01160{font-size:48.666667pt;}
.fs17_c01160{font-size:49.333333pt;}
.fs18_c01160{font-size:50.000000pt;}
.fs1a_c01160{font-size:50.666667pt;}
.fs5_c01160{font-size:51.333333pt;}
.fs1d_c01160{font-size:52.000000pt;}
.fs1c_c01160{font-size:52.666667pt;}
.fs19_c01160{font-size:54.000000pt;}
.fs1_c01160{font-size:70.666667pt;}
.fs4_c01160{font-size:73.333333pt;}
.fs3_c01160{font-size:74.666667pt;}
.fs0_c01160{font-size:75.333333pt;}
.fs2_c01160{font-size:76.000000pt;}
.y0_c01160{bottom:0.000000pt;}
.y9_c01160{bottom:37.813867pt;}
.y8_c01160{bottom:43.573587pt;}
.y6_c01160{bottom:45.814800pt;}
.y7_c01160{bottom:49.654133pt;}
.y3_c01160{bottom:51.893853pt;}
.y5_c01160{bottom:52.214667pt;}
.y4_c01160{bottom:56.694133pt;}
.y2_c01160{bottom:61.813867pt;}
.y2e_c01160{bottom:373.813320pt;}
.y2f_c01160{bottom:373.813840pt;}
.y2d_c01160{bottom:387.893840pt;}
.y2c_c01160{bottom:387.894373pt;}
.y2b_c01160{bottom:400.374960pt;}
.y2a_c01160{bottom:413.814253pt;}
.y29_c01160{bottom:413.814947pt;}
.y28_c01160{bottom:427.254227pt;}
.y27_c01160{bottom:440.372907pt;}
.y26_c01160{bottom:453.814613pt;}
.y25_c01160{bottom:466.933840pt;}
.y24_c01160{bottom:466.934000pt;}
.y23_c01160{bottom:480.054520pt;}
.y22_c01160{bottom:480.055213pt;}
.y20_c01160{bottom:493.494360pt;}
.y21_c01160{bottom:493.494507pt;}
.y1f_c01160{bottom:507.253707pt;}
.y1e_c01160{bottom:520.053587pt;}
.y1d_c01160{bottom:533.174107pt;}
.y1c_c01160{bottom:546.614093pt;}
.y1b_c01160{bottom:560.054000pt;}
.y1a_c01160{bottom:560.054480pt;}
.y19_c01160{bottom:572.853840pt;}
.y18_c01160{bottom:585.974360pt;}
.y17_c01160{bottom:585.975053pt;}
.y16_c01160{bottom:599.414347pt;}
.y15_c01160{bottom:612.533573pt;}
.y14_c01160{bottom:625.973427pt;}
.y13_c01160{bottom:625.973587pt;}
.y11_c01160{bottom:639.094080pt;}
.y12_c01160{bottom:639.094120pt;}
.y10_c01160{bottom:652.534667pt;}
.yf_c01160{bottom:665.973960pt;}
.ye_c01160{bottom:665.974000pt;}
.yd_c01160{bottom:679.094520pt;}
.yc_c01160{bottom:692.213707pt;}
.yb_c01160{bottom:692.214280pt;}
.ya_c01160{bottom:705.653560pt;}
.y1_c01160{bottom:753.653560pt;}
.h10_c01160{height:21.554687pt;}
.h11_c01160{height:22.235026pt;}
.hb_c01160{height:22.250000pt;}
.h12_c01160{height:22.888997pt;}
.hf_c01160{height:22.945312pt;}
.he_c01160{height:23.640625pt;}
.hd_c01160{height:25.031250pt;}
.h8_c01160{height:26.421875pt;}
.h7_c01160{height:27.812500pt;}
.h15_c01160{height:28.218750pt;}
.ha_c01160{height:29.898438pt;}
.h13_c01160{height:30.906250pt;}
.h18_c01160{height:31.289062pt;}
.h14_c01160{height:31.578125pt;}
.h16_c01160{height:31.984375pt;}
.h17_c01160{height:36.236979pt;}
.h9_c01160{height:41.718750pt;}
.h26_c01160{height:42.414062pt;}
.h25_c01160{height:45.800781pt;}
.h20_c01160{height:46.455078pt;}
.h27_c01160{height:47.109375pt;}
.h19_c01160{height:47.763672pt;}
.h1a_c01160{height:48.417969pt;}
.h28_c01160{height:48.755208pt;}
.h1c_c01160{height:49.072266pt;}
.h1f_c01160{height:49.726562pt;}
.hc_c01160{height:50.062500pt;}
.h1d_c01160{height:50.380859pt;}
.h1b_c01160{height:50.390625pt;}
.h21_c01160{height:50.731771pt;}
.h23_c01160{height:51.035156pt;}
.h24_c01160{height:51.390625pt;}
.h22_c01160{height:51.689453pt;}
.h1e_c01160{height:53.367188pt;}
.h6_c01160{height:53.539062pt;}
.h2_c01160{height:73.703125pt;}
.h5_c01160{height:73.906250pt;}
.h4_c01160{height:75.250000pt;}
.h1_c01160{height:75.921875pt;}
.h3_c01160{height:76.593750pt;}
.h0_c01160{height:793.333333pt;}
.w0_c01160{width:1122.666667pt;}
.x0_c01160{left:0.000000pt;}
.x1_c01160{left:75.839333pt;}
.xc_c01160{left:140.159200pt;}
.x2_c01160{left:153.279747pt;}
.x3_c01160{left:179.519467pt;}
.xd_c01160{left:208.319867pt;}
.x4_c01160{left:224.639587pt;}
.x8_c01160{left:226.879333pt;}
.xe_c01160{left:277.119200pt;}
.x15_c01160{left:297.919867pt;}
.x5_c01160{left:306.238787pt;}
.x16_c01160{left:322.558533pt;}
.xf_c01160{left:345.599040pt;}
.x17_c01160{left:362.239707pt;}
.x6_c01160{left:396.799840pt;}
.x9_c01160{left:398.078693pt;}
.x18_c01160{left:399.039587pt;}
.xa_c01160{left:402.238773pt;}
.x7_c01160{left:412.798787pt;}
.x10_c01160{left:415.359333pt;}
.xb_c01160{left:417.919840pt;}
.x19_c01160{left:437.759720pt;}
.x1a_c01160{left:445.759320pt;}
.x1b_c01160{left:459.518520pt;}
.x1c_c01160{left:467.198693pt;}
.x11_c01160{left:482.239707pt;}
.x12_c01160{left:619.839840pt;}
.x13_c01160{left:657.599040pt;}
.x14_c01160{left:687.039547pt;}
.x1e_c01160{left:824.000573pt;}
.x4a_c01160{left:840.638667pt;}
.x43_c01160{left:848.639573pt;}
.x3a_c01160{left:852.159747pt;}
.x33_c01160{left:853.119147pt;}
.x1d_c01160{left:857.598720pt;}
.x3d_c01160{left:861.758787pt;}
.x37_c01160{left:872.639573pt;}
.x45_c01160{left:874.239173pt;}
.x4e_c01160{left:889.599613pt;}
.x2a_c01160{left:890.879880pt;}
.x1f_c01160{left:900.159747pt;}
.x2b_c01160{left:907.839840pt;}
.x20_c01160{left:911.359867pt;}
.x34_c01160{left:912.638667pt;}
.x2c_c01160{left:917.759680pt;}
.x35_c01160{left:927.039547pt;}
.x4b_c01160{left:930.238773pt;}
.x2f_c01160{left:932.159173pt;}
.x28_c01160{left:935.679200pt;}
.x49_c01160{left:940.158693pt;}
.x3f_c01160{left:942.719160pt;}
.x46_c01160{left:947.198733pt;}
.x4c_c01160{left:949.759280pt;}
.x44_c01160{left:959.679200pt;}
.x38_c01160{left:962.239747pt;}
.x30_c01160{left:963.199133pt;}
.x29_c01160{left:971.198733pt;}
.x36_c01160{left:974.718747pt;}
.x24_c01160{left:978.878907pt;}
.x31_c01160{left:980.159173pt;}
.x39_c01160{left:981.118733pt;}
.x4d_c01160{left:985.599613pt;}
.x2d_c01160{left:986.879800pt;}
.x3b_c01160{left:989.119547pt;}
.x40_c01160{left:992.639573pt;}
.x25_c01160{left:995.838947pt;}
.x4f_c01160{left:1004.799320pt;}
.x32_c01160{left:1006.719720pt;}
.x41_c01160{left:1008.638747pt;}
.x21_c01160{left:1009.599613pt;}
.x26_c01160{left:1015.038493pt;}
.x47_c01160{left:1016.318760pt;}
.x3c_c01160{left:1021.439947pt;}
.x22_c01160{left:1024.959960pt;}
.x2e_c01160{left:1026.559573pt;}
.x48_c01160{left:1027.839840pt;}
.x42_c01160{left:1039.359293pt;}
.x27_c01160{left:1051.199707pt;}
.x23_c01160{left:1063.038493pt;}
.x3e_c01160{left:1083.839280pt;}
}





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

.ir_c01161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_02ce2b4db002f9ecf73fa9cf.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01161;src:url('chunks/assets/font_c7a93ca21e896e7ef35d464c.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01161;src:url('chunks/assets/font_77575cb7d5134d292695859b.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01161;src:url('chunks/assets/font_b65b133856b6818ac9402fb1.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01161;src:url('chunks/assets/font_2660d3f4e8c0a9def294d156.woff2')format("woff");}.ff5_c01161{font-family:ff5_c01161;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01161;src:url('chunks/assets/font_d7f474e4c7a69ab8bcc32a98.woff2')format("woff");}.ff6_c01161{font-family:ff6_c01161;line-height:1.284668;font-style:normal;font-weight: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_c01161;src:url('chunks/assets/font_3cf47596b9bb04b4c313db12.woff2')format("woff");}.ff7_c01161{font-family:ff7_c01161;line-height:1.432129;font-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_c01161{transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117647,0.000000,0.000000,0.250000,0,0);}
.ma_c01161{transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171053,0.000000,0.000000,0.250000,0,0);}
.m41_c01161{transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197531,0.000000,0.000000,0.250000,0,0);}
.m32_c01161{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);}
.m3b_c01161{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m15_c01161{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m27_c01161{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m2_c01161{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m22_c01161{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m3d_c01161{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4_c01161{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m36_c01161{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m1a_c01161{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);}
.m40_c01161{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m3_c01161{transform:matrix(0.223577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223577,0.000000,0.000000,0.250000,0,0);}
.m34_c01161{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m14_c01161{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m24_c01161{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m30_c01161{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m37_c01161{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m1f_c01161{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m43_c01161{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m31_c01161{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m28_c01161{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m33_c01161{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m3a_c01161{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m18_c01161{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m1c_c01161{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m38_c01161{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m6_c01161{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_c01161{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m1e_c01161{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m44_c01161{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m25_c01161{transform:matrix(0.242621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242621,0.000000,0.000000,0.250000,0,0);}
.m3c_c01161{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m21_c01161{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m1d_c01161{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m35_c01161{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m17_c01161{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.me_c01161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23_c01161{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m3f_c01161{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m3e_c01161{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m29_c01161{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m1b_c01161{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m2e_c01161{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m19_c01161{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m12_c01161{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.md_c01161{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m20_c01161{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m45_c01161{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m9_c01161{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.mc_c01161{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m46_c01161{transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);}
.m42_c01161{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m39_c01161{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m26_c01161{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);}
.m2f_c01161{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m10_c01161{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m11_c01161{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m8_c01161{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m2d_c01161{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m2c_c01161{transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);}
.m2a_c01161{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.mb_c01161{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m16_c01161{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m0_c01161{transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);}
.m13_c01161{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m1_c01161{transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);}
.m5_c01161{transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);}
.mf_c01161{transform:matrix(22.802083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.802083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.802083,0.000000,0.000000,0.250000,0,0);}
.v0_c01161{vertical-align:0.000000px;}
.v1_c01161{vertical-align:2.874660px;}
.ls9_c01161{letter-spacing:-44.625000px;}
.ls35_c01161{letter-spacing:-13.202228px;}
.ls22_c01161{letter-spacing:-7.922325px;}
.ls3c_c01161{letter-spacing:-7.609200px;}
.ls26_c01161{letter-spacing:-7.205648px;}
.ls1f_c01161{letter-spacing:-6.959205px;}
.ls37_c01161{letter-spacing:-6.481853px;}
.ls43_c01161{letter-spacing:-6.181200px;}
.ls2a_c01161{letter-spacing:-5.765175px;}
.ls47_c01161{letter-spacing:-5.698350px;}
.ls34_c01161{letter-spacing:-5.042475px;}
.ls3e_c01161{letter-spacing:-4.994850px;}
.ls38_c01161{letter-spacing:-4.687725px;}
.ls41_c01161{letter-spacing:-4.674000px;}
.ls36_c01161{letter-spacing:-4.497300px;}
.ls1b_c01161{letter-spacing:-4.383300px;}
.ls2e_c01161{letter-spacing:-4.319775px;}
.ls2c_c01161{letter-spacing:-3.929250px;}
.ls4_c01161{letter-spacing:-3.870075px;}
.ls21_c01161{letter-spacing:-3.854400px;}
.ls39_c01161{letter-spacing:-3.801750px;}
.ls28_c01161{letter-spacing:-3.691200px;}
.ls25_c01161{letter-spacing:-3.653700px;}
.ls31_c01161{letter-spacing:-3.650625px;}
.ls1c_c01161{letter-spacing:-3.602550px;}
.ls4c_c01161{letter-spacing:-3.522750px;}
.ls32_c01161{letter-spacing:-3.468750px;}
.ls3d_c01161{letter-spacing:-3.451725px;}
.ls30_c01161{letter-spacing:-3.421875px;}
.ls29_c01161{letter-spacing:-3.386250px;}
.ls3a_c01161{letter-spacing:-3.241125px;}
.ls4a_c01161{letter-spacing:-3.089873px;}
.ls5_c01161{letter-spacing:-3.056228px;}
.ls16_c01161{letter-spacing:-3.040845px;}
.ls19_c01161{letter-spacing:-2.879850px;}
.lse_c01161{letter-spacing:-2.850285px;}
.ls20_c01161{letter-spacing:-2.847150px;}
.ls48_c01161{letter-spacing:-2.815230px;}
.ls24_c01161{letter-spacing:-2.778188px;}
.ls2f_c01161{letter-spacing:-2.252070px;}
.ls23_c01161{letter-spacing:-2.222438px;}
.ls45_c01161{letter-spacing:-2.217600px;}
.ls18_c01161{letter-spacing:-2.163173px;}
.lsf_c01161{letter-spacing:-2.137500px;}
.ls2d_c01161{letter-spacing:-2.050125px;}
.ls46_c01161{letter-spacing:-1.802385px;}
.ls33_c01161{letter-spacing:-1.670850px;}
.ls1e_c01161{letter-spacing:-1.541250px;}
.ls17_c01161{letter-spacing:-1.440473px;}
.ls4b_c01161{letter-spacing:-1.420740px;}
.ls40_c01161{letter-spacing:-1.404150px;}
.lsd_c01161{letter-spacing:-1.334400px;}
.ls8_c01161{letter-spacing:-0.874800px;}
.ls3b_c01161{letter-spacing:-0.837330px;}
.ls27_c01161{letter-spacing:-0.820800px;}
.ls2b_c01161{letter-spacing:-0.793125px;}
.ls42_c01161{letter-spacing:-0.742500px;}
.ls1a_c01161{letter-spacing:-0.722700px;}
.lsb_c01161{letter-spacing:-0.708900px;}
.lsa_c01161{letter-spacing:-0.688245px;}
.ls7_c01161{letter-spacing:0.000000px;}
.ls11_c01161{letter-spacing:0.691200px;}
.ls10_c01161{letter-spacing:0.694943px;}
.ls12_c01161{letter-spacing:0.719100px;}
.ls3_c01161{letter-spacing:0.722700px;}
.ls1d_c01161{letter-spacing:0.793125px;}
.ls6_c01161{letter-spacing:0.898290px;}
.ls2_c01161{letter-spacing:1.440473px;}
.ls1_c01161{letter-spacing:2.163173px;}
.ls0_c01161{letter-spacing:2.249100px;}
.ls14_c01161{letter-spacing:2.512440px;}
.ls13_c01161{letter-spacing:2.548125px;}
.ls15_c01161{letter-spacing:2.778300px;}
.ls44_c01161{letter-spacing:2.879850px;}
.lsc_c01161{letter-spacing:4.383015px;}
.ls3f_c01161{letter-spacing:5.765175px;}
.ls49_c01161{letter-spacing:14.906250px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01161{word-spacing:0.000000px;}
._18_c01161{margin-left:-35.559059px;}
._e_c01161{margin-left:-9.752762px;}
._b_c01161{margin-left:-3.859385px;}
._8_c01161{margin-left:-2.059522px;}
._9_c01161{width:1.661490px;}
._3_c01161{width:2.996813px;}
._4_c01161{width:4.591450px;}
._a_c01161{width:6.306854px;}
._2_c01161{width:7.938404px;}
._f_c01161{width:9.198663px;}
._1_c01161{width:10.682186px;}
._15_c01161{width:12.102372px;}
._5_c01161{width:13.862758px;}
._6_c01161{width:15.805922px;}
._7_c01161{width:17.838328px;}
._d_c01161{width:21.649735px;}
._c_c01161{width:23.446255px;}
._12_c01161{width:24.716513px;}
._11_c01161{width:25.737860px;}
._13_c01161{width:30.049537px;}
._14_c01161{width:43.402688px;}
._10_c01161{width:46.173038px;}
._17_c01161{width:55.105702px;}
._16_c01161{width:60.274044px;}
._0_c01161{width:260.206980px;}
.fc0_c01161{color:transparent;}
.fs9_c01161{font-size:18.000000px;}
.fs8_c01161{font-size:24.000000px;}
.fs6_c01161{font-size:25.500000px;}
.fs7_c01161{font-size:28.500000px;}
.fs5_c01161{font-size:30.000000px;}
.fse_c01161{font-size:31.500000px;}
.fsd_c01161{font-size:33.750000px;}
.fsc_c01161{font-size:35.250000px;}
.fsb_c01161{font-size:36.000000px;}
.fsa_c01161{font-size:36.750000px;}
.fs4_c01161{font-size:39.000000px;}
.fs21_c01161{font-size:39.750000px;}
.fs17_c01161{font-size:48.000000px;}
.fs18_c01161{font-size:48.750000px;}
.fs13_c01161{font-size:49.500000px;}
.fs1d_c01161{font-size:50.250000px;}
.fs1e_c01161{font-size:51.000000px;}
.fs1f_c01161{font-size:51.750000px;}
.fs1c_c01161{font-size:52.500000px;}
.fs19_c01161{font-size:53.250000px;}
.fs15_c01161{font-size:53.524200px;}
.fs16_c01161{font-size:54.000000px;}
.fs10_c01161{font-size:54.750000px;}
.fsf_c01161{font-size:55.500000px;}
.fs11_c01161{font-size:56.250000px;}
.fs12_c01161{font-size:57.000000px;}
.fs1b_c01161{font-size:57.750000px;}
.fs14_c01161{font-size:58.500000px;}
.fs1a_c01161{font-size:59.250000px;}
.fs20_c01161{font-size:60.750000px;}
.fs1_c01161{font-size:72.750000px;}
.fs2_c01161{font-size:81.000000px;}
.fs0_c01161{font-size:82.500000px;}
.fs3_c01161{font-size:92.250000px;}
.y0_c01161{bottom:0.000000px;}
.y6_c01161{bottom:38.941335px;}
.y4_c01161{bottom:47.940900px;}
.y5_c01161{bottom:54.061335px;}
.y3_c01161{bottom:54.420600px;}
.y2_c01161{bottom:62.340585px;}
.y39_c01161{bottom:133.260150px;}
.y38_c01161{bottom:148.380000px;}
.y37_c01161{bottom:163.499745px;}
.y36_c01161{bottom:178.621650px;}
.y35_c01161{bottom:193.741500px;}
.y33_c01161{bottom:208.500555px;}
.y34_c01161{bottom:208.500600px;}
.y32_c01161{bottom:238.020285px;}
.y31_c01161{bottom:238.020495px;}
.y30_c01161{bottom:253.501005px;}
.y2e_c01161{bottom:267.541620px;}
.y2f_c01161{bottom:268.260135px;}
.y2c_c01161{bottom:298.140720px;}
.y2d_c01161{bottom:298.140750px;}
.y2b_c01161{bottom:328.380585px;}
.y29_c01161{bottom:343.500600px;}
.y2a_c01161{bottom:344.220720px;}
.y28_c01161{bottom:373.381845px;}
.y27_c01161{bottom:388.501050px;}
.y26_c01161{bottom:403.260135px;}
.y24_c01161{bottom:417.661470px;}
.y25_c01161{bottom:418.379970px;}
.y22_c01161{bottom:448.260705px;}
.y23_c01161{bottom:448.260720px;}
.y21_c01161{bottom:477.780435px;}
.y20_c01161{bottom:477.780675px;}
.y1f_c01161{bottom:493.261185px;}
.y1e_c01161{bottom:507.840585px;}
.y1d_c01161{bottom:507.841020px;}
.y1b_c01161{bottom:537.541470px;}
.y1c_c01161{bottom:537.541620px;}
.y1a_c01161{bottom:553.020720px;}
.y19_c01161{bottom:567.600270px;}
.y18_c01161{bottom:597.301170px;}
.y17_c01161{bottom:597.301755px;}
.y16_c01161{bottom:641.940900px;}
.y15_c01161{bottom:656.701485px;}
.y14_c01161{bottom:656.702265px;}
.y13_c01161{bottom:671.821470px;}
.y12_c01161{bottom:671.822115px;}
.y11_c01161{bottom:686.941320px;}
.y10_c01161{bottom:701.700435px;}
.yf_c01161{bottom:701.700570px;}
.yd_c01161{bottom:716.461005px;}
.ye_c01161{bottom:716.461170px;}
.yc_c01161{bottom:731.940255px;}
.yb_c01161{bottom:731.941500px;}
.ya_c01161{bottom:746.340780px;}
.y9_c01161{bottom:761.459970px;}
.y8_c01161{bottom:776.220705px;}
.y7_c01161{bottom:790.981290px;}
.y1_c01161{bottom:842.820825px;}
.hb_c01161{height:18.773438px;}
.ha_c01161{height:25.031250px;}
.h8_c01161{height:25.201172px;}
.h7_c01161{height:26.595703px;}
.h9_c01161{height:28.166016px;}
.h6_c01161{height:31.289062px;}
.h10_c01161{height:32.853516px;}
.hf_c01161{height:33.123779px;}
.he_c01161{height:35.525391px;}
.hd_c01161{height:36.281250px;}
.hc_c01161{height:37.037109px;}
.h5_c01161{height:40.675781px;}
.h29_c01161{height:41.458008px;}
.h1a_c01161{height:50.062500px;}
.h1b_c01161{height:50.844727px;}
.h16_c01161{height:51.626953px;}
.h1c_c01161{height:52.261963px;}
.h21_c01161{height:52.409180px;}
.h18_c01161{height:52.531075px;}
.h2a_c01161{height:52.998047px;}
.h23_c01161{height:53.191406px;}
.h12_c01161{height:53.734131px;}
.h24_c01161{height:53.973633px;}
.h19_c01161{height:54.421875px;}
.h11_c01161{height:54.470215px;}
.h20_c01161{height:54.755859px;}
.h13_c01161{height:55.206299px;}
.h25_c01161{height:55.538086px;}
.h14_c01161{height:55.942383px;}
.h1d_c01161{height:56.608791px;}
.h26_c01161{height:56.678467px;}
.h15_c01161{height:56.689453px;}
.h1f_c01161{height:57.073242px;}
.h17_c01161{height:57.414551px;}
.h22_c01161{height:57.445312px;}
.h1e_c01161{height:58.150635px;}
.h27_c01161{height:58.957031px;}
.h28_c01161{height:60.038086px;}
.h2_c01161{height:75.875977px;}
.h3_c01161{height:81.632812px;}
.h1_c01161{height:83.144531px;}
.h4_c01161{height:91.168945px;}
.h0_c01161{height:892.500000px;}
.w0_c01161{width:1263.000000px;}
.x0_c01161{left:0.000000px;}
.x1_c01161{left:81.359250px;}
.x9_c01161{left:155.879565px;}
.x2_c01161{left:167.759565px;}
.x3_c01161{left:198.719535px;}
.xa_c01161{left:234.359850px;}
.x4_c01161{left:261.719100px;}
.x5_c01161{left:298.799535px;}
.xb_c01161{left:310.318800px;}
.x12_c01161{left:353.878950px;}
.x13_c01161{left:381.599100px;}
.xc_c01161{left:388.798920px;}
.x14_c01161{left:426.958920px;}
.x7_c01161{left:430.198785px;}
.x8_c01161{left:447.119985px;}
.xd_c01161{left:465.118785px;}
.x15_c01161{left:466.559100px;}
.x6_c01161{left:505.439250px;}
.x16_c01161{left:510.839535px;}
.x17_c01161{left:536.399235px;}
.xe_c01161{left:542.519670px;}
.x18_c01161{left:561.958920px;}
.xf_c01161{left:619.918950px;}
.x11_c01161{left:737.638545px;}
.x10_c01161{left:773.639655px;}
.x3a_c01161{left:934.199340px;}
.x1e_c01161{left:935.278245px;}
.x21_c01161{left:949.678530px;}
.x48_c01161{left:958.679715px;}
.x58_c01161{left:960.479190px;}
.x5c_c01161{left:962.278755px;}
.x37_c01161{left:969.478635px;}
.x3d_c01161{left:972.000000px;}
.x19_c01161{left:973.079400px;}
.x45_c01161{left:983.878320px;}
.x3b_c01161{left:989.278755px;}
.x4d_c01161{left:991.079955px;}
.x1a_c01161{left:992.159370px;}
.x50_c01161{left:993.958920px;}
.x38_c01161{left:997.918950px;}
.x3e_c01161{left:1001.158815px;}
.x22_c01161{left:1002.599025px;}
.x46_c01161{left:1004.759490px;}
.x51_c01161{left:1007.999355px;}
.x1b_c01161{left:1027.079400px;}
.x2a_c01161{left:1028.878965px;}
.x47_c01161{left:1030.678530px;}
.x3c_c01161{left:1034.999355px;}
.x2e_c01161{left:1036.798920px;}
.x2b_c01161{left:1038.598575px;}
.x52_c01161{left:1043.278755px;}
.x23_c01161{left:1044.359805px;}
.x42_c01161{left:1049.399235px;}
.x3f_c01161{left:1051.918950px;}
.x53_c01161{left:1054.438665px;}
.x60_c01161{left:1055.878965px;}
.x34_c01161{left:1061.638545px;}
.x54_c01161{left:1068.119940px;}
.x28_c01161{left:1069.199340px;}
.x24_c01161{left:1071.359805px;}
.x43_c01161{left:1073.159370px;}
.x61_c01161{left:1076.399235px;}
.x25_c01161{left:1083.239865px;}
.x59_c01161{left:1088.999355px;}
.x35_c01161{left:1092.598575px;}
.x2c_c01161{left:1097.998905px;}
.x1f_c01161{left:1101.599670px;}
.x5d_c01161{left:1102.679070px;}
.x29_c01161{left:1106.279850px;}
.x55_c01161{left:1108.799565px;}
.x5a_c01161{left:1112.398590px;}
.x4e_c01161{left:1115.638545px;}
.x20_c01161{left:1119.239220px;}
.x2d_c01161{left:1124.278755px;}
.x36_c01161{left:1125.719055px;}
.x26_c01161{left:1130.039985px;}
.x33_c01161{left:1131.119385px;}
.x5e_c01161{left:1143.358605px;}
.x44_c01161{left:1147.679625px;}
.x39_c01161{left:1155.958920px;}
.x27_c01161{left:1157.758575px;}
.x4a_c01161{left:1162.079400px;}
.x49_c01161{left:1164.239775px;}
.x2f_c01161{left:1165.319190px;}
.x30_c01161{left:1175.399775px;}
.x4f_c01161{left:1176.479190px;}
.x5f_c01161{left:1180.079955px;}
.x1c_c01161{left:1187.279850px;}
.x40_c01161{left:1189.438665px;}
.x4b_c01161{left:1192.678530px;}
.x57_c01161{left:1195.199805px;}
.x5b_c01161{left:1197.719520px;}
.x1d_c01161{left:1199.159820px;}
.x41_c01161{left:1201.318725px;}
.x4c_c01161{left:1205.998905px;}
.x31_c01161{left:1216.079400px;}
.x56_c01161{left:1220.759490px;}
.x32_c01161{left:1225.798920px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.v1_c01161{vertical-align:2.555253pt;}
.ls9_c01161{letter-spacing:-39.666667pt;}
.ls35_c01161{letter-spacing:-11.735313pt;}
.ls22_c01161{letter-spacing:-7.042067pt;}
.ls3c_c01161{letter-spacing:-6.763733pt;}
.ls26_c01161{letter-spacing:-6.405020pt;}
.ls1f_c01161{letter-spacing:-6.185960pt;}
.ls37_c01161{letter-spacing:-5.761647pt;}
.ls43_c01161{letter-spacing:-5.494400pt;}
.ls2a_c01161{letter-spacing:-5.124600pt;}
.ls47_c01161{letter-spacing:-5.065200pt;}
.ls34_c01161{letter-spacing:-4.482200pt;}
.ls3e_c01161{letter-spacing:-4.439867pt;}
.ls38_c01161{letter-spacing:-4.166867pt;}
.ls41_c01161{letter-spacing:-4.154667pt;}
.ls36_c01161{letter-spacing:-3.997600pt;}
.ls1b_c01161{letter-spacing:-3.896267pt;}
.ls2e_c01161{letter-spacing:-3.839800pt;}
.ls2c_c01161{letter-spacing:-3.492667pt;}
.ls4_c01161{letter-spacing:-3.440067pt;}
.ls21_c01161{letter-spacing:-3.426133pt;}
.ls39_c01161{letter-spacing:-3.379333pt;}
.ls28_c01161{letter-spacing:-3.281067pt;}
.ls25_c01161{letter-spacing:-3.247733pt;}
.ls31_c01161{letter-spacing:-3.245000pt;}
.ls1c_c01161{letter-spacing:-3.202267pt;}
.ls4c_c01161{letter-spacing:-3.131333pt;}
.ls32_c01161{letter-spacing:-3.083333pt;}
.ls3d_c01161{letter-spacing:-3.068200pt;}
.ls30_c01161{letter-spacing:-3.041667pt;}
.ls29_c01161{letter-spacing:-3.010000pt;}
.ls3a_c01161{letter-spacing:-2.881000pt;}
.ls4a_c01161{letter-spacing:-2.746553pt;}
.ls5_c01161{letter-spacing:-2.716647pt;}
.ls16_c01161{letter-spacing:-2.702973pt;}
.ls19_c01161{letter-spacing:-2.559867pt;}
.lse_c01161{letter-spacing:-2.533587pt;}
.ls20_c01161{letter-spacing:-2.530800pt;}
.ls48_c01161{letter-spacing:-2.502427pt;}
.ls24_c01161{letter-spacing:-2.469500pt;}
.ls2f_c01161{letter-spacing:-2.001840pt;}
.ls23_c01161{letter-spacing:-1.975500pt;}
.ls45_c01161{letter-spacing:-1.971200pt;}
.ls18_c01161{letter-spacing:-1.922820pt;}
.lsf_c01161{letter-spacing:-1.900000pt;}
.ls2d_c01161{letter-spacing:-1.822333pt;}
.ls46_c01161{letter-spacing:-1.602120pt;}
.ls33_c01161{letter-spacing:-1.485200pt;}
.ls1e_c01161{letter-spacing:-1.370000pt;}
.ls17_c01161{letter-spacing:-1.280420pt;}
.ls4b_c01161{letter-spacing:-1.262880pt;}
.ls40_c01161{letter-spacing:-1.248133pt;}
.lsd_c01161{letter-spacing:-1.186133pt;}
.ls8_c01161{letter-spacing:-0.777600pt;}
.ls3b_c01161{letter-spacing:-0.744293pt;}
.ls27_c01161{letter-spacing:-0.729600pt;}
.ls2b_c01161{letter-spacing:-0.705000pt;}
.ls42_c01161{letter-spacing:-0.660000pt;}
.ls1a_c01161{letter-spacing:-0.642400pt;}
.lsb_c01161{letter-spacing:-0.630133pt;}
.lsa_c01161{letter-spacing:-0.611773pt;}
.ls7_c01161{letter-spacing:0.000000pt;}
.ls11_c01161{letter-spacing:0.614400pt;}
.ls10_c01161{letter-spacing:0.617727pt;}
.ls12_c01161{letter-spacing:0.639200pt;}
.ls3_c01161{letter-spacing:0.642400pt;}
.ls1d_c01161{letter-spacing:0.705000pt;}
.ls6_c01161{letter-spacing:0.798480pt;}
.ls2_c01161{letter-spacing:1.280420pt;}
.ls1_c01161{letter-spacing:1.922820pt;}
.ls0_c01161{letter-spacing:1.999200pt;}
.ls14_c01161{letter-spacing:2.233280pt;}
.ls13_c01161{letter-spacing:2.265000pt;}
.ls15_c01161{letter-spacing:2.469600pt;}
.ls44_c01161{letter-spacing:2.559867pt;}
.lsc_c01161{letter-spacing:3.896013pt;}
.ls3f_c01161{letter-spacing:5.124600pt;}
.ls49_c01161{letter-spacing:13.250000pt;}
.ws0_c01161{word-spacing:0.000000pt;}
._18_c01161{margin-left:-31.608052pt;}
._e_c01161{margin-left:-8.669121pt;}
._b_c01161{margin-left:-3.430565pt;}
._8_c01161{margin-left:-1.830686pt;}
._9_c01161{width:1.476880pt;}
._3_c01161{width:2.663834pt;}
._4_c01161{width:4.081289pt;}
._a_c01161{width:5.606093pt;}
._2_c01161{width:7.056359pt;}
._f_c01161{width:8.176589pt;}
._1_c01161{width:9.495276pt;}
._15_c01161{width:10.757664pt;}
._5_c01161{width:12.322451pt;}
._6_c01161{width:14.049708pt;}
._7_c01161{width:15.856292pt;}
._d_c01161{width:19.244209pt;}
._c_c01161{width:20.841116pt;}
._12_c01161{width:21.970234pt;}
._11_c01161{width:22.878098pt;}
._13_c01161{width:26.710700pt;}
._14_c01161{width:38.580167pt;}
._10_c01161{width:41.042700pt;}
._17_c01161{width:48.982846pt;}
._16_c01161{width:53.576928pt;}
._0_c01161{width:231.295093pt;}
.fs9_c01161{font-size:16.000000pt;}
.fs8_c01161{font-size:21.333333pt;}
.fs6_c01161{font-size:22.666667pt;}
.fs7_c01161{font-size:25.333333pt;}
.fs5_c01161{font-size:26.666667pt;}
.fse_c01161{font-size:28.000000pt;}
.fsd_c01161{font-size:30.000000pt;}
.fsc_c01161{font-size:31.333333pt;}
.fsb_c01161{font-size:32.000000pt;}
.fsa_c01161{font-size:32.666667pt;}
.fs4_c01161{font-size:34.666667pt;}
.fs21_c01161{font-size:35.333333pt;}
.fs17_c01161{font-size:42.666667pt;}
.fs18_c01161{font-size:43.333333pt;}
.fs13_c01161{font-size:44.000000pt;}
.fs1d_c01161{font-size:44.666667pt;}
.fs1e_c01161{font-size:45.333333pt;}
.fs1f_c01161{font-size:46.000000pt;}
.fs1c_c01161{font-size:46.666667pt;}
.fs19_c01161{font-size:47.333333pt;}
.fs15_c01161{font-size:47.577067pt;}
.fs16_c01161{font-size:48.000000pt;}
.fs10_c01161{font-size:48.666667pt;}
.fsf_c01161{font-size:49.333333pt;}
.fs11_c01161{font-size:50.000000pt;}
.fs12_c01161{font-size:50.666667pt;}
.fs1b_c01161{font-size:51.333333pt;}
.fs14_c01161{font-size:52.000000pt;}
.fs1a_c01161{font-size:52.666667pt;}
.fs20_c01161{font-size:54.000000pt;}
.fs1_c01161{font-size:64.666667pt;}
.fs2_c01161{font-size:72.000000pt;}
.fs0_c01161{font-size:73.333333pt;}
.fs3_c01161{font-size:82.000000pt;}
.y0_c01161{bottom:0.000000pt;}
.y6_c01161{bottom:34.614520pt;}
.y4_c01161{bottom:42.614133pt;}
.y5_c01161{bottom:48.054520pt;}
.y3_c01161{bottom:48.373867pt;}
.y2_c01161{bottom:55.413853pt;}
.y39_c01161{bottom:118.453467pt;}
.y38_c01161{bottom:131.893333pt;}
.y37_c01161{bottom:145.333107pt;}
.y36_c01161{bottom:158.774800pt;}
.y35_c01161{bottom:172.214667pt;}
.y33_c01161{bottom:185.333827pt;}
.y34_c01161{bottom:185.333867pt;}
.y32_c01161{bottom:211.573587pt;}
.y31_c01161{bottom:211.573773pt;}
.y30_c01161{bottom:225.334227pt;}
.y2e_c01161{bottom:237.814773pt;}
.y2f_c01161{bottom:238.453453pt;}
.y2c_c01161{bottom:265.013973pt;}
.y2d_c01161{bottom:265.014000pt;}
.y2b_c01161{bottom:291.893853pt;}
.y29_c01161{bottom:305.333867pt;}
.y2a_c01161{bottom:305.973973pt;}
.y28_c01161{bottom:331.894973pt;}
.y27_c01161{bottom:345.334267pt;}
.y26_c01161{bottom:358.453453pt;}
.y24_c01161{bottom:371.254640pt;}
.y25_c01161{bottom:371.893307pt;}
.y22_c01161{bottom:398.453960pt;}
.y23_c01161{bottom:398.453973pt;}
.y21_c01161{bottom:424.693720pt;}
.y20_c01161{bottom:424.693933pt;}
.y1f_c01161{bottom:438.454387pt;}
.y1e_c01161{bottom:451.413853pt;}
.y1d_c01161{bottom:451.414240pt;}
.y1b_c01161{bottom:477.814640pt;}
.y1c_c01161{bottom:477.814773pt;}
.y1a_c01161{bottom:491.573973pt;}
.y19_c01161{bottom:504.533573pt;}
.y18_c01161{bottom:530.934373pt;}
.y17_c01161{bottom:530.934893pt;}
.y16_c01161{bottom:570.614133pt;}
.y15_c01161{bottom:583.734653pt;}
.y14_c01161{bottom:583.735347pt;}
.y13_c01161{bottom:597.174640pt;}
.y12_c01161{bottom:597.175213pt;}
.y11_c01161{bottom:610.614507pt;}
.y10_c01161{bottom:623.733720pt;}
.yf_c01161{bottom:623.733840pt;}
.yd_c01161{bottom:636.854227pt;}
.ye_c01161{bottom:636.854373pt;}
.yc_c01161{bottom:650.613560pt;}
.yb_c01161{bottom:650.614667pt;}
.ya_c01161{bottom:663.414027pt;}
.y9_c01161{bottom:676.853307pt;}
.y8_c01161{bottom:689.973960pt;}
.y7_c01161{bottom:703.094480pt;}
.y1_c01161{bottom:749.174067pt;}
.hb_c01161{height:16.687500pt;}
.ha_c01161{height:22.250000pt;}
.h8_c01161{height:22.401042pt;}
.h7_c01161{height:23.640625pt;}
.h9_c01161{height:25.036458pt;}
.h6_c01161{height:27.812500pt;}
.h10_c01161{height:29.203125pt;}
.hf_c01161{height:29.443359pt;}
.he_c01161{height:31.578125pt;}
.hd_c01161{height:32.250000pt;}
.hc_c01161{height:32.921875pt;}
.h5_c01161{height:36.156250pt;}
.h29_c01161{height:36.851562pt;}
.h1a_c01161{height:44.500000pt;}
.h1b_c01161{height:45.195312pt;}
.h16_c01161{height:45.890625pt;}
.h1c_c01161{height:46.455078pt;}
.h21_c01161{height:46.585938pt;}
.h18_c01161{height:46.694289pt;}
.h2a_c01161{height:47.109375pt;}
.h23_c01161{height:47.281250pt;}
.h12_c01161{height:47.763672pt;}
.h24_c01161{height:47.976562pt;}
.h19_c01161{height:48.375000pt;}
.h11_c01161{height:48.417969pt;}
.h20_c01161{height:48.671875pt;}
.h13_c01161{height:49.072266pt;}
.h25_c01161{height:49.367188pt;}
.h14_c01161{height:49.726562pt;}
.h1d_c01161{height:50.318925pt;}
.h26_c01161{height:50.380859pt;}
.h15_c01161{height:50.390625pt;}
.h1f_c01161{height:50.731771pt;}
.h17_c01161{height:51.035156pt;}
.h22_c01161{height:51.062500pt;}
.h1e_c01161{height:51.689453pt;}
.h27_c01161{height:52.406250pt;}
.h28_c01161{height:53.367188pt;}
.h2_c01161{height:67.445312pt;}
.h3_c01161{height:72.562500pt;}
.h1_c01161{height:73.906250pt;}
.h4_c01161{height:81.039063pt;}
.h0_c01161{height:793.333333pt;}
.w0_c01161{width:1122.666667pt;}
.x0_c01161{left:0.000000pt;}
.x1_c01161{left:72.319333pt;}
.x9_c01161{left:138.559613pt;}
.x2_c01161{left:149.119613pt;}
.x3_c01161{left:176.639587pt;}
.xa_c01161{left:208.319867pt;}
.x4_c01161{left:232.639200pt;}
.x5_c01161{left:265.599587pt;}
.xb_c01161{left:275.838933pt;}
.x12_c01161{left:314.559067pt;}
.x13_c01161{left:339.199200pt;}
.xc_c01161{left:345.599040pt;}
.x14_c01161{left:379.519040pt;}
.x7_c01161{left:382.398920pt;}
.x8_c01161{left:397.439987pt;}
.xd_c01161{left:413.438920pt;}
.x15_c01161{left:414.719200pt;}
.x6_c01161{left:449.279333pt;}
.x16_c01161{left:454.079587pt;}
.x17_c01161{left:476.799320pt;}
.xe_c01161{left:482.239707pt;}
.x18_c01161{left:499.519040pt;}
.xf_c01161{left:551.039067pt;}
.x11_c01161{left:655.678707pt;}
.x10_c01161{left:687.679693pt;}
.x3a_c01161{left:830.399413pt;}
.x1e_c01161{left:831.358440pt;}
.x21_c01161{left:844.158693pt;}
.x48_c01161{left:852.159747pt;}
.x58_c01161{left:853.759280pt;}
.x5c_c01161{left:855.358893pt;}
.x37_c01161{left:861.758787pt;}
.x3d_c01161{left:864.000000pt;}
.x19_c01161{left:864.959467pt;}
.x45_c01161{left:874.558507pt;}
.x3b_c01161{left:879.358893pt;}
.x4d_c01161{left:880.959960pt;}
.x1a_c01161{left:881.919440pt;}
.x50_c01161{left:883.519040pt;}
.x38_c01161{left:887.039067pt;}
.x3e_c01161{left:889.918947pt;}
.x22_c01161{left:891.199133pt;}
.x46_c01161{left:893.119547pt;}
.x51_c01161{left:895.999427pt;}
.x1b_c01161{left:912.959467pt;}
.x2a_c01161{left:914.559080pt;}
.x47_c01161{left:916.158693pt;}
.x3c_c01161{left:919.999427pt;}
.x2e_c01161{left:921.599040pt;}
.x2b_c01161{left:923.198733pt;}
.x52_c01161{left:927.358893pt;}
.x23_c01161{left:928.319827pt;}
.x42_c01161{left:932.799320pt;}
.x3f_c01161{left:935.039067pt;}
.x53_c01161{left:937.278813pt;}
.x60_c01161{left:938.559080pt;}
.x34_c01161{left:943.678707pt;}
.x54_c01161{left:949.439947pt;}
.x28_c01161{left:950.399413pt;}
.x24_c01161{left:952.319827pt;}
.x43_c01161{left:953.919440pt;}
.x61_c01161{left:956.799320pt;}
.x25_c01161{left:962.879880pt;}
.x59_c01161{left:967.999427pt;}
.x35_c01161{left:971.198733pt;}
.x2c_c01161{left:975.999027pt;}
.x1f_c01161{left:979.199707pt;}
.x5d_c01161{left:980.159173pt;}
.x29_c01161{left:983.359867pt;}
.x55_c01161{left:985.599613pt;}
.x5a_c01161{left:988.798747pt;}
.x4e_c01161{left:991.678707pt;}
.x20_c01161{left:994.879307pt;}
.x2d_c01161{left:999.358893pt;}
.x36_c01161{left:1000.639160pt;}
.x26_c01161{left:1004.479987pt;}
.x33_c01161{left:1005.439453pt;}
.x5e_c01161{left:1016.318760pt;}
.x44_c01161{left:1020.159667pt;}
.x39_c01161{left:1027.519040pt;}
.x27_c01161{left:1029.118733pt;}
.x4a_c01161{left:1032.959467pt;}
.x49_c01161{left:1034.879800pt;}
.x2f_c01161{left:1035.839280pt;}
.x30_c01161{left:1044.799800pt;}
.x4f_c01161{left:1045.759280pt;}
.x5f_c01161{left:1048.959960pt;}
.x1c_c01161{left:1055.359867pt;}
.x40_c01161{left:1057.278813pt;}
.x4b_c01161{left:1060.158693pt;}
.x57_c01161{left:1062.399827pt;}
.x5b_c01161{left:1064.639573pt;}
.x1d_c01161{left:1065.919840pt;}
.x41_c01161{left:1067.838867pt;}
.x4c_c01161{left:1071.999027pt;}
.x31_c01161{left:1080.959467pt;}
.x56_c01161{left:1085.119547pt;}
.x32_c01161{left:1089.599040pt;}
}





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

.ir_c01162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_f9942dde612e3bfa328ca819.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01162;src:url('chunks/assets/font_8ebea4e20c811dba49a15b4e.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01162;src:url('chunks/assets/font_443e0fcbe0b8ed02e84eb1c9.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_eb5143616ed0e7755062c960.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01162;src:url('chunks/assets/font_ab08012bc8d7c4e330807e4c.woff2')format("woff");}.ff5_c01162{font-family:ff5_c01162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01162;src:url('chunks/assets/font_f6d5bd58ad2462d7d13c2356.woff2')format("woff");}.ff6_c01162{font-family:ff6_c01162;line-height:1.281250;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_f2ef3ca683d15d31d28f6173.woff2')format("woff");}.ff7_c01162{font-family:ff7_c01162;line-height:1.284668;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_ec6855f3880428b4e05b3c2d.woff2')format("woff");}.ff8_c01162{font-family:ff8_c01162;line-height:1.284180;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_1adb84d4e8c8bc09b01d8760.woff2')format("woff");}.ff9_c01162{font-family:ff9_c01162;line-height:1.364746;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_e398f370ac1cba3d0bbb4e33.woff2')format("woff");}.ffa_c01162{font-family:ffa_c01162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01162;src:url('chunks/assets/font_0b806528b77f78b85810b42f.woff2')format("woff");}.ffb_c01162{font-family:ffb_c01162;line-height:1.284180;font-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_c01162{transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119048,0.000000,0.000000,0.250000,0,0);}
.m10_c01162{transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163265,0.000000,0.000000,0.250000,0,0);}
.ma_c01162{transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);}
.mb_c01162{transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180233,0.000000,0.000000,0.250000,0,0);}
.m55_c01162{transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);}
.m50_c01162{transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);}
.m26_c01162{transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193038,0.000000,0.000000,0.250000,0,0);}
.m51_c01162{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m56_c01162{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m9_c01162{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.md_c01162{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m33_c01162{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.m28_c01162{transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);}
.m43_c01162{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m1a_c01162{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m2e_c01162{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.m2_c01162{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m20_c01162{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.me_c01162{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m46_c01162{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.m3_c01162{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m54_c01162{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.m3e_c01162{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);}
.m3b_c01162{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m18_c01162{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m4a_c01162{transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);}
.m30_c01162{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.m47_c01162{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m6_c01162{transform:matrix(0.223577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223577,0.000000,0.000000,0.250000,0,0);}
.m2d_c01162{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m35_c01162{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m4_c01162{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m4b_c01162{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m52_c01162{transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);}
.m41_c01162{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m24_c01162{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m25_c01162{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m2a_c01162{transform:matrix(0.235191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235191,0.000000,0.000000,0.250000,0,0);}
.m29_c01162{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m3c_c01162{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m2f_c01162{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m3f_c01162{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m22_c01162{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m3a_c01162{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m12_c01162{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m15_c01162{transform:matrix(0.242187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242187,0.000000,0.000000,0.250000,0,0);}
.m23_c01162{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m48_c01162{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m4c_c01162{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m39_c01162{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m37_c01162{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m36_c01162{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m31_c01162{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m44_c01162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m45_c01162{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m38_c01162{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m16_c01162{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m4d_c01162{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);}
.m3d_c01162{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m49_c01162{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m4f_c01162{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m19_c01162{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m21_c01162{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1d_c01162{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m1e_c01162{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m2c_c01162{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m2b_c01162{transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);}
.m17_c01162{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m42_c01162{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m11_c01162{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m1c_c01162{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);}
.m4e_c01162{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m0_c01162{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m5_c01162{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m1f_c01162{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m7_c01162{transform:matrix(0.286697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286697,0.000000,0.000000,0.250000,0,0);}
.m1_c01162{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m53_c01162{transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);}
.mc_c01162{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.m34_c01162{transform:matrix(0.308594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308594,0.000000,0.000000,0.250000,0,0);}
.m13_c01162{transform:matrix(0.329268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329268,0.000000,0.000000,0.250000,0,0);}
.m8_c01162{transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);}
.m40_c01162{transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);}
.m32_c01162{transform:matrix(0.397727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397727,0.000000,0.000000,0.250000,0,0);}
.mf_c01162{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);}
.m27_c01162{transform:matrix(0.400735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400735,0.000000,0.000000,0.250000,0,0);}
.m1b_c01162{transform:matrix(1.970588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.970588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.970588,0.000000,0.000000,0.250000,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.ls2c_c01162{letter-spacing:-13.466933px;}
.ls14_c01162{letter-spacing:-11.743425px;}
.ls60_c01162{letter-spacing:-9.046470px;}
.ls16_c01162{letter-spacing:-8.951827px;}
.ls2b_c01162{letter-spacing:-8.420100px;}
.ls49_c01162{letter-spacing:-8.013915px;}
.ls18_c01162{letter-spacing:-6.832650px;}
.ls30_c01162{letter-spacing:-6.236573px;}
.ls2e_c01162{letter-spacing:-6.196328px;}
.ls1b_c01162{letter-spacing:-5.837400px;}
.lse_c01162{letter-spacing:-5.316773px;}
.ls4d_c01162{letter-spacing:-5.251455px;}
.ls36_c01162{letter-spacing:-4.862400px;}
.ls2a_c01162{letter-spacing:-4.858500px;}
.ls58_c01162{letter-spacing:-4.836000px;}
.ls45_c01162{letter-spacing:-4.730400px;}
.ls3e_c01162{letter-spacing:-4.685400px;}
.ls55_c01162{letter-spacing:-4.675650px;}
.ls3c_c01162{letter-spacing:-4.434458px;}
.ls40_c01162{letter-spacing:-4.323450px;}
.ls4e_c01162{letter-spacing:-4.310775px;}
.ls35_c01162{letter-spacing:-4.241655px;}
.ls21_c01162{letter-spacing:-4.187100px;}
.ls34_c01162{letter-spacing:-4.007250px;}
.ls39_c01162{letter-spacing:-3.854400px;}
.ls4c_c01162{letter-spacing:-3.853125px;}
.ls3a_c01162{letter-spacing:-3.796650px;}
.ls43_c01162{letter-spacing:-3.421530px;}
.ls5c_c01162{letter-spacing:-3.419400px;}
.ls33_c01162{letter-spacing:-3.166875px;}
.ls5e_c01162{letter-spacing:-3.082425px;}
.ls47_c01162{letter-spacing:-3.000000px;}
.ls4b_c01162{letter-spacing:-2.997225px;}
.ls57_c01162{letter-spacing:-2.933700px;}
.ls46_c01162{letter-spacing:-2.686200px;}
.lsf_c01162{letter-spacing:-2.615535px;}
.ls2f_c01162{letter-spacing:-2.404935px;}
.ls3f_c01162{letter-spacing:-2.385600px;}
.ls38_c01162{letter-spacing:-2.315925px;}
.ls3b_c01162{letter-spacing:-2.281703px;}
.ls48_c01162{letter-spacing:-2.222438px;}
.ls53_c01162{letter-spacing:-2.165625px;}
.ls56_c01162{letter-spacing:-2.138070px;}
.ls24_c01162{letter-spacing:-2.109375px;}
.ls12_c01162{letter-spacing:-1.668600px;}
.ls27_c01162{letter-spacing:-1.610055px;}
.ls29_c01162{letter-spacing:-1.602900px;}
.ls37_c01162{letter-spacing:-1.566540px;}
.ls1a_c01162{letter-spacing:-1.548000px;}
.ls26_c01162{letter-spacing:-1.543950px;}
.ls52_c01162{letter-spacing:-1.522050px;}
.ls5d_c01162{letter-spacing:-1.501500px;}
.ls54_c01162{letter-spacing:-1.443000px;}
.ls1d_c01162{letter-spacing:-1.054350px;}
.ls1e_c01162{letter-spacing:-0.848895px;}
.ls4f_c01162{letter-spacing:-0.847275px;}
.ls59_c01162{letter-spacing:-0.826500px;}
.ls28_c01162{letter-spacing:-0.801450px;}
.ls42_c01162{letter-spacing:-0.785400px;}
.ls25_c01162{letter-spacing:-0.783000px;}
.ls31_c01162{letter-spacing:-0.771975px;}
.ls22_c01162{letter-spacing:-0.696150px;}
.ls11_c01162{letter-spacing:0.000000px;}
.ls1c_c01162{letter-spacing:0.688050px;}
.ls3d_c01162{letter-spacing:0.760350px;}
.ls4_c01162{letter-spacing:0.771975px;}
.ls2d_c01162{letter-spacing:0.795090px;}
.ls0_c01162{letter-spacing:0.801450px;}
.ls50_c01162{letter-spacing:0.809400px;}
.ls32_c01162{letter-spacing:0.837330px;}
.ls4a_c01162{letter-spacing:0.838530px;}
.ls10_c01162{letter-spacing:0.882090px;}
.ls5f_c01162{letter-spacing:1.036875px;}
.ls17_c01162{letter-spacing:1.150275px;}
.ls15_c01162{letter-spacing:1.308818px;}
.ls13_c01162{letter-spacing:1.320300px;}
.ls6_c01162{letter-spacing:1.543950px;}
.ls7_c01162{letter-spacing:1.602900px;}
.ls44_c01162{letter-spacing:1.613475px;}
.ls23_c01162{letter-spacing:1.749668px;}
.ls5_c01162{letter-spacing:2.315925px;}
.ls9_c01162{letter-spacing:2.404935px;}
.ls5a_c01162{letter-spacing:2.422875px;}
.ls5b_c01162{letter-spacing:2.612325px;}
.ls1f_c01162{letter-spacing:2.731050px;}
.ls3_c01162{letter-spacing:3.082425px;}
.ls8_c01162{letter-spacing:3.205215px;}
.lsd_c01162{letter-spacing:3.854400px;}
.lsb_c01162{letter-spacing:4.808700px;}
.lsc_c01162{letter-spacing:7.213635px;}
.ls1_c01162{letter-spacing:8.815950px;}
.lsa_c01162{letter-spacing:9.617400px;}
.ls41_c01162{letter-spacing:11.092500px;}
.ls51_c01162{letter-spacing:19.234800px;}
.ls2_c01162{letter-spacing:29.302200px;}
.ls20_c01162{letter-spacing:218.932155px;}
.ls19_c01162{letter-spacing:371.700157px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01162{word-spacing:0.000000px;}
._7_c01162{margin-left:-61.145047px;}
._1_c01162{margin-left:-37.264724px;}
._1a_c01162{margin-left:-29.329994px;}
._11_c01162{margin-left:-22.529871px;}
._17_c01162{margin-left:-18.661052px;}
._10_c01162{margin-left:-15.675079px;}
._15_c01162{margin-left:-13.273442px;}
._6_c01162{margin-left:-12.099781px;}
._2_c01162{margin-left:-8.781251px;}
._c_c01162{margin-left:-6.617849px;}
._20_c01162{margin-left:-5.557356px;}
._a_c01162{margin-left:-4.018774px;}
._f_c01162{margin-left:-2.293747px;}
._e_c01162{margin-left:-1.122761px;}
._16_c01162{width:1.299183px;}
._9_c01162{width:2.923588px;}
._3_c01162{width:4.469272px;}
._0_c01162{width:6.466175px;}
._d_c01162{width:9.167287px;}
._13_c01162{width:10.383670px;}
._1e_c01162{width:12.362555px;}
._1d_c01162{width:14.098660px;}
._19_c01162{width:17.333726px;}
._b_c01162{width:18.491658px;}
._1c_c01162{width:21.214755px;}
._8_c01162{width:22.592508px;}
._1f_c01162{width:24.752614px;}
._4_c01162{width:26.032740px;}
._14_c01162{width:28.068508px;}
._5_c01162{width:30.571908px;}
._12_c01162{width:34.004839px;}
._18_c01162{width:38.425204px;}
._1b_c01162{width:186.617445px;}
.fc0_c01162{color:transparent;}
.fs10_c01162{font-size:15.750000px;}
.fsc_c01162{font-size:18.750000px;}
.fs12_c01162{font-size:19.500000px;}
.fs11_c01162{font-size:24.000000px;}
.fs6_c01162{font-size:24.750000px;}
.fsa_c01162{font-size:25.500000px;}
.fsb_c01162{font-size:27.000000px;}
.fsf_c01162{font-size:30.750000px;}
.fs9_c01162{font-size:32.250000px;}
.fs16_c01162{font-size:33.750000px;}
.fs8_c01162{font-size:34.500000px;}
.fsd_c01162{font-size:36.750000px;}
.fs13_c01162{font-size:37.500000px;}
.fs15_c01162{font-size:38.250000px;}
.fs14_c01162{font-size:39.000000px;}
.fse_c01162{font-size:45.000000px;}
.fs29_c01162{font-size:45.750000px;}
.fs22_c01162{font-size:47.590740px;}
.fs24_c01162{font-size:48.000000px;}
.fs23_c01162{font-size:49.500000px;}
.fs1e_c01162{font-size:50.250000px;}
.fs1c_c01162{font-size:51.000000px;}
.fs7_c01162{font-size:51.750000px;}
.fs26_c01162{font-size:53.250000px;}
.fs17_c01162{font-size:54.000000px;}
.fs18_c01162{font-size:54.750000px;}
.fs19_c01162{font-size:55.500000px;}
.fs20_c01162{font-size:56.250000px;}
.fs1d_c01162{font-size:56.792340px;}
.fs1f_c01162{font-size:57.000000px;}
.fs25_c01162{font-size:57.750000px;}
.fs1a_c01162{font-size:58.500000px;}
.fs1b_c01162{font-size:59.250000px;}
.fs28_c01162{font-size:60.000000px;}
.fs21_c01162{font-size:61.500000px;}
.fs27_c01162{font-size:63.000000px;}
.fs1_c01162{font-size:76.500000px;}
.fs2_c01162{font-size:81.000000px;}
.fs5_c01162{font-size:81.750000px;}
.fs0_c01162{font-size:87.750000px;}
.fs4_c01162{font-size:92.250000px;}
.fs3_c01162{font-size:93.000000px;}
.y0_c01162{bottom:0.000000px;}
.ya_c01162{bottom:33.180150px;}
.y8_c01162{bottom:42.540600px;}
.y7_c01162{bottom:45.780435px;}
.y9_c01162{bottom:47.581650px;}
.y46_c01162{bottom:97.621515px;}
.y47_c01162{bottom:97.621650px;}
.y45_c01162{bottom:112.021335px;}
.y43_c01162{bottom:127.141335px;}
.y44_c01162{bottom:127.500600px;}
.y42_c01162{bottom:155.581650px;}
.y41_c01162{bottom:172.501050px;}
.y40_c01162{bottom:187.621050px;}
.y3f_c01162{bottom:187.621695px;}
.y3e_c01162{bottom:202.740900px;}
.y3d_c01162{bottom:202.741680px;}
.y3c_c01162{bottom:217.860885px;}
.y3b_c01162{bottom:217.861035px;}
.y3a_c01162{bottom:232.621635px;}
.y39_c01162{bottom:262.500600px;}
.y38_c01162{bottom:277.620435px;}
.y37_c01162{bottom:277.621140px;}
.y36_c01162{bottom:292.740435px;}
.y35_c01162{bottom:292.740990px;}
.y34_c01162{bottom:307.860285px;}
.y33_c01162{bottom:322.621035px;}
.y32_c01162{bottom:352.861590px;}
.y31_c01162{bottom:367.980885px;}
.y30_c01162{bottom:367.980900px;}
.y2f_c01162{bottom:382.741500px;}
.y2e_c01162{bottom:382.741590px;}
.y2d_c01162{bottom:397.501140px;}
.y2c_c01162{bottom:412.620435px;}
.y2b_c01162{bottom:427.740420px;}
.y2a_c01162{bottom:457.621575px;}
.y29_c01162{bottom:472.740870px;}
.y28_c01162{bottom:472.741605px;}
.y26_c01162{bottom:487.860720px;}
.y27_c01162{bottom:487.860900px;}
.y24_c01162{bottom:502.621470px;}
.y25_c01162{bottom:502.621635px;}
.y6_c01162{bottom:506.220750px;}
.y22_c01162{bottom:517.380570px;}
.y23_c01162{bottom:518.100720px;}
.y21_c01162{bottom:547.261185px;}
.y1f_c01162{bottom:562.380975px;}
.y20_c01162{bottom:562.381170px;}
.y1e_c01162{bottom:577.140105px;}
.y1d_c01162{bottom:577.140525px;}
.y5_c01162{bottom:582.181320px;}
.y1c_c01162{bottom:592.262415px;}
.y1a_c01162{bottom:607.020720px;}
.y1b_c01162{bottom:607.381620px;}
.y18_c01162{bottom:636.540255px;}
.y19_c01162{bottom:636.540570px;}
.y17_c01162{bottom:651.301170px;}
.y4_c01162{bottom:657.421650px;}
.y16_c01162{bottom:666.060285px;}
.y15_c01162{bottom:666.060840px;}
.y14_c01162{bottom:681.180135px;}
.y13_c01162{bottom:695.940855px;}
.y12_c01162{bottom:695.941125px;}
.y10_c01162{bottom:710.701485px;}
.y11_c01162{bottom:711.421650px;}
.y3_c01162{bottom:733.380570px;}
.ye_c01162{bottom:741.300435px;}
.yf_c01162{bottom:741.300570px;}
.yd_c01162{bottom:756.061335px;}
.yc_c01162{bottom:770.820630px;}
.yb_c01162{bottom:786.301215px;}
.y2_c01162{bottom:811.320465px;}
.y1_c01162{bottom:840.301215px;}
.h11_c01162{height:15.450073px;}
.hd_c01162{height:19.555664px;}
.h14_c01162{height:19.652344px;}
.h15_c01162{height:25.014404px;}
.h12_c01162{height:25.031250px;}
.h7_c01162{height:25.813477px;}
.hb_c01162{height:26.595703px;}
.hc_c01162{height:27.210938px;}
.h13_c01162{height:28.160156px;}
.h10_c01162{height:30.389648px;}
.ha_c01162{height:33.635742px;}
.h1a_c01162{height:35.200195px;}
.h9_c01162{height:35.982422px;}
.h19_c01162{height:37.037109px;}
.h16_c01162{height:37.792969px;}
.he_c01162{height:38.329102px;}
.h18_c01162{height:38.548828px;}
.h17_c01162{height:39.304688px;}
.h3c_c01162{height:44.878784px;}
.hf_c01162{height:46.933594px;}
.h39_c01162{height:48.919922px;}
.h28_c01162{height:49.635655px;}
.h2b_c01162{height:50.062500px;}
.h29_c01162{height:51.626953px;}
.h35_c01162{height:52.235962px;}
.h22_c01162{height:52.409180px;}
.h3a_c01162{height:52.971680px;}
.h1b_c01162{height:52.998047px;}
.h20_c01162{height:53.191406px;}
.h32_c01162{height:53.666016px;}
.h23_c01162{height:53.707397px;}
.h1c_c01162{height:53.734131px;}
.h8_c01162{height:53.973633px;}
.h2c_c01162{height:54.421875px;}
.h2a_c01162{height:54.443115px;}
.h30_c01162{height:54.470215px;}
.h26_c01162{height:55.178833px;}
.h33_c01162{height:55.206299px;}
.h21_c01162{height:55.738576px;}
.h24_c01162{height:55.914551px;}
.h1d_c01162{height:55.933594px;}
.h31_c01162{height:55.942383px;}
.h3f_c01162{height:56.332031px;}
.h2f_c01162{height:56.678467px;}
.h38_c01162{height:56.689453px;}
.h3b_c01162{height:57.073242px;}
.h1e_c01162{height:57.385986px;}
.h2d_c01162{height:57.414551px;}
.h3e_c01162{height:57.445312px;}
.h25_c01162{height:58.121704px;}
.h37_c01162{height:58.201172px;}
.h1f_c01162{height:58.555664px;}
.h2e_c01162{height:58.957031px;}
.h36_c01162{height:59.296875px;}
.h27_c01162{height:60.328857px;}
.h3d_c01162{height:60.779297px;}
.h34_c01162{height:62.261719px;}
.h2_c01162{height:79.787109px;}
.h3_c01162{height:81.632812px;}
.h6_c01162{height:82.388672px;}
.h1_c01162{height:88.435547px;}
.h5_c01162{height:91.168945px;}
.h4_c01162{height:91.910156px;}
.h0_c01162{height:892.500000px;}
.w0_c01162{width:1263.000000px;}
.x0_c01162{left:0.000000px;}
.xd_c01162{left:66.959400px;}
.x9_c01162{left:74.879565px;}
.xc_c01162{left:81.000000px;}
.xb_c01162{left:82.438665px;}
.xa_c01162{left:83.519685px;}
.x1_c01162{left:84.958350px;}
.xe_c01162{left:147.959400px;}
.xf_c01162{left:150.838515px;}
.x2_c01162{left:172.078815px;}
.x3_c01162{left:202.679700px;}
.x10_c01162{left:226.078785px;}
.x4_c01162{left:267.119385px;}
.x11_c01162{left:300.239850px;}
.x5_c01162{left:303.118785px;}
.x1a_c01162{left:326.158785px;}
.x1b_c01162{left:354.239850px;}
.x12_c01162{left:381.599100px;}
.x1c_c01162{left:400.319820px;}
.x6_c01162{left:436.319235px;}
.x1d_c01162{left:439.918350px;}
.x13_c01162{left:458.279850px;}
.x1e_c01162{left:483.478635px;}
.x7_c01162{left:501.119985px;}
.x14_c01162{left:534.238770px;}
.x8_c01162{left:543.599070px;}
.x15_c01162{left:614.879520px;}
.x18_c01162{left:618.478635px;}
.x19_c01162{left:677.519670px;}
.x16_c01162{left:693.359850px;}
.x17_c01162{left:770.038965px;}
.x1f_c01162{left:917.279850px;}
.x38_c01162{left:919.081095px;}
.x56_c01162{left:920.880885px;}
.x67_c01162{left:921.958275px;}
.x23_c01162{left:938.159370px;}
.x54_c01162{left:940.679070px;}
.x37_c01162{left:943.559685px;}
.x20_c01162{left:954.719520px;}
.x45_c01162{left:956.159820px;}
.x59_c01162{left:957.959385px;}
.x68_c01162{left:959.759040px;}
.x43_c01162{left:963.359805px;}
.x32_c01162{left:969.478635px;}
.x4b_c01162{left:970.559685px;}
.x39_c01162{left:972.000000px;}
.x3b_c01162{left:975.958275px;}
.x24_c01162{left:977.759490px;}
.x26_c01162{left:979.559055px;}
.x3a_c01162{left:982.798920px;}
.x55_c01162{left:985.318815px;}
.x2d_c01162{left:986.399775px;}
.x3c_c01162{left:987.479190px;}
.x62_c01162{left:991.079955px;}
.x5a_c01162{left:995.039985px;}
.x29_c01162{left:996.839535px;}
.x33_c01162{left:1001.878965px;}
.x44_c01162{left:1010.519070px;}
.x34_c01162{left:1012.679715px;}
.x51_c01162{left:1019.879520px;}
.x48_c01162{left:1027.799565px;}
.x3d_c01162{left:1030.678530px;}
.x25_c01162{left:1031.759490px;}
.x2e_c01162{left:1037.159820px;}
.x52_c01162{left:1046.518620px;}
.x3e_c01162{left:1048.679070px;}
.x4c_c01162{left:1051.198785px;}
.x27_c01162{left:1056.239865px;}
.x2a_c01162{left:1064.519070px;}
.x49_c01162{left:1070.998905px;}
.x2f_c01162{left:1075.679070px;}
.x28_c01162{left:1081.438665px;}
.x2b_c01162{left:1083.599025px;}
.x30_c01162{left:1088.999355px;}
.x35_c01162{left:1091.878320px;}
.x5f_c01162{left:1095.838530px;}
.x3f_c01162{left:1100.879520px;}
.x5c_c01162{left:1103.039985px;}
.x31_c01162{left:1108.799565px;}
.x21_c01162{left:1109.878965px;}
.x4d_c01162{left:1112.398590px;}
.x4a_c01162{left:1113.479640px;}
.x40_c01162{left:1124.278755px;}
.x60_c01162{left:1135.079400px;}
.x63_c01162{left:1136.158815px;}
.x64_c01162{left:1144.439670px;}
.x5b_c01162{left:1146.598575px;}
.x5d_c01162{left:1148.399775px;}
.x65_c01162{left:1157.758575px;}
.x41_c01162{left:1161.000000px;}
.x61_c01162{left:1162.799565px;}
.x22_c01162{left:1164.239775px;}
.x57_c01162{left:1165.319190px;}
.x4e_c01162{left:1167.479640px;}
.x46_c01162{left:1173.598575px;}
.x42_c01162{left:1180.798560px;}
.x4f_c01162{left:1182.958920px;}
.x47_c01162{left:1184.399235px;}
.x36_c01162{left:1187.279850px;}
.x58_c01162{left:1190.519715px;}
.x50_c01162{left:1193.398590px;}
.x66_c01162{left:1198.798920px;}
.x5e_c01162{left:1199.878320px;}
.x53_c01162{left:1202.399775px;}
.x2c_c01162{left:1205.278755px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls2c_c01162{letter-spacing:-11.970607pt;}
.ls14_c01162{letter-spacing:-10.438600pt;}
.ls60_c01162{letter-spacing:-8.041307pt;}
.ls16_c01162{letter-spacing:-7.957180pt;}
.ls2b_c01162{letter-spacing:-7.484533pt;}
.ls49_c01162{letter-spacing:-7.123480pt;}
.ls18_c01162{letter-spacing:-6.073467pt;}
.ls30_c01162{letter-spacing:-5.543620pt;}
.ls2e_c01162{letter-spacing:-5.507847pt;}
.ls1b_c01162{letter-spacing:-5.188800pt;}
.lse_c01162{letter-spacing:-4.726020pt;}
.ls4d_c01162{letter-spacing:-4.667960pt;}
.ls36_c01162{letter-spacing:-4.322133pt;}
.ls2a_c01162{letter-spacing:-4.318667pt;}
.ls58_c01162{letter-spacing:-4.298667pt;}
.ls45_c01162{letter-spacing:-4.204800pt;}
.ls3e_c01162{letter-spacing:-4.164800pt;}
.ls55_c01162{letter-spacing:-4.156133pt;}
.ls3c_c01162{letter-spacing:-3.941740pt;}
.ls40_c01162{letter-spacing:-3.843067pt;}
.ls4e_c01162{letter-spacing:-3.831800pt;}
.ls35_c01162{letter-spacing:-3.770360pt;}
.ls21_c01162{letter-spacing:-3.721867pt;}
.ls34_c01162{letter-spacing:-3.562000pt;}
.ls39_c01162{letter-spacing:-3.426133pt;}
.ls4c_c01162{letter-spacing:-3.425000pt;}
.ls3a_c01162{letter-spacing:-3.374800pt;}
.ls43_c01162{letter-spacing:-3.041360pt;}
.ls5c_c01162{letter-spacing:-3.039467pt;}
.ls33_c01162{letter-spacing:-2.815000pt;}
.ls5e_c01162{letter-spacing:-2.739933pt;}
.ls47_c01162{letter-spacing:-2.666667pt;}
.ls4b_c01162{letter-spacing:-2.664200pt;}
.ls57_c01162{letter-spacing:-2.607733pt;}
.ls46_c01162{letter-spacing:-2.387733pt;}
.lsf_c01162{letter-spacing:-2.324920pt;}
.ls2f_c01162{letter-spacing:-2.137720pt;}
.ls3f_c01162{letter-spacing:-2.120533pt;}
.ls38_c01162{letter-spacing:-2.058600pt;}
.ls3b_c01162{letter-spacing:-2.028180pt;}
.ls48_c01162{letter-spacing:-1.975500pt;}
.ls53_c01162{letter-spacing:-1.925000pt;}
.ls56_c01162{letter-spacing:-1.900507pt;}
.ls24_c01162{letter-spacing:-1.875000pt;}
.ls12_c01162{letter-spacing:-1.483200pt;}
.ls27_c01162{letter-spacing:-1.431160pt;}
.ls29_c01162{letter-spacing:-1.424800pt;}
.ls37_c01162{letter-spacing:-1.392480pt;}
.ls1a_c01162{letter-spacing:-1.376000pt;}
.ls26_c01162{letter-spacing:-1.372400pt;}
.ls52_c01162{letter-spacing:-1.352933pt;}
.ls5d_c01162{letter-spacing:-1.334667pt;}
.ls54_c01162{letter-spacing:-1.282667pt;}
.ls1d_c01162{letter-spacing:-0.937200pt;}
.ls1e_c01162{letter-spacing:-0.754573pt;}
.ls4f_c01162{letter-spacing:-0.753133pt;}
.ls59_c01162{letter-spacing:-0.734667pt;}
.ls28_c01162{letter-spacing:-0.712400pt;}
.ls42_c01162{letter-spacing:-0.698133pt;}
.ls25_c01162{letter-spacing:-0.696000pt;}
.ls31_c01162{letter-spacing:-0.686200pt;}
.ls22_c01162{letter-spacing:-0.618800pt;}
.ls11_c01162{letter-spacing:0.000000pt;}
.ls1c_c01162{letter-spacing:0.611600pt;}
.ls3d_c01162{letter-spacing:0.675867pt;}
.ls4_c01162{letter-spacing:0.686200pt;}
.ls2d_c01162{letter-spacing:0.706747pt;}
.ls0_c01162{letter-spacing:0.712400pt;}
.ls50_c01162{letter-spacing:0.719467pt;}
.ls32_c01162{letter-spacing:0.744293pt;}
.ls4a_c01162{letter-spacing:0.745360pt;}
.ls10_c01162{letter-spacing:0.784080pt;}
.ls5f_c01162{letter-spacing:0.921667pt;}
.ls17_c01162{letter-spacing:1.022467pt;}
.ls15_c01162{letter-spacing:1.163393pt;}
.ls13_c01162{letter-spacing:1.173600pt;}
.ls6_c01162{letter-spacing:1.372400pt;}
.ls7_c01162{letter-spacing:1.424800pt;}
.ls44_c01162{letter-spacing:1.434200pt;}
.ls23_c01162{letter-spacing:1.555260pt;}
.ls5_c01162{letter-spacing:2.058600pt;}
.ls9_c01162{letter-spacing:2.137720pt;}
.ls5a_c01162{letter-spacing:2.153667pt;}
.ls5b_c01162{letter-spacing:2.322067pt;}
.ls1f_c01162{letter-spacing:2.427600pt;}
.ls3_c01162{letter-spacing:2.739933pt;}
.ls8_c01162{letter-spacing:2.849080pt;}
.lsd_c01162{letter-spacing:3.426133pt;}
.lsb_c01162{letter-spacing:4.274400pt;}
.lsc_c01162{letter-spacing:6.412120pt;}
.ls1_c01162{letter-spacing:7.836400pt;}
.lsa_c01162{letter-spacing:8.548800pt;}
.ls41_c01162{letter-spacing:9.860000pt;}
.ls51_c01162{letter-spacing:17.097600pt;}
.ls2_c01162{letter-spacing:26.046400pt;}
.ls20_c01162{letter-spacing:194.606360pt;}
.ls19_c01162{letter-spacing:330.400140pt;}
.ws0_c01162{word-spacing:0.000000pt;}
._7_c01162{margin-left:-54.351153pt;}
._1_c01162{margin-left:-33.124199pt;}
._1a_c01162{margin-left:-26.071106pt;}
._11_c01162{margin-left:-20.026552pt;}
._17_c01162{margin-left:-16.587602pt;}
._10_c01162{margin-left:-13.933403pt;}
._15_c01162{margin-left:-11.798615pt;}
._6_c01162{margin-left:-10.755361pt;}
._2_c01162{margin-left:-7.805556pt;}
._c_c01162{margin-left:-5.882532pt;}
._20_c01162{margin-left:-4.939872pt;}
._a_c01162{margin-left:-3.572243pt;}
._f_c01162{margin-left:-2.038887pt;}
._e_c01162{margin-left:-0.998009pt;}
._16_c01162{width:1.154830pt;}
._9_c01162{width:2.598745pt;}
._3_c01162{width:3.972686pt;}
._0_c01162{width:5.747712pt;}
._d_c01162{width:8.148699pt;}
._13_c01162{width:9.229929pt;}
._1e_c01162{width:10.988938pt;}
._1d_c01162{width:12.532142pt;}
._19_c01162{width:15.407757pt;}
._b_c01162{width:16.437029pt;}
._1c_c01162{width:18.857560pt;}
._8_c01162{width:20.082229pt;}
._1f_c01162{width:22.002323pt;}
._4_c01162{width:23.140214pt;}
._14_c01162{width:24.949785pt;}
._5_c01162{width:27.175029pt;}
._12_c01162{width:30.226524pt;}
._18_c01162{width:34.155737pt;}
._1b_c01162{width:165.882174pt;}
.fs10_c01162{font-size:14.000000pt;}
.fsc_c01162{font-size:16.666667pt;}
.fs12_c01162{font-size:17.333333pt;}
.fs11_c01162{font-size:21.333333pt;}
.fs6_c01162{font-size:22.000000pt;}
.fsa_c01162{font-size:22.666667pt;}
.fsb_c01162{font-size:24.000000pt;}
.fsf_c01162{font-size:27.333333pt;}
.fs9_c01162{font-size:28.666667pt;}
.fs16_c01162{font-size:30.000000pt;}
.fs8_c01162{font-size:30.666667pt;}
.fsd_c01162{font-size:32.666667pt;}
.fs13_c01162{font-size:33.333333pt;}
.fs15_c01162{font-size:34.000000pt;}
.fs14_c01162{font-size:34.666667pt;}
.fse_c01162{font-size:40.000000pt;}
.fs29_c01162{font-size:40.666667pt;}
.fs22_c01162{font-size:42.302880pt;}
.fs24_c01162{font-size:42.666667pt;}
.fs23_c01162{font-size:44.000000pt;}
.fs1e_c01162{font-size:44.666667pt;}
.fs1c_c01162{font-size:45.333333pt;}
.fs7_c01162{font-size:46.000000pt;}
.fs26_c01162{font-size:47.333333pt;}
.fs17_c01162{font-size:48.000000pt;}
.fs18_c01162{font-size:48.666667pt;}
.fs19_c01162{font-size:49.333333pt;}
.fs20_c01162{font-size:50.000000pt;}
.fs1d_c01162{font-size:50.482080pt;}
.fs1f_c01162{font-size:50.666667pt;}
.fs25_c01162{font-size:51.333333pt;}
.fs1a_c01162{font-size:52.000000pt;}
.fs1b_c01162{font-size:52.666667pt;}
.fs28_c01162{font-size:53.333333pt;}
.fs21_c01162{font-size:54.666667pt;}
.fs27_c01162{font-size:56.000000pt;}
.fs1_c01162{font-size:68.000000pt;}
.fs2_c01162{font-size:72.000000pt;}
.fs5_c01162{font-size:72.666667pt;}
.fs0_c01162{font-size:78.000000pt;}
.fs4_c01162{font-size:82.000000pt;}
.fs3_c01162{font-size:82.666667pt;}
.y0_c01162{bottom:0.000000pt;}
.ya_c01162{bottom:29.493467pt;}
.y8_c01162{bottom:37.813867pt;}
.y7_c01162{bottom:40.693720pt;}
.y9_c01162{bottom:42.294800pt;}
.y46_c01162{bottom:86.774680pt;}
.y47_c01162{bottom:86.774800pt;}
.y45_c01162{bottom:99.574520pt;}
.y43_c01162{bottom:113.014520pt;}
.y44_c01162{bottom:113.333867pt;}
.y42_c01162{bottom:138.294800pt;}
.y41_c01162{bottom:153.334267pt;}
.y40_c01162{bottom:166.774267pt;}
.y3f_c01162{bottom:166.774840pt;}
.y3e_c01162{bottom:180.214133pt;}
.y3d_c01162{bottom:180.214827pt;}
.y3c_c01162{bottom:193.654120pt;}
.y3b_c01162{bottom:193.654253pt;}
.y3a_c01162{bottom:206.774787pt;}
.y39_c01162{bottom:233.333867pt;}
.y38_c01162{bottom:246.773720pt;}
.y37_c01162{bottom:246.774347pt;}
.y36_c01162{bottom:260.213720pt;}
.y35_c01162{bottom:260.214213pt;}
.y34_c01162{bottom:273.653587pt;}
.y33_c01162{bottom:286.774253pt;}
.y32_c01162{bottom:313.654747pt;}
.y31_c01162{bottom:327.094120pt;}
.y30_c01162{bottom:327.094133pt;}
.y2f_c01162{bottom:340.214667pt;}
.y2e_c01162{bottom:340.214747pt;}
.y2d_c01162{bottom:353.334347pt;}
.y2c_c01162{bottom:366.773720pt;}
.y2b_c01162{bottom:380.213707pt;}
.y2a_c01162{bottom:406.774733pt;}
.y29_c01162{bottom:420.214107pt;}
.y28_c01162{bottom:420.214760pt;}
.y26_c01162{bottom:433.653973pt;}
.y27_c01162{bottom:433.654133pt;}
.y24_c01162{bottom:446.774640pt;}
.y25_c01162{bottom:446.774787pt;}
.y6_c01162{bottom:449.974000pt;}
.y22_c01162{bottom:459.893840pt;}
.y23_c01162{bottom:460.533973pt;}
.y21_c01162{bottom:486.454387pt;}
.y1f_c01162{bottom:499.894200pt;}
.y20_c01162{bottom:499.894373pt;}
.y1e_c01162{bottom:513.013427pt;}
.y1d_c01162{bottom:513.013800pt;}
.y5_c01162{bottom:517.494507pt;}
.y1c_c01162{bottom:526.455480pt;}
.y1a_c01162{bottom:539.573973pt;}
.y1b_c01162{bottom:539.894773pt;}
.y18_c01162{bottom:565.813560pt;}
.y19_c01162{bottom:565.813840pt;}
.y17_c01162{bottom:578.934373pt;}
.y4_c01162{bottom:584.374800pt;}
.y16_c01162{bottom:592.053587pt;}
.y15_c01162{bottom:592.054080pt;}
.y14_c01162{bottom:605.493453pt;}
.y13_c01162{bottom:618.614093pt;}
.y12_c01162{bottom:618.614333pt;}
.y10_c01162{bottom:631.734653pt;}
.y11_c01162{bottom:632.374800pt;}
.y3_c01162{bottom:651.893840pt;}
.ye_c01162{bottom:658.933720pt;}
.yf_c01162{bottom:658.933840pt;}
.yd_c01162{bottom:672.054520pt;}
.yc_c01162{bottom:685.173893pt;}
.yb_c01162{bottom:698.934413pt;}
.y2_c01162{bottom:721.173747pt;}
.y1_c01162{bottom:746.934413pt;}
.h11_c01162{height:13.733398pt;}
.hd_c01162{height:17.382812pt;}
.h14_c01162{height:17.468750pt;}
.h15_c01162{height:22.235026pt;}
.h12_c01162{height:22.250000pt;}
.h7_c01162{height:22.945312pt;}
.hb_c01162{height:23.640625pt;}
.hc_c01162{height:24.187500pt;}
.h13_c01162{height:25.031250pt;}
.h10_c01162{height:27.013021pt;}
.ha_c01162{height:29.898438pt;}
.h1a_c01162{height:31.289062pt;}
.h9_c01162{height:31.984375pt;}
.h19_c01162{height:32.921875pt;}
.h16_c01162{height:33.593750pt;}
.he_c01162{height:34.070312pt;}
.h18_c01162{height:34.265625pt;}
.h17_c01162{height:34.937500pt;}
.h3c_c01162{height:39.892253pt;}
.hf_c01162{height:41.718750pt;}
.h39_c01162{height:43.484375pt;}
.h28_c01162{height:44.120582pt;}
.h2b_c01162{height:44.500000pt;}
.h29_c01162{height:45.890625pt;}
.h35_c01162{height:46.431966pt;}
.h22_c01162{height:46.585938pt;}
.h3a_c01162{height:47.085938pt;}
.h1b_c01162{height:47.109375pt;}
.h20_c01162{height:47.281250pt;}
.h32_c01162{height:47.703125pt;}
.h23_c01162{height:47.739909pt;}
.h1c_c01162{height:47.763672pt;}
.h8_c01162{height:47.976562pt;}
.h2c_c01162{height:48.375000pt;}
.h2a_c01162{height:48.393880pt;}
.h30_c01162{height:48.417969pt;}
.h26_c01162{height:49.047852pt;}
.h33_c01162{height:49.072266pt;}
.h21_c01162{height:49.545401pt;}
.h24_c01162{height:49.701823pt;}
.h1d_c01162{height:49.718750pt;}
.h31_c01162{height:49.726562pt;}
.h3f_c01162{height:50.072917pt;}
.h2f_c01162{height:50.380859pt;}
.h38_c01162{height:50.390625pt;}
.h3b_c01162{height:50.731771pt;}
.h1e_c01162{height:51.009766pt;}
.h2d_c01162{height:51.035156pt;}
.h3e_c01162{height:51.062500pt;}
.h25_c01162{height:51.663737pt;}
.h37_c01162{height:51.734375pt;}
.h1f_c01162{height:52.049479pt;}
.h2e_c01162{height:52.406250pt;}
.h36_c01162{height:52.708333pt;}
.h27_c01162{height:53.625651pt;}
.h3d_c01162{height:54.026042pt;}
.h34_c01162{height:55.343750pt;}
.h2_c01162{height:70.921875pt;}
.h3_c01162{height:72.562500pt;}
.h6_c01162{height:73.234375pt;}
.h1_c01162{height:78.609375pt;}
.h5_c01162{height:81.039063pt;}
.h4_c01162{height:81.697917pt;}
.h0_c01162{height:793.333333pt;}
.w0_c01162{width:1122.666667pt;}
.x0_c01162{left:0.000000pt;}
.xd_c01162{left:59.519467pt;}
.x9_c01162{left:66.559613pt;}
.xc_c01162{left:72.000000pt;}
.xb_c01162{left:73.278813pt;}
.xa_c01162{left:74.239720pt;}
.x1_c01162{left:75.518533pt;}
.xe_c01162{left:131.519467pt;}
.xf_c01162{left:134.078680pt;}
.x2_c01162{left:152.958947pt;}
.x3_c01162{left:180.159733pt;}
.x10_c01162{left:200.958920pt;}
.x4_c01162{left:237.439453pt;}
.x11_c01162{left:266.879867pt;}
.x5_c01162{left:269.438920pt;}
.x1a_c01162{left:289.918920pt;}
.x1b_c01162{left:314.879867pt;}
.x12_c01162{left:339.199200pt;}
.x1c_c01162{left:355.839840pt;}
.x6_c01162{left:387.839320pt;}
.x1d_c01162{left:391.038533pt;}
.x13_c01162{left:407.359867pt;}
.x1e_c01162{left:429.758787pt;}
.x7_c01162{left:445.439987pt;}
.x14_c01162{left:474.878907pt;}
.x8_c01162{left:483.199173pt;}
.x15_c01162{left:546.559573pt;}
.x18_c01162{left:549.758787pt;}
.x19_c01162{left:602.239707pt;}
.x16_c01162{left:616.319867pt;}
.x17_c01162{left:684.479080pt;}
.x1f_c01162{left:815.359867pt;}
.x38_c01162{left:816.960973pt;}
.x56_c01162{left:818.560787pt;}
.x67_c01162{left:819.518467pt;}
.x23_c01162{left:833.919440pt;}
.x54_c01162{left:836.159173pt;}
.x37_c01162{left:838.719720pt;}
.x20_c01162{left:848.639573pt;}
.x45_c01162{left:849.919840pt;}
.x59_c01162{left:851.519453pt;}
.x68_c01162{left:853.119147pt;}
.x43_c01162{left:856.319827pt;}
.x32_c01162{left:861.758787pt;}
.x4b_c01162{left:862.719720pt;}
.x39_c01162{left:864.000000pt;}
.x3b_c01162{left:867.518467pt;}
.x24_c01162{left:869.119547pt;}
.x26_c01162{left:870.719160pt;}
.x3a_c01162{left:873.599040pt;}
.x55_c01162{left:875.838947pt;}
.x2d_c01162{left:876.799800pt;}
.x3c_c01162{left:877.759280pt;}
.x62_c01162{left:880.959960pt;}
.x5a_c01162{left:884.479987pt;}
.x29_c01162{left:886.079587pt;}
.x33_c01162{left:890.559080pt;}
.x44_c01162{left:898.239173pt;}
.x34_c01162{left:900.159747pt;}
.x51_c01162{left:906.559573pt;}
.x48_c01162{left:913.599613pt;}
.x3d_c01162{left:916.158693pt;}
.x25_c01162{left:917.119547pt;}
.x2e_c01162{left:921.919840pt;}
.x52_c01162{left:930.238773pt;}
.x3e_c01162{left:932.159173pt;}
.x4c_c01162{left:934.398920pt;}
.x27_c01162{left:938.879880pt;}
.x2a_c01162{left:946.239173pt;}
.x49_c01162{left:951.999027pt;}
.x2f_c01162{left:956.159173pt;}
.x28_c01162{left:961.278813pt;}
.x2b_c01162{left:963.199133pt;}
.x30_c01162{left:967.999427pt;}
.x35_c01162{left:970.558507pt;}
.x5f_c01162{left:974.078693pt;}
.x3f_c01162{left:978.559573pt;}
.x5c_c01162{left:980.479987pt;}
.x31_c01162{left:985.599613pt;}
.x21_c01162{left:986.559080pt;}
.x4d_c01162{left:988.798747pt;}
.x4a_c01162{left:989.759680pt;}
.x40_c01162{left:999.358893pt;}
.x60_c01162{left:1008.959467pt;}
.x63_c01162{left:1009.918947pt;}
.x64_c01162{left:1017.279707pt;}
.x5b_c01162{left:1019.198733pt;}
.x5d_c01162{left:1020.799800pt;}
.x65_c01162{left:1029.118733pt;}
.x41_c01162{left:1032.000000pt;}
.x61_c01162{left:1033.599613pt;}
.x22_c01162{left:1034.879800pt;}
.x57_c01162{left:1035.839280pt;}
.x4e_c01162{left:1037.759680pt;}
.x46_c01162{left:1043.198733pt;}
.x42_c01162{left:1049.598720pt;}
.x4f_c01162{left:1051.519040pt;}
.x47_c01162{left:1052.799320pt;}
.x36_c01162{left:1055.359867pt;}
.x58_c01162{left:1058.239747pt;}
.x50_c01162{left:1060.798747pt;}
.x66_c01162{left:1065.599040pt;}
.x5e_c01162{left:1066.558507pt;}
.x53_c01162{left:1068.799800pt;}
.x2c_c01162{left:1071.358893pt;}
}





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

.ir_c01163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_444c91cd32e47c7ac5802504.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01163;src:url('chunks/assets/font_6b93be35f0fe82162061c2dd.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01163;src:url('chunks/assets/font_37ebb6caa4fab9d2a96bdf87.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01163;src:url('chunks/assets/font_5a6e01ac43ebbc10a867dfa5.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01163;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff5_c01163{font-family:ff5_c01163;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01163;src:url('chunks/assets/font_3df9636da8c4660c23cc2325.woff2')format("woff");}.ff6_c01163{font-family:ff6_c01163;line-height:1.364746;font-style:normal;font-weight: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_c01163;src:url('chunks/assets/font_a4dabaf12fc5c18c9215aacd.woff2')format("woff");}.ff7_c01163{font-family:ff7_c01163;line-height:1.432129;font-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_c01163{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m3_c01163{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.m2_c01163{transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221239,0.000000,0.000000,0.250000,0,0);}
.m15_c01163{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m13_c01163{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m8_c01163{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m4_c01163{transform:matrix(0.232692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232692,0.000000,0.000000,0.250000,0,0);}
.mf_c01163{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m0_c01163{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m9_c01163{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.mc_c01163{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.me_c01163{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m6_c01163{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m12_c01163{transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267544,0.000000,0.000000,0.250000,0,0);}
.ma_c01163{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m1_c01163{transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);}
.mb_c01163{transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286885,0.000000,0.000000,0.250000,0,0);}
.m10_c01163{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m5_c01163{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.md_c01163{transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);}
.m7_c01163{transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);}
.m11_c01163{transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311404,0.000000,0.000000,0.250000,0,0);}
.v0_c01163{vertical-align:0.000000px;}
.lsa_c01163{letter-spacing:-10.591425px;}
.lse_c01163{letter-spacing:-8.475848px;}
.lsf_c01163{letter-spacing:-5.635500px;}
.ls10_c01163{letter-spacing:-5.085000px;}
.ls12_c01163{letter-spacing:-3.878100px;}
.ls15_c01163{letter-spacing:-3.266550px;}
.ls17_c01163{letter-spacing:-1.852875px;}
.lsd_c01163{letter-spacing:-1.762800px;}
.lsc_c01163{letter-spacing:-1.695000px;}
.ls18_c01163{letter-spacing:-0.727650px;}
.ls13_c01163{letter-spacing:0.000000px;}
.lsb_c01163{letter-spacing:0.668250px;}
.ls8_c01163{letter-spacing:0.736575px;}
.ls6_c01163{letter-spacing:1.477725px;}
.ls1d_c01163{letter-spacing:1.647855px;}
.ls20_c01163{letter-spacing:2.102873px;}
.ls2_c01163{letter-spacing:2.214300px;}
.ls1f_c01163{letter-spacing:2.543700px;}
.ls7_c01163{letter-spacing:2.950875px;}
.ls1c_c01163{letter-spacing:3.505500px;}
.ls1e_c01163{letter-spacing:3.586800px;}
.ls1a_c01163{letter-spacing:3.612375px;}
.ls1_c01163{letter-spacing:3.687450px;}
.ls1b_c01163{letter-spacing:4.206600px;}
.ls3_c01163{letter-spacing:4.428600px;}
.ls19_c01163{letter-spacing:4.657500px;}
.ls0_c01163{letter-spacing:5.165175px;}
.ls14_c01163{letter-spacing:5.693280px;}
.ls5_c01163{letter-spacing:5.901750px;}
.ls9_c01163{letter-spacing:6.642900px;}
.ls16_c01163{letter-spacing:7.372815px;}
.ls4_c01163{letter-spacing:7.379475px;}
.ls11_c01163{letter-spacing:7.627500px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01163{word-spacing:0.000000px;}
._a_c01163{margin-left:-23.721434px;}
._c_c01163{margin-left:-18.377893px;}
._f_c01163{margin-left:-17.229509px;}
._5_c01163{margin-left:-14.315145px;}
._7_c01163{width:1.669934px;}
._4_c01163{width:4.899176px;}
._b_c01163{width:6.267750px;}
._2_c01163{width:7.347627px;}
._1_c01163{width:9.506880px;}
._d_c01163{width:10.819964px;}
._3_c01163{width:12.352825px;}
._6_c01163{width:15.239414px;}
._e_c01163{width:16.424043px;}
._8_c01163{width:17.618236px;}
._9_c01163{width:20.541750px;}
._0_c01163{width:43.866261px;}
.fc0_c01163{color:transparent;}
.fsd_c01163{font-size:42.750000px;}
.fsa_c01163{font-size:43.500000px;}
.fsc_c01163{font-size:45.000000px;}
.fs8_c01163{font-size:45.750000px;}
.fs9_c01163{font-size:46.500000px;}
.fsb_c01163{font-size:47.250000px;}
.fs7_c01163{font-size:48.000000px;}
.fse_c01163{font-size:49.500000px;}
.fs5_c01163{font-size:64.500000px;}
.fs4_c01163{font-size:69.750000px;}
.fs6_c01163{font-size:72.750000px;}
.fs1_c01163{font-size:82.500000px;}
.fs2_c01163{font-size:84.750000px;}
.fs0_c01163{font-size:87.750000px;}
.fs3_c01163{font-size:97.500000px;}
.y0_c01163{bottom:0.000000px;}
.yf_c01163{bottom:86.460000px;}
.ye_c01163{bottom:97.621650px;}
.yd_c01163{bottom:97.621770px;}
.yc_c01163{bottom:107.700435px;}
.yb_c01163{bottom:118.140150px;}
.ya_c01163{bottom:128.940900px;}
.y9_c01163{bottom:139.741500px;}
.y8_c01163{bottom:149.820435px;}
.y6_c01163{bottom:159.900240px;}
.y7_c01163{bottom:159.900900px;}
.y5_c01163{bottom:170.340345px;}
.y4_c01163{bottom:180.780435px;}
.y3_c01163{bottom:664.980885px;}
.y2_c01163{bottom:679.380570px;}
.y1_c01163{bottom:767.941320px;}
.hb_c01163{height:42.671631px;}
.he_c01163{height:44.143066px;}
.hf_c01163{height:44.586914px;}
.h9_c01163{height:44.878784px;}
.ha_c01163{height:45.614502px;}
.hc_c01163{height:46.107422px;}
.hd_c01163{height:46.696289px;}
.h8_c01163{height:47.085938px;}
.h10_c01163{height:48.557373px;}
.h6_c01163{height:63.271729px;}
.h5_c01163{height:68.421753px;}
.h7_c01163{height:75.875977px;}
.h2_c01163{height:83.144531px;}
.h3_c01163{height:85.412109px;}
.h1_c01163{height:88.435547px;}
.h4_c01163{height:96.357422px;}
.h0_c01163{height:892.500000px;}
.w0_c01163{width:1263.000000px;}
.x0_c01163{left:0.000000px;}
.x1_c01163{left:79.559685px;}
.x2_c01163{left:168.118815px;}
.x3_c01163{left:208.798515px;}
.x4_c01163{left:358.918350px;}
.x5_c01163{left:394.558635px;}
.x6_c01163{left:491.398635px;}
.x7_c01163{left:540.718500px;}
.x8_c01163{left:555.838530px;}
.x9_c01163{left:590.758530px;}
.xa_c01163{left:601.918350px;}
.xb_c01163{left:837.000000px;}
.xd_c01163{left:838.078650px;}
.xc_c01163{left:862.559685px;}
.x16_c01163{left:887.039985px;}
.x13_c01163{left:891.000000px;}
.x17_c01163{left:901.798920px;}
.x14_c01163{left:912.599670px;}
.x1b_c01163{left:941.758575px;}
.x1c_c01163{left:970.198785px;}
.xf_c01163{left:989.278755px;}
.x10_c01163{left:1007.279205px;}
.x1e_c01163{left:1038.598575px;}
.x1f_c01163{left:1072.798560px;}
.x19_c01163{left:1075.679070px;}
.x20_c01163{left:1083.239865px;}
.x1a_c01163{left:1096.919490px;}
.x1d_c01163{left:1103.039985px;}
.x21_c01163{left:1106.639100px;}
.x18_c01163{left:1118.519070px;}
.x12_c01163{left:1120.679625px;}
.x15_c01163{left:1122.119940px;}
.xe_c01163{left:1124.278755px;}
.x11_c01163{left:1142.638545px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.lsa_c01163{letter-spacing:-9.414600pt;}
.lse_c01163{letter-spacing:-7.534087pt;}
.lsf_c01163{letter-spacing:-5.009333pt;}
.ls10_c01163{letter-spacing:-4.520000pt;}
.ls12_c01163{letter-spacing:-3.447200pt;}
.ls15_c01163{letter-spacing:-2.903600pt;}
.ls17_c01163{letter-spacing:-1.647000pt;}
.lsd_c01163{letter-spacing:-1.566933pt;}
.lsc_c01163{letter-spacing:-1.506667pt;}
.ls18_c01163{letter-spacing:-0.646800pt;}
.ls13_c01163{letter-spacing:0.000000pt;}
.lsb_c01163{letter-spacing:0.594000pt;}
.ls8_c01163{letter-spacing:0.654733pt;}
.ls6_c01163{letter-spacing:1.313533pt;}
.ls1d_c01163{letter-spacing:1.464760pt;}
.ls20_c01163{letter-spacing:1.869220pt;}
.ls2_c01163{letter-spacing:1.968267pt;}
.ls1f_c01163{letter-spacing:2.261067pt;}
.ls7_c01163{letter-spacing:2.623000pt;}
.ls1c_c01163{letter-spacing:3.116000pt;}
.ls1e_c01163{letter-spacing:3.188267pt;}
.ls1a_c01163{letter-spacing:3.211000pt;}
.ls1_c01163{letter-spacing:3.277733pt;}
.ls1b_c01163{letter-spacing:3.739200pt;}
.ls3_c01163{letter-spacing:3.936533pt;}
.ls19_c01163{letter-spacing:4.140000pt;}
.ls0_c01163{letter-spacing:4.591267pt;}
.ls14_c01163{letter-spacing:5.060693pt;}
.ls5_c01163{letter-spacing:5.246000pt;}
.ls9_c01163{letter-spacing:5.904800pt;}
.ls16_c01163{letter-spacing:6.553613pt;}
.ls4_c01163{letter-spacing:6.559533pt;}
.ls11_c01163{letter-spacing:6.780000pt;}
.ws0_c01163{word-spacing:0.000000pt;}
._a_c01163{margin-left:-21.085719pt;}
._c_c01163{margin-left:-16.335905pt;}
._f_c01163{margin-left:-15.315119pt;}
._5_c01163{margin-left:-12.724574pt;}
._7_c01163{width:1.484386pt;}
._4_c01163{width:4.354823pt;}
._b_c01163{width:5.571333pt;}
._2_c01163{width:6.531224pt;}
._1_c01163{width:8.450560pt;}
._d_c01163{width:9.617745pt;}
._3_c01163{width:10.980289pt;}
._6_c01163{width:13.546145pt;}
._e_c01163{width:14.599150pt;}
._8_c01163{width:15.660655pt;}
._9_c01163{width:18.259333pt;}
._0_c01163{width:38.992232pt;}
.fsd_c01163{font-size:38.000000pt;}
.fsa_c01163{font-size:38.666667pt;}
.fsc_c01163{font-size:40.000000pt;}
.fs8_c01163{font-size:40.666667pt;}
.fs9_c01163{font-size:41.333333pt;}
.fsb_c01163{font-size:42.000000pt;}
.fs7_c01163{font-size:42.666667pt;}
.fse_c01163{font-size:44.000000pt;}
.fs5_c01163{font-size:57.333333pt;}
.fs4_c01163{font-size:62.000000pt;}
.fs6_c01163{font-size:64.666667pt;}
.fs1_c01163{font-size:73.333333pt;}
.fs2_c01163{font-size:75.333333pt;}
.fs0_c01163{font-size:78.000000pt;}
.fs3_c01163{font-size:86.666667pt;}
.y0_c01163{bottom:0.000000pt;}
.yf_c01163{bottom:76.853333pt;}
.ye_c01163{bottom:86.774800pt;}
.yd_c01163{bottom:86.774907pt;}
.yc_c01163{bottom:95.733720pt;}
.yb_c01163{bottom:105.013467pt;}
.ya_c01163{bottom:114.614133pt;}
.y9_c01163{bottom:124.214667pt;}
.y8_c01163{bottom:133.173720pt;}
.y6_c01163{bottom:142.133547pt;}
.y7_c01163{bottom:142.134133pt;}
.y5_c01163{bottom:151.413640pt;}
.y4_c01163{bottom:160.693720pt;}
.y3_c01163{bottom:591.094120pt;}
.y2_c01163{bottom:603.893840pt;}
.y1_c01163{bottom:682.614507pt;}
.hb_c01163{height:37.930339pt;}
.he_c01163{height:39.238281pt;}
.hf_c01163{height:39.632812pt;}
.h9_c01163{height:39.892253pt;}
.ha_c01163{height:40.546224pt;}
.hc_c01163{height:40.984375pt;}
.hd_c01163{height:41.507812pt;}
.h8_c01163{height:41.854167pt;}
.h10_c01163{height:43.162109pt;}
.h6_c01163{height:56.241536pt;}
.h5_c01163{height:60.819336pt;}
.h7_c01163{height:67.445312pt;}
.h2_c01163{height:73.906250pt;}
.h3_c01163{height:75.921875pt;}
.h1_c01163{height:78.609375pt;}
.h4_c01163{height:85.651042pt;}
.h0_c01163{height:793.333333pt;}
.w0_c01163{width:1122.666667pt;}
.x0_c01163{left:0.000000pt;}
.x1_c01163{left:70.719720pt;}
.x2_c01163{left:149.438947pt;}
.x3_c01163{left:185.598680pt;}
.x4_c01163{left:319.038533pt;}
.x5_c01163{left:350.718787pt;}
.x6_c01163{left:436.798787pt;}
.x7_c01163{left:480.638667pt;}
.x8_c01163{left:494.078693pt;}
.x9_c01163{left:525.118693pt;}
.xa_c01163{left:535.038533pt;}
.xb_c01163{left:744.000000pt;}
.xd_c01163{left:744.958800pt;}
.xc_c01163{left:766.719720pt;}
.x16_c01163{left:788.479987pt;}
.x13_c01163{left:792.000000pt;}
.x17_c01163{left:801.599040pt;}
.x14_c01163{left:811.199707pt;}
.x1b_c01163{left:837.118733pt;}
.x1c_c01163{left:862.398920pt;}
.xf_c01163{left:879.358893pt;}
.x10_c01163{left:895.359293pt;}
.x1e_c01163{left:923.198733pt;}
.x1f_c01163{left:953.598720pt;}
.x19_c01163{left:956.159173pt;}
.x20_c01163{left:962.879880pt;}
.x1a_c01163{left:975.039547pt;}
.x1d_c01163{left:980.479987pt;}
.x21_c01163{left:983.679200pt;}
.x18_c01163{left:994.239173pt;}
.x12_c01163{left:996.159667pt;}
.x15_c01163{left:997.439947pt;}
.xe_c01163{left:999.358893pt;}
.x11_c01163{left:1015.678707pt;}
}





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

.ir_c01164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_e51afbcbb0aeae08faba8764.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_097dc875c550f020158a8001.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01164;src:url('chunks/assets/font_7729a36836d030f87107def2.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01164;src:url('chunks/assets/font_f9e9dda1150c0d1939a30821.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01164;src:url('chunks/assets/font_e5b2d7d221dc2ef8576fde15.woff2')format("woff");}.ff5_c01164{font-family:ff5_c01164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01164;src:url('chunks/assets/font_aebc0b5cf7bdc6e3c6a8f80f.woff2')format("woff");}.ff6_c01164{font-family:ff6_c01164;line-height:1.364746;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_5ee44e8a02fce5a14d0551ce.woff2')format("woff");}.ff7_c01164{font-family:ff7_c01164;line-height:1.364746;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_1d1e53d291979fcd60dfa349.woff2')format("woff");}.ff8_c01164{font-family:ff8_c01164;line-height:1.432129;font-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_c01164{transform:matrix(0.086449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086449,0.000000,0.000000,0.250000,0,0);}
.m6_c01164{transform:matrix(0.102804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102804,0.000000,0.000000,0.250000,0,0);}
.m16_c01164{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m11_c01164{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m15_c01164{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m14_c01164{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.ma_c01164{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.m4_c01164{transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);}
.m8_c01164{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m2_c01164{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.md_c01164{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.mb_c01164{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m10_c01164{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m0_c01164{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m7_c01164{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.mc_c01164{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m1_c01164{transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261574,0.000000,0.000000,0.250000,0,0);}
.m13_c01164{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.mf_c01164{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m9_c01164{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m12_c01164{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m17_c01164{transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);}
.me_c01164{transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278689,0.000000,0.000000,0.250000,0,0);}
.m5_c01164{transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283537,0.000000,0.000000,0.250000,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.lsf_c01164{letter-spacing:-10.024575px;}
.ls10_c01164{letter-spacing:-8.481000px;}
.ls11_c01164{letter-spacing:-6.171000px;}
.lse_c01164{letter-spacing:-5.395500px;}
.lsc_c01164{letter-spacing:-5.098500px;}
.ls17_c01164{letter-spacing:-4.933185px;}
.ls15_c01164{letter-spacing:-3.860093px;}
.ls16_c01164{letter-spacing:-3.633525px;}
.ls22_c01164{letter-spacing:-2.182950px;}
.ls14_c01164{letter-spacing:-1.986450px;}
.ls1f_c01164{letter-spacing:-1.455773px;}
.ls12_c01164{letter-spacing:0.000000px;}
.ls24_c01164{letter-spacing:0.681450px;}
.ls6_c01164{letter-spacing:0.727650px;}
.ls1e_c01164{letter-spacing:1.345050px;}
.ls1c_c01164{letter-spacing:1.432665px;}
.ls1_c01164{letter-spacing:1.455773px;}
.ls1a_c01164{letter-spacing:1.526175px;}
.ls23_c01164{letter-spacing:1.793400px;}
.ls3_c01164{letter-spacing:2.182950px;}
.ls21_c01164{letter-spacing:2.564250px;}
.ls1b_c01164{letter-spacing:2.690558px;}
.ls4_c01164{letter-spacing:2.905403px;}
.lsd_c01164{letter-spacing:3.588300px;}
.ls5_c01164{letter-spacing:3.633525px;}
.ls20_c01164{letter-spacing:4.296600px;}
.ls8_c01164{letter-spacing:4.361175px;}
.ls13_c01164{letter-spacing:5.033700px;}
.ls9_c01164{letter-spacing:5.088825px;}
.ls1d_c01164{letter-spacing:5.166150px;}
.ls2_c01164{letter-spacing:5.816003px;}
.ls19_c01164{letter-spacing:7.266578px;}
.ls7_c01164{letter-spacing:7.994700px;}
.ls18_c01164{letter-spacing:8.381280px;}
.lsb_c01164{letter-spacing:8.722350px;}
.ls0_c01164{letter-spacing:9.450000px;}
.lsa_c01164{letter-spacing:10.905300px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01164{word-spacing:0.000000px;}
._13_c01164{margin-left:-14.616017px;}
._6_c01164{margin-left:-4.096590px;}
._5_c01164{margin-left:-1.941612px;}
._8_c01164{width:2.389600px;}
._b_c01164{width:3.767504px;}
._12_c01164{width:7.456479px;}
._10_c01164{width:8.720547px;}
._9_c01164{width:10.848862px;}
._e_c01164{width:12.334344px;}
._c_c01164{width:14.764077px;}
._a_c01164{width:16.752248px;}
._7_c01164{width:21.155628px;}
._d_c01164{width:22.925962px;}
._11_c01164{width:26.004474px;}
._0_c01164{width:29.065290px;}
._f_c01164{width:30.283470px;}
._3_c01164{width:38.725222px;}
._2_c01164{width:42.198920px;}
._1_c01164{width:45.856515px;}
._4_c01164{width:52.088642px;}
.fc0_c01164{color:transparent;}
.fsc_c01164{font-size:31.500000px;}
.fse_c01164{font-size:44.250000px;}
.fsb_c01164{font-size:45.750000px;}
.fs8_c01164{font-size:46.500000px;}
.fs6_c01164{font-size:47.250000px;}
.fs9_c01164{font-size:48.000000px;}
.fsd_c01164{font-size:48.750000px;}
.fsa_c01164{font-size:50.250000px;}
.fs7_c01164{font-size:53.250000px;}
.fs5_c01164{font-size:61.500000px;}
.fs4_c01164{font-size:70.500000px;}
.fs3_c01164{font-size:80.250000px;}
.fs1_c01164{font-size:81.000000px;}
.fs2_c01164{font-size:82.500000px;}
.fs0_c01164{font-size:99.000000px;}
.y0_c01164{bottom:0.000000px;}
.y11_c01164{bottom:81.061110px;}
.y12_c01164{bottom:81.061335px;}
.y10_c01164{bottom:91.501050px;}
.yf_c01164{bottom:101.940900px;}
.ye_c01164{bottom:101.941245px;}
.yc_c01164{bottom:112.741395px;}
.yd_c01164{bottom:112.741500px;}
.yb_c01164{bottom:123.181350px;}
.y9_c01164{bottom:133.620810px;}
.ya_c01164{bottom:133.621050px;}
.y7_c01164{bottom:144.060660px;}
.y8_c01164{bottom:144.060750px;}
.y6_c01164{bottom:154.500600px;}
.y4_c01164{bottom:164.580810px;}
.y5_c01164{bottom:164.581050px;}
.y3_c01164{bottom:175.020750px;}
.y2_c01164{bottom:664.980885px;}
.y1_c01164{bottom:761.820870px;}
.hf_c01164{height:30.900146px;}
.he_c01164{height:44.878784px;}
.hd_c01164{height:45.614502px;}
.h9_c01164{height:45.955078px;}
.h11_c01164{height:46.151367px;}
.h7_c01164{height:46.350220px;}
.ha_c01164{height:47.085938px;}
.hc_c01164{height:47.715820px;}
.h10_c01164{height:47.821655px;}
.hb_c01164{height:49.293091px;}
.h8_c01164{height:52.625977px;}
.h6_c01164{height:64.142578px;}
.h5_c01164{height:69.157471px;}
.h2_c01164{height:81.632812px;}
.h3_c01164{height:83.144531px;}
.h4_c01164{height:83.698242px;}
.h1_c01164{height:99.773438px;}
.h0_c01164{height:892.500000px;}
.w0_c01164{width:1263.000000px;}
.x0_c01164{left:0.000000px;}
.x1_c01164{left:69.479250px;}
.x2_c01164{left:160.918950px;}
.x3_c01164{left:200.878350px;}
.x4_c01164{left:310.318800px;}
.x5_c01164{left:545.398635px;}
.x6_c01164{left:579.598530px;}
.x7_c01164{left:692.639700px;}
.x8_c01164{left:829.439205px;}
.x15_c01164{left:830.518620px;}
.x20_c01164{left:856.798560px;}
.x10_c01164{left:869.039340px;}
.x11_c01164{left:883.798560px;}
.x1a_c01164{left:896.759490px;}
.x1b_c01164{left:911.879520px;}
.x1c_c01164{left:925.559055px;}
.x18_c01164{left:942.478635px;}
.x1d_c01164{left:945.718500px;}
.x16_c01164{left:947.878965px;}
.xb_c01164{left:956.159820px;}
.x19_c01164{left:961.919490px;}
.x17_c01164{left:966.958920px;}
.xc_c01164{left:976.678530px;}
.xe_c01164{left:993.599670px;}
.x1e_c01164{left:996.478635px;}
.x1f_c01164{left:1009.798920px;}
.xf_c01164{left:1016.639655px;}
.x21_c01164{left:1033.559055px;}
.x22_c01164{left:1044.359805px;}
.x23_c01164{left:1066.679715px;}
.x12_c01164{left:1068.479190px;}
.x24_c01164{left:1078.198785px;}
.x13_c01164{left:1087.559055px;}
.x25_c01164{left:1100.879520px;}
.x9_c01164{left:1103.399235px;}
.x14_c01164{left:1107.000000px;}
.xa_c01164{left:1123.199340px;}
.xd_c01164{left:1138.678530px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.lsf_c01164{letter-spacing:-8.910733pt;}
.ls10_c01164{letter-spacing:-7.538667pt;}
.ls11_c01164{letter-spacing:-5.485333pt;}
.lse_c01164{letter-spacing:-4.796000pt;}
.lsc_c01164{letter-spacing:-4.532000pt;}
.ls17_c01164{letter-spacing:-4.385053pt;}
.ls15_c01164{letter-spacing:-3.431193pt;}
.ls16_c01164{letter-spacing:-3.229800pt;}
.ls22_c01164{letter-spacing:-1.940400pt;}
.ls14_c01164{letter-spacing:-1.765733pt;}
.ls1f_c01164{letter-spacing:-1.294020pt;}
.ls12_c01164{letter-spacing:0.000000pt;}
.ls24_c01164{letter-spacing:0.605733pt;}
.ls6_c01164{letter-spacing:0.646800pt;}
.ls1e_c01164{letter-spacing:1.195600pt;}
.ls1c_c01164{letter-spacing:1.273480pt;}
.ls1_c01164{letter-spacing:1.294020pt;}
.ls1a_c01164{letter-spacing:1.356600pt;}
.ls23_c01164{letter-spacing:1.594133pt;}
.ls3_c01164{letter-spacing:1.940400pt;}
.ls21_c01164{letter-spacing:2.279333pt;}
.ls1b_c01164{letter-spacing:2.391607pt;}
.ls4_c01164{letter-spacing:2.582580pt;}
.lsd_c01164{letter-spacing:3.189600pt;}
.ls5_c01164{letter-spacing:3.229800pt;}
.ls20_c01164{letter-spacing:3.819200pt;}
.ls8_c01164{letter-spacing:3.876600pt;}
.ls13_c01164{letter-spacing:4.474400pt;}
.ls9_c01164{letter-spacing:4.523400pt;}
.ls1d_c01164{letter-spacing:4.592133pt;}
.ls2_c01164{letter-spacing:5.169780pt;}
.ls19_c01164{letter-spacing:6.459180pt;}
.ls7_c01164{letter-spacing:7.106400pt;}
.ls18_c01164{letter-spacing:7.450027pt;}
.lsb_c01164{letter-spacing:7.753200pt;}
.ls0_c01164{letter-spacing:8.400000pt;}
.lsa_c01164{letter-spacing:9.693600pt;}
.ws0_c01164{word-spacing:0.000000pt;}
._13_c01164{margin-left:-12.992015pt;}
._6_c01164{margin-left:-3.641413pt;}
._5_c01164{margin-left:-1.725877pt;}
._8_c01164{width:2.124089pt;}
._b_c01164{width:3.348893pt;}
._12_c01164{width:6.627981pt;}
._10_c01164{width:7.751598pt;}
._9_c01164{width:9.643433pt;}
._e_c01164{width:10.963861pt;}
._c_c01164{width:13.123624pt;}
._a_c01164{width:14.890887pt;}
._7_c01164{width:18.805002pt;}
._d_c01164{width:20.378633pt;}
._11_c01164{width:23.115088pt;}
._0_c01164{width:25.835813pt;}
._f_c01164{width:26.918640pt;}
._3_c01164{width:34.422420pt;}
._2_c01164{width:37.510151pt;}
._1_c01164{width:40.761346pt;}
._4_c01164{width:46.301015pt;}
.fsc_c01164{font-size:28.000000pt;}
.fse_c01164{font-size:39.333333pt;}
.fsb_c01164{font-size:40.666667pt;}
.fs8_c01164{font-size:41.333333pt;}
.fs6_c01164{font-size:42.000000pt;}
.fs9_c01164{font-size:42.666667pt;}
.fsd_c01164{font-size:43.333333pt;}
.fsa_c01164{font-size:44.666667pt;}
.fs7_c01164{font-size:47.333333pt;}
.fs5_c01164{font-size:54.666667pt;}
.fs4_c01164{font-size:62.666667pt;}
.fs3_c01164{font-size:71.333333pt;}
.fs1_c01164{font-size:72.000000pt;}
.fs2_c01164{font-size:73.333333pt;}
.fs0_c01164{font-size:88.000000pt;}
.y0_c01164{bottom:0.000000pt;}
.y11_c01164{bottom:72.054320pt;}
.y12_c01164{bottom:72.054520pt;}
.y10_c01164{bottom:81.334267pt;}
.yf_c01164{bottom:90.614133pt;}
.ye_c01164{bottom:90.614440pt;}
.yc_c01164{bottom:100.214573pt;}
.yd_c01164{bottom:100.214667pt;}
.yb_c01164{bottom:109.494533pt;}
.y9_c01164{bottom:118.774053pt;}
.ya_c01164{bottom:118.774267pt;}
.y7_c01164{bottom:128.053920pt;}
.y8_c01164{bottom:128.054000pt;}
.y6_c01164{bottom:137.333867pt;}
.y4_c01164{bottom:146.294053pt;}
.y5_c01164{bottom:146.294267pt;}
.y3_c01164{bottom:155.574000pt;}
.y2_c01164{bottom:591.094120pt;}
.y1_c01164{bottom:677.174107pt;}
.hf_c01164{height:27.466797pt;}
.he_c01164{height:39.892253pt;}
.hd_c01164{height:40.546224pt;}
.h9_c01164{height:40.848958pt;}
.h11_c01164{height:41.023438pt;}
.h7_c01164{height:41.200195pt;}
.ha_c01164{height:41.854167pt;}
.hc_c01164{height:42.414062pt;}
.h10_c01164{height:42.508138pt;}
.hb_c01164{height:43.816081pt;}
.h8_c01164{height:46.778646pt;}
.h6_c01164{height:57.015625pt;}
.h5_c01164{height:61.473307pt;}
.h2_c01164{height:72.562500pt;}
.h3_c01164{height:73.906250pt;}
.h4_c01164{height:74.398438pt;}
.h1_c01164{height:88.687500pt;}
.h0_c01164{height:793.333333pt;}
.w0_c01164{width:1122.666667pt;}
.x0_c01164{left:0.000000pt;}
.x1_c01164{left:61.759333pt;}
.x2_c01164{left:143.039067pt;}
.x3_c01164{left:178.558533pt;}
.x4_c01164{left:275.838933pt;}
.x5_c01164{left:484.798787pt;}
.x6_c01164{left:515.198693pt;}
.x7_c01164{left:615.679733pt;}
.x8_c01164{left:737.279293pt;}
.x15_c01164{left:738.238773pt;}
.x20_c01164{left:761.598720pt;}
.x10_c01164{left:772.479413pt;}
.x11_c01164{left:785.598720pt;}
.x1a_c01164{left:797.119547pt;}
.x1b_c01164{left:810.559573pt;}
.x1c_c01164{left:822.719160pt;}
.x18_c01164{left:837.758787pt;}
.x1d_c01164{left:840.638667pt;}
.x16_c01164{left:842.559080pt;}
.xb_c01164{left:849.919840pt;}
.x19_c01164{left:855.039547pt;}
.x17_c01164{left:859.519040pt;}
.xc_c01164{left:868.158693pt;}
.xe_c01164{left:883.199707pt;}
.x1e_c01164{left:885.758787pt;}
.x1f_c01164{left:897.599040pt;}
.xf_c01164{left:903.679693pt;}
.x21_c01164{left:918.719160pt;}
.x22_c01164{left:928.319827pt;}
.x23_c01164{left:948.159747pt;}
.x12_c01164{left:949.759280pt;}
.x24_c01164{left:958.398920pt;}
.x13_c01164{left:966.719160pt;}
.x25_c01164{left:978.559573pt;}
.x9_c01164{left:980.799320pt;}
.x14_c01164{left:984.000000pt;}
.xa_c01164{left:998.399413pt;}
.xd_c01164{left:1012.158693pt;}
}





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

.ir_c01165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_3fc77af53ee0a24a1ea25e51.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01165;src:url('chunks/assets/font_d58a53d6c624912261a98cee.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.364746;font-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_c01165{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.m5_c01165{transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219298,0.000000,0.000000,0.250000,0,0);}
.m3_c01165{transform:matrix(0.224206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224206,0.000000,0.000000,0.250000,0,0);}
.m2_c01165{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m1_c01165{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m0_c01165{transform:matrix(0.303879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303879,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.ls6_c01165{letter-spacing:-10.982753px;}
.ls5_c01165{letter-spacing:-7.848698px;}
.ls0_c01165{letter-spacing:-7.403700px;}
.ls7_c01165{letter-spacing:-5.985855px;}
.ls2_c01165{letter-spacing:-5.491800px;}
.ls4_c01165{letter-spacing:-1.762800px;}
.ls3_c01165{letter-spacing:-0.841050px;}
.ls1_c01165{letter-spacing:0.000000px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01165{word-spacing:0.000000px;}
._0_c01165{width:39.360725px;}
.fc0_c01165{color:transparent;}
.fs1_c01165{font-size:81.000000px;}
.fs2_c01165{font-size:84.750000px;}
.fs4_c01165{font-size:85.500000px;}
.fs0_c01165{font-size:87.000000px;}
.fs3_c01165{font-size:94.500000px;}
.y0_c01165{bottom:0.000000px;}
.y1_c01165{bottom:760.021275px;}
.h2_c01165{height:81.632812px;}
.h3_c01165{height:85.412109px;}
.h5_c01165{height:86.167969px;}
.h1_c01165{height:87.679688px;}
.h4_c01165{height:93.392578px;}
.h0_c01165{height:892.500000px;}
.w0_c01165{width:1263.000000px;}
.x0_c01165{left:0.000000px;}
.x1_c01165{left:78.478665px;}
.x2_c01165{left:168.118815px;}
.x3_c01165{left:208.439250px;}
.x4_c01165{left:358.199850px;}
.x5_c01165{left:394.199385px;}
.x6_c01165{left:490.319235px;}
.x7_c01165{left:623.158770px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls6_c01165{letter-spacing:-9.762447pt;}
.ls5_c01165{letter-spacing:-6.976620pt;}
.ls0_c01165{letter-spacing:-6.581067pt;}
.ls7_c01165{letter-spacing:-5.320760pt;}
.ls2_c01165{letter-spacing:-4.881600pt;}
.ls4_c01165{letter-spacing:-1.566933pt;}
.ls3_c01165{letter-spacing:-0.747600pt;}
.ls1_c01165{letter-spacing:0.000000pt;}
.ws0_c01165{word-spacing:0.000000pt;}
._0_c01165{width:34.987311pt;}
.fs1_c01165{font-size:72.000000pt;}
.fs2_c01165{font-size:75.333333pt;}
.fs4_c01165{font-size:76.000000pt;}
.fs0_c01165{font-size:77.333333pt;}
.fs3_c01165{font-size:84.000000pt;}
.y0_c01165{bottom:0.000000pt;}
.y1_c01165{bottom:675.574467pt;}
.h2_c01165{height:72.562500pt;}
.h3_c01165{height:75.921875pt;}
.h5_c01165{height:76.593750pt;}
.h1_c01165{height:77.937500pt;}
.h4_c01165{height:83.015625pt;}
.h0_c01165{height:793.333333pt;}
.w0_c01165{width:1122.666667pt;}
.x0_c01165{left:0.000000pt;}
.x1_c01165{left:69.758813pt;}
.x2_c01165{left:149.438947pt;}
.x3_c01165{left:185.279333pt;}
.x4_c01165{left:318.399867pt;}
.x5_c01165{left:350.399453pt;}
.x6_c01165{left:435.839320pt;}
.x7_c01165{left:553.918907pt;}
}





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

.ir_c01166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_432d3d74ef94e2f4495d216d.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01166;src:url('chunks/assets/font_ea1362ab566812019e5c8da0.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01166;src:url('chunks/assets/font_7a3ee92f7eeb012754acef42.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01166;src:url('chunks/assets/font_aef10514d4da42cc19c3e723.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01166;src:url('chunks/assets/font_93c345f34d71f811d8ebbbfb.woff2')format("woff");}.ff5_c01166{font-family:ff5_c01166;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01166;src:url('chunks/assets/font_b6934281016d3263355664bf.woff2')format("woff");}.ff6_c01166{font-family:ff6_c01166;line-height:1.364746;font-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_c01166{transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210870,0.000000,0.000000,0.250000,0,0);}
.m16_c01166{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m4_c01166{transform:matrix(0.219262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219262,0.000000,0.000000,0.250000,0,0);}
.m3_c01166{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m2_c01166{transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);}
.m15_c01166{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m14_c01166{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m0_c01166{transform:matrix(0.235537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235537,0.000000,0.000000,0.250000,0,0);}
.m5_c01166{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m10_c01166{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.mf_c01166{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.mb_c01166{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m6_c01166{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_c01166{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.m13_c01166{transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);}
.md_c01166{transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286290,0.000000,0.000000,0.250000,0,0);}
.m12_c01166{transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298387,0.000000,0.000000,0.250000,0,0);}
.m11_c01166{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.m7_c01166{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.ma_c01166{transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338235,0.000000,0.000000,0.250000,0,0);}
.m8_c01166{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.mc_c01166{transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351852,0.000000,0.000000,0.250000,0,0);}
.m9_c01166{transform:matrix(0.464912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464912,0.000000,0.000000,0.250000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.lse_c01166{letter-spacing:-10.710225px;}
.ls1c_c01166{letter-spacing:-10.467075px;}
.lsa_c01166{letter-spacing:-8.004000px;}
.lsb_c01166{letter-spacing:-4.944600px;}
.lsc_c01166{letter-spacing:-2.485440px;}
.ls1d_c01166{letter-spacing:-2.346510px;}
.ls1f_c01166{letter-spacing:-2.113650px;}
.ls19_c01166{letter-spacing:-2.037240px;}
.lsd_c01166{letter-spacing:-1.711965px;}
.ls14_c01166{letter-spacing:-1.662090px;}
.ls12_c01166{letter-spacing:-1.636800px;}
.ls22_c01166{letter-spacing:-1.617000px;}
.ls17_c01166{letter-spacing:-1.090080px;}
.lsf_c01166{letter-spacing:-0.704550px;}
.ls13_c01166{letter-spacing:0.000000px;}
.ls11_c01166{letter-spacing:0.556800px;}
.ls1e_c01166{letter-spacing:0.627750px;}
.ls8_c01166{letter-spacing:0.704550px;}
.ls1a_c01166{letter-spacing:1.385700px;}
.ls15_c01166{letter-spacing:1.386450px;}
.ls6_c01166{letter-spacing:1.409558px;}
.ls18_c01166{letter-spacing:1.966950px;}
.ls20_c01166{letter-spacing:1.994385px;}
.ls10_c01166{letter-spacing:2.047500px;}
.ls3_c01166{letter-spacing:2.113650px;}
.ls16_c01166{letter-spacing:2.130300px;}
.ls21_c01166{letter-spacing:2.400300px;}
.ls0_c01166{letter-spacing:2.813168px;}
.ls2_c01166{letter-spacing:3.518175px;}
.ls1_c01166{letter-spacing:4.222725px;}
.ls9_c01166{letter-spacing:4.773450px;}
.ls5_c01166{letter-spacing:5.631367px;}
.ls23_c01166{letter-spacing:6.075525px;}
.ls1b_c01166{letter-spacing:6.336375px;}
.ls4_c01166{letter-spacing:7.740900px;}
.ls7_c01166{letter-spacing:9.854093px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01166{word-spacing:0.000000px;}
._5_c01166{margin-left:-29.440111px;}
._b_c01166{margin-left:-7.158460px;}
._a_c01166{margin-left:-4.085376px;}
._6_c01166{width:3.394819px;}
._3_c01166{width:4.890576px;}
._1_c01166{width:6.820410px;}
._4_c01166{width:10.198872px;}
._2_c01166{width:11.411247px;}
._c_c01166{width:12.446879px;}
._8_c01166{width:14.065626px;}
._d_c01166{width:15.598821px;}
._9_c01166{width:18.066154px;}
._7_c01166{width:19.318529px;}
._0_c01166{width:21.626321px;}
.fc0_c01166{color:transparent;}
.fsd_c01166{font-size:36.000000px;}
.fsb_c01166{font-size:40.500000px;}
.fs10_c01166{font-size:41.250000px;}
.fs9_c01166{font-size:42.750000px;}
.fs7_c01166{font-size:43.500000px;}
.fs11_c01166{font-size:44.250000px;}
.fs6_c01166{font-size:45.000000px;}
.fs5_c01166{font-size:45.750000px;}
.fsc_c01166{font-size:46.500000px;}
.fsf_c01166{font-size:47.250000px;}
.fs8_c01166{font-size:48.000000px;}
.fse_c01166{font-size:50.250000px;}
.fsa_c01166{font-size:51.000000px;}
.fs1_c01166{font-size:86.250000px;}
.fs0_c01166{font-size:90.750000px;}
.fs4_c01166{font-size:91.500000px;}
.fs2_c01166{font-size:92.250000px;}
.fs3_c01166{font-size:96.000000px;}
.y0_c01166{bottom:0.000000px;}
.y10_c01166{bottom:90.780900px;}
.yf_c01166{bottom:101.581650px;}
.ye_c01166{bottom:111.840150px;}
.yd_c01166{bottom:111.840270px;}
.yc_c01166{bottom:122.461185px;}
.ya_c01166{bottom:132.900495px;}
.yb_c01166{bottom:132.900900px;}
.y9_c01166{bottom:143.340585px;}
.y7_c01166{bottom:153.420795px;}
.y8_c01166{bottom:153.421185px;}
.y6_c01166{bottom:163.860900px;}
.y5_c01166{bottom:163.860990px;}
.y3_c01166{bottom:174.661245px;}
.y4_c01166{bottom:174.661485px;}
.y2_c01166{bottom:185.101335px;}
.y1_c01166{bottom:767.221155px;}
.he_c01166{height:35.578125px;}
.hc_c01166{height:42.240234px;}
.h8_c01166{height:42.671631px;}
.h11_c01166{height:43.022461px;}
.h12_c01166{height:43.407349px;}
.h7_c01166{height:44.143066px;}
.ha_c01166{height:44.586914px;}
.h6_c01166{height:44.878784px;}
.hd_c01166{height:45.614502px;}
.h10_c01166{height:46.350220px;}
.h9_c01166{height:47.085938px;}
.hf_c01166{height:49.661133px;}
.hb_c01166{height:50.028809px;}
.h2_c01166{height:85.239258px;}
.h5_c01166{height:90.427734px;}
.h3_c01166{height:91.168945px;}
.h1_c01166{height:91.458984px;}
.h4_c01166{height:94.875000px;}
.h0_c01166{height:892.500000px;}
.w0_c01166{width:1263.000000px;}
.x0_c01166{left:0.000000px;}
.x1_c01166{left:73.439250px;}
.x2_c01166{left:164.158785px;}
.x3_c01166{left:205.199385px;}
.x4_c01166{left:354.599100px;}
.x5_c01166{left:392.038920px;}
.x6_c01166{left:438.479685px;}
.x1c_c01166{left:836.279850px;}
.x7_c01166{left:837.359250px;}
.x1f_c01166{left:838.438665px;}
.xf_c01166{left:855.719055px;}
.x10_c01166{left:878.038965px;}
.x19_c01166{left:890.279850px;}
.x1a_c01166{left:910.798560px;}
.xd_c01166{left:940.679070px;}
.x15_c01166{left:948.958275px;}
.x8_c01166{left:955.078770px;}
.xe_c01166{left:960.838530px;}
.x1d_c01166{left:969.119385px;}
.x9_c01166{left:975.239865px;}
.x16_c01166{left:977.398590px;}
.xa_c01166{left:992.879520px;}
.x17_c01166{left:999.359250px;}
.x18_c01166{left:1019.518620px;}
.x1b_c01166{left:1032.838905px;}
.x12_c01166{left:1036.798920px;}
.x20_c01166{left:1040.038875px;}
.xb_c01166{left:1061.279205px;}
.x13_c01166{left:1072.079955px;}
.xc_c01166{left:1083.239865px;}
.x21_c01166{left:1105.559685px;}
.x1e_c01166{left:1109.158815px;}
.x11_c01166{left:1118.878320px;}
.x14_c01166{left:1124.998905px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.lse_c01166{letter-spacing:-9.520200pt;}
.ls1c_c01166{letter-spacing:-9.304067pt;}
.lsa_c01166{letter-spacing:-7.114667pt;}
.lsb_c01166{letter-spacing:-4.395200pt;}
.lsc_c01166{letter-spacing:-2.209280pt;}
.ls1d_c01166{letter-spacing:-2.085787pt;}
.ls1f_c01166{letter-spacing:-1.878800pt;}
.ls19_c01166{letter-spacing:-1.810880pt;}
.lsd_c01166{letter-spacing:-1.521747pt;}
.ls14_c01166{letter-spacing:-1.477413pt;}
.ls12_c01166{letter-spacing:-1.454933pt;}
.ls22_c01166{letter-spacing:-1.437333pt;}
.ls17_c01166{letter-spacing:-0.968960pt;}
.lsf_c01166{letter-spacing:-0.626267pt;}
.ls13_c01166{letter-spacing:0.000000pt;}
.ls11_c01166{letter-spacing:0.494933pt;}
.ls1e_c01166{letter-spacing:0.558000pt;}
.ls8_c01166{letter-spacing:0.626267pt;}
.ls1a_c01166{letter-spacing:1.231733pt;}
.ls15_c01166{letter-spacing:1.232400pt;}
.ls6_c01166{letter-spacing:1.252940pt;}
.ls18_c01166{letter-spacing:1.748400pt;}
.ls20_c01166{letter-spacing:1.772787pt;}
.ls10_c01166{letter-spacing:1.820000pt;}
.ls3_c01166{letter-spacing:1.878800pt;}
.ls16_c01166{letter-spacing:1.893600pt;}
.ls21_c01166{letter-spacing:2.133600pt;}
.ls0_c01166{letter-spacing:2.500593pt;}
.ls2_c01166{letter-spacing:3.127267pt;}
.ls1_c01166{letter-spacing:3.753533pt;}
.ls9_c01166{letter-spacing:4.243067pt;}
.ls5_c01166{letter-spacing:5.005660pt;}
.ls23_c01166{letter-spacing:5.400467pt;}
.ls1b_c01166{letter-spacing:5.632333pt;}
.ls4_c01166{letter-spacing:6.880800pt;}
.ls7_c01166{letter-spacing:8.759193pt;}
.ws0_c01166{word-spacing:0.000000pt;}
._5_c01166{margin-left:-26.168987pt;}
._b_c01166{margin-left:-6.363076pt;}
._a_c01166{margin-left:-3.631446pt;}
._6_c01166{width:3.017617pt;}
._3_c01166{width:4.347179pt;}
._1_c01166{width:6.062587pt;}
._4_c01166{width:9.065664pt;}
._2_c01166{width:10.143330pt;}
._c_c01166{width:11.063892pt;}
._8_c01166{width:12.502779pt;}
._d_c01166{width:13.865619pt;}
._9_c01166{width:16.058804pt;}
._7_c01166{width:17.172026pt;}
._0_c01166{width:19.223396pt;}
.fsd_c01166{font-size:32.000000pt;}
.fsb_c01166{font-size:36.000000pt;}
.fs10_c01166{font-size:36.666667pt;}
.fs9_c01166{font-size:38.000000pt;}
.fs7_c01166{font-size:38.666667pt;}
.fs11_c01166{font-size:39.333333pt;}
.fs6_c01166{font-size:40.000000pt;}
.fs5_c01166{font-size:40.666667pt;}
.fsc_c01166{font-size:41.333333pt;}
.fsf_c01166{font-size:42.000000pt;}
.fs8_c01166{font-size:42.666667pt;}
.fse_c01166{font-size:44.666667pt;}
.fsa_c01166{font-size:45.333333pt;}
.fs1_c01166{font-size:76.666667pt;}
.fs0_c01166{font-size:80.666667pt;}
.fs4_c01166{font-size:81.333333pt;}
.fs2_c01166{font-size:82.000000pt;}
.fs3_c01166{font-size:85.333333pt;}
.y0_c01166{bottom:0.000000pt;}
.y10_c01166{bottom:80.694133pt;}
.yf_c01166{bottom:90.294800pt;}
.ye_c01166{bottom:99.413467pt;}
.yd_c01166{bottom:99.413573pt;}
.yc_c01166{bottom:108.854387pt;}
.ya_c01166{bottom:118.133773pt;}
.yb_c01166{bottom:118.134133pt;}
.y9_c01166{bottom:127.413853pt;}
.y7_c01166{bottom:136.374040pt;}
.y8_c01166{bottom:136.374387pt;}
.y6_c01166{bottom:145.654133pt;}
.y5_c01166{bottom:145.654213pt;}
.y3_c01166{bottom:155.254440pt;}
.y4_c01166{bottom:155.254653pt;}
.y2_c01166{bottom:164.534520pt;}
.y1_c01166{bottom:681.974360pt;}
.he_c01166{height:31.625000pt;}
.hc_c01166{height:37.546875pt;}
.h8_c01166{height:37.930339pt;}
.h11_c01166{height:38.242188pt;}
.h12_c01166{height:38.584310pt;}
.h7_c01166{height:39.238281pt;}
.ha_c01166{height:39.632812pt;}
.h6_c01166{height:39.892253pt;}
.hd_c01166{height:40.546224pt;}
.h10_c01166{height:41.200195pt;}
.h9_c01166{height:41.854167pt;}
.hf_c01166{height:44.143229pt;}
.hb_c01166{height:44.470052pt;}
.h2_c01166{height:75.768229pt;}
.h5_c01166{height:80.380208pt;}
.h3_c01166{height:81.039063pt;}
.h1_c01166{height:81.296875pt;}
.h4_c01166{height:84.333333pt;}
.h0_c01166{height:793.333333pt;}
.w0_c01166{width:1122.666667pt;}
.x0_c01166{left:0.000000pt;}
.x1_c01166{left:65.279333pt;}
.x2_c01166{left:145.918920pt;}
.x3_c01166{left:182.399453pt;}
.x4_c01166{left:315.199200pt;}
.x5_c01166{left:348.479040pt;}
.x6_c01166{left:389.759720pt;}
.x1c_c01166{left:743.359867pt;}
.x7_c01166{left:744.319333pt;}
.x1f_c01166{left:745.278813pt;}
.xf_c01166{left:760.639160pt;}
.x10_c01166{left:780.479080pt;}
.x19_c01166{left:791.359867pt;}
.x1a_c01166{left:809.598720pt;}
.xd_c01166{left:836.159173pt;}
.x15_c01166{left:843.518467pt;}
.x8_c01166{left:848.958907pt;}
.xe_c01166{left:854.078693pt;}
.x1d_c01166{left:861.439453pt;}
.x9_c01166{left:866.879880pt;}
.x16_c01166{left:868.798747pt;}
.xa_c01166{left:882.559573pt;}
.x17_c01166{left:888.319333pt;}
.x18_c01166{left:906.238773pt;}
.x1b_c01166{left:918.079027pt;}
.x12_c01166{left:921.599040pt;}
.x20_c01166{left:924.479000pt;}
.xb_c01166{left:943.359293pt;}
.x13_c01166{left:952.959960pt;}
.xc_c01166{left:962.879880pt;}
.x21_c01166{left:982.719720pt;}
.x1e_c01166{left:985.918947pt;}
.x11_c01166{left:994.558507pt;}
.x14_c01166{left:999.999027pt;}
}





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

.ir_c01167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_2ee0e967690ce53c7698d8b3.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01167;src:url('chunks/assets/font_3fc6b14ae9e67c68b2753e2a.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01167;src:url('chunks/assets/font_bfd099199ddb4a3fe70a145e.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01167;src:url('chunks/assets/font_a08a8230714bea038aed4ee3.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01167;src:url('chunks/assets/font_c5dacd87d5f8a50f46404179.woff2')format("woff");}.ff5_c01167{font-family:ff5_c01167;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01167;src:url('chunks/assets/font_986818c73f7c93c252a4d282.woff2')format("woff");}.ff6_c01167{font-family:ff6_c01167;line-height:1.432129;font-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_c01167{transform:matrix(0.201456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201456,0.000000,0.000000,0.250000,0,0);}
.m5_c01167{transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202991,0.000000,0.000000,0.250000,0,0);}
.m10_c01167{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m4_c01167{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.m7_c01167{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m6_c01167{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.m3_c01167{transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);}
.mf_c01167{transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228070,0.000000,0.000000,0.250000,0,0);}
.m2_c01167{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.me_c01167{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.mb_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01167{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m8_c01167{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m9_c01167{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.mc_c01167{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_c01167{transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);}
.m0_c01167{transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298729,0.000000,0.000000,0.250000,0,0);}
.v0_c01167{vertical-align:0.000000px;}
.lsb_c01167{letter-spacing:-8.139600px;}
.ls9_c01167{letter-spacing:-7.531350px;}
.ls12_c01167{letter-spacing:-5.723685px;}
.lsc_c01167{letter-spacing:-5.053350px;}
.ls14_c01167{letter-spacing:-5.008050px;}
.lsa_c01167{letter-spacing:-4.650450px;}
.lse_c01167{letter-spacing:-3.694275px;}
.lsd_c01167{letter-spacing:-2.652675px;}
.ls10_c01167{letter-spacing:-1.727100px;}
.lsf_c01167{letter-spacing:0.000000px;}
.ls5_c01167{letter-spacing:0.716100px;}
.ls13_c01167{letter-spacing:0.748845px;}
.ls18_c01167{letter-spacing:0.820800px;}
.ls16_c01167{letter-spacing:1.283693px;}
.ls8_c01167{letter-spacing:1.432665px;}
.ls6_c01167{letter-spacing:2.148300px;}
.ls0_c01167{letter-spacing:2.859285px;}
.ls17_c01167{letter-spacing:3.201600px;}
.ls15_c01167{letter-spacing:3.262050px;}
.ls1_c01167{letter-spacing:3.575850px;}
.ls19_c01167{letter-spacing:3.586800px;}
.ls4_c01167{letter-spacing:4.291950px;}
.ls3_c01167{letter-spacing:5.008050px;}
.ls2_c01167{letter-spacing:5.723685px;}
.ls7_c01167{letter-spacing:6.440250px;}
.ls11_c01167{letter-spacing:8.583900px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01167{word-spacing:0.000000px;}
._3_c01167{width:2.335366px;}
._5_c01167{width:3.707703px;}
._b_c01167{width:4.863972px;}
._4_c01167{width:6.429627px;}
._1_c01167{width:8.295586px;}
._a_c01167{width:9.414626px;}
._8_c01167{width:10.523122px;}
._0_c01167{width:11.733231px;}
._2_c01167{width:12.816781px;}
._9_c01167{width:15.856557px;}
._d_c01167{width:17.232700px;}
._6_c01167{width:19.848196px;}
._c_c01167{width:23.626378px;}
._7_c01167{width:30.701761px;}
.fc0_c01167{color:transparent;}
.fs9_c01167{font-size:40.500000px;}
.fsc_c01167{font-size:42.750000px;}
.fsb_c01167{font-size:44.250000px;}
.fsa_c01167{font-size:45.000000px;}
.fsd_c01167{font-size:45.750000px;}
.fs6_c01167{font-size:46.500000px;}
.fs7_c01167{font-size:48.000000px;}
.fs8_c01167{font-size:50.250000px;}
.fs1_c01167{font-size:77.250000px;}
.fs3_c01167{font-size:84.750000px;}
.fs2_c01167{font-size:85.500000px;}
.fs4_c01167{font-size:87.750000px;}
.fs0_c01167{font-size:88.500000px;}
.fs5_c01167{font-size:97.500000px;}
.y0_c01167{bottom:0.000000px;}
.ye_c01167{bottom:88.979685px;}
.yd_c01167{bottom:99.780435px;}
.yc_c01167{bottom:99.780900px;}
.yb_c01167{bottom:110.760750px;}
.ya_c01167{bottom:110.760975px;}
.y9_c01167{bottom:120.659685px;}
.y7_c01167{bottom:132.000990px;}
.y8_c01167{bottom:132.001050px;}
.y5_c01167{bottom:142.260660px;}
.y6_c01167{bottom:142.261185px;}
.y3_c01167{bottom:153.060120px;}
.y4_c01167{bottom:153.060285px;}
.y2_c01167{bottom:162.779850px;}
.y1_c01167{bottom:767.760135px;}
.ha_c01167{height:42.240234px;}
.hc_c01167{height:43.407349px;}
.hb_c01167{height:44.143066px;}
.hd_c01167{height:44.586914px;}
.he_c01167{height:44.878784px;}
.h7_c01167{height:45.614502px;}
.h8_c01167{height:47.085938px;}
.h9_c01167{height:49.293091px;}
.h2_c01167{height:80.569336px;}
.h4_c01167{height:85.412109px;}
.h3_c01167{height:86.167969px;}
.h5_c01167{height:88.435547px;}
.h1_c01167{height:89.191406px;}
.h6_c01167{height:96.357422px;}
.h0_c01167{height:892.500000px;}
.w0_c01167{width:1263.000000px;}
.x0_c01167{left:0.000000px;}
.x1_c01167{left:71.639700px;}
.x2_c01167{left:162.000000px;}
.x3_c01167{left:201.959400px;}
.x4_c01167{left:352.799535px;}
.x5_c01167{left:390.598530px;}
.x6_c01167{left:486.359250px;}
.x7_c01167{left:535.319820px;}
.x8_c01167{left:622.799520px;}
.x9_c01167{left:839.158815px;}
.xc_c01167{left:840.240075px;}
.xd_c01167{left:880.558590px;}
.xe_c01167{left:894.958275px;}
.xf_c01167{left:1016.278755px;}
.x10_c01167{left:1033.559055px;}
.x14_c01167{left:1042.199340px;}
.x11_c01167{left:1052.279850px;}
.x12_c01167{left:1069.919490px;}
.x15_c01167{left:1075.679070px;}
.x16_c01167{left:1086.479640px;}
.x17_c01167{left:1109.158815px;}
.x13_c01167{left:1113.118740px;}
.xa_c01167{left:1118.519070px;}
.xb_c01167{left:1132.559685px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.lsb_c01167{letter-spacing:-7.235200pt;}
.ls9_c01167{letter-spacing:-6.694533pt;}
.ls12_c01167{letter-spacing:-5.087720pt;}
.lsc_c01167{letter-spacing:-4.491867pt;}
.ls14_c01167{letter-spacing:-4.451600pt;}
.lsa_c01167{letter-spacing:-4.133733pt;}
.lse_c01167{letter-spacing:-3.283800pt;}
.lsd_c01167{letter-spacing:-2.357933pt;}
.ls10_c01167{letter-spacing:-1.535200pt;}
.lsf_c01167{letter-spacing:0.000000pt;}
.ls5_c01167{letter-spacing:0.636533pt;}
.ls13_c01167{letter-spacing:0.665640pt;}
.ls18_c01167{letter-spacing:0.729600pt;}
.ls16_c01167{letter-spacing:1.141060pt;}
.ls8_c01167{letter-spacing:1.273480pt;}
.ls6_c01167{letter-spacing:1.909600pt;}
.ls0_c01167{letter-spacing:2.541587pt;}
.ls17_c01167{letter-spacing:2.845867pt;}
.ls15_c01167{letter-spacing:2.899600pt;}
.ls1_c01167{letter-spacing:3.178533pt;}
.ls19_c01167{letter-spacing:3.188267pt;}
.ls4_c01167{letter-spacing:3.815067pt;}
.ls3_c01167{letter-spacing:4.451600pt;}
.ls2_c01167{letter-spacing:5.087720pt;}
.ls7_c01167{letter-spacing:5.724667pt;}
.ls11_c01167{letter-spacing:7.630133pt;}
.ws0_c01167{word-spacing:0.000000pt;}
._3_c01167{width:2.075881pt;}
._5_c01167{width:3.295736pt;}
._b_c01167{width:4.323530pt;}
._4_c01167{width:5.715224pt;}
._1_c01167{width:7.373854pt;}
._a_c01167{width:8.368557pt;}
._8_c01167{width:9.353886pt;}
._0_c01167{width:10.429538pt;}
._2_c01167{width:11.392694pt;}
._9_c01167{width:14.094718pt;}
._d_c01167{width:15.317955pt;}
._6_c01167{width:17.642841pt;}
._c_c01167{width:21.001225pt;}
._7_c01167{width:27.290454pt;}
.fs9_c01167{font-size:36.000000pt;}
.fsc_c01167{font-size:38.000000pt;}
.fsb_c01167{font-size:39.333333pt;}
.fsa_c01167{font-size:40.000000pt;}
.fsd_c01167{font-size:40.666667pt;}
.fs6_c01167{font-size:41.333333pt;}
.fs7_c01167{font-size:42.666667pt;}
.fs8_c01167{font-size:44.666667pt;}
.fs1_c01167{font-size:68.666667pt;}
.fs3_c01167{font-size:75.333333pt;}
.fs2_c01167{font-size:76.000000pt;}
.fs4_c01167{font-size:78.000000pt;}
.fs0_c01167{font-size:78.666667pt;}
.fs5_c01167{font-size:86.666667pt;}
.y0_c01167{bottom:0.000000pt;}
.ye_c01167{bottom:79.093053pt;}
.yd_c01167{bottom:88.693720pt;}
.yc_c01167{bottom:88.694133pt;}
.yb_c01167{bottom:98.454000pt;}
.ya_c01167{bottom:98.454200pt;}
.y9_c01167{bottom:107.253053pt;}
.y7_c01167{bottom:117.334213pt;}
.y8_c01167{bottom:117.334267pt;}
.y5_c01167{bottom:126.453920pt;}
.y6_c01167{bottom:126.454387pt;}
.y3_c01167{bottom:136.053440pt;}
.y4_c01167{bottom:136.053587pt;}
.y2_c01167{bottom:144.693200pt;}
.y1_c01167{bottom:682.453453pt;}
.ha_c01167{height:37.546875pt;}
.hc_c01167{height:38.584310pt;}
.hb_c01167{height:39.238281pt;}
.hd_c01167{height:39.632812pt;}
.he_c01167{height:39.892253pt;}
.h7_c01167{height:40.546224pt;}
.h8_c01167{height:41.854167pt;}
.h9_c01167{height:43.816081pt;}
.h2_c01167{height:71.617188pt;}
.h4_c01167{height:75.921875pt;}
.h3_c01167{height:76.593750pt;}
.h5_c01167{height:78.609375pt;}
.h1_c01167{height:79.281250pt;}
.h6_c01167{height:85.651042pt;}
.h0_c01167{height:793.333333pt;}
.w0_c01167{width:1122.666667pt;}
.x0_c01167{left:0.000000pt;}
.x1_c01167{left:63.679733pt;}
.x2_c01167{left:144.000000pt;}
.x3_c01167{left:179.519467pt;}
.x4_c01167{left:313.599587pt;}
.x5_c01167{left:347.198693pt;}
.x6_c01167{left:432.319333pt;}
.x7_c01167{left:475.839840pt;}
.x8_c01167{left:553.599573pt;}
.x9_c01167{left:745.918947pt;}
.xc_c01167{left:746.880067pt;}
.xd_c01167{left:782.718747pt;}
.xe_c01167{left:795.518467pt;}
.xf_c01167{left:903.358893pt;}
.x10_c01167{left:918.719160pt;}
.x14_c01167{left:926.399413pt;}
.x11_c01167{left:935.359867pt;}
.x12_c01167{left:951.039547pt;}
.x15_c01167{left:956.159173pt;}
.x16_c01167{left:965.759680pt;}
.x17_c01167{left:985.918947pt;}
.x13_c01167{left:989.438880pt;}
.xa_c01167{left:994.239173pt;}
.xb_c01167{left:1006.719720pt;}
}





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

.ir_c01168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_aa3a43e4aadbb12aaf906aae.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01168;src:url('chunks/assets/font_5ba3736cd40ad8b12c6edbb8.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01168;src:url('chunks/assets/font_e59b745b016fe677199bd4e0.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01168;src:url('chunks/assets/font_aa8b549526e1826ec8b6c2f9.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:1.432129;font-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_c01168{transform:matrix(0.196721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196721,0.000000,0.000000,0.250000,0,0);}
.md_c01168{transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204918,0.000000,0.000000,0.250000,0,0);}
.m4_c01168{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.m3_c01168{transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209052,0.000000,0.000000,0.250000,0,0);}
.m5_c01168{transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222458,0.000000,0.000000,0.250000,0,0);}
.m7_c01168{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m2_c01168{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m8_c01168{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mb_c01168{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.mc_c01168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01168{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.mf_c01168{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m9_c01168{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m1_c01168{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m0_c01168{transform:matrix(0.293367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293367,0.000000,0.000000,0.250000,0,0);}
.ma_c01168{transform:matrix(0.349057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349057,0.000000,0.000000,0.250000,0,0);}
.v1_c01168{vertical-align:-1.445700px;}
.v0_c01168{vertical-align:0.000000px;}
.lse_c01168{letter-spacing:-12.636518px;}
.ls10_c01168{letter-spacing:-8.559600px;}
.lsf_c01168{letter-spacing:-6.468000px;}
.lsa_c01168{letter-spacing:-4.845960px;}
.lsd_c01168{letter-spacing:-4.213485px;}
.ls11_c01168{letter-spacing:-3.223725px;}
.ls12_c01168{letter-spacing:-2.813168px;}
.lsc_c01168{letter-spacing:-0.914760px;}
.ls9_c01168{letter-spacing:-0.694200px;}
.lsb_c01168{letter-spacing:0.000000px;}
.ls4_c01168{letter-spacing:0.704550px;}
.ls0_c01168{letter-spacing:1.409558px;}
.ls13_c01168{letter-spacing:1.502400px;}
.ls14_c01168{letter-spacing:1.829542px;}
.ls1_c01168{letter-spacing:2.113650px;}
.ls3_c01168{letter-spacing:2.813168px;}
.ls5_c01168{letter-spacing:3.518175px;}
.ls2_c01168{letter-spacing:4.222725px;}
.ls15_c01168{letter-spacing:4.767150px;}
.ls7_c01168{letter-spacing:4.927275px;}
.ls6_c01168{letter-spacing:6.336375px;}
.ls8_c01168{letter-spacing:6.395235px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01168{word-spacing:0.000000px;}
._c_c01168{margin-left:-30.922721px;}
._0_c01168{width:2.784500px;}
._a_c01168{width:4.611016px;}
._1_c01168{width:5.773692px;}
._4_c01168{width:7.503908px;}
._8_c01168{width:9.055854px;}
._3_c01168{width:10.385729px;}
._2_c01168{width:12.610002px;}
._7_c01168{width:15.214071px;}
._6_c01168{width:17.036399px;}
._5_c01168{width:18.529982px;}
._b_c01168{width:19.992124px;}
._9_c01168{width:28.870228px;}
.fc0_c01168{color:transparent;}
.fs8_c01168{font-size:39.750000px;}
.fs7_c01168{font-size:45.750000px;}
.fsa_c01168{font-size:46.500000px;}
.fs9_c01168{font-size:48.000000px;}
.fs0_c01168{font-size:73.500000px;}
.fs1_c01168{font-size:78.000000px;}
.fs6_c01168{font-size:82.500000px;}
.fs5_c01168{font-size:83.250000px;}
.fs2_c01168{font-size:84.000000px;}
.fs3_c01168{font-size:87.000000px;}
.fs4_c01168{font-size:88.500000px;}
.y0_c01168{bottom:0.000000px;}
.yd_c01168{bottom:83.219445px;}
.ye_c01168{bottom:83.220150px;}
.yc_c01168{bottom:94.019940px;}
.yb_c01168{bottom:104.460045px;}
.ya_c01168{bottom:114.900150px;}
.y9_c01168{bottom:125.341485px;}
.y7_c01168{bottom:136.140330px;}
.y8_c01168{bottom:136.140750px;}
.y5_c01168{bottom:146.579955px;}
.y6_c01168{bottom:146.580435px;}
.y4_c01168{bottom:157.020060px;}
.y3_c01168{bottom:167.461395px;}
.y2_c01168{bottom:177.901500px;}
.y1_c01168{bottom:762.180135px;}
.h9_c01168{height:41.458008px;}
.h8_c01168{height:44.878784px;}
.ha_c01168{height:47.085938px;}
.hb_c01168{height:48.498047px;}
.h1_c01168{height:76.658203px;}
.h2_c01168{height:81.351562px;}
.h7_c01168{height:83.144531px;}
.h6_c01168{height:83.900391px;}
.h3_c01168{height:84.656250px;}
.h4_c01168{height:87.679688px;}
.h5_c01168{height:89.191406px;}
.h0_c01168{height:892.500000px;}
.w0_c01168{width:1263.000000px;}
.x0_c01168{left:0.000000px;}
.x1_c01168{left:69.838515px;}
.x2_c01168{left:159.119415px;}
.x3_c01168{left:199.439685px;}
.x4_c01168{left:349.198785px;}
.x5_c01168{left:385.559100px;}
.x6_c01168{left:479.159415px;}
.x7_c01168{left:517.678530px;}
.x8_c01168{left:564.839535px;}
.x9_c01168{left:675.718545px;}
.xa_c01168{left:827.998905px;}
.xb_c01168{left:829.439580px;}
.xe_c01168{left:871.199805px;}
.xf_c01168{left:884.159370px;}
.x10_c01168{left:1030.319190px;}
.x11_c01168{left:1064.519070px;}
.x12_c01168{left:1075.679070px;}
.xc_c01168{left:1090.439670px;}
.x13_c01168{left:1097.998905px;}
.xd_c01168{left:1121.759040px;}
@media print{
.v1_c01168{vertical-align:-1.285067pt;}
.v0_c01168{vertical-align:0.000000pt;}
.lse_c01168{letter-spacing:-11.232460pt;}
.ls10_c01168{letter-spacing:-7.608533pt;}
.lsf_c01168{letter-spacing:-5.749333pt;}
.lsa_c01168{letter-spacing:-4.307520pt;}
.lsd_c01168{letter-spacing:-3.745320pt;}
.ls11_c01168{letter-spacing:-2.865533pt;}
.ls12_c01168{letter-spacing:-2.500593pt;}
.lsc_c01168{letter-spacing:-0.813120pt;}
.ls9_c01168{letter-spacing:-0.617067pt;}
.lsb_c01168{letter-spacing:0.000000pt;}
.ls4_c01168{letter-spacing:0.626267pt;}
.ls0_c01168{letter-spacing:1.252940pt;}
.ls13_c01168{letter-spacing:1.335467pt;}
.ls14_c01168{letter-spacing:1.626260pt;}
.ls1_c01168{letter-spacing:1.878800pt;}
.ls3_c01168{letter-spacing:2.500593pt;}
.ls5_c01168{letter-spacing:3.127267pt;}
.ls2_c01168{letter-spacing:3.753533pt;}
.ls15_c01168{letter-spacing:4.237467pt;}
.ls7_c01168{letter-spacing:4.379800pt;}
.ls6_c01168{letter-spacing:5.632333pt;}
.ls8_c01168{letter-spacing:5.684653pt;}
.ws0_c01168{word-spacing:0.000000pt;}
._c_c01168{margin-left:-27.486863pt;}
._0_c01168{width:2.475111pt;}
._a_c01168{width:4.098681pt;}
._1_c01168{width:5.132171pt;}
._4_c01168{width:6.670140pt;}
._8_c01168{width:8.049648pt;}
._3_c01168{width:9.231759pt;}
._2_c01168{width:11.208891pt;}
._7_c01168{width:13.523619pt;}
._6_c01168{width:15.143466pt;}
._5_c01168{width:16.471095pt;}
._b_c01168{width:17.770777pt;}
._9_c01168{width:25.662425pt;}
.fs8_c01168{font-size:35.333333pt;}
.fs7_c01168{font-size:40.666667pt;}
.fsa_c01168{font-size:41.333333pt;}
.fs9_c01168{font-size:42.666667pt;}
.fs0_c01168{font-size:65.333333pt;}
.fs1_c01168{font-size:69.333333pt;}
.fs6_c01168{font-size:73.333333pt;}
.fs5_c01168{font-size:74.000000pt;}
.fs2_c01168{font-size:74.666667pt;}
.fs3_c01168{font-size:77.333333pt;}
.fs4_c01168{font-size:78.666667pt;}
.y0_c01168{bottom:0.000000pt;}
.yd_c01168{bottom:73.972840pt;}
.ye_c01168{bottom:73.973467pt;}
.yc_c01168{bottom:83.573280pt;}
.yb_c01168{bottom:92.853373pt;}
.ya_c01168{bottom:102.133467pt;}
.y9_c01168{bottom:111.414653pt;}
.y7_c01168{bottom:121.013627pt;}
.y8_c01168{bottom:121.014000pt;}
.y5_c01168{bottom:130.293293pt;}
.y6_c01168{bottom:130.293720pt;}
.y4_c01168{bottom:139.573387pt;}
.y3_c01168{bottom:148.854573pt;}
.y2_c01168{bottom:158.134667pt;}
.y1_c01168{bottom:677.493453pt;}
.h9_c01168{height:36.851562pt;}
.h8_c01168{height:39.892253pt;}
.ha_c01168{height:41.854167pt;}
.hb_c01168{height:43.109375pt;}
.h1_c01168{height:68.140625pt;}
.h2_c01168{height:72.312500pt;}
.h7_c01168{height:73.906250pt;}
.h6_c01168{height:74.578125pt;}
.h3_c01168{height:75.250000pt;}
.h4_c01168{height:77.937500pt;}
.h5_c01168{height:79.281250pt;}
.h0_c01168{height:793.333333pt;}
.w0_c01168{width:1122.666667pt;}
.x0_c01168{left:0.000000pt;}
.x1_c01168{left:62.078680pt;}
.x2_c01168{left:141.439480pt;}
.x3_c01168{left:177.279720pt;}
.x4_c01168{left:310.398920pt;}
.x5_c01168{left:342.719200pt;}
.x6_c01168{left:425.919480pt;}
.x7_c01168{left:460.158693pt;}
.x8_c01168{left:502.079587pt;}
.x9_c01168{left:600.638707pt;}
.xa_c01168{left:735.999027pt;}
.xb_c01168{left:737.279627pt;}
.xe_c01168{left:774.399827pt;}
.xf_c01168{left:785.919440pt;}
.x10_c01168{left:915.839280pt;}
.x11_c01168{left:946.239173pt;}
.x12_c01168{left:956.159173pt;}
.xc_c01168{left:969.279707pt;}
.x13_c01168{left:975.999027pt;}
.xd_c01168{left:997.119147pt;}
}





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

.ir_c01169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_74fa8a4554c04a9cda56063e.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01169;src:url('chunks/assets/font_b4b632b78deb1b10b9e80d99.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01169;src:url('chunks/assets/font_9f7145d7f09e13d289185c0f.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01169;src:url('chunks/assets/font_6dc7aee5550eb3b1b337756b.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01169;src:url('chunks/assets/font_014df2a9750275f1d21da873.woff2')format("woff");}.ff5_c01169{font-family:ff5_c01169;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01169;src:url('chunks/assets/font_0dc38e86db2a104eac4b2315.woff2')format("woff");}.ff6_c01169{font-family:ff6_c01169;line-height:1.364746;font-style:normal;font-weight: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_c01169;src:url('chunks/assets/font_121fe9f384dc311f21d9c2c1.woff2')format("woff");}.ff7_c01169{font-family:ff7_c01169;line-height:1.432129;font-style:normal;font-weight: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_c01169;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff8_c01169{font-family:ff8_c01169;line-height:1.284180;font-style:normal;font-weight: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_c01169;src:url('chunks/assets/font_24c37be67cd26c14789f5618.woff2')format("woff");}.ff9_c01169{font-family:ff9_c01169;line-height:1.281250;font-style:normal;font-weight: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_c01169;src:url('chunks/assets/font_548f5b1da1aca33268805ce6.woff2')format("woff");}.ffa_c01169{font-family:ffa_c01169;line-height:1.432129;font-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_c01169{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_c01169{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m22_c01169{transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189873,0.000000,0.000000,0.250000,0,0);}
.m31_c01169{transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190972,0.000000,0.000000,0.250000,0,0);}
.m21_c01169{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m32_c01169{transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);}
.m3a_c01169{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m11_c01169{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.m25_c01169{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m35_c01169{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m2c_c01169{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m2d_c01169{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m39_c01169{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m26_c01169{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_c01169{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m23_c01169{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m2f_c01169{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m3f_c01169{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m2b_c01169{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m1e_c01169{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m36_c01169{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m3e_c01169{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m2_c01169{transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228972,0.000000,0.000000,0.250000,0,0);}
.m28_c01169{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m19_c01169{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m29_c01169{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m37_c01169{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m3_c01169{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m2e_c01169{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m17_c01169{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m13_c01169{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m16_c01169{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_c01169{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m18_c01169{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m34_c01169{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m10_c01169{transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);}
.m3b_c01169{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.m6_c01169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01169{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m38_c01169{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m40_c01169{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m44_c01169{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m1f_c01169{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m20_c01169{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m2a_c01169{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.me_c01169{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m3c_c01169{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);}
.m30_c01169{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m3d_c01169{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m1a_c01169{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m9_c01169{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m24_c01169{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.mc_c01169{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m45_c01169{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m1d_c01169{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m1b_c01169{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m12_c01169{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m0_c01169{transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);}
.m41_c01169{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.ma_c01169{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.md_c01169{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.mf_c01169{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m33_c01169{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.m1_c01169{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m42_c01169{transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310185,0.000000,0.000000,0.250000,0,0);}
.mb_c01169{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m5_c01169{transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);}
.m43_c01169{transform:matrix(0.954167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954167,0.000000,0.000000,0.250000,0,0);}
.m7_c01169{transform:matrix(2.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.687500,0.000000,0.000000,0.250000,0,0);}
.m4_c01169{transform:matrix(18.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.241667,0.000000,0.000000,0.250000,0,0);}
.v1_c01169{vertical-align:-2.881620px;}
.v0_c01169{vertical-align:0.000000px;}
.ls1d_c01169{letter-spacing:-17.083028px;}
.ls4b_c01169{letter-spacing:-10.980900px;}
.ls4c_c01169{letter-spacing:-10.374000px;}
.ls27_c01169{letter-spacing:-9.624375px;}
.ls49_c01169{letter-spacing:-8.465310px;}
.ls3f_c01169{letter-spacing:-8.341808px;}
.ls45_c01169{letter-spacing:-7.403063px;}
.ls1a_c01169{letter-spacing:-7.289438px;}
.ls33_c01169{letter-spacing:-7.060950px;}
.ls2b_c01169{letter-spacing:-6.659438px;}
.ls3e_c01169{letter-spacing:-6.236370px;}
.ls4a_c01169{letter-spacing:-5.503500px;}
.ls3b_c01169{letter-spacing:-5.468775px;}
.ls3d_c01169{letter-spacing:-5.388653px;}
.ls30_c01169{letter-spacing:-5.180625px;}
.ls3c_c01169{letter-spacing:-5.022000px;}
.ls1e_c01169{letter-spacing:-4.989600px;}
.ls2c_c01169{letter-spacing:-4.935525px;}
.ls2f_c01169{letter-spacing:-4.497075px;}
.ls28_c01169{letter-spacing:-4.438125px;}
.ls2d_c01169{letter-spacing:-4.267950px;}
.ls34_c01169{letter-spacing:-4.069800px;}
.ls4d_c01169{letter-spacing:-4.065600px;}
.ls12_c01169{letter-spacing:-3.831675px;}
.ls24_c01169{letter-spacing:-3.701250px;}
.ls43_c01169{letter-spacing:-3.605625px;}
.ls13_c01169{letter-spacing:-3.586800px;}
.ls22_c01169{letter-spacing:-3.435548px;}
.lsb_c01169{letter-spacing:-3.404835px;}
.ls25_c01169{letter-spacing:-3.345600px;}
.ls17_c01169{letter-spacing:-2.998800px;}
.ls35_c01169{letter-spacing:-2.998125px;}
.ls1b_c01169{letter-spacing:-2.958750px;}
.ls37_c01169{letter-spacing:-2.919300px;}
.ls44_c01169{letter-spacing:-2.878200px;}
.ls46_c01169{letter-spacing:-2.480625px;}
.ls1c_c01169{letter-spacing:-2.250773px;}
.ls23_c01169{letter-spacing:-2.247750px;}
.ls19_c01169{letter-spacing:-2.222438px;}
.ls41_c01169{letter-spacing:-2.219445px;}
.ls2a_c01169{letter-spacing:-2.194500px;}
.ls29_c01169{letter-spacing:-2.193923px;}
.lsc_c01169{letter-spacing:-2.137500px;}
.ls8_c01169{letter-spacing:-2.076750px;}
.ls20_c01169{letter-spacing:-2.053673px;}
.ls48_c01169{letter-spacing:-1.998000px;}
.ls42_c01169{letter-spacing:-1.733625px;}
.ls5_c01169{letter-spacing:-1.637100px;}
.ls40_c01169{letter-spacing:-1.607400px;}
.ls6_c01169{letter-spacing:-1.599675px;}
.ls39_c01169{letter-spacing:-1.598850px;}
.ls21_c01169{letter-spacing:-1.561800px;}
.ls1f_c01169{letter-spacing:-1.499670px;}
.ls26_c01169{letter-spacing:-1.479938px;}
.ls3a_c01169{letter-spacing:-1.443000px;}
.lsd_c01169{letter-spacing:-1.321178px;}
.ls7_c01169{letter-spacing:-0.817748px;}
.ls2e_c01169{letter-spacing:-0.769500px;}
.ls18_c01169{letter-spacing:-0.742500px;}
.ls11_c01169{letter-spacing:-0.637245px;}
.ls4_c01169{letter-spacing:0.000000px;}
.lse_c01169{letter-spacing:0.545040px;}
.ls10_c01169{letter-spacing:0.646350px;}
.ls15_c01169{letter-spacing:0.668850px;}
.lsf_c01169{letter-spacing:0.707602px;}
.ls1_c01169{letter-spacing:0.729045px;}
.ls47_c01169{letter-spacing:0.739500px;}
.ls32_c01169{letter-spacing:0.742500px;}
.ls36_c01169{letter-spacing:0.810900px;}
.ls14_c01169{letter-spacing:0.896700px;}
.lsa_c01169{letter-spacing:0.907200px;}
.ls16_c01169{letter-spacing:2.344650px;}
.ls0_c01169{letter-spacing:2.454848px;}
.ls3_c01169{letter-spacing:5.343750px;}
.ls2_c01169{letter-spacing:6.659438px;}
.ls38_c01169{letter-spacing:11.736300px;}
.ls31_c01169{letter-spacing:17.896410px;}
.ls9_c01169{letter-spacing:152.250285px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01169{word-spacing:0.000000px;}
._15_c01169{margin-left:-139.348362px;}
._14_c01169{margin-left:-87.637204px;}
._17_c01169{margin-left:-10.735638px;}
._10_c01169{margin-left:-6.783424px;}
._7_c01169{margin-left:-4.607556px;}
._f_c01169{margin-left:-2.840270px;}
._a_c01169{margin-left:-1.609697px;}
._16_c01169{width:1.043763px;}
._d_c01169{width:2.285829px;}
._2_c01169{width:3.417714px;}
._11_c01169{width:5.399586px;}
._8_c01169{width:6.533289px;}
._3_c01169{width:8.657112px;}
._b_c01169{width:9.806980px;}
._12_c01169{width:11.216664px;}
._19_c01169{width:12.341315px;}
._4_c01169{width:13.449227px;}
._c_c01169{width:15.292895px;}
._6_c01169{width:16.295507px;}
._5_c01169{width:17.482263px;}
._13_c01169{width:19.743987px;}
._9_c01169{width:20.767382px;}
._18_c01169{width:22.547872px;}
._e_c01169{width:25.795243px;}
._0_c01169{width:29.098290px;}
._1_c01169{width:267.319655px;}
.fc0_c01169{color:transparent;}
.fs5_c01169{font-size:15.750000px;}
.fs6_c01169{font-size:16.500000px;}
.fs7_c01169{font-size:21.000000px;}
.fs4_c01169{font-size:22.500000px;}
.fsd_c01169{font-size:23.250000px;}
.fsb_c01169{font-size:24.000000px;}
.fsc_c01169{font-size:24.750000px;}
.fse_c01169{font-size:25.500000px;}
.fsa_c01169{font-size:27.750000px;}
.fs9_c01169{font-size:28.500000px;}
.fs8_c01169{font-size:31.500000px;}
.fsf_c01169{font-size:35.250000px;}
.fs10_c01169{font-size:36.750000px;}
.fs11_c01169{font-size:38.250000px;}
.fs20_c01169{font-size:45.000000px;}
.fs1b_c01169{font-size:49.500000px;}
.fs1d_c01169{font-size:50.250000px;}
.fs18_c01169{font-size:51.000000px;}
.fs14_c01169{font-size:52.500000px;}
.fs1e_c01169{font-size:52.885140px;}
.fs1c_c01169{font-size:54.000000px;}
.fs13_c01169{font-size:54.750000px;}
.fs17_c01169{font-size:55.500000px;}
.fs12_c01169{font-size:56.250000px;}
.fs15_c01169{font-size:57.000000px;}
.fs16_c01169{font-size:57.750000px;}
.fs19_c01169{font-size:58.500000px;}
.fs1a_c01169{font-size:59.250000px;}
.fs1_c01169{font-size:78.750000px;}
.fs2_c01169{font-size:80.250000px;}
.fs1f_c01169{font-size:81.000000px;}
.fs3_c01169{font-size:82.500000px;}
.fs0_c01169{font-size:85.500000px;}
.fs21_c01169{font-size:124.500000px;}
.fs22_c01169{font-size:142.500000px;}
.y0_c01169{bottom:0.000000px;}
.y6_c01169{bottom:51.541650px;}
.y5_c01169{bottom:59.100750px;}
.y4_c01169{bottom:59.820900px;}
.y3_c01169{bottom:65.941335px;}
.y2_c01169{bottom:67.380000px;}
.y36_c01169{bottom:180.421185px;}
.y35_c01169{bottom:209.940885px;}
.y34_c01169{bottom:240.900885px;}
.y33_c01169{bottom:300.301845px;}
.y32_c01169{bottom:315.421785px;}
.y31_c01169{bottom:330.900285px;}
.y2f_c01169{bottom:346.018860px;}
.y30_c01169{bottom:346.020285px;}
.y2e_c01169{bottom:360.780255px;}
.y2d_c01169{bottom:375.541620px;}
.y2c_c01169{bottom:375.542085px;}
.y2b_c01169{bottom:390.662025px;}
.y2a_c01169{bottom:405.420600px;}
.y29_c01169{bottom:420.180270px;}
.y28_c01169{bottom:435.480240px;}
.y26_c01169{bottom:450.059535px;}
.y27_c01169{bottom:450.060285px;}
.y25_c01169{bottom:465.541035px;}
.y24_c01169{bottom:465.541530px;}
.y22_c01169{bottom:480.299370px;}
.y23_c01169{bottom:480.300105px;}
.y21_c01169{bottom:495.060750px;}
.y20_c01169{bottom:495.060795px;}
.y1e_c01169{bottom:510.180630px;}
.y1f_c01169{bottom:510.180720px;}
.y1c_c01169{bottom:525.300450px;}
.y1d_c01169{bottom:525.300570px;}
.y1b_c01169{bottom:540.061845px;}
.y1a_c01169{bottom:554.820420px;}
.y19_c01169{bottom:569.581005px;}
.y18_c01169{bottom:584.701035px;}
.y17_c01169{bottom:614.581650px;}
.y16_c01169{bottom:629.340585px;}
.y15_c01169{bottom:629.340630px;}
.y13_c01169{bottom:644.460480px;}
.y14_c01169{bottom:644.460570px;}
.y12_c01169{bottom:659.580420px;}
.y11_c01169{bottom:674.341185px;}
.y10_c01169{bottom:689.099490px;}
.yf_c01169{bottom:703.860855px;}
.yd_c01169{bottom:718.980105px;}
.ye_c01169{bottom:718.980885px;}
.yc_c01169{bottom:733.741470px;}
.yb_c01169{bottom:733.741560px;}
.ya_c01169{bottom:748.861500px;}
.y9_c01169{bottom:763.981335px;}
.y8_c01169{bottom:778.740420px;}
.y7_c01169{bottom:793.860255px;}
.y1_c01169{bottom:853.621575px;}
.h6_c01169{height:16.426758px;}
.h7_c01169{height:16.628906px;}
.h8_c01169{height:20.610352px;}
.h5_c01169{height:23.466797px;}
.hc_c01169{height:23.718750px;}
.he_c01169{height:24.249023px;}
.h10_c01169{height:25.014404px;}
.hd_c01169{height:25.813477px;}
.hf_c01169{height:26.595703px;}
.hb_c01169{height:28.942383px;}
.ha_c01169{height:29.724609px;}
.h9_c01169{height:31.130859px;}
.h11_c01169{height:34.836914px;}
.h12_c01169{height:36.319336px;}
.h13_c01169{height:37.037109px;}
.h14_c01169{height:37.801758px;}
.h2e_c01169{height:46.933594px;}
.h19_c01169{height:51.525879px;}
.h27_c01169{height:51.626953px;}
.h2c_c01169{height:51.903873px;}
.h2b_c01169{height:52.409180px;}
.h28_c01169{height:52.998047px;}
.h21_c01169{height:53.191406px;}
.h1e_c01169{height:53.734131px;}
.h29_c01169{height:54.421875px;}
.h20_c01169{height:54.470215px;}
.h18_c01169{height:55.177734px;}
.h16_c01169{height:55.178833px;}
.h15_c01169{height:55.206299px;}
.h26_c01169{height:55.933594px;}
.h1a_c01169{height:55.942383px;}
.h2a_c01169{height:56.332031px;}
.h1c_c01169{height:56.678467px;}
.h17_c01169{height:56.689453px;}
.h1b_c01169{height:57.073242px;}
.h22_c01169{height:57.414551px;}
.h1d_c01169{height:57.445312px;}
.h25_c01169{height:57.814453px;}
.h24_c01169{height:58.150635px;}
.h1f_c01169{height:58.201172px;}
.h23_c01169{height:58.555664px;}
.h2_c01169{height:77.288818px;}
.h3_c01169{height:78.760986px;}
.h4_c01169{height:80.969238px;}
.h2d_c01169{height:84.480469px;}
.h1_c01169{height:86.167969px;}
.h2f_c01169{height:129.849609px;}
.h30_c01169{height:148.623047px;}
.h0_c01169{height:892.500000px;}
.w0_c01169{width:1263.000000px;}
.x0_c01169{left:0.000000px;}
.x1_c01169{left:84.599100px;}
.x6_c01169{left:92.159850px;}
.xa_c01169{left:160.198785px;}
.x7_c01169{left:163.079400px;}
.x2_c01169{left:174.239250px;}
.x3_c01169{left:215.279850px;}
.xb_c01169{left:237.238785px;}
.x8_c01169{left:278.638500px;}
.xc_c01169{left:314.998950px;}
.x4_c01169{left:327.958350px;}
.x12_c01169{left:359.279250px;}
.x5_c01169{left:366.120000px;}
.x13_c01169{left:386.279250px;}
.xd_c01169{left:392.399820px;}
.xe_c01169{left:468.358665px;}
.x14_c01169{left:469.798920px;}
.x15_c01169{left:514.799520px;}
.xf_c01169{left:546.479685px;}
.x16_c01169{left:565.559685px;}
.x10_c01169{left:623.158770px;}
.x9_c01169{left:701.279850px;}
.x11_c01169{left:779.758575px;}
.x1a_c01169{left:924.479640px;}
.x33_c01169{left:925.558485px;}
.x42_c01169{left:926.638545px;}
.x4e_c01169{left:927.719415px;}
.x57_c01169{left:928.799145px;}
.x5b_c01169{left:929.877600px;}
.x60_c01169{left:930.958380px;}
.x63_c01169{left:932.759040px;}
.x3d_c01169{left:939.238770px;}
.x2e_c01169{left:948.599115px;}
.x34_c01169{left:950.039340px;}
.x61_c01169{left:953.279205px;}
.x17_c01169{left:963.719055px;}
.x3f_c01169{left:965.879520px;}
.x39_c01169{left:966.958920px;}
.x58_c01169{left:968.039985px;}
.x62_c01169{left:970.559685px;}
.x3b_c01169{left:972.000000px;}
.x1d_c01169{left:980.279205px;}
.x59_c01169{left:983.878320px;}
.x24_c01169{left:984.959385px;}
.x54_c01169{left:993.958920px;}
.x5a_c01169{left:995.039985px;}
.x52_c01169{left:996.839535px;}
.x1e_c01169{left:999.359250px;}
.x25_c01169{left:1002.599025px;}
.x55_c01169{left:1005.838905px;}
.x5e_c01169{left:1010.159820px;}
.x3a_c01169{left:1013.399775px;}
.x5c_c01169{left:1019.159370px;}
.x1f_c01169{left:1022.758575px;}
.x46_c01169{left:1024.559685px;}
.x3c_c01169{left:1029.599025px;}
.x20_c01169{left:1037.878320px;}
.x5d_c01169{left:1038.959385px;}
.x18_c01169{left:1043.278755px;}
.x53_c01169{left:1045.798560px;}
.x26_c01169{left:1046.879520px;}
.x47_c01169{left:1048.319820px;}
.x5f_c01169{left:1055.158815px;}
.x2b_c01169{left:1066.318815px;}
.x19_c01169{left:1068.838530px;}
.x27_c01169{left:1070.639655px;}
.x2c_c01169{left:1074.958920px;}
.x4b_c01169{left:1076.399235px;}
.x4f_c01169{left:1078.198785px;}
.x48_c01169{left:1080.359250px;}
.x4c_c01169{left:1089.719520px;}
.x2f_c01169{left:1095.479190px;}
.x43_c01169{left:1099.798560px;}
.x21_c01169{left:1100.879520px;}
.x4d_c01169{left:1104.119385px;}
.x30_c01169{left:1115.279205px;}
.x49_c01169{left:1121.399775px;}
.x40_c01169{left:1122.479190px;}
.x28_c01169{left:1128.599670px;}
.x56_c01169{left:1134.718590px;}
.x41_c01169{left:1136.519715px;}
.x4a_c01169{left:1139.398590px;}
.x29_c01169{left:1145.519070px;}
.x35_c01169{left:1148.038875px;}
.x1b_c01169{left:1149.119940px;}
.x36_c01169{left:1159.559685px;}
.x22_c01169{left:1161.718590px;}
.x1c_c01169{left:1164.599025px;}
.x50_c01169{left:1166.398590px;}
.x23_c01169{left:1179.359805px;}
.x44_c01169{left:1180.798560px;}
.x37_c01169{left:1185.478635px;}
.x31_c01169{left:1187.279850px;}
.x2d_c01169{left:1189.079400px;}
.x32_c01169{left:1203.119940px;}
.x2a_c01169{left:1207.798560px;}
.x51_c01169{left:1209.599670px;}
.x38_c01169{left:1216.799565px;}
.x45_c01169{left:1217.878875px;}
.x3e_c01169{left:1219.678530px;}
@media print{
.v1_c01169{vertical-align:-2.561440pt;}
.v0_c01169{vertical-align:0.000000pt;}
.ls1d_c01169{letter-spacing:-15.184913pt;}
.ls4b_c01169{letter-spacing:-9.760800pt;}
.ls4c_c01169{letter-spacing:-9.221333pt;}
.ls27_c01169{letter-spacing:-8.555000pt;}
.ls49_c01169{letter-spacing:-7.524720pt;}
.ls3f_c01169{letter-spacing:-7.414940pt;}
.ls45_c01169{letter-spacing:-6.580500pt;}
.ls1a_c01169{letter-spacing:-6.479500pt;}
.ls33_c01169{letter-spacing:-6.276400pt;}
.ls2b_c01169{letter-spacing:-5.919500pt;}
.ls3e_c01169{letter-spacing:-5.543440pt;}
.ls4a_c01169{letter-spacing:-4.892000pt;}
.ls3b_c01169{letter-spacing:-4.861133pt;}
.ls3d_c01169{letter-spacing:-4.789913pt;}
.ls30_c01169{letter-spacing:-4.605000pt;}
.ls3c_c01169{letter-spacing:-4.464000pt;}
.ls1e_c01169{letter-spacing:-4.435200pt;}
.ls2c_c01169{letter-spacing:-4.387133pt;}
.ls2f_c01169{letter-spacing:-3.997400pt;}
.ls28_c01169{letter-spacing:-3.945000pt;}
.ls2d_c01169{letter-spacing:-3.793733pt;}
.ls34_c01169{letter-spacing:-3.617600pt;}
.ls4d_c01169{letter-spacing:-3.613867pt;}
.ls12_c01169{letter-spacing:-3.405933pt;}
.ls24_c01169{letter-spacing:-3.290000pt;}
.ls43_c01169{letter-spacing:-3.205000pt;}
.ls13_c01169{letter-spacing:-3.188267pt;}
.ls22_c01169{letter-spacing:-3.053820pt;}
.lsb_c01169{letter-spacing:-3.026520pt;}
.ls25_c01169{letter-spacing:-2.973867pt;}
.ls17_c01169{letter-spacing:-2.665600pt;}
.ls35_c01169{letter-spacing:-2.665000pt;}
.ls1b_c01169{letter-spacing:-2.630000pt;}
.ls37_c01169{letter-spacing:-2.594933pt;}
.ls44_c01169{letter-spacing:-2.558400pt;}
.ls46_c01169{letter-spacing:-2.205000pt;}
.ls1c_c01169{letter-spacing:-2.000687pt;}
.ls23_c01169{letter-spacing:-1.998000pt;}
.ls19_c01169{letter-spacing:-1.975500pt;}
.ls41_c01169{letter-spacing:-1.972840pt;}
.ls2a_c01169{letter-spacing:-1.950667pt;}
.ls29_c01169{letter-spacing:-1.950153pt;}
.lsc_c01169{letter-spacing:-1.900000pt;}
.ls8_c01169{letter-spacing:-1.846000pt;}
.ls20_c01169{letter-spacing:-1.825487pt;}
.ls48_c01169{letter-spacing:-1.776000pt;}
.ls42_c01169{letter-spacing:-1.541000pt;}
.ls5_c01169{letter-spacing:-1.455200pt;}
.ls40_c01169{letter-spacing:-1.428800pt;}
.ls6_c01169{letter-spacing:-1.421933pt;}
.ls39_c01169{letter-spacing:-1.421200pt;}
.ls21_c01169{letter-spacing:-1.388267pt;}
.ls1f_c01169{letter-spacing:-1.333040pt;}
.ls26_c01169{letter-spacing:-1.315500pt;}
.ls3a_c01169{letter-spacing:-1.282667pt;}
.lsd_c01169{letter-spacing:-1.174380pt;}
.ls7_c01169{letter-spacing:-0.726887pt;}
.ls2e_c01169{letter-spacing:-0.684000pt;}
.ls18_c01169{letter-spacing:-0.660000pt;}
.ls11_c01169{letter-spacing:-0.566440pt;}
.ls4_c01169{letter-spacing:0.000000pt;}
.lse_c01169{letter-spacing:0.484480pt;}
.ls10_c01169{letter-spacing:0.574533pt;}
.ls15_c01169{letter-spacing:0.594533pt;}
.lsf_c01169{letter-spacing:0.628980pt;}
.ls1_c01169{letter-spacing:0.648040pt;}
.ls47_c01169{letter-spacing:0.657333pt;}
.ls32_c01169{letter-spacing:0.660000pt;}
.ls36_c01169{letter-spacing:0.720800pt;}
.ls14_c01169{letter-spacing:0.797067pt;}
.lsa_c01169{letter-spacing:0.806400pt;}
.ls16_c01169{letter-spacing:2.084133pt;}
.ls0_c01169{letter-spacing:2.182087pt;}
.ls3_c01169{letter-spacing:4.750000pt;}
.ls2_c01169{letter-spacing:5.919500pt;}
.ls38_c01169{letter-spacing:10.432267pt;}
.ls31_c01169{letter-spacing:15.907920pt;}
.ls9_c01169{letter-spacing:135.333587pt;}
.ws0_c01169{word-spacing:0.000000pt;}
._15_c01169{margin-left:-123.865211pt;}
._14_c01169{margin-left:-77.899737pt;}
._17_c01169{margin-left:-9.542789pt;}
._10_c01169{margin-left:-6.029711pt;}
._7_c01169{margin-left:-4.095605pt;}
._f_c01169{margin-left:-2.524684pt;}
._a_c01169{margin-left:-1.430842pt;}
._16_c01169{width:0.927789pt;}
._d_c01169{width:2.031848pt;}
._2_c01169{width:3.037968pt;}
._11_c01169{width:4.799632pt;}
._8_c01169{width:5.807368pt;}
._3_c01169{width:7.695211pt;}
._b_c01169{width:8.717316pt;}
._12_c01169{width:9.970368pt;}
._19_c01169{width:10.970058pt;}
._4_c01169{width:11.954868pt;}
._c_c01169{width:13.593684pt;}
._6_c01169{width:14.484895pt;}
._5_c01169{width:15.539789pt;}
._13_c01169{width:17.550211pt;}
._9_c01169{width:18.459895pt;}
._18_c01169{width:20.042553pt;}
._e_c01169{width:22.929105pt;}
._0_c01169{width:25.865146pt;}
._1_c01169{width:237.617471pt;}
.fs5_c01169{font-size:14.000000pt;}
.fs6_c01169{font-size:14.666667pt;}
.fs7_c01169{font-size:18.666667pt;}
.fs4_c01169{font-size:20.000000pt;}
.fsd_c01169{font-size:20.666667pt;}
.fsb_c01169{font-size:21.333333pt;}
.fsc_c01169{font-size:22.000000pt;}
.fse_c01169{font-size:22.666667pt;}
.fsa_c01169{font-size:24.666667pt;}
.fs9_c01169{font-size:25.333333pt;}
.fs8_c01169{font-size:28.000000pt;}
.fsf_c01169{font-size:31.333333pt;}
.fs10_c01169{font-size:32.666667pt;}
.fs11_c01169{font-size:34.000000pt;}
.fs20_c01169{font-size:40.000000pt;}
.fs1b_c01169{font-size:44.000000pt;}
.fs1d_c01169{font-size:44.666667pt;}
.fs18_c01169{font-size:45.333333pt;}
.fs14_c01169{font-size:46.666667pt;}
.fs1e_c01169{font-size:47.009013pt;}
.fs1c_c01169{font-size:48.000000pt;}
.fs13_c01169{font-size:48.666667pt;}
.fs17_c01169{font-size:49.333333pt;}
.fs12_c01169{font-size:50.000000pt;}
.fs15_c01169{font-size:50.666667pt;}
.fs16_c01169{font-size:51.333333pt;}
.fs19_c01169{font-size:52.000000pt;}
.fs1a_c01169{font-size:52.666667pt;}
.fs1_c01169{font-size:70.000000pt;}
.fs2_c01169{font-size:71.333333pt;}
.fs1f_c01169{font-size:72.000000pt;}
.fs3_c01169{font-size:73.333333pt;}
.fs0_c01169{font-size:76.000000pt;}
.fs21_c01169{font-size:110.666667pt;}
.fs22_c01169{font-size:126.666667pt;}
.y0_c01169{bottom:0.000000pt;}
.y6_c01169{bottom:45.814800pt;}
.y5_c01169{bottom:52.534000pt;}
.y4_c01169{bottom:53.174133pt;}
.y3_c01169{bottom:58.614520pt;}
.y2_c01169{bottom:59.893333pt;}
.y36_c01169{bottom:160.374387pt;}
.y35_c01169{bottom:186.614120pt;}
.y34_c01169{bottom:214.134120pt;}
.y33_c01169{bottom:266.934973pt;}
.y32_c01169{bottom:280.374920pt;}
.y31_c01169{bottom:294.133587pt;}
.y2f_c01169{bottom:307.572320pt;}
.y30_c01169{bottom:307.573587pt;}
.y2e_c01169{bottom:320.693560pt;}
.y2d_c01169{bottom:333.814773pt;}
.y2c_c01169{bottom:333.815187pt;}
.y2b_c01169{bottom:347.255133pt;}
.y2a_c01169{bottom:360.373867pt;}
.y29_c01169{bottom:373.493573pt;}
.y28_c01169{bottom:387.093547pt;}
.y26_c01169{bottom:400.052920pt;}
.y27_c01169{bottom:400.053587pt;}
.y25_c01169{bottom:413.814253pt;}
.y24_c01169{bottom:413.814693pt;}
.y22_c01169{bottom:426.932773pt;}
.y23_c01169{bottom:426.933427pt;}
.y21_c01169{bottom:440.054000pt;}
.y20_c01169{bottom:440.054040pt;}
.y1e_c01169{bottom:453.493893pt;}
.y1f_c01169{bottom:453.493973pt;}
.y1c_c01169{bottom:466.933733pt;}
.y1d_c01169{bottom:466.933840pt;}
.y1b_c01169{bottom:480.054973pt;}
.y1a_c01169{bottom:493.173707pt;}
.y19_c01169{bottom:506.294227pt;}
.y18_c01169{bottom:519.734253pt;}
.y17_c01169{bottom:546.294800pt;}
.y16_c01169{bottom:559.413853pt;}
.y15_c01169{bottom:559.413893pt;}
.y13_c01169{bottom:572.853760pt;}
.y14_c01169{bottom:572.853840pt;}
.y12_c01169{bottom:586.293707pt;}
.y11_c01169{bottom:599.414387pt;}
.y10_c01169{bottom:612.532880pt;}
.yf_c01169{bottom:625.654093pt;}
.yd_c01169{bottom:639.093427pt;}
.ye_c01169{bottom:639.094120pt;}
.yc_c01169{bottom:652.214640pt;}
.yb_c01169{bottom:652.214720pt;}
.ya_c01169{bottom:665.654667pt;}
.y9_c01169{bottom:679.094520pt;}
.y8_c01169{bottom:692.213707pt;}
.y7_c01169{bottom:705.653560pt;}
.y1_c01169{bottom:758.774733pt;}
.h6_c01169{height:14.601562pt;}
.h7_c01169{height:14.781250pt;}
.h8_c01169{height:18.320312pt;}
.h5_c01169{height:20.859375pt;}
.hc_c01169{height:21.083333pt;}
.he_c01169{height:21.554687pt;}
.h10_c01169{height:22.235026pt;}
.hd_c01169{height:22.945312pt;}
.hf_c01169{height:23.640625pt;}
.hb_c01169{height:25.726562pt;}
.ha_c01169{height:26.421875pt;}
.h9_c01169{height:27.671875pt;}
.h11_c01169{height:30.966146pt;}
.h12_c01169{height:32.283854pt;}
.h13_c01169{height:32.921875pt;}
.h14_c01169{height:33.601562pt;}
.h2e_c01169{height:41.718750pt;}
.h19_c01169{height:45.800781pt;}
.h27_c01169{height:45.890625pt;}
.h2c_c01169{height:46.136776pt;}
.h2b_c01169{height:46.585938pt;}
.h28_c01169{height:47.109375pt;}
.h21_c01169{height:47.281250pt;}
.h1e_c01169{height:47.763672pt;}
.h29_c01169{height:48.375000pt;}
.h20_c01169{height:48.417969pt;}
.h18_c01169{height:49.046875pt;}
.h16_c01169{height:49.047852pt;}
.h15_c01169{height:49.072266pt;}
.h26_c01169{height:49.718750pt;}
.h1a_c01169{height:49.726562pt;}
.h2a_c01169{height:50.072917pt;}
.h1c_c01169{height:50.380859pt;}
.h17_c01169{height:50.390625pt;}
.h1b_c01169{height:50.731771pt;}
.h22_c01169{height:51.035156pt;}
.h1d_c01169{height:51.062500pt;}
.h25_c01169{height:51.390625pt;}
.h24_c01169{height:51.689453pt;}
.h1f_c01169{height:51.734375pt;}
.h23_c01169{height:52.049479pt;}
.h2_c01169{height:68.701172pt;}
.h3_c01169{height:70.009766pt;}
.h4_c01169{height:71.972656pt;}
.h2d_c01169{height:75.093750pt;}
.h1_c01169{height:76.593750pt;}
.h2f_c01169{height:115.421875pt;}
.h30_c01169{height:132.109375pt;}
.h0_c01169{height:793.333333pt;}
.w0_c01169{width:1122.666667pt;}
.x0_c01169{left:0.000000pt;}
.x1_c01169{left:75.199200pt;}
.x6_c01169{left:81.919867pt;}
.xa_c01169{left:142.398920pt;}
.x7_c01169{left:144.959467pt;}
.x2_c01169{left:154.879333pt;}
.x3_c01169{left:191.359867pt;}
.xb_c01169{left:210.878920pt;}
.x8_c01169{left:247.678667pt;}
.xc_c01169{left:279.999067pt;}
.x4_c01169{left:291.518533pt;}
.x12_c01169{left:319.359333pt;}
.x5_c01169{left:325.440000pt;}
.x13_c01169{left:343.359333pt;}
.xd_c01169{left:348.799840pt;}
.xe_c01169{left:416.318813pt;}
.x14_c01169{left:417.599040pt;}
.x15_c01169{left:457.599573pt;}
.xf_c01169{left:485.759720pt;}
.x16_c01169{left:502.719720pt;}
.x10_c01169{left:553.918907pt;}
.x9_c01169{left:623.359867pt;}
.x11_c01169{left:693.118733pt;}
.x1a_c01169{left:821.759680pt;}
.x33_c01169{left:822.718653pt;}
.x42_c01169{left:823.678707pt;}
.x4e_c01169{left:824.639480pt;}
.x57_c01169{left:825.599240pt;}
.x5b_c01169{left:826.557867pt;}
.x60_c01169{left:827.518560pt;}
.x63_c01169{left:829.119147pt;}
.x3d_c01169{left:834.878907pt;}
.x2e_c01169{left:843.199213pt;}
.x34_c01169{left:844.479413pt;}
.x61_c01169{left:847.359293pt;}
.x17_c01169{left:856.639160pt;}
.x3f_c01169{left:858.559573pt;}
.x39_c01169{left:859.519040pt;}
.x58_c01169{left:860.479987pt;}
.x62_c01169{left:862.719720pt;}
.x3b_c01169{left:864.000000pt;}
.x1d_c01169{left:871.359293pt;}
.x59_c01169{left:874.558507pt;}
.x24_c01169{left:875.519453pt;}
.x54_c01169{left:883.519040pt;}
.x5a_c01169{left:884.479987pt;}
.x52_c01169{left:886.079587pt;}
.x1e_c01169{left:888.319333pt;}
.x25_c01169{left:891.199133pt;}
.x55_c01169{left:894.079027pt;}
.x5e_c01169{left:897.919840pt;}
.x3a_c01169{left:900.799800pt;}
.x5c_c01169{left:905.919440pt;}
.x1f_c01169{left:909.118733pt;}
.x46_c01169{left:910.719720pt;}
.x3c_c01169{left:915.199133pt;}
.x20_c01169{left:922.558507pt;}
.x5d_c01169{left:923.519453pt;}
.x18_c01169{left:927.358893pt;}
.x53_c01169{left:929.598720pt;}
.x26_c01169{left:930.559573pt;}
.x47_c01169{left:931.839840pt;}
.x5f_c01169{left:937.918947pt;}
.x2b_c01169{left:947.838947pt;}
.x19_c01169{left:950.078693pt;}
.x27_c01169{left:951.679693pt;}
.x2c_c01169{left:955.519040pt;}
.x4b_c01169{left:956.799320pt;}
.x4f_c01169{left:958.398920pt;}
.x48_c01169{left:960.319333pt;}
.x4c_c01169{left:968.639573pt;}
.x2f_c01169{left:973.759280pt;}
.x43_c01169{left:977.598720pt;}
.x21_c01169{left:978.559573pt;}
.x4d_c01169{left:981.439453pt;}
.x30_c01169{left:991.359293pt;}
.x49_c01169{left:996.799800pt;}
.x40_c01169{left:997.759280pt;}
.x28_c01169{left:1003.199707pt;}
.x56_c01169{left:1008.638747pt;}
.x41_c01169{left:1010.239747pt;}
.x4a_c01169{left:1012.798747pt;}
.x29_c01169{left:1018.239173pt;}
.x35_c01169{left:1020.479000pt;}
.x1b_c01169{left:1021.439947pt;}
.x36_c01169{left:1030.719720pt;}
.x22_c01169{left:1032.638747pt;}
.x1c_c01169{left:1035.199133pt;}
.x50_c01169{left:1036.798747pt;}
.x23_c01169{left:1048.319827pt;}
.x44_c01169{left:1049.598720pt;}
.x37_c01169{left:1053.758787pt;}
.x31_c01169{left:1055.359867pt;}
.x2d_c01169{left:1056.959467pt;}
.x32_c01169{left:1069.439947pt;}
.x2a_c01169{left:1073.598720pt;}
.x51_c01169{left:1075.199707pt;}
.x38_c01169{left:1081.599613pt;}
.x45_c01169{left:1082.559000pt;}
.x3e_c01169{left:1084.158693pt;}
}





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

.ir_c01170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_898b3c9a77e65e9d328f8761.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01170;src:url('chunks/assets/font_6350693c0d036e3e458db9b5.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:1.432129;font-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_c01170{transform:matrix(0.200192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200192,0.000000,0.000000,0.250000,0,0);}
.m2_c01170{transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221230,0.000000,0.000000,0.250000,0,0);}
.m0_c01170{transform:matrix(0.228831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228831,0.000000,0.000000,0.250000,0,0);}
.m4_c01170{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m1_c01170{transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.ls4_c01170{letter-spacing:-12.442050px;}
.ls1_c01170{letter-spacing:-4.248000px;}
.ls3_c01170{letter-spacing:4.678425px;}
.ls2_c01170{letter-spacing:12.721590px;}
.ls0_c01170{letter-spacing:17.205000px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01170{word-spacing:0.000000px;}
.fc0_c01170{color:transparent;}
.fs1_c01170{font-size:177.000000px;}
.fs0_c01170{font-size:186.000000px;}
.fs2_c01170{font-size:189.000000px;}
.fs4_c01170{font-size:193.500000px;}
.fs3_c01170{font-size:195.750000px;}
.y0_c01170{bottom:0.000000px;}
.y2_c01170{bottom:424.141335px;}
.y1_c01170{bottom:469.860255px;}
.h1_c01170{height:182.548828px;}
.h2_c01170{height:184.605469px;}
.h3_c01170{height:185.493164px;}
.h5_c01170{height:189.909668px;}
.h4_c01170{height:192.117920px;}
.h0_c01170{height:892.500000px;}
.w0_c01170{width:1263.000000px;}
.x0_c01170{left:0.000000px;}
.x1_c01170{left:286.919535px;}
.x4_c01170{left:406.438665px;}
.x2_c01170{left:536.399235px;}
.x3_c01170{left:630.719520px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.ls4_c01170{letter-spacing:-11.059600pt;}
.ls1_c01170{letter-spacing:-3.776000pt;}
.ls3_c01170{letter-spacing:4.158600pt;}
.ls2_c01170{letter-spacing:11.308080pt;}
.ls0_c01170{letter-spacing:15.293333pt;}
.ws0_c01170{word-spacing:0.000000pt;}
.fs1_c01170{font-size:157.333333pt;}
.fs0_c01170{font-size:165.333333pt;}
.fs2_c01170{font-size:168.000000pt;}
.fs4_c01170{font-size:172.000000pt;}
.fs3_c01170{font-size:174.000000pt;}
.y0_c01170{bottom:0.000000pt;}
.y2_c01170{bottom:377.014520pt;}
.y1_c01170{bottom:417.653560pt;}
.h1_c01170{height:162.265625pt;}
.h2_c01170{height:164.093750pt;}
.h3_c01170{height:164.882812pt;}
.h5_c01170{height:168.808594pt;}
.h4_c01170{height:170.771484pt;}
.h0_c01170{height:793.333333pt;}
.w0_c01170{width:1122.666667pt;}
.x0_c01170{left:0.000000pt;}
.x1_c01170{left:255.039587pt;}
.x4_c01170{left:361.278813pt;}
.x2_c01170{left:476.799320pt;}
.x3_c01170{left:560.639573pt;}
}





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

.ir_c01171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_3c1aa979d2796f00517c62b9.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01171;src:url('chunks/assets/font_dc4e30636542bd606bc82820.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01171;src:url('chunks/assets/font_16e611c902748905cdc93b9a.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01171;src:url('chunks/assets/font_133c9848e690fdf908914303.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01171;src:url('chunks/assets/font_da579efd8efcd94068a0cffb.woff2')format("woff");}.ff5_c01171{font-family:ff5_c01171;line-height:1.432129;font-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_c01171{transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172794,0.000000,0.000000,0.250000,0,0);}
.m1e_c01171{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m16_c01171{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.me_c01171{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m20_c01171{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m26_c01171{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_c01171{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m14_c01171{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m11_c01171{transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219136,0.000000,0.000000,0.250000,0,0);}
.m5_c01171{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.ma_c01171{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m1f_c01171{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m6_c01171{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m2_c01171{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m13_c01171{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m4_c01171{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m22_c01171{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m18_c01171{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m3_c01171{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m1d_c01171{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m25_c01171{transform:matrix(0.240097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240097,0.000000,0.000000,0.250000,0,0);}
.m8_c01171{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m15_c01171{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m21_c01171{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.mc_c01171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c01171{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m1c_c01171{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m9_c01171{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.mb_c01171{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.md_c01171{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m7_c01171{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m1_c01171{transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260965,0.000000,0.000000,0.250000,0,0);}
.m19_c01171{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m24_c01171{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1b_c01171{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m17_c01171{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.m0_c01171{transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278509,0.000000,0.000000,0.250000,0,0);}
.m27_c01171{transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281646,0.000000,0.000000,0.250000,0,0);}
.m12_c01171{transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);}
.m1a_c01171{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.mf_c01171{transform:matrix(0.482895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482895,0.000000,0.000000,0.250000,0,0);}
.m23_c01171{transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551471,0.000000,0.000000,0.250000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.ls2f_c01171{letter-spacing:-18.834000px;}
.ls6_c01171{letter-spacing:-12.937005px;}
.lsa_c01171{letter-spacing:-8.341808px;}
.ls17_c01171{letter-spacing:-7.922325px;}
.ls30_c01171{letter-spacing:-7.205648px;}
.ls1a_c01171{letter-spacing:-7.108448px;}
.ls2a_c01171{letter-spacing:-6.506325px;}
.ls8_c01171{letter-spacing:-6.468525px;}
.ls25_c01171{letter-spacing:-6.412500px;}
.ls22_c01171{letter-spacing:-6.185025px;}
.ls18_c01171{letter-spacing:-5.765175px;}
.ls14_c01171{letter-spacing:-5.249475px;}
.ls19_c01171{letter-spacing:-5.065253px;}
.ls2b_c01171{letter-spacing:-5.042475px;}
.ls1f_c01171{letter-spacing:-4.626375px;}
.ls10_c01171{letter-spacing:-4.379400px;}
.ls31_c01171{letter-spacing:-4.340100px;}
.ls12_c01171{letter-spacing:-4.319775px;}
.ls5_c01171{letter-spacing:-4.035600px;}
.ls1d_c01171{letter-spacing:-3.747600px;}
.ls32_c01171{letter-spacing:-3.701775px;}
.lsb_c01171{letter-spacing:-3.602550px;}
.ls27_c01171{letter-spacing:-3.480750px;}
.ls23_c01171{letter-spacing:-3.386250px;}
.ls26_c01171{letter-spacing:-3.296400px;}
.ls21_c01171{letter-spacing:-3.078000px;}
.ls15_c01171{letter-spacing:-2.879850px;}
.ls1c_c01171{letter-spacing:-2.662500px;}
.ls20_c01171{letter-spacing:-2.471798px;}
.ls24_c01171{letter-spacing:-2.444730px;}
.lsf_c01171{letter-spacing:-2.315925px;}
.ls1e_c01171{letter-spacing:-2.251800px;}
.ls28_c01171{letter-spacing:-2.192805px;}
.ls16_c01171{letter-spacing:-2.165430px;}
.lse_c01171{letter-spacing:-2.163173px;}
.ls7_c01171{letter-spacing:-1.653150px;}
.ls2d_c01171{letter-spacing:-1.522800px;}
.lsd_c01171{letter-spacing:-1.440473px;}
.ls11_c01171{letter-spacing:-0.845250px;}
.ls2c_c01171{letter-spacing:-0.837563px;}
.ls2e_c01171{letter-spacing:-0.815228px;}
.ls29_c01171{letter-spacing:-0.792300px;}
.lsc_c01171{letter-spacing:-0.722700px;}
.ls13_c01171{letter-spacing:0.000000px;}
.ls4_c01171{letter-spacing:0.722700px;}
.ls1_c01171{letter-spacing:1.440473px;}
.ls9_c01171{letter-spacing:1.644750px;}
.ls2_c01171{letter-spacing:2.163173px;}
.ls0_c01171{letter-spacing:4.270103px;}
.ls3_c01171{letter-spacing:4.319775px;}
.ls1b_c01171{letter-spacing:5.989950px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01171{word-spacing:0.000000px;}
._9_c01171{margin-left:-24.520940px;}
._4_c01171{margin-left:-6.263544px;}
._f_c01171{margin-left:-5.040544px;}
._3_c01171{margin-left:-3.063608px;}
._c_c01171{margin-left:-1.489402px;}
._b_c01171{width:1.589681px;}
._8_c01171{width:2.827809px;}
._5_c01171{width:3.944075px;}
._14_c01171{width:5.003631px;}
._12_c01171{width:6.020483px;}
._e_c01171{width:7.308952px;}
._7_c01171{width:9.253153px;}
._10_c01171{width:10.396794px;}
._d_c01171{width:11.753384px;}
._a_c01171{width:13.336869px;}
._6_c01171{width:14.681299px;}
._2_c01171{width:15.707660px;}
._13_c01171{width:17.489801px;}
._11_c01171{width:20.967118px;}
._1_c01171{width:22.781648px;}
._0_c01171{width:25.612829px;}
._15_c01171{width:27.194180px;}
._16_c01171{width:34.778900px;}
.fc0_c01171{color:transparent;}
.fs14_c01171{font-size:25.500000px;}
.fs12_c01171{font-size:48.750000px;}
.fsd_c01171{font-size:50.250000px;}
.fs16_c01171{font-size:51.000000px;}
.fs7_c01171{font-size:52.500000px;}
.fsc_c01171{font-size:53.250000px;}
.fs6_c01171{font-size:54.000000px;}
.fs5_c01171{font-size:54.750000px;}
.fs15_c01171{font-size:55.193400px;}
.fs13_c01171{font-size:55.500000px;}
.fs10_c01171{font-size:56.250000px;}
.fs9_c01171{font-size:57.000000px;}
.fs8_c01171{font-size:57.750000px;}
.fse_c01171{font-size:58.500000px;}
.fs4_c01171{font-size:59.250000px;}
.fsf_c01171{font-size:60.000000px;}
.fsb_c01171{font-size:60.750000px;}
.fs3_c01171{font-size:76.500000px;}
.fs1_c01171{font-size:80.250000px;}
.fs2_c01171{font-size:83.250000px;}
.fs0_c01171{font-size:85.500000px;}
.fs11_c01171{font-size:96.750000px;}
.fsa_c01171{font-size:142.500000px;}
.y0_c01171{bottom:0.000000px;}
.y27_c01171{bottom:351.061335px;}
.y25_c01171{bottom:365.820300px;}
.y26_c01171{bottom:365.820435px;}
.y24_c01171{bottom:381.121635px;}
.y23_c01171{bottom:385.981335px;}
.y22_c01171{bottom:395.700390px;}
.y20_c01171{bottom:425.581605px;}
.y21_c01171{bottom:425.581650px;}
.y1f_c01171{bottom:440.702265px;}
.y1d_c01171{bottom:455.821305px;}
.y1e_c01171{bottom:455.821470px;}
.y1b_c01171{bottom:465.900285px;}
.y1c_c01171{bottom:471.300570px;}
.y1a_c01171{bottom:500.820420px;}
.y19_c01171{bottom:515.220105px;}
.y18_c01171{bottom:515.220930px;}
.y17_c01171{bottom:530.340135px;}
.y16_c01171{bottom:530.340960px;}
.y15_c01171{bottom:545.101545px;}
.y14_c01171{bottom:560.220750px;}
.y13_c01171{bottom:574.981335px;}
.y12_c01171{bottom:604.860255px;}
.y11_c01171{bottom:619.980285px;}
.yf_c01171{bottom:634.740825px;}
.y10_c01171{bottom:634.740870px;}
.ye_c01171{bottom:649.499955px;}
.yd_c01171{bottom:649.500360px;}
.yc_c01171{bottom:664.980885px;}
.yb_c01171{bottom:668.220750px;}
.ya_c01171{bottom:679.380570px;}
.y9_c01171{bottom:679.381125px;}
.y8_c01171{bottom:724.020270px;}
.y7_c01171{bottom:739.140930px;}
.y6_c01171{bottom:754.260135px;}
.y5_c01171{bottom:769.020720px;}
.y4_c01171{bottom:769.021635px;}
.y3_c01171{bottom:783.782220px;}
.y2_c01171{bottom:798.901425px;}
.y1_c01171{bottom:850.020720px;}
.h1c_c01171{height:26.595703px;}
.h18_c01171{height:50.844727px;}
.h11_c01171{height:52.261963px;}
.h12_c01171{height:52.409180px;}
.h1b_c01171{height:52.998047px;}
.h20_c01171{height:53.191406px;}
.h8_c01171{height:53.734131px;}
.h1e_c01171{height:54.169304px;}
.ha_c01171{height:54.421875px;}
.h19_c01171{height:54.470215px;}
.hb_c01171{height:54.755859px;}
.h9_c01171{height:55.177734px;}
.h15_c01171{height:55.206299px;}
.hd_c01171{height:55.942383px;}
.hc_c01171{height:56.678467px;}
.h1a_c01171{height:56.689453px;}
.he_c01171{height:57.073242px;}
.h13_c01171{height:57.414551px;}
.h16_c01171{height:57.445312px;}
.h1f_c01171{height:58.150635px;}
.h7_c01171{height:58.555664px;}
.h14_c01171{height:58.886719px;}
.h1d_c01171{height:59.296875px;}
.h10_c01171{height:60.038086px;}
.h5_c01171{height:75.080566px;}
.h6_c01171{height:78.760986px;}
.h3_c01171{height:80.876953px;}
.h4_c01171{height:81.705322px;}
.h2_c01171{height:84.498047px;}
.h1_c01171{height:86.167969px;}
.h17_c01171{height:94.954834px;}
.hf_c01171{height:148.623047px;}
.h0_c01171{height:892.500000px;}
.w0_c01171{width:1263.000000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:84.239850px;}
.x2_c01171{left:171.719565px;}
.x3_c01171{left:212.040000px;}
.x4_c01171{left:362.159850px;}
.x5_c01171{left:398.518665px;}
.x6_c01171{left:444.239220px;}
.x9_c01171{left:916.559940px;}
.x10_c01171{left:917.639325px;}
.x17_c01171{left:918.718500px;}
.x2b_c01171{left:920.519715px;}
.x39_c01171{left:927.358605px;}
.x24_c01171{left:930.959385px;}
.x1d_c01171{left:933.838530px;}
.xa_c01171{left:946.079400px;}
.x1e_c01171{left:952.199805px;}
.x7_c01171{left:955.078770px;}
.x18_c01171{left:956.159820px;}
.x3a_c01171{left:957.959385px;}
.x37_c01171{left:977.398590px;}
.x14_c01171{left:979.918305px;}
.x8_c01171{left:981.719520px;}
.xb_c01171{left:985.679715px;}
.x25_c01171{left:988.558590px;}
.x38_c01171{left:1005.118740px;}
.x2c_c01171{left:1008.358605px;}
.x26_c01171{left:1010.519070px;}
.x15_c01171{left:1015.199340px;}
.x3f_c01171{left:1019.159370px;}
.x32_c01171{left:1022.399235px;}
.x2d_c01171{left:1026.718500px;}
.x40_c01171{left:1029.599025px;}
.x33_c01171{left:1033.918305px;}
.x34_c01171{left:1050.839535px;}
.x2e_c01171{left:1056.239865px;}
.xc_c01171{left:1058.398590px;}
.x3b_c01171{left:1065.598575px;}
.x16_c01171{left:1072.439205px;}
.x1f_c01171{left:1082.878965px;}
.x19_c01171{left:1083.958275px;}
.x3c_c01171{left:1093.679715px;}
.x3e_c01171{left:1099.079955px;}
.xd_c01171{left:1109.878965px;}
.x22_c01171{left:1114.199805px;}
.x27_c01171{left:1120.679625px;}
.x23_c01171{left:1124.998905px;}
.xe_c01171{left:1127.159370px;}
.x11_c01171{left:1128.958920px;}
.x2f_c01171{left:1130.399235px;}
.x1a_c01171{left:1134.359250px;}
.x12_c01171{left:1141.199805px;}
.x1b_c01171{left:1149.838530px;}
.x35_c01171{left:1155.958920px;}
.xf_c01171{left:1160.279850px;}
.x28_c01171{left:1162.799565px;}
.x13_c01171{left:1165.678530px;}
.x1c_c01171{left:1167.479640px;}
.x20_c01171{left:1173.598575px;}
.x41_c01171{left:1181.159370px;}
.x30_c01171{left:1183.679070px;}
.x36_c01171{left:1192.678530px;}
.x3d_c01171{left:1194.479640px;}
.x29_c01171{left:1195.918305px;}
.x21_c01171{left:1201.318725px;}
.x2a_c01171{left:1204.919490px;}
.x31_c01171{left:1208.518620px;}
.x42_c01171{left:1210.319820px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls2f_c01171{letter-spacing:-16.741333pt;}
.ls6_c01171{letter-spacing:-11.499560pt;}
.lsa_c01171{letter-spacing:-7.414940pt;}
.ls17_c01171{letter-spacing:-7.042067pt;}
.ls30_c01171{letter-spacing:-6.405020pt;}
.ls1a_c01171{letter-spacing:-6.318620pt;}
.ls2a_c01171{letter-spacing:-5.783400pt;}
.ls8_c01171{letter-spacing:-5.749800pt;}
.ls25_c01171{letter-spacing:-5.700000pt;}
.ls22_c01171{letter-spacing:-5.497800pt;}
.ls18_c01171{letter-spacing:-5.124600pt;}
.ls14_c01171{letter-spacing:-4.666200pt;}
.ls19_c01171{letter-spacing:-4.502447pt;}
.ls2b_c01171{letter-spacing:-4.482200pt;}
.ls1f_c01171{letter-spacing:-4.112333pt;}
.ls10_c01171{letter-spacing:-3.892800pt;}
.ls31_c01171{letter-spacing:-3.857867pt;}
.ls12_c01171{letter-spacing:-3.839800pt;}
.ls5_c01171{letter-spacing:-3.587200pt;}
.ls1d_c01171{letter-spacing:-3.331200pt;}
.ls32_c01171{letter-spacing:-3.290467pt;}
.lsb_c01171{letter-spacing:-3.202267pt;}
.ls27_c01171{letter-spacing:-3.094000pt;}
.ls23_c01171{letter-spacing:-3.010000pt;}
.ls26_c01171{letter-spacing:-2.930133pt;}
.ls21_c01171{letter-spacing:-2.736000pt;}
.ls15_c01171{letter-spacing:-2.559867pt;}
.ls1c_c01171{letter-spacing:-2.366667pt;}
.ls20_c01171{letter-spacing:-2.197153pt;}
.ls24_c01171{letter-spacing:-2.173093pt;}
.lsf_c01171{letter-spacing:-2.058600pt;}
.ls1e_c01171{letter-spacing:-2.001600pt;}
.ls28_c01171{letter-spacing:-1.949160pt;}
.ls16_c01171{letter-spacing:-1.924827pt;}
.lse_c01171{letter-spacing:-1.922820pt;}
.ls7_c01171{letter-spacing:-1.469467pt;}
.ls2d_c01171{letter-spacing:-1.353600pt;}
.lsd_c01171{letter-spacing:-1.280420pt;}
.ls11_c01171{letter-spacing:-0.751333pt;}
.ls2c_c01171{letter-spacing:-0.744500pt;}
.ls2e_c01171{letter-spacing:-0.724647pt;}
.ls29_c01171{letter-spacing:-0.704267pt;}
.lsc_c01171{letter-spacing:-0.642400pt;}
.ls13_c01171{letter-spacing:0.000000pt;}
.ls4_c01171{letter-spacing:0.642400pt;}
.ls1_c01171{letter-spacing:1.280420pt;}
.ls9_c01171{letter-spacing:1.462000pt;}
.ls2_c01171{letter-spacing:1.922820pt;}
.ls0_c01171{letter-spacing:3.795647pt;}
.ls3_c01171{letter-spacing:3.839800pt;}
.ls1b_c01171{letter-spacing:5.324400pt;}
.ws0_c01171{word-spacing:0.000000pt;}
._9_c01171{margin-left:-21.796391pt;}
._4_c01171{margin-left:-5.567595pt;}
._f_c01171{margin-left:-4.480484pt;}
._3_c01171{margin-left:-2.723207pt;}
._c_c01171{margin-left:-1.323913pt;}
._b_c01171{width:1.413049pt;}
._8_c01171{width:2.513608pt;}
._5_c01171{width:3.505844pt;}
._14_c01171{width:4.447672pt;}
._12_c01171{width:5.351540pt;}
._e_c01171{width:6.496846pt;}
._7_c01171{width:8.225025pt;}
._10_c01171{width:9.241595pt;}
._d_c01171{width:10.447453pt;}
._a_c01171{width:11.854995pt;}
._6_c01171{width:13.050044pt;}
._2_c01171{width:13.962364pt;}
._13_c01171{width:15.546490pt;}
._11_c01171{width:18.637438pt;}
._1_c01171{width:20.250354pt;}
._0_c01171{width:22.766959pt;}
._15_c01171{width:24.172604pt;}
._16_c01171{width:30.914578pt;}
.fs14_c01171{font-size:22.666667pt;}
.fs12_c01171{font-size:43.333333pt;}
.fsd_c01171{font-size:44.666667pt;}
.fs16_c01171{font-size:45.333333pt;}
.fs7_c01171{font-size:46.666667pt;}
.fsc_c01171{font-size:47.333333pt;}
.fs6_c01171{font-size:48.000000pt;}
.fs5_c01171{font-size:48.666667pt;}
.fs15_c01171{font-size:49.060800pt;}
.fs13_c01171{font-size:49.333333pt;}
.fs10_c01171{font-size:50.000000pt;}
.fs9_c01171{font-size:50.666667pt;}
.fs8_c01171{font-size:51.333333pt;}
.fse_c01171{font-size:52.000000pt;}
.fs4_c01171{font-size:52.666667pt;}
.fsf_c01171{font-size:53.333333pt;}
.fsb_c01171{font-size:54.000000pt;}
.fs3_c01171{font-size:68.000000pt;}
.fs1_c01171{font-size:71.333333pt;}
.fs2_c01171{font-size:74.000000pt;}
.fs0_c01171{font-size:76.000000pt;}
.fs11_c01171{font-size:86.000000pt;}
.fsa_c01171{font-size:126.666667pt;}
.y0_c01171{bottom:0.000000pt;}
.y27_c01171{bottom:312.054520pt;}
.y25_c01171{bottom:325.173600pt;}
.y26_c01171{bottom:325.173720pt;}
.y24_c01171{bottom:338.774787pt;}
.y23_c01171{bottom:343.094520pt;}
.y22_c01171{bottom:351.733680pt;}
.y20_c01171{bottom:378.294760pt;}
.y21_c01171{bottom:378.294800pt;}
.y1f_c01171{bottom:391.735347pt;}
.y1d_c01171{bottom:405.174493pt;}
.y1e_c01171{bottom:405.174640pt;}
.y1b_c01171{bottom:414.133587pt;}
.y1c_c01171{bottom:418.933840pt;}
.y1a_c01171{bottom:445.173707pt;}
.y19_c01171{bottom:457.973427pt;}
.y18_c01171{bottom:457.974160pt;}
.y17_c01171{bottom:471.413453pt;}
.y16_c01171{bottom:471.414187pt;}
.y15_c01171{bottom:484.534707pt;}
.y14_c01171{bottom:497.974000pt;}
.y13_c01171{bottom:511.094520pt;}
.y12_c01171{bottom:537.653560pt;}
.y11_c01171{bottom:551.093587pt;}
.yf_c01171{bottom:564.214067pt;}
.y10_c01171{bottom:564.214107pt;}
.ye_c01171{bottom:577.333293pt;}
.yd_c01171{bottom:577.333653pt;}
.yc_c01171{bottom:591.094120pt;}
.yb_c01171{bottom:593.974000pt;}
.ya_c01171{bottom:603.893840pt;}
.y9_c01171{bottom:603.894333pt;}
.y8_c01171{bottom:643.573573pt;}
.y7_c01171{bottom:657.014160pt;}
.y6_c01171{bottom:670.453453pt;}
.y5_c01171{bottom:683.573973pt;}
.y4_c01171{bottom:683.574787pt;}
.y3_c01171{bottom:696.695307pt;}
.y2_c01171{bottom:710.134600pt;}
.y1_c01171{bottom:755.573973pt;}
.h1c_c01171{height:23.640625pt;}
.h18_c01171{height:45.195312pt;}
.h11_c01171{height:46.455078pt;}
.h12_c01171{height:46.585938pt;}
.h1b_c01171{height:47.109375pt;}
.h20_c01171{height:47.281250pt;}
.h8_c01171{height:47.763672pt;}
.h1e_c01171{height:48.150492pt;}
.ha_c01171{height:48.375000pt;}
.h19_c01171{height:48.417969pt;}
.hb_c01171{height:48.671875pt;}
.h9_c01171{height:49.046875pt;}
.h15_c01171{height:49.072266pt;}
.hd_c01171{height:49.726562pt;}
.hc_c01171{height:50.380859pt;}
.h1a_c01171{height:50.390625pt;}
.he_c01171{height:50.731771pt;}
.h13_c01171{height:51.035156pt;}
.h16_c01171{height:51.062500pt;}
.h1f_c01171{height:51.689453pt;}
.h7_c01171{height:52.049479pt;}
.h14_c01171{height:52.343750pt;}
.h1d_c01171{height:52.708333pt;}
.h10_c01171{height:53.367188pt;}
.h5_c01171{height:66.738281pt;}
.h6_c01171{height:70.009766pt;}
.h3_c01171{height:71.890625pt;}
.h4_c01171{height:72.626953pt;}
.h2_c01171{height:75.109375pt;}
.h1_c01171{height:76.593750pt;}
.h17_c01171{height:84.404297pt;}
.hf_c01171{height:132.109375pt;}
.h0_c01171{height:793.333333pt;}
.w0_c01171{width:1122.666667pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:74.879867pt;}
.x2_c01171{left:152.639613pt;}
.x3_c01171{left:188.480000pt;}
.x4_c01171{left:321.919867pt;}
.x5_c01171{left:354.238813pt;}
.x6_c01171{left:394.879307pt;}
.x9_c01171{left:814.719947pt;}
.x10_c01171{left:815.679400pt;}
.x17_c01171{left:816.638667pt;}
.x2b_c01171{left:818.239747pt;}
.x39_c01171{left:824.318760pt;}
.x24_c01171{left:827.519453pt;}
.x1d_c01171{left:830.078693pt;}
.xa_c01171{left:840.959467pt;}
.x1e_c01171{left:846.399827pt;}
.x7_c01171{left:848.958907pt;}
.x18_c01171{left:849.919840pt;}
.x3a_c01171{left:851.519453pt;}
.x37_c01171{left:868.798747pt;}
.x14_c01171{left:871.038493pt;}
.x8_c01171{left:872.639573pt;}
.xb_c01171{left:876.159747pt;}
.x25_c01171{left:878.718747pt;}
.x38_c01171{left:893.438880pt;}
.x2c_c01171{left:896.318760pt;}
.x26_c01171{left:898.239173pt;}
.x15_c01171{left:902.399413pt;}
.x3f_c01171{left:905.919440pt;}
.x32_c01171{left:908.799320pt;}
.x2d_c01171{left:912.638667pt;}
.x40_c01171{left:915.199133pt;}
.x33_c01171{left:919.038493pt;}
.x34_c01171{left:934.079587pt;}
.x2e_c01171{left:938.879880pt;}
.xc_c01171{left:940.798747pt;}
.x3b_c01171{left:947.198733pt;}
.x16_c01171{left:953.279293pt;}
.x1f_c01171{left:962.559080pt;}
.x19_c01171{left:963.518467pt;}
.x3c_c01171{left:972.159747pt;}
.x3e_c01171{left:976.959960pt;}
.xd_c01171{left:986.559080pt;}
.x22_c01171{left:990.399827pt;}
.x27_c01171{left:996.159667pt;}
.x23_c01171{left:999.999027pt;}
.xe_c01171{left:1001.919440pt;}
.x11_c01171{left:1003.519040pt;}
.x2f_c01171{left:1004.799320pt;}
.x1a_c01171{left:1008.319333pt;}
.x12_c01171{left:1014.399827pt;}
.x1b_c01171{left:1022.078693pt;}
.x35_c01171{left:1027.519040pt;}
.xf_c01171{left:1031.359867pt;}
.x28_c01171{left:1033.599613pt;}
.x13_c01171{left:1036.158693pt;}
.x1c_c01171{left:1037.759680pt;}
.x20_c01171{left:1043.198733pt;}
.x41_c01171{left:1049.919440pt;}
.x30_c01171{left:1052.159173pt;}
.x36_c01171{left:1060.158693pt;}
.x3d_c01171{left:1061.759680pt;}
.x29_c01171{left:1063.038493pt;}
.x21_c01171{left:1067.838867pt;}
.x2a_c01171{left:1071.039547pt;}
.x31_c01171{left:1074.238773pt;}
.x42_c01171{left:1075.839840pt;}
}





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

.ir_c01172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_7937fb87c02c1ba81ac64853.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01172;src:url('chunks/assets/font_c0be9695771e90850368fa9f.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01172;src:url('chunks/assets/font_7be8b5ece9757bb2ea5f4367.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_4a90e8d80e80e96325a8c5e0.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01172;src:url('chunks/assets/font_ec6dfcf1c3e6ad8aa6c73aa1.woff2')format("woff");}.ff5_c01172{font-family:ff5_c01172;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01172;src:url('chunks/assets/font_9e4dc0a34a4a0c3ba295002a.woff2')format("woff");}.ff6_c01172{font-family:ff6_c01172;line-height:1.284180;font-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_c01172{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m13_c01172{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m11_c01172{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m17_c01172{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m18_c01172{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m15_c01172{transform:matrix(0.199367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199367,0.000000,0.000000,0.250000,0,0);}
.m3_c01172{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);}
.m25_c01172{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m1e_c01172{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m7_c01172{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.mf_c01172{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m6_c01172{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m2_c01172{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m0_c01172{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m28_c01172{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m8_c01172{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m22_c01172{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.ma_c01172{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m5_c01172{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m19_c01172{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m4_c01172{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m14_c01172{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1d_c01172{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.md_c01172{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_c01172{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m26_c01172{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m29_c01172{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.mb_c01172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21_c01172{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m9_c01172{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m10_c01172{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m1a_c01172{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.m16_c01172{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m27_c01172{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m23_c01172{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m20_c01172{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m1c_c01172{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.me_c01172{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.m1_c01172{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m24_c01172{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.mc_c01172{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.m1b_c01172{transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324219,0.000000,0.000000,0.250000,0,0);}
.m2a_c01172{transform:matrix(0.332192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332192,0.000000,0.000000,0.250000,0,0);}
.v0_c01172{vertical-align:0.000000px;}
.ls2c_c01172{letter-spacing:-20.251650px;}
.ls1c_c01172{letter-spacing:-14.121315px;}
.ls38_c01172{letter-spacing:-13.497150px;}
.ls39_c01172{letter-spacing:-13.039950px;}
.ls1e_c01172{letter-spacing:-11.840063px;}
.ls1f_c01172{letter-spacing:-11.135475px;}
.ls3e_c01172{letter-spacing:-10.700235px;}
.ls40_c01172{letter-spacing:-10.499100px;}
.ls2f_c01172{letter-spacing:-9.000075px;}
.ls3d_c01172{letter-spacing:-8.881875px;}
.ls26_c01172{letter-spacing:-7.698075px;}
.ls3c_c01172{letter-spacing:-7.403063px;}
.ls42_c01172{letter-spacing:-7.336500px;}
.ls6_c01172{letter-spacing:-6.978758px;}
.ls1a_c01172{letter-spacing:-6.749168px;}
.ls22_c01172{letter-spacing:-6.582675px;}
.ls29_c01172{letter-spacing:-6.360480px;}
.ls16_c01172{letter-spacing:-5.859900px;}
.ls36_c01172{letter-spacing:-5.682720px;}
.ls23_c01172{letter-spacing:-5.180625px;}
.ls24_c01172{letter-spacing:-5.049630px;}
.ls37_c01172{letter-spacing:-4.497075px;}
.ls14_c01172{letter-spacing:-4.438125px;}
.ls28_c01172{letter-spacing:-4.372253px;}
.ls2a_c01172{letter-spacing:-4.056975px;}
.ls27_c01172{letter-spacing:-3.997500px;}
.ls18_c01172{letter-spacing:-3.984750px;}
.ls33_c01172{letter-spacing:-3.747600px;}
.ls32_c01172{letter-spacing:-3.701775px;}
.ls21_c01172{letter-spacing:-3.701250px;}
.ls3a_c01172{letter-spacing:-3.378623px;}
.ls30_c01172{letter-spacing:-3.169050px;}
.ls17_c01172{letter-spacing:-3.127500px;}
.ls11_c01172{letter-spacing:-2.958750px;}
.ls19_c01172{letter-spacing:-2.919300px;}
.ls2e_c01172{letter-spacing:-2.737500px;}
.ls3f_c01172{letter-spacing:-2.533140px;}
.ls2b_c01172{letter-spacing:-2.379375px;}
.ls13_c01172{letter-spacing:-2.222438px;}
.ls31_c01172{letter-spacing:-2.192805px;}
.ls1d_c01172{letter-spacing:-1.561800px;}
.ls41_c01172{letter-spacing:-1.518188px;}
.ls15_c01172{letter-spacing:-1.499670px;}
.ls10_c01172{letter-spacing:-1.479938px;}
.ls25_c01172{letter-spacing:-0.976365px;}
.ls7_c01172{letter-spacing:-0.858825px;}
.lse_c01172{letter-spacing:-0.833175px;}
.ls34_c01172{letter-spacing:-0.815295px;}
.ls20_c01172{letter-spacing:-0.793650px;}
.ls3b_c01172{letter-spacing:-0.760350px;}
.ls12_c01172{letter-spacing:-0.742500px;}
.ls35_c01172{letter-spacing:-0.703125px;}
.lsa_c01172{letter-spacing:0.000000px;}
.ls4_c01172{letter-spacing:0.798975px;}
.lsb_c01172{letter-spacing:0.808500px;}
.ls8_c01172{letter-spacing:0.850500px;}
.lsc_c01172{letter-spacing:0.864300px;}
.lsd_c01172{letter-spacing:0.903000px;}
.ls1b_c01172{letter-spacing:1.479938px;}
.lsf_c01172{letter-spacing:1.597950px;}
.ls2d_c01172{letter-spacing:3.169050px;}
.ls2_c01172{letter-spacing:3.410100px;}
.ls1_c01172{letter-spacing:4.260600px;}
.ls9_c01172{letter-spacing:4.690238px;}
.ls0_c01172{letter-spacing:5.119200px;}
.ls3_c01172{letter-spacing:7.670700px;}
.ls5_c01172{letter-spacing:17.909100px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01172{word-spacing:0.000000px;}
._15_c01172{margin-left:-39.258600px;}
._18_c01172{margin-left:-33.063750px;}
._f_c01172{margin-left:-23.237734px;}
._1a_c01172{margin-left:-19.972569px;}
._14_c01172{margin-left:-18.268425px;}
._12_c01172{margin-left:-6.491605px;}
._17_c01172{margin-left:-4.731365px;}
._10_c01172{margin-left:-3.423464px;}
._11_c01172{margin-left:-2.092500px;}
._e_c01172{width:1.046250px;}
._a_c01172{width:2.344826px;}
._9_c01172{width:3.769372px;}
._7_c01172{width:5.963684px;}
._b_c01172{width:8.023293px;}
._16_c01172{width:9.236872px;}
._13_c01172{width:10.237322px;}
._8_c01172{width:11.463898px;}
._d_c01172{width:13.669076px;}
._c_c01172{width:14.866312px;}
._19_c01172{width:16.620128px;}
._3_c01172{width:19.316100px;}
._4_c01172{width:20.843509px;}
._0_c01172{width:22.347371px;}
._1_c01172{width:26.090322px;}
._5_c01172{width:30.510503px;}
._6_c01172{width:31.601368px;}
._2_c01172{width:33.558232px;}
.fc0_c01172{color:transparent;}
.fs10_c01172{font-size:48.000000px;}
.fs3_c01172{font-size:48.750000px;}
.fs4_c01172{font-size:50.250000px;}
.fsa_c01172{font-size:51.000000px;}
.fs6_c01172{font-size:51.750000px;}
.fs5_c01172{font-size:52.500000px;}
.fs12_c01172{font-size:54.000000px;}
.fs11_c01172{font-size:54.750000px;}
.fsb_c01172{font-size:55.500000px;}
.fs7_c01172{font-size:56.250000px;}
.fs9_c01172{font-size:57.000000px;}
.fs8_c01172{font-size:57.750000px;}
.fsd_c01172{font-size:58.500000px;}
.fsc_c01172{font-size:59.250000px;}
.fse_c01172{font-size:60.750000px;}
.fsf_c01172{font-size:72.000000px;}
.fs1_c01172{font-size:74.250000px;}
.fs0_c01172{font-size:81.000000px;}
.fs2_c01172{font-size:82.500000px;}
.y0_c01172{bottom:0.000000px;}
.y3_c01172{bottom:393.181320px;}
.y1c_c01172{bottom:514.860900px;}
.y1b_c01172{bottom:529.980885px;}
.y1a_c01172{bottom:544.741470px;}
.y19_c01172{bottom:544.741980px;}
.y18_c01172{bottom:559.500555px;}
.y17_c01172{bottom:574.620480px;}
.y15_c01172{bottom:589.739640px;}
.y16_c01172{bottom:589.740420px;}
.y14_c01172{bottom:604.501005px;}
.y13_c01172{bottom:619.621035px;}
.y12_c01172{bottom:634.379970px;}
.y10_c01172{bottom:649.499355px;}
.y11_c01172{bottom:649.499955px;}
.ye_c01172{bottom:664.260630px;}
.yf_c01172{bottom:664.260720px;}
.yd_c01172{bottom:679.380570px;}
.yb_c01172{bottom:694.141005px;}
.yc_c01172{bottom:694.141335px;}
.ya_c01172{bottom:708.541035px;}
.y9_c01172{bottom:723.661005px;}
.y8_c01172{bottom:739.140105px;}
.y7_c01172{bottom:754.260135px;}
.y6_c01172{bottom:769.020720px;}
.y5_c01172{bottom:783.781500px;}
.y2_c01172{bottom:797.100315px;}
.y4_c01172{bottom:798.540615px;}
.y1_c01172{bottom:850.740870px;}
.h4_c01172{height:49.130859px;}
.h5_c01172{height:49.317627px;}
.h17_c01172{height:50.062500px;}
.h7_c01172{height:50.789795px;}
.h14_c01172{height:50.844727px;}
.h6_c01172{height:51.525879px;}
.h15_c01172{height:52.409180px;}
.hb_c01172{height:53.191406px;}
.h1b_c01172{height:53.367188px;}
.h18_c01172{height:53.734131px;}
.h1c_c01172{height:54.421875px;}
.h1a_c01172{height:54.443115px;}
.hc_c01172{height:54.470215px;}
.h8_c01172{height:55.206299px;}
.h10_c01172{height:55.933594px;}
.ha_c01172{height:55.942383px;}
.h19_c01172{height:56.320312px;}
.h9_c01172{height:56.678467px;}
.h13_c01172{height:57.073242px;}
.h11_c01172{height:57.445312px;}
.he_c01172{height:57.814453px;}
.hd_c01172{height:58.555664px;}
.h12_c01172{height:58.957031px;}
.hf_c01172{height:60.038086px;}
.h16_c01172{height:75.093750px;}
.h2_c01172{height:77.440430px;}
.h1_c01172{height:79.497070px;}
.h3_c01172{height:83.144531px;}
.h0_c01172{height:892.500000px;}
.w0_c01172{width:1263.000000px;}
.x0_c01172{left:0.000000px;}
.x1_c01172{left:88.199850px;}
.x9_c01172{left:89.638500px;}
.x6_c01172{left:106.918950px;}
.xa_c01172{left:109.079400px;}
.x2_c01172{left:177.120000px;}
.x3_c01172{left:218.878950px;}
.x4_c01172{left:365.399850px;}
.x5_c01172{left:404.279850px;}
.x7_c01172{left:489.239820px;}
.xb_c01172{left:490.678530px;}
.x8_c01172{left:508.679070px;}
.xc_c01172{left:510.478635px;}
.xd_c01172{left:601.199850px;}
.xe_c01172{left:624.599070px;}
.x32_c01172{left:952.918305px;}
.x10_c01172{left:953.999355px;}
.x39_c01172{left:967.679070px;}
.x24_c01172{left:975.239865px;}
.x21_c01172{left:989.278755px;}
.xf_c01172{left:992.518620px;}
.x33_c01172{left:994.679070px;}
.x42_c01172{left:998.279850px;}
.x37_c01172{left:1001.158815px;}
.x16_c01172{left:1003.319190px;}
.x25_c01172{left:1005.479640px;}
.x3d_c01172{left:1007.279205px;}
.x3a_c01172{left:1011.959385px;}
.x12_c01172{left:1014.119940px;}
.x11_c01172{left:1015.558590px;}
.x40_c01172{left:1017.719055px;}
.x1b_c01172{left:1026.000000px;}
.x2f_c01172{left:1029.599025px;}
.x3e_c01172{left:1032.118740px;}
.x20_c01172{left:1033.199805px;}
.x3b_c01172{left:1035.358605px;}
.x1c_c01172{left:1042.199340px;}
.x34_c01172{left:1045.798560px;}
.x30_c01172{left:1046.879520px;}
.x13_c01172{left:1048.319820px;}
.x22_c01172{left:1049.758575px;}
.x35_c01172{left:1061.638545px;}
.x23_c01172{left:1062.719520px;}
.x26_c01172{left:1066.679715px;}
.x2c_c01172{left:1067.759040px;}
.x1f_c01172{left:1073.518620px;}
.x27_c01172{left:1079.279850px;}
.x17_c01172{left:1080.359250px;}
.x2d_c01172{left:1087.918305px;}
.x18_c01172{left:1088.999355px;}
.x1d_c01172{left:1093.679715px;}
.x41_c01172{left:1099.079955px;}
.x19_c01172{left:1101.599670px;}
.x3c_c01172{left:1108.079400px;}
.x1e_c01172{left:1111.678530px;}
.x38_c01172{left:1121.399775px;}
.x2e_c01172{left:1124.278755px;}
.x28_c01172{left:1137.239775px;}
.x29_c01172{left:1159.198785px;}
.x31_c01172{left:1160.279850px;}
.x1a_c01172{left:1178.998905px;}
.x2a_c01172{left:1183.319820px;}
.x2b_c01172{left:1200.598575px;}
.x14_c01172{left:1208.518620px;}
.x15_c01172{left:1227.598575px;}
.x36_c01172{left:1233.719055px;}
.x3f_c01172{left:1238.399235px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls2c_c01172{letter-spacing:-18.001467pt;}
.ls1c_c01172{letter-spacing:-12.552280pt;}
.ls38_c01172{letter-spacing:-11.997467pt;}
.ls39_c01172{letter-spacing:-11.591067pt;}
.ls1e_c01172{letter-spacing:-10.524500pt;}
.ls1f_c01172{letter-spacing:-9.898200pt;}
.ls3e_c01172{letter-spacing:-9.511320pt;}
.ls40_c01172{letter-spacing:-9.332533pt;}
.ls2f_c01172{letter-spacing:-8.000067pt;}
.ls3d_c01172{letter-spacing:-7.895000pt;}
.ls26_c01172{letter-spacing:-6.842733pt;}
.ls3c_c01172{letter-spacing:-6.580500pt;}
.ls42_c01172{letter-spacing:-6.521333pt;}
.ls6_c01172{letter-spacing:-6.203340pt;}
.ls1a_c01172{letter-spacing:-5.999260pt;}
.ls22_c01172{letter-spacing:-5.851267pt;}
.ls29_c01172{letter-spacing:-5.653760pt;}
.ls16_c01172{letter-spacing:-5.208800pt;}
.ls36_c01172{letter-spacing:-5.051307pt;}
.ls23_c01172{letter-spacing:-4.605000pt;}
.ls24_c01172{letter-spacing:-4.488560pt;}
.ls37_c01172{letter-spacing:-3.997400pt;}
.ls14_c01172{letter-spacing:-3.945000pt;}
.ls28_c01172{letter-spacing:-3.886447pt;}
.ls2a_c01172{letter-spacing:-3.606200pt;}
.ls27_c01172{letter-spacing:-3.553333pt;}
.ls18_c01172{letter-spacing:-3.542000pt;}
.ls33_c01172{letter-spacing:-3.331200pt;}
.ls32_c01172{letter-spacing:-3.290467pt;}
.ls21_c01172{letter-spacing:-3.290000pt;}
.ls3a_c01172{letter-spacing:-3.003220pt;}
.ls30_c01172{letter-spacing:-2.816933pt;}
.ls17_c01172{letter-spacing:-2.780000pt;}
.ls11_c01172{letter-spacing:-2.630000pt;}
.ls19_c01172{letter-spacing:-2.594933pt;}
.ls2e_c01172{letter-spacing:-2.433333pt;}
.ls3f_c01172{letter-spacing:-2.251680pt;}
.ls2b_c01172{letter-spacing:-2.115000pt;}
.ls13_c01172{letter-spacing:-1.975500pt;}
.ls31_c01172{letter-spacing:-1.949160pt;}
.ls1d_c01172{letter-spacing:-1.388267pt;}
.ls41_c01172{letter-spacing:-1.349500pt;}
.ls15_c01172{letter-spacing:-1.333040pt;}
.ls10_c01172{letter-spacing:-1.315500pt;}
.ls25_c01172{letter-spacing:-0.867880pt;}
.ls7_c01172{letter-spacing:-0.763400pt;}
.lse_c01172{letter-spacing:-0.740600pt;}
.ls34_c01172{letter-spacing:-0.724707pt;}
.ls20_c01172{letter-spacing:-0.705467pt;}
.ls3b_c01172{letter-spacing:-0.675867pt;}
.ls12_c01172{letter-spacing:-0.660000pt;}
.ls35_c01172{letter-spacing:-0.625000pt;}
.lsa_c01172{letter-spacing:0.000000pt;}
.ls4_c01172{letter-spacing:0.710200pt;}
.lsb_c01172{letter-spacing:0.718667pt;}
.ls8_c01172{letter-spacing:0.756000pt;}
.lsc_c01172{letter-spacing:0.768267pt;}
.lsd_c01172{letter-spacing:0.802667pt;}
.ls1b_c01172{letter-spacing:1.315500pt;}
.lsf_c01172{letter-spacing:1.420400pt;}
.ls2d_c01172{letter-spacing:2.816933pt;}
.ls2_c01172{letter-spacing:3.031200pt;}
.ls1_c01172{letter-spacing:3.787200pt;}
.ls9_c01172{letter-spacing:4.169100pt;}
.ls0_c01172{letter-spacing:4.550400pt;}
.ls3_c01172{letter-spacing:6.818400pt;}
.ls5_c01172{letter-spacing:15.919200pt;}
.ws0_c01172{word-spacing:0.000000pt;}
._15_c01172{margin-left:-34.896533pt;}
._18_c01172{margin-left:-29.390000pt;}
._f_c01172{margin-left:-20.655763pt;}
._1a_c01172{margin-left:-17.753395pt;}
._14_c01172{margin-left:-16.238600pt;}
._12_c01172{margin-left:-5.770316pt;}
._17_c01172{margin-left:-4.205658pt;}
._10_c01172{margin-left:-3.043079pt;}
._11_c01172{margin-left:-1.860000pt;}
._e_c01172{width:0.930000pt;}
._a_c01172{width:2.084289pt;}
._9_c01172{width:3.350553pt;}
._7_c01172{width:5.301053pt;}
._b_c01172{width:7.131816pt;}
._16_c01172{width:8.210553pt;}
._13_c01172{width:9.099842pt;}
._8_c01172{width:10.190132pt;}
._d_c01172{width:12.150289pt;}
._c_c01172{width:13.214500pt;}
._19_c01172{width:14.773447pt;}
._3_c01172{width:17.169867pt;}
._4_c01172{width:18.527563pt;}
._0_c01172{width:19.864330pt;}
._1_c01172{width:23.191397pt;}
._5_c01172{width:27.120447pt;}
._6_c01172{width:28.090105pt;}
._2_c01172{width:29.829539pt;}
.fs10_c01172{font-size:42.666667pt;}
.fs3_c01172{font-size:43.333333pt;}
.fs4_c01172{font-size:44.666667pt;}
.fsa_c01172{font-size:45.333333pt;}
.fs6_c01172{font-size:46.000000pt;}
.fs5_c01172{font-size:46.666667pt;}
.fs12_c01172{font-size:48.000000pt;}
.fs11_c01172{font-size:48.666667pt;}
.fsb_c01172{font-size:49.333333pt;}
.fs7_c01172{font-size:50.000000pt;}
.fs9_c01172{font-size:50.666667pt;}
.fs8_c01172{font-size:51.333333pt;}
.fsd_c01172{font-size:52.000000pt;}
.fsc_c01172{font-size:52.666667pt;}
.fse_c01172{font-size:54.000000pt;}
.fsf_c01172{font-size:64.000000pt;}
.fs1_c01172{font-size:66.000000pt;}
.fs0_c01172{font-size:72.000000pt;}
.fs2_c01172{font-size:73.333333pt;}
.y0_c01172{bottom:0.000000pt;}
.y3_c01172{bottom:349.494507pt;}
.y1c_c01172{bottom:457.654133pt;}
.y1b_c01172{bottom:471.094120pt;}
.y1a_c01172{bottom:484.214640pt;}
.y19_c01172{bottom:484.215093pt;}
.y18_c01172{bottom:497.333827pt;}
.y17_c01172{bottom:510.773760pt;}
.y15_c01172{bottom:524.213013pt;}
.y16_c01172{bottom:524.213707pt;}
.y14_c01172{bottom:537.334227pt;}
.y13_c01172{bottom:550.774253pt;}
.y12_c01172{bottom:563.893307pt;}
.y10_c01172{bottom:577.332760pt;}
.y11_c01172{bottom:577.333293pt;}
.ye_c01172{bottom:590.453893pt;}
.yf_c01172{bottom:590.453973pt;}
.yd_c01172{bottom:603.893840pt;}
.yb_c01172{bottom:617.014227pt;}
.yc_c01172{bottom:617.014520pt;}
.ya_c01172{bottom:629.814253pt;}
.y9_c01172{bottom:643.254227pt;}
.y8_c01172{bottom:657.013427pt;}
.y7_c01172{bottom:670.453453pt;}
.y6_c01172{bottom:683.573973pt;}
.y5_c01172{bottom:696.694667pt;}
.y2_c01172{bottom:708.533613pt;}
.y4_c01172{bottom:709.813880pt;}
.y1_c01172{bottom:756.214107pt;}
.h4_c01172{height:43.671875pt;}
.h5_c01172{height:43.837891pt;}
.h17_c01172{height:44.500000pt;}
.h7_c01172{height:45.146484pt;}
.h14_c01172{height:45.195312pt;}
.h6_c01172{height:45.800781pt;}
.h15_c01172{height:46.585938pt;}
.hb_c01172{height:47.281250pt;}
.h1b_c01172{height:47.437500pt;}
.h18_c01172{height:47.763672pt;}
.h1c_c01172{height:48.375000pt;}
.h1a_c01172{height:48.393880pt;}
.hc_c01172{height:48.417969pt;}
.h8_c01172{height:49.072266pt;}
.h10_c01172{height:49.718750pt;}
.ha_c01172{height:49.726562pt;}
.h19_c01172{height:50.062500pt;}
.h9_c01172{height:50.380859pt;}
.h13_c01172{height:50.731771pt;}
.h11_c01172{height:51.062500pt;}
.he_c01172{height:51.390625pt;}
.hd_c01172{height:52.049479pt;}
.h12_c01172{height:52.406250pt;}
.hf_c01172{height:53.367188pt;}
.h16_c01172{height:66.750000pt;}
.h2_c01172{height:68.835938pt;}
.h1_c01172{height:70.664062pt;}
.h3_c01172{height:73.906250pt;}
.h0_c01172{height:793.333333pt;}
.w0_c01172{width:1122.666667pt;}
.x0_c01172{left:0.000000pt;}
.x1_c01172{left:78.399867pt;}
.x9_c01172{left:79.678667pt;}
.x6_c01172{left:95.039067pt;}
.xa_c01172{left:96.959467pt;}
.x2_c01172{left:157.440000pt;}
.x3_c01172{left:194.559067pt;}
.x4_c01172{left:324.799867pt;}
.x5_c01172{left:359.359867pt;}
.x7_c01172{left:434.879840pt;}
.xb_c01172{left:436.158693pt;}
.x8_c01172{left:452.159173pt;}
.xc_c01172{left:453.758787pt;}
.xd_c01172{left:534.399867pt;}
.xe_c01172{left:555.199173pt;}
.x32_c01172{left:847.038493pt;}
.x10_c01172{left:847.999427pt;}
.x39_c01172{left:860.159173pt;}
.x24_c01172{left:866.879880pt;}
.x21_c01172{left:879.358893pt;}
.xf_c01172{left:882.238773pt;}
.x33_c01172{left:884.159173pt;}
.x42_c01172{left:887.359867pt;}
.x37_c01172{left:889.918947pt;}
.x16_c01172{left:891.839280pt;}
.x25_c01172{left:893.759680pt;}
.x3d_c01172{left:895.359293pt;}
.x3a_c01172{left:899.519453pt;}
.x12_c01172{left:901.439947pt;}
.x11_c01172{left:902.718747pt;}
.x40_c01172{left:904.639160pt;}
.x1b_c01172{left:912.000000pt;}
.x2f_c01172{left:915.199133pt;}
.x3e_c01172{left:917.438880pt;}
.x20_c01172{left:918.399827pt;}
.x3b_c01172{left:920.318760pt;}
.x1c_c01172{left:926.399413pt;}
.x34_c01172{left:929.598720pt;}
.x30_c01172{left:930.559573pt;}
.x13_c01172{left:931.839840pt;}
.x22_c01172{left:933.118733pt;}
.x35_c01172{left:943.678707pt;}
.x23_c01172{left:944.639573pt;}
.x26_c01172{left:948.159747pt;}
.x2c_c01172{left:949.119147pt;}
.x1f_c01172{left:954.238773pt;}
.x27_c01172{left:959.359867pt;}
.x17_c01172{left:960.319333pt;}
.x2d_c01172{left:967.038493pt;}
.x18_c01172{left:967.999427pt;}
.x1d_c01172{left:972.159747pt;}
.x41_c01172{left:976.959960pt;}
.x19_c01172{left:979.199707pt;}
.x3c_c01172{left:984.959467pt;}
.x1e_c01172{left:988.158693pt;}
.x38_c01172{left:996.799800pt;}
.x2e_c01172{left:999.358893pt;}
.x28_c01172{left:1010.879800pt;}
.x29_c01172{left:1030.398920pt;}
.x31_c01172{left:1031.359867pt;}
.x1a_c01172{left:1047.999027pt;}
.x2a_c01172{left:1051.839840pt;}
.x2b_c01172{left:1067.198733pt;}
.x14_c01172{left:1074.238773pt;}
.x15_c01172{left:1091.198733pt;}
.x36_c01172{left:1096.639160pt;}
.x3f_c01172{left:1100.799320pt;}
}





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

.ir_c01173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_a23cf49dca9f4404b180b970.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01173;src:url('chunks/assets/font_353b85bae006c415babd8cd4.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01173;src:url('chunks/assets/font_f2c903e53adb7fe5c371b301.woff2')format("woff");}.ff3_c01173{font-family:ff3_c01173;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01173;src:url('chunks/assets/font_e032340f9085f3d765d70fb0.woff2')format("woff");}.ff4_c01173{font-family:ff4_c01173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01173;src:url('chunks/assets/font_842b159404df4033dff18a60.woff2')format("woff");}.ff5_c01173{font-family:ff5_c01173;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01173;src:url('chunks/assets/font_b0a50606cd559156573170d0.woff2')format("woff");}.ff6_c01173{font-family:ff6_c01173;line-height:1.281250;font-style:normal;font-weight: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_c01173;src:url('chunks/assets/font_c146a3ee9333b93e1f7eb91a.woff2')format("woff");}.ff7_c01173{font-family:ff7_c01173;line-height:1.432129;font-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_c01173{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m14_c01173{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m19_c01173{transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175373,0.000000,0.000000,0.250000,0,0);}
.m15_c01173{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m18_c01173{transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183333,0.000000,0.000000,0.250000,0,0);}
.m26_c01173{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m29_c01173{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_c01173{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m3_c01173{transform:matrix(0.196903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196903,0.000000,0.000000,0.250000,0,0);}
.mc_c01173{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m25_c01173{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m6_c01173{transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215596,0.000000,0.000000,0.250000,0,0);}
.m2_c01173{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m4_c01173{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma_c01173{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb_c01173{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m2b_c01173{transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);}
.m28_c01173{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1_c01173{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m27_c01173{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m23_c01173{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m7_c01173{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m24_c01173{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.md_c01173{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m2c_c01173{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.me_c01173{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m1b_c01173{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.m12_c01173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01173{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m16_c01173{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m22_c01173{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m2d_c01173{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m1c_c01173{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m5_c01173{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m11_c01173{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m1a_c01173{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m9_c01173{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m1e_c01173{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m2a_c01173{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m1d_c01173{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.mf_c01173{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m20_c01173{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m1f_c01173{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m17_c01173{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m0_c01173{transform:matrix(0.289130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289130,0.000000,0.000000,0.250000,0,0);}
.m10_c01173{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.ls30_c01173{letter-spacing:-13.122900px;}
.ls35_c01173{letter-spacing:-10.937325px;}
.ls1a_c01173{letter-spacing:-9.897525px;}
.ls9_c01173{letter-spacing:-9.525900px;}
.ls13_c01173{letter-spacing:-9.432000px;}
.ls37_c01173{letter-spacing:-8.713688px;}
.ls2b_c01173{letter-spacing:-7.481700px;}
.ls8_c01173{letter-spacing:-7.362900px;}
.ls1f_c01173{letter-spacing:-6.506325px;}
.ls20_c01173{letter-spacing:-6.185025px;}
.ls33_c01173{letter-spacing:-6.000600px;}
.ls28_c01173{letter-spacing:-5.251455px;}
.ls31_c01173{letter-spacing:-5.065253px;}
.ls15_c01173{letter-spacing:-5.060475px;}
.ls12_c01173{letter-spacing:-4.989600px;}
.ls19_c01173{letter-spacing:-4.890983px;}
.ls2f_c01173{letter-spacing:-4.643100px;}
.ls25_c01173{letter-spacing:-4.502400px;}
.ls1e_c01173{letter-spacing:-4.440300px;}
.ls16_c01173{letter-spacing:-3.960000px;}
.ls23_c01173{letter-spacing:-3.751800px;}
.ls21_c01173{letter-spacing:-3.748500px;}
.ls22_c01173{letter-spacing:-3.701250px;}
.ls1b_c01173{letter-spacing:-3.609375px;}
.ls14_c01173{letter-spacing:-3.166875px;}
.ls27_c01173{letter-spacing:-2.919375px;}
.ls2a_c01173{letter-spacing:-2.829075px;}
.ls29_c01173{letter-spacing:-2.808675px;}
.ls34_c01173{letter-spacing:-2.808300px;}
.ls2c_c01173{letter-spacing:-2.737500px;}
.ls24_c01173{letter-spacing:-2.694450px;}
.ls11_c01173{letter-spacing:-2.379375px;}
.ls17_c01173{letter-spacing:-2.312438px;}
.ls36_c01173{letter-spacing:-2.278125px;}
.ls1c_c01173{letter-spacing:-2.250600px;}
.ls1d_c01173{letter-spacing:-2.223000px;}
.ls10_c01173{letter-spacing:-1.586250px;}
.ls18_c01173{letter-spacing:-1.519403px;}
.lse_c01173{letter-spacing:-1.398000px;}
.lsd_c01173{letter-spacing:-0.866550px;}
.ls32_c01173{letter-spacing:-0.814275px;}
.lsf_c01173{letter-spacing:-0.793125px;}
.ls38_c01173{letter-spacing:-0.739800px;}
.ls26_c01173{letter-spacing:-0.719250px;}
.lsb_c01173{letter-spacing:0.000000px;}
.ls1_c01173{letter-spacing:0.793125px;}
.lsa_c01173{letter-spacing:0.866250px;}
.lsc_c01173{letter-spacing:1.454850px;}
.ls2e_c01173{letter-spacing:1.481850px;}
.ls6_c01173{letter-spacing:1.586250px;}
.ls4_c01173{letter-spacing:2.379375px;}
.ls3_c01173{letter-spacing:3.166875px;}
.ls0_c01173{letter-spacing:3.473250px;}
.ls2_c01173{letter-spacing:3.960000px;}
.ls7_c01173{letter-spacing:8.426625px;}
.ls2d_c01173{letter-spacing:8.846400px;}
.ls5_c01173{letter-spacing:14.258813px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01173{word-spacing:0.000000px;}
._f_c01173{margin-left:-24.030523px;}
._1a_c01173{margin-left:-14.437173px;}
._14_c01173{margin-left:-10.304826px;}
._17_c01173{margin-left:-9.005815px;}
._15_c01173{margin-left:-7.030743px;}
._8_c01173{margin-left:-4.410000px;}
._2_c01173{margin-left:-2.469312px;}
._9_c01173{margin-left:-1.136234px;}
._5_c01173{width:1.641835px;}
._10_c01173{width:2.704944px;}
._1_c01173{width:3.982342px;}
._7_c01173{width:5.108039px;}
._3_c01173{width:6.739225px;}
._16_c01173{width:8.460460px;}
._6_c01173{width:9.523442px;}
._e_c01173{width:10.738283px;}
._c_c01173{width:11.756187px;}
._12_c01173{width:13.084051px;}
._18_c01173{width:14.590188px;}
._d_c01173{width:16.323433px;}
._a_c01173{width:17.943718px;}
._11_c01173{width:19.445419px;}
._b_c01173{width:22.747722px;}
._13_c01173{width:25.526789px;}
._19_c01173{width:26.527405px;}
._0_c01173{width:28.058858px;}
._4_c01173{width:30.695292px;}
.fc0_c01173{color:transparent;}
.fs13_c01173{font-size:49.500000px;}
.fs10_c01173{font-size:50.250000px;}
.fsd_c01173{font-size:51.000000px;}
.fs11_c01173{font-size:52.500000px;}
.fsf_c01173{font-size:53.250000px;}
.fs18_c01173{font-size:54.000000px;}
.fs14_c01173{font-size:54.750000px;}
.fse_c01173{font-size:55.500000px;}
.fs7_c01173{font-size:56.250000px;}
.fsc_c01173{font-size:57.000000px;}
.fs9_c01173{font-size:57.750000px;}
.fs16_c01173{font-size:58.500000px;}
.fs8_c01173{font-size:60.000000px;}
.fsa_c01173{font-size:60.750000px;}
.fs17_c01173{font-size:62.250000px;}
.fs12_c01173{font-size:63.000000px;}
.fs15_c01173{font-size:72.000000px;}
.fsb_c01173{font-size:74.250000px;}
.fs5_c01173{font-size:79.500000px;}
.fs1_c01173{font-size:81.000000px;}
.fs6_c01173{font-size:81.750000px;}
.fs2_c01173{font-size:82.500000px;}
.fs3_c01173{font-size:84.750000px;}
.fs0_c01173{font-size:86.250000px;}
.fs4_c01173{font-size:93.750000px;}
.y0_c01173{bottom:0.000000px;}
.y3b_c01173{bottom:165.301185px;}
.y3a_c01173{bottom:180.421185px;}
.y39_c01173{bottom:195.541035px;}
.y38_c01173{bottom:211.021935px;}
.y37_c01173{bottom:211.022295px;}
.y36_c01173{bottom:225.780870px;}
.y35_c01173{bottom:225.780945px;}
.y34_c01173{bottom:240.900885px;}
.y32_c01173{bottom:271.140135px;}
.y33_c01173{bottom:271.140750px;}
.y31_c01173{bottom:285.901500px;}
.y30_c01173{bottom:285.901860px;}
.y2e_c01173{bottom:300.659850px;}
.y2f_c01173{bottom:300.660435px;}
.y2d_c01173{bottom:316.141335px;}
.y2c_c01173{bottom:316.141710px;}
.y2a_c01173{bottom:330.899670px;}
.y2b_c01173{bottom:330.900285px;}
.y29_c01173{bottom:345.661035px;}
.y28_c01173{bottom:360.780870px;}
.y26_c01173{bottom:369.061935px;}
.y27_c01173{bottom:376.261785px;}
.y25_c01173{bottom:405.781995px;}
.y23_c01173{bottom:420.539880px;}
.y24_c01173{bottom:420.540570px;}
.y22_c01173{bottom:435.659820px;}
.y20_c01173{bottom:450.420930px;}
.y21_c01173{bottom:450.421185px;}
.y1f_c01173{bottom:465.540870px;}
.y1e_c01173{bottom:479.940900px;}
.y1c_c01173{bottom:495.060705px;}
.y1d_c01173{bottom:495.060750px;}
.y1b_c01173{bottom:509.822070px;}
.y1a_c01173{bottom:525.300570px;}
.y19_c01173{bottom:525.300660px;}
.y18_c01173{bottom:540.420600px;}
.y17_c01173{bottom:569.581005px;}
.y16_c01173{bottom:569.581095px;}
.y14_c01173{bottom:584.700255px;}
.y15_c01173{bottom:584.701035px;}
.y13_c01173{bottom:599.461620px;}
.y12_c01173{bottom:599.462355px;}
.y10_c01173{bottom:614.940810px;}
.y11_c01173{bottom:614.940855px;}
.yf_c01173{bottom:630.060750px;}
.ye_c01173{bottom:630.780900px;}
.yd_c01173{bottom:673.982340px;}
.yc_c01173{bottom:689.820870px;}
.ya_c01173{bottom:703.860255px;}
.yb_c01173{bottom:703.860855px;}
.y9_c01173{bottom:718.621635px;}
.y8_c01173{bottom:733.741470px;}
.y7_c01173{bottom:733.741935px;}
.y6_c01173{bottom:748.861860px;}
.y5_c01173{bottom:763.620435px;}
.y3_c01173{bottom:778.739655px;}
.y4_c01173{bottom:778.740420px;}
.y2_c01173{bottom:794.221155px;}
.y1_c01173{bottom:844.981290px;}
.h1a_c01173{height:51.398438px;}
.h16_c01173{height:51.525879px;}
.h18_c01173{height:51.626953px;}
.h14_c01173{height:52.261963px;}
.h15_c01173{height:52.409180px;}
.h20_c01173{height:52.998047px;}
.h12_c01173{height:53.191406px;}
.h19_c01173{height:53.734131px;}
.h13_c01173{height:54.470215px;}
.h8_c01173{height:55.206299px;}
.h1b_c01173{height:55.933594px;}
.hf_c01173{height:55.942383px;}
.ha_c01173{height:56.678467px;}
.hc_c01173{height:56.689453px;}
.h11_c01173{height:57.073242px;}
.h1d_c01173{height:57.414551px;}
.h1e_c01173{height:58.857422px;}
.he_c01173{height:58.886719px;}
.h9_c01173{height:59.296875px;}
.hb_c01173{height:59.622803px;}
.h10_c01173{height:60.038086px;}
.h1f_c01173{height:61.520508px;}
.h17_c01173{height:61.800293px;}
.h1c_c01173{height:75.093750px;}
.hd_c01173{height:77.440430px;}
.h6_c01173{height:78.024902px;}
.h3_c01173{height:80.969238px;}
.h2_c01173{height:81.632812px;}
.h7_c01173{height:82.388672px;}
.h4_c01173{height:83.177490px;}
.h1_c01173{height:86.923828px;}
.h5_c01173{height:92.651367px;}
.h0_c01173{height:892.500000px;}
.w0_c01173{width:1263.000000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:78.119415px;}
.x2_c01173{left:167.398665px;}
.x3_c01173{left:207.359850px;}
.x4_c01173{left:357.838950px;}
.x5_c01173{left:394.199385px;}
.x6_c01173{left:610.919535px;}
.x7_c01173{left:659.878320px;}
.x8_c01173{left:689.759085px;}
.xc_c01173{left:917.638965px;}
.x1e_c01173{left:919.079505px;}
.x18_c01173{left:920.878965px;}
.x2d_c01173{left:921.956910px;}
.x3b_c01173{left:923.039475px;}
.x46_c01173{left:924.118740px;}
.x32_c01173{left:929.878320px;}
.x23_c01173{left:935.998905px;}
.x2a_c01173{left:939.599670px;}
.x47_c01173{left:945.718500px;}
.x3e_c01173{left:953.279205px;}
.x9_c01173{left:955.439670px;}
.x1a_c01173{left:957.239460px;}
.x24_c01173{left:958.679715px;}
.x33_c01173{left:960.479190px;}
.x3f_c01173{left:961.558590px;}
.x39_c01173{left:969.119385px;}
.x13_c01173{left:975.599115px;}
.x2e_c01173{left:978.838905px;}
.x37_c01173{left:979.918305px;}
.x4d_c01173{left:987.479190px;}
.x2f_c01173{left:988.919490px;}
.x44_c01173{left:994.679070px;}
.x36_c01173{left:996.478635px;}
.x28_c01173{left:1005.838905px;}
.x45_c01173{left:1008.358605px;}
.x40_c01173{left:1013.759040px;}
.x38_c01173{left:1015.558590px;}
.x3a_c01173{left:1018.079955px;}
.x29_c01173{left:1019.159370px;}
.x30_c01173{left:1020.958920px;}
.x48_c01173{left:1023.478635px;}
.x14_c01173{left:1028.158815px;}
.x31_c01173{left:1030.678530px;}
.xd_c01173{left:1034.999355px;}
.x1b_c01173{left:1040.759040px;}
.xe_c01173{left:1050.839535px;}
.x10_c01173{left:1052.639100px;}
.xa_c01173{left:1056.958275px;}
.x3d_c01173{left:1060.559055px;}
.x41_c01173{left:1061.638545px;}
.x15_c01173{left:1062.719520px;}
.x19_c01173{left:1066.318815px;}
.xb_c01173{left:1069.558590px;}
.x11_c01173{left:1070.998905px;}
.x21_c01173{left:1073.879520px;}
.x34_c01173{left:1074.958920px;}
.x4b_c01173{left:1077.478635px;}
.x1f_c01173{left:1083.958275px;}
.x22_c01173{left:1087.199805px;}
.x42_c01173{left:1092.959385px;}
.x16_c01173{left:1097.278755px;}
.x4c_c01173{left:1101.599670px;}
.x1c_c01173{left:1103.039985px;}
.x35_c01173{left:1104.478635px;}
.x3c_c01173{left:1110.599025px;}
.x17_c01173{left:1112.759490px;}
.x1d_c01173{left:1115.279205px;}
.x20_c01173{left:1131.119385px;}
.x43_c01173{left:1154.879520px;}
.x25_c01173{left:1173.598575px;}
.x2b_c01173{left:1181.879520px;}
.x26_c01173{left:1187.279850px;}
.x49_c01173{left:1189.079400px;}
.x2c_c01173{left:1191.599025px;}
.xf_c01173{left:1198.439670px;}
.x27_c01173{left:1207.798560px;}
.x12_c01173{left:1211.399235px;}
.x4a_c01173{left:1214.639100px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls30_c01173{letter-spacing:-11.664800pt;}
.ls35_c01173{letter-spacing:-9.722067pt;}
.ls1a_c01173{letter-spacing:-8.797800pt;}
.ls9_c01173{letter-spacing:-8.467467pt;}
.ls13_c01173{letter-spacing:-8.384000pt;}
.ls37_c01173{letter-spacing:-7.745500pt;}
.ls2b_c01173{letter-spacing:-6.650400pt;}
.ls8_c01173{letter-spacing:-6.544800pt;}
.ls1f_c01173{letter-spacing:-5.783400pt;}
.ls20_c01173{letter-spacing:-5.497800pt;}
.ls33_c01173{letter-spacing:-5.333867pt;}
.ls28_c01173{letter-spacing:-4.667960pt;}
.ls31_c01173{letter-spacing:-4.502447pt;}
.ls15_c01173{letter-spacing:-4.498200pt;}
.ls12_c01173{letter-spacing:-4.435200pt;}
.ls19_c01173{letter-spacing:-4.347540pt;}
.ls2f_c01173{letter-spacing:-4.127200pt;}
.ls25_c01173{letter-spacing:-4.002133pt;}
.ls1e_c01173{letter-spacing:-3.946933pt;}
.ls16_c01173{letter-spacing:-3.520000pt;}
.ls23_c01173{letter-spacing:-3.334933pt;}
.ls21_c01173{letter-spacing:-3.332000pt;}
.ls22_c01173{letter-spacing:-3.290000pt;}
.ls1b_c01173{letter-spacing:-3.208333pt;}
.ls14_c01173{letter-spacing:-2.815000pt;}
.ls27_c01173{letter-spacing:-2.595000pt;}
.ls2a_c01173{letter-spacing:-2.514733pt;}
.ls29_c01173{letter-spacing:-2.496600pt;}
.ls34_c01173{letter-spacing:-2.496267pt;}
.ls2c_c01173{letter-spacing:-2.433333pt;}
.ls24_c01173{letter-spacing:-2.395067pt;}
.ls11_c01173{letter-spacing:-2.115000pt;}
.ls17_c01173{letter-spacing:-2.055500pt;}
.ls36_c01173{letter-spacing:-2.025000pt;}
.ls1c_c01173{letter-spacing:-2.000533pt;}
.ls1d_c01173{letter-spacing:-1.976000pt;}
.ls10_c01173{letter-spacing:-1.410000pt;}
.ls18_c01173{letter-spacing:-1.350580pt;}
.lse_c01173{letter-spacing:-1.242667pt;}
.lsd_c01173{letter-spacing:-0.770267pt;}
.ls32_c01173{letter-spacing:-0.723800pt;}
.lsf_c01173{letter-spacing:-0.705000pt;}
.ls38_c01173{letter-spacing:-0.657600pt;}
.ls26_c01173{letter-spacing:-0.639333pt;}
.lsb_c01173{letter-spacing:0.000000pt;}
.ls1_c01173{letter-spacing:0.705000pt;}
.lsa_c01173{letter-spacing:0.770000pt;}
.lsc_c01173{letter-spacing:1.293200pt;}
.ls2e_c01173{letter-spacing:1.317200pt;}
.ls6_c01173{letter-spacing:1.410000pt;}
.ls4_c01173{letter-spacing:2.115000pt;}
.ls3_c01173{letter-spacing:2.815000pt;}
.ls0_c01173{letter-spacing:3.087333pt;}
.ls2_c01173{letter-spacing:3.520000pt;}
.ls7_c01173{letter-spacing:7.490333pt;}
.ls2d_c01173{letter-spacing:7.863467pt;}
.ls5_c01173{letter-spacing:12.674500pt;}
.ws0_c01173{word-spacing:0.000000pt;}
._f_c01173{margin-left:-21.360465pt;}
._1a_c01173{margin-left:-12.833042pt;}
._14_c01173{margin-left:-9.159845pt;}
._17_c01173{margin-left:-8.005169pt;}
._15_c01173{margin-left:-6.249549pt;}
._8_c01173{margin-left:-3.920000pt;}
._2_c01173{margin-left:-2.194944pt;}
._9_c01173{margin-left:-1.009986pt;}
._5_c01173{width:1.459408pt;}
._10_c01173{width:2.404394pt;}
._1_c01173{width:3.539859pt;}
._7_c01173{width:4.540479pt;}
._3_c01173{width:5.990423pt;}
._16_c01173{width:7.520408pt;}
._6_c01173{width:8.465282pt;}
._e_c01173{width:9.545141pt;}
._c_c01173{width:10.449944pt;}
._12_c01173{width:11.630268pt;}
._18_c01173{width:12.969056pt;}
._d_c01173{width:14.509718pt;}
._a_c01173{width:15.949972pt;}
._11_c01173{width:17.284817pt;}
._b_c01173{width:20.220197pt;}
._13_c01173{width:22.690479pt;}
._19_c01173{width:23.579915pt;}
._0_c01173{width:24.941207pt;}
._4_c01173{width:27.284704pt;}
.fs13_c01173{font-size:44.000000pt;}
.fs10_c01173{font-size:44.666667pt;}
.fsd_c01173{font-size:45.333333pt;}
.fs11_c01173{font-size:46.666667pt;}
.fsf_c01173{font-size:47.333333pt;}
.fs18_c01173{font-size:48.000000pt;}
.fs14_c01173{font-size:48.666667pt;}
.fse_c01173{font-size:49.333333pt;}
.fs7_c01173{font-size:50.000000pt;}
.fsc_c01173{font-size:50.666667pt;}
.fs9_c01173{font-size:51.333333pt;}
.fs16_c01173{font-size:52.000000pt;}
.fs8_c01173{font-size:53.333333pt;}
.fsa_c01173{font-size:54.000000pt;}
.fs17_c01173{font-size:55.333333pt;}
.fs12_c01173{font-size:56.000000pt;}
.fs15_c01173{font-size:64.000000pt;}
.fsb_c01173{font-size:66.000000pt;}
.fs5_c01173{font-size:70.666667pt;}
.fs1_c01173{font-size:72.000000pt;}
.fs6_c01173{font-size:72.666667pt;}
.fs2_c01173{font-size:73.333333pt;}
.fs3_c01173{font-size:75.333333pt;}
.fs0_c01173{font-size:76.666667pt;}
.fs4_c01173{font-size:83.333333pt;}
.y0_c01173{bottom:0.000000pt;}
.y3b_c01173{bottom:146.934387pt;}
.y3a_c01173{bottom:160.374387pt;}
.y39_c01173{bottom:173.814253pt;}
.y38_c01173{bottom:187.575053pt;}
.y37_c01173{bottom:187.575373pt;}
.y36_c01173{bottom:200.694107pt;}
.y35_c01173{bottom:200.694173pt;}
.y34_c01173{bottom:214.134120pt;}
.y32_c01173{bottom:241.013453pt;}
.y33_c01173{bottom:241.014000pt;}
.y31_c01173{bottom:254.134667pt;}
.y30_c01173{bottom:254.134987pt;}
.y2e_c01173{bottom:267.253200pt;}
.y2f_c01173{bottom:267.253720pt;}
.y2d_c01173{bottom:281.014520pt;}
.y2c_c01173{bottom:281.014853pt;}
.y2a_c01173{bottom:294.133040pt;}
.y2b_c01173{bottom:294.133587pt;}
.y29_c01173{bottom:307.254253pt;}
.y28_c01173{bottom:320.694107pt;}
.y26_c01173{bottom:328.055053pt;}
.y27_c01173{bottom:334.454920pt;}
.y25_c01173{bottom:360.695107pt;}
.y23_c01173{bottom:373.813227pt;}
.y24_c01173{bottom:373.813840pt;}
.y22_c01173{bottom:387.253173pt;}
.y20_c01173{bottom:400.374160pt;}
.y21_c01173{bottom:400.374387pt;}
.y1f_c01173{bottom:413.814107pt;}
.y1e_c01173{bottom:426.614133pt;}
.y1c_c01173{bottom:440.053960pt;}
.y1d_c01173{bottom:440.054000pt;}
.y1b_c01173{bottom:453.175173pt;}
.y1a_c01173{bottom:466.933840pt;}
.y19_c01173{bottom:466.933920pt;}
.y18_c01173{bottom:480.373867pt;}
.y17_c01173{bottom:506.294227pt;}
.y16_c01173{bottom:506.294307pt;}
.y14_c01173{bottom:519.733560pt;}
.y15_c01173{bottom:519.734253pt;}
.y13_c01173{bottom:532.854773pt;}
.y12_c01173{bottom:532.855427pt;}
.y10_c01173{bottom:546.614053pt;}
.y11_c01173{bottom:546.614093pt;}
.yf_c01173{bottom:560.054000pt;}
.ye_c01173{bottom:560.694133pt;}
.yd_c01173{bottom:599.095413pt;}
.yc_c01173{bottom:613.174107pt;}
.ya_c01173{bottom:625.653560pt;}
.yb_c01173{bottom:625.654093pt;}
.y9_c01173{bottom:638.774787pt;}
.y8_c01173{bottom:652.214640pt;}
.y7_c01173{bottom:652.215053pt;}
.y6_c01173{bottom:665.654987pt;}
.y5_c01173{bottom:678.773720pt;}
.y3_c01173{bottom:692.213027pt;}
.y4_c01173{bottom:692.213707pt;}
.y2_c01173{bottom:705.974360pt;}
.y1_c01173{bottom:751.094480pt;}
.h1a_c01173{height:45.687500pt;}
.h16_c01173{height:45.800781pt;}
.h18_c01173{height:45.890625pt;}
.h14_c01173{height:46.455078pt;}
.h15_c01173{height:46.585938pt;}
.h20_c01173{height:47.109375pt;}
.h12_c01173{height:47.281250pt;}
.h19_c01173{height:47.763672pt;}
.h13_c01173{height:48.417969pt;}
.h8_c01173{height:49.072266pt;}
.h1b_c01173{height:49.718750pt;}
.hf_c01173{height:49.726562pt;}
.ha_c01173{height:50.380859pt;}
.hc_c01173{height:50.390625pt;}
.h11_c01173{height:50.731771pt;}
.h1d_c01173{height:51.035156pt;}
.h1e_c01173{height:52.317708pt;}
.he_c01173{height:52.343750pt;}
.h9_c01173{height:52.708333pt;}
.hb_c01173{height:52.998047pt;}
.h10_c01173{height:53.367188pt;}
.h1f_c01173{height:54.684896pt;}
.h17_c01173{height:54.933594pt;}
.h1c_c01173{height:66.750000pt;}
.hd_c01173{height:68.835938pt;}
.h6_c01173{height:69.355469pt;}
.h3_c01173{height:71.972656pt;}
.h2_c01173{height:72.562500pt;}
.h7_c01173{height:73.234375pt;}
.h4_c01173{height:73.935547pt;}
.h1_c01173{height:77.265625pt;}
.h5_c01173{height:82.356771pt;}
.h0_c01173{height:793.333333pt;}
.w0_c01173{width:1122.666667pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:69.439480pt;}
.x2_c01173{left:148.798813pt;}
.x3_c01173{left:184.319867pt;}
.x4_c01173{left:318.079067pt;}
.x5_c01173{left:350.399453pt;}
.x6_c01173{left:543.039587pt;}
.x7_c01173{left:586.558507pt;}
.x8_c01173{left:613.119187pt;}
.xc_c01173{left:815.679080pt;}
.x1e_c01173{left:816.959560pt;}
.x18_c01173{left:818.559080pt;}
.x2d_c01173{left:819.517253pt;}
.x3b_c01173{left:820.479533pt;}
.x46_c01173{left:821.438880pt;}
.x32_c01173{left:826.558507pt;}
.x23_c01173{left:831.999027pt;}
.x2a_c01173{left:835.199707pt;}
.x47_c01173{left:840.638667pt;}
.x3e_c01173{left:847.359293pt;}
.x9_c01173{left:849.279707pt;}
.x1a_c01173{left:850.879520pt;}
.x24_c01173{left:852.159747pt;}
.x33_c01173{left:853.759280pt;}
.x3f_c01173{left:854.718747pt;}
.x39_c01173{left:861.439453pt;}
.x13_c01173{left:867.199213pt;}
.x2e_c01173{left:870.079027pt;}
.x37_c01173{left:871.038493pt;}
.x4d_c01173{left:877.759280pt;}
.x2f_c01173{left:879.039547pt;}
.x44_c01173{left:884.159173pt;}
.x36_c01173{left:885.758787pt;}
.x28_c01173{left:894.079027pt;}
.x45_c01173{left:896.318760pt;}
.x40_c01173{left:901.119147pt;}
.x38_c01173{left:902.718747pt;}
.x3a_c01173{left:904.959960pt;}
.x29_c01173{left:905.919440pt;}
.x30_c01173{left:907.519040pt;}
.x48_c01173{left:909.758787pt;}
.x14_c01173{left:913.918947pt;}
.x31_c01173{left:916.158693pt;}
.xd_c01173{left:919.999427pt;}
.x1b_c01173{left:925.119147pt;}
.xe_c01173{left:934.079587pt;}
.x10_c01173{left:935.679200pt;}
.xa_c01173{left:939.518467pt;}
.x3d_c01173{left:942.719160pt;}
.x41_c01173{left:943.678707pt;}
.x15_c01173{left:944.639573pt;}
.x19_c01173{left:947.838947pt;}
.xb_c01173{left:950.718747pt;}
.x11_c01173{left:951.999027pt;}
.x21_c01173{left:954.559573pt;}
.x34_c01173{left:955.519040pt;}
.x4b_c01173{left:957.758787pt;}
.x1f_c01173{left:963.518467pt;}
.x22_c01173{left:966.399827pt;}
.x42_c01173{left:971.519453pt;}
.x16_c01173{left:975.358893pt;}
.x4c_c01173{left:979.199707pt;}
.x1c_c01173{left:980.479987pt;}
.x35_c01173{left:981.758787pt;}
.x3c_c01173{left:987.199133pt;}
.x17_c01173{left:989.119547pt;}
.x1d_c01173{left:991.359293pt;}
.x20_c01173{left:1005.439453pt;}
.x43_c01173{left:1026.559573pt;}
.x25_c01173{left:1043.198733pt;}
.x2b_c01173{left:1050.559573pt;}
.x26_c01173{left:1055.359867pt;}
.x49_c01173{left:1056.959467pt;}
.x2c_c01173{left:1059.199133pt;}
.xf_c01173{left:1065.279707pt;}
.x27_c01173{left:1073.598720pt;}
.x12_c01173{left:1076.799320pt;}
.x4a_c01173{left:1079.679200pt;}
}





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

.ir_c01174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_1bf024ccbc636ab514a7f418.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01174;src:url('chunks/assets/font_86f5d9f7b25a2e264ae464ac.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01174;src:url('chunks/assets/font_25311ac2f87938e3a105e9ff.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01174;src:url('chunks/assets/font_a6dc9e9e7487a78da96f85a3.woff2')format("woff");}.ff4_c01174{font-family:ff4_c01174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01174;src:url('chunks/assets/font_f50217d56417f850b4677504.woff2')format("woff");}.ff5_c01174{font-family:ff5_c01174;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01174;src:url('chunks/assets/font_a0e9190905446abb2dedc12e.woff2')format("woff");}.ff6_c01174{font-family:ff6_c01174;line-height:1.364746;font-style:normal;font-weight: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_c01174;src:url('chunks/assets/font_c5246bfcc6f91934b1fa0e8b.woff2')format("woff");}.ff7_c01174{font-family:ff7_c01174;line-height:1.284180;font-style:normal;font-weight: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_c01174;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c01174{font-family:ff8_c01174;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2b_c01174{transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);}
.m28_c01174{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m29_c01174{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.m13_c01174{transform:matrix(0.176667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176667,0.000000,0.000000,0.250000,0,0);}
.m2c_c01174{transform:matrix(0.178082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178082,0.000000,0.000000,0.250000,0,0);}
.me_c01174{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m2a_c01174{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m7_c01174{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.md_c01174{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m24_c01174{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);}
.m5_c01174{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.mc_c01174{transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221698,0.000000,0.000000,0.250000,0,0);}
.m4_c01174{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.mb_c01174{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m2_c01174{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m2d_c01174{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m1f_c01174{transform:matrix(0.232476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232476,0.000000,0.000000,0.250000,0,0);}
.m1e_c01174{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.ma_c01174{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m12_c01174{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m22_c01174{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m11_c01174{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m3_c01174{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m9_c01174{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m27_c01174{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m23_c01174{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.m10_c01174{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m1b_c01174{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.mf_c01174{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m14_c01174{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m17_c01174{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m19_c01174{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m15_c01174{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m16_c01174{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m1_c01174{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m20_c01174{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m25_c01174{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m1a_c01174{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m8_c01174{transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);}
.m1c_c01174{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m18_c01174{transform:matrix(0.292763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292763,0.000000,0.000000,0.250000,0,0);}
.m0_c01174{transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298673,0.000000,0.000000,0.250000,0,0);}
.m1d_c01174{transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);}
.m21_c01174{transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319853,0.000000,0.000000,0.250000,0,0);}
.m26_c01174{transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);}
.m6_c01174{transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458333,0.000000,0.000000,0.250000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.ls2b_c01174{letter-spacing:-16.998300px;}
.ls36_c01174{letter-spacing:-12.088253px;}
.ls2e_c01174{letter-spacing:-10.377075px;}
.ls2c_c01174{letter-spacing:-8.154750px;}
.ls2f_c01174{letter-spacing:-8.139375px;}
.ls35_c01174{letter-spacing:-6.716385px;}
.lse_c01174{letter-spacing:-6.682500px;}
.ls29_c01174{letter-spacing:-6.659438px;}
.ls33_c01174{letter-spacing:-6.382350px;}
.ls20_c01174{letter-spacing:-5.762700px;}
.ls5_c01174{letter-spacing:-5.355765px;}
.ls37_c01174{letter-spacing:-5.180625px;}
.ls21_c01174{letter-spacing:-4.989600px;}
.lsb_c01174{letter-spacing:-4.900500px;}
.ls32_c01174{letter-spacing:-4.810575px;}
.ls38_c01174{letter-spacing:-4.671675px;}
.ls16_c01174{letter-spacing:-4.620000px;}
.ls31_c01174{letter-spacing:-4.440975px;}
.ls23_c01174{letter-spacing:-4.438125px;}
.ls25_c01174{letter-spacing:-4.435725px;}
.ls34_c01174{letter-spacing:-4.381875px;}
.ls2a_c01174{letter-spacing:-4.212450px;}
.ls39_c01174{letter-spacing:-4.210275px;}
.ls28_c01174{letter-spacing:-3.894000px;}
.ls24_c01174{letter-spacing:-3.701250px;}
.ls14_c01174{letter-spacing:-3.694950px;}
.ls22_c01174{letter-spacing:-3.435548px;}
.lsd_c01174{letter-spacing:-3.267000px;}
.ls26_c01174{letter-spacing:-3.221025px;}
.ls1a_c01174{letter-spacing:-2.958750px;}
.ls1f_c01174{letter-spacing:-2.919300px;}
.ls1e_c01174{letter-spacing:-2.841525px;}
.lsf_c01174{letter-spacing:-2.449425px;}
.ls17_c01174{letter-spacing:-2.222438px;}
.ls1c_c01174{letter-spacing:-2.193750px;}
.ls1d_c01174{letter-spacing:-2.136750px;}
.lsc_c01174{letter-spacing:-1.634325px;}
.ls18_c01174{letter-spacing:-1.542150px;}
.ls30_c01174{letter-spacing:-1.522050px;}
.ls19_c01174{letter-spacing:-1.479938px;}
.ls2d_c01174{letter-spacing:-1.401600px;}
.ls27_c01174{letter-spacing:-1.249305px;}
.ls10_c01174{letter-spacing:-0.842700px;}
.ls9_c01174{letter-spacing:-0.764400px;}
.ls15_c01174{letter-spacing:-0.742500px;}
.ls4_c01174{letter-spacing:0.000000px;}
.ls1_c01174{letter-spacing:0.742500px;}
.lsa_c01174{letter-spacing:0.775125px;}
.ls3a_c01174{letter-spacing:0.815295px;}
.ls13_c01174{letter-spacing:0.969150px;}
.ls11_c01174{letter-spacing:1.811250px;}
.ls8_c01174{letter-spacing:1.963913px;}
.ls1b_c01174{letter-spacing:2.120625px;}
.ls6_c01174{letter-spacing:2.552700px;}
.ls7_c01174{letter-spacing:3.363750px;}
.ls12_c01174{letter-spacing:3.406448px;}
.ls0_c01174{letter-spacing:4.256175px;}
.ls3_c01174{letter-spacing:4.952475px;}
.ls2_c01174{letter-spacing:6.279975px;}
.sc__c01174{text-shadow:none;}
.sc0_c01174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01174{-webkit-text-stroke:0px transparent;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01174{word-spacing:0.000000px;}
._14_c01174{margin-left:-33.917536px;}
._10_c01174{margin-left:-24.292747px;}
._f_c01174{margin-left:-7.014434px;}
._e_c01174{margin-left:-4.454734px;}
._d_c01174{margin-left:-3.152191px;}
._c_c01174{margin-left:-1.694309px;}
._11_c01174{width:1.540362px;}
._9_c01174{width:3.093750px;}
._6_c01174{width:4.769763px;}
._8_c01174{width:6.857289px;}
._7_c01174{width:8.029214px;}
._5_c01174{width:9.778145px;}
._16_c01174{width:12.232391px;}
._b_c01174{width:13.725681px;}
._13_c01174{width:14.946395px;}
._15_c01174{width:16.035013px;}
._a_c01174{width:17.831191px;}
._4_c01174{width:19.015043px;}
._12_c01174{width:20.378961px;}
._0_c01174{width:28.024476px;}
._2_c01174{width:30.784181px;}
._3_c01174{width:36.136111px;}
._1_c01174{width:40.911211px;}
.fc0_c01174{color:transparent;}
.fs6_c01174{font-size:22.500000px;}
.fs8_c01174{font-size:41.250000px;}
.fs9_c01174{font-size:42.000000px;}
.fs18_c01174{font-size:48.000000px;}
.fs4_c01174{font-size:48.750000px;}
.fs5_c01174{font-size:50.250000px;}
.fs16_c01174{font-size:51.000000px;}
.fse_c01174{font-size:51.750000px;}
.fsc_c01174{font-size:52.500000px;}
.fsd_c01174{font-size:53.250000px;}
.fs12_c01174{font-size:54.750000px;}
.fs11_c01174{font-size:55.500000px;}
.fsf_c01174{font-size:56.250000px;}
.fs15_c01174{font-size:56.953740px;}
.fs13_c01174{font-size:57.000000px;}
.fs10_c01174{font-size:57.750000px;}
.fs19_c01174{font-size:58.500000px;}
.fs14_c01174{font-size:60.000000px;}
.fs1a_c01174{font-size:60.750000px;}
.fs17_c01174{font-size:62.250000px;}
.fs7_c01174{font-size:71.250000px;}
.fs1_c01174{font-size:74.250000px;}
.fs3_c01174{font-size:76.500000px;}
.fsb_c01174{font-size:79.500000px;}
.fsa_c01174{font-size:81.000000px;}
.fs2_c01174{font-size:82.500000px;}
.fs0_c01174{font-size:84.750000px;}
.y0_c01174{bottom:0.000000px;}
.y6_c01174{bottom:388.860300px;}
.y8_c01174{bottom:390.300570px;}
.y5_c01174{bottom:451.861500px;}
.y4_c01174{bottom:461.940255px;}
.y3_c01174{bottom:470.941320px;}
.y29_c01174{bottom:497.941320px;}
.y28_c01174{bottom:497.941905px;}
.y27_c01174{bottom:512.700480px;}
.y25_c01174{bottom:527.820330px;}
.y26_c01174{bottom:527.820420px;}
.y24_c01174{bottom:542.940255px;}
.y23_c01174{bottom:542.940360px;}
.y21_c01174{bottom:558.059505px;}
.y22_c01174{bottom:558.060285px;}
.y20_c01174{bottom:572.820870px;}
.y1e_c01174{bottom:588.299175px;}
.y1f_c01174{bottom:588.300105px;}
.y1d_c01174{bottom:603.060540px;}
.y1b_c01174{bottom:617.459790px;}
.y1c_c01174{bottom:617.460570px;}
.y1a_c01174{bottom:632.221155px;}
.y19_c01174{bottom:647.341185px;}
.y18_c01174{bottom:647.341695px;}
.y16_c01174{bottom:662.099505px;}
.y17_c01174{bottom:662.100270px;}
.y15_c01174{bottom:677.581005px;}
.y13_c01174{bottom:692.339355px;}
.y14_c01174{bottom:692.340135px;}
.y12_c01174{bottom:707.100720px;}
.y11_c01174{bottom:722.220705px;}
.yf_c01174{bottom:737.340390px;}
.y10_c01174{bottom:737.340585px;}
.ye_c01174{bottom:751.740420px;}
.yc_c01174{bottom:766.859670px;}
.yd_c01174{bottom:766.860255px;}
.ya_c01174{bottom:781.620945px;}
.yb_c01174{bottom:781.621035px;}
.y2_c01174{bottom:792.419955px;}
.y9_c01174{bottom:796.740870px;}
.y1_c01174{bottom:846.060705px;}
.y7_c01174{bottom:847.860255px;}
.h7_c01174{height:23.466797px;}
.h9_c01174{height:40.484619px;}
.ha_c01174{height:41.507812px;}
.h5_c01174{height:47.845459px;}
.h6_c01174{height:49.317627px;}
.h1c_c01174{height:50.062500px;}
.hd_c01174{height:51.525879px;}
.h17_c01174{height:52.409180px;}
.h1a_c01174{height:53.191406px;}
.he_c01174{height:53.666016px;}
.h1d_c01174{height:53.707397px;}
.h14_c01174{height:53.734131px;}
.hf_c01174{height:53.973633px;}
.h22_c01174{height:54.108398px;}
.h13_c01174{height:54.470215px;}
.h20_c01174{height:55.177734px;}
.h10_c01174{height:55.206299px;}
.h19_c01174{height:55.896981px;}
.h15_c01174{height:55.942383px;}
.h16_c01174{height:56.678467px;}
.h12_c01174{height:56.689453px;}
.h1e_c01174{height:57.073242px;}
.h1f_c01174{height:57.814453px;}
.h11_c01174{height:58.201172px;}
.h18_c01174{height:59.296875px;}
.h21_c01174{height:60.038086px;}
.h1b_c01174{height:61.520508px;}
.h8_c01174{height:74.311523px;}
.h2_c01174{height:77.440430px;}
.h4_c01174{height:79.787109px;}
.hc_c01174{height:80.121094px;}
.hb_c01174{height:81.632812px;}
.h3_c01174{height:83.144531px;}
.h1_c01174{height:85.412109px;}
.h0_c01174{height:892.500000px;}
.w0_c01174{width:1263.000000px;}
.x0_c01174{left:0.000000px;}
.x1_c01174{left:84.958350px;}
.xb_c01174{left:89.638500px;}
.x5_c01174{left:104.758500px;}
.x6_c01174{left:166.678500px;}
.x2_c01174{left:172.439715px;}
.xc_c01174{left:174.239250px;}
.x7_c01174{left:189.718500px;}
.x9_c01174{left:195.479685px;}
.x3_c01174{left:215.279850px;}
.xa_c01174{left:234.359850px;}
.x8_c01174{left:253.798950px;}
.x4_c01174{left:365.038950px;}
.xd_c01174{left:403.198785px;}
.x11_c01174{left:491.759535px;}
.x12_c01174{left:511.198785px;}
.xe_c01174{left:740.878320px;}
.xf_c01174{left:783.718500px;}
.x10_c01174{left:835.198785px;}
.x38_c01174{left:938.878710px;}
.x1a_c01174{left:939.959430px;}
.x33_c01174{left:959.759040px;}
.x2b_c01174{left:970.559685px;}
.x34_c01174{left:973.079400px;}
.x13_c01174{left:977.398590px;}
.x3e_c01174{left:981.358605px;}
.x1f_c01174{left:984.959385px;}
.x3c_c01174{left:989.998905px;}
.x3b_c01174{left:991.798560px;}
.x26_c01174{left:996.119385px;}
.x14_c01174{left:997.198785px;}
.x3d_c01174{left:1003.678530px;}
.x20_c01174{left:1005.118740px;}
.x3f_c01174{left:1012.679715px;}
.x39_c01174{left:1029.958275px;}
.x15_c01174{left:1033.199805px;}
.x3a_c01174{left:1047.238770px;}
.x1b_c01174{left:1055.878965px;}
.x27_c01174{left:1056.958275px;}
.x22_c01174{left:1058.759490px;}
.x23_c01174{left:1073.518620px;}
.x2d_c01174{left:1075.679070px;}
.x1c_c01174{left:1077.478635px;}
.x16_c01174{left:1083.599025px;}
.x37_c01174{left:1101.958920px;}
.x28_c01174{left:1113.479640px;}
.x1d_c01174{left:1117.439670px;}
.x2e_c01174{left:1121.759040px;}
.x24_c01174{left:1131.478635px;}
.x17_c01174{left:1132.918950px;}
.x2c_c01174{left:1140.479640px;}
.x25_c01174{left:1146.239220px;}
.x2f_c01174{left:1158.839535px;}
.x18_c01174{left:1176.838530px;}
.x29_c01174{left:1181.879520px;}
.x30_c01174{left:1184.039985px;}
.x1e_c01174{left:1186.198785px;}
.x35_c01174{left:1187.639100px;}
.x31_c01174{left:1194.118740px;}
.x19_c01174{left:1195.199805px;}
.x2a_c01174{left:1211.399235px;}
.x32_c01174{left:1217.878875px;}
.x36_c01174{left:1228.318725px;}
.x21_c01174{left:1232.998905px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.ls2b_c01174{letter-spacing:-15.109600pt;}
.ls36_c01174{letter-spacing:-10.745113pt;}
.ls2e_c01174{letter-spacing:-9.224067pt;}
.ls2c_c01174{letter-spacing:-7.248667pt;}
.ls2f_c01174{letter-spacing:-7.235000pt;}
.ls35_c01174{letter-spacing:-5.970120pt;}
.lse_c01174{letter-spacing:-5.940000pt;}
.ls29_c01174{letter-spacing:-5.919500pt;}
.ls33_c01174{letter-spacing:-5.673200pt;}
.ls20_c01174{letter-spacing:-5.122400pt;}
.ls5_c01174{letter-spacing:-4.760680pt;}
.ls37_c01174{letter-spacing:-4.605000pt;}
.ls21_c01174{letter-spacing:-4.435200pt;}
.lsb_c01174{letter-spacing:-4.356000pt;}
.ls32_c01174{letter-spacing:-4.276067pt;}
.ls38_c01174{letter-spacing:-4.152600pt;}
.ls16_c01174{letter-spacing:-4.106667pt;}
.ls31_c01174{letter-spacing:-3.947533pt;}
.ls23_c01174{letter-spacing:-3.945000pt;}
.ls25_c01174{letter-spacing:-3.942867pt;}
.ls34_c01174{letter-spacing:-3.895000pt;}
.ls2a_c01174{letter-spacing:-3.744400pt;}
.ls39_c01174{letter-spacing:-3.742467pt;}
.ls28_c01174{letter-spacing:-3.461333pt;}
.ls24_c01174{letter-spacing:-3.290000pt;}
.ls14_c01174{letter-spacing:-3.284400pt;}
.ls22_c01174{letter-spacing:-3.053820pt;}
.lsd_c01174{letter-spacing:-2.904000pt;}
.ls26_c01174{letter-spacing:-2.863133pt;}
.ls1a_c01174{letter-spacing:-2.630000pt;}
.ls1f_c01174{letter-spacing:-2.594933pt;}
.ls1e_c01174{letter-spacing:-2.525800pt;}
.lsf_c01174{letter-spacing:-2.177267pt;}
.ls17_c01174{letter-spacing:-1.975500pt;}
.ls1c_c01174{letter-spacing:-1.950000pt;}
.ls1d_c01174{letter-spacing:-1.899333pt;}
.lsc_c01174{letter-spacing:-1.452733pt;}
.ls18_c01174{letter-spacing:-1.370800pt;}
.ls30_c01174{letter-spacing:-1.352933pt;}
.ls19_c01174{letter-spacing:-1.315500pt;}
.ls2d_c01174{letter-spacing:-1.245867pt;}
.ls27_c01174{letter-spacing:-1.110493pt;}
.ls10_c01174{letter-spacing:-0.749067pt;}
.ls9_c01174{letter-spacing:-0.679467pt;}
.ls15_c01174{letter-spacing:-0.660000pt;}
.ls4_c01174{letter-spacing:0.000000pt;}
.ls1_c01174{letter-spacing:0.660000pt;}
.lsa_c01174{letter-spacing:0.689000pt;}
.ls3a_c01174{letter-spacing:0.724707pt;}
.ls13_c01174{letter-spacing:0.861467pt;}
.ls11_c01174{letter-spacing:1.610000pt;}
.ls8_c01174{letter-spacing:1.745700pt;}
.ls1b_c01174{letter-spacing:1.885000pt;}
.ls6_c01174{letter-spacing:2.269067pt;}
.ls7_c01174{letter-spacing:2.990000pt;}
.ls12_c01174{letter-spacing:3.027953pt;}
.ls0_c01174{letter-spacing:3.783267pt;}
.ls3_c01174{letter-spacing:4.402200pt;}
.ls2_c01174{letter-spacing:5.582200pt;}
.ws0_c01174{word-spacing:0.000000pt;}
._14_c01174{margin-left:-30.148921pt;}
._10_c01174{margin-left:-21.593553pt;}
._f_c01174{margin-left:-6.235053pt;}
._e_c01174{margin-left:-3.959763pt;}
._d_c01174{margin-left:-2.801947pt;}
._c_c01174{margin-left:-1.506053pt;}
._11_c01174{width:1.369211pt;}
._9_c01174{width:2.750000pt;}
._6_c01174{width:4.239789pt;}
._8_c01174{width:6.095368pt;}
._7_c01174{width:7.137079pt;}
._5_c01174{width:8.691684pt;}
._16_c01174{width:10.873237pt;}
._b_c01174{width:12.200605pt;}
._13_c01174{width:13.285684pt;}
._15_c01174{width:14.253345pt;}
._a_c01174{width:15.849947pt;}
._4_c01174{width:16.902260pt;}
._12_c01174{width:18.114632pt;}
._0_c01174{width:24.910645pt;}
._2_c01174{width:27.363716pt;}
._3_c01174{width:32.120987pt;}
._1_c01174{width:36.365521pt;}
.fs6_c01174{font-size:20.000000pt;}
.fs8_c01174{font-size:36.666667pt;}
.fs9_c01174{font-size:37.333333pt;}
.fs18_c01174{font-size:42.666667pt;}
.fs4_c01174{font-size:43.333333pt;}
.fs5_c01174{font-size:44.666667pt;}
.fs16_c01174{font-size:45.333333pt;}
.fse_c01174{font-size:46.000000pt;}
.fsc_c01174{font-size:46.666667pt;}
.fsd_c01174{font-size:47.333333pt;}
.fs12_c01174{font-size:48.666667pt;}
.fs11_c01174{font-size:49.333333pt;}
.fsf_c01174{font-size:50.000000pt;}
.fs15_c01174{font-size:50.625547pt;}
.fs13_c01174{font-size:50.666667pt;}
.fs10_c01174{font-size:51.333333pt;}
.fs19_c01174{font-size:52.000000pt;}
.fs14_c01174{font-size:53.333333pt;}
.fs1a_c01174{font-size:54.000000pt;}
.fs17_c01174{font-size:55.333333pt;}
.fs7_c01174{font-size:63.333333pt;}
.fs1_c01174{font-size:66.000000pt;}
.fs3_c01174{font-size:68.000000pt;}
.fsb_c01174{font-size:70.666667pt;}
.fsa_c01174{font-size:72.000000pt;}
.fs2_c01174{font-size:73.333333pt;}
.fs0_c01174{font-size:75.333333pt;}
.y0_c01174{bottom:0.000000pt;}
.y6_c01174{bottom:345.653600pt;}
.y8_c01174{bottom:346.933840pt;}
.y5_c01174{bottom:401.654667pt;}
.y4_c01174{bottom:410.613560pt;}
.y3_c01174{bottom:418.614507pt;}
.y29_c01174{bottom:442.614507pt;}
.y28_c01174{bottom:442.615027pt;}
.y27_c01174{bottom:455.733760pt;}
.y25_c01174{bottom:469.173627pt;}
.y26_c01174{bottom:469.173707pt;}
.y24_c01174{bottom:482.613560pt;}
.y23_c01174{bottom:482.613653pt;}
.y21_c01174{bottom:496.052893pt;}
.y22_c01174{bottom:496.053587pt;}
.y20_c01174{bottom:509.174107pt;}
.y1e_c01174{bottom:522.932600pt;}
.y1f_c01174{bottom:522.933427pt;}
.y1d_c01174{bottom:536.053813pt;}
.y1b_c01174{bottom:548.853147pt;}
.y1c_c01174{bottom:548.853840pt;}
.y1a_c01174{bottom:561.974360pt;}
.y19_c01174{bottom:575.414387pt;}
.y18_c01174{bottom:575.414840pt;}
.y16_c01174{bottom:588.532893pt;}
.y17_c01174{bottom:588.533573pt;}
.y15_c01174{bottom:602.294227pt;}
.y13_c01174{bottom:615.412760pt;}
.y14_c01174{bottom:615.413453pt;}
.y12_c01174{bottom:628.533973pt;}
.y11_c01174{bottom:641.973960pt;}
.yf_c01174{bottom:655.413680pt;}
.y10_c01174{bottom:655.413853pt;}
.ye_c01174{bottom:668.213707pt;}
.yc_c01174{bottom:681.653040pt;}
.yd_c01174{bottom:681.653560pt;}
.ya_c01174{bottom:694.774173pt;}
.yb_c01174{bottom:694.774253pt;}
.y2_c01174{bottom:704.373293pt;}
.y9_c01174{bottom:708.214107pt;}
.y1_c01174{bottom:752.053960pt;}
.y7_c01174{bottom:753.653560pt;}
.h7_c01174{height:20.859375pt;}
.h9_c01174{height:35.986328pt;}
.ha_c01174{height:36.895833pt;}
.h5_c01174{height:42.529297pt;}
.h6_c01174{height:43.837891pt;}
.h1c_c01174{height:44.500000pt;}
.hd_c01174{height:45.800781pt;}
.h17_c01174{height:46.585938pt;}
.h1a_c01174{height:47.281250pt;}
.he_c01174{height:47.703125pt;}
.h1d_c01174{height:47.739909pt;}
.h14_c01174{height:47.763672pt;}
.hf_c01174{height:47.976562pt;}
.h22_c01174{height:48.096354pt;}
.h13_c01174{height:48.417969pt;}
.h20_c01174{height:49.046875pt;}
.h10_c01174{height:49.072266pt;}
.h19_c01174{height:49.686205pt;}
.h15_c01174{height:49.726562pt;}
.h16_c01174{height:50.380859pt;}
.h12_c01174{height:50.390625pt;}
.h1e_c01174{height:50.731771pt;}
.h1f_c01174{height:51.390625pt;}
.h11_c01174{height:51.734375pt;}
.h18_c01174{height:52.708333pt;}
.h21_c01174{height:53.367188pt;}
.h1b_c01174{height:54.684896pt;}
.h8_c01174{height:66.054688pt;}
.h2_c01174{height:68.835938pt;}
.h4_c01174{height:70.921875pt;}
.hc_c01174{height:71.218750pt;}
.hb_c01174{height:72.562500pt;}
.h3_c01174{height:73.906250pt;}
.h1_c01174{height:75.921875pt;}
.h0_c01174{height:793.333333pt;}
.w0_c01174{width:1122.666667pt;}
.x0_c01174{left:0.000000pt;}
.x1_c01174{left:75.518533pt;}
.xb_c01174{left:79.678667pt;}
.x5_c01174{left:93.118667pt;}
.x6_c01174{left:148.158667pt;}
.x2_c01174{left:153.279747pt;}
.xc_c01174{left:154.879333pt;}
.x7_c01174{left:168.638667pt;}
.x9_c01174{left:173.759720pt;}
.x3_c01174{left:191.359867pt;}
.xa_c01174{left:208.319867pt;}
.x8_c01174{left:225.599067pt;}
.x4_c01174{left:324.479067pt;}
.xd_c01174{left:358.398920pt;}
.x11_c01174{left:437.119587pt;}
.x12_c01174{left:454.398920pt;}
.xe_c01174{left:658.558507pt;}
.xf_c01174{left:696.638667pt;}
.x10_c01174{left:742.398920pt;}
.x38_c01174{left:834.558853pt;}
.x1a_c01174{left:835.519493pt;}
.x33_c01174{left:853.119147pt;}
.x2b_c01174{left:862.719720pt;}
.x34_c01174{left:864.959467pt;}
.x13_c01174{left:868.798747pt;}
.x3e_c01174{left:872.318760pt;}
.x1f_c01174{left:875.519453pt;}
.x3c_c01174{left:879.999027pt;}
.x3b_c01174{left:881.598720pt;}
.x26_c01174{left:885.439453pt;}
.x14_c01174{left:886.398920pt;}
.x3d_c01174{left:892.158693pt;}
.x20_c01174{left:893.438880pt;}
.x3f_c01174{left:900.159747pt;}
.x39_c01174{left:915.518467pt;}
.x15_c01174{left:918.399827pt;}
.x3a_c01174{left:930.878907pt;}
.x1b_c01174{left:938.559080pt;}
.x27_c01174{left:939.518467pt;}
.x22_c01174{left:941.119547pt;}
.x23_c01174{left:954.238773pt;}
.x2d_c01174{left:956.159173pt;}
.x1c_c01174{left:957.758787pt;}
.x16_c01174{left:963.199133pt;}
.x37_c01174{left:979.519040pt;}
.x28_c01174{left:989.759680pt;}
.x1d_c01174{left:993.279707pt;}
.x2e_c01174{left:997.119147pt;}
.x24_c01174{left:1005.758787pt;}
.x17_c01174{left:1007.039067pt;}
.x2c_c01174{left:1013.759680pt;}
.x25_c01174{left:1018.879307pt;}
.x2f_c01174{left:1030.079587pt;}
.x18_c01174{left:1046.078693pt;}
.x29_c01174{left:1050.559573pt;}
.x30_c01174{left:1052.479987pt;}
.x1e_c01174{left:1054.398920pt;}
.x35_c01174{left:1055.679200pt;}
.x31_c01174{left:1061.438880pt;}
.x19_c01174{left:1062.399827pt;}
.x2a_c01174{left:1076.799320pt;}
.x32_c01174{left:1082.559000pt;}
.x36_c01174{left:1091.838867pt;}
.x21_c01174{left:1095.999027pt;}
}





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

.ir_c01175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_cab64a844df79f219bfa35ee.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01175;src:url('chunks/assets/font_79e4305d9650fdc5035f1ead.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01175;src:url('chunks/assets/font_da0af99340c9acc005d8081a.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01175;src:url('chunks/assets/font_214f051609d3d2aefcd38378.woff2')format("woff");}.ff4_c01175{font-family:ff4_c01175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01175;src:url('chunks/assets/font_235c3774b589f5dabf318cde.woff2')format("woff");}.ff5_c01175{font-family:ff5_c01175;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01175;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c01175{font-family:ff6_c01175;line-height:1.364746;font-style:normal;font-weight: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_c01175;src:url('chunks/assets/font_ed8e15b8c9ec761e4d5bbf46.woff2')format("woff");}.ff7_c01175{font-family:ff7_c01175;line-height:1.432129;font-style:normal;font-weight: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_c01175;src:url('chunks/assets/font_6833fb840f77dadee2a685e1.woff2')format("woff");}.ff8_c01175{font-family:ff8_c01175;line-height:1.281250;font-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_c01175{transform:matrix(0.149254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149254,0.000000,0.000000,0.250000,0,0);}
.m1a_c01175{transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158537,0.000000,0.000000,0.250000,0,0);}
.m10_c01175{transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158784,0.000000,0.000000,0.250000,0,0);}
.m1e_c01175{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m17_c01175{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01175{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m23_c01175{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m20_c01175{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m15_c01175{transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);}
.m1b_c01175{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m14_c01175{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m1_c01175{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.mc_c01175{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m3_c01175{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m24_c01175{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m4_c01175{transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227642,0.000000,0.000000,0.250000,0,0);}
.m27_c01175{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m2_c01175{transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);}
.me_c01175{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m18_c01175{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m13_c01175{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m5_c01175{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.m6_c01175{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m19_c01175{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_c01175{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m28_c01175{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.mb_c01175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01175{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.ma_c01175{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m9_c01175{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m16_c01175{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.md_c01175{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m11_c01175{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_c01175{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m22_c01175{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m12_c01175{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.mf_c01175{transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);}
.m0_c01175{transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);}
.m8_c01175{transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316901,0.000000,0.000000,0.250000,0,0);}
.m26_c01175{transform:matrix(0.413551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413551,0.000000,0.000000,0.250000,0,0);}
.m21_c01175{transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423469,0.000000,0.000000,0.250000,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.ls7_c01175{letter-spacing:-23.717475px;}
.lsa_c01175{letter-spacing:-18.827100px;}
.lsb_c01175{letter-spacing:-17.523000px;}
.ls23_c01175{letter-spacing:-11.359425px;}
.ls6_c01175{letter-spacing:-11.151000px;}
.ls2f_c01175{letter-spacing:-10.265625px;}
.ls9_c01175{letter-spacing:-9.879975px;}
.ls29_c01175{letter-spacing:-9.253298px;}
.ls1e_c01175{letter-spacing:-8.961233px;}
.ls2b_c01175{letter-spacing:-8.252475px;}
.lsd_c01175{letter-spacing:-7.708253px;}
.ls1c_c01175{letter-spacing:-6.604650px;}
.ls31_c01175{letter-spacing:-6.281250px;}
.ls25_c01175{letter-spacing:-6.243750px;}
.ls2a_c01175{letter-spacing:-6.170325px;}
.ls1b_c01175{letter-spacing:-5.248410px;}
.ls8_c01175{letter-spacing:-4.779000px;}
.ls15_c01175{letter-spacing:-4.508925px;}
.ls20_c01175{letter-spacing:-4.501575px;}
.ls1d_c01175{letter-spacing:-4.497300px;}
.ls24_c01175{letter-spacing:-4.440975px;}
.ls22_c01175{letter-spacing:-4.325625px;}
.ls2d_c01175{letter-spacing:-4.279275px;}
.ls27_c01175{letter-spacing:-4.267950px;}
.ls21_c01175{letter-spacing:-3.955800px;}
.ls1a_c01175{letter-spacing:-3.942675px;}
.ls2e_c01175{letter-spacing:-3.854400px;}
.ls17_c01175{letter-spacing:-3.605625px;}
.ls5_c01175{letter-spacing:-3.579750px;}
.ls30_c01175{letter-spacing:-3.082425px;}
.ls11_c01175{letter-spacing:-3.001050px;}
.lsf_c01175{letter-spacing:-2.958300px;}
.ls1f_c01175{letter-spacing:-2.898023px;}
.ls13_c01175{letter-spacing:-2.884200px;}
.ls16_c01175{letter-spacing:-2.364300px;}
.ls28_c01175{letter-spacing:-2.320500px;}
.ls18_c01175{letter-spacing:-2.315925px;}
.lse_c01175{letter-spacing:-2.193750px;}
.ls26_c01175{letter-spacing:-2.136750px;}
.ls19_c01175{letter-spacing:-2.081805px;}
.ls32_c01175{letter-spacing:-1.609650px;}
.ls10_c01175{letter-spacing:-1.543950px;}
.ls2c_c01175{letter-spacing:-1.326675px;}
.ls12_c01175{letter-spacing:-0.771975px;}
.ls33_c01175{letter-spacing:-0.771450px;}
.ls4_c01175{letter-spacing:-0.636473px;}
.lsc_c01175{letter-spacing:0.000000px;}
.ls0_c01175{letter-spacing:0.771975px;}
.ls2_c01175{letter-spacing:1.543950px;}
.ls1_c01175{letter-spacing:2.315925px;}
.ls3_c01175{letter-spacing:3.082425px;}
.ls14_c01175{letter-spacing:7.953750px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01175{word-spacing:0.000000px;}
._9_c01175{margin-left:-39.195340px;}
._c_c01175{margin-left:-14.092264px;}
._a_c01175{margin-left:-11.201665px;}
._5_c01175{margin-left:-8.656222px;}
._4_c01175{margin-left:-7.271016px;}
._2_c01175{margin-left:-5.688803px;}
._e_c01175{margin-left:-3.558950px;}
._3_c01175{margin-left:-1.714061px;}
._0_c01175{width:1.908191px;}
._7_c01175{width:3.498402px;}
._b_c01175{width:5.852575px;}
._16_c01175{width:7.057198px;}
._18_c01175{width:8.114166px;}
._d_c01175{width:9.337999px;}
._6_c01175{width:10.731339px;}
._13_c01175{width:12.712827px;}
._1_c01175{width:14.063193px;}
._8_c01175{width:15.347134px;}
._12_c01175{width:17.708247px;}
._15_c01175{width:18.828710px;}
._14_c01175{width:20.528829px;}
._f_c01175{width:22.984482px;}
._10_c01175{width:24.095799px;}
._17_c01175{width:28.240235px;}
._11_c01175{width:30.197763px;}
.fc0_c01175{color:transparent;}
.fs10_c01175{font-size:30.750000px;}
.fs12_c01175{font-size:36.750000px;}
.fsf_c01175{font-size:42.750000px;}
.fs13_c01175{font-size:50.250000px;}
.fse_c01175{font-size:51.000000px;}
.fsa_c01175{font-size:52.500000px;}
.fs5_c01175{font-size:53.250000px;}
.fs6_c01175{font-size:54.750000px;}
.fsc_c01175{font-size:55.500000px;}
.fs7_c01175{font-size:56.250000px;}
.fs8_c01175{font-size:57.000000px;}
.fs11_c01175{font-size:57.750000px;}
.fs9_c01175{font-size:58.500000px;}
.fsb_c01175{font-size:59.250000px;}
.fsd_c01175{font-size:60.750000px;}
.fs14_c01175{font-size:80.250000px;}
.fs1_c01175{font-size:83.250000px;}
.fs0_c01175{font-size:84.750000px;}
.fs4_c01175{font-size:85.500000px;}
.fs2_c01175{font-size:90.000000px;}
.fs3_c01175{font-size:92.250000px;}
.y0_c01175{bottom:0.000000px;}
.y28_c01175{bottom:364.021680px;}
.y27_c01175{bottom:379.140885px;}
.y25_c01175{bottom:393.901290px;}
.y26_c01175{bottom:393.901470px;}
.y23_c01175{bottom:401.460570px;}
.y24_c01175{bottom:408.660420px;}
.y22_c01175{bottom:438.541035px;}
.y21_c01175{bottom:453.661005px;}
.y20_c01175{bottom:453.661830px;}
.y1f_c01175{bottom:468.422430px;}
.y1d_c01175{bottom:483.541440px;}
.y1e_c01175{bottom:483.541620px;}
.y1c_c01175{bottom:498.300570px;}
.y1b_c01175{bottom:513.061335px;}
.y1a_c01175{bottom:519.541035px;}
.y19_c01175{bottom:528.181320px;}
.y18_c01175{bottom:528.181755px;}
.y17_c01175{bottom:558.060285px;}
.y16_c01175{bottom:558.061065px;}
.y15_c01175{bottom:573.180270px;}
.y14_c01175{bottom:587.940855px;}
.y13_c01175{bottom:602.701485px;}
.y12_c01175{bottom:602.702040px;}
.y11_c01175{bottom:632.580600px;}
.y10_c01175{bottom:647.341185px;}
.yf_c01175{bottom:648.781500px;}
.ye_c01175{bottom:662.100270px;}
.yd_c01175{bottom:662.100495px;}
.yc_c01175{bottom:677.581005px;}
.yb_c01175{bottom:677.581185px;}
.ya_c01175{bottom:692.341785px;}
.y9_c01175{bottom:692.342415px;}
.y7_c01175{bottom:707.461575px;}
.y8_c01175{bottom:707.461620px;}
.y5_c01175{bottom:722.220660px;}
.y6_c01175{bottom:722.220705px;}
.y4_c01175{bottom:766.859775px;}
.y3_c01175{bottom:781.261785px;}
.y2_c01175{bottom:796.381620px;}
.y1_c01175{bottom:845.340540px;}
.h16_c01175{height:30.179443px;}
.h19_c01175{height:38.329102px;}
.h15_c01175{height:43.083984px;}
.h8_c01175{height:52.235962px;}
.h6_c01175{height:52.261963px;}
.h1c_c01175{height:52.409180px;}
.hc_c01175{height:52.910156px;}
.h11_c01175{height:53.191406px;}
.h7_c01175{height:53.734131px;}
.h1b_c01175{height:54.108398px;}
.hf_c01175{height:54.470215px;}
.he_c01175{height:54.849609px;}
.h1a_c01175{height:55.177734px;}
.h9_c01175{height:55.206299px;}
.ha_c01175{height:55.942383px;}
.h17_c01175{height:56.678467px;}
.h18_c01175{height:57.073242px;}
.hb_c01175{height:57.414551px;}
.h13_c01175{height:57.445312px;}
.h12_c01175{height:57.814453px;}
.hd_c01175{height:58.150635px;}
.h10_c01175{height:59.593140px;}
.h14_c01175{height:60.038086px;}
.h1d_c01175{height:78.721802px;}
.h2_c01175{height:82.274414px;}
.h5_c01175{height:84.498047px;}
.h1_c01175{height:85.412109px;}
.h3_c01175{height:88.945312px;}
.h4_c01175{height:91.168945px;}
.h0_c01175{height:892.500000px;}
.w0_c01175{width:1263.000000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:88.559100px;}
.x2_c01175{left:175.318800px;}
.x3_c01175{left:217.799535px;}
.x4_c01175{left:368.278800px;}
.x5_c01175{left:405.718500px;}
.x6_c01175{left:626.398635px;}
.x7_c01175{left:675.359250px;}
.x8_c01175{left:704.158770px;}
.x2a_c01175{left:885.599670px;}
.x20_c01175{left:926.279475px;}
.xf_c01175{left:927.358605px;}
.x40_c01175{left:928.439670px;}
.x3a_c01175{left:936.719055px;}
.x10_c01175{left:958.318815px;}
.x26_c01175{left:962.278755px;}
.x43_c01175{left:963.360585px;}
.x2f_c01175{left:964.439025px;}
.x9_c01175{left:965.518620px;}
.x11_c01175{left:968.039985px;}
.x2b_c01175{left:975.958275px;}
.xa_c01175{left:978.838905px;}
.x24_c01175{left:985.318815px;}
.x2c_c01175{left:989.278755px;}
.x21_c01175{left:992.159370px;}
.x27_c01175{left:996.478635px;}
.x25_c01175{left:998.639100px;}
.x3d_c01175{left:1001.519715px;}
.x1a_c01175{left:1006.199805px;}
.x22_c01175{left:1010.519070px;}
.x30_c01175{left:1011.598575px;}
.x16_c01175{left:1012.679715px;}
.x3e_c01175{left:1015.558590px;}
.x1b_c01175{left:1026.718500px;}
.x23_c01175{left:1029.599025px;}
.x31_c01175{left:1031.039340px;}
.x12_c01175{left:1045.439205px;}
.x3c_c01175{left:1057.319190px;}
.x1c_c01175{left:1064.159820px;}
.x17_c01175{left:1070.639655px;}
.x32_c01175{left:1072.079955px;}
.xb_c01175{left:1073.159370px;}
.x13_c01175{left:1083.958275px;}
.x1d_c01175{left:1089.358605px;}
.x33_c01175{left:1090.798920px;}
.x18_c01175{left:1092.598575px;}
.x14_c01175{left:1094.399775px;}
.x41_c01175{left:1097.278755px;}
.x39_c01175{left:1103.758575px;}
.xc_c01175{left:1104.839535px;}
.x3f_c01175{left:1112.759490px;}
.x15_c01175{left:1116.358605px;}
.xd_c01175{left:1117.798920px;}
.x42_c01175{left:1129.679070px;}
.x2d_c01175{left:1137.239775px;}
.xe_c01175{left:1138.678530px;}
.x37_c01175{left:1145.878320px;}
.x2e_c01175{left:1151.998905px;}
.x34_c01175{left:1155.599670px;}
.x28_c01175{left:1159.198785px;}
.x38_c01175{left:1160.279850px;}
.x44_c01175{left:1162.079400px;}
.x19_c01175{left:1169.999355px;}
.x35_c01175{left:1177.919490px;}
.x29_c01175{left:1184.399235px;}
.x1e_c01175{left:1185.478635px;}
.x3b_c01175{left:1215.718590px;}
.x1f_c01175{left:1216.799565px;}
.x36_c01175{left:1219.678530px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.ls7_c01175{letter-spacing:-21.082200pt;}
.lsa_c01175{letter-spacing:-16.735200pt;}
.lsb_c01175{letter-spacing:-15.576000pt;}
.ls23_c01175{letter-spacing:-10.097267pt;}
.ls6_c01175{letter-spacing:-9.912000pt;}
.ls2f_c01175{letter-spacing:-9.125000pt;}
.ls9_c01175{letter-spacing:-8.782200pt;}
.ls29_c01175{letter-spacing:-8.225153pt;}
.ls1e_c01175{letter-spacing:-7.965540pt;}
.ls2b_c01175{letter-spacing:-7.335533pt;}
.lsd_c01175{letter-spacing:-6.851780pt;}
.ls1c_c01175{letter-spacing:-5.870800pt;}
.ls31_c01175{letter-spacing:-5.583333pt;}
.ls25_c01175{letter-spacing:-5.550000pt;}
.ls2a_c01175{letter-spacing:-5.484733pt;}
.ls1b_c01175{letter-spacing:-4.665253pt;}
.ls8_c01175{letter-spacing:-4.248000pt;}
.ls15_c01175{letter-spacing:-4.007933pt;}
.ls20_c01175{letter-spacing:-4.001400pt;}
.ls1d_c01175{letter-spacing:-3.997600pt;}
.ls24_c01175{letter-spacing:-3.947533pt;}
.ls22_c01175{letter-spacing:-3.845000pt;}
.ls2d_c01175{letter-spacing:-3.803800pt;}
.ls27_c01175{letter-spacing:-3.793733pt;}
.ls21_c01175{letter-spacing:-3.516267pt;}
.ls1a_c01175{letter-spacing:-3.504600pt;}
.ls2e_c01175{letter-spacing:-3.426133pt;}
.ls17_c01175{letter-spacing:-3.205000pt;}
.ls5_c01175{letter-spacing:-3.182000pt;}
.ls30_c01175{letter-spacing:-2.739933pt;}
.ls11_c01175{letter-spacing:-2.667600pt;}
.lsf_c01175{letter-spacing:-2.629600pt;}
.ls1f_c01175{letter-spacing:-2.576020pt;}
.ls13_c01175{letter-spacing:-2.563733pt;}
.ls16_c01175{letter-spacing:-2.101600pt;}
.ls28_c01175{letter-spacing:-2.062667pt;}
.ls18_c01175{letter-spacing:-2.058600pt;}
.lse_c01175{letter-spacing:-1.950000pt;}
.ls26_c01175{letter-spacing:-1.899333pt;}
.ls19_c01175{letter-spacing:-1.850493pt;}
.ls32_c01175{letter-spacing:-1.430800pt;}
.ls10_c01175{letter-spacing:-1.372400pt;}
.ls2c_c01175{letter-spacing:-1.179267pt;}
.ls12_c01175{letter-spacing:-0.686200pt;}
.ls33_c01175{letter-spacing:-0.685733pt;}
.ls4_c01175{letter-spacing:-0.565753pt;}
.lsc_c01175{letter-spacing:0.000000pt;}
.ls0_c01175{letter-spacing:0.686200pt;}
.ls2_c01175{letter-spacing:1.372400pt;}
.ls1_c01175{letter-spacing:2.058600pt;}
.ls3_c01175{letter-spacing:2.739933pt;}
.ls14_c01175{letter-spacing:7.070000pt;}
.ws0_c01175{word-spacing:0.000000pt;}
._9_c01175{margin-left:-34.840302pt;}
._c_c01175{margin-left:-12.526457pt;}
._a_c01175{margin-left:-9.957035pt;}
._5_c01175{margin-left:-7.694419pt;}
._4_c01175{margin-left:-6.463125pt;}
._2_c01175{margin-left:-5.056713pt;}
._e_c01175{margin-left:-3.163512pt;}
._3_c01175{margin-left:-1.523609pt;}
._0_c01175{width:1.696170pt;}
._7_c01175{width:3.109690pt;}
._b_c01175{width:5.202288pt;}
._16_c01175{width:6.273065pt;}
._18_c01175{width:7.212592pt;}
._d_c01175{width:8.300443pt;}
._6_c01175{width:9.538968pt;}
._13_c01175{width:11.300290pt;}
._1_c01175{width:12.500616pt;}
._8_c01175{width:13.641897pt;}
._12_c01175{width:15.740664pt;}
._15_c01175{width:16.736631pt;}
._14_c01175{width:18.247848pt;}
._f_c01175{width:20.430651pt;}
._10_c01175{width:21.418488pt;}
._17_c01175{width:25.102431pt;}
._11_c01175{width:26.842456pt;}
.fs10_c01175{font-size:27.333333pt;}
.fs12_c01175{font-size:32.666667pt;}
.fsf_c01175{font-size:38.000000pt;}
.fs13_c01175{font-size:44.666667pt;}
.fse_c01175{font-size:45.333333pt;}
.fsa_c01175{font-size:46.666667pt;}
.fs5_c01175{font-size:47.333333pt;}
.fs6_c01175{font-size:48.666667pt;}
.fsc_c01175{font-size:49.333333pt;}
.fs7_c01175{font-size:50.000000pt;}
.fs8_c01175{font-size:50.666667pt;}
.fs11_c01175{font-size:51.333333pt;}
.fs9_c01175{font-size:52.000000pt;}
.fsb_c01175{font-size:52.666667pt;}
.fsd_c01175{font-size:54.000000pt;}
.fs14_c01175{font-size:71.333333pt;}
.fs1_c01175{font-size:74.000000pt;}
.fs0_c01175{font-size:75.333333pt;}
.fs4_c01175{font-size:76.000000pt;}
.fs2_c01175{font-size:80.000000pt;}
.fs3_c01175{font-size:82.000000pt;}
.y0_c01175{bottom:0.000000pt;}
.y28_c01175{bottom:323.574827pt;}
.y27_c01175{bottom:337.014120pt;}
.y25_c01175{bottom:350.134480pt;}
.y26_c01175{bottom:350.134640pt;}
.y23_c01175{bottom:356.853840pt;}
.y24_c01175{bottom:363.253707pt;}
.y22_c01175{bottom:389.814253pt;}
.y21_c01175{bottom:403.254227pt;}
.y20_c01175{bottom:403.254960pt;}
.y1f_c01175{bottom:416.375493pt;}
.y1d_c01175{bottom:429.814613pt;}
.y1e_c01175{bottom:429.814773pt;}
.y1c_c01175{bottom:442.933840pt;}
.y1b_c01175{bottom:456.054520pt;}
.y1a_c01175{bottom:461.814253pt;}
.y19_c01175{bottom:469.494507pt;}
.y18_c01175{bottom:469.494893pt;}
.y17_c01175{bottom:496.053587pt;}
.y16_c01175{bottom:496.054280pt;}
.y15_c01175{bottom:509.493573pt;}
.y14_c01175{bottom:522.614093pt;}
.y13_c01175{bottom:535.734653pt;}
.y12_c01175{bottom:535.735147pt;}
.y11_c01175{bottom:562.293867pt;}
.y10_c01175{bottom:575.414387pt;}
.yf_c01175{bottom:576.694667pt;}
.ye_c01175{bottom:588.533573pt;}
.yd_c01175{bottom:588.533773pt;}
.yc_c01175{bottom:602.294227pt;}
.yb_c01175{bottom:602.294387pt;}
.ya_c01175{bottom:615.414920pt;}
.y9_c01175{bottom:615.415480pt;}
.y7_c01175{bottom:628.854733pt;}
.y8_c01175{bottom:628.854773pt;}
.y5_c01175{bottom:641.973920pt;}
.y6_c01175{bottom:641.973960pt;}
.y4_c01175{bottom:681.653133pt;}
.y3_c01175{bottom:694.454920pt;}
.y2_c01175{bottom:707.894773pt;}
.y1_c01175{bottom:751.413813pt;}
.h16_c01175{height:26.826172pt;}
.h19_c01175{height:34.070312pt;}
.h15_c01175{height:38.296875pt;}
.h8_c01175{height:46.431966pt;}
.h6_c01175{height:46.455078pt;}
.h1c_c01175{height:46.585938pt;}
.hc_c01175{height:47.031250pt;}
.h11_c01175{height:47.281250pt;}
.h7_c01175{height:47.763672pt;}
.h1b_c01175{height:48.096354pt;}
.hf_c01175{height:48.417969pt;}
.he_c01175{height:48.755208pt;}
.h1a_c01175{height:49.046875pt;}
.h9_c01175{height:49.072266pt;}
.ha_c01175{height:49.726562pt;}
.h17_c01175{height:50.380859pt;}
.h18_c01175{height:50.731771pt;}
.hb_c01175{height:51.035156pt;}
.h13_c01175{height:51.062500pt;}
.h12_c01175{height:51.390625pt;}
.hd_c01175{height:51.689453pt;}
.h10_c01175{height:52.971680pt;}
.h14_c01175{height:53.367188pt;}
.h1d_c01175{height:69.974935pt;}
.h2_c01175{height:73.132813pt;}
.h5_c01175{height:75.109375pt;}
.h1_c01175{height:75.921875pt;}
.h3_c01175{height:79.062500pt;}
.h4_c01175{height:81.039063pt;}
.h0_c01175{height:793.333333pt;}
.w0_c01175{width:1122.666667pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:78.719200pt;}
.x2_c01175{left:155.838933pt;}
.x3_c01175{left:193.599587pt;}
.x4_c01175{left:327.358933pt;}
.x5_c01175{left:360.638667pt;}
.x6_c01175{left:556.798787pt;}
.x7_c01175{left:600.319333pt;}
.x8_c01175{left:625.918907pt;}
.x2a_c01175{left:787.199707pt;}
.x20_c01175{left:823.359533pt;}
.xf_c01175{left:824.318760pt;}
.x40_c01175{left:825.279707pt;}
.x3a_c01175{left:832.639160pt;}
.x10_c01175{left:851.838947pt;}
.x26_c01175{left:855.358893pt;}
.x43_c01175{left:856.320520pt;}
.x2f_c01175{left:857.279133pt;}
.x9_c01175{left:858.238773pt;}
.x11_c01175{left:860.479987pt;}
.x2b_c01175{left:867.518467pt;}
.xa_c01175{left:870.079027pt;}
.x24_c01175{left:875.838947pt;}
.x2c_c01175{left:879.358893pt;}
.x21_c01175{left:881.919440pt;}
.x27_c01175{left:885.758787pt;}
.x25_c01175{left:887.679200pt;}
.x3d_c01175{left:890.239747pt;}
.x1a_c01175{left:894.399827pt;}
.x22_c01175{left:898.239173pt;}
.x30_c01175{left:899.198733pt;}
.x16_c01175{left:900.159747pt;}
.x3e_c01175{left:902.718747pt;}
.x1b_c01175{left:912.638667pt;}
.x23_c01175{left:915.199133pt;}
.x31_c01175{left:916.479413pt;}
.x12_c01175{left:929.279293pt;}
.x3c_c01175{left:939.839280pt;}
.x1c_c01175{left:945.919840pt;}
.x17_c01175{left:951.679693pt;}
.x32_c01175{left:952.959960pt;}
.xb_c01175{left:953.919440pt;}
.x13_c01175{left:963.518467pt;}
.x1d_c01175{left:968.318760pt;}
.x33_c01175{left:969.599040pt;}
.x18_c01175{left:971.198733pt;}
.x14_c01175{left:972.799800pt;}
.x41_c01175{left:975.358893pt;}
.x39_c01175{left:981.118733pt;}
.xc_c01175{left:982.079587pt;}
.x3f_c01175{left:989.119547pt;}
.x15_c01175{left:992.318760pt;}
.xd_c01175{left:993.599040pt;}
.x42_c01175{left:1004.159173pt;}
.x2d_c01175{left:1010.879800pt;}
.xe_c01175{left:1012.158693pt;}
.x37_c01175{left:1018.558507pt;}
.x2e_c01175{left:1023.999027pt;}
.x34_c01175{left:1027.199707pt;}
.x28_c01175{left:1030.398920pt;}
.x38_c01175{left:1031.359867pt;}
.x44_c01175{left:1032.959467pt;}
.x19_c01175{left:1039.999427pt;}
.x35_c01175{left:1047.039547pt;}
.x29_c01175{left:1052.799320pt;}
.x1e_c01175{left:1053.758787pt;}
.x3b_c01175{left:1080.638747pt;}
.x1f_c01175{left:1081.599613pt;}
.x36_c01175{left:1084.158693pt;}
}





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

.ir_c01176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_6edbdebaa003a7edc5e7f6ea.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01176;src:url('chunks/assets/font_5e3794f6568dd7f582cae5c4.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01176;src:url('chunks/assets/font_fc777be3c65c367ce630015f.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:1.432129;font-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_c01176{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m7_c01176{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m6_c01176{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m4_c01176{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m5_c01176{transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);}
.m2_c01176{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m3_c01176{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m1_c01176{transform:matrix(0.272124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272124,0.000000,0.000000,0.250000,0,0);}
.m0_c01176{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls4_c01176{letter-spacing:-13.093875px;}
.ls6_c01176{letter-spacing:-7.425743px;}
.ls7_c01176{letter-spacing:-6.350400px;}
.ls8_c01176{letter-spacing:-3.969000px;}
.ls9_c01176{letter-spacing:-3.329168px;}
.ls5_c01176{letter-spacing:-1.588410px;}
.lsa_c01176{letter-spacing:0.000000px;}
.ls2_c01176{letter-spacing:0.864300px;}
.ls1_c01176{letter-spacing:1.733625px;}
.ls0_c01176{letter-spacing:3.467250px;}
.lsc_c01176{letter-spacing:3.816225px;}
.ls3_c01176{letter-spacing:5.559960px;}
.lsb_c01176{letter-spacing:6.126750px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01176{word-spacing:0.000000px;}
._3_c01176{width:20.099723px;}
._6_c01176{width:21.783202px;}
._2_c01176{width:23.004173px;}
._1_c01176{width:24.271444px;}
._5_c01176{width:27.183656px;}
._4_c01176{width:30.084432px;}
._0_c01176{width:41.285541px;}
.fc0_c01176{color:transparent;}
.fs6_c01176{font-size:50.250000px;}
.fs7_c01176{font-size:52.500000px;}
.fs3_c01176{font-size:74.250000px;}
.fs2_c01176{font-size:81.000000px;}
.fs4_c01176{font-size:83.250000px;}
.fs0_c01176{font-size:84.000000px;}
.fs1_c01176{font-size:84.750000px;}
.fs5_c01176{font-size:93.000000px;}
.y0_c01176{bottom:0.000000px;}
.y5_c01176{bottom:385.981335px;}
.y4_c01176{bottom:386.701815px;}
.y3_c01176{bottom:789.900240px;}
.y2_c01176{bottom:790.261140px;}
.y1_c01176{bottom:844.261140px;}
.h7_c01176{height:50.642578px;}
.h8_c01176{height:52.910156px;}
.h4_c01176{height:77.440430px;}
.h3_c01176{height:81.632812px;}
.h2_c01176{height:83.756836px;}
.h5_c01176{height:83.900391px;}
.h1_c01176{height:84.656250px;}
.h6_c01176{height:91.910156px;}
.h0_c01176{height:892.500000px;}
.w0_c01176{width:1263.000000px;}
.x0_c01176{left:0.000000px;}
.x1_c01176{left:84.958350px;}
.xb_c01176{left:86.039115px;}
.x2_c01176{left:173.519100px;}
.x3_c01176{left:216.000000px;}
.x4_c01176{left:365.399850px;}
.x5_c01176{left:402.839535px;}
.x9_c01176{left:487.799565px;}
.xa_c01176{left:507.238770px;}
.x6_c01176{left:738.719520px;}
.x7_c01176{left:790.559055px;}
.x8_c01176{left:841.678530px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls4_c01176{letter-spacing:-11.639000pt;}
.ls6_c01176{letter-spacing:-6.600660pt;}
.ls7_c01176{letter-spacing:-5.644800pt;}
.ls8_c01176{letter-spacing:-3.528000pt;}
.ls9_c01176{letter-spacing:-2.959260pt;}
.ls5_c01176{letter-spacing:-1.411920pt;}
.lsa_c01176{letter-spacing:0.000000pt;}
.ls2_c01176{letter-spacing:0.768267pt;}
.ls1_c01176{letter-spacing:1.541000pt;}
.ls0_c01176{letter-spacing:3.082000pt;}
.lsc_c01176{letter-spacing:3.392200pt;}
.ls3_c01176{letter-spacing:4.942187pt;}
.lsb_c01176{letter-spacing:5.446000pt;}
.ws0_c01176{word-spacing:0.000000pt;}
._3_c01176{width:17.866420pt;}
._6_c01176{width:19.362846pt;}
._2_c01176{width:20.448154pt;}
._1_c01176{width:21.574616pt;}
._5_c01176{width:24.163250pt;}
._4_c01176{width:26.741718pt;}
._0_c01176{width:36.698259pt;}
.fs6_c01176{font-size:44.666667pt;}
.fs7_c01176{font-size:46.666667pt;}
.fs3_c01176{font-size:66.000000pt;}
.fs2_c01176{font-size:72.000000pt;}
.fs4_c01176{font-size:74.000000pt;}
.fs0_c01176{font-size:74.666667pt;}
.fs1_c01176{font-size:75.333333pt;}
.fs5_c01176{font-size:82.666667pt;}
.y0_c01176{bottom:0.000000pt;}
.y5_c01176{bottom:343.094520pt;}
.y4_c01176{bottom:343.734947pt;}
.y3_c01176{bottom:702.133547pt;}
.y2_c01176{bottom:702.454347pt;}
.y1_c01176{bottom:750.454347pt;}
.h7_c01176{height:45.015625pt;}
.h8_c01176{height:47.031250pt;}
.h4_c01176{height:68.835938pt;}
.h3_c01176{height:72.562500pt;}
.h2_c01176{height:74.450521pt;}
.h5_c01176{height:74.578125pt;}
.h1_c01176{height:75.250000pt;}
.h6_c01176{height:81.697917pt;}
.h0_c01176{height:793.333333pt;}
.w0_c01176{width:1122.666667pt;}
.x0_c01176{left:0.000000pt;}
.x1_c01176{left:75.518533pt;}
.xb_c01176{left:76.479213pt;}
.x2_c01176{left:154.239200pt;}
.x3_c01176{left:192.000000pt;}
.x4_c01176{left:324.799867pt;}
.x5_c01176{left:358.079587pt;}
.x9_c01176{left:433.599613pt;}
.xa_c01176{left:450.878907pt;}
.x6_c01176{left:656.639573pt;}
.x7_c01176{left:702.719160pt;}
.x8_c01176{left:748.158693pt;}
}





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

.ir_c01177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_2f45d7428736acd598c461c4.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01177;src:url('chunks/assets/font_34aaceae04a385d2446f8dd8.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01177;src:url('chunks/assets/font_ab827857a6dc36aafea0ed37.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01177;src:url('chunks/assets/font_b21b65c7fd2a1cb97ca6de4f.woff2')format("woff");}.ff4_c01177{font-family:ff4_c01177;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01177;src:url('chunks/assets/font_8365a4a785cdf93d101b1da6.woff2')format("woff");}.ff5_c01177{font-family:ff5_c01177;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01177;src:url('chunks/assets/font_4f72cf3085a31368c24f92f8.woff2')format("woff");}.ff6_c01177{font-family:ff6_c01177;line-height:1.364746;font-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_c01177{transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);}
.m8_c01177{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m22_c01177{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m25_c01177{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m10_c01177{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m17_c01177{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m1b_c01177{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m2_c01177{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m1e_c01177{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);}
.m12_c01177{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.md_c01177{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1c_c01177{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m21_c01177{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m0_c01177{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.m3_c01177{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m1f_c01177{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m9_c01177{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m19_c01177{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m1d_c01177{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m16_c01177{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.mc_c01177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c01177{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m11_c01177{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m15_c01177{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m24_c01177{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.mf_c01177{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m18_c01177{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m4_c01177{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m23_c01177{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.mb_c01177{transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);}
.m7_c01177{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m1a_c01177{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.m13_c01177{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m1_c01177{transform:matrix(0.294393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294393,0.000000,0.000000,0.250000,0,0);}
.m6_c01177{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01177{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.m5_c01177{transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314286,0.000000,0.000000,0.250000,0,0);}
.ma_c01177{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.v0_c01177{vertical-align:0.000000px;}
.ls2e_c01177{letter-spacing:-12.594083px;}
.ls29_c01177{letter-spacing:-11.100000px;}
.ls1f_c01177{letter-spacing:-8.645025px;}
.ls24_c01177{letter-spacing:-8.119073px;}
.ls2f_c01177{letter-spacing:-8.038125px;}
.ls2b_c01177{letter-spacing:-7.602660px;}
.ls20_c01177{letter-spacing:-7.010550px;}
.ls15_c01177{letter-spacing:-6.767100px;}
.ls10_c01177{letter-spacing:-6.664350px;}
.ls5_c01177{letter-spacing:-6.171225px;}
.ls18_c01177{letter-spacing:-5.765175px;}
.lsd_c01177{letter-spacing:-5.622750px;}
.ls16_c01177{letter-spacing:-5.060475px;}
.ls22_c01177{letter-spacing:-5.042475px;}
.lse_c01177{letter-spacing:-4.855695px;}
.ls28_c01177{letter-spacing:-4.795200px;}
.ls2d_c01177{letter-spacing:-4.704075px;}
.ls32_c01177{letter-spacing:-4.671675px;}
.ls1e_c01177{letter-spacing:-4.560675px;}
.ls2c_c01177{letter-spacing:-4.440975px;}
.lsa_c01177{letter-spacing:-4.319775px;}
.ls30_c01177{letter-spacing:-4.279275px;}
.ls1d_c01177{letter-spacing:-4.207455px;}
.ls35_c01177{letter-spacing:-3.984750px;}
.ls26_c01177{letter-spacing:-3.851700px;}
.ls21_c01177{letter-spacing:-3.701850px;}
.ls9_c01177{letter-spacing:-3.602550px;}
.ls8_c01177{letter-spacing:-3.175200px;}
.ls19_c01177{letter-spacing:-2.998200px;}
.ls14_c01177{letter-spacing:-2.997225px;}
.ls1c_c01177{letter-spacing:-2.958300px;}
.ls34_c01177{letter-spacing:-2.956500px;}
.lsf_c01177{letter-spacing:-2.879850px;}
.ls33_c01177{letter-spacing:-2.841525px;}
.ls13_c01177{letter-spacing:-2.818200px;}
.ls3_c01177{letter-spacing:-2.551950px;}
.ls4_c01177{letter-spacing:-2.404890px;}
.ls27_c01177{letter-spacing:-2.249438px;}
.ls2a_c01177{letter-spacing:-2.219445px;}
.ls25_c01177{letter-spacing:-2.164500px;}
.lsb_c01177{letter-spacing:-2.163173px;}
.ls23_c01177{letter-spacing:-1.521900px;}
.ls31_c01177{letter-spacing:-1.481850px;}
.ls11_c01177{letter-spacing:-1.440473px;}
.lsc_c01177{letter-spacing:-1.192275px;}
.ls17_c01177{letter-spacing:-0.722700px;}
.ls6_c01177{letter-spacing:0.000000px;}
.ls12_c01177{letter-spacing:0.722700px;}
.ls1b_c01177{letter-spacing:0.969900px;}
.ls0_c01177{letter-spacing:2.879850px;}
.ls7_c01177{letter-spacing:4.009500px;}
.ls1a_c01177{letter-spacing:7.205648px;}
.ls1_c01177{letter-spacing:11.524328px;}
.ls2_c01177{letter-spacing:13.632300px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01177{word-spacing:0.000000px;}
._a_c01177{margin-left:-76.162956px;}
._12_c01177{margin-left:-20.132872px;}
._14_c01177{margin-left:-10.369650px;}
._15_c01177{margin-left:-6.960252px;}
._b_c01177{margin-left:-3.981535px;}
._9_c01177{margin-left:-2.690473px;}
._6_c01177{width:2.142771px;}
._8_c01177{width:3.931108px;}
._c_c01177{width:5.381320px;}
._18_c01177{width:6.991575px;}
._f_c01177{width:8.069747px;}
._5_c01177{width:9.603352px;}
._d_c01177{width:10.938935px;}
._16_c01177{width:12.937194px;}
._4_c01177{width:14.422677px;}
._7_c01177{width:15.718437px;}
._10_c01177{width:17.011315px;}
._e_c01177{width:18.891776px;}
._13_c01177{width:20.038327px;}
._3_c01177{width:21.988003px;}
._2_c01177{width:23.427928px;}
._11_c01177{width:26.734540px;}
._1_c01177{width:31.727171px;}
._0_c01177{width:33.458101px;}
._17_c01177{width:65.302198px;}
.fc0_c01177{color:transparent;}
.fsb_c01177{font-size:39.750000px;}
.fs7_c01177{font-size:43.500000px;}
.fs6_c01177{font-size:48.000000px;}
.fse_c01177{font-size:51.750000px;}
.fs3_c01177{font-size:52.500000px;}
.fsd_c01177{font-size:54.000000px;}
.fs2_c01177{font-size:54.750000px;}
.fs4_c01177{font-size:55.500000px;}
.fsc_c01177{font-size:56.250000px;}
.fsa_c01177{font-size:57.000000px;}
.fs5_c01177{font-size:57.750000px;}
.fs8_c01177{font-size:58.500000px;}
.fs9_c01177{font-size:60.750000px;}
.fs1_c01177{font-size:80.250000px;}
.fs0_c01177{font-size:81.000000px;}
.y0_c01177{bottom:0.000000px;}
.y2a_c01177{bottom:307.140285px;}
.y28_c01177{bottom:321.900855px;}
.y29_c01177{bottom:321.900885px;}
.y27_c01177{bottom:351.420600px;}
.y26_c01177{bottom:366.540600px;}
.y25_c01177{bottom:381.301185px;}
.y24_c01177{bottom:396.780435px;}
.y23_c01177{bottom:396.781035px;}
.y22_c01177{bottom:425.940900px;}
.y20_c01177{bottom:441.421605px;}
.y21_c01177{bottom:441.421650px;}
.y1e_c01177{bottom:456.180090px;}
.y1f_c01177{bottom:456.180720px;}
.y1d_c01177{bottom:486.061335px;}
.y1c_c01177{bottom:500.820420px;}
.y1b_c01177{bottom:500.821065px;}
.y1a_c01177{bottom:515.940255px;}
.y19_c01177{bottom:515.941080px;}
.y18_c01177{bottom:531.060285px;}
.y17_c01177{bottom:531.060465px;}
.y16_c01177{bottom:560.581650px;}
.y15_c01177{bottom:560.582295px;}
.y13_c01177{bottom:575.700810px;}
.y14_c01177{bottom:575.701485px;}
.y12_c01177{bottom:590.459925px;}
.y11_c01177{bottom:620.341185px;}
.yf_c01177{bottom:635.099655px;}
.y10_c01177{bottom:635.100270px;}
.ye_c01177{bottom:649.501650px;}
.yd_c01177{bottom:649.502430px;}
.yc_c01177{bottom:664.621635px;}
.yb_c01177{bottom:664.622265px;}
.y9_c01177{bottom:679.741425px;}
.ya_c01177{bottom:679.741470px;}
.y8_c01177{bottom:724.381800px;}
.y7_c01177{bottom:739.501005px;}
.y6_c01177{bottom:739.501830px;}
.y5_c01177{bottom:754.621035px;}
.y4_c01177{bottom:766.501005px;}
.y3_c01177{bottom:769.381620px;}
.y2_c01177{bottom:784.501650px;}
.y1_c01177{bottom:838.140750px;}
.hf_c01177{height:41.458008px;}
.ha_c01177{height:45.369141px;}
.h9_c01177{height:47.109375px;}
.h6_c01177{height:51.525879px;}
.h5_c01177{height:53.734131px;}
.h15_c01177{height:53.973633px;}
.h7_c01177{height:54.470215px;}
.h13_c01177{height:55.206299px;}
.h16_c01177{height:55.590820px;}
.h11_c01177{height:55.933594px;}
.h10_c01177{height:55.942383px;}
.h14_c01177{height:56.320312px;}
.hb_c01177{height:56.678467px;}
.h8_c01177{height:57.073242px;}
.hc_c01177{height:57.414551px;}
.he_c01177{height:57.445312px;}
.hd_c01177{height:59.622803px;}
.h12_c01177{height:60.038086px;}
.h2_c01177{height:78.760986px;}
.h1_c01177{height:79.497070px;}
.h3_c01177{height:80.876953px;}
.h4_c01177{height:81.632812px;}
.h0_c01177{height:892.500000px;}
.w0_c01177{width:1263.000000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:84.599100px;}
.x2_c01177{left:171.358665px;}
.x3_c01177{left:213.119385px;}
.x4_c01177{left:361.439685px;}
.x5_c01177{left:398.159415px;}
.x6_c01177{left:691.558635px;}
.x11_c01177{left:910.798560px;}
.xd_c01177{left:911.879520px;}
.x22_c01177{left:912.958785px;}
.x27_c01177{left:914.758575px;}
.x44_c01177{left:915.840825px;}
.x28_c01177{left:936.719055px;}
.x12_c01177{left:940.679070px;}
.x48_c01177{left:942.478635px;}
.x7_c01177{left:950.759490px;}
.x29_c01177{left:952.200195px;}
.x37_c01177{left:953.639070px;}
.x4c_c01177{left:954.720000px;}
.x33_c01177{left:958.318815px;}
.x31_c01177{left:961.558590px;}
.x10_c01177{left:962.998905px;}
.x13_c01177{left:980.638545px;}
.x25_c01177{left:989.998905px;}
.x32_c01177{left:992.159370px;}
.x1a_c01177{left:999.359250px;}
.x1e_c01177{left:1001.878965px;}
.x26_c01177{left:1005.118740px;}
.x34_c01177{left:1006.918305px;}
.x41_c01177{left:1008.358605px;}
.x14_c01177{left:1010.519070px;}
.x35_c01177{left:1018.798560px;}
.x8_c01177{left:1022.399235px;}
.x42_c01177{left:1026.000000px;}
.x1f_c01177{left:1029.239865px;}
.x49_c01177{left:1034.279205px;}
.x45_c01177{left:1038.959385px;}
.x36_c01177{left:1041.119940px;}
.x23_c01177{left:1052.279850px;}
.x2c_c01177{left:1054.079400px;}
.x46_c01177{left:1055.878965px;}
.x1b_c01177{left:1056.958275px;}
.x9_c01177{left:1061.279205px;}
.x15_c01177{left:1064.878320px;}
.x24_c01177{left:1068.479190px;}
.x16_c01177{left:1074.958920px;}
.x39_c01177{left:1076.039985px;}
.xa_c01177{left:1077.839535px;}
.x20_c01177{left:1078.918950px;}
.x17_c01177{left:1086.838905px;}
.x2a_c01177{left:1088.999355px;}
.x3a_c01177{left:1093.679715px;}
.x3f_c01177{left:1100.879520px;}
.xb_c01177{left:1101.958920px;}
.x3b_c01177{left:1104.839535px;}
.x4a_c01177{left:1107.359250px;}
.x21_c01177{left:1110.599025px;}
.x2b_c01177{left:1114.918305px;}
.x3c_c01177{left:1121.759040px;}
.x40_c01177{left:1124.998905px;}
.x47_c01177{left:1136.519715px;}
.x18_c01177{left:1141.199805px;}
.x2d_c01177{left:1149.479190px;}
.x4b_c01177{left:1153.079955px;}
.x19_c01177{left:1154.879520px;}
.x38_c01177{left:1158.478635px;}
.x2f_c01177{left:1167.479640px;}
.x3d_c01177{left:1170.358605px;}
.x1c_c01177{left:1177.199340px;}
.x30_c01177{left:1180.079955px;}
.x43_c01177{left:1181.159370px;}
.xe_c01177{left:1182.238770px;}
.x1d_c01177{left:1189.799565px;}
.xf_c01177{left:1193.759490px;}
.x2e_c01177{left:1196.279205px;}
.xc_c01177{left:1202.399775px;}
.x3e_c01177{left:1204.919490px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls2e_c01177{letter-spacing:-11.194740pt;}
.ls29_c01177{letter-spacing:-9.866667pt;}
.ls1f_c01177{letter-spacing:-7.684467pt;}
.ls24_c01177{letter-spacing:-7.216953pt;}
.ls2f_c01177{letter-spacing:-7.145000pt;}
.ls2b_c01177{letter-spacing:-6.757920pt;}
.ls20_c01177{letter-spacing:-6.231600pt;}
.ls15_c01177{letter-spacing:-6.015200pt;}
.ls10_c01177{letter-spacing:-5.923867pt;}
.ls5_c01177{letter-spacing:-5.485533pt;}
.ls18_c01177{letter-spacing:-5.124600pt;}
.lsd_c01177{letter-spacing:-4.998000pt;}
.ls16_c01177{letter-spacing:-4.498200pt;}
.ls22_c01177{letter-spacing:-4.482200pt;}
.lse_c01177{letter-spacing:-4.316173pt;}
.ls28_c01177{letter-spacing:-4.262400pt;}
.ls2d_c01177{letter-spacing:-4.181400pt;}
.ls32_c01177{letter-spacing:-4.152600pt;}
.ls1e_c01177{letter-spacing:-4.053933pt;}
.ls2c_c01177{letter-spacing:-3.947533pt;}
.lsa_c01177{letter-spacing:-3.839800pt;}
.ls30_c01177{letter-spacing:-3.803800pt;}
.ls1d_c01177{letter-spacing:-3.739960pt;}
.ls35_c01177{letter-spacing:-3.542000pt;}
.ls26_c01177{letter-spacing:-3.423733pt;}
.ls21_c01177{letter-spacing:-3.290533pt;}
.ls9_c01177{letter-spacing:-3.202267pt;}
.ls8_c01177{letter-spacing:-2.822400pt;}
.ls19_c01177{letter-spacing:-2.665067pt;}
.ls14_c01177{letter-spacing:-2.664200pt;}
.ls1c_c01177{letter-spacing:-2.629600pt;}
.ls34_c01177{letter-spacing:-2.628000pt;}
.lsf_c01177{letter-spacing:-2.559867pt;}
.ls33_c01177{letter-spacing:-2.525800pt;}
.ls13_c01177{letter-spacing:-2.505067pt;}
.ls3_c01177{letter-spacing:-2.268400pt;}
.ls4_c01177{letter-spacing:-2.137680pt;}
.ls27_c01177{letter-spacing:-1.999500pt;}
.ls2a_c01177{letter-spacing:-1.972840pt;}
.ls25_c01177{letter-spacing:-1.924000pt;}
.lsb_c01177{letter-spacing:-1.922820pt;}
.ls23_c01177{letter-spacing:-1.352800pt;}
.ls31_c01177{letter-spacing:-1.317200pt;}
.ls11_c01177{letter-spacing:-1.280420pt;}
.lsc_c01177{letter-spacing:-1.059800pt;}
.ls17_c01177{letter-spacing:-0.642400pt;}
.ls6_c01177{letter-spacing:0.000000pt;}
.ls12_c01177{letter-spacing:0.642400pt;}
.ls1b_c01177{letter-spacing:0.862133pt;}
.ls0_c01177{letter-spacing:2.559867pt;}
.ls7_c01177{letter-spacing:3.564000pt;}
.ls1a_c01177{letter-spacing:6.405020pt;}
.ls1_c01177{letter-spacing:10.243847pt;}
.ls2_c01177{letter-spacing:12.117600pt;}
.ws0_c01177{word-spacing:0.000000pt;}
._a_c01177{margin-left:-67.700405pt;}
._12_c01177{margin-left:-17.895886pt;}
._14_c01177{margin-left:-9.217467pt;}
._15_c01177{margin-left:-6.186891pt;}
._b_c01177{margin-left:-3.539142pt;}
._9_c01177{margin-left:-2.391531pt;}
._6_c01177{width:1.904685pt;}
._8_c01177{width:3.494318pt;}
._c_c01177{width:4.783395pt;}
._18_c01177{width:6.214733pt;}
._f_c01177{width:7.173108pt;}
._5_c01177{width:8.536313pt;}
._d_c01177{width:9.723498pt;}
._16_c01177{width:11.499728pt;}
._4_c01177{width:12.820158pt;}
._7_c01177{width:13.971944pt;}
._10_c01177{width:15.121169pt;}
._e_c01177{width:16.792689pt;}
._13_c01177{width:17.811846pt;}
._3_c01177{width:19.544892pt;}
._2_c01177{width:20.824825pt;}
._11_c01177{width:23.764036pt;}
._1_c01177{width:28.201930pt;}
._0_c01177{width:29.740534pt;}
._17_c01177{width:58.046398pt;}
.fsb_c01177{font-size:35.333333pt;}
.fs7_c01177{font-size:38.666667pt;}
.fs6_c01177{font-size:42.666667pt;}
.fse_c01177{font-size:46.000000pt;}
.fs3_c01177{font-size:46.666667pt;}
.fsd_c01177{font-size:48.000000pt;}
.fs2_c01177{font-size:48.666667pt;}
.fs4_c01177{font-size:49.333333pt;}
.fsc_c01177{font-size:50.000000pt;}
.fsa_c01177{font-size:50.666667pt;}
.fs5_c01177{font-size:51.333333pt;}
.fs8_c01177{font-size:52.000000pt;}
.fs9_c01177{font-size:54.000000pt;}
.fs1_c01177{font-size:71.333333pt;}
.fs0_c01177{font-size:72.000000pt;}
.y0_c01177{bottom:0.000000pt;}
.y2a_c01177{bottom:273.013587pt;}
.y28_c01177{bottom:286.134093pt;}
.y29_c01177{bottom:286.134120pt;}
.y27_c01177{bottom:312.373867pt;}
.y26_c01177{bottom:325.813867pt;}
.y25_c01177{bottom:338.934387pt;}
.y24_c01177{bottom:352.693720pt;}
.y23_c01177{bottom:352.694253pt;}
.y22_c01177{bottom:378.614133pt;}
.y20_c01177{bottom:392.374760pt;}
.y21_c01177{bottom:392.374800pt;}
.y1e_c01177{bottom:405.493413pt;}
.y1f_c01177{bottom:405.493973pt;}
.y1d_c01177{bottom:432.054520pt;}
.y1c_c01177{bottom:445.173707pt;}
.y1b_c01177{bottom:445.174280pt;}
.y1a_c01177{bottom:458.613560pt;}
.y19_c01177{bottom:458.614293pt;}
.y18_c01177{bottom:472.053587pt;}
.y17_c01177{bottom:472.053747pt;}
.y16_c01177{bottom:498.294800pt;}
.y15_c01177{bottom:498.295373pt;}
.y13_c01177{bottom:511.734053pt;}
.y14_c01177{bottom:511.734653pt;}
.y12_c01177{bottom:524.853267pt;}
.y11_c01177{bottom:551.414387pt;}
.yf_c01177{bottom:564.533027pt;}
.y10_c01177{bottom:564.533573pt;}
.ye_c01177{bottom:577.334800pt;}
.yd_c01177{bottom:577.335493pt;}
.yc_c01177{bottom:590.774787pt;}
.yb_c01177{bottom:590.775347pt;}
.y9_c01177{bottom:604.214600pt;}
.ya_c01177{bottom:604.214640pt;}
.y8_c01177{bottom:643.894933pt;}
.y7_c01177{bottom:657.334227pt;}
.y6_c01177{bottom:657.334960pt;}
.y5_c01177{bottom:670.774253pt;}
.y4_c01177{bottom:681.334227pt;}
.y3_c01177{bottom:683.894773pt;}
.y2_c01177{bottom:697.334800pt;}
.y1_c01177{bottom:745.014000pt;}
.hf_c01177{height:36.851562pt;}
.ha_c01177{height:40.328125pt;}
.h9_c01177{height:41.875000pt;}
.h6_c01177{height:45.800781pt;}
.h5_c01177{height:47.763672pt;}
.h15_c01177{height:47.976562pt;}
.h7_c01177{height:48.417969pt;}
.h13_c01177{height:49.072266pt;}
.h16_c01177{height:49.414063pt;}
.h11_c01177{height:49.718750pt;}
.h10_c01177{height:49.726562pt;}
.h14_c01177{height:50.062500pt;}
.hb_c01177{height:50.380859pt;}
.h8_c01177{height:50.731771pt;}
.hc_c01177{height:51.035156pt;}
.he_c01177{height:51.062500pt;}
.hd_c01177{height:52.998047pt;}
.h12_c01177{height:53.367188pt;}
.h2_c01177{height:70.009766pt;}
.h1_c01177{height:70.664062pt;}
.h3_c01177{height:71.890625pt;}
.h4_c01177{height:72.562500pt;}
.h0_c01177{height:793.333333pt;}
.w0_c01177{width:1122.666667pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:75.199200pt;}
.x2_c01177{left:152.318813pt;}
.x3_c01177{left:189.439453pt;}
.x4_c01177{left:321.279720pt;}
.x5_c01177{left:353.919480pt;}
.x6_c01177{left:614.718787pt;}
.x11_c01177{left:809.598720pt;}
.xd_c01177{left:810.559573pt;}
.x22_c01177{left:811.518920pt;}
.x27_c01177{left:813.118733pt;}
.x44_c01177{left:814.080733pt;}
.x28_c01177{left:832.639160pt;}
.x12_c01177{left:836.159173pt;}
.x48_c01177{left:837.758787pt;}
.x7_c01177{left:845.119547pt;}
.x29_c01177{left:846.400173pt;}
.x37_c01177{left:847.679173pt;}
.x4c_c01177{left:848.640000pt;}
.x33_c01177{left:851.838947pt;}
.x31_c01177{left:854.718747pt;}
.x10_c01177{left:855.999027pt;}
.x13_c01177{left:871.678707pt;}
.x25_c01177{left:879.999027pt;}
.x32_c01177{left:881.919440pt;}
.x1a_c01177{left:888.319333pt;}
.x1e_c01177{left:890.559080pt;}
.x26_c01177{left:893.438880pt;}
.x34_c01177{left:895.038493pt;}
.x41_c01177{left:896.318760pt;}
.x14_c01177{left:898.239173pt;}
.x35_c01177{left:905.598720pt;}
.x8_c01177{left:908.799320pt;}
.x42_c01177{left:912.000000pt;}
.x1f_c01177{left:914.879880pt;}
.x49_c01177{left:919.359293pt;}
.x45_c01177{left:923.519453pt;}
.x36_c01177{left:925.439947pt;}
.x23_c01177{left:935.359867pt;}
.x2c_c01177{left:936.959467pt;}
.x46_c01177{left:938.559080pt;}
.x1b_c01177{left:939.518467pt;}
.x9_c01177{left:943.359293pt;}
.x15_c01177{left:946.558507pt;}
.x24_c01177{left:949.759280pt;}
.x16_c01177{left:955.519040pt;}
.x39_c01177{left:956.479987pt;}
.xa_c01177{left:958.079587pt;}
.x20_c01177{left:959.039067pt;}
.x17_c01177{left:966.079027pt;}
.x2a_c01177{left:967.999427pt;}
.x3a_c01177{left:972.159747pt;}
.x3f_c01177{left:978.559573pt;}
.xb_c01177{left:979.519040pt;}
.x3b_c01177{left:982.079587pt;}
.x4a_c01177{left:984.319333pt;}
.x21_c01177{left:987.199133pt;}
.x2b_c01177{left:991.038493pt;}
.x3c_c01177{left:997.119147pt;}
.x40_c01177{left:999.999027pt;}
.x47_c01177{left:1010.239747pt;}
.x18_c01177{left:1014.399827pt;}
.x2d_c01177{left:1021.759280pt;}
.x4b_c01177{left:1024.959960pt;}
.x19_c01177{left:1026.559573pt;}
.x38_c01177{left:1029.758787pt;}
.x2f_c01177{left:1037.759680pt;}
.x3d_c01177{left:1040.318760pt;}
.x1c_c01177{left:1046.399413pt;}
.x30_c01177{left:1048.959960pt;}
.x43_c01177{left:1049.919440pt;}
.xe_c01177{left:1050.878907pt;}
.x1d_c01177{left:1057.599613pt;}
.xf_c01177{left:1061.119547pt;}
.x2e_c01177{left:1063.359293pt;}
.xc_c01177{left:1068.799800pt;}
.x3e_c01177{left:1071.039547pt;}
}





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

.ir_c01178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_6a8196138ec0a6dcae5e4d92.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01178;src:url('chunks/assets/font_34f863f6da7ee65f80046e8c.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:1.284668;font-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_c01178{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.m3_c01178{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m5_c01178{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m2_c01178{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m7_c01178{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m6_c01178{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m8_c01178{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m1_c01178{transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290909,0.000000,0.000000,0.250000,0,0);}
.m0_c01178{transform:matrix(0.302174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302174,0.000000,0.000000,0.250000,0,0);}
.v2_c01178{vertical-align:-14.401980px;}
.v1_c01178{vertical-align:-11.521980px;}
.v0_c01178{vertical-align:0.000000px;}
.lsc_c01178{letter-spacing:-5.476800px;}
.lsa_c01178{letter-spacing:-4.907790px;}
.lse_c01178{letter-spacing:-3.273210px;}
.lsd_c01178{letter-spacing:-2.454300px;}
.ls8_c01178{letter-spacing:-1.636200px;}
.ls7_c01178{letter-spacing:-1.286175px;}
.lsb_c01178{letter-spacing:-0.818100px;}
.ls13_c01178{letter-spacing:-0.708750px;}
.lsf_c01178{letter-spacing:0.000000px;}
.ls12_c01178{letter-spacing:0.798975px;}
.ls1_c01178{letter-spacing:0.864300px;}
.ls10_c01178{letter-spacing:1.733625px;}
.ls9_c01178{letter-spacing:1.805175px;}
.ls3_c01178{letter-spacing:2.597925px;}
.ls11_c01178{letter-spacing:3.089873px;}
.ls0_c01178{letter-spacing:3.467250px;}
.ls2_c01178{letter-spacing:4.331550px;}
.ls6_c01178{letter-spacing:4.968000px;}
.ls5_c01178{letter-spacing:5.200875px;}
.ls4_c01178{letter-spacing:7.798800px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01178{word-spacing:0.000000px;}
._a_c01178{width:11.909042px;}
._9_c01178{width:15.592679px;}
._7_c01178{width:18.532547px;}
._6_c01178{width:26.929079px;}
._4_c01178{width:31.752871px;}
._2_c01178{width:32.963613px;}
._1_c01178{width:34.765625px;}
._0_c01178{width:39.954633px;}
._3_c01178{width:43.354669px;}
._8_c01178{width:1022.999307px;}
._5_c01178{width:1477.495482px;}
.fc0_c01178{color:transparent;}
.fs5_c01178{font-size:50.250000px;}
.fs6_c01178{font-size:52.500000px;}
.fs2_c01178{font-size:81.000000px;}
.fs1_c01178{font-size:82.500000px;}
.fs4_c01178{font-size:84.000000px;}
.fs3_c01178{font-size:84.750000px;}
.fs0_c01178{font-size:86.250000px;}
.y0_c01178{bottom:0.000000px;}
.y5_c01178{bottom:371.940885px;}
.y4_c01178{bottom:379.501620px;}
.y3_c01178{bottom:779.101320px;}
.y2_c01178{bottom:783.061335px;}
.y1_c01178{bottom:837.061335px;}
.h6_c01178{height:49.317627px;}
.h7_c01178{height:51.525879px;}
.h3_c01178{height:81.632812px;}
.h2_c01178{height:83.144531px;}
.h5_c01178{height:84.656250px;}
.h4_c01178{height:85.412109px;}
.h1_c01178{height:86.923828px;}
.h0_c01178{height:892.500000px;}
.w0_c01178{width:1263.000000px;}
.x0_c01178{left:0.000000px;}
.xa_c01178{left:100.080000px;}
.x1_c01178{left:102.958950px;}
.xb_c01178{left:121.679700px;}
.x2_c01178{left:190.079400px;}
.x3_c01178{left:231.479235px;}
.x4_c01178{left:382.678530px;}
.x5_c01178{left:419.759085px;}
.x8_c01178{left:503.998950px;}
.x9_c01178{left:524.159820px;}
.x6_c01178{left:637.919535px;}
.x7_c01178{left:686.159820px;}
.xc_c01178{left:899.638545px;}
.xd_c01178{left:918.718500px;}
@media print{
.v2_c01178{vertical-align:-12.801760pt;}
.v1_c01178{vertical-align:-10.241760pt;}
.v0_c01178{vertical-align:0.000000pt;}
.lsc_c01178{letter-spacing:-4.868267pt;}
.lsa_c01178{letter-spacing:-4.362480pt;}
.lse_c01178{letter-spacing:-2.909520pt;}
.lsd_c01178{letter-spacing:-2.181600pt;}
.ls8_c01178{letter-spacing:-1.454400pt;}
.ls7_c01178{letter-spacing:-1.143267pt;}
.lsb_c01178{letter-spacing:-0.727200pt;}
.ls13_c01178{letter-spacing:-0.630000pt;}
.lsf_c01178{letter-spacing:0.000000pt;}
.ls12_c01178{letter-spacing:0.710200pt;}
.ls1_c01178{letter-spacing:0.768267pt;}
.ls10_c01178{letter-spacing:1.541000pt;}
.ls9_c01178{letter-spacing:1.604600pt;}
.ls3_c01178{letter-spacing:2.309267pt;}
.ls11_c01178{letter-spacing:2.746553pt;}
.ls0_c01178{letter-spacing:3.082000pt;}
.ls2_c01178{letter-spacing:3.850267pt;}
.ls6_c01178{letter-spacing:4.416000pt;}
.ls5_c01178{letter-spacing:4.623000pt;}
.ls4_c01178{letter-spacing:6.932267pt;}
.ws0_c01178{word-spacing:0.000000pt;}
._a_c01178{width:10.585815pt;}
._9_c01178{width:13.860159pt;}
._7_c01178{width:16.473375pt;}
._6_c01178{width:23.936959pt;}
._4_c01178{width:28.224774pt;}
._2_c01178{width:29.300989pt;}
._1_c01178{width:30.902778pt;}
._0_c01178{width:35.515229pt;}
._3_c01178{width:38.537484pt;}
._8_c01178{width:909.332718pt;}
._5_c01178{width:1313.329318pt;}
.fs5_c01178{font-size:44.666667pt;}
.fs6_c01178{font-size:46.666667pt;}
.fs2_c01178{font-size:72.000000pt;}
.fs1_c01178{font-size:73.333333pt;}
.fs4_c01178{font-size:74.666667pt;}
.fs3_c01178{font-size:75.333333pt;}
.fs0_c01178{font-size:76.666667pt;}
.y0_c01178{bottom:0.000000pt;}
.y5_c01178{bottom:330.614120pt;}
.y4_c01178{bottom:337.334773pt;}
.y3_c01178{bottom:692.534507pt;}
.y2_c01178{bottom:696.054520pt;}
.y1_c01178{bottom:744.054520pt;}
.h6_c01178{height:43.837891pt;}
.h7_c01178{height:45.800781pt;}
.h3_c01178{height:72.562500pt;}
.h2_c01178{height:73.906250pt;}
.h5_c01178{height:75.250000pt;}
.h4_c01178{height:75.921875pt;}
.h1_c01178{height:77.265625pt;}
.h0_c01178{height:793.333333pt;}
.w0_c01178{width:1122.666667pt;}
.x0_c01178{left:0.000000pt;}
.xa_c01178{left:88.960000pt;}
.x1_c01178{left:91.519067pt;}
.xb_c01178{left:108.159733pt;}
.x2_c01178{left:168.959467pt;}
.x3_c01178{left:205.759320pt;}
.x4_c01178{left:340.158693pt;}
.x5_c01178{left:373.119187pt;}
.x8_c01178{left:447.999067pt;}
.x9_c01178{left:465.919840pt;}
.x6_c01178{left:567.039587pt;}
.x7_c01178{left:609.919840pt;}
.xc_c01178{left:799.678707pt;}
.xd_c01178{left:816.638667pt;}
}





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

.ir_c01179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_5627869debd73ec21b2bd87b.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01179;src:url('chunks/assets/font_f14b0721aaf366678423dc43.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01179;src:url('chunks/assets/font_cb3586668258f0830fce5b02.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01179;src:url('chunks/assets/font_ad941b82d44cc1e995ec3529.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01179;src:url('chunks/assets/font_6833fb840f77dadee2a685e1.woff2')format("woff");}.ff5_c01179{font-family:ff5_c01179;line-height:1.281250;font-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_c01179{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m9_c01179{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m18_c01179{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m10_c01179{transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);}
.m24_c01179{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m15_c01179{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m27_c01179{transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);}
.md_c01179{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);}
.m25_c01179{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m12_c01179{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1f_c01179{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3_c01179{transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229358,0.000000,0.000000,0.250000,0,0);}
.m13_c01179{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m23_c01179{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m21_c01179{transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);}
.m26_c01179{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m22_c01179{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m2_c01179{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m1c_c01179{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m16_c01179{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m1d_c01179{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m14_c01179{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m8_c01179{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.mc_c01179{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m1a_c01179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01179{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.mb_c01179{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.ma_c01179{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m1e_c01179{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m7_c01179{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m6_c01179{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m11_c01179{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m20_c01179{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m1_c01179{transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265909,0.000000,0.000000,0.250000,0,0);}
.m0_c01179{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m19_c01179{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m17_c01179{transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);}
.m4_c01179{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.me_c01179{transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);}
.m1b_c01179{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.ls15_c01179{letter-spacing:-15.191108px;}
.ls22_c01179{letter-spacing:-13.100063px;}
.ls5_c01179{letter-spacing:-11.680200px;}
.ls29_c01179{letter-spacing:-9.367725px;}
.ls1a_c01179{letter-spacing:-9.196200px;}
.lse_c01179{letter-spacing:-7.944300px;}
.ls30_c01179{letter-spacing:-6.867668px;}
.ls23_c01179{letter-spacing:-6.656250px;}
.ls12_c01179{letter-spacing:-6.519975px;}
.ls1f_c01179{letter-spacing:-6.092955px;}
.ls18_c01179{letter-spacing:-5.916075px;}
.ls26_c01179{letter-spacing:-5.765175px;}
.ls13_c01179{letter-spacing:-5.176500px;}
.lsb_c01179{letter-spacing:-5.042475px;}
.ls2d_c01179{letter-spacing:-4.319775px;}
.ls9_c01179{letter-spacing:-4.038600px;}
.ls27_c01179{letter-spacing:-3.803625px;}
.ls14_c01179{letter-spacing:-3.695550px;}
.ls1b_c01179{letter-spacing:-3.602550px;}
.ls20_c01179{letter-spacing:-3.431400px;}
.ls6_c01179{letter-spacing:-3.118500px;}
.ls25_c01179{letter-spacing:-3.043755px;}
.ls10_c01179{letter-spacing:-2.879850px;}
.ls1e_c01179{letter-spacing:-2.636700px;}
.ls2c_c01179{letter-spacing:-2.380395px;}
.ls2f_c01179{letter-spacing:-2.352000px;}
.ls11_c01179{letter-spacing:-2.281703px;}
.ls1d_c01179{letter-spacing:-2.278125px;}
.ls24_c01179{letter-spacing:-2.249438px;}
.ls21_c01179{letter-spacing:-2.247750px;}
.ls17_c01179{letter-spacing:-2.219445px;}
.ls28_c01179{letter-spacing:-2.187000px;}
.lsd_c01179{letter-spacing:-2.163173px;}
.ls2a_c01179{letter-spacing:-2.135250px;}
.lsa_c01179{letter-spacing:-2.115000px;}
.ls16_c01179{letter-spacing:-1.997408px;}
.ls1c_c01179{letter-spacing:-1.628550px;}
.ls7_c01179{letter-spacing:-1.555200px;}
.lsc_c01179{letter-spacing:-1.440473px;}
.ls8_c01179{letter-spacing:-0.816683px;}
.lsf_c01179{letter-spacing:-0.722700px;}
.ls19_c01179{letter-spacing:-0.710400px;}
.ls3_c01179{letter-spacing:-0.701250px;}
.ls4_c01179{letter-spacing:0.000000px;}
.ls0_c01179{letter-spacing:1.440473px;}
.ls2b_c01179{letter-spacing:1.565100px;}
.ls2e_c01179{letter-spacing:3.366578px;}
.ls2_c01179{letter-spacing:4.210800px;}
.ls1_c01179{letter-spacing:10.084950px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01179{word-spacing:0.000000px;}
._13_c01179{margin-left:-14.141925px;}
._15_c01179{margin-left:-9.914793px;}
._d_c01179{margin-left:-6.629418px;}
._e_c01179{margin-left:-4.807050px;}
._7_c01179{margin-left:-3.046636px;}
._b_c01179{margin-left:-1.932733px;}
._10_c01179{width:1.008207px;}
._8_c01179{width:2.492047px;}
._a_c01179{width:3.737494px;}
._c_c01179{width:5.366307px;}
._9_c01179{width:7.544953px;}
._f_c01179{width:9.782557px;}
._12_c01179{width:11.448571px;}
._5_c01179{width:13.663727px;}
._11_c01179{width:14.875431px;}
._4_c01179{width:16.120043px;}
._6_c01179{width:19.042165px;}
._14_c01179{width:20.515632px;}
._3_c01179{width:24.982483px;}
._0_c01179{width:31.873625px;}
._2_c01179{width:36.604336px;}
._1_c01179{width:47.011839px;}
.fc0_c01179{color:transparent;}
.fsf_c01179{font-size:49.500000px;}
.fs9_c01179{font-size:51.000000px;}
.fs11_c01179{font-size:51.750000px;}
.fs14_c01179{font-size:52.500000px;}
.fsa_c01179{font-size:53.250000px;}
.fs12_c01179{font-size:54.000000px;}
.fs6_c01179{font-size:54.750000px;}
.fsd_c01179{font-size:55.500000px;}
.fsc_c01179{font-size:56.250000px;}
.fs10_c01179{font-size:57.000000px;}
.fs8_c01179{font-size:57.750000px;}
.fs7_c01179{font-size:58.500000px;}
.fsb_c01179{font-size:59.250000px;}
.fse_c01179{font-size:62.250000px;}
.fs13_c01179{font-size:68.250000px;}
.fs4_c01179{font-size:79.500000px;}
.fs2_c01179{font-size:81.000000px;}
.fs3_c01179{font-size:81.750000px;}
.fs1_c01179{font-size:82.500000px;}
.fs0_c01179{font-size:87.000000px;}
.fs5_c01179{font-size:90.000000px;}
.y0_c01179{bottom:0.000000px;}
.y2f_c01179{bottom:266.460600px;}
.y2e_c01179{bottom:281.221185px;}
.y2c_c01179{bottom:296.700420px;}
.y2d_c01179{bottom:296.700435px;}
.y2b_c01179{bottom:326.940285px;}
.y2a_c01179{bottom:341.701035px;}
.y29_c01179{bottom:356.459970px;}
.y28_c01179{bottom:356.460360px;}
.y26_c01179{bottom:369.060285px;}
.y27_c01179{bottom:371.940885px;}
.y25_c01179{bottom:401.101320px;}
.y24_c01179{bottom:416.221155px;}
.y23_c01179{bottom:416.221980px;}
.y21_c01179{bottom:431.341140px;}
.y22_c01179{bottom:431.341185px;}
.y20_c01179{bottom:446.100270px;}
.y1f_c01179{bottom:475.981515px;}
.y1e_c01179{bottom:491.100720px;}
.y1d_c01179{bottom:491.100900px;}
.y1b_c01179{bottom:505.861320px;}
.y1c_c01179{bottom:505.861500px;}
.y1a_c01179{bottom:520.620435px;}
.y19_c01179{bottom:520.620990px;}
.y18_c01179{bottom:534.661680px;}
.y17_c01179{bottom:565.260135px;}
.y16_c01179{bottom:565.260780px;}
.y15_c01179{bottom:580.379970px;}
.y14_c01179{bottom:595.140750px;}
.y13_c01179{bottom:595.141110px;}
.y12_c01179{bottom:610.621635px;}
.y10_c01179{bottom:621.420600px;}
.y11_c01179{bottom:625.741470px;}
.yf_c01179{bottom:654.541035px;}
.ye_c01179{bottom:654.541815px;}
.yd_c01179{bottom:669.661005px;}
.yc_c01179{bottom:669.661470px;}
.yb_c01179{bottom:684.060750px;}
.ya_c01179{bottom:684.062325px;}
.y9_c01179{bottom:698.461605px;}
.y8_c01179{bottom:729.421365px;}
.y7_c01179{bottom:744.540570px;}
.y6_c01179{bottom:744.541215px;}
.y5_c01179{bottom:759.660420px;}
.y4_c01179{bottom:774.421140px;}
.y3_c01179{bottom:774.421785px;}
.y2_c01179{bottom:789.540990px;}
.y1_c01179{bottom:843.180090px;}
.h16_c01179{height:51.626953px;}
.hf_c01179{height:52.261963px;}
.h19_c01179{height:52.998047px;}
.hb_c01179{height:53.191406px;}
.h7_c01179{height:53.734131px;}
.h18_c01179{height:53.973633px;}
.h12_c01179{height:54.470215px;}
.h1b_c01179{height:54.755859px;}
.he_c01179{height:55.206299px;}
.hc_c01179{height:55.538086px;}
.h10_c01179{height:55.933594px;}
.h17_c01179{height:55.942383px;}
.h9_c01179{height:56.678467px;}
.h15_c01179{height:56.689453px;}
.ha_c01179{height:57.073242px;}
.h14_c01179{height:57.414551px;}
.h8_c01179{height:57.814453px;}
.h13_c01179{height:58.201172px;}
.hd_c01179{height:58.555664px;}
.h11_c01179{height:64.924805px;}
.h1a_c01179{height:66.950317px;}
.h5_c01179{height:78.024902px;}
.h3_c01179{height:79.497070px;}
.h4_c01179{height:80.233154px;}
.h2_c01179{height:80.969238px;}
.h1_c01179{height:87.679688px;}
.h6_c01179{height:88.945312px;}
.h0_c01179{height:892.500000px;}
.w0_c01179{width:1263.000000px;}
.x0_c01179{left:0.000000px;}
.x1_c01179{left:81.359250px;}
.x2_c01179{left:167.759565px;}
.x3_c01179{left:208.798515px;}
.x4_c01179{left:614.159370px;}
.x5_c01179{left:662.038920px;}
.x6_c01179{left:691.199385px;}
.xa_c01179{left:921.239475px;}
.x16_c01179{left:922.320825px;}
.x21_c01179{left:923.397315px;}
.x2f_c01179{left:924.838470px;}
.x3c_c01179{left:926.279670px;}
.x44_c01179{left:927.358605px;}
.x4c_c01179{left:928.799010px;}
.x1c_c01179{left:930.239220px;}
.x41_c01179{left:934.558590px;}
.xd_c01179{left:935.639655px;}
.xc_c01179{left:943.559685px;}
.x3d_c01179{left:948.239865px;}
.x7_c01179{left:958.679715px;}
.x11_c01179{left:960.121395px;}
.x1e_c01179{left:961.199340px;}
.x2d_c01179{left:962.640135px;}
.x37_c01179{left:964.076385px;}
.x42_c01179{left:965.518620px;}
.x49_c01179{left:966.600510px;}
.xe_c01179{left:973.079400px;}
.x3e_c01179{left:974.158815px;}
.x1f_c01179{left:984.598575px;}
.x30_c01179{left:1011.598575px;}
.x46_c01179{left:1014.479190px;}
.x2e_c01179{left:1021.679070px;}
.x20_c01179{left:1026.718500px;}
.x31_c01179{left:1027.799565px;}
.x8_c01179{left:1028.878965px;}
.x47_c01179{left:1030.678530px;}
.x1a_c01179{left:1034.638545px;}
.x12_c01179{left:1038.598575px;}
.x32_c01179{left:1040.038875px;}
.x29_c01179{left:1042.199340px;}
.x35_c01179{left:1047.599670px;}
.x22_c01179{left:1051.559685px;}
.x3a_c01179{left:1053.000000px;}
.x17_c01179{left:1054.438665px;}
.x1b_c01179{left:1056.958275px;}
.x9_c01179{left:1060.199805px;}
.x33_c01179{left:1061.999355px;}
.x13_c01179{left:1063.078770px;}
.x2a_c01179{left:1066.679715px;}
.x18_c01179{left:1068.479190px;}
.x48_c01179{left:1070.998905px;}
.x2b_c01179{left:1077.478635px;}
.x3b_c01179{left:1082.158815px;}
.x2c_c01179{left:1088.638545px;}
.x23_c01179{left:1099.079955px;}
.x36_c01179{left:1100.879520px;}
.x14_c01179{left:1102.319820px;}
.x4a_c01179{left:1110.599025px;}
.x15_c01179{left:1112.398590px;}
.x27_c01179{left:1119.598575px;}
.x19_c01179{left:1127.879520px;}
.x24_c01179{left:1130.039985px;}
.x4b_c01179{left:1136.878875px;}
.x25_c01179{left:1142.999355px;}
.x38_c01179{left:1148.759040px;}
.x28_c01179{left:1150.199340px;}
.x39_c01179{left:1159.559685px;}
.xf_c01179{left:1171.798920px;}
.x34_c01179{left:1178.639655px;}
.xb_c01179{left:1184.039985px;}
.x26_c01179{left:1189.438665px;}
.x43_c01179{left:1191.239775px;}
.x3f_c01179{left:1200.959385px;}
.x10_c01179{left:1206.719055px;}
.x1d_c01179{left:1209.238770px;}
.x40_c01179{left:1218.239775px;}
.x45_c01179{left:1219.678530px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.ls15_c01179{letter-spacing:-13.503207pt;}
.ls22_c01179{letter-spacing:-11.644500pt;}
.ls5_c01179{letter-spacing:-10.382400pt;}
.ls29_c01179{letter-spacing:-8.326867pt;}
.ls1a_c01179{letter-spacing:-8.174400pt;}
.lse_c01179{letter-spacing:-7.061600pt;}
.ls30_c01179{letter-spacing:-6.104593pt;}
.ls23_c01179{letter-spacing:-5.916667pt;}
.ls12_c01179{letter-spacing:-5.795533pt;}
.ls1f_c01179{letter-spacing:-5.415960pt;}
.ls18_c01179{letter-spacing:-5.258733pt;}
.ls26_c01179{letter-spacing:-5.124600pt;}
.ls13_c01179{letter-spacing:-4.601333pt;}
.lsb_c01179{letter-spacing:-4.482200pt;}
.ls2d_c01179{letter-spacing:-3.839800pt;}
.ls9_c01179{letter-spacing:-3.589867pt;}
.ls27_c01179{letter-spacing:-3.381000pt;}
.ls14_c01179{letter-spacing:-3.284933pt;}
.ls1b_c01179{letter-spacing:-3.202267pt;}
.ls20_c01179{letter-spacing:-3.050133pt;}
.ls6_c01179{letter-spacing:-2.772000pt;}
.ls25_c01179{letter-spacing:-2.705560pt;}
.ls10_c01179{letter-spacing:-2.559867pt;}
.ls1e_c01179{letter-spacing:-2.343733pt;}
.ls2c_c01179{letter-spacing:-2.115907pt;}
.ls2f_c01179{letter-spacing:-2.090667pt;}
.ls11_c01179{letter-spacing:-2.028180pt;}
.ls1d_c01179{letter-spacing:-2.025000pt;}
.ls24_c01179{letter-spacing:-1.999500pt;}
.ls21_c01179{letter-spacing:-1.998000pt;}
.ls17_c01179{letter-spacing:-1.972840pt;}
.ls28_c01179{letter-spacing:-1.944000pt;}
.lsd_c01179{letter-spacing:-1.922820pt;}
.ls2a_c01179{letter-spacing:-1.898000pt;}
.lsa_c01179{letter-spacing:-1.880000pt;}
.ls16_c01179{letter-spacing:-1.775473pt;}
.ls1c_c01179{letter-spacing:-1.447600pt;}
.ls7_c01179{letter-spacing:-1.382400pt;}
.lsc_c01179{letter-spacing:-1.280420pt;}
.ls8_c01179{letter-spacing:-0.725940pt;}
.lsf_c01179{letter-spacing:-0.642400pt;}
.ls19_c01179{letter-spacing:-0.631467pt;}
.ls3_c01179{letter-spacing:-0.623333pt;}
.ls4_c01179{letter-spacing:0.000000pt;}
.ls0_c01179{letter-spacing:1.280420pt;}
.ls2b_c01179{letter-spacing:1.391200pt;}
.ls2e_c01179{letter-spacing:2.992513pt;}
.ls2_c01179{letter-spacing:3.742933pt;}
.ls1_c01179{letter-spacing:8.964400pt;}
.ws0_c01179{word-spacing:0.000000pt;}
._13_c01179{margin-left:-12.570600pt;}
._15_c01179{margin-left:-8.813149pt;}
._d_c01179{margin-left:-5.892816pt;}
._e_c01179{margin-left:-4.272933pt;}
._7_c01179{margin-left:-2.708121pt;}
._b_c01179{margin-left:-1.717985pt;}
._10_c01179{width:0.896184pt;}
._8_c01179{width:2.215153pt;}
._a_c01179{width:3.322217pt;}
._c_c01179{width:4.770051pt;}
._9_c01179{width:6.706625pt;}
._f_c01179{width:8.695606pt;}
._12_c01179{width:10.176507pt;}
._5_c01179{width:12.145535pt;}
._11_c01179{width:13.222605pt;}
._4_c01179{width:14.328927pt;}
._6_c01179{width:16.926369pt;}
._14_c01179{width:18.236117pt;}
._3_c01179{width:22.206651pt;}
._0_c01179{width:28.332111pt;}
._2_c01179{width:32.537188pt;}
._1_c01179{width:41.788302pt;}
.fsf_c01179{font-size:44.000000pt;}
.fs9_c01179{font-size:45.333333pt;}
.fs11_c01179{font-size:46.000000pt;}
.fs14_c01179{font-size:46.666667pt;}
.fsa_c01179{font-size:47.333333pt;}
.fs12_c01179{font-size:48.000000pt;}
.fs6_c01179{font-size:48.666667pt;}
.fsd_c01179{font-size:49.333333pt;}
.fsc_c01179{font-size:50.000000pt;}
.fs10_c01179{font-size:50.666667pt;}
.fs8_c01179{font-size:51.333333pt;}
.fs7_c01179{font-size:52.000000pt;}
.fsb_c01179{font-size:52.666667pt;}
.fse_c01179{font-size:55.333333pt;}
.fs13_c01179{font-size:60.666667pt;}
.fs4_c01179{font-size:70.666667pt;}
.fs2_c01179{font-size:72.000000pt;}
.fs3_c01179{font-size:72.666667pt;}
.fs1_c01179{font-size:73.333333pt;}
.fs0_c01179{font-size:77.333333pt;}
.fs5_c01179{font-size:80.000000pt;}
.y0_c01179{bottom:0.000000pt;}
.y2f_c01179{bottom:236.853867pt;}
.y2e_c01179{bottom:249.974387pt;}
.y2c_c01179{bottom:263.733707pt;}
.y2d_c01179{bottom:263.733720pt;}
.y2b_c01179{bottom:290.613587pt;}
.y2a_c01179{bottom:303.734253pt;}
.y29_c01179{bottom:316.853307pt;}
.y28_c01179{bottom:316.853653pt;}
.y26_c01179{bottom:328.053587pt;}
.y27_c01179{bottom:330.614120pt;}
.y25_c01179{bottom:356.534507pt;}
.y24_c01179{bottom:369.974360pt;}
.y23_c01179{bottom:369.975093pt;}
.y21_c01179{bottom:383.414347pt;}
.y22_c01179{bottom:383.414387pt;}
.y20_c01179{bottom:396.533573pt;}
.y1f_c01179{bottom:423.094680pt;}
.y1e_c01179{bottom:436.533973pt;}
.y1d_c01179{bottom:436.534133pt;}
.y1b_c01179{bottom:449.654507pt;}
.y1c_c01179{bottom:449.654667pt;}
.y1a_c01179{bottom:462.773720pt;}
.y19_c01179{bottom:462.774213pt;}
.y18_c01179{bottom:475.254827pt;}
.y17_c01179{bottom:502.453453pt;}
.y16_c01179{bottom:502.454027pt;}
.y15_c01179{bottom:515.893307pt;}
.y14_c01179{bottom:529.014000pt;}
.y13_c01179{bottom:529.014320pt;}
.y12_c01179{bottom:542.774787pt;}
.y10_c01179{bottom:552.373867pt;}
.y11_c01179{bottom:556.214640pt;}
.yf_c01179{bottom:581.814253pt;}
.ye_c01179{bottom:581.814947pt;}
.yd_c01179{bottom:595.254227pt;}
.yc_c01179{bottom:595.254640pt;}
.yb_c01179{bottom:608.054000pt;}
.ya_c01179{bottom:608.055400pt;}
.y9_c01179{bottom:620.854760pt;}
.y8_c01179{bottom:648.374547pt;}
.y7_c01179{bottom:661.813840pt;}
.y6_c01179{bottom:661.814413pt;}
.y5_c01179{bottom:675.253707pt;}
.y4_c01179{bottom:688.374347pt;}
.y3_c01179{bottom:688.374920pt;}
.y2_c01179{bottom:701.814213pt;}
.y1_c01179{bottom:749.493413pt;}
.h16_c01179{height:45.890625pt;}
.hf_c01179{height:46.455078pt;}
.h19_c01179{height:47.109375pt;}
.hb_c01179{height:47.281250pt;}
.h7_c01179{height:47.763672pt;}
.h18_c01179{height:47.976562pt;}
.h12_c01179{height:48.417969pt;}
.h1b_c01179{height:48.671875pt;}
.he_c01179{height:49.072266pt;}
.hc_c01179{height:49.367188pt;}
.h10_c01179{height:49.718750pt;}
.h17_c01179{height:49.726562pt;}
.h9_c01179{height:50.380859pt;}
.h15_c01179{height:50.390625pt;}
.ha_c01179{height:50.731771pt;}
.h14_c01179{height:51.035156pt;}
.h8_c01179{height:51.390625pt;}
.h13_c01179{height:51.734375pt;}
.hd_c01179{height:52.049479pt;}
.h11_c01179{height:57.710938pt;}
.h1a_c01179{height:59.511393pt;}
.h5_c01179{height:69.355469pt;}
.h3_c01179{height:70.664062pt;}
.h4_c01179{height:71.318359pt;}
.h2_c01179{height:71.972656pt;}
.h1_c01179{height:77.937500pt;}
.h6_c01179{height:79.062500pt;}
.h0_c01179{height:793.333333pt;}
.w0_c01179{width:1122.666667pt;}
.x0_c01179{left:0.000000pt;}
.x1_c01179{left:72.319333pt;}
.x2_c01179{left:149.119613pt;}
.x3_c01179{left:185.598680pt;}
.x4_c01179{left:545.919440pt;}
.x5_c01179{left:588.479040pt;}
.x6_c01179{left:614.399453pt;}
.xa_c01179{left:818.879533pt;}
.x16_c01179{left:819.840733pt;}
.x21_c01179{left:820.797613pt;}
.x2f_c01179{left:822.078640pt;}
.x3c_c01179{left:823.359707pt;}
.x44_c01179{left:824.318760pt;}
.x4c_c01179{left:825.599120pt;}
.x1c_c01179{left:826.879307pt;}
.x41_c01179{left:830.718747pt;}
.xd_c01179{left:831.679693pt;}
.xc_c01179{left:838.719720pt;}
.x3d_c01179{left:842.879880pt;}
.x7_c01179{left:852.159747pt;}
.x11_c01179{left:853.441240pt;}
.x1e_c01179{left:854.399413pt;}
.x2d_c01179{left:855.680120pt;}
.x37_c01179{left:856.956787pt;}
.x42_c01179{left:858.238773pt;}
.x49_c01179{left:859.200453pt;}
.xe_c01179{left:864.959467pt;}
.x3e_c01179{left:865.918947pt;}
.x1f_c01179{left:875.198733pt;}
.x30_c01179{left:899.198733pt;}
.x46_c01179{left:901.759280pt;}
.x2e_c01179{left:908.159173pt;}
.x20_c01179{left:912.638667pt;}
.x31_c01179{left:913.599613pt;}
.x8_c01179{left:914.559080pt;}
.x47_c01179{left:916.158693pt;}
.x1a_c01179{left:919.678707pt;}
.x12_c01179{left:923.198733pt;}
.x32_c01179{left:924.479000pt;}
.x29_c01179{left:926.399413pt;}
.x35_c01179{left:931.199707pt;}
.x22_c01179{left:934.719720pt;}
.x3a_c01179{left:936.000000pt;}
.x17_c01179{left:937.278813pt;}
.x1b_c01179{left:939.518467pt;}
.x9_c01179{left:942.399827pt;}
.x33_c01179{left:943.999427pt;}
.x13_c01179{left:944.958907pt;}
.x2a_c01179{left:948.159747pt;}
.x18_c01179{left:949.759280pt;}
.x48_c01179{left:951.999027pt;}
.x2b_c01179{left:957.758787pt;}
.x3b_c01179{left:961.918947pt;}
.x2c_c01179{left:967.678707pt;}
.x23_c01179{left:976.959960pt;}
.x36_c01179{left:978.559573pt;}
.x14_c01179{left:979.839840pt;}
.x4a_c01179{left:987.199133pt;}
.x15_c01179{left:988.798747pt;}
.x27_c01179{left:995.198733pt;}
.x19_c01179{left:1002.559573pt;}
.x24_c01179{left:1004.479987pt;}
.x4b_c01179{left:1010.559000pt;}
.x25_c01179{left:1015.999427pt;}
.x38_c01179{left:1021.119147pt;}
.x28_c01179{left:1022.399413pt;}
.x39_c01179{left:1030.719720pt;}
.xf_c01179{left:1041.599040pt;}
.x34_c01179{left:1047.679693pt;}
.xb_c01179{left:1052.479987pt;}
.x26_c01179{left:1057.278813pt;}
.x43_c01179{left:1058.879800pt;}
.x3f_c01179{left:1067.519453pt;}
.x10_c01179{left:1072.639160pt;}
.x1d_c01179{left:1074.878907pt;}
.x40_c01179{left:1082.879800pt;}
.x45_c01179{left:1084.158693pt;}
}





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

.ir_c01180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_8f52bae1f32239f9f4aae45a.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01180;src:url('chunks/assets/font_3802ada481eb80429b31d726.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01180;src:url('chunks/assets/font_a5a06373d119acfb4364fead.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:1.364746;font-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_c01180{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m3_c01180{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m7_c01180{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m6_c01180{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.ma_c01180{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m5_c01180{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1_c01180{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m2_c01180{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m9_c01180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01180{transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270325,0.000000,0.000000,0.250000,0,0);}
.m0_c01180{transform:matrix(0.300439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300439,0.000000,0.000000,0.250000,0,0);}
.v0_c01180{vertical-align:0.000000px;}
.v1_c01180{vertical-align:1.436400px;}
.ls8_c01180{letter-spacing:-20.279175px;}
.lsb_c01180{letter-spacing:-8.838900px;}
.ls7_c01180{letter-spacing:-8.481000px;}
.ls4_c01180{letter-spacing:-2.497455px;}
.ls5_c01180{letter-spacing:-1.550400px;}
.ls9_c01180{letter-spacing:0.000000px;}
.ls1_c01180{letter-spacing:0.882750px;}
.ls6_c01180{letter-spacing:1.550400px;}
.ls2_c01180{letter-spacing:1.765500px;}
.ls3_c01180{letter-spacing:2.323200px;}
.lse_c01180{letter-spacing:2.620800px;}
.lsd_c01180{letter-spacing:2.648250px;}
.ls10_c01180{letter-spacing:3.355605px;}
.lsc_c01180{letter-spacing:3.386250px;}
.ls0_c01180{letter-spacing:3.531803px;}
.lsf_c01180{letter-spacing:3.816225px;}
.lsa_c01180{letter-spacing:4.160475px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01180{word-spacing:0.000000px;}
._4_c01180{width:18.725017px;}
._3_c01180{width:22.007907px;}
._0_c01180{width:27.748862px;}
._1_c01180{width:30.773785px;}
._2_c01180{width:32.557266px;}
.fc0_c01180{color:transparent;}
.fs1_c01180{font-size:48.000000px;}
.fs7_c01180{font-size:49.500000px;}
.fs6_c01180{font-size:52.500000px;}
.fs3_c01180{font-size:80.250000px;}
.fs2_c01180{font-size:82.500000px;}
.fs0_c01180{font-size:85.500000px;}
.fs5_c01180{font-size:90.000000px;}
.fs4_c01180{font-size:92.250000px;}
.y0_c01180{bottom:0.000000px;}
.ya_c01180{bottom:387.060750px;}
.yb_c01180{bottom:391.381620px;}
.y2_c01180{bottom:789.181725px;}
.y4_c01180{bottom:791.340540px;}
.y7_c01180{bottom:792.780855px;}
.y9_c01180{bottom:794.941320px;}
.y1_c01180{bottom:842.100675px;}
.y3_c01180{bottom:843.540990px;}
.y5_c01180{bottom:844.981290px;}
.y6_c01180{bottom:845.340540px;}
.y8_c01180{bottom:847.860255px;}
.h2_c01180{height:47.109375px;}
.h9_c01180{height:48.581543px;}
.h8_c01180{height:51.525879px;}
.h4_c01180{height:80.876953px;}
.h5_c01180{height:82.313353px;}
.h3_c01180{height:83.144531px;}
.h1_c01180{height:86.167969px;}
.h7_c01180{height:88.945312px;}
.h6_c01180{height:91.168945px;}
.h0_c01180{height:892.500000px;}
.w0_c01180{width:1263.000000px;}
.x0_c01180{left:0.000000px;}
.x1_c01180{left:83.158785px;}
.xd_c01180{left:103.319850px;}
.x4_c01180{left:165.958350px;}
.x2_c01180{left:171.719565px;}
.x3_c01180{left:213.478635px;}
.x5_c01180{left:397.798515px;}
.x8_c01180{left:482.399235px;}
.x9_c01180{left:502.199385px;}
.x6_c01180{left:727.918950px;}
.x7_c01180{left:772.199340px;}
.xa_c01180{left:824.038965px;}
.xb_c01180{left:881.278755px;}
.xe_c01180{left:885.238770px;}
.xc_c01180{left:900.358605px;}
.xf_c01180{left:903.959385px;}
.x10_c01180{left:965.518620px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.v1_c01180{vertical-align:1.276800pt;}
.ls8_c01180{letter-spacing:-18.025933pt;}
.lsb_c01180{letter-spacing:-7.856800pt;}
.ls7_c01180{letter-spacing:-7.538667pt;}
.ls4_c01180{letter-spacing:-2.219960pt;}
.ls5_c01180{letter-spacing:-1.378133pt;}
.ls9_c01180{letter-spacing:0.000000pt;}
.ls1_c01180{letter-spacing:0.784667pt;}
.ls6_c01180{letter-spacing:1.378133pt;}
.ls2_c01180{letter-spacing:1.569333pt;}
.ls3_c01180{letter-spacing:2.065067pt;}
.lse_c01180{letter-spacing:2.329600pt;}
.lsd_c01180{letter-spacing:2.354000pt;}
.ls10_c01180{letter-spacing:2.982760pt;}
.lsc_c01180{letter-spacing:3.010000pt;}
.ls0_c01180{letter-spacing:3.139380pt;}
.lsf_c01180{letter-spacing:3.392200pt;}
.lsa_c01180{letter-spacing:3.698200pt;}
.ws0_c01180{word-spacing:0.000000pt;}
._4_c01180{width:16.644459pt;}
._3_c01180{width:19.562584pt;}
._0_c01180{width:24.665655pt;}
._1_c01180{width:27.354476pt;}
._2_c01180{width:28.939792pt;}
.fs1_c01180{font-size:42.666667pt;}
.fs7_c01180{font-size:44.000000pt;}
.fs6_c01180{font-size:46.666667pt;}
.fs3_c01180{font-size:71.333333pt;}
.fs2_c01180{font-size:73.333333pt;}
.fs0_c01180{font-size:76.000000pt;}
.fs5_c01180{font-size:80.000000pt;}
.fs4_c01180{font-size:82.000000pt;}
.y0_c01180{bottom:0.000000pt;}
.ya_c01180{bottom:344.054000pt;}
.yb_c01180{bottom:347.894773pt;}
.y2_c01180{bottom:701.494867pt;}
.y4_c01180{bottom:703.413813pt;}
.y7_c01180{bottom:704.694093pt;}
.y9_c01180{bottom:706.614507pt;}
.y1_c01180{bottom:748.533933pt;}
.y3_c01180{bottom:749.814213pt;}
.y5_c01180{bottom:751.094480pt;}
.y6_c01180{bottom:751.413813pt;}
.y8_c01180{bottom:753.653560pt;}
.h2_c01180{height:41.875000pt;}
.h9_c01180{height:43.183594pt;}
.h8_c01180{height:45.800781pt;}
.h4_c01180{height:71.890625pt;}
.h5_c01180{height:73.167425pt;}
.h3_c01180{height:73.906250pt;}
.h1_c01180{height:76.593750pt;}
.h7_c01180{height:79.062500pt;}
.h6_c01180{height:81.039063pt;}
.h0_c01180{height:793.333333pt;}
.w0_c01180{width:1122.666667pt;}
.x0_c01180{left:0.000000pt;}
.x1_c01180{left:73.918920pt;}
.xd_c01180{left:91.839867pt;}
.x4_c01180{left:147.518533pt;}
.x2_c01180{left:152.639613pt;}
.x3_c01180{left:189.758787pt;}
.x5_c01180{left:353.598680pt;}
.x8_c01180{left:428.799320pt;}
.x9_c01180{left:446.399453pt;}
.x6_c01180{left:647.039067pt;}
.x7_c01180{left:686.399413pt;}
.xa_c01180{left:732.479080pt;}
.xb_c01180{left:783.358893pt;}
.xe_c01180{left:786.878907pt;}
.xc_c01180{left:800.318760pt;}
.xf_c01180{left:803.519453pt;}
.x10_c01180{left:858.238773pt;}
}





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

.ir_c01181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01181;src:url('chunks/assets/font_786c13a808f3569dd0064174.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01181;src:url('chunks/assets/font_75a91ec6ea14f2f2c33e9e9d.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01181;src:url('chunks/assets/font_b4eb3a90f0c3563c269b477b.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01181;src:url('chunks/assets/font_2e42ecdd4b8d87f0eae99f2b.woff2')format("woff");}.ff4_c01181{font-family:ff4_c01181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01181;src:url('chunks/assets/font_585eaf1460e70389f34431d7.woff2')format("woff");}.ff5_c01181{font-family:ff5_c01181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01181;src:url('chunks/assets/font_63004b88e85331243cd09ac2.woff2')format("woff");}.ff6_c01181{font-family:ff6_c01181;line-height:1.284668;font-style:normal;font-weight: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_c01181;src:url('chunks/assets/font_5d33ef2b641398770faa7a97.woff2')format("woff");}.ff7_c01181{font-family:ff7_c01181;line-height:1.364746;font-style:normal;font-weight: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_c01181;src:url('chunks/assets/font_a3826a0d580e2bac13eb6de5.woff2')format("woff");}.ff8_c01181{font-family:ff8_c01181;line-height:1.281250;font-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_c01181{transform:matrix(0.169753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169753,0.000000,0.000000,0.250000,0,0);}
.m2a_c01181{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m18_c01181{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m7_c01181{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m1f_c01181{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m21_c01181{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m5_c01181{transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190909,0.000000,0.000000,0.250000,0,0);}
.m20_c01181{transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);}
.m22_c01181{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m1c_c01181{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m9_c01181{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m24_c01181{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);}
.m27_c01181{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m4_c01181{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m3_c01181{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.m2_c01181{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_c01181{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m30_c01181{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2f_c01181{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m35_c01181{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m14_c01181{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1b_c01181{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m10_c01181{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);}
.m2b_c01181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01181{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m16_c01181{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m29_c01181{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m1d_c01181{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m1e_c01181{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m2e_c01181{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m36_c01181{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m33_c01181{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m23_c01181{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m2c_c01181{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.mb_c01181{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m11_c01181{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.mf_c01181{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m1_c01181{transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269912,0.000000,0.000000,0.250000,0,0);}
.m6_c01181{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m25_c01181{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m12_c01181{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.md_c01181{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m19_c01181{transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);}
.ma_c01181{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m32_c01181{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.m15_c01181{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m13_c01181{transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289773,0.000000,0.000000,0.250000,0,0);}
.m0_c01181{transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295259,0.000000,0.000000,0.250000,0,0);}
.mc_c01181{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.me_c01181{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01181{transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339286,0.000000,0.000000,0.250000,0,0);}
.m2d_c01181{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m28_c01181{transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);}
.m34_c01181{transform:matrix(1.075618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075618,0.000000,0.000000,0.250000,0,0);}
.m8_c01181{transform:matrix(17.709677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(17.709677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(17.709677,0.000000,0.000000,0.250000,0,0);}
.v0_c01181{vertical-align:0.000000px;}
.ls2c_c01181{letter-spacing:-17.129700px;}
.ls15_c01181{letter-spacing:-12.214530px;}
.ls16_c01181{letter-spacing:-8.460600px;}
.ls1c_c01181{letter-spacing:-8.136000px;}
.ls17_c01181{letter-spacing:-6.659438px;}
.ls25_c01181{letter-spacing:-6.506325px;}
.ls0_c01181{letter-spacing:-6.351000px;}
.ls1f_c01181{letter-spacing:-6.236370px;}
.ls6_c01181{letter-spacing:-5.890500px;}
.ls23_c01181{letter-spacing:-5.460000px;}
.ls1b_c01181{letter-spacing:-5.171888px;}
.ls1e_c01181{letter-spacing:-5.065253px;}
.lsb_c01181{letter-spacing:-4.592700px;}
.ls1d_c01181{letter-spacing:-4.575375px;}
.lsf_c01181{letter-spacing:-4.440000px;}
.ls2a_c01181{letter-spacing:-4.438125px;}
.ls8_c01181{letter-spacing:-4.098975px;}
.ls29_c01181{letter-spacing:-3.748500px;}
.lsc_c01181{letter-spacing:-3.730650px;}
.ls14_c01181{letter-spacing:-3.701250px;}
.ls28_c01181{letter-spacing:-3.650625px;}
.ls9_c01181{letter-spacing:-3.196875px;}
.ls26_c01181{letter-spacing:-2.997225px;}
.ls18_c01181{letter-spacing:-2.958750px;}
.ls27_c01181{letter-spacing:-2.876475px;}
.ls21_c01181{letter-spacing:-2.708400px;}
.ls2_c01181{letter-spacing:-2.499750px;}
.ls10_c01181{letter-spacing:-2.222438px;}
.ls24_c01181{letter-spacing:-2.217375px;}
.ls2d_c01181{letter-spacing:-2.187000px;}
.ls12_c01181{letter-spacing:-2.089035px;}
.ls13_c01181{letter-spacing:-1.970250px;}
.lsa_c01181{letter-spacing:-1.741500px;}
.ls3_c01181{letter-spacing:-1.678898px;}
.ls5_c01181{letter-spacing:-1.666500px;}
.ls2b_c01181{letter-spacing:-1.605450px;}
.ls2e_c01181{letter-spacing:-1.587600px;}
.ls11_c01181{letter-spacing:-1.479938px;}
.ls1a_c01181{letter-spacing:-1.475100px;}
.ls30_c01181{letter-spacing:-1.460205px;}
.ls20_c01181{letter-spacing:-1.442100px;}
.lse_c01181{letter-spacing:-1.345500px;}
.ls22_c01181{letter-spacing:-1.105650px;}
.ls7_c01181{letter-spacing:-0.833250px;}
.ls19_c01181{letter-spacing:-0.742500px;}
.ls1_c01181{letter-spacing:-0.694103px;}
.ls4_c01181{letter-spacing:0.000000px;}
.ls2f_c01181{letter-spacing:1.479938px;}
.lsd_c01181{letter-spacing:2.295000px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01181{word-spacing:0.000000px;}
._b_c01181{margin-left:-7.797997px;}
._2_c01181{margin-left:-3.260516px;}
._a_c01181{margin-left:-1.271191px;}
._1_c01181{width:1.663786px;}
._8_c01181{width:2.777832px;}
._9_c01181{width:4.128928px;}
._7_c01181{width:6.190520px;}
._4_c01181{width:10.304319px;}
._3_c01181{width:12.205895px;}
._6_c01181{width:20.366763px;}
._5_c01181{width:23.242263px;}
._0_c01181{width:30.434100px;}
.fc0_c01181{color:transparent;}
.fs6_c01181{font-size:23.250000px;}
.fs9_c01181{font-size:25.500000px;}
.fs7_c01181{font-size:27.000000px;}
.fsb_c01181{font-size:28.500000px;}
.fsa_c01181{font-size:30.000000px;}
.fs4_c01181{font-size:30.750000px;}
.fs8_c01181{font-size:31.500000px;}
.fse_c01181{font-size:33.000000px;}
.fsc_c01181{font-size:37.500000px;}
.fsd_c01181{font-size:38.250000px;}
.fs5_c01181{font-size:39.000000px;}
.fs16_c01181{font-size:48.750000px;}
.fs15_c01181{font-size:49.500000px;}
.fs1e_c01181{font-size:51.000000px;}
.fs1b_c01181{font-size:52.500000px;}
.fs12_c01181{font-size:53.250000px;}
.fs1f_c01181{font-size:54.000000px;}
.fs1c_c01181{font-size:54.750000px;}
.fsf_c01181{font-size:55.500000px;}
.fs10_c01181{font-size:56.250000px;}
.fs13_c01181{font-size:57.000000px;}
.fs18_c01181{font-size:57.750000px;}
.fs11_c01181{font-size:58.500000px;}
.fs14_c01181{font-size:60.000000px;}
.fs19_c01181{font-size:60.750000px;}
.fs17_c01181{font-size:62.250000px;}
.fs1a_c01181{font-size:63.000000px;}
.fs1d_c01181{font-size:72.000000px;}
.fs2_c01181{font-size:82.500000px;}
.fs1_c01181{font-size:84.750000px;}
.fs0_c01181{font-size:87.000000px;}
.fs3_c01181{font-size:96.000000px;}
.fs20_c01181{font-size:121.500000px;}
.y0_c01181{bottom:0.000000px;}
.y5_c01181{bottom:39.661485px;}
.y4_c01181{bottom:48.301800px;}
.y2_c01181{bottom:48.661035px;}
.y3_c01181{bottom:57.301185px;}
.y16_c01181{bottom:448.260720px;}
.y15_c01181{bottom:477.780435px;}
.y14_c01181{bottom:522.780900px;}
.y13_c01181{bottom:552.661470px;}
.y12_c01181{bottom:582.181320px;}
.y11_c01181{bottom:612.420690px;}
.y10_c01181{bottom:672.180720px;}
.yf_c01181{bottom:686.580420px;}
.ye_c01181{bottom:701.700435px;}
.yd_c01181{bottom:716.820420px;}
.yc_c01181{bottom:731.581005px;}
.yb_c01181{bottom:731.581095px;}
.ya_c01181{bottom:746.701035px;}
.y9_c01181{bottom:761.461620px;}
.y8_c01181{bottom:761.462130px;}
.y7_c01181{bottom:776.220705px;}
.y6_c01181{bottom:791.701440px;}
.y1_c01181{bottom:843.540990px;}
.h7_c01181{height:24.249023px;}
.ha_c01181{height:26.595703px;}
.h8_c01181{height:28.160156px;}
.hc_c01181{height:29.724609px;}
.h5_c01181{height:30.389648px;}
.h9_c01181{height:31.130859px;}
.hb_c01181{height:31.289062px;}
.h10_c01181{height:34.417969px;}
.hd_c01181{height:37.792969px;}
.he_c01181{height:38.548828px;}
.hf_c01181{height:39.304688px;}
.h6_c01181{height:40.675781px;}
.h19_c01181{height:50.844727px;}
.h20_c01181{height:51.525879px;}
.h18_c01181{height:51.626953px;}
.h14_c01181{height:52.261963px;}
.h28_c01181{height:52.998047px;}
.h25_c01181{height:53.191406px;}
.h21_c01181{height:53.734131px;}
.h2a_c01181{height:54.421875px;}
.h11_c01181{height:54.470215px;}
.h23_c01181{height:54.755859px;}
.h12_c01181{height:55.206299px;}
.h1d_c01181{height:55.942383px;}
.h15_c01181{height:56.332031px;}
.h26_c01181{height:56.678467px;}
.h1c_c01181{height:57.073242px;}
.h17_c01181{height:57.414551px;}
.h13_c01181{height:57.814453px;}
.h22_c01181{height:58.201172px;}
.h16_c01181{height:58.886719px;}
.h1a_c01181{height:59.296875px;}
.h1e_c01181{height:60.038086px;}
.h1b_c01181{height:61.520508px;}
.h27_c01181{height:61.800293px;}
.h1f_c01181{height:62.261719px;}
.h24_c01181{height:75.093750px;}
.h3_c01181{height:83.144531px;}
.h2_c01181{height:85.412109px;}
.h1_c01181{height:87.679688px;}
.h4_c01181{height:94.875000px;}
.h29_c01181{height:126.720703px;}
.h0_c01181{height:892.500000px;}
.w0_c01181{width:1263.000000px;}
.x0_c01181{left:0.000000px;}
.x1_c01181{left:76.319850px;}
.x2_c01181{left:164.158785px;}
.x3_c01181{left:204.479250px;}
.x9_c01181{left:222.479685px;}
.xc_c01181{left:301.319250px;}
.x4_c01181{left:312.120000px;}
.x13_c01181{left:325.438635px;}
.x14_c01181{left:352.438635px;}
.xd_c01181{left:378.718530px;}
.x5_c01181{left:387.358665px;}
.x15_c01181{left:397.798515px;}
.x6_c01181{left:438.118785px;}
.xe_c01181{left:456.839535px;}
.x16_c01181{left:483.119385px;}
.x7_c01181{left:528.479235px;}
.xf_c01181{left:535.319820px;}
.x8_c01181{left:554.399820px;}
.x10_c01181{left:614.159370px;}
.x11_c01181{left:692.639700px;}
.xa_c01181{left:735.479685px;}
.xb_c01181{left:741.598530px;}
.x12_c01181{left:770.399865px;}
.x1c_c01181{left:929.878320px;}
.x3e_c01181{left:931.318815px;}
.x41_c01181{left:933.838530px;}
.x40_c01181{left:939.958920px;}
.x3a_c01181{left:951.118740px;}
.x34_c01181{left:956.878320px;}
.x25_c01181{left:965.879520px;}
.x17_c01181{left:967.319820px;}
.x3f_c01181{left:968.757690px;}
.x42_c01181{left:969.839535px;}
.x35_c01181{left:970.918950px;}
.x18_c01181{left:983.878320px;}
.x28_c01181{left:1004.398590px;}
.x44_c01181{left:1006.559055px;}
.x36_c01181{left:1008.719520px;}
.x43_c01181{left:1011.598575px;}
.x29_c01181{left:1019.518620px;}
.x1d_c01181{left:1023.478635px;}
.x3b_c01181{left:1031.759490px;}
.x21_c01181{left:1046.879520px;}
.x22_c01181{left:1059.479640px;}
.x3c_c01181{left:1063.798920px;}
.x1e_c01181{left:1065.598575px;}
.x26_c01181{left:1067.399775px;}
.x2e_c01181{left:1070.998905px;}
.x2a_c01181{left:1072.439205px;}
.x2f_c01181{left:1088.279205px;}
.x2b_c01181{left:1089.719520px;}
.x27_c01181{left:1097.278755px;}
.x37_c01181{left:1102.679070px;}
.x23_c01181{left:1107.000000px;}
.x2c_c01181{left:1108.438665px;}
.x19_c01181{left:1116.719520px;}
.x1a_c01181{left:1132.198785px;}
.x30_c01181{left:1139.039340px;}
.x1f_c01181{left:1152.719055px;}
.x31_c01181{left:1155.238770px;}
.x38_c01181{left:1159.918950px;}
.x39_c01181{left:1167.479640px;}
.x20_c01181{left:1168.918305px;}
.x32_c01181{left:1178.639655px;}
.x3d_c01181{left:1194.838905px;}
.x33_c01181{left:1196.279205px;}
.x24_c01181{left:1198.439670px;}
.x1b_c01181{left:1218.599025px;}
.x2d_c01181{left:1222.199805px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls2c_c01181{letter-spacing:-15.226400pt;}
.ls15_c01181{letter-spacing:-10.857360pt;}
.ls16_c01181{letter-spacing:-7.520533pt;}
.ls1c_c01181{letter-spacing:-7.232000pt;}
.ls17_c01181{letter-spacing:-5.919500pt;}
.ls25_c01181{letter-spacing:-5.783400pt;}
.ls0_c01181{letter-spacing:-5.645333pt;}
.ls1f_c01181{letter-spacing:-5.543440pt;}
.ls6_c01181{letter-spacing:-5.236000pt;}
.ls23_c01181{letter-spacing:-4.853333pt;}
.ls1b_c01181{letter-spacing:-4.597233pt;}
.ls1e_c01181{letter-spacing:-4.502447pt;}
.lsb_c01181{letter-spacing:-4.082400pt;}
.ls1d_c01181{letter-spacing:-4.067000pt;}
.lsf_c01181{letter-spacing:-3.946667pt;}
.ls2a_c01181{letter-spacing:-3.945000pt;}
.ls8_c01181{letter-spacing:-3.643533pt;}
.ls29_c01181{letter-spacing:-3.332000pt;}
.lsc_c01181{letter-spacing:-3.316133pt;}
.ls14_c01181{letter-spacing:-3.290000pt;}
.ls28_c01181{letter-spacing:-3.245000pt;}
.ls9_c01181{letter-spacing:-2.841667pt;}
.ls26_c01181{letter-spacing:-2.664200pt;}
.ls18_c01181{letter-spacing:-2.630000pt;}
.ls27_c01181{letter-spacing:-2.556867pt;}
.ls21_c01181{letter-spacing:-2.407467pt;}
.ls2_c01181{letter-spacing:-2.222000pt;}
.ls10_c01181{letter-spacing:-1.975500pt;}
.ls24_c01181{letter-spacing:-1.971000pt;}
.ls2d_c01181{letter-spacing:-1.944000pt;}
.ls12_c01181{letter-spacing:-1.856920pt;}
.ls13_c01181{letter-spacing:-1.751333pt;}
.lsa_c01181{letter-spacing:-1.548000pt;}
.ls3_c01181{letter-spacing:-1.492353pt;}
.ls5_c01181{letter-spacing:-1.481333pt;}
.ls2b_c01181{letter-spacing:-1.427067pt;}
.ls2e_c01181{letter-spacing:-1.411200pt;}
.ls11_c01181{letter-spacing:-1.315500pt;}
.ls1a_c01181{letter-spacing:-1.311200pt;}
.ls30_c01181{letter-spacing:-1.297960pt;}
.ls20_c01181{letter-spacing:-1.281867pt;}
.lse_c01181{letter-spacing:-1.196000pt;}
.ls22_c01181{letter-spacing:-0.982800pt;}
.ls7_c01181{letter-spacing:-0.740667pt;}
.ls19_c01181{letter-spacing:-0.660000pt;}
.ls1_c01181{letter-spacing:-0.616980pt;}
.ls4_c01181{letter-spacing:0.000000pt;}
.ls2f_c01181{letter-spacing:1.315500pt;}
.lsd_c01181{letter-spacing:2.040000pt;}
.ws0_c01181{word-spacing:0.000000pt;}
._b_c01181{margin-left:-6.931553pt;}
._2_c01181{margin-left:-2.898237pt;}
._a_c01181{margin-left:-1.129947pt;}
._1_c01181{width:1.478921pt;}
._8_c01181{width:2.469184pt;}
._9_c01181{width:3.670158pt;}
._7_c01181{width:5.502684pt;}
._4_c01181{width:9.159395pt;}
._3_c01181{width:10.849684pt;}
._6_c01181{width:18.103789pt;}
._5_c01181{width:20.659789pt;}
._0_c01181{width:27.052533pt;}
.fs6_c01181{font-size:20.666667pt;}
.fs9_c01181{font-size:22.666667pt;}
.fs7_c01181{font-size:24.000000pt;}
.fsb_c01181{font-size:25.333333pt;}
.fsa_c01181{font-size:26.666667pt;}
.fs4_c01181{font-size:27.333333pt;}
.fs8_c01181{font-size:28.000000pt;}
.fse_c01181{font-size:29.333333pt;}
.fsc_c01181{font-size:33.333333pt;}
.fsd_c01181{font-size:34.000000pt;}
.fs5_c01181{font-size:34.666667pt;}
.fs16_c01181{font-size:43.333333pt;}
.fs15_c01181{font-size:44.000000pt;}
.fs1e_c01181{font-size:45.333333pt;}
.fs1b_c01181{font-size:46.666667pt;}
.fs12_c01181{font-size:47.333333pt;}
.fs1f_c01181{font-size:48.000000pt;}
.fs1c_c01181{font-size:48.666667pt;}
.fsf_c01181{font-size:49.333333pt;}
.fs10_c01181{font-size:50.000000pt;}
.fs13_c01181{font-size:50.666667pt;}
.fs18_c01181{font-size:51.333333pt;}
.fs11_c01181{font-size:52.000000pt;}
.fs14_c01181{font-size:53.333333pt;}
.fs19_c01181{font-size:54.000000pt;}
.fs17_c01181{font-size:55.333333pt;}
.fs1a_c01181{font-size:56.000000pt;}
.fs1d_c01181{font-size:64.000000pt;}
.fs2_c01181{font-size:73.333333pt;}
.fs1_c01181{font-size:75.333333pt;}
.fs0_c01181{font-size:77.333333pt;}
.fs3_c01181{font-size:85.333333pt;}
.fs20_c01181{font-size:108.000000pt;}
.y0_c01181{bottom:0.000000pt;}
.y5_c01181{bottom:35.254653pt;}
.y4_c01181{bottom:42.934933pt;}
.y2_c01181{bottom:43.254253pt;}
.y3_c01181{bottom:50.934387pt;}
.y16_c01181{bottom:398.453973pt;}
.y15_c01181{bottom:424.693720pt;}
.y14_c01181{bottom:464.694133pt;}
.y13_c01181{bottom:491.254640pt;}
.y12_c01181{bottom:517.494507pt;}
.y11_c01181{bottom:544.373947pt;}
.y10_c01181{bottom:597.493973pt;}
.yf_c01181{bottom:610.293707pt;}
.ye_c01181{bottom:623.733720pt;}
.yd_c01181{bottom:637.173707pt;}
.yc_c01181{bottom:650.294227pt;}
.yb_c01181{bottom:650.294307pt;}
.ya_c01181{bottom:663.734253pt;}
.y9_c01181{bottom:676.854773pt;}
.y8_c01181{bottom:676.855227pt;}
.y7_c01181{bottom:689.973960pt;}
.y6_c01181{bottom:703.734613pt;}
.y1_c01181{bottom:749.814213pt;}
.h7_c01181{height:21.554687pt;}
.ha_c01181{height:23.640625pt;}
.h8_c01181{height:25.031250pt;}
.hc_c01181{height:26.421875pt;}
.h5_c01181{height:27.013021pt;}
.h9_c01181{height:27.671875pt;}
.hb_c01181{height:27.812500pt;}
.h10_c01181{height:30.593750pt;}
.hd_c01181{height:33.593750pt;}
.he_c01181{height:34.265625pt;}
.hf_c01181{height:34.937500pt;}
.h6_c01181{height:36.156250pt;}
.h19_c01181{height:45.195312pt;}
.h20_c01181{height:45.800781pt;}
.h18_c01181{height:45.890625pt;}
.h14_c01181{height:46.455078pt;}
.h28_c01181{height:47.109375pt;}
.h25_c01181{height:47.281250pt;}
.h21_c01181{height:47.763672pt;}
.h2a_c01181{height:48.375000pt;}
.h11_c01181{height:48.417969pt;}
.h23_c01181{height:48.671875pt;}
.h12_c01181{height:49.072266pt;}
.h1d_c01181{height:49.726562pt;}
.h15_c01181{height:50.072917pt;}
.h26_c01181{height:50.380859pt;}
.h1c_c01181{height:50.731771pt;}
.h17_c01181{height:51.035156pt;}
.h13_c01181{height:51.390625pt;}
.h22_c01181{height:51.734375pt;}
.h16_c01181{height:52.343750pt;}
.h1a_c01181{height:52.708333pt;}
.h1e_c01181{height:53.367188pt;}
.h1b_c01181{height:54.684896pt;}
.h27_c01181{height:54.933594pt;}
.h1f_c01181{height:55.343750pt;}
.h24_c01181{height:66.750000pt;}
.h3_c01181{height:73.906250pt;}
.h2_c01181{height:75.921875pt;}
.h1_c01181{height:77.937500pt;}
.h4_c01181{height:84.333333pt;}
.h29_c01181{height:112.640625pt;}
.h0_c01181{height:793.333333pt;}
.w0_c01181{width:1122.666667pt;}
.x0_c01181{left:0.000000pt;}
.x1_c01181{left:67.839867pt;}
.x2_c01181{left:145.918920pt;}
.x3_c01181{left:181.759333pt;}
.x9_c01181{left:197.759720pt;}
.xc_c01181{left:267.839333pt;}
.x4_c01181{left:277.440000pt;}
.x13_c01181{left:289.278787pt;}
.x14_c01181{left:313.278787pt;}
.xd_c01181{left:336.638693pt;}
.x5_c01181{left:344.318813pt;}
.x15_c01181{left:353.598680pt;}
.x6_c01181{left:389.438920pt;}
.xe_c01181{left:406.079587pt;}
.x16_c01181{left:429.439453pt;}
.x7_c01181{left:469.759320pt;}
.xf_c01181{left:475.839840pt;}
.x8_c01181{left:492.799840pt;}
.x10_c01181{left:545.919440pt;}
.x11_c01181{left:615.679733pt;}
.xa_c01181{left:653.759720pt;}
.xb_c01181{left:659.198693pt;}
.x12_c01181{left:684.799880pt;}
.x1c_c01181{left:826.558507pt;}
.x3e_c01181{left:827.838947pt;}
.x41_c01181{left:830.078693pt;}
.x40_c01181{left:835.519040pt;}
.x3a_c01181{left:845.438880pt;}
.x34_c01181{left:850.558507pt;}
.x25_c01181{left:858.559573pt;}
.x17_c01181{left:859.839840pt;}
.x3f_c01181{left:861.117947pt;}
.x42_c01181{left:862.079587pt;}
.x35_c01181{left:863.039067pt;}
.x18_c01181{left:874.558507pt;}
.x28_c01181{left:892.798747pt;}
.x44_c01181{left:894.719160pt;}
.x36_c01181{left:896.639573pt;}
.x43_c01181{left:899.198733pt;}
.x29_c01181{left:906.238773pt;}
.x1d_c01181{left:909.758787pt;}
.x3b_c01181{left:917.119547pt;}
.x21_c01181{left:930.559573pt;}
.x22_c01181{left:941.759680pt;}
.x3c_c01181{left:945.599040pt;}
.x1e_c01181{left:947.198733pt;}
.x26_c01181{left:948.799800pt;}
.x2e_c01181{left:951.999027pt;}
.x2a_c01181{left:953.279293pt;}
.x2f_c01181{left:967.359293pt;}
.x2b_c01181{left:968.639573pt;}
.x27_c01181{left:975.358893pt;}
.x37_c01181{left:980.159173pt;}
.x23_c01181{left:984.000000pt;}
.x2c_c01181{left:985.278813pt;}
.x19_c01181{left:992.639573pt;}
.x1a_c01181{left:1006.398920pt;}
.x30_c01181{left:1012.479413pt;}
.x1f_c01181{left:1024.639160pt;}
.x31_c01181{left:1026.878907pt;}
.x38_c01181{left:1031.039067pt;}
.x39_c01181{left:1037.759680pt;}
.x20_c01181{left:1039.038493pt;}
.x32_c01181{left:1047.679693pt;}
.x3d_c01181{left:1062.079027pt;}
.x33_c01181{left:1063.359293pt;}
.x24_c01181{left:1065.279707pt;}
.x1b_c01181{left:1083.199133pt;}
.x2d_c01181{left:1086.399827pt;}
}





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

.ir_c01182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_b28d42b6110b5e5a5512b7c8.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01182;src:url('chunks/assets/font_e07f7aa2d34ea3ddd09ee1c9.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01182;src:url('chunks/assets/font_c24807069293e9df23426adc.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01182;src:url('chunks/assets/font_a7082628c958886b30ccdae2.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01182;src:url('chunks/assets/font_1f7944db8aff657f6b4fd1f6.woff2')format("woff");}.ff5_c01182{font-family:ff5_c01182;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01182;src:url('chunks/assets/font_2d6472dc4db72d7327ab4b56.woff2')format("woff");}.ff6_c01182{font-family:ff6_c01182;line-height:1.364746;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_d33e7c1f544dacb557ad79a9.woff2')format("woff");}.ff7_c01182{font-family:ff7_c01182;line-height:1.432129;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_64b78ecc0778a7d4843b7237.woff2')format("woff");}.ff8_c01182{font-family:ff8_c01182;line-height:1.432129;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_9b448a5ffe12866e42845a1f.woff2')format("woff");}.ff9_c01182{font-family:ff9_c01182;line-height:1.281250;font-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_c01182{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);}
.m3e_c01182{transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);}
.mb_c01182{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);}
.m3c_c01182{transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);}
.m20_c01182{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m1e_c01182{transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);}
.m2a_c01182{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m3f_c01182{transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190647,0.000000,0.000000,0.250000,0,0);}
.m14_c01182{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m2_c01182{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1c_c01182{transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214744,0.000000,0.000000,0.250000,0,0);}
.me_c01182{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m3_c01182{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m25_c01182{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_c01182{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m30_c01182{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m8_c01182{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m27_c01182{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1f_c01182{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m5_c01182{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m32_c01182{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m31_c01182{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m2c_c01182{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m19_c01182{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);}
.m28_c01182{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m2f_c01182{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1d_c01182{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m26_c01182{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m6_c01182{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m3d_c01182{transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);}
.m1b_c01182{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m22_c01182{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma_c01182{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m18_c01182{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m3b_c01182{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m29_c01182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23_c01182{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m21_c01182{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m35_c01182{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m34_c01182{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m2b_c01182{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m24_c01182{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m12_c01182{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.mf_c01182{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m16_c01182{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m1_c01182{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m15_c01182{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);}
.m2d_c01182{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m17_c01182{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m2e_c01182{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m1a_c01182{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m13_c01182{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m37_c01182{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m7_c01182{transform:matrix(0.286408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286408,0.000000,0.000000,0.250000,0,0);}
.m38_c01182{transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);}
.m0_c01182{transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);}
.m33_c01182{transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300676,0.000000,0.000000,0.250000,0,0);}
.md_c01182{transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363095,0.000000,0.000000,0.250000,0,0);}
.m10_c01182{transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);}
.m39_c01182{transform:matrix(0.399533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399533,0.000000,0.000000,0.250000,0,0);}
.m36_c01182{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);}
.m9_c01182{transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);}
.m3a_c01182{transform:matrix(0.752404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752404,0.000000,0.000000,0.250000,0,0);}
.m11_c01182{transform:matrix(18.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.241667,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.lsd_c01182{letter-spacing:-14.796750px;}
.ls36_c01182{letter-spacing:-12.340650px;}
.ls22_c01182{letter-spacing:-9.195600px;}
.ls39_c01182{letter-spacing:-8.108550px;}
.ls26_c01182{letter-spacing:-7.692000px;}
.ls20_c01182{letter-spacing:-6.984900px;}
.ls24_c01182{letter-spacing:-6.185025px;}
.ls28_c01182{letter-spacing:-5.100510px;}
.ls2e_c01182{letter-spacing:-5.065253px;}
.ls21_c01182{letter-spacing:-4.707300px;}
.ls31_c01182{letter-spacing:-4.162500px;}
.ls38_c01182{letter-spacing:-4.069800px;}
.ls2c_c01182{letter-spacing:-3.990353px;}
.ls1e_c01182{letter-spacing:-3.854400px;}
.ls3c_c01182{letter-spacing:-3.847800px;}
.ls37_c01182{letter-spacing:-3.701850px;}
.ls3a_c01182{letter-spacing:-3.654998px;}
.ls13_c01182{letter-spacing:-3.562500px;}
.ls32_c01182{letter-spacing:-3.339750px;}
.ls30_c01182{letter-spacing:-3.210900px;}
.ls33_c01182{letter-spacing:-3.169050px;}
.ls29_c01182{letter-spacing:-3.082425px;}
.ls10_c01182{letter-spacing:-3.075307px;}
.ls2d_c01182{letter-spacing:-2.997225px;}
.ls27_c01182{letter-spacing:-2.960100px;}
.ls2f_c01182{letter-spacing:-2.924100px;}
.ls23_c01182{letter-spacing:-2.475000px;}
.ls2b_c01182{letter-spacing:-2.338875px;}
.ls1c_c01182{letter-spacing:-2.315925px;}
.ls17_c01182{letter-spacing:-2.306250px;}
.ls25_c01182{letter-spacing:-2.219445px;}
.ls3b_c01182{letter-spacing:-2.194335px;}
.lse_c01182{letter-spacing:-1.962923px;}
.ls12_c01182{letter-spacing:-1.741500px;}
.ls2a_c01182{letter-spacing:-1.704375px;}
.ls34_c01182{letter-spacing:-1.676250px;}
.lsf_c01182{letter-spacing:-1.669200px;}
.ls35_c01182{letter-spacing:-1.623075px;}
.ls1d_c01182{letter-spacing:-1.543950px;}
.ls1b_c01182{letter-spacing:-1.529618px;}
.ls18_c01182{letter-spacing:-0.905625px;}
.ls1f_c01182{letter-spacing:-0.771975px;}
.ls16_c01182{letter-spacing:-0.768443px;}
.ls1a_c01182{letter-spacing:-0.668850px;}
.ls15_c01182{letter-spacing:-0.660450px;}
.lsb_c01182{letter-spacing:0.000000px;}
.ls3e_c01182{letter-spacing:0.759375px;}
.ls2_c01182{letter-spacing:0.771975px;}
.ls0_c01182{letter-spacing:0.866700px;}
.ls9_c01182{letter-spacing:0.898290px;}
.ls19_c01182{letter-spacing:1.415250px;}
.ls4_c01182{letter-spacing:1.543950px;}
.ls8_c01182{letter-spacing:2.109713px;}
.ls3_c01182{letter-spacing:2.315925px;}
.ls5_c01182{letter-spacing:3.082425px;}
.ls1_c01182{letter-spacing:4.317450px;}
.lsa_c01182{letter-spacing:5.176125px;}
.ls3d_c01182{letter-spacing:5.398350px;}
.ls6_c01182{letter-spacing:6.170325px;}
.lsc_c01182{letter-spacing:6.559875px;}
.ls7_c01182{letter-spacing:7.545525px;}
.ls14_c01182{letter-spacing:71.500650px;}
.ls11_c01182{letter-spacing:409.500000px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01182{word-spacing:0.000000px;}
._e_c01182{margin-left:-13.134139px;}
._f_c01182{margin-left:-8.021523px;}
._8_c01182{margin-left:-4.730292px;}
._9_c01182{margin-left:-2.622725px;}
._7_c01182{width:1.418441px;}
._d_c01182{width:3.290506px;}
._b_c01182{width:5.299013px;}
._c_c01182{width:6.810746px;}
._4_c01182{width:9.876869px;}
._10_c01182{width:10.884177px;}
._a_c01182{width:12.455579px;}
._5_c01182{width:14.224389px;}
._6_c01182{width:15.329676px;}
._3_c01182{width:18.303233px;}
._1_c01182{width:29.155360px;}
._0_c01182{width:30.976017px;}
._2_c01182{width:265.771204px;}
.fc0_c01182{color:transparent;}
.fs8_c01182{font-size:18.750000px;}
.fsd_c01182{font-size:19.500000px;}
.fs9_c01182{font-size:22.500000px;}
.fsf_c01182{font-size:26.250000px;}
.fsb_c01182{font-size:27.000000px;}
.fse_c01182{font-size:27.750000px;}
.fsc_c01182{font-size:28.500000px;}
.fs7_c01182{font-size:30.750000px;}
.fsa_c01182{font-size:31.500000px;}
.fs13_c01182{font-size:33.750000px;}
.fs12_c01182{font-size:36.750000px;}
.fs10_c01182{font-size:37.500000px;}
.fs11_c01182{font-size:38.250000px;}
.fs20_c01182{font-size:42.000000px;}
.fs19_c01182{font-size:49.500000px;}
.fs1e_c01182{font-size:50.250000px;}
.fs16_c01182{font-size:51.000000px;}
.fs6_c01182{font-size:51.750000px;}
.fs14_c01182{font-size:54.750000px;}
.fs1b_c01182{font-size:55.500000px;}
.fs1d_c01182{font-size:56.250000px;}
.fs17_c01182{font-size:57.000000px;}
.fs1a_c01182{font-size:57.750000px;}
.fs15_c01182{font-size:58.500000px;}
.fs18_c01182{font-size:59.250000px;}
.fs1c_c01182{font-size:60.000000px;}
.fs1f_c01182{font-size:75.000000px;}
.fs5_c01182{font-size:77.250000px;}
.fs1_c01182{font-size:78.750000px;}
.fs21_c01182{font-size:79.500000px;}
.fs3_c01182{font-size:80.250000px;}
.fs2_c01182{font-size:81.000000px;}
.fs0_c01182{font-size:81.750000px;}
.fs4_c01182{font-size:82.500000px;}
.fs24_c01182{font-size:104.250000px;}
.fs23_c01182{font-size:121.500000px;}
.fs22_c01182{font-size:156.000000px;}
.y0_c01182{bottom:0.000000px;}
.y7_c01182{bottom:38.221185px;}
.y6_c01182{bottom:46.141335px;}
.y4_c01182{bottom:47.220750px;}
.y3_c01182{bottom:47.940900px;}
.y5_c01182{bottom:53.341185px;}
.y2_c01182{bottom:55.140750px;}
.y1d_c01182{bottom:419.461170px;}
.y1c_c01182{bottom:448.260720px;}
.y1b_c01182{bottom:492.900285px;}
.y1a_c01182{bottom:522.780210px;}
.y19_c01182{bottom:552.661470px;}
.y18_c01182{bottom:568.860900px;}
.y17_c01182{bottom:582.540570px;}
.y16_c01182{bottom:642.300105px;}
.y15_c01182{bottom:657.060750px;}
.y14_c01182{bottom:657.061530px;}
.y13_c01182{bottom:672.180720px;}
.y12_c01182{bottom:686.941320px;}
.y11_c01182{bottom:701.700435px;}
.y10_c01182{bottom:701.701215px;}
.yf_c01182{bottom:716.820420px;}
.ye_c01182{bottom:731.581005px;}
.yd_c01182{bottom:746.701035px;}
.yb_c01182{bottom:761.459700px;}
.yc_c01182{bottom:761.459970px;}
.y9_c01182{bottom:776.581425px;}
.ya_c01182{bottom:776.581605px;}
.y8_c01182{bottom:791.340540px;}
.y1_c01182{bottom:842.641290px;}
.hb_c01182{height:18.402100px;}
.h11_c01182{height:19.138184px;}
.hc_c01182{height:22.071533px;}
.h10_c01182{height:23.466797px;}
.h13_c01182{height:27.377930px;}
.he_c01182{height:28.160156px;}
.hf_c01182{height:28.166016px;}
.h12_c01182{height:28.942383px;}
.ha_c01182{height:30.389648px;}
.hd_c01182{height:31.130859px;}
.h18_c01182{height:35.200195px;}
.h16_c01182{height:37.037109px;}
.h14_c01182{height:37.792969px;}
.h17_c01182{height:37.801758px;}
.h15_c01182{height:38.548828px;}
.h2a_c01182{height:43.804688px;}
.h1e_c01182{height:51.626953px;}
.h25_c01182{height:52.409180px;}
.h1b_c01182{height:53.191406px;}
.h19_c01182{height:53.734131px;}
.h9_c01182{height:53.973633px;}
.h20_c01182{height:54.470215px;}
.h2e_c01182{height:55.206299px;}
.h27_c01182{height:55.933594px;}
.h1c_c01182{height:55.942383px;}
.h26_c01182{height:56.678467px;}
.h23_c01182{height:56.689453px;}
.h1f_c01182{height:57.073242px;}
.h22_c01182{height:57.414551px;}
.h28_c01182{height:57.445312px;}
.h1a_c01182{height:57.814453px;}
.h24_c01182{height:58.201172px;}
.h1d_c01182{height:58.555664px;}
.h21_c01182{height:58.886719px;}
.h7_c01182{height:75.816650px;}
.h2_c01182{height:77.288818px;}
.h2b_c01182{height:78.024902px;}
.h29_c01182{height:78.222656px;}
.h2c_c01182{height:78.721802px;}
.h4_c01182{height:78.760986px;}
.h6_c01182{height:80.233154px;}
.h8_c01182{height:80.876953px;}
.h5_c01182{height:80.969238px;}
.h3_c01182{height:81.632812px;}
.h1_c01182{height:82.388672px;}
.h30_c01182{height:108.729492px;}
.h2f_c01182{height:126.720703px;}
.h2d_c01182{height:162.703125px;}
.h0_c01182{height:892.500000px;}
.w0_c01182{width:1263.000000px;}
.x0_c01182{left:0.000000px;}
.x1_c01182{left:83.519685px;}
.xb_c01182{left:89.279250px;}
.xc_c01182{left:153.359850px;}
.x2_c01182{left:172.078815px;}
.x3_c01182{left:212.758500px;}
.xf_c01182{left:229.318800px;}
.xd_c01182{left:232.919535px;}
.xe_c01182{left:258.838515px;}
.x10_c01182{left:308.159850px;}
.x4_c01182{left:320.399235px;}
.x18_c01182{left:332.279250px;}
.x19_c01182{left:359.279250px;}
.x11_c01182{left:384.479685px;}
.x1a_c01182{left:402.839535px;}
.x1b_c01182{left:442.078815px;}
.x12_c01182{left:460.438665px;}
.x1c_c01182{left:487.438665px;}
.x5_c01182{left:534.599670px;}
.x15_c01182{left:540.000000px;}
.x6_c01182{left:559.798515px;}
.x16_c01182{left:617.399235px;}
.x13_c01182{left:659.878320px;}
.x7_c01182{left:727.559685px;}
.x8_c01182{left:764.999355px;}
.x17_c01182{left:771.838530px;}
.x14_c01182{left:774.719055px;}
.x9_c01182{left:799.919490px;}
.xa_c01182{left:829.079955px;}
.x1e_c01182{left:917.280675px;}
.x40_c01182{left:920.519715px;}
.x42_c01182{left:926.279205px;}
.x21_c01182{left:934.558590px;}
.x43_c01182{left:936.359805px;}
.x44_c01182{left:943.918950px;}
.x39_c01182{left:950.759490px;}
.x1d_c01182{left:955.078770px;}
.x41_c01182{left:956.159850px;}
.x23_c01182{left:960.479190px;}
.x2f_c01182{left:966.958920px;}
.x22_c01182{left:970.198785px;}
.x3a_c01182{left:981.358605px;}
.x3e_c01182{left:983.159820px;}
.x24_c01182{left:989.998905px;}
.x3f_c01182{left:997.559685px;}
.x2c_c01182{left:1006.559055px;}
.x25_c01182{left:1014.838530px;}
.x30_c01182{left:1029.599025px;}
.x26_c01182{left:1045.798560px;}
.x31_c01182{left:1050.478635px;}
.x35_c01182{left:1051.918950px;}
.x2d_c01182{left:1071.359805px;}
.x2e_c01182{left:1081.799565px;}
.x2a_c01182{left:1091.519070px;}
.x32_c01182{left:1109.878965px;}
.x36_c01182{left:1117.078770px;}
.x27_c01182{left:1119.598575px;}
.x2b_c01182{left:1126.079955px;}
.x37_c01182{left:1133.639100px;}
.x1f_c01182{left:1135.438665px;}
.x20_c01182{left:1157.039985px;}
.x3b_c01182{left:1162.079400px;}
.x33_c01182{left:1175.399775px;}
.x3d_c01182{left:1176.838530px;}
.x38_c01182{left:1184.399235px;}
.x28_c01182{left:1185.839535px;}
.x29_c01182{left:1202.759040px;}
.x3c_c01182{left:1204.919490px;}
.x34_c01182{left:1207.798560px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.lsd_c01182{letter-spacing:-13.152667pt;}
.ls36_c01182{letter-spacing:-10.969467pt;}
.ls22_c01182{letter-spacing:-8.173867pt;}
.ls39_c01182{letter-spacing:-7.207600pt;}
.ls26_c01182{letter-spacing:-6.837333pt;}
.ls20_c01182{letter-spacing:-6.208800pt;}
.ls24_c01182{letter-spacing:-5.497800pt;}
.ls28_c01182{letter-spacing:-4.533787pt;}
.ls2e_c01182{letter-spacing:-4.502447pt;}
.ls21_c01182{letter-spacing:-4.184267pt;}
.ls31_c01182{letter-spacing:-3.700000pt;}
.ls38_c01182{letter-spacing:-3.617600pt;}
.ls2c_c01182{letter-spacing:-3.546980pt;}
.ls1e_c01182{letter-spacing:-3.426133pt;}
.ls3c_c01182{letter-spacing:-3.420267pt;}
.ls37_c01182{letter-spacing:-3.290533pt;}
.ls3a_c01182{letter-spacing:-3.248887pt;}
.ls13_c01182{letter-spacing:-3.166667pt;}
.ls32_c01182{letter-spacing:-2.968667pt;}
.ls30_c01182{letter-spacing:-2.854133pt;}
.ls33_c01182{letter-spacing:-2.816933pt;}
.ls29_c01182{letter-spacing:-2.739933pt;}
.ls10_c01182{letter-spacing:-2.733607pt;}
.ls2d_c01182{letter-spacing:-2.664200pt;}
.ls27_c01182{letter-spacing:-2.631200pt;}
.ls2f_c01182{letter-spacing:-2.599200pt;}
.ls23_c01182{letter-spacing:-2.200000pt;}
.ls2b_c01182{letter-spacing:-2.079000pt;}
.ls1c_c01182{letter-spacing:-2.058600pt;}
.ls17_c01182{letter-spacing:-2.050000pt;}
.ls25_c01182{letter-spacing:-1.972840pt;}
.ls3b_c01182{letter-spacing:-1.950520pt;}
.lse_c01182{letter-spacing:-1.744820pt;}
.ls12_c01182{letter-spacing:-1.548000pt;}
.ls2a_c01182{letter-spacing:-1.515000pt;}
.ls34_c01182{letter-spacing:-1.490000pt;}
.lsf_c01182{letter-spacing:-1.483733pt;}
.ls35_c01182{letter-spacing:-1.442733pt;}
.ls1d_c01182{letter-spacing:-1.372400pt;}
.ls1b_c01182{letter-spacing:-1.359660pt;}
.ls18_c01182{letter-spacing:-0.805000pt;}
.ls1f_c01182{letter-spacing:-0.686200pt;}
.ls16_c01182{letter-spacing:-0.683060pt;}
.ls1a_c01182{letter-spacing:-0.594533pt;}
.ls15_c01182{letter-spacing:-0.587067pt;}
.lsb_c01182{letter-spacing:0.000000pt;}
.ls3e_c01182{letter-spacing:0.675000pt;}
.ls2_c01182{letter-spacing:0.686200pt;}
.ls0_c01182{letter-spacing:0.770400pt;}
.ls9_c01182{letter-spacing:0.798480pt;}
.ls19_c01182{letter-spacing:1.258000pt;}
.ls4_c01182{letter-spacing:1.372400pt;}
.ls8_c01182{letter-spacing:1.875300pt;}
.ls3_c01182{letter-spacing:2.058600pt;}
.ls5_c01182{letter-spacing:2.739933pt;}
.ls1_c01182{letter-spacing:3.837733pt;}
.lsa_c01182{letter-spacing:4.601000pt;}
.ls3d_c01182{letter-spacing:4.798533pt;}
.ls6_c01182{letter-spacing:5.484733pt;}
.lsc_c01182{letter-spacing:5.831000pt;}
.ls7_c01182{letter-spacing:6.707133pt;}
.ls14_c01182{letter-spacing:63.556133pt;}
.ls11_c01182{letter-spacing:364.000000pt;}
.ws0_c01182{word-spacing:0.000000pt;}
._e_c01182{margin-left:-11.674791pt;}
._f_c01182{margin-left:-7.130242pt;}
._8_c01182{margin-left:-4.204704pt;}
._9_c01182{margin-left:-2.331312pt;}
._7_c01182{width:1.260837pt;}
._d_c01182{width:2.924894pt;}
._b_c01182{width:4.710234pt;}
._c_c01182{width:6.053996pt;}
._4_c01182{width:8.779439pt;}
._10_c01182{width:9.674824pt;}
._a_c01182{width:11.071626pt;}
._5_c01182{width:12.643902pt;}
._6_c01182{width:13.626379pt;}
._3_c01182{width:16.269541pt;}
._1_c01182{width:25.915876pt;}
._0_c01182{width:27.534237pt;}
._2_c01182{width:236.241071pt;}
.fs8_c01182{font-size:16.666667pt;}
.fsd_c01182{font-size:17.333333pt;}
.fs9_c01182{font-size:20.000000pt;}
.fsf_c01182{font-size:23.333333pt;}
.fsb_c01182{font-size:24.000000pt;}
.fse_c01182{font-size:24.666667pt;}
.fsc_c01182{font-size:25.333333pt;}
.fs7_c01182{font-size:27.333333pt;}
.fsa_c01182{font-size:28.000000pt;}
.fs13_c01182{font-size:30.000000pt;}
.fs12_c01182{font-size:32.666667pt;}
.fs10_c01182{font-size:33.333333pt;}
.fs11_c01182{font-size:34.000000pt;}
.fs20_c01182{font-size:37.333333pt;}
.fs19_c01182{font-size:44.000000pt;}
.fs1e_c01182{font-size:44.666667pt;}
.fs16_c01182{font-size:45.333333pt;}
.fs6_c01182{font-size:46.000000pt;}
.fs14_c01182{font-size:48.666667pt;}
.fs1b_c01182{font-size:49.333333pt;}
.fs1d_c01182{font-size:50.000000pt;}
.fs17_c01182{font-size:50.666667pt;}
.fs1a_c01182{font-size:51.333333pt;}
.fs15_c01182{font-size:52.000000pt;}
.fs18_c01182{font-size:52.666667pt;}
.fs1c_c01182{font-size:53.333333pt;}
.fs1f_c01182{font-size:66.666667pt;}
.fs5_c01182{font-size:68.666667pt;}
.fs1_c01182{font-size:70.000000pt;}
.fs21_c01182{font-size:70.666667pt;}
.fs3_c01182{font-size:71.333333pt;}
.fs2_c01182{font-size:72.000000pt;}
.fs0_c01182{font-size:72.666667pt;}
.fs4_c01182{font-size:73.333333pt;}
.fs24_c01182{font-size:92.666667pt;}
.fs23_c01182{font-size:108.000000pt;}
.fs22_c01182{font-size:138.666667pt;}
.y0_c01182{bottom:0.000000pt;}
.y7_c01182{bottom:33.974387pt;}
.y6_c01182{bottom:41.014520pt;}
.y4_c01182{bottom:41.974000pt;}
.y3_c01182{bottom:42.614133pt;}
.y5_c01182{bottom:47.414387pt;}
.y2_c01182{bottom:49.014000pt;}
.y1d_c01182{bottom:372.854373pt;}
.y1c_c01182{bottom:398.453973pt;}
.y1b_c01182{bottom:438.133587pt;}
.y1a_c01182{bottom:464.693520pt;}
.y19_c01182{bottom:491.254640pt;}
.y18_c01182{bottom:505.654133pt;}
.y17_c01182{bottom:517.813840pt;}
.y16_c01182{bottom:570.933427pt;}
.y15_c01182{bottom:584.054000pt;}
.y14_c01182{bottom:584.054693pt;}
.y13_c01182{bottom:597.493973pt;}
.y12_c01182{bottom:610.614507pt;}
.y11_c01182{bottom:623.733720pt;}
.y10_c01182{bottom:623.734413pt;}
.yf_c01182{bottom:637.173707pt;}
.ye_c01182{bottom:650.294227pt;}
.yd_c01182{bottom:663.734253pt;}
.yb_c01182{bottom:676.853067pt;}
.yc_c01182{bottom:676.853307pt;}
.y9_c01182{bottom:690.294600pt;}
.ya_c01182{bottom:690.294760pt;}
.y8_c01182{bottom:703.413813pt;}
.y1_c01182{bottom:749.014480pt;}
.hb_c01182{height:16.357422pt;}
.h11_c01182{height:17.011719pt;}
.hc_c01182{height:19.619141pt;}
.h10_c01182{height:20.859375pt;}
.h13_c01182{height:24.335938pt;}
.he_c01182{height:25.031250pt;}
.hf_c01182{height:25.036458pt;}
.h12_c01182{height:25.726562pt;}
.ha_c01182{height:27.013021pt;}
.hd_c01182{height:27.671875pt;}
.h18_c01182{height:31.289062pt;}
.h16_c01182{height:32.921875pt;}
.h14_c01182{height:33.593750pt;}
.h17_c01182{height:33.601562pt;}
.h15_c01182{height:34.265625pt;}
.h2a_c01182{height:38.937500pt;}
.h1e_c01182{height:45.890625pt;}
.h25_c01182{height:46.585938pt;}
.h1b_c01182{height:47.281250pt;}
.h19_c01182{height:47.763672pt;}
.h9_c01182{height:47.976562pt;}
.h20_c01182{height:48.417969pt;}
.h2e_c01182{height:49.072266pt;}
.h27_c01182{height:49.718750pt;}
.h1c_c01182{height:49.726562pt;}
.h26_c01182{height:50.380859pt;}
.h23_c01182{height:50.390625pt;}
.h1f_c01182{height:50.731771pt;}
.h22_c01182{height:51.035156pt;}
.h28_c01182{height:51.062500pt;}
.h1a_c01182{height:51.390625pt;}
.h24_c01182{height:51.734375pt;}
.h1d_c01182{height:52.049479pt;}
.h21_c01182{height:52.343750pt;}
.h7_c01182{height:67.392578pt;}
.h2_c01182{height:68.701172pt;}
.h2b_c01182{height:69.355469pt;}
.h29_c01182{height:69.531250pt;}
.h2c_c01182{height:69.974935pt;}
.h4_c01182{height:70.009766pt;}
.h6_c01182{height:71.318359pt;}
.h8_c01182{height:71.890625pt;}
.h5_c01182{height:71.972656pt;}
.h3_c01182{height:72.562500pt;}
.h1_c01182{height:73.234375pt;}
.h30_c01182{height:96.648438pt;}
.h2f_c01182{height:112.640625pt;}
.h2d_c01182{height:144.625000pt;}
.h0_c01182{height:793.333333pt;}
.w0_c01182{width:1122.666667pt;}
.x0_c01182{left:0.000000pt;}
.x1_c01182{left:74.239720pt;}
.xb_c01182{left:79.359333pt;}
.xc_c01182{left:136.319867pt;}
.x2_c01182{left:152.958947pt;}
.x3_c01182{left:189.118667pt;}
.xf_c01182{left:203.838933pt;}
.xd_c01182{left:207.039587pt;}
.xe_c01182{left:230.078680pt;}
.x10_c01182{left:273.919867pt;}
.x4_c01182{left:284.799320pt;}
.x18_c01182{left:295.359333pt;}
.x19_c01182{left:319.359333pt;}
.x11_c01182{left:341.759720pt;}
.x1a_c01182{left:358.079587pt;}
.x1b_c01182{left:392.958947pt;}
.x12_c01182{left:409.278813pt;}
.x1c_c01182{left:433.278813pt;}
.x5_c01182{left:475.199707pt;}
.x15_c01182{left:480.000000pt;}
.x6_c01182{left:497.598680pt;}
.x16_c01182{left:548.799320pt;}
.x13_c01182{left:586.558507pt;}
.x7_c01182{left:646.719720pt;}
.x8_c01182{left:679.999427pt;}
.x17_c01182{left:686.078693pt;}
.x14_c01182{left:688.639160pt;}
.x9_c01182{left:711.039547pt;}
.xa_c01182{left:736.959960pt;}
.x1e_c01182{left:815.360600pt;}
.x40_c01182{left:818.239747pt;}
.x42_c01182{left:823.359293pt;}
.x21_c01182{left:830.718747pt;}
.x43_c01182{left:832.319827pt;}
.x44_c01182{left:839.039067pt;}
.x39_c01182{left:845.119547pt;}
.x1d_c01182{left:848.958907pt;}
.x41_c01182{left:849.919867pt;}
.x23_c01182{left:853.759280pt;}
.x2f_c01182{left:859.519040pt;}
.x22_c01182{left:862.398920pt;}
.x3a_c01182{left:872.318760pt;}
.x3e_c01182{left:873.919840pt;}
.x24_c01182{left:879.999027pt;}
.x3f_c01182{left:886.719720pt;}
.x2c_c01182{left:894.719160pt;}
.x25_c01182{left:902.078693pt;}
.x30_c01182{left:915.199133pt;}
.x26_c01182{left:929.598720pt;}
.x31_c01182{left:933.758787pt;}
.x35_c01182{left:935.039067pt;}
.x2d_c01182{left:952.319827pt;}
.x2e_c01182{left:961.599613pt;}
.x2a_c01182{left:970.239173pt;}
.x32_c01182{left:986.559080pt;}
.x36_c01182{left:992.958907pt;}
.x27_c01182{left:995.198733pt;}
.x2b_c01182{left:1000.959960pt;}
.x37_c01182{left:1007.679200pt;}
.x1f_c01182{left:1009.278813pt;}
.x20_c01182{left:1028.479987pt;}
.x3b_c01182{left:1032.959467pt;}
.x33_c01182{left:1044.799800pt;}
.x3d_c01182{left:1046.078693pt;}
.x38_c01182{left:1052.799320pt;}
.x28_c01182{left:1054.079587pt;}
.x29_c01182{left:1069.119147pt;}
.x3c_c01182{left:1071.039547pt;}
.x34_c01182{left:1073.598720pt;}
}





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

.ir_c01183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01183;src:url('chunks/assets/font_c4d1a7b241cfae69750de044.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01183;src:url('chunks/assets/font_f2ddaf44b70ed7545f83bfe3.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01183;src:url('chunks/assets/font_ed2db88955919f7bee9d60c6.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01183;src:url('chunks/assets/font_18fc1e4b085462786268a8df.woff2')format("woff");}.ff4_c01183{font-family:ff4_c01183;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01183;src:url('chunks/assets/font_64b78ecc0778a7d4843b7237.woff2')format("woff");}.ff5_c01183{font-family:ff5_c01183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01183;src:url('chunks/assets/font_9a4794304d7e06184641631d.woff2')format("woff");}.ff6_c01183{font-family:ff6_c01183;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c01183{transform:matrix(0.167763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167763,0.000000,0.000000,0.250000,0,0);}
.m1c_c01183{transform:matrix(0.170886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170886,0.000000,0.000000,0.250000,0,0);}
.m6_c01183{transform:matrix(0.199187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199187,0.000000,0.000000,0.250000,0,0);}
.m18_c01183{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.mf_c01183{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m2_c01183{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m1e_c01183{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m1a_c01183{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m29_c01183{transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216463,0.000000,0.000000,0.250000,0,0);}
.m4_c01183{transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216814,0.000000,0.000000,0.250000,0,0);}
.m1d_c01183{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m3_c01183{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m2a_c01183{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m1b_c01183{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m25_c01183{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m5_c01183{transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224537,0.000000,0.000000,0.250000,0,0);}
.m24_c01183{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m2e_c01183{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m23_c01183{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m20_c01183{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m27_c01183{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m16_c01183{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m26_c01183{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m28_c01183{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m14_c01183{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_c01183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01183{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m19_c01183{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m17_c01183{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.ma_c01183{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.mc_c01183{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m11_c01183{transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264151,0.000000,0.000000,0.250000,0,0);}
.m1f_c01183{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m10_c01183{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_c01183{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m2c_c01183{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.md_c01183{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m9_c01183{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m13_c01183{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_c01183{transform:matrix(0.286957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286957,0.000000,0.000000,0.250000,0,0);}
.mb_c01183{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m12_c01183{transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);}
.m1_c01183{transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298077,0.000000,0.000000,0.250000,0,0);}
.m8_c01183{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m2b_c01183{transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322368,0.000000,0.000000,0.250000,0,0);}
.m30_c01183{transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335526,0.000000,0.000000,0.250000,0,0);}
.m2d_c01183{transform:matrix(0.787260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787260,0.000000,0.000000,0.250000,0,0);}
.m2f_c01183{transform:matrix(1.429688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.429688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.429688,0.000000,0.000000,0.250000,0,0);}
.me_c01183{transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);}
.v0_c01183{vertical-align:0.000000px;}
.ls8_c01183{letter-spacing:-23.532975px;}
.ls33_c01183{letter-spacing:-12.850650px;}
.ls2e_c01183{letter-spacing:-10.394115px;}
.ls15_c01183{letter-spacing:-10.151700px;}
.ls27_c01183{letter-spacing:-8.128890px;}
.ls23_c01183{letter-spacing:-8.013630px;}
.ls26_c01183{letter-spacing:-7.826100px;}
.ls1f_c01183{letter-spacing:-7.304355px;}
.ls1a_c01183{letter-spacing:-7.298175px;}
.ls31_c01183{letter-spacing:-6.750000px;}
.ls21_c01183{letter-spacing:-6.582675px;}
.ls34_c01183{letter-spacing:-6.570645px;}
.ls2d_c01183{letter-spacing:-6.161925px;}
.ls30_c01183{letter-spacing:-6.001875px;}
.ls1_c01183{letter-spacing:-5.225888px;}
.ls19_c01183{letter-spacing:-5.111550px;}
.ls1b_c01183{letter-spacing:-4.497300px;}
.ls16_c01183{letter-spacing:-4.378950px;}
.ls24_c01183{letter-spacing:-4.218750px;}
.ls17_c01183{letter-spacing:-3.651900px;}
.ls32_c01183{letter-spacing:-3.123030px;}
.ls2b_c01183{letter-spacing:-3.078000px;}
.ls12_c01183{letter-spacing:-3.017025px;}
.ls20_c01183{letter-spacing:-2.919300px;}
.lsc_c01183{letter-spacing:-2.859750px;}
.ls22_c01183{letter-spacing:-2.553600px;}
.ls1e_c01183{letter-spacing:-2.513700px;}
.ls28_c01183{letter-spacing:-2.444730px;}
.ls2c_c01183{letter-spacing:-2.376900px;}
.ls1c_c01183{letter-spacing:-2.194500px;}
.ls1d_c01183{letter-spacing:-2.192805px;}
.lsb_c01183{letter-spacing:-1.981350px;}
.lsd_c01183{letter-spacing:-1.927800px;}
.lsf_c01183{letter-spacing:-1.850400px;}
.ls11_c01183{letter-spacing:-1.820700px;}
.lsa_c01183{letter-spacing:-1.811700px;}
.ls3_c01183{letter-spacing:-1.781550px;}
.ls25_c01183{letter-spacing:-1.586250px;}
.ls29_c01183{letter-spacing:-1.460205px;}
.lse_c01183{letter-spacing:-1.427400px;}
.ls14_c01183{letter-spacing:-1.267875px;}
.ls4_c01183{letter-spacing:-0.848400px;}
.ls2f_c01183{letter-spacing:-0.837563px;}
.ls18_c01183{letter-spacing:-0.732600px;}
.ls13_c01183{letter-spacing:-0.711525px;}
.ls10_c01183{letter-spacing:-0.603900px;}
.ls6_c01183{letter-spacing:0.000000px;}
.ls2_c01183{letter-spacing:0.631800px;}
.ls9_c01183{letter-spacing:0.747300px;}
.ls2a_c01183{letter-spacing:1.675328px;}
.ls5_c01183{letter-spacing:1.781550px;}
.ls7_c01183{letter-spacing:3.337200px;}
.ls0_c01183{letter-spacing:3.563100px;}
.sc__c01183{text-shadow:none;}
.sc0_c01183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01183{-webkit-text-stroke:0px transparent;}
.sc0_c01183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01183{word-spacing:0.000000px;}
._2_c01183{width:2.757941px;}
._7_c01183{width:4.007509px;}
._4_c01183{width:5.846545px;}
._1_c01183{width:7.525975px;}
._6_c01183{width:10.891466px;}
._3_c01183{width:15.151383px;}
._5_c01183{width:16.699833px;}
._0_c01183{width:34.242853px;}
.fc0_c01183{color:transparent;}
.fse_c01183{font-size:24.000000px;}
.fs8_c01183{font-size:24.750000px;}
.fsd_c01183{font-size:25.500000px;}
.fsb_c01183{font-size:27.000000px;}
.fs9_c01183{font-size:27.750000px;}
.fs1b_c01183{font-size:28.500000px;}
.fsc_c01183{font-size:29.250000px;}
.fsa_c01183{font-size:30.750000px;}
.fs12_c01183{font-size:34.500000px;}
.fs11_c01183{font-size:36.750000px;}
.fsf_c01183{font-size:37.500000px;}
.fs10_c01183{font-size:39.750000px;}
.fs1e_c01183{font-size:48.000000px;}
.fs18_c01183{font-size:51.000000px;}
.fs15_c01183{font-size:54.750000px;}
.fs14_c01183{font-size:55.500000px;}
.fs16_c01183{font-size:56.250000px;}
.fs13_c01183{font-size:57.000000px;}
.fs19_c01183{font-size:57.750000px;}
.fs17_c01183{font-size:59.250000px;}
.fs1a_c01183{font-size:61.500000px;}
.fs1_c01183{font-size:78.000000px;}
.fs7_c01183{font-size:79.500000px;}
.fs2_c01183{font-size:80.250000px;}
.fs5_c01183{font-size:81.000000px;}
.fs3_c01183{font-size:84.000000px;}
.fs4_c01183{font-size:84.750000px;}
.fs1f_c01183{font-size:85.500000px;}
.fs0_c01183{font-size:86.250000px;}
.fs6_c01183{font-size:92.250000px;}
.fs1d_c01183{font-size:121.500000px;}
.fs1c_c01183{font-size:156.000000px;}
.y0_c01183{bottom:0.000000px;}
.y5_c01183{bottom:37.860285px;}
.y4_c01183{bottom:45.421185px;}
.y2_c01183{bottom:47.940900px;}
.y3_c01183{bottom:52.260150px;}
.y13_c01183{bottom:474.540570px;}
.y12_c01183{bottom:504.060285px;}
.y11_c01183{bottom:506.581650px;}
.y10_c01183{bottom:638.701035px;}
.yf_c01183{bottom:658.140105px;}
.ye_c01183{bottom:698.821470px;}
.yd_c01183{bottom:713.221155px;}
.yc_c01183{bottom:728.700435px;}
.yb_c01183{bottom:734.459970px;}
.ya_c01183{bottom:743.461170px;}
.y9_c01183{bottom:743.461185px;}
.y8_c01183{bottom:758.220105px;}
.y7_c01183{bottom:773.340090px;}
.y6_c01183{bottom:787.741515px;}
.y1_c01183{bottom:843.180090px;}
.hf_c01183{height:25.031250px;}
.h9_c01183{height:25.813477px;}
.he_c01183{height:26.595703px;}
.hc_c01183{height:28.160156px;}
.h1d_c01183{height:28.166016px;}
.hd_c01183{height:28.907227px;}
.ha_c01183{height:28.942383px;}
.hb_c01183{height:30.389648px;}
.h13_c01183{height:35.982422px;}
.h12_c01183{height:37.037109px;}
.h10_c01183{height:37.792969px;}
.h11_c01183{height:40.060547px;}
.h20_c01183{height:50.062500px;}
.h1a_c01183{height:53.191406px;}
.h16_c01183{height:54.108398px;}
.h15_c01183{height:55.933594px;}
.h19_c01183{height:56.332031px;}
.h17_c01183{height:56.689453px;}
.h14_c01183{height:57.445312px;}
.h1b_c01183{height:58.201172px;}
.h18_c01183{height:58.555664px;}
.h1c_c01183{height:60.779297px;}
.h2_c01183{height:78.609375px;}
.h8_c01183{height:80.121094px;}
.h3_c01183{height:80.876953px;}
.h6_c01183{height:81.632812px;}
.h4_c01183{height:84.656250px;}
.h5_c01183{height:85.412109px;}
.h1_c01183{height:86.923828px;}
.h21_c01183{height:89.173828px;}
.h7_c01183{height:91.168945px;}
.h1f_c01183{height:126.720703px;}
.h1e_c01183{height:162.703125px;}
.h0_c01183{height:892.500000px;}
.w0_c01183{width:1263.000000px;}
.x0_c01183{left:0.000000px;}
.x1_c01183{left:87.838950px;}
.xc_c01183{left:155.879565px;}
.x2_c01183{left:174.959400px;}
.x3_c01183{left:216.718500px;}
.xd_c01183{left:232.558635px;}
.xe_c01183{left:311.038950px;}
.x4_c01183{left:323.279850px;}
.x16_c01183{left:354.599100px;}
.x17_c01183{left:381.599100px;}
.xf_c01183{left:388.078815px;}
.x5_c01183{left:398.518665px;}
.x18_c01183{left:426.238770px;}
.x10_c01183{left:466.199850px;}
.x19_c01183{left:511.918950px;}
.x6_c01183{left:538.198785px;}
.x11_c01183{left:543.599070px;}
.x7_c01183{left:562.679070px;}
.x13_c01183{left:621.718545px;}
.x14_c01183{left:700.918950px;}
.x8_c01183{left:733.319235px;}
.x9_c01183{left:771.120030px;}
.x15_c01183{left:777.958920px;}
.x12_c01183{left:781.198785px;}
.xa_c01183{left:806.399235px;}
.xb_c01183{left:835.559685px;}
.x29_c01183{left:861.119385px;}
.x33_c01183{left:934.558590px;}
.x36_c01183{left:935.639655px;}
.x1f_c01183{left:938.879520px;}
.x37_c01183{left:946.799565px;}
.x38_c01183{left:956.159820px;}
.x2d_c01183{left:970.559685px;}
.x1a_c01183{left:976.678530px;}
.x34_c01183{left:977.759490px;}
.x2e_c01183{left:984.239220px;}
.x1b_c01183{left:995.039985px;}
.x25_c01183{left:997.918950px;}
.x2f_c01183{left:1005.118740px;}
.x26_c01183{left:1014.119940px;}
.x35_c01183{left:1029.958275px;}
.x27_c01183{left:1032.838905px;}
.x32_c01183{left:1040.759040px;}
.x20_c01183{left:1064.878320px;}
.x2a_c01183{left:1072.439205px;}
.x21_c01183{left:1077.119385px;}
.x2b_c01183{left:1089.358605px;}
.x1c_c01183{left:1124.998905px;}
.x23_c01183{left:1162.799565px;}
.x30_c01183{left:1170.358605px;}
.x28_c01183{left:1175.038875px;}
.x1d_c01183{left:1176.838530px;}
.x22_c01183{left:1182.599670px;}
.x1e_c01183{left:1191.599025px;}
.x31_c01183{left:1193.398590px;}
.x2c_c01183{left:1200.959385px;}
.x24_c01183{left:1210.319820px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls8_c01183{letter-spacing:-20.918200pt;}
.ls33_c01183{letter-spacing:-11.422800pt;}
.ls2e_c01183{letter-spacing:-9.239213pt;}
.ls15_c01183{letter-spacing:-9.023733pt;}
.ls27_c01183{letter-spacing:-7.225680pt;}
.ls23_c01183{letter-spacing:-7.123227pt;}
.ls26_c01183{letter-spacing:-6.956533pt;}
.ls1f_c01183{letter-spacing:-6.492760pt;}
.ls1a_c01183{letter-spacing:-6.487267pt;}
.ls31_c01183{letter-spacing:-6.000000pt;}
.ls21_c01183{letter-spacing:-5.851267pt;}
.ls34_c01183{letter-spacing:-5.840573pt;}
.ls2d_c01183{letter-spacing:-5.477267pt;}
.ls30_c01183{letter-spacing:-5.335000pt;}
.ls1_c01183{letter-spacing:-4.645233pt;}
.ls19_c01183{letter-spacing:-4.543600pt;}
.ls1b_c01183{letter-spacing:-3.997600pt;}
.ls16_c01183{letter-spacing:-3.892400pt;}
.ls24_c01183{letter-spacing:-3.750000pt;}
.ls17_c01183{letter-spacing:-3.246133pt;}
.ls32_c01183{letter-spacing:-2.776027pt;}
.ls2b_c01183{letter-spacing:-2.736000pt;}
.ls12_c01183{letter-spacing:-2.681800pt;}
.ls20_c01183{letter-spacing:-2.594933pt;}
.lsc_c01183{letter-spacing:-2.542000pt;}
.ls22_c01183{letter-spacing:-2.269867pt;}
.ls1e_c01183{letter-spacing:-2.234400pt;}
.ls28_c01183{letter-spacing:-2.173093pt;}
.ls2c_c01183{letter-spacing:-2.112800pt;}
.ls1c_c01183{letter-spacing:-1.950667pt;}
.ls1d_c01183{letter-spacing:-1.949160pt;}
.lsb_c01183{letter-spacing:-1.761200pt;}
.lsd_c01183{letter-spacing:-1.713600pt;}
.lsf_c01183{letter-spacing:-1.644800pt;}
.ls11_c01183{letter-spacing:-1.618400pt;}
.lsa_c01183{letter-spacing:-1.610400pt;}
.ls3_c01183{letter-spacing:-1.583600pt;}
.ls25_c01183{letter-spacing:-1.410000pt;}
.ls29_c01183{letter-spacing:-1.297960pt;}
.lse_c01183{letter-spacing:-1.268800pt;}
.ls14_c01183{letter-spacing:-1.127000pt;}
.ls4_c01183{letter-spacing:-0.754133pt;}
.ls2f_c01183{letter-spacing:-0.744500pt;}
.ls18_c01183{letter-spacing:-0.651200pt;}
.ls13_c01183{letter-spacing:-0.632467pt;}
.ls10_c01183{letter-spacing:-0.536800pt;}
.ls6_c01183{letter-spacing:0.000000pt;}
.ls2_c01183{letter-spacing:0.561600pt;}
.ls9_c01183{letter-spacing:0.664267pt;}
.ls2a_c01183{letter-spacing:1.489180pt;}
.ls5_c01183{letter-spacing:1.583600pt;}
.ls7_c01183{letter-spacing:2.966400pt;}
.ls0_c01183{letter-spacing:3.167200pt;}
.ws0_c01183{word-spacing:0.000000pt;}
._2_c01183{width:2.451503pt;}
._7_c01183{width:3.562230pt;}
._4_c01183{width:5.196929pt;}
._1_c01183{width:6.689756pt;}
._6_c01183{width:9.681303pt;}
._3_c01183{width:13.467896pt;}
._5_c01183{width:14.844296pt;}
._0_c01183{width:30.438092pt;}
.fse_c01183{font-size:21.333333pt;}
.fs8_c01183{font-size:22.000000pt;}
.fsd_c01183{font-size:22.666667pt;}
.fsb_c01183{font-size:24.000000pt;}
.fs9_c01183{font-size:24.666667pt;}
.fs1b_c01183{font-size:25.333333pt;}
.fsc_c01183{font-size:26.000000pt;}
.fsa_c01183{font-size:27.333333pt;}
.fs12_c01183{font-size:30.666667pt;}
.fs11_c01183{font-size:32.666667pt;}
.fsf_c01183{font-size:33.333333pt;}
.fs10_c01183{font-size:35.333333pt;}
.fs1e_c01183{font-size:42.666667pt;}
.fs18_c01183{font-size:45.333333pt;}
.fs15_c01183{font-size:48.666667pt;}
.fs14_c01183{font-size:49.333333pt;}
.fs16_c01183{font-size:50.000000pt;}
.fs13_c01183{font-size:50.666667pt;}
.fs19_c01183{font-size:51.333333pt;}
.fs17_c01183{font-size:52.666667pt;}
.fs1a_c01183{font-size:54.666667pt;}
.fs1_c01183{font-size:69.333333pt;}
.fs7_c01183{font-size:70.666667pt;}
.fs2_c01183{font-size:71.333333pt;}
.fs5_c01183{font-size:72.000000pt;}
.fs3_c01183{font-size:74.666667pt;}
.fs4_c01183{font-size:75.333333pt;}
.fs1f_c01183{font-size:76.000000pt;}
.fs0_c01183{font-size:76.666667pt;}
.fs6_c01183{font-size:82.000000pt;}
.fs1d_c01183{font-size:108.000000pt;}
.fs1c_c01183{font-size:138.666667pt;}
.y0_c01183{bottom:0.000000pt;}
.y5_c01183{bottom:33.653587pt;}
.y4_c01183{bottom:40.374387pt;}
.y2_c01183{bottom:42.614133pt;}
.y3_c01183{bottom:46.453467pt;}
.y13_c01183{bottom:421.813840pt;}
.y12_c01183{bottom:448.053587pt;}
.y11_c01183{bottom:450.294800pt;}
.y10_c01183{bottom:567.734253pt;}
.yf_c01183{bottom:585.013427pt;}
.ye_c01183{bottom:621.174640pt;}
.yd_c01183{bottom:633.974360pt;}
.yc_c01183{bottom:647.733720pt;}
.yb_c01183{bottom:652.853307pt;}
.ya_c01183{bottom:660.854373pt;}
.y9_c01183{bottom:660.854387pt;}
.y8_c01183{bottom:673.973427pt;}
.y7_c01183{bottom:687.413413pt;}
.y6_c01183{bottom:700.214680pt;}
.y1_c01183{bottom:749.493413pt;}
.hf_c01183{height:22.250000pt;}
.h9_c01183{height:22.945312pt;}
.he_c01183{height:23.640625pt;}
.hc_c01183{height:25.031250pt;}
.h1d_c01183{height:25.036458pt;}
.hd_c01183{height:25.695312pt;}
.ha_c01183{height:25.726562pt;}
.hb_c01183{height:27.013021pt;}
.h13_c01183{height:31.984375pt;}
.h12_c01183{height:32.921875pt;}
.h10_c01183{height:33.593750pt;}
.h11_c01183{height:35.609375pt;}
.h20_c01183{height:44.500000pt;}
.h1a_c01183{height:47.281250pt;}
.h16_c01183{height:48.096354pt;}
.h15_c01183{height:49.718750pt;}
.h19_c01183{height:50.072917pt;}
.h17_c01183{height:50.390625pt;}
.h14_c01183{height:51.062500pt;}
.h1b_c01183{height:51.734375pt;}
.h18_c01183{height:52.049479pt;}
.h1c_c01183{height:54.026042pt;}
.h2_c01183{height:69.875000pt;}
.h8_c01183{height:71.218750pt;}
.h3_c01183{height:71.890625pt;}
.h6_c01183{height:72.562500pt;}
.h4_c01183{height:75.250000pt;}
.h5_c01183{height:75.921875pt;}
.h1_c01183{height:77.265625pt;}
.h21_c01183{height:79.265625pt;}
.h7_c01183{height:81.039063pt;}
.h1f_c01183{height:112.640625pt;}
.h1e_c01183{height:144.625000pt;}
.h0_c01183{height:793.333333pt;}
.w0_c01183{width:1122.666667pt;}
.x0_c01183{left:0.000000pt;}
.x1_c01183{left:78.079067pt;}
.xc_c01183{left:138.559613pt;}
.x2_c01183{left:155.519467pt;}
.x3_c01183{left:192.638667pt;}
.xd_c01183{left:206.718787pt;}
.xe_c01183{left:276.479067pt;}
.x4_c01183{left:287.359867pt;}
.x16_c01183{left:315.199200pt;}
.x17_c01183{left:339.199200pt;}
.xf_c01183{left:344.958947pt;}
.x5_c01183{left:354.238813pt;}
.x18_c01183{left:378.878907pt;}
.x10_c01183{left:414.399867pt;}
.x19_c01183{left:455.039067pt;}
.x6_c01183{left:478.398920pt;}
.x11_c01183{left:483.199173pt;}
.x7_c01183{left:500.159173pt;}
.x13_c01183{left:552.638707pt;}
.x14_c01183{left:623.039067pt;}
.x8_c01183{left:651.839320pt;}
.x9_c01183{left:685.440027pt;}
.x15_c01183{left:691.519040pt;}
.x12_c01183{left:694.398920pt;}
.xa_c01183{left:716.799320pt;}
.xb_c01183{left:742.719720pt;}
.x29_c01183{left:765.439453pt;}
.x33_c01183{left:830.718747pt;}
.x36_c01183{left:831.679693pt;}
.x1f_c01183{left:834.559573pt;}
.x37_c01183{left:841.599613pt;}
.x38_c01183{left:849.919840pt;}
.x2d_c01183{left:862.719720pt;}
.x1a_c01183{left:868.158693pt;}
.x34_c01183{left:869.119547pt;}
.x2e_c01183{left:874.879307pt;}
.x1b_c01183{left:884.479987pt;}
.x25_c01183{left:887.039067pt;}
.x2f_c01183{left:893.438880pt;}
.x26_c01183{left:901.439947pt;}
.x35_c01183{left:915.518467pt;}
.x27_c01183{left:918.079027pt;}
.x32_c01183{left:925.119147pt;}
.x20_c01183{left:946.558507pt;}
.x2a_c01183{left:953.279293pt;}
.x21_c01183{left:957.439453pt;}
.x2b_c01183{left:968.318760pt;}
.x1c_c01183{left:999.999027pt;}
.x23_c01183{left:1033.599613pt;}
.x30_c01183{left:1040.318760pt;}
.x28_c01183{left:1044.479000pt;}
.x1d_c01183{left:1046.078693pt;}
.x22_c01183{left:1051.199707pt;}
.x1e_c01183{left:1059.199133pt;}
.x31_c01183{left:1060.798747pt;}
.x2c_c01183{left:1067.519453pt;}
.x24_c01183{left:1075.839840pt;}
}





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

.ir_c01184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_f170df5d0b1f482b8bf91c14.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01184;src:url('chunks/assets/font_89039691d233c7ccce80a606.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01184;src:url('chunks/assets/font_2753d3edf8718d03cc98fb05.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01184;src:url('chunks/assets/font_a36a91e9c485ea9ffd99382f.woff2')format("woff");}.ff4_c01184{font-family:ff4_c01184;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01184;src:url('chunks/assets/font_6376f9d29714bc6eb241c623.woff2')format("woff");}.ff5_c01184{font-family:ff5_c01184;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01184;src:url('chunks/assets/font_8d2a9e1478e5723986b2b171.woff2')format("woff");}.ff6_c01184{font-family:ff6_c01184;line-height:1.364746;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_dd37bab92a2f9f00cee419f0.woff2')format("woff");}.ff7_c01184{font-family:ff7_c01184;line-height:1.432129;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_a6d5daed1fe4d4a96ad4f91a.woff2')format("woff");}.ff8_c01184{font-family:ff8_c01184;line-height:1.432129;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff9_c01184{font-family:ff9_c01184;line-height:1.364746;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_d331f02aa172d1ad2b45178e.woff2')format("woff");}.ffa_c01184{font-family:ffa_c01184;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m31_c01184{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m1a_c01184{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m23_c01184{transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);}
.m24_c01184{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m2e_c01184{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m3a_c01184{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m22_c01184{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m27_c01184{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m2a_c01184{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_c01184{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m13_c01184{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m19_c01184{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m2_c01184{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m33_c01184{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m4_c01184{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m32_c01184{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);}
.m2d_c01184{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m21_c01184{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m17_c01184{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m1d_c01184{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m15_c01184{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.ma_c01184{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m2f_c01184{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.me_c01184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01184{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m25_c01184{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m2b_c01184{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m12_c01184{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);}
.m30_c01184{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m20_c01184{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.mf_c01184{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m26_c01184{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m2c_c01184{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m1f_c01184{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_c01184{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m29_c01184{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m1c_c01184{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m16_c01184{transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);}
.m1b_c01184{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m14_c01184{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m36_c01184{transform:matrix(0.272358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272358,0.000000,0.000000,0.250000,0,0);}
.md_c01184{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_c01184{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m5_c01184{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.mb_c01184{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m11_c01184{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m9_c01184{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m37_c01184{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m0_c01184{transform:matrix(0.286036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286036,0.000000,0.000000,0.250000,0,0);}
.m34_c01184{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.m8_c01184{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{transform:matrix(0.316038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316038,0.000000,0.000000,0.250000,0,0);}
.m35_c01184{transform:matrix(0.321875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321875,0.000000,0.000000,0.250000,0,0);}
.m10_c01184{transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326389,0.000000,0.000000,0.250000,0,0);}
.mc_c01184{transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357143,0.000000,0.000000,0.250000,0,0);}
.m38_c01184{transform:matrix(0.454819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454819,0.000000,0.000000,0.250000,0,0);}
.m6_c01184{transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637681,0.000000,0.000000,0.250000,0,0);}
.m39_c01184{transform:matrix(2.910256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.910256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.910256,0.000000,0.000000,0.250000,0,0);}
.m7_c01184{transform:matrix(3.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.178571,0.000000,0.000000,0.250000,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.ls3e_c01184{letter-spacing:-31.180800px;}
.ls2d_c01184{letter-spacing:-26.069400px;}
.lsd_c01184{letter-spacing:-14.754405px;}
.ls2a_c01184{letter-spacing:-14.437500px;}
.ls41_c01184{letter-spacing:-12.630150px;}
.ls43_c01184{letter-spacing:-11.530350px;}
.ls16_c01184{letter-spacing:-6.556050px;}
.ls35_c01184{letter-spacing:-6.496875px;}
.ls24_c01184{letter-spacing:-6.491250px;}
.ls20_c01184{letter-spacing:-5.700570px;}
.ls38_c01184{letter-spacing:-5.590200px;}
.ls12_c01184{letter-spacing:-5.400000px;}
.ls30_c01184{letter-spacing:-4.989600px;}
.ls42_c01184{letter-spacing:-4.948875px;}
.ls11_c01184{letter-spacing:-4.665000px;}
.ls29_c01184{letter-spacing:-4.500000px;}
.ls3b_c01184{letter-spacing:-4.440975px;}
.ls3a_c01184{letter-spacing:-4.381875px;}
.ls25_c01184{letter-spacing:-4.377150px;}
.ls1e_c01184{letter-spacing:-4.279275px;}
.ls31_c01184{letter-spacing:-3.982590px;}
.ls27_c01184{letter-spacing:-3.960000px;}
.ls1b_c01184{letter-spacing:-3.602550px;}
.lse_c01184{letter-spacing:-3.370800px;}
.ls18_c01184{letter-spacing:-3.360000px;}
.ls37_c01184{letter-spacing:-3.209100px;}
.ls26_c01184{letter-spacing:-3.187500px;}
.ls23_c01184{letter-spacing:-2.708400px;}
.lsf_c01184{letter-spacing:-2.596388px;}
.ls2c_c01184{letter-spacing:-2.379375px;}
.ls39_c01184{letter-spacing:-2.315925px;}
.ls32_c01184{letter-spacing:-2.252250px;}
.ls2b_c01184{letter-spacing:-2.223000px;}
.ls33_c01184{letter-spacing:-2.217375px;}
.ls1f_c01184{letter-spacing:-2.081805px;}
.ls40_c01184{letter-spacing:-2.066400px;}
.ls8_c01184{letter-spacing:-1.780800px;}
.ls3f_c01184{letter-spacing:-1.746000px;}
.ls2e_c01184{letter-spacing:-1.744200px;}
.ls17_c01184{letter-spacing:-1.722600px;}
.ls1d_c01184{letter-spacing:-1.586250px;}
.ls2f_c01184{letter-spacing:-1.478400px;}
.ls44_c01184{letter-spacing:-0.897863px;}
.ls1c_c01184{letter-spacing:-0.837375px;}
.ls9_c01184{letter-spacing:-0.835403px;}
.ls3d_c01184{letter-spacing:-0.830700px;}
.ls22_c01184{letter-spacing:-0.793125px;}
.ls21_c01184{letter-spacing:-0.791175px;}
.ls34_c01184{letter-spacing:-0.772200px;}
.ls10_c01184{letter-spacing:-0.622200px;}
.lsb_c01184{letter-spacing:0.000000px;}
.ls13_c01184{letter-spacing:0.672000px;}
.ls15_c01184{letter-spacing:0.749700px;}
.ls1a_c01184{letter-spacing:0.780000px;}
.ls2_c01184{letter-spacing:0.793125px;}
.ls14_c01184{letter-spacing:1.363275px;}
.ls19_c01184{letter-spacing:1.385475px;}
.ls36_c01184{letter-spacing:1.586250px;}
.ls3c_c01184{letter-spacing:1.631813px;}
.ls0_c01184{letter-spacing:1.669200px;}
.ls4_c01184{letter-spacing:2.379375px;}
.lsc_c01184{letter-spacing:2.511825px;}
.ls7_c01184{letter-spacing:2.621543px;}
.ls28_c01184{letter-spacing:3.085800px;}
.ls1_c01184{letter-spacing:3.346425px;}
.ls6_c01184{letter-spacing:3.960000px;}
.lsa_c01184{letter-spacing:4.180223px;}
.ls5_c01184{letter-spacing:4.753125px;}
.ls3_c01184{letter-spacing:6.339375px;}
.sc__c01184{text-shadow:none;}
.sc0_c01184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01184{-webkit-text-stroke:0px transparent;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01184{word-spacing:0.000000px;}
._8_c01184{margin-left:-12.217532px;}
._b_c01184{margin-left:-7.864162px;}
._c_c01184{margin-left:-5.636662px;}
._9_c01184{margin-left:-4.606732px;}
._a_c01184{margin-left:-3.256495px;}
._7_c01184{margin-left:-2.255577px;}
._13_c01184{width:1.434708px;}
._6_c01184{width:2.553940px;}
._10_c01184{width:3.807697px;}
._12_c01184{width:6.007072px;}
._e_c01184{width:7.819225px;}
._5_c01184{width:9.843750px;}
._4_c01184{width:10.962729px;}
._f_c01184{width:12.099518px;}
._d_c01184{width:15.514067px;}
._11_c01184{width:16.537056px;}
._3_c01184{width:19.293813px;}
._2_c01184{width:24.399946px;}
._1_c01184{width:28.713584px;}
._0_c01184{width:32.725482px;}
.fc0_c01184{color:transparent;}
.fs9_c01184{font-size:22.500000px;}
.fs6_c01184{font-size:25.500000px;}
.fs5_c01184{font-size:26.250000px;}
.fs8_c01184{font-size:27.000000px;}
.fs7_c01184{font-size:30.000000px;}
.fse_c01184{font-size:34.500000px;}
.fsa_c01184{font-size:36.750000px;}
.fsb_c01184{font-size:37.500000px;}
.fsd_c01184{font-size:39.000000px;}
.fsc_c01184{font-size:42.000000px;}
.fs15_c01184{font-size:51.000000px;}
.fs4_c01184{font-size:51.750000px;}
.fs14_c01184{font-size:53.250000px;}
.fs18_c01184{font-size:54.000000px;}
.fs10_c01184{font-size:54.750000px;}
.fs12_c01184{font-size:55.500000px;}
.fsf_c01184{font-size:56.250000px;}
.fs13_c01184{font-size:57.000000px;}
.fs11_c01184{font-size:57.750000px;}
.fs16_c01184{font-size:58.500000px;}
.fs1a_c01184{font-size:60.000000px;}
.fs1c_c01184{font-size:62.250000px;}
.fs17_c01184{font-size:63.000000px;}
.fs1_c01184{font-size:79.500000px;}
.fs2_c01184{font-size:80.250000px;}
.fs3_c01184{font-size:82.500000px;}
.fs0_c01184{font-size:83.250000px;}
.fs19_c01184{font-size:84.000000px;}
.fs1d_c01184{font-size:86.250000px;}
.fs1b_c01184{font-size:92.250000px;}
.y0_c01184{bottom:0.000000px;}
.y4_c01184{bottom:37.140150px;}
.y3_c01184{bottom:46.141335px;}
.y2_c01184{bottom:53.700435px;}
.y23_c01184{bottom:284.461185px;}
.y22_c01184{bottom:313.980885px;}
.y21_c01184{bottom:358.981335px;}
.y20_c01184{bottom:388.860300px;}
.y1f_c01184{bottom:418.381620px;}
.y1e_c01184{bottom:448.621635px;}
.y1d_c01184{bottom:508.381170px;}
.y1c_c01184{bottom:567.781500px;}
.y1b_c01184{bottom:582.540570px;}
.y1a_c01184{bottom:597.660420px;}
.y19_c01184{bottom:597.660510px;}
.y18_c01184{bottom:612.780435px;}
.y17_c01184{bottom:627.541035px;}
.y16_c01184{bottom:627.541080px;}
.y14_c01184{bottom:642.660285px;}
.y15_c01184{bottom:642.661005px;}
.y13_c01184{bottom:657.421650px;}
.y12_c01184{bottom:657.421695px;}
.y11_c01184{bottom:672.541620px;}
.y10_c01184{bottom:687.300570px;}
.yf_c01184{bottom:702.420600px;}
.ye_c01184{bottom:702.421140px;}
.yd_c01184{bottom:717.181230px;}
.yc_c01184{bottom:732.301170px;}
.ya_c01184{bottom:746.700945px;}
.yb_c01184{bottom:746.701035px;}
.y9_c01184{bottom:761.820870px;}
.y8_c01184{bottom:761.820930px;}
.y6_c01184{bottom:776.940765px;}
.y7_c01184{bottom:776.940855px;}
.y5_c01184{bottom:792.060705px;}
.y1_c01184{bottom:841.380615px;}
.hc_c01184{height:23.466797px;}
.h7_c01184{height:25.750122px;}
.hd_c01184{height:26.499023px;}
.h8_c01184{height:26.595703px;}
.hb_c01184{height:27.377930px;}
.ha_c01184{height:28.160156px;}
.h9_c01184{height:29.648438px;}
.h12_c01184{height:35.982422px;}
.he_c01184{height:37.037109px;}
.hf_c01184{height:37.792969px;}
.h24_c01184{height:38.276367px;}
.h11_c01184{height:39.304688px;}
.h10_c01184{height:41.507812px;}
.h19_c01184{height:52.261963px;}
.h1f_c01184{height:52.998047px;}
.h1a_c01184{height:53.191406px;}
.h14_c01184{height:53.734131px;}
.h6_c01184{height:53.973633px;}
.h17_c01184{height:54.470215px;}
.h22_c01184{height:55.177734px;}
.h13_c01184{height:55.206299px;}
.h1c_c01184{height:55.933594px;}
.h18_c01184{height:55.942383px;}
.h1e_c01184{height:56.320312px;}
.h15_c01184{height:56.678467px;}
.h23_c01184{height:56.689453px;}
.h16_c01184{height:57.073242px;}
.h28_c01184{height:57.385986px;}
.h1b_c01184{height:57.414551px;}
.h21_c01184{height:57.445312px;}
.h20_c01184{height:58.201172px;}
.h2a_c01184{height:61.013672px;}
.h1d_c01184{height:62.261719px;}
.h26_c01184{height:62.578125px;}
.h29_c01184{height:64.924805px;}
.h2_c01184{height:78.024902px;}
.h3_c01184{height:78.760986px;}
.h5_c01184{height:80.121094px;}
.h4_c01184{height:80.969238px;}
.h25_c01184{height:83.015625px;}
.h1_c01184{height:83.900391px;}
.h2b_c01184{height:89.956055px;}
.h27_c01184{height:96.213867px;}
.h0_c01184{height:892.500000px;}
.w0_c01184{width:1263.000000px;}
.x0_c01184{left:0.000000px;}
.x1_c01184{left:84.239850px;}
.xa_c01184{left:89.279250px;}
.xc_c01184{left:153.359850px;}
.x2_c01184{left:170.999400px;}
.x3_c01184{left:214.198785px;}
.xd_c01184{left:231.838515px;}
.xe_c01184{left:309.959385px;}
.x15_c01184{left:333.358635px;}
.x16_c01184{left:359.999385px;}
.xf_c01184{left:385.559100px;}
.x17_c01184{left:403.918950px;}
.x18_c01184{left:444.598530px;}
.x10_c01184{left:463.678530px;}
.x19_c01184{left:490.319235px;}
.x4_c01184{left:536.399235px;}
.x11_c01184{left:543.599070px;}
.x5_c01184{left:561.238770px;}
.x12_c01184{left:620.279850px;}
.x13_c01184{left:697.679070px;}
.xb_c01184{left:700.198785px;}
.x6_c01184{left:730.799520px;}
.x7_c01184{left:768.959385px;}
.x14_c01184{left:774.719055px;}
.x8_c01184{left:803.159370px;}
.x9_c01184{left:831.599670px;}
.x4f_c01184{left:918.718500px;}
.x4e_c01184{left:920.519715px;}
.x1f_c01184{left:928.798830px;}
.x34_c01184{left:929.878320px;}
.x4d_c01184{left:935.278755px;}
.x48_c01184{left:936.359805px;}
.x4a_c01184{left:937.439205px;}
.x4b_c01184{left:939.958920px;}
.x2a_c01184{left:945.718500px;}
.x47_c01184{left:951.838905px;}
.x1a_c01184{left:967.679070px;}
.x49_c01184{left:969.478635px;}
.x4c_c01184{left:970.559685px;}
.x2c_c01184{left:974.519715px;}
.x2b_c01184{left:977.759490px;}
.x2d_c01184{left:986.759040px;}
.x25_c01184{left:991.079955px;}
.x38_c01184{left:1006.918305px;}
.x2e_c01184{left:1011.598575px;}
.x44_c01184{left:1035.719520px;}
.x26_c01184{left:1041.119940px;}
.x39_c01184{left:1047.238770px;}
.x1b_c01184{left:1052.279850px;}
.x3e_c01184{left:1053.718500px;}
.x2f_c01184{left:1054.799565px;}
.x3a_c01184{left:1068.838530px;}
.x1c_c01184{left:1069.919490px;}
.x20_c01184{left:1072.798560px;}
.x35_c01184{left:1073.879520px;}
.x27_c01184{left:1075.679070px;}
.x21_c01184{left:1088.999355px;}
.x31_c01184{left:1096.919490px;}
.x40_c01184{left:1097.998905px;}
.x28_c01184{left:1101.599670px;}
.x36_c01184{left:1109.878965px;}
.x37_c01184{left:1110.958275px;}
.x32_c01184{left:1113.118740px;}
.x29_c01184{left:1118.878320px;}
.x1d_c01184{left:1119.959385px;}
.x3b_c01184{left:1122.479190px;}
.x33_c01184{left:1127.159370px;}
.x45_c01184{left:1132.918950px;}
.x1e_c01184{left:1141.199805px;}
.x41_c01184{left:1158.839535px;}
.x42_c01184{left:1169.999355px;}
.x43_c01184{left:1178.998905px;}
.x22_c01184{left:1180.798560px;}
.x3f_c01184{left:1191.239775px;}
.x46_c01184{left:1193.039340px;}
.x23_c01184{left:1195.918305px;}
.x3c_c01184{left:1208.518620px;}
.x24_c01184{left:1217.878875px;}
.x30_c01184{left:1220.039340px;}
.x3d_c01184{left:1221.479640px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls3e_c01184{letter-spacing:-27.716267pt;}
.ls2d_c01184{letter-spacing:-23.172800pt;}
.lsd_c01184{letter-spacing:-13.115027pt;}
.ls2a_c01184{letter-spacing:-12.833333pt;}
.ls41_c01184{letter-spacing:-11.226800pt;}
.ls43_c01184{letter-spacing:-10.249200pt;}
.ls16_c01184{letter-spacing:-5.827600pt;}
.ls35_c01184{letter-spacing:-5.775000pt;}
.ls24_c01184{letter-spacing:-5.770000pt;}
.ls20_c01184{letter-spacing:-5.067173pt;}
.ls38_c01184{letter-spacing:-4.969067pt;}
.ls12_c01184{letter-spacing:-4.800000pt;}
.ls30_c01184{letter-spacing:-4.435200pt;}
.ls42_c01184{letter-spacing:-4.399000pt;}
.ls11_c01184{letter-spacing:-4.146667pt;}
.ls29_c01184{letter-spacing:-4.000000pt;}
.ls3b_c01184{letter-spacing:-3.947533pt;}
.ls3a_c01184{letter-spacing:-3.895000pt;}
.ls25_c01184{letter-spacing:-3.890800pt;}
.ls1e_c01184{letter-spacing:-3.803800pt;}
.ls31_c01184{letter-spacing:-3.540080pt;}
.ls27_c01184{letter-spacing:-3.520000pt;}
.ls1b_c01184{letter-spacing:-3.202267pt;}
.lse_c01184{letter-spacing:-2.996267pt;}
.ls18_c01184{letter-spacing:-2.986667pt;}
.ls37_c01184{letter-spacing:-2.852533pt;}
.ls26_c01184{letter-spacing:-2.833333pt;}
.ls23_c01184{letter-spacing:-2.407467pt;}
.lsf_c01184{letter-spacing:-2.307900pt;}
.ls2c_c01184{letter-spacing:-2.115000pt;}
.ls39_c01184{letter-spacing:-2.058600pt;}
.ls32_c01184{letter-spacing:-2.002000pt;}
.ls2b_c01184{letter-spacing:-1.976000pt;}
.ls33_c01184{letter-spacing:-1.971000pt;}
.ls1f_c01184{letter-spacing:-1.850493pt;}
.ls40_c01184{letter-spacing:-1.836800pt;}
.ls8_c01184{letter-spacing:-1.582933pt;}
.ls3f_c01184{letter-spacing:-1.552000pt;}
.ls2e_c01184{letter-spacing:-1.550400pt;}
.ls17_c01184{letter-spacing:-1.531200pt;}
.ls1d_c01184{letter-spacing:-1.410000pt;}
.ls2f_c01184{letter-spacing:-1.314133pt;}
.ls44_c01184{letter-spacing:-0.798100pt;}
.ls1c_c01184{letter-spacing:-0.744333pt;}
.ls9_c01184{letter-spacing:-0.742580pt;}
.ls3d_c01184{letter-spacing:-0.738400pt;}
.ls22_c01184{letter-spacing:-0.705000pt;}
.ls21_c01184{letter-spacing:-0.703267pt;}
.ls34_c01184{letter-spacing:-0.686400pt;}
.ls10_c01184{letter-spacing:-0.553067pt;}
.lsb_c01184{letter-spacing:0.000000pt;}
.ls13_c01184{letter-spacing:0.597333pt;}
.ls15_c01184{letter-spacing:0.666400pt;}
.ls1a_c01184{letter-spacing:0.693333pt;}
.ls2_c01184{letter-spacing:0.705000pt;}
.ls14_c01184{letter-spacing:1.211800pt;}
.ls19_c01184{letter-spacing:1.231533pt;}
.ls36_c01184{letter-spacing:1.410000pt;}
.ls3c_c01184{letter-spacing:1.450500pt;}
.ls0_c01184{letter-spacing:1.483733pt;}
.ls4_c01184{letter-spacing:2.115000pt;}
.lsc_c01184{letter-spacing:2.232733pt;}
.ls7_c01184{letter-spacing:2.330260pt;}
.ls28_c01184{letter-spacing:2.742933pt;}
.ls1_c01184{letter-spacing:2.974600pt;}
.ls6_c01184{letter-spacing:3.520000pt;}
.lsa_c01184{letter-spacing:3.715753pt;}
.ls5_c01184{letter-spacing:4.225000pt;}
.ls3_c01184{letter-spacing:5.635000pt;}
.ws0_c01184{word-spacing:0.000000pt;}
._8_c01184{margin-left:-10.860028pt;}
._b_c01184{margin-left:-6.990366pt;}
._c_c01184{margin-left:-5.010366pt;}
._9_c01184{margin-left:-4.094873pt;}
._a_c01184{margin-left:-2.894662pt;}
._7_c01184{margin-left:-2.004958pt;}
._13_c01184{width:1.275296pt;}
._6_c01184{width:2.270169pt;}
._10_c01184{width:3.384620pt;}
._12_c01184{width:5.339620pt;}
._e_c01184{width:6.950423pt;}
._5_c01184{width:8.750000pt;}
._4_c01184{width:9.744648pt;}
._f_c01184{width:10.755127pt;}
._d_c01184{width:13.790282pt;}
._11_c01184{width:14.699606pt;}
._3_c01184{width:17.150056pt;}
._2_c01184{width:21.688841pt;}
._1_c01184{width:25.523186pt;}
._0_c01184{width:29.089317pt;}
.fs9_c01184{font-size:20.000000pt;}
.fs6_c01184{font-size:22.666667pt;}
.fs5_c01184{font-size:23.333333pt;}
.fs8_c01184{font-size:24.000000pt;}
.fs7_c01184{font-size:26.666667pt;}
.fse_c01184{font-size:30.666667pt;}
.fsa_c01184{font-size:32.666667pt;}
.fsb_c01184{font-size:33.333333pt;}
.fsd_c01184{font-size:34.666667pt;}
.fsc_c01184{font-size:37.333333pt;}
.fs15_c01184{font-size:45.333333pt;}
.fs4_c01184{font-size:46.000000pt;}
.fs14_c01184{font-size:47.333333pt;}
.fs18_c01184{font-size:48.000000pt;}
.fs10_c01184{font-size:48.666667pt;}
.fs12_c01184{font-size:49.333333pt;}
.fsf_c01184{font-size:50.000000pt;}
.fs13_c01184{font-size:50.666667pt;}
.fs11_c01184{font-size:51.333333pt;}
.fs16_c01184{font-size:52.000000pt;}
.fs1a_c01184{font-size:53.333333pt;}
.fs1c_c01184{font-size:55.333333pt;}
.fs17_c01184{font-size:56.000000pt;}
.fs1_c01184{font-size:70.666667pt;}
.fs2_c01184{font-size:71.333333pt;}
.fs3_c01184{font-size:73.333333pt;}
.fs0_c01184{font-size:74.000000pt;}
.fs19_c01184{font-size:74.666667pt;}
.fs1d_c01184{font-size:76.666667pt;}
.fs1b_c01184{font-size:82.000000pt;}
.y0_c01184{bottom:0.000000pt;}
.y4_c01184{bottom:33.013467pt;}
.y3_c01184{bottom:41.014520pt;}
.y2_c01184{bottom:47.733720pt;}
.y23_c01184{bottom:252.854387pt;}
.y22_c01184{bottom:279.094120pt;}
.y21_c01184{bottom:319.094520pt;}
.y20_c01184{bottom:345.653600pt;}
.y1f_c01184{bottom:371.894773pt;}
.y1e_c01184{bottom:398.774787pt;}
.y1d_c01184{bottom:451.894373pt;}
.y1c_c01184{bottom:504.694667pt;}
.y1b_c01184{bottom:517.813840pt;}
.y1a_c01184{bottom:531.253707pt;}
.y19_c01184{bottom:531.253787pt;}
.y18_c01184{bottom:544.693720pt;}
.y17_c01184{bottom:557.814253pt;}
.y16_c01184{bottom:557.814293pt;}
.y14_c01184{bottom:571.253587pt;}
.y15_c01184{bottom:571.254227pt;}
.y13_c01184{bottom:584.374800pt;}
.y12_c01184{bottom:584.374840pt;}
.y11_c01184{bottom:597.814773pt;}
.y10_c01184{bottom:610.933840pt;}
.yf_c01184{bottom:624.373867pt;}
.ye_c01184{bottom:624.374347pt;}
.yd_c01184{bottom:637.494427pt;}
.yc_c01184{bottom:650.934373pt;}
.ya_c01184{bottom:663.734173pt;}
.yb_c01184{bottom:663.734253pt;}
.y9_c01184{bottom:677.174107pt;}
.y8_c01184{bottom:677.174160pt;}
.y6_c01184{bottom:690.614013pt;}
.y7_c01184{bottom:690.614093pt;}
.y5_c01184{bottom:704.053960pt;}
.y1_c01184{bottom:747.893880pt;}
.hc_c01184{height:20.859375pt;}
.h7_c01184{height:22.888997pt;}
.hd_c01184{height:23.554688pt;}
.h8_c01184{height:23.640625pt;}
.hb_c01184{height:24.335938pt;}
.ha_c01184{height:25.031250pt;}
.h9_c01184{height:26.354167pt;}
.h12_c01184{height:31.984375pt;}
.he_c01184{height:32.921875pt;}
.hf_c01184{height:33.593750pt;}
.h24_c01184{height:34.023438pt;}
.h11_c01184{height:34.937500pt;}
.h10_c01184{height:36.895833pt;}
.h19_c01184{height:46.455078pt;}
.h1f_c01184{height:47.109375pt;}
.h1a_c01184{height:47.281250pt;}
.h14_c01184{height:47.763672pt;}
.h6_c01184{height:47.976562pt;}
.h17_c01184{height:48.417969pt;}
.h22_c01184{height:49.046875pt;}
.h13_c01184{height:49.072266pt;}
.h1c_c01184{height:49.718750pt;}
.h18_c01184{height:49.726562pt;}
.h1e_c01184{height:50.062500pt;}
.h15_c01184{height:50.380859pt;}
.h23_c01184{height:50.390625pt;}
.h16_c01184{height:50.731771pt;}
.h28_c01184{height:51.009766pt;}
.h1b_c01184{height:51.035156pt;}
.h21_c01184{height:51.062500pt;}
.h20_c01184{height:51.734375pt;}
.h2a_c01184{height:54.234375pt;}
.h1d_c01184{height:55.343750pt;}
.h26_c01184{height:55.625000pt;}
.h29_c01184{height:57.710938pt;}
.h2_c01184{height:69.355469pt;}
.h3_c01184{height:70.009766pt;}
.h5_c01184{height:71.218750pt;}
.h4_c01184{height:71.972656pt;}
.h25_c01184{height:73.791667pt;}
.h1_c01184{height:74.578125pt;}
.h2b_c01184{height:79.960938pt;}
.h27_c01184{height:85.523438pt;}
.h0_c01184{height:793.333333pt;}
.w0_c01184{width:1122.666667pt;}
.x0_c01184{left:0.000000pt;}
.x1_c01184{left:74.879867pt;}
.xa_c01184{left:79.359333pt;}
.xc_c01184{left:136.319867pt;}
.x2_c01184{left:151.999467pt;}
.x3_c01184{left:190.398920pt;}
.xd_c01184{left:206.078680pt;}
.xe_c01184{left:275.519453pt;}
.x15_c01184{left:296.318787pt;}
.x16_c01184{left:319.999453pt;}
.xf_c01184{left:342.719200pt;}
.x17_c01184{left:359.039067pt;}
.x18_c01184{left:395.198693pt;}
.x10_c01184{left:412.158693pt;}
.x19_c01184{left:435.839320pt;}
.x4_c01184{left:476.799320pt;}
.x11_c01184{left:483.199173pt;}
.x5_c01184{left:498.878907pt;}
.x12_c01184{left:551.359867pt;}
.x13_c01184{left:620.159173pt;}
.xb_c01184{left:622.398920pt;}
.x6_c01184{left:649.599573pt;}
.x7_c01184{left:683.519453pt;}
.x14_c01184{left:688.639160pt;}
.x8_c01184{left:713.919440pt;}
.x9_c01184{left:739.199707pt;}
.x4f_c01184{left:816.638667pt;}
.x4e_c01184{left:818.239747pt;}
.x1f_c01184{left:825.598960pt;}
.x34_c01184{left:826.558507pt;}
.x4d_c01184{left:831.358893pt;}
.x48_c01184{left:832.319827pt;}
.x4a_c01184{left:833.279293pt;}
.x4b_c01184{left:835.519040pt;}
.x2a_c01184{left:840.638667pt;}
.x47_c01184{left:846.079027pt;}
.x1a_c01184{left:860.159173pt;}
.x49_c01184{left:861.758787pt;}
.x4c_c01184{left:862.719720pt;}
.x2c_c01184{left:866.239747pt;}
.x2b_c01184{left:869.119547pt;}
.x2d_c01184{left:877.119147pt;}
.x25_c01184{left:880.959960pt;}
.x38_c01184{left:895.038493pt;}
.x2e_c01184{left:899.198733pt;}
.x44_c01184{left:920.639573pt;}
.x26_c01184{left:925.439947pt;}
.x39_c01184{left:930.878907pt;}
.x1b_c01184{left:935.359867pt;}
.x3e_c01184{left:936.638667pt;}
.x2f_c01184{left:937.599613pt;}
.x3a_c01184{left:950.078693pt;}
.x1c_c01184{left:951.039547pt;}
.x20_c01184{left:953.598720pt;}
.x35_c01184{left:954.559573pt;}
.x27_c01184{left:956.159173pt;}
.x21_c01184{left:967.999427pt;}
.x31_c01184{left:975.039547pt;}
.x40_c01184{left:975.999027pt;}
.x28_c01184{left:979.199707pt;}
.x36_c01184{left:986.559080pt;}
.x37_c01184{left:987.518467pt;}
.x32_c01184{left:989.438880pt;}
.x29_c01184{left:994.558507pt;}
.x1d_c01184{left:995.519453pt;}
.x3b_c01184{left:997.759280pt;}
.x33_c01184{left:1001.919440pt;}
.x45_c01184{left:1007.039067pt;}
.x1e_c01184{left:1014.399827pt;}
.x41_c01184{left:1030.079587pt;}
.x42_c01184{left:1039.999427pt;}
.x43_c01184{left:1047.999027pt;}
.x22_c01184{left:1049.598720pt;}
.x3f_c01184{left:1058.879800pt;}
.x46_c01184{left:1060.479413pt;}
.x23_c01184{left:1063.038493pt;}
.x3c_c01184{left:1074.238773pt;}
.x24_c01184{left:1082.559000pt;}
.x30_c01184{left:1084.479413pt;}
.x3d_c01184{left:1085.759680pt;}
}





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

.ir_c01185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_31e6d5cb4e4ad2dd7e364669.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01185;src:url('chunks/assets/font_bd065721ed00a53b45fbb575.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01185;src:url('chunks/assets/font_6eb589ded6b0f3fee2ad8f79.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01185;src:url('chunks/assets/font_62d19234ef05fdf4d42926c1.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01185;src:url('chunks/assets/font_6ee071d733a223025868211f.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01185;src:url('chunks/assets/font_0aedeb11bb835561eb1c846d.woff2')format("woff");}.ff6_c01185{font-family:ff6_c01185;line-height:1.432129;font-style:normal;font-weight: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_c01185;src:url('chunks/assets/font_6e87009a4382d04c72af5e4f.woff2')format("woff");}.ff7_c01185{font-family:ff7_c01185;line-height:1.364746;font-style:normal;font-weight: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_c01185;src:url('chunks/assets/font_5046f07ac7c1ab64d455c9f5.woff2')format("woff");}.ff8_c01185{font-family:ff8_c01185;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m32_c01185{transform:matrix(0.171622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171622,0.000000,0.000000,0.250000,0,0);}
.m22_c01185{transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203947,0.000000,0.000000,0.250000,0,0);}
.m34_c01185{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m4_c01185{transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208716,0.000000,0.000000,0.250000,0,0);}
.m27_c01185{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m33_c01185{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.md_c01185{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m6_c01185{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m2_c01185{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m28_c01185{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.m5_c01185{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m10_c01185{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m19_c01185{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m26_c01185{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.ma_c01185{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m1e_c01185{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m8_c01185{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m1d_c01185{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m25_c01185{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m3_c01185{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m21_c01185{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m2e_c01185{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m31_c01185{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m16_c01185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29_c01185{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m18_c01185{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m7_c01185{transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257282,0.000000,0.000000,0.250000,0,0);}
.m2b_c01185{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m24_c01185{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m1f_c01185{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m1b_c01185{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);}
.m1c_c01185{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m13_c01185{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m20_c01185{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m2f_c01185{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m14_c01185{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m23_c01185{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m2c_c01185{transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280488,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288095,0.000000,0.000000,0.250000,0,0);}
.m12_c01185{transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);}
.m0_c01185{transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);}
.m17_c01185{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01185{transform:matrix(0.303333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303333,0.000000,0.000000,0.250000,0,0);}
.m15_c01185{transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);}
.me_c01185{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m1a_c01185{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01185{transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);}
.m2a_c01185{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);}
.m30_c01185{transform:matrix(0.405473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405473,0.000000,0.000000,0.250000,0,0);}
.mb_c01185{transform:matrix(0.433206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433206,0.000000,0.000000,0.250000,0,0);}
.mf_c01185{transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535714,0.000000,0.000000,0.250000,0,0);}
.m9_c01185{transform:matrix(1.052239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052239,0.000000,0.000000,0.250000,0,0);}
.mc_c01185{transform:matrix(1.541667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.541667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.541667,0.000000,0.000000,0.250000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.ls2b_c01185{letter-spacing:-14.597700px;}
.ls24_c01185{letter-spacing:-14.084700px;}
.lsd_c01185{letter-spacing:-11.681925px;}
.ls35_c01185{letter-spacing:-8.322908px;}
.ls2e_c01185{letter-spacing:-8.145300px;}
.lsa_c01185{letter-spacing:-7.718288px;}
.ls31_c01185{letter-spacing:-7.352325px;}
.ls27_c01185{letter-spacing:-6.931200px;}
.ls14_c01185{letter-spacing:-6.909000px;}
.ls1b_c01185{letter-spacing:-6.257925px;}
.lse_c01185{letter-spacing:-6.079500px;}
.ls25_c01185{letter-spacing:-5.779800px;}
.ls37_c01185{letter-spacing:-5.285250px;}
.ls1d_c01185{letter-spacing:-5.042475px;}
.ls20_c01185{letter-spacing:-4.622700px;}
.ls3_c01185{letter-spacing:-4.310010px;}
.ls22_c01185{letter-spacing:-4.069800px;}
.ls26_c01185{letter-spacing:-3.907200px;}
.ls8_c01185{letter-spacing:-3.858750px;}
.ls32_c01185{letter-spacing:-3.706875px;}
.ls30_c01185{letter-spacing:-3.638250px;}
.ls2f_c01185{letter-spacing:-3.525000px;}
.ls1e_c01185{letter-spacing:-3.477000px;}
.ls34_c01185{letter-spacing:-3.468750px;}
.ls18_c01185{letter-spacing:-3.366000px;}
.ls2a_c01185{letter-spacing:-3.254700px;}
.ls2d_c01185{letter-spacing:-3.078000px;}
.ls36_c01185{letter-spacing:-3.040845px;}
.ls11_c01185{letter-spacing:-2.799300px;}
.ls12_c01185{letter-spacing:-2.532600px;}
.ls1c_c01185{letter-spacing:-2.444730px;}
.lsc_c01185{letter-spacing:-2.400750px;}
.ls4_c01185{letter-spacing:-2.315250px;}
.ls2c_c01185{letter-spacing:-2.223000px;}
.ls13_c01185{letter-spacing:-2.088450px;}
.ls16_c01185{letter-spacing:-1.875000px;}
.ls10_c01185{letter-spacing:-1.811700px;}
.ls19_c01185{letter-spacing:-1.801800px;}
.ls5_c01185{letter-spacing:-1.798500px;}
.ls1f_c01185{letter-spacing:-1.629630px;}
.ls9_c01185{letter-spacing:-1.544288px;}
.ls29_c01185{letter-spacing:-0.889350px;}
.ls6_c01185{letter-spacing:-0.858825px;}
.ls23_c01185{letter-spacing:-0.815100px;}
.ls1a_c01185{letter-spacing:-0.709125px;}
.ls7_c01185{letter-spacing:0.000000px;}
.ls28_c01185{letter-spacing:0.815100px;}
.ls21_c01185{letter-spacing:0.917700px;}
.ls17_c01185{letter-spacing:1.468800px;}
.ls2_c01185{letter-spacing:1.953000px;}
.ls0_c01185{letter-spacing:2.444730px;}
.ls33_c01185{letter-spacing:3.254700px;}
.lsb_c01185{letter-spacing:3.646200px;}
.lsf_c01185{letter-spacing:4.375350px;}
.ls1_c01185{letter-spacing:8.175818px;}
.ls15_c01185{letter-spacing:128.143350px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01185{word-spacing:0.000000px;}
._6_c01185{margin-left:-4.557394px;}
._3_c01185{margin-left:-2.335420px;}
._a_c01185{width:1.527730px;}
._7_c01185{width:3.790598px;}
._2_c01185{width:5.088455px;}
._8_c01185{width:6.511289px;}
._9_c01185{width:8.920207px;}
._5_c01185{width:9.923977px;}
._4_c01185{width:17.035053px;}
._0_c01185{width:25.350088px;}
._1_c01185{width:32.691518px;}
.fc0_c01185{color:transparent;}
.fs6_c01185{font-size:17.250000px;}
.fsb_c01185{font-size:21.000000px;}
.fsa_c01185{font-size:24.750000px;}
.fsd_c01185{font-size:26.250000px;}
.fsc_c01185{font-size:27.000000px;}
.fs10_c01185{font-size:27.750000px;}
.fse_c01185{font-size:28.500000px;}
.fsf_c01185{font-size:29.250000px;}
.fs1e_c01185{font-size:30.000000px;}
.fs9_c01185{font-size:31.500000px;}
.fs12_c01185{font-size:36.000000px;}
.fs11_c01185{font-size:37.500000px;}
.fs14_c01185{font-size:39.000000px;}
.fs13_c01185{font-size:41.250000px;}
.fs8_c01185{font-size:45.000000px;}
.fs1b_c01185{font-size:49.500000px;}
.fs5_c01185{font-size:50.250000px;}
.fs15_c01185{font-size:54.750000px;}
.fs18_c01185{font-size:55.500000px;}
.fs1d_c01185{font-size:56.250000px;}
.fs16_c01185{font-size:57.000000px;}
.fs19_c01185{font-size:57.750000px;}
.fs17_c01185{font-size:58.500000px;}
.fs1a_c01185{font-size:75.000000px;}
.fs4_c01185{font-size:77.250000px;}
.fs1_c01185{font-size:78.750000px;}
.fs2_c01185{font-size:81.000000px;}
.fs0_c01185{font-size:81.750000px;}
.fs3_c01185{font-size:82.500000px;}
.fs1c_c01185{font-size:92.250000px;}
.fs7_c01185{font-size:98.250000px;}
.fs21_c01185{font-size:121.500000px;}
.fs20_c01185{font-size:138.750000px;}
.fs1f_c01185{font-size:150.750000px;}
.y0_c01185{bottom:0.000000px;}
.y6_c01185{bottom:35.521935px;}
.y4_c01185{bottom:44.701035px;}
.y3_c01185{bottom:46.861500px;}
.y5_c01185{bottom:50.460600px;}
.y2_c01185{bottom:52.981935px;}
.y13_c01185{bottom:433.320420px;}
.y12_c01185{bottom:461.221800px;}
.y11_c01185{bottom:506.220750px;}
.y10_c01185{bottom:535.740420px;}
.yf_c01185{bottom:565.621035px;}
.ye_c01185{bottom:595.501650px;}
.yd_c01185{bottom:655.620435px;}
.yc_c01185{bottom:714.660915px;}
.yb_c01185{bottom:730.140750px;}
.ya_c01185{bottom:744.901470px;}
.y9_c01185{bottom:759.660420px;}
.y8_c01185{bottom:774.780390px;}
.y7_c01185{bottom:789.540990px;}
.y1_c01185{bottom:841.741515px;}
.h8_c01185{height:16.929932px;}
.hd_c01185{height:21.902344px;}
.hc_c01185{height:25.813477px;}
.hf_c01185{height:27.377930px;}
.he_c01185{height:28.160156px;}
.h10_c01185{height:28.722656px;}
.h11_c01185{height:28.907227px;}
.h13_c01185{height:28.942383px;}
.h12_c01185{height:29.724609px;}
.h23_c01185{height:31.289062px;}
.hb_c01185{height:32.853516px;}
.h15_c01185{height:36.281250px;}
.h18_c01185{height:37.546875px;}
.h14_c01185{height:37.792969px;}
.h17_c01185{height:39.304688px;}
.h16_c01185{height:40.766602px;}
.ha_c01185{height:44.165039px;}
.h20_c01185{height:51.626953px;}
.h7_c01185{height:52.409180px;}
.h24_c01185{height:54.470215px;}
.h19_c01185{height:55.177734px;}
.h22_c01185{height:55.206299px;}
.h1c_c01185{height:55.933594px;}
.h1d_c01185{height:56.332031px;}
.h1a_c01185{height:57.445312px;}
.h1e_c01185{height:58.201172px;}
.h1b_c01185{height:58.957031px;}
.h5_c01185{height:77.853516px;}
.h1f_c01185{height:78.222656px;}
.h2_c01185{height:79.365234px;}
.h6_c01185{height:80.969238px;}
.h3_c01185{height:81.632812px;}
.h1_c01185{height:82.388672px;}
.h4_c01185{height:83.144531px;}
.h21_c01185{height:90.493286px;}
.h9_c01185{height:96.379028px;}
.h27_c01185{height:126.720703px;}
.h26_c01185{height:144.711914px;}
.h25_c01185{height:157.227539px;}
.h0_c01185{height:892.500000px;}
.w0_c01185{width:1263.000000px;}
.x0_c01185{left:0.000000px;}
.xf_c01185{left:69.120000px;}
.xb_c01185{left:74.518665px;}
.x1_c01185{left:83.519685px;}
.xc_c01185{left:113.398665px;}
.x10_c01185{left:149.038950px;}
.x2_c01185{left:170.279250px;}
.x3_c01185{left:212.758500px;}
.x11_c01185{left:226.798950px;}
.x12_c01185{left:303.838950px;}
.x4_c01185{left:317.879535px;}
.x1a_c01185{left:327.239850px;}
.x1b_c01185{left:354.239850px;}
.x13_c01185{left:380.519685px;}
.x5_c01185{left:392.399820px;}
.x1c_c01185{left:398.879565px;}
.xd_c01185{left:438.118785px;}
.x6_c01185{left:442.078815px;}
.x14_c01185{left:457.918950px;}
.xe_c01185{left:481.319820px;}
.x1d_c01185{left:483.119385px;}
.x7_c01185{left:531.719100px;}
.x15_c01185{left:535.319820px;}
.x8_c01185{left:556.558635px;}
.x16_c01185{left:613.080000px;}
.x17_c01185{left:691.919535px;}
.x19_c01185{left:695.159370px;}
.x18_c01185{left:769.318815px;}
.x9_c01185{left:799.558590px;}
.xa_c01185{left:828.359805px;}
.x3a_c01185{left:923.759490px;}
.x25_c01185{left:929.878320px;}
.x3b_c01185{left:933.479190px;}
.x37_c01185{left:934.558590px;}
.x35_c01185{left:936.359805px;}
.x39_c01185{left:938.879520px;}
.x3c_c01185{left:950.759490px;}
.x26_c01185{left:952.199805px;}
.x2c_c01185{left:960.479190px;}
.x1e_c01185{left:967.319820px;}
.x38_c01185{left:968.758575px;}
.x3d_c01185{left:969.839535px;}
.x1f_c01185{left:984.598575px;}
.x32_c01185{left:1005.838905px;}
.x36_c01185{left:1007.279205px;}
.x33_c01185{left:1021.679070px;}
.x20_c01185{left:1024.918950px;}
.x2d_c01185{left:1027.079400px;}
.x2e_c01185{left:1043.278755px;}
.x21_c01185{left:1051.918950px;}
.x22_c01185{left:1065.959385px;}
.x34_c01185{left:1077.839535px;}
.x27_c01185{left:1084.678530px;}
.x28_c01185{left:1104.478635px;}
.x23_c01185{left:1127.879520px;}
.x24_c01185{left:1144.798920px;}
.x29_c01185{left:1161.000000px;}
.x2a_c01185{left:1176.838530px;}
.x2f_c01185{left:1183.679070px;}
.x30_c01185{left:1204.558590px;}
.x31_c01185{left:1215.000000px;}
.x2b_c01185{left:1216.438665px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.ls2b_c01185{letter-spacing:-12.975733pt;}
.ls24_c01185{letter-spacing:-12.519733pt;}
.lsd_c01185{letter-spacing:-10.383933pt;}
.ls35_c01185{letter-spacing:-7.398140pt;}
.ls2e_c01185{letter-spacing:-7.240267pt;}
.lsa_c01185{letter-spacing:-6.860700pt;}
.ls31_c01185{letter-spacing:-6.535400pt;}
.ls27_c01185{letter-spacing:-6.161067pt;}
.ls14_c01185{letter-spacing:-6.141333pt;}
.ls1b_c01185{letter-spacing:-5.562600pt;}
.lse_c01185{letter-spacing:-5.404000pt;}
.ls25_c01185{letter-spacing:-5.137600pt;}
.ls37_c01185{letter-spacing:-4.698000pt;}
.ls1d_c01185{letter-spacing:-4.482200pt;}
.ls20_c01185{letter-spacing:-4.109067pt;}
.ls3_c01185{letter-spacing:-3.831120pt;}
.ls22_c01185{letter-spacing:-3.617600pt;}
.ls26_c01185{letter-spacing:-3.473067pt;}
.ls8_c01185{letter-spacing:-3.430000pt;}
.ls32_c01185{letter-spacing:-3.295000pt;}
.ls30_c01185{letter-spacing:-3.234000pt;}
.ls2f_c01185{letter-spacing:-3.133333pt;}
.ls1e_c01185{letter-spacing:-3.090667pt;}
.ls34_c01185{letter-spacing:-3.083333pt;}
.ls18_c01185{letter-spacing:-2.992000pt;}
.ls2a_c01185{letter-spacing:-2.893067pt;}
.ls2d_c01185{letter-spacing:-2.736000pt;}
.ls36_c01185{letter-spacing:-2.702973pt;}
.ls11_c01185{letter-spacing:-2.488267pt;}
.ls12_c01185{letter-spacing:-2.251200pt;}
.ls1c_c01185{letter-spacing:-2.173093pt;}
.lsc_c01185{letter-spacing:-2.134000pt;}
.ls4_c01185{letter-spacing:-2.058000pt;}
.ls2c_c01185{letter-spacing:-1.976000pt;}
.ls13_c01185{letter-spacing:-1.856400pt;}
.ls16_c01185{letter-spacing:-1.666667pt;}
.ls10_c01185{letter-spacing:-1.610400pt;}
.ls19_c01185{letter-spacing:-1.601600pt;}
.ls5_c01185{letter-spacing:-1.598667pt;}
.ls1f_c01185{letter-spacing:-1.448560pt;}
.ls9_c01185{letter-spacing:-1.372700pt;}
.ls29_c01185{letter-spacing:-0.790533pt;}
.ls6_c01185{letter-spacing:-0.763400pt;}
.ls23_c01185{letter-spacing:-0.724533pt;}
.ls1a_c01185{letter-spacing:-0.630333pt;}
.ls7_c01185{letter-spacing:0.000000pt;}
.ls28_c01185{letter-spacing:0.724533pt;}
.ls21_c01185{letter-spacing:0.815733pt;}
.ls17_c01185{letter-spacing:1.305600pt;}
.ls2_c01185{letter-spacing:1.736000pt;}
.ls0_c01185{letter-spacing:2.173093pt;}
.ls33_c01185{letter-spacing:2.893067pt;}
.lsb_c01185{letter-spacing:3.241067pt;}
.lsf_c01185{letter-spacing:3.889200pt;}
.ls1_c01185{letter-spacing:7.267393pt;}
.ls15_c01185{letter-spacing:113.905200pt;}
.ws0_c01185{word-spacing:0.000000pt;}
._6_c01185{margin-left:-4.051017pt;}
._3_c01185{margin-left:-2.075929pt;}
._a_c01185{width:1.357982pt;}
._7_c01185{width:3.369420pt;}
._2_c01185{width:4.523071pt;}
._8_c01185{width:5.787813pt;}
._9_c01185{width:7.929073pt;}
._5_c01185{width:8.821313pt;}
._4_c01185{width:15.142269pt;}
._0_c01185{width:22.533412pt;}
._1_c01185{width:29.059127pt;}
.fs6_c01185{font-size:15.333333pt;}
.fsb_c01185{font-size:18.666667pt;}
.fsa_c01185{font-size:22.000000pt;}
.fsd_c01185{font-size:23.333333pt;}
.fsc_c01185{font-size:24.000000pt;}
.fs10_c01185{font-size:24.666667pt;}
.fse_c01185{font-size:25.333333pt;}
.fsf_c01185{font-size:26.000000pt;}
.fs1e_c01185{font-size:26.666667pt;}
.fs9_c01185{font-size:28.000000pt;}
.fs12_c01185{font-size:32.000000pt;}
.fs11_c01185{font-size:33.333333pt;}
.fs14_c01185{font-size:34.666667pt;}
.fs13_c01185{font-size:36.666667pt;}
.fs8_c01185{font-size:40.000000pt;}
.fs1b_c01185{font-size:44.000000pt;}
.fs5_c01185{font-size:44.666667pt;}
.fs15_c01185{font-size:48.666667pt;}
.fs18_c01185{font-size:49.333333pt;}
.fs1d_c01185{font-size:50.000000pt;}
.fs16_c01185{font-size:50.666667pt;}
.fs19_c01185{font-size:51.333333pt;}
.fs17_c01185{font-size:52.000000pt;}
.fs1a_c01185{font-size:66.666667pt;}
.fs4_c01185{font-size:68.666667pt;}
.fs1_c01185{font-size:70.000000pt;}
.fs2_c01185{font-size:72.000000pt;}
.fs0_c01185{font-size:72.666667pt;}
.fs3_c01185{font-size:73.333333pt;}
.fs1c_c01185{font-size:82.000000pt;}
.fs7_c01185{font-size:87.333333pt;}
.fs21_c01185{font-size:108.000000pt;}
.fs20_c01185{font-size:123.333333pt;}
.fs1f_c01185{font-size:134.000000pt;}
.y0_c01185{bottom:0.000000pt;}
.y6_c01185{bottom:31.575053pt;}
.y4_c01185{bottom:39.734253pt;}
.y3_c01185{bottom:41.654667pt;}
.y5_c01185{bottom:44.853867pt;}
.y2_c01185{bottom:47.095053pt;}
.y13_c01185{bottom:385.173707pt;}
.y12_c01185{bottom:409.974933pt;}
.y11_c01185{bottom:449.974000pt;}
.y10_c01185{bottom:476.213707pt;}
.yf_c01185{bottom:502.774253pt;}
.ye_c01185{bottom:529.334800pt;}
.yd_c01185{bottom:582.773720pt;}
.yc_c01185{bottom:635.254147pt;}
.yb_c01185{bottom:649.014000pt;}
.ya_c01185{bottom:662.134640pt;}
.y9_c01185{bottom:675.253707pt;}
.y8_c01185{bottom:688.693680pt;}
.y7_c01185{bottom:701.814213pt;}
.y1_c01185{bottom:748.214680pt;}
.h8_c01185{height:15.048828pt;}
.hd_c01185{height:19.468750pt;}
.hc_c01185{height:22.945312pt;}
.hf_c01185{height:24.335938pt;}
.he_c01185{height:25.031250pt;}
.h10_c01185{height:25.531250pt;}
.h11_c01185{height:25.695312pt;}
.h13_c01185{height:25.726562pt;}
.h12_c01185{height:26.421875pt;}
.h23_c01185{height:27.812500pt;}
.hb_c01185{height:29.203125pt;}
.h15_c01185{height:32.250000pt;}
.h18_c01185{height:33.375000pt;}
.h14_c01185{height:33.593750pt;}
.h17_c01185{height:34.937500pt;}
.h16_c01185{height:36.236979pt;}
.ha_c01185{height:39.257812pt;}
.h20_c01185{height:45.890625pt;}
.h7_c01185{height:46.585938pt;}
.h24_c01185{height:48.417969pt;}
.h19_c01185{height:49.046875pt;}
.h22_c01185{height:49.072266pt;}
.h1c_c01185{height:49.718750pt;}
.h1d_c01185{height:50.072917pt;}
.h1a_c01185{height:51.062500pt;}
.h1e_c01185{height:51.734375pt;}
.h1b_c01185{height:52.406250pt;}
.h5_c01185{height:69.203125pt;}
.h1f_c01185{height:69.531250pt;}
.h2_c01185{height:70.546875pt;}
.h6_c01185{height:71.972656pt;}
.h3_c01185{height:72.562500pt;}
.h1_c01185{height:73.234375pt;}
.h4_c01185{height:73.906250pt;}
.h21_c01185{height:80.438477pt;}
.h9_c01185{height:85.670247pt;}
.h27_c01185{height:112.640625pt;}
.h26_c01185{height:128.632812pt;}
.h25_c01185{height:139.757812pt;}
.h0_c01185{height:793.333333pt;}
.w0_c01185{width:1122.666667pt;}
.x0_c01185{left:0.000000pt;}
.xf_c01185{left:61.440000pt;}
.xb_c01185{left:66.238813pt;}
.x1_c01185{left:74.239720pt;}
.xc_c01185{left:100.798813pt;}
.x10_c01185{left:132.479067pt;}
.x2_c01185{left:151.359333pt;}
.x3_c01185{left:189.118667pt;}
.x11_c01185{left:201.599067pt;}
.x12_c01185{left:270.079067pt;}
.x4_c01185{left:282.559587pt;}
.x1a_c01185{left:290.879867pt;}
.x1b_c01185{left:314.879867pt;}
.x13_c01185{left:338.239720pt;}
.x5_c01185{left:348.799840pt;}
.x1c_c01185{left:354.559613pt;}
.xd_c01185{left:389.438920pt;}
.x6_c01185{left:392.958947pt;}
.x14_c01185{left:407.039067pt;}
.xe_c01185{left:427.839840pt;}
.x1d_c01185{left:429.439453pt;}
.x7_c01185{left:472.639200pt;}
.x15_c01185{left:475.839840pt;}
.x8_c01185{left:494.718787pt;}
.x16_c01185{left:544.960000pt;}
.x17_c01185{left:615.039587pt;}
.x19_c01185{left:617.919440pt;}
.x18_c01185{left:683.838947pt;}
.x9_c01185{left:710.718747pt;}
.xa_c01185{left:736.319827pt;}
.x3a_c01185{left:821.119547pt;}
.x25_c01185{left:826.558507pt;}
.x3b_c01185{left:829.759280pt;}
.x37_c01185{left:830.718747pt;}
.x35_c01185{left:832.319827pt;}
.x39_c01185{left:834.559573pt;}
.x3c_c01185{left:845.119547pt;}
.x26_c01185{left:846.399827pt;}
.x2c_c01185{left:853.759280pt;}
.x1e_c01185{left:859.839840pt;}
.x38_c01185{left:861.118733pt;}
.x3d_c01185{left:862.079587pt;}
.x1f_c01185{left:875.198733pt;}
.x32_c01185{left:894.079027pt;}
.x36_c01185{left:895.359293pt;}
.x33_c01185{left:908.159173pt;}
.x20_c01185{left:911.039067pt;}
.x2d_c01185{left:912.959467pt;}
.x2e_c01185{left:927.358893pt;}
.x21_c01185{left:935.039067pt;}
.x22_c01185{left:947.519453pt;}
.x34_c01185{left:958.079587pt;}
.x27_c01185{left:964.158693pt;}
.x28_c01185{left:981.758787pt;}
.x23_c01185{left:1002.559573pt;}
.x24_c01185{left:1017.599040pt;}
.x29_c01185{left:1032.000000pt;}
.x2a_c01185{left:1046.078693pt;}
.x2f_c01185{left:1052.159173pt;}
.x30_c01185{left:1070.718747pt;}
.x31_c01185{left:1080.000000pt;}
.x2b_c01185{left:1081.278813pt;}
}





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

.ir_c01186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_77b2905357418158b5252bd0.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01186;src:url('chunks/assets/font_08420f6d0d86aa695eee041f.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01186;src:url('chunks/assets/font_35753cf30ae7f6620d7514ce.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01186;src:url('chunks/assets/font_f02d7e62e12efca816deb43d.woff2')format("woff");}.ff4_c01186{font-family:ff4_c01186;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01186;src:url('chunks/assets/font_8a03b0f8efa91311b82588f0.woff2')format("woff");}.ff5_c01186{font-family:ff5_c01186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01186;src:url('chunks/assets/font_ab1c0404597160e31d302ff8.woff2')format("woff");}.ff6_c01186{font-family:ff6_c01186;line-height:1.311035;font-style:normal;font-weight: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_c01186;src:url('chunks/assets/font_24c37be67cd26c14789f5618.woff2')format("woff");}.ff7_c01186{font-family:ff7_c01186;line-height:1.281250;font-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_c01186{transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112745,0.000000,0.000000,0.250000,0,0);}
.m2a_c01186{transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117188,0.000000,0.000000,0.250000,0,0);}
.m25_c01186{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.ma_c01186{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);}
.m2c_c01186{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.md_c01186{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m26_c01186{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m0_c01186{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m9_c01186{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m24_c01186{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.m2_c01186{transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223790,0.000000,0.000000,0.250000,0,0);}
.m29_c01186{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1a_c01186{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m20_c01186{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.mf_c01186{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m1c_c01186{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m16_c01186{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m19_c01186{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m1e_c01186{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m15_c01186{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m22_c01186{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m3_c01186{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m1b_c01186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01186{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m21_c01186{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.mb_c01186{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m23_c01186{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m2e_c01186{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m2f_c01186{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m18_c01186{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m28_c01186{transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267442,0.000000,0.000000,0.250000,0,0);}
.m13_c01186{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m11_c01186{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m2b_c01186{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m14_c01186{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m1d_c01186{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.m17_c01186{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m7_c01186{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m12_c01186{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_c01186{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.m2d_c01186{transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);}
.m8_c01186{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.me_c01186{transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);}
.m1_c01186{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m10_c01186{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m27_c01186{transform:matrix(0.341549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341549,0.000000,0.000000,0.250000,0,0);}
.m4_c01186{transform:matrix(9.019531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.019531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.019531,0.000000,0.000000,0.250000,0,0);}
.m5_c01186{transform:matrix(17.101562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(17.101562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(17.101562,0.000000,0.000000,0.250000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.ls26_c01186{letter-spacing:-17.693550px;}
.ls1e_c01186{letter-spacing:-12.822615px;}
.ls2b_c01186{letter-spacing:-9.196200px;}
.ls2f_c01186{letter-spacing:-8.645025px;}
.ls27_c01186{letter-spacing:-8.238000px;}
.ls1a_c01186{letter-spacing:-7.922325px;}
.ls21_c01186{letter-spacing:-7.840125px;}
.ls25_c01186{letter-spacing:-7.312500px;}
.ls1f_c01186{letter-spacing:-6.481853px;}
.lsc_c01186{letter-spacing:-5.164275px;}
.ls30_c01186{letter-spacing:-5.094863px;}
.ls19_c01186{letter-spacing:-5.042475px;}
.ls1d_c01186{letter-spacing:-4.498725px;}
.ls1b_c01186{letter-spacing:-4.319775px;}
.ls20_c01186{letter-spacing:-4.066875px;}
.ls15_c01186{letter-spacing:-3.602550px;}
.ls2c_c01186{letter-spacing:-3.417660px;}
.ls7_c01186{letter-spacing:-3.388800px;}
.ls2d_c01186{letter-spacing:-3.275258px;}
.lsb_c01186{letter-spacing:-2.928000px;}
.ls31_c01186{letter-spacing:-2.884200px;}
.ls16_c01186{letter-spacing:-2.879850px;}
.ls2a_c01186{letter-spacing:-2.805750px;}
.ls9_c01186{letter-spacing:-2.532600px;}
.ls23_c01186{letter-spacing:-2.442825px;}
.lsd_c01186{letter-spacing:-2.422350px;}
.ls22_c01186{letter-spacing:-2.222415px;}
.ls14_c01186{letter-spacing:-2.163173px;}
.ls2_c01186{letter-spacing:-1.927800px;}
.ls18_c01186{letter-spacing:-1.440473px;}
.ls8_c01186{letter-spacing:-1.298700px;}
.ls28_c01186{letter-spacing:-0.866400px;}
.ls3_c01186{letter-spacing:-0.850500px;}
.ls1c_c01186{letter-spacing:-0.815228px;}
.ls13_c01186{letter-spacing:-0.800528px;}
.ls24_c01186{letter-spacing:-0.739200px;}
.ls17_c01186{letter-spacing:-0.722700px;}
.ls10_c01186{letter-spacing:-0.698100px;}
.lsf_c01186{letter-spacing:-0.671250px;}
.ls4_c01186{letter-spacing:0.000000px;}
.ls11_c01186{letter-spacing:0.684675px;}
.ls12_c01186{letter-spacing:0.780300px;}
.ls0_c01186{letter-spacing:0.850500px;}
.ls2e_c01186{letter-spacing:1.440473px;}
.ls6_c01186{letter-spacing:1.709100px;}
.ls5_c01186{letter-spacing:5.119200px;}
.ls29_c01186{letter-spacing:5.490075px;}
.lsa_c01186{letter-spacing:7.999350px;}
.ls1_c01186{letter-spacing:17.049690px;}
.lse_c01186{letter-spacing:109.538775px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01186{word-spacing:0.000000px;}
._d_c01186{margin-left:-6.461019px;}
._e_c01186{margin-left:-2.201238px;}
._5_c01186{width:1.801448px;}
._7_c01186{width:3.192386px;}
._c_c01186{width:4.491949px;}
._a_c01186{width:6.813868px;}
._6_c01186{width:8.531462px;}
._4_c01186{width:9.740947px;}
._8_c01186{width:12.248929px;}
._b_c01186{width:14.601710px;}
._1_c01186{width:17.965953px;}
._3_c01186{width:19.044471px;}
._2_c01186{width:20.536552px;}
._9_c01186{width:25.327119px;}
._0_c01186{width:36.101427px;}
.fc0_c01186{color:transparent;}
.fs9_c01186{font-size:15.000000px;}
.fs12_c01186{font-size:21.000000px;}
.fse_c01186{font-size:22.500000px;}
.fs4_c01186{font-size:24.000000px;}
.fs6_c01186{font-size:25.500000px;}
.fs8_c01186{font-size:27.000000px;}
.fsc_c01186{font-size:27.750000px;}
.fsb_c01186{font-size:28.500000px;}
.fs7_c01186{font-size:29.250000px;}
.fsa_c01186{font-size:30.000000px;}
.fsd_c01186{font-size:31.500000px;}
.fs11_c01186{font-size:35.250000px;}
.fsf_c01186{font-size:37.500000px;}
.fs5_c01186{font-size:38.250000px;}
.fs10_c01186{font-size:39.000000px;}
.fs3_c01186{font-size:48.000000px;}
.fs1f_c01186{font-size:48.750000px;}
.fs17_c01186{font-size:51.750000px;}
.fs1b_c01186{font-size:53.250000px;}
.fs1d_c01186{font-size:54.000000px;}
.fs13_c01186{font-size:54.750000px;}
.fs16_c01186{font-size:56.250000px;}
.fs1a_c01186{font-size:57.000000px;}
.fs14_c01186{font-size:57.750000px;}
.fs15_c01186{font-size:58.500000px;}
.fs19_c01186{font-size:60.000000px;}
.fs18_c01186{font-size:61.500000px;}
.fs1c_c01186{font-size:64.500000px;}
.fs1e_c01186{font-size:72.000000px;}
.fs0_c01186{font-size:81.000000px;}
.fs2_c01186{font-size:82.500000px;}
.fs1_c01186{font-size:93.000000px;}
.y0_c01186{bottom:0.000000px;}
.y9_c01186{bottom:38.221185px;}
.y7_c01186{bottom:45.421185px;}
.y6_c01186{bottom:46.859850px;}
.y4_c01186{bottom:48.661035px;}
.y8_c01186{bottom:51.900900px;}
.y5_c01186{bottom:54.061335px;}
.y3_c01186{bottom:55.500000px;}
.y2_c01186{bottom:70.980900px;}
.y23_c01186{bottom:251.699850px;}
.y22_c01186{bottom:281.940585px;}
.y21_c01186{bottom:312.181680px;}
.y20_c01186{bottom:341.701425px;}
.y1f_c01186{bottom:371.941290px;}
.y1d_c01186{bottom:401.819640px;}
.y1e_c01186{bottom:401.819820px;}
.y1c_c01186{bottom:431.700900px;}
.y1b_c01186{bottom:461.582160px;}
.y1a_c01186{bottom:491.460705px;}
.y19_c01186{bottom:535.381170px;}
.y18_c01186{bottom:565.260135px;}
.y17_c01186{bottom:579.659820px;}
.y16_c01186{bottom:595.140750px;}
.y15_c01186{bottom:625.380570px;}
.y14_c01186{bottom:685.140105px;}
.y13_c01186{bottom:700.260135px;}
.y12_c01186{bottom:715.020720px;}
.y11_c01186{bottom:715.021545px;}
.y10_c01186{bottom:730.140750px;}
.yf_c01186{bottom:745.260720px;}
.ye_c01186{bottom:745.261365px;}
.yd_c01186{bottom:760.380570px;}
.yc_c01186{bottom:760.381350px;}
.yb_c01186{bottom:775.141935px;}
.ya_c01186{bottom:790.261140px;}
.y1_c01186{bottom:844.979640px;}
.ha_c01186{height:14.721680px;}
.h15_c01186{height:20.600098px;}
.h10_c01186{height:23.466797px;}
.h5_c01186{height:25.031250px;}
.h7_c01186{height:26.595703px;}
.he_c01186{height:27.235107px;}
.hd_c01186{height:27.971191px;}
.h9_c01186{height:28.160156px;}
.h8_c01186{height:28.692993px;}
.hb_c01186{height:29.648438px;}
.hc_c01186{height:29.724609px;}
.hf_c01186{height:31.130859px;}
.h14_c01186{height:36.764648px;}
.h12_c01186{height:37.792969px;}
.h11_c01186{height:38.548828px;}
.h13_c01186{height:39.304688px;}
.h6_c01186{height:39.893555px;}
.h4_c01186{height:50.062500px;}
.h24_c01186{height:50.844727px;}
.h22_c01186{height:52.998047px;}
.h16_c01186{height:53.734131px;}
.h1b_c01186{height:53.973633px;}
.h17_c01186{height:55.177734px;}
.h1a_c01186{height:55.206299px;}
.h20_c01186{height:55.538086px;}
.h25_c01186{height:55.942383px;}
.h18_c01186{height:56.678467px;}
.h1c_c01186{height:57.414551px;}
.h1f_c01186{height:57.445312px;}
.h19_c01186{height:57.814453px;}
.h1e_c01186{height:59.296875px;}
.h1d_c01186{height:60.328857px;}
.h21_c01186{height:67.271484px;}
.h23_c01186{height:75.093750px;}
.h1_c01186{height:79.497070px;}
.h3_c01186{height:80.969238px;}
.h2_c01186{height:91.910156px;}
.h0_c01186{height:892.500000px;}
.w0_c01186{width:1263.000000px;}
.x0_c01186{left:0.000000px;}
.x9_c01186{left:86.398665px;}
.x1_c01186{left:88.199850px;}
.xb_c01186{left:150.479250px;}
.xa_c01186{left:153.359850px;}
.x2_c01186{left:175.318800px;}
.x3_c01186{left:216.718500px;}
.xc_c01186{left:227.878350px;}
.xe_c01186{left:300.239850px;}
.xd_c01186{left:304.918350px;}
.x4_c01186{left:322.198785px;}
.x15_c01186{left:348.478635px;}
.x16_c01186{left:375.119385px;}
.xf_c01186{left:381.599100px;}
.x5_c01186{left:397.080000px;}
.x17_c01186{left:420.479235px;}
.x10_c01186{left:459.359250px;}
.x18_c01186{left:460.438665px;}
.x6_c01186{left:481.679070px;}
.x19_c01186{left:506.518620px;}
.x7_c01186{left:508.679070px;}
.x11_c01186{left:538.918950px;}
.x1a_c01186{left:557.639700px;}
.x12_c01186{left:614.879520px;}
.x8_c01186{left:659.159820px;}
.x13_c01186{left:694.080000px;}
.x14_c01186{left:697.319820px;}
.x1b_c01186{left:772.199340px;}
.x33_c01186{left:924.479640px;}
.x1f_c01186{left:925.558590px;}
.x38_c01186{left:927.358605px;}
.x3b_c01186{left:930.959385px;}
.x37_c01186{left:932.759040px;}
.x28_c01186{left:949.678530px;}
.x3e_c01186{left:961.198215px;}
.x36_c01186{left:962.278755px;}
.x1c_c01186{left:963.719055px;}
.x2a_c01186{left:974.158815px;}
.x2b_c01186{left:994.679070px;}
.x39_c01186{left:999.718500px;}
.x34_c01186{left:1018.798560px;}
.x3c_c01186{left:1020.238770px;}
.x3d_c01186{left:1036.798920px;}
.x1d_c01186{left:1039.679715px;}
.x2c_c01186{left:1042.919490px;}
.x20_c01186{left:1047.238770px;}
.x29_c01186{left:1058.398590px;}
.x3a_c01186{left:1061.999355px;}
.x2d_c01186{left:1063.439670px;}
.x31_c01186{left:1069.199340px;}
.x21_c01186{left:1073.879520px;}
.x1e_c01186{left:1078.198785px;}
.x35_c01186{left:1082.519715px;}
.x24_c01186{left:1088.999355px;}
.x22_c01186{left:1115.638545px;}
.x2e_c01186{left:1126.798560px;}
.x23_c01186{left:1130.399235px;}
.x25_c01186{left:1136.878875px;}
.x2f_c01186{left:1140.118740px;}
.x26_c01186{left:1159.559685px;}
.x30_c01186{left:1162.079400px;}
.x27_c01186{left:1191.958275px;}
.x32_c01186{left:1209.238770px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls26_c01186{letter-spacing:-15.727600pt;}
.ls1e_c01186{letter-spacing:-11.397880pt;}
.ls2b_c01186{letter-spacing:-8.174400pt;}
.ls2f_c01186{letter-spacing:-7.684467pt;}
.ls27_c01186{letter-spacing:-7.322667pt;}
.ls1a_c01186{letter-spacing:-7.042067pt;}
.ls21_c01186{letter-spacing:-6.969000pt;}
.ls25_c01186{letter-spacing:-6.500000pt;}
.ls1f_c01186{letter-spacing:-5.761647pt;}
.lsc_c01186{letter-spacing:-4.590467pt;}
.ls30_c01186{letter-spacing:-4.528767pt;}
.ls19_c01186{letter-spacing:-4.482200pt;}
.ls1d_c01186{letter-spacing:-3.998867pt;}
.ls1b_c01186{letter-spacing:-3.839800pt;}
.ls20_c01186{letter-spacing:-3.615000pt;}
.ls15_c01186{letter-spacing:-3.202267pt;}
.ls2c_c01186{letter-spacing:-3.037920pt;}
.ls7_c01186{letter-spacing:-3.012267pt;}
.ls2d_c01186{letter-spacing:-2.911340pt;}
.lsb_c01186{letter-spacing:-2.602667pt;}
.ls31_c01186{letter-spacing:-2.563733pt;}
.ls16_c01186{letter-spacing:-2.559867pt;}
.ls2a_c01186{letter-spacing:-2.494000pt;}
.ls9_c01186{letter-spacing:-2.251200pt;}
.ls23_c01186{letter-spacing:-2.171400pt;}
.lsd_c01186{letter-spacing:-2.153200pt;}
.ls22_c01186{letter-spacing:-1.975480pt;}
.ls14_c01186{letter-spacing:-1.922820pt;}
.ls2_c01186{letter-spacing:-1.713600pt;}
.ls18_c01186{letter-spacing:-1.280420pt;}
.ls8_c01186{letter-spacing:-1.154400pt;}
.ls28_c01186{letter-spacing:-0.770133pt;}
.ls3_c01186{letter-spacing:-0.756000pt;}
.ls1c_c01186{letter-spacing:-0.724647pt;}
.ls13_c01186{letter-spacing:-0.711580pt;}
.ls24_c01186{letter-spacing:-0.657067pt;}
.ls17_c01186{letter-spacing:-0.642400pt;}
.ls10_c01186{letter-spacing:-0.620533pt;}
.lsf_c01186{letter-spacing:-0.596667pt;}
.ls4_c01186{letter-spacing:0.000000pt;}
.ls11_c01186{letter-spacing:0.608600pt;}
.ls12_c01186{letter-spacing:0.693600pt;}
.ls0_c01186{letter-spacing:0.756000pt;}
.ls2e_c01186{letter-spacing:1.280420pt;}
.ls6_c01186{letter-spacing:1.519200pt;}
.ls5_c01186{letter-spacing:4.550400pt;}
.ls29_c01186{letter-spacing:4.880067pt;}
.lsa_c01186{letter-spacing:7.110533pt;}
.ls1_c01186{letter-spacing:15.155280pt;}
.lse_c01186{letter-spacing:97.367800pt;}
.ws0_c01186{word-spacing:0.000000pt;}
._d_c01186{margin-left:-5.743128pt;}
._e_c01186{margin-left:-1.956656pt;}
._5_c01186{width:1.601287pt;}
._7_c01186{width:2.837676pt;}
._c_c01186{width:3.992844pt;}
._a_c01186{width:6.056772pt;}
._6_c01186{width:7.583522pt;}
._4_c01186{width:8.658620pt;}
._8_c01186{width:10.887937pt;}
._b_c01186{width:12.979298pt;}
._1_c01186{width:15.969736pt;}
._3_c01186{width:16.928418pt;}
._2_c01186{width:18.254713pt;}
._9_c01186{width:22.512995pt;}
._0_c01186{width:32.090157pt;}
.fs9_c01186{font-size:13.333333pt;}
.fs12_c01186{font-size:18.666667pt;}
.fse_c01186{font-size:20.000000pt;}
.fs4_c01186{font-size:21.333333pt;}
.fs6_c01186{font-size:22.666667pt;}
.fs8_c01186{font-size:24.000000pt;}
.fsc_c01186{font-size:24.666667pt;}
.fsb_c01186{font-size:25.333333pt;}
.fs7_c01186{font-size:26.000000pt;}
.fsa_c01186{font-size:26.666667pt;}
.fsd_c01186{font-size:28.000000pt;}
.fs11_c01186{font-size:31.333333pt;}
.fsf_c01186{font-size:33.333333pt;}
.fs5_c01186{font-size:34.000000pt;}
.fs10_c01186{font-size:34.666667pt;}
.fs3_c01186{font-size:42.666667pt;}
.fs1f_c01186{font-size:43.333333pt;}
.fs17_c01186{font-size:46.000000pt;}
.fs1b_c01186{font-size:47.333333pt;}
.fs1d_c01186{font-size:48.000000pt;}
.fs13_c01186{font-size:48.666667pt;}
.fs16_c01186{font-size:50.000000pt;}
.fs1a_c01186{font-size:50.666667pt;}
.fs14_c01186{font-size:51.333333pt;}
.fs15_c01186{font-size:52.000000pt;}
.fs19_c01186{font-size:53.333333pt;}
.fs18_c01186{font-size:54.666667pt;}
.fs1c_c01186{font-size:57.333333pt;}
.fs1e_c01186{font-size:64.000000pt;}
.fs0_c01186{font-size:72.000000pt;}
.fs2_c01186{font-size:73.333333pt;}
.fs1_c01186{font-size:82.666667pt;}
.y0_c01186{bottom:0.000000pt;}
.y9_c01186{bottom:33.974387pt;}
.y7_c01186{bottom:40.374387pt;}
.y6_c01186{bottom:41.653200pt;}
.y4_c01186{bottom:43.254253pt;}
.y8_c01186{bottom:46.134133pt;}
.y5_c01186{bottom:48.054520pt;}
.y3_c01186{bottom:49.333333pt;}
.y2_c01186{bottom:63.094133pt;}
.y23_c01186{bottom:223.733200pt;}
.y22_c01186{bottom:250.613853pt;}
.y21_c01186{bottom:277.494827pt;}
.y20_c01186{bottom:303.734600pt;}
.y1f_c01186{bottom:330.614480pt;}
.y1d_c01186{bottom:357.173013pt;}
.y1e_c01186{bottom:357.173173pt;}
.y1c_c01186{bottom:383.734133pt;}
.y1b_c01186{bottom:410.295253pt;}
.y1a_c01186{bottom:436.853960pt;}
.y19_c01186{bottom:475.894373pt;}
.y18_c01186{bottom:502.453453pt;}
.y17_c01186{bottom:515.253173pt;}
.y16_c01186{bottom:529.014000pt;}
.y15_c01186{bottom:555.893840pt;}
.y14_c01186{bottom:609.013427pt;}
.y13_c01186{bottom:622.453453pt;}
.y12_c01186{bottom:635.573973pt;}
.y11_c01186{bottom:635.574707pt;}
.y10_c01186{bottom:649.014000pt;}
.yf_c01186{bottom:662.453973pt;}
.ye_c01186{bottom:662.454547pt;}
.yd_c01186{bottom:675.893840pt;}
.yc_c01186{bottom:675.894533pt;}
.yb_c01186{bottom:689.015053pt;}
.ya_c01186{bottom:702.454347pt;}
.y1_c01186{bottom:751.093013pt;}
.ha_c01186{height:13.085938pt;}
.h15_c01186{height:18.311198pt;}
.h10_c01186{height:20.859375pt;}
.h5_c01186{height:22.250000pt;}
.h7_c01186{height:23.640625pt;}
.he_c01186{height:24.208984pt;}
.hd_c01186{height:24.863281pt;}
.h9_c01186{height:25.031250pt;}
.h8_c01186{height:25.504883pt;}
.hb_c01186{height:26.354167pt;}
.hc_c01186{height:26.421875pt;}
.hf_c01186{height:27.671875pt;}
.h14_c01186{height:32.679688pt;}
.h12_c01186{height:33.593750pt;}
.h11_c01186{height:34.265625pt;}
.h13_c01186{height:34.937500pt;}
.h6_c01186{height:35.460938pt;}
.h4_c01186{height:44.500000pt;}
.h24_c01186{height:45.195312pt;}
.h22_c01186{height:47.109375pt;}
.h16_c01186{height:47.763672pt;}
.h1b_c01186{height:47.976562pt;}
.h17_c01186{height:49.046875pt;}
.h1a_c01186{height:49.072266pt;}
.h20_c01186{height:49.367188pt;}
.h25_c01186{height:49.726562pt;}
.h18_c01186{height:50.380859pt;}
.h1c_c01186{height:51.035156pt;}
.h1f_c01186{height:51.062500pt;}
.h19_c01186{height:51.390625pt;}
.h1e_c01186{height:52.708333pt;}
.h1d_c01186{height:53.625651pt;}
.h21_c01186{height:59.796875pt;}
.h23_c01186{height:66.750000pt;}
.h1_c01186{height:70.664062pt;}
.h3_c01186{height:71.972656pt;}
.h2_c01186{height:81.697917pt;}
.h0_c01186{height:793.333333pt;}
.w0_c01186{width:1122.666667pt;}
.x0_c01186{left:0.000000pt;}
.x9_c01186{left:76.798813pt;}
.x1_c01186{left:78.399867pt;}
.xb_c01186{left:133.759333pt;}
.xa_c01186{left:136.319867pt;}
.x2_c01186{left:155.838933pt;}
.x3_c01186{left:192.638667pt;}
.xc_c01186{left:202.558533pt;}
.xe_c01186{left:266.879867pt;}
.xd_c01186{left:271.038533pt;}
.x4_c01186{left:286.398920pt;}
.x15_c01186{left:309.758787pt;}
.x16_c01186{left:333.439453pt;}
.xf_c01186{left:339.199200pt;}
.x5_c01186{left:352.960000pt;}
.x17_c01186{left:373.759320pt;}
.x10_c01186{left:408.319333pt;}
.x18_c01186{left:409.278813pt;}
.x6_c01186{left:428.159173pt;}
.x19_c01186{left:450.238773pt;}
.x7_c01186{left:452.159173pt;}
.x11_c01186{left:479.039067pt;}
.x1a_c01186{left:495.679733pt;}
.x12_c01186{left:546.559573pt;}
.x8_c01186{left:585.919840pt;}
.x13_c01186{left:616.960000pt;}
.x14_c01186{left:619.839840pt;}
.x1b_c01186{left:686.399413pt;}
.x33_c01186{left:821.759680pt;}
.x1f_c01186{left:822.718747pt;}
.x38_c01186{left:824.318760pt;}
.x3b_c01186{left:827.519453pt;}
.x37_c01186{left:829.119147pt;}
.x28_c01186{left:844.158693pt;}
.x3e_c01186{left:854.398413pt;}
.x36_c01186{left:855.358893pt;}
.x1c_c01186{left:856.639160pt;}
.x2a_c01186{left:865.918947pt;}
.x2b_c01186{left:884.159173pt;}
.x39_c01186{left:888.638667pt;}
.x34_c01186{left:905.598720pt;}
.x3c_c01186{left:906.878907pt;}
.x3d_c01186{left:921.599040pt;}
.x1d_c01186{left:924.159747pt;}
.x2c_c01186{left:927.039547pt;}
.x20_c01186{left:930.878907pt;}
.x29_c01186{left:940.798747pt;}
.x3a_c01186{left:943.999427pt;}
.x2d_c01186{left:945.279707pt;}
.x31_c01186{left:950.399413pt;}
.x21_c01186{left:954.559573pt;}
.x1e_c01186{left:958.398920pt;}
.x35_c01186{left:962.239747pt;}
.x24_c01186{left:967.999427pt;}
.x22_c01186{left:991.678707pt;}
.x2e_c01186{left:1001.598720pt;}
.x23_c01186{left:1004.799320pt;}
.x25_c01186{left:1010.559000pt;}
.x2f_c01186{left:1013.438880pt;}
.x26_c01186{left:1030.719720pt;}
.x30_c01186{left:1032.959467pt;}
.x27_c01186{left:1059.518467pt;}
.x32_c01186{left:1074.878907pt;}
}





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

.ir_c01187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_2bae9f1b464821c1c7803ac9.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01187;src:url('chunks/assets/font_1e644ff69da74135ce918d79.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01187;src:url('chunks/assets/font_b6b1e4b52c42f23e216d33fb.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01187;src:url('chunks/assets/font_c4bad57d2109dd0e82a14794.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01187;src:url('chunks/assets/font_1d61a6dbb909e12321d67cd8.woff2')format("woff");}.ff5_c01187{font-family:ff5_c01187;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01187;src:url('chunks/assets/font_4e7b083710ad5f67225484fa.woff2')format("woff");}.ff6_c01187{font-family:ff6_c01187;line-height:1.364746;font-style:normal;font-weight: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_c01187;src:url('chunks/assets/font_a1cc9c837fa61c83c52f6e3d.woff2')format("woff");}.ff7_c01187{font-family:ff7_c01187;line-height:1.432129;font-style:normal;font-weight: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_c01187;src:url('chunks/assets/font_4bff98261867a4676911f588.woff2')format("woff");}.ff8_c01187{font-family:ff8_c01187;line-height:1.284668;font-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_c01187{transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188679,0.000000,0.000000,0.250000,0,0);}
.ma_c01187{transform:matrix(0.212598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212598,0.000000,0.000000,0.250000,0,0);}
.m8_c01187{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m18_c01187{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m27_c01187{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m3_c01187{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.m7_c01187{transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224609,0.000000,0.000000,0.250000,0,0);}
.m2_c01187{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m1f_c01187{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m22_c01187{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m6_c01187{transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231982,0.000000,0.000000,0.250000,0,0);}
.m25_c01187{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m9_c01187{transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235417,0.000000,0.000000,0.250000,0,0);}
.m2a_c01187{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1e_c01187{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m4_c01187{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.mc_c01187{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);}
.m23_c01187{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5_c01187{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m26_c01187{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m1a_c01187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01187{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m0_c01187{transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);}
.m20_c01187{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m1_c01187{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m1b_c01187{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m1c_c01187{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m29_c01187{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.mf_c01187{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m24_c01187{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m12_c01187{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m16_c01187{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m21_c01187{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m19_c01187{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m2b_c01187{transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);}
.m13_c01187{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m17_c01187{transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);}
.mb_c01187{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m15_c01187{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m28_c01187{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m14_c01187{transform:matrix(0.348684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348684,0.000000,0.000000,0.250000,0,0);}
.m11_c01187{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);}
.me_c01187{transform:matrix(0.401007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401007,0.000000,0.000000,0.250000,0,0);}
.md_c01187{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);}
.v0_c01187{vertical-align:0.000000px;}
.lsa_c01187{letter-spacing:-23.094900px;}
.lsb_c01187{letter-spacing:-16.754475px;}
.ls34_c01187{letter-spacing:-15.051938px;}
.ls2_c01187{letter-spacing:-13.779450px;}
.lse_c01187{letter-spacing:-13.556392px;}
.lsf_c01187{letter-spacing:-11.925000px;}
.ls36_c01187{letter-spacing:-9.763808px;}
.ls1_c01187{letter-spacing:-9.597600px;}
.ls2f_c01187{letter-spacing:-8.435700px;}
.ls1b_c01187{letter-spacing:-7.922325px;}
.ls31_c01187{letter-spacing:-7.919438px;}
.ls2e_c01187{letter-spacing:-7.582875px;}
.ls37_c01187{letter-spacing:-7.132500px;}
.ls32_c01187{letter-spacing:-6.468750px;}
.ls2d_c01187{letter-spacing:-6.078150px;}
.ls7_c01187{letter-spacing:-5.660168px;}
.ls9_c01187{letter-spacing:-5.254200px;}
.ls1a_c01187{letter-spacing:-5.060175px;}
.ls15_c01187{letter-spacing:-4.800600px;}
.ls26_c01187{letter-spacing:-4.440975px;}
.ls27_c01187{letter-spacing:-4.319775px;}
.ls21_c01187{letter-spacing:-4.059900px;}
.ls38_c01187{letter-spacing:-3.747600px;}
.ls1d_c01187{letter-spacing:-3.701775px;}
.ls20_c01187{letter-spacing:-3.602550px;}
.ls25_c01187{letter-spacing:-3.461400px;}
.ls1f_c01187{letter-spacing:-2.879850px;}
.ls2b_c01187{letter-spacing:-2.846250px;}
.ls5_c01187{letter-spacing:-2.356808px;}
.ls2a_c01187{letter-spacing:-2.339415px;}
.ls1e_c01187{letter-spacing:-2.163173px;}
.ls13_c01187{letter-spacing:-1.866600px;}
.ls18_c01187{letter-spacing:-1.731600px;}
.ls4_c01187{letter-spacing:-1.678898px;}
.ls29_c01187{letter-spacing:-1.623075px;}
.ls2c_c01187{letter-spacing:-1.610055px;}
.ls23_c01187{letter-spacing:-1.460205px;}
.ls1c_c01187{letter-spacing:-1.440473px;}
.ls17_c01187{letter-spacing:-1.279590px;}
.ls8_c01187{letter-spacing:-0.835200px;}
.ls28_c01187{letter-spacing:-0.793125px;}
.ls22_c01187{letter-spacing:-0.722700px;}
.ls14_c01187{letter-spacing:-0.647760px;}
.ls10_c01187{letter-spacing:-0.622200px;}
.ls6_c01187{letter-spacing:0.000000px;}
.ls19_c01187{letter-spacing:0.657825px;}
.ls12_c01187{letter-spacing:0.708488px;}
.ls24_c01187{letter-spacing:0.722700px;}
.ls30_c01187{letter-spacing:0.793125px;}
.ls35_c01187{letter-spacing:1.586745px;}
.ls3_c01187{letter-spacing:1.624500px;}
.ls11_c01187{letter-spacing:2.500200px;}
.ls0_c01187{letter-spacing:4.319775px;}
.ls33_c01187{letter-spacing:8.713688px;}
.lsd_c01187{letter-spacing:27.148500px;}
.lsc_c01187{letter-spacing:82.097250px;}
.ls16_c01187{letter-spacing:136.500000px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01187{word-spacing:0.000000px;}
._6_c01187{margin-left:-6.296481px;}
._b_c01187{margin-left:-4.735846px;}
._5_c01187{margin-left:-2.300048px;}
._8_c01187{margin-left:-1.036965px;}
._7_c01187{width:1.023825px;}
._2_c01187{width:3.012576px;}
._9_c01187{width:4.059914px;}
._a_c01187{width:5.157982px;}
._3_c01187{width:6.583255px;}
._4_c01187{width:8.053956px;}
._0_c01187{width:11.317904px;}
._c_c01187{width:12.695482px;}
._1_c01187{width:21.171710px;}
.fc0_c01187{color:transparent;}
.fse_c01187{font-size:16.500000px;}
.fs10_c01187{font-size:18.000000px;}
.fs15_c01187{font-size:21.000000px;}
.fsc_c01187{font-size:22.500000px;}
.fs12_c01187{font-size:24.000000px;}
.fsa_c01187{font-size:25.500000px;}
.fs11_c01187{font-size:26.250000px;}
.fs14_c01187{font-size:27.000000px;}
.fs13_c01187{font-size:28.500000px;}
.fs17_c01187{font-size:36.750000px;}
.fsb_c01187{font-size:37.500000px;}
.fs16_c01187{font-size:39.000000px;}
.fsf_c01187{font-size:39.750000px;}
.fs1e_c01187{font-size:50.250000px;}
.fs20_c01187{font-size:51.750000px;}
.fs1d_c01187{font-size:54.000000px;}
.fs18_c01187{font-size:54.750000px;}
.fs1c_c01187{font-size:55.500000px;}
.fs1a_c01187{font-size:56.250000px;}
.fs19_c01187{font-size:57.750000px;}
.fs1b_c01187{font-size:58.500000px;}
.fs21_c01187{font-size:59.250000px;}
.fs1f_c01187{font-size:63.000000px;}
.fs4_c01187{font-size:83.250000px;}
.fs3_c01187{font-size:84.750000px;}
.fs2_c01187{font-size:85.500000px;}
.fs1_c01187{font-size:88.500000px;}
.fs8_c01187{font-size:90.000000px;}
.fs7_c01187{font-size:94.500000px;}
.fs9_c01187{font-size:95.250000px;}
.fs6_c01187{font-size:96.000000px;}
.fs0_c01187{font-size:96.750000px;}
.fs5_c01187{font-size:97.500000px;}
.fsd_c01187{font-size:111.750000px;}
.y0_c01187{bottom:0.000000px;}
.y7_c01187{bottom:36.420000px;}
.y5_c01187{bottom:43.980900px;}
.y4_c01187{bottom:46.500600px;}
.y2_c01187{bottom:47.940900px;}
.y6_c01187{bottom:50.099700px;}
.y3_c01187{bottom:53.700435px;}
.y1f_c01187{bottom:333.060750px;}
.y1d_c01187{bottom:362.939685px;}
.y1e_c01187{bottom:363.659850px;}
.y1b_c01187{bottom:392.820420px;}
.y1c_c01187{bottom:393.899820px;}
.y1a_c01187{bottom:423.060285px;}
.y18_c01187{bottom:452.580555px;}
.y19_c01187{bottom:454.020270px;}
.y17_c01187{bottom:482.460570px;}
.y15_c01187{bottom:511.980285px;}
.y16_c01187{bottom:513.420600px;}
.y14_c01187{bottom:541.860900px;}
.y12_c01187{bottom:572.100720px;}
.y13_c01187{bottom:572.459970px;}
.y11_c01187{bottom:617.099670px;}
.y10_c01187{bottom:646.980285px;}
.ye_c01187{bottom:676.499310px;}
.yf_c01187{bottom:676.499955px;}
.yd_c01187{bottom:706.380570px;}
.yc_c01187{bottom:766.140105px;}
.yb_c01187{bottom:766.140285px;}
.ya_c01187{bottom:780.900885px;}
.y9_c01187{bottom:780.901515px;}
.y8_c01187{bottom:796.020720px;}
.y1_c01187{bottom:842.820825px;}
.hf_c01187{height:17.208984px;}
.h11_c01187{height:18.773438px;}
.h16_c01187{height:20.610352px;}
.hd_c01187{height:23.466797px;}
.h13_c01187{height:25.031250px;}
.hb_c01187{height:26.595703px;}
.h12_c01187{height:27.377930px;}
.h15_c01187{height:28.160156px;}
.h14_c01187{height:29.724609px;}
.h19_c01187{height:37.037109px;}
.h18_c01187{height:38.542969px;}
.hc_c01187{height:39.111328px;}
.h10_c01187{height:39.284180px;}
.h17_c01187{height:39.304688px;}
.h20_c01187{height:52.409180px;}
.h1f_c01187{height:52.998047px;}
.h1a_c01187{height:53.734131px;}
.h26_c01187{height:53.973633px;}
.h1e_c01187{height:54.470215px;}
.h24_c01187{height:55.177734px;}
.h1c_c01187{height:55.206299px;}
.h22_c01187{height:55.933594px;}
.h1b_c01187{height:56.678467px;}
.h21_c01187{height:56.689453px;}
.h1d_c01187{height:57.414551px;}
.h23_c01187{height:57.814453px;}
.h27_c01187{height:58.555664px;}
.h25_c01187{height:62.261719px;}
.h5_c01187{height:83.900391px;}
.h4_c01187{height:85.412109px;}
.h3_c01187{height:86.167969px;}
.h2_c01187{height:87.462891px;}
.h9_c01187{height:88.945312px;}
.h8_c01187{height:93.392578px;}
.ha_c01187{height:94.133789px;}
.h7_c01187{height:94.875000px;}
.h6_c01187{height:96.357422px;}
.h1_c01187{height:97.505859px;}
.he_c01187{height:109.621948px;}
.h0_c01187{height:892.500000px;}
.w0_c01187{width:1263.000000px;}
.x0_c01187{left:0.000000px;}
.xc_c01187{left:76.319850px;}
.x1_c01187{left:94.679700px;}
.xd_c01187{left:156.958950px;}
.x2_c01187{left:181.798515px;}
.x3_c01187{left:223.918350px;}
.x11_c01187{left:234.719100px;}
.xe_c01187{left:291.599700px;}
.x12_c01187{left:312.479235px;}
.x4_c01187{left:330.118785px;}
.x1a_c01187{left:336.239250px;}
.x1b_c01187{left:364.318800px;}
.x13_c01187{left:390.239220px;}
.x5_c01187{left:405.718500px;}
.xf_c01187{left:447.479235px;}
.x1c_c01187{left:449.998950px;}
.x14_c01187{left:469.439670px;}
.x6_c01187{left:492.118785px;}
.x1d_c01187{left:495.719565px;}
.x7_c01187{left:517.319235px;}
.x15_c01187{left:545.759535px;}
.x10_c01187{left:548.999400px;}
.x16_c01187{left:623.519670px;}
.x8_c01187{left:685.078770px;}
.x17_c01187{left:703.438620px;}
.x9_c01187{left:722.518620px;}
.x19_c01187{left:740.519070px;}
.xa_c01187{left:756.718545px;}
.x18_c01187{left:778.679070px;}
.xb_c01187{left:785.519715px;}
.x22_c01187{left:928.799760px;}
.x31_c01187{left:929.878320px;}
.x36_c01187{left:930.959385px;}
.x23_c01187{left:963.359805px;}
.x1e_c01187{left:965.879520px;}
.x2e_c01187{left:966.958920px;}
.x34_c01187{left:968.039985px;}
.x24_c01187{left:986.399775px;}
.x2c_c01187{left:1005.479640px;}
.x2d_c01187{left:1010.159820px;}
.x32_c01187{left:1026.359250px;}
.x25_c01187{left:1041.838530px;}
.x33_c01187{left:1042.919490px;}
.x1f_c01187{left:1045.079955px;}
.x26_c01187{left:1054.799565px;}
.x20_c01187{left:1061.279205px;}
.x2f_c01187{left:1065.598575px;}
.x27_c01187{left:1080.718500px;}
.x30_c01187{left:1092.959385px;}
.x35_c01187{left:1094.038875px;}
.x28_c01187{left:1098.359805px;}
.x21_c01187{left:1103.399235px;}
.x2b_c01187{left:1140.479640px;}
.x29_c01187{left:1152.719055px;}
.x2a_c01187{left:1165.678530px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.lsa_c01187{letter-spacing:-20.528800pt;}
.lsb_c01187{letter-spacing:-14.892867pt;}
.ls34_c01187{letter-spacing:-13.379500pt;}
.ls2_c01187{letter-spacing:-12.248400pt;}
.lse_c01187{letter-spacing:-12.050127pt;}
.lsf_c01187{letter-spacing:-10.600000pt;}
.ls36_c01187{letter-spacing:-8.678940pt;}
.ls1_c01187{letter-spacing:-8.531200pt;}
.ls2f_c01187{letter-spacing:-7.498400pt;}
.ls1b_c01187{letter-spacing:-7.042067pt;}
.ls31_c01187{letter-spacing:-7.039500pt;}
.ls2e_c01187{letter-spacing:-6.740333pt;}
.ls37_c01187{letter-spacing:-6.340000pt;}
.ls32_c01187{letter-spacing:-5.750000pt;}
.ls2d_c01187{letter-spacing:-5.402800pt;}
.ls7_c01187{letter-spacing:-5.031260pt;}
.ls9_c01187{letter-spacing:-4.670400pt;}
.ls1a_c01187{letter-spacing:-4.497933pt;}
.ls15_c01187{letter-spacing:-4.267200pt;}
.ls26_c01187{letter-spacing:-3.947533pt;}
.ls27_c01187{letter-spacing:-3.839800pt;}
.ls21_c01187{letter-spacing:-3.608800pt;}
.ls38_c01187{letter-spacing:-3.331200pt;}
.ls1d_c01187{letter-spacing:-3.290467pt;}
.ls20_c01187{letter-spacing:-3.202267pt;}
.ls25_c01187{letter-spacing:-3.076800pt;}
.ls1f_c01187{letter-spacing:-2.559867pt;}
.ls2b_c01187{letter-spacing:-2.530000pt;}
.ls5_c01187{letter-spacing:-2.094940pt;}
.ls2a_c01187{letter-spacing:-2.079480pt;}
.ls1e_c01187{letter-spacing:-1.922820pt;}
.ls13_c01187{letter-spacing:-1.659200pt;}
.ls18_c01187{letter-spacing:-1.539200pt;}
.ls4_c01187{letter-spacing:-1.492353pt;}
.ls29_c01187{letter-spacing:-1.442733pt;}
.ls2c_c01187{letter-spacing:-1.431160pt;}
.ls23_c01187{letter-spacing:-1.297960pt;}
.ls1c_c01187{letter-spacing:-1.280420pt;}
.ls17_c01187{letter-spacing:-1.137413pt;}
.ls8_c01187{letter-spacing:-0.742400pt;}
.ls28_c01187{letter-spacing:-0.705000pt;}
.ls22_c01187{letter-spacing:-0.642400pt;}
.ls14_c01187{letter-spacing:-0.575787pt;}
.ls10_c01187{letter-spacing:-0.553067pt;}
.ls6_c01187{letter-spacing:0.000000pt;}
.ls19_c01187{letter-spacing:0.584733pt;}
.ls12_c01187{letter-spacing:0.629767pt;}
.ls24_c01187{letter-spacing:0.642400pt;}
.ls30_c01187{letter-spacing:0.705000pt;}
.ls35_c01187{letter-spacing:1.410440pt;}
.ls3_c01187{letter-spacing:1.444000pt;}
.ls11_c01187{letter-spacing:2.222400pt;}
.ls0_c01187{letter-spacing:3.839800pt;}
.ls33_c01187{letter-spacing:7.745500pt;}
.lsd_c01187{letter-spacing:24.132000pt;}
.lsc_c01187{letter-spacing:72.975333pt;}
.ls16_c01187{letter-spacing:121.333333pt;}
.ws0_c01187{word-spacing:0.000000pt;}
._6_c01187{margin-left:-5.596872pt;}
._b_c01187{margin-left:-4.209641pt;}
._5_c01187{margin-left:-2.044487pt;}
._8_c01187{margin-left:-0.921747pt;}
._7_c01187{width:0.910067pt;}
._2_c01187{width:2.677845pt;}
._9_c01187{width:3.608813pt;}
._a_c01187{width:4.584873pt;}
._3_c01187{width:5.851782pt;}
._4_c01187{width:7.159072pt;}
._0_c01187{width:10.060359pt;}
._c_c01187{width:11.284873pt;}
._1_c01187{width:18.819298pt;}
.fse_c01187{font-size:14.666667pt;}
.fs10_c01187{font-size:16.000000pt;}
.fs15_c01187{font-size:18.666667pt;}
.fsc_c01187{font-size:20.000000pt;}
.fs12_c01187{font-size:21.333333pt;}
.fsa_c01187{font-size:22.666667pt;}
.fs11_c01187{font-size:23.333333pt;}
.fs14_c01187{font-size:24.000000pt;}
.fs13_c01187{font-size:25.333333pt;}
.fs17_c01187{font-size:32.666667pt;}
.fsb_c01187{font-size:33.333333pt;}
.fs16_c01187{font-size:34.666667pt;}
.fsf_c01187{font-size:35.333333pt;}
.fs1e_c01187{font-size:44.666667pt;}
.fs20_c01187{font-size:46.000000pt;}
.fs1d_c01187{font-size:48.000000pt;}
.fs18_c01187{font-size:48.666667pt;}
.fs1c_c01187{font-size:49.333333pt;}
.fs1a_c01187{font-size:50.000000pt;}
.fs19_c01187{font-size:51.333333pt;}
.fs1b_c01187{font-size:52.000000pt;}
.fs21_c01187{font-size:52.666667pt;}
.fs1f_c01187{font-size:56.000000pt;}
.fs4_c01187{font-size:74.000000pt;}
.fs3_c01187{font-size:75.333333pt;}
.fs2_c01187{font-size:76.000000pt;}
.fs1_c01187{font-size:78.666667pt;}
.fs8_c01187{font-size:80.000000pt;}
.fs7_c01187{font-size:84.000000pt;}
.fs9_c01187{font-size:84.666667pt;}
.fs6_c01187{font-size:85.333333pt;}
.fs0_c01187{font-size:86.000000pt;}
.fs5_c01187{font-size:86.666667pt;}
.fsd_c01187{font-size:99.333333pt;}
.y0_c01187{bottom:0.000000pt;}
.y7_c01187{bottom:32.373333pt;}
.y5_c01187{bottom:39.094133pt;}
.y4_c01187{bottom:41.333867pt;}
.y2_c01187{bottom:42.614133pt;}
.y6_c01187{bottom:44.533067pt;}
.y3_c01187{bottom:47.733720pt;}
.y1f_c01187{bottom:296.054000pt;}
.y1d_c01187{bottom:322.613053pt;}
.y1e_c01187{bottom:323.253200pt;}
.y1b_c01187{bottom:349.173707pt;}
.y1c_c01187{bottom:350.133173pt;}
.y1a_c01187{bottom:376.053587pt;}
.y18_c01187{bottom:402.293827pt;}
.y19_c01187{bottom:403.573573pt;}
.y17_c01187{bottom:428.853840pt;}
.y15_c01187{bottom:455.093587pt;}
.y16_c01187{bottom:456.373867pt;}
.y14_c01187{bottom:481.654133pt;}
.y12_c01187{bottom:508.533973pt;}
.y13_c01187{bottom:508.853307pt;}
.y11_c01187{bottom:548.533040pt;}
.y10_c01187{bottom:575.093587pt;}
.ye_c01187{bottom:601.332720pt;}
.yf_c01187{bottom:601.333293pt;}
.yd_c01187{bottom:627.893840pt;}
.yc_c01187{bottom:681.013427pt;}
.yb_c01187{bottom:681.013587pt;}
.ya_c01187{bottom:694.134120pt;}
.y9_c01187{bottom:694.134680pt;}
.y8_c01187{bottom:707.573973pt;}
.y1_c01187{bottom:749.174067pt;}
.hf_c01187{height:15.296875pt;}
.h11_c01187{height:16.687500pt;}
.h16_c01187{height:18.320312pt;}
.hd_c01187{height:20.859375pt;}
.h13_c01187{height:22.250000pt;}
.hb_c01187{height:23.640625pt;}
.h12_c01187{height:24.335938pt;}
.h15_c01187{height:25.031250pt;}
.h14_c01187{height:26.421875pt;}
.h19_c01187{height:32.921875pt;}
.h18_c01187{height:34.260417pt;}
.hc_c01187{height:34.765625pt;}
.h10_c01187{height:34.919271pt;}
.h17_c01187{height:34.937500pt;}
.h20_c01187{height:46.585938pt;}
.h1f_c01187{height:47.109375pt;}
.h1a_c01187{height:47.763672pt;}
.h26_c01187{height:47.976562pt;}
.h1e_c01187{height:48.417969pt;}
.h24_c01187{height:49.046875pt;}
.h1c_c01187{height:49.072266pt;}
.h22_c01187{height:49.718750pt;}
.h1b_c01187{height:50.380859pt;}
.h21_c01187{height:50.390625pt;}
.h1d_c01187{height:51.035156pt;}
.h23_c01187{height:51.390625pt;}
.h27_c01187{height:52.049479pt;}
.h25_c01187{height:55.343750pt;}
.h5_c01187{height:74.578125pt;}
.h4_c01187{height:75.921875pt;}
.h3_c01187{height:76.593750pt;}
.h2_c01187{height:77.744792pt;}
.h9_c01187{height:79.062500pt;}
.h8_c01187{height:83.015625pt;}
.ha_c01187{height:83.674479pt;}
.h7_c01187{height:84.333333pt;}
.h6_c01187{height:85.651042pt;}
.h1_c01187{height:86.671875pt;}
.he_c01187{height:97.441732pt;}
.h0_c01187{height:793.333333pt;}
.w0_c01187{width:1122.666667pt;}
.x0_c01187{left:0.000000pt;}
.xc_c01187{left:67.839867pt;}
.x1_c01187{left:84.159733pt;}
.xd_c01187{left:139.519067pt;}
.x2_c01187{left:161.598680pt;}
.x3_c01187{left:199.038533pt;}
.x11_c01187{left:208.639200pt;}
.xe_c01187{left:259.199733pt;}
.x12_c01187{left:277.759320pt;}
.x4_c01187{left:293.438920pt;}
.x1a_c01187{left:298.879333pt;}
.x1b_c01187{left:323.838933pt;}
.x13_c01187{left:346.879307pt;}
.x5_c01187{left:360.638667pt;}
.xf_c01187{left:397.759320pt;}
.x1c_c01187{left:399.999067pt;}
.x14_c01187{left:417.279707pt;}
.x6_c01187{left:437.438920pt;}
.x1d_c01187{left:440.639613pt;}
.x7_c01187{left:459.839320pt;}
.x15_c01187{left:485.119587pt;}
.x10_c01187{left:487.999467pt;}
.x16_c01187{left:554.239707pt;}
.x8_c01187{left:608.958907pt;}
.x17_c01187{left:625.278773pt;}
.x9_c01187{left:642.238773pt;}
.x19_c01187{left:658.239173pt;}
.xa_c01187{left:672.638707pt;}
.x18_c01187{left:692.159173pt;}
.xb_c01187{left:698.239747pt;}
.x22_c01187{left:825.599787pt;}
.x31_c01187{left:826.558507pt;}
.x36_c01187{left:827.519453pt;}
.x23_c01187{left:856.319827pt;}
.x1e_c01187{left:858.559573pt;}
.x2e_c01187{left:859.519040pt;}
.x34_c01187{left:860.479987pt;}
.x24_c01187{left:876.799800pt;}
.x2c_c01187{left:893.759680pt;}
.x2d_c01187{left:897.919840pt;}
.x32_c01187{left:912.319333pt;}
.x25_c01187{left:926.078693pt;}
.x33_c01187{left:927.039547pt;}
.x1f_c01187{left:928.959960pt;}
.x26_c01187{left:937.599613pt;}
.x20_c01187{left:943.359293pt;}
.x2f_c01187{left:947.198733pt;}
.x27_c01187{left:960.638667pt;}
.x30_c01187{left:971.519453pt;}
.x35_c01187{left:972.479000pt;}
.x28_c01187{left:976.319827pt;}
.x21_c01187{left:980.799320pt;}
.x2b_c01187{left:1013.759680pt;}
.x29_c01187{left:1024.639160pt;}
.x2a_c01187{left:1036.158693pt;}
}





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

.ir_c01188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_12a920d5c19ace20ff34514d.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01188;src:url('chunks/assets/font_d6e3774ff481ce86b8484d45.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01188;src:url('chunks/assets/font_cb5e11628a70677997fd481a.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01188;src:url('chunks/assets/font_736f6240f8e6f41f99c3a0cd.woff2')format("woff");}.ff4_c01188{font-family:ff4_c01188;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01188;src:url('chunks/assets/font_e4ef126358802cf97f03d1ad.woff2')format("woff");}.ff5_c01188{font-family:ff5_c01188;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01188;src:url('chunks/assets/font_7e0f3dad1802d1ba644f11cc.woff2')format("woff");}.ff6_c01188{font-family:ff6_c01188;line-height:1.281250;font-style:normal;font-weight: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_c01188;src:url('chunks/assets/font_6c5413850dc706ff1e3380b1.woff2')format("woff");}.ff7_c01188{font-family:ff7_c01188;line-height:1.284668;font-style:normal;font-weight: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_c01188;src:url('chunks/assets/font_5d33ef2b641398770faa7a97.woff2')format("woff");}.ff8_c01188{font-family:ff8_c01188;line-height:1.364746;font-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_c01188{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m20_c01188{transform:matrix(0.153509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153509,0.000000,0.000000,0.250000,0,0);}
.m29_c01188{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m31_c01188{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m22_c01188{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m7_c01188{transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211240,0.000000,0.000000,0.250000,0,0);}
.m8_c01188{transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212389,0.000000,0.000000,0.250000,0,0);}
.m3_c01188{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m32_c01188{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m5_c01188{transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229911,0.000000,0.000000,0.250000,0,0);}
.m2_c01188{transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235772,0.000000,0.000000,0.250000,0,0);}
.m6_c01188{transform:matrix(0.236328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236328,0.000000,0.000000,0.250000,0,0);}
.m2f_c01188{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.ma_c01188{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m2e_c01188{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m18_c01188{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m28_c01188{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1c_c01188{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m33_c01188{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m24_c01188{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m2a_c01188{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m19_c01188{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.md_c01188{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m1b_c01188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26_c01188{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m21_c01188{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m16_c01188{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m2b_c01188{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.mb_c01188{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m2d_c01188{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m2c_c01188{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m27_c01188{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m4_c01188{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m23_c01188{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m1d_c01188{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m0_c01188{transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264831,0.000000,0.000000,0.250000,0,0);}
.m1_c01188{transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265086,0.000000,0.000000,0.250000,0,0);}
.m25_c01188{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.mf_c01188{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m11_c01188{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m1a_c01188{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m1f_c01188{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m13_c01188{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.me_c01188{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m1e_c01188{transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);}
.m15_c01188{transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);}
.m17_c01188{transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308824,0.000000,0.000000,0.250000,0,0);}
.m30_c01188{transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317797,0.000000,0.000000,0.250000,0,0);}
.m12_c01188{transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401316,0.000000,0.000000,0.250000,0,0);}
.mc_c01188{transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409091,0.000000,0.000000,0.250000,0,0);}
.m10_c01188{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m9_c01188{transform:matrix(19.741667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(19.741667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(19.741667,0.000000,0.000000,0.250000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.ls12_c01188{letter-spacing:-54.000675px;}
.lsb_c01188{letter-spacing:-23.856773px;}
.ls3_c01188{letter-spacing:-14.850900px;}
.ls33_c01188{letter-spacing:-8.481323px;}
.ls35_c01188{letter-spacing:-7.708253px;}
.ls34_c01188{letter-spacing:-6.942300px;}
.ls22_c01188{letter-spacing:-6.412500px;}
.lsa_c01188{letter-spacing:-6.210383px;}
.ls5_c01188{letter-spacing:-6.043995px;}
.ls24_c01188{letter-spacing:-5.567678px;}
.ls4_c01188{letter-spacing:-5.562675px;}
.ls27_c01188{letter-spacing:-5.410590px;}
.ls18_c01188{letter-spacing:-4.500450px;}
.ls2e_c01188{letter-spacing:-4.334850px;}
.ls8_c01188{letter-spacing:-4.073160px;}
.ls11_c01188{letter-spacing:-3.965475px;}
.ls31_c01188{letter-spacing:-3.955875px;}
.ls32_c01188{letter-spacing:-3.864030px;}
.ls2a_c01188{letter-spacing:-3.844868px;}
.ls2c_c01188{letter-spacing:-3.750600px;}
.lse_c01188{letter-spacing:-3.665475px;}
.ls26_c01188{letter-spacing:-3.609375px;}
.ls6_c01188{letter-spacing:-3.182625px;}
.ls15_c01188{letter-spacing:-3.114450px;}
.ls1e_c01188{letter-spacing:-3.082425px;}
.ls13_c01188{letter-spacing:-3.056775px;}
.ls25_c01188{letter-spacing:-2.962575px;}
.ls2f_c01188{letter-spacing:-2.891400px;}
.ls19_c01188{letter-spacing:-2.846250px;}
.ls2_c01188{letter-spacing:-2.832000px;}
.ls1d_c01188{letter-spacing:-2.694450px;}
.ls14_c01188{letter-spacing:-2.429258px;}
.ls36_c01188{letter-spacing:-2.314350px;}
.ls2b_c01188{letter-spacing:-2.193750px;}
.ls29_c01188{letter-spacing:-2.079000px;}
.ls1b_c01188{letter-spacing:-1.970250px;}
.lsc_c01188{letter-spacing:-1.762800px;}
.ls21_c01188{letter-spacing:-1.543950px;}
.ls23_c01188{letter-spacing:-1.541925px;}
.ls20_c01188{letter-spacing:-1.481850px;}
.ls17_c01188{letter-spacing:-1.357125px;}
.lsf_c01188{letter-spacing:-1.317600px;}
.ls28_c01188{letter-spacing:-1.010625px;}
.ls9_c01188{letter-spacing:-0.796800px;}
.ls30_c01188{letter-spacing:-0.778635px;}
.ls1c_c01188{letter-spacing:-0.771975px;}
.ls16_c01188{letter-spacing:-0.763200px;}
.ls7_c01188{letter-spacing:0.000000px;}
.lsd_c01188{letter-spacing:0.730102px;}
.ls0_c01188{letter-spacing:0.771975px;}
.ls10_c01188{letter-spacing:1.385100px;}
.ls1_c01188{letter-spacing:2.315925px;}
.ls2d_c01188{letter-spacing:2.998050px;}
.ls1a_c01188{letter-spacing:3.082425px;}
.ls1f_c01188{letter-spacing:13.436325px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01188{word-spacing:0.000000px;}
._3_c01188{margin-left:-10.134009px;}
._4_c01188{margin-left:-7.062812px;}
._2_c01188{margin-left:-5.808451px;}
._9_c01188{margin-left:-3.569191px;}
._1_c01188{margin-left:-1.965371px;}
._7_c01188{width:1.078590px;}
._0_c01188{width:2.501628px;}
._a_c01188{width:3.832824px;}
._b_c01188{width:5.048012px;}
._8_c01188{width:7.182907px;}
._6_c01188{width:10.495405px;}
._5_c01188{width:11.809899px;}
._c_c01188{width:16.755744px;}
.fc0_c01188{color:transparent;}
.fsa_c01188{font-size:17.250000px;}
.fs11_c01188{font-size:20.250000px;}
.fs9_c01188{font-size:22.500000px;}
.fsc_c01188{font-size:24.750000px;}
.fs10_c01188{font-size:26.250000px;}
.fse_c01188{font-size:27.000000px;}
.fsb_c01188{font-size:27.750000px;}
.fsf_c01188{font-size:28.500000px;}
.fs15_c01188{font-size:35.250000px;}
.fs13_c01188{font-size:38.250000px;}
.fs12_c01188{font-size:39.750000px;}
.fs14_c01188{font-size:40.500000px;}
.fs19_c01188{font-size:42.750000px;}
.fsd_c01188{font-size:44.250000px;}
.fs1e_c01188{font-size:51.000000px;}
.fs18_c01188{font-size:53.250000px;}
.fs1f_c01188{font-size:54.000000px;}
.fs16_c01188{font-size:54.750000px;}
.fs1a_c01188{font-size:55.500000px;}
.fs17_c01188{font-size:56.250000px;}
.fs1c_c01188{font-size:57.000000px;}
.fs1d_c01188{font-size:57.750000px;}
.fs1b_c01188{font-size:58.500000px;}
.fs21_c01188{font-size:59.250000px;}
.fs20_c01188{font-size:60.750000px;}
.fs5_c01188{font-size:84.000000px;}
.fs8_c01188{font-size:84.750000px;}
.fs3_c01188{font-size:85.500000px;}
.fs1_c01188{font-size:87.000000px;}
.fs0_c01188{font-size:88.500000px;}
.fs2_c01188{font-size:92.250000px;}
.fs4_c01188{font-size:94.500000px;}
.fs6_c01188{font-size:96.000000px;}
.fs7_c01188{font-size:96.750000px;}
.y0_c01188{bottom:0.000000px;}
.y5_c01188{bottom:41.461185px;}
.y3_c01188{bottom:50.460600px;}
.y4_c01188{bottom:56.581050px;}
.y2_c01188{bottom:57.660435px;}
.y1e_c01188{bottom:243.781500px;}
.y1d_c01188{bottom:273.659775px;}
.y1c_c01188{bottom:303.541035px;}
.y1b_c01188{bottom:303.541740px;}
.y1a_c01188{bottom:333.420270px;}
.y19_c01188{bottom:363.661395px;}
.y18_c01188{bottom:393.539925px;}
.y17_c01188{bottom:423.421185px;}
.y16_c01188{bottom:423.421875px;}
.y15_c01188{bottom:453.300405px;}
.y14_c01188{bottom:482.821605px;}
.y13_c01188{bottom:587.581650px;}
.y12_c01188{bottom:677.220105px;}
.y10_c01188{bottom:691.621470px;}
.y11_c01188{bottom:691.621635px;}
.yf_c01188{bottom:707.100720px;}
.ye_c01188{bottom:707.100900px;}
.yd_c01188{bottom:721.861500px;}
.yc_c01188{bottom:736.981335px;}
.yb_c01188{bottom:751.740420px;}
.ya_c01188{bottom:751.741065px;}
.y9_c01188{bottom:766.860255px;}
.y8_c01188{bottom:766.860450px;}
.y7_c01188{bottom:781.621035px;}
.y6_c01188{bottom:796.379970px;}
.y1_c01188{bottom:845.881170px;}
.hb_c01188{height:17.384766px;}
.h12_c01188{height:19.864380px;}
.ha_c01188{height:23.466797px;}
.hd_c01188{height:24.459961px;}
.h11_c01188{height:27.377930px;}
.hf_c01188{height:28.160156px;}
.hc_c01188{height:28.942383px;}
.h10_c01188{height:29.724609px;}
.h16_c01188{height:36.764648px;}
.h14_c01188{height:38.548828px;}
.h15_c01188{height:40.025391px;}
.h13_c01188{height:40.060547px;}
.h1a_c01188{height:41.956787px;}
.he_c01188{height:43.731445px;}
.h27_c01188{height:46.151367px;}
.h19_c01188{height:52.261963px;}
.h22_c01188{height:52.998047px;}
.h20_c01188{height:53.191406px;}
.h17_c01188{height:53.734131px;}
.h1b_c01188{height:54.470215px;}
.h18_c01188{height:55.206299px;}
.h29_c01188{height:55.933594px;}
.h1d_c01188{height:55.942383px;}
.h28_c01188{height:56.332031px;}
.h1e_c01188{height:56.678467px;}
.h21_c01188{height:57.073242px;}
.h1c_c01188{height:57.414551px;}
.h24_c01188{height:57.445312px;}
.h26_c01188{height:58.150635px;}
.h1f_c01188{height:58.201172px;}
.h23_c01188{height:59.622803px;}
.h25_c01188{height:59.712891px;}
.h6_c01188{height:84.656250px;}
.h9_c01188{height:85.412109px;}
.h2_c01188{height:85.980469px;}
.h4_c01188{height:86.167969px;}
.h1_c01188{height:89.191406px;}
.h3_c01188{height:91.168945px;}
.h5_c01188{height:93.392578px;}
.h7_c01188{height:94.875000px;}
.h8_c01188{height:95.616211px;}
.h0_c01188{height:892.500000px;}
.w0_c01188{width:1263.000000px;}
.x0_c01188{left:0.000000px;}
.x1_c01188{left:87.838950px;}
.xc_c01188{left:95.038950px;}
.xe_c01188{left:156.599700px;}
.xd_c01188{left:159.478665px;}
.x2_c01188{left:174.239250px;}
.x3_c01188{left:216.718500px;}
.xf_c01188{left:235.080000px;}
.x10_c01188{left:312.838515px;}
.x4_c01188{left:323.279850px;}
.x18_c01188{left:336.239250px;}
.x19_c01188{left:362.878350px;}
.x11_c01188{left:389.159820px;}
.x5_c01188{left:397.798515px;}
.x1a_c01188{left:407.519670px;}
.x1b_c01188{left:448.199385px;}
.x12_c01188{left:466.918350px;}
.x6_c01188{left:482.399235px;}
.x1c_c01188{left:493.199850px;}
.x7_c01188{left:508.319820px;}
.x13_c01188{left:543.958335px;}
.x14_c01188{left:621.000000px;}
.x8_c01188{left:678.239820px;}
.x15_c01188{left:700.559685px;}
.x9_c01188{left:717.838530px;}
.x17_c01188{left:739.798920px;}
.xa_c01188{left:752.758530px;}
.x16_c01188{left:776.879520px;}
.xb_c01188{left:780.839535px;}
.x21_c01188{left:928.078770px;}
.x41_c01188{left:932.038965px;}
.x40_c01188{left:939.599670px;}
.x22_c01188{left:940.679070px;}
.x1d_c01188{left:966.958920px;}
.x42_c01188{left:968.041560px;}
.x2d_c01188{left:976.319190px;}
.x36_c01188{left:982.078770px;}
.x1e_c01188{left:984.959385px;}
.x2e_c01188{left:991.798560px;}
.x37_c01188{left:996.478635px;}
.x3b_c01188{left:1022.399235px;}
.x2f_c01188{left:1031.759490px;}
.x27_c01188{left:1041.838530px;}
.x43_c01188{left:1043.639655px;}
.x38_c01188{left:1045.798560px;}
.x25_c01188{left:1058.398590px;}
.x44_c01188{left:1065.598575px;}
.x3c_c01188{left:1066.679715px;}
.x26_c01188{left:1072.798560px;}
.x28_c01188{left:1083.958275px;}
.x1f_c01188{left:1094.399775px;}
.x3d_c01188{left:1096.558590px;}
.x30_c01188{left:1100.879520px;}
.x39_c01188{left:1101.958920px;}
.x34_c01188{left:1110.599025px;}
.x3e_c01188{left:1114.559055px;}
.x45_c01188{left:1115.999355px;}
.x29_c01188{left:1118.519070px;}
.x35_c01188{left:1124.998905px;}
.x2a_c01188{left:1128.599670px;}
.x20_c01188{left:1136.158815px;}
.x2b_c01188{left:1158.119385px;}
.x31_c01188{left:1159.918950px;}
.x23_c01188{left:1161.000000px;}
.x24_c01188{left:1173.239220px;}
.x2c_c01188{left:1175.399775px;}
.x32_c01188{left:1177.199340px;}
.x3f_c01188{left:1184.039985px;}
.x3a_c01188{left:1186.559685px;}
.x33_c01188{left:1216.079400px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls12_c01188{letter-spacing:-48.000600pt;}
.lsb_c01188{letter-spacing:-21.206020pt;}
.ls3_c01188{letter-spacing:-13.200800pt;}
.ls33_c01188{letter-spacing:-7.538953pt;}
.ls35_c01188{letter-spacing:-6.851780pt;}
.ls34_c01188{letter-spacing:-6.170933pt;}
.ls22_c01188{letter-spacing:-5.700000pt;}
.lsa_c01188{letter-spacing:-5.520340pt;}
.ls5_c01188{letter-spacing:-5.372440pt;}
.ls24_c01188{letter-spacing:-4.949047pt;}
.ls4_c01188{letter-spacing:-4.944600pt;}
.ls27_c01188{letter-spacing:-4.809413pt;}
.ls18_c01188{letter-spacing:-4.000400pt;}
.ls2e_c01188{letter-spacing:-3.853200pt;}
.ls8_c01188{letter-spacing:-3.620587pt;}
.ls11_c01188{letter-spacing:-3.524867pt;}
.ls31_c01188{letter-spacing:-3.516333pt;}
.ls32_c01188{letter-spacing:-3.434693pt;}
.ls2a_c01188{letter-spacing:-3.417660pt;}
.ls2c_c01188{letter-spacing:-3.333867pt;}
.lse_c01188{letter-spacing:-3.258200pt;}
.ls26_c01188{letter-spacing:-3.208333pt;}
.ls6_c01188{letter-spacing:-2.829000pt;}
.ls15_c01188{letter-spacing:-2.768400pt;}
.ls1e_c01188{letter-spacing:-2.739933pt;}
.ls13_c01188{letter-spacing:-2.717133pt;}
.ls25_c01188{letter-spacing:-2.633400pt;}
.ls2f_c01188{letter-spacing:-2.570133pt;}
.ls19_c01188{letter-spacing:-2.530000pt;}
.ls2_c01188{letter-spacing:-2.517333pt;}
.ls1d_c01188{letter-spacing:-2.395067pt;}
.ls14_c01188{letter-spacing:-2.159340pt;}
.ls36_c01188{letter-spacing:-2.057200pt;}
.ls2b_c01188{letter-spacing:-1.950000pt;}
.ls29_c01188{letter-spacing:-1.848000pt;}
.ls1b_c01188{letter-spacing:-1.751333pt;}
.lsc_c01188{letter-spacing:-1.566933pt;}
.ls21_c01188{letter-spacing:-1.372400pt;}
.ls23_c01188{letter-spacing:-1.370600pt;}
.ls20_c01188{letter-spacing:-1.317200pt;}
.ls17_c01188{letter-spacing:-1.206333pt;}
.lsf_c01188{letter-spacing:-1.171200pt;}
.ls28_c01188{letter-spacing:-0.898333pt;}
.ls9_c01188{letter-spacing:-0.708267pt;}
.ls30_c01188{letter-spacing:-0.692120pt;}
.ls1c_c01188{letter-spacing:-0.686200pt;}
.ls16_c01188{letter-spacing:-0.678400pt;}
.ls7_c01188{letter-spacing:0.000000pt;}
.lsd_c01188{letter-spacing:0.648980pt;}
.ls0_c01188{letter-spacing:0.686200pt;}
.ls10_c01188{letter-spacing:1.231200pt;}
.ls1_c01188{letter-spacing:2.058600pt;}
.ls2d_c01188{letter-spacing:2.664933pt;}
.ls1a_c01188{letter-spacing:2.739933pt;}
.ls1f_c01188{letter-spacing:11.943400pt;}
.ws0_c01188{word-spacing:0.000000pt;}
._3_c01188{margin-left:-9.008008pt;}
._4_c01188{margin-left:-6.278055pt;}
._2_c01188{margin-left:-5.163067pt;}
._9_c01188{margin-left:-3.172614pt;}
._1_c01188{margin-left:-1.746996pt;}
._7_c01188{width:0.958747pt;}
._0_c01188{width:2.223669pt;}
._a_c01188{width:3.406955pt;}
._b_c01188{width:4.487122pt;}
._8_c01188{width:6.384806pt;}
._6_c01188{width:9.329249pt;}
._5_c01188{width:10.497688pt;}
._c_c01188{width:14.893995pt;}
.fsa_c01188{font-size:15.333333pt;}
.fs11_c01188{font-size:18.000000pt;}
.fs9_c01188{font-size:20.000000pt;}
.fsc_c01188{font-size:22.000000pt;}
.fs10_c01188{font-size:23.333333pt;}
.fse_c01188{font-size:24.000000pt;}
.fsb_c01188{font-size:24.666667pt;}
.fsf_c01188{font-size:25.333333pt;}
.fs15_c01188{font-size:31.333333pt;}
.fs13_c01188{font-size:34.000000pt;}
.fs12_c01188{font-size:35.333333pt;}
.fs14_c01188{font-size:36.000000pt;}
.fs19_c01188{font-size:38.000000pt;}
.fsd_c01188{font-size:39.333333pt;}
.fs1e_c01188{font-size:45.333333pt;}
.fs18_c01188{font-size:47.333333pt;}
.fs1f_c01188{font-size:48.000000pt;}
.fs16_c01188{font-size:48.666667pt;}
.fs1a_c01188{font-size:49.333333pt;}
.fs17_c01188{font-size:50.000000pt;}
.fs1c_c01188{font-size:50.666667pt;}
.fs1d_c01188{font-size:51.333333pt;}
.fs1b_c01188{font-size:52.000000pt;}
.fs21_c01188{font-size:52.666667pt;}
.fs20_c01188{font-size:54.000000pt;}
.fs5_c01188{font-size:74.666667pt;}
.fs8_c01188{font-size:75.333333pt;}
.fs3_c01188{font-size:76.000000pt;}
.fs1_c01188{font-size:77.333333pt;}
.fs0_c01188{font-size:78.666667pt;}
.fs2_c01188{font-size:82.000000pt;}
.fs4_c01188{font-size:84.000000pt;}
.fs6_c01188{font-size:85.333333pt;}
.fs7_c01188{font-size:86.000000pt;}
.y0_c01188{bottom:0.000000pt;}
.y5_c01188{bottom:36.854387pt;}
.y3_c01188{bottom:44.853867pt;}
.y4_c01188{bottom:50.294267pt;}
.y2_c01188{bottom:51.253720pt;}
.y1e_c01188{bottom:216.694667pt;}
.y1d_c01188{bottom:243.253133pt;}
.y1c_c01188{bottom:269.814253pt;}
.y1b_c01188{bottom:269.814880pt;}
.y1a_c01188{bottom:296.373573pt;}
.y19_c01188{bottom:323.254573pt;}
.y18_c01188{bottom:349.813267pt;}
.y17_c01188{bottom:376.374387pt;}
.y16_c01188{bottom:376.375000pt;}
.y15_c01188{bottom:402.933693pt;}
.y14_c01188{bottom:429.174760pt;}
.y13_c01188{bottom:522.294800pt;}
.y12_c01188{bottom:601.973427pt;}
.y10_c01188{bottom:614.774640pt;}
.y11_c01188{bottom:614.774787pt;}
.yf_c01188{bottom:628.533973pt;}
.ye_c01188{bottom:628.534133pt;}
.yd_c01188{bottom:641.654667pt;}
.yc_c01188{bottom:655.094520pt;}
.yb_c01188{bottom:668.213707pt;}
.ya_c01188{bottom:668.214280pt;}
.y9_c01188{bottom:681.653560pt;}
.y8_c01188{bottom:681.653733pt;}
.y7_c01188{bottom:694.774253pt;}
.y6_c01188{bottom:707.893307pt;}
.y1_c01188{bottom:751.894373pt;}
.hb_c01188{height:15.453125pt;}
.h12_c01188{height:17.657227pt;}
.ha_c01188{height:20.859375pt;}
.hd_c01188{height:21.742187pt;}
.h11_c01188{height:24.335938pt;}
.hf_c01188{height:25.031250pt;}
.hc_c01188{height:25.726562pt;}
.h10_c01188{height:26.421875pt;}
.h16_c01188{height:32.679688pt;}
.h14_c01188{height:34.265625pt;}
.h15_c01188{height:35.578125pt;}
.h13_c01188{height:35.609375pt;}
.h1a_c01188{height:37.294922pt;}
.he_c01188{height:38.872396pt;}
.h27_c01188{height:41.023438pt;}
.h19_c01188{height:46.455078pt;}
.h22_c01188{height:47.109375pt;}
.h20_c01188{height:47.281250pt;}
.h17_c01188{height:47.763672pt;}
.h1b_c01188{height:48.417969pt;}
.h18_c01188{height:49.072266pt;}
.h29_c01188{height:49.718750pt;}
.h1d_c01188{height:49.726562pt;}
.h28_c01188{height:50.072917pt;}
.h1e_c01188{height:50.380859pt;}
.h21_c01188{height:50.731771pt;}
.h1c_c01188{height:51.035156pt;}
.h24_c01188{height:51.062500pt;}
.h26_c01188{height:51.689453pt;}
.h1f_c01188{height:51.734375pt;}
.h23_c01188{height:52.998047pt;}
.h25_c01188{height:53.078125pt;}
.h6_c01188{height:75.250000pt;}
.h9_c01188{height:75.921875pt;}
.h2_c01188{height:76.427083pt;}
.h4_c01188{height:76.593750pt;}
.h1_c01188{height:79.281250pt;}
.h3_c01188{height:81.039063pt;}
.h5_c01188{height:83.015625pt;}
.h7_c01188{height:84.333333pt;}
.h8_c01188{height:84.992188pt;}
.h0_c01188{height:793.333333pt;}
.w0_c01188{width:1122.666667pt;}
.x0_c01188{left:0.000000pt;}
.x1_c01188{left:78.079067pt;}
.xc_c01188{left:84.479067pt;}
.xe_c01188{left:139.199733pt;}
.xd_c01188{left:141.758813pt;}
.x2_c01188{left:154.879333pt;}
.x3_c01188{left:192.638667pt;}
.xf_c01188{left:208.960000pt;}
.x10_c01188{left:278.078680pt;}
.x4_c01188{left:287.359867pt;}
.x18_c01188{left:298.879333pt;}
.x19_c01188{left:322.558533pt;}
.x11_c01188{left:345.919840pt;}
.x5_c01188{left:353.598680pt;}
.x1a_c01188{left:362.239707pt;}
.x1b_c01188{left:398.399453pt;}
.x12_c01188{left:415.038533pt;}
.x6_c01188{left:428.799320pt;}
.x1c_c01188{left:438.399867pt;}
.x7_c01188{left:451.839840pt;}
.x13_c01188{left:483.518520pt;}
.x14_c01188{left:552.000000pt;}
.x8_c01188{left:602.879840pt;}
.x15_c01188{left:622.719720pt;}
.x9_c01188{left:638.078693pt;}
.x17_c01188{left:657.599040pt;}
.xa_c01188{left:669.118693pt;}
.x16_c01188{left:690.559573pt;}
.xb_c01188{left:694.079587pt;}
.x21_c01188{left:824.958907pt;}
.x41_c01188{left:828.479080pt;}
.x40_c01188{left:835.199707pt;}
.x22_c01188{left:836.159173pt;}
.x1d_c01188{left:859.519040pt;}
.x42_c01188{left:860.481387pt;}
.x2d_c01188{left:867.839280pt;}
.x36_c01188{left:872.958907pt;}
.x1e_c01188{left:875.519453pt;}
.x2e_c01188{left:881.598720pt;}
.x37_c01188{left:885.758787pt;}
.x3b_c01188{left:908.799320pt;}
.x2f_c01188{left:917.119547pt;}
.x27_c01188{left:926.078693pt;}
.x43_c01188{left:927.679693pt;}
.x38_c01188{left:929.598720pt;}
.x25_c01188{left:940.798747pt;}
.x44_c01188{left:947.198733pt;}
.x3c_c01188{left:948.159747pt;}
.x26_c01188{left:953.598720pt;}
.x28_c01188{left:963.518467pt;}
.x1f_c01188{left:972.799800pt;}
.x3d_c01188{left:974.718747pt;}
.x30_c01188{left:978.559573pt;}
.x39_c01188{left:979.519040pt;}
.x34_c01188{left:987.199133pt;}
.x3e_c01188{left:990.719160pt;}
.x45_c01188{left:991.999427pt;}
.x29_c01188{left:994.239173pt;}
.x35_c01188{left:999.999027pt;}
.x2a_c01188{left:1003.199707pt;}
.x20_c01188{left:1009.918947pt;}
.x2b_c01188{left:1029.439453pt;}
.x31_c01188{left:1031.039067pt;}
.x23_c01188{left:1032.000000pt;}
.x24_c01188{left:1042.879307pt;}
.x2c_c01188{left:1044.799800pt;}
.x32_c01188{left:1046.399413pt;}
.x3f_c01188{left:1052.479987pt;}
.x3a_c01188{left:1054.719720pt;}
.x33_c01188{left:1080.959467pt;}
}





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

.ir_c01189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_5f17731d7ecf6fc7a35a7eae.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01189;src:url('chunks/assets/font_d02c733c4adb419368a61465.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01189;src:url('chunks/assets/font_9d5610df1f68b109dd1558cf.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01189;src:url('chunks/assets/font_52ba3fa3f430ccd588325fd6.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01189;src:url('chunks/assets/font_f4ced534158ad5eb323b7db4.woff2')format("woff");}.ff5_c01189{font-family:ff5_c01189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01189;src:url('chunks/assets/font_56e8c3eb44f42a448bec58a6.woff2')format("woff");}.ff6_c01189{font-family:ff6_c01189;line-height:1.284668;font-style:normal;font-weight: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_c01189;src:url('chunks/assets/font_5de940eaea0a228683bb48d2.woff2')format("woff");}.ff7_c01189{font-family:ff7_c01189;line-height:1.432129;font-style:normal;font-weight: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_c01189;src:url('chunks/assets/font_e6f642f05909d96b8924c5da.woff2')format("woff");}.ff8_c01189{font-family:ff8_c01189;line-height:1.281250;font-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_c01189{transform:matrix(0.069444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069444,0.000000,0.000000,0.250000,0,0);}
.m20_c01189{transform:matrix(0.155844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155844,0.000000,0.000000,0.250000,0,0);}
.m1d_c01189{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.m26_c01189{transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194196,0.000000,0.000000,0.250000,0,0);}
.m1f_c01189{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.md_c01189{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m10_c01189{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m6_c01189{transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218468,0.000000,0.000000,0.250000,0,0);}
.m4_c01189{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.m5_c01189{transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225446,0.000000,0.000000,0.250000,0,0);}
.m11_c01189{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m3_c01189{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m2_c01189{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m29_c01189{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m31_c01189{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m25_c01189{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.ma_c01189{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m1c_c01189{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m19_c01189{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.mf_c01189{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m16_c01189{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m14_c01189{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m28_c01189{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m30_c01189{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m2d_c01189{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m23_c01189{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m22_c01189{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m2c_c01189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01189{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m21_c01189{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m13_c01189{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_c01189{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m2f_c01189{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m15_c01189{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m7_c01189{transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261062,0.000000,0.000000,0.250000,0,0);}
.m1_c01189{transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262136,0.000000,0.000000,0.250000,0,0);}
.m1b_c01189{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m27_c01189{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m12_c01189{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_c01189{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m24_c01189{transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279110,0.000000,0.000000,0.250000,0,0);}
.m1e_c01189{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_c01189{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.me_c01189{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m0_c01189{transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);}
.m9_c01189{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.mb_c01189{transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297297,0.000000,0.000000,0.250000,0,0);}
.m2e_c01189{transform:matrix(0.607143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607143,0.000000,0.000000,0.250000,0,0);}
.m2b_c01189{transform:matrix(0.690722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690722,0.000000,0.000000,0.250000,0,0);}
.m8_c01189{transform:matrix(7.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.v2_c01189{vertical-align:2.879700px;}
.v1_c01189{vertical-align:4.319940px;}
.ls29_c01189{letter-spacing:-18.345600px;}
.ls4_c01189{letter-spacing:-7.700385px;}
.ls1b_c01189{letter-spacing:-6.659438px;}
.ls6_c01189{letter-spacing:-6.517275px;}
.ls33_c01189{letter-spacing:-6.486375px;}
.ls26_c01189{letter-spacing:-6.300525px;}
.ls2d_c01189{letter-spacing:-5.250525px;}
.ls30_c01189{letter-spacing:-5.248410px;}
.ls1e_c01189{letter-spacing:-4.989600px;}
.lsa_c01189{letter-spacing:-4.889228px;}
.ls21_c01189{letter-spacing:-4.685625px;}
.ls18_c01189{letter-spacing:-4.584600px;}
.ls15_c01189{letter-spacing:-4.317750px;}
.ls12_c01189{letter-spacing:-4.098975px;}
.ls2c_c01189{letter-spacing:-3.803625px;}
.ls35_c01189{letter-spacing:-3.802050px;}
.lsb_c01189{letter-spacing:-3.429900px;}
.ls7_c01189{letter-spacing:-3.262875px;}
.ls10_c01189{letter-spacing:-3.208500px;}
.ls25_c01189{letter-spacing:-2.852273px;}
.ls2b_c01189{letter-spacing:-2.783550px;}
.ls36_c01189{letter-spacing:-2.427593px;}
.ls1f_c01189{letter-spacing:-2.381625px;}
.ls2a_c01189{letter-spacing:-2.315925px;}
.ls2f_c01189{letter-spacing:-2.284200px;}
.ls28_c01189{letter-spacing:-2.281703px;}
.ls24_c01189{letter-spacing:-2.217375px;}
.lsd_c01189{letter-spacing:-2.153498px;}
.ls2e_c01189{letter-spacing:-2.102678px;}
.ls11_c01189{letter-spacing:-1.892828px;}
.ls22_c01189{letter-spacing:-1.543950px;}
.ls31_c01189{letter-spacing:-1.500150px;}
.ls5_c01189{letter-spacing:-1.428353px;}
.ls1a_c01189{letter-spacing:-1.323000px;}
.ls20_c01189{letter-spacing:-1.051050px;}
.ls8_c01189{letter-spacing:-0.814350px;}
.ls1d_c01189{letter-spacing:-0.771975px;}
.ls1c_c01189{letter-spacing:-0.732600px;}
.lsf_c01189{letter-spacing:-0.640500px;}
.ls9_c01189{letter-spacing:0.000000px;}
.lse_c01189{letter-spacing:0.490500px;}
.ls19_c01189{letter-spacing:0.723308px;}
.ls17_c01189{letter-spacing:0.735375px;}
.ls0_c01189{letter-spacing:0.771975px;}
.ls13_c01189{letter-spacing:0.872100px;}
.ls32_c01189{letter-spacing:1.051050px;}
.ls14_c01189{letter-spacing:1.308150px;}
.ls27_c01189{letter-spacing:2.315925px;}
.ls2_c01189{letter-spacing:3.082425px;}
.ls3_c01189{letter-spacing:3.854400px;}
.lsc_c01189{letter-spacing:5.704523px;}
.ls1_c01189{letter-spacing:6.170325px;}
.ls34_c01189{letter-spacing:10.498373px;}
.ls23_c01189{letter-spacing:21.592853px;}
.ls16_c01189{letter-spacing:215.214450px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01189{word-spacing:0.000000px;}
._7_c01189{margin-left:-15.773352px;}
._9_c01189{margin-left:-9.574656px;}
._6_c01189{margin-left:-7.829127px;}
._8_c01189{margin-left:-5.327221px;}
._4_c01189{width:2.293516px;}
._5_c01189{width:4.489423px;}
._3_c01189{width:5.688386px;}
._1_c01189{width:6.718010px;}
._2_c01189{width:16.266395px;}
._0_c01189{width:42.315479px;}
._b_c01189{width:65.519263px;}
._d_c01189{width:67.747187px;}
._a_c01189{width:76.244511px;}
._c_c01189{width:80.087914px;}
.fc0_c01189{color:transparent;}
.fse_c01189{font-size:17.250000px;}
.fs6_c01189{font-size:22.500000px;}
.fsc_c01189{font-size:25.500000px;}
.fs7_c01189{font-size:26.250000px;}
.fsb_c01189{font-size:27.000000px;}
.fs9_c01189{font-size:27.750000px;}
.fsd_c01189{font-size:28.500000px;}
.fsa_c01189{font-size:30.750000px;}
.fs1b_c01189{font-size:32.250000px;}
.fs13_c01189{font-size:33.750000px;}
.fs8_c01189{font-size:34.500000px;}
.fs21_c01189{font-size:36.750000px;}
.fsf_c01189{font-size:37.500000px;}
.fs11_c01189{font-size:38.250000px;}
.fs12_c01189{font-size:39.000000px;}
.fs10_c01189{font-size:40.500000px;}
.fs20_c01189{font-size:51.000000px;}
.fs1c_c01189{font-size:51.750000px;}
.fs22_c01189{font-size:53.250000px;}
.fs1f_c01189{font-size:54.000000px;}
.fs15_c01189{font-size:54.750000px;}
.fs16_c01189{font-size:55.500000px;}
.fs14_c01189{font-size:56.250000px;}
.fs17_c01189{font-size:57.750000px;}
.fs18_c01189{font-size:58.500000px;}
.fs1d_c01189{font-size:60.000000px;}
.fs1e_c01189{font-size:72.750000px;}
.fs1_c01189{font-size:77.250000px;}
.fs19_c01189{font-size:80.250000px;}
.fs5_c01189{font-size:83.250000px;}
.fs4_c01189{font-size:84.000000px;}
.fs2_c01189{font-size:84.750000px;}
.fs0_c01189{font-size:88.500000px;}
.fs3_c01189{font-size:91.500000px;}
.fs1a_c01189{font-size:109.500000px;}
.y0_c01189{bottom:0.000000px;}
.y4_c01189{bottom:37.140150px;}
.y5_c01189{bottom:37.501050px;}
.y3_c01189{bottom:47.220750px;}
.y2_c01189{bottom:52.261800px;}
.y22_c01189{bottom:252.421650px;}
.y20_c01189{bottom:281.941080px;}
.y21_c01189{bottom:282.661485px;}
.y1e_c01189{bottom:312.540600px;}
.y1f_c01189{bottom:313.260720px;}
.y1d_c01189{bottom:342.421185px;}
.y1b_c01189{bottom:372.302190px;}
.y1c_c01189{bottom:373.381185px;}
.y19_c01189{bottom:402.180315px;}
.y1a_c01189{bottom:402.180720px;}
.y17_c01189{bottom:432.061335px;}
.y18_c01189{bottom:432.781500px;}
.y15_c01189{bottom:461.939850px;}
.y16_c01189{bottom:461.940255px;}
.y13_c01189{bottom:491.820870px;}
.y14_c01189{bottom:492.541035px;}
.y12_c01189{bottom:536.460570px;}
.y11_c01189{bottom:549.060750px;}
.y10_c01189{bottom:566.341185px;}
.yf_c01189{bottom:595.860900px;}
.ye_c01189{bottom:625.741470px;}
.yd_c01189{bottom:638.341785px;}
.yc_c01189{bottom:655.620435px;}
.yb_c01189{bottom:685.501005px;}
.ya_c01189{bottom:745.621635px;}
.y8_c01189{bottom:760.741425px;}
.y9_c01189{bottom:760.741470px;}
.y7_c01189{bottom:775.500555px;}
.y6_c01189{bottom:790.261140px;}
.y1_c01189{bottom:842.820825px;}
.hf_c01189{height:16.929932px;}
.h7_c01189{height:23.466797px;}
.hd_c01189{height:26.595703px;}
.h8_c01189{height:27.377930px;}
.hc_c01189{height:28.160156px;}
.ha_c01189{height:28.942383px;}
.he_c01189{height:29.724609px;}
.hb_c01189{height:30.389648px;}
.h1f_c01189{height:33.635742px;}
.h9_c01189{height:34.095703px;}
.h14_c01189{height:35.200195px;}
.h28_c01189{height:36.068115px;}
.h10_c01189{height:37.792969px;}
.h12_c01189{height:38.548828px;}
.h13_c01189{height:39.304688px;}
.h11_c01189{height:40.025391px;}
.h23_c01189{height:42.240234px;}
.h26_c01189{height:53.191406px;}
.h2a_c01189{height:53.666016px;}
.h16_c01189{height:53.734131px;}
.h21_c01189{height:53.973633px;}
.h25_c01189{height:54.421875px;}
.h17_c01189{height:54.470215px;}
.h19_c01189{height:55.177734px;}
.h15_c01189{height:55.206299px;}
.h29_c01189{height:56.613831px;}
.h18_c01189{height:56.678467px;}
.h1a_c01189{height:57.073242px;}
.h1b_c01189{height:57.414551px;}
.h27_c01189{height:58.054071px;}
.h1d_c01189{height:58.201172px;}
.h22_c01189{height:58.886719px;}
.h24_c01189{height:71.364624px;}
.h2_c01189{height:80.569336px;}
.h20_c01189{height:82.400391px;}
.h1c_c01189{height:83.698242px;}
.h6_c01189{height:83.900391px;}
.h5_c01189{height:84.656250px;}
.h3_c01189{height:85.412109px;}
.h1_c01189{height:89.191406px;}
.h4_c01189{height:90.427734px;}
.h1e_c01189{height:114.205078px;}
.h0_c01189{height:892.500000px;}
.w0_c01189{width:1263.000000px;}
.x0_c01189{left:0.000000px;}
.x1_c01189{left:83.878950px;}
.xc_c01189{left:151.199415px;}
.x2_c01189{left:169.559100px;}
.x3_c01189{left:211.679100px;}
.xd_c01189{left:228.239250px;}
.xe_c01189{left:305.999385px;}
.x16_c01189{left:330.118785px;}
.x17_c01189{left:357.479685px;}
.xf_c01189{left:383.759535px;}
.x4_c01189{left:393.838530px;}
.x18_c01189{left:402.839535px;}
.x19_c01189{left:443.159820px;}
.x10_c01189{left:461.519670px;}
.x5_c01189{left:477.719100px;}
.x1a_c01189{left:486.718500px;}
.x6_c01189{left:502.919535px;}
.x11_c01189{left:538.918950px;}
.xb_c01189{left:540.359250px;}
.x12_c01189{left:616.319820px;}
.x7_c01189{left:672.839535px;}
.x13_c01189{left:696.238770px;}
.x8_c01189{left:710.638545px;}
.x15_c01189{left:737.638545px;}
.x9_c01189{left:744.838530px;}
.x14_c01189{left:772.199340px;}
.xa_c01189{left:773.639655px;}
.x35_c01189{left:910.079955px;}
.x2f_c01189{left:911.518620px;}
.x31_c01189{left:914.758575px;}
.x22_c01189{left:916.198350px;}
.x36_c01189{left:919.079400px;}
.x3c_c01189{left:920.158380px;}
.x42_c01189{left:921.239805px;}
.x2d_c01189{left:952.559055px;}
.x1b_c01189{left:954.358605px;}
.x32_c01189{left:955.439670px;}
.x34_c01189{left:956.519070px;}
.x37_c01189{left:957.598575px;}
.x3f_c01189{left:959.399775px;}
.x46_c01189{left:960.479190px;}
.x1c_c01189{left:972.359250px;}
.x33_c01189{left:993.238770px;}
.x30_c01189{left:994.679070px;}
.x43_c01189{left:1018.079955px;}
.x23_c01189{left:1020.599670px;}
.x1d_c01189{left:1030.319190px;}
.x24_c01189{left:1031.759490px;}
.x38_c01189{left:1032.838905px;}
.x3d_c01189{left:1033.918305px;}
.x44_c01189{left:1034.999355px;}
.x26_c01189{left:1043.639655px;}
.x25_c01189{left:1047.599670px;}
.x27_c01189{left:1055.878965px;}
.x3e_c01189{left:1056.958275px;}
.x28_c01189{left:1073.159370px;}
.x1e_c01189{left:1078.559685px;}
.x39_c01189{left:1083.239865px;}
.x40_c01189{left:1084.319190px;}
.x45_c01189{left:1085.398590px;}
.x3a_c01189{left:1100.879520px;}
.x41_c01189{left:1107.718590px;}
.x3b_c01189{left:1123.919490px;}
.x29_c01189{left:1128.238770px;}
.x2a_c01189{left:1139.759490px;}
.x1f_c01189{left:1149.838530px;}
.x2b_c01189{left:1157.399235px;}
.x20_c01189{left:1164.599025px;}
.x2c_c01189{left:1176.479190px;}
.x2e_c01189{left:1193.759490px;}
.x21_c01189{left:1203.119940px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.v2_c01189{vertical-align:2.559733pt;}
.v1_c01189{vertical-align:3.839947pt;}
.ls29_c01189{letter-spacing:-16.307200pt;}
.ls4_c01189{letter-spacing:-6.844787pt;}
.ls1b_c01189{letter-spacing:-5.919500pt;}
.ls6_c01189{letter-spacing:-5.793133pt;}
.ls33_c01189{letter-spacing:-5.765667pt;}
.ls26_c01189{letter-spacing:-5.600467pt;}
.ls2d_c01189{letter-spacing:-4.667133pt;}
.ls30_c01189{letter-spacing:-4.665253pt;}
.ls1e_c01189{letter-spacing:-4.435200pt;}
.lsa_c01189{letter-spacing:-4.345980pt;}
.ls21_c01189{letter-spacing:-4.165000pt;}
.ls18_c01189{letter-spacing:-4.075200pt;}
.ls15_c01189{letter-spacing:-3.838000pt;}
.ls12_c01189{letter-spacing:-3.643533pt;}
.ls2c_c01189{letter-spacing:-3.381000pt;}
.ls35_c01189{letter-spacing:-3.379600pt;}
.lsb_c01189{letter-spacing:-3.048800pt;}
.ls7_c01189{letter-spacing:-2.900333pt;}
.ls10_c01189{letter-spacing:-2.852000pt;}
.ls25_c01189{letter-spacing:-2.535353pt;}
.ls2b_c01189{letter-spacing:-2.474267pt;}
.ls36_c01189{letter-spacing:-2.157860pt;}
.ls1f_c01189{letter-spacing:-2.117000pt;}
.ls2a_c01189{letter-spacing:-2.058600pt;}
.ls2f_c01189{letter-spacing:-2.030400pt;}
.ls28_c01189{letter-spacing:-2.028180pt;}
.ls24_c01189{letter-spacing:-1.971000pt;}
.lsd_c01189{letter-spacing:-1.914220pt;}
.ls2e_c01189{letter-spacing:-1.869047pt;}
.ls11_c01189{letter-spacing:-1.682513pt;}
.ls22_c01189{letter-spacing:-1.372400pt;}
.ls31_c01189{letter-spacing:-1.333467pt;}
.ls5_c01189{letter-spacing:-1.269647pt;}
.ls1a_c01189{letter-spacing:-1.176000pt;}
.ls20_c01189{letter-spacing:-0.934267pt;}
.ls8_c01189{letter-spacing:-0.723867pt;}
.ls1d_c01189{letter-spacing:-0.686200pt;}
.ls1c_c01189{letter-spacing:-0.651200pt;}
.lsf_c01189{letter-spacing:-0.569333pt;}
.ls9_c01189{letter-spacing:0.000000pt;}
.lse_c01189{letter-spacing:0.436000pt;}
.ls19_c01189{letter-spacing:0.642940pt;}
.ls17_c01189{letter-spacing:0.653667pt;}
.ls0_c01189{letter-spacing:0.686200pt;}
.ls13_c01189{letter-spacing:0.775200pt;}
.ls32_c01189{letter-spacing:0.934267pt;}
.ls14_c01189{letter-spacing:1.162800pt;}
.ls27_c01189{letter-spacing:2.058600pt;}
.ls2_c01189{letter-spacing:2.739933pt;}
.ls3_c01189{letter-spacing:3.426133pt;}
.lsc_c01189{letter-spacing:5.070687pt;}
.ls1_c01189{letter-spacing:5.484733pt;}
.ls34_c01189{letter-spacing:9.331887pt;}
.ls23_c01189{letter-spacing:19.193647pt;}
.ls16_c01189{letter-spacing:191.301733pt;}
.ws0_c01189{word-spacing:0.000000pt;}
._7_c01189{margin-left:-14.020757pt;}
._9_c01189{margin-left:-8.510805pt;}
._6_c01189{margin-left:-6.959224pt;}
._8_c01189{margin-left:-4.735308pt;}
._4_c01189{width:2.038681pt;}
._5_c01189{width:3.990598pt;}
._3_c01189{width:5.056343pt;}
._1_c01189{width:5.971565pt;}
._2_c01189{width:14.459017pt;}
._0_c01189{width:37.613759pt;}
._b_c01189{width:58.239345pt;}
._d_c01189{width:60.219722pt;}
._a_c01189{width:67.772898pt;}
._c_c01189{width:71.189257pt;}
.fse_c01189{font-size:15.333333pt;}
.fs6_c01189{font-size:20.000000pt;}
.fsc_c01189{font-size:22.666667pt;}
.fs7_c01189{font-size:23.333333pt;}
.fsb_c01189{font-size:24.000000pt;}
.fs9_c01189{font-size:24.666667pt;}
.fsd_c01189{font-size:25.333333pt;}
.fsa_c01189{font-size:27.333333pt;}
.fs1b_c01189{font-size:28.666667pt;}
.fs13_c01189{font-size:30.000000pt;}
.fs8_c01189{font-size:30.666667pt;}
.fs21_c01189{font-size:32.666667pt;}
.fsf_c01189{font-size:33.333333pt;}
.fs11_c01189{font-size:34.000000pt;}
.fs12_c01189{font-size:34.666667pt;}
.fs10_c01189{font-size:36.000000pt;}
.fs20_c01189{font-size:45.333333pt;}
.fs1c_c01189{font-size:46.000000pt;}
.fs22_c01189{font-size:47.333333pt;}
.fs1f_c01189{font-size:48.000000pt;}
.fs15_c01189{font-size:48.666667pt;}
.fs16_c01189{font-size:49.333333pt;}
.fs14_c01189{font-size:50.000000pt;}
.fs17_c01189{font-size:51.333333pt;}
.fs18_c01189{font-size:52.000000pt;}
.fs1d_c01189{font-size:53.333333pt;}
.fs1e_c01189{font-size:64.666667pt;}
.fs1_c01189{font-size:68.666667pt;}
.fs19_c01189{font-size:71.333333pt;}
.fs5_c01189{font-size:74.000000pt;}
.fs4_c01189{font-size:74.666667pt;}
.fs2_c01189{font-size:75.333333pt;}
.fs0_c01189{font-size:78.666667pt;}
.fs3_c01189{font-size:81.333333pt;}
.fs1a_c01189{font-size:97.333333pt;}
.y0_c01189{bottom:0.000000pt;}
.y4_c01189{bottom:33.013467pt;}
.y5_c01189{bottom:33.334267pt;}
.y3_c01189{bottom:41.974000pt;}
.y2_c01189{bottom:46.454933pt;}
.y22_c01189{bottom:224.374800pt;}
.y20_c01189{bottom:250.614293pt;}
.y21_c01189{bottom:251.254653pt;}
.y1e_c01189{bottom:277.813867pt;}
.y1f_c01189{bottom:278.453973pt;}
.y1d_c01189{bottom:304.374387pt;}
.y1b_c01189{bottom:330.935280pt;}
.y1c_c01189{bottom:331.894387pt;}
.y19_c01189{bottom:357.493613pt;}
.y1a_c01189{bottom:357.493973pt;}
.y17_c01189{bottom:384.054520pt;}
.y18_c01189{bottom:384.694667pt;}
.y15_c01189{bottom:410.613200pt;}
.y16_c01189{bottom:410.613560pt;}
.y13_c01189{bottom:437.174107pt;}
.y14_c01189{bottom:437.814253pt;}
.y12_c01189{bottom:476.853840pt;}
.y11_c01189{bottom:488.054000pt;}
.y10_c01189{bottom:503.414387pt;}
.yf_c01189{bottom:529.654133pt;}
.ye_c01189{bottom:556.214640pt;}
.yd_c01189{bottom:567.414920pt;}
.yc_c01189{bottom:582.773720pt;}
.yb_c01189{bottom:609.334227pt;}
.ya_c01189{bottom:662.774787pt;}
.y8_c01189{bottom:676.214600pt;}
.y9_c01189{bottom:676.214640pt;}
.y7_c01189{bottom:689.333827pt;}
.y6_c01189{bottom:702.454347pt;}
.y1_c01189{bottom:749.174067pt;}
.hf_c01189{height:15.048828pt;}
.h7_c01189{height:20.859375pt;}
.hd_c01189{height:23.640625pt;}
.h8_c01189{height:24.335938pt;}
.hc_c01189{height:25.031250pt;}
.ha_c01189{height:25.726562pt;}
.he_c01189{height:26.421875pt;}
.hb_c01189{height:27.013021pt;}
.h1f_c01189{height:29.898438pt;}
.h9_c01189{height:30.307292pt;}
.h14_c01189{height:31.289062pt;}
.h28_c01189{height:32.060547pt;}
.h10_c01189{height:33.593750pt;}
.h12_c01189{height:34.265625pt;}
.h13_c01189{height:34.937500pt;}
.h11_c01189{height:35.578125pt;}
.h23_c01189{height:37.546875pt;}
.h26_c01189{height:47.281250pt;}
.h2a_c01189{height:47.703125pt;}
.h16_c01189{height:47.763672pt;}
.h21_c01189{height:47.976562pt;}
.h25_c01189{height:48.375000pt;}
.h17_c01189{height:48.417969pt;}
.h19_c01189{height:49.046875pt;}
.h15_c01189{height:49.072266pt;}
.h29_c01189{height:50.323405pt;}
.h18_c01189{height:50.380859pt;}
.h1a_c01189{height:50.731771pt;}
.h1b_c01189{height:51.035156pt;}
.h27_c01189{height:51.603619pt;}
.h1d_c01189{height:51.734375pt;}
.h22_c01189{height:52.343750pt;}
.h24_c01189{height:63.435221pt;}
.h2_c01189{height:71.617188pt;}
.h20_c01189{height:73.244792pt;}
.h1c_c01189{height:74.398438pt;}
.h6_c01189{height:74.578125pt;}
.h5_c01189{height:75.250000pt;}
.h3_c01189{height:75.921875pt;}
.h1_c01189{height:79.281250pt;}
.h4_c01189{height:80.380208pt;}
.h1e_c01189{height:101.515625pt;}
.h0_c01189{height:793.333333pt;}
.w0_c01189{width:1122.666667pt;}
.x0_c01189{left:0.000000pt;}
.x1_c01189{left:74.559067pt;}
.xc_c01189{left:134.399480pt;}
.x2_c01189{left:150.719200pt;}
.x3_c01189{left:188.159200pt;}
.xd_c01189{left:202.879333pt;}
.xe_c01189{left:271.999453pt;}
.x16_c01189{left:293.438920pt;}
.x17_c01189{left:317.759720pt;}
.xf_c01189{left:341.119587pt;}
.x4_c01189{left:350.078693pt;}
.x18_c01189{left:358.079587pt;}
.x19_c01189{left:393.919840pt;}
.x10_c01189{left:410.239707pt;}
.x5_c01189{left:424.639200pt;}
.x1a_c01189{left:432.638667pt;}
.x6_c01189{left:447.039587pt;}
.x11_c01189{left:479.039067pt;}
.xb_c01189{left:480.319333pt;}
.x12_c01189{left:547.839840pt;}
.x7_c01189{left:598.079587pt;}
.x13_c01189{left:618.878907pt;}
.x8_c01189{left:631.678707pt;}
.x15_c01189{left:655.678707pt;}
.x9_c01189{left:662.078693pt;}
.x14_c01189{left:686.399413pt;}
.xa_c01189{left:687.679693pt;}
.x35_c01189{left:808.959960pt;}
.x2f_c01189{left:810.238773pt;}
.x31_c01189{left:813.118733pt;}
.x22_c01189{left:814.398533pt;}
.x36_c01189{left:816.959467pt;}
.x3c_c01189{left:817.918560pt;}
.x42_c01189{left:818.879827pt;}
.x2d_c01189{left:846.719160pt;}
.x1b_c01189{left:848.318760pt;}
.x32_c01189{left:849.279707pt;}
.x34_c01189{left:850.239173pt;}
.x37_c01189{left:851.198733pt;}
.x3f_c01189{left:852.799800pt;}
.x46_c01189{left:853.759280pt;}
.x1c_c01189{left:864.319333pt;}
.x33_c01189{left:882.878907pt;}
.x30_c01189{left:884.159173pt;}
.x43_c01189{left:904.959960pt;}
.x23_c01189{left:907.199707pt;}
.x1d_c01189{left:915.839280pt;}
.x24_c01189{left:917.119547pt;}
.x38_c01189{left:918.079027pt;}
.x3d_c01189{left:919.038493pt;}
.x44_c01189{left:919.999427pt;}
.x26_c01189{left:927.679693pt;}
.x25_c01189{left:931.199707pt;}
.x27_c01189{left:938.559080pt;}
.x3e_c01189{left:939.518467pt;}
.x28_c01189{left:953.919440pt;}
.x1e_c01189{left:958.719720pt;}
.x39_c01189{left:962.879880pt;}
.x40_c01189{left:963.839280pt;}
.x45_c01189{left:964.798747pt;}
.x3a_c01189{left:978.559573pt;}
.x41_c01189{left:984.638747pt;}
.x3b_c01189{left:999.039547pt;}
.x29_c01189{left:1002.878907pt;}
.x2a_c01189{left:1013.119547pt;}
.x1f_c01189{left:1022.078693pt;}
.x2b_c01189{left:1028.799320pt;}
.x20_c01189{left:1035.199133pt;}
.x2c_c01189{left:1045.759280pt;}
.x2e_c01189{left:1061.119547pt;}
.x21_c01189{left:1069.439947pt;}
}





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

.ir_c01190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_1f2c954beae593382980f2ea.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01190;src:url('chunks/assets/font_725b92e5d9fbc27b3dd5bc81.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01190;src:url('chunks/assets/font_fe447bafbe1feba0e8407424.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01190;src:url('chunks/assets/font_82f68fc95b3dcb68b87cf518.woff2')format("woff");}.ff4_c01190{font-family:ff4_c01190;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01190;src:url('chunks/assets/font_725122395038cddb0ae04293.woff2')format("woff");}.ff5_c01190{font-family:ff5_c01190;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01190;src:url('chunks/assets/font_14c9e69892d41804f494bcb7.woff2')format("woff");}.ff6_c01190{font-family:ff6_c01190;line-height:1.364746;font-style:normal;font-weight: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_c01190;src:url('chunks/assets/font_e4ef126358802cf97f03d1ad.woff2')format("woff");}.ff7_c01190{font-family:ff7_c01190;line-height:1.432129;font-style:normal;font-weight: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_c01190;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff8_c01190{font-family:ff8_c01190;line-height:1.284180;font-style:normal;font-weight: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_c01190;src:url('chunks/assets/font_6e47aaa06c6d2c39ec922660.woff2')format("woff");}.ff9_c01190{font-family:ff9_c01190;line-height:1.284668;font-style:normal;font-weight: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_c01190;src:url('chunks/assets/font_5dc877de89b088455f66b083.woff2')format("woff");}.ffa_c01190{font-family:ffa_c01190;line-height:1.432129;font-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_c01190{transform:matrix(0.128205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128205,0.000000,0.000000,0.250000,0,0);}
.m1b_c01190{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m10_c01190{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m25_c01190{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.ma_c01190{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.m28_c01190{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_c01190{transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224771,0.000000,0.000000,0.250000,0,0);}
.m9_c01190{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m4_c01190{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m5_c01190{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m17_c01190{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m1e_c01190{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m13_c01190{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m3_c01190{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m1d_c01190{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m15_c01190{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m24_c01190{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m23_c01190{transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);}
.m29_c01190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01190{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m16_c01190{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m11_c01190{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_c01190{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m1a_c01190{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.me_c01190{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.mf_c01190{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m19_c01190{transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);}
.m12_c01190{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_c01190{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m2_c01190{transform:matrix(0.279279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279279,0.000000,0.000000,0.250000,0,0);}
.m27_c01190{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.mb_c01190{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m14_c01190{transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290816,0.000000,0.000000,0.250000,0,0);}
.m1_c01190{transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);}
.m1f_c01190{transform:matrix(0.298485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298485,0.000000,0.000000,0.250000,0,0);}
.md_c01190{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m20_c01190{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.mc_c01190{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m6_c01190{transform:matrix(0.335069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335069,0.000000,0.000000,0.250000,0,0);}
.m0_c01190{transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487179,0.000000,0.000000,0.250000,0,0);}
.m26_c01190{transform:matrix(0.619186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619186,0.000000,0.000000,0.250000,0,0);}
.m7_c01190{transform:matrix(2.033654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.033654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.033654,0.000000,0.000000,0.250000,0,0);}
.v0_c01190{vertical-align:0.000000px;}
.lsa_c01190{letter-spacing:-11.750400px;}
.ls8_c01190{letter-spacing:-9.429750px;}
.ls1e_c01190{letter-spacing:-9.367725px;}
.ls24_c01190{letter-spacing:-9.138675px;}
.ls22_c01190{letter-spacing:-8.790525px;}
.lsb_c01190{letter-spacing:-8.299200px;}
.ls1a_c01190{letter-spacing:-7.205648px;}
.ls3_c01190{letter-spacing:-7.069425px;}
.ls23_c01190{letter-spacing:-6.481853px;}
.ls6_c01190{letter-spacing:-6.286500px;}
.ls29_c01190{letter-spacing:-5.042475px;}
.ls1f_c01190{letter-spacing:-4.438125px;}
.ls16_c01190{letter-spacing:-4.414800px;}
.ls15_c01190{letter-spacing:-3.969405px;}
.ls27_c01190{letter-spacing:-3.939128px;}
.ls4_c01190{letter-spacing:-3.927825px;}
.ls10_c01190{letter-spacing:-3.716400px;}
.ls26_c01190{letter-spacing:-3.602550px;}
.ls19_c01190{letter-spacing:-3.563753px;}
.ls1d_c01190{letter-spacing:-3.336000px;}
.ls5_c01190{letter-spacing:-3.143250px;}
.ls25_c01190{letter-spacing:-3.081938px;}
.ls1c_c01190{letter-spacing:-2.879850px;}
.ls13_c01190{letter-spacing:-2.625262px;}
.lsf_c01190{letter-spacing:-2.600325px;}
.ls1b_c01190{letter-spacing:-2.163173px;}
.lse_c01190{letter-spacing:-1.709700px;}
.lsd_c01190{letter-spacing:-1.656900px;}
.ls17_c01190{letter-spacing:-1.440473px;}
.lsc_c01190{letter-spacing:-1.387500px;}
.ls7_c01190{letter-spacing:-0.806400px;}
.ls20_c01190{letter-spacing:-0.780900px;}
.ls18_c01190{letter-spacing:-0.722700px;}
.ls12_c01190{letter-spacing:-0.696150px;}
.ls0_c01190{letter-spacing:0.000000px;}
.ls2_c01190{letter-spacing:0.674325px;}
.ls11_c01190{letter-spacing:0.708900px;}
.ls14_c01190{letter-spacing:0.720000px;}
.ls1_c01190{letter-spacing:1.915350px;}
.ls21_c01190{letter-spacing:4.446000px;}
.ls9_c01190{letter-spacing:5.502750px;}
.ls28_c01190{letter-spacing:28.980000px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:0.000000px;}
._8_c01190{margin-left:-4.024010px;}
._b_c01190{margin-left:-2.726262px;}
._a_c01190{width:2.277542px;}
._5_c01190{width:3.281052px;}
._7_c01190{width:4.653404px;}
._6_c01190{width:5.831884px;}
._3_c01190{width:7.725110px;}
._c_c01190{width:8.817574px;}
._9_c01190{width:16.049127px;}
._4_c01190{width:18.264571px;}
._1_c01190{width:37.039844px;}
._0_c01190{width:41.927891px;}
._2_c01190{width:43.939233px;}
.fc0_c01190{color:transparent;}
.fsd_c01190{font-size:25.500000px;}
.fsb_c01190{font-size:26.250000px;}
.fs8_c01190{font-size:27.750000px;}
.fsc_c01190{font-size:28.500000px;}
.fs0_c01190{font-size:29.250000px;}
.fsa_c01190{font-size:30.750000px;}
.fs9_c01190{font-size:31.500000px;}
.fs1e_c01190{font-size:34.500000px;}
.fs10_c01190{font-size:36.750000px;}
.fse_c01190{font-size:37.500000px;}
.fs7_c01190{font-size:39.000000px;}
.fs11_c01190{font-size:39.750000px;}
.fsf_c01190{font-size:40.500000px;}
.fs14_c01190{font-size:47.250000px;}
.fs12_c01190{font-size:53.250000px;}
.fs13_c01190{font-size:54.750000px;}
.fs17_c01190{font-size:56.250000px;}
.fs18_c01190{font-size:57.000000px;}
.fs15_c01190{font-size:57.750000px;}
.fs1d_c01190{font-size:58.500000px;}
.fs16_c01190{font-size:60.000000px;}
.fs19_c01190{font-size:60.750000px;}
.fs1f_c01190{font-size:64.500000px;}
.fs1b_c01190{font-size:68.250000px;}
.fs20_c01190{font-size:72.000000px;}
.fs1c_c01190{font-size:81.750000px;}
.fs3_c01190{font-size:82.500000px;}
.fs2_c01190{font-size:83.250000px;}
.fs5_c01190{font-size:84.000000px;}
.fs1_c01190{font-size:84.750000px;}
.fs4_c01190{font-size:87.000000px;}
.fs6_c01190{font-size:108.000000px;}
.fs1a_c01190{font-size:123.750000px;}
.y0_c01190{bottom:0.000000px;}
.y4_c01190{bottom:34.620435px;}
.y3_c01190{bottom:42.540600px;}
.y2_c01190{bottom:52.261800px;}
.y1d_c01190{bottom:238.740435px;}
.y1c_c01190{bottom:238.741215px;}
.y1b_c01190{bottom:268.982340px;}
.y19_c01190{bottom:298.860210px;}
.y1a_c01190{bottom:298.860885px;}
.y18_c01190{bottom:329.100075px;}
.y17_c01190{bottom:358.981335px;}
.y16_c01190{bottom:358.982235px;}
.y15_c01190{bottom:388.860780px;}
.y14_c01190{bottom:418.381965px;}
.y13_c01190{bottom:448.621830px;}
.y12_c01190{bottom:478.500360px;}
.y11_c01190{bottom:522.780900px;}
.y10_c01190{bottom:540.781500px;}
.yf_c01190{bottom:552.661470px;}
.ye_c01190{bottom:563.821470px;}
.yd_c01190{bottom:582.901470px;}
.yc_c01190{bottom:612.062325px;}
.yb_c01190{bottom:641.940855px;}
.ya_c01190{bottom:671.822070px;}
.y9_c01190{bottom:731.940255px;}
.y8_c01190{bottom:747.061935px;}
.y7_c01190{bottom:761.820870px;}
.y6_c01190{bottom:776.940855px;}
.y5_c01190{bottom:791.701440px;}
.y1_c01190{bottom:837.061335px;}
.hf_c01190{height:26.595703px;}
.hd_c01190{height:27.377930px;}
.h10_c01190{height:28.692993px;}
.hc_c01190{height:28.907227px;}
.h9_c01190{height:28.942383px;}
.he_c01190{height:29.724609px;}
.hb_c01190{height:30.389648px;}
.h1_c01190{height:30.506836px;}
.ha_c01190{height:31.130859px;}
.h23_c01190{height:35.982422px;}
.h13_c01190{height:37.037109px;}
.h11_c01190{height:37.792969px;}
.h8_c01190{height:38.257324px;}
.h15_c01190{height:38.542969px;}
.h12_c01190{height:40.025391px;}
.h14_c01190{height:40.060547px;}
.h18_c01190{height:49.280273px;}
.h16_c01190{height:52.261963px;}
.h17_c01190{height:53.734131px;}
.h1c_c01190{height:55.942383px;}
.h19_c01190{height:56.678467px;}
.h1b_c01190{height:56.689453px;}
.h1a_c01190{height:59.296875px;}
.h1d_c01190{height:60.038086px;}
.h21_c01190{height:61.013672px;}
.h22_c01190{height:66.950317px;}
.h24_c01190{height:67.271484px;}
.h1f_c01190{height:71.182617px;}
.h25_c01190{height:75.093750px;}
.h4_c01190{height:83.144531px;}
.h3_c01190{height:83.900391px;}
.h6_c01190{height:84.656250px;}
.h20_c01190{height:85.262695px;}
.h2_c01190{height:85.412109px;}
.h5_c01190{height:87.679688px;}
.h7_c01190{height:112.640625px;}
.h1e_c01190{height:129.067383px;}
.h0_c01190{height:892.500000px;}
.w0_c01190{width:1263.000000px;}
.x0_c01190{left:0.000000px;}
.x1_c01190{left:29.158785px;}
.x2_c01190{left:81.718500px;}
.xb_c01190{left:155.159415px;}
.x3_c01190{left:168.838950px;}
.x4_c01190{left:211.679100px;}
.xc_c01190{left:232.919535px;}
.xd_c01190{left:310.679700px;}
.x13_c01190{left:334.078785px;}
.x14_c01190{left:361.798950px;}
.xe_c01190{left:387.719565px;}
.x15_c01190{left:406.799565px;}
.x16_c01190{left:446.399820px;}
.xf_c01190{left:465.479685px;}
.x5_c01190{left:477.719100px;}
.x17_c01190{left:492.118785px;}
.x6_c01190{left:503.998950px;}
.x10_c01190{left:544.319235px;}
.x11_c01190{left:621.359250px;}
.x7_c01190{left:674.639100px;}
.x12_c01190{left:700.198785px;}
.x8_c01190{left:713.878320px;}
.xa_c01190{left:740.878320px;}
.x9_c01190{left:777.238770px;}
.x1e_c01190{left:930.599595px;}
.x2a_c01190{left:933.119940px;}
.x28_c01190{left:938.159370px;}
.x27_c01190{left:939.599670px;}
.x1f_c01190{left:957.598575px;}
.x18_c01190{left:969.478635px;}
.x26_c01190{left:970.560465px;}
.x2b_c01190{left:972.358560px;}
.x2e_c01190{left:973.438845px;}
.x31_c01190{left:974.519550px;}
.x29_c01190{left:981.358605px;}
.x19_c01190{left:984.598575px;}
.x20_c01190{left:986.038875px;}
.x32_c01190{left:1020.958920px;}
.x21_c01190{left:1031.759490px;}
.x1a_c01190{left:1052.279850px;}
.x22_c01190{left:1064.878320px;}
.x1b_c01190{left:1080.000000px;}
.x2f_c01190{left:1099.079955px;}
.x23_c01190{left:1105.559685px;}
.x1c_c01190{left:1111.678530px;}
.x2c_c01190{left:1119.959385px;}
.x30_c01190{left:1121.759040px;}
.x1d_c01190{left:1128.238770px;}
.x24_c01190{left:1129.679070px;}
.x2d_c01190{left:1143.358605px;}
.x25_c01190{left:1199.878320px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.lsa_c01190{letter-spacing:-10.444800pt;}
.ls8_c01190{letter-spacing:-8.382000pt;}
.ls1e_c01190{letter-spacing:-8.326867pt;}
.ls24_c01190{letter-spacing:-8.123267pt;}
.ls22_c01190{letter-spacing:-7.813800pt;}
.lsb_c01190{letter-spacing:-7.377067pt;}
.ls1a_c01190{letter-spacing:-6.405020pt;}
.ls3_c01190{letter-spacing:-6.283933pt;}
.ls23_c01190{letter-spacing:-5.761647pt;}
.ls6_c01190{letter-spacing:-5.588000pt;}
.ls29_c01190{letter-spacing:-4.482200pt;}
.ls1f_c01190{letter-spacing:-3.945000pt;}
.ls16_c01190{letter-spacing:-3.924267pt;}
.ls15_c01190{letter-spacing:-3.528360pt;}
.ls27_c01190{letter-spacing:-3.501447pt;}
.ls4_c01190{letter-spacing:-3.491400pt;}
.ls10_c01190{letter-spacing:-3.303467pt;}
.ls26_c01190{letter-spacing:-3.202267pt;}
.ls19_c01190{letter-spacing:-3.167780pt;}
.ls1d_c01190{letter-spacing:-2.965333pt;}
.ls5_c01190{letter-spacing:-2.794000pt;}
.ls25_c01190{letter-spacing:-2.739500pt;}
.ls1c_c01190{letter-spacing:-2.559867pt;}
.ls13_c01190{letter-spacing:-2.333567pt;}
.lsf_c01190{letter-spacing:-2.311400pt;}
.ls1b_c01190{letter-spacing:-1.922820pt;}
.lse_c01190{letter-spacing:-1.519733pt;}
.lsd_c01190{letter-spacing:-1.472800pt;}
.ls17_c01190{letter-spacing:-1.280420pt;}
.lsc_c01190{letter-spacing:-1.233333pt;}
.ls7_c01190{letter-spacing:-0.716800pt;}
.ls20_c01190{letter-spacing:-0.694133pt;}
.ls18_c01190{letter-spacing:-0.642400pt;}
.ls12_c01190{letter-spacing:-0.618800pt;}
.ls0_c01190{letter-spacing:0.000000pt;}
.ls2_c01190{letter-spacing:0.599400pt;}
.ls11_c01190{letter-spacing:0.630133pt;}
.ls14_c01190{letter-spacing:0.640000pt;}
.ls1_c01190{letter-spacing:1.702533pt;}
.ls21_c01190{letter-spacing:3.952000pt;}
.ls9_c01190{letter-spacing:4.891333pt;}
.ls28_c01190{letter-spacing:25.760000pt;}
.ws0_c01190{word-spacing:0.000000pt;}
._8_c01190{margin-left:-3.576898pt;}
._b_c01190{margin-left:-2.423344pt;}
._a_c01190{width:2.024482pt;}
._5_c01190{width:2.916491pt;}
._7_c01190{width:4.136359pt;}
._6_c01190{width:5.183896pt;}
._3_c01190{width:6.866764pt;}
._c_c01190{width:7.837844pt;}
._9_c01190{width:14.265891pt;}
._4_c01190{width:16.235174pt;}
._1_c01190{width:32.924306pt;}
._0_c01190{width:37.269236pt;}
._2_c01190{width:39.057096pt;}
.fsd_c01190{font-size:22.666667pt;}
.fsb_c01190{font-size:23.333333pt;}
.fs8_c01190{font-size:24.666667pt;}
.fsc_c01190{font-size:25.333333pt;}
.fs0_c01190{font-size:26.000000pt;}
.fsa_c01190{font-size:27.333333pt;}
.fs9_c01190{font-size:28.000000pt;}
.fs1e_c01190{font-size:30.666667pt;}
.fs10_c01190{font-size:32.666667pt;}
.fse_c01190{font-size:33.333333pt;}
.fs7_c01190{font-size:34.666667pt;}
.fs11_c01190{font-size:35.333333pt;}
.fsf_c01190{font-size:36.000000pt;}
.fs14_c01190{font-size:42.000000pt;}
.fs12_c01190{font-size:47.333333pt;}
.fs13_c01190{font-size:48.666667pt;}
.fs17_c01190{font-size:50.000000pt;}
.fs18_c01190{font-size:50.666667pt;}
.fs15_c01190{font-size:51.333333pt;}
.fs1d_c01190{font-size:52.000000pt;}
.fs16_c01190{font-size:53.333333pt;}
.fs19_c01190{font-size:54.000000pt;}
.fs1f_c01190{font-size:57.333333pt;}
.fs1b_c01190{font-size:60.666667pt;}
.fs20_c01190{font-size:64.000000pt;}
.fs1c_c01190{font-size:72.666667pt;}
.fs3_c01190{font-size:73.333333pt;}
.fs2_c01190{font-size:74.000000pt;}
.fs5_c01190{font-size:74.666667pt;}
.fs1_c01190{font-size:75.333333pt;}
.fs4_c01190{font-size:77.333333pt;}
.fs6_c01190{font-size:96.000000pt;}
.fs1a_c01190{font-size:110.000000pt;}
.y0_c01190{bottom:0.000000pt;}
.y4_c01190{bottom:30.773720pt;}
.y3_c01190{bottom:37.813867pt;}
.y2_c01190{bottom:46.454933pt;}
.y1d_c01190{bottom:212.213720pt;}
.y1c_c01190{bottom:212.214413pt;}
.y1b_c01190{bottom:239.095413pt;}
.y19_c01190{bottom:265.653520pt;}
.y1a_c01190{bottom:265.654120pt;}
.y18_c01190{bottom:292.533400pt;}
.y17_c01190{bottom:319.094520pt;}
.y16_c01190{bottom:319.095320pt;}
.y15_c01190{bottom:345.654027pt;}
.y14_c01190{bottom:371.895080pt;}
.y13_c01190{bottom:398.774960pt;}
.y12_c01190{bottom:425.333653pt;}
.y11_c01190{bottom:464.694133pt;}
.y10_c01190{bottom:480.694667pt;}
.yf_c01190{bottom:491.254640pt;}
.ye_c01190{bottom:501.174640pt;}
.yd_c01190{bottom:518.134640pt;}
.yc_c01190{bottom:544.055400pt;}
.yb_c01190{bottom:570.614093pt;}
.ya_c01190{bottom:597.175173pt;}
.y9_c01190{bottom:650.613560pt;}
.y8_c01190{bottom:664.055053pt;}
.y7_c01190{bottom:677.174107pt;}
.y6_c01190{bottom:690.614093pt;}
.y5_c01190{bottom:703.734613pt;}
.y1_c01190{bottom:744.054520pt;}
.hf_c01190{height:23.640625pt;}
.hd_c01190{height:24.335938pt;}
.h10_c01190{height:25.504883pt;}
.hc_c01190{height:25.695312pt;}
.h9_c01190{height:25.726562pt;}
.he_c01190{height:26.421875pt;}
.hb_c01190{height:27.013021pt;}
.h1_c01190{height:27.117188pt;}
.ha_c01190{height:27.671875pt;}
.h23_c01190{height:31.984375pt;}
.h13_c01190{height:32.921875pt;}
.h11_c01190{height:33.593750pt;}
.h8_c01190{height:34.006510pt;}
.h15_c01190{height:34.260417pt;}
.h12_c01190{height:35.578125pt;}
.h14_c01190{height:35.609375pt;}
.h18_c01190{height:43.804688pt;}
.h16_c01190{height:46.455078pt;}
.h17_c01190{height:47.763672pt;}
.h1c_c01190{height:49.726562pt;}
.h19_c01190{height:50.380859pt;}
.h1b_c01190{height:50.390625pt;}
.h1a_c01190{height:52.708333pt;}
.h1d_c01190{height:53.367188pt;}
.h21_c01190{height:54.234375pt;}
.h22_c01190{height:59.511393pt;}
.h24_c01190{height:59.796875pt;}
.h1f_c01190{height:63.273438pt;}
.h25_c01190{height:66.750000pt;}
.h4_c01190{height:73.906250pt;}
.h3_c01190{height:74.578125pt;}
.h6_c01190{height:75.250000pt;}
.h20_c01190{height:75.789062pt;}
.h2_c01190{height:75.921875pt;}
.h5_c01190{height:77.937500pt;}
.h7_c01190{height:100.125000pt;}
.h1e_c01190{height:114.726562pt;}
.h0_c01190{height:793.333333pt;}
.w0_c01190{width:1122.666667pt;}
.x0_c01190{left:0.000000pt;}
.x1_c01190{left:25.918920pt;}
.x2_c01190{left:72.638667pt;}
.xb_c01190{left:137.919480pt;}
.x3_c01190{left:150.079067pt;}
.x4_c01190{left:188.159200pt;}
.xc_c01190{left:207.039587pt;}
.xd_c01190{left:276.159733pt;}
.x13_c01190{left:296.958920pt;}
.x14_c01190{left:321.599067pt;}
.xe_c01190{left:344.639613pt;}
.x15_c01190{left:361.599613pt;}
.x16_c01190{left:396.799840pt;}
.xf_c01190{left:413.759720pt;}
.x5_c01190{left:424.639200pt;}
.x17_c01190{left:437.438920pt;}
.x6_c01190{left:447.999067pt;}
.x10_c01190{left:483.839320pt;}
.x11_c01190{left:552.319333pt;}
.x7_c01190{left:599.679200pt;}
.x12_c01190{left:622.398920pt;}
.x8_c01190{left:634.558507pt;}
.xa_c01190{left:658.558507pt;}
.x9_c01190{left:690.878907pt;}
.x1e_c01190{left:827.199640pt;}
.x2a_c01190{left:829.439947pt;}
.x28_c01190{left:833.919440pt;}
.x27_c01190{left:835.199707pt;}
.x1f_c01190{left:851.198733pt;}
.x18_c01190{left:861.758787pt;}
.x26_c01190{left:862.720413pt;}
.x2b_c01190{left:864.318720pt;}
.x2e_c01190{left:865.278973pt;}
.x31_c01190{left:866.239600pt;}
.x29_c01190{left:872.318760pt;}
.x19_c01190{left:875.198733pt;}
.x20_c01190{left:876.479000pt;}
.x32_c01190{left:907.519040pt;}
.x21_c01190{left:917.119547pt;}
.x1a_c01190{left:935.359867pt;}
.x22_c01190{left:946.558507pt;}
.x1b_c01190{left:960.000000pt;}
.x2f_c01190{left:976.959960pt;}
.x23_c01190{left:982.719720pt;}
.x1c_c01190{left:988.158693pt;}
.x2c_c01190{left:995.519453pt;}
.x30_c01190{left:997.119147pt;}
.x1d_c01190{left:1002.878907pt;}
.x24_c01190{left:1004.159173pt;}
.x2d_c01190{left:1016.318760pt;}
.x25_c01190{left:1066.558507pt;}
}





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

.ir_c01191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_ffb1a522f1d7fac4c83f4500.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01191;src:url('chunks/assets/font_361951bc43e3e105c0df3786.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01191;src:url('chunks/assets/font_1bd892c75ebf5f5a32dc03ff.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01191;src:url('chunks/assets/font_757ced76591f79e98ddcb7c9.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01191;src:url('chunks/assets/font_598d83e2c767c8318777bc07.woff2')format("woff");}.ff5_c01191{font-family:ff5_c01191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01191;src:url('chunks/assets/font_405b327f6a3041be3c4433dc.woff2')format("woff");}.ff6_c01191{font-family:ff6_c01191;line-height:1.432129;font-style:normal;font-weight: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_c01191;src:url('chunks/assets/font_68ad7a1baa19f841054dfd4b.woff2')format("woff");}.ff7_c01191{font-family:ff7_c01191;line-height:1.432129;font-style:normal;font-weight: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_c01191;src:url('chunks/assets/font_4dd960cb94f06fdcc2286e62.woff2')format("woff");}.ff8_c01191{font-family:ff8_c01191;line-height:1.364746;font-style:normal;font-weight: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_c01191;src:url('chunks/assets/font_c257072387d317f8b81de066.woff2')format("woff");}.ff9_c01191{font-family:ff9_c01191;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48_c01191{transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167683,0.000000,0.000000,0.250000,0,0);}
.m30_c01191{transform:matrix(0.167722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167722,0.000000,0.000000,0.250000,0,0);}
.m9_c01191{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);}
.ma_c01191{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m27_c01191{transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195122,0.000000,0.000000,0.250000,0,0);}
.m3f_c01191{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m44_c01191{transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199074,0.000000,0.000000,0.250000,0,0);}
.m2f_c01191{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);}
.m34_c01191{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m1f_c01191{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m6_c01191{transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211207,0.000000,0.000000,0.250000,0,0);}
.m26_c01191{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m15_c01191{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m5_c01191{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m4_c01191{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m46_c01191{transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217165,0.000000,0.000000,0.250000,0,0);}
.m3_c01191{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m3a_c01191{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m43_c01191{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m20_c01191{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m2_c01191{transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225877,0.000000,0.000000,0.250000,0,0);}
.m36_c01191{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m8_c01191{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m13_c01191{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m41_c01191{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_c01191{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m33_c01191{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m3d_c01191{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m45_c01191{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1c_c01191{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m7_c01191{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m2d_c01191{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m31_c01191{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m32_c01191{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m25_c01191{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m38_c01191{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m0_c01191{transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245763,0.000000,0.000000,0.250000,0,0);}
.m2c_c01191{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m3e_c01191{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m3b_c01191{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m2a_c01191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c01191{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m1b_c01191{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m1a_c01191{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m1d_c01191{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.mc_c01191{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m39_c01191{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m29_c01191{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m47_c01191{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);}
.m42_c01191{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m37_c01191{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.me_c01191{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m12_c01191{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m3c_c01191{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m1e_c01191{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.m1_c01191{transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270089,0.000000,0.000000,0.250000,0,0);}
.m21_c01191{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m2e_c01191{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m18_c01191{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m40_c01191{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m14_c01191{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m24_c01191{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m23_c01191{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.md_c01191{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m22_c01191{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m16_c01191{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01191{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m2b_c01191{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.m10_c01191{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m11_c01191{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.mf_c01191{transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403846,0.000000,0.000000,0.250000,0,0);}
.m35_c01191{transform:matrix(0.442771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442771,0.000000,0.000000,0.250000,0,0);}
.mb_c01191{transform:matrix(4.169118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.169118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.169118,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.ls3f_c01191{letter-spacing:-19.743750px;}
.ls3e_c01191{letter-spacing:-16.135350px;}
.ls16_c01191{letter-spacing:-14.250000px;}
.ls28_c01191{letter-spacing:-10.572465px;}
.ls29_c01191{letter-spacing:-9.624375px;}
.ls33_c01191{letter-spacing:-6.564600px;}
.ls3d_c01191{letter-spacing:-6.558600px;}
.ls47_c01191{letter-spacing:-6.412500px;}
.ls15_c01191{letter-spacing:-6.158100px;}
.lsa_c01191{letter-spacing:-6.025650px;}
.ls1d_c01191{letter-spacing:-5.923125px;}
.ls2d_c01191{letter-spacing:-5.535225px;}
.ls26_c01191{letter-spacing:-5.463150px;}
.ls37_c01191{letter-spacing:-5.180625px;}
.ls46_c01191{letter-spacing:-4.894313px;}
.ls25_c01191{letter-spacing:-4.748100px;}
.ls4c_c01191{letter-spacing:-4.470435px;}
.ls21_c01191{letter-spacing:-4.438125px;}
.ls3b_c01191{letter-spacing:-4.275000px;}
.ls31_c01191{letter-spacing:-4.117500px;}
.ls11_c01191{letter-spacing:-4.102875px;}
.ls30_c01191{letter-spacing:-3.990353px;}
.ls23_c01191{letter-spacing:-3.909150px;}
.ls42_c01191{letter-spacing:-3.799950px;}
.ls19_c01191{letter-spacing:-3.701775px;}
.ls32_c01191{letter-spacing:-3.701250px;}
.ls2b_c01191{letter-spacing:-3.610035px;}
.ls27_c01191{letter-spacing:-3.468750px;}
.ls45_c01191{letter-spacing:-3.417660px;}
.ls34_c01191{letter-spacing:-3.352958px;}
.ls35_c01191{letter-spacing:-3.159000px;}
.ls1_c01191{letter-spacing:-3.053250px;}
.ls2c_c01191{letter-spacing:-2.997225px;}
.ls2a_c01191{letter-spacing:-2.962500px;}
.ls1f_c01191{letter-spacing:-2.958750px;}
.ls40_c01191{letter-spacing:-2.815230px;}
.ls24_c01191{letter-spacing:-2.708400px;}
.ls13_c01191{letter-spacing:-2.601300px;}
.ls1a_c01191{letter-spacing:-2.411100px;}
.ls7_c01191{letter-spacing:-2.401560px;}
.ls36_c01191{letter-spacing:-2.343270px;}
.ls2f_c01191{letter-spacing:-2.279430px;}
.ls1b_c01191{letter-spacing:-2.222438px;}
.ls1c_c01191{letter-spacing:-2.189453px;}
.ls4b_c01191{letter-spacing:-2.165625px;}
.ls49_c01191{letter-spacing:-2.164500px;}
.ls3a_c01191{letter-spacing:-2.116500px;}
.ls1e_c01191{letter-spacing:-2.103908px;}
.ls22_c01191{letter-spacing:-2.081805px;}
.lsc_c01191{letter-spacing:-1.981350px;}
.ls20_c01191{letter-spacing:-1.675800px;}
.ls4a_c01191{letter-spacing:-1.608188px;}
.ls3c_c01191{letter-spacing:-1.538430px;}
.ls48_c01191{letter-spacing:-1.499670px;}
.ls17_c01191{letter-spacing:-1.479938px;}
.lsf_c01191{letter-spacing:-1.445850px;}
.lse_c01191{letter-spacing:-1.392300px;}
.ls5_c01191{letter-spacing:-0.863550px;}
.ls4_c01191{letter-spacing:-0.861638px;}
.ls8_c01191{letter-spacing:-0.824175px;}
.ls39_c01191{letter-spacing:-0.813150px;}
.ls18_c01191{letter-spacing:-0.742500px;}
.lsb_c01191{letter-spacing:-0.728730px;}
.ls44_c01191{letter-spacing:-0.712500px;}
.lsd_c01191{letter-spacing:-0.710400px;}
.ls12_c01191{letter-spacing:-0.681525px;}
.ls3_c01191{letter-spacing:0.000000px;}
.ls2_c01191{letter-spacing:0.697200px;}
.ls38_c01191{letter-spacing:0.742500px;}
.ls14_c01191{letter-spacing:0.814725px;}
.ls10_c01191{letter-spacing:1.458000px;}
.ls43_c01191{letter-spacing:1.479938px;}
.ls41_c01191{letter-spacing:3.241125px;}
.ls0_c01191{letter-spacing:4.438125px;}
.ls2e_c01191{letter-spacing:7.403063px;}
.ls6_c01191{letter-spacing:23.385600px;}
.ls9_c01191{letter-spacing:271.687500px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01191{word-spacing:0.000000px;}
._e_c01191{margin-left:-31.581503px;}
._1_c01191{margin-left:-7.953395px;}
._c_c01191{margin-left:-4.510658px;}
._7_c01191{margin-left:-3.363572px;}
._0_c01191{margin-left:-1.653496px;}
._5_c01191{width:1.850743px;}
._d_c01191{width:3.215102px;}
._6_c01191{width:4.496507px;}
._8_c01191{width:6.316757px;}
._a_c01191{width:7.725937px;}
._4_c01191{width:9.034934px;}
._b_c01191{width:10.177135px;}
._2_c01191{width:12.642365px;}
._3_c01191{width:15.870789px;}
._9_c01191{width:18.185862px;}
.fc0_c01191{color:transparent;}
.fs6_c01191{font-size:15.000000px;}
.fs7_c01191{font-size:15.750000px;}
.fsb_c01191{font-size:19.500000px;}
.fsd_c01191{font-size:20.250000px;}
.fs8_c01191{font-size:25.500000px;}
.fsc_c01191{font-size:26.250000px;}
.fs9_c01191{font-size:27.000000px;}
.fsa_c01191{font-size:27.750000px;}
.fse_c01191{font-size:29.250000px;}
.fs10_c01191{font-size:37.500000px;}
.fs11_c01191{font-size:38.250000px;}
.fsf_c01191{font-size:39.000000px;}
.fs21_c01191{font-size:40.500000px;}
.fs1b_c01191{font-size:50.250000px;}
.fs1e_c01191{font-size:51.000000px;}
.fs16_c01191{font-size:53.250000px;}
.fs20_c01191{font-size:54.000000px;}
.fs15_c01191{font-size:54.750000px;}
.fs17_c01191{font-size:55.500000px;}
.fs13_c01191{font-size:56.250000px;}
.fs12_c01191{font-size:57.000000px;}
.fs14_c01191{font-size:57.750000px;}
.fs18_c01191{font-size:58.500000px;}
.fs22_c01191{font-size:58.816200px;}
.fs1a_c01191{font-size:59.250000px;}
.fs1c_c01191{font-size:60.000000px;}
.fs1f_c01191{font-size:60.750000px;}
.fs19_c01191{font-size:61.500000px;}
.fs1d_c01191{font-size:62.250000px;}
.fs23_c01191{font-size:72.000000px;}
.fs5_c01191{font-size:82.500000px;}
.fs1_c01191{font-size:84.000000px;}
.fs2_c01191{font-size:85.500000px;}
.fs3_c01191{font-size:86.250000px;}
.fs4_c01191{font-size:87.000000px;}
.fs0_c01191{font-size:88.500000px;}
.y0_c01191{bottom:0.000000px;}
.y4_c01191{bottom:36.060750px;}
.y3_c01191{bottom:45.060285px;}
.y2_c01191{bottom:52.621050px;}
.y33_c01191{bottom:89.699850px;}
.y32_c01191{bottom:89.700420px;}
.y31_c01191{bottom:119.580435px;}
.y30_c01191{bottom:119.581140px;}
.y2f_c01191{bottom:149.821215px;}
.y2e_c01191{bottom:179.701245px;}
.y2d_c01191{bottom:210.299880px;}
.y2c_c01191{bottom:239.819850px;}
.y2b_c01191{bottom:270.061335px;}
.y2a_c01191{bottom:299.940285px;}
.y29_c01191{bottom:299.940930px;}
.y28_c01191{bottom:344.940885px;}
.y27_c01191{bottom:355.380585px;}
.y26_c01191{bottom:374.460225px;}
.y25_c01191{bottom:404.340270px;}
.y24_c01191{bottom:434.580345px;}
.y23_c01191{bottom:493.979055px;}
.y21_c01191{bottom:508.739685px;}
.y22_c01191{bottom:508.740420px;}
.y20_c01191{bottom:523.501050px;}
.y1f_c01191{bottom:538.260135px;}
.y1d_c01191{bottom:553.379385px;}
.y1e_c01191{bottom:553.379970px;}
.y1c_c01191{bottom:568.140750px;}
.y1a_c01191{bottom:583.260630px;}
.y1b_c01191{bottom:583.260720px;}
.y19_c01191{bottom:598.380570px;}
.y17_c01191{bottom:613.141245px;}
.y18_c01191{bottom:613.141335px;}
.y16_c01191{bottom:628.261185px;}
.y14_c01191{bottom:643.020165px;}
.y15_c01191{bottom:643.020270px;}
.y12_c01191{bottom:658.139505px;}
.y13_c01191{bottom:658.140105px;}
.y11_c01191{bottom:672.900885px;}
.y10_c01191{bottom:672.901245px;}
.ye_c01191{bottom:687.659220px;}
.yf_c01191{bottom:687.659820px;}
.yd_c01191{bottom:702.420600px;}
.yc_c01191{bottom:702.421320px;}
.yb_c01191{bottom:717.899820px;}
.y9_c01191{bottom:732.659820px;}
.ya_c01191{bottom:732.660420px;}
.y7_c01191{bottom:747.421095px;}
.y8_c01191{bottom:747.421185px;}
.y6_c01191{bottom:762.541035px;}
.y5_c01191{bottom:777.300105px;}
.y1_c01191{bottom:840.660465px;}
.h7_c01191{height:14.721680px;}
.h8_c01191{height:15.450073px;}
.hc_c01191{height:20.337891px;}
.he_c01191{height:21.120117px;}
.h9_c01191{height:25.014404px;}
.hf_c01191{height:26.595703px;}
.hd_c01191{height:27.377930px;}
.ha_c01191{height:28.160156px;}
.hb_c01191{height:28.942383px;}
.h10_c01191{height:30.506836px;}
.h12_c01191{height:37.792969px;}
.h11_c01191{height:38.542969px;}
.h13_c01191{height:38.548828px;}
.h2a_c01191{height:42.240234px;}
.h19_c01191{height:52.261963px;}
.h20_c01191{height:52.409180px;}
.h29_c01191{height:52.998047px;}
.h26_c01191{height:53.191406px;}
.h18_c01191{height:53.734131px;}
.h1a_c01191{height:54.470215px;}
.h24_c01191{height:55.177734px;}
.h15_c01191{height:55.206299px;}
.h14_c01191{height:55.942383px;}
.h16_c01191{height:56.678467px;}
.h1e_c01191{height:56.689453px;}
.h27_c01191{height:57.073242px;}
.h1c_c01191{height:57.414551px;}
.h17_c01191{height:57.445312px;}
.h2b_c01191{height:57.724884px;}
.h1f_c01191{height:58.150635px;}
.h1b_c01191{height:58.201172px;}
.h22_c01191{height:58.555664px;}
.h23_c01191{height:58.957031px;}
.h21_c01191{height:59.296875px;}
.h28_c01191{height:59.593140px;}
.h1d_c01191{height:60.779297px;}
.h25_c01191{height:61.094971px;}
.h2c_c01191{height:75.093750px;}
.h6_c01191{height:83.144531px;}
.h2_c01191{height:84.656250px;}
.h3_c01191{height:86.167969px;}
.h4_c01191{height:86.923828px;}
.h1_c01191{height:87.462891px;}
.h5_c01191{height:87.679688px;}
.h0_c01191{height:892.500000px;}
.w0_c01191{width:1263.000000px;}
.x0_c01191{left:0.000000px;}
.x1_c01191{left:89.638500px;}
.xd_c01191{left:159.119415px;}
.x2_c01191{left:175.679700px;}
.x3_c01191{left:217.079385px;}
.xe_c01191{left:236.159385px;}
.xf_c01191{left:314.639700px;}
.xa_c01191{left:318.238785px;}
.x4_c01191{left:324.359250px;}
.x16_c01191{left:337.679700px;}
.xb_c01191{left:339.838515px;}
.x17_c01191{left:363.959385px;}
.x10_c01191{left:390.239220px;}
.x5_c01191{left:397.080000px;}
.x18_c01191{left:448.919535px;}
.x11_c01191{left:468.358665px;}
.x19_c01191{left:494.279250px;}
.x6_c01191{left:529.919535px;}
.x12_c01191{left:546.118785px;}
.x13_c01191{left:623.878920px;}
.x7_c01191{left:632.519070px;}
.x8_c01191{left:657.358605px;}
.x14_c01191{left:703.079355px;}
.xc_c01191{left:740.878320px;}
.x15_c01191{left:778.679070px;}
.x9_c01191{left:825.120030px;}
.x1f_c01191{left:938.159370px;}
.x31_c01191{left:939.238155px;}
.x4a_c01191{left:940.320210px;}
.x58_c01191{left:941.399025px;}
.x20_c01191{left:953.999355px;}
.x35_c01191{left:959.399775px;}
.x56_c01191{left:972.000000px;}
.x21_c01191{left:973.079400px;}
.x1a_c01191{left:975.239865px;}
.x48_c01191{left:977.039340px;}
.x5e_c01191{left:979.559505px;}
.x5f_c01191{left:980.638440px;}
.x61_c01191{left:982.078770px;}
.x62_c01191{left:983.160915px;}
.x65_c01191{left:984.239385px;}
.x50_c01191{left:989.278755px;}
.x1b_c01191{left:991.079955px;}
.x22_c01191{left:994.679070px;}
.x3e_c01191{left:998.279850px;}
.x51_c01191{left:1000.799565px;}
.x2b_c01191{left:1002.958275px;}
.x36_c01191{left:1015.199340px;}
.x63_c01191{left:1016.278755px;}
.x2c_c01191{left:1021.679070px;}
.x43_c01191{left:1024.918950px;}
.x3c_c01191{left:1029.239865px;}
.x37_c01191{left:1030.678530px;}
.x64_c01191{left:1032.838905px;}
.x4b_c01191{left:1035.719520px;}
.x2d_c01191{left:1036.798920px;}
.x44_c01191{left:1046.879520px;}
.x49_c01191{left:1050.839535px;}
.x52_c01191{left:1054.438665px;}
.x60_c01191{left:1057.678530px;}
.x47_c01191{left:1058.759490px;}
.x27_c01191{left:1063.078770px;}
.x3d_c01191{left:1064.159820px;}
.x53_c01191{left:1069.558590px;}
.x59_c01191{left:1073.879520px;}
.x28_c01191{left:1077.478635px;}
.x2e_c01191{left:1086.479640px;}
.x32_c01191{left:1095.479190px;}
.x5a_c01191{left:1106.639100px;}
.x1c_c01191{left:1111.678530px;}
.x2f_c01191{left:1115.279205px;}
.x1d_c01191{left:1124.278755px;}
.x3f_c01191{left:1127.159370px;}
.x30_c01191{left:1130.039985px;}
.x54_c01191{left:1132.198785px;}
.x38_c01191{left:1139.398590px;}
.x33_c01191{left:1143.719520px;}
.x55_c01191{left:1149.479190px;}
.x39_c01191{left:1152.359805px;}
.x25_c01191{left:1153.439205px;}
.x34_c01191{left:1156.679070px;}
.x1e_c01191{left:1158.839535px;}
.x4e_c01191{left:1162.079400px;}
.x5b_c01191{left:1166.398590px;}
.x26_c01191{left:1167.838905px;}
.x57_c01191{left:1171.439670px;}
.x40_c01191{left:1172.878320px;}
.x45_c01191{left:1176.119940px;}
.x5c_c01191{left:1179.719055px;}
.x23_c01191{left:1182.958920px;}
.x41_c01191{left:1184.039985px;}
.x46_c01191{left:1188.000000px;}
.x4f_c01191{left:1194.118740px;}
.x24_c01191{left:1195.918305px;}
.x3a_c01191{left:1199.878320px;}
.x42_c01191{left:1202.399775px;}
.x5d_c01191{left:1208.518620px;}
.x4c_c01191{left:1211.399235px;}
.x29_c01191{left:1216.799565px;}
.x4d_c01191{left:1224.719520px;}
.x2a_c01191{left:1227.598575px;}
.x3b_c01191{left:1228.679625px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls3f_c01191{letter-spacing:-17.550000pt;}
.ls3e_c01191{letter-spacing:-14.342533pt;}
.ls16_c01191{letter-spacing:-12.666667pt;}
.ls28_c01191{letter-spacing:-9.397747pt;}
.ls29_c01191{letter-spacing:-8.555000pt;}
.ls33_c01191{letter-spacing:-5.835200pt;}
.ls3d_c01191{letter-spacing:-5.829867pt;}
.ls47_c01191{letter-spacing:-5.700000pt;}
.ls15_c01191{letter-spacing:-5.473867pt;}
.lsa_c01191{letter-spacing:-5.356133pt;}
.ls1d_c01191{letter-spacing:-5.265000pt;}
.ls2d_c01191{letter-spacing:-4.920200pt;}
.ls26_c01191{letter-spacing:-4.856133pt;}
.ls37_c01191{letter-spacing:-4.605000pt;}
.ls46_c01191{letter-spacing:-4.350500pt;}
.ls25_c01191{letter-spacing:-4.220533pt;}
.ls4c_c01191{letter-spacing:-3.973720pt;}
.ls21_c01191{letter-spacing:-3.945000pt;}
.ls3b_c01191{letter-spacing:-3.800000pt;}
.ls31_c01191{letter-spacing:-3.660000pt;}
.ls11_c01191{letter-spacing:-3.647000pt;}
.ls30_c01191{letter-spacing:-3.546980pt;}
.ls23_c01191{letter-spacing:-3.474800pt;}
.ls42_c01191{letter-spacing:-3.377733pt;}
.ls19_c01191{letter-spacing:-3.290467pt;}
.ls32_c01191{letter-spacing:-3.290000pt;}
.ls2b_c01191{letter-spacing:-3.208920pt;}
.ls27_c01191{letter-spacing:-3.083333pt;}
.ls45_c01191{letter-spacing:-3.037920pt;}
.ls34_c01191{letter-spacing:-2.980407pt;}
.ls35_c01191{letter-spacing:-2.808000pt;}
.ls1_c01191{letter-spacing:-2.714000pt;}
.ls2c_c01191{letter-spacing:-2.664200pt;}
.ls2a_c01191{letter-spacing:-2.633333pt;}
.ls1f_c01191{letter-spacing:-2.630000pt;}
.ls40_c01191{letter-spacing:-2.502427pt;}
.ls24_c01191{letter-spacing:-2.407467pt;}
.ls13_c01191{letter-spacing:-2.312267pt;}
.ls1a_c01191{letter-spacing:-2.143200pt;}
.ls7_c01191{letter-spacing:-2.134720pt;}
.ls36_c01191{letter-spacing:-2.082907pt;}
.ls2f_c01191{letter-spacing:-2.026160pt;}
.ls1b_c01191{letter-spacing:-1.975500pt;}
.ls1c_c01191{letter-spacing:-1.946180pt;}
.ls4b_c01191{letter-spacing:-1.925000pt;}
.ls49_c01191{letter-spacing:-1.924000pt;}
.ls3a_c01191{letter-spacing:-1.881333pt;}
.ls1e_c01191{letter-spacing:-1.870140pt;}
.ls22_c01191{letter-spacing:-1.850493pt;}
.lsc_c01191{letter-spacing:-1.761200pt;}
.ls20_c01191{letter-spacing:-1.489600pt;}
.ls4a_c01191{letter-spacing:-1.429500pt;}
.ls3c_c01191{letter-spacing:-1.367493pt;}
.ls48_c01191{letter-spacing:-1.333040pt;}
.ls17_c01191{letter-spacing:-1.315500pt;}
.lsf_c01191{letter-spacing:-1.285200pt;}
.lse_c01191{letter-spacing:-1.237600pt;}
.ls5_c01191{letter-spacing:-0.767600pt;}
.ls4_c01191{letter-spacing:-0.765900pt;}
.ls8_c01191{letter-spacing:-0.732600pt;}
.ls39_c01191{letter-spacing:-0.722800pt;}
.ls18_c01191{letter-spacing:-0.660000pt;}
.lsb_c01191{letter-spacing:-0.647760pt;}
.ls44_c01191{letter-spacing:-0.633333pt;}
.lsd_c01191{letter-spacing:-0.631467pt;}
.ls12_c01191{letter-spacing:-0.605800pt;}
.ls3_c01191{letter-spacing:0.000000pt;}
.ls2_c01191{letter-spacing:0.619733pt;}
.ls38_c01191{letter-spacing:0.660000pt;}
.ls14_c01191{letter-spacing:0.724200pt;}
.ls10_c01191{letter-spacing:1.296000pt;}
.ls43_c01191{letter-spacing:1.315500pt;}
.ls41_c01191{letter-spacing:2.881000pt;}
.ls0_c01191{letter-spacing:3.945000pt;}
.ls2e_c01191{letter-spacing:6.580500pt;}
.ls6_c01191{letter-spacing:20.787200pt;}
.ls9_c01191{letter-spacing:241.500000pt;}
.ws0_c01191{word-spacing:0.000000pt;}
._e_c01191{margin-left:-28.072447pt;}
._1_c01191{margin-left:-7.069684pt;}
._c_c01191{margin-left:-4.009474pt;}
._7_c01191{margin-left:-2.989842pt;}
._0_c01191{margin-left:-1.469774pt;}
._5_c01191{width:1.645105pt;}
._d_c01191{width:2.857868pt;}
._6_c01191{width:3.996895pt;}
._8_c01191{width:5.614895pt;}
._a_c01191{width:6.867500pt;}
._4_c01191{width:8.031053pt;}
._b_c01191{width:9.046342pt;}
._2_c01191{width:11.237658pt;}
._3_c01191{width:14.107368pt;}
._9_c01191{width:16.165211pt;}
.fs6_c01191{font-size:13.333333pt;}
.fs7_c01191{font-size:14.000000pt;}
.fsb_c01191{font-size:17.333333pt;}
.fsd_c01191{font-size:18.000000pt;}
.fs8_c01191{font-size:22.666667pt;}
.fsc_c01191{font-size:23.333333pt;}
.fs9_c01191{font-size:24.000000pt;}
.fsa_c01191{font-size:24.666667pt;}
.fse_c01191{font-size:26.000000pt;}
.fs10_c01191{font-size:33.333333pt;}
.fs11_c01191{font-size:34.000000pt;}
.fsf_c01191{font-size:34.666667pt;}
.fs21_c01191{font-size:36.000000pt;}
.fs1b_c01191{font-size:44.666667pt;}
.fs1e_c01191{font-size:45.333333pt;}
.fs16_c01191{font-size:47.333333pt;}
.fs20_c01191{font-size:48.000000pt;}
.fs15_c01191{font-size:48.666667pt;}
.fs17_c01191{font-size:49.333333pt;}
.fs13_c01191{font-size:50.000000pt;}
.fs12_c01191{font-size:50.666667pt;}
.fs14_c01191{font-size:51.333333pt;}
.fs18_c01191{font-size:52.000000pt;}
.fs22_c01191{font-size:52.281067pt;}
.fs1a_c01191{font-size:52.666667pt;}
.fs1c_c01191{font-size:53.333333pt;}
.fs1f_c01191{font-size:54.000000pt;}
.fs19_c01191{font-size:54.666667pt;}
.fs1d_c01191{font-size:55.333333pt;}
.fs23_c01191{font-size:64.000000pt;}
.fs5_c01191{font-size:73.333333pt;}
.fs1_c01191{font-size:74.666667pt;}
.fs2_c01191{font-size:76.000000pt;}
.fs3_c01191{font-size:76.666667pt;}
.fs4_c01191{font-size:77.333333pt;}
.fs0_c01191{font-size:78.666667pt;}
.y0_c01191{bottom:0.000000pt;}
.y4_c01191{bottom:32.054000pt;}
.y3_c01191{bottom:40.053587pt;}
.y2_c01191{bottom:46.774267pt;}
.y33_c01191{bottom:79.733200pt;}
.y32_c01191{bottom:79.733707pt;}
.y31_c01191{bottom:106.293720pt;}
.y30_c01191{bottom:106.294347pt;}
.y2f_c01191{bottom:133.174413pt;}
.y2e_c01191{bottom:159.734440pt;}
.y2d_c01191{bottom:186.933227pt;}
.y2c_c01191{bottom:213.173200pt;}
.y2b_c01191{bottom:240.054520pt;}
.y2a_c01191{bottom:266.613587pt;}
.y29_c01191{bottom:266.614160pt;}
.y28_c01191{bottom:306.614120pt;}
.y27_c01191{bottom:315.893853pt;}
.y26_c01191{bottom:332.853533pt;}
.y25_c01191{bottom:359.413573pt;}
.y24_c01191{bottom:386.293640pt;}
.y23_c01191{bottom:439.092493pt;}
.y21_c01191{bottom:452.213053pt;}
.y22_c01191{bottom:452.213707pt;}
.y20_c01191{bottom:465.334267pt;}
.y1f_c01191{bottom:478.453453pt;}
.y1d_c01191{bottom:491.892787pt;}
.y1e_c01191{bottom:491.893307pt;}
.y1c_c01191{bottom:505.014000pt;}
.y1a_c01191{bottom:518.453893pt;}
.y1b_c01191{bottom:518.453973pt;}
.y19_c01191{bottom:531.893840pt;}
.y17_c01191{bottom:545.014440pt;}
.y18_c01191{bottom:545.014520pt;}
.y16_c01191{bottom:558.454387pt;}
.y14_c01191{bottom:571.573480pt;}
.y15_c01191{bottom:571.573573pt;}
.y12_c01191{bottom:585.012893pt;}
.y13_c01191{bottom:585.013427pt;}
.y11_c01191{bottom:598.134120pt;}
.y10_c01191{bottom:598.134440pt;}
.ye_c01191{bottom:611.252640pt;}
.yf_c01191{bottom:611.253173pt;}
.yd_c01191{bottom:624.373867pt;}
.yc_c01191{bottom:624.374507pt;}
.yb_c01191{bottom:638.133173pt;}
.y9_c01191{bottom:651.253173pt;}
.ya_c01191{bottom:651.253707pt;}
.y7_c01191{bottom:664.374307pt;}
.y8_c01191{bottom:664.374387pt;}
.y6_c01191{bottom:677.814253pt;}
.y5_c01191{bottom:690.933427pt;}
.y1_c01191{bottom:747.253747pt;}
.h7_c01191{height:13.085938pt;}
.h8_c01191{height:13.733398pt;}
.hc_c01191{height:18.078125pt;}
.he_c01191{height:18.773437pt;}
.h9_c01191{height:22.235026pt;}
.hf_c01191{height:23.640625pt;}
.hd_c01191{height:24.335938pt;}
.ha_c01191{height:25.031250pt;}
.hb_c01191{height:25.726562pt;}
.h10_c01191{height:27.117188pt;}
.h12_c01191{height:33.593750pt;}
.h11_c01191{height:34.260417pt;}
.h13_c01191{height:34.265625pt;}
.h2a_c01191{height:37.546875pt;}
.h19_c01191{height:46.455078pt;}
.h20_c01191{height:46.585938pt;}
.h29_c01191{height:47.109375pt;}
.h26_c01191{height:47.281250pt;}
.h18_c01191{height:47.763672pt;}
.h1a_c01191{height:48.417969pt;}
.h24_c01191{height:49.046875pt;}
.h15_c01191{height:49.072266pt;}
.h14_c01191{height:49.726562pt;}
.h16_c01191{height:50.380859pt;}
.h1e_c01191{height:50.390625pt;}
.h27_c01191{height:50.731771pt;}
.h1c_c01191{height:51.035156pt;}
.h17_c01191{height:51.062500pt;}
.h2b_c01191{height:51.311008pt;}
.h1f_c01191{height:51.689453pt;}
.h1b_c01191{height:51.734375pt;}
.h22_c01191{height:52.049479pt;}
.h23_c01191{height:52.406250pt;}
.h21_c01191{height:52.708333pt;}
.h28_c01191{height:52.971680pt;}
.h1d_c01191{height:54.026042pt;}
.h25_c01191{height:54.306641pt;}
.h2c_c01191{height:66.750000pt;}
.h6_c01191{height:73.906250pt;}
.h2_c01191{height:75.250000pt;}
.h3_c01191{height:76.593750pt;}
.h4_c01191{height:77.265625pt;}
.h1_c01191{height:77.744792pt;}
.h5_c01191{height:77.937500pt;}
.h0_c01191{height:793.333333pt;}
.w0_c01191{width:1122.666667pt;}
.x0_c01191{left:0.000000pt;}
.x1_c01191{left:79.678667pt;}
.xd_c01191{left:141.439480pt;}
.x2_c01191{left:156.159733pt;}
.x3_c01191{left:192.959453pt;}
.xe_c01191{left:209.919453pt;}
.xf_c01191{left:279.679733pt;}
.xa_c01191{left:282.878920pt;}
.x4_c01191{left:288.319333pt;}
.x16_c01191{left:300.159733pt;}
.xb_c01191{left:302.078680pt;}
.x17_c01191{left:323.519453pt;}
.x10_c01191{left:346.879307pt;}
.x5_c01191{left:352.960000pt;}
.x18_c01191{left:399.039587pt;}
.x11_c01191{left:416.318813pt;}
.x19_c01191{left:439.359333pt;}
.x6_c01191{left:471.039587pt;}
.x12_c01191{left:485.438920pt;}
.x13_c01191{left:554.559040pt;}
.x7_c01191{left:562.239173pt;}
.x8_c01191{left:584.318760pt;}
.x14_c01191{left:624.959427pt;}
.xc_c01191{left:658.558507pt;}
.x15_c01191{left:692.159173pt;}
.x9_c01191{left:733.440027pt;}
.x1f_c01191{left:833.919440pt;}
.x31_c01191{left:834.878360pt;}
.x4a_c01191{left:835.840187pt;}
.x58_c01191{left:836.799133pt;}
.x20_c01191{left:847.999427pt;}
.x35_c01191{left:852.799800pt;}
.x56_c01191{left:864.000000pt;}
.x21_c01191{left:864.959467pt;}
.x1a_c01191{left:866.879880pt;}
.x48_c01191{left:868.479413pt;}
.x5e_c01191{left:870.719560pt;}
.x5f_c01191{left:871.678613pt;}
.x61_c01191{left:872.958907pt;}
.x62_c01191{left:873.920813pt;}
.x65_c01191{left:874.879453pt;}
.x50_c01191{left:879.358893pt;}
.x1b_c01191{left:880.959960pt;}
.x22_c01191{left:884.159173pt;}
.x3e_c01191{left:887.359867pt;}
.x51_c01191{left:889.599613pt;}
.x2b_c01191{left:891.518467pt;}
.x36_c01191{left:902.399413pt;}
.x63_c01191{left:903.358893pt;}
.x2c_c01191{left:908.159173pt;}
.x43_c01191{left:911.039067pt;}
.x3c_c01191{left:914.879880pt;}
.x37_c01191{left:916.158693pt;}
.x64_c01191{left:918.079027pt;}
.x4b_c01191{left:920.639573pt;}
.x2d_c01191{left:921.599040pt;}
.x44_c01191{left:930.559573pt;}
.x49_c01191{left:934.079587pt;}
.x52_c01191{left:937.278813pt;}
.x60_c01191{left:940.158693pt;}
.x47_c01191{left:941.119547pt;}
.x27_c01191{left:944.958907pt;}
.x3d_c01191{left:945.919840pt;}
.x53_c01191{left:950.718747pt;}
.x59_c01191{left:954.559573pt;}
.x28_c01191{left:957.758787pt;}
.x2e_c01191{left:965.759680pt;}
.x32_c01191{left:973.759280pt;}
.x5a_c01191{left:983.679200pt;}
.x1c_c01191{left:988.158693pt;}
.x2f_c01191{left:991.359293pt;}
.x1d_c01191{left:999.358893pt;}
.x3f_c01191{left:1001.919440pt;}
.x30_c01191{left:1004.479987pt;}
.x54_c01191{left:1006.398920pt;}
.x38_c01191{left:1012.798747pt;}
.x33_c01191{left:1016.639573pt;}
.x55_c01191{left:1021.759280pt;}
.x39_c01191{left:1024.319827pt;}
.x25_c01191{left:1025.279293pt;}
.x34_c01191{left:1028.159173pt;}
.x1e_c01191{left:1030.079587pt;}
.x4e_c01191{left:1032.959467pt;}
.x5b_c01191{left:1036.798747pt;}
.x26_c01191{left:1038.079027pt;}
.x57_c01191{left:1041.279707pt;}
.x40_c01191{left:1042.558507pt;}
.x45_c01191{left:1045.439947pt;}
.x5c_c01191{left:1048.639160pt;}
.x23_c01191{left:1051.519040pt;}
.x41_c01191{left:1052.479987pt;}
.x46_c01191{left:1056.000000pt;}
.x4f_c01191{left:1061.438880pt;}
.x24_c01191{left:1063.038493pt;}
.x3a_c01191{left:1066.558507pt;}
.x42_c01191{left:1068.799800pt;}
.x5d_c01191{left:1074.238773pt;}
.x4c_c01191{left:1076.799320pt;}
.x29_c01191{left:1081.599613pt;}
.x4d_c01191{left:1088.639573pt;}
.x2a_c01191{left:1091.198733pt;}
.x3b_c01191{left:1092.159667pt;}
}





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

.ir_c01192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_a8080f72ad73f1d77e993c64.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01192;src:url('chunks/assets/font_bcb61acb1c97ec7e8d248779.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01192;src:url('chunks/assets/font_972bd27883df3810e7ee7f46.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01192;src:url('chunks/assets/font_a52a00f9405e6b1d67a6ce90.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01192;src:url('chunks/assets/font_cd14da3df2d00c7dc0c9fb26.woff2')format("woff");}.ff5_c01192{font-family:ff5_c01192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01192;src:url('chunks/assets/font_f681825b2b750409002ada5a.woff2')format("woff");}.ff6_c01192{font-family:ff6_c01192;line-height:1.432129;font-style:normal;font-weight: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_c01192;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff7_c01192{font-family:ff7_c01192;line-height:1.284180;font-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_c01192{transform:matrix(0.148437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148437,0.000000,0.000000,0.250000,0,0);}
.mc_c01192{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m24_c01192{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m43_c01192{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);}
.m8_c01192{transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200431,0.000000,0.000000,0.250000,0,0);}
.m3e_c01192{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m2e_c01192{transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);}
.m9_c01192{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1e_c01192{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.m4a_c01192{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m4d_c01192{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m36_c01192{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m2d_c01192{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);}
.m12_c01192{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m5_c01192{transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223451,0.000000,0.000000,0.250000,0,0);}
.m2f_c01192{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m3_c01192{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.m6_c01192{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m34_c01192{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m17_c01192{transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);}
.m4_c01192{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m42_c01192{transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);}
.m47_c01192{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m2c_c01192{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m40_c01192{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m48_c01192{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m2_c01192{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m25_c01192{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m23_c01192{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m3f_c01192{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m37_c01192{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);}
.m3b_c01192{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m44_c01192{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m3c_c01192{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m16_c01192{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m19_c01192{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);}
.m3d_c01192{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m1b_c01192{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m22_c01192{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m27_c01192{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m30_c01192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01192{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.m49_c01192{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m2b_c01192{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m1c_c01192{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m35_c01192{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m31_c01192{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m29_c01192{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m28_c01192{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m1d_c01192{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m1f_c01192{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m41_c01192{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m10_c01192{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);}
.m45_c01192{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m39_c01192{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m26_c01192{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.md_c01192{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m13_c01192{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m46_c01192{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m14_c01192{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m33_c01192{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m1a_c01192{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m7_c01192{transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);}
.m3a_c01192{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m38_c01192{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.me_c01192{transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274390,0.000000,0.000000,0.250000,0,0);}
.m0_c01192{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m20_c01192{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m21_c01192{transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282895,0.000000,0.000000,0.250000,0,0);}
.ma_c01192{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m4c_c01192{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m1_c01192{transform:matrix(0.288636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288636,0.000000,0.000000,0.250000,0,0);}
.m18_c01192{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m32_c01192{transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);}
.mb_c01192{transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320833,0.000000,0.000000,0.250000,0,0);}
.m4b_c01192{transform:matrix(0.332237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332237,0.000000,0.000000,0.250000,0,0);}
.mf_c01192{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.m11_c01192{transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);}
.v0_c01192{vertical-align:0.000000px;}
.ls3c_c01192{letter-spacing:-20.356050px;}
.ls28_c01192{letter-spacing:-12.407850px;}
.ls22_c01192{letter-spacing:-11.268330px;}
.ls42_c01192{letter-spacing:-10.244850px;}
.ls3f_c01192{letter-spacing:-8.316525px;}
.ls3_c01192{letter-spacing:-7.925400px;}
.ls4e_c01192{letter-spacing:-7.900200px;}
.ls4a_c01192{letter-spacing:-7.403063px;}
.ls5_c01192{letter-spacing:-7.342650px;}
.ls33_c01192{letter-spacing:-6.581250px;}
.ls7_c01192{letter-spacing:-6.343650px;}
.ls34_c01192{letter-spacing:-6.263730px;}
.ls21_c01192{letter-spacing:-5.923125px;}
.ls30_c01192{letter-spacing:-5.620200px;}
.ls4b_c01192{letter-spacing:-5.563200px;}
.ls26_c01192{letter-spacing:-5.492700px;}
.ls1f_c01192{letter-spacing:-5.180625px;}
.ls47_c01192{letter-spacing:-4.685400px;}
.ls2b_c01192{letter-spacing:-4.557150px;}
.ls2f_c01192{letter-spacing:-4.440300px;}
.ls1c_c01192{letter-spacing:-4.438125px;}
.ls31_c01192{letter-spacing:-4.435200px;}
.ls2d_c01192{letter-spacing:-4.383225px;}
.ls3d_c01192{letter-spacing:-4.117500px;}
.lsd_c01192{letter-spacing:-4.098975px;}
.ls3e_c01192{letter-spacing:-3.866310px;}
.ls40_c01192{letter-spacing:-3.845325px;}
.ls41_c01192{letter-spacing:-3.804600px;}
.ls17_c01192{letter-spacing:-3.801750px;}
.ls29_c01192{letter-spacing:-3.701250px;}
.ls36_c01192{letter-spacing:-3.601950px;}
.ls1e_c01192{letter-spacing:-3.563753px;}
.ls45_c01192{letter-spacing:-3.562500px;}
.ls3b_c01192{letter-spacing:-3.424905px;}
.ls1_c01192{letter-spacing:-3.378375px;}
.ls25_c01192{letter-spacing:-3.375000px;}
.ls32_c01192{letter-spacing:-3.349500px;}
.ls8_c01192{letter-spacing:-3.316950px;}
.ls37_c01192{letter-spacing:-3.301650px;}
.ls19_c01192{letter-spacing:-2.958750px;}
.ls2c_c01192{letter-spacing:-2.919300px;}
.ls49_c01192{letter-spacing:-2.808300px;}
.ls2a_c01192{letter-spacing:-2.800950px;}
.ls35_c01192{letter-spacing:-2.770350px;}
.ls20_c01192{letter-spacing:-2.694450px;}
.lsb_c01192{letter-spacing:-2.641800px;}
.lsf_c01192{letter-spacing:-2.541000px;}
.ls46_c01192{letter-spacing:-2.435768px;}
.ls3a_c01192{letter-spacing:-2.345625px;}
.ls18_c01192{letter-spacing:-2.222438px;}
.ls2e_c01192{letter-spacing:-2.222415px;}
.ls4f_c01192{letter-spacing:-1.969275px;}
.ls4_c01192{letter-spacing:-1.661948px;}
.ls44_c01192{letter-spacing:-1.605450px;}
.ls27_c01192{letter-spacing:-1.584600px;}
.ls43_c01192{letter-spacing:-1.565100px;}
.ls48_c01192{letter-spacing:-1.541250px;}
.ls24_c01192{letter-spacing:-1.519403px;}
.ls38_c01192{letter-spacing:-1.481850px;}
.ls1d_c01192{letter-spacing:-1.479938px;}
.ls1a_c01192{letter-spacing:-1.443000px;}
.ls11_c01192{letter-spacing:-1.387500px;}
.ls9_c01192{letter-spacing:-0.939600px;}
.ls1b_c01192{letter-spacing:-0.882233px;}
.ls23_c01192{letter-spacing:-0.742500px;}
.ls10_c01192{letter-spacing:-0.696150px;}
.ls16_c01192{letter-spacing:-0.691200px;}
.ls2_c01192{letter-spacing:-0.651750px;}
.ls6_c01192{letter-spacing:0.000000px;}
.ls15_c01192{letter-spacing:0.765000px;}
.ls4c_c01192{letter-spacing:0.793875px;}
.ls39_c01192{letter-spacing:0.854700px;}
.ls4d_c01192{letter-spacing:0.866400px;}
.lse_c01192{letter-spacing:2.231550px;}
.ls13_c01192{letter-spacing:2.296875px;}
.ls14_c01192{letter-spacing:2.460098px;}
.ls0_c01192{letter-spacing:2.958750px;}
.lsc_c01192{letter-spacing:45.099615px;}
.lsa_c01192{letter-spacing:305.794905px;}
.ls12_c01192{letter-spacing:339.789600px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:0.000000px;}
._f_c01192{margin-left:-15.564079px;}
._e_c01192{margin-left:-7.540549px;}
._d_c01192{margin-left:-6.136401px;}
._9_c01192{margin-left:-3.211757px;}
._6_c01192{margin-left:-1.954451px;}
._4_c01192{width:2.475355px;}
._a_c01192{width:3.694914px;}
._3_c01192{width:4.735362px;}
._5_c01192{width:5.820484px;}
._8_c01192{width:6.851546px;}
._7_c01192{width:8.743914px;}
._2_c01192{width:11.154257px;}
._11_c01192{width:13.572770px;}
._1_c01192{width:16.123174px;}
._0_c01192{width:18.116349px;}
._c_c01192{width:19.777145px;}
._10_c01192{width:21.003572px;}
._b_c01192{width:37.749316px;}
.fc0_c01192{color:transparent;}
.fsa_c01192{font-size:16.500000px;}
.fs7_c01192{font-size:19.500000px;}
.fsd_c01192{font-size:21.750000px;}
.fs12_c01192{font-size:24.000000px;}
.fs10_c01192{font-size:26.250000px;}
.fs8_c01192{font-size:27.750000px;}
.fs11_c01192{font-size:29.250000px;}
.fsf_c01192{font-size:30.000000px;}
.fsc_c01192{font-size:30.750000px;}
.fs14_c01192{font-size:35.250000px;}
.fs16_c01192{font-size:36.000000px;}
.fs13_c01192{font-size:36.750000px;}
.fse_c01192{font-size:37.500000px;}
.fs15_c01192{font-size:38.250000px;}
.fsb_c01192{font-size:40.500000px;}
.fs9_c01192{font-size:45.000000px;}
.fs22_c01192{font-size:49.500000px;}
.fs1e_c01192{font-size:51.000000px;}
.fs26_c01192{font-size:51.750000px;}
.fs25_c01192{font-size:52.500000px;}
.fs24_c01192{font-size:52.735200px;}
.fs1b_c01192{font-size:53.250000px;}
.fs1d_c01192{font-size:54.000000px;}
.fs21_c01192{font-size:54.750000px;}
.fs17_c01192{font-size:55.500000px;}
.fs18_c01192{font-size:56.250000px;}
.fs1c_c01192{font-size:57.000000px;}
.fs1a_c01192{font-size:57.750000px;}
.fs1f_c01192{font-size:58.500000px;}
.fs19_c01192{font-size:59.250000px;}
.fs23_c01192{font-size:60.000000px;}
.fs20_c01192{font-size:63.000000px;}
.fs5_c01192{font-size:81.750000px;}
.fs1_c01192{font-size:82.500000px;}
.fs2_c01192{font-size:83.250000px;}
.fs3_c01192{font-size:84.750000px;}
.fs6_c01192{font-size:87.000000px;}
.fs0_c01192{font-size:87.750000px;}
.fs4_c01192{font-size:94.500000px;}
.y0_c01192{bottom:0.000000px;}
.y7_c01192{bottom:41.100285px;}
.y5_c01192{bottom:50.460600px;}
.y3_c01192{bottom:50.821500px;}
.y6_c01192{bottom:55.140750px;}
.y2_c01192{bottom:58.021335px;}
.y4_c01192{bottom:59.100750px;}
.y2c_c01192{bottom:93.661485px;}
.y2b_c01192{bottom:123.540600px;}
.y2a_c01192{bottom:153.060075px;}
.y29_c01192{bottom:183.300150px;}
.y28_c01192{bottom:213.541425px;}
.y27_c01192{bottom:243.781500px;}
.y26_c01192{bottom:273.660435px;}
.y25_c01192{bottom:303.541470px;}
.y24_c01192{bottom:348.181365px;}
.y23_c01192{bottom:378.421440px;}
.y22_c01192{bottom:408.301455px;}
.y21_c01192{bottom:438.180000px;}
.y20_c01192{bottom:497.941320px;}
.y1f_c01192{bottom:497.941860px;}
.y1d_c01192{bottom:512.699805px;}
.y1e_c01192{bottom:512.700435px;}
.y1b_c01192{bottom:527.461080px;}
.y1c_c01192{bottom:527.461170px;}
.y1a_c01192{bottom:542.581005px;}
.y19_c01192{bottom:557.701035px;}
.y18_c01192{bottom:572.100720px;}
.y17_c01192{bottom:586.861500px;}
.y16_c01192{bottom:586.862085px;}
.y15_c01192{bottom:602.340585px;}
.y14_c01192{bottom:617.101320px;}
.y13_c01192{bottom:631.860255px;}
.y12_c01192{bottom:646.980285px;}
.y10_c01192{bottom:661.740720px;}
.y11_c01192{bottom:661.740870px;}
.yf_c01192{bottom:676.140750px;}
.ye_c01192{bottom:691.260720px;}
.yd_c01192{bottom:706.021320px;}
.yc_c01192{bottom:721.141335px;}
.yb_c01192{bottom:736.620435px;}
.ya_c01192{bottom:751.381170px;}
.y9_c01192{bottom:766.140105px;}
.y8_c01192{bottom:781.260135px;}
.y1_c01192{bottom:846.780855px;}
.hb_c01192{height:16.193848px;}
.h8_c01192{height:19.652344px;}
.he_c01192{height:22.684570px;}
.h13_c01192{height:24.187500px;}
.h11_c01192{height:27.377930px;}
.h12_c01192{height:28.692993px;}
.h9_c01192{height:28.942383px;}
.hd_c01192{height:30.389648px;}
.h10_c01192{height:31.289062px;}
.h16_c01192{height:36.764648px;}
.h14_c01192{height:37.037109px;}
.h18_c01192{height:37.546875px;}
.h15_c01192{height:37.792969px;}
.h17_c01192{height:38.548828px;}
.hf_c01192{height:39.111328px;}
.hc_c01192{height:42.240234px;}
.ha_c01192{height:46.933594px;}
.h2e_c01192{height:51.525879px;}
.h28_c01192{height:51.626953px;}
.h2d_c01192{height:51.756715px;}
.h1e_c01192{height:52.261963px;}
.h20_c01192{height:52.998047px;}
.h21_c01192{height:53.191406px;}
.h27_c01192{height:53.734131px;}
.h2f_c01192{height:53.973633px;}
.h29_c01192{height:54.108398px;}
.h1b_c01192{height:54.470215px;}
.h1a_c01192{height:55.206299px;}
.h19_c01192{height:55.933594px;}
.h1f_c01192{height:55.942383px;}
.h1d_c01192{height:56.678467px;}
.h2b_c01192{height:57.073242px;}
.h22_c01192{height:57.414551px;}
.h23_c01192{height:57.445312px;}
.h24_c01192{height:57.814453px;}
.h1c_c01192{height:58.150635px;}
.h25_c01192{height:58.201172px;}
.h2c_c01192{height:59.296875px;}
.h2a_c01192{height:59.712891px;}
.h26_c01192{height:62.261719px;}
.h6_c01192{height:82.388672px;}
.h2_c01192{height:83.144531px;}
.h3_c01192{height:83.900391px;}
.h4_c01192{height:85.412109px;}
.h7_c01192{height:87.679688px;}
.h1_c01192{height:88.435547px;}
.h5_c01192{height:93.392578px;}
.h0_c01192{height:892.500000px;}
.w0_c01192{width:1263.000000px;}
.x0_c01192{left:0.000000px;}
.x1_c01192{left:83.158785px;}
.xc_c01192{left:89.279250px;}
.xd_c01192{left:152.639700px;}
.x2_c01192{left:171.719565px;}
.xe_c01192{left:194.039400px;}
.x3_c01192{left:213.478635px;}
.xf_c01192{left:219.239850px;}
.x10_c01192{left:229.679700px;}
.x11_c01192{left:307.798950px;}
.x4_c01192{left:319.319850px;}
.x19_c01192{left:330.838950px;}
.x1a_c01192{left:358.918350px;}
.x12_c01192{left:385.199850px;}
.x5_c01192{left:394.199385px;}
.x1b_c01192{left:403.918950px;}
.x1c_c01192{left:443.878320px;}
.x13_c01192{left:462.599070px;}
.x1d_c01192{left:488.878920px;}
.x6_c01192{left:525.959385px;}
.x14_c01192{left:540.359250px;}
.x15_c01192{left:618.119385px;}
.x7_c01192{left:628.918350px;}
.x8_c01192{left:654.118785px;}
.x16_c01192{left:696.238770px;}
.x18_c01192{left:737.999355px;}
.x17_c01192{left:772.199340px;}
.x9_c01192{left:823.679715px;}
.xa_c01192{left:872.279205px;}
.xb_c01192{left:901.439670px;}
.x23_c01192{left:920.878965px;}
.x53_c01192{left:932.399865px;}
.x4b_c01192{left:938.518620px;}
.x45_c01192{left:950.039340px;}
.x4c_c01192{left:956.878320px;}
.x1e_c01192{left:958.679715px;}
.x60_c01192{left:962.639655px;}
.x37_c01192{left:963.719055px;}
.x46_c01192{left:969.119385px;}
.x38_c01192{left:974.878965px;}
.x1f_c01192{left:978.479640px;}
.x47_c01192{left:982.798920px;}
.x5b_c01192{left:983.878320px;}
.x62_c01192{left:991.798560px;}
.x55_c01192{left:992.879520px;}
.x50_c01192{left:995.399235px;}
.x5c_c01192{left:996.478635px;}
.x58_c01192{left:1003.678530px;}
.x40_c01192{left:1005.479640px;}
.x61_c01192{left:1007.638545px;}
.x63_c01192{left:1008.719520px;}
.x51_c01192{left:1009.798920px;}
.x4d_c01192{left:1011.598575px;}
.x33_c01192{left:1012.679715px;}
.x2a_c01192{left:1014.479190px;}
.x27_c01192{left:1018.798560px;}
.x48_c01192{left:1022.039985px;}
.x59_c01192{left:1027.438665px;}
.x2b_c01192{left:1029.239865px;}
.x39_c01192{left:1033.199805px;}
.x28_c01192{left:1036.078770px;}
.x2c_c01192{left:1044.359805px;}
.x3a_c01192{left:1047.599670px;}
.x5f_c01192{left:1049.758575px;}
.x2d_c01192{left:1055.158815px;}
.x20_c01192{left:1063.798920px;}
.x54_c01192{left:1068.479190px;}
.x64_c01192{left:1069.558590px;}
.x3b_c01192{left:1080.000000px;}
.x21_c01192{left:1083.239865px;}
.x41_c01192{left:1085.759490px;}
.x34_c01192{left:1087.918305px;}
.x30_c01192{left:1091.878320px;}
.x56_c01192{left:1095.838530px;}
.x3c_c01192{left:1096.919490px;}
.x5d_c01192{left:1097.998905px;}
.x31_c01192{left:1106.279850px;}
.x35_c01192{left:1108.438665px;}
.x5e_c01192{left:1113.118740px;}
.x3d_c01192{left:1115.999355px;}
.x24_c01192{left:1128.599670px;}
.x42_c01192{left:1129.679070px;}
.x49_c01192{left:1138.678530px;}
.x25_c01192{left:1144.439670px;}
.x36_c01192{left:1148.038875px;}
.x4e_c01192{left:1150.919490px;}
.x43_c01192{left:1152.359805px;}
.x3e_c01192{left:1154.879520px;}
.x5a_c01192{left:1159.198785px;}
.x44_c01192{left:1165.319190px;}
.x3f_c01192{left:1168.918305px;}
.x4a_c01192{left:1173.598575px;}
.x2e_c01192{left:1182.958920px;}
.x52_c01192{left:1185.839535px;}
.x32_c01192{left:1193.039340px;}
.x2f_c01192{left:1199.519070px;}
.x57_c01192{left:1201.679625px;}
.x29_c01192{left:1203.119940px;}
.x22_c01192{left:1206.719055px;}
.x26_c01192{left:1210.319820px;}
.x4f_c01192{left:1213.198785px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls3c_c01192{letter-spacing:-18.094267pt;}
.ls28_c01192{letter-spacing:-11.029200pt;}
.ls22_c01192{letter-spacing:-10.016293pt;}
.ls42_c01192{letter-spacing:-9.106533pt;}
.ls3f_c01192{letter-spacing:-7.392467pt;}
.ls3_c01192{letter-spacing:-7.044800pt;}
.ls4e_c01192{letter-spacing:-7.022400pt;}
.ls4a_c01192{letter-spacing:-6.580500pt;}
.ls5_c01192{letter-spacing:-6.526800pt;}
.ls33_c01192{letter-spacing:-5.850000pt;}
.ls7_c01192{letter-spacing:-5.638800pt;}
.ls34_c01192{letter-spacing:-5.567760pt;}
.ls21_c01192{letter-spacing:-5.265000pt;}
.ls30_c01192{letter-spacing:-4.995733pt;}
.ls4b_c01192{letter-spacing:-4.945067pt;}
.ls26_c01192{letter-spacing:-4.882400pt;}
.ls1f_c01192{letter-spacing:-4.605000pt;}
.ls47_c01192{letter-spacing:-4.164800pt;}
.ls2b_c01192{letter-spacing:-4.050800pt;}
.ls2f_c01192{letter-spacing:-3.946933pt;}
.ls1c_c01192{letter-spacing:-3.945000pt;}
.ls31_c01192{letter-spacing:-3.942400pt;}
.ls2d_c01192{letter-spacing:-3.896200pt;}
.ls3d_c01192{letter-spacing:-3.660000pt;}
.lsd_c01192{letter-spacing:-3.643533pt;}
.ls3e_c01192{letter-spacing:-3.436720pt;}
.ls40_c01192{letter-spacing:-3.418067pt;}
.ls41_c01192{letter-spacing:-3.381867pt;}
.ls17_c01192{letter-spacing:-3.379333pt;}
.ls29_c01192{letter-spacing:-3.290000pt;}
.ls36_c01192{letter-spacing:-3.201733pt;}
.ls1e_c01192{letter-spacing:-3.167780pt;}
.ls45_c01192{letter-spacing:-3.166667pt;}
.ls3b_c01192{letter-spacing:-3.044360pt;}
.ls1_c01192{letter-spacing:-3.003000pt;}
.ls25_c01192{letter-spacing:-3.000000pt;}
.ls32_c01192{letter-spacing:-2.977333pt;}
.ls8_c01192{letter-spacing:-2.948400pt;}
.ls37_c01192{letter-spacing:-2.934800pt;}
.ls19_c01192{letter-spacing:-2.630000pt;}
.ls2c_c01192{letter-spacing:-2.594933pt;}
.ls49_c01192{letter-spacing:-2.496267pt;}
.ls2a_c01192{letter-spacing:-2.489733pt;}
.ls35_c01192{letter-spacing:-2.462533pt;}
.ls20_c01192{letter-spacing:-2.395067pt;}
.lsb_c01192{letter-spacing:-2.348267pt;}
.lsf_c01192{letter-spacing:-2.258667pt;}
.ls46_c01192{letter-spacing:-2.165127pt;}
.ls3a_c01192{letter-spacing:-2.085000pt;}
.ls18_c01192{letter-spacing:-1.975500pt;}
.ls2e_c01192{letter-spacing:-1.975480pt;}
.ls4f_c01192{letter-spacing:-1.750467pt;}
.ls4_c01192{letter-spacing:-1.477287pt;}
.ls44_c01192{letter-spacing:-1.427067pt;}
.ls27_c01192{letter-spacing:-1.408533pt;}
.ls43_c01192{letter-spacing:-1.391200pt;}
.ls48_c01192{letter-spacing:-1.370000pt;}
.ls24_c01192{letter-spacing:-1.350580pt;}
.ls38_c01192{letter-spacing:-1.317200pt;}
.ls1d_c01192{letter-spacing:-1.315500pt;}
.ls1a_c01192{letter-spacing:-1.282667pt;}
.ls11_c01192{letter-spacing:-1.233333pt;}
.ls9_c01192{letter-spacing:-0.835200pt;}
.ls1b_c01192{letter-spacing:-0.784207pt;}
.ls23_c01192{letter-spacing:-0.660000pt;}
.ls10_c01192{letter-spacing:-0.618800pt;}
.ls16_c01192{letter-spacing:-0.614400pt;}
.ls2_c01192{letter-spacing:-0.579333pt;}
.ls6_c01192{letter-spacing:0.000000pt;}
.ls15_c01192{letter-spacing:0.680000pt;}
.ls4c_c01192{letter-spacing:0.705667pt;}
.ls39_c01192{letter-spacing:0.759733pt;}
.ls4d_c01192{letter-spacing:0.770133pt;}
.lse_c01192{letter-spacing:1.983600pt;}
.ls13_c01192{letter-spacing:2.041667pt;}
.ls14_c01192{letter-spacing:2.186753pt;}
.ls0_c01192{letter-spacing:2.630000pt;}
.lsc_c01192{letter-spacing:40.088547pt;}
.lsa_c01192{letter-spacing:271.817693pt;}
.ls12_c01192{letter-spacing:302.035200pt;}
.ws0_c01192{word-spacing:0.000000pt;}
._f_c01192{margin-left:-13.834737pt;}
._e_c01192{margin-left:-6.702711pt;}
._d_c01192{margin-left:-5.454579pt;}
._9_c01192{margin-left:-2.854895pt;}
._6_c01192{margin-left:-1.737289pt;}
._4_c01192{width:2.200316pt;}
._a_c01192{width:3.284368pt;}
._3_c01192{width:4.209211pt;}
._5_c01192{width:5.173763pt;}
._8_c01192{width:6.090263pt;}
._7_c01192{width:7.772368pt;}
._2_c01192{width:9.914895pt;}
._11_c01192{width:12.064684pt;}
._1_c01192{width:14.331711pt;}
._0_c01192{width:16.103421pt;}
._c_c01192{width:17.579684pt;}
._10_c01192{width:18.669842pt;}
._b_c01192{width:33.554947pt;}
.fsa_c01192{font-size:14.666667pt;}
.fs7_c01192{font-size:17.333333pt;}
.fsd_c01192{font-size:19.333333pt;}
.fs12_c01192{font-size:21.333333pt;}
.fs10_c01192{font-size:23.333333pt;}
.fs8_c01192{font-size:24.666667pt;}
.fs11_c01192{font-size:26.000000pt;}
.fsf_c01192{font-size:26.666667pt;}
.fsc_c01192{font-size:27.333333pt;}
.fs14_c01192{font-size:31.333333pt;}
.fs16_c01192{font-size:32.000000pt;}
.fs13_c01192{font-size:32.666667pt;}
.fse_c01192{font-size:33.333333pt;}
.fs15_c01192{font-size:34.000000pt;}
.fsb_c01192{font-size:36.000000pt;}
.fs9_c01192{font-size:40.000000pt;}
.fs22_c01192{font-size:44.000000pt;}
.fs1e_c01192{font-size:45.333333pt;}
.fs26_c01192{font-size:46.000000pt;}
.fs25_c01192{font-size:46.666667pt;}
.fs24_c01192{font-size:46.875733pt;}
.fs1b_c01192{font-size:47.333333pt;}
.fs1d_c01192{font-size:48.000000pt;}
.fs21_c01192{font-size:48.666667pt;}
.fs17_c01192{font-size:49.333333pt;}
.fs18_c01192{font-size:50.000000pt;}
.fs1c_c01192{font-size:50.666667pt;}
.fs1a_c01192{font-size:51.333333pt;}
.fs1f_c01192{font-size:52.000000pt;}
.fs19_c01192{font-size:52.666667pt;}
.fs23_c01192{font-size:53.333333pt;}
.fs20_c01192{font-size:56.000000pt;}
.fs5_c01192{font-size:72.666667pt;}
.fs1_c01192{font-size:73.333333pt;}
.fs2_c01192{font-size:74.000000pt;}
.fs3_c01192{font-size:75.333333pt;}
.fs6_c01192{font-size:77.333333pt;}
.fs0_c01192{font-size:78.000000pt;}
.fs4_c01192{font-size:84.000000pt;}
.y0_c01192{bottom:0.000000pt;}
.y7_c01192{bottom:36.533587pt;}
.y5_c01192{bottom:44.853867pt;}
.y3_c01192{bottom:45.174667pt;}
.y6_c01192{bottom:49.014000pt;}
.y2_c01192{bottom:51.574520pt;}
.y4_c01192{bottom:52.534000pt;}
.y2c_c01192{bottom:83.254653pt;}
.y2b_c01192{bottom:109.813867pt;}
.y2a_c01192{bottom:136.053400pt;}
.y29_c01192{bottom:162.933467pt;}
.y28_c01192{bottom:189.814600pt;}
.y27_c01192{bottom:216.694667pt;}
.y26_c01192{bottom:243.253720pt;}
.y25_c01192{bottom:269.814640pt;}
.y24_c01192{bottom:309.494547pt;}
.y23_c01192{bottom:336.374613pt;}
.y22_c01192{bottom:362.934627pt;}
.y21_c01192{bottom:389.493333pt;}
.y20_c01192{bottom:442.614507pt;}
.y1f_c01192{bottom:442.614987pt;}
.y1d_c01192{bottom:455.733160pt;}
.y1e_c01192{bottom:455.733720pt;}
.y1b_c01192{bottom:468.854293pt;}
.y1c_c01192{bottom:468.854373pt;}
.y1a_c01192{bottom:482.294227pt;}
.y19_c01192{bottom:495.734253pt;}
.y18_c01192{bottom:508.533973pt;}
.y17_c01192{bottom:521.654667pt;}
.y16_c01192{bottom:521.655187pt;}
.y15_c01192{bottom:535.413853pt;}
.y14_c01192{bottom:548.534507pt;}
.y13_c01192{bottom:561.653560pt;}
.y12_c01192{bottom:575.093587pt;}
.y10_c01192{bottom:588.213973pt;}
.y11_c01192{bottom:588.214107pt;}
.yf_c01192{bottom:601.014000pt;}
.ye_c01192{bottom:614.453973pt;}
.yd_c01192{bottom:627.574507pt;}
.yc_c01192{bottom:641.014520pt;}
.yb_c01192{bottom:654.773720pt;}
.ya_c01192{bottom:667.894373pt;}
.y9_c01192{bottom:681.013427pt;}
.y8_c01192{bottom:694.453453pt;}
.y1_c01192{bottom:752.694093pt;}
.hb_c01192{height:14.394531pt;}
.h8_c01192{height:17.468750pt;}
.he_c01192{height:20.164062pt;}
.h13_c01192{height:21.500000pt;}
.h11_c01192{height:24.335938pt;}
.h12_c01192{height:25.504883pt;}
.h9_c01192{height:25.726562pt;}
.hd_c01192{height:27.013021pt;}
.h10_c01192{height:27.812500pt;}
.h16_c01192{height:32.679688pt;}
.h14_c01192{height:32.921875pt;}
.h18_c01192{height:33.375000pt;}
.h15_c01192{height:33.593750pt;}
.h17_c01192{height:34.265625pt;}
.hf_c01192{height:34.765625pt;}
.hc_c01192{height:37.546875pt;}
.ha_c01192{height:41.718750pt;}
.h2e_c01192{height:45.800781pt;}
.h28_c01192{height:45.890625pt;}
.h2d_c01192{height:46.005969pt;}
.h1e_c01192{height:46.455078pt;}
.h20_c01192{height:47.109375pt;}
.h21_c01192{height:47.281250pt;}
.h27_c01192{height:47.763672pt;}
.h2f_c01192{height:47.976562pt;}
.h29_c01192{height:48.096354pt;}
.h1b_c01192{height:48.417969pt;}
.h1a_c01192{height:49.072266pt;}
.h19_c01192{height:49.718750pt;}
.h1f_c01192{height:49.726562pt;}
.h1d_c01192{height:50.380859pt;}
.h2b_c01192{height:50.731771pt;}
.h22_c01192{height:51.035156pt;}
.h23_c01192{height:51.062500pt;}
.h24_c01192{height:51.390625pt;}
.h1c_c01192{height:51.689453pt;}
.h25_c01192{height:51.734375pt;}
.h2c_c01192{height:52.708333pt;}
.h2a_c01192{height:53.078125pt;}
.h26_c01192{height:55.343750pt;}
.h6_c01192{height:73.234375pt;}
.h2_c01192{height:73.906250pt;}
.h3_c01192{height:74.578125pt;}
.h4_c01192{height:75.921875pt;}
.h7_c01192{height:77.937500pt;}
.h1_c01192{height:78.609375pt;}
.h5_c01192{height:83.015625pt;}
.h0_c01192{height:793.333333pt;}
.w0_c01192{width:1122.666667pt;}
.x0_c01192{left:0.000000pt;}
.x1_c01192{left:73.918920pt;}
.xc_c01192{left:79.359333pt;}
.xd_c01192{left:135.679733pt;}
.x2_c01192{left:152.639613pt;}
.xe_c01192{left:172.479467pt;}
.x3_c01192{left:189.758787pt;}
.xf_c01192{left:194.879867pt;}
.x10_c01192{left:204.159733pt;}
.x11_c01192{left:273.599067pt;}
.x4_c01192{left:283.839867pt;}
.x19_c01192{left:294.079067pt;}
.x1a_c01192{left:319.038533pt;}
.x12_c01192{left:342.399867pt;}
.x5_c01192{left:350.399453pt;}
.x1b_c01192{left:359.039067pt;}
.x1c_c01192{left:394.558507pt;}
.x13_c01192{left:411.199173pt;}
.x1d_c01192{left:434.559040pt;}
.x6_c01192{left:467.519453pt;}
.x14_c01192{left:480.319333pt;}
.x15_c01192{left:549.439453pt;}
.x7_c01192{left:559.038533pt;}
.x8_c01192{left:581.438920pt;}
.x16_c01192{left:618.878907pt;}
.x18_c01192{left:655.999427pt;}
.x17_c01192{left:686.399413pt;}
.x9_c01192{left:732.159747pt;}
.xa_c01192{left:775.359293pt;}
.xb_c01192{left:801.279707pt;}
.x23_c01192{left:818.559080pt;}
.x53_c01192{left:828.799880pt;}
.x4b_c01192{left:834.238773pt;}
.x45_c01192{left:844.479413pt;}
.x4c_c01192{left:850.558507pt;}
.x1e_c01192{left:852.159747pt;}
.x60_c01192{left:855.679693pt;}
.x37_c01192{left:856.639160pt;}
.x46_c01192{left:861.439453pt;}
.x38_c01192{left:866.559080pt;}
.x1f_c01192{left:869.759680pt;}
.x47_c01192{left:873.599040pt;}
.x5b_c01192{left:874.558507pt;}
.x62_c01192{left:881.598720pt;}
.x55_c01192{left:882.559573pt;}
.x50_c01192{left:884.799320pt;}
.x5c_c01192{left:885.758787pt;}
.x58_c01192{left:892.158693pt;}
.x40_c01192{left:893.759680pt;}
.x61_c01192{left:895.678707pt;}
.x63_c01192{left:896.639573pt;}
.x51_c01192{left:897.599040pt;}
.x4d_c01192{left:899.198733pt;}
.x33_c01192{left:900.159747pt;}
.x2a_c01192{left:901.759280pt;}
.x27_c01192{left:905.598720pt;}
.x48_c01192{left:908.479987pt;}
.x59_c01192{left:913.278813pt;}
.x2b_c01192{left:914.879880pt;}
.x39_c01192{left:918.399827pt;}
.x28_c01192{left:920.958907pt;}
.x2c_c01192{left:928.319827pt;}
.x3a_c01192{left:931.199707pt;}
.x5f_c01192{left:933.118733pt;}
.x2d_c01192{left:937.918947pt;}
.x20_c01192{left:945.599040pt;}
.x54_c01192{left:949.759280pt;}
.x64_c01192{left:950.718747pt;}
.x3b_c01192{left:960.000000pt;}
.x21_c01192{left:962.879880pt;}
.x41_c01192{left:965.119547pt;}
.x34_c01192{left:967.038493pt;}
.x30_c01192{left:970.558507pt;}
.x56_c01192{left:974.078693pt;}
.x3c_c01192{left:975.039547pt;}
.x5d_c01192{left:975.999027pt;}
.x31_c01192{left:983.359867pt;}
.x35_c01192{left:985.278813pt;}
.x5e_c01192{left:989.438880pt;}
.x3d_c01192{left:991.999427pt;}
.x24_c01192{left:1003.199707pt;}
.x42_c01192{left:1004.159173pt;}
.x49_c01192{left:1012.158693pt;}
.x25_c01192{left:1017.279707pt;}
.x36_c01192{left:1020.479000pt;}
.x4e_c01192{left:1023.039547pt;}
.x43_c01192{left:1024.319827pt;}
.x3e_c01192{left:1026.559573pt;}
.x5a_c01192{left:1030.398920pt;}
.x44_c01192{left:1035.839280pt;}
.x3f_c01192{left:1039.038493pt;}
.x4a_c01192{left:1043.198733pt;}
.x2e_c01192{left:1051.519040pt;}
.x52_c01192{left:1054.079587pt;}
.x32_c01192{left:1060.479413pt;}
.x2f_c01192{left:1066.239173pt;}
.x57_c01192{left:1068.159667pt;}
.x29_c01192{left:1069.439947pt;}
.x22_c01192{left:1072.639160pt;}
.x26_c01192{left:1075.839840pt;}
.x4f_c01192{left:1078.398920pt;}
}





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

.ir_c01193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_79bee3bb8a5b0220623cd8a5.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01193;src:url('chunks/assets/font_8a1db7e469908c8a4d1dd16c.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.311035;font-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_c01193{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3_c01193{transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);}
.m0_c01193{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m1_c01193{transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294811,0.000000,0.000000,0.250000,0,0);}
.v0_c01193{vertical-align:0.000000px;}
.ls2_c01193{letter-spacing:-2.475000px;}
.ls3_c01193{letter-spacing:-1.650000px;}
.ls1_c01193{letter-spacing:0.000000px;}
.ls0_c01193{letter-spacing:5.394600px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01193{word-spacing:0.000000px;}
._0_c01193{width:32.290104px;}
.fc0_c01193{color:transparent;}
.fs1_c01193{font-size:79.500000px;}
.fs2_c01193{font-size:82.500000px;}
.fs0_c01193{font-size:83.250000px;}
.fs3_c01193{font-size:84.750000px;}
.y0_c01193{bottom:0.000000px;}
.y1_c01193{bottom:763.620435px;}
.h2_c01193{height:80.121094px;}
.h1_c01193{height:82.274414px;}
.h3_c01193{height:83.144531px;}
.h4_c01193{height:85.412109px;}
.h0_c01193{height:892.500000px;}
.w0_c01193{width:1263.000000px;}
.x0_c01193{left:0.000000px;}
.x1_c01193{left:77.040000px;}
.x2_c01193{left:164.158785px;}
.x3_c01193{left:205.919535px;}
.x4_c01193{left:441.358665px;}
.x5_c01193{left:467.279250px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls2_c01193{letter-spacing:-2.200000pt;}
.ls3_c01193{letter-spacing:-1.466667pt;}
.ls1_c01193{letter-spacing:0.000000pt;}
.ls0_c01193{letter-spacing:4.795200pt;}
.ws0_c01193{word-spacing:0.000000pt;}
._0_c01193{width:28.702315pt;}
.fs1_c01193{font-size:70.666667pt;}
.fs2_c01193{font-size:73.333333pt;}
.fs0_c01193{font-size:74.000000pt;}
.fs3_c01193{font-size:75.333333pt;}
.y0_c01193{bottom:0.000000pt;}
.y1_c01193{bottom:678.773720pt;}
.h2_c01193{height:71.218750pt;}
.h1_c01193{height:73.132813pt;}
.h3_c01193{height:73.906250pt;}
.h4_c01193{height:75.921875pt;}
.h0_c01193{height:793.333333pt;}
.w0_c01193{width:1122.666667pt;}
.x0_c01193{left:0.000000pt;}
.x1_c01193{left:68.480000pt;}
.x2_c01193{left:145.918920pt;}
.x3_c01193{left:183.039587pt;}
.x4_c01193{left:392.318813pt;}
.x5_c01193{left:415.359333pt;}
}





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

.ir_c01194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
.sc__c01194{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01194{-webkit-text-stroke:0px transparent;}
}
.y0_c01194{bottom:0.000000px;}
.h0_c01194{height:892.500000px;}
.w0_c01194{width:1263.000000px;}
.x0_c01194{left:0.000000px;}
@media print{
.y0_c01194{bottom:0.000000pt;}
.h0_c01194{height:793.333333pt;}
.w0_c01194{width:1122.666667pt;}
.x0_c01194{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_c01195 {
    display:none;
  }
  .loading-indicator_c01195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01195 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01195 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01195" -> "#page-container .classname_c01195")
 */
.pf_c01195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01195 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01195 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01195 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01195 {overflow:visible;}
  }
}
.c_c01195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01195 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01195:after { /* webkit #35443 */
  content: '';
}
.t_c01195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01195 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01195 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01195 { /* info for Javascript */
  display:none;
}
.l_c01195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_b2f4386d2178cd83db2ef67e.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01195;src:url('chunks/assets/font_c29596050e4759d2861833b6.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01195;src:url('chunks/assets/font_63622833d9e7bda7c9f5239f.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01195;src:url('chunks/assets/font_ae229a436c3c38fe49e3a785.woff2')format("woff");}.ff4_c01195{font-family:ff4_c01195;line-height:1.432129;font-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_c01195{transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174107,0.000000,0.000000,0.250000,0,0);}
.m4_c01195{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m5_c01195{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.m2_c01195{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m3_c01195{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m0_c01195{transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);}
.m6_c01195{transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278302,0.000000,0.000000,0.250000,0,0);}
.m1_c01195{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.v0_c01195{vertical-align:0.000000px;}
.ls1_c01195{letter-spacing:-17.850000px;}
.ls6_c01195{letter-spacing:-12.953250px;}
.ls3_c01195{letter-spacing:-12.408548px;}
.ls7_c01195{letter-spacing:-10.848600px;}
.ls8_c01195{letter-spacing:-4.828125px;}
.ls5_c01195{letter-spacing:-4.649400px;}
.ls2_c01195{letter-spacing:-2.325623px;}
.ls4_c01195{letter-spacing:0.000000px;}
.ls0_c01195{letter-spacing:5.069925px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01195{word-spacing:0.000000px;}
._0_c01195{margin-left:-6.883191px;}
.fc0_c01195{color:transparent;}
.fs6_c01195{font-size:39.750000px;}
.fs7_c01195{font-size:42.000000px;}
.fs5_c01195{font-size:77.250000px;}
.fs0_c01195{font-size:83.250000px;}
.fs4_c01195{font-size:85.500000px;}
.fs1_c01195{font-size:89.250000px;}
.fs2_c01195{font-size:92.250000px;}
.fs3_c01195{font-size:97.500000px;}
.y0_c01195{bottom:0.000000px;}
.y3_c01195{bottom:731.220105px;}
.y2_c01195{bottom:739.501005px;}
.y1_c01195{bottom:762.900285px;}
.h7_c01195{height:39.284180px;}
.h8_c01195{height:43.804688px;}
.h6_c01195{height:80.569336px;}
.h1_c01195{height:82.274414px;}
.h5_c01195{height:86.167969px;}
.h2_c01195{height:88.204102px;}
.h3_c01195{height:91.168945px;}
.h4_c01195{height:96.357422px;}
.h0_c01195{height:892.500000px;}
.w0_c01195{width:1263.000000px;}
.x0_c01195{left:0.000000px;}
.x1_c01195{left:68.399850px;}
.x2_c01195{left:155.879565px;}
.x3_c01195{left:198.719535px;}
.x4_c01195{left:433.799565px;}
.x9_c01195{left:437.039385px;}
.xa_c01195{left:441.358665px;}
.x5_c01195{left:460.079400px;}
.x6_c01195{left:631.439670px;}
.x7_c01195{left:680.039385px;}
.x8_c01195{left:746.639700px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls1_c01195{letter-spacing:-15.866667pt;}
.ls6_c01195{letter-spacing:-11.514000pt;}
.ls3_c01195{letter-spacing:-11.029820pt;}
.ls7_c01195{letter-spacing:-9.643200pt;}
.ls8_c01195{letter-spacing:-4.291667pt;}
.ls5_c01195{letter-spacing:-4.132800pt;}
.ls2_c01195{letter-spacing:-2.067220pt;}
.ls4_c01195{letter-spacing:0.000000pt;}
.ls0_c01195{letter-spacing:4.506600pt;}
.ws0_c01195{word-spacing:0.000000pt;}
._0_c01195{margin-left:-6.118392pt;}
.fs6_c01195{font-size:35.333333pt;}
.fs7_c01195{font-size:37.333333pt;}
.fs5_c01195{font-size:68.666667pt;}
.fs0_c01195{font-size:74.000000pt;}
.fs4_c01195{font-size:76.000000pt;}
.fs1_c01195{font-size:79.333333pt;}
.fs2_c01195{font-size:82.000000pt;}
.fs3_c01195{font-size:86.666667pt;}
.y0_c01195{bottom:0.000000pt;}
.y3_c01195{bottom:649.973427pt;}
.y2_c01195{bottom:657.334227pt;}
.y1_c01195{bottom:678.133587pt;}
.h7_c01195{height:34.919271pt;}
.h8_c01195{height:38.937500pt;}
.h6_c01195{height:71.617188pt;}
.h1_c01195{height:73.132813pt;}
.h5_c01195{height:76.593750pt;}
.h2_c01195{height:78.403646pt;}
.h3_c01195{height:81.039063pt;}
.h4_c01195{height:85.651042pt;}
.h0_c01195{height:793.333333pt;}
.w0_c01195{width:1122.666667pt;}
.x0_c01195{left:0.000000pt;}
.x1_c01195{left:60.799867pt;}
.x2_c01195{left:138.559613pt;}
.x3_c01195{left:176.639587pt;}
.x4_c01195{left:385.599613pt;}
.x9_c01195{left:388.479453pt;}
.xa_c01195{left:392.318813pt;}
.x5_c01195{left:408.959467pt;}
.x6_c01195{left:561.279707pt;}
.x7_c01195{left:604.479453pt;}
.x8_c01195{left:663.679733pt;}
}





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

.ir_c01196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
.sc__c01196{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01196{-webkit-text-stroke:0px transparent;}
}
.y0_c01196{bottom:0.000000px;}
.h0_c01196{height:892.500000px;}
.w0_c01196{width:1263.000000px;}
.x0_c01196{left:0.000000px;}
@media print{
.y0_c01196{bottom:0.000000pt;}
.h0_c01196{height:793.333333pt;}
.w0_c01196{width:1122.666667pt;}
.x0_c01196{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_c01197 {
    display:none;
  }
  .loading-indicator_c01197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01197 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01197 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01197" -> "#page-container .classname_c01197")
 */
.pf_c01197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01197 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01197 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01197 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01197 {overflow:visible;}
  }
}
.c_c01197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01197 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01197:after { /* webkit #35443 */
  content: '';
}
.t_c01197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01197 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01197 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01197 { /* info for Javascript */
  display:none;
}
.l_c01197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_37dbeedda7e1a1e1a09bb5e1.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01197;src:url('chunks/assets/font_c65db52694fc7ec8a28309c9.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01197;src:url('chunks/assets/font_36f270ca2b14c81a82de578a.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01197;src:url('chunks/assets/font_7541771f6da900922b0047dd.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01197;src:url('chunks/assets/font_4adc253f221f8b6529fcb749.woff2')format("woff");}.ff5_c01197{font-family:ff5_c01197;line-height:1.432129;font-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_c01197{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m2_c01197{transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220721,0.000000,0.000000,0.250000,0,0);}
.m5_c01197{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3_c01197{transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227876,0.000000,0.000000,0.250000,0,0);}
.m6_c01197{transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232301,0.000000,0.000000,0.250000,0,0);}
.m1_c01197{transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286364,0.000000,0.000000,0.250000,0,0);}
.m0_c01197{transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292453,0.000000,0.000000,0.250000,0,0);}
.m7_c01197{transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);}
.m8_c01197{transform:matrix(0.807229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807229,0.000000,0.000000,0.250000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.ls6_c01197{letter-spacing:-6.596618px;}
.ls7_c01197{letter-spacing:-4.839225px;}
.ls5_c01197{letter-spacing:-2.550555px;}
.ls4_c01197{letter-spacing:-2.546618px;}
.ls3_c01197{letter-spacing:-1.698300px;}
.ls2_c01197{letter-spacing:0.000000px;}
.ls0_c01197{letter-spacing:0.848318px;}
.ls1_c01197{letter-spacing:1.279950px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01197{word-spacing:0.000000px;}
._0_c01197{width:35.289046px;}
.fc0_c01197{color:transparent;}
.fs7_c01197{font-size:62.250000px;}
.fs6_c01197{font-size:71.250000px;}
.fs0_c01197{font-size:79.500000px;}
.fs1_c01197{font-size:82.500000px;}
.fs2_c01197{font-size:83.250000px;}
.fs3_c01197{font-size:84.750000px;}
.fs5_c01197{font-size:90.750000px;}
.fs4_c01197{font-size:94.500000px;}
.y0_c01197{bottom:0.000000px;}
.y2_c01197{bottom:739.860255px;}
.y1_c01197{bottom:764.701485px;}
.h9_c01197{height:64.924805px;}
.h8_c01197{height:74.311523px;}
.h1_c01197{height:82.916016px;}
.h2_c01197{height:83.144531px;}
.h7_c01197{height:83.177490px;}
.h3_c01197{height:83.900391px;}
.h4_c01197{height:85.412109px;}
.h6_c01197{height:89.686523px;}
.h5_c01197{height:93.392578px;}
.h0_c01197{height:892.500000px;}
.w0_c01197{width:1263.000000px;}
.x0_c01197{left:0.000000px;}
.x1_c01197{left:68.038950px;}
.x2_c01197{left:155.879565px;}
.x3_c01197{left:197.279250px;}
.x4_c01197{left:432.000000px;}
.x9_c01197{left:434.878920px;}
.x5_c01197{left:457.198785px;}
.xa_c01197{left:464.039385px;}
.x6_c01197{left:630.719520px;}
.x7_c01197{left:678.599070px;}
.x8_c01197{left:744.479235px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls6_c01197{letter-spacing:-5.863660pt;}
.ls7_c01197{letter-spacing:-4.301533pt;}
.ls5_c01197{letter-spacing:-2.267160pt;}
.ls4_c01197{letter-spacing:-2.263660pt;}
.ls3_c01197{letter-spacing:-1.509600pt;}
.ls2_c01197{letter-spacing:0.000000pt;}
.ls0_c01197{letter-spacing:0.754060pt;}
.ls1_c01197{letter-spacing:1.137733pt;}
.ws0_c01197{word-spacing:0.000000pt;}
._0_c01197{width:31.368041pt;}
.fs7_c01197{font-size:55.333333pt;}
.fs6_c01197{font-size:63.333333pt;}
.fs0_c01197{font-size:70.666667pt;}
.fs1_c01197{font-size:73.333333pt;}
.fs2_c01197{font-size:74.000000pt;}
.fs3_c01197{font-size:75.333333pt;}
.fs5_c01197{font-size:80.666667pt;}
.fs4_c01197{font-size:84.000000pt;}
.y0_c01197{bottom:0.000000pt;}
.y2_c01197{bottom:657.653560pt;}
.y1_c01197{bottom:679.734653pt;}
.h9_c01197{height:57.710938pt;}
.h8_c01197{height:66.054688pt;}
.h1_c01197{height:73.703125pt;}
.h2_c01197{height:73.906250pt;}
.h7_c01197{height:73.935547pt;}
.h3_c01197{height:74.578125pt;}
.h4_c01197{height:75.921875pt;}
.h6_c01197{height:79.721354pt;}
.h5_c01197{height:83.015625pt;}
.h0_c01197{height:793.333333pt;}
.w0_c01197{width:1122.666667pt;}
.x0_c01197{left:0.000000pt;}
.x1_c01197{left:60.479067pt;}
.x2_c01197{left:138.559613pt;}
.x3_c01197{left:175.359333pt;}
.x4_c01197{left:384.000000pt;}
.x9_c01197{left:386.559040pt;}
.x5_c01197{left:406.398920pt;}
.xa_c01197{left:412.479453pt;}
.x6_c01197{left:560.639573pt;}
.x7_c01197{left:603.199173pt;}
.x8_c01197{left:661.759320pt;}
}





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

.ir_c01198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_83a22abdcdedf049f9411c12.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01198;src:url('chunks/assets/font_726b6cf8f74971688b20cc75.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01198;src:url('chunks/assets/font_6c0dcacad2af69abb5f99cee.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01198;src:url('chunks/assets/font_5b715bf1d21348a35158fac2.woff2')format("woff");}.ff4_c01198{font-family:ff4_c01198;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01198;src:url('chunks/assets/font_29ba3fdc5992a58319721e21.woff2')format("woff");}.ff5_c01198{font-family:ff5_c01198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01198;src:url('chunks/assets/font_83ef042ea4fdff5e32026dec.woff2')format("woff");}.ff6_c01198{font-family:ff6_c01198;line-height:1.284180;font-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_c01198{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11_c01198{transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);}
.m24_c01198{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m1a_c01198{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m5_c01198{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m6_c01198{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m7_c01198{transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201299,0.000000,0.000000,0.250000,0,0);}
.m17_c01198{transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212838,0.000000,0.000000,0.250000,0,0);}
.mc_c01198{transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215190,0.000000,0.000000,0.250000,0,0);}
.m21_c01198{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.me_c01198{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);}
.m2a_c01198{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m16_c01198{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m3_c01198{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.mb_c01198{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m8_c01198{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m2e_c01198{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m2_c01198{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.ma_c01198{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m1f_c01198{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m18_c01198{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m23_c01198{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m15_c01198{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m1d_c01198{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m13_c01198{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m12_c01198{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.md_c01198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01198{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m4_c01198{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m1b_c01198{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.mf_c01198{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m14_c01198{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m1c_c01198{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_c01198{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m22_c01198{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m25_c01198{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m20_c01198{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.m1e_c01198{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m1_c01198{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_c01198{transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);}
.m0_c01198{transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);}
.m2c_c01198{transform:matrix(0.795673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795673,0.000000,0.000000,0.250000,0,0);}
.m29_c01198{transform:matrix(1.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.031250,0.000000,0.000000,0.250000,0,0);}
.m2b_c01198{transform:matrix(1.050360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050360,0.000000,0.000000,0.250000,0,0);}
.m26_c01198{transform:matrix(1.135417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135417,0.000000,0.000000,0.250000,0,0);}
.m27_c01198{transform:matrix(1.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.351562,0.000000,0.000000,0.250000,0,0);}
.m28_c01198{transform:matrix(1.459821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.459821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.459821,0.000000,0.000000,0.250000,0,0);}
.v0_c01198{vertical-align:0.000000px;}
.ls7_c01198{letter-spacing:-14.200725px;}
.ls22_c01198{letter-spacing:-8.604765px;}
.lsb_c01198{letter-spacing:-8.385300px;}
.ls11_c01198{letter-spacing:-7.844700px;}
.ls1a_c01198{letter-spacing:-6.991800px;}
.ls23_c01198{letter-spacing:-6.659438px;}
.ls2_c01198{letter-spacing:-6.343650px;}
.ls27_c01198{letter-spacing:-6.075608px;}
.ls1c_c01198{letter-spacing:-6.054750px;}
.ls12_c01198{letter-spacing:-6.000750px;}
.ls14_c01198{letter-spacing:-6.000600px;}
.ls15_c01198{letter-spacing:-5.328383px;}
.ls28_c01198{letter-spacing:-5.180625px;}
.ls13_c01198{letter-spacing:-5.103000px;}
.ls24_c01198{letter-spacing:-4.957200px;}
.ls4_c01198{letter-spacing:-4.753575px;}
.ls1f_c01198{letter-spacing:-4.567725px;}
.ls17_c01198{letter-spacing:-4.560000px;}
.ls19_c01198{letter-spacing:-4.093740px;}
.ls0_c01198{letter-spacing:-3.916755px;}
.lsc_c01198{letter-spacing:-3.701250px;}
.ls1e_c01198{letter-spacing:-3.605625px;}
.ls1b_c01198{letter-spacing:-3.563753px;}
.ls29_c01198{letter-spacing:-3.517470px;}
.ls21_c01198{letter-spacing:-3.396278px;}
.lse_c01198{letter-spacing:-3.263955px;}
.lsf_c01198{letter-spacing:-3.133725px;}
.ls16_c01198{letter-spacing:-3.036150px;}
.lsa_c01198{letter-spacing:-2.958750px;}
.ls20_c01198{letter-spacing:-2.708400px;}
.ls2c_c01198{letter-spacing:-2.390850px;}
.ls5_c01198{letter-spacing:-2.380118px;}
.ls26_c01198{letter-spacing:-2.314350px;}
.ls2b_c01198{letter-spacing:-2.223375px;}
.ls6_c01198{letter-spacing:-2.222438px;}
.ls1d_c01198{letter-spacing:-2.193923px;}
.ls18_c01198{letter-spacing:-1.541250px;}
.ls8_c01198{letter-spacing:-1.479938px;}
.ls2a_c01198{letter-spacing:-0.826313px;}
.ls3_c01198{letter-spacing:-0.791708px;}
.ls9_c01198{letter-spacing:-0.742500px;}
.ls25_c01198{letter-spacing:-0.720000px;}
.ls1_c01198{letter-spacing:0.000000px;}
.ls10_c01198{letter-spacing:10.397400px;}
.lsd_c01198{letter-spacing:13.320000px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01198{word-spacing:0.000000px;}
._c_c01198{margin-left:-29.970355px;}
._7_c01198{margin-left:-3.453809px;}
._6_c01198{margin-left:-1.423303px;}
._4_c01198{width:1.575000px;}
._3_c01198{width:3.021543px;}
._5_c01198{width:4.372638px;}
._8_c01198{width:6.204789px;}
._b_c01198{width:7.621993px;}
._f_c01198{width:8.883148px;}
._9_c01198{width:10.059809px;}
._e_c01198{width:11.277711px;}
._a_c01198{width:13.859586px;}
._13_c01198{width:14.884135px;}
._12_c01198{width:16.459105px;}
._11_c01198{width:17.886523px;}
._10_c01198{width:20.019612px;}
._d_c01198{width:21.833793px;}
._2_c01198{width:28.097240px;}
._1_c01198{width:32.339834px;}
._0_c01198{width:37.058777px;}
.fc0_c01198{color:transparent;}
.fs14_c01198{font-size:42.000000px;}
.fs13_c01198{font-size:48.000000px;}
.fsf_c01198{font-size:50.250000px;}
.fs11_c01198{font-size:51.000000px;}
.fs17_c01198{font-size:51.750000px;}
.fs9_c01198{font-size:52.500000px;}
.fsd_c01198{font-size:54.000000px;}
.fs8_c01198{font-size:55.500000px;}
.fs4_c01198{font-size:56.250000px;}
.fsc_c01198{font-size:57.000000px;}
.fs5_c01198{font-size:57.750000px;}
.fs6_c01198{font-size:58.500000px;}
.fsb_c01198{font-size:59.250000px;}
.fsa_c01198{font-size:60.000000px;}
.fs7_c01198{font-size:60.750000px;}
.fs10_c01198{font-size:62.250000px;}
.fse_c01198{font-size:64.500000px;}
.fs1_c01198{font-size:75.000000px;}
.fs2_c01198{font-size:83.250000px;}
.fs3_c01198{font-size:84.750000px;}
.fs0_c01198{font-size:85.500000px;}
.fs15_c01198{font-size:104.250000px;}
.fs12_c01198{font-size:121.500000px;}
.fs16_c01198{font-size:156.000000px;}
.y0_c01198{bottom:0.000000px;}
.y22_c01198{bottom:282.300585px;}
.y21_c01198{bottom:312.179700px;}
.y20_c01198{bottom:317.579985px;}
.y1f_c01198{bottom:342.780435px;}
.y1e_c01198{bottom:387.061065px;}
.y1d_c01198{bottom:447.179670px;}
.y1b_c01198{bottom:535.739640px;}
.y1c_c01198{bottom:535.740420px;}
.y1a_c01198{bottom:550.501005px;}
.y19_c01198{bottom:565.259355px;}
.y18_c01198{bottom:580.020720px;}
.y17_c01198{bottom:580.021500px;}
.y15_c01198{bottom:595.499355px;}
.y16_c01198{bottom:595.500000px;}
.y14_c01198{bottom:610.260720px;}
.y13_c01198{bottom:610.261095px;}
.y11_c01198{bottom:625.019070px;}
.y12_c01198{bottom:625.019670px;}
.yf_c01198{bottom:639.780345px;}
.y10_c01198{bottom:639.780435px;}
.ye_c01198{bottom:654.900285px;}
.yc_c01198{bottom:670.020165px;}
.yd_c01198{bottom:670.020270px;}
.ya_c01198{bottom:685.139850px;}
.yb_c01198{bottom:685.140105px;}
.y9_c01198{bottom:699.901245px;}
.y8_c01198{bottom:714.659820px;}
.y7_c01198{bottom:729.779850px;}
.y5_c01198{bottom:744.899055px;}
.y6_c01198{bottom:744.899820px;}
.y4_c01198{bottom:759.660420px;}
.y3_c01198{bottom:759.661155px;}
.y2_c01198{bottom:775.139655px;}
.y1_c01198{bottom:840.660465px;}
.h1b_c01198{height:43.804688px;}
.h1a_c01198{height:50.062500px;}
.h14_c01198{height:52.409180px;}
.h16_c01198{height:53.191406px;}
.h1f_c01198{height:53.973633px;}
.h9_c01198{height:54.470215px;}
.ha_c01198{height:54.755859px;}
.h5_c01198{height:55.206299px;}
.h17_c01198{height:55.933594px;}
.h18_c01198{height:55.942383px;}
.h11_c01198{height:56.320312px;}
.h10_c01198{height:56.678467px;}
.h1c_c01198{height:56.689453px;}
.h6_c01198{height:57.073242px;}
.h7_c01198{height:57.414551px;}
.hf_c01198{height:57.445312px;}
.h13_c01198{height:57.814453px;}
.hc_c01198{height:58.555664px;}
.hb_c01198{height:58.857422px;}
.hd_c01198{height:59.296875px;}
.h8_c01198{height:59.622803px;}
.he_c01198{height:60.038086px;}
.h15_c01198{height:61.520508px;}
.h12_c01198{height:63.744141px;}
.h2_c01198{height:78.222656px;}
.h3_c01198{height:81.705322px;}
.h4_c01198{height:83.177490px;}
.h1_c01198{height:86.167969px;}
.h1d_c01198{height:108.729492px;}
.h19_c01198{height:126.720703px;}
.h1e_c01198{height:162.703125px;}
.h0_c01198{height:892.500000px;}
.w0_c01198{width:1263.000000px;}
.x0_c01198{left:0.000000px;}
.x1_c01198{left:81.718500px;}
.x2_c01198{left:167.039400px;}
.x3_c01198{left:210.958950px;}
.x4_c01198{left:502.199385px;}
.x5_c01198{left:527.759085px;}
.x9_c01198{left:914.398770px;}
.x14_c01198{left:915.478635px;}
.x1d_c01198{left:916.560375px;}
.x2d_c01198{left:917.639670px;}
.x33_c01198{left:919.079400px;}
.x37_c01198{left:925.559055px;}
.xe_c01198{left:932.759040px;}
.x39_c01198{left:934.199340px;}
.xf_c01198{left:941.758575px;}
.x1e_c01198{left:943.559685px;}
.x15_c01198{left:951.118740px;}
.x6_c01198{left:952.918305px;}
.x38_c01198{left:959.759040px;}
.x3a_c01198{left:961.558590px;}
.x3b_c01198{left:962.998905px;}
.x34_c01198{left:968.399235px;}
.x1c_c01198{left:969.478635px;}
.x17_c01198{left:971.279850px;}
.x1f_c01198{left:973.799565px;}
.x18_c01198{left:982.439670px;}
.xa_c01198{left:984.959385px;}
.x22_c01198{left:988.558590px;}
.xb_c01198{left:995.039985px;}
.x7_c01198{left:1016.998905px;}
.x3c_c01198{left:1018.439205px;}
.x35_c01198{left:1023.478635px;}
.x2a_c01198{left:1026.359250px;}
.x8_c01198{left:1031.039340px;}
.x36_c01198{left:1041.119940px;}
.x19_c01198{left:1044.359805px;}
.x3d_c01198{left:1046.879520px;}
.x10_c01198{left:1051.559685px;}
.x2e_c01198{left:1059.479640px;}
.x2b_c01198{left:1063.798920px;}
.xc_c01198{left:1067.399775px;}
.x11_c01198{left:1069.199340px;}
.x23_c01198{left:1072.079955px;}
.x30_c01198{left:1075.319820px;}
.xd_c01198{left:1082.158815px;}
.x2c_c01198{left:1084.319190px;}
.x31_c01198{left:1098.359805px;}
.x12_c01198{left:1099.798560px;}
.x24_c01198{left:1105.918950px;}
.x27_c01198{left:1112.759490px;}
.x13_c01198{left:1122.119940px;}
.x28_c01198{left:1128.599670px;}
.x32_c01198{left:1139.039340px;}
.x25_c01198{left:1149.479190px;}
.x1a_c01198{left:1166.398590px;}
.x20_c01198{left:1167.479640px;}
.x29_c01198{left:1177.199340px;}
.x1b_c01198{left:1184.399235px;}
.x16_c01198{left:1196.279205px;}
.x21_c01198{left:1197.358605px;}
.x26_c01198{left:1208.518620px;}
.x2f_c01198{left:1209.599670px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls7_c01198{letter-spacing:-12.622867pt;}
.ls22_c01198{letter-spacing:-7.648680pt;}
.lsb_c01198{letter-spacing:-7.453600pt;}
.ls11_c01198{letter-spacing:-6.973067pt;}
.ls1a_c01198{letter-spacing:-6.214933pt;}
.ls23_c01198{letter-spacing:-5.919500pt;}
.ls2_c01198{letter-spacing:-5.638800pt;}
.ls27_c01198{letter-spacing:-5.400540pt;}
.ls1c_c01198{letter-spacing:-5.382000pt;}
.ls12_c01198{letter-spacing:-5.334000pt;}
.ls14_c01198{letter-spacing:-5.333867pt;}
.ls15_c01198{letter-spacing:-4.736340pt;}
.ls28_c01198{letter-spacing:-4.605000pt;}
.ls13_c01198{letter-spacing:-4.536000pt;}
.ls24_c01198{letter-spacing:-4.406400pt;}
.ls4_c01198{letter-spacing:-4.225400pt;}
.ls1f_c01198{letter-spacing:-4.060200pt;}
.ls17_c01198{letter-spacing:-4.053333pt;}
.ls19_c01198{letter-spacing:-3.638880pt;}
.ls0_c01198{letter-spacing:-3.481560pt;}
.lsc_c01198{letter-spacing:-3.290000pt;}
.ls1e_c01198{letter-spacing:-3.205000pt;}
.ls1b_c01198{letter-spacing:-3.167780pt;}
.ls29_c01198{letter-spacing:-3.126640pt;}
.ls21_c01198{letter-spacing:-3.018913pt;}
.lse_c01198{letter-spacing:-2.901293pt;}
.lsf_c01198{letter-spacing:-2.785533pt;}
.ls16_c01198{letter-spacing:-2.698800pt;}
.lsa_c01198{letter-spacing:-2.630000pt;}
.ls20_c01198{letter-spacing:-2.407467pt;}
.ls2c_c01198{letter-spacing:-2.125200pt;}
.ls5_c01198{letter-spacing:-2.115660pt;}
.ls26_c01198{letter-spacing:-2.057200pt;}
.ls2b_c01198{letter-spacing:-1.976333pt;}
.ls6_c01198{letter-spacing:-1.975500pt;}
.ls1d_c01198{letter-spacing:-1.950153pt;}
.ls18_c01198{letter-spacing:-1.370000pt;}
.ls8_c01198{letter-spacing:-1.315500pt;}
.ls2a_c01198{letter-spacing:-0.734500pt;}
.ls3_c01198{letter-spacing:-0.703740pt;}
.ls9_c01198{letter-spacing:-0.660000pt;}
.ls25_c01198{letter-spacing:-0.640000pt;}
.ls1_c01198{letter-spacing:0.000000pt;}
.ls10_c01198{letter-spacing:9.242133pt;}
.lsd_c01198{letter-spacing:11.840000pt;}
.ws0_c01198{word-spacing:0.000000pt;}
._c_c01198{margin-left:-26.640316pt;}
._7_c01198{margin-left:-3.070053pt;}
._6_c01198{margin-left:-1.265158pt;}
._4_c01198{width:1.400000pt;}
._3_c01198{width:2.685816pt;}
._5_c01198{width:3.886789pt;}
._8_c01198{width:5.515368pt;}
._b_c01198{width:6.775105pt;}
._f_c01198{width:7.896132pt;}
._9_c01198{width:8.942053pt;}
._e_c01198{width:10.024632pt;}
._a_c01198{width:12.319632pt;}
._13_c01198{width:13.230342pt;}
._12_c01198{width:14.630316pt;}
._11_c01198{width:15.899132pt;}
._10_c01198{width:17.795211pt;}
._d_c01198{width:19.407816pt;}
._2_c01198{width:24.975324pt;}
._1_c01198{width:28.746519pt;}
._0_c01198{width:32.941135pt;}
.fs14_c01198{font-size:37.333333pt;}
.fs13_c01198{font-size:42.666667pt;}
.fsf_c01198{font-size:44.666667pt;}
.fs11_c01198{font-size:45.333333pt;}
.fs17_c01198{font-size:46.000000pt;}
.fs9_c01198{font-size:46.666667pt;}
.fsd_c01198{font-size:48.000000pt;}
.fs8_c01198{font-size:49.333333pt;}
.fs4_c01198{font-size:50.000000pt;}
.fsc_c01198{font-size:50.666667pt;}
.fs5_c01198{font-size:51.333333pt;}
.fs6_c01198{font-size:52.000000pt;}
.fsb_c01198{font-size:52.666667pt;}
.fsa_c01198{font-size:53.333333pt;}
.fs7_c01198{font-size:54.000000pt;}
.fs10_c01198{font-size:55.333333pt;}
.fse_c01198{font-size:57.333333pt;}
.fs1_c01198{font-size:66.666667pt;}
.fs2_c01198{font-size:74.000000pt;}
.fs3_c01198{font-size:75.333333pt;}
.fs0_c01198{font-size:76.000000pt;}
.fs15_c01198{font-size:92.666667pt;}
.fs12_c01198{font-size:108.000000pt;}
.fs16_c01198{font-size:138.666667pt;}
.y0_c01198{bottom:0.000000pt;}
.y22_c01198{bottom:250.933853pt;}
.y21_c01198{bottom:277.493067pt;}
.y20_c01198{bottom:282.293320pt;}
.y1f_c01198{bottom:304.693720pt;}
.y1e_c01198{bottom:344.054280pt;}
.y1d_c01198{bottom:397.493040pt;}
.y1b_c01198{bottom:476.213013pt;}
.y1c_c01198{bottom:476.213707pt;}
.y1a_c01198{bottom:489.334227pt;}
.y19_c01198{bottom:502.452760pt;}
.y18_c01198{bottom:515.573973pt;}
.y17_c01198{bottom:515.574667pt;}
.y15_c01198{bottom:529.332760pt;}
.y16_c01198{bottom:529.333333pt;}
.y14_c01198{bottom:542.453973pt;}
.y13_c01198{bottom:542.454307pt;}
.y11_c01198{bottom:555.572507pt;}
.y12_c01198{bottom:555.573040pt;}
.yf_c01198{bottom:568.693640pt;}
.y10_c01198{bottom:568.693720pt;}
.ye_c01198{bottom:582.133587pt;}
.yc_c01198{bottom:595.573480pt;}
.yd_c01198{bottom:595.573573pt;}
.ya_c01198{bottom:609.013200pt;}
.yb_c01198{bottom:609.013427pt;}
.y9_c01198{bottom:622.134440pt;}
.y8_c01198{bottom:635.253173pt;}
.y7_c01198{bottom:648.693200pt;}
.y5_c01198{bottom:662.132493pt;}
.y6_c01198{bottom:662.133173pt;}
.y4_c01198{bottom:675.253707pt;}
.y3_c01198{bottom:675.254360pt;}
.y2_c01198{bottom:689.013027pt;}
.y1_c01198{bottom:747.253747pt;}
.h1b_c01198{height:38.937500pt;}
.h1a_c01198{height:44.500000pt;}
.h14_c01198{height:46.585938pt;}
.h16_c01198{height:47.281250pt;}
.h1f_c01198{height:47.976562pt;}
.h9_c01198{height:48.417969pt;}
.ha_c01198{height:48.671875pt;}
.h5_c01198{height:49.072266pt;}
.h17_c01198{height:49.718750pt;}
.h18_c01198{height:49.726562pt;}
.h11_c01198{height:50.062500pt;}
.h10_c01198{height:50.380859pt;}
.h1c_c01198{height:50.390625pt;}
.h6_c01198{height:50.731771pt;}
.h7_c01198{height:51.035156pt;}
.hf_c01198{height:51.062500pt;}
.h13_c01198{height:51.390625pt;}
.hc_c01198{height:52.049479pt;}
.hb_c01198{height:52.317708pt;}
.hd_c01198{height:52.708333pt;}
.h8_c01198{height:52.998047pt;}
.he_c01198{height:53.367188pt;}
.h15_c01198{height:54.684896pt;}
.h12_c01198{height:56.661458pt;}
.h2_c01198{height:69.531250pt;}
.h3_c01198{height:72.626953pt;}
.h4_c01198{height:73.935547pt;}
.h1_c01198{height:76.593750pt;}
.h1d_c01198{height:96.648438pt;}
.h19_c01198{height:112.640625pt;}
.h1e_c01198{height:144.625000pt;}
.h0_c01198{height:793.333333pt;}
.w0_c01198{width:1122.666667pt;}
.x0_c01198{left:0.000000pt;}
.x1_c01198{left:72.638667pt;}
.x2_c01198{left:148.479467pt;}
.x3_c01198{left:187.519067pt;}
.x4_c01198{left:446.399453pt;}
.x5_c01198{left:469.119187pt;}
.x9_c01198{left:812.798907pt;}
.x14_c01198{left:813.758787pt;}
.x1d_c01198{left:814.720333pt;}
.x2d_c01198{left:815.679707pt;}
.x33_c01198{left:816.959467pt;}
.x37_c01198{left:822.719160pt;}
.xe_c01198{left:829.119147pt;}
.x39_c01198{left:830.399413pt;}
.xf_c01198{left:837.118733pt;}
.x1e_c01198{left:838.719720pt;}
.x15_c01198{left:845.438880pt;}
.x6_c01198{left:847.038493pt;}
.x38_c01198{left:853.119147pt;}
.x3a_c01198{left:854.718747pt;}
.x3b_c01198{left:855.999027pt;}
.x34_c01198{left:860.799320pt;}
.x1c_c01198{left:861.758787pt;}
.x17_c01198{left:863.359867pt;}
.x1f_c01198{left:865.599613pt;}
.x18_c01198{left:873.279707pt;}
.xa_c01198{left:875.519453pt;}
.x22_c01198{left:878.718747pt;}
.xb_c01198{left:884.479987pt;}
.x7_c01198{left:903.999027pt;}
.x3c_c01198{left:905.279293pt;}
.x35_c01198{left:909.758787pt;}
.x2a_c01198{left:912.319333pt;}
.x8_c01198{left:916.479413pt;}
.x36_c01198{left:925.439947pt;}
.x19_c01198{left:928.319827pt;}
.x3d_c01198{left:930.559573pt;}
.x10_c01198{left:934.719720pt;}
.x2e_c01198{left:941.759680pt;}
.x2b_c01198{left:945.599040pt;}
.xc_c01198{left:948.799800pt;}
.x11_c01198{left:950.399413pt;}
.x23_c01198{left:952.959960pt;}
.x30_c01198{left:955.839840pt;}
.xd_c01198{left:961.918947pt;}
.x2c_c01198{left:963.839280pt;}
.x31_c01198{left:976.319827pt;}
.x12_c01198{left:977.598720pt;}
.x24_c01198{left:983.039067pt;}
.x27_c01198{left:989.119547pt;}
.x13_c01198{left:997.439947pt;}
.x28_c01198{left:1003.199707pt;}
.x32_c01198{left:1012.479413pt;}
.x25_c01198{left:1021.759280pt;}
.x1a_c01198{left:1036.798747pt;}
.x20_c01198{left:1037.759680pt;}
.x29_c01198{left:1046.399413pt;}
.x1b_c01198{left:1052.799320pt;}
.x16_c01198{left:1063.359293pt;}
.x21_c01198{left:1064.318760pt;}
.x26_c01198{left:1074.238773pt;}
.x2f_c01198{left:1075.199707pt;}
}





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

.ir_c01199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_dfcee1bb5267ae9538e60512.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01199;src:url('chunks/assets/font_c65746c9e6efefb232dd23fb.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01199;src:url('chunks/assets/font_29855c76ff254ed40d61ba15.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01199;src:url('chunks/assets/font_2a27a52574b905593f7a2edb.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01199;src:url('chunks/assets/font_57e7ce1de64554a72ff34587.woff2')format("woff");}.ff5_c01199{font-family:ff5_c01199;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01199;src:url('chunks/assets/font_293a6ee983b44e2a88d2bd42.woff2')format("woff");}.ff6_c01199{font-family:ff6_c01199;line-height:1.432129;font-style:normal;font-weight: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_c01199;src:url('chunks/assets/font_10d47ebcc0dc70f27d5c62eb.woff2')format("woff");}.ff7_c01199{font-family:ff7_c01199;line-height:1.364746;font-style:normal;font-weight: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_c01199;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff8_c01199{font-family:ff8_c01199;line-height:1.284180;font-style:normal;font-weight: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_c01199;src:url('chunks/assets/font_229ea33bcb45283c3616aebc.woff2')format("woff");}.ff9_c01199{font-family:ff9_c01199;line-height:1.284668;font-style:normal;font-weight: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_c01199;src:url('chunks/assets/font_a32617c2e39af4826ffd8ffe.woff2')format("woff");}.ffa_c01199{font-family:ffa_c01199;line-height:1.284180;font-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_c01199{transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119565,0.000000,0.000000,0.250000,0,0);}
.ma_c01199{transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);}
.m6_c01199{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m2_c01199{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m33_c01199{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m5_c01199{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m11_c01199{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m36_c01199{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m17_c01199{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m21_c01199{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_c01199{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m2b_c01199{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m32_c01199{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m25_c01199{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m28_c01199{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m4_c01199{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m3_c01199{transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230088,0.000000,0.000000,0.250000,0,0);}
.m42_c01199{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m1b_c01199{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m27_c01199{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m39_c01199{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m31_c01199{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m2a_c01199{transform:matrix(0.236247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236247,0.000000,0.000000,0.250000,0,0);}
.m26_c01199{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1f_c01199{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m23_c01199{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_c01199{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m3b_c01199{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m20_c01199{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m2d_c01199{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m37_c01199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24_c01199{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m1e_c01199{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m38_c01199{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m35_c01199{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m2f_c01199{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m34_c01199{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m19_c01199{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m2e_c01199{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m7_c01199{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m18_c01199{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m1c_c01199{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m29_c01199{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m41_c01199{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.mf_c01199{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m22_c01199{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m3a_c01199{transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);}
.m1_c01199{transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270642,0.000000,0.000000,0.250000,0,0);}
.m1a_c01199{transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274038,0.000000,0.000000,0.250000,0,0);}
.m16_c01199{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m15_c01199{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m14_c01199{transform:matrix(0.301136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301136,0.000000,0.000000,0.250000,0,0);}
.m0_c01199{transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301282,0.000000,0.000000,0.250000,0,0);}
.md_c01199{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m10_c01199{transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);}
.m12_c01199{transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);}
.m13_c01199{transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388889,0.000000,0.000000,0.250000,0,0);}
.m3c_c01199{transform:matrix(0.424242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424242,0.000000,0.000000,0.250000,0,0);}
.m8_c01199{transform:matrix(0.448598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448598,0.000000,0.000000,0.250000,0,0);}
.m2c_c01199{transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449219,0.000000,0.000000,0.250000,0,0);}
.m43_c01199{transform:matrix(0.787260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787260,0.000000,0.000000,0.250000,0,0);}
.m9_c01199{transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);}
.m3d_c01199{transform:matrix(1.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.201389,0.000000,0.000000,0.250000,0,0);}
.m40_c01199{transform:matrix(1.336806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.336806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.336806,0.000000,0.000000,0.250000,0,0);}
.m3e_c01199{transform:matrix(1.429688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.429688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.429688,0.000000,0.000000,0.250000,0,0);}
.m3f_c01199{transform:matrix(1.459821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.459821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.459821,0.000000,0.000000,0.250000,0,0);}
.mc_c01199{transform:matrix(3.221591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.221591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.221591,0.000000,0.000000,0.250000,0,0);}
.mb_c01199{transform:matrix(17.101562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(17.101562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(17.101562,0.000000,0.000000,0.250000,0,0);}
.v0_c01199{vertical-align:0.000000px;}
.ls24_c01199{letter-spacing:-17.240850px;}
.ls10_c01199{letter-spacing:-11.206800px;}
.ls2c_c01199{letter-spacing:-10.013843px;}
.ls7_c01199{letter-spacing:-9.915750px;}
.ls9_c01199{letter-spacing:-8.780153px;}
.ls29_c01199{letter-spacing:-6.562500px;}
.lsd_c01199{letter-spacing:-6.064800px;}
.ls13_c01199{letter-spacing:-6.001800px;}
.ls1c_c01199{letter-spacing:-5.923125px;}
.ls2d_c01199{letter-spacing:-5.060475px;}
.ls2b_c01199{letter-spacing:-4.771200px;}
.ls21_c01199{letter-spacing:-4.440300px;}
.ls30_c01199{letter-spacing:-4.438125px;}
.ls19_c01199{letter-spacing:-3.701250px;}
.ls4_c01199{letter-spacing:-3.596625px;}
.ls28_c01199{letter-spacing:-3.563753px;}
.ls1f_c01199{letter-spacing:-3.468750px;}
.ls26_c01199{letter-spacing:-3.037650px;}
.ls18_c01199{letter-spacing:-2.958750px;}
.ls31_c01199{letter-spacing:-2.924100px;}
.ls2e_c01199{letter-spacing:-2.919375px;}
.lse_c01199{letter-spacing:-2.613600px;}
.ls36_c01199{letter-spacing:-2.444730px;}
.ls5_c01199{letter-spacing:-2.439953px;}
.lsf_c01199{letter-spacing:-2.409750px;}
.ls1b_c01199{letter-spacing:-2.374103px;}
.ls20_c01199{letter-spacing:-2.370600px;}
.ls27_c01199{letter-spacing:-2.281703px;}
.ls17_c01199{letter-spacing:-2.222438px;}
.ls25_c01199{letter-spacing:-2.107875px;}
.lsc_c01199{letter-spacing:-2.088450px;}
.ls22_c01199{letter-spacing:-1.666725px;}
.ls32_c01199{letter-spacing:-1.599488px;}
.ls1d_c01199{letter-spacing:-1.518188px;}
.lsa_c01199{letter-spacing:-1.512000px;}
.ls1a_c01199{letter-spacing:-1.479938px;}
.ls35_c01199{letter-spacing:-1.404000px;}
.ls3_c01199{letter-spacing:-1.389750px;}
.ls2f_c01199{letter-spacing:-0.865245px;}
.ls2a_c01199{letter-spacing:-0.759375px;}
.ls1e_c01199{letter-spacing:-0.742500px;}
.ls15_c01199{letter-spacing:-0.723450px;}
.ls16_c01199{letter-spacing:-0.682500px;}
.ls12_c01199{letter-spacing:-0.674730px;}
.ls6_c01199{letter-spacing:0.000000px;}
.ls11_c01199{letter-spacing:0.670905px;}
.ls14_c01199{letter-spacing:0.709800px;}
.ls1_c01199{letter-spacing:0.742500px;}
.ls23_c01199{letter-spacing:0.793650px;}
.ls8_c01199{letter-spacing:1.422450px;}
.ls0_c01199{letter-spacing:1.805175px;}
.ls34_c01199{letter-spacing:2.222438px;}
.ls2_c01199{letter-spacing:4.975425px;}
.ls33_c01199{letter-spacing:24.271350px;}
.lsb_c01199{letter-spacing:169.364122px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01199{word-spacing:0.000000px;}
._10_c01199{margin-left:-9.973007px;}
._d_c01199{margin-left:-7.908158px;}
._9_c01199{margin-left:-5.248362px;}
._4_c01199{margin-left:-3.633928px;}
._8_c01199{margin-left:-2.198990px;}
._6_c01199{width:1.254079px;}
._1_c01199{width:2.787809px;}
._7_c01199{width:4.240599px;}
._2_c01199{width:6.306395px;}
._3_c01199{width:7.621816px;}
._f_c01199{width:8.753743px;}
._5_c01199{width:11.407559px;}
._c_c01199{width:14.554599px;}
._b_c01199{width:16.561688px;}
._a_c01199{width:21.965566px;}
._e_c01199{width:25.492678px;}
._0_c01199{width:33.509789px;}
.fc0_c01199{color:transparent;}
.fsc_c01199{font-size:17.250000px;}
.fs10_c01199{font-size:20.250000px;}
.fs9_c01199{font-size:24.000000px;}
.fs11_c01199{font-size:25.500000px;}
.fsb_c01199{font-size:26.250000px;}
.fsf_c01199{font-size:27.000000px;}
.fse_c01199{font-size:28.500000px;}
.fsd_c01199{font-size:29.250000px;}
.fsa_c01199{font-size:33.000000px;}
.fs16_c01199{font-size:35.250000px;}
.fs15_c01199{font-size:38.250000px;}
.fs13_c01199{font-size:39.000000px;}
.fs14_c01199{font-size:39.750000px;}
.fs12_c01199{font-size:42.000000px;}
.fs8_c01199{font-size:45.000000px;}
.fs21_c01199{font-size:48.000000px;}
.fs24_c01199{font-size:48.750000px;}
.fs7_c01199{font-size:51.750000px;}
.fs22_c01199{font-size:52.500000px;}
.fs1c_c01199{font-size:53.250000px;}
.fs27_c01199{font-size:54.000000px;}
.fs1e_c01199{font-size:54.750000px;}
.fs1f_c01199{font-size:54.915000px;}
.fs17_c01199{font-size:55.500000px;}
.fs18_c01199{font-size:56.250000px;}
.fs1b_c01199{font-size:57.000000px;}
.fs19_c01199{font-size:57.750000px;}
.fs20_c01199{font-size:58.500000px;}
.fs23_c01199{font-size:59.250000px;}
.fs1a_c01199{font-size:60.000000px;}
.fs1d_c01199{font-size:60.750000px;}
.fs25_c01199{font-size:64.500000px;}
.fs6_c01199{font-size:80.250000px;}
.fs1_c01199{font-size:81.750000px;}
.fs3_c01199{font-size:84.750000px;}
.fs2_c01199{font-size:86.250000px;}
.fs0_c01199{font-size:87.750000px;}
.fs5_c01199{font-size:89.250000px;}
.fs4_c01199{font-size:91.500000px;}
.fs26_c01199{font-size:99.000000px;}
.fs28_c01199{font-size:156.000000px;}
.y0_c01199{bottom:0.000000px;}
.y6_c01199{bottom:35.701485px;}
.y5_c01199{bottom:43.980900px;}
.y3_c01199{bottom:45.060285px;}
.y2_c01199{bottom:50.821500px;}
.y4_c01199{bottom:51.541650px;}
.y1c_c01199{bottom:373.020285px;}
.y1a_c01199{bottom:403.260045px;}
.y1b_c01199{bottom:403.260135px;}
.y19_c01199{bottom:432.781500px;}
.y18_c01199{bottom:478.141335px;}
.y17_c01199{bottom:507.300105px;}
.y16_c01199{bottom:537.541620px;}
.y15_c01199{bottom:567.060840px;}
.y14_c01199{bottom:626.820870px;}
.y13_c01199{bottom:641.581650px;}
.y12_c01199{bottom:656.340585px;}
.y11_c01199{bottom:656.340630px;}
.yf_c01199{bottom:671.460480px;}
.y10_c01199{bottom:671.460570px;}
.ye_c01199{bottom:686.580420px;}
.yd_c01199{bottom:701.341185px;}
.yc_c01199{bottom:716.100270px;}
.yb_c01199{bottom:731.581005px;}
.ya_c01199{bottom:745.980885px;}
.y9_c01199{bottom:760.741470px;}
.y8_c01199{bottom:775.500555px;}
.y7_c01199{bottom:790.981290px;}
.y1_c01199{bottom:838.320465px;}
.he_c01199{height:17.384766px;}
.h13_c01199{height:21.120117px;}
.hb_c01199{height:25.031250px;}
.h16_c01199{height:26.485840px;}
.h15_c01199{height:26.595703px;}
.hd_c01199{height:27.377930px;}
.h11_c01199{height:28.160156px;}
.h10_c01199{height:28.166016px;}
.hf_c01199{height:28.907227px;}
.h12_c01199{height:29.724609px;}
.hc_c01199{height:32.371582px;}
.h14_c01199{height:32.613281px;}
.h1b_c01199{height:36.764648px;}
.h1a_c01199{height:38.548828px;}
.h18_c01199{height:39.304688px;}
.h19_c01199{height:40.060547px;}
.h17_c01199{height:41.507812px;}
.h32_c01199{height:43.804688px;}
.ha_c01199{height:46.933594px;}
.h26_c01199{height:50.062500px;}
.h2e_c01199{height:50.844727px;}
.h33_c01199{height:52.998047px;}
.h23_c01199{height:53.734131px;}
.h24_c01199{height:53.896069px;}
.h9_c01199{height:53.973633px;}
.h1c_c01199{height:54.470215px;}
.h28_c01199{height:54.755859px;}
.h1d_c01199{height:55.206299px;}
.h21_c01199{height:55.538086px;}
.h2d_c01199{height:55.933594px;}
.h20_c01199{height:55.942383px;}
.h31_c01199{height:56.320312px;}
.h27_c01199{height:56.678467px;}
.h2b_c01199{height:56.689453px;}
.h25_c01199{height:57.414551px;}
.h34_c01199{height:57.445312px;}
.h1e_c01199{height:58.201172px;}
.h2a_c01199{height:58.555664px;}
.h1f_c01199{height:58.857422px;}
.h29_c01199{height:58.886719px;}
.h2c_c01199{height:59.622803px;}
.h22_c01199{height:60.038086px;}
.h2f_c01199{height:67.271484px;}
.h7_c01199{height:82.388672px;}
.h8_c01199{height:83.698242px;}
.h2_c01199{height:85.262695px;}
.h4_c01199{height:85.412109px;}
.h3_c01199{height:86.923828px;}
.h1_c01199{height:88.435547px;}
.h6_c01199{height:89.947266px;}
.h5_c01199{height:90.427734px;}
.h30_c01199{height:97.114746px;}
.h35_c01199{height:162.703125px;}
.h0_c01199{height:892.500000px;}
.w0_c01199{width:1263.000000px;}
.x0_c01199{left:0.000000px;}
.x1_c01199{left:79.918950px;}
.xa_c01199{left:86.398665px;}
.x10_c01199{left:152.278800px;}
.x2_c01199{left:167.759565px;}
.x3_c01199{left:210.238785px;}
.x11_c01199{left:230.038950px;}
.xb_c01199{left:233.998950px;}
.xc_c01199{left:260.639700px;}
.x12_c01199{left:307.078785px;}
.x4_c01199{left:314.639700px;}
.x18_c01199{left:330.479685px;}
.x19_c01199{left:357.838950px;}
.x13_c01199{left:384.838950px;}
.x5_c01199{left:390.959385px;}
.x1a_c01199{left:404.279850px;}
.x1b_c01199{left:443.159820px;}
.x14_c01199{left:462.239820px;}
.x1c_c01199{left:487.438665px;}
.x6_c01199{left:501.838530px;}
.x7_c01199{left:527.038920px;}
.x15_c01199{left:538.918950px;}
.x16_c01199{left:617.758530px;}
.xd_c01199{left:661.679670px;}
.x17_c01199{left:696.238770px;}
.x8_c01199{left:746.639700px;}
.xe_c01199{left:773.639655px;}
.x9_c01199{left:776.159370px;}
.xf_c01199{left:777.238770px;}
.x1f_c01199{left:916.918950px;}
.x34_c01199{left:918.000000px;}
.x46_c01199{left:927.358605px;}
.x43_c01199{left:929.159820px;}
.x45_c01199{left:933.838530px;}
.x3f_c01199{left:936.719055px;}
.x47_c01199{left:938.159370px;}
.x24_c01199{left:943.198785px;}
.x20_c01199{left:945.359250px;}
.x48_c01199{left:947.519715px;}
.x1d_c01199{left:955.439670px;}
.x44_c01199{left:956.519070px;}
.x42_c01199{left:957.959055px;}
.x49_c01199{left:959.038965px;}
.x38_c01199{left:960.119940px;}
.x25_c01199{left:962.639655px;}
.x2d_c01199{left:965.879520px;}
.x1e_c01199{left:973.079400px;}
.x36_c01199{left:975.239865px;}
.x40_c01199{left:979.199805px;}
.x39_c01199{left:980.279205px;}
.x2e_c01199{left:987.119940px;}
.x37_c01199{left:991.079955px;}
.x4a_c01199{left:999.000000px;}
.x26_c01199{left:1005.479640px;}
.x4b_c01199{left:1015.558590px;}
.x27_c01199{left:1024.198785px;}
.x3a_c01199{left:1027.799565px;}
.x28_c01199{left:1041.479190px;}
.x41_c01199{left:1056.599025px;}
.x29_c01199{left:1059.118740px;}
.x3b_c01199{left:1069.199340px;}
.x3c_c01199{left:1081.438665px;}
.x2f_c01199{left:1089.358605px;}
.x2a_c01199{left:1092.239220px;}
.x2b_c01199{left:1102.679070px;}
.x3d_c01199{left:1131.839535px;}
.x30_c01199{left:1160.639100px;}
.x22_c01199{left:1162.799565px;}
.x33_c01199{left:1169.999355px;}
.x23_c01199{left:1173.959385px;}
.x31_c01199{left:1175.759040px;}
.x3e_c01199{left:1177.919490px;}
.x21_c01199{left:1185.478635px;}
.x2c_c01199{left:1193.398590px;}
.x35_c01199{left:1207.798560px;}
.x32_c01199{left:1231.199340px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls24_c01199{letter-spacing:-15.325200pt;}
.ls10_c01199{letter-spacing:-9.961600pt;}
.ls2c_c01199{letter-spacing:-8.901193pt;}
.ls7_c01199{letter-spacing:-8.814000pt;}
.ls9_c01199{letter-spacing:-7.804580pt;}
.ls29_c01199{letter-spacing:-5.833333pt;}
.lsd_c01199{letter-spacing:-5.390933pt;}
.ls13_c01199{letter-spacing:-5.334933pt;}
.ls1c_c01199{letter-spacing:-5.265000pt;}
.ls2d_c01199{letter-spacing:-4.498200pt;}
.ls2b_c01199{letter-spacing:-4.241067pt;}
.ls21_c01199{letter-spacing:-3.946933pt;}
.ls30_c01199{letter-spacing:-3.945000pt;}
.ls19_c01199{letter-spacing:-3.290000pt;}
.ls4_c01199{letter-spacing:-3.197000pt;}
.ls28_c01199{letter-spacing:-3.167780pt;}
.ls1f_c01199{letter-spacing:-3.083333pt;}
.ls26_c01199{letter-spacing:-2.700133pt;}
.ls18_c01199{letter-spacing:-2.630000pt;}
.ls31_c01199{letter-spacing:-2.599200pt;}
.ls2e_c01199{letter-spacing:-2.595000pt;}
.lse_c01199{letter-spacing:-2.323200pt;}
.ls36_c01199{letter-spacing:-2.173093pt;}
.ls5_c01199{letter-spacing:-2.168847pt;}
.lsf_c01199{letter-spacing:-2.142000pt;}
.ls1b_c01199{letter-spacing:-2.110313pt;}
.ls20_c01199{letter-spacing:-2.107200pt;}
.ls27_c01199{letter-spacing:-2.028180pt;}
.ls17_c01199{letter-spacing:-1.975500pt;}
.ls25_c01199{letter-spacing:-1.873667pt;}
.lsc_c01199{letter-spacing:-1.856400pt;}
.ls22_c01199{letter-spacing:-1.481533pt;}
.ls32_c01199{letter-spacing:-1.421767pt;}
.ls1d_c01199{letter-spacing:-1.349500pt;}
.lsa_c01199{letter-spacing:-1.344000pt;}
.ls1a_c01199{letter-spacing:-1.315500pt;}
.ls35_c01199{letter-spacing:-1.248000pt;}
.ls3_c01199{letter-spacing:-1.235333pt;}
.ls2f_c01199{letter-spacing:-0.769107pt;}
.ls2a_c01199{letter-spacing:-0.675000pt;}
.ls1e_c01199{letter-spacing:-0.660000pt;}
.ls15_c01199{letter-spacing:-0.643067pt;}
.ls16_c01199{letter-spacing:-0.606667pt;}
.ls12_c01199{letter-spacing:-0.599760pt;}
.ls6_c01199{letter-spacing:0.000000pt;}
.ls11_c01199{letter-spacing:0.596360pt;}
.ls14_c01199{letter-spacing:0.630933pt;}
.ls1_c01199{letter-spacing:0.660000pt;}
.ls23_c01199{letter-spacing:0.705467pt;}
.ls8_c01199{letter-spacing:1.264400pt;}
.ls0_c01199{letter-spacing:1.604600pt;}
.ls34_c01199{letter-spacing:1.975500pt;}
.ls2_c01199{letter-spacing:4.422600pt;}
.ls33_c01199{letter-spacing:21.574533pt;}
.lsb_c01199{letter-spacing:150.545887pt;}
.ws0_c01199{word-spacing:0.000000pt;}
._10_c01199{margin-left:-8.864895pt;}
._d_c01199{margin-left:-7.029474pt;}
._9_c01199{margin-left:-4.665211pt;}
._4_c01199{margin-left:-3.230158pt;}
._8_c01199{margin-left:-1.954658pt;}
._6_c01199{width:1.114737pt;}
._1_c01199{width:2.478053pt;}
._7_c01199{width:3.769421pt;}
._2_c01199{width:5.605684pt;}
._3_c01199{width:6.774947pt;}
._f_c01199{width:7.781105pt;}
._5_c01199{width:10.140053pt;}
._c_c01199{width:12.937421pt;}
._b_c01199{width:14.721500pt;}
._a_c01199{width:19.524947pt;}
._e_c01199{width:22.660158pt;}
._0_c01199{width:29.786479pt;}
.fsc_c01199{font-size:15.333333pt;}
.fs10_c01199{font-size:18.000000pt;}
.fs9_c01199{font-size:21.333333pt;}
.fs11_c01199{font-size:22.666667pt;}
.fsb_c01199{font-size:23.333333pt;}
.fsf_c01199{font-size:24.000000pt;}
.fse_c01199{font-size:25.333333pt;}
.fsd_c01199{font-size:26.000000pt;}
.fsa_c01199{font-size:29.333333pt;}
.fs16_c01199{font-size:31.333333pt;}
.fs15_c01199{font-size:34.000000pt;}
.fs13_c01199{font-size:34.666667pt;}
.fs14_c01199{font-size:35.333333pt;}
.fs12_c01199{font-size:37.333333pt;}
.fs8_c01199{font-size:40.000000pt;}
.fs21_c01199{font-size:42.666667pt;}
.fs24_c01199{font-size:43.333333pt;}
.fs7_c01199{font-size:46.000000pt;}
.fs22_c01199{font-size:46.666667pt;}
.fs1c_c01199{font-size:47.333333pt;}
.fs27_c01199{font-size:48.000000pt;}
.fs1e_c01199{font-size:48.666667pt;}
.fs1f_c01199{font-size:48.813333pt;}
.fs17_c01199{font-size:49.333333pt;}
.fs18_c01199{font-size:50.000000pt;}
.fs1b_c01199{font-size:50.666667pt;}
.fs19_c01199{font-size:51.333333pt;}
.fs20_c01199{font-size:52.000000pt;}
.fs23_c01199{font-size:52.666667pt;}
.fs1a_c01199{font-size:53.333333pt;}
.fs1d_c01199{font-size:54.000000pt;}
.fs25_c01199{font-size:57.333333pt;}
.fs6_c01199{font-size:71.333333pt;}
.fs1_c01199{font-size:72.666667pt;}
.fs3_c01199{font-size:75.333333pt;}
.fs2_c01199{font-size:76.666667pt;}
.fs0_c01199{font-size:78.000000pt;}
.fs5_c01199{font-size:79.333333pt;}
.fs4_c01199{font-size:81.333333pt;}
.fs26_c01199{font-size:88.000000pt;}
.fs28_c01199{font-size:138.666667pt;}
.y0_c01199{bottom:0.000000pt;}
.y6_c01199{bottom:31.734653pt;}
.y5_c01199{bottom:39.094133pt;}
.y3_c01199{bottom:40.053587pt;}
.y2_c01199{bottom:45.174667pt;}
.y4_c01199{bottom:45.814800pt;}
.y1c_c01199{bottom:331.573587pt;}
.y1a_c01199{bottom:358.453373pt;}
.y1b_c01199{bottom:358.453453pt;}
.y19_c01199{bottom:384.694667pt;}
.y18_c01199{bottom:425.014520pt;}
.y17_c01199{bottom:450.933427pt;}
.y16_c01199{bottom:477.814773pt;}
.y15_c01199{bottom:504.054080pt;}
.y14_c01199{bottom:557.174107pt;}
.y13_c01199{bottom:570.294800pt;}
.y12_c01199{bottom:583.413853pt;}
.y11_c01199{bottom:583.413893pt;}
.yf_c01199{bottom:596.853760pt;}
.y10_c01199{bottom:596.853840pt;}
.ye_c01199{bottom:610.293707pt;}
.yd_c01199{bottom:623.414387pt;}
.yc_c01199{bottom:636.533573pt;}
.yb_c01199{bottom:650.294227pt;}
.ya_c01199{bottom:663.094120pt;}
.y9_c01199{bottom:676.214640pt;}
.y8_c01199{bottom:689.333827pt;}
.y7_c01199{bottom:703.094480pt;}
.y1_c01199{bottom:745.173747pt;}
.he_c01199{height:15.453125pt;}
.h13_c01199{height:18.773437pt;}
.hb_c01199{height:22.250000pt;}
.h16_c01199{height:23.542969pt;}
.h15_c01199{height:23.640625pt;}
.hd_c01199{height:24.335938pt;}
.h11_c01199{height:25.031250pt;}
.h10_c01199{height:25.036458pt;}
.hf_c01199{height:25.695312pt;}
.h12_c01199{height:26.421875pt;}
.hc_c01199{height:28.774740pt;}
.h14_c01199{height:28.989583pt;}
.h1b_c01199{height:32.679688pt;}
.h1a_c01199{height:34.265625pt;}
.h18_c01199{height:34.937500pt;}
.h19_c01199{height:35.609375pt;}
.h17_c01199{height:36.895833pt;}
.h32_c01199{height:38.937500pt;}
.ha_c01199{height:41.718750pt;}
.h26_c01199{height:44.500000pt;}
.h2e_c01199{height:45.195312pt;}
.h33_c01199{height:47.109375pt;}
.h23_c01199{height:47.763672pt;}
.h24_c01199{height:47.907617pt;}
.h9_c01199{height:47.976562pt;}
.h1c_c01199{height:48.417969pt;}
.h28_c01199{height:48.671875pt;}
.h1d_c01199{height:49.072266pt;}
.h21_c01199{height:49.367188pt;}
.h2d_c01199{height:49.718750pt;}
.h20_c01199{height:49.726562pt;}
.h31_c01199{height:50.062500pt;}
.h27_c01199{height:50.380859pt;}
.h2b_c01199{height:50.390625pt;}
.h25_c01199{height:51.035156pt;}
.h34_c01199{height:51.062500pt;}
.h1e_c01199{height:51.734375pt;}
.h2a_c01199{height:52.049479pt;}
.h1f_c01199{height:52.317708pt;}
.h29_c01199{height:52.343750pt;}
.h2c_c01199{height:52.998047pt;}
.h22_c01199{height:53.367188pt;}
.h2f_c01199{height:59.796875pt;}
.h7_c01199{height:73.234375pt;}
.h8_c01199{height:74.398438pt;}
.h2_c01199{height:75.789062pt;}
.h4_c01199{height:75.921875pt;}
.h3_c01199{height:77.265625pt;}
.h1_c01199{height:78.609375pt;}
.h6_c01199{height:79.953125pt;}
.h5_c01199{height:80.380208pt;}
.h30_c01199{height:86.324219pt;}
.h35_c01199{height:144.625000pt;}
.h0_c01199{height:793.333333pt;}
.w0_c01199{width:1122.666667pt;}
.x0_c01199{left:0.000000pt;}
.x1_c01199{left:71.039067pt;}
.xa_c01199{left:76.798813pt;}
.x10_c01199{left:135.358933pt;}
.x2_c01199{left:149.119613pt;}
.x3_c01199{left:186.878920pt;}
.x11_c01199{left:204.479067pt;}
.xb_c01199{left:207.999067pt;}
.xc_c01199{left:231.679733pt;}
.x12_c01199{left:272.958920pt;}
.x4_c01199{left:279.679733pt;}
.x18_c01199{left:293.759720pt;}
.x19_c01199{left:318.079067pt;}
.x13_c01199{left:342.079067pt;}
.x5_c01199{left:347.519453pt;}
.x1a_c01199{left:359.359867pt;}
.x1b_c01199{left:393.919840pt;}
.x14_c01199{left:410.879840pt;}
.x1c_c01199{left:433.278813pt;}
.x6_c01199{left:446.078693pt;}
.x7_c01199{left:468.479040pt;}
.x15_c01199{left:479.039067pt;}
.x16_c01199{left:549.118693pt;}
.xd_c01199{left:588.159707pt;}
.x17_c01199{left:618.878907pt;}
.x8_c01199{left:663.679733pt;}
.xe_c01199{left:687.679693pt;}
.x9_c01199{left:689.919440pt;}
.xf_c01199{left:690.878907pt;}
.x1f_c01199{left:815.039067pt;}
.x34_c01199{left:816.000000pt;}
.x46_c01199{left:824.318760pt;}
.x43_c01199{left:825.919840pt;}
.x45_c01199{left:830.078693pt;}
.x3f_c01199{left:832.639160pt;}
.x47_c01199{left:833.919440pt;}
.x24_c01199{left:838.398920pt;}
.x20_c01199{left:840.319333pt;}
.x48_c01199{left:842.239747pt;}
.x1d_c01199{left:849.279707pt;}
.x44_c01199{left:850.239173pt;}
.x42_c01199{left:851.519160pt;}
.x49_c01199{left:852.479080pt;}
.x38_c01199{left:853.439947pt;}
.x25_c01199{left:855.679693pt;}
.x2d_c01199{left:858.559573pt;}
.x1e_c01199{left:864.959467pt;}
.x36_c01199{left:866.879880pt;}
.x40_c01199{left:870.399827pt;}
.x39_c01199{left:871.359293pt;}
.x2e_c01199{left:877.439947pt;}
.x37_c01199{left:880.959960pt;}
.x4a_c01199{left:888.000000pt;}
.x26_c01199{left:893.759680pt;}
.x4b_c01199{left:902.718747pt;}
.x27_c01199{left:910.398920pt;}
.x3a_c01199{left:913.599613pt;}
.x28_c01199{left:925.759280pt;}
.x41_c01199{left:939.199133pt;}
.x29_c01199{left:941.438880pt;}
.x3b_c01199{left:950.399413pt;}
.x3c_c01199{left:961.278813pt;}
.x2f_c01199{left:968.318760pt;}
.x2a_c01199{left:970.879307pt;}
.x2b_c01199{left:980.159173pt;}
.x3d_c01199{left:1006.079587pt;}
.x30_c01199{left:1031.679200pt;}
.x22_c01199{left:1033.599613pt;}
.x33_c01199{left:1039.999427pt;}
.x23_c01199{left:1043.519453pt;}
.x31_c01199{left:1045.119147pt;}
.x3e_c01199{left:1047.039547pt;}
.x21_c01199{left:1053.758787pt;}
.x2c_c01199{left:1060.798747pt;}
.x35_c01199{left:1073.598720pt;}
.x32_c01199{left:1094.399413pt;}
}





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

.ir_c01200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_5aef75bae0402a6949e1b0a1.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01200;src:url('chunks/assets/font_bd066597f7d2304510e17366.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01200;src:url('chunks/assets/font_b9b6d6cf24c6668be216751c.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01200;src:url('chunks/assets/font_a049859b020e532b79c4deaa.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01200;src:url('chunks/assets/font_5f2872be3ec3a081db65922a.woff2')format("woff");}.ff5_c01200{font-family:ff5_c01200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01200;src:url('chunks/assets/font_52f78548255aefa8bc606f0a.woff2')format("woff");}.ff6_c01200{font-family:ff6_c01200;line-height:1.364746;font-style:normal;font-weight: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_c01200;src:url('chunks/assets/font_cca12127e05c319402ba0da7.woff2')format("woff");}.ff7_c01200{font-family:ff7_c01200;line-height:1.281250;font-style:normal;font-weight: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_c01200;src:url('chunks/assets/font_8e69e1dd69bd34ae8354effc.woff2')format("woff");}.ff8_c01200{font-family:ff8_c01200;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c01200{transform:matrix(0.067901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067901,0.000000,0.000000,0.250000,0,0);}
.m3e_c01200{transform:matrix(0.143243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143243,0.000000,0.000000,0.250000,0,0);}
.m8_c01200{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);}
.m2b_c01200{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m3d_c01200{transform:matrix(0.182203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182203,0.000000,0.000000,0.250000,0,0);}
.m35_c01200{transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182692,0.000000,0.000000,0.250000,0,0);}
.m31_c01200{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m32_c01200{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m28_c01200{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m9_c01200{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m3a_c01200{transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210145,0.000000,0.000000,0.250000,0,0);}
.m29_c01200{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m34_c01200{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m1d_c01200{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m4_c01200{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m26_c01200{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.mb_c01200{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m2_c01200{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.mc_c01200{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m38_c01200{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m3_c01200{transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234091,0.000000,0.000000,0.250000,0,0);}
.m37_c01200{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m16_c01200{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m6_c01200{transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238938,0.000000,0.000000,0.250000,0,0);}
.m2e_c01200{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m45_c01200{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m1c_c01200{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.mf_c01200{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m23_c01200{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m41_c01200{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.ma_c01200{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m1a_c01200{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m1e_c01200{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m43_c01200{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m20_c01200{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m21_c01200{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m2d_c01200{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m10_c01200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01200{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m22_c01200{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m24_c01200{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m18_c01200{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m30_c01200{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m14_c01200{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);}
.m27_c01200{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m1b_c01200{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m36_c01200{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m2f_c01200{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m33_c01200{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m5_c01200{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m15_c01200{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m25_c01200{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.m2c_c01200{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.me_c01200{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m1f_c01200{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m39_c01200{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m17_c01200{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.m11_c01200{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m1_c01200{transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);}
.m0_c01200{transform:matrix(0.289823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289823,0.000000,0.000000,0.250000,0,0);}
.m19_c01200{transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290698,0.000000,0.000000,0.250000,0,0);}
.md_c01200{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);}
.m42_c01200{transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380435,0.000000,0.000000,0.250000,0,0);}
.m3b_c01200{transform:matrix(0.456731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456731,0.000000,0.000000,0.250000,0,0);}
.m12_c01200{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m44_c01200{transform:matrix(0.846154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.846154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.846154,0.000000,0.000000,0.250000,0,0);}
.m3f_c01200{transform:matrix(1.069444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.069444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.069444,0.000000,0.000000,0.250000,0,0);}
.m40_c01200{transform:matrix(1.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.271739,0.000000,0.000000,0.250000,0,0);}
.m13_c01200{transform:matrix(2.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.437500,0.000000,0.000000,0.250000,0,0);}
.m7_c01200{transform:matrix(8.098684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.098684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.098684,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls24_c01200{letter-spacing:-24.084000px;}
.ls2d_c01200{letter-spacing:-14.634000px;}
.ls31_c01200{letter-spacing:-13.669358px;}
.ls34_c01200{letter-spacing:-9.367725px;}
.ls3d_c01200{letter-spacing:-8.844075px;}
.ls14_c01200{letter-spacing:-8.673450px;}
.ls23_c01200{letter-spacing:-7.922325px;}
.ls20_c01200{letter-spacing:-7.205648px;}
.ls3e_c01200{letter-spacing:-6.900000px;}
.ls7_c01200{letter-spacing:-6.279975px;}
.ls38_c01200{letter-spacing:-6.160050px;}
.ls3_c01200{letter-spacing:-5.890500px;}
.ls35_c01200{letter-spacing:-5.765175px;}
.ls3b_c01200{letter-spacing:-5.356125px;}
.ls3c_c01200{letter-spacing:-5.248410px;}
.ls1d_c01200{letter-spacing:-4.724460px;}
.ls2e_c01200{letter-spacing:-4.635900px;}
.ls22_c01200{letter-spacing:-4.390425px;}
.ls2f_c01200{letter-spacing:-4.319775px;}
.ls32_c01200{letter-spacing:-4.279275px;}
.ls36_c01200{letter-spacing:-3.813188px;}
.ls1f_c01200{letter-spacing:-3.799950px;}
.ls26_c01200{letter-spacing:-3.605625px;}
.ls18_c01200{letter-spacing:-3.602550px;}
.ls3a_c01200{letter-spacing:-3.563753px;}
.ls28_c01200{letter-spacing:-3.524783px;}
.ls39_c01200{letter-spacing:-3.370193px;}
.ls40_c01200{letter-spacing:-3.124650px;}
.ls1a_c01200{letter-spacing:-3.123030px;}
.ls33_c01200{letter-spacing:-2.884200px;}
.ls19_c01200{letter-spacing:-2.879850px;}
.ls30_c01200{letter-spacing:-2.775000px;}
.lsb_c01200{letter-spacing:-2.532600px;}
.ls10_c01200{letter-spacing:-2.461800px;}
.ls12_c01200{letter-spacing:-2.390625px;}
.lsd_c01200{letter-spacing:-2.349270px;}
.ls25_c01200{letter-spacing:-2.315250px;}
.lsa_c01200{letter-spacing:-2.311575px;}
.ls1e_c01200{letter-spacing:-2.278125px;}
.ls2c_c01200{letter-spacing:-2.251125px;}
.ls2a_c01200{letter-spacing:-2.164500px;}
.ls16_c01200{letter-spacing:-2.163173px;}
.ls5_c01200{letter-spacing:-1.715625px;}
.ls4_c01200{letter-spacing:-1.683000px;}
.lsc_c01200{letter-spacing:-1.631978px;}
.ls17_c01200{letter-spacing:-1.440473px;}
.lse_c01200{letter-spacing:-1.377000px;}
.ls8_c01200{letter-spacing:-0.994650px;}
.ls3f_c01200{letter-spacing:-0.760350px;}
.lsf_c01200{letter-spacing:-0.749700px;}
.ls27_c01200{letter-spacing:-0.722700px;}
.ls1_c01200{letter-spacing:0.000000px;}
.ls13_c01200{letter-spacing:0.670800px;}
.ls11_c01200{letter-spacing:0.720000px;}
.ls0_c01200{letter-spacing:0.722700px;}
.ls15_c01200{letter-spacing:0.761475px;}
.ls29_c01200{letter-spacing:0.848730px;}
.ls2_c01200{letter-spacing:1.303800px;}
.ls6_c01200{letter-spacing:1.422450px;}
.ls21_c01200{letter-spacing:1.440473px;}
.ls1c_c01200{letter-spacing:1.522050px;}
.ls9_c01200{letter-spacing:1.820700px;}
.ls2b_c01200{letter-spacing:2.791800px;}
.ls1b_c01200{letter-spacing:4.325625px;}
.ls37_c01200{letter-spacing:5.771250px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01200{word-spacing:0.000000px;}
._c_c01200{margin-left:-29.368073px;}
._13_c01200{margin-left:-9.318565px;}
._8_c01200{margin-left:-7.498070px;}
._12_c01200{margin-left:-6.339877px;}
._4_c01200{margin-left:-3.634420px;}
._e_c01200{margin-left:-2.241407px;}
._f_c01200{width:1.540550px;}
._3_c01200{width:2.567227px;}
._6_c01200{width:3.842211px;}
._2_c01200{width:5.015273px;}
._5_c01200{width:7.681483px;}
._d_c01200{width:11.243402px;}
._11_c01200{width:12.583394px;}
._a_c01200{width:14.940900px;}
._b_c01200{width:16.097105px;}
._7_c01200{width:17.172366px;}
._10_c01200{width:21.348610px;}
._9_c01200{width:25.787077px;}
._1_c01200{width:29.700000px;}
._0_c01200{width:43.262529px;}
.fc0_c01200{color:transparent;}
.fsc_c01200{font-size:18.000000px;}
.fs6_c01200{font-size:18.750000px;}
.fs7_c01200{font-size:25.500000px;}
.fs9_c01200{font-size:27.000000px;}
.fs8_c01200{font-size:27.750000px;}
.fs5_c01200{font-size:28.500000px;}
.fs11_c01200{font-size:32.250000px;}
.fsd_c01200{font-size:33.000000px;}
.fs25_c01200{font-size:34.500000px;}
.fsf_c01200{font-size:36.750000px;}
.fse_c01200{font-size:37.500000px;}
.fs10_c01200{font-size:38.250000px;}
.fs12_c01200{font-size:39.750000px;}
.fsb_c01200{font-size:42.000000px;}
.fsa_c01200{font-size:44.250000px;}
.fs22_c01200{font-size:48.000000px;}
.fs21_c01200{font-size:49.500000px;}
.fs1f_c01200{font-size:51.000000px;}
.fs1c_c01200{font-size:51.750000px;}
.fs1a_c01200{font-size:52.500000px;}
.fs13_c01200{font-size:53.250000px;}
.fs17_c01200{font-size:54.000000px;}
.fs14_c01200{font-size:54.750000px;}
.fs1b_c01200{font-size:55.500000px;}
.fs16_c01200{font-size:56.250000px;}
.fs15_c01200{font-size:57.000000px;}
.fs18_c01200{font-size:57.750000px;}
.fs1d_c01200{font-size:58.500000px;}
.fs19_c01200{font-size:59.250000px;}
.fs1e_c01200{font-size:60.000000px;}
.fs20_c01200{font-size:60.750000px;}
.fs23_c01200{font-size:78.000000px;}
.fs1_c01200{font-size:79.500000px;}
.fs4_c01200{font-size:81.750000px;}
.fs2_c01200{font-size:82.500000px;}
.fs0_c01200{font-size:84.750000px;}
.fs3_c01200{font-size:93.750000px;}
.fs24_c01200{font-size:138.750000px;}
.fs26_c01200{font-size:156.000000px;}
.y0_c01200{bottom:0.000000px;}
.y5_c01200{bottom:41.820435px;}
.y3_c01200{bottom:51.541650px;}
.y4_c01200{bottom:57.660435px;}
.y2_c01200{bottom:58.021335px;}
.y1d_c01200{bottom:360.780870px;}
.y1c_c01200{bottom:391.020720px;}
.y1b_c01200{bottom:397.500600px;}
.y1a_c01200{bottom:420.181320px;}
.y19_c01200{bottom:495.420000px;}
.y18_c01200{bottom:511.621035px;}
.y17_c01200{bottom:525.300570px;}
.y16_c01200{bottom:536.821470px;}
.y15_c01200{bottom:554.820420px;}
.y14_c01200{bottom:614.940855px;}
.y13_c01200{bottom:629.701485px;}
.y12_c01200{bottom:644.460570px;}
.y11_c01200{bottom:659.221155px;}
.y10_c01200{bottom:673.980285px;}
.yf_c01200{bottom:688.740870px;}
.ye_c01200{bottom:703.499955px;}
.yd_c01200{bottom:718.621635px;}
.yc_c01200{bottom:718.622265px;}
.yb_c01200{bottom:733.741470px;}
.y9_c01200{bottom:748.861320px;}
.ya_c01200{bottom:748.861500px;}
.y8_c01200{bottom:763.620435px;}
.y7_c01200{bottom:778.740420px;}
.y6_c01200{bottom:793.501005px;}
.y1_c01200{bottom:846.060705px;}
.h8_c01200{height:18.402100px;}
.he_c01200{height:18.773438px;}
.h9_c01200{height:26.595703px;}
.h7_c01200{height:27.971191px;}
.hb_c01200{height:28.160156px;}
.ha_c01200{height:28.942383px;}
.hf_c01200{height:32.371582px;}
.h13_c01200{height:33.635742px;}
.h2f_c01200{height:35.982422px;}
.h11_c01200{height:37.037109px;}
.h10_c01200{height:37.792969px;}
.h12_c01200{height:37.801758px;}
.h14_c01200{height:39.284180px;}
.hd_c01200{height:41.507812px;}
.hc_c01200{height:43.731445px;}
.h2d_c01200{height:46.151367px;}
.h29_c01200{height:50.062500px;}
.h27_c01200{height:51.626953px;}
.h15_c01200{height:52.261963px;}
.h19_c01200{height:52.998047px;}
.h23_c01200{height:53.191406px;}
.h16_c01200{height:53.734131px;}
.h20_c01200{height:53.973633px;}
.h2a_c01200{height:54.421875px;}
.h1f_c01200{height:54.470215px;}
.h1c_c01200{height:54.755859px;}
.h18_c01200{height:55.206299px;}
.h25_c01200{height:55.590820px;}
.h31_c01200{height:55.933594px;}
.h1e_c01200{height:55.942383px;}
.h1d_c01200{height:56.320312px;}
.h1a_c01200{height:56.678467px;}
.h26_c01200{height:56.689453px;}
.h21_c01200{height:57.414551px;}
.h17_c01200{height:57.445312px;}
.h28_c01200{height:57.814453px;}
.h1b_c01200{height:58.150635px;}
.h22_c01200{height:59.296875px;}
.h24_c01200{height:60.038086px;}
.h2c_c01200{height:63.360352px;}
.h2_c01200{height:80.121094px;}
.h2b_c01200{height:81.351562px;}
.h5_c01200{height:82.388672px;}
.h3_c01200{height:83.144531px;}
.h6_c01200{height:83.177490px;}
.h1_c01200{height:85.412109px;}
.h4_c01200{height:92.651367px;}
.h2e_c01200{height:144.711914px;}
.h30_c01200{height:162.703125px;}
.h0_c01200{height:892.500000px;}
.w0_c01200{width:1263.000000px;}
.x0_c01200{left:0.000000px;}
.x1_c01200{left:82.079400px;}
.x9_c01200{left:86.398665px;}
.xb_c01200{left:151.199415px;}
.x2_c01200{left:168.838950px;}
.x3_c01200{left:210.238785px;}
.xc_c01200{left:227.519100px;}
.xd_c01200{left:305.999385px;}
.xa_c01200{left:309.598530px;}
.x16_c01200{left:330.118785px;}
.x17_c01200{left:357.838950px;}
.xe_c01200{left:383.039385px;}
.x18_c01200{left:401.399235px;}
.x19_c01200{left:440.999400px;}
.xf_c01200{left:459.718500px;}
.x1a_c01200{left:486.359250px;}
.x4_c01200{left:505.080000px;}
.x5_c01200{left:530.998950px;}
.x10_c01200{left:540.000000px;}
.x11_c01200{left:616.319820px;}
.x12_c01200{left:693.359850px;}
.x6_c01200{left:700.559685px;}
.x7_c01200{left:749.518620px;}
.x13_c01200{left:771.479190px;}
.x14_c01200{left:774.719055px;}
.x8_c01200{left:779.039985px;}
.x15_c01200{left:781.918950px;}
.x4a_c01200{left:916.198785px;}
.x1d_c01200{left:920.519715px;}
.x29_c01200{left:922.319190px;}
.x48_c01200{left:926.279205px;}
.x49_c01200{left:930.598575px;}
.x2e_c01200{left:934.199340px;}
.x43_c01200{left:936.719055px;}
.x1e_c01200{left:939.958920px;}
.x24_c01200{left:946.799565px;}
.x1b_c01200{left:959.399775px;}
.x4b_c01200{left:960.838530px;}
.x2a_c01200{left:964.079955px;}
.x35_c01200{left:966.958920px;}
.x3b_c01200{left:968.758575px;}
.x1c_c01200{left:976.678530px;}
.x25_c01200{left:977.759490px;}
.x2b_c01200{left:983.159820px;}
.x1f_c01200{left:992.159370px;}
.x2f_c01200{left:996.478635px;}
.x36_c01200{left:1012.318815px;}
.x4c_c01200{left:1016.639655px;}
.x37_c01200{left:1026.000000px;}
.x3c_c01200{left:1029.599025px;}
.x4d_c01200{left:1045.079955px;}
.x3d_c01200{left:1048.319820px;}
.x47_c01200{left:1054.799565px;}
.x20_c01200{left:1059.118740px;}
.x30_c01200{left:1060.199805px;}
.x3e_c01200{left:1061.999355px;}
.x26_c01200{left:1064.878320px;}
.x31_c01200{left:1069.919490px;}
.x44_c01200{left:1074.958920px;}
.x2c_c01200{left:1086.479640px;}
.x21_c01200{left:1087.559055px;}
.x3f_c01200{left:1096.919490px;}
.x27_c01200{left:1100.879520px;}
.x22_c01200{left:1108.799565px;}
.x32_c01200{left:1110.958275px;}
.x28_c01200{left:1121.038875px;}
.x40_c01200{left:1129.319820px;}
.x41_c01200{left:1142.999355px;}
.x33_c01200{left:1158.478635px;}
.x34_c01200{left:1171.439670px;}
.x38_c01200{left:1178.278755px;}
.x45_c01200{left:1180.079955px;}
.x39_c01200{left:1187.639100px;}
.x42_c01200{left:1190.878875px;}
.x23_c01200{left:1193.759490px;}
.x46_c01200{left:1195.199805px;}
.x3a_c01200{left:1203.119940px;}
.x2d_c01200{left:1209.238770px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls24_c01200{letter-spacing:-21.408000pt;}
.ls2d_c01200{letter-spacing:-13.008000pt;}
.ls31_c01200{letter-spacing:-12.150540pt;}
.ls34_c01200{letter-spacing:-8.326867pt;}
.ls3d_c01200{letter-spacing:-7.861400pt;}
.ls14_c01200{letter-spacing:-7.709733pt;}
.ls23_c01200{letter-spacing:-7.042067pt;}
.ls20_c01200{letter-spacing:-6.405020pt;}
.ls3e_c01200{letter-spacing:-6.133333pt;}
.ls7_c01200{letter-spacing:-5.582200pt;}
.ls38_c01200{letter-spacing:-5.475600pt;}
.ls3_c01200{letter-spacing:-5.236000pt;}
.ls35_c01200{letter-spacing:-5.124600pt;}
.ls3b_c01200{letter-spacing:-4.761000pt;}
.ls3c_c01200{letter-spacing:-4.665253pt;}
.ls1d_c01200{letter-spacing:-4.199520pt;}
.ls2e_c01200{letter-spacing:-4.120800pt;}
.ls22_c01200{letter-spacing:-3.902600pt;}
.ls2f_c01200{letter-spacing:-3.839800pt;}
.ls32_c01200{letter-spacing:-3.803800pt;}
.ls36_c01200{letter-spacing:-3.389500pt;}
.ls1f_c01200{letter-spacing:-3.377733pt;}
.ls26_c01200{letter-spacing:-3.205000pt;}
.ls18_c01200{letter-spacing:-3.202267pt;}
.ls3a_c01200{letter-spacing:-3.167780pt;}
.ls28_c01200{letter-spacing:-3.133140pt;}
.ls39_c01200{letter-spacing:-2.995727pt;}
.ls40_c01200{letter-spacing:-2.777467pt;}
.ls1a_c01200{letter-spacing:-2.776027pt;}
.ls33_c01200{letter-spacing:-2.563733pt;}
.ls19_c01200{letter-spacing:-2.559867pt;}
.ls30_c01200{letter-spacing:-2.466667pt;}
.lsb_c01200{letter-spacing:-2.251200pt;}
.ls10_c01200{letter-spacing:-2.188267pt;}
.ls12_c01200{letter-spacing:-2.125000pt;}
.lsd_c01200{letter-spacing:-2.088240pt;}
.ls25_c01200{letter-spacing:-2.058000pt;}
.lsa_c01200{letter-spacing:-2.054733pt;}
.ls1e_c01200{letter-spacing:-2.025000pt;}
.ls2c_c01200{letter-spacing:-2.001000pt;}
.ls2a_c01200{letter-spacing:-1.924000pt;}
.ls16_c01200{letter-spacing:-1.922820pt;}
.ls5_c01200{letter-spacing:-1.525000pt;}
.ls4_c01200{letter-spacing:-1.496000pt;}
.lsc_c01200{letter-spacing:-1.450647pt;}
.ls17_c01200{letter-spacing:-1.280420pt;}
.lse_c01200{letter-spacing:-1.224000pt;}
.ls8_c01200{letter-spacing:-0.884133pt;}
.ls3f_c01200{letter-spacing:-0.675867pt;}
.lsf_c01200{letter-spacing:-0.666400pt;}
.ls27_c01200{letter-spacing:-0.642400pt;}
.ls1_c01200{letter-spacing:0.000000pt;}
.ls13_c01200{letter-spacing:0.596267pt;}
.ls11_c01200{letter-spacing:0.640000pt;}
.ls0_c01200{letter-spacing:0.642400pt;}
.ls15_c01200{letter-spacing:0.676867pt;}
.ls29_c01200{letter-spacing:0.754427pt;}
.ls2_c01200{letter-spacing:1.158933pt;}
.ls6_c01200{letter-spacing:1.264400pt;}
.ls21_c01200{letter-spacing:1.280420pt;}
.ls1c_c01200{letter-spacing:1.352933pt;}
.ls9_c01200{letter-spacing:1.618400pt;}
.ls2b_c01200{letter-spacing:2.481600pt;}
.ls1b_c01200{letter-spacing:3.845000pt;}
.ls37_c01200{letter-spacing:5.130000pt;}
.ws0_c01200{word-spacing:0.000000pt;}
._c_c01200{margin-left:-26.104954pt;}
._13_c01200{margin-left:-8.283169pt;}
._8_c01200{margin-left:-6.664951pt;}
._12_c01200{margin-left:-5.635446pt;}
._4_c01200{margin-left:-3.230596pt;}
._e_c01200{margin-left:-1.992362pt;}
._f_c01200{width:1.369378pt;}
._3_c01200{width:2.281980pt;}
._6_c01200{width:3.415299pt;}
._2_c01200{width:4.458020pt;}
._5_c01200{width:6.827985pt;}
._d_c01200{width:9.994135pt;}
._11_c01200{width:11.185239pt;}
._a_c01200{width:13.280800pt;}
._b_c01200{width:14.308538pt;}
._7_c01200{width:15.264326pt;}
._10_c01200{width:18.976542pt;}
._9_c01200{width:22.921846pt;}
._1_c01200{width:26.400000pt;}
._0_c01200{width:38.455581pt;}
.fsc_c01200{font-size:16.000000pt;}
.fs6_c01200{font-size:16.666667pt;}
.fs7_c01200{font-size:22.666667pt;}
.fs9_c01200{font-size:24.000000pt;}
.fs8_c01200{font-size:24.666667pt;}
.fs5_c01200{font-size:25.333333pt;}
.fs11_c01200{font-size:28.666667pt;}
.fsd_c01200{font-size:29.333333pt;}
.fs25_c01200{font-size:30.666667pt;}
.fsf_c01200{font-size:32.666667pt;}
.fse_c01200{font-size:33.333333pt;}
.fs10_c01200{font-size:34.000000pt;}
.fs12_c01200{font-size:35.333333pt;}
.fsb_c01200{font-size:37.333333pt;}
.fsa_c01200{font-size:39.333333pt;}
.fs22_c01200{font-size:42.666667pt;}
.fs21_c01200{font-size:44.000000pt;}
.fs1f_c01200{font-size:45.333333pt;}
.fs1c_c01200{font-size:46.000000pt;}
.fs1a_c01200{font-size:46.666667pt;}
.fs13_c01200{font-size:47.333333pt;}
.fs17_c01200{font-size:48.000000pt;}
.fs14_c01200{font-size:48.666667pt;}
.fs1b_c01200{font-size:49.333333pt;}
.fs16_c01200{font-size:50.000000pt;}
.fs15_c01200{font-size:50.666667pt;}
.fs18_c01200{font-size:51.333333pt;}
.fs1d_c01200{font-size:52.000000pt;}
.fs19_c01200{font-size:52.666667pt;}
.fs1e_c01200{font-size:53.333333pt;}
.fs20_c01200{font-size:54.000000pt;}
.fs23_c01200{font-size:69.333333pt;}
.fs1_c01200{font-size:70.666667pt;}
.fs4_c01200{font-size:72.666667pt;}
.fs2_c01200{font-size:73.333333pt;}
.fs0_c01200{font-size:75.333333pt;}
.fs3_c01200{font-size:83.333333pt;}
.fs24_c01200{font-size:123.333333pt;}
.fs26_c01200{font-size:138.666667pt;}
.y0_c01200{bottom:0.000000pt;}
.y5_c01200{bottom:37.173720pt;}
.y3_c01200{bottom:45.814800pt;}
.y4_c01200{bottom:51.253720pt;}
.y2_c01200{bottom:51.574520pt;}
.y1d_c01200{bottom:320.694107pt;}
.y1c_c01200{bottom:347.573973pt;}
.y1b_c01200{bottom:353.333867pt;}
.y1a_c01200{bottom:373.494507pt;}
.y19_c01200{bottom:440.373333pt;}
.y18_c01200{bottom:454.774253pt;}
.y17_c01200{bottom:466.933840pt;}
.y16_c01200{bottom:477.174640pt;}
.y15_c01200{bottom:493.173707pt;}
.y14_c01200{bottom:546.614093pt;}
.y13_c01200{bottom:559.734653pt;}
.y12_c01200{bottom:572.853840pt;}
.y11_c01200{bottom:585.974360pt;}
.y10_c01200{bottom:599.093587pt;}
.yf_c01200{bottom:612.214107pt;}
.ye_c01200{bottom:625.333293pt;}
.yd_c01200{bottom:638.774787pt;}
.yc_c01200{bottom:638.775347pt;}
.yb_c01200{bottom:652.214640pt;}
.y9_c01200{bottom:665.654507pt;}
.ya_c01200{bottom:665.654667pt;}
.y8_c01200{bottom:678.773720pt;}
.y7_c01200{bottom:692.213707pt;}
.y6_c01200{bottom:705.334227pt;}
.y1_c01200{bottom:752.053960pt;}
.h8_c01200{height:16.357422pt;}
.he_c01200{height:16.687500pt;}
.h9_c01200{height:23.640625pt;}
.h7_c01200{height:24.863281pt;}
.hb_c01200{height:25.031250pt;}
.ha_c01200{height:25.726562pt;}
.hf_c01200{height:28.774740pt;}
.h13_c01200{height:29.898438pt;}
.h2f_c01200{height:31.984375pt;}
.h11_c01200{height:32.921875pt;}
.h10_c01200{height:33.593750pt;}
.h12_c01200{height:33.601562pt;}
.h14_c01200{height:34.919271pt;}
.hd_c01200{height:36.895833pt;}
.hc_c01200{height:38.872396pt;}
.h2d_c01200{height:41.023438pt;}
.h29_c01200{height:44.500000pt;}
.h27_c01200{height:45.890625pt;}
.h15_c01200{height:46.455078pt;}
.h19_c01200{height:47.109375pt;}
.h23_c01200{height:47.281250pt;}
.h16_c01200{height:47.763672pt;}
.h20_c01200{height:47.976562pt;}
.h2a_c01200{height:48.375000pt;}
.h1f_c01200{height:48.417969pt;}
.h1c_c01200{height:48.671875pt;}
.h18_c01200{height:49.072266pt;}
.h25_c01200{height:49.414063pt;}
.h31_c01200{height:49.718750pt;}
.h1e_c01200{height:49.726562pt;}
.h1d_c01200{height:50.062500pt;}
.h1a_c01200{height:50.380859pt;}
.h26_c01200{height:50.390625pt;}
.h21_c01200{height:51.035156pt;}
.h17_c01200{height:51.062500pt;}
.h28_c01200{height:51.390625pt;}
.h1b_c01200{height:51.689453pt;}
.h22_c01200{height:52.708333pt;}
.h24_c01200{height:53.367188pt;}
.h2c_c01200{height:56.320312pt;}
.h2_c01200{height:71.218750pt;}
.h2b_c01200{height:72.312500pt;}
.h5_c01200{height:73.234375pt;}
.h3_c01200{height:73.906250pt;}
.h6_c01200{height:73.935547pt;}
.h1_c01200{height:75.921875pt;}
.h4_c01200{height:82.356771pt;}
.h2e_c01200{height:128.632812pt;}
.h30_c01200{height:144.625000pt;}
.h0_c01200{height:793.333333pt;}
.w0_c01200{width:1122.666667pt;}
.x0_c01200{left:0.000000pt;}
.x1_c01200{left:72.959467pt;}
.x9_c01200{left:76.798813pt;}
.xb_c01200{left:134.399480pt;}
.x2_c01200{left:150.079067pt;}
.x3_c01200{left:186.878920pt;}
.xc_c01200{left:202.239200pt;}
.xd_c01200{left:271.999453pt;}
.xa_c01200{left:275.198693pt;}
.x16_c01200{left:293.438920pt;}
.x17_c01200{left:318.079067pt;}
.xe_c01200{left:340.479453pt;}
.x18_c01200{left:356.799320pt;}
.x19_c01200{left:391.999467pt;}
.xf_c01200{left:408.638667pt;}
.x1a_c01200{left:432.319333pt;}
.x4_c01200{left:448.960000pt;}
.x5_c01200{left:471.999067pt;}
.x10_c01200{left:480.000000pt;}
.x11_c01200{left:547.839840pt;}
.x12_c01200{left:616.319867pt;}
.x6_c01200{left:622.719720pt;}
.x7_c01200{left:666.238773pt;}
.x13_c01200{left:685.759280pt;}
.x14_c01200{left:688.639160pt;}
.x8_c01200{left:692.479987pt;}
.x15_c01200{left:695.039067pt;}
.x4a_c01200{left:814.398920pt;}
.x1d_c01200{left:818.239747pt;}
.x29_c01200{left:819.839280pt;}
.x48_c01200{left:823.359293pt;}
.x49_c01200{left:827.198733pt;}
.x2e_c01200{left:830.399413pt;}
.x43_c01200{left:832.639160pt;}
.x1e_c01200{left:835.519040pt;}
.x24_c01200{left:841.599613pt;}
.x1b_c01200{left:852.799800pt;}
.x4b_c01200{left:854.078693pt;}
.x2a_c01200{left:856.959960pt;}
.x35_c01200{left:859.519040pt;}
.x3b_c01200{left:861.118733pt;}
.x1c_c01200{left:868.158693pt;}
.x25_c01200{left:869.119547pt;}
.x2b_c01200{left:873.919840pt;}
.x1f_c01200{left:881.919440pt;}
.x2f_c01200{left:885.758787pt;}
.x36_c01200{left:899.838947pt;}
.x4c_c01200{left:903.679693pt;}
.x37_c01200{left:912.000000pt;}
.x3c_c01200{left:915.199133pt;}
.x4d_c01200{left:928.959960pt;}
.x3d_c01200{left:931.839840pt;}
.x47_c01200{left:937.599613pt;}
.x20_c01200{left:941.438880pt;}
.x30_c01200{left:942.399827pt;}
.x3e_c01200{left:943.999427pt;}
.x26_c01200{left:946.558507pt;}
.x31_c01200{left:951.039547pt;}
.x44_c01200{left:955.519040pt;}
.x2c_c01200{left:965.759680pt;}
.x21_c01200{left:966.719160pt;}
.x3f_c01200{left:975.039547pt;}
.x27_c01200{left:978.559573pt;}
.x22_c01200{left:985.599613pt;}
.x32_c01200{left:987.518467pt;}
.x28_c01200{left:996.479000pt;}
.x40_c01200{left:1003.839840pt;}
.x41_c01200{left:1015.999427pt;}
.x33_c01200{left:1029.758787pt;}
.x34_c01200{left:1041.279707pt;}
.x38_c01200{left:1047.358893pt;}
.x45_c01200{left:1048.959960pt;}
.x39_c01200{left:1055.679200pt;}
.x42_c01200{left:1058.559000pt;}
.x23_c01200{left:1061.119547pt;}
.x46_c01200{left:1062.399827pt;}
.x3a_c01200{left:1069.439947pt;}
.x2d_c01200{left:1074.878907pt;}
}





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

.ir_c01201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_af8a37c854df9d6416e46af2.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01201;src:url('chunks/assets/font_833427eea61b35d159634973.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01201;src:url('chunks/assets/font_5bd25d5ec0f96dfbe6a5faed.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01201;src:url('chunks/assets/font_2a60f63c6cefd8e686fefa76.woff2')format("woff");}.ff4_c01201{font-family:ff4_c01201;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01201;src:url('chunks/assets/font_0a4679120be24540a7eca15d.woff2')format("woff");}.ff5_c01201{font-family:ff5_c01201;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01201;src:url('chunks/assets/font_e94889084f44b8efc237f5c5.woff2')format("woff");}.ff6_c01201{font-family:ff6_c01201;line-height:1.284180;font-style:normal;font-weight: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_c01201;src:url('chunks/assets/font_370eb72b568e5ba5ad279372.woff2')format("woff");}.ff7_c01201{font-family:ff7_c01201;line-height:1.432129;font-style:normal;font-weight: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_c01201;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c01201{font-family:ff8_c01201;line-height:1.364746;font-style:normal;font-weight: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_c01201;src:url('chunks/assets/font_93932b8e8dee4fc6ce576627.woff2')format("woff");}.ff9_c01201{font-family:ff9_c01201;line-height:1.432129;font-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_c01201{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.m8_c01201{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_c01201{transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);}
.m38_c01201{transform:matrix(0.160173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160173,0.000000,0.000000,0.250000,0,0);}
.m32_c01201{transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163580,0.000000,0.000000,0.250000,0,0);}
.m1b_c01201{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.m2a_c01201{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m30_c01201{transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);}
.m34_c01201{transform:matrix(0.195988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195988,0.000000,0.000000,0.250000,0,0);}
.m1d_c01201{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m21_c01201{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m36_c01201{transform:matrix(0.203237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203237,0.000000,0.000000,0.250000,0,0);}
.m1c_c01201{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m39_c01201{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m1a_c01201{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m7_c01201{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m3_c01201{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m29_c01201{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m37_c01201{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m24_c01201{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m26_c01201{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m28_c01201{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.mb_c01201{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m2_c01201{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.md_c01201{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m2d_c01201{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m12_c01201{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m18_c01201{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m1e_c01201{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m16_c01201{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m2c_c01201{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m35_c01201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01201{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m19_c01201{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m2b_c01201{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m17_c01201{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m23_c01201{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.me_c01201{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m20_c01201{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m14_c01201{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m1f_c01201{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m13_c01201{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.ma_c01201{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m27_c01201{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m25_c01201{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.mf_c01201{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m9_c01201{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m4_c01201{transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287736,0.000000,0.000000,0.250000,0,0);}
.m1_c01201{transform:matrix(0.288636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288636,0.000000,0.000000,0.250000,0,0);}
.m0_c01201{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.m15_c01201{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.mc_c01201{transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296053,0.000000,0.000000,0.250000,0,0);}
.m2f_c01201{transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);}
.m10_c01201{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c01201{transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);}
.m31_c01201{transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399306,0.000000,0.000000,0.250000,0,0);}
.m11_c01201{transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);}
.m5_c01201{transform:matrix(1.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.235714,0.000000,0.000000,0.250000,0,0);}
.v0_c01201{vertical-align:0.000000px;}
.ls34_c01201{letter-spacing:-22.245300px;}
.ls35_c01201{letter-spacing:-17.102700px;}
.ls1c_c01201{letter-spacing:-8.139375px;}
.ls2e_c01201{letter-spacing:-7.911173px;}
.ls8_c01201{letter-spacing:-7.136250px;}
.ls21_c01201{letter-spacing:-7.062750px;}
.ls32_c01201{letter-spacing:-5.249475px;}
.ls2f_c01201{letter-spacing:-5.181300px;}
.ls2c_c01201{letter-spacing:-5.180625px;}
.ls30_c01201{letter-spacing:-5.040000px;}
.ls23_c01201{letter-spacing:-4.924500px;}
.ls1d_c01201{letter-spacing:-4.440975px;}
.ls19_c01201{letter-spacing:-4.438125px;}
.ls2a_c01201{letter-spacing:-4.279275px;}
.ls25_c01201{letter-spacing:-4.012800px;}
.ls27_c01201{letter-spacing:-3.990353px;}
.ls5_c01201{letter-spacing:-3.968250px;}
.lse_c01201{letter-spacing:-3.799050px;}
.ls18_c01201{letter-spacing:-3.701250px;}
.ls26_c01201{letter-spacing:-3.468750px;}
.ls24_c01201{letter-spacing:-3.421875px;}
.ls2_c01201{letter-spacing:-3.250500px;}
.ls1e_c01201{letter-spacing:-2.958750px;}
.ls12_c01201{letter-spacing:-2.896800px;}
.ls20_c01201{letter-spacing:-2.840400px;}
.ls7_c01201{letter-spacing:-2.608395px;}
.lsd_c01201{letter-spacing:-2.391900px;}
.ls16_c01201{letter-spacing:-2.222438px;}
.ls22_c01201{letter-spacing:-2.138070px;}
.ls10_c01201{letter-spacing:-2.011950px;}
.lsc_c01201{letter-spacing:-1.976400px;}
.ls31_c01201{letter-spacing:-1.957500px;}
.ls29_c01201{letter-spacing:-1.584600px;}
.ls3_c01201{letter-spacing:-1.584000px;}
.ls1a_c01201{letter-spacing:-1.479938px;}
.ls11_c01201{letter-spacing:-1.198800px;}
.ls33_c01201{letter-spacing:-0.826395px;}
.ls17_c01201{letter-spacing:-0.742500px;}
.ls2b_c01201{letter-spacing:-0.728723px;}
.lsf_c01201{letter-spacing:-0.710400px;}
.ls4_c01201{letter-spacing:0.000000px;}
.ls14_c01201{letter-spacing:0.705600px;}
.ls15_c01201{letter-spacing:0.765000px;}
.ls0_c01201{letter-spacing:0.792000px;}
.ls28_c01201{letter-spacing:0.837330px;}
.ls13_c01201{letter-spacing:1.571130px;}
.ls2d_c01201{letter-spacing:2.282175px;}
.ls6_c01201{letter-spacing:2.520000px;}
.ls1b_c01201{letter-spacing:2.661750px;}
.ls1_c01201{letter-spacing:3.880800px;}
.ls9_c01201{letter-spacing:4.097625px;}
.ls1f_c01201{letter-spacing:15.385275px;}
.lsa_c01201{letter-spacing:43.031250px;}
.lsb_c01201{letter-spacing:301.500900px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:0.000000px;}
._6_c01201{margin-left:-7.636796px;}
._7_c01201{margin-left:-2.775316px;}
._a_c01201{margin-left:-1.247299px;}
._4_c01201{width:1.593947px;}
._3_c01201{width:2.981013px;}
._b_c01201{width:4.449375px;}
._2_c01201{width:5.771605px;}
._5_c01201{width:7.886013px;}
._9_c01201{width:11.519586px;}
._8_c01201{width:14.102230px;}
._d_c01201{width:15.850628px;}
._c_c01201{width:18.643382px;}
._f_c01201{width:19.738480px;}
._e_c01201{width:22.776138px;}
._10_c01201{width:24.272289px;}
._1_c01201{width:25.550250px;}
._0_c01201{width:30.466869px;}
.fc0_c01201{color:transparent;}
.fs5_c01201{font-size:13.500000px;}
.fs4_c01201{font-size:16.500000px;}
.fsa_c01201{font-size:24.000000px;}
.fs8_c01201{font-size:25.500000px;}
.fs3_c01201{font-size:26.250000px;}
.fs6_c01201{font-size:27.000000px;}
.fs9_c01201{font-size:27.750000px;}
.fs7_c01201{font-size:28.500000px;}
.fsb_c01201{font-size:33.000000px;}
.fsf_c01201{font-size:34.500000px;}
.fse_c01201{font-size:36.000000px;}
.fsd_c01201{font-size:36.750000px;}
.fsc_c01201{font-size:38.250000px;}
.fs17_c01201{font-size:39.000000px;}
.fs1c_c01201{font-size:45.000000px;}
.fs1a_c01201{font-size:50.250000px;}
.fs15_c01201{font-size:51.750000px;}
.fs19_c01201{font-size:52.500000px;}
.fs16_c01201{font-size:54.000000px;}
.fs18_c01201{font-size:54.750000px;}
.fs10_c01201{font-size:55.500000px;}
.fs11_c01201{font-size:56.250000px;}
.fs14_c01201{font-size:57.000000px;}
.fs13_c01201{font-size:57.750000px;}
.fs12_c01201{font-size:58.500000px;}
.fs1b_c01201{font-size:78.750000px;}
.fs2_c01201{font-size:79.500000px;}
.fs1_c01201{font-size:82.500000px;}
.fs0_c01201{font-size:84.000000px;}
.fs1f_c01201{font-size:104.250000px;}
.fs1d_c01201{font-size:121.500000px;}
.fs1e_c01201{font-size:138.750000px;}
.fs21_c01201{font-size:139.500000px;}
.fs20_c01201{font-size:173.250000px;}
.y0_c01201{bottom:0.000000px;}
.y5_c01201{bottom:38.580435px;}
.y4_c01201{bottom:46.141335px;}
.y2_c01201{bottom:51.541650px;}
.y3_c01201{bottom:54.420600px;}
.y1c_c01201{bottom:315.060285px;}
.y1b_c01201{bottom:352.499970px;}
.y1a_c01201{bottom:376.441335px;}
.y19_c01201{bottom:419.100270px;}
.y18_c01201{bottom:449.701035px;}
.y17_c01201{bottom:479.221500px;}
.y16_c01201{bottom:509.101530px;}
.y15_c01201{bottom:538.621485px;}
.y14_c01201{bottom:568.500000px;}
.y13_c01201{bottom:628.620435px;}
.y12_c01201{bottom:643.381170px;}
.y11_c01201{bottom:658.501005px;}
.y10_c01201{bottom:673.260135px;}
.yf_c01201{bottom:688.020720px;}
.ye_c01201{bottom:702.781500px;}
.yd_c01201{bottom:717.540570px;}
.yc_c01201{bottom:732.660510px;}
.yb_c01201{bottom:747.780435px;}
.ya_c01201{bottom:762.541035px;}
.y9_c01201{bottom:762.541080px;}
.y7_c01201{bottom:777.660915px;}
.y8_c01201{bottom:777.661005px;}
.y6_c01201{bottom:792.780855px;}
.y1_c01201{bottom:839.940315px;}
.h7_c01201{height:14.080078px;}
.h6_c01201{height:16.193848px;}
.hf_c01201{height:25.031250px;}
.h5_c01201{height:25.762939px;}
.he_c01201{height:26.485840px;}
.hb_c01201{height:26.595703px;}
.h8_c01201{height:26.683594px;}
.h9_c01201{height:28.160156px;}
.hc_c01201{height:28.166016px;}
.hd_c01201{height:28.942383px;}
.ha_c01201{height:29.724609px;}
.h10_c01201{height:34.417969px;}
.h14_c01201{height:35.982422px;}
.h13_c01201{height:36.281250px;}
.h12_c01201{height:37.037109px;}
.h11_c01201{height:38.548828px;}
.h1c_c01201{height:39.304688px;}
.h24_c01201{height:46.933594px;}
.h1a_c01201{height:50.789795px;}
.h20_c01201{height:52.409180px;}
.h1b_c01201{height:52.998047px;}
.h1d_c01201{height:53.734131px;}
.h21_c01201{height:53.973633px;}
.h15_c01201{height:54.470215px;}
.h1e_c01201{height:54.755859px;}
.h16_c01201{height:55.206299px;}
.h2a_c01201{height:55.933594px;}
.h19_c01201{height:55.942383px;}
.h25_c01201{height:56.320312px;}
.h22_c01201{height:56.678467px;}
.h18_c01201{height:57.073242px;}
.h17_c01201{height:57.414551px;}
.h1f_c01201{height:57.445312px;}
.h28_c01201{height:60.231445px;}
.h4_c01201{height:78.024902px;}
.h2_c01201{height:80.969238px;}
.h23_c01201{height:82.133789px;}
.h3_c01201{height:82.441406px;}
.h1_c01201{height:84.656250px;}
.h29_c01201{height:108.729492px;}
.h26_c01201{height:126.720703px;}
.h27_c01201{height:144.711914px;}
.h2c_c01201{height:145.494141px;}
.h2b_c01201{height:180.694336px;}
.h0_c01201{height:892.500000px;}
.w0_c01201{width:1263.000000px;}
.x0_c01201{left:0.000000px;}
.x1_c01201{left:77.399250px;}
.x7_c01201{left:86.398665px;}
.xb_c01201{left:151.919565px;}
.x2_c01201{left:165.599100px;}
.x8_c01201{left:192.958350px;}
.x3_c01201{left:207.359850px;}
.x9_c01201{left:219.239850px;}
.xc_c01201{left:227.878350px;}
.xd_c01201{left:306.719535px;}
.x14_c01201{left:330.479685px;}
.x15_c01201{left:357.479685px;}
.xe_c01201{left:383.398635px;}
.x16_c01201{left:402.119385px;}
.x17_c01201{left:443.159820px;}
.xf_c01201{left:461.519670px;}
.x18_c01201{left:488.158770px;}
.x10_c01201{left:540.718500px;}
.x11_c01201{left:617.399235px;}
.x12_c01201{left:695.159370px;}
.x4_c01201{left:698.758530px;}
.xa_c01201{left:738.358605px;}
.x5_c01201{left:748.439205px;}
.x13_c01201{left:773.998905px;}
.x6_c01201{left:777.958920px;}
.x45_c01201{left:910.079955px;}
.x3e_c01201{left:911.518620px;}
.x3f_c01201{left:919.079400px;}
.x1b_c01201{left:920.159595px;}
.x3d_c01201{left:923.398590px;}
.x3a_c01201{left:924.479640px;}
.x40_c01201{left:928.078770px;}
.x3c_c01201{left:929.519070px;}
.x2d_c01201{left:935.998905px;}
.x41_c01201{left:937.079955px;}
.x24_c01201{left:938.879520px;}
.x31_c01201{left:943.559685px;}
.x42_c01201{left:945.000000px;}
.x19_c01201{left:959.038965px;}
.x3b_c01201{left:960.119550px;}
.x43_c01201{left:961.199340px;}
.x32_c01201{left:968.399235px;}
.x37_c01201{left:972.718500px;}
.x2e_c01201{left:974.519715px;}
.x1a_c01201{left:977.759490px;}
.x38_c01201{left:991.798560px;}
.x44_c01201{left:995.039985px;}
.x25_c01201{left:996.119385px;}
.x33_c01201{left:1019.159370px;}
.x34_c01201{left:1046.159370px;}
.x35_c01201{left:1063.078770px;}
.x20_c01201{left:1065.959385px;}
.x21_c01201{left:1076.399235px;}
.x36_c01201{left:1079.639100px;}
.x1c_c01201{left:1086.118740px;}
.x1d_c01201{left:1100.879520px;}
.x2a_c01201{left:1104.839535px;}
.x2b_c01201{left:1118.878320px;}
.x22_c01201{left:1136.878875px;}
.x23_c01201{left:1146.598575px;}
.x28_c01201{left:1152.719055px;}
.x2f_c01201{left:1164.958275px;}
.x26_c01201{left:1167.479640px;}
.x1e_c01201{left:1170.358605px;}
.x27_c01201{left:1181.518620px;}
.x30_c01201{left:1182.599670px;}
.x1f_c01201{left:1183.679070px;}
.x2c_c01201{left:1189.799565px;}
.x39_c01201{left:1198.798920px;}
.x29_c01201{left:1208.879520px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls34_c01201{letter-spacing:-19.773600pt;}
.ls35_c01201{letter-spacing:-15.202400pt;}
.ls1c_c01201{letter-spacing:-7.235000pt;}
.ls2e_c01201{letter-spacing:-7.032153pt;}
.ls8_c01201{letter-spacing:-6.343333pt;}
.ls21_c01201{letter-spacing:-6.278000pt;}
.ls32_c01201{letter-spacing:-4.666200pt;}
.ls2f_c01201{letter-spacing:-4.605600pt;}
.ls2c_c01201{letter-spacing:-4.605000pt;}
.ls30_c01201{letter-spacing:-4.480000pt;}
.ls23_c01201{letter-spacing:-4.377333pt;}
.ls1d_c01201{letter-spacing:-3.947533pt;}
.ls19_c01201{letter-spacing:-3.945000pt;}
.ls2a_c01201{letter-spacing:-3.803800pt;}
.ls25_c01201{letter-spacing:-3.566933pt;}
.ls27_c01201{letter-spacing:-3.546980pt;}
.ls5_c01201{letter-spacing:-3.527333pt;}
.lse_c01201{letter-spacing:-3.376933pt;}
.ls18_c01201{letter-spacing:-3.290000pt;}
.ls26_c01201{letter-spacing:-3.083333pt;}
.ls24_c01201{letter-spacing:-3.041667pt;}
.ls2_c01201{letter-spacing:-2.889333pt;}
.ls1e_c01201{letter-spacing:-2.630000pt;}
.ls12_c01201{letter-spacing:-2.574933pt;}
.ls20_c01201{letter-spacing:-2.524800pt;}
.ls7_c01201{letter-spacing:-2.318573pt;}
.lsd_c01201{letter-spacing:-2.126133pt;}
.ls16_c01201{letter-spacing:-1.975500pt;}
.ls22_c01201{letter-spacing:-1.900507pt;}
.ls10_c01201{letter-spacing:-1.788400pt;}
.lsc_c01201{letter-spacing:-1.756800pt;}
.ls31_c01201{letter-spacing:-1.740000pt;}
.ls29_c01201{letter-spacing:-1.408533pt;}
.ls3_c01201{letter-spacing:-1.408000pt;}
.ls1a_c01201{letter-spacing:-1.315500pt;}
.ls11_c01201{letter-spacing:-1.065600pt;}
.ls33_c01201{letter-spacing:-0.734573pt;}
.ls17_c01201{letter-spacing:-0.660000pt;}
.ls2b_c01201{letter-spacing:-0.647753pt;}
.lsf_c01201{letter-spacing:-0.631467pt;}
.ls4_c01201{letter-spacing:0.000000pt;}
.ls14_c01201{letter-spacing:0.627200pt;}
.ls15_c01201{letter-spacing:0.680000pt;}
.ls0_c01201{letter-spacing:0.704000pt;}
.ls28_c01201{letter-spacing:0.744293pt;}
.ls13_c01201{letter-spacing:1.396560pt;}
.ls2d_c01201{letter-spacing:2.028600pt;}
.ls6_c01201{letter-spacing:2.240000pt;}
.ls1b_c01201{letter-spacing:2.366000pt;}
.ls1_c01201{letter-spacing:3.449600pt;}
.ls9_c01201{letter-spacing:3.642333pt;}
.ls1f_c01201{letter-spacing:13.675800pt;}
.lsa_c01201{letter-spacing:38.250000pt;}
.lsb_c01201{letter-spacing:268.000800pt;}
.ws0_c01201{word-spacing:0.000000pt;}
._6_c01201{margin-left:-6.788263pt;}
._7_c01201{margin-left:-2.466947pt;}
._a_c01201{margin-left:-1.108711pt;}
._4_c01201{width:1.416842pt;}
._3_c01201{width:2.649789pt;}
._b_c01201{width:3.955000pt;}
._2_c01201{width:5.130316pt;}
._5_c01201{width:7.009789pt;}
._9_c01201{width:10.239632pt;}
._8_c01201{width:12.535316pt;}
._d_c01201{width:14.089447pt;}
._c_c01201{width:16.571895pt;}
._f_c01201{width:17.545316pt;}
._e_c01201{width:20.245456pt;}
._10_c01201{width:21.575368pt;}
._1_c01201{width:22.711333pt;}
._0_c01201{width:27.081662pt;}
.fs5_c01201{font-size:12.000000pt;}
.fs4_c01201{font-size:14.666667pt;}
.fsa_c01201{font-size:21.333333pt;}
.fs8_c01201{font-size:22.666667pt;}
.fs3_c01201{font-size:23.333333pt;}
.fs6_c01201{font-size:24.000000pt;}
.fs9_c01201{font-size:24.666667pt;}
.fs7_c01201{font-size:25.333333pt;}
.fsb_c01201{font-size:29.333333pt;}
.fsf_c01201{font-size:30.666667pt;}
.fse_c01201{font-size:32.000000pt;}
.fsd_c01201{font-size:32.666667pt;}
.fsc_c01201{font-size:34.000000pt;}
.fs17_c01201{font-size:34.666667pt;}
.fs1c_c01201{font-size:40.000000pt;}
.fs1a_c01201{font-size:44.666667pt;}
.fs15_c01201{font-size:46.000000pt;}
.fs19_c01201{font-size:46.666667pt;}
.fs16_c01201{font-size:48.000000pt;}
.fs18_c01201{font-size:48.666667pt;}
.fs10_c01201{font-size:49.333333pt;}
.fs11_c01201{font-size:50.000000pt;}
.fs14_c01201{font-size:50.666667pt;}
.fs13_c01201{font-size:51.333333pt;}
.fs12_c01201{font-size:52.000000pt;}
.fs1b_c01201{font-size:70.000000pt;}
.fs2_c01201{font-size:70.666667pt;}
.fs1_c01201{font-size:73.333333pt;}
.fs0_c01201{font-size:74.666667pt;}
.fs1f_c01201{font-size:92.666667pt;}
.fs1d_c01201{font-size:108.000000pt;}
.fs1e_c01201{font-size:123.333333pt;}
.fs21_c01201{font-size:124.000000pt;}
.fs20_c01201{font-size:154.000000pt;}
.y0_c01201{bottom:0.000000pt;}
.y5_c01201{bottom:34.293720pt;}
.y4_c01201{bottom:41.014520pt;}
.y2_c01201{bottom:45.814800pt;}
.y3_c01201{bottom:48.373867pt;}
.y1c_c01201{bottom:280.053587pt;}
.y1b_c01201{bottom:313.333307pt;}
.y1a_c01201{bottom:334.614520pt;}
.y19_c01201{bottom:372.533573pt;}
.y18_c01201{bottom:399.734253pt;}
.y17_c01201{bottom:425.974667pt;}
.y16_c01201{bottom:452.534693pt;}
.y15_c01201{bottom:478.774653pt;}
.y14_c01201{bottom:505.333333pt;}
.y13_c01201{bottom:558.773720pt;}
.y12_c01201{bottom:571.894373pt;}
.y11_c01201{bottom:585.334227pt;}
.y10_c01201{bottom:598.453453pt;}
.yf_c01201{bottom:611.573973pt;}
.ye_c01201{bottom:624.694667pt;}
.yd_c01201{bottom:637.813840pt;}
.yc_c01201{bottom:651.253787pt;}
.yb_c01201{bottom:664.693720pt;}
.ya_c01201{bottom:677.814253pt;}
.y9_c01201{bottom:677.814293pt;}
.y7_c01201{bottom:691.254147pt;}
.y8_c01201{bottom:691.254227pt;}
.y6_c01201{bottom:704.694093pt;}
.y1_c01201{bottom:746.613613pt;}
.h7_c01201{height:12.515625pt;}
.h6_c01201{height:14.394531pt;}
.hf_c01201{height:22.250000pt;}
.h5_c01201{height:22.900391pt;}
.he_c01201{height:23.542969pt;}
.hb_c01201{height:23.640625pt;}
.h8_c01201{height:23.718750pt;}
.h9_c01201{height:25.031250pt;}
.hc_c01201{height:25.036458pt;}
.hd_c01201{height:25.726562pt;}
.ha_c01201{height:26.421875pt;}
.h10_c01201{height:30.593750pt;}
.h14_c01201{height:31.984375pt;}
.h13_c01201{height:32.250000pt;}
.h12_c01201{height:32.921875pt;}
.h11_c01201{height:34.265625pt;}
.h1c_c01201{height:34.937500pt;}
.h24_c01201{height:41.718750pt;}
.h1a_c01201{height:45.146484pt;}
.h20_c01201{height:46.585938pt;}
.h1b_c01201{height:47.109375pt;}
.h1d_c01201{height:47.763672pt;}
.h21_c01201{height:47.976562pt;}
.h15_c01201{height:48.417969pt;}
.h1e_c01201{height:48.671875pt;}
.h16_c01201{height:49.072266pt;}
.h2a_c01201{height:49.718750pt;}
.h19_c01201{height:49.726562pt;}
.h25_c01201{height:50.062500pt;}
.h22_c01201{height:50.380859pt;}
.h18_c01201{height:50.731771pt;}
.h17_c01201{height:51.035156pt;}
.h1f_c01201{height:51.062500pt;}
.h28_c01201{height:53.539062pt;}
.h4_c01201{height:69.355469pt;}
.h2_c01201{height:71.972656pt;}
.h23_c01201{height:73.007812pt;}
.h3_c01201{height:73.281250pt;}
.h1_c01201{height:75.250000pt;}
.h29_c01201{height:96.648438pt;}
.h26_c01201{height:112.640625pt;}
.h27_c01201{height:128.632812pt;}
.h2c_c01201{height:129.328125pt;}
.h2b_c01201{height:160.617188pt;}
.h0_c01201{height:793.333333pt;}
.w0_c01201{width:1122.666667pt;}
.x0_c01201{left:0.000000pt;}
.x1_c01201{left:68.799333pt;}
.x7_c01201{left:76.798813pt;}
.xb_c01201{left:135.039613pt;}
.x2_c01201{left:147.199200pt;}
.x8_c01201{left:171.518533pt;}
.x3_c01201{left:184.319867pt;}
.x9_c01201{left:194.879867pt;}
.xc_c01201{left:202.558533pt;}
.xd_c01201{left:272.639587pt;}
.x14_c01201{left:293.759720pt;}
.x15_c01201{left:317.759720pt;}
.xe_c01201{left:340.798787pt;}
.x16_c01201{left:357.439453pt;}
.x17_c01201{left:393.919840pt;}
.xf_c01201{left:410.239707pt;}
.x18_c01201{left:433.918907pt;}
.x10_c01201{left:480.638667pt;}
.x11_c01201{left:548.799320pt;}
.x12_c01201{left:617.919440pt;}
.x4_c01201{left:621.118693pt;}
.xa_c01201{left:656.318760pt;}
.x5_c01201{left:665.279293pt;}
.x13_c01201{left:687.999027pt;}
.x6_c01201{left:691.519040pt;}
.x45_c01201{left:808.959960pt;}
.x3e_c01201{left:810.238773pt;}
.x3f_c01201{left:816.959467pt;}
.x1b_c01201{left:817.919640pt;}
.x3d_c01201{left:820.798747pt;}
.x3a_c01201{left:821.759680pt;}
.x40_c01201{left:824.958907pt;}
.x3c_c01201{left:826.239173pt;}
.x2d_c01201{left:831.999027pt;}
.x41_c01201{left:832.959960pt;}
.x24_c01201{left:834.559573pt;}
.x31_c01201{left:838.719720pt;}
.x42_c01201{left:840.000000pt;}
.x19_c01201{left:852.479080pt;}
.x3b_c01201{left:853.439600pt;}
.x43_c01201{left:854.399413pt;}
.x32_c01201{left:860.799320pt;}
.x37_c01201{left:864.638667pt;}
.x2e_c01201{left:866.239747pt;}
.x1a_c01201{left:869.119547pt;}
.x38_c01201{left:881.598720pt;}
.x44_c01201{left:884.479987pt;}
.x25_c01201{left:885.439453pt;}
.x33_c01201{left:905.919440pt;}
.x34_c01201{left:929.919440pt;}
.x35_c01201{left:944.958907pt;}
.x20_c01201{left:947.519453pt;}
.x21_c01201{left:956.799320pt;}
.x36_c01201{left:959.679200pt;}
.x1c_c01201{left:965.438880pt;}
.x1d_c01201{left:978.559573pt;}
.x2a_c01201{left:982.079587pt;}
.x2b_c01201{left:994.558507pt;}
.x22_c01201{left:1010.559000pt;}
.x23_c01201{left:1019.198733pt;}
.x28_c01201{left:1024.639160pt;}
.x2f_c01201{left:1035.518467pt;}
.x26_c01201{left:1037.759680pt;}
.x1e_c01201{left:1040.318760pt;}
.x27_c01201{left:1050.238773pt;}
.x30_c01201{left:1051.199707pt;}
.x1f_c01201{left:1052.159173pt;}
.x2c_c01201{left:1057.599613pt;}
.x39_c01201{left:1065.599040pt;}
.x29_c01201{left:1074.559573pt;}
}





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

.ir_c01202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_fd58b0f9bbb62d889441dc45.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01202;src:url('chunks/assets/font_5b42d6c6c47b30266ae80e44.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01202;src:url('chunks/assets/font_b2b350af016390451117632f.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01202;src:url('chunks/assets/font_b76005836eeaf994a3d04701.woff2')format("woff");}.ff4_c01202{font-family:ff4_c01202;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01202;src:url('chunks/assets/font_850f3f65ea1b30540bcd3ac0.woff2')format("woff");}.ff5_c01202{font-family:ff5_c01202;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01202;src:url('chunks/assets/font_c5bb5b78af6ea5f3cf497fd8.woff2')format("woff");}.ff6_c01202{font-family:ff6_c01202;line-height:1.432129;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_fb2ba7d5b39c33722af21100.woff2')format("woff");}.ff7_c01202{font-family:ff7_c01202;line-height:1.364746;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_5d9646d12a7b338e4ede2e61.woff2')format("woff");}.ff8_c01202{font-family:ff8_c01202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m40_c01202{transform:matrix(0.113514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113514,0.000000,0.000000,0.250000,0,0);}
.m43_c01202{transform:matrix(0.129630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129630,0.000000,0.000000,0.250000,0,0);}
.m2a_c01202{transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149306,0.000000,0.000000,0.250000,0,0);}
.m45_c01202{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7_c01202{transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);}
.m3f_c01202{transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165468,0.000000,0.000000,0.250000,0,0);}
.m12_c01202{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m44_c01202{transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181034,0.000000,0.000000,0.250000,0,0);}
.m23_c01202{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m17_c01202{transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197115,0.000000,0.000000,0.250000,0,0);}
.m26_c01202{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);}
.m36_c01202{transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208861,0.000000,0.000000,0.250000,0,0);}
.m37_c01202{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m3_c01202{transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217593,0.000000,0.000000,0.250000,0,0);}
.m25_c01202{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_c01202{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);}
.m20_c01202{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m28_c01202{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m34_c01202{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m41_c01202{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m4_c01202{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m32_c01202{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);}
.m42_c01202{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m27_c01202{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m22_c01202{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m19_c01202{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m16_c01202{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m3b_c01202{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1d_c01202{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m29_c01202{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m2c_c01202{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m39_c01202{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m35_c01202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01202{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.mc_c01202{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m13_c01202{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.mf_c01202{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m21_c01202{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m2f_c01202{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);}
.m33_c01202{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m1b_c01202{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m24_c01202{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m31_c01202{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m1a_c01202{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m3a_c01202{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m2d_c01202{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m2b_c01202{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m6_c01202{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m11_c01202{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.md_c01202{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m5_c01202{transform:matrix(0.286408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286408,0.000000,0.000000,0.250000,0,0);}
.m1e_c01202{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m3d_c01202{transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289894,0.000000,0.000000,0.250000,0,0);}
.m18_c01202{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.me_c01202{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m30_c01202{transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);}
.m38_c01202{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m14_c01202{transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301471,0.000000,0.000000,0.250000,0,0);}
.m0_c01202{transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303097,0.000000,0.000000,0.250000,0,0);}
.m15_c01202{transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);}
.m1_c01202{transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317757,0.000000,0.000000,0.250000,0,0);}
.ma_c01202{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.mb_c01202{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m1c_c01202{transform:matrix(0.348592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348592,0.000000,0.000000,0.250000,0,0);}
.m1f_c01202{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);}
.m10_c01202{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);}
.m3c_c01202{transform:matrix(0.474747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474747,0.000000,0.000000,0.250000,0,0);}
.m9_c01202{transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);}
.m3e_c01202{transform:matrix(0.563953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563953,0.000000,0.000000,0.250000,0,0);}
.m8_c01202{transform:matrix(0.956522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.956522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.956522,0.000000,0.000000,0.250000,0,0);}
.v0_c01202{vertical-align:0.000000px;}
.ls40_c01202{letter-spacing:-21.637500px;}
.ls2c_c01202{letter-spacing:-16.946100px;}
.ls3f_c01202{letter-spacing:-16.574370px;}
.ls39_c01202{letter-spacing:-15.631500px;}
.ls2b_c01202{letter-spacing:-14.027475px;}
.ls25_c01202{letter-spacing:-11.947898px;}
.ls2a_c01202{letter-spacing:-11.372400px;}
.lsd_c01202{letter-spacing:-7.401713px;}
.ls1b_c01202{letter-spacing:-7.140375px;}
.ls29_c01202{letter-spacing:-6.564375px;}
.ls36_c01202{letter-spacing:-6.328125px;}
.ls32_c01202{letter-spacing:-5.398350px;}
.ls27_c01202{letter-spacing:-4.924800px;}
.ls1c_c01202{letter-spacing:-4.875000px;}
.ls3b_c01202{letter-spacing:-4.562100px;}
.ls22_c01202{letter-spacing:-4.560675px;}
.ls23_c01202{letter-spacing:-4.560000px;}
.ls10_c01202{letter-spacing:-3.965475px;}
.ls3e_c01202{letter-spacing:-3.950843px;}
.ls26_c01202{letter-spacing:-3.854400px;}
.ls30_c01202{letter-spacing:-3.851925px;}
.ls18_c01202{letter-spacing:-3.730650px;}
.ls3a_c01202{letter-spacing:-3.589958px;}
.ls7_c01202{letter-spacing:-3.333825px;}
.ls37_c01202{letter-spacing:-3.262500px;}
.ls19_c01202{letter-spacing:-3.127425px;}
.ls21_c01202{letter-spacing:-3.082425px;}
.ls33_c01202{letter-spacing:-2.958660px;}
.ls6_c01202{letter-spacing:-2.953200px;}
.ls2d_c01202{letter-spacing:-2.919300px;}
.ls34_c01202{letter-spacing:-2.885625px;}
.ls1d_c01202{letter-spacing:-2.846250px;}
.ls3c_c01202{letter-spacing:-2.737500px;}
.ls11_c01202{letter-spacing:-2.562000px;}
.ls35_c01202{letter-spacing:-2.508075px;}
.ls28_c01202{letter-spacing:-2.315925px;}
.lsf_c01202{letter-spacing:-2.191650px;}
.ls24_c01202{letter-spacing:-2.166203px;}
.ls31_c01202{letter-spacing:-2.051460px;}
.ls2f_c01202{letter-spacing:-2.025540px;}
.lsc_c01202{letter-spacing:-1.962923px;}
.ls20_c01202{letter-spacing:-1.543950px;}
.ls3d_c01202{letter-spacing:-1.543860px;}
.lsb_c01202{letter-spacing:-0.833250px;}
.ls1f_c01202{letter-spacing:-0.771975px;}
.ls38_c01202{letter-spacing:-0.712500px;}
.ls14_c01202{letter-spacing:-0.672000px;}
.ls5_c01202{letter-spacing:-0.617828px;}
.lsa_c01202{letter-spacing:0.000000px;}
.ls15_c01202{letter-spacing:0.668002px;}
.ls1_c01202{letter-spacing:0.771975px;}
.ls9_c01202{letter-spacing:0.858600px;}
.ls1a_c01202{letter-spacing:0.951600px;}
.ls0_c01202{letter-spacing:1.543950px;}
.ls13_c01202{letter-spacing:2.000700px;}
.ls17_c01202{letter-spacing:2.189475px;}
.ls2_c01202{letter-spacing:2.315925px;}
.ls4_c01202{letter-spacing:3.082425px;}
.ls8_c01202{letter-spacing:4.167075px;}
.ls3_c01202{letter-spacing:6.170325px;}
.lse_c01202{letter-spacing:6.546000px;}
.ls1e_c01202{letter-spacing:6.991725px;}
.ls2e_c01202{letter-spacing:7.533000px;}
.ls16_c01202{letter-spacing:56.726400px;}
.ls12_c01202{letter-spacing:71.689380px;}
.sc__c01202{text-shadow:none;}
.sc0_c01202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01202{-webkit-text-stroke:0px transparent;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01202{word-spacing:0.000000px;}
._14_c01202{margin-left:-39.978728px;}
._15_c01202{margin-left:-10.265720px;}
._13_c01202{margin-left:-8.343484px;}
._f_c01202{margin-left:-7.171957px;}
._2_c01202{margin-left:-5.705719px;}
._12_c01202{margin-left:-3.946951px;}
._6_c01202{margin-left:-2.852305px;}
._8_c01202{margin-left:-1.040420px;}
._5_c01202{width:1.313969px;}
._3_c01202{width:3.049282px;}
._4_c01202{width:4.938188px;}
._d_c01202{width:5.968074px;}
._e_c01202{width:7.161578px;}
._7_c01202{width:8.537129px;}
._c_c01202{width:10.090533px;}
._b_c01202{width:11.212584px;}
._a_c01202{width:16.091318px;}
._9_c01202{width:18.779096px;}
._10_c01202{width:21.040703px;}
._11_c01202{width:23.465865px;}
._0_c01202{width:32.207850px;}
._1_c01202{width:37.768000px;}
.fc0_c01202{color:transparent;}
.fsa_c01202{font-size:12.000000px;}
.fse_c01202{font-size:19.500000px;}
.fs10_c01202{font-size:24.000000px;}
.fsf_c01202{font-size:24.750000px;}
.fs11_c01202{font-size:25.500000px;}
.fsc_c01202{font-size:26.250000px;}
.fsb_c01202{font-size:27.750000px;}
.fs8_c01202{font-size:28.500000px;}
.fs7_c01202{font-size:34.500000px;}
.fs14_c01202{font-size:36.000000px;}
.fs12_c01202{font-size:36.750000px;}
.fs19_c01202{font-size:37.500000px;}
.fs13_c01202{font-size:39.000000px;}
.fs15_c01202{font-size:41.250000px;}
.fsd_c01202{font-size:42.000000px;}
.fs9_c01202{font-size:43.500000px;}
.fs21_c01202{font-size:49.500000px;}
.fs1f_c01202{font-size:51.000000px;}
.fs17_c01202{font-size:53.250000px;}
.fs1e_c01202{font-size:54.000000px;}
.fs18_c01202{font-size:54.750000px;}
.fs1d_c01202{font-size:55.500000px;}
.fs16_c01202{font-size:56.250000px;}
.fs1b_c01202{font-size:57.000000px;}
.fs1a_c01202{font-size:57.750000px;}
.fs1c_c01202{font-size:58.500000px;}
.fs20_c01202{font-size:59.250000px;}
.fs25_c01202{font-size:64.500000px;}
.fs6_c01202{font-size:66.000000px;}
.fs28_c01202{font-size:69.000000px;}
.fs24_c01202{font-size:70.500000px;}
.fs22_c01202{font-size:72.000000px;}
.fs23_c01202{font-size:74.250000px;}
.fs4_c01202{font-size:77.250000px;}
.fs5_c01202{font-size:78.750000px;}
.fs1_c01202{font-size:80.250000px;}
.fs3_c01202{font-size:81.000000px;}
.fs2_c01202{font-size:82.500000px;}
.fs0_c01202{font-size:84.750000px;}
.fs29_c01202{font-size:86.250000px;}
.fs2b_c01202{font-size:87.000000px;}
.fs26_c01202{font-size:104.250000px;}
.fs2a_c01202{font-size:121.500000px;}
.fs27_c01202{font-size:138.750000px;}
.fs2c_c01202{font-size:187.500000px;}
.y0_c01202{bottom:0.000000px;}
.ya_c01202{bottom:38.221185px;}
.y9_c01202{bottom:45.061935px;}
.y7_c01202{bottom:47.220750px;}
.y6_c01202{bottom:49.381185px;}
.y8_c01202{bottom:52.261800px;}
.y5_c01202{bottom:55.140750px;}
.y3_c01202{bottom:57.301185px;}
.y2_c01202{bottom:61.981335px;}
.y4_c01202{bottom:64.501050px;}
.y32_c01202{bottom:179.341800px;}
.y31_c01202{bottom:208.500600px;}
.y30_c01202{bottom:214.981935px;}
.y2f_c01202{bottom:240.541620px;}
.y2e_c01202{bottom:284.101770px;}
.y2d_c01202{bottom:313.980855px;}
.y2c_c01202{bottom:344.220720px;}
.y2b_c01202{bottom:373.740435px;}
.y2a_c01202{bottom:433.140750px;}
.y29_c01202{bottom:493.620435px;}
.y28_c01202{bottom:493.620615px;}
.y27_c01202{bottom:508.022595px;}
.y26_c01202{bottom:523.141800px;}
.y25_c01202{bottom:537.900885px;}
.y24_c01202{bottom:552.661470px;}
.y23_c01202{bottom:567.420600px;}
.y22_c01202{bottom:582.540570px;}
.y21_c01202{bottom:582.541215px;}
.y20_c01202{bottom:597.660420px;}
.y1f_c01202{bottom:597.661245px;}
.y1e_c01202{bottom:612.780435px;}
.y1d_c01202{bottom:627.541035px;}
.y1c_c01202{bottom:627.541815px;}
.y1b_c01202{bottom:642.661005px;}
.y1a_c01202{bottom:657.421650px;}
.y19_c01202{bottom:657.422430px;}
.y18_c01202{bottom:672.541620px;}
.y17_c01202{bottom:672.542040px;}
.y16_c01202{bottom:686.941320px;}
.y15_c01202{bottom:702.061335px;}
.y14_c01202{bottom:702.061890px;}
.y12_c01202{bottom:716.461005px;}
.y13_c01202{bottom:716.461170px;}
.y11_c01202{bottom:731.940255px;}
.y10_c01202{bottom:731.940450px;}
.yf_c01202{bottom:746.701035px;}
.yd_c01202{bottom:762.181725px;}
.ye_c01202{bottom:762.181785px;}
.yc_c01202{bottom:776.940855px;}
.yb_c01202{bottom:791.701440px;}
.y1_c01202{bottom:843.540990px;}
.hb_c01202{height:12.515625px;}
.h10_c01202{height:20.337891px;}
.h13_c01202{height:24.187500px;}
.h12_c01202{height:25.813477px;}
.he_c01202{height:25.942383px;}
.h14_c01202{height:26.595703px;}
.h11_c01202{height:27.377930px;}
.hc_c01202{height:28.166016px;}
.hd_c01202{height:28.942383px;}
.h9_c01202{height:29.724609px;}
.h8_c01202{height:35.982422px;}
.h17_c01202{height:36.281250px;}
.h15_c01202{height:36.319336px;}
.h16_c01202{height:38.542969px;}
.h1c_c01202{height:39.111328px;}
.h18_c01202{height:40.766602px;}
.hf_c01202{height:43.804688px;}
.ha_c01202{height:45.369141px;}
.h2b_c01202{height:51.626953px;}
.h26_c01202{height:52.261963px;}
.h25_c01202{height:52.998047px;}
.h29_c01202{height:53.191406px;}
.h1b_c01202{height:53.734131px;}
.h2d_c01202{height:54.421875px;}
.h23_c01202{height:54.470215px;}
.h19_c01202{height:55.206299px;}
.h1a_c01202{height:55.538086px;}
.h20_c01202{height:55.590820px;}
.h28_c01202{height:55.942383px;}
.h24_c01202{height:56.320312px;}
.h22_c01202{height:56.332031px;}
.h1d_c01202{height:56.678467px;}
.h27_c01202{height:56.689453px;}
.h1e_c01202{height:57.073242px;}
.h1f_c01202{height:57.445312px;}
.h21_c01202{height:57.814453px;}
.h2a_c01202{height:58.555664px;}
.h30_c01202{height:63.271729px;}
.h7_c01202{height:68.835938px;}
.h33_c01202{height:71.964844px;}
.h2f_c01202{height:73.529297px;}
.h2c_c01202{height:75.093750px;}
.h5_c01202{height:75.816650px;}
.h2e_c01202{height:77.440430px;}
.h2_c01202{height:78.760986px;}
.h3_c01202{height:80.969238px;}
.h4_c01202{height:81.632812px;}
.h6_c01202{height:82.133789px;}
.h1_c01202{height:85.412109px;}
.h34_c01202{height:89.956055px;}
.h36_c01202{height:90.738281px;}
.h31_c01202{height:108.729492px;}
.h35_c01202{height:126.720703px;}
.h32_c01202{height:144.711914px;}
.h37_c01202{height:195.556641px;}
.h0_c01202{height:892.500000px;}
.w0_c01202{width:1263.000000px;}
.x0_c01202{left:0.000000px;}
.x1_c01202{left:85.319250px;}
.xa_c01202{left:89.279250px;}
.xe_c01202{left:147.598500px;}
.x2_c01202{left:172.078815px;}
.x3_c01202{left:215.639100px;}
.xf_c01202{left:225.719535px;}
.xd_c01202{left:299.158785px;}
.x10_c01202{left:302.039385px;}
.x18_c01202{left:325.799535px;}
.x19_c01202{left:353.878950px;}
.x12_c01202{left:380.158785px;}
.x4_c01202{left:396.719100px;}
.x1a_c01202{left:439.199850px;}
.xb_c01202{left:448.199385px;}
.xc_c01202{left:457.559685px;}
.x11_c01202{left:461.878920px;}
.x1b_c01202{left:483.839535px;}
.x9_c01202{left:499.679670px;}
.x5_c01202{left:508.319820px;}
.x6_c01202{left:533.518620px;}
.x13_c01202{left:535.319820px;}
.x15_c01202{left:615.238770px;}
.x16_c01202{left:693.719100px;}
.x14_c01202{left:697.319820px;}
.x7_c01202{left:749.518620px;}
.x17_c01202{left:770.038965px;}
.x8_c01202{left:778.679070px;}
.x53_c01202{left:911.159370px;}
.x57_c01202{left:912.599670px;}
.x54_c01202{left:918.359250px;}
.x1f_c01202{left:920.520630px;}
.x52_c01202{left:923.759490px;}
.x50_c01202{left:925.199805px;}
.x51_c01202{left:928.078770px;}
.x55_c01202{left:932.399865px;}
.x34_c01202{left:940.679070px;}
.x43_c01202{left:945.359250px;}
.x56_c01202{left:948.599115px;}
.x24_c01202{left:950.759490px;}
.x1c_c01202{left:957.959385px;}
.x35_c01202{left:960.838530px;}
.x2d_c01202{left:979.199805px;}
.x38_c01202{left:981.358605px;}
.x25_c01202{left:990.359805px;}
.x44_c01202{left:998.279850px;}
.x1d_c01202{left:999.359250px;}
.x39_c01202{left:1002.958275px;}
.x26_c01202{left:1004.759490px;}
.x3f_c01202{left:1007.638545px;}
.x2e_c01202{left:1011.598575px;}
.x22_c01202{left:1012.679715px;}
.x45_c01202{left:1018.079955px;}
.x2f_c01202{left:1021.319820px;}
.x40_c01202{left:1023.839535px;}
.x23_c01202{left:1028.878965px;}
.x46_c01202{left:1031.398590px;}
.x4e_c01202{left:1034.638545px;}
.x1e_c01202{left:1038.598575px;}
.x30_c01202{left:1040.759040px;}
.x47_c01202{left:1045.798560px;}
.x48_c01202{left:1052.279850px;}
.x36_c01202{left:1057.678530px;}
.x49_c01202{left:1063.439670px;}
.x3a_c01202{left:1071.359805px;}
.x4a_c01202{left:1073.879520px;}
.x4b_c01202{left:1080.359250px;}
.x3b_c01202{left:1090.078770px;}
.x41_c01202{left:1095.119940px;}
.x4c_c01202{left:1097.998905px;}
.x3d_c01202{left:1109.158815px;}
.x4f_c01202{left:1122.479190px;}
.x31_c01202{left:1136.519715px;}
.x27_c01202{left:1137.599025px;}
.x29_c01202{left:1140.118740px;}
.x3e_c01202{left:1146.598575px;}
.x32_c01202{left:1150.199340px;}
.x42_c01202{left:1154.159370px;}
.x2a_c01202{left:1157.039985px;}
.x20_c01202{left:1163.519715px;}
.x37_c01202{left:1168.559055px;}
.x21_c01202{left:1176.838530px;}
.x2b_c01202{left:1184.039985px;}
.x28_c01202{left:1189.438665px;}
.x2c_c01202{left:1194.838905px;}
.x33_c01202{left:1196.279205px;}
.x3c_c01202{left:1205.278755px;}
.x4d_c01202{left:1209.238770px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls40_c01202{letter-spacing:-19.233333pt;}
.ls2c_c01202{letter-spacing:-15.063200pt;}
.ls3f_c01202{letter-spacing:-14.732773pt;}
.ls39_c01202{letter-spacing:-13.894667pt;}
.ls2b_c01202{letter-spacing:-12.468867pt;}
.ls25_c01202{letter-spacing:-10.620353pt;}
.ls2a_c01202{letter-spacing:-10.108800pt;}
.lsd_c01202{letter-spacing:-6.579300pt;}
.ls1b_c01202{letter-spacing:-6.347000pt;}
.ls29_c01202{letter-spacing:-5.835000pt;}
.ls36_c01202{letter-spacing:-5.625000pt;}
.ls32_c01202{letter-spacing:-4.798533pt;}
.ls27_c01202{letter-spacing:-4.377600pt;}
.ls1c_c01202{letter-spacing:-4.333333pt;}
.ls3b_c01202{letter-spacing:-4.055200pt;}
.ls22_c01202{letter-spacing:-4.053933pt;}
.ls23_c01202{letter-spacing:-4.053333pt;}
.ls10_c01202{letter-spacing:-3.524867pt;}
.ls3e_c01202{letter-spacing:-3.511860pt;}
.ls26_c01202{letter-spacing:-3.426133pt;}
.ls30_c01202{letter-spacing:-3.423933pt;}
.ls18_c01202{letter-spacing:-3.316133pt;}
.ls3a_c01202{letter-spacing:-3.191073pt;}
.ls7_c01202{letter-spacing:-2.963400pt;}
.ls37_c01202{letter-spacing:-2.900000pt;}
.ls19_c01202{letter-spacing:-2.779933pt;}
.ls21_c01202{letter-spacing:-2.739933pt;}
.ls33_c01202{letter-spacing:-2.629920pt;}
.ls6_c01202{letter-spacing:-2.625067pt;}
.ls2d_c01202{letter-spacing:-2.594933pt;}
.ls34_c01202{letter-spacing:-2.565000pt;}
.ls1d_c01202{letter-spacing:-2.530000pt;}
.ls3c_c01202{letter-spacing:-2.433333pt;}
.ls11_c01202{letter-spacing:-2.277333pt;}
.ls35_c01202{letter-spacing:-2.229400pt;}
.ls28_c01202{letter-spacing:-2.058600pt;}
.lsf_c01202{letter-spacing:-1.948133pt;}
.ls24_c01202{letter-spacing:-1.925513pt;}
.ls31_c01202{letter-spacing:-1.823520pt;}
.ls2f_c01202{letter-spacing:-1.800480pt;}
.lsc_c01202{letter-spacing:-1.744820pt;}
.ls20_c01202{letter-spacing:-1.372400pt;}
.ls3d_c01202{letter-spacing:-1.372320pt;}
.lsb_c01202{letter-spacing:-0.740667pt;}
.ls1f_c01202{letter-spacing:-0.686200pt;}
.ls38_c01202{letter-spacing:-0.633333pt;}
.ls14_c01202{letter-spacing:-0.597333pt;}
.ls5_c01202{letter-spacing:-0.549180pt;}
.lsa_c01202{letter-spacing:0.000000pt;}
.ls15_c01202{letter-spacing:0.593780pt;}
.ls1_c01202{letter-spacing:0.686200pt;}
.ls9_c01202{letter-spacing:0.763200pt;}
.ls1a_c01202{letter-spacing:0.845867pt;}
.ls0_c01202{letter-spacing:1.372400pt;}
.ls13_c01202{letter-spacing:1.778400pt;}
.ls17_c01202{letter-spacing:1.946200pt;}
.ls2_c01202{letter-spacing:2.058600pt;}
.ls4_c01202{letter-spacing:2.739933pt;}
.ls8_c01202{letter-spacing:3.704067pt;}
.ls3_c01202{letter-spacing:5.484733pt;}
.lse_c01202{letter-spacing:5.818667pt;}
.ls1e_c01202{letter-spacing:6.214867pt;}
.ls2e_c01202{letter-spacing:6.696000pt;}
.ls16_c01202{letter-spacing:50.423467pt;}
.ls12_c01202{letter-spacing:63.723893pt;}
.ws0_c01202{word-spacing:0.000000pt;}
._14_c01202{margin-left:-35.536647pt;}
._15_c01202{margin-left:-9.125084pt;}
._13_c01202{margin-left:-7.416430pt;}
._f_c01202{margin-left:-6.375073pt;}
._2_c01202{margin-left:-5.071750pt;}
._12_c01202{margin-left:-3.508401pt;}
._6_c01202{margin-left:-2.535383pt;}
._8_c01202{margin-left:-0.924817pt;}
._5_c01202{width:1.167973pt;}
._3_c01202{width:2.710473pt;}
._4_c01202{width:4.389500pt;}
._d_c01202{width:5.304955pt;}
._e_c01202{width:6.365847pt;}
._7_c01202{width:7.588559pt;}
._c_c01202{width:8.969363pt;}
._b_c01202{width:9.966741pt;}
._a_c01202{width:14.303394pt;}
._9_c01202{width:16.692530pt;}
._10_c01202{width:18.702847pt;}
._11_c01202{width:20.858547pt;}
._0_c01202{width:28.629200pt;}
._1_c01202{width:33.571556pt;}
.fsa_c01202{font-size:10.666667pt;}
.fse_c01202{font-size:17.333333pt;}
.fs10_c01202{font-size:21.333333pt;}
.fsf_c01202{font-size:22.000000pt;}
.fs11_c01202{font-size:22.666667pt;}
.fsc_c01202{font-size:23.333333pt;}
.fsb_c01202{font-size:24.666667pt;}
.fs8_c01202{font-size:25.333333pt;}
.fs7_c01202{font-size:30.666667pt;}
.fs14_c01202{font-size:32.000000pt;}
.fs12_c01202{font-size:32.666667pt;}
.fs19_c01202{font-size:33.333333pt;}
.fs13_c01202{font-size:34.666667pt;}
.fs15_c01202{font-size:36.666667pt;}
.fsd_c01202{font-size:37.333333pt;}
.fs9_c01202{font-size:38.666667pt;}
.fs21_c01202{font-size:44.000000pt;}
.fs1f_c01202{font-size:45.333333pt;}
.fs17_c01202{font-size:47.333333pt;}
.fs1e_c01202{font-size:48.000000pt;}
.fs18_c01202{font-size:48.666667pt;}
.fs1d_c01202{font-size:49.333333pt;}
.fs16_c01202{font-size:50.000000pt;}
.fs1b_c01202{font-size:50.666667pt;}
.fs1a_c01202{font-size:51.333333pt;}
.fs1c_c01202{font-size:52.000000pt;}
.fs20_c01202{font-size:52.666667pt;}
.fs25_c01202{font-size:57.333333pt;}
.fs6_c01202{font-size:58.666667pt;}
.fs28_c01202{font-size:61.333333pt;}
.fs24_c01202{font-size:62.666667pt;}
.fs22_c01202{font-size:64.000000pt;}
.fs23_c01202{font-size:66.000000pt;}
.fs4_c01202{font-size:68.666667pt;}
.fs5_c01202{font-size:70.000000pt;}
.fs1_c01202{font-size:71.333333pt;}
.fs3_c01202{font-size:72.000000pt;}
.fs2_c01202{font-size:73.333333pt;}
.fs0_c01202{font-size:75.333333pt;}
.fs29_c01202{font-size:76.666667pt;}
.fs2b_c01202{font-size:77.333333pt;}
.fs26_c01202{font-size:92.666667pt;}
.fs2a_c01202{font-size:108.000000pt;}
.fs27_c01202{font-size:123.333333pt;}
.fs2c_c01202{font-size:166.666667pt;}
.y0_c01202{bottom:0.000000pt;}
.ya_c01202{bottom:33.974387pt;}
.y9_c01202{bottom:40.055053pt;}
.y7_c01202{bottom:41.974000pt;}
.y6_c01202{bottom:43.894387pt;}
.y8_c01202{bottom:46.454933pt;}
.y5_c01202{bottom:49.014000pt;}
.y3_c01202{bottom:50.934387pt;}
.y2_c01202{bottom:55.094520pt;}
.y4_c01202{bottom:57.334267pt;}
.y32_c01202{bottom:159.414933pt;}
.y31_c01202{bottom:185.333867pt;}
.y30_c01202{bottom:191.095053pt;}
.y2f_c01202{bottom:213.814773pt;}
.y2e_c01202{bottom:252.534907pt;}
.y2d_c01202{bottom:279.094093pt;}
.y2c_c01202{bottom:305.973973pt;}
.y2b_c01202{bottom:332.213720pt;}
.y2a_c01202{bottom:385.014000pt;}
.y29_c01202{bottom:438.773720pt;}
.y28_c01202{bottom:438.773880pt;}
.y27_c01202{bottom:451.575640pt;}
.y26_c01202{bottom:465.014933pt;}
.y25_c01202{bottom:478.134120pt;}
.y24_c01202{bottom:491.254640pt;}
.y23_c01202{bottom:504.373867pt;}
.y22_c01202{bottom:517.813840pt;}
.y21_c01202{bottom:517.814413pt;}
.y20_c01202{bottom:531.253707pt;}
.y1f_c01202{bottom:531.254440pt;}
.y1e_c01202{bottom:544.693720pt;}
.y1d_c01202{bottom:557.814253pt;}
.y1c_c01202{bottom:557.814947pt;}
.y1b_c01202{bottom:571.254227pt;}
.y1a_c01202{bottom:584.374800pt;}
.y19_c01202{bottom:584.375493pt;}
.y18_c01202{bottom:597.814773pt;}
.y17_c01202{bottom:597.815147pt;}
.y16_c01202{bottom:610.614507pt;}
.y15_c01202{bottom:624.054520pt;}
.y14_c01202{bottom:624.055013pt;}
.y12_c01202{bottom:636.854227pt;}
.y13_c01202{bottom:636.854373pt;}
.y11_c01202{bottom:650.613560pt;}
.y10_c01202{bottom:650.613733pt;}
.yf_c01202{bottom:663.734253pt;}
.yd_c01202{bottom:677.494867pt;}
.ye_c01202{bottom:677.494920pt;}
.yc_c01202{bottom:690.614093pt;}
.yb_c01202{bottom:703.734613pt;}
.y1_c01202{bottom:749.814213pt;}
.hb_c01202{height:11.125000pt;}
.h10_c01202{height:18.078125pt;}
.h13_c01202{height:21.500000pt;}
.h12_c01202{height:22.945312pt;}
.he_c01202{height:23.059896pt;}
.h14_c01202{height:23.640625pt;}
.h11_c01202{height:24.335938pt;}
.hc_c01202{height:25.036458pt;}
.hd_c01202{height:25.726562pt;}
.h9_c01202{height:26.421875pt;}
.h8_c01202{height:31.984375pt;}
.h17_c01202{height:32.250000pt;}
.h15_c01202{height:32.283854pt;}
.h16_c01202{height:34.260417pt;}
.h1c_c01202{height:34.765625pt;}
.h18_c01202{height:36.236979pt;}
.hf_c01202{height:38.937500pt;}
.ha_c01202{height:40.328125pt;}
.h2b_c01202{height:45.890625pt;}
.h26_c01202{height:46.455078pt;}
.h25_c01202{height:47.109375pt;}
.h29_c01202{height:47.281250pt;}
.h1b_c01202{height:47.763672pt;}
.h2d_c01202{height:48.375000pt;}
.h23_c01202{height:48.417969pt;}
.h19_c01202{height:49.072266pt;}
.h1a_c01202{height:49.367188pt;}
.h20_c01202{height:49.414063pt;}
.h28_c01202{height:49.726562pt;}
.h24_c01202{height:50.062500pt;}
.h22_c01202{height:50.072917pt;}
.h1d_c01202{height:50.380859pt;}
.h27_c01202{height:50.390625pt;}
.h1e_c01202{height:50.731771pt;}
.h1f_c01202{height:51.062500pt;}
.h21_c01202{height:51.390625pt;}
.h2a_c01202{height:52.049479pt;}
.h30_c01202{height:56.241536pt;}
.h7_c01202{height:61.187500pt;}
.h33_c01202{height:63.968750pt;}
.h2f_c01202{height:65.359375pt;}
.h2c_c01202{height:66.750000pt;}
.h5_c01202{height:67.392578pt;}
.h2e_c01202{height:68.835938pt;}
.h2_c01202{height:70.009766pt;}
.h3_c01202{height:71.972656pt;}
.h4_c01202{height:72.562500pt;}
.h6_c01202{height:73.007812pt;}
.h1_c01202{height:75.921875pt;}
.h34_c01202{height:79.960938pt;}
.h36_c01202{height:80.656250pt;}
.h31_c01202{height:96.648438pt;}
.h35_c01202{height:112.640625pt;}
.h32_c01202{height:128.632812pt;}
.h37_c01202{height:173.828125pt;}
.h0_c01202{height:793.333333pt;}
.w0_c01202{width:1122.666667pt;}
.x0_c01202{left:0.000000pt;}
.x1_c01202{left:75.839333pt;}
.xa_c01202{left:79.359333pt;}
.xe_c01202{left:131.198667pt;}
.x2_c01202{left:152.958947pt;}
.x3_c01202{left:191.679200pt;}
.xf_c01202{left:200.639587pt;}
.xd_c01202{left:265.918920pt;}
.x10_c01202{left:268.479453pt;}
.x18_c01202{left:289.599587pt;}
.x19_c01202{left:314.559067pt;}
.x12_c01202{left:337.918920pt;}
.x4_c01202{left:352.639200pt;}
.x1a_c01202{left:390.399867pt;}
.xb_c01202{left:398.399453pt;}
.xc_c01202{left:406.719720pt;}
.x11_c01202{left:410.559040pt;}
.x1b_c01202{left:430.079587pt;}
.x9_c01202{left:444.159707pt;}
.x5_c01202{left:451.839840pt;}
.x6_c01202{left:474.238773pt;}
.x13_c01202{left:475.839840pt;}
.x15_c01202{left:546.878907pt;}
.x16_c01202{left:616.639200pt;}
.x14_c01202{left:619.839840pt;}
.x7_c01202{left:666.238773pt;}
.x17_c01202{left:684.479080pt;}
.x8_c01202{left:692.159173pt;}
.x53_c01202{left:809.919440pt;}
.x57_c01202{left:811.199707pt;}
.x54_c01202{left:816.319333pt;}
.x1f_c01202{left:818.240560pt;}
.x52_c01202{left:821.119547pt;}
.x50_c01202{left:822.399827pt;}
.x51_c01202{left:824.958907pt;}
.x55_c01202{left:828.799880pt;}
.x34_c01202{left:836.159173pt;}
.x43_c01202{left:840.319333pt;}
.x56_c01202{left:843.199213pt;}
.x24_c01202{left:845.119547pt;}
.x1c_c01202{left:851.519453pt;}
.x35_c01202{left:854.078693pt;}
.x2d_c01202{left:870.399827pt;}
.x38_c01202{left:872.318760pt;}
.x25_c01202{left:880.319827pt;}
.x44_c01202{left:887.359867pt;}
.x1d_c01202{left:888.319333pt;}
.x39_c01202{left:891.518467pt;}
.x26_c01202{left:893.119547pt;}
.x3f_c01202{left:895.678707pt;}
.x2e_c01202{left:899.198733pt;}
.x22_c01202{left:900.159747pt;}
.x45_c01202{left:904.959960pt;}
.x2f_c01202{left:907.839840pt;}
.x40_c01202{left:910.079587pt;}
.x23_c01202{left:914.559080pt;}
.x46_c01202{left:916.798747pt;}
.x4e_c01202{left:919.678707pt;}
.x1e_c01202{left:923.198733pt;}
.x30_c01202{left:925.119147pt;}
.x47_c01202{left:929.598720pt;}
.x48_c01202{left:935.359867pt;}
.x36_c01202{left:940.158693pt;}
.x49_c01202{left:945.279707pt;}
.x3a_c01202{left:952.319827pt;}
.x4a_c01202{left:954.559573pt;}
.x4b_c01202{left:960.319333pt;}
.x3b_c01202{left:968.958907pt;}
.x41_c01202{left:973.439947pt;}
.x4c_c01202{left:975.999027pt;}
.x3d_c01202{left:985.918947pt;}
.x4f_c01202{left:997.759280pt;}
.x31_c01202{left:1010.239747pt;}
.x27_c01202{left:1011.199133pt;}
.x29_c01202{left:1013.438880pt;}
.x3e_c01202{left:1019.198733pt;}
.x32_c01202{left:1022.399413pt;}
.x42_c01202{left:1025.919440pt;}
.x2a_c01202{left:1028.479987pt;}
.x20_c01202{left:1034.239747pt;}
.x37_c01202{left:1038.719160pt;}
.x21_c01202{left:1046.078693pt;}
.x2b_c01202{left:1052.479987pt;}
.x28_c01202{left:1057.278813pt;}
.x2c_c01202{left:1062.079027pt;}
.x33_c01202{left:1063.359293pt;}
.x3c_c01202{left:1071.358893pt;}
.x4d_c01202{left:1074.878907pt;}
}





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

.ir_c01203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_8cb42c743814f322cb6a6ed9.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01203;src:url('chunks/assets/font_cc5cdfc331ecc49e90e33694.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01203;src:url('chunks/assets/font_77da1b67f6046503d994f1da.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01203;src:url('chunks/assets/font_79fc2bed25c1b92f8578521d.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01203;src:url('chunks/assets/font_1f7944db8aff657f6b4fd1f6.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01203;src:url('chunks/assets/font_6523b87875a8ce942e13ba4b.woff2')format("woff");}.ff6_c01203{font-family:ff6_c01203;line-height:1.432129;font-style:normal;font-weight: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_c01203;src:url('chunks/assets/font_d1412b32a46e20699bedbf30.woff2')format("woff");}.ff7_c01203{font-family:ff7_c01203;line-height:1.284668;font-style:normal;font-weight: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_c01203;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c01203{font-family:ff8_c01203;line-height:1.364746;font-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_c01203{transform:matrix(0.132812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132812,0.000000,0.000000,0.250000,0,0);}
.m2d_c01203{transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133784,0.000000,0.000000,0.250000,0,0);}
.ma_c01203{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m2e_c01203{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m1c_c01203{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m12_c01203{transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);}
.m6_c01203{transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206019,0.000000,0.000000,0.250000,0,0);}
.m2c_c01203{transform:matrix(0.209239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209239,0.000000,0.000000,0.250000,0,0);}
.m2_c01203{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m5_c01203{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m13_c01203{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m4_c01203{transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214623,0.000000,0.000000,0.250000,0,0);}
.m3_c01203{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m1e_c01203{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_c01203{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m7_c01203{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m23_c01203{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m20_c01203{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m22_c01203{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m1f_c01203{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.mf_c01203{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1b_c01203{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m29_c01203{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m24_c01203{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m28_c01203{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m17_c01203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01203{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_c01203{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m27_c01203{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m26_c01203{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m2a_c01203{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m15_c01203{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);}
.m25_c01203{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m16_c01203{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);}
.m18_c01203{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me_c01203{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.md_c01203{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m1_c01203{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_c01203{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m0_c01203{transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297727,0.000000,0.000000,0.250000,0,0);}
.mb_c01203{transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);}
.m1d_c01203{transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);}
.m11_c01203{transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);}
.m10_c01203{transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385714,0.000000,0.000000,0.250000,0,0);}
.m9_c01203{transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714286,0.000000,0.000000,0.250000,0,0);}
.m2b_c01203{transform:matrix(0.913514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.913514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.913514,0.000000,0.000000,0.250000,0,0);}
.m8_c01203{transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942029,0.000000,0.000000,0.250000,0,0);}
.v0_c01203{vertical-align:0.000000px;}
.ls22_c01203{letter-spacing:-10.140600px;}
.ls1b_c01203{letter-spacing:-6.404700px;}
.ls1f_c01203{letter-spacing:-6.329400px;}
.ls17_c01203{letter-spacing:-5.884125px;}
.ls13_c01203{letter-spacing:-5.761875px;}
.lsf_c01203{letter-spacing:-5.400000px;}
.ls25_c01203{letter-spacing:-5.331150px;}
.ls28_c01203{letter-spacing:-4.989600px;}
.ls23_c01203{letter-spacing:-3.955800px;}
.ls10_c01203{letter-spacing:-3.887625px;}
.ls19_c01203{letter-spacing:-3.588255px;}
.ls2c_c01203{letter-spacing:-3.581100px;}
.ls26_c01203{letter-spacing:-3.417660px;}
.ls20_c01203{letter-spacing:-3.169050px;}
.ls16_c01203{letter-spacing:-2.999100px;}
.ls11_c01203{letter-spacing:-2.873850px;}
.ls27_c01203{letter-spacing:-2.850000px;}
.ls2b_c01203{letter-spacing:-2.846250px;}
.ls12_c01203{letter-spacing:-2.625262px;}
.ls7_c01203{letter-spacing:-2.623500px;}
.ls1d_c01203{letter-spacing:-2.315925px;}
.ls2a_c01203{letter-spacing:-2.314350px;}
.ls18_c01203{letter-spacing:-2.247750px;}
.ls24_c01203{letter-spacing:-1.704375px;}
.ls1c_c01203{letter-spacing:-1.543950px;}
.ls29_c01203{letter-spacing:-1.518188px;}
.ls21_c01203{letter-spacing:-1.497945px;}
.ls15_c01203{letter-spacing:-1.365375px;}
.ls4_c01203{letter-spacing:-1.290000px;}
.ls9_c01203{letter-spacing:-0.907200px;}
.ls1a_c01203{letter-spacing:-0.771975px;}
.lse_c01203{letter-spacing:-0.660450px;}
.lsd_c01203{letter-spacing:-0.658800px;}
.lsa_c01203{letter-spacing:0.000000px;}
.ls14_c01203{letter-spacing:0.693375px;}
.ls0_c01203{letter-spacing:0.771975px;}
.ls2_c01203{letter-spacing:1.543950px;}
.ls6_c01203{letter-spacing:1.719570px;}
.ls8_c01203{letter-spacing:1.757250px;}
.ls5_c01203{letter-spacing:1.773225px;}
.ls1_c01203{letter-spacing:2.315925px;}
.ls1e_c01203{letter-spacing:3.082425px;}
.ls3_c01203{letter-spacing:3.779325px;}
.lsc_c01203{letter-spacing:136.941600px;}
.lsb_c01203{letter-spacing:356.400202px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01203{word-spacing:0.000000px;}
._10_c01203{margin-left:-66.125755px;}
._f_c01203{margin-left:-31.619251px;}
._6_c01203{margin-left:-28.393905px;}
._e_c01203{margin-left:-9.164842px;}
._7_c01203{margin-left:-7.391250px;}
._0_c01203{margin-left:-5.502159px;}
._5_c01203{margin-left:-3.816353px;}
._1_c01203{margin-left:-1.806719px;}
._2_c01203{width:1.259219px;}
._8_c01203{width:2.261067px;}
._4_c01203{width:3.581205px;}
._3_c01203{width:5.009239px;}
._a_c01203{width:7.780145px;}
._9_c01203{width:8.814411px;}
._b_c01203{width:9.822566px;}
._c_c01203{width:10.922332px;}
._d_c01203{width:13.178695px;}
.fc0_c01203{color:transparent;}
.fs8_c01203{font-size:15.750000px;}
.fs9_c01203{font-size:20.250000px;}
.fsa_c01203{font-size:24.000000px;}
.fsd_c01203{font-size:26.250000px;}
.fsb_c01203{font-size:27.000000px;}
.fsc_c01203{font-size:27.750000px;}
.fse_c01203{font-size:28.500000px;}
.fsf_c01203{font-size:34.500000px;}
.fs12_c01203{font-size:36.000000px;}
.fs13_c01203{font-size:36.750000px;}
.fs10_c01203{font-size:37.500000px;}
.fs11_c01203{font-size:39.000000px;}
.fs15_c01203{font-size:49.500000px;}
.fs7_c01203{font-size:51.750000px;}
.fs1c_c01203{font-size:53.250000px;}
.fs1d_c01203{font-size:54.000000px;}
.fs16_c01203{font-size:54.750000px;}
.fs14_c01203{font-size:55.500000px;}
.fs18_c01203{font-size:56.250000px;}
.fs1b_c01203{font-size:57.000000px;}
.fs19_c01203{font-size:57.750000px;}
.fs1a_c01203{font-size:60.000000px;}
.fs17_c01203{font-size:66.000000px;}
.fs1f_c01203{font-size:69.000000px;}
.fs1_c01203{font-size:75.000000px;}
.fs4_c01203{font-size:79.500000px;}
.fs5_c01203{font-size:81.000000px;}
.fs6_c01203{font-size:81.750000px;}
.fs0_c01203{font-size:82.500000px;}
.fs2_c01203{font-size:83.250000px;}
.fs3_c01203{font-size:93.000000px;}
.fs20_c01203{font-size:121.500000px;}
.fs1e_c01203{font-size:138.750000px;}
.y0_c01203{bottom:0.000000px;}
.y4_c01203{bottom:43.620000px;}
.y3_c01203{bottom:52.980285px;}
.y2_c01203{bottom:60.541050px;}
.y1b_c01203{bottom:513.420600px;}
.y1a_c01203{bottom:542.940255px;}
.y19_c01203{bottom:602.340585px;}
.y18_c01203{bottom:602.341365px;}
.y16_c01203{bottom:617.459910px;}
.y17_c01203{bottom:617.460570px;}
.y15_c01203{bottom:632.219025px;}
.y13_c01203{bottom:646.620855px;}
.y14_c01203{bottom:646.621035px;}
.y12_c01203{bottom:661.379970px;}
.y11_c01203{bottom:661.380750px;}
.y10_c01203{bottom:676.499955px;}
.ye_c01203{bottom:691.260540px;}
.yf_c01203{bottom:691.260720px;}
.yd_c01203{bottom:706.019670px;}
.yc_c01203{bottom:706.020720px;}
.yb_c01203{bottom:721.139925px;}
.ya_c01203{bottom:736.620435px;}
.y9_c01203{bottom:751.381170px;}
.y8_c01203{bottom:751.382040px;}
.y7_c01203{bottom:766.501230px;}
.y6_c01203{bottom:781.260360px;}
.y5_c01203{bottom:796.740870px;}
.y1_c01203{bottom:847.860255px;}
.h9_c01203{height:16.426758px;}
.ha_c01203{height:19.864380px;}
.hc_c01203{height:24.187500px;}
.hb_c01203{height:25.031250px;}
.hf_c01203{height:27.377930px;}
.hd_c01203{height:28.160156px;}
.he_c01203{height:28.942383px;}
.h10_c01203{height:29.724609px;}
.h11_c01203{height:34.095703px;}
.h14_c01203{height:36.281250px;}
.h15_c01203{height:37.037109px;}
.h16_c01203{height:37.060547px;}
.h12_c01203{height:37.792969px;}
.h13_c01203{height:38.542969px;}
.h18_c01203{height:51.626953px;}
.h23_c01203{height:52.998047px;}
.h19_c01203{height:53.734131px;}
.h8_c01203{height:53.973633px;}
.h17_c01203{height:54.470215px;}
.h1a_c01203{height:54.849609px;}
.h1c_c01203{height:55.206299px;}
.h22_c01203{height:55.538086px;}
.h1e_c01203{height:55.933594px;}
.h24_c01203{height:55.942383px;}
.h1d_c01203{height:56.678467px;}
.h21_c01203{height:56.689453px;}
.h20_c01203{height:57.445312px;}
.h1f_c01203{height:59.296875px;}
.h1b_c01203{height:68.835938px;}
.h26_c01203{height:71.964844px;}
.h2_c01203{height:78.222656px;}
.h5_c01203{height:80.121094px;}
.h6_c01203{height:81.632812px;}
.h7_c01203{height:82.388672px;}
.h1_c01203{height:83.144531px;}
.h3_c01203{height:83.900391px;}
.h4_c01203{height:91.910156px;}
.h27_c01203{height:126.720703px;}
.h25_c01203{height:144.711914px;}
.h0_c01203{height:892.500000px;}
.w0_c01203{width:1263.000000px;}
.x0_c01203{left:0.000000px;}
.x1_c01203{left:80.639100px;}
.x9_c01203{left:86.398665px;}
.xd_c01203{left:152.998950px;}
.x2_c01203{left:168.118815px;}
.x3_c01203{left:211.319850px;}
.xe_c01203{left:231.479235px;}
.xa_c01203{left:235.080000px;}
.x4_c01203{left:261.359850px;}
.x5_c01203{left:298.799535px;}
.xf_c01203{left:308.159850px;}
.x16_c01203{left:351.359235px;}
.x17_c01203{left:379.079385px;}
.x10_c01203{left:386.638500px;}
.x6_c01203{left:395.998950px;}
.x18_c01203{left:425.159415px;}
.x7_c01203{left:444.598530px;}
.x11_c01203{left:466.199850px;}
.x19_c01203{left:467.279250px;}
.x1a_c01203{left:510.478635px;}
.x8_c01203{left:541.079400px;}
.x12_c01203{left:542.158770px;}
.x1b_c01203{left:561.599670px;}
.x13_c01203{left:622.079400px;}
.xb_c01203{left:661.679670px;}
.x14_c01203{left:699.119385px;}
.x15_c01203{left:776.879520px;}
.xc_c01203{left:780.478635px;}
.x21_c01203{left:925.559235px;}
.x2f_c01203{left:927.358605px;}
.x3b_c01203{left:935.998905px;}
.x2c_c01203{left:943.198785px;}
.x29_c01203{left:958.318815px;}
.x30_c01203{left:960.119940px;}
.x1c_c01203{left:963.359805px;}
.x3a_c01203{left:966.958920px;}
.x2a_c01203{left:979.559055px;}
.x1d_c01203{left:980.638545px;}
.x2d_c01203{left:982.439670px;}
.x31_c01203{left:990.719055px;}
.x1e_c01203{left:1001.158815px;}
.x32_c01203{left:1005.479640px;}
.x37_c01203{left:1022.399235px;}
.x2b_c01203{left:1024.918950px;}
.x33_c01203{left:1034.279205px;}
.x35_c01203{left:1045.798560px;}
.x34_c01203{left:1047.599670px;}
.x27_c01203{left:1055.158815px;}
.x1f_c01203{left:1063.078770px;}
.x36_c01203{left:1072.079955px;}
.x38_c01203{left:1075.679070px;}
.x20_c01203{left:1076.758575px;}
.x22_c01203{left:1078.559685px;}
.x23_c01203{left:1084.678530px;}
.x28_c01203{left:1086.118740px;}
.x24_c01203{left:1094.038875px;}
.x39_c01203{left:1102.679070px;}
.x25_c01203{left:1107.000000px;}
.x26_c01203{left:1208.518620px;}
.x2e_c01203{left:1220.759490px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls22_c01203{letter-spacing:-9.013867pt;}
.ls1b_c01203{letter-spacing:-5.693067pt;}
.ls1f_c01203{letter-spacing:-5.626133pt;}
.ls17_c01203{letter-spacing:-5.230333pt;}
.ls13_c01203{letter-spacing:-5.121667pt;}
.lsf_c01203{letter-spacing:-4.800000pt;}
.ls25_c01203{letter-spacing:-4.738800pt;}
.ls28_c01203{letter-spacing:-4.435200pt;}
.ls23_c01203{letter-spacing:-3.516267pt;}
.ls10_c01203{letter-spacing:-3.455667pt;}
.ls19_c01203{letter-spacing:-3.189560pt;}
.ls2c_c01203{letter-spacing:-3.183200pt;}
.ls26_c01203{letter-spacing:-3.037920pt;}
.ls20_c01203{letter-spacing:-2.816933pt;}
.ls16_c01203{letter-spacing:-2.665867pt;}
.ls11_c01203{letter-spacing:-2.554533pt;}
.ls27_c01203{letter-spacing:-2.533333pt;}
.ls2b_c01203{letter-spacing:-2.530000pt;}
.ls12_c01203{letter-spacing:-2.333567pt;}
.ls7_c01203{letter-spacing:-2.332000pt;}
.ls1d_c01203{letter-spacing:-2.058600pt;}
.ls2a_c01203{letter-spacing:-2.057200pt;}
.ls18_c01203{letter-spacing:-1.998000pt;}
.ls24_c01203{letter-spacing:-1.515000pt;}
.ls1c_c01203{letter-spacing:-1.372400pt;}
.ls29_c01203{letter-spacing:-1.349500pt;}
.ls21_c01203{letter-spacing:-1.331507pt;}
.ls15_c01203{letter-spacing:-1.213667pt;}
.ls4_c01203{letter-spacing:-1.146667pt;}
.ls9_c01203{letter-spacing:-0.806400pt;}
.ls1a_c01203{letter-spacing:-0.686200pt;}
.lse_c01203{letter-spacing:-0.587067pt;}
.lsd_c01203{letter-spacing:-0.585600pt;}
.lsa_c01203{letter-spacing:0.000000pt;}
.ls14_c01203{letter-spacing:0.616333pt;}
.ls0_c01203{letter-spacing:0.686200pt;}
.ls2_c01203{letter-spacing:1.372400pt;}
.ls6_c01203{letter-spacing:1.528507pt;}
.ls8_c01203{letter-spacing:1.562000pt;}
.ls5_c01203{letter-spacing:1.576200pt;}
.ls1_c01203{letter-spacing:2.058600pt;}
.ls1e_c01203{letter-spacing:2.739933pt;}
.ls3_c01203{letter-spacing:3.359400pt;}
.lsc_c01203{letter-spacing:121.725867pt;}
.lsb_c01203{letter-spacing:316.800180pt;}
.ws0_c01203{word-spacing:0.000000pt;}
._10_c01203{margin-left:-58.778448pt;}
._f_c01203{margin-left:-28.106001pt;}
._6_c01203{margin-left:-25.239027pt;}
._e_c01203{margin-left:-8.146526pt;}
._7_c01203{margin-left:-6.570000pt;}
._0_c01203{margin-left:-4.890808pt;}
._5_c01203{margin-left:-3.392313pt;}
._1_c01203{margin-left:-1.605973pt;}
._2_c01203{width:1.119306pt;}
._8_c01203{width:2.009837pt;}
._4_c01203{width:3.183294pt;}
._3_c01203{width:4.452657pt;}
._a_c01203{width:6.915684pt;}
._9_c01203{width:7.835032pt;}
._b_c01203{width:8.731170pt;}
._c_c01203{width:9.708740pt;}
._d_c01203{width:11.714396pt;}
.fs8_c01203{font-size:14.000000pt;}
.fs9_c01203{font-size:18.000000pt;}
.fsa_c01203{font-size:21.333333pt;}
.fsd_c01203{font-size:23.333333pt;}
.fsb_c01203{font-size:24.000000pt;}
.fsc_c01203{font-size:24.666667pt;}
.fse_c01203{font-size:25.333333pt;}
.fsf_c01203{font-size:30.666667pt;}
.fs12_c01203{font-size:32.000000pt;}
.fs13_c01203{font-size:32.666667pt;}
.fs10_c01203{font-size:33.333333pt;}
.fs11_c01203{font-size:34.666667pt;}
.fs15_c01203{font-size:44.000000pt;}
.fs7_c01203{font-size:46.000000pt;}
.fs1c_c01203{font-size:47.333333pt;}
.fs1d_c01203{font-size:48.000000pt;}
.fs16_c01203{font-size:48.666667pt;}
.fs14_c01203{font-size:49.333333pt;}
.fs18_c01203{font-size:50.000000pt;}
.fs1b_c01203{font-size:50.666667pt;}
.fs19_c01203{font-size:51.333333pt;}
.fs1a_c01203{font-size:53.333333pt;}
.fs17_c01203{font-size:58.666667pt;}
.fs1f_c01203{font-size:61.333333pt;}
.fs1_c01203{font-size:66.666667pt;}
.fs4_c01203{font-size:70.666667pt;}
.fs5_c01203{font-size:72.000000pt;}
.fs6_c01203{font-size:72.666667pt;}
.fs0_c01203{font-size:73.333333pt;}
.fs2_c01203{font-size:74.000000pt;}
.fs3_c01203{font-size:82.666667pt;}
.fs20_c01203{font-size:108.000000pt;}
.fs1e_c01203{font-size:123.333333pt;}
.y0_c01203{bottom:0.000000pt;}
.y4_c01203{bottom:38.773333pt;}
.y3_c01203{bottom:47.093587pt;}
.y2_c01203{bottom:53.814267pt;}
.y1b_c01203{bottom:456.373867pt;}
.y1a_c01203{bottom:482.613560pt;}
.y19_c01203{bottom:535.413853pt;}
.y18_c01203{bottom:535.414547pt;}
.y16_c01203{bottom:548.853253pt;}
.y17_c01203{bottom:548.853840pt;}
.y15_c01203{bottom:561.972467pt;}
.y13_c01203{bottom:574.774093pt;}
.y14_c01203{bottom:574.774253pt;}
.y12_c01203{bottom:587.893307pt;}
.y11_c01203{bottom:587.894000pt;}
.y10_c01203{bottom:601.333293pt;}
.ye_c01203{bottom:614.453813pt;}
.yf_c01203{bottom:614.453973pt;}
.yd_c01203{bottom:627.573040pt;}
.yc_c01203{bottom:627.573973pt;}
.yb_c01203{bottom:641.013267pt;}
.ya_c01203{bottom:654.773720pt;}
.y9_c01203{bottom:667.894373pt;}
.y8_c01203{bottom:667.895147pt;}
.y7_c01203{bottom:681.334427pt;}
.y6_c01203{bottom:694.453653pt;}
.y5_c01203{bottom:708.214107pt;}
.y1_c01203{bottom:753.653560pt;}
.h9_c01203{height:14.601562pt;}
.ha_c01203{height:17.657227pt;}
.hc_c01203{height:21.500000pt;}
.hb_c01203{height:22.250000pt;}
.hf_c01203{height:24.335938pt;}
.hd_c01203{height:25.031250pt;}
.he_c01203{height:25.726562pt;}
.h10_c01203{height:26.421875pt;}
.h11_c01203{height:30.307292pt;}
.h14_c01203{height:32.250000pt;}
.h15_c01203{height:32.921875pt;}
.h16_c01203{height:32.942708pt;}
.h12_c01203{height:33.593750pt;}
.h13_c01203{height:34.260417pt;}
.h18_c01203{height:45.890625pt;}
.h23_c01203{height:47.109375pt;}
.h19_c01203{height:47.763672pt;}
.h8_c01203{height:47.976562pt;}
.h17_c01203{height:48.417969pt;}
.h1a_c01203{height:48.755208pt;}
.h1c_c01203{height:49.072266pt;}
.h22_c01203{height:49.367188pt;}
.h1e_c01203{height:49.718750pt;}
.h24_c01203{height:49.726562pt;}
.h1d_c01203{height:50.380859pt;}
.h21_c01203{height:50.390625pt;}
.h20_c01203{height:51.062500pt;}
.h1f_c01203{height:52.708333pt;}
.h1b_c01203{height:61.187500pt;}
.h26_c01203{height:63.968750pt;}
.h2_c01203{height:69.531250pt;}
.h5_c01203{height:71.218750pt;}
.h6_c01203{height:72.562500pt;}
.h7_c01203{height:73.234375pt;}
.h1_c01203{height:73.906250pt;}
.h3_c01203{height:74.578125pt;}
.h4_c01203{height:81.697917pt;}
.h27_c01203{height:112.640625pt;}
.h25_c01203{height:128.632812pt;}
.h0_c01203{height:793.333333pt;}
.w0_c01203{width:1122.666667pt;}
.x0_c01203{left:0.000000pt;}
.x1_c01203{left:71.679200pt;}
.x9_c01203{left:76.798813pt;}
.xd_c01203{left:135.999067pt;}
.x2_c01203{left:149.438947pt;}
.x3_c01203{left:187.839867pt;}
.xe_c01203{left:205.759320pt;}
.xa_c01203{left:208.960000pt;}
.x4_c01203{left:232.319867pt;}
.x5_c01203{left:265.599587pt;}
.xf_c01203{left:273.919867pt;}
.x16_c01203{left:312.319320pt;}
.x17_c01203{left:336.959453pt;}
.x10_c01203{left:343.678667pt;}
.x6_c01203{left:351.999067pt;}
.x18_c01203{left:377.919480pt;}
.x7_c01203{left:395.198693pt;}
.x11_c01203{left:414.399867pt;}
.x19_c01203{left:415.359333pt;}
.x1a_c01203{left:453.758787pt;}
.x8_c01203{left:480.959467pt;}
.x12_c01203{left:481.918907pt;}
.x1b_c01203{left:499.199707pt;}
.x13_c01203{left:552.959467pt;}
.xb_c01203{left:588.159707pt;}
.x14_c01203{left:621.439453pt;}
.x15_c01203{left:690.559573pt;}
.xc_c01203{left:693.758787pt;}
.x21_c01203{left:822.719320pt;}
.x2f_c01203{left:824.318760pt;}
.x3b_c01203{left:831.999027pt;}
.x2c_c01203{left:838.398920pt;}
.x29_c01203{left:851.838947pt;}
.x30_c01203{left:853.439947pt;}
.x1c_c01203{left:856.319827pt;}
.x3a_c01203{left:859.519040pt;}
.x2a_c01203{left:870.719160pt;}
.x1d_c01203{left:871.678707pt;}
.x2d_c01203{left:873.279707pt;}
.x31_c01203{left:880.639160pt;}
.x1e_c01203{left:889.918947pt;}
.x32_c01203{left:893.759680pt;}
.x37_c01203{left:908.799320pt;}
.x2b_c01203{left:911.039067pt;}
.x33_c01203{left:919.359293pt;}
.x35_c01203{left:929.598720pt;}
.x34_c01203{left:931.199707pt;}
.x27_c01203{left:937.918947pt;}
.x1f_c01203{left:944.958907pt;}
.x36_c01203{left:952.959960pt;}
.x38_c01203{left:956.159173pt;}
.x20_c01203{left:957.118733pt;}
.x22_c01203{left:958.719720pt;}
.x23_c01203{left:964.158693pt;}
.x28_c01203{left:965.438880pt;}
.x24_c01203{left:972.479000pt;}
.x39_c01203{left:980.159173pt;}
.x25_c01203{left:984.000000pt;}
.x26_c01203{left:1074.238773pt;}
.x2e_c01203{left:1085.119547pt;}
}





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

.ir_c01204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_fb48f1c55bb8d1d5226c3b2e.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01204;src:url('chunks/assets/font_ba14fd4a40a599a474f070e3.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01204;src:url('chunks/assets/font_d6ca3779f265abd998e12afc.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01204;src:url('chunks/assets/font_b4ef77f62fa881880346deb1.woff2')format("woff");}.ff4_c01204{font-family:ff4_c01204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01204;src:url('chunks/assets/font_df4c5477072e50c996424e91.woff2')format("woff");}.ff5_c01204{font-family:ff5_c01204;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01204;src:url('chunks/assets/font_05e824b351ab5846857d2123.woff2')format("woff");}.ff6_c01204{font-family:ff6_c01204;line-height:1.284668;font-style:normal;font-weight: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_c01204;src:url('chunks/assets/font_d56d2d0bf1b13befb5e91850.woff2')format("woff");}.ff7_c01204{font-family:ff7_c01204;line-height:1.281250;font-style:normal;font-weight: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_c01204;src:url('chunks/assets/font_cffff102504ec33ab2a3a657.woff2')format("woff");}.ff8_c01204{font-family:ff8_c01204;line-height:1.284180;font-style:normal;font-weight: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_c01204;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff9_c01204{font-family:ff9_c01204;line-height:1.364746;font-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_c01204{transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);}
.m38_c01204{transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175676,0.000000,0.000000,0.250000,0,0);}
.m3b_c01204{transform:matrix(0.181507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181507,0.000000,0.000000,0.250000,0,0);}
.m4a_c01204{transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190299,0.000000,0.000000,0.250000,0,0);}
.m41_c01204{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m1f_c01204{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m7_c01204{transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200893,0.000000,0.000000,0.250000,0,0);}
.m33_c01204{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m3_c01204{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m2c_c01204{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m9_c01204{transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211712,0.000000,0.000000,0.250000,0,0);}
.m20_c01204{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m8_c01204{transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);}
.m3c_c01204{transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212963,0.000000,0.000000,0.250000,0,0);}
.m4_c01204{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);}
.m35_c01204{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m28_c01204{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m36_c01204{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_c01204{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m37_c01204{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m27_c01204{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m17_c01204{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m2e_c01204{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m11_c01204{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m6_c01204{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.mb_c01204{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m15_c01204{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m2d_c01204{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m26_c01204{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m40_c01204{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m42_c01204{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m3d_c01204{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m47_c01204{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m29_c01204{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m19_c01204{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m34_c01204{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m2b_c01204{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m2f_c01204{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m5_c01204{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.mf_c01204{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m21_c01204{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m1d_c01204{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m44_c01204{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m3e_c01204{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m45_c01204{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m1_c01204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m49_c01204{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m22_c01204{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m3f_c01204{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m30_c01204{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m2a_c01204{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m16_c01204{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.m1b_c01204{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m1a_c01204{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m25_c01204{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m23_c01204{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m31_c01204{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m13_c01204{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m32_c01204{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m3a_c01204{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m14_c01204{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m39_c01204{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_c01204{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m1e_c01204{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m12_c01204{transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282258,0.000000,0.000000,0.250000,0,0);}
.m24_c01204{transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286184,0.000000,0.000000,0.250000,0,0);}
.m0_c01204{transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287281,0.000000,0.000000,0.250000,0,0);}
.md_c01204{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m46_c01204{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.m48_c01204{transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319444,0.000000,0.000000,0.250000,0,0);}
.m1c_c01204{transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321918,0.000000,0.000000,0.250000,0,0);}
.m10_c01204{transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362069,0.000000,0.000000,0.250000,0,0);}
.m4b_c01204{transform:matrix(0.419065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419065,0.000000,0.000000,0.250000,0,0);}
.m43_c01204{transform:matrix(0.704861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704861,0.000000,0.000000,0.250000,0,0);}
.me_c01204{transform:matrix(4.351852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.351852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.351852,0.000000,0.000000,0.250000,0,0);}
.ma_c01204{transform:matrix(21.391667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(21.391667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(21.391667,0.000000,0.000000,0.250000,0,0);}
.v0_c01204{vertical-align:0.000000px;}
.ls21_c01204{letter-spacing:-13.254203px;}
.ls3f_c01204{letter-spacing:-12.326175px;}
.ls47_c01204{letter-spacing:-8.365800px;}
.ls2c_c01204{letter-spacing:-8.341808px;}
.ls0_c01204{letter-spacing:-7.831800px;}
.ls44_c01204{letter-spacing:-7.756313px;}
.ls3a_c01204{letter-spacing:-7.205648px;}
.ls26_c01204{letter-spacing:-6.930000px;}
.ls4f_c01204{letter-spacing:-6.714743px;}
.ls18_c01204{letter-spacing:-6.481853px;}
.ls1f_c01204{letter-spacing:-6.090300px;}
.ls23_c01204{letter-spacing:-5.765175px;}
.ls7_c01204{letter-spacing:-5.602800px;}
.ls4b_c01204{letter-spacing:-5.535225px;}
.ls2e_c01204{letter-spacing:-5.490158px;}
.ls49_c01204{letter-spacing:-5.331023px;}
.ls3e_c01204{letter-spacing:-5.162925px;}
.ls2d_c01204{letter-spacing:-5.042475px;}
.ls2a_c01204{letter-spacing:-4.989600px;}
.ls28_c01204{letter-spacing:-4.986930px;}
.ls3b_c01204{letter-spacing:-4.860000px;}
.ls45_c01204{letter-spacing:-4.829055px;}
.ls32_c01204{letter-spacing:-4.620000px;}
.ls46_c01204{letter-spacing:-4.519260px;}
.ls38_c01204{letter-spacing:-4.498725px;}
.ls27_c01204{letter-spacing:-4.440300px;}
.ls22_c01204{letter-spacing:-4.319775px;}
.ls36_c01204{letter-spacing:-4.212450px;}
.ls4e_c01204{letter-spacing:-3.939600px;}
.ls29_c01204{letter-spacing:-3.933000px;}
.ls2f_c01204{letter-spacing:-3.904500px;}
.ls3d_c01204{letter-spacing:-3.751800px;}
.ls1e_c01204{letter-spacing:-3.602550px;}
.ls30_c01204{letter-spacing:-3.563753px;}
.ls1d_c01204{letter-spacing:-3.493050px;}
.ls20_c01204{letter-spacing:-3.465128px;}
.ls37_c01204{letter-spacing:-3.124650px;}
.ls41_c01204{letter-spacing:-3.040845px;}
.ls4d_c01204{letter-spacing:-2.968200px;}
.ls1b_c01204{letter-spacing:-2.879850px;}
.ls35_c01204{letter-spacing:-2.847150px;}
.ls3c_c01204{letter-spacing:-2.802600px;}
.ls8_c01204{letter-spacing:-2.656508px;}
.ls2_c01204{letter-spacing:-2.550555px;}
.ls14_c01204{letter-spacing:-2.488200px;}
.ls25_c01204{letter-spacing:-2.252250px;}
.ls1c_c01204{letter-spacing:-2.163173px;}
.ls4c_c01204{letter-spacing:-1.761750px;}
.ls6_c01204{letter-spacing:-1.650000px;}
.ls2b_c01204{letter-spacing:-1.624095px;}
.ls40_c01204{letter-spacing:-1.584600px;}
.ls33_c01204{letter-spacing:-1.558673px;}
.lsd_c01204{letter-spacing:-1.552950px;}
.ls42_c01204{letter-spacing:-1.459200px;}
.ls19_c01204{letter-spacing:-1.440473px;}
.lse_c01204{letter-spacing:-0.828000px;}
.ls4a_c01204{letter-spacing:-0.759375px;}
.lsc_c01204{letter-spacing:-0.749835px;}
.ls1a_c01204{letter-spacing:-0.722700px;}
.lsa_c01204{letter-spacing:-0.560723px;}
.ls5_c01204{letter-spacing:0.000000px;}
.lsf_c01204{letter-spacing:0.664717px;}
.ls15_c01204{letter-spacing:0.694943px;}
.ls11_c01204{letter-spacing:0.695400px;}
.ls13_c01204{letter-spacing:0.720667px;}
.ls48_c01204{letter-spacing:0.722700px;}
.ls34_c01204{letter-spacing:0.729525px;}
.ls10_c01204{letter-spacing:0.749700px;}
.lsb_c01204{letter-spacing:1.546875px;}
.ls24_c01204{letter-spacing:1.764900px;}
.ls3_c01204{letter-spacing:1.805175px;}
.ls17_c01204{letter-spacing:2.151600px;}
.ls16_c01204{letter-spacing:2.344650px;}
.ls12_c01204{letter-spacing:2.440350px;}
.ls1_c01204{letter-spacing:3.752400px;}
.ls43_c01204{letter-spacing:4.041158px;}
.ls31_c01204{letter-spacing:4.972800px;}
.ls39_c01204{letter-spacing:6.011925px;}
.ls4_c01204{letter-spacing:6.038250px;}
.ls9_c01204{letter-spacing:225.400575px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01204{word-spacing:0.000000px;}
._8_c01204{margin-left:-7.844983px;}
._a_c01204{margin-left:-4.220533px;}
._b_c01204{margin-left:-1.746813px;}
._9_c01204{width:1.612128px;}
._d_c01204{width:3.305171px;}
._7_c01204{width:5.135608px;}
._6_c01204{width:6.516057px;}
._3_c01204{width:8.667645px;}
._1_c01204{width:10.066767px;}
._5_c01204{width:12.685229px;}
._4_c01204{width:14.029630px;}
._e_c01204{width:15.419012px;}
._c_c01204{width:17.213948px;}
._2_c01204{width:18.225929px;}
._0_c01204{width:27.373761px;}
.fc0_c01204{color:transparent;}
.fsa_c01204{font-size:17.250000px;}
.fsc_c01204{font-size:20.250000px;}
.fse_c01204{font-size:21.750000px;}
.fs9_c01204{font-size:22.500000px;}
.fs10_c01204{font-size:23.250000px;}
.fsf_c01204{font-size:24.000000px;}
.fsb_c01204{font-size:24.750000px;}
.fs11_c01204{font-size:25.500000px;}
.fs12_c01204{font-size:27.000000px;}
.fsd_c01204{font-size:28.500000px;}
.fs16_c01204{font-size:33.000000px;}
.fs14_c01204{font-size:36.750000px;}
.fs13_c01204{font-size:38.250000px;}
.fs15_c01204{font-size:39.000000px;}
.fs1a_c01204{font-size:39.750000px;}
.fs26_c01204{font-size:40.500000px;}
.fs1c_c01204{font-size:49.500000px;}
.fs18_c01204{font-size:50.250000px;}
.fs1e_c01204{font-size:51.750000px;}
.fs23_c01204{font-size:52.500000px;}
.fs21_c01204{font-size:53.250000px;}
.fs24_c01204{font-size:54.000000px;}
.fs17_c01204{font-size:54.750000px;}
.fs20_c01204{font-size:55.500000px;}
.fs22_c01204{font-size:56.250000px;}
.fs1b_c01204{font-size:57.000000px;}
.fs19_c01204{font-size:57.750000px;}
.fs1f_c01204{font-size:58.500000px;}
.fs1d_c01204{font-size:59.250000px;}
.fs25_c01204{font-size:60.750000px;}
.fs27_c01204{font-size:72.750000px;}
.fs4_c01204{font-size:75.000000px;}
.fs7_c01204{font-size:75.750000px;}
.fs1_c01204{font-size:79.500000px;}
.fs5_c01204{font-size:82.500000px;}
.fs8_c01204{font-size:83.250000px;}
.fs6_c01204{font-size:84.000000px;}
.fs3_c01204{font-size:84.750000px;}
.fs0_c01204{font-size:85.500000px;}
.fs2_c01204{font-size:94.500000px;}
.fs28_c01204{font-size:104.250000px;}
.y0_c01204{bottom:0.000000px;}
.y6_c01204{bottom:46.861500px;}
.y5_c01204{bottom:56.220150px;}
.y3_c01204{bottom:56.581050px;}
.y4_c01204{bottom:61.261185px;}
.y2_c01204{bottom:64.140150px;}
.y26_c01204{bottom:353.940285px;}
.y25_c01204{bottom:395.700390px;}
.y24_c01204{bottom:425.581650px;}
.y23_c01204{bottom:455.101755px;}
.y22_c01204{bottom:484.980285px;}
.y21_c01204{bottom:544.742295px;}
.y20_c01204{bottom:559.861500px;}
.y1f_c01204{bottom:574.261185px;}
.y1d_c01204{bottom:590.101140px;}
.y1e_c01204{bottom:590.101320px;}
.y1c_c01204{bottom:604.860255px;}
.y1b_c01204{bottom:604.860450px;}
.y19_c01204{bottom:619.620855px;}
.y1a_c01204{bottom:619.621035px;}
.y18_c01204{bottom:634.379970px;}
.y16_c01204{bottom:649.499475px;}
.y17_c01204{bottom:649.499955px;}
.y15_c01204{bottom:663.901470px;}
.y14_c01204{bottom:678.660420px;}
.y13_c01204{bottom:678.660600px;}
.y11_c01204{bottom:693.421035px;}
.y12_c01204{bottom:693.421185px;}
.y10_c01204{bottom:708.900285px;}
.yf_c01204{bottom:708.901065px;}
.ye_c01204{bottom:724.020270px;}
.yd_c01204{bottom:739.140105px;}
.yc_c01204{bottom:754.260135px;}
.yb_c01204{bottom:754.260780px;}
.ya_c01204{bottom:769.379970px;}
.y9_c01204{bottom:769.380255px;}
.y8_c01204{bottom:783.782220px;}
.y7_c01204{bottom:798.901425px;}
.y1_c01204{bottom:851.820465px;}
.hc_c01204{height:16.921509px;}
.hb_c01204{height:16.929932px;}
.he_c01204{height:21.120117px;}
.h10_c01204{height:22.684570px;}
.ha_c01204{height:23.466797px;}
.h12_c01204{height:24.249023px;}
.h11_c01204{height:25.031250px;}
.hd_c01204{height:25.813477px;}
.h14_c01204{height:26.485840px;}
.h13_c01204{height:26.595703px;}
.h15_c01204{height:27.957275px;}
.hf_c01204{height:28.166016px;}
.h19_c01204{height:34.417969px;}
.h17_c01204{height:37.037109px;}
.h18_c01204{height:38.542969px;}
.h16_c01204{height:38.548828px;}
.h32_c01204{height:40.816406px;}
.h1d_c01204{height:41.458008px;}
.h20_c01204{height:51.626953px;}
.h28_c01204{height:52.261963px;}
.h1b_c01204{height:52.409180px;}
.h2b_c01204{height:52.910156px;}
.h2d_c01204{height:52.998047px;}
.h2c_c01204{height:53.666016px;}
.h1a_c01204{height:53.734131px;}
.h22_c01204{height:53.973633px;}
.h2e_c01204{height:54.108398px;}
.h25_c01204{height:54.470215px;}
.h29_c01204{height:55.206299px;}
.h30_c01204{height:55.590820px;}
.h2a_c01204{height:55.933594px;}
.h1f_c01204{height:55.942383px;}
.h31_c01204{height:56.320312px;}
.h27_c01204{height:56.650269px;}
.h1e_c01204{height:56.678467px;}
.h1c_c01204{height:57.073242px;}
.h24_c01204{height:57.414551px;}
.h23_c01204{height:57.445312px;}
.h26_c01204{height:58.201172px;}
.h21_c01204{height:58.555664px;}
.h2f_c01204{height:59.593140px;}
.h33_c01204{height:75.875977px;}
.h5_c01204{height:78.222656px;}
.h8_c01204{height:79.004883px;}
.h2_c01204{height:82.916016px;}
.h6_c01204{height:83.144531px;}
.h9_c01204{height:83.900391px;}
.h7_c01204{height:84.656250px;}
.h4_c01204{height:85.412109px;}
.h1_c01204{height:86.167969px;}
.h3_c01204{height:93.392578px;}
.h34_c01204{height:108.729492px;}
.h0_c01204{height:892.500000px;}
.w0_c01204{width:1263.000000px;}
.x0_c01204{left:0.000000px;}
.x1_c01204{left:86.759565px;}
.xb_c01204{left:92.159850px;}
.xe_c01204{left:154.439250px;}
.xc_c01204{left:157.319850px;}
.x2_c01204{left:175.318800px;}
.xd_c01204{left:197.638500px;}
.x3_c01204{left:218.158785px;}
.x10_c01204{left:233.278800px;}
.x4_c01204{left:267.478635px;}
.x5_c01204{left:304.918350px;}
.x11_c01204{left:309.598530px;}
.x18_c01204{left:332.999385px;}
.x19_c01204{left:361.439685px;}
.x12_c01204{left:388.078815px;}
.x6_c01204{left:401.758530px;}
.x1a_c01204{left:406.799565px;}
.x7_c01204{left:426.238770px;}
.x1b_c01204{left:446.399820px;}
.x13_c01204{left:464.759535px;}
.x1c_c01204{left:490.319235px;}
.x14_c01204{left:543.239820px;}
.x8_c01204{left:597.599070px;}
.x15_c01204{left:622.438620px;}
.x9_c01204{left:645.119385px;}
.xa_c01204{left:673.198785px;}
.x16_c01204{left:698.758530px;}
.xf_c01204{left:740.519070px;}
.x17_c01204{left:776.159370px;}
.x63_c01204{left:921.599115px;}
.x20_c01204{left:923.399055px;}
.x41_c01204{left:925.199805px;}
.x61_c01204{left:930.959385px;}
.x45_c01204{left:935.998905px;}
.x2a_c01204{left:943.559685px;}
.x5c_c01204{left:948.239865px;}
.x56_c01204{left:952.199805px;}
.x1d_c01204{left:961.558590px;}
.x62_c01204{left:964.079955px;}
.x64_c01204{left:965.518620px;}
.x34_c01204{left:967.319820px;}
.x57_c01204{left:970.918950px;}
.x46_c01204{left:973.079400px;}
.x21_c01204{left:979.559055px;}
.x3d_c01204{left:984.239220px;}
.x4c_c01204{left:988.558590px;}
.x47_c01204{left:990.719055px;}
.x22_c01204{left:993.238770px;}
.x5d_c01204{left:1001.519715px;}
.x3e_c01204{left:1004.398590px;}
.x58_c01204{left:1009.798920px;}
.x23_c01204{left:1014.479190px;}
.x5e_c01204{left:1016.278755px;}
.x59_c01204{left:1019.879520px;}
.x35_c01204{left:1021.679070px;}
.x51_c01204{left:1025.639100px;}
.x54_c01204{left:1031.759490px;}
.x36_c01204{left:1034.279205px;}
.x3f_c01204{left:1040.759040px;}
.x4d_c01204{left:1045.079955px;}
.x2b_c01204{left:1046.159370px;}
.x37_c01204{left:1049.399235px;}
.x48_c01204{left:1054.079400px;}
.x40_c01204{left:1066.318815px;}
.x31_c01204{left:1086.479640px;}
.x38_c01204{left:1092.959385px;}
.x2c_c01204{left:1097.639655px;}
.x52_c01204{left:1098.719055px;}
.x4e_c01204{left:1101.599670px;}
.x39_c01204{left:1103.399235px;}
.x42_c01204{left:1108.079400px;}
.x2d_c01204{left:1110.599025px;}
.x32_c01204{left:1114.918305px;}
.x53_c01204{left:1115.999355px;}
.x43_c01204{left:1118.519070px;}
.x27_c01204{left:1133.279850px;}
.x4f_c01204{left:1135.079400px;}
.x1e_c01204{left:1139.039340px;}
.x33_c01204{left:1141.918305px;}
.x2e_c01204{left:1144.798920px;}
.x28_c01204{left:1147.679625px;}
.x5a_c01204{left:1150.199340px;}
.x24_c01204{left:1154.159370px;}
.x50_c01204{left:1156.679070px;}
.x2f_c01204{left:1159.918950px;}
.x3a_c01204{left:1162.799565px;}
.x5b_c01204{left:1164.599025px;}
.x1f_c01204{left:1168.199805px;}
.x49_c01204{left:1173.598575px;}
.x25_c01204{left:1177.199340px;}
.x55_c01204{left:1179.359805px;}
.x30_c01204{left:1181.518620px;}
.x3b_c01204{left:1184.758575px;}
.x5f_c01204{left:1187.639100px;}
.x4a_c01204{left:1189.079400px;}
.x26_c01204{left:1193.398590px;}
.x44_c01204{left:1194.838905px;}
.x60_c01204{left:1199.159820px;}
.x29_c01204{left:1209.599670px;}
.x4b_c01204{left:1211.758575px;}
.x3c_c01204{left:1214.279850px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls21_c01204{letter-spacing:-11.781513pt;}
.ls3f_c01204{letter-spacing:-10.956600pt;}
.ls47_c01204{letter-spacing:-7.436267pt;}
.ls2c_c01204{letter-spacing:-7.414940pt;}
.ls0_c01204{letter-spacing:-6.961600pt;}
.ls44_c01204{letter-spacing:-6.894500pt;}
.ls3a_c01204{letter-spacing:-6.405020pt;}
.ls26_c01204{letter-spacing:-6.160000pt;}
.ls4f_c01204{letter-spacing:-5.968660pt;}
.ls18_c01204{letter-spacing:-5.761647pt;}
.ls1f_c01204{letter-spacing:-5.413600pt;}
.ls23_c01204{letter-spacing:-5.124600pt;}
.ls7_c01204{letter-spacing:-4.980267pt;}
.ls4b_c01204{letter-spacing:-4.920200pt;}
.ls2e_c01204{letter-spacing:-4.880140pt;}
.ls49_c01204{letter-spacing:-4.738687pt;}
.ls3e_c01204{letter-spacing:-4.589267pt;}
.ls2d_c01204{letter-spacing:-4.482200pt;}
.ls2a_c01204{letter-spacing:-4.435200pt;}
.ls28_c01204{letter-spacing:-4.432827pt;}
.ls3b_c01204{letter-spacing:-4.320000pt;}
.ls45_c01204{letter-spacing:-4.292493pt;}
.ls32_c01204{letter-spacing:-4.106667pt;}
.ls46_c01204{letter-spacing:-4.017120pt;}
.ls38_c01204{letter-spacing:-3.998867pt;}
.ls27_c01204{letter-spacing:-3.946933pt;}
.ls22_c01204{letter-spacing:-3.839800pt;}
.ls36_c01204{letter-spacing:-3.744400pt;}
.ls4e_c01204{letter-spacing:-3.501867pt;}
.ls29_c01204{letter-spacing:-3.496000pt;}
.ls2f_c01204{letter-spacing:-3.470667pt;}
.ls3d_c01204{letter-spacing:-3.334933pt;}
.ls1e_c01204{letter-spacing:-3.202267pt;}
.ls30_c01204{letter-spacing:-3.167780pt;}
.ls1d_c01204{letter-spacing:-3.104933pt;}
.ls20_c01204{letter-spacing:-3.080113pt;}
.ls37_c01204{letter-spacing:-2.777467pt;}
.ls41_c01204{letter-spacing:-2.702973pt;}
.ls4d_c01204{letter-spacing:-2.638400pt;}
.ls1b_c01204{letter-spacing:-2.559867pt;}
.ls35_c01204{letter-spacing:-2.530800pt;}
.ls3c_c01204{letter-spacing:-2.491200pt;}
.ls8_c01204{letter-spacing:-2.361340pt;}
.ls2_c01204{letter-spacing:-2.267160pt;}
.ls14_c01204{letter-spacing:-2.211733pt;}
.ls25_c01204{letter-spacing:-2.002000pt;}
.ls1c_c01204{letter-spacing:-1.922820pt;}
.ls4c_c01204{letter-spacing:-1.566000pt;}
.ls6_c01204{letter-spacing:-1.466667pt;}
.ls2b_c01204{letter-spacing:-1.443640pt;}
.ls40_c01204{letter-spacing:-1.408533pt;}
.ls33_c01204{letter-spacing:-1.385487pt;}
.lsd_c01204{letter-spacing:-1.380400pt;}
.ls42_c01204{letter-spacing:-1.297067pt;}
.ls19_c01204{letter-spacing:-1.280420pt;}
.lse_c01204{letter-spacing:-0.736000pt;}
.ls4a_c01204{letter-spacing:-0.675000pt;}
.lsc_c01204{letter-spacing:-0.666520pt;}
.ls1a_c01204{letter-spacing:-0.642400pt;}
.lsa_c01204{letter-spacing:-0.498420pt;}
.ls5_c01204{letter-spacing:0.000000pt;}
.lsf_c01204{letter-spacing:0.590860pt;}
.ls15_c01204{letter-spacing:0.617727pt;}
.ls11_c01204{letter-spacing:0.618133pt;}
.ls13_c01204{letter-spacing:0.640593pt;}
.ls48_c01204{letter-spacing:0.642400pt;}
.ls34_c01204{letter-spacing:0.648467pt;}
.ls10_c01204{letter-spacing:0.666400pt;}
.lsb_c01204{letter-spacing:1.375000pt;}
.ls24_c01204{letter-spacing:1.568800pt;}
.ls3_c01204{letter-spacing:1.604600pt;}
.ls17_c01204{letter-spacing:1.912533pt;}
.ls16_c01204{letter-spacing:2.084133pt;}
.ls12_c01204{letter-spacing:2.169200pt;}
.ls1_c01204{letter-spacing:3.335467pt;}
.ls43_c01204{letter-spacing:3.592140pt;}
.ls31_c01204{letter-spacing:4.420267pt;}
.ls39_c01204{letter-spacing:5.343933pt;}
.ls4_c01204{letter-spacing:5.367333pt;}
.ls9_c01204{letter-spacing:200.356067pt;}
.ws0_c01204{word-spacing:0.000000pt;}
._8_c01204{margin-left:-6.973319pt;}
._a_c01204{margin-left:-3.751585pt;}
._b_c01204{margin-left:-1.552723pt;}
._9_c01204{width:1.433003pt;}
._d_c01204{width:2.937930pt;}
._7_c01204{width:4.564985pt;}
._6_c01204{width:5.792051pt;}
._3_c01204{width:7.704574pt;}
._1_c01204{width:8.948238pt;}
._5_c01204{width:11.275759pt;}
._4_c01204{width:12.470782pt;}
._e_c01204{width:13.705788pt;}
._c_c01204{width:15.301287pt;}
._2_c01204{width:16.200826pt;}
._0_c01204{width:24.332232pt;}
.fsa_c01204{font-size:15.333333pt;}
.fsc_c01204{font-size:18.000000pt;}
.fse_c01204{font-size:19.333333pt;}
.fs9_c01204{font-size:20.000000pt;}
.fs10_c01204{font-size:20.666667pt;}
.fsf_c01204{font-size:21.333333pt;}
.fsb_c01204{font-size:22.000000pt;}
.fs11_c01204{font-size:22.666667pt;}
.fs12_c01204{font-size:24.000000pt;}
.fsd_c01204{font-size:25.333333pt;}
.fs16_c01204{font-size:29.333333pt;}
.fs14_c01204{font-size:32.666667pt;}
.fs13_c01204{font-size:34.000000pt;}
.fs15_c01204{font-size:34.666667pt;}
.fs1a_c01204{font-size:35.333333pt;}
.fs26_c01204{font-size:36.000000pt;}
.fs1c_c01204{font-size:44.000000pt;}
.fs18_c01204{font-size:44.666667pt;}
.fs1e_c01204{font-size:46.000000pt;}
.fs23_c01204{font-size:46.666667pt;}
.fs21_c01204{font-size:47.333333pt;}
.fs24_c01204{font-size:48.000000pt;}
.fs17_c01204{font-size:48.666667pt;}
.fs20_c01204{font-size:49.333333pt;}
.fs22_c01204{font-size:50.000000pt;}
.fs1b_c01204{font-size:50.666667pt;}
.fs19_c01204{font-size:51.333333pt;}
.fs1f_c01204{font-size:52.000000pt;}
.fs1d_c01204{font-size:52.666667pt;}
.fs25_c01204{font-size:54.000000pt;}
.fs27_c01204{font-size:64.666667pt;}
.fs4_c01204{font-size:66.666667pt;}
.fs7_c01204{font-size:67.333333pt;}
.fs1_c01204{font-size:70.666667pt;}
.fs5_c01204{font-size:73.333333pt;}
.fs8_c01204{font-size:74.000000pt;}
.fs6_c01204{font-size:74.666667pt;}
.fs3_c01204{font-size:75.333333pt;}
.fs0_c01204{font-size:76.000000pt;}
.fs2_c01204{font-size:84.000000pt;}
.fs28_c01204{font-size:92.666667pt;}
.y0_c01204{bottom:0.000000pt;}
.y6_c01204{bottom:41.654667pt;}
.y5_c01204{bottom:49.973467pt;}
.y3_c01204{bottom:50.294267pt;}
.y4_c01204{bottom:54.454387pt;}
.y2_c01204{bottom:57.013467pt;}
.y26_c01204{bottom:314.613587pt;}
.y25_c01204{bottom:351.733680pt;}
.y24_c01204{bottom:378.294800pt;}
.y23_c01204{bottom:404.534893pt;}
.y22_c01204{bottom:431.093587pt;}
.y21_c01204{bottom:484.215373pt;}
.y20_c01204{bottom:497.654667pt;}
.y1f_c01204{bottom:510.454387pt;}
.y1d_c01204{bottom:524.534347pt;}
.y1e_c01204{bottom:524.534507pt;}
.y1c_c01204{bottom:537.653560pt;}
.y1b_c01204{bottom:537.653733pt;}
.y19_c01204{bottom:550.774093pt;}
.y1a_c01204{bottom:550.774253pt;}
.y18_c01204{bottom:563.893307pt;}
.y16_c01204{bottom:577.332867pt;}
.y17_c01204{bottom:577.333293pt;}
.y15_c01204{bottom:590.134640pt;}
.y14_c01204{bottom:603.253707pt;}
.y13_c01204{bottom:603.253867pt;}
.y11_c01204{bottom:616.374253pt;}
.y12_c01204{bottom:616.374387pt;}
.y10_c01204{bottom:630.133587pt;}
.yf_c01204{bottom:630.134280pt;}
.ye_c01204{bottom:643.573573pt;}
.yd_c01204{bottom:657.013427pt;}
.yc_c01204{bottom:670.453453pt;}
.yb_c01204{bottom:670.454027pt;}
.ya_c01204{bottom:683.893307pt;}
.y9_c01204{bottom:683.893560pt;}
.y8_c01204{bottom:696.695307pt;}
.y7_c01204{bottom:710.134600pt;}
.y1_c01204{bottom:757.173747pt;}
.hc_c01204{height:15.041341pt;}
.hb_c01204{height:15.048828pt;}
.he_c01204{height:18.773437pt;}
.h10_c01204{height:20.164062pt;}
.ha_c01204{height:20.859375pt;}
.h12_c01204{height:21.554687pt;}
.h11_c01204{height:22.250000pt;}
.hd_c01204{height:22.945312pt;}
.h14_c01204{height:23.542969pt;}
.h13_c01204{height:23.640625pt;}
.h15_c01204{height:24.850911pt;}
.hf_c01204{height:25.036458pt;}
.h19_c01204{height:30.593750pt;}
.h17_c01204{height:32.921875pt;}
.h18_c01204{height:34.260417pt;}
.h16_c01204{height:34.265625pt;}
.h32_c01204{height:36.281250pt;}
.h1d_c01204{height:36.851562pt;}
.h20_c01204{height:45.890625pt;}
.h28_c01204{height:46.455078pt;}
.h1b_c01204{height:46.585938pt;}
.h2b_c01204{height:47.031250pt;}
.h2d_c01204{height:47.109375pt;}
.h2c_c01204{height:47.703125pt;}
.h1a_c01204{height:47.763672pt;}
.h22_c01204{height:47.976562pt;}
.h2e_c01204{height:48.096354pt;}
.h25_c01204{height:48.417969pt;}
.h29_c01204{height:49.072266pt;}
.h30_c01204{height:49.414063pt;}
.h2a_c01204{height:49.718750pt;}
.h1f_c01204{height:49.726562pt;}
.h31_c01204{height:50.062500pt;}
.h27_c01204{height:50.355794pt;}
.h1e_c01204{height:50.380859pt;}
.h1c_c01204{height:50.731771pt;}
.h24_c01204{height:51.035156pt;}
.h23_c01204{height:51.062500pt;}
.h26_c01204{height:51.734375pt;}
.h21_c01204{height:52.049479pt;}
.h2f_c01204{height:52.971680pt;}
.h33_c01204{height:67.445312pt;}
.h5_c01204{height:69.531250pt;}
.h8_c01204{height:70.226562pt;}
.h2_c01204{height:73.703125pt;}
.h6_c01204{height:73.906250pt;}
.h9_c01204{height:74.578125pt;}
.h7_c01204{height:75.250000pt;}
.h4_c01204{height:75.921875pt;}
.h1_c01204{height:76.593750pt;}
.h3_c01204{height:83.015625pt;}
.h34_c01204{height:96.648438pt;}
.h0_c01204{height:793.333333pt;}
.w0_c01204{width:1122.666667pt;}
.x0_c01204{left:0.000000pt;}
.x1_c01204{left:77.119613pt;}
.xb_c01204{left:81.919867pt;}
.xe_c01204{left:137.279333pt;}
.xc_c01204{left:139.839867pt;}
.x2_c01204{left:155.838933pt;}
.xd_c01204{left:175.678667pt;}
.x3_c01204{left:193.918920pt;}
.x10_c01204{left:207.358933pt;}
.x4_c01204{left:237.758787pt;}
.x5_c01204{left:271.038533pt;}
.x11_c01204{left:275.198693pt;}
.x18_c01204{left:295.999453pt;}
.x19_c01204{left:321.279720pt;}
.x12_c01204{left:344.958947pt;}
.x6_c01204{left:357.118693pt;}
.x1a_c01204{left:361.599613pt;}
.x7_c01204{left:378.878907pt;}
.x1b_c01204{left:396.799840pt;}
.x13_c01204{left:413.119587pt;}
.x1c_c01204{left:435.839320pt;}
.x14_c01204{left:482.879840pt;}
.x8_c01204{left:531.199173pt;}
.x15_c01204{left:553.278773pt;}
.x9_c01204{left:573.439453pt;}
.xa_c01204{left:598.398920pt;}
.x16_c01204{left:621.118693pt;}
.xf_c01204{left:658.239173pt;}
.x17_c01204{left:689.919440pt;}
.x63_c01204{left:819.199213pt;}
.x20_c01204{left:820.799160pt;}
.x41_c01204{left:822.399827pt;}
.x61_c01204{left:827.519453pt;}
.x45_c01204{left:831.999027pt;}
.x2a_c01204{left:838.719720pt;}
.x5c_c01204{left:842.879880pt;}
.x56_c01204{left:846.399827pt;}
.x1d_c01204{left:854.718747pt;}
.x62_c01204{left:856.959960pt;}
.x64_c01204{left:858.238773pt;}
.x34_c01204{left:859.839840pt;}
.x57_c01204{left:863.039067pt;}
.x46_c01204{left:864.959467pt;}
.x21_c01204{left:870.719160pt;}
.x3d_c01204{left:874.879307pt;}
.x4c_c01204{left:878.718747pt;}
.x47_c01204{left:880.639160pt;}
.x22_c01204{left:882.878907pt;}
.x5d_c01204{left:890.239747pt;}
.x3e_c01204{left:892.798747pt;}
.x58_c01204{left:897.599040pt;}
.x23_c01204{left:901.759280pt;}
.x5e_c01204{left:903.358893pt;}
.x59_c01204{left:906.559573pt;}
.x35_c01204{left:908.159173pt;}
.x51_c01204{left:911.679200pt;}
.x54_c01204{left:917.119547pt;}
.x36_c01204{left:919.359293pt;}
.x3f_c01204{left:925.119147pt;}
.x4d_c01204{left:928.959960pt;}
.x2b_c01204{left:929.919440pt;}
.x37_c01204{left:932.799320pt;}
.x48_c01204{left:936.959467pt;}
.x40_c01204{left:947.838947pt;}
.x31_c01204{left:965.759680pt;}
.x38_c01204{left:971.519453pt;}
.x2c_c01204{left:975.679693pt;}
.x52_c01204{left:976.639160pt;}
.x4e_c01204{left:979.199707pt;}
.x39_c01204{left:980.799320pt;}
.x42_c01204{left:984.959467pt;}
.x2d_c01204{left:987.199133pt;}
.x32_c01204{left:991.038493pt;}
.x53_c01204{left:991.999427pt;}
.x43_c01204{left:994.239173pt;}
.x27_c01204{left:1007.359867pt;}
.x4f_c01204{left:1008.959467pt;}
.x1e_c01204{left:1012.479413pt;}
.x33_c01204{left:1015.038493pt;}
.x2e_c01204{left:1017.599040pt;}
.x28_c01204{left:1020.159667pt;}
.x5a_c01204{left:1022.399413pt;}
.x24_c01204{left:1025.919440pt;}
.x50_c01204{left:1028.159173pt;}
.x2f_c01204{left:1031.039067pt;}
.x3a_c01204{left:1033.599613pt;}
.x5b_c01204{left:1035.199133pt;}
.x1f_c01204{left:1038.399827pt;}
.x49_c01204{left:1043.198733pt;}
.x25_c01204{left:1046.399413pt;}
.x55_c01204{left:1048.319827pt;}
.x30_c01204{left:1050.238773pt;}
.x3b_c01204{left:1053.118733pt;}
.x5f_c01204{left:1055.679200pt;}
.x4a_c01204{left:1056.959467pt;}
.x26_c01204{left:1060.798747pt;}
.x44_c01204{left:1062.079027pt;}
.x60_c01204{left:1065.919840pt;}
.x29_c01204{left:1075.199707pt;}
.x4b_c01204{left:1077.118733pt;}
.x3c_c01204{left:1079.359867pt;}
}





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

.ir_c01205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_ae31d4136bf39c8d2baad3f8.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01205;src:url('chunks/assets/font_0c59406cf8222cecb6c82bab.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01205;src:url('chunks/assets/font_ff196102046db2d885c8466a.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01205;src:url('chunks/assets/font_dfa09ca86d9358050a298cf2.woff2')format("woff");}.ff4_c01205{font-family:ff4_c01205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01205;src:url('chunks/assets/font_1f1102cc5c66e76724fb4cfc.woff2')format("woff");}.ff5_c01205{font-family:ff5_c01205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01205;src:url('chunks/assets/font_78870fb475ed50beac3105ad.woff2')format("woff");}.ff6_c01205{font-family:ff6_c01205;line-height:1.281250;font-style:normal;font-weight: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_c01205;src:url('chunks/assets/font_805c877979d1f2542e085418.woff2')format("woff");}.ff7_c01205{font-family:ff7_c01205;line-height:1.432129;font-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_c01205{transform:matrix(0.172078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172078,0.000000,0.000000,0.250000,0,0);}
.m3_c01205{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.ma_c01205{transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205882,0.000000,0.000000,0.250000,0,0);}
.m6_c01205{transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207207,0.000000,0.000000,0.250000,0,0);}
.m12_c01205{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m7_c01205{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m5_c01205{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m2_c01205{transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219565,0.000000,0.000000,0.250000,0,0);}
.m1c_c01205{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m14_c01205{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m18_c01205{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m1f_c01205{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m4_c01205{transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238426,0.000000,0.000000,0.250000,0,0);}
.m24_c01205{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m1a_c01205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01205{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m1b_c01205{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m19_c01205{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m9_c01205{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m13_c01205{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.md_c01205{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m11_c01205{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m21_c01205{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m22_c01205{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.mf_c01205{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.mc_c01205{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m23_c01205{transform:matrix(0.267391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267391,0.000000,0.000000,0.250000,0,0);}
.m10_c01205{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m16_c01205{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m1_c01205{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m0_c01205{transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284188,0.000000,0.000000,0.250000,0,0);}
.m8_c01205{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m15_c01205{transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);}
.m20_c01205{transform:matrix(0.338608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338608,0.000000,0.000000,0.250000,0,0);}
.m17_c01205{transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);}
.mb_c01205{transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432692,0.000000,0.000000,0.250000,0,0);}
.me_c01205{transform:matrix(18.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls16_c01205{letter-spacing:-24.747525px;}
.ls1a_c01205{letter-spacing:-17.434725px;}
.ls1f_c01205{letter-spacing:-12.627000px;}
.ls5_c01205{letter-spacing:-6.293700px;}
.ls10_c01205{letter-spacing:-6.201345px;}
.ls1b_c01205{letter-spacing:-5.181300px;}
.ls19_c01205{letter-spacing:-5.180625px;}
.ls11_c01205{letter-spacing:-5.090400px;}
.ls1e_c01205{letter-spacing:-5.049630px;}
.lse_c01205{letter-spacing:-3.390750px;}
.ls6_c01205{letter-spacing:-3.142800px;}
.ls17_c01205{letter-spacing:-2.414250px;}
.ls1c_c01205{letter-spacing:-1.608188px;}
.ls20_c01205{letter-spacing:-1.525095px;}
.ls18_c01205{letter-spacing:-1.477703px;}
.lsb_c01205{letter-spacing:-1.300650px;}
.lsa_c01205{letter-spacing:-0.910605px;}
.ls8_c01205{letter-spacing:-0.891000px;}
.ls4_c01205{letter-spacing:-0.853875px;}
.ls14_c01205{letter-spacing:-0.665640px;}
.ls9_c01205{letter-spacing:-0.658800px;}
.ls1d_c01205{letter-spacing:-0.550433px;}
.ls3_c01205{letter-spacing:0.000000px;}
.lsc_c01205{letter-spacing:0.707602px;}
.lsf_c01205{letter-spacing:0.708900px;}
.ls15_c01205{letter-spacing:0.729750px;}
.ls0_c01205{letter-spacing:0.735000px;}
.ls1_c01205{letter-spacing:1.469632px;}
.ls13_c01205{letter-spacing:1.672125px;}
.lsd_c01205{letter-spacing:2.186625px;}
.ls12_c01205{letter-spacing:2.205000px;}
.ls7_c01205{letter-spacing:6.293700px;}
.ls2_c01205{letter-spacing:7.914173px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01205{word-spacing:0.000000px;}
._1_c01205{width:11.917349px;}
._0_c01205{width:13.931778px;}
.fc0_c01205{color:transparent;}
.fsa_c01205{font-size:19.500000px;}
.fsd_c01205{font-size:22.500000px;}
.fse_c01205{font-size:24.000000px;}
.fsb_c01205{font-size:24.750000px;}
.fs9_c01205{font-size:25.500000px;}
.fsc_c01205{font-size:26.250000px;}
.fs7_c01205{font-size:27.000000px;}
.fs14_c01205{font-size:32.250000px;}
.fs19_c01205{font-size:34.500000px;}
.fsf_c01205{font-size:36.000000px;}
.fs10_c01205{font-size:36.750000px;}
.fs8_c01205{font-size:42.000000px;}
.fs1b_c01205{font-size:49.500000px;}
.fs13_c01205{font-size:54.750000px;}
.fs12_c01205{font-size:55.500000px;}
.fs15_c01205{font-size:56.250000px;}
.fs17_c01205{font-size:57.000000px;}
.fs16_c01205{font-size:57.750000px;}
.fs18_c01205{font-size:59.250000px;}
.fs11_c01205{font-size:74.250000px;}
.fs4_c01205{font-size:81.000000px;}
.fs6_c01205{font-size:82.500000px;}
.fs1_c01205{font-size:83.250000px;}
.fs2_c01205{font-size:86.250000px;}
.fs3_c01205{font-size:87.000000px;}
.fs0_c01205{font-size:87.750000px;}
.fs5_c01205{font-size:89.250000px;}
.fs1a_c01205{font-size:172.500000px;}
.y0_c01205{bottom:0.000000px;}
.y6_c01205{bottom:44.701035px;}
.y5_c01205{bottom:51.900900px;}
.y3_c01205{bottom:52.261800px;}
.y2_c01205{bottom:54.420600px;}
.y4_c01205{bottom:59.100750px;}
.ye_c01205{bottom:650.221755px;}
.yd_c01205{bottom:665.341785px;}
.yc_c01205{bottom:694.861500px;}
.yb_c01205{bottom:725.101320px;}
.ya_c01205{bottom:742.020720px;}
.y9_c01205{bottom:754.981935px;}
.y8_c01205{bottom:784.501650px;}
.y7_c01205{bottom:817.261140px;}
.y1_c01205{bottom:848.941320px;}
.hb_c01205{height:20.337891px;}
.he_c01205{height:23.466797px;}
.hf_c01205{height:25.031250px;}
.h19_c01205{height:25.699219px;}
.hc_c01205{height:25.813477px;}
.ha_c01205{height:26.595703px;}
.hd_c01205{height:27.377930px;}
.h8_c01205{height:28.160156px;}
.h17_c01205{height:33.635742px;}
.h10_c01205{height:35.578125px;}
.h1d_c01205{height:35.982422px;}
.h13_c01205{height:36.281250px;}
.h11_c01205{height:37.037109px;}
.h12_c01205{height:37.546875px;}
.h9_c01205{height:41.507812px;}
.h1f_c01205{height:51.626953px;}
.h16_c01205{height:55.177734px;}
.h15_c01205{height:55.933594px;}
.h1a_c01205{height:56.650269px;}
.h18_c01205{height:56.689453px;}
.h1b_c01205{height:57.445312px;}
.h1c_c01205{height:61.795898px;}
.h14_c01205{height:77.440430px;}
.h5_c01205{height:81.632812px;}
.h7_c01205{height:83.144531px;}
.h2_c01205{height:83.900391px;}
.h3_c01205{height:86.923828px;}
.h4_c01205{height:87.679688px;}
.h1_c01205{height:88.435547px;}
.h6_c01205{height:89.947266px;}
.h1e_c01205{height:179.912109px;}
.h0_c01205{height:892.500000px;}
.w0_c01205{width:1263.000000px;}
.x0_c01205{left:0.000000px;}
.x1_c01205{left:86.759565px;}
.xb_c01205{left:152.998950px;}
.x2_c01205{left:173.878350px;}
.x3_c01205{left:216.000000px;}
.xc_c01205{left:231.120000px;}
.x4_c01205{left:268.198785px;}
.x5_c01205{left:305.638500px;}
.xd_c01205{left:309.598530px;}
.x15_c01205{left:332.279250px;}
.x16_c01205{left:359.279250px;}
.xe_c01205{left:385.199850px;}
.x6_c01205{left:400.319820px;}
.x7_c01205{left:425.159415px;}
.xf_c01205{left:464.398635px;}
.x17_c01205{left:489.958335px;}
.x18_c01205{left:532.439250px;}
.x10_c01205{left:541.079400px;}
.x8_c01205{left:596.519670px;}
.x12_c01205{left:620.639100px;}
.x9_c01205{left:645.119385px;}
.xa_c01205{left:673.918950px;}
.x13_c01205{left:698.758530px;}
.x11_c01205{left:700.198785px;}
.x14_c01205{left:775.079955px;}
.x19_c01205{left:858.238770px;}
.x20_c01205{left:916.918950px;}
.x1a_c01205{left:928.078770px;}
.x1d_c01205{left:932.038965px;}
.x1e_c01205{left:933.479190px;}
.x1b_c01205{left:960.119940px;}
.x1c_c01205{left:999.000000px;}
.x1f_c01205{left:1003.678530px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls16_c01205{letter-spacing:-21.997800pt;}
.ls1a_c01205{letter-spacing:-15.497533pt;}
.ls1f_c01205{letter-spacing:-11.224000pt;}
.ls5_c01205{letter-spacing:-5.594400pt;}
.ls10_c01205{letter-spacing:-5.512307pt;}
.ls1b_c01205{letter-spacing:-4.605600pt;}
.ls19_c01205{letter-spacing:-4.605000pt;}
.ls11_c01205{letter-spacing:-4.524800pt;}
.ls1e_c01205{letter-spacing:-4.488560pt;}
.lse_c01205{letter-spacing:-3.014000pt;}
.ls6_c01205{letter-spacing:-2.793600pt;}
.ls17_c01205{letter-spacing:-2.146000pt;}
.ls1c_c01205{letter-spacing:-1.429500pt;}
.ls20_c01205{letter-spacing:-1.355640pt;}
.ls18_c01205{letter-spacing:-1.313513pt;}
.lsb_c01205{letter-spacing:-1.156133pt;}
.lsa_c01205{letter-spacing:-0.809427pt;}
.ls8_c01205{letter-spacing:-0.792000pt;}
.ls4_c01205{letter-spacing:-0.759000pt;}
.ls14_c01205{letter-spacing:-0.591680pt;}
.ls9_c01205{letter-spacing:-0.585600pt;}
.ls1d_c01205{letter-spacing:-0.489273pt;}
.ls3_c01205{letter-spacing:0.000000pt;}
.lsc_c01205{letter-spacing:0.628980pt;}
.lsf_c01205{letter-spacing:0.630133pt;}
.ls15_c01205{letter-spacing:0.648667pt;}
.ls0_c01205{letter-spacing:0.653333pt;}
.ls1_c01205{letter-spacing:1.306340pt;}
.ls13_c01205{letter-spacing:1.486333pt;}
.lsd_c01205{letter-spacing:1.943667pt;}
.ls12_c01205{letter-spacing:1.960000pt;}
.ls7_c01205{letter-spacing:5.594400pt;}
.ls2_c01205{letter-spacing:7.034820pt;}
.ws0_c01205{word-spacing:0.000000pt;}
._1_c01205{width:10.593199pt;}
._0_c01205{width:12.383803pt;}
.fsa_c01205{font-size:17.333333pt;}
.fsd_c01205{font-size:20.000000pt;}
.fse_c01205{font-size:21.333333pt;}
.fsb_c01205{font-size:22.000000pt;}
.fs9_c01205{font-size:22.666667pt;}
.fsc_c01205{font-size:23.333333pt;}
.fs7_c01205{font-size:24.000000pt;}
.fs14_c01205{font-size:28.666667pt;}
.fs19_c01205{font-size:30.666667pt;}
.fsf_c01205{font-size:32.000000pt;}
.fs10_c01205{font-size:32.666667pt;}
.fs8_c01205{font-size:37.333333pt;}
.fs1b_c01205{font-size:44.000000pt;}
.fs13_c01205{font-size:48.666667pt;}
.fs12_c01205{font-size:49.333333pt;}
.fs15_c01205{font-size:50.000000pt;}
.fs17_c01205{font-size:50.666667pt;}
.fs16_c01205{font-size:51.333333pt;}
.fs18_c01205{font-size:52.666667pt;}
.fs11_c01205{font-size:66.000000pt;}
.fs4_c01205{font-size:72.000000pt;}
.fs6_c01205{font-size:73.333333pt;}
.fs1_c01205{font-size:74.000000pt;}
.fs2_c01205{font-size:76.666667pt;}
.fs3_c01205{font-size:77.333333pt;}
.fs0_c01205{font-size:78.000000pt;}
.fs5_c01205{font-size:79.333333pt;}
.fs1a_c01205{font-size:153.333333pt;}
.y0_c01205{bottom:0.000000pt;}
.y6_c01205{bottom:39.734253pt;}
.y5_c01205{bottom:46.134133pt;}
.y3_c01205{bottom:46.454933pt;}
.y2_c01205{bottom:48.373867pt;}
.y4_c01205{bottom:52.534000pt;}
.ye_c01205{bottom:577.974893pt;}
.yd_c01205{bottom:591.414920pt;}
.yc_c01205{bottom:617.654667pt;}
.yb_c01205{bottom:644.534507pt;}
.ya_c01205{bottom:659.573973pt;}
.y9_c01205{bottom:671.095053pt;}
.y8_c01205{bottom:697.334800pt;}
.y7_c01205{bottom:726.454347pt;}
.y1_c01205{bottom:754.614507pt;}
.hb_c01205{height:18.078125pt;}
.he_c01205{height:20.859375pt;}
.hf_c01205{height:22.250000pt;}
.h19_c01205{height:22.843750pt;}
.hc_c01205{height:22.945312pt;}
.ha_c01205{height:23.640625pt;}
.hd_c01205{height:24.335938pt;}
.h8_c01205{height:25.031250pt;}
.h17_c01205{height:29.898438pt;}
.h10_c01205{height:31.625000pt;}
.h1d_c01205{height:31.984375pt;}
.h13_c01205{height:32.250000pt;}
.h11_c01205{height:32.921875pt;}
.h12_c01205{height:33.375000pt;}
.h9_c01205{height:36.895833pt;}
.h1f_c01205{height:45.890625pt;}
.h16_c01205{height:49.046875pt;}
.h15_c01205{height:49.718750pt;}
.h1a_c01205{height:50.355794pt;}
.h18_c01205{height:50.390625pt;}
.h1b_c01205{height:51.062500pt;}
.h1c_c01205{height:54.929688pt;}
.h14_c01205{height:68.835938pt;}
.h5_c01205{height:72.562500pt;}
.h7_c01205{height:73.906250pt;}
.h2_c01205{height:74.578125pt;}
.h3_c01205{height:77.265625pt;}
.h4_c01205{height:77.937500pt;}
.h1_c01205{height:78.609375pt;}
.h6_c01205{height:79.953125pt;}
.h1e_c01205{height:159.921875pt;}
.h0_c01205{height:793.333333pt;}
.w0_c01205{width:1122.666667pt;}
.x0_c01205{left:0.000000pt;}
.x1_c01205{left:77.119613pt;}
.xb_c01205{left:135.999067pt;}
.x2_c01205{left:154.558533pt;}
.x3_c01205{left:192.000000pt;}
.xc_c01205{left:205.440000pt;}
.x4_c01205{left:238.398920pt;}
.x5_c01205{left:271.678667pt;}
.xd_c01205{left:275.198693pt;}
.x15_c01205{left:295.359333pt;}
.x16_c01205{left:319.359333pt;}
.xe_c01205{left:342.399867pt;}
.x6_c01205{left:355.839840pt;}
.x7_c01205{left:377.919480pt;}
.xf_c01205{left:412.798787pt;}
.x17_c01205{left:435.518520pt;}
.x18_c01205{left:473.279333pt;}
.x10_c01205{left:480.959467pt;}
.x8_c01205{left:530.239707pt;}
.x12_c01205{left:551.679200pt;}
.x9_c01205{left:573.439453pt;}
.xa_c01205{left:599.039067pt;}
.x13_c01205{left:621.118693pt;}
.x11_c01205{left:622.398920pt;}
.x14_c01205{left:688.959960pt;}
.x19_c01205{left:762.878907pt;}
.x20_c01205{left:815.039067pt;}
.x1a_c01205{left:824.958907pt;}
.x1d_c01205{left:828.479080pt;}
.x1e_c01205{left:829.759280pt;}
.x1b_c01205{left:853.439947pt;}
.x1c_c01205{left:888.000000pt;}
.x1f_c01205{left:892.158693pt;}
}





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

.ir_c01206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_ca19952b0ac8d1968d8e9dd7.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01206;src:url('chunks/assets/font_3c946ed1a75cda0f6fdb451d.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01206;src:url('chunks/assets/font_b76ae6338e520f6d620d2ac1.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01206;src:url('chunks/assets/font_bdef775912779363ed6beefd.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01206;src:url('chunks/assets/font_3e8c69aa692589657ad0fa79.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01206;src:url('chunks/assets/font_30e47d20946397598a70f0a4.woff2')format("woff");}.ff6_c01206{font-family:ff6_c01206;line-height:1.432129;font-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_c01206{transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173913,0.000000,0.000000,0.250000,0,0);}
.m5_c01206{transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210177,0.000000,0.000000,0.250000,0,0);}
.m4_c01206{transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219626,0.000000,0.000000,0.250000,0,0);}
.md_c01206{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m3_c01206{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m2_c01206{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m17_c01206{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m20_c01206{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m1b_c01206{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_c01206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01206{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m1a_c01206{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m18_c01206{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m6_c01206{transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261792,0.000000,0.000000,0.250000,0,0);}
.mc_c01206{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.me_c01206{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m13_c01206{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m1_c01206{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m10_c01206{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m15_c01206{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_c01206{transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280172,0.000000,0.000000,0.250000,0,0);}
.m16_c01206{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb_c01206{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.mf_c01206{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m19_c01206{transform:matrix(0.324766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324766,0.000000,0.000000,0.250000,0,0);}
.m7_c01206{transform:matrix(0.381081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381081,0.000000,0.000000,0.250000,0,0);}
.m11_c01206{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01206{transform:matrix(0.426230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426230,0.000000,0.000000,0.250000,0,0);}
.m1e_c01206{transform:matrix(0.642327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642327,0.000000,0.000000,0.250000,0,0);}
.m1f_c01206{transform:matrix(0.856757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.856757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.856757,0.000000,0.000000,0.250000,0,0);}
.m9_c01206{transform:matrix(1.512346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.512346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.512346,0.000000,0.000000,0.250000,0,0);}
.m12_c01206{transform:matrix(3.831081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.831081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.831081,0.000000,0.000000,0.250000,0,0);}
.m8_c01206{transform:matrix(9.019531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.019531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.019531,0.000000,0.000000,0.250000,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.lsa_c01206{letter-spacing:-4.256850px;}
.ls17_c01206{letter-spacing:-3.751875px;}
.ls19_c01206{letter-spacing:-3.751358px;}
.ls12_c01206{letter-spacing:-3.651900px;}
.ls15_c01206{letter-spacing:-2.998125px;}
.ls1_c01206{letter-spacing:-2.767395px;}
.ls1a_c01206{letter-spacing:-2.250773px;}
.ls14_c01206{letter-spacing:-2.200575px;}
.ls11_c01206{letter-spacing:-2.011950px;}
.ls3_c01206{letter-spacing:-1.696800px;}
.ls18_c01206{letter-spacing:-1.500150px;}
.ls6_c01206{letter-spacing:-1.312500px;}
.ls5_c01206{letter-spacing:-0.850650px;}
.ls7_c01206{letter-spacing:-0.848498px;}
.ls1b_c01206{letter-spacing:-0.796950px;}
.ls13_c01206{letter-spacing:-0.781875px;}
.lsd_c01206{letter-spacing:-0.671250px;}
.ls4_c01206{letter-spacing:0.000000px;}
.ls9_c01206{letter-spacing:0.651172px;}
.lse_c01206{letter-spacing:0.665640px;}
.lsb_c01206{letter-spacing:0.705600px;}
.ls10_c01206{letter-spacing:0.718875px;}
.lsc_c01206{letter-spacing:0.735000px;}
.ls16_c01206{letter-spacing:0.750075px;}
.ls8_c01206{letter-spacing:1.417800px;}
.ls2_c01206{letter-spacing:1.688438px;}
.lsf_c01206{letter-spacing:3.267075px;}
.ls0_c01206{letter-spacing:6.690300px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:0.000000px;}
._2_c01206{width:9.202425px;}
._0_c01206{width:33.921777px;}
._1_c01206{width:249.295731px;}
.fc0_c01206{color:transparent;}
.fsf_c01206{font-size:18.000000px;}
.fse_c01206{font-size:24.750000px;}
.fsd_c01206{font-size:25.500000px;}
.fsa_c01206{font-size:26.250000px;}
.fsb_c01206{font-size:27.000000px;}
.fs10_c01206{font-size:27.750000px;}
.fsc_c01206{font-size:32.250000px;}
.fs14_c01206{font-size:33.750000px;}
.fs9_c01206{font-size:34.500000px;}
.fs13_c01206{font-size:36.000000px;}
.fs11_c01206{font-size:36.750000px;}
.fs12_c01206{font-size:37.500000px;}
.fs17_c01206{font-size:45.750000px;}
.fs7_c01206{font-size:48.000000px;}
.fs1a_c01206{font-size:51.750000px;}
.fs19_c01206{font-size:54.750000px;}
.fs15_c01206{font-size:55.500000px;}
.fs16_c01206{font-size:56.250000px;}
.fs8_c01206{font-size:60.750000px;}
.fs1_c01206{font-size:79.500000px;}
.fs4_c01206{font-size:80.250000px;}
.fs3_c01206{font-size:84.000000px;}
.fs5_c01206{font-size:84.750000px;}
.fs0_c01206{font-size:87.000000px;}
.fs2_c01206{font-size:93.750000px;}
.fs6_c01206{font-size:138.750000px;}
.fs18_c01206{font-size:151.500000px;}
.y0_c01206{bottom:0.000000px;}
.y8_c01206{bottom:43.980900px;}
.y9_c01206{bottom:51.180750px;}
.y6_c01206{bottom:52.981935px;}
.y5_c01206{bottom:55.501650px;}
.y7_c01206{bottom:58.741500px;}
.y4_c01206{bottom:61.620435px;}
.y2_c01206{bottom:63.060750px;}
.y3_c01206{bottom:77.460600px;}
.y11_c01206{bottom:586.141335px;}
.y10_c01206{bottom:590.460570px;}
.yf_c01206{bottom:630.780900px;}
.ye_c01206{bottom:660.300570px;}
.yd_c01206{bottom:690.540570px;}
.yc_c01206{bottom:720.061935px;}
.yb_c01206{bottom:749.940855px;}
.ya_c01206{bottom:779.460570px;}
.y1_c01206{bottom:850.020720px;}
.h11_c01206{height:18.773438px;}
.h10_c01206{height:25.813477px;}
.hf_c01206{height:26.595703px;}
.h12_c01206{height:27.221558px;}
.hc_c01206{height:27.377930px;}
.hd_c01206{height:28.160156px;}
.he_c01206{height:33.635742px;}
.h16_c01206{height:35.200195px;}
.hb_c01206{height:35.982422px;}
.h15_c01206{height:36.281250px;}
.h13_c01206{height:37.037109px;}
.h14_c01206{height:37.792969px;}
.h1a_c01206{height:47.715820px;}
.h9_c01206{height:50.062500px;}
.h1d_c01206{height:53.973633px;}
.h1c_c01206{height:55.177734px;}
.h18_c01206{height:55.933594px;}
.h19_c01206{height:56.689453px;}
.ha_c01206{height:59.593140px;}
.h7_c01206{height:80.121094px;}
.h5_c01206{height:80.876953px;}
.h2_c01206{height:82.916016px;}
.h17_c01206{height:83.698242px;}
.h4_c01206{height:84.656250px;}
.h6_c01206{height:85.412109px;}
.h1_c01206{height:87.679688px;}
.h3_c01206{height:92.651367px;}
.h8_c01206{height:144.711914px;}
.h1b_c01206{height:158.009766px;}
.h0_c01206{height:892.500000px;}
.w0_c01206{width:1263.000000px;}
.x0_c01206{left:0.000000px;}
.xd_c01206{left:68.759100px;}
.xa_c01206{left:73.798515px;}
.x1_c01206{left:86.398665px;}
.xe_c01206{left:149.759100px;}
.x2_c01206{left:173.159850px;}
.x3_c01206{left:214.559685px;}
.xf_c01206{left:226.439685px;}
.x4_c01206{left:264.599700px;}
.x5_c01206{left:302.398635px;}
.x10_c01206{left:303.479685px;}
.x16_c01206{left:327.239850px;}
.x17_c01206{left:354.599100px;}
.x11_c01206{left:381.599100px;}
.x6_c01206{left:398.518665px;}
.x18_c01206{left:399.599670px;}
.x7_c01206{left:422.998950px;}
.x19_c01206{left:439.918350px;}
.x12_c01206{left:458.279850px;}
.x1a_c01206{left:484.198785px;}
.x13_c01206{left:536.039985px;}
.x8_c01206{left:641.518620px;}
.xb_c01206{left:658.798920px;}
.x9_c01206{left:669.958920px;}
.x14_c01206{left:692.998950px;}
.x1b_c01206{left:770.038965px;}
.x15_c01206{left:773.639655px;}
.xc_c01206{left:781.198785px;}
.x21_c01206{left:923.039340px;}
.x1c_c01206{left:930.959385px;}
.x20_c01206{left:932.759040px;}
.x1f_c01206{left:933.838530px;}
.x1d_c01206{left:964.439205px;}
.x1e_c01206{left:1005.479640px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.lsa_c01206{letter-spacing:-3.783867pt;}
.ls17_c01206{letter-spacing:-3.335000pt;}
.ls19_c01206{letter-spacing:-3.334540pt;}
.ls12_c01206{letter-spacing:-3.246133pt;}
.ls15_c01206{letter-spacing:-2.665000pt;}
.ls1_c01206{letter-spacing:-2.459907pt;}
.ls1a_c01206{letter-spacing:-2.000687pt;}
.ls14_c01206{letter-spacing:-1.956067pt;}
.ls11_c01206{letter-spacing:-1.788400pt;}
.ls3_c01206{letter-spacing:-1.508267pt;}
.ls18_c01206{letter-spacing:-1.333467pt;}
.ls6_c01206{letter-spacing:-1.166667pt;}
.ls5_c01206{letter-spacing:-0.756133pt;}
.ls7_c01206{letter-spacing:-0.754220pt;}
.ls1b_c01206{letter-spacing:-0.708400pt;}
.ls13_c01206{letter-spacing:-0.695000pt;}
.lsd_c01206{letter-spacing:-0.596667pt;}
.ls4_c01206{letter-spacing:0.000000pt;}
.ls9_c01206{letter-spacing:0.578820pt;}
.lse_c01206{letter-spacing:0.591680pt;}
.lsb_c01206{letter-spacing:0.627200pt;}
.ls10_c01206{letter-spacing:0.639000pt;}
.lsc_c01206{letter-spacing:0.653333pt;}
.ls16_c01206{letter-spacing:0.666733pt;}
.ls8_c01206{letter-spacing:1.260267pt;}
.ls2_c01206{letter-spacing:1.500833pt;}
.lsf_c01206{letter-spacing:2.904067pt;}
.ls0_c01206{letter-spacing:5.946933pt;}
.ws0_c01206{word-spacing:0.000000pt;}
._2_c01206{width:8.179933pt;}
._0_c01206{width:30.152691pt;}
._1_c01206{width:221.596205pt;}
.fsf_c01206{font-size:16.000000pt;}
.fse_c01206{font-size:22.000000pt;}
.fsd_c01206{font-size:22.666667pt;}
.fsa_c01206{font-size:23.333333pt;}
.fsb_c01206{font-size:24.000000pt;}
.fs10_c01206{font-size:24.666667pt;}
.fsc_c01206{font-size:28.666667pt;}
.fs14_c01206{font-size:30.000000pt;}
.fs9_c01206{font-size:30.666667pt;}
.fs13_c01206{font-size:32.000000pt;}
.fs11_c01206{font-size:32.666667pt;}
.fs12_c01206{font-size:33.333333pt;}
.fs17_c01206{font-size:40.666667pt;}
.fs7_c01206{font-size:42.666667pt;}
.fs1a_c01206{font-size:46.000000pt;}
.fs19_c01206{font-size:48.666667pt;}
.fs15_c01206{font-size:49.333333pt;}
.fs16_c01206{font-size:50.000000pt;}
.fs8_c01206{font-size:54.000000pt;}
.fs1_c01206{font-size:70.666667pt;}
.fs4_c01206{font-size:71.333333pt;}
.fs3_c01206{font-size:74.666667pt;}
.fs5_c01206{font-size:75.333333pt;}
.fs0_c01206{font-size:77.333333pt;}
.fs2_c01206{font-size:83.333333pt;}
.fs6_c01206{font-size:123.333333pt;}
.fs18_c01206{font-size:134.666667pt;}
.y0_c01206{bottom:0.000000pt;}
.y8_c01206{bottom:39.094133pt;}
.y9_c01206{bottom:45.494000pt;}
.y6_c01206{bottom:47.095053pt;}
.y5_c01206{bottom:49.334800pt;}
.y7_c01206{bottom:52.214667pt;}
.y4_c01206{bottom:54.773720pt;}
.y2_c01206{bottom:56.054000pt;}
.y3_c01206{bottom:68.853867pt;}
.y11_c01206{bottom:521.014520pt;}
.y10_c01206{bottom:524.853840pt;}
.yf_c01206{bottom:560.694133pt;}
.ye_c01206{bottom:586.933840pt;}
.yd_c01206{bottom:613.813840pt;}
.yc_c01206{bottom:640.055053pt;}
.yb_c01206{bottom:666.614093pt;}
.ya_c01206{bottom:692.853840pt;}
.y1_c01206{bottom:755.573973pt;}
.h11_c01206{height:16.687500pt;}
.h10_c01206{height:22.945312pt;}
.hf_c01206{height:23.640625pt;}
.h12_c01206{height:24.196940pt;}
.hc_c01206{height:24.335938pt;}
.hd_c01206{height:25.031250pt;}
.he_c01206{height:29.898438pt;}
.h16_c01206{height:31.289062pt;}
.hb_c01206{height:31.984375pt;}
.h15_c01206{height:32.250000pt;}
.h13_c01206{height:32.921875pt;}
.h14_c01206{height:33.593750pt;}
.h1a_c01206{height:42.414062pt;}
.h9_c01206{height:44.500000pt;}
.h1d_c01206{height:47.976562pt;}
.h1c_c01206{height:49.046875pt;}
.h18_c01206{height:49.718750pt;}
.h19_c01206{height:50.390625pt;}
.ha_c01206{height:52.971680pt;}
.h7_c01206{height:71.218750pt;}
.h5_c01206{height:71.890625pt;}
.h2_c01206{height:73.703125pt;}
.h17_c01206{height:74.398438pt;}
.h4_c01206{height:75.250000pt;}
.h6_c01206{height:75.921875pt;}
.h1_c01206{height:77.937500pt;}
.h3_c01206{height:82.356771pt;}
.h8_c01206{height:128.632812pt;}
.h1b_c01206{height:140.453125pt;}
.h0_c01206{height:793.333333pt;}
.w0_c01206{width:1122.666667pt;}
.x0_c01206{left:0.000000pt;}
.xd_c01206{left:61.119200pt;}
.xa_c01206{left:65.598680pt;}
.x1_c01206{left:76.798813pt;}
.xe_c01206{left:133.119200pt;}
.x2_c01206{left:153.919867pt;}
.x3_c01206{left:190.719720pt;}
.xf_c01206{left:201.279720pt;}
.x4_c01206{left:235.199733pt;}
.x5_c01206{left:268.798787pt;}
.x10_c01206{left:269.759720pt;}
.x16_c01206{left:290.879867pt;}
.x17_c01206{left:315.199200pt;}
.x11_c01206{left:339.199200pt;}
.x6_c01206{left:354.238813pt;}
.x18_c01206{left:355.199707pt;}
.x7_c01206{left:375.999067pt;}
.x19_c01206{left:391.038533pt;}
.x12_c01206{left:407.359867pt;}
.x1a_c01206{left:430.398920pt;}
.x13_c01206{left:476.479987pt;}
.x8_c01206{left:570.238773pt;}
.xb_c01206{left:585.599040pt;}
.x9_c01206{left:595.519040pt;}
.x14_c01206{left:615.999067pt;}
.x1b_c01206{left:684.479080pt;}
.x15_c01206{left:687.679693pt;}
.xc_c01206{left:694.398920pt;}
.x21_c01206{left:820.479413pt;}
.x1c_c01206{left:827.519453pt;}
.x20_c01206{left:829.119147pt;}
.x1f_c01206{left:830.078693pt;}
.x1d_c01206{left:857.279293pt;}
.x1e_c01206{left:893.759680pt;}
}





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

.ir_c01207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_b1cc970917d604254f85dd9e.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01207;src:url('chunks/assets/font_e83821d5f6f7359597b5e43c.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01207;src:url('chunks/assets/font_aea92e9f9b29a35d52dbc666.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01207;src:url('chunks/assets/font_50763daa181008b6171ba6a1.woff2')format("woff");}.ff4_c01207{font-family:ff4_c01207;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01207;src:url('chunks/assets/font_456072706aa3edb65399e7fa.woff2')format("woff");}.ff5_c01207{font-family:ff5_c01207;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01207;src:url('chunks/assets/font_039dcfc71ecfe623eebed3e1.woff2')format("woff");}.ff6_c01207{font-family:ff6_c01207;line-height:1.432129;font-style:normal;font-weight: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_c01207;src:url('chunks/assets/font_52f78548255aefa8bc606f0a.woff2')format("woff");}.ff7_c01207{font-family:ff7_c01207;line-height:1.364746;font-style:normal;font-weight: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_c01207;src:url('chunks/assets/font_a83402960db2e2ba5fdf1494.woff2')format("woff");}.ff8_c01207{font-family:ff8_c01207;line-height:1.364746;font-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_c01207{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m19_c01207{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4_c01207{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m26_c01207{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.mf_c01207{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m2c_c01207{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m9_c01207{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m20_c01207{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m14_c01207{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m3_c01207{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m22_c01207{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_c01207{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m1f_c01207{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2_c01207{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m2b_c01207{transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);}
.m23_c01207{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m28_c01207{transform:matrix(0.238024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238024,0.000000,0.000000,0.250000,0,0);}
.m2f_c01207{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m17_c01207{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m8_c01207{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m16_c01207{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m2a_c01207{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.md_c01207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01207{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m27_c01207{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.mc_c01207{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m11_c01207{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_c01207{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.me_c01207{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m24_c01207{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m18_c01207{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m1a_c01207{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m25_c01207{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m1_c01207{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m1c_c01207{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m15_c01207{transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277174,0.000000,0.000000,0.250000,0,0);}
.m29_c01207{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m2e_c01207{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m1d_c01207{transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);}
.m10_c01207{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m21_c01207{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.m2d_c01207{transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283088,0.000000,0.000000,0.250000,0,0);}
.m7_c01207{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m13_c01207{transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);}
.m0_c01207{transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290179,0.000000,0.000000,0.250000,0,0);}
.m1e_c01207{transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295139,0.000000,0.000000,0.250000,0,0);}
.m30_c01207{transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);}
.ma_c01207{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);}
.m31_c01207{transform:matrix(0.561146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561146,0.000000,0.000000,0.250000,0,0);}
.m5_c01207{transform:matrix(1.032609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032609,0.000000,0.000000,0.250000,0,0);}
.v0_c01207{vertical-align:0.000000px;}
.ls2f_c01207{letter-spacing:-11.100000px;}
.ls22_c01207{letter-spacing:-10.542000px;}
.ls2e_c01207{letter-spacing:-10.410225px;}
.ls20_c01207{letter-spacing:-10.071023px;}
.ls1b_c01207{letter-spacing:-6.365400px;}
.ls26_c01207{letter-spacing:-4.748100px;}
.ls19_c01207{letter-spacing:-4.626375px;}
.ls2d_c01207{letter-spacing:-4.498725px;}
.ls5_c01207{letter-spacing:-4.180800px;}
.ls6_c01207{letter-spacing:-4.050000px;}
.ls1d_c01207{letter-spacing:-3.701775px;}
.lsb_c01207{letter-spacing:-3.610350px;}
.ls28_c01207{letter-spacing:-3.512595px;}
.ls13_c01207{letter-spacing:-3.483000px;}
.ls15_c01207{letter-spacing:-3.243600px;}
.ls7_c01207{letter-spacing:-3.239190px;}
.ls21_c01207{letter-spacing:-3.175740px;}
.ls27_c01207{letter-spacing:-2.847150px;}
.ls30_c01207{letter-spacing:-2.646900px;}
.ls25_c01207{letter-spacing:-2.446875px;}
.ls2c_c01207{letter-spacing:-2.315925px;}
.ls2a_c01207{letter-spacing:-2.223000px;}
.ls1a_c01207{letter-spacing:-2.129468px;}
.ls1c_c01207{letter-spacing:-2.109938px;}
.ls1f_c01207{letter-spacing:-2.079953px;}
.ls2b_c01207{letter-spacing:-2.022968px;}
.ls24_c01207{letter-spacing:-1.994475px;}
.ls9_c01207{letter-spacing:-1.620000px;}
.ls32_c01207{letter-spacing:-1.574100px;}
.ls17_c01207{letter-spacing:-1.543950px;}
.ls29_c01207{letter-spacing:-1.501875px;}
.lse_c01207{letter-spacing:-0.848895px;}
.ls18_c01207{letter-spacing:-0.771975px;}
.lsd_c01207{letter-spacing:-0.658800px;}
.ls8_c01207{letter-spacing:0.000000px;}
.ls4_c01207{letter-spacing:0.647640px;}
.ls0_c01207{letter-spacing:0.771975px;}
.ls16_c01207{letter-spacing:0.834592px;}
.ls23_c01207{letter-spacing:0.843600px;}
.ls12_c01207{letter-spacing:1.456050px;}
.ls10_c01207{letter-spacing:1.459500px;}
.ls14_c01207{letter-spacing:1.470000px;}
.ls1_c01207{letter-spacing:1.543950px;}
.lsf_c01207{letter-spacing:2.000700px;}
.ls11_c01207{letter-spacing:2.249100px;}
.ls2_c01207{letter-spacing:2.315925px;}
.ls3_c01207{letter-spacing:3.854400px;}
.lsa_c01207{letter-spacing:5.670810px;}
.ls31_c01207{letter-spacing:10.767225px;}
.ls1e_c01207{letter-spacing:20.820878px;}
.lsc_c01207{letter-spacing:118.665600px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01207{word-spacing:0.000000px;}
._19_c01207{margin-left:-37.185799px;}
._9_c01207{margin-left:-6.613862px;}
._11_c01207{margin-left:-4.987555px;}
._b_c01207{margin-left:-1.740834px;}
._10_c01207{width:1.313877px;}
._a_c01207{width:2.491110px;}
._d_c01207{width:3.504185px;}
._15_c01207{width:4.954613px;}
._13_c01207{width:6.444029px;}
._c_c01207{width:8.409754px;}
._14_c01207{width:9.520886px;}
._12_c01207{width:10.566781px;}
._e_c01207{width:11.677975px;}
._18_c01207{width:12.685775px;}
._f_c01207{width:13.802675px;}
._17_c01207{width:15.055895px;}
._8_c01207{width:17.016454px;}
._16_c01207{width:18.559849px;}
._6_c01207{width:19.660632px;}
._5_c01207{width:21.166658px;}
._7_c01207{width:23.214031px;}
._4_c01207{width:24.966031px;}
._2_c01207{width:28.495735px;}
._0_c01207{width:36.466718px;}
._3_c01207{width:37.810800px;}
._1_c01207{width:40.256190px;}
.fc0_c01207{color:transparent;}
.fsa_c01207{font-size:19.500000px;}
.fs6_c01207{font-size:24.000000px;}
.fs9_c01207{font-size:25.500000px;}
.fs8_c01207{font-size:26.250000px;}
.fs7_c01207{font-size:27.000000px;}
.fs5_c01207{font-size:34.500000px;}
.fsf_c01207{font-size:35.250000px;}
.fsc_c01207{font-size:36.000000px;}
.fs10_c01207{font-size:36.750000px;}
.fsd_c01207{font-size:37.500000px;}
.fse_c01207{font-size:39.750000px;}
.fsb_c01207{font-size:44.250000px;}
.fs1b_c01207{font-size:48.609540px;}
.fs1f_c01207{font-size:49.500000px;}
.fs1e_c01207{font-size:51.000000px;}
.fs18_c01207{font-size:52.500000px;}
.fs13_c01207{font-size:53.250000px;}
.fs12_c01207{font-size:54.000000px;}
.fs11_c01207{font-size:54.750000px;}
.fs17_c01207{font-size:55.500000px;}
.fs15_c01207{font-size:56.250000px;}
.fs19_c01207{font-size:57.000000px;}
.fs16_c01207{font-size:57.750000px;}
.fs1a_c01207{font-size:58.500000px;}
.fs1d_c01207{font-size:59.250000px;}
.fs14_c01207{font-size:60.000000px;}
.fs1c_c01207{font-size:60.750000px;}
.fs20_c01207{font-size:66.750000px;}
.fs1_c01207{font-size:78.000000px;}
.fs2_c01207{font-size:81.000000px;}
.fs3_c01207{font-size:82.500000px;}
.fs0_c01207{font-size:84.000000px;}
.fs4_c01207{font-size:84.750000px;}
.fs21_c01207{font-size:242.250000px;}
.y0_c01207{bottom:0.000000px;}
.y4_c01207{bottom:40.380000px;}
.y3_c01207{bottom:49.740435px;}
.y2_c01207{bottom:58.380585px;}
.y31_c01207{bottom:190.860900px;}
.y30_c01207{bottom:234.780675px;}
.y2f_c01207{bottom:265.740435px;}
.y2e_c01207{bottom:295.260135px;}
.y2d_c01207{bottom:325.860150px;}
.y2c_c01207{bottom:385.981065px;}
.y2b_c01207{bottom:445.020720px;}
.y29_c01207{bottom:459.781455px;}
.y2a_c01207{bottom:459.781500px;}
.y28_c01207{bottom:474.540570px;}
.y27_c01207{bottom:474.541215px;}
.y26_c01207{bottom:489.660420px;}
.y25_c01207{bottom:489.660600px;}
.y23_c01207{bottom:504.421005px;}
.y24_c01207{bottom:504.421185px;}
.y22_c01207{bottom:519.180135px;}
.y21_c01207{bottom:519.180915px;}
.y20_c01207{bottom:534.300105px;}
.y1f_c01207{bottom:534.300795px;}
.y1e_c01207{bottom:549.420000px;}
.y1d_c01207{bottom:549.420135px;}
.y1c_c01207{bottom:564.180720px;}
.y1b_c01207{bottom:564.181545px;}
.y1a_c01207{bottom:578.942145px;}
.y19_c01207{bottom:594.061335px;}
.y18_c01207{bottom:594.062115px;}
.y17_c01207{bottom:608.821245px;}
.y16_c01207{bottom:623.940450px;}
.y14_c01207{bottom:638.700855px;}
.y15_c01207{bottom:638.701035px;}
.y12_c01207{bottom:653.459700px;}
.y13_c01207{bottom:653.459970px;}
.y10_c01207{bottom:668.581470px;}
.y11_c01207{bottom:668.581605px;}
.yf_c01207{bottom:683.340585px;}
.ye_c01207{bottom:683.340735px;}
.yd_c01207{bottom:698.101320px;}
.yc_c01207{bottom:713.221980px;}
.yb_c01207{bottom:728.341185px;}
.ya_c01207{bottom:743.100270px;}
.y9_c01207{bottom:758.220105px;}
.y8_c01207{bottom:758.220240px;}
.y7_c01207{bottom:772.980840px;}
.y6_c01207{bottom:772.981560px;}
.y5_c01207{bottom:788.100765px;}
.y1_c01207{bottom:846.060705px;}
.hb_c01207{height:20.337891px;}
.h7_c01207{height:23.542969px;}
.ha_c01207{height:26.595703px;}
.h9_c01207{height:27.377930px;}
.h8_c01207{height:28.160156px;}
.h10_c01207{height:35.525391px;}
.h6_c01207{height:35.982422px;}
.hd_c01207{height:36.281250px;}
.h11_c01207{height:37.037109px;}
.he_c01207{height:37.792969px;}
.hf_c01207{height:39.284180px;}
.hc_c01207{height:43.731445px;}
.h23_c01207{height:50.053711px;}
.h1f_c01207{height:50.698231px;}
.h19_c01207{height:51.525879px;}
.h24_c01207{height:51.626953px;}
.h14_c01207{height:52.261963px;}
.h12_c01207{height:53.734131px;}
.h13_c01207{height:54.421875px;}
.h1c_c01207{height:54.470215px;}
.h22_c01207{height:54.849609px;}
.h16_c01207{height:55.206299px;}
.h18_c01207{height:55.933594px;}
.h1e_c01207{height:55.942383px;}
.h17_c01207{height:56.678467px;}
.h1a_c01207{height:56.689453px;}
.h1d_c01207{height:57.414551px;}
.h1b_c01207{height:57.445312px;}
.h21_c01207{height:58.555664px;}
.h15_c01207{height:59.296875px;}
.h20_c01207{height:59.622803px;}
.h25_c01207{height:69.618164px;}
.h2_c01207{height:81.351562px;}
.h3_c01207{height:81.632812px;}
.h4_c01207{height:83.144531px;}
.h5_c01207{height:83.177490px;}
.h1_c01207{height:84.656250px;}
.h26_c01207{height:252.659180px;}
.h0_c01207{height:892.500000px;}
.w0_c01207{width:1263.000000px;}
.x0_c01207{left:0.000000px;}
.x1_c01207{left:83.519685px;}
.x7_c01207{left:89.279250px;}
.x9_c01207{left:153.719100px;}
.x2_c01207{left:171.358665px;}
.x3_c01207{left:213.119385px;}
.xa_c01207{left:231.479235px;}
.xb_c01207{left:307.798950px;}
.x12_c01207{left:331.918350px;}
.x13_c01207{left:359.279250px;}
.xc_c01207{left:386.279250px;}
.x4_c01207{left:397.080000px;}
.x14_c01207{left:405.359250px;}
.x5_c01207{left:422.278800px;}
.x15_c01207{left:445.318770px;}
.xd_c01207{left:463.319235px;}
.x16_c01207{left:488.878920px;}
.xe_c01207{left:540.718500px;}
.xf_c01207{left:619.918950px;}
.x6_c01207{left:669.599670px;}
.x10_c01207{left:697.679070px;}
.x11_c01207{left:776.159370px;}
.x8_c01207{left:779.399235px;}
.x18_c01207{left:916.198305px;}
.x2b_c01207{left:917.280390px;}
.x35_c01207{left:918.359580px;}
.x3f_c01207{left:919.437675px;}
.x4a_c01207{left:926.999355px;}
.x4b_c01207{left:928.078770px;}
.x17_c01207{left:954.358605px;}
.x32_c01207{left:956.878185px;}
.x42_c01207{left:958.318845px;}
.x48_c01207{left:959.759520px;}
.x49_c01207{left:960.839175px;}
.x4c_c01207{left:961.919490px;}
.x4d_c01207{left:963.359805px;}
.x43_c01207{left:976.678530px;}
.x20_c01207{left:978.838905px;}
.x36_c01207{left:984.239220px;}
.x30_c01207{left:989.998905px;}
.x21_c01207{left:996.478635px;}
.x37_c01207{left:998.279850px;}
.x31_c01207{left:1003.319190px;}
.x2c_c01207{left:1006.559055px;}
.x44_c01207{left:1010.159820px;}
.x45_c01207{left:1017.359805px;}
.x2e_c01207{left:1024.198785px;}
.x3e_c01207{left:1029.958275px;}
.x46_c01207{left:1036.078770px;}
.x2f_c01207{left:1040.399775px;}
.x1e_c01207{left:1045.798560px;}
.x38_c01207{left:1049.039985px;}
.x27_c01207{left:1052.279850px;}
.x3c_c01207{left:1054.799565px;}
.x2d_c01207{left:1057.319190px;}
.x1f_c01207{left:1061.999355px;}
.x39_c01207{left:1065.598575px;}
.x40_c01207{left:1076.039985px;}
.x19_c01207{left:1078.918950px;}
.x41_c01207{left:1087.199805px;}
.x3a_c01207{left:1090.078770px;}
.x24_c01207{left:1091.159820px;}
.x1a_c01207{left:1111.319190px;}
.x33_c01207{left:1118.159820px;}
.x22_c01207{left:1124.278755px;}
.x28_c01207{left:1131.478635px;}
.x25_c01207{left:1132.918950px;}
.x3b_c01207{left:1142.999355px;}
.x23_c01207{left:1144.078770px;}
.x34_c01207{left:1146.598575px;}
.x29_c01207{left:1153.079955px;}
.x1c_c01207{left:1155.599670px;}
.x26_c01207{left:1168.199805px;}
.x3d_c01207{left:1177.199340px;}
.x1d_c01207{left:1178.639655px;}
.x47_c01207{left:1190.878875px;}
.x1b_c01207{left:1196.999355px;}
.x2a_c01207{left:1204.199340px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls2f_c01207{letter-spacing:-9.866667pt;}
.ls22_c01207{letter-spacing:-9.370667pt;}
.ls2e_c01207{letter-spacing:-9.253533pt;}
.ls20_c01207{letter-spacing:-8.952020pt;}
.ls1b_c01207{letter-spacing:-5.658133pt;}
.ls26_c01207{letter-spacing:-4.220533pt;}
.ls19_c01207{letter-spacing:-4.112333pt;}
.ls2d_c01207{letter-spacing:-3.998867pt;}
.ls5_c01207{letter-spacing:-3.716267pt;}
.ls6_c01207{letter-spacing:-3.600000pt;}
.ls1d_c01207{letter-spacing:-3.290467pt;}
.lsb_c01207{letter-spacing:-3.209200pt;}
.ls28_c01207{letter-spacing:-3.122307pt;}
.ls13_c01207{letter-spacing:-3.096000pt;}
.ls15_c01207{letter-spacing:-2.883200pt;}
.ls7_c01207{letter-spacing:-2.879280pt;}
.ls21_c01207{letter-spacing:-2.822880pt;}
.ls27_c01207{letter-spacing:-2.530800pt;}
.ls30_c01207{letter-spacing:-2.352800pt;}
.ls25_c01207{letter-spacing:-2.175000pt;}
.ls2c_c01207{letter-spacing:-2.058600pt;}
.ls2a_c01207{letter-spacing:-1.976000pt;}
.ls1a_c01207{letter-spacing:-1.892860pt;}
.ls1c_c01207{letter-spacing:-1.875500pt;}
.ls1f_c01207{letter-spacing:-1.848847pt;}
.ls2b_c01207{letter-spacing:-1.798193pt;}
.ls24_c01207{letter-spacing:-1.772867pt;}
.ls9_c01207{letter-spacing:-1.440000pt;}
.ls32_c01207{letter-spacing:-1.399200pt;}
.ls17_c01207{letter-spacing:-1.372400pt;}
.ls29_c01207{letter-spacing:-1.335000pt;}
.lse_c01207{letter-spacing:-0.754573pt;}
.ls18_c01207{letter-spacing:-0.686200pt;}
.lsd_c01207{letter-spacing:-0.585600pt;}
.ls8_c01207{letter-spacing:0.000000pt;}
.ls4_c01207{letter-spacing:0.575680pt;}
.ls0_c01207{letter-spacing:0.686200pt;}
.ls16_c01207{letter-spacing:0.741860pt;}
.ls23_c01207{letter-spacing:0.749867pt;}
.ls12_c01207{letter-spacing:1.294267pt;}
.ls10_c01207{letter-spacing:1.297333pt;}
.ls14_c01207{letter-spacing:1.306667pt;}
.ls1_c01207{letter-spacing:1.372400pt;}
.lsf_c01207{letter-spacing:1.778400pt;}
.ls11_c01207{letter-spacing:1.999200pt;}
.ls2_c01207{letter-spacing:2.058600pt;}
.ls3_c01207{letter-spacing:3.426133pt;}
.lsa_c01207{letter-spacing:5.040720pt;}
.ls31_c01207{letter-spacing:9.570867pt;}
.ls1e_c01207{letter-spacing:18.507447pt;}
.lsc_c01207{letter-spacing:105.480533pt;}
.ws0_c01207{word-spacing:0.000000pt;}
._19_c01207{margin-left:-33.054044pt;}
._9_c01207{margin-left:-5.878988pt;}
._11_c01207{margin-left:-4.433383pt;}
._b_c01207{margin-left:-1.547408pt;}
._10_c01207{width:1.167890pt;}
._a_c01207{width:2.214320pt;}
._d_c01207{width:3.114831pt;}
._15_c01207{width:4.404100pt;}
._13_c01207{width:5.728026pt;}
._c_c01207{width:7.475337pt;}
._14_c01207{width:8.463010pt;}
._12_c01207{width:9.392694pt;}
._e_c01207{width:10.380422pt;}
._18_c01207{width:11.276245pt;}
._f_c01207{width:12.269045pt;}
._17_c01207{width:13.383018pt;}
._8_c01207{width:15.125737pt;}
._16_c01207{width:16.497644pt;}
._6_c01207{width:17.476118pt;}
._5_c01207{width:18.814808pt;}
._7_c01207{width:20.634694pt;}
._4_c01207{width:22.192027pt;}
._2_c01207{width:25.329542pt;}
._0_c01207{width:32.414861pt;}
._3_c01207{width:33.609600pt;}
._1_c01207{width:35.783280pt;}
.fsa_c01207{font-size:17.333333pt;}
.fs6_c01207{font-size:21.333333pt;}
.fs9_c01207{font-size:22.666667pt;}
.fs8_c01207{font-size:23.333333pt;}
.fs7_c01207{font-size:24.000000pt;}
.fs5_c01207{font-size:30.666667pt;}
.fsf_c01207{font-size:31.333333pt;}
.fsc_c01207{font-size:32.000000pt;}
.fs10_c01207{font-size:32.666667pt;}
.fsd_c01207{font-size:33.333333pt;}
.fse_c01207{font-size:35.333333pt;}
.fsb_c01207{font-size:39.333333pt;}
.fs1b_c01207{font-size:43.208480pt;}
.fs1f_c01207{font-size:44.000000pt;}
.fs1e_c01207{font-size:45.333333pt;}
.fs18_c01207{font-size:46.666667pt;}
.fs13_c01207{font-size:47.333333pt;}
.fs12_c01207{font-size:48.000000pt;}
.fs11_c01207{font-size:48.666667pt;}
.fs17_c01207{font-size:49.333333pt;}
.fs15_c01207{font-size:50.000000pt;}
.fs19_c01207{font-size:50.666667pt;}
.fs16_c01207{font-size:51.333333pt;}
.fs1a_c01207{font-size:52.000000pt;}
.fs1d_c01207{font-size:52.666667pt;}
.fs14_c01207{font-size:53.333333pt;}
.fs1c_c01207{font-size:54.000000pt;}
.fs20_c01207{font-size:59.333333pt;}
.fs1_c01207{font-size:69.333333pt;}
.fs2_c01207{font-size:72.000000pt;}
.fs3_c01207{font-size:73.333333pt;}
.fs0_c01207{font-size:74.666667pt;}
.fs4_c01207{font-size:75.333333pt;}
.fs21_c01207{font-size:215.333333pt;}
.y0_c01207{bottom:0.000000pt;}
.y4_c01207{bottom:35.893333pt;}
.y3_c01207{bottom:44.213720pt;}
.y2_c01207{bottom:51.893853pt;}
.y31_c01207{bottom:169.654133pt;}
.y30_c01207{bottom:208.693933pt;}
.y2f_c01207{bottom:236.213720pt;}
.y2e_c01207{bottom:262.453453pt;}
.y2d_c01207{bottom:289.653467pt;}
.y2c_c01207{bottom:343.094280pt;}
.y2b_c01207{bottom:395.573973pt;}
.y29_c01207{bottom:408.694627pt;}
.y2a_c01207{bottom:408.694667pt;}
.y28_c01207{bottom:421.813840pt;}
.y27_c01207{bottom:421.814413pt;}
.y26_c01207{bottom:435.253707pt;}
.y25_c01207{bottom:435.253867pt;}
.y23_c01207{bottom:448.374227pt;}
.y24_c01207{bottom:448.374387pt;}
.y22_c01207{bottom:461.493453pt;}
.y21_c01207{bottom:461.494147pt;}
.y20_c01207{bottom:474.933427pt;}
.y1f_c01207{bottom:474.934040pt;}
.y1e_c01207{bottom:488.373333pt;}
.y1d_c01207{bottom:488.373453pt;}
.y1c_c01207{bottom:501.493973pt;}
.y1b_c01207{bottom:501.494707pt;}
.y1a_c01207{bottom:514.615240pt;}
.y19_c01207{bottom:528.054520pt;}
.y18_c01207{bottom:528.055213pt;}
.y17_c01207{bottom:541.174440pt;}
.y16_c01207{bottom:554.613733pt;}
.y14_c01207{bottom:567.734093pt;}
.y15_c01207{bottom:567.734253pt;}
.y12_c01207{bottom:580.853067pt;}
.y13_c01207{bottom:580.853307pt;}
.y10_c01207{bottom:594.294640pt;}
.y11_c01207{bottom:594.294760pt;}
.yf_c01207{bottom:607.413853pt;}
.ye_c01207{bottom:607.413987pt;}
.yd_c01207{bottom:620.534507pt;}
.yc_c01207{bottom:633.975093pt;}
.yb_c01207{bottom:647.414387pt;}
.ya_c01207{bottom:660.533573pt;}
.y9_c01207{bottom:673.973427pt;}
.y8_c01207{bottom:673.973547pt;}
.y7_c01207{bottom:687.094080pt;}
.y6_c01207{bottom:687.094720pt;}
.y5_c01207{bottom:700.534013pt;}
.y1_c01207{bottom:752.053960pt;}
.hb_c01207{height:18.078125pt;}
.h7_c01207{height:20.927083pt;}
.ha_c01207{height:23.640625pt;}
.h9_c01207{height:24.335938pt;}
.h8_c01207{height:25.031250pt;}
.h10_c01207{height:31.578125pt;}
.h6_c01207{height:31.984375pt;}
.hd_c01207{height:32.250000pt;}
.h11_c01207{height:32.921875pt;}
.he_c01207{height:33.593750pt;}
.hf_c01207{height:34.919271pt;}
.hc_c01207{height:38.872396pt;}
.h23_c01207{height:44.492188pt;}
.h1f_c01207{height:45.065094pt;}
.h19_c01207{height:45.800781pt;}
.h24_c01207{height:45.890625pt;}
.h14_c01207{height:46.455078pt;}
.h12_c01207{height:47.763672pt;}
.h13_c01207{height:48.375000pt;}
.h1c_c01207{height:48.417969pt;}
.h22_c01207{height:48.755208pt;}
.h16_c01207{height:49.072266pt;}
.h18_c01207{height:49.718750pt;}
.h1e_c01207{height:49.726562pt;}
.h17_c01207{height:50.380859pt;}
.h1a_c01207{height:50.390625pt;}
.h1d_c01207{height:51.035156pt;}
.h1b_c01207{height:51.062500pt;}
.h21_c01207{height:52.049479pt;}
.h15_c01207{height:52.708333pt;}
.h20_c01207{height:52.998047pt;}
.h25_c01207{height:61.882812pt;}
.h2_c01207{height:72.312500pt;}
.h3_c01207{height:72.562500pt;}
.h4_c01207{height:73.906250pt;}
.h5_c01207{height:73.935547pt;}
.h1_c01207{height:75.250000pt;}
.h26_c01207{height:224.585938pt;}
.h0_c01207{height:793.333333pt;}
.w0_c01207{width:1122.666667pt;}
.x0_c01207{left:0.000000pt;}
.x1_c01207{left:74.239720pt;}
.x7_c01207{left:79.359333pt;}
.x9_c01207{left:136.639200pt;}
.x2_c01207{left:152.318813pt;}
.x3_c01207{left:189.439453pt;}
.xa_c01207{left:205.759320pt;}
.xb_c01207{left:273.599067pt;}
.x12_c01207{left:295.038533pt;}
.x13_c01207{left:319.359333pt;}
.xc_c01207{left:343.359333pt;}
.x4_c01207{left:352.960000pt;}
.x14_c01207{left:360.319333pt;}
.x5_c01207{left:375.358933pt;}
.x15_c01207{left:395.838907pt;}
.xd_c01207{left:411.839320pt;}
.x16_c01207{left:434.559040pt;}
.xe_c01207{left:480.638667pt;}
.xf_c01207{left:551.039067pt;}
.x6_c01207{left:595.199707pt;}
.x10_c01207{left:620.159173pt;}
.x11_c01207{left:689.919440pt;}
.x8_c01207{left:692.799320pt;}
.x18_c01207{left:814.398493pt;}
.x2b_c01207{left:815.360347pt;}
.x35_c01207{left:816.319627pt;}
.x3f_c01207{left:817.277933pt;}
.x4a_c01207{left:823.999427pt;}
.x4b_c01207{left:824.958907pt;}
.x17_c01207{left:848.318760pt;}
.x32_c01207{left:850.558387pt;}
.x42_c01207{left:851.838973pt;}
.x48_c01207{left:853.119573pt;}
.x49_c01207{left:854.079267pt;}
.x4c_c01207{left:855.039547pt;}
.x4d_c01207{left:856.319827pt;}
.x43_c01207{left:868.158693pt;}
.x20_c01207{left:870.079027pt;}
.x36_c01207{left:874.879307pt;}
.x30_c01207{left:879.999027pt;}
.x21_c01207{left:885.758787pt;}
.x37_c01207{left:887.359867pt;}
.x31_c01207{left:891.839280pt;}
.x2c_c01207{left:894.719160pt;}
.x44_c01207{left:897.919840pt;}
.x45_c01207{left:904.319827pt;}
.x2e_c01207{left:910.398920pt;}
.x3e_c01207{left:915.518467pt;}
.x46_c01207{left:920.958907pt;}
.x2f_c01207{left:924.799800pt;}
.x1e_c01207{left:929.598720pt;}
.x38_c01207{left:932.479987pt;}
.x27_c01207{left:935.359867pt;}
.x3c_c01207{left:937.599613pt;}
.x2d_c01207{left:939.839280pt;}
.x1f_c01207{left:943.999427pt;}
.x39_c01207{left:947.198733pt;}
.x40_c01207{left:956.479987pt;}
.x19_c01207{left:959.039067pt;}
.x41_c01207{left:966.399827pt;}
.x3a_c01207{left:968.958907pt;}
.x24_c01207{left:969.919840pt;}
.x1a_c01207{left:987.839280pt;}
.x33_c01207{left:993.919840pt;}
.x22_c01207{left:999.358893pt;}
.x28_c01207{left:1005.758787pt;}
.x25_c01207{left:1007.039067pt;}
.x3b_c01207{left:1015.999427pt;}
.x23_c01207{left:1016.958907pt;}
.x34_c01207{left:1019.198733pt;}
.x29_c01207{left:1024.959960pt;}
.x1c_c01207{left:1027.199707pt;}
.x26_c01207{left:1038.399827pt;}
.x3d_c01207{left:1046.399413pt;}
.x1d_c01207{left:1047.679693pt;}
.x47_c01207{left:1058.559000pt;}
.x1b_c01207{left:1063.999427pt;}
.x2a_c01207{left:1070.399413pt;}
}





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

.ir_c01208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_b04876bf45da750f30d3a01c.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01208;src:url('chunks/assets/font_76663c7545fa548ecf704643.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01208;src:url('chunks/assets/font_c9a821a940011281a388248e.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01208;src:url('chunks/assets/font_7f862ce0783d4df18a78f655.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01208;src:url('chunks/assets/font_02a97655f95780b004337cc6.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01208;src:url('chunks/assets/font_98b47e9b2d56b917206e2fc0.woff2')format("woff");}.ff6_c01208{font-family:ff6_c01208;line-height:1.432129;font-style:normal;font-weight: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_c01208;src:url('chunks/assets/font_b473ac4501df34c8ac9dac5a.woff2')format("woff");}.ff7_c01208{font-family:ff7_c01208;line-height:1.284668;font-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_c01208{transform:matrix(0.137446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137446,0.000000,0.000000,0.250000,0,0);}
.m21_c01208{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m2f_c01208{transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);}
.m1d_c01208{transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);}
.md_c01208{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_c01208{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m17_c01208{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m23_c01208{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m9_c01208{transform:matrix(0.207317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207317,0.000000,0.000000,0.250000,0,0);}
.m15_c01208{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m8_c01208{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m2_c01208{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m27_c01208{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_c01208{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m13_c01208{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);}
.m28_c01208{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m11_c01208{transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235577,0.000000,0.000000,0.250000,0,0);}
.m1c_c01208{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m26_c01208{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m2d_c01208{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.ma_c01208{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m25_c01208{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m19_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01208{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m7_c01208{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.mc_c01208{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m1a_c01208{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m12_c01208{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_c01208{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m22_c01208{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m0_c01208{transform:matrix(0.266931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266931,0.000000,0.000000,0.250000,0,0);}
.m2a_c01208{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.m2b_c01208{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m14_c01208{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m10_c01208{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m24_c01208{transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);}
.m1b_c01208{transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284722,0.000000,0.000000,0.250000,0,0);}
.m2e_c01208{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m1f_c01208{transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);}
.m1_c01208{transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292079,0.000000,0.000000,0.250000,0,0);}
.m20_c01208{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01208{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c01208{transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306667,0.000000,0.000000,0.250000,0,0);}
.m4_c01208{transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316667,0.000000,0.000000,0.250000,0,0);}
.m6_c01208{transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335938,0.000000,0.000000,0.250000,0,0);}
.mb_c01208{transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421429,0.000000,0.000000,0.250000,0,0);}
.m3_c01208{transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);}
.m5_c01208{transform:matrix(13.675927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(13.675927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(13.675927,0.000000,0.000000,0.250000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls2c_c01208{letter-spacing:-20.193225px;}
.ls2b_c01208{letter-spacing:-16.641450px;}
.ls27_c01208{letter-spacing:-15.207000px;}
.ls2a_c01208{letter-spacing:-9.756600px;}
.ls1a_c01208{letter-spacing:-7.922325px;}
.ls1f_c01208{letter-spacing:-6.481853px;}
.ls21_c01208{letter-spacing:-6.247500px;}
.ls11_c01208{letter-spacing:-6.181275px;}
.ls4_c01208{letter-spacing:-5.922000px;}
.ls1c_c01208{letter-spacing:-5.765175px;}
.ls1e_c01208{letter-spacing:-5.290433px;}
.ls23_c01208{letter-spacing:-5.042475px;}
.ls26_c01208{letter-spacing:-4.738500px;}
.ls25_c01208{letter-spacing:-4.674000px;}
.ls22_c01208{letter-spacing:-4.635900px;}
.ls20_c01208{letter-spacing:-4.518255px;}
.ls1d_c01208{letter-spacing:-3.962700px;}
.ls18_c01208{letter-spacing:-3.749933px;}
.ls17_c01208{letter-spacing:-3.602550px;}
.ls29_c01208{letter-spacing:-3.239010px;}
.ls2_c01208{letter-spacing:-3.211800px;}
.lsd_c01208{letter-spacing:-3.182400px;}
.ls19_c01208{letter-spacing:-2.887500px;}
.ls13_c01208{letter-spacing:-2.879850px;}
.ls5_c01208{letter-spacing:-2.658825px;}
.ls1b_c01208{letter-spacing:-2.635200px;}
.ls28_c01208{letter-spacing:-2.357228px;}
.ls7_c01208{letter-spacing:-2.186625px;}
.ls14_c01208{letter-spacing:-2.163173px;}
.ls16_c01208{letter-spacing:-1.461825px;}
.ls12_c01208{letter-spacing:-1.440473px;}
.lsc_c01208{letter-spacing:-1.230375px;}
.ls6_c01208{letter-spacing:-1.115760px;}
.ls8_c01208{letter-spacing:-0.879142px;}
.ls15_c01208{letter-spacing:-0.722700px;}
.ls1_c01208{letter-spacing:0.000000px;}
.ls10_c01208{letter-spacing:0.686400px;}
.ls24_c01208{letter-spacing:0.749250px;}
.ls3_c01208{letter-spacing:0.874500px;}
.ls9_c01208{letter-spacing:0.904050px;}
.lsb_c01208{letter-spacing:0.977175px;}
.ls0_c01208{letter-spacing:1.440473px;}
.lsa_c01208{letter-spacing:1.543763px;}
.lsf_c01208{letter-spacing:2.501250px;}
.lse_c01208{letter-spacing:2.883750px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01208{word-spacing:0.000000px;}
._c_c01208{margin-left:-12.479917px;}
._13_c01208{margin-left:-7.610596px;}
._7_c01208{margin-left:-5.734429px;}
._a_c01208{margin-left:-3.140691px;}
._b_c01208{margin-left:-1.965525px;}
._2_c01208{width:1.851357px;}
._4_c01208{width:4.247736px;}
._3_c01208{width:5.527733px;}
._6_c01208{width:7.774846px;}
._12_c01208{width:9.169069px;}
._10_c01208{width:12.083556px;}
._d_c01208{width:13.962057px;}
._5_c01208{width:15.028817px;}
._11_c01208{width:16.374976px;}
._8_c01208{width:17.744706px;}
._f_c01208{width:19.177484px;}
._e_c01208{width:21.065927px;}
._9_c01208{width:22.309127px;}
._0_c01208{width:32.619377px;}
._1_c01208{width:38.240962px;}
.fc0_c01208{color:transparent;}
.fs5_c01208{font-size:20.250000px;}
.fs4_c01208{font-size:22.500000px;}
.fs6_c01208{font-size:24.000000px;}
.fs7_c01208{font-size:26.250000px;}
.fsa_c01208{font-size:27.000000px;}
.fs8_c01208{font-size:30.750000px;}
.fsb_c01208{font-size:32.250000px;}
.fsf_c01208{font-size:33.000000px;}
.fsc_c01208{font-size:37.500000px;}
.fsd_c01208{font-size:38.250000px;}
.fse_c01208{font-size:39.000000px;}
.fs9_c01208{font-size:41.250000px;}
.fs1a_c01208{font-size:48.750000px;}
.fs1b_c01208{font-size:50.250000px;}
.fs18_c01208{font-size:51.000000px;}
.fs3_c01208{font-size:51.750000px;}
.fs17_c01208{font-size:52.500000px;}
.fs1d_c01208{font-size:53.250000px;}
.fs14_c01208{font-size:54.000000px;}
.fs10_c01208{font-size:54.750000px;}
.fs15_c01208{font-size:55.500000px;}
.fs11_c01208{font-size:56.250000px;}
.fs19_c01208{font-size:57.000000px;}
.fs13_c01208{font-size:57.750000px;}
.fs16_c01208{font-size:58.500000px;}
.fs12_c01208{font-size:59.250000px;}
.fs1c_c01208{font-size:69.000000px;}
.fs1_c01208{font-size:75.750000px;}
.fs0_c01208{font-size:82.420800px;}
.fs2_c01208{font-size:82.500000px;}
.fs1f_c01208{font-size:94.500000px;}
.fs20_c01208{font-size:97.500000px;}
.fs21_c01208{font-size:121.500000px;}
.fs1e_c01208{font-size:173.250000px;}
.y0_c01208{bottom:0.000000px;}
.y4_c01208{bottom:39.661485px;}
.y3_c01208{bottom:48.661035px;}
.y2_c01208{bottom:55.860900px;}
.y18_c01208{bottom:389.580420px;}
.y17_c01208{bottom:418.381620px;}
.y16_c01208{bottom:463.741470px;}
.y15_c01208{bottom:612.780435px;}
.y14_c01208{bottom:627.541035px;}
.y13_c01208{bottom:627.541140px;}
.y12_c01208{bottom:642.301740px;}
.y11_c01208{bottom:657.060885px;}
.y10_c01208{bottom:671.821470px;}
.yf_c01208{bottom:686.580420px;}
.yd_c01208{bottom:701.341170px;}
.ye_c01208{bottom:701.341185px;}
.yc_c01208{bottom:716.820420px;}
.yb_c01208{bottom:731.581005px;}
.ya_c01208{bottom:731.581830px;}
.y9_c01208{bottom:746.701035px;}
.y8_c01208{bottom:761.462400px;}
.y6_c01208{bottom:776.581440px;}
.y7_c01208{bottom:776.581605px;}
.y5_c01208{bottom:792.060705px;}
.y1_c01208{bottom:843.900240px;}
.h6_c01208{height:21.120117px;}
.h5_c01208{height:22.236328px;}
.h7_c01208{height:25.031250px;}
.h8_c01208{height:27.377930px;}
.hb_c01208{height:28.160156px;}
.h9_c01208{height:30.389648px;}
.hc_c01208{height:33.635742px;}
.h10_c01208{height:34.417969px;}
.hd_c01208{height:37.792969px;}
.hf_c01208{height:38.542969px;}
.he_c01208{height:38.548828px;}
.ha_c01208{height:40.766602px;}
.h1f_c01208{height:50.844727px;}
.h22_c01208{height:52.261963px;}
.h20_c01208{height:52.409180px;}
.h16_c01208{height:52.998047px;}
.h1c_c01208{height:53.191406px;}
.h12_c01208{height:53.734131px;}
.h4_c01208{height:53.973633px;}
.h1a_c01208{height:54.470215px;}
.h1b_c01208{height:54.755859px;}
.h11_c01208{height:55.177734px;}
.h13_c01208{height:55.206299px;}
.h17_c01208{height:55.933594px;}
.h1e_c01208{height:56.332031px;}
.h15_c01208{height:56.678467px;}
.h19_c01208{height:57.414551px;}
.h14_c01208{height:58.150635px;}
.h18_c01208{height:58.555664px;}
.h1d_c01208{height:58.666992px;}
.h21_c01208{height:71.964844px;}
.h2_c01208{height:79.004883px;}
.h3_c01208{height:83.144531px;}
.h1_c01208{height:85.962319px;}
.h24_c01208{height:98.560547px;}
.h25_c01208{height:101.689453px;}
.h26_c01208{height:126.720703px;}
.h23_c01208{height:180.694336px;}
.h0_c01208{height:892.500000px;}
.w0_c01208{width:1263.000000px;}
.x0_c01208{left:0.000000px;}
.x1_c01208{left:84.958350px;}
.x4_c01208{left:89.279250px;}
.x7_c01208{left:156.238785px;}
.x2_c01208{left:173.159850px;}
.x3_c01208{left:214.918950px;}
.x8_c01208{left:233.998950px;}
.x9_c01208{left:311.038950px;}
.x10_c01208{left:334.439685px;}
.x11_c01208{left:362.878350px;}
.xa_c01208{left:390.239220px;}
.x12_c01208{left:408.599070px;}
.x13_c01208{left:448.199385px;}
.xb_c01208{left:466.918350px;}
.x14_c01208{left:492.479685px;}
.xc_c01208{left:545.039385px;}
.xd_c01208{left:622.438620px;}
.x5_c01208{left:659.878320px;}
.xe_c01208{left:699.839535px;}
.xf_c01208{left:777.599670px;}
.x6_c01208{left:780.119385px;}
.x39_c01208{left:926.638545px;}
.x36_c01208{left:928.078770px;}
.x17_c01208{left:929.158860px;}
.x2b_c01208{left:930.239220px;}
.x2c_c01208{left:935.639655px;}
.x34_c01208{left:938.159370px;}
.x1b_c01208{left:946.079400px;}
.x3a_c01208{left:953.999355px;}
.x15_c01208{left:968.399235px;}
.x35_c01208{left:970.918950px;}
.x3b_c01208{left:972.000000px;}
.x2d_c01208{left:979.559055px;}
.x16_c01208{left:986.399775px;}
.x2f_c01208{left:991.079955px;}
.x1c_c01208{left:999.718500px;}
.x2e_c01208{left:1001.158815px;}
.x37_c01208{left:1011.598575px;}
.x38_c01208{left:1028.878965px;}
.x1d_c01208{left:1035.358605px;}
.x24_c01208{left:1037.519070px;}
.x27_c01208{left:1049.399235px;}
.x18_c01208{left:1051.918950px;}
.x19_c01208{left:1063.798920px;}
.x20_c01208{left:1072.439205px;}
.x1a_c01208{left:1083.958275px;}
.x32_c01208{left:1098.719055px;}
.x28_c01208{left:1107.359250px;}
.x21_c01208{left:1110.599025px;}
.x33_c01208{left:1123.558590px;}
.x30_c01208{left:1140.479640px;}
.x31_c01208{left:1150.558590px;}
.x25_c01208{left:1156.679070px;}
.x1e_c01208{left:1161.718590px;}
.x26_c01208{left:1167.118740px;}
.x29_c01208{left:1179.359805px;}
.x1f_c01208{left:1181.159370px;}
.x2a_c01208{left:1189.799565px;}
.x22_c01208{left:1200.598575px;}
.x23_c01208{left:1212.119385px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls2c_c01208{letter-spacing:-17.949533pt;}
.ls2b_c01208{letter-spacing:-14.792400pt;}
.ls27_c01208{letter-spacing:-13.517333pt;}
.ls2a_c01208{letter-spacing:-8.672533pt;}
.ls1a_c01208{letter-spacing:-7.042067pt;}
.ls1f_c01208{letter-spacing:-5.761647pt;}
.ls21_c01208{letter-spacing:-5.553333pt;}
.ls11_c01208{letter-spacing:-5.494467pt;}
.ls4_c01208{letter-spacing:-5.264000pt;}
.ls1c_c01208{letter-spacing:-5.124600pt;}
.ls1e_c01208{letter-spacing:-4.702607pt;}
.ls23_c01208{letter-spacing:-4.482200pt;}
.ls26_c01208{letter-spacing:-4.212000pt;}
.ls25_c01208{letter-spacing:-4.154667pt;}
.ls22_c01208{letter-spacing:-4.120800pt;}
.ls20_c01208{letter-spacing:-4.016227pt;}
.ls1d_c01208{letter-spacing:-3.522400pt;}
.ls18_c01208{letter-spacing:-3.333273pt;}
.ls17_c01208{letter-spacing:-3.202267pt;}
.ls29_c01208{letter-spacing:-2.879120pt;}
.ls2_c01208{letter-spacing:-2.854933pt;}
.lsd_c01208{letter-spacing:-2.828800pt;}
.ls19_c01208{letter-spacing:-2.566667pt;}
.ls13_c01208{letter-spacing:-2.559867pt;}
.ls5_c01208{letter-spacing:-2.363400pt;}
.ls1b_c01208{letter-spacing:-2.342400pt;}
.ls28_c01208{letter-spacing:-2.095313pt;}
.ls7_c01208{letter-spacing:-1.943667pt;}
.ls14_c01208{letter-spacing:-1.922820pt;}
.ls16_c01208{letter-spacing:-1.299400pt;}
.ls12_c01208{letter-spacing:-1.280420pt;}
.lsc_c01208{letter-spacing:-1.093667pt;}
.ls6_c01208{letter-spacing:-0.991787pt;}
.ls8_c01208{letter-spacing:-0.781460pt;}
.ls15_c01208{letter-spacing:-0.642400pt;}
.ls1_c01208{letter-spacing:0.000000pt;}
.ls10_c01208{letter-spacing:0.610133pt;}
.ls24_c01208{letter-spacing:0.666000pt;}
.ls3_c01208{letter-spacing:0.777333pt;}
.ls9_c01208{letter-spacing:0.803600pt;}
.lsb_c01208{letter-spacing:0.868600pt;}
.ls0_c01208{letter-spacing:1.280420pt;}
.lsa_c01208{letter-spacing:1.372233pt;}
.lsf_c01208{letter-spacing:2.223333pt;}
.lse_c01208{letter-spacing:2.563333pt;}
.ws0_c01208{word-spacing:0.000000pt;}
._c_c01208{margin-left:-11.093259pt;}
._13_c01208{margin-left:-6.764974pt;}
._7_c01208{margin-left:-5.097270pt;}
._a_c01208{margin-left:-2.791725pt;}
._b_c01208{margin-left:-1.747133pt;}
._2_c01208{width:1.645651pt;}
._4_c01208{width:3.775765pt;}
._3_c01208{width:4.913540pt;}
._6_c01208{width:6.910974pt;}
._12_c01208{width:8.150284pt;}
._10_c01208{width:10.740938pt;}
._d_c01208{width:12.410717pt;}
._5_c01208{width:13.358949pt;}
._11_c01208{width:14.555534pt;}
._8_c01208{width:15.773072pt;}
._f_c01208{width:17.046653pt;}
._e_c01208{width:18.725268pt;}
._9_c01208{width:19.830335pt;}
._0_c01208{width:28.995001pt;}
._1_c01208{width:33.991966pt;}
.fs5_c01208{font-size:18.000000pt;}
.fs4_c01208{font-size:20.000000pt;}
.fs6_c01208{font-size:21.333333pt;}
.fs7_c01208{font-size:23.333333pt;}
.fsa_c01208{font-size:24.000000pt;}
.fs8_c01208{font-size:27.333333pt;}
.fsb_c01208{font-size:28.666667pt;}
.fsf_c01208{font-size:29.333333pt;}
.fsc_c01208{font-size:33.333333pt;}
.fsd_c01208{font-size:34.000000pt;}
.fse_c01208{font-size:34.666667pt;}
.fs9_c01208{font-size:36.666667pt;}
.fs1a_c01208{font-size:43.333333pt;}
.fs1b_c01208{font-size:44.666667pt;}
.fs18_c01208{font-size:45.333333pt;}
.fs3_c01208{font-size:46.000000pt;}
.fs17_c01208{font-size:46.666667pt;}
.fs1d_c01208{font-size:47.333333pt;}
.fs14_c01208{font-size:48.000000pt;}
.fs10_c01208{font-size:48.666667pt;}
.fs15_c01208{font-size:49.333333pt;}
.fs11_c01208{font-size:50.000000pt;}
.fs19_c01208{font-size:50.666667pt;}
.fs13_c01208{font-size:51.333333pt;}
.fs16_c01208{font-size:52.000000pt;}
.fs12_c01208{font-size:52.666667pt;}
.fs1c_c01208{font-size:61.333333pt;}
.fs1_c01208{font-size:67.333333pt;}
.fs0_c01208{font-size:73.262933pt;}
.fs2_c01208{font-size:73.333333pt;}
.fs1f_c01208{font-size:84.000000pt;}
.fs20_c01208{font-size:86.666667pt;}
.fs21_c01208{font-size:108.000000pt;}
.fs1e_c01208{font-size:154.000000pt;}
.y0_c01208{bottom:0.000000pt;}
.y4_c01208{bottom:35.254653pt;}
.y3_c01208{bottom:43.254253pt;}
.y2_c01208{bottom:49.654133pt;}
.y18_c01208{bottom:346.293707pt;}
.y17_c01208{bottom:371.894773pt;}
.y16_c01208{bottom:412.214640pt;}
.y15_c01208{bottom:544.693720pt;}
.y14_c01208{bottom:557.814253pt;}
.y13_c01208{bottom:557.814347pt;}
.y12_c01208{bottom:570.934880pt;}
.y11_c01208{bottom:584.054120pt;}
.y10_c01208{bottom:597.174640pt;}
.yf_c01208{bottom:610.293707pt;}
.yd_c01208{bottom:623.414373pt;}
.ye_c01208{bottom:623.414387pt;}
.yc_c01208{bottom:637.173707pt;}
.yb_c01208{bottom:650.294227pt;}
.ya_c01208{bottom:650.294960pt;}
.y9_c01208{bottom:663.734253pt;}
.y8_c01208{bottom:676.855467pt;}
.y6_c01208{bottom:690.294613pt;}
.y7_c01208{bottom:690.294760pt;}
.y5_c01208{bottom:704.053960pt;}
.y1_c01208{bottom:750.133547pt;}
.h6_c01208{height:18.773437pt;}
.h5_c01208{height:19.765625pt;}
.h7_c01208{height:22.250000pt;}
.h8_c01208{height:24.335938pt;}
.hb_c01208{height:25.031250pt;}
.h9_c01208{height:27.013021pt;}
.hc_c01208{height:29.898438pt;}
.h10_c01208{height:30.593750pt;}
.hd_c01208{height:33.593750pt;}
.hf_c01208{height:34.260417pt;}
.he_c01208{height:34.265625pt;}
.ha_c01208{height:36.236979pt;}
.h1f_c01208{height:45.195312pt;}
.h22_c01208{height:46.455078pt;}
.h20_c01208{height:46.585938pt;}
.h16_c01208{height:47.109375pt;}
.h1c_c01208{height:47.281250pt;}
.h12_c01208{height:47.763672pt;}
.h4_c01208{height:47.976562pt;}
.h1a_c01208{height:48.417969pt;}
.h1b_c01208{height:48.671875pt;}
.h11_c01208{height:49.046875pt;}
.h13_c01208{height:49.072266pt;}
.h17_c01208{height:49.718750pt;}
.h1e_c01208{height:50.072917pt;}
.h15_c01208{height:50.380859pt;}
.h19_c01208{height:51.035156pt;}
.h14_c01208{height:51.689453pt;}
.h18_c01208{height:52.049479pt;}
.h1d_c01208{height:52.148438pt;}
.h21_c01208{height:63.968750pt;}
.h2_c01208{height:70.226562pt;}
.h3_c01208{height:73.906250pt;}
.h1_c01208{height:76.410950pt;}
.h24_c01208{height:87.609375pt;}
.h25_c01208{height:90.390625pt;}
.h26_c01208{height:112.640625pt;}
.h23_c01208{height:160.617188pt;}
.h0_c01208{height:793.333333pt;}
.w0_c01208{width:1122.666667pt;}
.x0_c01208{left:0.000000pt;}
.x1_c01208{left:75.518533pt;}
.x4_c01208{left:79.359333pt;}
.x7_c01208{left:138.878920pt;}
.x2_c01208{left:153.919867pt;}
.x3_c01208{left:191.039067pt;}
.x8_c01208{left:207.999067pt;}
.x9_c01208{left:276.479067pt;}
.x10_c01208{left:297.279720pt;}
.x11_c01208{left:322.558533pt;}
.xa_c01208{left:346.879307pt;}
.x12_c01208{left:363.199173pt;}
.x13_c01208{left:398.399453pt;}
.xb_c01208{left:415.038533pt;}
.x14_c01208{left:437.759720pt;}
.xc_c01208{left:484.479453pt;}
.xd_c01208{left:553.278773pt;}
.x5_c01208{left:586.558507pt;}
.xe_c01208{left:622.079587pt;}
.xf_c01208{left:691.199707pt;}
.x6_c01208{left:693.439453pt;}
.x39_c01208{left:823.678707pt;}
.x36_c01208{left:824.958907pt;}
.x17_c01208{left:825.918987pt;}
.x2b_c01208{left:826.879307pt;}
.x2c_c01208{left:831.679693pt;}
.x34_c01208{left:833.919440pt;}
.x1b_c01208{left:840.959467pt;}
.x3a_c01208{left:847.999427pt;}
.x15_c01208{left:860.799320pt;}
.x35_c01208{left:863.039067pt;}
.x3b_c01208{left:864.000000pt;}
.x2d_c01208{left:870.719160pt;}
.x16_c01208{left:876.799800pt;}
.x2f_c01208{left:880.959960pt;}
.x1c_c01208{left:888.638667pt;}
.x2e_c01208{left:889.918947pt;}
.x37_c01208{left:899.198733pt;}
.x38_c01208{left:914.559080pt;}
.x1d_c01208{left:920.318760pt;}
.x24_c01208{left:922.239173pt;}
.x27_c01208{left:932.799320pt;}
.x18_c01208{left:935.039067pt;}
.x19_c01208{left:945.599040pt;}
.x20_c01208{left:953.279293pt;}
.x1a_c01208{left:963.518467pt;}
.x32_c01208{left:976.639160pt;}
.x28_c01208{left:984.319333pt;}
.x21_c01208{left:987.199133pt;}
.x33_c01208{left:998.718747pt;}
.x30_c01208{left:1013.759680pt;}
.x31_c01208{left:1022.718747pt;}
.x25_c01208{left:1028.159173pt;}
.x1e_c01208{left:1032.638747pt;}
.x26_c01208{left:1037.438880pt;}
.x29_c01208{left:1048.319827pt;}
.x1f_c01208{left:1049.919440pt;}
.x2a_c01208{left:1057.599613pt;}
.x22_c01208{left:1067.198733pt;}
.x23_c01208{left:1077.439453pt;}
}





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

.ir_c01209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_8829e3836582e0f532bba480.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01209;src:url('chunks/assets/font_1347628676a0d30b8e19751f.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01209;src:url('chunks/assets/font_49aeeb518afdd09bf62edb0f.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01209;src:url('chunks/assets/font_4f3f23fbace10eae8d5b6723.woff2')format("woff");}.ff4_c01209{font-family:ff4_c01209;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01209;src:url('chunks/assets/font_9ba3fe5fb27f4051e5d9d5b6.woff2')format("woff");}.ff5_c01209{font-family:ff5_c01209;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01209;src:url('chunks/assets/font_8d4b0a8e551e6374d7648e09.woff2')format("woff");}.ff6_c01209{font-family:ff6_c01209;line-height:1.364746;font-style:normal;font-weight: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_c01209;src:url('chunks/assets/font_64b78ecc0778a7d4843b7237.woff2')format("woff");}.ff7_c01209{font-family:ff7_c01209;line-height:1.432129;font-style:normal;font-weight: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_c01209;src:url('chunks/assets/font_c622643418c6dc39a1c3d7d9.woff2')format("woff");}.ff8_c01209{font-family:ff8_c01209;line-height:1.311035;font-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_c01209{transform:matrix(0.108696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108696,0.000000,0.000000,0.250000,0,0);}
.mf_c01209{transform:matrix(0.163636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163636,0.000000,0.000000,0.250000,0,0);}
.m7_c01209{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mb_c01209{transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193182,0.000000,0.000000,0.250000,0,0);}
.m38_c01209{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.m27_c01209{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m24_c01209{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01209{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m29_c01209{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.m10_c01209{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.ma_c01209{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c01209{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.m18_c01209{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m32_c01209{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m31_c01209{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);}
.m8_c01209{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m13_c01209{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m22_c01209{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m1b_c01209{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m20_c01209{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m0_c01209{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.m35_c01209{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m2_c01209{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m25_c01209{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.me_c01209{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m15_c01209{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m2d_c01209{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m23_c01209{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m2c_c01209{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m30_c01209{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m28_c01209{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m11_c01209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c01209{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m33_c01209{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m1e_c01209{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m2e_c01209{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m2a_c01209{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m1d_c01209{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m16_c01209{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m1f_c01209{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.mc_c01209{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m26_c01209{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m1a_c01209{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m19_c01209{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m2b_c01209{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m37_c01209{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m2f_c01209{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.m34_c01209{transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278169,0.000000,0.000000,0.250000,0,0);}
.m21_c01209{transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);}
.md_c01209{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m4_c01209{transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282178,0.000000,0.000000,0.250000,0,0);}
.m12_c01209{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m1_c01209{transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294248,0.000000,0.000000,0.250000,0,0);}
.m14_c01209{transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);}
.m17_c01209{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01209{transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340909,0.000000,0.000000,0.250000,0,0);}
.m39_c01209{transform:matrix(0.754329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754329,0.000000,0.000000,0.250000,0,0);}
.m5_c01209{transform:matrix(1.148551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.148551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.148551,0.000000,0.000000,0.250000,0,0);}
.v0_c01209{vertical-align:0.000000px;}
.ls35_c01209{letter-spacing:-16.195598px;}
.lsa_c01209{letter-spacing:-11.293568px;}
.ls20_c01209{letter-spacing:-10.660650px;}
.ls39_c01209{letter-spacing:-9.237150px;}
.ls1b_c01209{letter-spacing:-6.600600px;}
.ls47_c01209{letter-spacing:-6.170325px;}
.ls27_c01209{letter-spacing:-5.694300px;}
.ls31_c01209{letter-spacing:-5.538000px;}
.ls26_c01209{letter-spacing:-5.398350px;}
.ls33_c01209{letter-spacing:-5.308800px;}
.ls28_c01209{letter-spacing:-5.252625px;}
.ls22_c01209{letter-spacing:-4.989600px;}
.ls3e_c01209{letter-spacing:-4.894313px;}
.ls16_c01209{letter-spacing:-4.860000px;}
.ls2a_c01209{letter-spacing:-4.701428px;}
.ls48_c01209{letter-spacing:-4.626833px;}
.ls43_c01209{letter-spacing:-3.914460px;}
.ls2c_c01209{letter-spacing:-3.854400px;}
.ls3a_c01209{letter-spacing:-3.853125px;}
.ls44_c01209{letter-spacing:-3.701775px;}
.ls37_c01209{letter-spacing:-3.487350px;}
.ls11_c01209{letter-spacing:-3.322800px;}
.ls8_c01209{letter-spacing:-3.110250px;}
.ls12_c01209{letter-spacing:-3.090600px;}
.ls24_c01209{letter-spacing:-3.082425px;}
.ls2f_c01209{letter-spacing:-2.998125px;}
.ls23_c01209{letter-spacing:-2.997225px;}
.ls25_c01209{letter-spacing:-2.919300px;}
.ls3b_c01209{letter-spacing:-2.918175px;}
.ls34_c01209{letter-spacing:-2.884200px;}
.ls2d_c01209{letter-spacing:-2.852273px;}
.ls19_c01209{letter-spacing:-2.850000px;}
.ls1e_c01209{letter-spacing:-2.808300px;}
.ls41_c01209{letter-spacing:-2.694450px;}
.ls46_c01209{letter-spacing:-2.570940px;}
.ls6_c01209{letter-spacing:-2.551823px;}
.ls29_c01209{letter-spacing:-2.369250px;}
.ls7_c01209{letter-spacing:-2.335575px;}
.ls38_c01209{letter-spacing:-2.315925px;}
.ls13_c01209{letter-spacing:-2.293500px;}
.ls45_c01209{letter-spacing:-2.076750px;}
.ls14_c01209{letter-spacing:-1.740375px;}
.ls1f_c01209{letter-spacing:-1.584600px;}
.ls30_c01209{letter-spacing:-1.549350px;}
.ls1a_c01209{letter-spacing:-1.543950px;}
.ls2e_c01209{letter-spacing:-1.538430px;}
.ls32_c01209{letter-spacing:-1.518188px;}
.ls21_c01209{letter-spacing:-1.499670px;}
.ls40_c01209{letter-spacing:-1.477703px;}
.ls1d_c01209{letter-spacing:-1.404000px;}
.ls3c_c01209{letter-spacing:-1.370850px;}
.lsf_c01209{letter-spacing:-1.098900px;}
.ls3f_c01209{letter-spacing:-0.815295px;}
.ls18_c01209{letter-spacing:-0.771975px;}
.ls17_c01209{letter-spacing:-0.612000px;}
.lsb_c01209{letter-spacing:0.000000px;}
.ls15_c01209{letter-spacing:0.644400px;}
.ls2_c01209{letter-spacing:0.771975px;}
.ls42_c01209{letter-spacing:0.815625px;}
.ls1c_c01209{letter-spacing:0.837563px;}
.ls0_c01209{letter-spacing:1.499400px;}
.ls36_c01209{letter-spacing:1.543950px;}
.ls9_c01209{letter-spacing:1.683000px;}
.ls1_c01209{letter-spacing:2.315925px;}
.ls5_c01209{letter-spacing:2.351250px;}
.ls2b_c01209{letter-spacing:2.379375px;}
.ls10_c01209{letter-spacing:2.442165px;}
.ls3d_c01209{letter-spacing:3.043418px;}
.ls4_c01209{letter-spacing:3.082425px;}
.lse_c01209{letter-spacing:3.257550px;}
.ls3_c01209{letter-spacing:4.626375px;}
.lsd_c01209{letter-spacing:105.000525px;}
.lsc_c01209{letter-spacing:432.975172px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01209{word-spacing:0.000000px;}
._16_c01209{margin-left:-20.306528px;}
._12_c01209{margin-left:-12.620153px;}
._10_c01209{margin-left:-6.149751px;}
._13_c01209{margin-left:-3.624450px;}
._f_c01209{margin-left:-2.474515px;}
._5_c01209{margin-left:-1.248531px;}
._8_c01209{width:1.713891px;}
._14_c01209{width:2.787253px;}
._b_c01209{width:3.843481px;}
._4_c01209{width:5.107759px;}
._9_c01209{width:6.652341px;}
._6_c01209{width:8.365630px;}
._a_c01209{width:9.471688px;}
._3_c01209{width:10.555754px;}
._11_c01209{width:12.668826px;}
._2_c01209{width:14.917470px;}
._7_c01209{width:17.044076px;}
._d_c01209{width:21.527762px;}
._15_c01209{width:24.231425px;}
._c_c01209{width:27.210750px;}
._0_c01209{width:28.389106px;}
._e_c01209{width:32.608714px;}
._1_c01209{width:35.640031px;}
.fc0_c01209{color:transparent;}
.fs6_c01209{font-size:15.750000px;}
.fs5_c01209{font-size:17.250000px;}
.fs9_c01209{font-size:24.000000px;}
.fs8_c01209{font-size:24.750000px;}
.fsd_c01209{font-size:25.500000px;}
.fsb_c01209{font-size:27.000000px;}
.fs7_c01209{font-size:28.500000px;}
.fsc_c01209{font-size:29.250000px;}
.fsa_c01209{font-size:33.000000px;}
.fs10_c01209{font-size:36.000000px;}
.fsf_c01209{font-size:38.250000px;}
.fs11_c01209{font-size:40.500000px;}
.fse_c01209{font-size:41.250000px;}
.fs19_c01209{font-size:49.500000px;}
.fs1d_c01209{font-size:50.250000px;}
.fs4_c01209{font-size:51.750000px;}
.fs1a_c01209{font-size:52.500000px;}
.fs1e_c01209{font-size:53.250000px;}
.fs15_c01209{font-size:54.000000px;}
.fs12_c01209{font-size:54.750000px;}
.fs16_c01209{font-size:55.500000px;}
.fs14_c01209{font-size:56.250000px;}
.fs13_c01209{font-size:57.000000px;}
.fs17_c01209{font-size:57.750000px;}
.fs18_c01209{font-size:58.500000px;}
.fs1c_c01209{font-size:59.250000px;}
.fs1b_c01209{font-size:60.000000px;}
.fs3_c01209{font-size:75.750000px;}
.fs2_c01209{font-size:82.500000px;}
.fs1_c01209{font-size:84.750000px;}
.fs0_c01209{font-size:85.500000px;}
.fs1f_c01209{font-size:173.250000px;}
.y0_c01209{bottom:0.000000px;}
.y4_c01209{bottom:37.860285px;}
.y3_c01209{bottom:46.500600px;}
.y2_c01209{bottom:54.420600px;}
.y21_c01209{bottom:416.941320px;}
.y20_c01209{bottom:477.060285px;}
.y1f_c01209{bottom:477.061110px;}
.y1e_c01209{bottom:492.541620px;}
.y1d_c01209{bottom:506.940900px;}
.y1c_c01209{bottom:506.941680px;}
.y1b_c01209{bottom:521.702265px;}
.y1a_c01209{bottom:536.821470px;}
.y19_c01209{bottom:551.581245px;}
.y18_c01209{bottom:566.700435px;}
.y17_c01209{bottom:566.700570px;}
.y16_c01209{bottom:581.461170px;}
.y15_c01209{bottom:596.581005px;}
.y13_c01209{bottom:611.700855px;}
.y14_c01209{bottom:611.701035px;}
.y12_c01209{bottom:626.459970px;}
.y11_c01209{bottom:641.220750px;}
.y10_c01209{bottom:655.620435px;}
.yf_c01209{bottom:670.740420px;}
.ye_c01209{bottom:685.501005px;}
.yd_c01209{bottom:700.260135px;}
.yc_c01209{bottom:700.260780px;}
.yb_c01209{bottom:715.379970px;}
.ya_c01209{bottom:730.860855px;}
.y9_c01209{bottom:745.621635px;}
.y7_c01209{bottom:760.741425px;}
.y8_c01209{bottom:760.741470px;}
.y6_c01209{bottom:775.862085px;}
.y5_c01209{bottom:790.981290px;}
.y1_c01209{bottom:841.741515px;}
.h7_c01209{height:15.450073px;}
.h6_c01209{height:16.921509px;}
.h9_c01209{height:24.459961px;}
.ha_c01209{height:25.031250px;}
.he_c01209{height:26.595703px;}
.hc_c01209{height:28.160156px;}
.h8_c01209{height:28.166016px;}
.hd_c01209{height:28.907227px;}
.hb_c01209{height:32.613281px;}
.h14_c01209{height:35.332031px;}
.h12_c01209{height:36.281250px;}
.h11_c01209{height:37.540283px;}
.h10_c01209{height:37.801758px;}
.h13_c01209{height:40.025391px;}
.hf_c01209{height:40.766602px;}
.h1f_c01209{height:51.525879px;}
.h1e_c01209{height:51.626953px;}
.h25_c01209{height:52.261963px;}
.h23_c01209{height:52.409180px;}
.h18_c01209{height:52.998047px;}
.h15_c01209{height:53.734131px;}
.h5_c01209{height:53.973633px;}
.h22_c01209{height:54.108398px;}
.h26_c01209{height:54.421875px;}
.h19_c01209{height:54.470215px;}
.h17_c01209{height:55.206299px;}
.h16_c01209{height:55.942383px;}
.h1b_c01209{height:56.678467px;}
.h1d_c01209{height:56.689453px;}
.h1a_c01209{height:57.073242px;}
.h1c_c01209{height:57.414551px;}
.h24_c01209{height:57.814453px;}
.h21_c01209{height:58.555664px;}
.h20_c01209{height:59.296875px;}
.h4_c01209{height:79.004883px;}
.h3_c01209{height:80.969238px;}
.h2_c01209{height:83.177490px;}
.h1_c01209{height:84.498047px;}
.h27_c01209{height:180.694336px;}
.h0_c01209{height:892.500000px;}
.w0_c01209{width:1263.000000px;}
.x0_c01209{left:0.000000px;}
.x1_c01209{left:78.478665px;}
.x6_c01209{left:83.519685px;}
.x9_c01209{left:150.120000px;}
.x2_c01209{left:167.759565px;}
.x3_c01209{left:209.879535px;}
.xa_c01209{left:228.239250px;}
.x7_c01209{left:260.639700px;}
.xb_c01209{left:305.279250px;}
.x12_c01209{left:329.039385px;}
.x13_c01209{left:356.398635px;}
.xc_c01209{left:383.039385px;}
.x14_c01209{left:442.439670px;}
.xd_c01209{left:461.158770px;}
.x15_c01209{left:486.718500px;}
.x4_c01209{left:524.519070px;}
.xe_c01209{left:538.198785px;}
.x5_c01209{left:564.119385px;}
.xf_c01209{left:617.039985px;}
.x10_c01209{left:694.798560px;}
.x11_c01209{left:773.998905px;}
.x8_c01209{left:777.238770px;}
.x52_c01209{left:921.958275px;}
.x19_c01209{left:923.040435px;}
.x3c_c01209{left:924.118740px;}
.x51_c01209{left:925.201200px;}
.x43_c01209{left:939.599670px;}
.x3d_c01209{left:941.399235px;}
.x23_c01209{left:945.359250px;}
.x38_c01209{left:947.519715px;}
.x16_c01209{left:961.919490px;}
.x4a_c01209{left:963.359805px;}
.x53_c01209{left:964.439205px;}
.x3e_c01209{left:967.679070px;}
.x1c_c01209{left:971.279850px;}
.x3f_c01209{left:975.958275px;}
.x2e_c01209{left:987.479190px;}
.x1d_c01209{left:989.278755px;}
.x4b_c01209{left:990.359805px;}
.x24_c01209{left:1002.599025px;}
.x39_c01209{left:1004.398590px;}
.x2f_c01209{left:1010.878320px;}
.x3a_c01209{left:1018.079955px;}
.x25_c01209{left:1019.879520px;}
.x32_c01209{left:1023.478635px;}
.x30_c01209{left:1025.639100px;}
.x46_c01209{left:1028.878965px;}
.x28_c01209{left:1031.398590px;}
.x33_c01209{left:1035.358605px;}
.x40_c01209{left:1036.439670px;}
.x29_c01209{left:1043.278755px;}
.x47_c01209{left:1053.000000px;}
.x41_c01209{left:1061.638545px;}
.x2a_c01209{left:1067.038875px;}
.x26_c01209{left:1076.039985px;}
.x34_c01209{left:1085.759490px;}
.x44_c01209{left:1097.278755px;}
.x42_c01209{left:1105.198785px;}
.x4c_c01209{left:1107.359250px;}
.x48_c01209{left:1114.559055px;}
.x27_c01209{left:1117.439670px;}
.x35_c01209{left:1118.519070px;}
.x4d_c01209{left:1121.399775px;}
.x49_c01209{left:1129.679070px;}
.x17_c01209{left:1131.478635px;}
.x4f_c01209{left:1132.559685px;}
.x21_c01209{left:1135.079400px;}
.x1e_c01209{left:1138.678530px;}
.x45_c01209{left:1142.999355px;}
.x1f_c01209{left:1153.439205px;}
.x2b_c01209{left:1154.879520px;}
.x18_c01209{left:1160.279850px;}
.x50_c01209{left:1165.678530px;}
.x22_c01209{left:1169.279205px;}
.x1a_c01209{left:1177.199340px;}
.x4e_c01209{left:1181.518620px;}
.x36_c01209{left:1188.000000px;}
.x3b_c01209{left:1191.239775px;}
.x2c_c01209{left:1194.479640px;}
.x31_c01209{left:1199.519070px;}
.x20_c01209{left:1200.598575px;}
.x1b_c01209{left:1205.278755px;}
.x2d_c01209{left:1209.599670px;}
.x37_c01209{left:1212.478635px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls35_c01209{letter-spacing:-14.396087pt;}
.lsa_c01209{letter-spacing:-10.038727pt;}
.ls20_c01209{letter-spacing:-9.476133pt;}
.ls39_c01209{letter-spacing:-8.210800pt;}
.ls1b_c01209{letter-spacing:-5.867200pt;}
.ls47_c01209{letter-spacing:-5.484733pt;}
.ls27_c01209{letter-spacing:-5.061600pt;}
.ls31_c01209{letter-spacing:-4.922667pt;}
.ls26_c01209{letter-spacing:-4.798533pt;}
.ls33_c01209{letter-spacing:-4.718933pt;}
.ls28_c01209{letter-spacing:-4.669000pt;}
.ls22_c01209{letter-spacing:-4.435200pt;}
.ls3e_c01209{letter-spacing:-4.350500pt;}
.ls16_c01209{letter-spacing:-4.320000pt;}
.ls2a_c01209{letter-spacing:-4.179047pt;}
.ls48_c01209{letter-spacing:-4.112740pt;}
.ls43_c01209{letter-spacing:-3.479520pt;}
.ls2c_c01209{letter-spacing:-3.426133pt;}
.ls3a_c01209{letter-spacing:-3.425000pt;}
.ls44_c01209{letter-spacing:-3.290467pt;}
.ls37_c01209{letter-spacing:-3.099867pt;}
.ls11_c01209{letter-spacing:-2.953600pt;}
.ls8_c01209{letter-spacing:-2.764667pt;}
.ls12_c01209{letter-spacing:-2.747200pt;}
.ls24_c01209{letter-spacing:-2.739933pt;}
.ls2f_c01209{letter-spacing:-2.665000pt;}
.ls23_c01209{letter-spacing:-2.664200pt;}
.ls25_c01209{letter-spacing:-2.594933pt;}
.ls3b_c01209{letter-spacing:-2.593933pt;}
.ls34_c01209{letter-spacing:-2.563733pt;}
.ls2d_c01209{letter-spacing:-2.535353pt;}
.ls19_c01209{letter-spacing:-2.533333pt;}
.ls1e_c01209{letter-spacing:-2.496267pt;}
.ls41_c01209{letter-spacing:-2.395067pt;}
.ls46_c01209{letter-spacing:-2.285280pt;}
.ls6_c01209{letter-spacing:-2.268287pt;}
.ls29_c01209{letter-spacing:-2.106000pt;}
.ls7_c01209{letter-spacing:-2.076067pt;}
.ls38_c01209{letter-spacing:-2.058600pt;}
.ls13_c01209{letter-spacing:-2.038667pt;}
.ls45_c01209{letter-spacing:-1.846000pt;}
.ls14_c01209{letter-spacing:-1.547000pt;}
.ls1f_c01209{letter-spacing:-1.408533pt;}
.ls30_c01209{letter-spacing:-1.377200pt;}
.ls1a_c01209{letter-spacing:-1.372400pt;}
.ls2e_c01209{letter-spacing:-1.367493pt;}
.ls32_c01209{letter-spacing:-1.349500pt;}
.ls21_c01209{letter-spacing:-1.333040pt;}
.ls40_c01209{letter-spacing:-1.313513pt;}
.ls1d_c01209{letter-spacing:-1.248000pt;}
.ls3c_c01209{letter-spacing:-1.218533pt;}
.lsf_c01209{letter-spacing:-0.976800pt;}
.ls3f_c01209{letter-spacing:-0.724707pt;}
.ls18_c01209{letter-spacing:-0.686200pt;}
.ls17_c01209{letter-spacing:-0.544000pt;}
.lsb_c01209{letter-spacing:0.000000pt;}
.ls15_c01209{letter-spacing:0.572800pt;}
.ls2_c01209{letter-spacing:0.686200pt;}
.ls42_c01209{letter-spacing:0.725000pt;}
.ls1c_c01209{letter-spacing:0.744500pt;}
.ls0_c01209{letter-spacing:1.332800pt;}
.ls36_c01209{letter-spacing:1.372400pt;}
.ls9_c01209{letter-spacing:1.496000pt;}
.ls1_c01209{letter-spacing:2.058600pt;}
.ls5_c01209{letter-spacing:2.090000pt;}
.ls2b_c01209{letter-spacing:2.115000pt;}
.ls10_c01209{letter-spacing:2.170813pt;}
.ls3d_c01209{letter-spacing:2.705260pt;}
.ls4_c01209{letter-spacing:2.739933pt;}
.lse_c01209{letter-spacing:2.895600pt;}
.ls3_c01209{letter-spacing:4.112333pt;}
.lsd_c01209{letter-spacing:93.333800pt;}
.lsc_c01209{letter-spacing:384.866820pt;}
.ws0_c01209{word-spacing:0.000000pt;}
._16_c01209{margin-left:-18.050247pt;}
._12_c01209{margin-left:-11.217913pt;}
._10_c01209{margin-left:-5.466446pt;}
._13_c01209{margin-left:-3.221733pt;}
._f_c01209{margin-left:-2.199569pt;}
._5_c01209{margin-left:-1.109806pt;}
._8_c01209{width:1.523459pt;}
._14_c01209{width:2.477558pt;}
._b_c01209{width:3.416427pt;}
._4_c01209{width:4.540230pt;}
._9_c01209{width:5.913192pt;}
._6_c01209{width:7.436116pt;}
._a_c01209{width:8.419278pt;}
._3_c01209{width:9.382892pt;}
._11_c01209{width:11.261179pt;}
._2_c01209{width:13.259973pt;}
._7_c01209{width:15.150290pt;}
._d_c01209{width:19.135788pt;}
._15_c01209{width:21.539044pt;}
._c_c01209{width:24.187333pt;}
._0_c01209{width:25.234761pt;}
._e_c01209{width:28.985524pt;}
._1_c01209{width:31.680028pt;}
.fs6_c01209{font-size:14.000000pt;}
.fs5_c01209{font-size:15.333333pt;}
.fs9_c01209{font-size:21.333333pt;}
.fs8_c01209{font-size:22.000000pt;}
.fsd_c01209{font-size:22.666667pt;}
.fsb_c01209{font-size:24.000000pt;}
.fs7_c01209{font-size:25.333333pt;}
.fsc_c01209{font-size:26.000000pt;}
.fsa_c01209{font-size:29.333333pt;}
.fs10_c01209{font-size:32.000000pt;}
.fsf_c01209{font-size:34.000000pt;}
.fs11_c01209{font-size:36.000000pt;}
.fse_c01209{font-size:36.666667pt;}
.fs19_c01209{font-size:44.000000pt;}
.fs1d_c01209{font-size:44.666667pt;}
.fs4_c01209{font-size:46.000000pt;}
.fs1a_c01209{font-size:46.666667pt;}
.fs1e_c01209{font-size:47.333333pt;}
.fs15_c01209{font-size:48.000000pt;}
.fs12_c01209{font-size:48.666667pt;}
.fs16_c01209{font-size:49.333333pt;}
.fs14_c01209{font-size:50.000000pt;}
.fs13_c01209{font-size:50.666667pt;}
.fs17_c01209{font-size:51.333333pt;}
.fs18_c01209{font-size:52.000000pt;}
.fs1c_c01209{font-size:52.666667pt;}
.fs1b_c01209{font-size:53.333333pt;}
.fs3_c01209{font-size:67.333333pt;}
.fs2_c01209{font-size:73.333333pt;}
.fs1_c01209{font-size:75.333333pt;}
.fs0_c01209{font-size:76.000000pt;}
.fs1f_c01209{font-size:154.000000pt;}
.y0_c01209{bottom:0.000000pt;}
.y4_c01209{bottom:33.653587pt;}
.y3_c01209{bottom:41.333867pt;}
.y2_c01209{bottom:48.373867pt;}
.y21_c01209{bottom:370.614507pt;}
.y20_c01209{bottom:424.053587pt;}
.y1f_c01209{bottom:424.054320pt;}
.y1e_c01209{bottom:437.814773pt;}
.y1d_c01209{bottom:450.614133pt;}
.y1c_c01209{bottom:450.614827pt;}
.y1b_c01209{bottom:463.735347pt;}
.y1a_c01209{bottom:477.174640pt;}
.y19_c01209{bottom:490.294440pt;}
.y18_c01209{bottom:503.733720pt;}
.y17_c01209{bottom:503.733840pt;}
.y16_c01209{bottom:516.854373pt;}
.y15_c01209{bottom:530.294227pt;}
.y13_c01209{bottom:543.734093pt;}
.y14_c01209{bottom:543.734253pt;}
.y12_c01209{bottom:556.853307pt;}
.y11_c01209{bottom:569.974000pt;}
.y10_c01209{bottom:582.773720pt;}
.yf_c01209{bottom:596.213707pt;}
.ye_c01209{bottom:609.334227pt;}
.yd_c01209{bottom:622.453453pt;}
.yc_c01209{bottom:622.454027pt;}
.yb_c01209{bottom:635.893307pt;}
.ya_c01209{bottom:649.654093pt;}
.y9_c01209{bottom:662.774787pt;}
.y7_c01209{bottom:676.214600pt;}
.y8_c01209{bottom:676.214640pt;}
.y6_c01209{bottom:689.655187pt;}
.y5_c01209{bottom:703.094480pt;}
.y1_c01209{bottom:748.214680pt;}
.h7_c01209{height:13.733398pt;}
.h6_c01209{height:15.041341pt;}
.h9_c01209{height:21.742187pt;}
.ha_c01209{height:22.250000pt;}
.he_c01209{height:23.640625pt;}
.hc_c01209{height:25.031250pt;}
.h8_c01209{height:25.036458pt;}
.hd_c01209{height:25.695312pt;}
.hb_c01209{height:28.989583pt;}
.h14_c01209{height:31.406250pt;}
.h12_c01209{height:32.250000pt;}
.h11_c01209{height:33.369141pt;}
.h10_c01209{height:33.601562pt;}
.h13_c01209{height:35.578125pt;}
.hf_c01209{height:36.236979pt;}
.h1f_c01209{height:45.800781pt;}
.h1e_c01209{height:45.890625pt;}
.h25_c01209{height:46.455078pt;}
.h23_c01209{height:46.585938pt;}
.h18_c01209{height:47.109375pt;}
.h15_c01209{height:47.763672pt;}
.h5_c01209{height:47.976562pt;}
.h22_c01209{height:48.096354pt;}
.h26_c01209{height:48.375000pt;}
.h19_c01209{height:48.417969pt;}
.h17_c01209{height:49.072266pt;}
.h16_c01209{height:49.726562pt;}
.h1b_c01209{height:50.380859pt;}
.h1d_c01209{height:50.390625pt;}
.h1a_c01209{height:50.731771pt;}
.h1c_c01209{height:51.035156pt;}
.h24_c01209{height:51.390625pt;}
.h21_c01209{height:52.049479pt;}
.h20_c01209{height:52.708333pt;}
.h4_c01209{height:70.226562pt;}
.h3_c01209{height:71.972656pt;}
.h2_c01209{height:73.935547pt;}
.h1_c01209{height:75.109375pt;}
.h27_c01209{height:160.617188pt;}
.h0_c01209{height:793.333333pt;}
.w0_c01209{width:1122.666667pt;}
.x0_c01209{left:0.000000pt;}
.x1_c01209{left:69.758813pt;}
.x6_c01209{left:74.239720pt;}
.x9_c01209{left:133.440000pt;}
.x2_c01209{left:149.119613pt;}
.x3_c01209{left:186.559587pt;}
.xa_c01209{left:202.879333pt;}
.x7_c01209{left:231.679733pt;}
.xb_c01209{left:271.359333pt;}
.x12_c01209{left:292.479453pt;}
.x13_c01209{left:316.798787pt;}
.xc_c01209{left:340.479453pt;}
.x14_c01209{left:393.279707pt;}
.xd_c01209{left:409.918907pt;}
.x15_c01209{left:432.638667pt;}
.x4_c01209{left:466.239173pt;}
.xe_c01209{left:478.398920pt;}
.x5_c01209{left:501.439453pt;}
.xf_c01209{left:548.479987pt;}
.x10_c01209{left:617.598720pt;}
.x11_c01209{left:687.999027pt;}
.x8_c01209{left:690.878907pt;}
.x52_c01209{left:819.518467pt;}
.x19_c01209{left:820.480387pt;}
.x3c_c01209{left:821.438880pt;}
.x51_c01209{left:822.401067pt;}
.x43_c01209{left:835.199707pt;}
.x3d_c01209{left:836.799320pt;}
.x23_c01209{left:840.319333pt;}
.x38_c01209{left:842.239747pt;}
.x16_c01209{left:855.039547pt;}
.x4a_c01209{left:856.319827pt;}
.x53_c01209{left:857.279293pt;}
.x3e_c01209{left:860.159173pt;}
.x1c_c01209{left:863.359867pt;}
.x3f_c01209{left:867.518467pt;}
.x2e_c01209{left:877.759280pt;}
.x1d_c01209{left:879.358893pt;}
.x4b_c01209{left:880.319827pt;}
.x24_c01209{left:891.199133pt;}
.x39_c01209{left:892.798747pt;}
.x2f_c01209{left:898.558507pt;}
.x3a_c01209{left:904.959960pt;}
.x25_c01209{left:906.559573pt;}
.x32_c01209{left:909.758787pt;}
.x30_c01209{left:911.679200pt;}
.x46_c01209{left:914.559080pt;}
.x28_c01209{left:916.798747pt;}
.x33_c01209{left:920.318760pt;}
.x40_c01209{left:921.279707pt;}
.x29_c01209{left:927.358893pt;}
.x47_c01209{left:936.000000pt;}
.x41_c01209{left:943.678707pt;}
.x2a_c01209{left:948.479000pt;}
.x26_c01209{left:956.479987pt;}
.x34_c01209{left:965.119547pt;}
.x44_c01209{left:975.358893pt;}
.x42_c01209{left:982.398920pt;}
.x4c_c01209{left:984.319333pt;}
.x48_c01209{left:990.719160pt;}
.x27_c01209{left:993.279707pt;}
.x35_c01209{left:994.239173pt;}
.x4d_c01209{left:996.799800pt;}
.x49_c01209{left:1004.159173pt;}
.x17_c01209{left:1005.758787pt;}
.x4f_c01209{left:1006.719720pt;}
.x21_c01209{left:1008.959467pt;}
.x1e_c01209{left:1012.158693pt;}
.x45_c01209{left:1015.999427pt;}
.x1f_c01209{left:1025.279293pt;}
.x2b_c01209{left:1026.559573pt;}
.x18_c01209{left:1031.359867pt;}
.x50_c01209{left:1036.158693pt;}
.x22_c01209{left:1039.359293pt;}
.x1a_c01209{left:1046.399413pt;}
.x4e_c01209{left:1050.238773pt;}
.x36_c01209{left:1056.000000pt;}
.x3b_c01209{left:1058.879800pt;}
.x2c_c01209{left:1061.759680pt;}
.x31_c01209{left:1066.239173pt;}
.x20_c01209{left:1067.198733pt;}
.x1b_c01209{left:1071.358893pt;}
.x2d_c01209{left:1075.199707pt;}
.x37_c01209{left:1077.758787pt;}
}





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

.ir_c01210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_73dcce268d5ae6a273c424b1.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01210;src:url('chunks/assets/font_9d1dfa2336f576ea848206b2.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01210;src:url('chunks/assets/font_1c8bd5c759430bc40dc440e2.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01210;src:url('chunks/assets/font_94521df8fc16d67741bf5c23.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01210;src:url('chunks/assets/font_262119e32e4f1d247a706bc9.woff2')format("woff");}.ff5_c01210{font-family:ff5_c01210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01210;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff6_c01210{font-family:ff6_c01210;line-height:1.364746;font-style:normal;font-weight: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_c01210;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff7_c01210{font-family:ff7_c01210;line-height:1.432129;font-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_c01210{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m11_c01210{transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183544,0.000000,0.000000,0.250000,0,0);}
.m29_c01210{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m2a_c01210{transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);}
.m1b_c01210{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m0_c01210{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.mc_c01210{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m18_c01210{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m28_c01210{transform:matrix(0.218919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218919,0.000000,0.000000,0.250000,0,0);}
.m3_c01210{transform:matrix(0.219466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219466,0.000000,0.000000,0.250000,0,0);}
.m7_c01210{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);}
.m22_c01210{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m4_c01210{transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220982,0.000000,0.000000,0.250000,0,0);}
.m23_c01210{transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);}
.m24_c01210{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.mf_c01210{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.me_c01210{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);}
.m16_c01210{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m2_c01210{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m1f_c01210{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.md_c01210{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m1e_c01210{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m9_c01210{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m21_c01210{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m8_c01210{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m10_c01210{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.mb_c01210{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m17_c01210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01210{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m15_c01210{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m19_c01210{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m12_c01210{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m6_c01210{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m5_c01210{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m20_c01210{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m25_c01210{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m1c_c01210{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m1_c01210{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m14_c01210{transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282143,0.000000,0.000000,0.250000,0,0);}
.ma_c01210{transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287162,0.000000,0.000000,0.250000,0,0);}
.m1d_c01210{transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295775,0.000000,0.000000,0.250000,0,0);}
.m13_c01210{transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310606,0.000000,0.000000,0.250000,0,0);}
.m26_c01210{transform:matrix(0.651575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651575,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls19_c01210{letter-spacing:-10.261845px;}
.ls5_c01210{letter-spacing:-8.548733px;}
.ls26_c01210{letter-spacing:-8.466825px;}
.ls17_c01210{letter-spacing:-8.169983px;}
.ls29_c01210{letter-spacing:-7.922325px;}
.ls15_c01210{letter-spacing:-7.500000px;}
.ls20_c01210{letter-spacing:-6.901200px;}
.ls13_c01210{letter-spacing:-5.765175px;}
.ls16_c01210{letter-spacing:-5.042475px;}
.ls1e_c01210{letter-spacing:-4.435200px;}
.lse_c01210{letter-spacing:-4.319775px;}
.ls1f_c01210{letter-spacing:-4.279275px;}
.ls1a_c01210{letter-spacing:-3.984750px;}
.ls12_c01210{letter-spacing:-3.918300px;}
.ls21_c01210{letter-spacing:-3.802050px;}
.ls18_c01210{letter-spacing:-3.656318px;}
.ls9_c01210{letter-spacing:-3.602550px;}
.ls7_c01210{letter-spacing:-3.394440px;}
.ls24_c01210{letter-spacing:-3.085800px;}
.ls14_c01210{letter-spacing:-3.037500px;}
.lsb_c01210{letter-spacing:-2.879850px;}
.ls8_c01210{letter-spacing:-2.878200px;}
.ls23_c01210{letter-spacing:-2.840400px;}
.ls28_c01210{letter-spacing:-2.802600px;}
.ls1c_c01210{letter-spacing:-2.251200px;}
.lsa_c01210{letter-spacing:-2.163173px;}
.ls11_c01210{letter-spacing:-1.565100px;}
.ls10_c01210{letter-spacing:-1.541250px;}
.ls25_c01210{letter-spacing:-1.500150px;}
.ls1b_c01210{letter-spacing:-1.480350px;}
.ls2a_c01210{letter-spacing:-1.479938px;}
.lsd_c01210{letter-spacing:-1.440473px;}
.ls4_c01210{letter-spacing:-0.806400px;}
.lsc_c01210{letter-spacing:-0.722700px;}
.lsf_c01210{letter-spacing:0.000000px;}
.ls27_c01210{letter-spacing:0.837563px;}
.ls3_c01210{letter-spacing:0.898425px;}
.ls22_c01210{letter-spacing:1.609200px;}
.ls6_c01210{letter-spacing:1.790250px;}
.ls2_c01210{letter-spacing:2.049435px;}
.ls2b_c01210{letter-spacing:2.782350px;}
.ls0_c01210{letter-spacing:7.178325px;}
.ls1d_c01210{letter-spacing:9.712650px;}
.ls1_c01210{letter-spacing:17.036250px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01210{word-spacing:0.000000px;}
._13_c01210{margin-left:-8.908459px;}
._12_c01210{margin-left:-5.290464px;}
._b_c01210{margin-left:-4.025278px;}
._8_c01210{margin-left:-2.864232px;}
._7_c01210{margin-left:-1.532136px;}
._5_c01210{width:1.638264px;}
._c_c01210{width:3.252092px;}
._6_c01210{width:5.754283px;}
._11_c01210{width:6.766322px;}
._d_c01210{width:9.434837px;}
._14_c01210{width:12.622987px;}
._4_c01210{width:14.081873px;}
._3_c01210{width:15.801772px;}
._0_c01210{width:17.838150px;}
._a_c01210{width:19.616891px;}
._10_c01210{width:20.656421px;}
._2_c01210{width:21.813500px;}
._1_c01210{width:23.619208px;}
._f_c01210{width:25.773688px;}
._9_c01210{width:28.513339px;}
._e_c01210{width:44.145991px;}
.fc0_c01210{color:transparent;}
.fsb_c01210{font-size:49.500000px;}
.fse_c01210{font-size:50.250000px;}
.fsc_c01210{font-size:52.500000px;}
.fsd_c01210{font-size:53.250000px;}
.fs4_c01210{font-size:54.000000px;}
.fs5_c01210{font-size:54.750000px;}
.fs7_c01210{font-size:55.500000px;}
.fs6_c01210{font-size:56.250000px;}
.fs11_c01210{font-size:57.000000px;}
.fsf_c01210{font-size:57.750000px;}
.fs8_c01210{font-size:58.500000px;}
.fsa_c01210{font-size:59.250000px;}
.fs9_c01210{font-size:60.000000px;}
.fs10_c01210{font-size:60.750000px;}
.fs1_c01210{font-size:76.500000px;}
.fs0_c01210{font-size:82.500000px;}
.fs2_c01210{font-size:84.000000px;}
.fs3_c01210{font-size:98.250000px;}
.fs14_c01210{font-size:121.500000px;}
.fs13_c01210{font-size:138.750000px;}
.fs12_c01210{font-size:190.500000px;}
.y0_c01210{bottom:0.000000px;}
.y25_c01210{bottom:420.181320px;}
.y24_c01210{bottom:449.341785px;}
.y23_c01210{bottom:509.101320px;}
.y22_c01210{bottom:509.101965px;}
.y21_c01210{bottom:524.221155px;}
.y20_c01210{bottom:538.980285px;}
.y1f_c01210{bottom:538.981065px;}
.y1e_c01210{bottom:554.100270px;}
.y1d_c01210{bottom:554.100315px;}
.y1c_c01210{bottom:568.860900px;}
.y1b_c01210{bottom:568.861035px;}
.y19_c01210{bottom:583.621440px;}
.y1a_c01210{bottom:583.621635px;}
.y18_c01210{bottom:598.380570px;}
.y17_c01210{bottom:598.381395px;}
.y16_c01210{bottom:613.500600px;}
.y15_c01210{bottom:628.620435px;}
.y14_c01210{bottom:628.620570px;}
.y12_c01210{bottom:643.380975px;}
.y13_c01210{bottom:643.381170px;}
.y10_c01210{bottom:658.139880px;}
.y11_c01210{bottom:658.140105px;}
.ye_c01210{bottom:673.261755px;}
.yf_c01210{bottom:673.261785px;}
.yd_c01210{bottom:688.020900px;}
.yc_c01210{bottom:702.781500px;}
.yb_c01210{bottom:702.782265px;}
.ya_c01210{bottom:717.901470px;}
.y9_c01210{bottom:733.021320px;}
.y8_c01210{bottom:747.780435px;}
.y7_c01210{bottom:747.781080px;}
.y6_c01210{bottom:762.900285px;}
.y5_c01210{bottom:762.900420px;}
.y4_c01210{bottom:777.661005px;}
.y3_c01210{bottom:777.661290px;}
.y2_c01210{bottom:791.881170px;}
.y1_c01210{bottom:844.981290px;}
.hf_c01210{height:51.525879px;}
.he_c01210{height:51.626953px;}
.h15_c01210{height:52.261963px;}
.h11_c01210{height:52.409180px;}
.h6_c01210{height:52.998047px;}
.h10_c01210{height:53.666016px;}
.h7_c01210{height:53.734131px;}
.h9_c01210{height:54.470215px;}
.h12_c01210{height:55.177734px;}
.h8_c01210{height:55.206299px;}
.h16_c01210{height:55.933594px;}
.h13_c01210{height:57.073242px;}
.ha_c01210{height:57.414551px;}
.h17_c01210{height:57.445312px;}
.hd_c01210{height:58.150635px;}
.hc_c01210{height:58.555664px;}
.hb_c01210{height:59.296875px;}
.h14_c01210{height:59.622803px;}
.h2_c01210{height:79.787109px;}
.h5_c01210{height:82.441406px;}
.h1_c01210{height:83.144531px;}
.h3_c01210{height:84.656250px;}
.h4_c01210{height:97.098633px;}
.h1a_c01210{height:126.720703px;}
.h19_c01210{height:144.711914px;}
.h18_c01210{height:198.685547px;}
.h0_c01210{height:892.500000px;}
.w0_c01210{width:1263.000000px;}
.x0_c01210{left:0.000000px;}
.x1_c01210{left:87.838950px;}
.x2_c01210{left:175.679700px;}
.x3_c01210{left:217.799535px;}
.x4_c01210{left:444.959385px;}
.x5_c01210{left:483.119385px;}
.x6_c01210{left:518.398635px;}
.x7_c01210{left:585.359850px;}
.xa_c01210{left:924.838710px;}
.x14_c01210{left:926.638545px;}
.x36_c01210{left:928.077780px;}
.x3f_c01210{left:937.079955px;}
.x23_c01210{left:939.238770px;}
.x39_c01210{left:943.559685px;}
.x40_c01210{left:947.158815px;}
.x26_c01210{left:950.398590px;}
.x37_c01210{left:956.159820px;}
.x15_c01210{left:958.318815px;}
.x8_c01210{left:963.359805px;}
.x3e_c01210{left:966.238770px;}
.x1b_c01210{left:967.319820px;}
.x16_c01210{left:973.079400px;}
.x11_c01210{left:976.678530px;}
.x31_c01210{left:978.479640px;}
.x3b_c01210{left:979.559055px;}
.x1c_c01210{left:982.078770px;}
.x9_c01210{left:984.959385px;}
.x1f_c01210{left:992.879520px;}
.x24_c01210{left:993.958920px;}
.x32_c01210{left:995.399235px;}
.x12_c01210{left:997.198785px;}
.x3c_c01210{left:998.279850px;}
.x27_c01210{left:1000.079400px;}
.x17_c01210{left:1005.479640px;}
.x28_c01210{left:1017.359805px;}
.x18_c01210{left:1019.879520px;}
.x25_c01210{left:1035.358605px;}
.x33_c01210{left:1039.318815px;}
.x29_c01210{left:1041.119940px;}
.xd_c01210{left:1045.798560px;}
.x1d_c01210{left:1048.319820px;}
.x2c_c01210{left:1054.438665px;}
.x34_c01210{left:1057.319190px;}
.x35_c01210{left:1070.278755px;}
.x2f_c01210{left:1078.918950px;}
.xe_c01210{left:1085.759490px;}
.x30_c01210{left:1089.358605px;}
.xb_c01210{left:1095.479190px;}
.x2d_c01210{left:1097.998905px;}
.xf_c01210{left:1101.958920px;}
.x1e_c01210{left:1104.119385px;}
.xc_c01210{left:1105.918950px;}
.x3d_c01210{left:1108.438665px;}
.x2e_c01210{left:1112.039340px;}
.x20_c01210{left:1116.358605px;}
.x2a_c01210{left:1118.878320px;}
.x10_c01210{left:1120.318815px;}
.x22_c01210{left:1135.799565px;}
.x21_c01210{left:1148.399775px;}
.x3a_c01210{left:1153.439205px;}
.x19_c01210{left:1162.799565px;}
.x2b_c01210{left:1178.998905px;}
.x1a_c01210{left:1189.799565px;}
.x13_c01210{left:1200.598575px;}
.x38_c01210{left:1214.279850px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls19_c01210{letter-spacing:-9.121640pt;}
.ls5_c01210{letter-spacing:-7.598873pt;}
.ls26_c01210{letter-spacing:-7.526067pt;}
.ls17_c01210{letter-spacing:-7.262207pt;}
.ls29_c01210{letter-spacing:-7.042067pt;}
.ls15_c01210{letter-spacing:-6.666667pt;}
.ls20_c01210{letter-spacing:-6.134400pt;}
.ls13_c01210{letter-spacing:-5.124600pt;}
.ls16_c01210{letter-spacing:-4.482200pt;}
.ls1e_c01210{letter-spacing:-3.942400pt;}
.lse_c01210{letter-spacing:-3.839800pt;}
.ls1f_c01210{letter-spacing:-3.803800pt;}
.ls1a_c01210{letter-spacing:-3.542000pt;}
.ls12_c01210{letter-spacing:-3.482933pt;}
.ls21_c01210{letter-spacing:-3.379600pt;}
.ls18_c01210{letter-spacing:-3.250060pt;}
.ls9_c01210{letter-spacing:-3.202267pt;}
.ls7_c01210{letter-spacing:-3.017280pt;}
.ls24_c01210{letter-spacing:-2.742933pt;}
.ls14_c01210{letter-spacing:-2.700000pt;}
.lsb_c01210{letter-spacing:-2.559867pt;}
.ls8_c01210{letter-spacing:-2.558400pt;}
.ls23_c01210{letter-spacing:-2.524800pt;}
.ls28_c01210{letter-spacing:-2.491200pt;}
.ls1c_c01210{letter-spacing:-2.001067pt;}
.lsa_c01210{letter-spacing:-1.922820pt;}
.ls11_c01210{letter-spacing:-1.391200pt;}
.ls10_c01210{letter-spacing:-1.370000pt;}
.ls25_c01210{letter-spacing:-1.333467pt;}
.ls1b_c01210{letter-spacing:-1.315867pt;}
.ls2a_c01210{letter-spacing:-1.315500pt;}
.lsd_c01210{letter-spacing:-1.280420pt;}
.ls4_c01210{letter-spacing:-0.716800pt;}
.lsc_c01210{letter-spacing:-0.642400pt;}
.lsf_c01210{letter-spacing:0.000000pt;}
.ls27_c01210{letter-spacing:0.744500pt;}
.ls3_c01210{letter-spacing:0.798600pt;}
.ls22_c01210{letter-spacing:1.430400pt;}
.ls6_c01210{letter-spacing:1.591333pt;}
.ls2_c01210{letter-spacing:1.821720pt;}
.ls2b_c01210{letter-spacing:2.473200pt;}
.ls0_c01210{letter-spacing:6.380733pt;}
.ls1d_c01210{letter-spacing:8.633467pt;}
.ls1_c01210{letter-spacing:15.143333pt;}
.ws0_c01210{word-spacing:0.000000pt;}
._13_c01210{margin-left:-7.918630pt;}
._12_c01210{margin-left:-4.702634pt;}
._b_c01210{margin-left:-3.578025pt;}
._8_c01210{margin-left:-2.545984pt;}
._7_c01210{margin-left:-1.361898pt;}
._5_c01210{width:1.456235pt;}
._c_c01210{width:2.890749pt;}
._6_c01210{width:5.114918pt;}
._11_c01210{width:6.014508pt;}
._d_c01210{width:8.386522pt;}
._14_c01210{width:11.220433pt;}
._4_c01210{width:12.517220pt;}
._3_c01210{width:14.046020pt;}
._0_c01210{width:15.856133pt;}
._a_c01210{width:17.437236pt;}
._10_c01210{width:18.361263pt;}
._2_c01210{width:19.389778pt;}
._1_c01210{width:20.994851pt;}
._f_c01210{width:22.909945pt;}
._9_c01210{width:25.345190pt;}
._e_c01210{width:39.240881pt;}
.fsb_c01210{font-size:44.000000pt;}
.fse_c01210{font-size:44.666667pt;}
.fsc_c01210{font-size:46.666667pt;}
.fsd_c01210{font-size:47.333333pt;}
.fs4_c01210{font-size:48.000000pt;}
.fs5_c01210{font-size:48.666667pt;}
.fs7_c01210{font-size:49.333333pt;}
.fs6_c01210{font-size:50.000000pt;}
.fs11_c01210{font-size:50.666667pt;}
.fsf_c01210{font-size:51.333333pt;}
.fs8_c01210{font-size:52.000000pt;}
.fsa_c01210{font-size:52.666667pt;}
.fs9_c01210{font-size:53.333333pt;}
.fs10_c01210{font-size:54.000000pt;}
.fs1_c01210{font-size:68.000000pt;}
.fs0_c01210{font-size:73.333333pt;}
.fs2_c01210{font-size:74.666667pt;}
.fs3_c01210{font-size:87.333333pt;}
.fs14_c01210{font-size:108.000000pt;}
.fs13_c01210{font-size:123.333333pt;}
.fs12_c01210{font-size:169.333333pt;}
.y0_c01210{bottom:0.000000pt;}
.y25_c01210{bottom:373.494507pt;}
.y24_c01210{bottom:399.414920pt;}
.y23_c01210{bottom:452.534507pt;}
.y22_c01210{bottom:452.535080pt;}
.y21_c01210{bottom:465.974360pt;}
.y20_c01210{bottom:479.093587pt;}
.y1f_c01210{bottom:479.094280pt;}
.y1e_c01210{bottom:492.533573pt;}
.y1d_c01210{bottom:492.533613pt;}
.y1c_c01210{bottom:505.654133pt;}
.y1b_c01210{bottom:505.654253pt;}
.y19_c01210{bottom:518.774613pt;}
.y1a_c01210{bottom:518.774787pt;}
.y18_c01210{bottom:531.893840pt;}
.y17_c01210{bottom:531.894573pt;}
.y16_c01210{bottom:545.333867pt;}
.y15_c01210{bottom:558.773720pt;}
.y14_c01210{bottom:558.773840pt;}
.y12_c01210{bottom:571.894200pt;}
.y13_c01210{bottom:571.894373pt;}
.y10_c01210{bottom:585.013227pt;}
.y11_c01210{bottom:585.013427pt;}
.ye_c01210{bottom:598.454893pt;}
.yf_c01210{bottom:598.454920pt;}
.yd_c01210{bottom:611.574133pt;}
.yc_c01210{bottom:624.694667pt;}
.yb_c01210{bottom:624.695347pt;}
.ya_c01210{bottom:638.134640pt;}
.y9_c01210{bottom:651.574507pt;}
.y8_c01210{bottom:664.693720pt;}
.y7_c01210{bottom:664.694293pt;}
.y6_c01210{bottom:678.133587pt;}
.y5_c01210{bottom:678.133707pt;}
.y4_c01210{bottom:691.254227pt;}
.y3_c01210{bottom:691.254480pt;}
.y2_c01210{bottom:703.894373pt;}
.y1_c01210{bottom:751.094480pt;}
.hf_c01210{height:45.800781pt;}
.he_c01210{height:45.890625pt;}
.h15_c01210{height:46.455078pt;}
.h11_c01210{height:46.585938pt;}
.h6_c01210{height:47.109375pt;}
.h10_c01210{height:47.703125pt;}
.h7_c01210{height:47.763672pt;}
.h9_c01210{height:48.417969pt;}
.h12_c01210{height:49.046875pt;}
.h8_c01210{height:49.072266pt;}
.h16_c01210{height:49.718750pt;}
.h13_c01210{height:50.731771pt;}
.ha_c01210{height:51.035156pt;}
.h17_c01210{height:51.062500pt;}
.hd_c01210{height:51.689453pt;}
.hc_c01210{height:52.049479pt;}
.hb_c01210{height:52.708333pt;}
.h14_c01210{height:52.998047pt;}
.h2_c01210{height:70.921875pt;}
.h5_c01210{height:73.281250pt;}
.h1_c01210{height:73.906250pt;}
.h3_c01210{height:75.250000pt;}
.h4_c01210{height:86.309896pt;}
.h1a_c01210{height:112.640625pt;}
.h19_c01210{height:128.632812pt;}
.h18_c01210{height:176.609375pt;}
.h0_c01210{height:793.333333pt;}
.w0_c01210{width:1122.666667pt;}
.x0_c01210{left:0.000000pt;}
.x1_c01210{left:78.079067pt;}
.x2_c01210{left:156.159733pt;}
.x3_c01210{left:193.599587pt;}
.x4_c01210{left:395.519453pt;}
.x5_c01210{left:429.439453pt;}
.x6_c01210{left:460.798787pt;}
.x7_c01210{left:520.319867pt;}
.xa_c01210{left:822.078853pt;}
.x14_c01210{left:823.678707pt;}
.x36_c01210{left:824.958027pt;}
.x3f_c01210{left:832.959960pt;}
.x23_c01210{left:834.878907pt;}
.x39_c01210{left:838.719720pt;}
.x40_c01210{left:841.918947pt;}
.x26_c01210{left:844.798747pt;}
.x37_c01210{left:849.919840pt;}
.x15_c01210{left:851.838947pt;}
.x8_c01210{left:856.319827pt;}
.x3e_c01210{left:858.878907pt;}
.x1b_c01210{left:859.839840pt;}
.x16_c01210{left:864.959467pt;}
.x11_c01210{left:868.158693pt;}
.x31_c01210{left:869.759680pt;}
.x3b_c01210{left:870.719160pt;}
.x1c_c01210{left:872.958907pt;}
.x9_c01210{left:875.519453pt;}
.x1f_c01210{left:882.559573pt;}
.x24_c01210{left:883.519040pt;}
.x32_c01210{left:884.799320pt;}
.x12_c01210{left:886.398920pt;}
.x3c_c01210{left:887.359867pt;}
.x27_c01210{left:888.959467pt;}
.x17_c01210{left:893.759680pt;}
.x28_c01210{left:904.319827pt;}
.x18_c01210{left:906.559573pt;}
.x25_c01210{left:920.318760pt;}
.x33_c01210{left:923.838947pt;}
.x29_c01210{left:925.439947pt;}
.xd_c01210{left:929.598720pt;}
.x1d_c01210{left:931.839840pt;}
.x2c_c01210{left:937.278813pt;}
.x34_c01210{left:939.839280pt;}
.x35_c01210{left:951.358893pt;}
.x2f_c01210{left:959.039067pt;}
.xe_c01210{left:965.119547pt;}
.x30_c01210{left:968.318760pt;}
.xb_c01210{left:973.759280pt;}
.x2d_c01210{left:975.999027pt;}
.xf_c01210{left:979.519040pt;}
.x1e_c01210{left:981.439453pt;}
.xc_c01210{left:983.039067pt;}
.x3d_c01210{left:985.278813pt;}
.x2e_c01210{left:988.479413pt;}
.x20_c01210{left:992.318760pt;}
.x2a_c01210{left:994.558507pt;}
.x10_c01210{left:995.838947pt;}
.x22_c01210{left:1009.599613pt;}
.x21_c01210{left:1020.799800pt;}
.x3a_c01210{left:1025.279293pt;}
.x19_c01210{left:1033.599613pt;}
.x2b_c01210{left:1047.999027pt;}
.x1a_c01210{left:1057.599613pt;}
.x13_c01210{left:1067.198733pt;}
.x38_c01210{left:1079.359867pt;}
}





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

.ir_c01211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_8aae5a1b30c4534c5fe29a2c.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01211;src:url('chunks/assets/font_134651db13e569bc55e444b4.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01211;src:url('chunks/assets/font_cb2ffbb3e8d6878371c4889c.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01211;src:url('chunks/assets/font_96f29e04b9c24370b14c9bec.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01211;src:url('chunks/assets/font_2fc30ee942d00b6117fd9479.woff2')format("woff");}.ff5_c01211{font-family:ff5_c01211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01211;src:url('chunks/assets/font_d58b3b01bc426822f71526e4.woff2')format("woff");}.ff6_c01211{font-family:ff6_c01211;line-height:1.432129;font-style:normal;font-weight: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_c01211;src:url('chunks/assets/font_0f6f946974421ec311bf787b.woff2')format("woff");}.ff7_c01211{font-family:ff7_c01211;line-height:1.364746;font-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_c01211{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);}
.m21_c01211{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m8_c01211{transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201389,0.000000,0.000000,0.250000,0,0);}
.m2d_c01211{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m7_c01211{transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219907,0.000000,0.000000,0.250000,0,0);}
.m24_c01211{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_c01211{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m3_c01211{transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222477,0.000000,0.000000,0.250000,0,0);}
.m20_c01211{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m23_c01211{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m5_c01211{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m2_c01211{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m27_c01211{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m29_c01211{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.me_c01211{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m26_c01211{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m2a_c01211{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m22_c01211{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m1f_c01211{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);}
.m2c_c01211{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m1e_c01211{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.mc_c01211{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m18_c01211{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_c01211{transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);}
.m9_c01211{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m1a_c01211{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m1_c01211{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m1b_c01211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m25_c01211{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m1c_c01211{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m15_c01211{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m12_c01211{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m28_c01211{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m1d_c01211{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m14_c01211{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_c01211{transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276549,0.000000,0.000000,0.250000,0,0);}
.m19_c01211{transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);}
.m10_c01211{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.mb_c01211{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m16_c01211{transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298913,0.000000,0.000000,0.250000,0,0);}
.m17_c01211{transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302083,0.000000,0.000000,0.250000,0,0);}
.ma_c01211{transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);}
.md_c01211{transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346154,0.000000,0.000000,0.250000,0,0);}
.mf_c01211{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m13_c01211{transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421875,0.000000,0.000000,0.250000,0,0);}
.m2b_c01211{transform:matrix(0.837741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837741,0.000000,0.000000,0.250000,0,0);}
.v0_c01211{vertical-align:0.000000px;}
.ls10_c01211{letter-spacing:-14.423325px;}
.ls1d_c01211{letter-spacing:-10.361250px;}
.ls18_c01211{letter-spacing:-8.661923px;}
.ls27_c01211{letter-spacing:-6.937500px;}
.ls9_c01211{letter-spacing:-6.187500px;}
.ls2a_c01211{letter-spacing:-6.166050px;}
.ls23_c01211{letter-spacing:-5.394600px;}
.ls5_c01211{letter-spacing:-4.932900px;}
.ls11_c01211{letter-spacing:-4.497300px;}
.ls21_c01211{letter-spacing:-3.851700px;}
.ls26_c01211{letter-spacing:-3.801750px;}
.ls25_c01211{letter-spacing:-3.601950px;}
.ls13_c01211{letter-spacing:-3.562500px;}
.ls28_c01211{letter-spacing:-3.211875px;}
.ls1a_c01211{letter-spacing:-3.209100px;}
.ls16_c01211{letter-spacing:-3.127500px;}
.ls15_c01211{letter-spacing:-3.085800px;}
.ls20_c01211{letter-spacing:-2.480625px;}
.ls24_c01211{letter-spacing:-2.447550px;}
.ls22_c01211{letter-spacing:-2.414250px;}
.ls29_c01211{letter-spacing:-2.315925px;}
.ls14_c01211{letter-spacing:-2.314350px;}
.ls7_c01211{letter-spacing:-2.307825px;}
.ls1e_c01211{letter-spacing:-2.247750px;}
.ls19_c01211{letter-spacing:-1.542900px;}
.ls12_c01211{letter-spacing:-1.475100px;}
.lsb_c01211{letter-spacing:-1.249763px;}
.ls17_c01211{letter-spacing:-0.843150px;}
.ls3_c01211{letter-spacing:-0.842025px;}
.ls1b_c01211{letter-spacing:-0.826313px;}
.ls1f_c01211{letter-spacing:-0.771450px;}
.lse_c01211{letter-spacing:-0.627900px;}
.ls4_c01211{letter-spacing:0.000000px;}
.lsd_c01211{letter-spacing:0.709125px;}
.lsf_c01211{letter-spacing:0.765000px;}
.ls1c_c01211{letter-spacing:0.855000px;}
.lsa_c01211{letter-spacing:2.606175px;}
.ls8_c01211{letter-spacing:2.708550px;}
.ls0_c01211{letter-spacing:2.712000px;}
.ls1_c01211{letter-spacing:4.543088px;}
.ls2_c01211{letter-spacing:5.718075px;}
.ls2b_c01211{letter-spacing:8.683290px;}
.lsc_c01211{letter-spacing:33.777360px;}
.ls6_c01211{letter-spacing:106.437900px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01211{word-spacing:0.000000px;}
._0_c01211{width:1.552582px;}
._1_c01211{width:3.991498px;}
._4_c01211{width:6.587727px;}
._5_c01211{width:8.119588px;}
._3_c01211{width:9.268562px;}
._2_c01211{width:22.960720px;}
.fc0_c01211{color:transparent;}
.fsd_c01211{font-size:19.500000px;}
.fsa_c01211{font-size:23.250000px;}
.fs11_c01211{font-size:24.000000px;}
.fse_c01211{font-size:24.750000px;}
.fsf_c01211{font-size:26.250000px;}
.fsc_c01211{font-size:29.250000px;}
.fsb_c01211{font-size:33.000000px;}
.fs14_c01211{font-size:34.500000px;}
.fs10_c01211{font-size:35.250000px;}
.fs15_c01211{font-size:36.000000px;}
.fs13_c01211{font-size:36.750000px;}
.fs12_c01211{font-size:37.500000px;}
.fs18_c01211{font-size:49.500000px;}
.fs8_c01211{font-size:54.000000px;}
.fs1a_c01211{font-size:54.750000px;}
.fs9_c01211{font-size:55.500000px;}
.fs19_c01211{font-size:56.250000px;}
.fs17_c01211{font-size:57.000000px;}
.fs1b_c01211{font-size:57.750000px;}
.fs16_c01211{font-size:62.250000px;}
.fs6_c01211{font-size:78.000000px;}
.fs1_c01211{font-size:78.750000px;}
.fs7_c01211{font-size:81.000000px;}
.fs3_c01211{font-size:81.750000px;}
.fs2_c01211{font-size:82.500000px;}
.fs0_c01211{font-size:84.750000px;}
.fs4_c01211{font-size:90.750000px;}
.fs5_c01211{font-size:94.500000px;}
.fs1d_c01211{font-size:99.000000px;}
.fs1c_c01211{font-size:156.000000px;}
.y0_c01211{bottom:0.000000px;}
.y5_c01211{bottom:38.580435px;}
.y3_c01211{bottom:47.581650px;}
.y4_c01211{bottom:54.420600px;}
.y2_c01211{bottom:58.741500px;}
.yd_c01211{bottom:640.141335px;}
.yc_c01211{bottom:642.661005px;}
.yb_c01211{bottom:670.020270px;}
.ya_c01211{bottom:729.781500px;}
.y9_c01211{bottom:744.901470px;}
.y8_c01211{bottom:759.660420px;}
.y7_c01211{bottom:774.421140px;}
.y6_c01211{bottom:789.540990px;}
.y1_c01211{bottom:843.180090px;}
.he_c01211{height:20.337891px;}
.hb_c01211{height:24.249023px;}
.h12_c01211{height:25.031250px;}
.hf_c01211{height:25.813477px;}
.h10_c01211{height:27.377930px;}
.hd_c01211{height:28.907227px;}
.hc_c01211{height:34.417969px;}
.h15_c01211{height:34.769531px;}
.h16_c01211{height:36.281250px;}
.h11_c01211{height:36.764648px;}
.h14_c01211{height:37.037109px;}
.h13_c01211{height:37.792969px;}
.h19_c01211{height:51.626953px;}
.h1c_c01211{height:55.177734px;}
.h1a_c01211{height:55.933594px;}
.h9_c01211{height:56.320312px;}
.h1b_c01211{height:56.689453px;}
.h1d_c01211{height:57.073242px;}
.h18_c01211{height:57.445312px;}
.ha_c01211{height:57.884766px;}
.h17_c01211{height:61.520508px;}
.h7_c01211{height:78.609375px;}
.h8_c01211{height:81.632812px;}
.h2_c01211{height:82.133789px;}
.h4_c01211{height:82.388672px;}
.h3_c01211{height:83.144531px;}
.h1_c01211{height:85.412109px;}
.h5_c01211{height:89.686523px;}
.h6_c01211{height:93.392578px;}
.h1f_c01211{height:103.253906px;}
.h1e_c01211{height:162.703125px;}
.h0_c01211{height:892.500000px;}
.w0_c01211{width:1263.000000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:83.158785px;}
.xa_c01211{left:152.639700px;}
.x2_c01211{left:169.559100px;}
.x3_c01211{left:211.679100px;}
.xb_c01211{left:231.120000px;}
.x4_c01211{left:308.878350px;}
.x13_c01211{left:331.918350px;}
.x14_c01211{left:359.638530px;}
.xc_c01211{left:385.918350px;}
.x15_c01211{left:404.279850px;}
.x9_c01211{left:428.039985px;}
.x5_c01211{left:440.279250px;}
.x16_c01211{left:444.598530px;}
.xd_c01211{left:464.039385px;}
.x6_c01211{left:479.518620px;}
.x17_c01211{left:489.599070px;}
.x7_c01211{left:516.239820px;}
.x18_c01211{left:542.158770px;}
.xe_c01211{left:543.239820px;}
.x8_c01211{left:581.759085px;}
.xf_c01211{left:620.279850px;}
.x10_c01211{left:699.119385px;}
.x11_c01211{left:776.159370px;}
.x12_c01211{left:779.399235px;}
.x34_c01211{left:932.399865px;}
.x36_c01211{left:933.479190px;}
.x1f_c01211{left:934.558590px;}
.x28_c01211{left:959.399775px;}
.x20_c01211{left:969.839535px;}
.x19_c01211{left:971.639100px;}
.x37_c01211{left:972.718500px;}
.x2e_c01211{left:980.999355px;}
.x1a_c01211{left:990.359805px;}
.x2f_c01211{left:991.798560px;}
.x35_c01211{left:1010.519070px;}
.x1b_c01211{left:1013.759040px;}
.x21_c01211{left:1032.479640px;}
.x30_c01211{left:1038.959385px;}
.x1c_c01211{left:1060.199805px;}
.x31_c01211{left:1061.279205px;}
.x1d_c01211{left:1075.679070px;}
.x29_c01211{left:1087.918305px;}
.x22_c01211{left:1092.239220px;}
.x23_c01211{left:1108.438665px;}
.x32_c01211{left:1110.239775px;}
.x2a_c01211{left:1113.118740px;}
.x24_c01211{left:1152.359805px;}
.x2b_c01211{left:1160.279850px;}
.x25_c01211{left:1169.638545px;}
.x33_c01211{left:1171.078770px;}
.x2c_c01211{left:1181.879520px;}
.x26_c01211{left:1189.079400px;}
.x1e_c01211{left:1199.519070px;}
.x2d_c01211{left:1222.199805px;}
.x27_c01211{left:1226.159820px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls10_c01211{letter-spacing:-12.820733pt;}
.ls1d_c01211{letter-spacing:-9.210000pt;}
.ls18_c01211{letter-spacing:-7.699487pt;}
.ls27_c01211{letter-spacing:-6.166667pt;}
.ls9_c01211{letter-spacing:-5.500000pt;}
.ls2a_c01211{letter-spacing:-5.480933pt;}
.ls23_c01211{letter-spacing:-4.795200pt;}
.ls5_c01211{letter-spacing:-4.384800pt;}
.ls11_c01211{letter-spacing:-3.997600pt;}
.ls21_c01211{letter-spacing:-3.423733pt;}
.ls26_c01211{letter-spacing:-3.379333pt;}
.ls25_c01211{letter-spacing:-3.201733pt;}
.ls13_c01211{letter-spacing:-3.166667pt;}
.ls28_c01211{letter-spacing:-2.855000pt;}
.ls1a_c01211{letter-spacing:-2.852533pt;}
.ls16_c01211{letter-spacing:-2.780000pt;}
.ls15_c01211{letter-spacing:-2.742933pt;}
.ls20_c01211{letter-spacing:-2.205000pt;}
.ls24_c01211{letter-spacing:-2.175600pt;}
.ls22_c01211{letter-spacing:-2.146000pt;}
.ls29_c01211{letter-spacing:-2.058600pt;}
.ls14_c01211{letter-spacing:-2.057200pt;}
.ls7_c01211{letter-spacing:-2.051400pt;}
.ls1e_c01211{letter-spacing:-1.998000pt;}
.ls19_c01211{letter-spacing:-1.371467pt;}
.ls12_c01211{letter-spacing:-1.311200pt;}
.lsb_c01211{letter-spacing:-1.110900pt;}
.ls17_c01211{letter-spacing:-0.749467pt;}
.ls3_c01211{letter-spacing:-0.748467pt;}
.ls1b_c01211{letter-spacing:-0.734500pt;}
.ls1f_c01211{letter-spacing:-0.685733pt;}
.lse_c01211{letter-spacing:-0.558133pt;}
.ls4_c01211{letter-spacing:0.000000pt;}
.lsd_c01211{letter-spacing:0.630333pt;}
.lsf_c01211{letter-spacing:0.680000pt;}
.ls1c_c01211{letter-spacing:0.760000pt;}
.lsa_c01211{letter-spacing:2.316600pt;}
.ls8_c01211{letter-spacing:2.407600pt;}
.ls0_c01211{letter-spacing:2.410667pt;}
.ls1_c01211{letter-spacing:4.038300pt;}
.ls2_c01211{letter-spacing:5.082733pt;}
.ls2b_c01211{letter-spacing:7.718480pt;}
.lsc_c01211{letter-spacing:30.024320pt;}
.ls6_c01211{letter-spacing:94.611467pt;}
.ws0_c01211{word-spacing:0.000000pt;}
._0_c01211{width:1.380073pt;}
._1_c01211{width:3.547999pt;}
._4_c01211{width:5.855757pt;}
._5_c01211{width:7.217412pt;}
._3_c01211{width:8.238721pt;}
._2_c01211{width:20.409529pt;}
.fsd_c01211{font-size:17.333333pt;}
.fsa_c01211{font-size:20.666667pt;}
.fs11_c01211{font-size:21.333333pt;}
.fse_c01211{font-size:22.000000pt;}
.fsf_c01211{font-size:23.333333pt;}
.fsc_c01211{font-size:26.000000pt;}
.fsb_c01211{font-size:29.333333pt;}
.fs14_c01211{font-size:30.666667pt;}
.fs10_c01211{font-size:31.333333pt;}
.fs15_c01211{font-size:32.000000pt;}
.fs13_c01211{font-size:32.666667pt;}
.fs12_c01211{font-size:33.333333pt;}
.fs18_c01211{font-size:44.000000pt;}
.fs8_c01211{font-size:48.000000pt;}
.fs1a_c01211{font-size:48.666667pt;}
.fs9_c01211{font-size:49.333333pt;}
.fs19_c01211{font-size:50.000000pt;}
.fs17_c01211{font-size:50.666667pt;}
.fs1b_c01211{font-size:51.333333pt;}
.fs16_c01211{font-size:55.333333pt;}
.fs6_c01211{font-size:69.333333pt;}
.fs1_c01211{font-size:70.000000pt;}
.fs7_c01211{font-size:72.000000pt;}
.fs3_c01211{font-size:72.666667pt;}
.fs2_c01211{font-size:73.333333pt;}
.fs0_c01211{font-size:75.333333pt;}
.fs4_c01211{font-size:80.666667pt;}
.fs5_c01211{font-size:84.000000pt;}
.fs1d_c01211{font-size:88.000000pt;}
.fs1c_c01211{font-size:138.666667pt;}
.y0_c01211{bottom:0.000000pt;}
.y5_c01211{bottom:34.293720pt;}
.y3_c01211{bottom:42.294800pt;}
.y4_c01211{bottom:48.373867pt;}
.y2_c01211{bottom:52.214667pt;}
.yd_c01211{bottom:569.014520pt;}
.yc_c01211{bottom:571.254227pt;}
.yb_c01211{bottom:595.573573pt;}
.ya_c01211{bottom:648.694667pt;}
.y9_c01211{bottom:662.134640pt;}
.y8_c01211{bottom:675.253707pt;}
.y7_c01211{bottom:688.374347pt;}
.y6_c01211{bottom:701.814213pt;}
.y1_c01211{bottom:749.493413pt;}
.he_c01211{height:18.078125pt;}
.hb_c01211{height:21.554687pt;}
.h12_c01211{height:22.250000pt;}
.hf_c01211{height:22.945312pt;}
.h10_c01211{height:24.335938pt;}
.hd_c01211{height:25.695312pt;}
.hc_c01211{height:30.593750pt;}
.h15_c01211{height:30.906250pt;}
.h16_c01211{height:32.250000pt;}
.h11_c01211{height:32.679688pt;}
.h14_c01211{height:32.921875pt;}
.h13_c01211{height:33.593750pt;}
.h19_c01211{height:45.890625pt;}
.h1c_c01211{height:49.046875pt;}
.h1a_c01211{height:49.718750pt;}
.h9_c01211{height:50.062500pt;}
.h1b_c01211{height:50.390625pt;}
.h1d_c01211{height:50.731771pt;}
.h18_c01211{height:51.062500pt;}
.ha_c01211{height:51.453125pt;}
.h17_c01211{height:54.684896pt;}
.h7_c01211{height:69.875000pt;}
.h8_c01211{height:72.562500pt;}
.h2_c01211{height:73.007812pt;}
.h4_c01211{height:73.234375pt;}
.h3_c01211{height:73.906250pt;}
.h1_c01211{height:75.921875pt;}
.h5_c01211{height:79.721354pt;}
.h6_c01211{height:83.015625pt;}
.h1f_c01211{height:91.781250pt;}
.h1e_c01211{height:144.625000pt;}
.h0_c01211{height:793.333333pt;}
.w0_c01211{width:1122.666667pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:73.918920pt;}
.xa_c01211{left:135.679733pt;}
.x2_c01211{left:150.719200pt;}
.x3_c01211{left:188.159200pt;}
.xb_c01211{left:205.440000pt;}
.x4_c01211{left:274.558533pt;}
.x13_c01211{left:295.038533pt;}
.x14_c01211{left:319.678693pt;}
.xc_c01211{left:343.038533pt;}
.x15_c01211{left:359.359867pt;}
.x9_c01211{left:380.479987pt;}
.x5_c01211{left:391.359333pt;}
.x16_c01211{left:395.198693pt;}
.xd_c01211{left:412.479453pt;}
.x6_c01211{left:426.238773pt;}
.x17_c01211{left:435.199173pt;}
.x7_c01211{left:458.879840pt;}
.x18_c01211{left:481.918907pt;}
.xe_c01211{left:482.879840pt;}
.x8_c01211{left:517.119187pt;}
.xf_c01211{left:551.359867pt;}
.x10_c01211{left:621.439453pt;}
.x11_c01211{left:689.919440pt;}
.x12_c01211{left:692.799320pt;}
.x34_c01211{left:828.799880pt;}
.x36_c01211{left:829.759280pt;}
.x1f_c01211{left:830.718747pt;}
.x28_c01211{left:852.799800pt;}
.x20_c01211{left:862.079587pt;}
.x19_c01211{left:863.679200pt;}
.x37_c01211{left:864.638667pt;}
.x2e_c01211{left:871.999427pt;}
.x1a_c01211{left:880.319827pt;}
.x2f_c01211{left:881.598720pt;}
.x35_c01211{left:898.239173pt;}
.x1b_c01211{left:901.119147pt;}
.x21_c01211{left:917.759680pt;}
.x30_c01211{left:923.519453pt;}
.x1c_c01211{left:942.399827pt;}
.x31_c01211{left:943.359293pt;}
.x1d_c01211{left:956.159173pt;}
.x29_c01211{left:967.038493pt;}
.x22_c01211{left:970.879307pt;}
.x23_c01211{left:985.278813pt;}
.x32_c01211{left:986.879800pt;}
.x2a_c01211{left:989.438880pt;}
.x24_c01211{left:1024.319827pt;}
.x2b_c01211{left:1031.359867pt;}
.x25_c01211{left:1039.678707pt;}
.x33_c01211{left:1040.958907pt;}
.x2c_c01211{left:1050.559573pt;}
.x26_c01211{left:1056.959467pt;}
.x1e_c01211{left:1066.239173pt;}
.x2d_c01211{left:1086.399827pt;}
.x27_c01211{left:1089.919840pt;}
}





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

.ir_c01212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_b77df0501c5168dd7a618738.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01212;src:url('chunks/assets/font_7fbb8598d1c3286c7bdbb842.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01212;src:url('chunks/assets/font_71e93e00f60c96e0bff6c76b.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01212;src:url('chunks/assets/font_85c3aebf9ef95b887a6c9a25.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01212;src:url('chunks/assets/font_18838181c9b3888f0cfc3c03.woff2')format("woff");}.ff5_c01212{font-family:ff5_c01212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01212;src:url('chunks/assets/font_dbcb83ee37f84d32c56093f9.woff2')format("woff");}.ff6_c01212{font-family:ff6_c01212;line-height:1.432129;font-style:normal;font-weight: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_c01212;src:url('chunks/assets/font_5b07191d8a14b4ad59e6c28c.woff2')format("woff");}.ff7_c01212{font-family:ff7_c01212;line-height:1.281250;font-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_c01212{transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058333,0.000000,0.000000,0.250000,0,0);}
.m21_c01212{transform:matrix(0.143243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143243,0.000000,0.000000,0.250000,0,0);}
.m4_c01212{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m22_c01212{transform:matrix(0.174556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174556,0.000000,0.000000,0.250000,0,0);}
.mc_c01212{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m8_c01212{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m1e_c01212{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m12_c01212{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c01212{transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222727,0.000000,0.000000,0.250000,0,0);}
.mf_c01212{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m17_c01212{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m1a_c01212{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m1c_c01212{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m2_c01212{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m14_c01212{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m24_c01212{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m19_c01212{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m20_c01212{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m9_c01212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23_c01212{transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253597,0.000000,0.000000,0.250000,0,0);}
.m7_c01212{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma_c01212{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m15_c01212{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m16_c01212{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m18_c01212{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m1b_c01212{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m11_c01212{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_c01212{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m10_c01212{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_c01212{transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);}
.m1d_c01212{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m0_c01212{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.m5_c01212{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.md_c01212{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m6_c01212{transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);}
.mb_c01212{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);}
.m1f_c01212{transform:matrix(0.630906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630906,0.000000,0.000000,0.250000,0,0);}
.v0_c01212{vertical-align:0.000000px;}
.ls10_c01212{letter-spacing:-80.356500px;}
.ls1b_c01212{letter-spacing:-8.645025px;}
.ls1f_c01212{letter-spacing:-7.813845px;}
.ls23_c01212{letter-spacing:-7.650000px;}
.lsb_c01212{letter-spacing:-7.012245px;}
.ls13_c01212{letter-spacing:-5.145000px;}
.ls21_c01212{letter-spacing:-4.689750px;}
.ls1d_c01212{letter-spacing:-4.049910px;}
.ls1a_c01212{letter-spacing:-3.907200px;}
.ls16_c01212{letter-spacing:-3.650400px;}
.ls1e_c01212{letter-spacing:-3.562500px;}
.ls5_c01212{letter-spacing:-3.209198px;}
.ls20_c01212{letter-spacing:-3.209100px;}
.ls19_c01212{letter-spacing:-3.124650px;}
.lsd_c01212{letter-spacing:-2.550255px;}
.ls17_c01212{letter-spacing:-2.347650px;}
.ls24_c01212{letter-spacing:-2.343270px;}
.ls15_c01212{letter-spacing:-2.192805px;}
.ls11_c01212{letter-spacing:-1.672125px;}
.ls18_c01212{letter-spacing:-1.565100px;}
.ls22_c01212{letter-spacing:-1.541250px;}
.ls9_c01212{letter-spacing:-1.464000px;}
.ls7_c01212{letter-spacing:-1.275000px;}
.lsa_c01212{letter-spacing:-0.879750px;}
.ls4_c01212{letter-spacing:-0.840675px;}
.ls14_c01212{letter-spacing:-0.782550px;}
.ls1c_c01212{letter-spacing:-0.771450px;}
.lse_c01212{letter-spacing:0.000000px;}
.ls12_c01212{letter-spacing:0.709125px;}
.lsc_c01212{letter-spacing:0.749700px;}
.lsf_c01212{letter-spacing:0.926100px;}
.ls8_c01212{letter-spacing:1.231200px;}
.ls3_c01212{letter-spacing:1.353000px;}
.ls1_c01212{letter-spacing:1.565100px;}
.ls0_c01212{letter-spacing:1.605000px;}
.ls2_c01212{letter-spacing:8.421750px;}
.ls6_c01212{letter-spacing:48.399450px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01212{word-spacing:0.000000px;}
._7_c01212{margin-left:-2.703366px;}
._6_c01212{width:1.676288px;}
._9_c01212{width:4.662344px;}
._5_c01212{width:5.977491px;}
._3_c01212{width:8.008634px;}
._4_c01212{width:9.973694px;}
._8_c01212{width:16.737229px;}
._0_c01212{width:26.980307px;}
._2_c01212{width:33.072245px;}
._1_c01212{width:35.068383px;}
.fc0_c01212{color:transparent;}
.fs3_c01212{font-size:16.500000px;}
.fs8_c01212{font-size:22.500000px;}
.fs5_c01212{font-size:24.000000px;}
.fsa_c01212{font-size:24.750000px;}
.fs4_c01212{font-size:25.500000px;}
.fs7_c01212{font-size:28.500000px;}
.fs6_c01212{font-size:30.000000px;}
.fs9_c01212{font-size:31.500000px;}
.fse_c01212{font-size:34.500000px;}
.fsb_c01212{font-size:36.750000px;}
.fsc_c01212{font-size:37.500000px;}
.fsd_c01212{font-size:42.000000px;}
.fs13_c01212{font-size:51.000000px;}
.fs10_c01212{font-size:54.000000px;}
.fs12_c01212{font-size:54.750000px;}
.fsf_c01212{font-size:55.500000px;}
.fs11_c01212{font-size:56.250000px;}
.fs14_c01212{font-size:57.000000px;}
.fs2_c01212{font-size:80.250000px;}
.fs1_c01212{font-size:82.500000px;}
.fs0_c01212{font-size:85.500000px;}
.fs18_c01212{font-size:104.250000px;}
.fs17_c01212{font-size:126.750000px;}
.fs16_c01212{font-size:138.750000px;}
.fs15_c01212{font-size:190.500000px;}
.y0_c01212{bottom:0.000000px;}
.y5_c01212{bottom:38.221185px;}
.y3_c01212{bottom:47.940900px;}
.y4_c01212{bottom:53.341185px;}
.y2_c01212{bottom:54.781500px;}
.y10_c01212{bottom:642.300105px;}
.yf_c01212{bottom:659.580420px;}
.ye_c01212{bottom:672.541620px;}
.yd_c01212{bottom:731.581005px;}
.yc_c01212{bottom:736.620435px;}
.yb_c01212{bottom:747.421185px;}
.ya_c01212{bottom:762.541035px;}
.y9_c01212{bottom:777.300105px;}
.y8_c01212{bottom:777.300525px;}
.y7_c01212{bottom:792.060705px;}
.y6_c01212{bottom:812.220150px;}
.y1_c01212{bottom:844.620390px;}
.h4_c01212{height:16.193848px;}
.hc_c01212{height:22.071533px;}
.h9_c01212{height:23.466797px;}
.hb_c01212{height:24.459961px;}
.h6_c01212{height:25.031250px;}
.h5_c01212{height:26.595703px;}
.h7_c01212{height:29.648438px;}
.h8_c01212{height:29.724609px;}
.ha_c01212{height:32.853516px;}
.h10_c01212{height:35.982422px;}
.hd_c01212{height:36.319336px;}
.he_c01212{height:37.792969px;}
.hf_c01212{height:41.507812px;}
.h15_c01212{height:53.191406px;}
.h12_c01212{height:54.421875px;}
.h14_c01212{height:55.177734px;}
.h11_c01212{height:55.933594px;}
.h13_c01212{height:56.689453px;}
.h16_c01212{height:57.445312px;}
.h3_c01212{height:80.876953px;}
.h2_c01212{height:83.144531px;}
.h1_c01212{height:86.167969px;}
.h1a_c01212{height:108.729492px;}
.h19_c01212{height:132.196289px;}
.h18_c01212{height:144.711914px;}
.h17_c01212{height:198.685547px;}
.h0_c01212{height:892.500000px;}
.w0_c01212{width:1263.000000px;}
.x0_c01212{left:0.000000px;}
.x1_c01212{left:83.878950px;}
.x6_c01212{left:89.279250px;}
.x7_c01212{left:152.998950px;}
.x2_c01212{left:171.719565px;}
.x3_c01212{left:213.478635px;}
.x8_c01212{left:230.399850px;}
.x10_c01212{left:306.719535px;}
.x4_c01212{left:308.878350px;}
.x13_c01212{left:329.759535px;}
.x14_c01212{left:357.479685px;}
.x9_c01212{left:384.479685px;}
.x5_c01212{left:440.999400px;}
.x15_c01212{left:444.239220px;}
.xa_c01212{left:462.599070px;}
.x16_c01212{left:488.158770px;}
.xb_c01212{left:539.639100px;}
.x11_c01212{left:541.079400px;}
.xc_c01212{left:618.839535px;}
.xf_c01212{left:659.878320px;}
.xd_c01212{left:696.238770px;}
.x12_c01212{left:737.638545px;}
.xe_c01212{left:772.558590px;}
.x17_c01212{left:856.079955px;}
.x27_c01212{left:919.079400px;}
.x1c_c01212{left:921.600195px;}
.x2a_c01212{left:927.719520px;}
.x2b_c01212{left:944.639100px;}
.x28_c01212{left:958.679715px;}
.x18_c01212{left:959.759040px;}
.x1d_c01212{left:972.718500px;}
.x1e_c01212{left:984.959385px;}
.x23_c01212{left:991.798560px;}
.x2c_c01212{left:993.958920px;}
.x29_c01212{left:998.639100px;}
.x24_c01212{left:1002.239865px;}
.x1f_c01212{left:1004.398590px;}
.x19_c01212{left:1015.919490px;}
.x20_c01212{left:1046.159370px;}
.x1a_c01212{left:1047.599670px;}
.x1b_c01212{left:1063.798920px;}
.x25_c01212{left:1067.399775px;}
.x26_c01212{left:1081.079400px;}
.x21_c01212{left:1084.319190px;}
.x22_c01212{left:1211.399235px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls10_c01212{letter-spacing:-71.428000pt;}
.ls1b_c01212{letter-spacing:-7.684467pt;}
.ls1f_c01212{letter-spacing:-6.945640pt;}
.ls23_c01212{letter-spacing:-6.800000pt;}
.lsb_c01212{letter-spacing:-6.233107pt;}
.ls13_c01212{letter-spacing:-4.573333pt;}
.ls21_c01212{letter-spacing:-4.168667pt;}
.ls1d_c01212{letter-spacing:-3.599920pt;}
.ls1a_c01212{letter-spacing:-3.473067pt;}
.ls16_c01212{letter-spacing:-3.244800pt;}
.ls1e_c01212{letter-spacing:-3.166667pt;}
.ls5_c01212{letter-spacing:-2.852620pt;}
.ls20_c01212{letter-spacing:-2.852533pt;}
.ls19_c01212{letter-spacing:-2.777467pt;}
.lsd_c01212{letter-spacing:-2.266893pt;}
.ls17_c01212{letter-spacing:-2.086800pt;}
.ls24_c01212{letter-spacing:-2.082907pt;}
.ls15_c01212{letter-spacing:-1.949160pt;}
.ls11_c01212{letter-spacing:-1.486333pt;}
.ls18_c01212{letter-spacing:-1.391200pt;}
.ls22_c01212{letter-spacing:-1.370000pt;}
.ls9_c01212{letter-spacing:-1.301333pt;}
.ls7_c01212{letter-spacing:-1.133333pt;}
.lsa_c01212{letter-spacing:-0.782000pt;}
.ls4_c01212{letter-spacing:-0.747267pt;}
.ls14_c01212{letter-spacing:-0.695600pt;}
.ls1c_c01212{letter-spacing:-0.685733pt;}
.lse_c01212{letter-spacing:0.000000pt;}
.ls12_c01212{letter-spacing:0.630333pt;}
.lsc_c01212{letter-spacing:0.666400pt;}
.lsf_c01212{letter-spacing:0.823200pt;}
.ls8_c01212{letter-spacing:1.094400pt;}
.ls3_c01212{letter-spacing:1.202667pt;}
.ls1_c01212{letter-spacing:1.391200pt;}
.ls0_c01212{letter-spacing:1.426667pt;}
.ls2_c01212{letter-spacing:7.486000pt;}
.ls6_c01212{letter-spacing:43.021733pt;}
.ws0_c01212{word-spacing:0.000000pt;}
._7_c01212{margin-left:-2.402992pt;}
._6_c01212{width:1.490033pt;}
._9_c01212{width:4.144306pt;}
._5_c01212{width:5.313325pt;}
._3_c01212{width:7.118786pt;}
._4_c01212{width:8.865506pt;}
._8_c01212{width:14.877537pt;}
._0_c01212{width:23.982495pt;}
._2_c01212{width:29.397551pt;}
._1_c01212{width:31.171896pt;}
.fs3_c01212{font-size:14.666667pt;}
.fs8_c01212{font-size:20.000000pt;}
.fs5_c01212{font-size:21.333333pt;}
.fsa_c01212{font-size:22.000000pt;}
.fs4_c01212{font-size:22.666667pt;}
.fs7_c01212{font-size:25.333333pt;}
.fs6_c01212{font-size:26.666667pt;}
.fs9_c01212{font-size:28.000000pt;}
.fse_c01212{font-size:30.666667pt;}
.fsb_c01212{font-size:32.666667pt;}
.fsc_c01212{font-size:33.333333pt;}
.fsd_c01212{font-size:37.333333pt;}
.fs13_c01212{font-size:45.333333pt;}
.fs10_c01212{font-size:48.000000pt;}
.fs12_c01212{font-size:48.666667pt;}
.fsf_c01212{font-size:49.333333pt;}
.fs11_c01212{font-size:50.000000pt;}
.fs14_c01212{font-size:50.666667pt;}
.fs2_c01212{font-size:71.333333pt;}
.fs1_c01212{font-size:73.333333pt;}
.fs0_c01212{font-size:76.000000pt;}
.fs18_c01212{font-size:92.666667pt;}
.fs17_c01212{font-size:112.666667pt;}
.fs16_c01212{font-size:123.333333pt;}
.fs15_c01212{font-size:169.333333pt;}
.y0_c01212{bottom:0.000000pt;}
.y5_c01212{bottom:33.974387pt;}
.y3_c01212{bottom:42.614133pt;}
.y4_c01212{bottom:47.414387pt;}
.y2_c01212{bottom:48.694667pt;}
.y10_c01212{bottom:570.933427pt;}
.yf_c01212{bottom:586.293707pt;}
.ye_c01212{bottom:597.814773pt;}
.yd_c01212{bottom:650.294227pt;}
.yc_c01212{bottom:654.773720pt;}
.yb_c01212{bottom:664.374387pt;}
.ya_c01212{bottom:677.814253pt;}
.y9_c01212{bottom:690.933427pt;}
.y8_c01212{bottom:690.933800pt;}
.y7_c01212{bottom:704.053960pt;}
.y6_c01212{bottom:721.973467pt;}
.y1_c01212{bottom:750.773680pt;}
.h4_c01212{height:14.394531pt;}
.hc_c01212{height:19.619141pt;}
.h9_c01212{height:20.859375pt;}
.hb_c01212{height:21.742187pt;}
.h6_c01212{height:22.250000pt;}
.h5_c01212{height:23.640625pt;}
.h7_c01212{height:26.354167pt;}
.h8_c01212{height:26.421875pt;}
.ha_c01212{height:29.203125pt;}
.h10_c01212{height:31.984375pt;}
.hd_c01212{height:32.283854pt;}
.he_c01212{height:33.593750pt;}
.hf_c01212{height:36.895833pt;}
.h15_c01212{height:47.281250pt;}
.h12_c01212{height:48.375000pt;}
.h14_c01212{height:49.046875pt;}
.h11_c01212{height:49.718750pt;}
.h13_c01212{height:50.390625pt;}
.h16_c01212{height:51.062500pt;}
.h3_c01212{height:71.890625pt;}
.h2_c01212{height:73.906250pt;}
.h1_c01212{height:76.593750pt;}
.h1a_c01212{height:96.648438pt;}
.h19_c01212{height:117.507812pt;}
.h18_c01212{height:128.632812pt;}
.h17_c01212{height:176.609375pt;}
.h0_c01212{height:793.333333pt;}
.w0_c01212{width:1122.666667pt;}
.x0_c01212{left:0.000000pt;}
.x1_c01212{left:74.559067pt;}
.x6_c01212{left:79.359333pt;}
.x7_c01212{left:135.999067pt;}
.x2_c01212{left:152.639613pt;}
.x3_c01212{left:189.758787pt;}
.x8_c01212{left:204.799867pt;}
.x10_c01212{left:272.639587pt;}
.x4_c01212{left:274.558533pt;}
.x13_c01212{left:293.119587pt;}
.x14_c01212{left:317.759720pt;}
.x9_c01212{left:341.759720pt;}
.x5_c01212{left:391.999467pt;}
.x15_c01212{left:394.879307pt;}
.xa_c01212{left:411.199173pt;}
.x16_c01212{left:433.918907pt;}
.xb_c01212{left:479.679200pt;}
.x11_c01212{left:480.959467pt;}
.xc_c01212{left:550.079587pt;}
.xf_c01212{left:586.558507pt;}
.xd_c01212{left:618.878907pt;}
.x12_c01212{left:655.678707pt;}
.xe_c01212{left:686.718747pt;}
.x17_c01212{left:760.959960pt;}
.x27_c01212{left:816.959467pt;}
.x1c_c01212{left:819.200173pt;}
.x2a_c01212{left:824.639573pt;}
.x2b_c01212{left:839.679200pt;}
.x28_c01212{left:852.159747pt;}
.x18_c01212{left:853.119147pt;}
.x1d_c01212{left:864.638667pt;}
.x1e_c01212{left:875.519453pt;}
.x23_c01212{left:881.598720pt;}
.x2c_c01212{left:883.519040pt;}
.x29_c01212{left:887.679200pt;}
.x24_c01212{left:890.879880pt;}
.x1f_c01212{left:892.798747pt;}
.x19_c01212{left:903.039547pt;}
.x20_c01212{left:929.919440pt;}
.x1a_c01212{left:931.199707pt;}
.x1b_c01212{left:945.599040pt;}
.x25_c01212{left:948.799800pt;}
.x26_c01212{left:960.959467pt;}
.x21_c01212{left:963.839280pt;}
.x22_c01212{left:1076.799320pt;}
}





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

.ir_c01213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_de923c2a367e0e91829dbe8a.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01213;src:url('chunks/assets/font_02e8f94630bc4061e1f5608a.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01213;src:url('chunks/assets/font_cdb4c78c5b991bbb144528d2.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01213;src:url('chunks/assets/font_e67cde1e4e1203d154219818.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01213;src:url('chunks/assets/font_a7068df01506cc8edce90a54.woff2')format("woff");}.ff5_c01213{font-family:ff5_c01213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01213;src:url('chunks/assets/font_4d3a1ec98582c06bf65a753d.woff2')format("woff");}.ff6_c01213{font-family:ff6_c01213;line-height:1.281250;font-style:normal;font-weight: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_c01213;src:url('chunks/assets/font_3dfd2a41eb74b3f781221298.woff2')format("woff");}.ff7_c01213{font-family:ff7_c01213;line-height:1.432129;font-style:normal;font-weight: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_c01213;src:url('chunks/assets/font_683477bd12808ec139489b88.woff2')format("woff");}.ff8_c01213{font-family:ff8_c01213;line-height:1.364746;font-style:normal;font-weight: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_c01213;src:url('chunks/assets/font_804dc463c89d51a0021a7549.woff2')format("woff");}.ff9_c01213{font-family:ff9_c01213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3c_c01213{transform:matrix(0.089552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089552,0.000000,0.000000,0.250000,0,0);}
.mc_c01213{transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107143,0.000000,0.000000,0.250000,0,0);}
.m37_c01213{transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);}
.m43_c01213{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m46_c01213{transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174383,0.000000,0.000000,0.250000,0,0);}
.m44_c01213{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m6_c01213{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m4_c01213{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11_c01213{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m5_c01213{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m39_c01213{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m26_c01213{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m1d_c01213{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_c01213{transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225664,0.000000,0.000000,0.250000,0,0);}
.m29_c01213{transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);}
.mb_c01213{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m38_c01213{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m2d_c01213{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m2_c01213{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m2b_c01213{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m2e_c01213{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.m19_c01213{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m3e_c01213{transform:matrix(0.240592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240592,0.000000,0.000000,0.250000,0,0);}
.m45_c01213{transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241007,0.000000,0.000000,0.250000,0,0);}
.m34_c01213{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m3f_c01213{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m12_c01213{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m15_c01213{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1f_c01213{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m3a_c01213{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m10_c01213{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m1b_c01213{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.m3b_c01213{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m23_c01213{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m28_c01213{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m21_c01213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01213{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m27_c01213{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m20_c01213{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m22_c01213{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m13_c01213{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m3d_c01213{transform:matrix(0.258552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258552,0.000000,0.000000,0.250000,0,0);}
.m32_c01213{transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259494,0.000000,0.000000,0.250000,0,0);}
.m7_c01213{transform:matrix(0.259921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259921,0.000000,0.000000,0.250000,0,0);}
.m31_c01213{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);}
.m36_c01213{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m35_c01213{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m1c_c01213{transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265957,0.000000,0.000000,0.250000,0,0);}
.m40_c01213{transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);}
.md_c01213{transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267241,0.000000,0.000000,0.250000,0,0);}
.m33_c01213{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m1_c01213{transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269048,0.000000,0.000000,0.250000,0,0);}
.m14_c01213{transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269737,0.000000,0.000000,0.250000,0,0);}
.m16_c01213{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m2a_c01213{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m25_c01213{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m2f_c01213{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m41_c01213{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m1a_c01213{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf_c01213{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m1e_c01213{transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288043,0.000000,0.000000,0.250000,0,0);}
.m17_c01213{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m0_c01213{transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302632,0.000000,0.000000,0.250000,0,0);}
.m24_c01213{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m30_c01213{transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);}
.ma_c01213{transform:matrix(0.413793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413793,0.000000,0.000000,0.250000,0,0);}
.m8_c01213{transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612319,0.000000,0.000000,0.250000,0,0);}
.m9_c01213{transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);}
.me_c01213{transform:matrix(0.843750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.843750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.843750,0.000000,0.000000,0.250000,0,0);}
.m42_c01213{transform:matrix(1.036487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.036487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.036487,0.000000,0.000000,0.250000,0,0);}
.m18_c01213{transform:matrix(3.648438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.648438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.648438,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls45_c01213{letter-spacing:-25.125000px;}
.ls2f_c01213{letter-spacing:-16.907400px;}
.ls3b_c01213{letter-spacing:-13.142400px;}
.ls49_c01213{letter-spacing:-12.017625px;}
.ls31_c01213{letter-spacing:-11.559675px;}
.ls28_c01213{letter-spacing:-9.877530px;}
.ls2a_c01213{letter-spacing:-8.143328px;}
.ls7_c01213{letter-spacing:-7.439355px;}
.ls32_c01213{letter-spacing:-6.942300px;}
.ls39_c01213{letter-spacing:-6.365700px;}
.ls33_c01213{letter-spacing:-6.080063px;}
.ls46_c01213{letter-spacing:-6.001875px;}
.ls20_c01213{letter-spacing:-6.000225px;}
.ls48_c01213{letter-spacing:-5.639985px;}
.lsc_c01213{letter-spacing:-5.226000px;}
.ls1e_c01213{letter-spacing:-5.171888px;}
.lse_c01213{letter-spacing:-5.047245px;}
.ls3c_c01213{letter-spacing:-4.626375px;}
.ls44_c01213{letter-spacing:-4.623750px;}
.ls3d_c01213{letter-spacing:-4.050150px;}
.ls47_c01213{letter-spacing:-3.871238px;}
.ls43_c01213{letter-spacing:-3.854400px;}
.ls1b_c01213{letter-spacing:-3.822390px;}
.ls24_c01213{letter-spacing:-3.706500px;}
.ls38_c01213{letter-spacing:-3.435548px;}
.lsa_c01213{letter-spacing:-3.322200px;}
.ls37_c01213{letter-spacing:-3.096000px;}
.ls35_c01213{letter-spacing:-3.082425px;}
.ls12_c01213{letter-spacing:-3.075307px;}
.ls41_c01213{letter-spacing:-2.998200px;}
.ls34_c01213{letter-spacing:-2.997225px;}
.ls2e_c01213{letter-spacing:-2.997000px;}
.ls27_c01213{letter-spacing:-2.958750px;}
.ls30_c01213{letter-spacing:-2.885625px;}
.ls36_c01213{letter-spacing:-2.802600px;}
.ls26_c01213{letter-spacing:-2.745000px;}
.ls2d_c01213{letter-spacing:-2.737500px;}
.ls3e_c01213{letter-spacing:-2.590800px;}
.ls25_c01213{letter-spacing:-2.315925px;}
.ls40_c01213{letter-spacing:-2.247750px;}
.ls3a_c01213{letter-spacing:-2.136938px;}
.ls8_c01213{letter-spacing:-2.094750px;}
.ls16_c01213{letter-spacing:-2.071125px;}
.ls2b_c01213{letter-spacing:-1.607400px;}
.ls29_c01213{letter-spacing:-1.586250px;}
.ls21_c01213{letter-spacing:-1.543950px;}
.ls22_c01213{letter-spacing:-1.457460px;}
.ls14_c01213{letter-spacing:-1.390800px;}
.ls11_c01213{letter-spacing:-1.312500px;}
.ls17_c01213{letter-spacing:-1.275000px;}
.ls13_c01213{letter-spacing:-0.879750px;}
.ls1f_c01213{letter-spacing:-0.771975px;}
.ls3f_c01213{letter-spacing:-0.770625px;}
.ls23_c01213{letter-spacing:-0.759375px;}
.ls1d_c01213{letter-spacing:-0.652395px;}
.lsf_c01213{letter-spacing:0.000000px;}
.ls2_c01213{letter-spacing:0.771975px;}
.lsd_c01213{letter-spacing:0.891000px;}
.ls1a_c01213{letter-spacing:1.332000px;}
.ls1c_c01213{letter-spacing:1.409648px;}
.ls5_c01213{letter-spacing:1.543950px;}
.ls2c_c01213{letter-spacing:1.581975px;}
.ls9_c01213{letter-spacing:1.588440px;}
.ls42_c01213{letter-spacing:2.284200px;}
.ls15_c01213{letter-spacing:2.315250px;}
.ls0_c01213{letter-spacing:2.315925px;}
.ls6_c01213{letter-spacing:3.082425px;}
.ls19_c01213{letter-spacing:3.121200px;}
.ls18_c01213{letter-spacing:3.647760px;}
.ls4_c01213{letter-spacing:3.854400px;}
.lsb_c01213{letter-spacing:4.425000px;}
.ls1_c01213{letter-spacing:4.626375px;}
.ls3_c01213{letter-spacing:8.481323px;}
.ls10_c01213{letter-spacing:484.749300px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01213{word-spacing:0.000000px;}
._c_c01213{margin-left:-34.930253px;}
._16_c01213{margin-left:-17.816205px;}
._e_c01213{margin-left:-12.141160px;}
._17_c01213{margin-left:-8.799050px;}
._d_c01213{margin-left:-7.172574px;}
._4_c01213{margin-left:-5.874351px;}
._8_c01213{margin-left:-4.659549px;}
._6_c01213{margin-left:-3.015707px;}
._7_c01213{margin-left:-1.035623px;}
._0_c01213{width:1.817484px;}
._2_c01213{width:3.186681px;}
._1_c01213{width:5.096639px;}
._f_c01213{width:6.625028px;}
._14_c01213{width:7.637347px;}
._3_c01213{width:8.968266px;}
._5_c01213{width:11.212584px;}
._13_c01213{width:12.462072px;}
._10_c01213{width:15.071950px;}
._11_c01213{width:17.174936px;}
._b_c01213{width:19.091063px;}
._9_c01213{width:20.974895px;}
._a_c01213{width:23.148624px;}
._15_c01213{width:24.221801px;}
._12_c01213{width:26.236786px;}
.fc0_c01213{color:transparent;}
.fsb_c01213{font-size:17.250000px;}
.fse_c01213{font-size:18.000000px;}
.fsc_c01213{font-size:21.000000px;}
.fsd_c01213{font-size:21.750000px;}
.fs13_c01213{font-size:24.000000px;}
.fs12_c01213{font-size:24.750000px;}
.fs11_c01213{font-size:25.500000px;}
.fsf_c01213{font-size:26.250000px;}
.fs9_c01213{font-size:28.500000px;}
.fs10_c01213{font-size:30.750000px;}
.fs19_c01213{font-size:34.500000px;}
.fs17_c01213{font-size:35.250000px;}
.fs15_c01213{font-size:36.000000px;}
.fs18_c01213{font-size:37.500000px;}
.fs14_c01213{font-size:38.250000px;}
.fs16_c01213{font-size:39.000000px;}
.fsa_c01213{font-size:43.500000px;}
.fs25_c01213{font-size:46.500000px;}
.fs26_c01213{font-size:48.000000px;}
.fs1b_c01213{font-size:48.750000px;}
.fs27_c01213{font-size:49.500000px;}
.fs2a_c01213{font-size:50.178600px;}
.fs28_c01213{font-size:50.250000px;}
.fs2b_c01213{font-size:50.845800px;}
.fs29_c01213{font-size:51.000000px;}
.fs8_c01213{font-size:51.750000px;}
.fs1f_c01213{font-size:52.500000px;}
.fs1d_c01213{font-size:54.000000px;}
.fs1a_c01213{font-size:54.750000px;}
.fs20_c01213{font-size:55.500000px;}
.fs1e_c01213{font-size:56.250000px;}
.fs21_c01213{font-size:57.000000px;}
.fs1c_c01213{font-size:57.750000px;}
.fs22_c01213{font-size:58.500000px;}
.fs24_c01213{font-size:59.250000px;}
.fs23_c01213{font-size:66.000000px;}
.fs1_c01213{font-size:78.750000px;}
.fs6_c01213{font-size:82.500000px;}
.fs2_c01213{font-size:84.000000px;}
.fs3_c01213{font-size:84.750000px;}
.fs0_c01213{font-size:85.500000px;}
.fs4_c01213{font-size:93.750000px;}
.fs7_c01213{font-size:94.500000px;}
.fs5_c01213{font-size:97.500000px;}
.fs2e_c01213{font-size:104.250000px;}
.fs2d_c01213{font-size:121.500000px;}
.fs2c_c01213{font-size:138.750000px;}
.y0_c01213{bottom:0.000000px;}
.y6_c01213{bottom:39.300585px;}
.y4_c01213{bottom:49.020285px;}
.y5_c01213{bottom:53.341185px;}
.y2_c01213{bottom:56.220150px;}
.y3_c01213{bottom:62.340585px;}
.y3a_c01213{bottom:166.380585px;}
.y39_c01213{bottom:196.620435px;}
.y38_c01213{bottom:256.381620px;}
.y37_c01213{bottom:271.860885px;}
.y36_c01213{bottom:271.861695px;}
.y35_c01213{bottom:286.622295px;}
.y34_c01213{bottom:301.741500px;}
.y32_c01213{bottom:316.861290px;}
.y33_c01213{bottom:316.861500px;}
.y31_c01213{bottom:331.620420px;}
.y30_c01213{bottom:346.741080px;}
.y2f_c01213{bottom:361.860285px;}
.y2e_c01213{bottom:361.860450px;}
.y2d_c01213{bottom:376.621035px;}
.y2c_c01213{bottom:391.740870px;}
.y2b_c01213{bottom:391.741695px;}
.y2a_c01213{bottom:406.860900px;}
.y29_c01213{bottom:406.861680px;}
.y28_c01213{bottom:421.622265px;}
.y27_c01213{bottom:436.741470px;}
.y26_c01213{bottom:436.742295px;}
.y25_c01213{bottom:451.861500px;}
.y24_c01213{bottom:466.620570px;}
.y23_c01213{bottom:481.381170px;}
.y22_c01213{bottom:481.381845px;}
.y21_c01213{bottom:496.501050px;}
.y20_c01213{bottom:511.261785px;}
.y1f_c01213{bottom:526.200435px;}
.y1e_c01213{bottom:526.200735px;}
.y1d_c01213{bottom:541.140750px;}
.y1c_c01213{bottom:556.260720px;}
.y1b_c01213{bottom:571.022145px;}
.y1a_c01213{bottom:586.141335px;}
.y19_c01213{bottom:586.141935px;}
.y18_c01213{bottom:600.901065px;}
.y17_c01213{bottom:616.020270px;}
.y16_c01213{bottom:616.020900px;}
.y15_c01213{bottom:631.140105px;}
.y14_c01213{bottom:645.900885px;}
.y13_c01213{bottom:660.661470px;}
.y12_c01213{bottom:675.781500px;}
.y11_c01213{bottom:690.181320px;}
.y10_c01213{bottom:705.301170px;}
.yf_c01213{bottom:706.021320px;}
.ye_c01213{bottom:720.421185px;}
.yd_c01213{bottom:735.541035px;}
.yc_c01213{bottom:735.541170px;}
.yb_c01213{bottom:750.301755px;}
.ya_c01213{bottom:750.302400px;}
.y9_c01213{bottom:765.421605px;}
.y8_c01213{bottom:780.180720px;}
.y7_c01213{bottom:795.661470px;}
.y1_c01213{bottom:844.981290px;}
.hc_c01213{height:16.929932px;}
.hf_c01213{height:18.773438px;}
.hd_c01213{height:20.600098px;}
.he_c01213{height:22.684570px;}
.h15_c01213{height:25.031250px;}
.h13_c01213{height:25.813477px;}
.h12_c01213{height:26.595703px;}
.h10_c01213{height:27.377930px;}
.h14_c01213{height:28.166016px;}
.ha_c01213{height:29.724609px;}
.h11_c01213{height:30.389648px;}
.h19_c01213{height:35.525391px;}
.h1b_c01213{height:35.982422px;}
.h17_c01213{height:36.281250px;}
.h16_c01213{height:37.521606px;}
.h1a_c01213{height:37.792969px;}
.h18_c01213{height:38.542969px;}
.hb_c01213{height:45.369141px;}
.h29_c01213{height:45.955078px;}
.h32_c01213{height:49.247552px;}
.h33_c01213{height:49.902372px;}
.h2b_c01213{height:50.062500px;}
.h1d_c01213{height:50.844727px;}
.h21_c01213{height:51.525879px;}
.h2c_c01213{height:51.626953px;}
.h2e_c01213{height:52.409180px;}
.h1f_c01213{height:52.998047px;}
.h2f_c01213{height:53.191406px;}
.h1c_c01213{height:53.734131px;}
.h9_c01213{height:53.973633px;}
.h30_c01213{height:54.470215px;}
.h2d_c01213{height:54.849609px;}
.h34_c01213{height:55.177734px;}
.h31_c01213{height:55.178833px;}
.h20_c01213{height:55.206299px;}
.h22_c01213{height:55.933594px;}
.h27_c01213{height:55.942383px;}
.h1e_c01213{height:56.678467px;}
.h2a_c01213{height:56.689453px;}
.h24_c01213{height:57.414551px;}
.h23_c01213{height:57.445312px;}
.h26_c01213{height:58.201172px;}
.h28_c01213{height:58.555664px;}
.h25_c01213{height:68.835938px;}
.h2_c01213{height:82.133789px;}
.h7_c01213{height:83.144531px;}
.h3_c01213{height:84.656250px;}
.h4_c01213{height:85.412109px;}
.h1_c01213{height:86.167969px;}
.h5_c01213{height:92.651367px;}
.h8_c01213{height:93.392578px;}
.h6_c01213{height:96.357422px;}
.h37_c01213{height:108.729492px;}
.h36_c01213{height:126.720703px;}
.h35_c01213{height:144.711914px;}
.h0_c01213{height:892.500000px;}
.w0_c01213{width:1263.000000px;}
.x0_c01213{left:0.000000px;}
.x1_c01213{left:84.599100px;}
.x9_c01213{left:89.279250px;}
.xe_c01213{left:155.159415px;}
.x2_c01213{left:174.239250px;}
.x3_c01213{left:215.279850px;}
.xf_c01213{left:231.479235px;}
.xc_c01213{left:235.080000px;}
.xd_c01213{left:258.838515px;}
.x10_c01213{left:308.878350px;}
.x4_c01213{left:310.679700px;}
.x18_c01213{left:331.918350px;}
.x19_c01213{left:359.638530px;}
.x11_c01213{left:386.279250px;}
.x1a_c01213{left:405.000000px;}
.x5_c01213{left:442.439670px;}
.x1b_c01213{left:444.598530px;}
.xa_c01213{left:455.039985px;}
.xb_c01213{left:460.438665px;}
.x12_c01213{left:462.599070px;}
.x6_c01213{left:479.518620px;}
.x1c_c01213{left:487.799565px;}
.x7_c01213{left:515.519670px;}
.x13_c01213{left:540.000000px;}
.x8_c01213{left:582.479235px;}
.x14_c01213{left:619.198785px;}
.x17_c01213{left:659.878320px;}
.x15_c01213{left:696.958920px;}
.x16_c01213{left:774.719055px;}
.x5f_c01213{left:921.239865px;}
.x22_c01213{left:922.678530px;}
.x34_c01213{left:924.479640px;}
.x47_c01213{left:925.559055px;}
.x5c_c01213{left:926.999355px;}
.x60_c01213{left:928.078770px;}
.x61_c01213{left:937.079955px;}
.x23_c01213{left:946.799565px;}
.x62_c01213{left:947.878965px;}
.x4a_c01213{left:955.798920px;}
.x63_c01213{left:957.239220px;}
.x4e_c01213{left:959.399775px;}
.x1d_c01213{left:961.199340px;}
.x35_c01213{left:962.278755px;}
.x40_c01213{left:963.359805px;}
.x39_c01213{left:968.399235px;}
.x1e_c01213{left:980.999355px;}
.x41_c01213{left:983.519070px;}
.x24_c01213{left:984.959385px;}
.x36_c01213{left:989.278755px;}
.x57_c01213{left:996.478635px;}
.x1f_c01213{left:1005.479640px;}
.x42_c01213{left:1007.638545px;}
.x29_c01213{left:1010.878320px;}
.x5d_c01213{left:1013.399775px;}
.x4f_c01213{left:1028.878965px;}
.x2a_c01213{left:1030.319190px;}
.x20_c01213{left:1034.279205px;}
.x58_c01213{left:1035.358605px;}
.x2b_c01213{left:1046.879520px;}
.x21_c01213{left:1048.319820px;}
.x27_c01213{left:1051.559685px;}
.x5e_c01213{left:1054.799565px;}
.x59_c01213{left:1056.599025px;}
.x2d_c01213{left:1072.798560px;}
.x28_c01213{left:1074.238770px;}
.x3c_c01213{left:1075.679070px;}
.x2e_c01213{left:1089.719520px;}
.x37_c01213{left:1094.038875px;}
.x55_c01213{left:1098.359805px;}
.x50_c01213{left:1100.879520px;}
.x25_c01213{left:1103.039985px;}
.x3d_c01213{left:1108.438665px;}
.x48_c01213{left:1115.999355px;}
.x26_c01213{left:1119.598575px;}
.x56_c01213{left:1121.038875px;}
.x5a_c01213{left:1123.199340px;}
.x43_c01213{left:1140.479640px;}
.x51_c01213{left:1147.679625px;}
.x32_c01213{left:1149.479190px;}
.x4c_c01213{left:1151.278755px;}
.x5b_c01213{left:1153.798560px;}
.x44_c01213{left:1155.599670px;}
.x49_c01213{left:1158.478635px;}
.x3e_c01213{left:1159.559685px;}
.x4b_c01213{left:1162.799565px;}
.x33_c01213{left:1171.439670px;}
.x52_c01213{left:1173.598575px;}
.x3a_c01213{left:1175.759040px;}
.x2f_c01213{left:1178.998905px;}
.x3f_c01213{left:1182.238770px;}
.x45_c01213{left:1185.839535px;}
.x30_c01213{left:1188.359250px;}
.x53_c01213{left:1190.519715px;}
.x3b_c01213{left:1193.759490px;}
.x4d_c01213{left:1194.838905px;}
.x2c_c01213{left:1206.359805px;}
.x31_c01213{left:1211.399235px;}
.x38_c01213{left:1213.918950px;}
.x54_c01213{left:1217.519715px;}
.x46_c01213{left:1219.319190px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls45_c01213{letter-spacing:-22.333333pt;}
.ls2f_c01213{letter-spacing:-15.028800pt;}
.ls3b_c01213{letter-spacing:-11.682133pt;}
.ls49_c01213{letter-spacing:-10.682333pt;}
.ls31_c01213{letter-spacing:-10.275267pt;}
.ls28_c01213{letter-spacing:-8.780027pt;}
.ls2a_c01213{letter-spacing:-7.238513pt;}
.ls7_c01213{letter-spacing:-6.612760pt;}
.ls32_c01213{letter-spacing:-6.170933pt;}
.ls39_c01213{letter-spacing:-5.658400pt;}
.ls33_c01213{letter-spacing:-5.404500pt;}
.ls46_c01213{letter-spacing:-5.335000pt;}
.ls20_c01213{letter-spacing:-5.333533pt;}
.ls48_c01213{letter-spacing:-5.013320pt;}
.lsc_c01213{letter-spacing:-4.645333pt;}
.ls1e_c01213{letter-spacing:-4.597233pt;}
.lse_c01213{letter-spacing:-4.486440pt;}
.ls3c_c01213{letter-spacing:-4.112333pt;}
.ls44_c01213{letter-spacing:-4.110000pt;}
.ls3d_c01213{letter-spacing:-3.600133pt;}
.ls47_c01213{letter-spacing:-3.441100pt;}
.ls43_c01213{letter-spacing:-3.426133pt;}
.ls1b_c01213{letter-spacing:-3.397680pt;}
.ls24_c01213{letter-spacing:-3.294667pt;}
.ls38_c01213{letter-spacing:-3.053820pt;}
.lsa_c01213{letter-spacing:-2.953067pt;}
.ls37_c01213{letter-spacing:-2.752000pt;}
.ls35_c01213{letter-spacing:-2.739933pt;}
.ls12_c01213{letter-spacing:-2.733607pt;}
.ls41_c01213{letter-spacing:-2.665067pt;}
.ls34_c01213{letter-spacing:-2.664200pt;}
.ls2e_c01213{letter-spacing:-2.664000pt;}
.ls27_c01213{letter-spacing:-2.630000pt;}
.ls30_c01213{letter-spacing:-2.565000pt;}
.ls36_c01213{letter-spacing:-2.491200pt;}
.ls26_c01213{letter-spacing:-2.440000pt;}
.ls2d_c01213{letter-spacing:-2.433333pt;}
.ls3e_c01213{letter-spacing:-2.302933pt;}
.ls25_c01213{letter-spacing:-2.058600pt;}
.ls40_c01213{letter-spacing:-1.998000pt;}
.ls3a_c01213{letter-spacing:-1.899500pt;}
.ls8_c01213{letter-spacing:-1.862000pt;}
.ls16_c01213{letter-spacing:-1.841000pt;}
.ls2b_c01213{letter-spacing:-1.428800pt;}
.ls29_c01213{letter-spacing:-1.410000pt;}
.ls21_c01213{letter-spacing:-1.372400pt;}
.ls22_c01213{letter-spacing:-1.295520pt;}
.ls14_c01213{letter-spacing:-1.236267pt;}
.ls11_c01213{letter-spacing:-1.166667pt;}
.ls17_c01213{letter-spacing:-1.133333pt;}
.ls13_c01213{letter-spacing:-0.782000pt;}
.ls1f_c01213{letter-spacing:-0.686200pt;}
.ls3f_c01213{letter-spacing:-0.685000pt;}
.ls23_c01213{letter-spacing:-0.675000pt;}
.ls1d_c01213{letter-spacing:-0.579907pt;}
.lsf_c01213{letter-spacing:0.000000pt;}
.ls2_c01213{letter-spacing:0.686200pt;}
.lsd_c01213{letter-spacing:0.792000pt;}
.ls1a_c01213{letter-spacing:1.184000pt;}
.ls1c_c01213{letter-spacing:1.253020pt;}
.ls5_c01213{letter-spacing:1.372400pt;}
.ls2c_c01213{letter-spacing:1.406200pt;}
.ls9_c01213{letter-spacing:1.411947pt;}
.ls42_c01213{letter-spacing:2.030400pt;}
.ls15_c01213{letter-spacing:2.058000pt;}
.ls0_c01213{letter-spacing:2.058600pt;}
.ls6_c01213{letter-spacing:2.739933pt;}
.ls19_c01213{letter-spacing:2.774400pt;}
.ls18_c01213{letter-spacing:3.242453pt;}
.ls4_c01213{letter-spacing:3.426133pt;}
.lsb_c01213{letter-spacing:3.933333pt;}
.ls1_c01213{letter-spacing:4.112333pt;}
.ls3_c01213{letter-spacing:7.538953pt;}
.ls10_c01213{letter-spacing:430.888267pt;}
.ws0_c01213{word-spacing:0.000000pt;}
._c_c01213{margin-left:-31.049114pt;}
._16_c01213{margin-left:-15.836627pt;}
._e_c01213{margin-left:-10.792142pt;}
._17_c01213{margin-left:-7.821378pt;}
._d_c01213{margin-left:-6.375621pt;}
._4_c01213{margin-left:-5.221645pt;}
._8_c01213{margin-left:-4.141821pt;}
._6_c01213{margin-left:-2.680629pt;}
._7_c01213{margin-left:-0.920554pt;}
._0_c01213{width:1.615541pt;}
._2_c01213{width:2.832606pt;}
._1_c01213{width:4.530346pt;}
._f_c01213{width:5.888913pt;}
._14_c01213{width:6.788753pt;}
._3_c01213{width:7.971792pt;}
._5_c01213{width:9.966741pt;}
._13_c01213{width:11.077397pt;}
._10_c01213{width:13.397289pt;}
._11_c01213{width:15.266610pt;}
._b_c01213{width:16.969834pt;}
._9_c01213{width:18.644351pt;}
._a_c01213{width:20.576555pt;}
._15_c01213{width:21.530490pt;}
._12_c01213{width:23.321588pt;}
.fsb_c01213{font-size:15.333333pt;}
.fse_c01213{font-size:16.000000pt;}
.fsc_c01213{font-size:18.666667pt;}
.fsd_c01213{font-size:19.333333pt;}
.fs13_c01213{font-size:21.333333pt;}
.fs12_c01213{font-size:22.000000pt;}
.fs11_c01213{font-size:22.666667pt;}
.fsf_c01213{font-size:23.333333pt;}
.fs9_c01213{font-size:25.333333pt;}
.fs10_c01213{font-size:27.333333pt;}
.fs19_c01213{font-size:30.666667pt;}
.fs17_c01213{font-size:31.333333pt;}
.fs15_c01213{font-size:32.000000pt;}
.fs18_c01213{font-size:33.333333pt;}
.fs14_c01213{font-size:34.000000pt;}
.fs16_c01213{font-size:34.666667pt;}
.fsa_c01213{font-size:38.666667pt;}
.fs25_c01213{font-size:41.333333pt;}
.fs26_c01213{font-size:42.666667pt;}
.fs1b_c01213{font-size:43.333333pt;}
.fs27_c01213{font-size:44.000000pt;}
.fs2a_c01213{font-size:44.603200pt;}
.fs28_c01213{font-size:44.666667pt;}
.fs2b_c01213{font-size:45.196267pt;}
.fs29_c01213{font-size:45.333333pt;}
.fs8_c01213{font-size:46.000000pt;}
.fs1f_c01213{font-size:46.666667pt;}
.fs1d_c01213{font-size:48.000000pt;}
.fs1a_c01213{font-size:48.666667pt;}
.fs20_c01213{font-size:49.333333pt;}
.fs1e_c01213{font-size:50.000000pt;}
.fs21_c01213{font-size:50.666667pt;}
.fs1c_c01213{font-size:51.333333pt;}
.fs22_c01213{font-size:52.000000pt;}
.fs24_c01213{font-size:52.666667pt;}
.fs23_c01213{font-size:58.666667pt;}
.fs1_c01213{font-size:70.000000pt;}
.fs6_c01213{font-size:73.333333pt;}
.fs2_c01213{font-size:74.666667pt;}
.fs3_c01213{font-size:75.333333pt;}
.fs0_c01213{font-size:76.000000pt;}
.fs4_c01213{font-size:83.333333pt;}
.fs7_c01213{font-size:84.000000pt;}
.fs5_c01213{font-size:86.666667pt;}
.fs2e_c01213{font-size:92.666667pt;}
.fs2d_c01213{font-size:108.000000pt;}
.fs2c_c01213{font-size:123.333333pt;}
.y0_c01213{bottom:0.000000pt;}
.y6_c01213{bottom:34.933853pt;}
.y4_c01213{bottom:43.573587pt;}
.y5_c01213{bottom:47.414387pt;}
.y2_c01213{bottom:49.973467pt;}
.y3_c01213{bottom:55.413853pt;}
.y3a_c01213{bottom:147.893853pt;}
.y39_c01213{bottom:174.773720pt;}
.y38_c01213{bottom:227.894773pt;}
.y37_c01213{bottom:241.654120pt;}
.y36_c01213{bottom:241.654840pt;}
.y35_c01213{bottom:254.775373pt;}
.y34_c01213{bottom:268.214667pt;}
.y32_c01213{bottom:281.654480pt;}
.y33_c01213{bottom:281.654667pt;}
.y31_c01213{bottom:294.773707pt;}
.y30_c01213{bottom:308.214293pt;}
.y2f_c01213{bottom:321.653587pt;}
.y2e_c01213{bottom:321.653733pt;}
.y2d_c01213{bottom:334.774253pt;}
.y2c_c01213{bottom:348.214107pt;}
.y2b_c01213{bottom:348.214840pt;}
.y2a_c01213{bottom:361.654133pt;}
.y29_c01213{bottom:361.654827pt;}
.y28_c01213{bottom:374.775347pt;}
.y27_c01213{bottom:388.214640pt;}
.y26_c01213{bottom:388.215373pt;}
.y25_c01213{bottom:401.654667pt;}
.y24_c01213{bottom:414.773840pt;}
.y23_c01213{bottom:427.894373pt;}
.y22_c01213{bottom:427.894973pt;}
.y21_c01213{bottom:441.334267pt;}
.y20_c01213{bottom:454.454920pt;}
.y1f_c01213{bottom:467.733720pt;}
.y1e_c01213{bottom:467.733987pt;}
.y1d_c01213{bottom:481.014000pt;}
.y1c_c01213{bottom:494.453973pt;}
.y1b_c01213{bottom:507.575240pt;}
.y1a_c01213{bottom:521.014520pt;}
.y19_c01213{bottom:521.015053pt;}
.y18_c01213{bottom:534.134280pt;}
.y17_c01213{bottom:547.573573pt;}
.y16_c01213{bottom:547.574133pt;}
.y15_c01213{bottom:561.013427pt;}
.y14_c01213{bottom:574.134120pt;}
.y13_c01213{bottom:587.254640pt;}
.y12_c01213{bottom:600.694667pt;}
.y11_c01213{bottom:613.494507pt;}
.y10_c01213{bottom:626.934373pt;}
.yf_c01213{bottom:627.574507pt;}
.ye_c01213{bottom:640.374387pt;}
.yd_c01213{bottom:653.814253pt;}
.yc_c01213{bottom:653.814373pt;}
.yb_c01213{bottom:666.934893pt;}
.ya_c01213{bottom:666.935467pt;}
.y9_c01213{bottom:680.374760pt;}
.y8_c01213{bottom:693.493973pt;}
.y7_c01213{bottom:707.254640pt;}
.y1_c01213{bottom:751.094480pt;}
.hc_c01213{height:15.048828pt;}
.hf_c01213{height:16.687500pt;}
.hd_c01213{height:18.311198pt;}
.he_c01213{height:20.164062pt;}
.h15_c01213{height:22.250000pt;}
.h13_c01213{height:22.945312pt;}
.h12_c01213{height:23.640625pt;}
.h10_c01213{height:24.335938pt;}
.h14_c01213{height:25.036458pt;}
.ha_c01213{height:26.421875pt;}
.h11_c01213{height:27.013021pt;}
.h19_c01213{height:31.578125pt;}
.h1b_c01213{height:31.984375pt;}
.h17_c01213{height:32.250000pt;}
.h16_c01213{height:33.352539pt;}
.h1a_c01213{height:33.593750pt;}
.h18_c01213{height:34.260417pt;}
.hb_c01213{height:40.328125pt;}
.h29_c01213{height:40.848958pt;}
.h32_c01213{height:43.775602pt;}
.h33_c01213{height:44.357664pt;}
.h2b_c01213{height:44.500000pt;}
.h1d_c01213{height:45.195312pt;}
.h21_c01213{height:45.800781pt;}
.h2c_c01213{height:45.890625pt;}
.h2e_c01213{height:46.585938pt;}
.h1f_c01213{height:47.109375pt;}
.h2f_c01213{height:47.281250pt;}
.h1c_c01213{height:47.763672pt;}
.h9_c01213{height:47.976562pt;}
.h30_c01213{height:48.417969pt;}
.h2d_c01213{height:48.755208pt;}
.h34_c01213{height:49.046875pt;}
.h31_c01213{height:49.047852pt;}
.h20_c01213{height:49.072266pt;}
.h22_c01213{height:49.718750pt;}
.h27_c01213{height:49.726562pt;}
.h1e_c01213{height:50.380859pt;}
.h2a_c01213{height:50.390625pt;}
.h24_c01213{height:51.035156pt;}
.h23_c01213{height:51.062500pt;}
.h26_c01213{height:51.734375pt;}
.h28_c01213{height:52.049479pt;}
.h25_c01213{height:61.187500pt;}
.h2_c01213{height:73.007812pt;}
.h7_c01213{height:73.906250pt;}
.h3_c01213{height:75.250000pt;}
.h4_c01213{height:75.921875pt;}
.h1_c01213{height:76.593750pt;}
.h5_c01213{height:82.356771pt;}
.h8_c01213{height:83.015625pt;}
.h6_c01213{height:85.651042pt;}
.h37_c01213{height:96.648438pt;}
.h36_c01213{height:112.640625pt;}
.h35_c01213{height:128.632812pt;}
.h0_c01213{height:793.333333pt;}
.w0_c01213{width:1122.666667pt;}
.x0_c01213{left:0.000000pt;}
.x1_c01213{left:75.199200pt;}
.x9_c01213{left:79.359333pt;}
.xe_c01213{left:137.919480pt;}
.x2_c01213{left:154.879333pt;}
.x3_c01213{left:191.359867pt;}
.xf_c01213{left:205.759320pt;}
.xc_c01213{left:208.960000pt;}
.xd_c01213{left:230.078680pt;}
.x10_c01213{left:274.558533pt;}
.x4_c01213{left:276.159733pt;}
.x18_c01213{left:295.038533pt;}
.x19_c01213{left:319.678693pt;}
.x11_c01213{left:343.359333pt;}
.x1a_c01213{left:360.000000pt;}
.x5_c01213{left:393.279707pt;}
.x1b_c01213{left:395.198693pt;}
.xa_c01213{left:404.479987pt;}
.xb_c01213{left:409.278813pt;}
.x12_c01213{left:411.199173pt;}
.x6_c01213{left:426.238773pt;}
.x1c_c01213{left:433.599613pt;}
.x7_c01213{left:458.239707pt;}
.x13_c01213{left:480.000000pt;}
.x8_c01213{left:517.759320pt;}
.x14_c01213{left:550.398920pt;}
.x17_c01213{left:586.558507pt;}
.x15_c01213{left:619.519040pt;}
.x16_c01213{left:688.639160pt;}
.x5f_c01213{left:818.879880pt;}
.x22_c01213{left:820.158693pt;}
.x34_c01213{left:821.759680pt;}
.x47_c01213{left:822.719160pt;}
.x5c_c01213{left:823.999427pt;}
.x60_c01213{left:824.958907pt;}
.x61_c01213{left:832.959960pt;}
.x23_c01213{left:841.599613pt;}
.x62_c01213{left:842.559080pt;}
.x4a_c01213{left:849.599040pt;}
.x63_c01213{left:850.879307pt;}
.x4e_c01213{left:852.799800pt;}
.x1d_c01213{left:854.399413pt;}
.x35_c01213{left:855.358893pt;}
.x40_c01213{left:856.319827pt;}
.x39_c01213{left:860.799320pt;}
.x1e_c01213{left:871.999427pt;}
.x41_c01213{left:874.239173pt;}
.x24_c01213{left:875.519453pt;}
.x36_c01213{left:879.358893pt;}
.x57_c01213{left:885.758787pt;}
.x1f_c01213{left:893.759680pt;}
.x42_c01213{left:895.678707pt;}
.x29_c01213{left:898.558507pt;}
.x5d_c01213{left:900.799800pt;}
.x4f_c01213{left:914.559080pt;}
.x2a_c01213{left:915.839280pt;}
.x20_c01213{left:919.359293pt;}
.x58_c01213{left:920.318760pt;}
.x2b_c01213{left:930.559573pt;}
.x21_c01213{left:931.839840pt;}
.x27_c01213{left:934.719720pt;}
.x5e_c01213{left:937.599613pt;}
.x59_c01213{left:939.199133pt;}
.x2d_c01213{left:953.598720pt;}
.x28_c01213{left:954.878907pt;}
.x3c_c01213{left:956.159173pt;}
.x2e_c01213{left:968.639573pt;}
.x37_c01213{left:972.479000pt;}
.x55_c01213{left:976.319827pt;}
.x50_c01213{left:978.559573pt;}
.x25_c01213{left:980.479987pt;}
.x3d_c01213{left:985.278813pt;}
.x48_c01213{left:991.999427pt;}
.x26_c01213{left:995.198733pt;}
.x56_c01213{left:996.479000pt;}
.x5a_c01213{left:998.399413pt;}
.x43_c01213{left:1013.759680pt;}
.x51_c01213{left:1020.159667pt;}
.x32_c01213{left:1021.759280pt;}
.x4c_c01213{left:1023.358893pt;}
.x5b_c01213{left:1025.598720pt;}
.x44_c01213{left:1027.199707pt;}
.x49_c01213{left:1029.758787pt;}
.x3e_c01213{left:1030.719720pt;}
.x4b_c01213{left:1033.599613pt;}
.x33_c01213{left:1041.279707pt;}
.x52_c01213{left:1043.198733pt;}
.x3a_c01213{left:1045.119147pt;}
.x2f_c01213{left:1047.999027pt;}
.x3f_c01213{left:1050.878907pt;}
.x45_c01213{left:1054.079587pt;}
.x30_c01213{left:1056.319333pt;}
.x53_c01213{left:1058.239747pt;}
.x3b_c01213{left:1061.119547pt;}
.x4d_c01213{left:1062.079027pt;}
.x2c_c01213{left:1072.319827pt;}
.x31_c01213{left:1076.799320pt;}
.x38_c01213{left:1079.039067pt;}
.x54_c01213{left:1082.239747pt;}
.x46_c01213{left:1083.839280pt;}
}





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

.ir_c01214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_0d6f355c54586b6c85848e43.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01214;src:url('chunks/assets/font_613cddbade30c99e35dd10e8.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01214;src:url('chunks/assets/font_ece61d3194f1ac8c022bd162.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01214;src:url('chunks/assets/font_4d6e36a4ae6b5181413a5c1c.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01214;src:url('chunks/assets/font_a3facc1d0fe3a776e30f5dc9.woff2')format("woff");}.ff5_c01214{font-family:ff5_c01214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01214;src:url('chunks/assets/font_44c09fe8c8f65ae193104352.woff2')format("woff");}.ff6_c01214{font-family:ff6_c01214;line-height:1.432129;font-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_c01214{transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);}
.m1d_c01214{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.ma_c01214{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m5_c01214{transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199115,0.000000,0.000000,0.250000,0,0);}
.m1a_c01214{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m3_c01214{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m2_c01214{transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209459,0.000000,0.000000,0.250000,0,0);}
.m1e_c01214{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m6_c01214{transform:matrix(0.213964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213964,0.000000,0.000000,0.250000,0,0);}
.m19_c01214{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.mc_c01214{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);}
.md_c01214{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.mb_c01214{transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);}
.m7_c01214{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_c01214{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m4_c01214{transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239669,0.000000,0.000000,0.250000,0,0);}
.m11_c01214{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m9_c01214{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_c01214{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m14_c01214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01214{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m15_c01214{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m1b_c01214{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m12_c01214{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m1c_c01214{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m18_c01214{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.mf_c01214{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m13_c01214{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m1_c01214{transform:matrix(0.279817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279817,0.000000,0.000000,0.250000,0,0);}
.m0_c01214{transform:matrix(0.291304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291304,0.000000,0.000000,0.250000,0,0);}
.m16_c01214{transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);}
.me_c01214{transform:matrix(0.343407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343407,0.000000,0.000000,0.250000,0,0);}
.v0_c01214{vertical-align:0.000000px;}
.v1_c01214{vertical-align:2.879700px;}
.ls27_c01214{letter-spacing:-11.447775px;}
.ls16_c01214{letter-spacing:-9.253298px;}
.ls26_c01214{letter-spacing:-6.942300px;}
.ls18_c01214{letter-spacing:-6.292800px;}
.ls12_c01214{letter-spacing:-5.398350px;}
.ls20_c01214{letter-spacing:-5.178600px;}
.ls1e_c01214{letter-spacing:-4.106250px;}
.ls1f_c01214{letter-spacing:-3.751800px;}
.ls25_c01214{letter-spacing:-3.749933px;}
.ls23_c01214{letter-spacing:-3.701850px;}
.lsc_c01214{letter-spacing:-3.504825px;}
.ls1c_c01214{letter-spacing:-3.082425px;}
.ls21_c01214{letter-spacing:-2.385600px;}
.ls13_c01214{letter-spacing:-2.315925px;}
.ls24_c01214{letter-spacing:-2.166203px;}
.ls1d_c01214{letter-spacing:-2.164500px;}
.lse_c01214{letter-spacing:-1.631813px;}
.ls11_c01214{letter-spacing:-1.543950px;}
.ls19_c01214{letter-spacing:-1.477703px;}
.ls22_c01214{letter-spacing:-1.423500px;}
.ls29_c01214{letter-spacing:-1.014818px;}
.lsd_c01214{letter-spacing:-0.907500px;}
.ls8_c01214{letter-spacing:-0.899100px;}
.ls15_c01214{letter-spacing:-0.855000px;}
.ls14_c01214{letter-spacing:-0.824850px;}
.ls1a_c01214{letter-spacing:-0.782925px;}
.lsa_c01214{letter-spacing:-0.781358px;}
.ls10_c01214{letter-spacing:-0.771975px;}
.lsf_c01214{letter-spacing:0.000000px;}
.ls3_c01214{letter-spacing:0.771975px;}
.ls9_c01214{letter-spacing:0.907500px;}
.ls7_c01214{letter-spacing:1.340700px;}
.ls2_c01214{letter-spacing:1.543950px;}
.ls17_c01214{letter-spacing:1.663740px;}
.ls1_c01214{letter-spacing:2.315925px;}
.lsb_c01214{letter-spacing:2.821328px;}
.ls28_c01214{letter-spacing:2.908125px;}
.ls4_c01214{letter-spacing:3.854400px;}
.ls1b_c01214{letter-spacing:5.398350px;}
.ls0_c01214{letter-spacing:7.252575px;}
.ls6_c01214{letter-spacing:7.728000px;}
.ls5_c01214{letter-spacing:17.733525px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01214{word-spacing:0.000000px;}
._10_c01214{margin-left:-27.988570px;}
._16_c01214{margin-left:-23.170277px;}
._e_c01214{margin-left:-18.177031px;}
._13_c01214{margin-left:-8.245982px;}
._6_c01214{margin-left:-6.060933px;}
._7_c01214{margin-left:-4.018511px;}
._17_c01214{margin-left:-2.463071px;}
._2_c01214{margin-left:-1.248531px;}
._c_c01214{width:1.576492px;}
._1_c01214{width:2.896414px;}
._4_c01214{width:4.171580px;}
._3_c01214{width:6.361796px;}
._12_c01214{width:7.678217px;}
._f_c01214{width:9.110662px;}
._5_c01214{width:11.124876px;}
._d_c01214{width:15.526900px;}
._9_c01214{width:16.906584px;}
._b_c01214{width:18.500241px;}
._15_c01214{width:19.712208px;}
._a_c01214{width:21.993152px;}
._0_c01214{width:24.054942px;}
._8_c01214{width:30.068607px;}
._14_c01214{width:31.420948px;}
._11_c01214{width:89.413150px;}
.fc0_c01214{color:transparent;}
.fsb_c01214{font-size:51.750000px;}
.fsd_c01214{font-size:53.250000px;}
.fs9_c01214{font-size:54.000000px;}
.fs7_c01214{font-size:54.750000px;}
.fsc_c01214{font-size:55.500000px;}
.fs6_c01214{font-size:56.250000px;}
.fsf_c01214{font-size:57.750000px;}
.fs8_c01214{font-size:58.500000px;}
.fs10_c01214{font-size:59.250000px;}
.fse_c01214{font-size:60.750000px;}
.fs11_c01214{font-size:62.250000px;}
.fsa_c01214{font-size:68.250000px;}
.fs1_c01214{font-size:81.750000px;}
.fs3_c01214{font-size:82.500000px;}
.fs2_c01214{font-size:83.250000px;}
.fs5_c01214{font-size:84.750000px;}
.fs0_c01214{font-size:86.250000px;}
.fs4_c01214{font-size:90.750000px;}
.y0_c01214{bottom:0.000000px;}
.y1a_c01214{bottom:549.421605px;}
.y1b_c01214{bottom:549.421650px;}
.y19_c01214{bottom:564.180720px;}
.y18_c01214{bottom:564.181365px;}
.y17_c01214{bottom:579.300570px;}
.y16_c01214{bottom:579.301530px;}
.y15_c01214{bottom:594.062115px;}
.y13_c01214{bottom:609.181140px;}
.y14_c01214{bottom:609.181320px;}
.y11_c01214{bottom:623.940030px;}
.y12_c01214{bottom:623.940255px;}
.y10_c01214{bottom:639.061935px;}
.yf_c01214{bottom:639.063120px;}
.ye_c01214{bottom:653.462400px;}
.yd_c01214{bottom:668.581605px;}
.yc_c01214{bottom:684.060750px;}
.yb_c01214{bottom:698.821470px;}
.ya_c01214{bottom:713.580825px;}
.y8_c01214{bottom:729.061290px;}
.y9_c01214{bottom:729.061335px;}
.y7_c01214{bottom:743.820420px;}
.y6_c01214{bottom:743.821200px;}
.y5_c01214{bottom:758.581785px;}
.y4_c01214{bottom:773.700990px;}
.y3_c01214{bottom:773.701635px;}
.y2_c01214{bottom:788.820825px;}
.y1_c01214{bottom:842.100675px;}
.hc_c01214{height:52.998047px;}
.h8_c01214{height:53.734131px;}
.he_c01214{height:53.973633px;}
.h10_c01214{height:54.470215px;}
.hf_c01214{height:55.177734px;}
.h9_c01214{height:55.206299px;}
.h13_c01214{height:55.538086px;}
.h11_c01214{height:55.933594px;}
.h12_c01214{height:56.320312px;}
.hb_c01214{height:56.613831px;}
.h16_c01214{height:56.678467px;}
.h7_c01214{height:56.689453px;}
.ha_c01214{height:57.414551px;}
.h15_c01214{height:57.884766px;}
.h17_c01214{height:58.150635px;}
.h19_c01214{height:58.666992px;}
.h14_c01214{height:59.622803px;}
.h18_c01214{height:61.520508px;}
.hd_c01214{height:71.182617px;}
.h2_c01214{height:82.388672px;}
.h4_c01214{height:83.144531px;}
.h3_c01214{height:83.900391px;}
.h6_c01214{height:85.412109px;}
.h1_c01214{height:86.923828px;}
.h5_c01214{height:89.686523px;}
.h0_c01214{height:892.500000px;}
.w0_c01214{width:1263.000000px;}
.x0_c01214{left:0.000000px;}
.x1_c01214{left:81.359250px;}
.x2_c01214{left:168.838950px;}
.x3_c01214{left:210.238785px;}
.x4_c01214{left:330.118785px;}
.x5_c01214{left:415.078815px;}
.x6_c01214{left:516.599070px;}
.x7_c01214{left:553.318770px;}
.x8_c01214{left:663.119985px;}
.xb_c01214{left:923.758710px;}
.x14_c01214{left:924.838905px;}
.x1f_c01214{left:925.918470px;}
.x15_c01214{left:949.319190px;}
.x27_c01214{left:956.519070px;}
.x9_c01214{left:962.639655px;}
.xe_c01214{left:967.679070px;}
.xf_c01214{left:975.599115px;}
.xa_c01214{left:987.479190px;}
.x28_c01214{left:993.599670px;}
.x20_c01214{left:1015.919490px;}
.x16_c01214{left:1026.359250px;}
.x29_c01214{left:1037.878320px;}
.x2a_c01214{left:1046.518620px;}
.x21_c01214{left:1047.599670px;}
.x22_c01214{left:1059.479640px;}
.x10_c01214{left:1064.159820px;}
.x1b_c01214{left:1068.479190px;}
.x23_c01214{left:1069.558590px;}
.x1c_c01214{left:1081.799565px;}
.x2b_c01214{left:1083.239865px;}
.x11_c01214{left:1086.479640px;}
.x2d_c01214{left:1097.278755px;}
.x24_c01214{left:1098.719055px;}
.x12_c01214{left:1100.879520px;}
.x25_c01214{left:1108.799565px;}
.x18_c01214{left:1113.838905px;}
.x2e_c01214{left:1125.359805px;}
.x26_c01214{left:1134.000000px;}
.x2f_c01214{left:1137.599025px;}
.x13_c01214{left:1142.999355px;}
.x2c_c01214{left:1150.558590px;}
.x1d_c01214{left:1166.039340px;}
.x30_c01214{left:1168.199805px;}
.x31_c01214{left:1176.479190px;}
.x17_c01214{left:1177.919490px;}
.x1e_c01214{left:1181.518620px;}
.xc_c01214{left:1182.599670px;}
.x19_c01214{left:1186.918950px;}
.x1a_c01214{left:1194.838905px;}
.xd_c01214{left:1212.119385px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.v1_c01214{vertical-align:2.559733pt;}
.ls27_c01214{letter-spacing:-10.175800pt;}
.ls16_c01214{letter-spacing:-8.225153pt;}
.ls26_c01214{letter-spacing:-6.170933pt;}
.ls18_c01214{letter-spacing:-5.593600pt;}
.ls12_c01214{letter-spacing:-4.798533pt;}
.ls20_c01214{letter-spacing:-4.603200pt;}
.ls1e_c01214{letter-spacing:-3.650000pt;}
.ls1f_c01214{letter-spacing:-3.334933pt;}
.ls25_c01214{letter-spacing:-3.333273pt;}
.ls23_c01214{letter-spacing:-3.290533pt;}
.lsc_c01214{letter-spacing:-3.115400pt;}
.ls1c_c01214{letter-spacing:-2.739933pt;}
.ls21_c01214{letter-spacing:-2.120533pt;}
.ls13_c01214{letter-spacing:-2.058600pt;}
.ls24_c01214{letter-spacing:-1.925513pt;}
.ls1d_c01214{letter-spacing:-1.924000pt;}
.lse_c01214{letter-spacing:-1.450500pt;}
.ls11_c01214{letter-spacing:-1.372400pt;}
.ls19_c01214{letter-spacing:-1.313513pt;}
.ls22_c01214{letter-spacing:-1.265333pt;}
.ls29_c01214{letter-spacing:-0.902060pt;}
.lsd_c01214{letter-spacing:-0.806667pt;}
.ls8_c01214{letter-spacing:-0.799200pt;}
.ls15_c01214{letter-spacing:-0.760000pt;}
.ls14_c01214{letter-spacing:-0.733200pt;}
.ls1a_c01214{letter-spacing:-0.695933pt;}
.lsa_c01214{letter-spacing:-0.694540pt;}
.ls10_c01214{letter-spacing:-0.686200pt;}
.lsf_c01214{letter-spacing:0.000000pt;}
.ls3_c01214{letter-spacing:0.686200pt;}
.ls9_c01214{letter-spacing:0.806667pt;}
.ls7_c01214{letter-spacing:1.191733pt;}
.ls2_c01214{letter-spacing:1.372400pt;}
.ls17_c01214{letter-spacing:1.478880pt;}
.ls1_c01214{letter-spacing:2.058600pt;}
.lsb_c01214{letter-spacing:2.507847pt;}
.ls28_c01214{letter-spacing:2.585000pt;}
.ls4_c01214{letter-spacing:3.426133pt;}
.ls1b_c01214{letter-spacing:4.798533pt;}
.ls0_c01214{letter-spacing:6.446733pt;}
.ls6_c01214{letter-spacing:6.869333pt;}
.ls5_c01214{letter-spacing:15.763133pt;}
.ws0_c01214{word-spacing:0.000000pt;}
._10_c01214{margin-left:-24.878729pt;}
._16_c01214{margin-left:-20.595802pt;}
._e_c01214{margin-left:-16.157361pt;}
._13_c01214{margin-left:-7.329762pt;}
._6_c01214{margin-left:-5.387496pt;}
._7_c01214{margin-left:-3.572010pt;}
._17_c01214{margin-left:-2.189397pt;}
._2_c01214{margin-left:-1.109806pt;}
._c_c01214{width:1.401326pt;}
._1_c01214{width:2.574590pt;}
._4_c01214{width:3.708071pt;}
._3_c01214{width:5.654930pt;}
._12_c01214{width:6.825082pt;}
._f_c01214{width:8.098366pt;}
._5_c01214{width:9.888779pt;}
._d_c01214{width:13.801688pt;}
._9_c01214{width:15.028075pt;}
._b_c01214{width:16.444659pt;}
._15_c01214{width:17.521963pt;}
._a_c01214{width:19.549469pt;}
._0_c01214{width:21.382171pt;}
._8_c01214{width:26.727651pt;}
._14_c01214{width:27.929731pt;}
._11_c01214{width:79.478356pt;}
.fsb_c01214{font-size:46.000000pt;}
.fsd_c01214{font-size:47.333333pt;}
.fs9_c01214{font-size:48.000000pt;}
.fs7_c01214{font-size:48.666667pt;}
.fsc_c01214{font-size:49.333333pt;}
.fs6_c01214{font-size:50.000000pt;}
.fsf_c01214{font-size:51.333333pt;}
.fs8_c01214{font-size:52.000000pt;}
.fs10_c01214{font-size:52.666667pt;}
.fse_c01214{font-size:54.000000pt;}
.fs11_c01214{font-size:55.333333pt;}
.fsa_c01214{font-size:60.666667pt;}
.fs1_c01214{font-size:72.666667pt;}
.fs3_c01214{font-size:73.333333pt;}
.fs2_c01214{font-size:74.000000pt;}
.fs5_c01214{font-size:75.333333pt;}
.fs0_c01214{font-size:76.666667pt;}
.fs4_c01214{font-size:80.666667pt;}
.y0_c01214{bottom:0.000000pt;}
.y1a_c01214{bottom:488.374760pt;}
.y1b_c01214{bottom:488.374800pt;}
.y19_c01214{bottom:501.493973pt;}
.y18_c01214{bottom:501.494547pt;}
.y17_c01214{bottom:514.933840pt;}
.y16_c01214{bottom:514.934693pt;}
.y15_c01214{bottom:528.055213pt;}
.y13_c01214{bottom:541.494347pt;}
.y14_c01214{bottom:541.494507pt;}
.y11_c01214{bottom:554.613360pt;}
.y12_c01214{bottom:554.613560pt;}
.y10_c01214{bottom:568.055053pt;}
.yf_c01214{bottom:568.056107pt;}
.ye_c01214{bottom:580.855467pt;}
.yd_c01214{bottom:594.294760pt;}
.yc_c01214{bottom:608.054000pt;}
.yb_c01214{bottom:621.174640pt;}
.ya_c01214{bottom:634.294067pt;}
.y8_c01214{bottom:648.054480pt;}
.y9_c01214{bottom:648.054520pt;}
.y7_c01214{bottom:661.173707pt;}
.y6_c01214{bottom:661.174400pt;}
.y5_c01214{bottom:674.294920pt;}
.y4_c01214{bottom:687.734213pt;}
.y3_c01214{bottom:687.734787pt;}
.y2_c01214{bottom:701.174067pt;}
.y1_c01214{bottom:748.533933pt;}
.hc_c01214{height:47.109375pt;}
.h8_c01214{height:47.763672pt;}
.he_c01214{height:47.976562pt;}
.h10_c01214{height:48.417969pt;}
.hf_c01214{height:49.046875pt;}
.h9_c01214{height:49.072266pt;}
.h13_c01214{height:49.367188pt;}
.h11_c01214{height:49.718750pt;}
.h12_c01214{height:50.062500pt;}
.hb_c01214{height:50.323405pt;}
.h16_c01214{height:50.380859pt;}
.h7_c01214{height:50.390625pt;}
.ha_c01214{height:51.035156pt;}
.h15_c01214{height:51.453125pt;}
.h17_c01214{height:51.689453pt;}
.h19_c01214{height:52.148438pt;}
.h14_c01214{height:52.998047pt;}
.h18_c01214{height:54.684896pt;}
.hd_c01214{height:63.273438pt;}
.h2_c01214{height:73.234375pt;}
.h4_c01214{height:73.906250pt;}
.h3_c01214{height:74.578125pt;}
.h6_c01214{height:75.921875pt;}
.h1_c01214{height:77.265625pt;}
.h5_c01214{height:79.721354pt;}
.h0_c01214{height:793.333333pt;}
.w0_c01214{width:1122.666667pt;}
.x0_c01214{left:0.000000pt;}
.x1_c01214{left:72.319333pt;}
.x2_c01214{left:150.079067pt;}
.x3_c01214{left:186.878920pt;}
.x4_c01214{left:293.438920pt;}
.x5_c01214{left:368.958947pt;}
.x6_c01214{left:459.199173pt;}
.x7_c01214{left:491.838907pt;}
.x8_c01214{left:589.439987pt;}
.xb_c01214{left:821.118853pt;}
.x14_c01214{left:822.079027pt;}
.x1f_c01214{left:823.038640pt;}
.x15_c01214{left:843.839280pt;}
.x27_c01214{left:850.239173pt;}
.x9_c01214{left:855.679693pt;}
.xe_c01214{left:860.159173pt;}
.xf_c01214{left:867.199213pt;}
.xa_c01214{left:877.759280pt;}
.x28_c01214{left:883.199707pt;}
.x20_c01214{left:903.039547pt;}
.x16_c01214{left:912.319333pt;}
.x29_c01214{left:922.558507pt;}
.x2a_c01214{left:930.238773pt;}
.x21_c01214{left:931.199707pt;}
.x22_c01214{left:941.759680pt;}
.x10_c01214{left:945.919840pt;}
.x1b_c01214{left:949.759280pt;}
.x23_c01214{left:950.718747pt;}
.x1c_c01214{left:961.599613pt;}
.x2b_c01214{left:962.879880pt;}
.x11_c01214{left:965.759680pt;}
.x2d_c01214{left:975.358893pt;}
.x24_c01214{left:976.639160pt;}
.x12_c01214{left:978.559573pt;}
.x25_c01214{left:985.599613pt;}
.x18_c01214{left:990.079027pt;}
.x2e_c01214{left:1000.319827pt;}
.x26_c01214{left:1008.000000pt;}
.x2f_c01214{left:1011.199133pt;}
.x13_c01214{left:1015.999427pt;}
.x2c_c01214{left:1022.718747pt;}
.x1d_c01214{left:1036.479413pt;}
.x30_c01214{left:1038.399827pt;}
.x31_c01214{left:1045.759280pt;}
.x17_c01214{left:1047.039547pt;}
.x1e_c01214{left:1050.238773pt;}
.xc_c01214{left:1051.199707pt;}
.x19_c01214{left:1055.039067pt;}
.x1a_c01214{left:1062.079027pt;}
.xd_c01214{left:1077.439453pt;}
}





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

.ir_c01215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_d1228b6e4fe61e7d9dfaed93.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01215;src:url('chunks/assets/font_e061457a883e805965cf96ec.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01215;src:url('chunks/assets/font_dc4593499e8f98d0ccb72cd5.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01215;src:url('chunks/assets/font_94a6409745ff05a731416900.woff2')format("woff");}.ff4_c01215{font-family:ff4_c01215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01215;src:url('chunks/assets/font_d4162437d26d331da93754ed.woff2')format("woff");}.ff5_c01215{font-family:ff5_c01215;line-height:1.432129;font-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_c01215{transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156667,0.000000,0.000000,0.250000,0,0);}
.m11_c01215{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);}
.m2d_c01215{transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);}
.m1e_c01215{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m25_c01215{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m7_c01215{transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205357,0.000000,0.000000,0.250000,0,0);}
.m23_c01215{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3_c01215{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m4_c01215{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m18_c01215{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.me_c01215{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);}
.m2_c01215{transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216518,0.000000,0.000000,0.250000,0,0);}
.m14_c01215{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m37_c01215{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);}
.m35_c01215{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m29_c01215{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m8_c01215{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_c01215{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m38_c01215{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m16_c01215{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m6_c01215{transform:matrix(0.227823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227823,0.000000,0.000000,0.250000,0,0);}
.m32_c01215{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_c01215{transform:matrix(0.231557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231557,0.000000,0.000000,0.250000,0,0);}
.m1c_c01215{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m2a_c01215{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.mb_c01215{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.mc_c01215{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m30_c01215{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m17_c01215{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m10_c01215{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m2e_c01215{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.ma_c01215{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m21_c01215{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m2f_c01215{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m15_c01215{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m20_c01215{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m1d_c01215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01215{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m34_c01215{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m31_c01215{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m28_c01215{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m1b_c01215{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m19_c01215{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.mf_c01215{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m33_c01215{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m2b_c01215{transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);}
.m36_c01215{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m27_c01215{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.md_c01215{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m9_c01215{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m26_c01215{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.m1_c01215{transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276316,0.000000,0.000000,0.250000,0,0);}
.m0_c01215{transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280973,0.000000,0.000000,0.250000,0,0);}
.m1f_c01215{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m22_c01215{transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);}
.m2c_c01215{transform:matrix(0.317901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317901,0.000000,0.000000,0.250000,0,0);}
.m24_c01215{transform:matrix(0.322464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322464,0.000000,0.000000,0.250000,0,0);}
.v0_c01215{vertical-align:0.000000px;}
.ls35_c01215{letter-spacing:-13.875000px;}
.ls2f_c01215{letter-spacing:-11.207768px;}
.ls34_c01215{letter-spacing:-10.764600px;}
.ls3_c01215{letter-spacing:-9.499050px;}
.ls3b_c01215{letter-spacing:-7.654530px;}
.ls27_c01215{letter-spacing:-6.476850px;}
.ls30_c01215{letter-spacing:-5.873175px;}
.ls26_c01215{letter-spacing:-5.816700px;}
.lsf_c01215{letter-spacing:-5.292000px;}
.lse_c01215{letter-spacing:-4.989600px;}
.ls31_c01215{letter-spacing:-4.668750px;}
.ls2b_c01215{letter-spacing:-4.626375px;}
.ls1f_c01215{letter-spacing:-4.560675px;}
.ls37_c01215{letter-spacing:-4.434458px;}
.ls18_c01215{letter-spacing:-4.387500px;}
.ls2c_c01215{letter-spacing:-4.231500px;}
.ls36_c01215{letter-spacing:-3.854400px;}
.ls20_c01215{letter-spacing:-3.799950px;}
.ls1a_c01215{letter-spacing:-3.656318px;}
.ls39_c01215{letter-spacing:-3.650400px;}
.ls28_c01215{letter-spacing:-3.424905px;}
.ls3e_c01215{letter-spacing:-3.320460px;}
.ls23_c01215{letter-spacing:-3.082425px;}
.ls32_c01215{letter-spacing:-3.040845px;}
.ls1b_c01215{letter-spacing:-3.037500px;}
.ls24_c01215{letter-spacing:-2.730000px;}
.ls4_c01215{letter-spacing:-2.595600px;}
.ls33_c01215{letter-spacing:-2.348228px;}
.ls12_c01215{letter-spacing:-2.315925px;}
.ls21_c01215{letter-spacing:-2.312438px;}
.ls15_c01215{letter-spacing:-2.278125px;}
.ls10_c01215{letter-spacing:-2.192805px;}
.ls3c_c01215{letter-spacing:-2.165430px;}
.ls9_c01215{letter-spacing:-2.099475px;}
.ls22_c01215{letter-spacing:-1.941143px;}
.ls7_c01215{letter-spacing:-1.822800px;}
.ls38_c01215{letter-spacing:-1.631813px;}
.lsd_c01215{letter-spacing:-1.566540px;}
.ls11_c01215{letter-spacing:-1.561800px;}
.lsc_c01215{letter-spacing:-1.543950px;}
.ls1c_c01215{letter-spacing:-1.501875px;}
.ls25_c01215{letter-spacing:-1.497945px;}
.ls8_c01215{letter-spacing:-0.833250px;}
.lsb_c01215{letter-spacing:-0.771975px;}
.ls3d_c01215{letter-spacing:-0.759375px;}
.ls29_c01215{letter-spacing:-0.722700px;}
.ls6_c01215{letter-spacing:0.000000px;}
.ls2a_c01215{letter-spacing:0.739500px;}
.ls1e_c01215{letter-spacing:0.742500px;}
.ls1_c01215{letter-spacing:0.771975px;}
.ls14_c01215{letter-spacing:0.861000px;}
.ls19_c01215{letter-spacing:1.543950px;}
.ls13_c01215{letter-spacing:1.666725px;}
.ls0_c01215{letter-spacing:2.315925px;}
.lsa_c01215{letter-spacing:2.348325px;}
.ls2e_c01215{letter-spacing:2.896695px;}
.ls17_c01215{letter-spacing:3.124650px;}
.ls2d_c01215{letter-spacing:3.209100px;}
.ls5_c01215{letter-spacing:3.610350px;}
.ls3a_c01215{letter-spacing:5.178705px;}
.ls2_c01215{letter-spacing:10.008975px;}
.ls1d_c01215{letter-spacing:10.650000px;}
.ls16_c01215{letter-spacing:11.581875px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01215{word-spacing:0.000000px;}
._11_c01215{margin-left:-19.737128px;}
._13_c01215{margin-left:-12.772512px;}
._12_c01215{margin-left:-9.581281px;}
._c_c01215{margin-left:-6.865912px;}
._6_c01215{margin-left:-5.349491px;}
._9_c01215{margin-left:-3.776825px;}
._e_c01215{margin-left:-2.600687px;}
._3_c01215{margin-left:-1.598870px;}
._5_c01215{width:1.215064px;}
._d_c01215{width:2.277461px;}
._4_c01215{width:3.372600px;}
._b_c01215{width:5.168693px;}
._7_c01215{width:6.833139px;}
._a_c01215{width:8.130128px;}
._8_c01215{width:10.019682px;}
._1_c01215{width:12.072282px;}
._2_c01215{width:15.537819px;}
._0_c01215{width:17.651061px;}
._10_c01215{width:27.023952px;}
._f_c01215{width:31.883095px;}
.fc0_c01215{color:transparent;}
.fs12_c01215{font-size:51.000000px;}
.fs11_c01215{font-size:51.750000px;}
.fs6_c01215{font-size:52.500000px;}
.fs8_c01215{font-size:53.250000px;}
.fs9_c01215{font-size:54.000000px;}
.fs7_c01215{font-size:54.750000px;}
.fsc_c01215{font-size:55.500000px;}
.fse_c01215{font-size:56.250000px;}
.fsd_c01215{font-size:57.000000px;}
.fsa_c01215{font-size:57.750000px;}
.fsf_c01215{font-size:58.500000px;}
.fs10_c01215{font-size:59.250000px;}
.fsb_c01215{font-size:60.000000px;}
.fs14_c01215{font-size:60.750000px;}
.fs15_c01215{font-size:62.250000px;}
.fs13_c01215{font-size:64.500000px;}
.fs3_c01215{font-size:82.500000px;}
.fs2_c01215{font-size:84.000000px;}
.fs0_c01215{font-size:84.750000px;}
.fs1_c01215{font-size:85.500000px;}
.fs4_c01215{font-size:91.500000px;}
.fs5_c01215{font-size:93.000000px;}
.y0_c01215{bottom:0.000000px;}
.y25_c01215{bottom:443.580510px;}
.y24_c01215{bottom:458.341095px;}
.y23_c01215{bottom:473.100225px;}
.y22_c01215{bottom:473.100900px;}
.y20_c01215{bottom:488.219835px;}
.y21_c01215{bottom:488.220105px;}
.y1f_c01215{bottom:503.341740px;}
.y1e_c01215{bottom:518.100810px;}
.y1d_c01215{bottom:532.861410px;}
.y1c_c01215{bottom:547.981425px;}
.y1a_c01215{bottom:563.101230px;}
.y1b_c01215{bottom:563.101275px;}
.y19_c01215{bottom:577.860345px;}
.y18_c01215{bottom:577.861170px;}
.y17_c01215{bottom:592.980375px;}
.y16_c01215{bottom:607.740960px;}
.y15_c01215{bottom:622.501560px;}
.y14_c01215{bottom:637.260675px;}
.y13_c01215{bottom:637.260825px;}
.y11_c01215{bottom:652.021230px;}
.y12_c01215{bottom:652.021410px;}
.y10_c01215{bottom:666.780345px;}
.yf_c01215{bottom:666.781170px;}
.ye_c01215{bottom:681.900375px;}
.yd_c01215{bottom:681.901020px;}
.yc_c01215{bottom:697.020225px;}
.yb_c01215{bottom:711.780945px;}
.ya_c01215{bottom:711.781635px;}
.y9_c01215{bottom:726.900840px;}
.y8_c01215{bottom:726.901605px;}
.y7_c01215{bottom:742.020810px;}
.y6_c01215{bottom:742.021455px;}
.y5_c01215{bottom:757.140660px;}
.y4_c01215{bottom:757.140810px;}
.y3_c01215{bottom:771.901425px;}
.y2_c01215{bottom:786.660555px;}
.y1_c01215{bottom:841.741605px;}
.h1a_c01215{height:50.789795px;}
.h7_c01215{height:51.525879px;}
.h9_c01215{height:52.261963px;}
.h1d_c01215{height:53.191406px;}
.h19_c01215{height:53.666016px;}
.h8_c01215{height:53.734131px;}
.h18_c01215{height:53.973633px;}
.ha_c01215{height:54.421875px;}
.hd_c01215{height:54.470215px;}
.h12_c01215{height:54.755859px;}
.h1c_c01215{height:54.849609px;}
.h23_c01215{height:55.177734px;}
.h10_c01215{height:55.206299px;}
.h11_c01215{height:55.538086px;}
.h13_c01215{height:55.933594px;}
.he_c01215{height:55.942383px;}
.hf_c01215{height:56.320312px;}
.h24_c01215{height:56.332031px;}
.hb_c01215{height:56.678467px;}
.h17_c01215{height:56.689453px;}
.h21_c01215{height:57.073242px;}
.h14_c01215{height:57.102539px;}
.h15_c01215{height:57.414551px;}
.h1e_c01215{height:57.445312px;}
.h16_c01215{height:58.150635px;}
.h1b_c01215{height:58.201172px;}
.hc_c01215{height:59.296875px;}
.h20_c01215{height:60.038086px;}
.h22_c01215{height:61.520508px;}
.h1f_c01215{height:63.744141px;}
.h4_c01215{height:83.144531px;}
.h2_c01215{height:84.498047px;}
.h3_c01215{height:84.656250px;}
.h1_c01215{height:85.412109px;}
.h5_c01215{height:90.427734px;}
.h6_c01215{height:91.910156px;}
.h0_c01215{height:892.500000px;}
.w0_c01215{width:1263.000000px;}
.x0_c01215{left:0.000000px;}
.x1_c01215{left:115.918350px;}
.x2_c01215{left:202.318800px;}
.x3_c01215{left:245.158785px;}
.x4_c01215{left:364.318800px;}
.x5_c01215{left:402.119385px;}
.x6_c01215{left:448.558635px;}
.x7_c01215{left:548.638500px;}
.x8_c01215{left:586.798515px;}
.x9_c01215{left:697.319820px;}
.xe_c01215{left:934.918470px;}
.x47_c01215{left:936.359805px;}
.xf_c01215{left:964.439205px;}
.x3b_c01215{left:965.879520px;}
.x1f_c01215{left:970.559685px;}
.xa_c01215{left:972.359250px;}
.x41_c01215{left:976.319190px;}
.x19_c01215{left:983.878320px;}
.x13_c01215{left:989.998905px;}
.xb_c01215{left:991.798560px;}
.x10_c01215{left:993.238770px;}
.x26_c01215{left:1000.799565px;}
.x20_c01215{left:1002.958275px;}
.x3c_c01215{left:1009.078770px;}
.x36_c01215{left:1013.038875px;}
.x14_c01215{left:1014.838530px;}
.x4b_c01215{left:1017.719055px;}
.x3d_c01215{left:1022.758575px;}
.x1a_c01215{left:1028.519715px;}
.x2b_c01215{left:1029.958275px;}
.x27_c01215{left:1034.279205px;}
.x1b_c01215{left:1037.519070px;}
.x21_c01215{left:1047.599670px;}
.x2c_c01215{left:1048.679070px;}
.x28_c01215{left:1056.958275px;}
.x15_c01215{left:1061.999355px;}
.x11_c01215{left:1066.318815px;}
.x29_c01215{left:1070.998905px;}
.x35_c01215{left:1073.518620px;}
.x31_c01215{left:1078.559685px;}
.x16_c01215{left:1080.000000px;}
.x12_c01215{left:1082.519715px;}
.x42_c01215{left:1084.319190px;}
.x22_c01215{left:1087.559055px;}
.x32_c01215{left:1091.878320px;}
.x43_c01215{left:1097.639655px;}
.x23_c01215{left:1098.719055px;}
.x2d_c01215{left:1100.518620px;}
.x48_c01215{left:1103.039985px;}
.x37_c01215{left:1107.359250px;}
.x17_c01215{left:1113.838905px;}
.x2a_c01215{left:1115.279205px;}
.x1c_c01215{left:1128.958920px;}
.x44_c01215{left:1133.279850px;}
.xc_c01215{left:1134.359250px;}
.x2e_c01215{left:1135.799565px;}
.x49_c01215{left:1137.958275px;}
.x2f_c01215{left:1145.159820px;}
.x33_c01215{left:1147.318725px;}
.x24_c01215{left:1150.199340px;}
.x45_c01215{left:1151.998905px;}
.xd_c01215{left:1153.798560px;}
.x38_c01215{left:1154.879520px;}
.x3e_c01215{left:1160.279850px;}
.x34_c01215{left:1161.718590px;}
.x39_c01215{left:1163.158815px;}
.x4a_c01215{left:1170.719520px;}
.x18_c01215{left:1171.798920px;}
.x1d_c01215{left:1173.239220px;}
.x30_c01215{left:1175.399775px;}
.x25_c01215{left:1178.639655px;}
.x3f_c01215{left:1191.958275px;}
.x1e_c01215{left:1194.479640px;}
.x46_c01215{left:1198.439670px;}
.x40_c01215{left:1211.758575px;}
.x4c_c01215{left:1214.639100px;}
.x3a_c01215{left:1225.439670px;}
.x4d_c01215{left:1226.878320px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls35_c01215{letter-spacing:-12.333333pt;}
.ls2f_c01215{letter-spacing:-9.962460pt;}
.ls34_c01215{letter-spacing:-9.568533pt;}
.ls3_c01215{letter-spacing:-8.443600pt;}
.ls3b_c01215{letter-spacing:-6.804027pt;}
.ls27_c01215{letter-spacing:-5.757200pt;}
.ls30_c01215{letter-spacing:-5.220600pt;}
.ls26_c01215{letter-spacing:-5.170400pt;}
.lsf_c01215{letter-spacing:-4.704000pt;}
.lse_c01215{letter-spacing:-4.435200pt;}
.ls31_c01215{letter-spacing:-4.150000pt;}
.ls2b_c01215{letter-spacing:-4.112333pt;}
.ls1f_c01215{letter-spacing:-4.053933pt;}
.ls37_c01215{letter-spacing:-3.941740pt;}
.ls18_c01215{letter-spacing:-3.900000pt;}
.ls2c_c01215{letter-spacing:-3.761333pt;}
.ls36_c01215{letter-spacing:-3.426133pt;}
.ls20_c01215{letter-spacing:-3.377733pt;}
.ls1a_c01215{letter-spacing:-3.250060pt;}
.ls39_c01215{letter-spacing:-3.244800pt;}
.ls28_c01215{letter-spacing:-3.044360pt;}
.ls3e_c01215{letter-spacing:-2.951520pt;}
.ls23_c01215{letter-spacing:-2.739933pt;}
.ls32_c01215{letter-spacing:-2.702973pt;}
.ls1b_c01215{letter-spacing:-2.700000pt;}
.ls24_c01215{letter-spacing:-2.426667pt;}
.ls4_c01215{letter-spacing:-2.307200pt;}
.ls33_c01215{letter-spacing:-2.087313pt;}
.ls12_c01215{letter-spacing:-2.058600pt;}
.ls21_c01215{letter-spacing:-2.055500pt;}
.ls15_c01215{letter-spacing:-2.025000pt;}
.ls10_c01215{letter-spacing:-1.949160pt;}
.ls3c_c01215{letter-spacing:-1.924827pt;}
.ls9_c01215{letter-spacing:-1.866200pt;}
.ls22_c01215{letter-spacing:-1.725460pt;}
.ls7_c01215{letter-spacing:-1.620267pt;}
.ls38_c01215{letter-spacing:-1.450500pt;}
.lsd_c01215{letter-spacing:-1.392480pt;}
.ls11_c01215{letter-spacing:-1.388267pt;}
.lsc_c01215{letter-spacing:-1.372400pt;}
.ls1c_c01215{letter-spacing:-1.335000pt;}
.ls25_c01215{letter-spacing:-1.331507pt;}
.ls8_c01215{letter-spacing:-0.740667pt;}
.lsb_c01215{letter-spacing:-0.686200pt;}
.ls3d_c01215{letter-spacing:-0.675000pt;}
.ls29_c01215{letter-spacing:-0.642400pt;}
.ls6_c01215{letter-spacing:0.000000pt;}
.ls2a_c01215{letter-spacing:0.657333pt;}
.ls1e_c01215{letter-spacing:0.660000pt;}
.ls1_c01215{letter-spacing:0.686200pt;}
.ls14_c01215{letter-spacing:0.765333pt;}
.ls19_c01215{letter-spacing:1.372400pt;}
.ls13_c01215{letter-spacing:1.481533pt;}
.ls0_c01215{letter-spacing:2.058600pt;}
.lsa_c01215{letter-spacing:2.087400pt;}
.ls2e_c01215{letter-spacing:2.574840pt;}
.ls17_c01215{letter-spacing:2.777467pt;}
.ls2d_c01215{letter-spacing:2.852533pt;}
.ls5_c01215{letter-spacing:3.209200pt;}
.ls3a_c01215{letter-spacing:4.603293pt;}
.ls2_c01215{letter-spacing:8.896867pt;}
.ls1d_c01215{letter-spacing:9.466667pt;}
.ls16_c01215{letter-spacing:10.295000pt;}
.ws0_c01215{word-spacing:0.000000pt;}
._11_c01215{margin-left:-17.544114pt;}
._13_c01215{margin-left:-11.353344pt;}
._12_c01215{margin-left:-8.516694pt;}
._c_c01215{margin-left:-6.103033pt;}
._6_c01215{margin-left:-4.755103pt;}
._9_c01215{margin-left:-3.357177pt;}
._e_c01215{margin-left:-2.311722pt;}
._3_c01215{margin-left:-1.421217pt;}
._5_c01215{width:1.080057pt;}
._d_c01215{width:2.024410pt;}
._4_c01215{width:2.997867pt;}
._b_c01215{width:4.594394pt;}
._7_c01215{width:6.073902pt;}
._a_c01215{width:7.226781pt;}
._8_c01215{width:8.906384pt;}
._1_c01215{width:10.730918pt;}
._2_c01215{width:13.811394pt;}
._0_c01215{width:15.689832pt;}
._10_c01215{width:24.021291pt;}
._f_c01215{width:28.340529pt;}
.fs12_c01215{font-size:45.333333pt;}
.fs11_c01215{font-size:46.000000pt;}
.fs6_c01215{font-size:46.666667pt;}
.fs8_c01215{font-size:47.333333pt;}
.fs9_c01215{font-size:48.000000pt;}
.fs7_c01215{font-size:48.666667pt;}
.fsc_c01215{font-size:49.333333pt;}
.fse_c01215{font-size:50.000000pt;}
.fsd_c01215{font-size:50.666667pt;}
.fsa_c01215{font-size:51.333333pt;}
.fsf_c01215{font-size:52.000000pt;}
.fs10_c01215{font-size:52.666667pt;}
.fsb_c01215{font-size:53.333333pt;}
.fs14_c01215{font-size:54.000000pt;}
.fs15_c01215{font-size:55.333333pt;}
.fs13_c01215{font-size:57.333333pt;}
.fs3_c01215{font-size:73.333333pt;}
.fs2_c01215{font-size:74.666667pt;}
.fs0_c01215{font-size:75.333333pt;}
.fs1_c01215{font-size:76.000000pt;}
.fs4_c01215{font-size:81.333333pt;}
.fs5_c01215{font-size:82.666667pt;}
.y0_c01215{bottom:0.000000pt;}
.y25_c01215{bottom:394.293787pt;}
.y24_c01215{bottom:407.414307pt;}
.y23_c01215{bottom:420.533533pt;}
.y22_c01215{bottom:420.534133pt;}
.y20_c01215{bottom:433.973187pt;}
.y21_c01215{bottom:433.973427pt;}
.y1f_c01215{bottom:447.414880pt;}
.y1e_c01215{bottom:460.534053pt;}
.y1d_c01215{bottom:473.654587pt;}
.y1c_c01215{bottom:487.094600pt;}
.y1a_c01215{bottom:500.534427pt;}
.y1b_c01215{bottom:500.534467pt;}
.y19_c01215{bottom:513.653640pt;}
.y18_c01215{bottom:513.654373pt;}
.y17_c01215{bottom:527.093667pt;}
.y16_c01215{bottom:540.214187pt;}
.y15_c01215{bottom:553.334720pt;}
.y14_c01215{bottom:566.453933pt;}
.y13_c01215{bottom:566.454067pt;}
.y11_c01215{bottom:579.574427pt;}
.y12_c01215{bottom:579.574587pt;}
.y10_c01215{bottom:592.693640pt;}
.yf_c01215{bottom:592.694373pt;}
.ye_c01215{bottom:606.133667pt;}
.yd_c01215{bottom:606.134240pt;}
.yc_c01215{bottom:619.573533pt;}
.yb_c01215{bottom:632.694173pt;}
.ya_c01215{bottom:632.694787pt;}
.y9_c01215{bottom:646.134080pt;}
.y8_c01215{bottom:646.134760pt;}
.y7_c01215{bottom:659.574053pt;}
.y6_c01215{bottom:659.574627pt;}
.y5_c01215{bottom:673.013920pt;}
.y4_c01215{bottom:673.014053pt;}
.y3_c01215{bottom:686.134600pt;}
.y2_c01215{bottom:699.253827pt;}
.y1_c01215{bottom:748.214760pt;}
.h1a_c01215{height:45.146484pt;}
.h7_c01215{height:45.800781pt;}
.h9_c01215{height:46.455078pt;}
.h1d_c01215{height:47.281250pt;}
.h19_c01215{height:47.703125pt;}
.h8_c01215{height:47.763672pt;}
.h18_c01215{height:47.976562pt;}
.ha_c01215{height:48.375000pt;}
.hd_c01215{height:48.417969pt;}
.h12_c01215{height:48.671875pt;}
.h1c_c01215{height:48.755208pt;}
.h23_c01215{height:49.046875pt;}
.h10_c01215{height:49.072266pt;}
.h11_c01215{height:49.367188pt;}
.h13_c01215{height:49.718750pt;}
.he_c01215{height:49.726562pt;}
.hf_c01215{height:50.062500pt;}
.h24_c01215{height:50.072917pt;}
.hb_c01215{height:50.380859pt;}
.h17_c01215{height:50.390625pt;}
.h21_c01215{height:50.731771pt;}
.h14_c01215{height:50.757812pt;}
.h15_c01215{height:51.035156pt;}
.h1e_c01215{height:51.062500pt;}
.h16_c01215{height:51.689453pt;}
.h1b_c01215{height:51.734375pt;}
.hc_c01215{height:52.708333pt;}
.h20_c01215{height:53.367188pt;}
.h22_c01215{height:54.684896pt;}
.h1f_c01215{height:56.661458pt;}
.h4_c01215{height:73.906250pt;}
.h2_c01215{height:75.109375pt;}
.h3_c01215{height:75.250000pt;}
.h1_c01215{height:75.921875pt;}
.h5_c01215{height:80.380208pt;}
.h6_c01215{height:81.697917pt;}
.h0_c01215{height:793.333333pt;}
.w0_c01215{width:1122.666667pt;}
.x0_c01215{left:0.000000pt;}
.x1_c01215{left:103.038533pt;}
.x2_c01215{left:179.838933pt;}
.x3_c01215{left:217.918920pt;}
.x4_c01215{left:323.838933pt;}
.x5_c01215{left:357.439453pt;}
.x6_c01215{left:398.718787pt;}
.x7_c01215{left:487.678667pt;}
.x8_c01215{left:521.598680pt;}
.x9_c01215{left:619.839840pt;}
.xe_c01215{left:831.038640pt;}
.x47_c01215{left:832.319827pt;}
.xf_c01215{left:857.279293pt;}
.x3b_c01215{left:858.559573pt;}
.x1f_c01215{left:862.719720pt;}
.xa_c01215{left:864.319333pt;}
.x41_c01215{left:867.839280pt;}
.x19_c01215{left:874.558507pt;}
.x13_c01215{left:879.999027pt;}
.xb_c01215{left:881.598720pt;}
.x10_c01215{left:882.878907pt;}
.x26_c01215{left:889.599613pt;}
.x20_c01215{left:891.518467pt;}
.x3c_c01215{left:896.958907pt;}
.x36_c01215{left:900.479000pt;}
.x14_c01215{left:902.078693pt;}
.x4b_c01215{left:904.639160pt;}
.x3d_c01215{left:909.118733pt;}
.x1a_c01215{left:914.239747pt;}
.x2b_c01215{left:915.518467pt;}
.x27_c01215{left:919.359293pt;}
.x1b_c01215{left:922.239173pt;}
.x21_c01215{left:931.199707pt;}
.x2c_c01215{left:932.159173pt;}
.x28_c01215{left:939.518467pt;}
.x15_c01215{left:943.999427pt;}
.x11_c01215{left:947.838947pt;}
.x29_c01215{left:951.999027pt;}
.x35_c01215{left:954.238773pt;}
.x31_c01215{left:958.719720pt;}
.x16_c01215{left:960.000000pt;}
.x12_c01215{left:962.239747pt;}
.x42_c01215{left:963.839280pt;}
.x22_c01215{left:966.719160pt;}
.x32_c01215{left:970.558507pt;}
.x43_c01215{left:975.679693pt;}
.x23_c01215{left:976.639160pt;}
.x2d_c01215{left:978.238773pt;}
.x48_c01215{left:980.479987pt;}
.x37_c01215{left:984.319333pt;}
.x17_c01215{left:990.079027pt;}
.x2a_c01215{left:991.359293pt;}
.x1c_c01215{left:1003.519040pt;}
.x44_c01215{left:1007.359867pt;}
.xc_c01215{left:1008.319333pt;}
.x2e_c01215{left:1009.599613pt;}
.x49_c01215{left:1011.518467pt;}
.x2f_c01215{left:1017.919840pt;}
.x33_c01215{left:1019.838867pt;}
.x24_c01215{left:1022.399413pt;}
.x45_c01215{left:1023.999027pt;}
.xd_c01215{left:1025.598720pt;}
.x38_c01215{left:1026.559573pt;}
.x3e_c01215{left:1031.359867pt;}
.x34_c01215{left:1032.638747pt;}
.x39_c01215{left:1033.918947pt;}
.x4a_c01215{left:1040.639573pt;}
.x18_c01215{left:1041.599040pt;}
.x1d_c01215{left:1042.879307pt;}
.x30_c01215{left:1044.799800pt;}
.x25_c01215{left:1047.679693pt;}
.x3f_c01215{left:1059.518467pt;}
.x1e_c01215{left:1061.759680pt;}
.x46_c01215{left:1065.279707pt;}
.x40_c01215{left:1077.118733pt;}
.x4c_c01215{left:1079.679200pt;}
.x3a_c01215{left:1089.279707pt;}
.x4d_c01215{left:1090.558507pt;}
}





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

.ir_c01216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_d8c52d89784ecd76f56910e9.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01216;src:url('chunks/assets/font_b22fc4d4cf2414101575eee8.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01216;src:url('chunks/assets/font_07298b261c97009299728cf5.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01216;src:url('chunks/assets/font_830aed4cfbf79fc307a0dc4f.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01216;src:url('chunks/assets/font_f1c2fdc7f354eb72b3549f96.woff2')format("woff");}.ff5_c01216{font-family:ff5_c01216;line-height:1.432129;font-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_c01216{transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128378,0.000000,0.000000,0.250000,0,0);}
.m13_c01216{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m0_c01216{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);}
.md_c01216{transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202206,0.000000,0.000000,0.250000,0,0);}
.m1b_c01216{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.mc_c01216{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m14_c01216{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m19_c01216{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.m17_c01216{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m7_c01216{transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213768,0.000000,0.000000,0.250000,0,0);}
.m18_c01216{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);}
.m10_c01216{transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m1c_c01216{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_c01216{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m22_c01216{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.ma_c01216{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m6_c01216{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m3_c01216{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m1a_c01216{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m11_c01216{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.me_c01216{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m15_c01216{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1_c01216{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m21_c01216{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m16_c01216{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m8_c01216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20_c01216{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m2_c01216{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m9_c01216{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m1e_c01216{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m4_c01216{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m1f_c01216{transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282468,0.000000,0.000000,0.250000,0,0);}
.mf_c01216{transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346667,0.000000,0.000000,0.250000,0,0);}
.mb_c01216{transform:matrix(0.348485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348485,0.000000,0.000000,0.250000,0,0);}
.m5_c01216{transform:matrix(0.406130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406130,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.ls19_c01216{letter-spacing:-22.713188px;}
.ls1f_c01216{letter-spacing:-15.240225px;}
.ls1b_c01216{letter-spacing:-10.859625px;}
.ls21_c01216{letter-spacing:-10.223100px;}
.ls23_c01216{letter-spacing:-10.025273px;}
.ls13_c01216{letter-spacing:-7.708253px;}
.ls24_c01216{letter-spacing:-7.299600px;}
.ls7_c01216{letter-spacing:-6.942300px;}
.lsd_c01216{letter-spacing:-6.170325px;}
.ls14_c01216{letter-spacing:-5.398350px;}
.ls22_c01216{letter-spacing:-4.989600px;}
.ls27_c01216{letter-spacing:-4.961250px;}
.lse_c01216{letter-spacing:-4.626375px;}
.ls1a_c01216{letter-spacing:-3.854400px;}
.ls1c_c01216{letter-spacing:-3.166875px;}
.ls15_c01216{letter-spacing:-3.082425px;}
.ls8_c01216{letter-spacing:-2.315925px;}
.ls10_c01216{letter-spacing:-1.543950px;}
.ls1d_c01216{letter-spacing:-1.543500px;}
.lsf_c01216{letter-spacing:-0.879750px;}
.ls18_c01216{letter-spacing:-0.771975px;}
.ls26_c01216{letter-spacing:-0.761250px;}
.lsa_c01216{letter-spacing:0.000000px;}
.ls25_c01216{letter-spacing:0.729750px;}
.ls1_c01216{letter-spacing:0.771975px;}
.ls6_c01216{letter-spacing:0.936000px;}
.ls4_c01216{letter-spacing:1.543950px;}
.ls2_c01216{letter-spacing:2.315925px;}
.ls12_c01216{letter-spacing:2.432100px;}
.ls20_c01216{letter-spacing:2.499525px;}
.lsb_c01216{letter-spacing:2.713500px;}
.ls1e_c01216{letter-spacing:3.039525px;}
.ls3_c01216{letter-spacing:3.082425px;}
.ls9_c01216{letter-spacing:3.636750px;}
.ls16_c01216{letter-spacing:4.567725px;}
.ls17_c01216{letter-spacing:4.635900px;}
.lsc_c01216{letter-spacing:6.437933px;}
.ls11_c01216{letter-spacing:6.748200px;}
.ls5_c01216{letter-spacing:30.846150px;}
.ls0_c01216{letter-spacing:40.871423px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01216{word-spacing:0.000000px;}
._1b_c01216{margin-left:-79.272432px;}
._5_c01216{margin-left:-75.103798px;}
._1d_c01216{margin-left:-58.395934px;}
._1a_c01216{margin-left:-35.182196px;}
._1f_c01216{margin-left:-25.026826px;}
._b_c01216{margin-left:-22.030644px;}
._16_c01216{margin-left:-16.595141px;}
._15_c01216{margin-left:-8.020860px;}
._14_c01216{margin-left:-6.460593px;}
._1c_c01216{margin-left:-5.119557px;}
._6_c01216{margin-left:-4.024372px;}
._8_c01216{margin-left:-3.011188px;}
._4_c01216{margin-left:-1.905146px;}
._a_c01216{width:1.089448px;}
._9_c01216{width:2.331980px;}
._7_c01216{width:3.547646px;}
._12_c01216{width:5.425833px;}
._13_c01216{width:7.238320px;}
._d_c01216{width:9.143096px;}
._c_c01216{width:10.183500px;}
._11_c01216{width:11.787274px;}
._10_c01216{width:14.049251px;}
._e_c01216{width:16.102253px;}
._17_c01216{width:17.399581px;}
._18_c01216{width:20.586031px;}
._f_c01216{width:21.593215px;}
._19_c01216{width:22.847776px;}
._2_c01216{width:26.428727px;}
._1_c01216{width:29.707211px;}
._0_c01216{width:31.706049px;}
._3_c01216{width:35.589004px;}
._1e_c01216{width:61.160778px;}
.fc0_c01216{color:transparent;}
.fsa_c01216{font-size:36.750000px;}
.fs5_c01216{font-size:44.250000px;}
.fs0_c01216{font-size:48.750000px;}
.fs7_c01216{font-size:49.500000px;}
.fs3_c01216{font-size:50.250000px;}
.fs8_c01216{font-size:51.000000px;}
.fs6_c01216{font-size:51.750000px;}
.fsd_c01216{font-size:52.500000px;}
.fs1_c01216{font-size:54.750000px;}
.fsc_c01216{font-size:55.500000px;}
.fs9_c01216{font-size:56.250000px;}
.fsf_c01216{font-size:57.750000px;}
.fsb_c01216{font-size:58.500000px;}
.fse_c01216{font-size:59.250000px;}
.fs2_c01216{font-size:69.000000px;}
.fs4_c01216{font-size:195.750000px;}
.y0_c01216{bottom:0.000000px;}
.y3b_c01216{bottom:76.382385px;}
.y3a_c01216{bottom:106.260930px;}
.y39_c01216{bottom:136.500780px;}
.y38_c01216{bottom:166.380570px;}
.y37_c01216{bottom:196.620435px;}
.y36_c01216{bottom:226.141320px;}
.y35_c01216{bottom:256.381170px;}
.y34_c01216{bottom:271.500360px;}
.y33_c01216{bottom:286.260960px;}
.y32_c01216{bottom:301.381620px;}
.y31_c01216{bottom:316.862130px;}
.y30_c01216{bottom:331.981335px;}
.y2f_c01216{bottom:346.740435px;}
.y2e_c01216{bottom:361.501035px;}
.y2d_c01216{bottom:376.980285px;}
.y2c_c01216{bottom:376.981515px;}
.y2b_c01216{bottom:392.100720px;}
.y5_c01216{bottom:393.540570px;}
.y3_c01216{bottom:394.260720px;}
.y2a_c01216{bottom:406.500000px;}
.y29_c01216{bottom:406.500360px;}
.y28_c01216{bottom:421.980885px;}
.y27_c01216{bottom:421.981635px;}
.y26_c01216{bottom:436.742250px;}
.y25_c01216{bottom:451.861425px;}
.y24_c01216{bottom:466.620570px;}
.y23_c01216{bottom:481.381170px;}
.y22_c01216{bottom:496.501050px;}
.y21_c01216{bottom:496.502175px;}
.y20_c01216{bottom:511.621380px;}
.y1f_c01216{bottom:526.740585px;}
.y1e_c01216{bottom:541.499730px;}
.y1c_c01216{bottom:556.621440px;}
.y1d_c01216{bottom:556.621635px;}
.y1b_c01216{bottom:571.380570px;}
.y1a_c01216{bottom:586.501230px;}
.y19_c01216{bottom:601.620435px;}
.y18_c01216{bottom:601.620570px;}
.y17_c01216{bottom:616.381170px;}
.y16_c01216{bottom:631.501005px;}
.y15_c01216{bottom:646.260135px;}
.y14_c01216{bottom:661.020720px;}
.y13_c01216{bottom:661.021545px;}
.y12_c01216{bottom:676.140750px;}
.y11_c01216{bottom:676.140930px;}
.y10_c01216{bottom:691.621440px;}
.yf_c01216{bottom:706.380570px;}
.ye_c01216{bottom:706.381395px;}
.yd_c01216{bottom:721.500600px;}
.yc_c01216{bottom:721.501185px;}
.yb_c01216{bottom:736.620375px;}
.y2_c01216{bottom:745.621635px;}
.ya_c01216{bottom:751.380975px;}
.y9_c01216{bottom:766.140105px;}
.y8_c01216{bottom:766.140930px;}
.y7_c01216{bottom:781.260135px;}
.y6_c01216{bottom:796.020720px;}
.y4_c01216{bottom:798.540615px;}
.y1_c01216{bottom:799.621575px;}
.hc_c01216{height:38.329102px;}
.h6_c01216{height:43.428955px;}
.h1_c01216{height:47.845459px;}
.h9_c01216{height:48.581543px;}
.h8_c01216{height:49.317627px;}
.ha_c01216{height:50.053711px;}
.h4_c01216{height:50.642578px;}
.h7_c01216{height:50.789795px;}
.h10_c01216{height:51.525879px;}
.h17_c01216{height:52.910156px;}
.h12_c01216{height:53.191406px;}
.h2_c01216{height:53.734131px;}
.hf_c01216{height:54.470215px;}
.h15_c01216{height:54.849609px;}
.hd_c01216{height:55.206299px;}
.hb_c01216{height:55.590820px;}
.h16_c01216{height:56.678467px;}
.h13_c01216{height:57.073242px;}
.he_c01216{height:57.414551px;}
.h14_c01216{height:58.150635px;}
.h11_c01216{height:58.555664px;}
.h3_c01216{height:67.719727px;}
.h5_c01216{height:204.161133px;}
.h0_c01216{height:892.500000px;}
.w0_c01216{width:1263.000000px;}
.x0_c01216{left:0.000000px;}
.x1_c01216{left:76.679100px;}
.x6_c01216{left:78.119415px;}
.x2_c01216{left:96.120000px;}
.x7_c01216{left:98.278800px;}
.x8_c01216{left:246.239850px;}
.x3_c01216{left:249.838950px;}
.x4_c01216{left:290.879535px;}
.x9_c01216{left:308.519100px;}
.x5_c01216{left:317.879535px;}
.xa_c01216{left:362.878350px;}
.xb_c01216{left:394.199385px;}
.xc_c01216{left:408.599070px;}
.xd_c01216{left:479.518620px;}
.x10_c01216{left:480.958920px;}
.xe_c01216{left:499.318770px;}
.x11_c01216{left:501.119985px;}
.x12_c01216{left:628.918350px;}
.xf_c01216{left:680.039385px;}
.x13_c01216{left:908.639655px;}
.x29_c01216{left:909.718710px;}
.x31_c01216{left:910.798620px;}
.x39_c01216{left:912.237735px;}
.x23_c01216{left:920.158815px;}
.x14_c01216{left:925.918305px;}
.x36_c01216{left:929.159820px;}
.x1f_c01216{left:945.359250px;}
.x3a_c01216{left:950.756970px;}
.x20_c01216{left:956.159820px;}
.x2a_c01216{left:958.318815px;}
.x1d_c01216{left:963.359805px;}
.x1e_c01216{left:973.079400px;}
.x15_c01216{left:977.398590px;}
.x3b_c01216{left:981.719520px;}
.x2b_c01216{left:991.079955px;}
.x16_c01216{left:995.039985px;}
.x17_c01216{left:1013.759040px;}
.x2f_c01216{left:1019.159370px;}
.x37_c01216{left:1022.399235px;}
.x18_c01216{left:1029.599025px;}
.x30_c01216{left:1032.838905px;}
.x38_c01216{left:1050.478635px;}
.x27_c01216{left:1063.078770px;}
.x28_c01216{left:1075.679070px;}
.x24_c01216{left:1081.438665px;}
.x21_c01216{left:1088.638545px;}
.x25_c01216{left:1104.119385px;}
.x22_c01216{left:1110.599025px;}
.x1b_c01216{left:1111.678530px;}
.x26_c01216{left:1114.559055px;}
.x32_c01216{left:1118.519070px;}
.x1c_c01216{left:1122.838530px;}
.x2d_c01216{left:1128.238770px;}
.x33_c01216{left:1135.799565px;}
.x2e_c01216{left:1138.319190px;}
.x2c_c01216{left:1161.359250px;}
.x34_c01216{left:1167.838905px;}
.x19_c01216{left:1171.798920px;}
.x35_c01216{left:1182.599670px;}
.x1a_c01216{left:1186.198785px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls19_c01216{letter-spacing:-20.189500pt;}
.ls1f_c01216{letter-spacing:-13.546867pt;}
.ls1b_c01216{letter-spacing:-9.653000pt;}
.ls21_c01216{letter-spacing:-9.087200pt;}
.ls23_c01216{letter-spacing:-8.911353pt;}
.ls13_c01216{letter-spacing:-6.851780pt;}
.ls24_c01216{letter-spacing:-6.488533pt;}
.ls7_c01216{letter-spacing:-6.170933pt;}
.lsd_c01216{letter-spacing:-5.484733pt;}
.ls14_c01216{letter-spacing:-4.798533pt;}
.ls22_c01216{letter-spacing:-4.435200pt;}
.ls27_c01216{letter-spacing:-4.410000pt;}
.lse_c01216{letter-spacing:-4.112333pt;}
.ls1a_c01216{letter-spacing:-3.426133pt;}
.ls1c_c01216{letter-spacing:-2.815000pt;}
.ls15_c01216{letter-spacing:-2.739933pt;}
.ls8_c01216{letter-spacing:-2.058600pt;}
.ls10_c01216{letter-spacing:-1.372400pt;}
.ls1d_c01216{letter-spacing:-1.372000pt;}
.lsf_c01216{letter-spacing:-0.782000pt;}
.ls18_c01216{letter-spacing:-0.686200pt;}
.ls26_c01216{letter-spacing:-0.676667pt;}
.lsa_c01216{letter-spacing:0.000000pt;}
.ls25_c01216{letter-spacing:0.648667pt;}
.ls1_c01216{letter-spacing:0.686200pt;}
.ls6_c01216{letter-spacing:0.832000pt;}
.ls4_c01216{letter-spacing:1.372400pt;}
.ls2_c01216{letter-spacing:2.058600pt;}
.ls12_c01216{letter-spacing:2.161867pt;}
.ls20_c01216{letter-spacing:2.221800pt;}
.lsb_c01216{letter-spacing:2.412000pt;}
.ls1e_c01216{letter-spacing:2.701800pt;}
.ls3_c01216{letter-spacing:2.739933pt;}
.ls9_c01216{letter-spacing:3.232667pt;}
.ls16_c01216{letter-spacing:4.060200pt;}
.ls17_c01216{letter-spacing:4.120800pt;}
.lsc_c01216{letter-spacing:5.722607pt;}
.ls11_c01216{letter-spacing:5.998400pt;}
.ls5_c01216{letter-spacing:27.418800pt;}
.ls0_c01216{letter-spacing:36.330153pt;}
.ws0_c01216{word-spacing:0.000000pt;}
._1b_c01216{margin-left:-70.464384pt;}
._5_c01216{margin-left:-66.758932pt;}
._1d_c01216{margin-left:-51.907497pt;}
._1a_c01216{margin-left:-31.273063pt;}
._1f_c01216{margin-left:-22.246068pt;}
._b_c01216{margin-left:-19.582795pt;}
._16_c01216{margin-left:-14.751237pt;}
._15_c01216{margin-left:-7.129653pt;}
._14_c01216{margin-left:-5.742749pt;}
._1c_c01216{margin-left:-4.550717pt;}
._6_c01216{margin-left:-3.577219pt;}
._8_c01216{margin-left:-2.676612pt;}
._4_c01216{margin-left:-1.693463pt;}
._a_c01216{width:0.968398pt;}
._9_c01216{width:2.072871pt;}
._7_c01216{width:3.153463pt;}
._12_c01216{width:4.822963pt;}
._13_c01216{width:6.434062pt;}
._d_c01216{width:8.127196pt;}
._c_c01216{width:9.052000pt;}
._11_c01216{width:10.477577pt;}
._10_c01216{width:12.488223pt;}
._e_c01216{width:14.313113pt;}
._17_c01216{width:15.466294pt;}
._18_c01216{width:18.298694pt;}
._f_c01216{width:19.193969pt;}
._19_c01216{width:20.309135pt;}
._2_c01216{width:23.492202pt;}
._1_c01216{width:26.406410pt;}
._0_c01216{width:28.183155pt;}
._3_c01216{width:31.634670pt;}
._1e_c01216{width:54.365136pt;}
.fsa_c01216{font-size:32.666667pt;}
.fs5_c01216{font-size:39.333333pt;}
.fs0_c01216{font-size:43.333333pt;}
.fs7_c01216{font-size:44.000000pt;}
.fs3_c01216{font-size:44.666667pt;}
.fs8_c01216{font-size:45.333333pt;}
.fs6_c01216{font-size:46.000000pt;}
.fsd_c01216{font-size:46.666667pt;}
.fs1_c01216{font-size:48.666667pt;}
.fsc_c01216{font-size:49.333333pt;}
.fs9_c01216{font-size:50.000000pt;}
.fsf_c01216{font-size:51.333333pt;}
.fsb_c01216{font-size:52.000000pt;}
.fse_c01216{font-size:52.666667pt;}
.fs2_c01216{font-size:61.333333pt;}
.fs4_c01216{font-size:174.000000pt;}
.y0_c01216{bottom:0.000000pt;}
.y3b_c01216{bottom:67.895453pt;}
.y3a_c01216{bottom:94.454160pt;}
.y39_c01216{bottom:121.334027pt;}
.y38_c01216{bottom:147.893840pt;}
.y37_c01216{bottom:174.773720pt;}
.y36_c01216{bottom:201.014507pt;}
.y35_c01216{bottom:227.894373pt;}
.y34_c01216{bottom:241.333653pt;}
.y33_c01216{bottom:254.454187pt;}
.y32_c01216{bottom:267.894773pt;}
.y31_c01216{bottom:281.655227pt;}
.y30_c01216{bottom:295.094520pt;}
.y2f_c01216{bottom:308.213720pt;}
.y2e_c01216{bottom:321.334253pt;}
.y2d_c01216{bottom:335.093587pt;}
.y2c_c01216{bottom:335.094680pt;}
.y2b_c01216{bottom:348.533973pt;}
.y5_c01216{bottom:349.813840pt;}
.y3_c01216{bottom:350.453973pt;}
.y2a_c01216{bottom:361.333333pt;}
.y29_c01216{bottom:361.333653pt;}
.y28_c01216{bottom:375.094120pt;}
.y27_c01216{bottom:375.094787pt;}
.y26_c01216{bottom:388.215333pt;}
.y25_c01216{bottom:401.654600pt;}
.y24_c01216{bottom:414.773840pt;}
.y23_c01216{bottom:427.894373pt;}
.y22_c01216{bottom:441.334267pt;}
.y21_c01216{bottom:441.335267pt;}
.y20_c01216{bottom:454.774560pt;}
.y1f_c01216{bottom:468.213853pt;}
.y1e_c01216{bottom:481.333093pt;}
.y1c_c01216{bottom:494.774613pt;}
.y1d_c01216{bottom:494.774787pt;}
.y1b_c01216{bottom:507.893840pt;}
.y1a_c01216{bottom:521.334427pt;}
.y19_c01216{bottom:534.773720pt;}
.y18_c01216{bottom:534.773840pt;}
.y17_c01216{bottom:547.894373pt;}
.y16_c01216{bottom:561.334227pt;}
.y15_c01216{bottom:574.453453pt;}
.y14_c01216{bottom:587.573973pt;}
.y13_c01216{bottom:587.574707pt;}
.y12_c01216{bottom:601.014000pt;}
.y11_c01216{bottom:601.014160pt;}
.y10_c01216{bottom:614.774613pt;}
.yf_c01216{bottom:627.893840pt;}
.ye_c01216{bottom:627.894573pt;}
.yd_c01216{bottom:641.333867pt;}
.yc_c01216{bottom:641.334387pt;}
.yb_c01216{bottom:654.773667pt;}
.y2_c01216{bottom:662.774787pt;}
.ya_c01216{bottom:667.894200pt;}
.y9_c01216{bottom:681.013427pt;}
.y8_c01216{bottom:681.014160pt;}
.y7_c01216{bottom:694.453453pt;}
.y6_c01216{bottom:707.573973pt;}
.y4_c01216{bottom:709.813880pt;}
.y1_c01216{bottom:710.774733pt;}
.hc_c01216{height:34.070312pt;}
.h6_c01216{height:38.603516pt;}
.h1_c01216{height:42.529297pt;}
.h9_c01216{height:43.183594pt;}
.h8_c01216{height:43.837891pt;}
.ha_c01216{height:44.492188pt;}
.h4_c01216{height:45.015625pt;}
.h7_c01216{height:45.146484pt;}
.h10_c01216{height:45.800781pt;}
.h17_c01216{height:47.031250pt;}
.h12_c01216{height:47.281250pt;}
.h2_c01216{height:47.763672pt;}
.hf_c01216{height:48.417969pt;}
.h15_c01216{height:48.755208pt;}
.hd_c01216{height:49.072266pt;}
.hb_c01216{height:49.414063pt;}
.h16_c01216{height:50.380859pt;}
.h13_c01216{height:50.731771pt;}
.he_c01216{height:51.035156pt;}
.h14_c01216{height:51.689453pt;}
.h11_c01216{height:52.049479pt;}
.h3_c01216{height:60.195312pt;}
.h5_c01216{height:181.476563pt;}
.h0_c01216{height:793.333333pt;}
.w0_c01216{width:1122.666667pt;}
.x0_c01216{left:0.000000pt;}
.x1_c01216{left:68.159200pt;}
.x6_c01216{left:69.439480pt;}
.x2_c01216{left:85.440000pt;}
.x7_c01216{left:87.358933pt;}
.x8_c01216{left:218.879867pt;}
.x3_c01216{left:222.079067pt;}
.x4_c01216{left:258.559587pt;}
.x9_c01216{left:274.239200pt;}
.x5_c01216{left:282.559587pt;}
.xa_c01216{left:322.558533pt;}
.xb_c01216{left:350.399453pt;}
.xc_c01216{left:363.199173pt;}
.xd_c01216{left:426.238773pt;}
.x10_c01216{left:427.519040pt;}
.xe_c01216{left:443.838907pt;}
.x11_c01216{left:445.439987pt;}
.x12_c01216{left:559.038533pt;}
.xf_c01216{left:604.479453pt;}
.x13_c01216{left:807.679693pt;}
.x29_c01216{left:808.638853pt;}
.x31_c01216{left:809.598773pt;}
.x39_c01216{left:810.877987pt;}
.x23_c01216{left:817.918947pt;}
.x14_c01216{left:823.038493pt;}
.x36_c01216{left:825.919840pt;}
.x1f_c01216{left:840.319333pt;}
.x3a_c01216{left:845.117307pt;}
.x20_c01216{left:849.919840pt;}
.x2a_c01216{left:851.838947pt;}
.x1d_c01216{left:856.319827pt;}
.x1e_c01216{left:864.959467pt;}
.x15_c01216{left:868.798747pt;}
.x3b_c01216{left:872.639573pt;}
.x2b_c01216{left:880.959960pt;}
.x16_c01216{left:884.479987pt;}
.x17_c01216{left:901.119147pt;}
.x2f_c01216{left:905.919440pt;}
.x37_c01216{left:908.799320pt;}
.x18_c01216{left:915.199133pt;}
.x30_c01216{left:918.079027pt;}
.x38_c01216{left:933.758787pt;}
.x27_c01216{left:944.958907pt;}
.x28_c01216{left:956.159173pt;}
.x24_c01216{left:961.278813pt;}
.x21_c01216{left:967.678707pt;}
.x25_c01216{left:981.439453pt;}
.x22_c01216{left:987.199133pt;}
.x1b_c01216{left:988.158693pt;}
.x26_c01216{left:990.719160pt;}
.x32_c01216{left:994.239173pt;}
.x1c_c01216{left:998.078693pt;}
.x2d_c01216{left:1002.878907pt;}
.x33_c01216{left:1009.599613pt;}
.x2e_c01216{left:1011.839280pt;}
.x2c_c01216{left:1032.319333pt;}
.x34_c01216{left:1038.079027pt;}
.x19_c01216{left:1041.599040pt;}
.x35_c01216{left:1051.199707pt;}
.x1a_c01216{left:1054.398920pt;}
}





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

.ir_c01217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_e795c5aef52579060671c60d.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01217;src:url('chunks/assets/font_14035373de359f9358f57633.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01217;src:url('chunks/assets/font_8675a026b7dfde318928cf48.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01217;src:url('chunks/assets/font_e16a2c9334dfbd03865ef639.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01217;src:url('chunks/assets/font_75b2fa100697905b50a68a50.woff2')format("woff");}.ff5_c01217{font-family:ff5_c01217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01217;src:url('chunks/assets/font_88f65447c08615c233cd84f5.woff2')format("woff");}.ff6_c01217{font-family:ff6_c01217;line-height:1.281250;font-style:normal;font-weight: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_c01217;src:url('chunks/assets/font_1ff7699acc811f9b1621b358.woff2')format("woff");}.ff7_c01217{font-family:ff7_c01217;line-height:1.432129;font-style:normal;font-weight: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_c01217;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff8_c01217{font-family:ff8_c01217;line-height:1.364746;font-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_c01217{transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);}
.m20_c01217{transform:matrix(0.164384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164384,0.000000,0.000000,0.250000,0,0);}
.m17_c01217{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m19_c01217{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.m10_c01217{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m18_c01217{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m2_c01217{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m5_c01217{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m1d_c01217{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.mb_c01217{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.ma_c01217{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m4_c01217{transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);}
.m6_c01217{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1f_c01217{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.mc_c01217{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m8_c01217{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m3_c01217{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m12_c01217{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m1e_c01217{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.me_c01217{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.m1a_c01217{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.md_c01217{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m21_c01217{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m14_c01217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01217{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m16_c01217{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m15_c01217{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m1b_c01217{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m23_c01217{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m22_c01217{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m1c_c01217{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m1_c01217{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.mf_c01217{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m0_c01217{transform:matrix(0.282609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282609,0.000000,0.000000,0.250000,0,0);}
.m9_c01217{transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);}
.m11_c01217{transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402597,0.000000,0.000000,0.250000,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.ls2d_c01217{letter-spacing:-13.878578px;}
.lsb_c01217{letter-spacing:-13.177643px;}
.ls28_c01217{letter-spacing:-11.568675px;}
.ls2f_c01217{letter-spacing:-10.265625px;}
.ls1b_c01217{letter-spacing:-8.847300px;}
.ls22_c01217{letter-spacing:-7.823775px;}
.ls2b_c01217{letter-spacing:-6.979725px;}
.ls27_c01217{letter-spacing:-6.170325px;}
.ls31_c01217{letter-spacing:-5.610600px;}
.ls2a_c01217{letter-spacing:-5.042475px;}
.ls17_c01217{letter-spacing:-4.626375px;}
.ls25_c01217{letter-spacing:-3.854400px;}
.ls1e_c01217{letter-spacing:-3.796875px;}
.ls24_c01217{letter-spacing:-3.082425px;}
.ls32_c01217{letter-spacing:-2.878200px;}
.ls26_c01217{letter-spacing:-2.315925px;}
.lse_c01217{letter-spacing:-1.724925px;}
.ls23_c01217{letter-spacing:-1.617525px;}
.ls1f_c01217{letter-spacing:-1.543950px;}
.ls1d_c01217{letter-spacing:-0.771975px;}
.ls30_c01217{letter-spacing:-0.769500px;}
.ls20_c01217{letter-spacing:-0.750600px;}
.ls21_c01217{letter-spacing:-0.721500px;}
.lsd_c01217{letter-spacing:0.000000px;}
.ls29_c01217{letter-spacing:0.771225px;}
.ls4_c01217{letter-spacing:0.771975px;}
.ls2e_c01217{letter-spacing:0.832200px;}
.lsc_c01217{letter-spacing:0.907500px;}
.ls3_c01217{letter-spacing:1.543950px;}
.ls2c_c01217{letter-spacing:1.588298px;}
.ls1c_c01217{letter-spacing:1.613475px;}
.ls0_c01217{letter-spacing:1.714080px;}
.ls5_c01217{letter-spacing:2.315925px;}
.ls1_c01217{letter-spacing:2.572800px;}
.ls18_c01217{letter-spacing:3.152235px;}
.ls12_c01217{letter-spacing:3.207750px;}
.ls14_c01217{letter-spacing:3.427200px;}
.ls16_c01217{letter-spacing:4.137600px;}
.ls2_c01217{letter-spacing:4.285920px;}
.ls11_c01217{letter-spacing:4.430400px;}
.lsf_c01217{letter-spacing:4.431375px;}
.ls6_c01217{letter-spacing:4.626375px;}
.ls10_c01217{letter-spacing:5.140800px;}
.ls13_c01217{letter-spacing:5.200875px;}
.ls9_c01217{letter-spacing:5.398350px;}
.ls15_c01217{letter-spacing:6.110400px;}
.ls8_c01217{letter-spacing:6.170325px;}
.ls1a_c01217{letter-spacing:6.396825px;}
.ls7_c01217{letter-spacing:8.481323px;}
.ls19_c01217{letter-spacing:12.859200px;}
.lsa_c01217{letter-spacing:13.929375px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01217{word-spacing:0.000000px;}
._a_c01217{margin-left:-43.525726px;}
._19_c01217{margin-left:-35.182026px;}
._15_c01217{margin-left:-27.429503px;}
._17_c01217{margin-left:-17.714332px;}
._9_c01217{margin-left:-9.411355px;}
._c_c01217{margin-left:-7.676336px;}
._f_c01217{margin-left:-5.601295px;}
._e_c01217{margin-left:-4.364377px;}
._6_c01217{margin-left:-3.170380px;}
._7_c01217{margin-left:-1.067810px;}
._4_c01217{width:1.040250px;}
._b_c01217{width:2.562547px;}
._5_c01217{width:4.609703px;}
._d_c01217{width:5.929039px;}
._11_c01217{width:7.051106px;}
._10_c01217{width:8.184986px;}
._8_c01217{width:9.636432px;}
._14_c01217{width:11.048858px;}
._12_c01217{width:15.659345px;}
._18_c01217{width:17.432400px;}
._1a_c01217{width:18.877985px;}
._3_c01217{width:19.967589px;}
._2_c01217{width:21.427269px;}
._16_c01217{width:22.770818px;}
._0_c01217{width:25.796983px;}
._1b_c01217{width:27.429548px;}
._1_c01217{width:29.830971px;}
._13_c01217{width:31.153151px;}
.fc0_c01217{color:transparent;}
.fs9_c01217{font-size:46.500000px;}
.fs6_c01217{font-size:48.000000px;}
.fs5_c01217{font-size:48.750000px;}
.fs7_c01217{font-size:50.250000px;}
.fs10_c01217{font-size:52.500000px;}
.fsb_c01217{font-size:53.250000px;}
.fsd_c01217{font-size:54.000000px;}
.fs8_c01217{font-size:54.750000px;}
.fse_c01217{font-size:55.500000px;}
.fsf_c01217{font-size:56.250000px;}
.fs12_c01217{font-size:57.000000px;}
.fsa_c01217{font-size:57.750000px;}
.fs11_c01217{font-size:59.250000px;}
.fsc_c01217{font-size:60.750000px;}
.fs4_c01217{font-size:81.750000px;}
.fs2_c01217{font-size:82.500000px;}
.fs1_c01217{font-size:83.250000px;}
.fs0_c01217{font-size:86.250000px;}
.fs3_c01217{font-size:94.500000px;}
.y0_c01217{bottom:0.000000px;}
.y3b_c01217{bottom:92.223705px;}
.y3a_c01217{bottom:107.342910px;}
.y39_c01217{bottom:137.221440px;}
.y38_c01217{bottom:151.982055px;}
.y37_c01217{bottom:167.101245px;}
.y36_c01217{bottom:197.341095px;}
.y35_c01217{bottom:212.101680px;}
.y34_c01217{bottom:227.220885px;}
.y33_c01217{bottom:242.341560px;}
.y32_c01217{bottom:286.980705px;}
.y31_c01217{bottom:302.459955px;}
.y30_c01217{bottom:302.461095px;}
.y2f_c01217{bottom:317.583030px;}
.y2e_c01217{bottom:332.702220px;}
.y2d_c01217{bottom:347.821425px;}
.y2c_c01217{bottom:362.580555px;}
.y2b_c01217{bottom:362.581185px;}
.y2a_c01217{bottom:377.700390px;}
.y29_c01217{bottom:377.700810px;}
.y4_c01217{bottom:388.501140px;}
.y5_c01217{bottom:388.860390px;}
.y28_c01217{bottom:393.181320px;}
.y27_c01217{bottom:393.181725px;}
.y26_c01217{bottom:407.581005px;}
.y25_c01217{bottom:422.340435px;}
.y24_c01217{bottom:437.459640px;}
.y23_c01217{bottom:452.581560px;}
.y22_c01217{bottom:467.340690px;}
.y21_c01217{bottom:482.461350px;}
.y20_c01217{bottom:497.580555px;}
.y1f_c01217{bottom:512.341140px;}
.y1e_c01217{bottom:512.341965px;}
.y1c_c01217{bottom:527.460990px;}
.y1d_c01217{bottom:527.461170px;}
.y1b_c01217{bottom:542.220105px;}
.y1a_c01217{bottom:557.340180px;}
.y19_c01217{bottom:572.459385px;}
.y18_c01217{bottom:587.219970px;}
.y17_c01217{bottom:602.340630px;}
.y16_c01217{bottom:617.101230px;}
.y15_c01217{bottom:632.221890px;}
.y14_c01217{bottom:646.981035px;}
.y13_c01217{bottom:661.741635px;}
.y12_c01217{bottom:677.220885px;}
.y11_c01217{bottom:692.340090px;}
.y10_c01217{bottom:707.100675px;}
.yf_c01217{bottom:707.101500px;}
.ye_c01217{bottom:721.862085px;}
.yc_c01217{bottom:736.981245px;}
.yd_c01217{bottom:736.981290px;}
.yb_c01217{bottom:751.740375px;}
.ya_c01217{bottom:751.741245px;}
.y9_c01217{bottom:766.860450px;}
.y7_c01217{bottom:781.620960px;}
.y8_c01217{bottom:781.621035px;}
.y2_c01217{bottom:793.860345px;}
.y3_c01217{bottom:794.580510px;}
.y6_c01217{bottom:797.100225px;}
.y1_c01217{bottom:847.140195px;}
.hd_c01217{height:45.637207px;}
.hb_c01217{height:47.085938px;}
.h7_c01217{height:47.109375px;}
.h9_c01217{height:47.845459px;}
.h6_c01217{height:49.130859px;}
.ha_c01217{height:49.317627px;}
.h8_c01217{height:50.062500px;}
.h15_c01217{height:51.525879px;}
.hf_c01217{height:52.261963px;}
.h17_c01217{height:52.409180px;}
.h11_c01217{height:52.998047px;}
.hc_c01217{height:53.734131px;}
.h13_c01217{height:54.108398px;}
.h12_c01217{height:54.470215px;}
.h14_c01217{height:55.206299px;}
.h18_c01217{height:55.942383px;}
.he_c01217{height:56.650269px;}
.h16_c01217{height:58.150635px;}
.h10_c01217{height:63.360352px;}
.h2_c01217{height:82.274414px;}
.h5_c01217{height:82.388672px;}
.h3_c01217{height:83.144531px;}
.h1_c01217{height:86.923828px;}
.h4_c01217{height:93.392578px;}
.h0_c01217{height:892.500000px;}
.w0_c01217{width:1263.000000px;}
.x0_c01217{left:0.000000px;}
.x1_c01217{left:69.838515px;}
.xd_c01217{left:72.359850px;}
.x6_c01217{left:88.918350px;}
.xe_c01217{left:91.798950px;}
.x2_c01217{left:158.040000px;}
.xf_c01217{left:178.199415px;}
.x3_c01217{left:200.159850px;}
.x10_c01217{left:239.399250px;}
.x7_c01217{left:241.559685px;}
.x8_c01217{left:282.959400px;}
.x4_c01217{left:300.599100px;}
.x11_c01217{left:302.759535px;}
.x9_c01217{left:310.679700px;}
.x5_c01217{left:339.479235px;}
.x12_c01217{left:356.759535px;}
.x13_c01217{left:388.439715px;}
.x14_c01217{left:403.198785px;}
.xa_c01217{left:473.038920px;}
.x15_c01217{left:475.558635px;}
.xb_c01217{left:492.838950px;}
.x16_c01217{left:495.719565px;}
.x17_c01217{left:624.239820px;}
.xc_c01217{left:675.000000px;}
.x24_c01217{left:915.477900px;}
.x18_c01217{left:916.559685px;}
.x29_c01217{left:917.641065px;}
.x2a_c01217{left:918.718500px;}
.x33_c01217{left:919.799010px;}
.x3f_c01217{left:920.880645px;}
.x27_c01217{left:932.759040px;}
.x19_c01217{left:934.199340px;}
.x2b_c01217{left:935.639655px;}
.x25_c01217{left:937.798560px;}
.x34_c01217{left:939.238770px;}
.x26_c01217{left:948.599115px;}
.x41_c01217{left:960.119220px;}
.x42_c01217{left:961.199895px;}
.x20_c01217{left:965.518620px;}
.x30_c01217{left:978.118740px;}
.x21_c01217{left:982.798920px;}
.x2c_c01217{left:983.878320px;}
.x31_c01217{left:987.838530px;}
.x2d_c01217{left:997.559685px;}
.x3b_c01217{left:1008.358605px;}
.x37_c01217{left:1015.919490px;}
.x39_c01217{left:1020.958920px;}
.x2e_c01217{left:1022.039985px;}
.x3c_c01217{left:1031.759490px;}
.x38_c01217{left:1035.358605px;}
.x35_c01217{left:1039.679715px;}
.x2f_c01217{left:1042.919490px;}
.x3a_c01217{left:1047.958920px;}
.x1e_c01217{left:1050.839535px;}
.x32_c01217{left:1061.999355px;}
.x1f_c01217{left:1065.239220px;}
.x36_c01217{left:1068.838530px;}
.x3d_c01217{left:1077.839535px;}
.x22_c01217{left:1095.119940px;}
.x3e_c01217{left:1096.199340px;}
.x1a_c01217{left:1103.039985px;}
.x40_c01217{left:1106.279850px;}
.x23_c01217{left:1108.438665px;}
.x28_c01217{left:1119.598575px;}
.x1c_c01217{left:1121.038875px;}
.x1d_c01217{left:1134.359250px;}
.x1b_c01217{left:1148.038875px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls2d_c01217{letter-spacing:-12.336513pt;}
.lsb_c01217{letter-spacing:-11.713460pt;}
.ls28_c01217{letter-spacing:-10.283267pt;}
.ls2f_c01217{letter-spacing:-9.125000pt;}
.ls1b_c01217{letter-spacing:-7.864267pt;}
.ls22_c01217{letter-spacing:-6.954467pt;}
.ls2b_c01217{letter-spacing:-6.204200pt;}
.ls27_c01217{letter-spacing:-5.484733pt;}
.ls31_c01217{letter-spacing:-4.987200pt;}
.ls2a_c01217{letter-spacing:-4.482200pt;}
.ls17_c01217{letter-spacing:-4.112333pt;}
.ls25_c01217{letter-spacing:-3.426133pt;}
.ls1e_c01217{letter-spacing:-3.375000pt;}
.ls24_c01217{letter-spacing:-2.739933pt;}
.ls32_c01217{letter-spacing:-2.558400pt;}
.ls26_c01217{letter-spacing:-2.058600pt;}
.lse_c01217{letter-spacing:-1.533267pt;}
.ls23_c01217{letter-spacing:-1.437800pt;}
.ls1f_c01217{letter-spacing:-1.372400pt;}
.ls1d_c01217{letter-spacing:-0.686200pt;}
.ls30_c01217{letter-spacing:-0.684000pt;}
.ls20_c01217{letter-spacing:-0.667200pt;}
.ls21_c01217{letter-spacing:-0.641333pt;}
.lsd_c01217{letter-spacing:0.000000pt;}
.ls29_c01217{letter-spacing:0.685533pt;}
.ls4_c01217{letter-spacing:0.686200pt;}
.ls2e_c01217{letter-spacing:0.739733pt;}
.lsc_c01217{letter-spacing:0.806667pt;}
.ls3_c01217{letter-spacing:1.372400pt;}
.ls2c_c01217{letter-spacing:1.411820pt;}
.ls1c_c01217{letter-spacing:1.434200pt;}
.ls0_c01217{letter-spacing:1.523627pt;}
.ls5_c01217{letter-spacing:2.058600pt;}
.ls1_c01217{letter-spacing:2.286933pt;}
.ls18_c01217{letter-spacing:2.801987pt;}
.ls12_c01217{letter-spacing:2.851333pt;}
.ls14_c01217{letter-spacing:3.046400pt;}
.ls16_c01217{letter-spacing:3.677867pt;}
.ls2_c01217{letter-spacing:3.809707pt;}
.ls11_c01217{letter-spacing:3.938133pt;}
.lsf_c01217{letter-spacing:3.939000pt;}
.ls6_c01217{letter-spacing:4.112333pt;}
.ls10_c01217{letter-spacing:4.569600pt;}
.ls13_c01217{letter-spacing:4.623000pt;}
.ls9_c01217{letter-spacing:4.798533pt;}
.ls15_c01217{letter-spacing:5.431467pt;}
.ls8_c01217{letter-spacing:5.484733pt;}
.ls1a_c01217{letter-spacing:5.686067pt;}
.ls7_c01217{letter-spacing:7.538953pt;}
.ls19_c01217{letter-spacing:11.430400pt;}
.lsa_c01217{letter-spacing:12.381667pt;}
.ws0_c01217{word-spacing:0.000000pt;}
._a_c01217{margin-left:-38.689534pt;}
._19_c01217{margin-left:-31.272912pt;}
._15_c01217{margin-left:-24.381781pt;}
._17_c01217{margin-left:-15.746073pt;}
._9_c01217{margin-left:-8.365649pt;}
._c_c01217{margin-left:-6.823409pt;}
._f_c01217{margin-left:-4.978929pt;}
._e_c01217{margin-left:-3.879446pt;}
._6_c01217{margin-left:-2.818115pt;}
._7_c01217{margin-left:-0.949165pt;}
._4_c01217{width:0.924667pt;}
._b_c01217{width:2.277819pt;}
._5_c01217{width:4.097514pt;}
._d_c01217{width:5.270257pt;}
._11_c01217{width:6.267650pt;}
._10_c01217{width:7.275543pt;}
._8_c01217{width:8.565717pt;}
._14_c01217{width:9.821208pt;}
._12_c01217{width:13.919418pt;}
._18_c01217{width:15.495467pt;}
._1a_c01217{width:16.780431pt;}
._3_c01217{width:17.748968pt;}
._2_c01217{width:19.046461pt;}
._16_c01217{width:20.240727pt;}
._0_c01217{width:22.930651pt;}
._1b_c01217{width:24.381821pt;}
._1_c01217{width:26.516419pt;}
._13_c01217{width:27.691690pt;}
.fs9_c01217{font-size:41.333333pt;}
.fs6_c01217{font-size:42.666667pt;}
.fs5_c01217{font-size:43.333333pt;}
.fs7_c01217{font-size:44.666667pt;}
.fs10_c01217{font-size:46.666667pt;}
.fsb_c01217{font-size:47.333333pt;}
.fsd_c01217{font-size:48.000000pt;}
.fs8_c01217{font-size:48.666667pt;}
.fse_c01217{font-size:49.333333pt;}
.fsf_c01217{font-size:50.000000pt;}
.fs12_c01217{font-size:50.666667pt;}
.fsa_c01217{font-size:51.333333pt;}
.fs11_c01217{font-size:52.666667pt;}
.fsc_c01217{font-size:54.000000pt;}
.fs4_c01217{font-size:72.666667pt;}
.fs2_c01217{font-size:73.333333pt;}
.fs1_c01217{font-size:74.000000pt;}
.fs0_c01217{font-size:76.666667pt;}
.fs3_c01217{font-size:84.000000pt;}
.y0_c01217{bottom:0.000000pt;}
.y3b_c01217{bottom:81.976627pt;}
.y3a_c01217{bottom:95.415920pt;}
.y39_c01217{bottom:121.974613pt;}
.y38_c01217{bottom:135.095160pt;}
.y37_c01217{bottom:148.534440pt;}
.y36_c01217{bottom:175.414307pt;}
.y35_c01217{bottom:188.534827pt;}
.y34_c01217{bottom:201.974120pt;}
.y33_c01217{bottom:215.414720pt;}
.y32_c01217{bottom:255.093960pt;}
.y31_c01217{bottom:268.853293pt;}
.y30_c01217{bottom:268.854307pt;}
.y2f_c01217{bottom:282.296027pt;}
.y2e_c01217{bottom:295.735307pt;}
.y2d_c01217{bottom:309.174600pt;}
.y2c_c01217{bottom:322.293827pt;}
.y2b_c01217{bottom:322.294387pt;}
.y2a_c01217{bottom:335.733680pt;}
.y29_c01217{bottom:335.734053pt;}
.y4_c01217{bottom:345.334347pt;}
.y5_c01217{bottom:345.653680pt;}
.y28_c01217{bottom:349.494507pt;}
.y27_c01217{bottom:349.494867pt;}
.y26_c01217{bottom:362.294227pt;}
.y25_c01217{bottom:375.413720pt;}
.y24_c01217{bottom:388.853013pt;}
.y23_c01217{bottom:402.294720pt;}
.y22_c01217{bottom:415.413947pt;}
.y21_c01217{bottom:428.854533pt;}
.y20_c01217{bottom:442.293827pt;}
.y1f_c01217{bottom:455.414347pt;}
.y1e_c01217{bottom:455.415080pt;}
.y1c_c01217{bottom:468.854213pt;}
.y1d_c01217{bottom:468.854373pt;}
.y1b_c01217{bottom:481.973427pt;}
.y1a_c01217{bottom:495.413493pt;}
.y19_c01217{bottom:508.852787pt;}
.y18_c01217{bottom:521.973307pt;}
.y17_c01217{bottom:535.413893pt;}
.y16_c01217{bottom:548.534427pt;}
.y15_c01217{bottom:561.975013pt;}
.y14_c01217{bottom:575.094253pt;}
.y13_c01217{bottom:588.214787pt;}
.y12_c01217{bottom:601.974120pt;}
.y11_c01217{bottom:615.413413pt;}
.y10_c01217{bottom:628.533933pt;}
.yf_c01217{bottom:628.534667pt;}
.ye_c01217{bottom:641.655187pt;}
.yc_c01217{bottom:655.094440pt;}
.yd_c01217{bottom:655.094480pt;}
.yb_c01217{bottom:668.213667pt;}
.ya_c01217{bottom:668.214440pt;}
.y9_c01217{bottom:681.653733pt;}
.y7_c01217{bottom:694.774187pt;}
.y8_c01217{bottom:694.774253pt;}
.y2_c01217{bottom:705.653640pt;}
.y3_c01217{bottom:706.293787pt;}
.y6_c01217{bottom:708.533533pt;}
.y1_c01217{bottom:753.013507pt;}
.hd_c01217{height:40.566406pt;}
.hb_c01217{height:41.854167pt;}
.h7_c01217{height:41.875000pt;}
.h9_c01217{height:42.529297pt;}
.h6_c01217{height:43.671875pt;}
.ha_c01217{height:43.837891pt;}
.h8_c01217{height:44.500000pt;}
.h15_c01217{height:45.800781pt;}
.hf_c01217{height:46.455078pt;}
.h17_c01217{height:46.585938pt;}
.h11_c01217{height:47.109375pt;}
.hc_c01217{height:47.763672pt;}
.h13_c01217{height:48.096354pt;}
.h12_c01217{height:48.417969pt;}
.h14_c01217{height:49.072266pt;}
.h18_c01217{height:49.726562pt;}
.he_c01217{height:50.355794pt;}
.h16_c01217{height:51.689453pt;}
.h10_c01217{height:56.320312pt;}
.h2_c01217{height:73.132813pt;}
.h5_c01217{height:73.234375pt;}
.h3_c01217{height:73.906250pt;}
.h1_c01217{height:77.265625pt;}
.h4_c01217{height:83.015625pt;}
.h0_c01217{height:793.333333pt;}
.w0_c01217{width:1122.666667pt;}
.x0_c01217{left:0.000000pt;}
.x1_c01217{left:62.078680pt;}
.xd_c01217{left:64.319867pt;}
.x6_c01217{left:79.038533pt;}
.xe_c01217{left:81.599067pt;}
.x2_c01217{left:140.480000pt;}
.xf_c01217{left:158.399480pt;}
.x3_c01217{left:177.919867pt;}
.x10_c01217{left:212.799333pt;}
.x7_c01217{left:214.719720pt;}
.x8_c01217{left:251.519467pt;}
.x4_c01217{left:267.199200pt;}
.x11_c01217{left:269.119587pt;}
.x9_c01217{left:276.159733pt;}
.x5_c01217{left:301.759320pt;}
.x12_c01217{left:317.119587pt;}
.x13_c01217{left:345.279747pt;}
.x14_c01217{left:358.398920pt;}
.xa_c01217{left:420.479040pt;}
.x15_c01217{left:422.718787pt;}
.xb_c01217{left:438.079067pt;}
.x16_c01217{left:440.639613pt;}
.x17_c01217{left:554.879840pt;}
.xc_c01217{left:600.000000pt;}
.x24_c01217{left:813.758133pt;}
.x18_c01217{left:814.719720pt;}
.x29_c01217{left:815.680947pt;}
.x2a_c01217{left:816.638667pt;}
.x33_c01217{left:817.599120pt;}
.x3f_c01217{left:818.560573pt;}
.x27_c01217{left:829.119147pt;}
.x19_c01217{left:830.399413pt;}
.x2b_c01217{left:831.679693pt;}
.x25_c01217{left:833.598720pt;}
.x34_c01217{left:834.878907pt;}
.x26_c01217{left:843.199213pt;}
.x41_c01217{left:853.439307pt;}
.x42_c01217{left:854.399907pt;}
.x20_c01217{left:858.238773pt;}
.x30_c01217{left:869.438880pt;}
.x21_c01217{left:873.599040pt;}
.x2c_c01217{left:874.558507pt;}
.x31_c01217{left:878.078693pt;}
.x2d_c01217{left:886.719720pt;}
.x3b_c01217{left:896.318760pt;}
.x37_c01217{left:903.039547pt;}
.x39_c01217{left:907.519040pt;}
.x2e_c01217{left:908.479987pt;}
.x3c_c01217{left:917.119547pt;}
.x38_c01217{left:920.318760pt;}
.x35_c01217{left:924.159747pt;}
.x2f_c01217{left:927.039547pt;}
.x3a_c01217{left:931.519040pt;}
.x1e_c01217{left:934.079587pt;}
.x32_c01217{left:943.999427pt;}
.x1f_c01217{left:946.879307pt;}
.x36_c01217{left:950.078693pt;}
.x3d_c01217{left:958.079587pt;}
.x22_c01217{left:973.439947pt;}
.x3e_c01217{left:974.399413pt;}
.x1a_c01217{left:980.479987pt;}
.x40_c01217{left:983.359867pt;}
.x23_c01217{left:985.278813pt;}
.x28_c01217{left:995.198733pt;}
.x1c_c01217{left:996.479000pt;}
.x1d_c01217{left:1008.319333pt;}
.x1b_c01217{left:1020.479000pt;}
}





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

.ir_c01218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_b5d6656eae32568ba94ebf8e.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01218;src:url('chunks/assets/font_93f8c5e91390ec8dbe90b41b.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01218;src:url('chunks/assets/font_97ee3447850835e486bd268a.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01218;src:url('chunks/assets/font_d514b0e862293aaa9e8222b2.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01218;src:url('chunks/assets/font_8074e6210a5aa99ae7a26f47.woff2')format("woff");}.ff5_c01218{font-family:ff5_c01218;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01218;src:url('chunks/assets/font_33ef8c671a2051017f0e4735.woff2')format("woff");}.ff6_c01218{font-family:ff6_c01218;line-height:1.432129;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_c47d730d9e9c6aa588e835ab.woff2')format("woff");}.ff7_c01218{font-family:ff7_c01218;line-height:1.281250;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_7707b01306ace607cab00e29.woff2')format("woff");}.ff8_c01218{font-family:ff8_c01218;line-height:1.284180;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_b45fc040abaf017151af9497.woff2')format("woff");}.ff9_c01218{font-family:ff9_c01218;line-height:1.284180;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_24fa43eb3b62ac4854cc8e67.woff2')format("woff");}.ffa_c01218{font-family:ffa_c01218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01218;src:url('chunks/assets/font_d4a022375a6bcf806f739a02.woff2')format("woff");}.ffb_c01218{font-family:ffb_c01218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4b_c01218{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m5c_c01218{transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167857,0.000000,0.000000,0.250000,0,0);}
.m4f_c01218{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m18_c01218{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m4c_c01218{transform:matrix(0.174342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174342,0.000000,0.000000,0.250000,0,0);}
.m39_c01218{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);}
.m13_c01218{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m20_c01218{transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);}
.m56_c01218{transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192857,0.000000,0.000000,0.250000,0,0);}
.m64_c01218{transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193333,0.000000,0.000000,0.250000,0,0);}
.m52_c01218{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.m1f_c01218{transform:matrix(0.196203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196203,0.000000,0.000000,0.250000,0,0);}
.m3a_c01218{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m31_c01218{transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203333,0.000000,0.000000,0.250000,0,0);}
.m24_c01218{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m4_c01218{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m12_c01218{transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205696,0.000000,0.000000,0.250000,0,0);}
.m1a_c01218{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m4d_c01218{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.m33_c01218{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m53_c01218{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m30_c01218{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m3d_c01218{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.mb_c01218{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m37_c01218{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m50_c01218{transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211806,0.000000,0.000000,0.250000,0,0);}
.m2f_c01218{transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);}
.m46_c01218{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m41_c01218{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m5b_c01218{transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216216,0.000000,0.000000,0.250000,0,0);}
.m4a_c01218{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m5a_c01218{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m45_c01218{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m5d_c01218{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m35_c01218{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m14_c01218{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.m68_c01218{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m1d_c01218{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m51_c01218{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m0_c01218{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m5e_c01218{transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);}
.m1c_c01218{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m22_c01218{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m2e_c01218{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m2a_c01218{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m44_c01218{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m2c_c01218{transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);}
.m1b_c01218{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m65_c01218{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m3e_c01218{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m42_c01218{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m59_c01218{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m10_c01218{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m5_c01218{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m48_c01218{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.me_c01218{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m15_c01218{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m19_c01218{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m63_c01218{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m1_c01218{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m57_c01218{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m21_c01218{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m58_c01218{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m4e_c01218{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m29_c01218{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m38_c01218{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m7_c01218{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m3_c01218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m26_c01218{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m34_c01218{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m3b_c01218{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m36_c01218{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m55_c01218{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m54_c01218{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m67_c01218{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m49_c01218{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m5f_c01218{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m3c_c01218{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.mf_c01218{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m2d_c01218{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m40_c01218{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);}
.m60_c01218{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m2_c01218{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m1e_c01218{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m6_c01218{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m66_c01218{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m17_c01218{transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265432,0.000000,0.000000,0.250000,0,0);}
.m61_c01218{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m28_c01218{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m25_c01218{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m27_c01218{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m8_c01218{transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);}
.mc_c01218{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.md_c01218{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.m32_c01218{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m23_c01218{transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);}
.m11_c01218{transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280405,0.000000,0.000000,0.250000,0,0);}
.ma_c01218{transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);}
.m47_c01218{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m9_c01218{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m16_c01218{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m2b_c01218{transform:matrix(0.320501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320501,0.000000,0.000000,0.250000,0,0);}
.m3f_c01218{transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344156,0.000000,0.000000,0.250000,0,0);}
.m62_c01218{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);}
.m43_c01218{transform:matrix(0.383523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383523,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.ls81_c01218{letter-spacing:-27.297900px;}
.ls2a_c01218{letter-spacing:-25.429343px;}
.ls3a_c01218{letter-spacing:-21.471450px;}
.ls69_c01218{letter-spacing:-17.561400px;}
.ls55_c01218{letter-spacing:-17.361450px;}
.ls2d_c01218{letter-spacing:-15.850673px;}
.ls17_c01218{letter-spacing:-15.102203px;}
.ls66_c01218{letter-spacing:-13.908210px;}
.ls5b_c01218{letter-spacing:-12.647700px;}
.ls19_c01218{letter-spacing:-12.220298px;}
.ls3d_c01218{letter-spacing:-10.084950px;}
.ls4e_c01218{letter-spacing:-9.927803px;}
.ls75_c01218{letter-spacing:-9.231743px;}
.ls5d_c01218{letter-spacing:-9.187500px;}
.ls8c_c01218{letter-spacing:-9.123750px;}
.ls1d_c01218{letter-spacing:-8.581950px;}
.ls30_c01218{letter-spacing:-8.280600px;}
.ls8b_c01218{letter-spacing:-7.922325px;}
.ls24_c01218{letter-spacing:-7.846988px;}
.ls32_c01218{letter-spacing:-7.643250px;}
.ls22_c01218{letter-spacing:-7.600478px;}
.ls25_c01218{letter-spacing:-7.582875px;}
.ls36_c01218{letter-spacing:-7.375125px;}
.ls21_c01218{letter-spacing:-7.293083px;}
.ls65_c01218{letter-spacing:-7.218750px;}
.ls5f_c01218{letter-spacing:-7.205648px;}
.ls3c_c01218{letter-spacing:-6.991425px;}
.ls33_c01218{letter-spacing:-6.849728px;}
.ls51_c01218{letter-spacing:-6.840000px;}
.ls70_c01218{letter-spacing:-6.618720px;}
.ls62_c01218{letter-spacing:-6.577800px;}
.ls61_c01218{letter-spacing:-6.481853px;}
.ls31_c01218{letter-spacing:-6.412500px;}
.ls5c_c01218{letter-spacing:-6.170700px;}
.ls77_c01218{letter-spacing:-6.085800px;}
.ls8d_c01218{letter-spacing:-6.081900px;}
.ls4b_c01218{letter-spacing:-5.765175px;}
.ls7b_c01218{letter-spacing:-5.586000px;}
.ls6b_c01218{letter-spacing:-5.557125px;}
.ls6d_c01218{letter-spacing:-5.499450px;}
.ls2b_c01218{letter-spacing:-5.454000px;}
.ls58_c01218{letter-spacing:-5.445825px;}
.ls52_c01218{letter-spacing:-5.252625px;}
.ls53_c01218{letter-spacing:-5.209313px;}
.ls29_c01218{letter-spacing:-5.078700px;}
.ls1e_c01218{letter-spacing:-5.052548px;}
.ls23_c01218{letter-spacing:-5.042475px;}
.ls2e_c01218{letter-spacing:-4.763798px;}
.ls35_c01218{letter-spacing:-4.569600px;}
.ls6c_c01218{letter-spacing:-4.561875px;}
.ls7c_c01218{letter-spacing:-4.500000px;}
.ls15_c01218{letter-spacing:-4.498200px;}
.ls79_c01218{letter-spacing:-4.497075px;}
.ls48_c01218{letter-spacing:-4.476000px;}
.ls80_c01218{letter-spacing:-4.323450px;}
.ls28_c01218{letter-spacing:-4.319775px;}
.ls71_c01218{letter-spacing:-4.275000px;}
.ls27_c01218{letter-spacing:-4.066875px;}
.ls2c_c01218{letter-spacing:-3.866310px;}
.ls26_c01218{letter-spacing:-3.865455px;}
.ls43_c01218{letter-spacing:-3.802500px;}
.ls89_c01218{letter-spacing:-3.656318px;}
.ls1b_c01218{letter-spacing:-3.602550px;}
.ls37_c01218{letter-spacing:-3.355853px;}
.ls20_c01218{letter-spacing:-3.341100px;}
.ls2f_c01218{letter-spacing:-3.289500px;}
.ls78_c01218{letter-spacing:-3.135990px;}
.ls46_c01218{letter-spacing:-3.037500px;}
.ls50_c01218{letter-spacing:-2.999423px;}
.lse_c01218{letter-spacing:-2.998125px;}
.ls39_c01218{letter-spacing:-2.998050px;}
.ls44_c01218{letter-spacing:-2.884200px;}
.ls1a_c01218{letter-spacing:-2.879850px;}
.ls3b_c01218{letter-spacing:-2.763675px;}
.lsf_c01218{letter-spacing:-2.749478px;}
.ls13_c01218{letter-spacing:-2.747400px;}
.ls1c_c01218{letter-spacing:-2.711250px;}
.lsa_c01218{letter-spacing:-2.480625px;}
.ls7e_c01218{letter-spacing:-2.479500px;}
.ls60_c01218{letter-spacing:-2.343270px;}
.lsb_c01218{letter-spacing:-2.311335px;}
.ls3e_c01218{letter-spacing:-2.278125px;}
.ls5e_c01218{letter-spacing:-2.252070px;}
.ls4d_c01218{letter-spacing:-2.247750px;}
.ls54_c01218{letter-spacing:-2.217375px;}
.ls59_c01218{letter-spacing:-2.165625px;}
.ls14_c01218{letter-spacing:-2.163173px;}
.ls11_c01218{letter-spacing:-2.136750px;}
.ls38_c01218{letter-spacing:-2.079953px;}
.ls4c_c01218{letter-spacing:-2.025750px;}
.ls16_c01218{letter-spacing:-1.970250px;}
.ls47_c01218{letter-spacing:-1.767300px;}
.ls87_c01218{letter-spacing:-1.586250px;}
.ls84_c01218{letter-spacing:-1.543860px;}
.ls42_c01218{letter-spacing:-1.518188px;}
.ls76_c01218{letter-spacing:-1.501875px;}
.ls4f_c01218{letter-spacing:-1.481850px;}
.lsd_c01218{letter-spacing:-1.440473px;}
.ls6f_c01218{letter-spacing:-0.885600px;}
.ls7a_c01218{letter-spacing:-0.866400px;}
.ls86_c01218{letter-spacing:-0.826500px;}
.ls41_c01218{letter-spacing:-0.799875px;}
.ls72_c01218{letter-spacing:-0.793875px;}
.ls57_c01218{letter-spacing:-0.792300px;}
.ls82_c01218{letter-spacing:-0.775200px;}
.ls3f_c01218{letter-spacing:-0.759375px;}
.ls18_c01218{letter-spacing:-0.750000px;}
.ls63_c01218{letter-spacing:-0.723900px;}
.lsc_c01218{letter-spacing:-0.722700px;}
.ls88_c01218{letter-spacing:-0.708758px;}
.ls12_c01218{letter-spacing:0.000000px;}
.ls3_c01218{letter-spacing:0.722700px;}
.ls7f_c01218{letter-spacing:0.729525px;}
.ls73_c01218{letter-spacing:0.750825px;}
.ls4_c01218{letter-spacing:0.759375px;}
.ls85_c01218{letter-spacing:0.792300px;}
.ls40_c01218{letter-spacing:0.804375px;}
.ls49_c01218{letter-spacing:0.922500px;}
.ls74_c01218{letter-spacing:0.970725px;}
.ls2_c01218{letter-spacing:1.440473px;}
.ls83_c01218{letter-spacing:1.501200px;}
.ls8_c01218{letter-spacing:1.518188px;}
.ls10_c01218{letter-spacing:1.565303px;}
.ls7d_c01218{letter-spacing:1.698600px;}
.ls34_c01218{letter-spacing:2.163173px;}
.ls0_c01218{letter-spacing:2.879850px;}
.ls6_c01218{letter-spacing:3.037500px;}
.ls1f_c01218{letter-spacing:3.131633px;}
.ls67_c01218{letter-spacing:3.802500px;}
.ls8a_c01218{letter-spacing:4.158293px;}
.ls6a_c01218{letter-spacing:4.303500px;}
.ls1_c01218{letter-spacing:4.319775px;}
.ls5_c01218{letter-spacing:4.561875px;}
.ls6e_c01218{letter-spacing:5.321250px;}
.ls56_c01218{letter-spacing:6.840000px;}
.ls7_c01218{letter-spacing:8.645025px;}
.ls45_c01218{letter-spacing:8.846145px;}
.ls68_c01218{letter-spacing:9.123750px;}
.ls9_c01218{letter-spacing:10.084950px;}
.ls4a_c01218{letter-spacing:16.723125px;}
.ls5a_c01218{letter-spacing:17.578125px;}
.ls64_c01218{letter-spacing:19.017390px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01218{word-spacing:0.000000px;}
._1e_c01218{margin-left:-135.016997px;}
._1c_c01218{margin-left:-34.786277px;}
._22_c01218{margin-left:-33.530230px;}
._21_c01218{margin-left:-28.720254px;}
._23_c01218{margin-left:-26.003180px;}
._1a_c01218{margin-left:-20.199709px;}
._26_c01218{margin-left:-17.617774px;}
._20_c01218{margin-left:-11.294970px;}
._13_c01218{margin-left:-9.266553px;}
._9_c01218{margin-left:-7.774442px;}
._11_c01218{margin-left:-5.786672px;}
._18_c01218{margin-left:-4.710978px;}
._12_c01218{margin-left:-3.601513px;}
._0_c01218{margin-left:-2.343185px;}
._a_c01218{margin-left:-1.288383px;}
._7_c01218{width:1.041316px;}
._b_c01218{width:2.245759px;}
._6_c01218{width:3.285000px;}
._3_c01218{width:4.376225px;}
._5_c01218{width:5.740365px;}
._19_c01218{width:6.887060px;}
._8_c01218{width:7.966240px;}
._14_c01218{width:9.034038px;}
._4_c01218{width:10.344292px;}
._c_c01218{width:12.131649px;}
._2_c01218{width:13.349808px;}
._1_c01218{width:14.422677px;}
._f_c01218{width:15.718437px;}
._1b_c01218{width:17.551150px;}
._17_c01218{width:18.702542px;}
._d_c01218{width:19.891856px;}
._e_c01218{width:21.281123px;}
._24_c01218{width:22.852189px;}
._16_c01218{width:24.172759px;}
._15_c01218{width:28.815761px;}
._25_c01218{width:30.149666px;}
._1f_c01218{width:33.199190px;}
._10_c01218{width:36.096733px;}
._27_c01218{width:37.912439px;}
._1d_c01218{width:40.067240px;}
.fc0_c01218{color:transparent;}
.fs1a_c01218{font-size:36.000000px;}
.fs15_c01218{font-size:36.750000px;}
.fs16_c01218{font-size:48.000000px;}
.fs14_c01218{font-size:48.750000px;}
.fsc_c01218{font-size:49.500000px;}
.fs9_c01218{font-size:50.250000px;}
.fse_c01218{font-size:51.000000px;}
.fsf_c01218{font-size:51.750000px;}
.fs18_c01218{font-size:52.500000px;}
.fs7_c01218{font-size:53.250000px;}
.fs6_c01218{font-size:54.000000px;}
.fs2_c01218{font-size:54.750000px;}
.fs10_c01218{font-size:54.763200px;}
.fs4_c01218{font-size:55.500000px;}
.fs0_c01218{font-size:56.250000px;}
.fs5_c01218{font-size:57.000000px;}
.fs3_c01218{font-size:57.750000px;}
.fs1_c01218{font-size:58.500000px;}
.fsa_c01218{font-size:59.250000px;}
.fs8_c01218{font-size:60.000000px;}
.fsd_c01218{font-size:60.750000px;}
.fs12_c01218{font-size:61.500000px;}
.fs19_c01218{font-size:63.000000px;}
.fsb_c01218{font-size:63.750000px;}
.fs11_c01218{font-size:64.500000px;}
.fs13_c01218{font-size:66.000000px;}
.fs17_c01218{font-size:86.250000px;}
.y0_c01218{bottom:0.000000px;}
.y69_c01218{bottom:41.100060px;}
.y6a_c01218{bottom:41.100285px;}
.ya0_c01218{bottom:42.901500px;}
.y35_c01218{bottom:45.421185px;}
.y68_c01218{bottom:62.701485px;}
.y9f_c01218{bottom:63.421650px;}
.y33_c01218{bottom:66.661440px;}
.y34_c01218{bottom:66.661485px;}
.y67_c01218{bottom:83.581050px;}
.y31_c01218{bottom:87.899775px;}
.y32_c01218{bottom:87.900285px;}
.y66_c01218{bottom:104.460600px;}
.y9d_c01218{bottom:105.541170px;}
.y9e_c01218{bottom:105.541650px;}
.y30_c01218{bottom:108.781500px;}
.y2f_c01218{bottom:108.782595px;}
.y64_c01218{bottom:125.700645px;}
.y65_c01218{bottom:125.701035px;}
.y9c_c01218{bottom:126.421185px;}
.y2e_c01218{bottom:129.661605px;}
.y63_c01218{bottom:147.300585px;}
.y9b_c01218{bottom:147.300960px;}
.y2d_c01218{bottom:150.901905px;}
.y62_c01218{bottom:168.180150px;}
.y61_c01218{bottom:168.180495px;}
.y9a_c01218{bottom:169.261185px;}
.y2c_c01218{bottom:171.780900px;}
.y60_c01218{bottom:189.420600px;}
.y99_c01218{bottom:190.140750px;}
.y2a_c01218{bottom:193.021275px;}
.y2b_c01218{bottom:193.021335px;}
.y5f_c01218{bottom:210.661035px;}
.y5e_c01218{bottom:210.661395px;}
.y97_c01218{bottom:211.380930px;}
.y98_c01218{bottom:211.381185px;}
.y29_c01218{bottom:213.541650px;}
.y28_c01218{bottom:213.542205px;}
.y5d_c01218{bottom:231.901500px;}
.y5c_c01218{bottom:231.901890px;}
.y96_c01218{bottom:232.980885px;}
.y27_c01218{bottom:234.421185px;}
.y26_c01218{bottom:234.421605px;}
.y5b_c01218{bottom:252.780870px;}
.y5a_c01218{bottom:252.781245px;}
.y95_c01218{bottom:253.860285px;}
.y25_c01218{bottom:255.300585px;}
.y24_c01218{bottom:255.301140px;}
.y59_c01218{bottom:274.021335px;}
.y58_c01218{bottom:274.021890px;}
.y94_c01218{bottom:275.100750px;}
.y93_c01218{bottom:275.101290px;}
.y23_c01218{bottom:276.180135px;}
.y57_c01218{bottom:294.900885px;}
.y56_c01218{bottom:294.901500px;}
.y92_c01218{bottom:295.980285px;}
.y91_c01218{bottom:295.980630px;}
.y21_c01218{bottom:297.060750px;}
.y22_c01218{bottom:297.061335px;}
.y55_c01218{bottom:316.861500px;}
.y8f_c01218{bottom:317.220495px;}
.y90_c01218{bottom:317.220720px;}
.y53_c01218{bottom:338.099625px;}
.y54_c01218{bottom:338.100285px;}
.y8e_c01218{bottom:338.820435px;}
.y20_c01218{bottom:339.539910px;}
.y52_c01218{bottom:358.981335px;}
.y51_c01218{bottom:358.981770px;}
.y8d_c01218{bottom:360.060750px;}
.y8c_c01218{bottom:360.061290px;}
.y1f_c01218{bottom:360.421620px;}
.y50_c01218{bottom:379.860780px;}
.y8b_c01218{bottom:380.940285px;}
.y1e_c01218{bottom:380.940420px;}
.y4f_c01218{bottom:400.381170px;}
.y4e_c01218{bottom:400.381320px;}
.yba_c01218{bottom:401.460570px;}
.y8a_c01218{bottom:401.821470px;}
.y89_c01218{bottom:401.822040px;}
.y1c_c01218{bottom:402.180660px;}
.y1d_c01218{bottom:402.180720px;}
.y4d_c01218{bottom:421.621635px;}
.y4c_c01218{bottom:421.622040px;}
.y1a_c01218{bottom:422.700090px;}
.y88_c01218{bottom:422.700390px;}
.y1b_c01218{bottom:422.701035px;}
.y4b_c01218{bottom:441.780900px;}
.y87_c01218{bottom:443.580420px;}
.y86_c01218{bottom:443.580750px;}
.y19_c01218{bottom:443.940405px;}
.yb8_c01218{bottom:443.941245px;}
.yb9_c01218{bottom:443.941320px;}
.y84_c01218{bottom:464.100495px;}
.y85_c01218{bottom:464.100720px;}
.yb6_c01218{bottom:464.461605px;}
.yb7_c01218{bottom:464.461620px;}
.y18_c01218{bottom:464.819385px;}
.y49_c01218{bottom:483.900645px;}
.y4a_c01218{bottom:483.900885px;}
.y17_c01218{bottom:485.699640px;}
.yb5_c01218{bottom:485.699940px;}
.y83_c01218{bottom:485.700435px;}
.y82_c01218{bottom:485.701110px;}
.y48_c01218{bottom:505.500600px;}
.y81_c01218{bottom:506.221065px;}
.y16_c01218{bottom:506.581350px;}
.yb4_c01218{bottom:506.581650px;}
.y45_c01218{bottom:526.381095px;}
.y46_c01218{bottom:526.381620px;}
.y47_c01218{bottom:526.740870px;}
.y7f_c01218{bottom:527.460570px;}
.y80_c01218{bottom:527.461170px;}
.yb3_c01218{bottom:527.461395px;}
.y15_c01218{bottom:527.461605px;}
.y44_c01218{bottom:547.261350px;}
.y14_c01218{bottom:548.340585px;}
.y13_c01218{bottom:548.341125px;}
.yb2_c01218{bottom:548.701485px;}
.yb1_c01218{bottom:548.702025px;}
.y43_c01218{bottom:568.501650px;}
.y42_c01218{bottom:568.502145px;}
.y11_c01218{bottom:569.219310px;}
.y7e_c01218{bottom:569.219835px;}
.y12_c01218{bottom:569.220105px;}
.yb0_c01218{bottom:569.581005px;}
.y40_c01218{bottom:588.660945px;}
.y41_c01218{bottom:588.661005px;}
.y10_c01218{bottom:590.101020px;}
.y7d_c01218{bottom:590.821470px;}
.y7c_c01218{bottom:590.822040px;}
.yf_c01218{bottom:611.341320px;}
.y7b_c01218{bottom:611.701035px;}
.yaf_c01218{bottom:612.060285px;}
.y3f_c01218{bottom:631.140105px;}
.ye_c01218{bottom:631.860255px;}
.y79_c01218{bottom:632.580345px;}
.y7a_c01218{bottom:632.580420px;}
.yad_c01218{bottom:632.940645px;}
.yae_c01218{bottom:632.941320px;}
.y3d_c01218{bottom:651.659910px;}
.y3e_c01218{bottom:651.660420px;}
.yd_c01218{bottom:652.380570px;}
.y78_c01218{bottom:653.100720px;}
.y77_c01218{bottom:653.101290px;}
.yac_c01218{bottom:653.461050px;}
.y3c_c01218{bottom:672.541620px;}
.y3b_c01218{bottom:672.541860px;}
.yc_c01218{bottom:673.261785px;}
.yb_c01218{bottom:673.262355px;}
.y76_c01218{bottom:673.980285px;}
.yab_c01218{bottom:674.699895px;}
.y3a_c01218{bottom:693.780435px;}
.ya_c01218{bottom:694.141335px;}
.y75_c01218{bottom:694.861500px;}
.y74_c01218{bottom:694.861890px;}
.yaa_c01218{bottom:695.581605px;}
.y9_c01218{bottom:715.381620px;}
.y73_c01218{bottom:715.740870px;}
.y72_c01218{bottom:715.741440px;}
.ya9_c01218{bottom:716.461170px;}
.ya8_c01218{bottom:716.461185px;}
.y39_c01218{bottom:735.900285px;}
.y8_c01218{bottom:736.261185px;}
.y71_c01218{bottom:736.620435px;}
.y70_c01218{bottom:736.620780px;}
.ya7_c01218{bottom:737.701485px;}
.y6_c01218{bottom:756.781425px;}
.y7_c01218{bottom:756.781500px;}
.y38_c01218{bottom:756.781680px;}
.y6f_c01218{bottom:757.861080px;}
.ya5_c01218{bottom:758.580555px;}
.ya6_c01218{bottom:758.581005px;}
.y4_c01218{bottom:778.019715px;}
.y5_c01218{bottom:778.020270px;}
.ya4_c01218{bottom:780.180720px;}
.y2_c01218{bottom:798.901215px;}
.y3_c01218{bottom:798.901425px;}
.y37_c01218{bottom:799.260675px;}
.y6d_c01218{bottom:799.620990px;}
.y6e_c01218{bottom:799.621575px;}
.ya3_c01218{bottom:800.700990px;}
.ya2_c01218{bottom:800.701425px;}
.y1_c01218{bottom:819.421605px;}
.y36_c01218{bottom:819.780855px;}
.y6b_c01218{bottom:820.500825px;}
.y6c_c01218{bottom:820.501005px;}
.ya1_c01218{bottom:821.580420px;}
.h33_c01218{height:37.546875px;}
.h2c_c01218{height:38.329102px;}
.h2b_c01218{height:47.821655px;}
.h2e_c01218{height:50.062500px;}
.h13_c01218{height:51.626953px;}
.h9_c01218{height:52.261963px;}
.hb_c01218{height:52.409180px;}
.h30_c01218{height:52.910156px;}
.h2d_c01218{height:52.971680px;}
.h8_c01218{height:52.998047px;}
.h16_c01218{height:53.191406px;}
.h19_c01218{height:53.666016px;}
.h1d_c01218{height:53.707397px;}
.h1e_c01218{height:53.720346px;}
.h3_c01218{height:53.734131px;}
.h1b_c01218{height:53.973633px;}
.h12_c01218{height:54.108398px;}
.h22_c01218{height:54.443115px;}
.h5_c01218{height:54.470215px;}
.h31_c01218{height:54.755859px;}
.h18_c01218{height:54.849609px;}
.h17_c01218{height:55.177734px;}
.h1c_c01218{height:55.178833px;}
.hc_c01218{height:55.206299px;}
.he_c01218{height:55.538086px;}
.h26_c01218{height:55.590820px;}
.h28_c01218{height:55.914551px;}
.h1f_c01218{height:55.933594px;}
.h7_c01218{height:55.942383px;}
.h25_c01218{height:56.332031px;}
.h29_c01218{height:56.650269px;}
.h6_c01218{height:56.678467px;}
.h1_c01218{height:56.689453px;}
.h4_c01218{height:57.073242px;}
.h24_c01218{height:57.385986px;}
.h2_c01218{height:57.414551px;}
.h21_c01218{height:57.445312px;}
.hd_c01218{height:57.814453px;}
.h20_c01218{height:58.121704px;}
.h1a_c01218{height:58.150635px;}
.h10_c01218{height:58.201172px;}
.hf_c01218{height:58.555664px;}
.ha_c01218{height:58.886719px;}
.h15_c01218{height:59.296875px;}
.h14_c01218{height:60.038086px;}
.h27_c01218{height:60.779297px;}
.h32_c01218{height:62.261719px;}
.h11_c01218{height:62.536011px;}
.h23_c01218{height:63.271729px;}
.h2a_c01218{height:68.835938px;}
.h2f_c01218{height:89.956055px;}
.h0_c01218{height:892.500000px;}
.w0_c01218{width:1263.000000px;}
.x0_c01218{left:0.000000px;}
.x30_c01218{left:48.958950px;}
.x24_c01218{left:50.040360px;}
.x12_c01218{left:51.119520px;}
.x6_c01218{left:52.198350px;}
.x33_c01218{left:63.719565px;}
.x15_c01218{left:66.239250px;}
.x20_c01218{left:68.759100px;}
.x3a_c01218{left:75.599700px;}
.x2d_c01218{left:77.758500px;}
.x31_c01218{left:82.438665px;}
.x7_c01218{left:84.239850px;}
.x19_c01218{left:88.559100px;}
.x1_c01218{left:92.159850px;}
.x16_c01218{left:93.959400px;}
.x25_c01218{left:96.120000px;}
.x21_c01218{left:99.359850px;}
.x36_c01218{left:102.599700px;}
.x3e_c01218{left:105.119415px;}
.x37_c01218{left:106.198815px;}
.x34_c01218{left:108.359250px;}
.x8_c01218{left:110.158815px;}
.x1d_c01218{left:115.199850px;}
.x2_c01218{left:119.159850px;}
.x17_c01218{left:123.120000px;}
.x1a_c01218{left:124.199415px;}
.x9_c01218{left:127.439250px;}
.x1e_c01218{left:130.319850px;}
.x2c_c01218{left:134.639100px;}
.xe_c01218{left:144.358665px;}
.xa_c01218{left:146.519100px;}
.x3_c01218{left:150.838515px;}
.x3b_c01218{left:156.958950px;}
.xf_c01218{left:158.758500px;}
.x2e_c01218{left:160.198785px;}
.x2a_c01218{left:161.279850px;}
.x1f_c01218{left:168.479685px;}
.x22_c01218{left:176.399850px;}
.x3c_c01218{left:179.998950px;}
.x2f_c01218{left:183.599700px;}
.x4_c01218{left:184.679100px;}
.x32_c01218{left:186.119415px;}
.x3f_c01218{left:193.319250px;}
.x23_c01218{left:195.479685px;}
.xb_c01218{left:200.159850px;}
.x2b_c01218{left:208.080000px;}
.xc_c01218{left:212.399250px;}
.x13_c01218{left:214.559685px;}
.x26_c01218{left:216.359250px;}
.x38_c01218{left:223.918350px;}
.x14_c01218{left:227.878350px;}
.x5_c01218{left:229.318800px;}
.x29_c01218{left:232.199385px;}
.x27_c01218{left:234.359850px;}
.x35_c01218{left:236.159385px;}
.x39_c01218{left:239.399250px;}
.x10_c01218{left:244.438635px;}
.xd_c01218{left:248.398635px;}
.x18_c01218{left:251.638500px;}
.x3d_c01218{left:254.878350px;}
.x11_c01218{left:259.199385px;}
.x1c_c01218{left:264.599700px;}
.x1b_c01218{left:267.478635px;}
.x28_c01218{left:283.318800px;}
.x40_c01218{left:284.399850px;}
.x6a_c01218{left:328.678875px;}
.x47_c01218{left:330.118785px;}
.x41_c01218{left:331.199850px;}
.x6d_c01218{left:354.599100px;}
.x71_c01218{left:356.039385px;}
.x70_c01218{left:362.159850px;}
.x64_c01218{left:368.998950px;}
.x52_c01218{left:371.159385px;}
.x77_c01218{left:374.758500px;}
.x4c_c01218{left:376.198785px;}
.x5f_c01218{left:380.519685px;}
.x7c_c01218{left:381.599100px;}
.x67_c01218{left:383.398635px;}
.x6b_c01218{left:388.439715px;}
.x59_c01218{left:393.119985px;}
.x73_c01218{left:395.278800px;}
.x4e_c01218{left:396.719100px;}
.x65_c01218{left:399.238770px;}
.x74_c01218{left:400.319820px;}
.x42_c01218{left:401.399235px;}
.x66_c01218{left:409.319235px;}
.x4a_c01218{left:411.118785px;}
.x57_c01218{left:412.199850px;}
.x4f_c01218{left:420.119985px;}
.x45_c01218{left:427.319820px;}
.x5a_c01218{left:430.198785px;}
.x48_c01218{left:432.359250px;}
.x7d_c01218{left:435.239820px;}
.x53_c01218{left:437.759535px;}
.x78_c01218{left:440.638500px;}
.x5c_c01218{left:446.038920px;}
.x6e_c01218{left:451.439250px;}
.x43_c01218{left:453.238770px;}
.x68_c01218{left:455.399235px;}
.x75_c01218{left:456.839535px;}
.x56_c01218{left:458.279850px;}
.x7b_c01218{left:469.798920px;}
.x54_c01218{left:471.239220px;}
.x4b_c01218{left:475.919535px;}
.x58_c01218{left:477.719100px;}
.x7a_c01218{left:480.599670px;}
.x62_c01218{left:484.198785px;}
.x60_c01218{left:493.199850px;}
.x5b_c01218{left:494.638500px;}
.x63_c01218{left:496.798920px;}
.x50_c01218{left:498.239220px;}
.x5d_c01218{left:501.119985px;}
.x4d_c01218{left:505.439250px;}
.x44_c01218{left:513.000000px;}
.x5e_c01218{left:515.158770px;}
.x6f_c01218{left:518.039385px;}
.x69_c01218{left:523.078770px;}
.x46_c01218{left:527.038920px;}
.x61_c01218{left:529.919535px;}
.x49_c01218{left:532.080000px;}
.x76_c01218{left:537.839535px;}
.x6c_c01218{left:538.918950px;}
.x72_c01218{left:541.799520px;}
.x51_c01218{left:545.398635px;}
.x55_c01218{left:548.279250px;}
.x79_c01218{left:561.599670px;}
.xa7_c01218{left:649.799970px;}
.x7e_c01218{left:651.599280px;}
.x9e_c01218{left:653.040420px;}
.x8d_c01218{left:664.558635px;}
.x84_c01218{left:673.918950px;}
.x7f_c01218{left:678.958335px;}
.x8e_c01218{left:681.838950px;}
.xb9_c01218{left:692.639700px;}
.x8a_c01218{left:693.719100px;}
.x85_c01218{left:702.718545px;}
.x92_c01218{left:704.878920px;}
.xb4_c01218{left:707.039385px;}
.x8b_c01218{left:709.918350px;}
.xb1_c01218{left:714.598530px;}
.xb0_c01218{left:716.399820px;}
.xb6_c01218{left:719.639700px;}
.x9b_c01218{left:721.439205px;}
.xad_c01218{left:725.758530px;}
.xa6_c01218{left:735.838950px;}
.x8f_c01218{left:740.159820px;}
.xa4_c01218{left:746.998950px;}
.x80_c01218{left:749.518620px;}
.xa9_c01218{left:755.279850px;}
.xa2_c01218{left:757.079355px;}
.xb5_c01218{left:758.519670px;}
.x93_c01218{left:761.039385px;}
.x90_c01218{left:764.638545px;}
.xa0_c01218{left:766.439670px;}
.x9c_c01218{left:768.959385px;}
.x86_c01218{left:771.479190px;}
.xa3_c01218{left:772.558590px;}
.xb7_c01218{left:775.439205px;}
.x91_c01218{left:776.879520px;}
.xae_c01218{left:779.039985px;}
.x95_c01218{left:781.918950px;}
.x87_c01218{left:787.678530px;}
.xaf_c01218{left:793.439670px;}
.xab_c01218{left:795.239220px;}
.x9f_c01218{left:799.558590px;}
.xb3_c01218{left:801.719055px;}
.x81_c01218{left:806.758575px;}
.x9d_c01218{left:809.639100px;}
.x96_c01218{left:812.158815px;}
.x82_c01218{left:813.239865px;}
.x88_c01218{left:816.838905px;}
.xa5_c01218{left:818.638545px;}
.x83_c01218{left:821.878320px;}
.x97_c01218{left:828.359805px;}
.x99_c01218{left:831.958920px;}
.x89_c01218{left:838.438665px;}
.x94_c01218{left:841.319190px;}
.xa8_c01218{left:842.759490px;}
.xac_c01218{left:846.358605px;}
.xb2_c01218{left:849.239220px;}
.x8c_c01218{left:850.318815px;}
.xaa_c01218{left:853.919490px;}
.x98_c01218{left:854.998905px;}
.x9a_c01218{left:860.039985px;}
.xb8_c01218{left:867.958275px;}
.xa1_c01218{left:873.358605px;}
.xba_c01218{left:925.559055px;}
.xdd_c01218{left:926.638545px;}
.xd1_c01218{left:949.319190px;}
.xc3_c01218{left:964.079955px;}
.xcd_c01218{left:965.159370px;}
.xde_c01218{left:976.678530px;}
.xdb_c01218{left:981.358605px;}
.xce_c01218{left:993.958920px;}
.xd0_c01218{left:995.758575px;}
.xc9_c01218{left:997.559685px;}
.xd9_c01218{left:1010.519070px;}
.xc4_c01218{left:1011.959385px;}
.xca_c01218{left:1016.998905px;}
.xd6_c01218{left:1020.958920px;}
.xda_c01218{left:1023.478635px;}
.xbb_c01218{left:1035.358605px;}
.xbf_c01218{left:1037.519070px;}
.xd5_c01218{left:1041.119940px;}
.xe1_c01218{left:1042.919490px;}
.xdc_c01218{left:1051.918950px;}
.xcf_c01218{left:1056.958275px;}
.xbc_c01218{left:1070.998905px;}
.xdf_c01218{left:1072.079955px;}
.xc0_c01218{left:1073.159370px;}
.xd7_c01218{left:1076.039985px;}
.xd2_c01218{left:1080.718500px;}
.xbd_c01218{left:1087.559055px;}
.xc7_c01218{left:1090.798920px;}
.xd8_c01218{left:1091.878320px;}
.xcc_c01218{left:1093.318815px;}
.xc8_c01218{left:1114.559055px;}
.xe0_c01218{left:1129.319820px;}
.xd3_c01218{left:1131.478635px;}
.xc5_c01218{left:1136.878875px;}
.xc1_c01218{left:1140.479640px;}
.xd4_c01218{left:1144.078770px;}
.xbe_c01218{left:1150.199340px;}
.xc6_c01218{left:1154.159370px;}
.xcb_c01218{left:1156.319820px;}
.xc2_c01218{left:1158.839535px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls81_c01218{letter-spacing:-24.264800pt;}
.ls2a_c01218{letter-spacing:-22.603860pt;}
.ls3a_c01218{letter-spacing:-19.085733pt;}
.ls69_c01218{letter-spacing:-15.610133pt;}
.ls55_c01218{letter-spacing:-15.432400pt;}
.ls2d_c01218{letter-spacing:-14.089487pt;}
.ls17_c01218{letter-spacing:-13.424180pt;}
.ls66_c01218{letter-spacing:-12.362853pt;}
.ls5b_c01218{letter-spacing:-11.242400pt;}
.ls19_c01218{letter-spacing:-10.862487pt;}
.ls3d_c01218{letter-spacing:-8.964400pt;}
.ls4e_c01218{letter-spacing:-8.824713pt;}
.ls75_c01218{letter-spacing:-8.205993pt;}
.ls5d_c01218{letter-spacing:-8.166667pt;}
.ls8c_c01218{letter-spacing:-8.110000pt;}
.ls1d_c01218{letter-spacing:-7.628400pt;}
.ls30_c01218{letter-spacing:-7.360533pt;}
.ls8b_c01218{letter-spacing:-7.042067pt;}
.ls24_c01218{letter-spacing:-6.975100pt;}
.ls32_c01218{letter-spacing:-6.794000pt;}
.ls22_c01218{letter-spacing:-6.755980pt;}
.ls25_c01218{letter-spacing:-6.740333pt;}
.ls36_c01218{letter-spacing:-6.555667pt;}
.ls21_c01218{letter-spacing:-6.482740pt;}
.ls65_c01218{letter-spacing:-6.416667pt;}
.ls5f_c01218{letter-spacing:-6.405020pt;}
.ls3c_c01218{letter-spacing:-6.214600pt;}
.ls33_c01218{letter-spacing:-6.088647pt;}
.ls51_c01218{letter-spacing:-6.080000pt;}
.ls70_c01218{letter-spacing:-5.883307pt;}
.ls62_c01218{letter-spacing:-5.846933pt;}
.ls61_c01218{letter-spacing:-5.761647pt;}
.ls31_c01218{letter-spacing:-5.700000pt;}
.ls5c_c01218{letter-spacing:-5.485067pt;}
.ls77_c01218{letter-spacing:-5.409600pt;}
.ls8d_c01218{letter-spacing:-5.406133pt;}
.ls4b_c01218{letter-spacing:-5.124600pt;}
.ls7b_c01218{letter-spacing:-4.965333pt;}
.ls6b_c01218{letter-spacing:-4.939667pt;}
.ls6d_c01218{letter-spacing:-4.888400pt;}
.ls2b_c01218{letter-spacing:-4.848000pt;}
.ls58_c01218{letter-spacing:-4.840733pt;}
.ls52_c01218{letter-spacing:-4.669000pt;}
.ls53_c01218{letter-spacing:-4.630500pt;}
.ls29_c01218{letter-spacing:-4.514400pt;}
.ls1e_c01218{letter-spacing:-4.491153pt;}
.ls23_c01218{letter-spacing:-4.482200pt;}
.ls2e_c01218{letter-spacing:-4.234487pt;}
.ls35_c01218{letter-spacing:-4.061867pt;}
.ls6c_c01218{letter-spacing:-4.055000pt;}
.ls7c_c01218{letter-spacing:-4.000000pt;}
.ls15_c01218{letter-spacing:-3.998400pt;}
.ls79_c01218{letter-spacing:-3.997400pt;}
.ls48_c01218{letter-spacing:-3.978667pt;}
.ls80_c01218{letter-spacing:-3.843067pt;}
.ls28_c01218{letter-spacing:-3.839800pt;}
.ls71_c01218{letter-spacing:-3.800000pt;}
.ls27_c01218{letter-spacing:-3.615000pt;}
.ls2c_c01218{letter-spacing:-3.436720pt;}
.ls26_c01218{letter-spacing:-3.435960pt;}
.ls43_c01218{letter-spacing:-3.380000pt;}
.ls89_c01218{letter-spacing:-3.250060pt;}
.ls1b_c01218{letter-spacing:-3.202267pt;}
.ls37_c01218{letter-spacing:-2.982980pt;}
.ls20_c01218{letter-spacing:-2.969867pt;}
.ls2f_c01218{letter-spacing:-2.924000pt;}
.ls78_c01218{letter-spacing:-2.787547pt;}
.ls46_c01218{letter-spacing:-2.700000pt;}
.ls50_c01218{letter-spacing:-2.666153pt;}
.lse_c01218{letter-spacing:-2.665000pt;}
.ls39_c01218{letter-spacing:-2.664933pt;}
.ls44_c01218{letter-spacing:-2.563733pt;}
.ls1a_c01218{letter-spacing:-2.559867pt;}
.ls3b_c01218{letter-spacing:-2.456600pt;}
.lsf_c01218{letter-spacing:-2.443980pt;}
.ls13_c01218{letter-spacing:-2.442133pt;}
.ls1c_c01218{letter-spacing:-2.410000pt;}
.lsa_c01218{letter-spacing:-2.205000pt;}
.ls7e_c01218{letter-spacing:-2.204000pt;}
.ls60_c01218{letter-spacing:-2.082907pt;}
.lsb_c01218{letter-spacing:-2.054520pt;}
.ls3e_c01218{letter-spacing:-2.025000pt;}
.ls5e_c01218{letter-spacing:-2.001840pt;}
.ls4d_c01218{letter-spacing:-1.998000pt;}
.ls54_c01218{letter-spacing:-1.971000pt;}
.ls59_c01218{letter-spacing:-1.925000pt;}
.ls14_c01218{letter-spacing:-1.922820pt;}
.ls11_c01218{letter-spacing:-1.899333pt;}
.ls38_c01218{letter-spacing:-1.848847pt;}
.ls4c_c01218{letter-spacing:-1.800667pt;}
.ls16_c01218{letter-spacing:-1.751333pt;}
.ls47_c01218{letter-spacing:-1.570933pt;}
.ls87_c01218{letter-spacing:-1.410000pt;}
.ls84_c01218{letter-spacing:-1.372320pt;}
.ls42_c01218{letter-spacing:-1.349500pt;}
.ls76_c01218{letter-spacing:-1.335000pt;}
.ls4f_c01218{letter-spacing:-1.317200pt;}
.lsd_c01218{letter-spacing:-1.280420pt;}
.ls6f_c01218{letter-spacing:-0.787200pt;}
.ls7a_c01218{letter-spacing:-0.770133pt;}
.ls86_c01218{letter-spacing:-0.734667pt;}
.ls41_c01218{letter-spacing:-0.711000pt;}
.ls72_c01218{letter-spacing:-0.705667pt;}
.ls57_c01218{letter-spacing:-0.704267pt;}
.ls82_c01218{letter-spacing:-0.689067pt;}
.ls3f_c01218{letter-spacing:-0.675000pt;}
.ls18_c01218{letter-spacing:-0.666667pt;}
.ls63_c01218{letter-spacing:-0.643467pt;}
.lsc_c01218{letter-spacing:-0.642400pt;}
.ls88_c01218{letter-spacing:-0.630007pt;}
.ls12_c01218{letter-spacing:0.000000pt;}
.ls3_c01218{letter-spacing:0.642400pt;}
.ls7f_c01218{letter-spacing:0.648467pt;}
.ls73_c01218{letter-spacing:0.667400pt;}
.ls4_c01218{letter-spacing:0.675000pt;}
.ls85_c01218{letter-spacing:0.704267pt;}
.ls40_c01218{letter-spacing:0.715000pt;}
.ls49_c01218{letter-spacing:0.820000pt;}
.ls74_c01218{letter-spacing:0.862867pt;}
.ls2_c01218{letter-spacing:1.280420pt;}
.ls83_c01218{letter-spacing:1.334400pt;}
.ls8_c01218{letter-spacing:1.349500pt;}
.ls10_c01218{letter-spacing:1.391380pt;}
.ls7d_c01218{letter-spacing:1.509867pt;}
.ls34_c01218{letter-spacing:1.922820pt;}
.ls0_c01218{letter-spacing:2.559867pt;}
.ls6_c01218{letter-spacing:2.700000pt;}
.ls1f_c01218{letter-spacing:2.783673pt;}
.ls67_c01218{letter-spacing:3.380000pt;}
.ls8a_c01218{letter-spacing:3.696260pt;}
.ls6a_c01218{letter-spacing:3.825333pt;}
.ls1_c01218{letter-spacing:3.839800pt;}
.ls5_c01218{letter-spacing:4.055000pt;}
.ls6e_c01218{letter-spacing:4.730000pt;}
.ls56_c01218{letter-spacing:6.080000pt;}
.ls7_c01218{letter-spacing:7.684467pt;}
.ls45_c01218{letter-spacing:7.863240pt;}
.ls68_c01218{letter-spacing:8.110000pt;}
.ls9_c01218{letter-spacing:8.964400pt;}
.ls4a_c01218{letter-spacing:14.865000pt;}
.ls5a_c01218{letter-spacing:15.625000pt;}
.ls64_c01218{letter-spacing:16.904347pt;}
.ws0_c01218{word-spacing:0.000000pt;}
._1e_c01218{margin-left:-120.015108pt;}
._1c_c01218{margin-left:-30.921135pt;}
._22_c01218{margin-left:-29.804649pt;}
._21_c01218{margin-left:-25.529114pt;}
._23_c01218{margin-left:-23.113938pt;}
._1a_c01218{margin-left:-17.955297pt;}
._26_c01218{margin-left:-15.660243pt;}
._20_c01218{margin-left:-10.039973pt;}
._13_c01218{margin-left:-8.236936pt;}
._9_c01218{margin-left:-6.910615pt;}
._11_c01218{margin-left:-5.143708pt;}
._18_c01218{margin-left:-4.187536pt;}
._12_c01218{margin-left:-3.201345pt;}
._0_c01218{margin-left:-2.082831pt;}
._a_c01218{margin-left:-1.145229pt;}
._7_c01218{width:0.925614pt;}
._b_c01218{width:1.996230pt;}
._6_c01218{width:2.920000pt;}
._3_c01218{width:3.889978pt;}
._5_c01218{width:5.102546pt;}
._19_c01218{width:6.121831pt;}
._8_c01218{width:7.081102pt;}
._14_c01218{width:8.030256pt;}
._4_c01218{width:9.194926pt;}
._c_c01218{width:10.783688pt;}
._2_c01218{width:11.866496pt;}
._1_c01218{width:12.820158pt;}
._f_c01218{width:13.971944pt;}
._1b_c01218{width:15.601022pt;}
._17_c01218{width:16.624482pt;}
._d_c01218{width:17.681650pt;}
._e_c01218{width:18.916554pt;}
._24_c01218{width:20.313057pt;}
._16_c01218{width:21.486897pt;}
._15_c01218{width:25.614009pt;}
._25_c01218{width:26.799703pt;}
._1f_c01218{width:29.510391pt;}
._10_c01218{width:32.085985pt;}
._27_c01218{width:33.699946pt;}
._1d_c01218{width:35.615324pt;}
.fs1a_c01218{font-size:32.000000pt;}
.fs15_c01218{font-size:32.666667pt;}
.fs16_c01218{font-size:42.666667pt;}
.fs14_c01218{font-size:43.333333pt;}
.fsc_c01218{font-size:44.000000pt;}
.fs9_c01218{font-size:44.666667pt;}
.fse_c01218{font-size:45.333333pt;}
.fsf_c01218{font-size:46.000000pt;}
.fs18_c01218{font-size:46.666667pt;}
.fs7_c01218{font-size:47.333333pt;}
.fs6_c01218{font-size:48.000000pt;}
.fs2_c01218{font-size:48.666667pt;}
.fs10_c01218{font-size:48.678400pt;}
.fs4_c01218{font-size:49.333333pt;}
.fs0_c01218{font-size:50.000000pt;}
.fs5_c01218{font-size:50.666667pt;}
.fs3_c01218{font-size:51.333333pt;}
.fs1_c01218{font-size:52.000000pt;}
.fsa_c01218{font-size:52.666667pt;}
.fs8_c01218{font-size:53.333333pt;}
.fsd_c01218{font-size:54.000000pt;}
.fs12_c01218{font-size:54.666667pt;}
.fs19_c01218{font-size:56.000000pt;}
.fsb_c01218{font-size:56.666667pt;}
.fs11_c01218{font-size:57.333333pt;}
.fs13_c01218{font-size:58.666667pt;}
.fs17_c01218{font-size:76.666667pt;}
.y0_c01218{bottom:0.000000pt;}
.y69_c01218{bottom:36.533387pt;}
.y6a_c01218{bottom:36.533587pt;}
.ya0_c01218{bottom:38.134667pt;}
.y35_c01218{bottom:40.374387pt;}
.y68_c01218{bottom:55.734653pt;}
.y9f_c01218{bottom:56.374800pt;}
.y33_c01218{bottom:59.254613pt;}
.y34_c01218{bottom:59.254653pt;}
.y67_c01218{bottom:74.294267pt;}
.y31_c01218{bottom:78.133133pt;}
.y32_c01218{bottom:78.133587pt;}
.y66_c01218{bottom:92.853867pt;}
.y9d_c01218{bottom:93.814373pt;}
.y9e_c01218{bottom:93.814800pt;}
.y30_c01218{bottom:96.694667pt;}
.y2f_c01218{bottom:96.695640pt;}
.y64_c01218{bottom:111.733907pt;}
.y65_c01218{bottom:111.734253pt;}
.y9c_c01218{bottom:112.374387pt;}
.y2e_c01218{bottom:115.254760pt;}
.y63_c01218{bottom:130.933853pt;}
.y9b_c01218{bottom:130.934187pt;}
.y2d_c01218{bottom:134.135027pt;}
.y62_c01218{bottom:149.493467pt;}
.y61_c01218{bottom:149.493773pt;}
.y9a_c01218{bottom:150.454387pt;}
.y2c_c01218{bottom:152.694133pt;}
.y60_c01218{bottom:168.373867pt;}
.y99_c01218{bottom:169.014000pt;}
.y2a_c01218{bottom:171.574467pt;}
.y2b_c01218{bottom:171.574520pt;}
.y5f_c01218{bottom:187.254253pt;}
.y5e_c01218{bottom:187.254573pt;}
.y97_c01218{bottom:187.894160pt;}
.y98_c01218{bottom:187.894387pt;}
.y29_c01218{bottom:189.814800pt;}
.y28_c01218{bottom:189.815293pt;}
.y5d_c01218{bottom:206.134667pt;}
.y5c_c01218{bottom:206.135013pt;}
.y96_c01218{bottom:207.094120pt;}
.y27_c01218{bottom:208.374387pt;}
.y26_c01218{bottom:208.374760pt;}
.y5b_c01218{bottom:224.694107pt;}
.y5a_c01218{bottom:224.694440pt;}
.y95_c01218{bottom:225.653587pt;}
.y25_c01218{bottom:226.933853pt;}
.y24_c01218{bottom:226.934347pt;}
.y59_c01218{bottom:243.574520pt;}
.y58_c01218{bottom:243.575013pt;}
.y94_c01218{bottom:244.534000pt;}
.y93_c01218{bottom:244.534480pt;}
.y23_c01218{bottom:245.493453pt;}
.y57_c01218{bottom:262.134120pt;}
.y56_c01218{bottom:262.134667pt;}
.y92_c01218{bottom:263.093587pt;}
.y91_c01218{bottom:263.093893pt;}
.y21_c01218{bottom:264.054000pt;}
.y22_c01218{bottom:264.054520pt;}
.y55_c01218{bottom:281.654667pt;}
.y8f_c01218{bottom:281.973773pt;}
.y90_c01218{bottom:281.973973pt;}
.y53_c01218{bottom:300.533000pt;}
.y54_c01218{bottom:300.533587pt;}
.y8e_c01218{bottom:301.173720pt;}
.y20_c01218{bottom:301.813253pt;}
.y52_c01218{bottom:319.094520pt;}
.y51_c01218{bottom:319.094907pt;}
.y8d_c01218{bottom:320.054000pt;}
.y8c_c01218{bottom:320.054480pt;}
.y1f_c01218{bottom:320.374773pt;}
.y50_c01218{bottom:337.654027pt;}
.y8b_c01218{bottom:338.613587pt;}
.y1e_c01218{bottom:338.613707pt;}
.y4f_c01218{bottom:355.894373pt;}
.y4e_c01218{bottom:355.894507pt;}
.yba_c01218{bottom:356.853840pt;}
.y8a_c01218{bottom:357.174640pt;}
.y89_c01218{bottom:357.175147pt;}
.y1c_c01218{bottom:357.493920pt;}
.y1d_c01218{bottom:357.493973pt;}
.y4d_c01218{bottom:374.774787pt;}
.y4c_c01218{bottom:374.775147pt;}
.y1a_c01218{bottom:375.733413pt;}
.y88_c01218{bottom:375.733680pt;}
.y1b_c01218{bottom:375.734253pt;}
.y4b_c01218{bottom:392.694133pt;}
.y87_c01218{bottom:394.293707pt;}
.y86_c01218{bottom:394.294000pt;}
.y19_c01218{bottom:394.613693pt;}
.yb8_c01218{bottom:394.614440pt;}
.yb9_c01218{bottom:394.614507pt;}
.y84_c01218{bottom:412.533773pt;}
.y85_c01218{bottom:412.533973pt;}
.yb6_c01218{bottom:412.854760pt;}
.yb7_c01218{bottom:412.854773pt;}
.y18_c01218{bottom:413.172787pt;}
.y49_c01218{bottom:430.133907pt;}
.y4a_c01218{bottom:430.134120pt;}
.y17_c01218{bottom:431.733013pt;}
.yb5_c01218{bottom:431.733280pt;}
.y83_c01218{bottom:431.733720pt;}
.y82_c01218{bottom:431.734320pt;}
.y48_c01218{bottom:449.333867pt;}
.y81_c01218{bottom:449.974280pt;}
.y16_c01218{bottom:450.294533pt;}
.yb4_c01218{bottom:450.294800pt;}
.y45_c01218{bottom:467.894307pt;}
.y46_c01218{bottom:467.894773pt;}
.y47_c01218{bottom:468.214107pt;}
.y7f_c01218{bottom:468.853840pt;}
.y80_c01218{bottom:468.854373pt;}
.yb3_c01218{bottom:468.854573pt;}
.y15_c01218{bottom:468.854760pt;}
.y44_c01218{bottom:486.454533pt;}
.y14_c01218{bottom:487.413853pt;}
.y13_c01218{bottom:487.414333pt;}
.yb2_c01218{bottom:487.734653pt;}
.yb1_c01218{bottom:487.735133pt;}
.y43_c01218{bottom:505.334800pt;}
.y42_c01218{bottom:505.335240pt;}
.y11_c01218{bottom:505.972720pt;}
.y7e_c01218{bottom:505.973187pt;}
.y12_c01218{bottom:505.973427pt;}
.yb0_c01218{bottom:506.294227pt;}
.y40_c01218{bottom:523.254173pt;}
.y41_c01218{bottom:523.254227pt;}
.y10_c01218{bottom:524.534240pt;}
.y7d_c01218{bottom:525.174640pt;}
.y7c_c01218{bottom:525.175147pt;}
.yf_c01218{bottom:543.414507pt;}
.y7b_c01218{bottom:543.734253pt;}
.yaf_c01218{bottom:544.053587pt;}
.y3f_c01218{bottom:561.013427pt;}
.ye_c01218{bottom:561.653560pt;}
.y79_c01218{bottom:562.293640pt;}
.y7a_c01218{bottom:562.293707pt;}
.yad_c01218{bottom:562.613907pt;}
.yae_c01218{bottom:562.614507pt;}
.y3d_c01218{bottom:579.253253pt;}
.y3e_c01218{bottom:579.253707pt;}
.yd_c01218{bottom:579.893840pt;}
.y78_c01218{bottom:580.533973pt;}
.y77_c01218{bottom:580.534480pt;}
.yac_c01218{bottom:580.854267pt;}
.y3c_c01218{bottom:597.814773pt;}
.y3b_c01218{bottom:597.814987pt;}
.yc_c01218{bottom:598.454920pt;}
.yb_c01218{bottom:598.455427pt;}
.y76_c01218{bottom:599.093587pt;}
.yab_c01218{bottom:599.733240pt;}
.y3a_c01218{bottom:616.693720pt;}
.ya_c01218{bottom:617.014520pt;}
.y75_c01218{bottom:617.654667pt;}
.y74_c01218{bottom:617.655013pt;}
.yaa_c01218{bottom:618.294760pt;}
.y9_c01218{bottom:635.894773pt;}
.y73_c01218{bottom:636.214107pt;}
.y72_c01218{bottom:636.214613pt;}
.ya9_c01218{bottom:636.854373pt;}
.ya8_c01218{bottom:636.854387pt;}
.y39_c01218{bottom:654.133587pt;}
.y8_c01218{bottom:654.454387pt;}
.y71_c01218{bottom:654.773720pt;}
.y70_c01218{bottom:654.774027pt;}
.ya7_c01218{bottom:655.734653pt;}
.y6_c01218{bottom:672.694600pt;}
.y7_c01218{bottom:672.694667pt;}
.y38_c01218{bottom:672.694827pt;}
.y6f_c01218{bottom:673.654293pt;}
.ya5_c01218{bottom:674.293827pt;}
.ya6_c01218{bottom:674.294227pt;}
.y4_c01218{bottom:691.573080pt;}
.y5_c01218{bottom:691.573573pt;}
.ya4_c01218{bottom:693.493973pt;}
.y2_c01218{bottom:710.134413pt;}
.y3_c01218{bottom:710.134600pt;}
.y37_c01218{bottom:710.453933pt;}
.y6d_c01218{bottom:710.774213pt;}
.y6e_c01218{bottom:710.774733pt;}
.ya3_c01218{bottom:711.734213pt;}
.ya2_c01218{bottom:711.734600pt;}
.y1_c01218{bottom:728.374760pt;}
.y36_c01218{bottom:728.694093pt;}
.y6b_c01218{bottom:729.334067pt;}
.y6c_c01218{bottom:729.334227pt;}
.ya1_c01218{bottom:730.293707pt;}
.h33_c01218{height:33.375000pt;}
.h2c_c01218{height:34.070312pt;}
.h2b_c01218{height:42.508138pt;}
.h2e_c01218{height:44.500000pt;}
.h13_c01218{height:45.890625pt;}
.h9_c01218{height:46.455078pt;}
.hb_c01218{height:46.585938pt;}
.h30_c01218{height:47.031250pt;}
.h2d_c01218{height:47.085938pt;}
.h8_c01218{height:47.109375pt;}
.h16_c01218{height:47.281250pt;}
.h19_c01218{height:47.703125pt;}
.h1d_c01218{height:47.739909pt;}
.h1e_c01218{height:47.751419pt;}
.h3_c01218{height:47.763672pt;}
.h1b_c01218{height:47.976562pt;}
.h12_c01218{height:48.096354pt;}
.h22_c01218{height:48.393880pt;}
.h5_c01218{height:48.417969pt;}
.h31_c01218{height:48.671875pt;}
.h18_c01218{height:48.755208pt;}
.h17_c01218{height:49.046875pt;}
.h1c_c01218{height:49.047852pt;}
.hc_c01218{height:49.072266pt;}
.he_c01218{height:49.367188pt;}
.h26_c01218{height:49.414063pt;}
.h28_c01218{height:49.701823pt;}
.h1f_c01218{height:49.718750pt;}
.h7_c01218{height:49.726562pt;}
.h25_c01218{height:50.072917pt;}
.h29_c01218{height:50.355794pt;}
.h6_c01218{height:50.380859pt;}
.h1_c01218{height:50.390625pt;}
.h4_c01218{height:50.731771pt;}
.h24_c01218{height:51.009766pt;}
.h2_c01218{height:51.035156pt;}
.h21_c01218{height:51.062500pt;}
.hd_c01218{height:51.390625pt;}
.h20_c01218{height:51.663737pt;}
.h1a_c01218{height:51.689453pt;}
.h10_c01218{height:51.734375pt;}
.hf_c01218{height:52.049479pt;}
.ha_c01218{height:52.343750pt;}
.h15_c01218{height:52.708333pt;}
.h14_c01218{height:53.367188pt;}
.h27_c01218{height:54.026042pt;}
.h32_c01218{height:55.343750pt;}
.h11_c01218{height:55.587565pt;}
.h23_c01218{height:56.241536pt;}
.h2a_c01218{height:61.187500pt;}
.h2f_c01218{height:79.960938pt;}
.h0_c01218{height:793.333333pt;}
.w0_c01218{width:1122.666667pt;}
.x0_c01218{left:0.000000pt;}
.x30_c01218{left:43.519067pt;}
.x24_c01218{left:44.480320pt;}
.x12_c01218{left:45.439573pt;}
.x6_c01218{left:46.398533pt;}
.x33_c01218{left:56.639613pt;}
.x15_c01218{left:58.879333pt;}
.x20_c01218{left:61.119200pt;}
.x3a_c01218{left:67.199733pt;}
.x2d_c01218{left:69.118667pt;}
.x31_c01218{left:73.278813pt;}
.x7_c01218{left:74.879867pt;}
.x19_c01218{left:78.719200pt;}
.x1_c01218{left:81.919867pt;}
.x16_c01218{left:83.519467pt;}
.x25_c01218{left:85.440000pt;}
.x21_c01218{left:88.319867pt;}
.x36_c01218{left:91.199733pt;}
.x3e_c01218{left:93.439480pt;}
.x37_c01218{left:94.398947pt;}
.x34_c01218{left:96.319333pt;}
.x8_c01218{left:97.918947pt;}
.x1d_c01218{left:102.399867pt;}
.x2_c01218{left:105.919867pt;}
.x17_c01218{left:109.440000pt;}
.x1a_c01218{left:110.399480pt;}
.x9_c01218{left:113.279333pt;}
.x1e_c01218{left:115.839867pt;}
.x2c_c01218{left:119.679200pt;}
.xe_c01218{left:128.318813pt;}
.xa_c01218{left:130.239200pt;}
.x3_c01218{left:134.078680pt;}
.x3b_c01218{left:139.519067pt;}
.xf_c01218{left:141.118667pt;}
.x2e_c01218{left:142.398920pt;}
.x2a_c01218{left:143.359867pt;}
.x1f_c01218{left:149.759720pt;}
.x22_c01218{left:156.799867pt;}
.x3c_c01218{left:159.999067pt;}
.x2f_c01218{left:163.199733pt;}
.x4_c01218{left:164.159200pt;}
.x32_c01218{left:165.439480pt;}
.x3f_c01218{left:171.839333pt;}
.x23_c01218{left:173.759720pt;}
.xb_c01218{left:177.919867pt;}
.x2b_c01218{left:184.960000pt;}
.xc_c01218{left:188.799333pt;}
.x13_c01218{left:190.719720pt;}
.x26_c01218{left:192.319333pt;}
.x38_c01218{left:199.038533pt;}
.x14_c01218{left:202.558533pt;}
.x5_c01218{left:203.838933pt;}
.x29_c01218{left:206.399453pt;}
.x27_c01218{left:208.319867pt;}
.x35_c01218{left:209.919453pt;}
.x39_c01218{left:212.799333pt;}
.x10_c01218{left:217.278787pt;}
.xd_c01218{left:220.798787pt;}
.x18_c01218{left:223.678667pt;}
.x3d_c01218{left:226.558533pt;}
.x11_c01218{left:230.399453pt;}
.x1c_c01218{left:235.199733pt;}
.x1b_c01218{left:237.758787pt;}
.x28_c01218{left:251.838933pt;}
.x40_c01218{left:252.799867pt;}
.x6a_c01218{left:292.159000pt;}
.x47_c01218{left:293.438920pt;}
.x41_c01218{left:294.399867pt;}
.x6d_c01218{left:315.199200pt;}
.x71_c01218{left:316.479453pt;}
.x70_c01218{left:321.919867pt;}
.x64_c01218{left:327.999067pt;}
.x52_c01218{left:329.919453pt;}
.x77_c01218{left:333.118667pt;}
.x4c_c01218{left:334.398920pt;}
.x5f_c01218{left:338.239720pt;}
.x7c_c01218{left:339.199200pt;}
.x67_c01218{left:340.798787pt;}
.x6b_c01218{left:345.279747pt;}
.x59_c01218{left:349.439987pt;}
.x73_c01218{left:351.358933pt;}
.x4e_c01218{left:352.639200pt;}
.x65_c01218{left:354.878907pt;}
.x74_c01218{left:355.839840pt;}
.x42_c01218{left:356.799320pt;}
.x66_c01218{left:363.839320pt;}
.x4a_c01218{left:365.438920pt;}
.x57_c01218{left:366.399867pt;}
.x4f_c01218{left:373.439987pt;}
.x45_c01218{left:379.839840pt;}
.x5a_c01218{left:382.398920pt;}
.x48_c01218{left:384.319333pt;}
.x7d_c01218{left:386.879840pt;}
.x53_c01218{left:389.119587pt;}
.x78_c01218{left:391.678667pt;}
.x5c_c01218{left:396.479040pt;}
.x6e_c01218{left:401.279333pt;}
.x43_c01218{left:402.878907pt;}
.x68_c01218{left:404.799320pt;}
.x75_c01218{left:406.079587pt;}
.x56_c01218{left:407.359867pt;}
.x7b_c01218{left:417.599040pt;}
.x54_c01218{left:418.879307pt;}
.x4b_c01218{left:423.039587pt;}
.x58_c01218{left:424.639200pt;}
.x7a_c01218{left:427.199707pt;}
.x62_c01218{left:430.398920pt;}
.x60_c01218{left:438.399867pt;}
.x5b_c01218{left:439.678667pt;}
.x63_c01218{left:441.599040pt;}
.x50_c01218{left:442.879307pt;}
.x5d_c01218{left:445.439987pt;}
.x4d_c01218{left:449.279333pt;}
.x44_c01218{left:456.000000pt;}
.x5e_c01218{left:457.918907pt;}
.x6f_c01218{left:460.479453pt;}
.x69_c01218{left:464.958907pt;}
.x46_c01218{left:468.479040pt;}
.x61_c01218{left:471.039587pt;}
.x49_c01218{left:472.960000pt;}
.x76_c01218{left:478.079587pt;}
.x6c_c01218{left:479.039067pt;}
.x72_c01218{left:481.599573pt;}
.x51_c01218{left:484.798787pt;}
.x55_c01218{left:487.359333pt;}
.x79_c01218{left:499.199707pt;}
.xa7_c01218{left:577.599973pt;}
.x7e_c01218{left:579.199360pt;}
.x9e_c01218{left:580.480373pt;}
.x8d_c01218{left:590.718787pt;}
.x84_c01218{left:599.039067pt;}
.x7f_c01218{left:603.518520pt;}
.x8e_c01218{left:606.079067pt;}
.xb9_c01218{left:615.679733pt;}
.x8a_c01218{left:616.639200pt;}
.x85_c01218{left:624.638707pt;}
.x92_c01218{left:626.559040pt;}
.xb4_c01218{left:628.479453pt;}
.x8b_c01218{left:631.038533pt;}
.xb1_c01218{left:635.198693pt;}
.xb0_c01218{left:636.799840pt;}
.xb6_c01218{left:639.679733pt;}
.x9b_c01218{left:641.279293pt;}
.xad_c01218{left:645.118693pt;}
.xa6_c01218{left:654.079067pt;}
.x8f_c01218{left:657.919840pt;}
.xa4_c01218{left:663.999067pt;}
.x80_c01218{left:666.238773pt;}
.xa9_c01218{left:671.359867pt;}
.xa2_c01218{left:672.959427pt;}
.xb5_c01218{left:674.239707pt;}
.x93_c01218{left:676.479453pt;}
.x90_c01218{left:679.678707pt;}
.xa0_c01218{left:681.279707pt;}
.x9c_c01218{left:683.519453pt;}
.x86_c01218{left:685.759280pt;}
.xa3_c01218{left:686.718747pt;}
.xb7_c01218{left:689.279293pt;}
.x91_c01218{left:690.559573pt;}
.xae_c01218{left:692.479987pt;}
.x95_c01218{left:695.039067pt;}
.x87_c01218{left:700.158693pt;}
.xaf_c01218{left:705.279707pt;}
.xab_c01218{left:706.879307pt;}
.x9f_c01218{left:710.718747pt;}
.xb3_c01218{left:712.639160pt;}
.x81_c01218{left:717.118733pt;}
.x9d_c01218{left:719.679200pt;}
.x96_c01218{left:721.918947pt;}
.x82_c01218{left:722.879880pt;}
.x88_c01218{left:726.079027pt;}
.xa5_c01218{left:727.678707pt;}
.x83_c01218{left:730.558507pt;}
.x97_c01218{left:736.319827pt;}
.x99_c01218{left:739.519040pt;}
.x89_c01218{left:745.278813pt;}
.x94_c01218{left:747.839280pt;}
.xa8_c01218{left:749.119547pt;}
.xac_c01218{left:752.318760pt;}
.xb2_c01218{left:754.879307pt;}
.x8c_c01218{left:755.838947pt;}
.xaa_c01218{left:759.039547pt;}
.x98_c01218{left:759.999027pt;}
.x9a_c01218{left:764.479987pt;}
.xb8_c01218{left:771.518467pt;}
.xa1_c01218{left:776.318760pt;}
.xba_c01218{left:822.719160pt;}
.xdd_c01218{left:823.678707pt;}
.xd1_c01218{left:843.839280pt;}
.xc3_c01218{left:856.959960pt;}
.xcd_c01218{left:857.919440pt;}
.xde_c01218{left:868.158693pt;}
.xdb_c01218{left:872.318760pt;}
.xce_c01218{left:883.519040pt;}
.xd0_c01218{left:885.118733pt;}
.xc9_c01218{left:886.719720pt;}
.xd9_c01218{left:898.239173pt;}
.xc4_c01218{left:899.519453pt;}
.xca_c01218{left:903.999027pt;}
.xd6_c01218{left:907.519040pt;}
.xda_c01218{left:909.758787pt;}
.xbb_c01218{left:920.318760pt;}
.xbf_c01218{left:922.239173pt;}
.xd5_c01218{left:925.439947pt;}
.xe1_c01218{left:927.039547pt;}
.xdc_c01218{left:935.039067pt;}
.xcf_c01218{left:939.518467pt;}
.xbc_c01218{left:951.999027pt;}
.xdf_c01218{left:952.959960pt;}
.xc0_c01218{left:953.919440pt;}
.xd7_c01218{left:956.479987pt;}
.xd2_c01218{left:960.638667pt;}
.xbd_c01218{left:966.719160pt;}
.xc7_c01218{left:969.599040pt;}
.xd8_c01218{left:970.558507pt;}
.xcc_c01218{left:971.838947pt;}
.xc8_c01218{left:990.719160pt;}
.xe0_c01218{left:1003.839840pt;}
.xd3_c01218{left:1005.758787pt;}
.xc5_c01218{left:1010.559000pt;}
.xc1_c01218{left:1013.759680pt;}
.xd4_c01218{left:1016.958907pt;}
.xbe_c01218{left:1022.399413pt;}
.xc6_c01218{left:1025.919440pt;}
.xcb_c01218{left:1027.839840pt;}
.xc2_c01218{left:1030.079587pt;}
}





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

.ir_c01219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
.sc__c01219{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
}
.y0_c01219{bottom:0.000000px;}
.h0_c01219{height:892.500000px;}
.w0_c01219{width:1263.000000px;}
.x0_c01219{left:0.000000px;}
@media print{
.y0_c01219{bottom:0.000000pt;}
.h0_c01219{height:793.333333pt;}
.w0_c01219{width:1122.666667pt;}
.x0_c01219{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_c01220 {
    display:none;
  }
  .loading-indicator_c01220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01220 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01220 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01220" -> "#page-container .classname_c01220")
 */
.pf_c01220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01220 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01220 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01220 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01220 {overflow:visible;}
  }
}
.c_c01220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01220 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01220:after { /* webkit #35443 */
  content: '';
}
.t_c01220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01220 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01220 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01220 { /* info for Javascript */
  display:none;
}
.l_c01220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_a259e0dcdd20b8cb42c6bc6c.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01220;src:url('chunks/assets/font_8d24cff486e9e211c27282b3.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01220;src:url('chunks/assets/font_74aedfc055bf61a92b4fa447.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01220;src:url('chunks/assets/font_5b8d96a7f0402b5033667a22.woff2')format("woff");}.ff4_c01220{font-family:ff4_c01220;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01220;src:url('chunks/assets/font_48a80332d63978c0c22270d6.woff2')format("woff");}.ff5_c01220{font-family:ff5_c01220;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01220;src:url('chunks/assets/font_d29c47a25baff659b16f84b2.woff2')format("woff");}.ff6_c01220{font-family:ff6_c01220;line-height:1.432129;font-style:normal;font-weight: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_c01220;src:url('chunks/assets/font_06eb4702e6297216207c8af5.woff2')format("woff");}.ff7_c01220{font-family:ff7_c01220;line-height:1.281250;font-style:normal;font-weight: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_c01220;src:url('chunks/assets/font_efb4b51b1196c2e66908eaa7.woff2')format("woff");}.ff8_c01220{font-family:ff8_c01220;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c01220{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.mc_c01220{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m2d_c01220{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m26_c01220{transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184932,0.000000,0.000000,0.250000,0,0);}
.m1c_c01220{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m1f_c01220{transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192568,0.000000,0.000000,0.250000,0,0);}
.me_c01220{transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194079,0.000000,0.000000,0.250000,0,0);}
.m4_c01220{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.ma_c01220{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.m1e_c01220{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m11_c01220{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m24_c01220{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m15_c01220{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m31_c01220{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m32_c01220{transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);}
.m1b_c01220{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_c01220{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m1d_c01220{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m29_c01220{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m19_c01220{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.md_c01220{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m9_c01220{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m2f_c01220{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m2c_c01220{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m1a_c01220{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m0_c01220{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.m14_c01220{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m16_c01220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m33_c01220{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m12_c01220{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m13_c01220{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m18_c01220{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m2b_c01220{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m22_c01220{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m8_c01220{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m1_c01220{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m2_c01220{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m20_c01220{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m10_c01220{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.mb_c01220{transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269481,0.000000,0.000000,0.250000,0,0);}
.m28_c01220{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_c01220{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m2e_c01220{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m27_c01220{transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);}
.m5_c01220{transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277397,0.000000,0.000000,0.250000,0,0);}
.m7_c01220{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_c01220{transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283784,0.000000,0.000000,0.250000,0,0);}
.m23_c01220{transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290541,0.000000,0.000000,0.250000,0,0);}
.m2a_c01220{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.m3_c01220{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.mf_c01220{transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297170,0.000000,0.000000,0.250000,0,0);}
.m25_c01220{transform:matrix(0.325658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325658,0.000000,0.000000,0.250000,0,0);}
.v0_c01220{vertical-align:0.000000px;}
.ls38_c01220{letter-spacing:-17.180370px;}
.ls15_c01220{letter-spacing:-11.359425px;}
.ls27_c01220{letter-spacing:-8.763450px;}
.ls11_c01220{letter-spacing:-7.922325px;}
.ls3e_c01220{letter-spacing:-7.726200px;}
.ls1c_c01220{letter-spacing:-7.272000px;}
.ls21_c01220{letter-spacing:-7.205648px;}
.ls28_c01220{letter-spacing:-6.748073px;}
.ls32_c01220{letter-spacing:-6.481853px;}
.ls3a_c01220{letter-spacing:-6.176250px;}
.ls25_c01220{letter-spacing:-5.863725px;}
.ls14_c01220{letter-spacing:-5.765175px;}
.ls1a_c01220{letter-spacing:-5.048250px;}
.ls30_c01220{letter-spacing:-5.042475px;}
.ls19_c01220{letter-spacing:-4.827900px;}
.ls10_c01220{letter-spacing:-4.685625px;}
.lse_c01220{letter-spacing:-4.319775px;}
.ls2a_c01220{letter-spacing:-4.279275px;}
.ls1b_c01220{letter-spacing:-4.253850px;}
.ls22_c01220{letter-spacing:-4.162500px;}
.ls39_c01220{letter-spacing:-4.123350px;}
.ls3c_c01220{letter-spacing:-4.120500px;}
.ls2f_c01220{letter-spacing:-4.056975px;}
.ls35_c01220{letter-spacing:-3.865350px;}
.lsa_c01220{letter-spacing:-3.851925px;}
.ls4_c01220{letter-spacing:-3.801900px;}
.ls1e_c01220{letter-spacing:-3.696990px;}
.ls7_c01220{letter-spacing:-3.602550px;}
.ls33_c01220{letter-spacing:-3.471188px;}
.lsd_c01220{letter-spacing:-3.378623px;}
.lsf_c01220{letter-spacing:-3.301695px;}
.ls26_c01220{letter-spacing:-3.247200px;}
.ls24_c01220{letter-spacing:-3.089873px;}
.ls37_c01220{letter-spacing:-2.919375px;}
.ls12_c01220{letter-spacing:-2.880450px;}
.ls6_c01220{letter-spacing:-2.879850px;}
.ls9_c01220{letter-spacing:-2.862878px;}
.ls29_c01220{letter-spacing:-2.850000px;}
.ls16_c01220{letter-spacing:-2.783550px;}
.ls31_c01220{letter-spacing:-2.731725px;}
.ls20_c01220{letter-spacing:-2.597925px;}
.ls2b_c01220{letter-spacing:-2.580195px;}
.ls3d_c01220{letter-spacing:-2.578125px;}
.ls18_c01220{letter-spacing:-2.357228px;}
.ls1f_c01220{letter-spacing:-2.281125px;}
.ls3f_c01220{letter-spacing:-2.222438px;}
.ls1d_c01220{letter-spacing:-2.220525px;}
.ls8_c01220{letter-spacing:-2.163173px;}
.ls2d_c01220{letter-spacing:-1.521900px;}
.ls2c_c01220{letter-spacing:-1.461825px;}
.ls5_c01220{letter-spacing:-1.440473px;}
.ls2e_c01220{letter-spacing:-1.151400px;}
.ls17_c01220{letter-spacing:-1.063988px;}
.ls13_c01220{letter-spacing:-0.783000px;}
.ls23_c01220{letter-spacing:-0.733425px;}
.lsb_c01220{letter-spacing:-0.722700px;}
.lsc_c01220{letter-spacing:0.000000px;}
.ls2_c01220{letter-spacing:0.722700px;}
.ls3b_c01220{letter-spacing:0.782550px;}
.ls1_c01220{letter-spacing:1.440473px;}
.ls36_c01220{letter-spacing:1.501200px;}
.ls34_c01220{letter-spacing:2.381625px;}
.ls0_c01220{letter-spacing:4.319775px;}
.ls3_c01220{letter-spacing:14.410200px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01220{word-spacing:0.000000px;}
._1a_c01220{margin-left:-29.061300px;}
._a_c01220{margin-left:-21.010514px;}
._1d_c01220{margin-left:-17.015839px;}
._16_c01220{margin-left:-10.299858px;}
._18_c01220{margin-left:-7.381971px;}
._1b_c01220{margin-left:-5.693308px;}
._17_c01220{margin-left:-4.517106px;}
._1_c01220{margin-left:-2.934254px;}
._15_c01220{margin-left:-1.423932px;}
._b_c01220{width:1.028320px;}
._3_c01220{width:2.452454px;}
._0_c01220{width:3.500542px;}
._2_c01220{width:4.911306px;}
._5_c01220{width:6.088142px;}
._14_c01220{width:8.011395px;}
._4_c01220{width:9.145699px;}
._13_c01220{width:10.170014px;}
._10_c01220{width:11.223116px;}
._6_c01220{width:13.011251px;}
._11_c01220{width:14.020841px;}
._c_c01220{width:15.952824px;}
._12_c01220{width:17.931201px;}
._f_c01220{width:20.595999px;}
._e_c01220{width:22.058429px;}
._d_c01220{width:23.919295px;}
._8_c01220{width:26.591182px;}
._7_c01220{width:28.373006px;}
._9_c01220{width:32.148797px;}
._1c_c01220{width:33.953501px;}
._1e_c01220{width:35.184799px;}
._1f_c01220{width:36.301325px;}
._19_c01220{width:37.359815px;}
.fc0_c01220{color:transparent;}
.fs9_c01220{font-size:39.750000px;}
.fs11_c01220{font-size:41.250000px;}
.fs2_c01220{font-size:47.250000px;}
.fs10_c01220{font-size:49.500000px;}
.fs8_c01220{font-size:50.250000px;}
.fsd_c01220{font-size:51.000000px;}
.fsa_c01220{font-size:51.750000px;}
.fsc_c01220{font-size:53.250000px;}
.fs6_c01220{font-size:54.000000px;}
.fs1_c01220{font-size:54.750000px;}
.fs5_c01220{font-size:55.500000px;}
.fs4_c01220{font-size:56.250000px;}
.fs0_c01220{font-size:57.000000px;}
.fs3_c01220{font-size:57.750000px;}
.fsf_c01220{font-size:58.500000px;}
.fse_c01220{font-size:59.250000px;}
.fsb_c01220{font-size:60.000000px;}
.fs7_c01220{font-size:63.750000px;}
.y0_c01220{bottom:0.000000px;}
.y6a_c01220{bottom:58.380570px;}
.y69_c01220{bottom:58.380585px;}
.y37_c01220{bottom:58.741425px;}
.y38_c01220{bottom:58.741470px;}
.y68_c01220{bottom:79.620900px;}
.y35_c01220{bottom:79.979760px;}
.y36_c01220{bottom:79.980270px;}
.y67_c01220{bottom:100.141290px;}
.y33_c01220{bottom:100.861335px;}
.y34_c01220{bottom:100.861470px;}
.y65_c01220{bottom:121.380015px;}
.y66_c01220{bottom:121.380135px;}
.y32_c01220{bottom:122.100180px;}
.y64_c01220{bottom:142.261740px;}
.y31_c01220{bottom:142.620570px;}
.y63_c01220{bottom:163.140720px;}
.y2f_c01220{bottom:163.860210px;}
.y30_c01220{bottom:163.860885px;}
.y62_c01220{bottom:183.661170px;}
.y2e_c01220{bottom:184.380615px;}
.y61_c01220{bottom:204.901470px;}
.y60_c01220{bottom:204.901890px;}
.y2d_c01220{bottom:205.260870px;}
.y5f_c01220{bottom:225.780870px;}
.y2c_c01220{bottom:226.501170px;}
.y5d_c01220{bottom:247.020765px;}
.y5e_c01220{bottom:247.021320px;}
.y2b_c01220{bottom:247.380570px;}
.y2a_c01220{bottom:247.380705px;}
.y5c_c01220{bottom:268.259610px;}
.y29_c01220{bottom:268.621005px;}
.y28_c01220{bottom:268.621575px;}
.y5b_c01220{bottom:289.141320px;}
.y5a_c01220{bottom:289.141875px;}
.y27_c01220{bottom:289.500570px;}
.y26_c01220{bottom:289.501650px;}
.y58_c01220{bottom:310.020225px;}
.y59_c01220{bottom:310.020855px;}
.y25_c01220{bottom:310.380660px;}
.y57_c01220{bottom:330.899205px;}
.y24_c01220{bottom:331.620960px;}
.y56_c01220{bottom:351.780915px;}
.y22_c01220{bottom:352.499295px;}
.y23_c01220{bottom:352.499955px;}
.y55_c01220{bottom:373.019760px;}
.y21_c01220{bottom:373.381005px;}
.y20_c01220{bottom:393.901410px;}
.y54_c01220{bottom:393.901470px;}
.y1e_c01220{bottom:415.140180px;}
.y1f_c01220{bottom:415.140240px;}
.y53_c01220{bottom:435.660570px;}
.y1d_c01220{bottom:436.021890px;}
.y1c_c01220{bottom:456.900885px;}
.y52_c01220{bottom:456.901380px;}
.y51_c01220{bottom:477.060240px;}
.y50_c01220{bottom:477.060705px;}
.y1a_c01220{bottom:477.780300px;}
.y1b_c01220{bottom:477.780390px;}
.y4f_c01220{bottom:498.301005px;}
.y19_c01220{bottom:498.662025px;}
.y18_c01220{bottom:518.820870px;}
.y17_c01220{bottom:518.820990px;}
.y4e_c01220{bottom:518.821410px;}
.y4d_c01220{bottom:539.700390px;}
.y15_c01220{bottom:540.061230px;}
.y16_c01220{bottom:540.061290px;}
.y7d_c01220{bottom:541.140855px;}
.y4c_c01220{bottom:560.581470px;}
.y14_c01220{bottom:560.581605px;}
.y7c_c01220{bottom:562.381170px;}
.y7b_c01220{bottom:562.381230px;}
.y4b_c01220{bottom:581.460450px;}
.y12_c01220{bottom:581.819730px;}
.y13_c01220{bottom:581.820420px;}
.y7a_c01220{bottom:583.261485px;}
.y4a_c01220{bottom:601.980840px;}
.y10_c01220{bottom:602.701215px;}
.y11_c01220{bottom:602.701440px;}
.y79_c01220{bottom:604.140465px;}
.y49_c01220{bottom:623.581005px;}
.yf_c01220{bottom:623.581440px;}
.y78_c01220{bottom:624.660855px;}
.y47_c01220{bottom:644.101200px;}
.y48_c01220{bottom:644.101320px;}
.ye_c01220{bottom:644.101845px;}
.y77_c01220{bottom:645.181245px;}
.y46_c01220{bottom:664.621575px;}
.y45_c01220{bottom:664.622160px;}
.yd_c01220{bottom:664.980840px;}
.yc_c01220{bottom:664.981290px;}
.y75_c01220{bottom:666.059745px;}
.y76_c01220{bottom:666.060240px;}
.y44_c01220{bottom:685.501140px;}
.y43_c01220{bottom:685.501440px;}
.yb_c01220{bottom:685.501695px;}
.y74_c01220{bottom:686.941455px;}
.y73_c01220{bottom:686.941845px;}
.y42_c01220{bottom:706.021845px;}
.ya_c01220{bottom:706.741995px;}
.y72_c01220{bottom:707.820825px;}
.y41_c01220{bottom:726.900840px;}
.y8_c01220{bottom:727.620180px;}
.y9_c01220{bottom:727.620990px;}
.y71_c01220{bottom:728.341140px;}
.y70_c01220{bottom:728.342085px;}
.y3f_c01220{bottom:747.779850px;}
.y40_c01220{bottom:747.780390px;}
.y7_c01220{bottom:748.140585px;}
.y6f_c01220{bottom:749.221095px;}
.y3e_c01220{bottom:768.661560px;}
.y3d_c01220{bottom:768.661995px;}
.y6_c01220{bottom:769.020840px;}
.y6e_c01220{bottom:770.100075px;}
.y3c_c01220{bottom:789.540990px;}
.y4_c01220{bottom:790.261110px;}
.y5_c01220{bottom:790.261140px;}
.y6d_c01220{bottom:790.981770px;}
.y3a_c01220{bottom:810.420525px;}
.y3b_c01220{bottom:810.420600px;}
.y3_c01220{bottom:810.781500px;}
.y2_c01220{bottom:810.782025px;}
.y6c_c01220{bottom:811.860780px;}
.y39_c01220{bottom:830.940900px;}
.y1_c01220{bottom:831.661005px;}
.y6b_c01220{bottom:832.381170px;}
.h1a_c01220{height:40.484619px;}
.hc_c01220{height:41.458008px;}
.h3_c01220{height:49.280273px;}
.h16_c01220{height:51.626953px;}
.hf_c01220{height:52.261963px;}
.ha_c01220{height:52.409180px;}
.h18_c01220{height:52.998047px;}
.h10_c01220{height:53.191406px;}
.h2_c01220{height:53.734131px;}
.hd_c01220{height:53.973633px;}
.h15_c01220{height:54.108398px;}
.h7_c01220{height:54.421875px;}
.h6_c01220{height:54.470215px;}
.h17_c01220{height:54.849609px;}
.h5_c01220{height:55.206299px;}
.hb_c01220{height:55.914551px;}
.h13_c01220{height:55.933594px;}
.h12_c01220{height:55.942383px;}
.h19_c01220{height:56.332031px;}
.h4_c01220{height:56.678467px;}
.h8_c01220{height:57.073242px;}
.h14_c01220{height:57.414551px;}
.h1_c01220{height:57.445312px;}
.h11_c01220{height:58.150635px;}
.h1b_c01220{height:58.555664px;}
.he_c01220{height:58.857422px;}
.h9_c01220{height:63.002930px;}
.h0_c01220{height:892.500000px;}
.w0_c01220{width:1263.000000px;}
.x0_c01220{left:0.000000px;}
.x23_c01220{left:52.199415px;}
.x18_c01220{left:53.280240px;}
.xb_c01220{left:54.359385px;}
.x3_c01220{left:55.439685px;}
.x4_c01220{left:73.798515px;}
.x25_c01220{left:77.040000px;}
.x13_c01220{left:78.119415px;}
.x1e_c01220{left:89.999400px;}
.x28_c01220{left:91.439460px;}
.x17_c01220{left:92.878425px;}
.x1_c01220{left:94.679700px;}
.x26_c01220{left:97.199415px;}
.x1f_c01220{left:105.839565px;}
.x2a_c01220{left:107.279850px;}
.x19_c01220{left:110.158815px;}
.x21_c01220{left:111.239850px;}
.xc_c01220{left:112.678500px;}
.x5_c01220{left:115.559100px;}
.x2b_c01220{left:117.719565px;}
.x2_c01220{left:123.120000px;}
.x29_c01220{left:129.599700px;}
.x27_c01220{left:131.758500px;}
.x16_c01220{left:132.839565px;}
.x6_c01220{left:133.918950px;}
.xd_c01220{left:137.878950px;}
.x20_c01220{left:138.958350px;}
.x22_c01220{left:144.358665px;}
.x9_c01220{left:173.519100px;}
.x2c_c01220{left:176.399850px;}
.x1c_c01220{left:182.518665px;}
.x2d_c01220{left:186.478665px;}
.x1a_c01220{left:190.079400px;}
.xa_c01220{left:197.999400px;}
.xe_c01220{left:207.719100px;}
.x7_c01220{left:214.559685px;}
.x1b_c01220{left:218.519685px;}
.x1d_c01220{left:222.479685px;}
.x8_c01220{left:226.439685px;}
.xf_c01220{left:227.519100px;}
.x24_c01220{left:232.199385px;}
.x10_c01220{left:233.639700px;}
.x11_c01220{left:257.399850px;}
.x12_c01220{left:259.199385px;}
.x14_c01220{left:261.359850px;}
.x15_c01220{left:277.559100px;}
.x56_c01220{left:328.319865px;}
.x47_c01220{left:329.400210px;}
.x38_c01220{left:330.478905px;}
.x2e_c01220{left:331.559205px;}
.x31_c01220{left:362.159850px;}
.x37_c01220{left:365.399850px;}
.x49_c01220{left:369.000315px;}
.x34_c01220{left:370.080555px;}
.x45_c01220{left:379.079385px;}
.x54_c01220{left:388.078815px;}
.x46_c01220{left:393.838530px;}
.x39_c01220{left:396.719100px;}
.x3b_c01220{left:398.518665px;}
.x4e_c01220{left:402.478635px;}
.x3a_c01220{left:408.958335px;}
.x55_c01220{left:413.638500px;}
.x41_c01220{left:416.159820px;}
.x4f_c01220{left:424.439250px;}
.x35_c01220{left:426.238770px;}
.x3c_c01220{left:430.559685px;}
.x42_c01220{left:443.878320px;}
.x36_c01220{left:444.959385px;}
.x4a_c01220{left:458.279850px;}
.x4b_c01220{left:473.399820px;}
.x32_c01220{left:483.839535px;}
.x52_c01220{left:487.079400px;}
.x43_c01220{left:488.878920px;}
.x3d_c01220{left:492.479685px;}
.x33_c01220{left:494.279250px;}
.x4c_c01220{left:498.598530px;}
.x44_c01220{left:502.199385px;}
.x51_c01220{left:507.958920px;}
.x4d_c01220{left:513.000000px;}
.x53_c01220{left:514.799520px;}
.x2f_c01220{left:515.878920px;}
.x3e_c01220{left:519.118785px;}
.x30_c01220{left:534.238770px;}
.x40_c01220{left:551.878320px;}
.x48_c01220{left:556.919535px;}
.x57_c01220{left:565.559685px;}
.x50_c01220{left:567.000000px;}
.x3f_c01220{left:569.158770px;}
.x58_c01220{left:656.279250px;}
.x5b_c01220{left:694.439250px;}
.x62_c01220{left:705.958335px;}
.x5c_c01220{left:712.078770px;}
.x63_c01220{left:735.118785px;}
.x5d_c01220{left:740.878320px;}
.x59_c01220{left:741.959385px;}
.x5a_c01220{left:756.359250px;}
.x61_c01220{left:767.519070px;}
.x5e_c01220{left:785.878965px;}
.x64_c01220{left:797.038965px;}
.x5f_c01220{left:819.719520px;}
.x60_c01220{left:834.839535px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls38_c01220{letter-spacing:-15.271440pt;}
.ls15_c01220{letter-spacing:-10.097267pt;}
.ls27_c01220{letter-spacing:-7.789733pt;}
.ls11_c01220{letter-spacing:-7.042067pt;}
.ls3e_c01220{letter-spacing:-6.867733pt;}
.ls1c_c01220{letter-spacing:-6.464000pt;}
.ls21_c01220{letter-spacing:-6.405020pt;}
.ls28_c01220{letter-spacing:-5.998287pt;}
.ls32_c01220{letter-spacing:-5.761647pt;}
.ls3a_c01220{letter-spacing:-5.490000pt;}
.ls25_c01220{letter-spacing:-5.212200pt;}
.ls14_c01220{letter-spacing:-5.124600pt;}
.ls1a_c01220{letter-spacing:-4.487333pt;}
.ls30_c01220{letter-spacing:-4.482200pt;}
.ls19_c01220{letter-spacing:-4.291467pt;}
.ls10_c01220{letter-spacing:-4.165000pt;}
.lse_c01220{letter-spacing:-3.839800pt;}
.ls2a_c01220{letter-spacing:-3.803800pt;}
.ls1b_c01220{letter-spacing:-3.781200pt;}
.ls22_c01220{letter-spacing:-3.700000pt;}
.ls39_c01220{letter-spacing:-3.665200pt;}
.ls3c_c01220{letter-spacing:-3.662667pt;}
.ls2f_c01220{letter-spacing:-3.606200pt;}
.ls35_c01220{letter-spacing:-3.435867pt;}
.lsa_c01220{letter-spacing:-3.423933pt;}
.ls4_c01220{letter-spacing:-3.379467pt;}
.ls1e_c01220{letter-spacing:-3.286213pt;}
.ls7_c01220{letter-spacing:-3.202267pt;}
.ls33_c01220{letter-spacing:-3.085500pt;}
.lsd_c01220{letter-spacing:-3.003220pt;}
.lsf_c01220{letter-spacing:-2.934840pt;}
.ls26_c01220{letter-spacing:-2.886400pt;}
.ls24_c01220{letter-spacing:-2.746553pt;}
.ls37_c01220{letter-spacing:-2.595000pt;}
.ls12_c01220{letter-spacing:-2.560400pt;}
.ls6_c01220{letter-spacing:-2.559867pt;}
.ls9_c01220{letter-spacing:-2.544780pt;}
.ls29_c01220{letter-spacing:-2.533333pt;}
.ls16_c01220{letter-spacing:-2.474267pt;}
.ls31_c01220{letter-spacing:-2.428200pt;}
.ls20_c01220{letter-spacing:-2.309267pt;}
.ls2b_c01220{letter-spacing:-2.293507pt;}
.ls3d_c01220{letter-spacing:-2.291667pt;}
.ls18_c01220{letter-spacing:-2.095313pt;}
.ls1f_c01220{letter-spacing:-2.027667pt;}
.ls3f_c01220{letter-spacing:-1.975500pt;}
.ls1d_c01220{letter-spacing:-1.973800pt;}
.ls8_c01220{letter-spacing:-1.922820pt;}
.ls2d_c01220{letter-spacing:-1.352800pt;}
.ls2c_c01220{letter-spacing:-1.299400pt;}
.ls5_c01220{letter-spacing:-1.280420pt;}
.ls2e_c01220{letter-spacing:-1.023467pt;}
.ls17_c01220{letter-spacing:-0.945767pt;}
.ls13_c01220{letter-spacing:-0.696000pt;}
.ls23_c01220{letter-spacing:-0.651933pt;}
.lsb_c01220{letter-spacing:-0.642400pt;}
.lsc_c01220{letter-spacing:0.000000pt;}
.ls2_c01220{letter-spacing:0.642400pt;}
.ls3b_c01220{letter-spacing:0.695600pt;}
.ls1_c01220{letter-spacing:1.280420pt;}
.ls36_c01220{letter-spacing:1.334400pt;}
.ls34_c01220{letter-spacing:2.117000pt;}
.ls0_c01220{letter-spacing:3.839800pt;}
.ls3_c01220{letter-spacing:12.809067pt;}
.ws0_c01220{word-spacing:0.000000pt;}
._1a_c01220{margin-left:-25.832267pt;}
._a_c01220{margin-left:-18.676013pt;}
._1d_c01220{margin-left:-15.125190pt;}
._16_c01220{margin-left:-9.155429pt;}
._18_c01220{margin-left:-6.561752pt;}
._1b_c01220{margin-left:-5.060719pt;}
._17_c01220{margin-left:-4.015205pt;}
._1_c01220{margin-left:-2.608226pt;}
._15_c01220{margin-left:-1.265718pt;}
._b_c01220{width:0.914062pt;}
._3_c01220{width:2.179959pt;}
._0_c01220{width:3.111593pt;}
._2_c01220{width:4.365605pt;}
._5_c01220{width:5.411682pt;}
._14_c01220{width:7.121240pt;}
._4_c01220{width:8.129511pt;}
._13_c01220{width:9.040013pt;}
._10_c01220{width:9.976103pt;}
._6_c01220{width:11.565556pt;}
._11_c01220{width:12.462970pt;}
._c_c01220{width:14.180288pt;}
._12_c01220{width:15.938846pt;}
._f_c01220{width:18.307555pt;}
._e_c01220{width:19.607493pt;}
._d_c01220{width:21.261596pt;}
._8_c01220{width:23.636606pt;}
._7_c01220{width:25.220450pt;}
._9_c01220{width:28.576708pt;}
._1c_c01220{width:30.180889pt;}
._1e_c01220{width:31.275377pt;}
._1f_c01220{width:32.267844pt;}
._19_c01220{width:33.208725pt;}
.fs9_c01220{font-size:35.333333pt;}
.fs11_c01220{font-size:36.666667pt;}
.fs2_c01220{font-size:42.000000pt;}
.fs10_c01220{font-size:44.000000pt;}
.fs8_c01220{font-size:44.666667pt;}
.fsd_c01220{font-size:45.333333pt;}
.fsa_c01220{font-size:46.000000pt;}
.fsc_c01220{font-size:47.333333pt;}
.fs6_c01220{font-size:48.000000pt;}
.fs1_c01220{font-size:48.666667pt;}
.fs5_c01220{font-size:49.333333pt;}
.fs4_c01220{font-size:50.000000pt;}
.fs0_c01220{font-size:50.666667pt;}
.fs3_c01220{font-size:51.333333pt;}
.fsf_c01220{font-size:52.000000pt;}
.fse_c01220{font-size:52.666667pt;}
.fsb_c01220{font-size:53.333333pt;}
.fs7_c01220{font-size:56.666667pt;}
.y0_c01220{bottom:0.000000pt;}
.y6a_c01220{bottom:51.893840pt;}
.y69_c01220{bottom:51.893853pt;}
.y37_c01220{bottom:52.214600pt;}
.y38_c01220{bottom:52.214640pt;}
.y68_c01220{bottom:70.774133pt;}
.y35_c01220{bottom:71.093120pt;}
.y36_c01220{bottom:71.093573pt;}
.y67_c01220{bottom:89.014480pt;}
.y33_c01220{bottom:89.654520pt;}
.y34_c01220{bottom:89.654640pt;}
.y65_c01220{bottom:107.893347pt;}
.y66_c01220{bottom:107.893453pt;}
.y32_c01220{bottom:108.533493pt;}
.y64_c01220{bottom:126.454880pt;}
.y31_c01220{bottom:126.773840pt;}
.y63_c01220{bottom:145.013973pt;}
.y2f_c01220{bottom:145.653520pt;}
.y30_c01220{bottom:145.654120pt;}
.y62_c01220{bottom:163.254373pt;}
.y2e_c01220{bottom:163.893880pt;}
.y61_c01220{bottom:182.134640pt;}
.y60_c01220{bottom:182.135013pt;}
.y2d_c01220{bottom:182.454107pt;}
.y5f_c01220{bottom:200.694107pt;}
.y2c_c01220{bottom:201.334373pt;}
.y5d_c01220{bottom:219.574013pt;}
.y5e_c01220{bottom:219.574507pt;}
.y2b_c01220{bottom:219.893840pt;}
.y2a_c01220{bottom:219.893960pt;}
.y5c_c01220{bottom:238.452987pt;}
.y29_c01220{bottom:238.774227pt;}
.y28_c01220{bottom:238.774733pt;}
.y5b_c01220{bottom:257.014507pt;}
.y5a_c01220{bottom:257.015000pt;}
.y27_c01220{bottom:257.333840pt;}
.y26_c01220{bottom:257.334800pt;}
.y58_c01220{bottom:275.573533pt;}
.y59_c01220{bottom:275.574093pt;}
.y25_c01220{bottom:275.893920pt;}
.y57_c01220{bottom:294.132627pt;}
.y24_c01220{bottom:294.774187pt;}
.y56_c01220{bottom:312.694147pt;}
.y22_c01220{bottom:313.332707pt;}
.y23_c01220{bottom:313.333293pt;}
.y55_c01220{bottom:331.573120pt;}
.y21_c01220{bottom:331.894227pt;}
.y20_c01220{bottom:350.134587pt;}
.y54_c01220{bottom:350.134640pt;}
.y1e_c01220{bottom:369.013493pt;}
.y1f_c01220{bottom:369.013547pt;}
.y53_c01220{bottom:387.253840pt;}
.y1d_c01220{bottom:387.575013pt;}
.y1c_c01220{bottom:406.134120pt;}
.y52_c01220{bottom:406.134560pt;}
.y51_c01220{bottom:424.053547pt;}
.y50_c01220{bottom:424.053960pt;}
.y1a_c01220{bottom:424.693600pt;}
.y1b_c01220{bottom:424.693680pt;}
.y4f_c01220{bottom:442.934227pt;}
.y19_c01220{bottom:443.255133pt;}
.y18_c01220{bottom:461.174107pt;}
.y17_c01220{bottom:461.174213pt;}
.y4e_c01220{bottom:461.174587pt;}
.y4d_c01220{bottom:479.733680pt;}
.y15_c01220{bottom:480.054427pt;}
.y16_c01220{bottom:480.054480pt;}
.y7d_c01220{bottom:481.014093pt;}
.y4c_c01220{bottom:498.294640pt;}
.y14_c01220{bottom:498.294760pt;}
.y7c_c01220{bottom:499.894373pt;}
.y7b_c01220{bottom:499.894427pt;}
.y4b_c01220{bottom:516.853733pt;}
.y12_c01220{bottom:517.173093pt;}
.y13_c01220{bottom:517.173707pt;}
.y7a_c01220{bottom:518.454653pt;}
.y4a_c01220{bottom:535.094080pt;}
.y10_c01220{bottom:535.734413pt;}
.y11_c01220{bottom:535.734613pt;}
.y79_c01220{bottom:537.013747pt;}
.y49_c01220{bottom:554.294227pt;}
.yf_c01220{bottom:554.294613pt;}
.y78_c01220{bottom:555.254093pt;}
.y47_c01220{bottom:572.534400pt;}
.y48_c01220{bottom:572.534507pt;}
.ye_c01220{bottom:572.534973pt;}
.y77_c01220{bottom:573.494440pt;}
.y46_c01220{bottom:590.774733pt;}
.y45_c01220{bottom:590.775253pt;}
.yd_c01220{bottom:591.094080pt;}
.yc_c01220{bottom:591.094480pt;}
.y75_c01220{bottom:592.053107pt;}
.y76_c01220{bottom:592.053547pt;}
.y44_c01220{bottom:609.334347pt;}
.y43_c01220{bottom:609.334613pt;}
.yb_c01220{bottom:609.334840pt;}
.y74_c01220{bottom:610.614627pt;}
.y73_c01220{bottom:610.614973pt;}
.y42_c01220{bottom:627.574973pt;}
.ya_c01220{bottom:628.215107pt;}
.y72_c01220{bottom:629.174067pt;}
.y41_c01220{bottom:646.134080pt;}
.y8_c01220{bottom:646.773493pt;}
.y9_c01220{bottom:646.774213pt;}
.y71_c01220{bottom:647.414347pt;}
.y70_c01220{bottom:647.415187pt;}
.y3f_c01220{bottom:664.693200pt;}
.y40_c01220{bottom:664.693680pt;}
.y7_c01220{bottom:665.013853pt;}
.y6f_c01220{bottom:665.974307pt;}
.y3e_c01220{bottom:683.254720pt;}
.y3d_c01220{bottom:683.255107pt;}
.y6_c01220{bottom:683.574080pt;}
.y6e_c01220{bottom:684.533400pt;}
.y3c_c01220{bottom:701.814213pt;}
.y4_c01220{bottom:702.454320pt;}
.y5_c01220{bottom:702.454347pt;}
.y6d_c01220{bottom:703.094907pt;}
.y3a_c01220{bottom:720.373800pt;}
.y3b_c01220{bottom:720.373867pt;}
.y3_c01220{bottom:720.694667pt;}
.y2_c01220{bottom:720.695133pt;}
.y6c_c01220{bottom:721.654027pt;}
.y39_c01220{bottom:738.614133pt;}
.y1_c01220{bottom:739.254227pt;}
.y6b_c01220{bottom:739.894373pt;}
.h1a_c01220{height:35.986328pt;}
.hc_c01220{height:36.851562pt;}
.h3_c01220{height:43.804688pt;}
.h16_c01220{height:45.890625pt;}
.hf_c01220{height:46.455078pt;}
.ha_c01220{height:46.585938pt;}
.h18_c01220{height:47.109375pt;}
.h10_c01220{height:47.281250pt;}
.h2_c01220{height:47.763672pt;}
.hd_c01220{height:47.976562pt;}
.h15_c01220{height:48.096354pt;}
.h7_c01220{height:48.375000pt;}
.h6_c01220{height:48.417969pt;}
.h17_c01220{height:48.755208pt;}
.h5_c01220{height:49.072266pt;}
.hb_c01220{height:49.701823pt;}
.h13_c01220{height:49.718750pt;}
.h12_c01220{height:49.726562pt;}
.h19_c01220{height:50.072917pt;}
.h4_c01220{height:50.380859pt;}
.h8_c01220{height:50.731771pt;}
.h14_c01220{height:51.035156pt;}
.h1_c01220{height:51.062500pt;}
.h11_c01220{height:51.689453pt;}
.h1b_c01220{height:52.049479pt;}
.he_c01220{height:52.317708pt;}
.h9_c01220{height:56.002604pt;}
.h0_c01220{height:793.333333pt;}
.w0_c01220{width:1122.666667pt;}
.x0_c01220{left:0.000000pt;}
.x23_c01220{left:46.399480pt;}
.x18_c01220{left:47.360213pt;}
.xb_c01220{left:48.319453pt;}
.x3_c01220{left:49.279720pt;}
.x4_c01220{left:65.598680pt;}
.x25_c01220{left:68.480000pt;}
.x13_c01220{left:69.439480pt;}
.x1e_c01220{left:79.999467pt;}
.x28_c01220{left:81.279520pt;}
.x17_c01220{left:82.558600pt;}
.x1_c01220{left:84.159733pt;}
.x26_c01220{left:86.399480pt;}
.x1f_c01220{left:94.079613pt;}
.x2a_c01220{left:95.359867pt;}
.x19_c01220{left:97.918947pt;}
.x21_c01220{left:98.879867pt;}
.xc_c01220{left:100.158667pt;}
.x5_c01220{left:102.719200pt;}
.x2b_c01220{left:104.639613pt;}
.x2_c01220{left:109.440000pt;}
.x29_c01220{left:115.199733pt;}
.x27_c01220{left:117.118667pt;}
.x16_c01220{left:118.079613pt;}
.x6_c01220{left:119.039067pt;}
.xd_c01220{left:122.559067pt;}
.x20_c01220{left:123.518533pt;}
.x22_c01220{left:128.318813pt;}
.x9_c01220{left:154.239200pt;}
.x2c_c01220{left:156.799867pt;}
.x1c_c01220{left:162.238813pt;}
.x2d_c01220{left:165.758813pt;}
.x1a_c01220{left:168.959467pt;}
.xa_c01220{left:175.999467pt;}
.xe_c01220{left:184.639200pt;}
.x7_c01220{left:190.719720pt;}
.x1b_c01220{left:194.239720pt;}
.x1d_c01220{left:197.759720pt;}
.x8_c01220{left:201.279720pt;}
.xf_c01220{left:202.239200pt;}
.x24_c01220{left:206.399453pt;}
.x10_c01220{left:207.679733pt;}
.x11_c01220{left:228.799867pt;}
.x12_c01220{left:230.399453pt;}
.x14_c01220{left:232.319867pt;}
.x15_c01220{left:246.719200pt;}
.x56_c01220{left:291.839880pt;}
.x47_c01220{left:292.800187pt;}
.x38_c01220{left:293.759027pt;}
.x2e_c01220{left:294.719293pt;}
.x31_c01220{left:321.919867pt;}
.x37_c01220{left:324.799867pt;}
.x49_c01220{left:328.000280pt;}
.x34_c01220{left:328.960493pt;}
.x45_c01220{left:336.959453pt;}
.x54_c01220{left:344.958947pt;}
.x46_c01220{left:350.078693pt;}
.x39_c01220{left:352.639200pt;}
.x3b_c01220{left:354.238813pt;}
.x4e_c01220{left:357.758787pt;}
.x3a_c01220{left:363.518520pt;}
.x55_c01220{left:367.678667pt;}
.x41_c01220{left:369.919840pt;}
.x4f_c01220{left:377.279333pt;}
.x35_c01220{left:378.878907pt;}
.x3c_c01220{left:382.719720pt;}
.x42_c01220{left:394.558507pt;}
.x36_c01220{left:395.519453pt;}
.x4a_c01220{left:407.359867pt;}
.x4b_c01220{left:420.799840pt;}
.x32_c01220{left:430.079587pt;}
.x52_c01220{left:432.959467pt;}
.x43_c01220{left:434.559040pt;}
.x3d_c01220{left:437.759720pt;}
.x33_c01220{left:439.359333pt;}
.x4c_c01220{left:443.198693pt;}
.x44_c01220{left:446.399453pt;}
.x51_c01220{left:451.519040pt;}
.x4d_c01220{left:456.000000pt;}
.x53_c01220{left:457.599573pt;}
.x2f_c01220{left:458.559040pt;}
.x3e_c01220{left:461.438920pt;}
.x30_c01220{left:474.878907pt;}
.x40_c01220{left:490.558507pt;}
.x48_c01220{left:495.039587pt;}
.x57_c01220{left:502.719720pt;}
.x50_c01220{left:504.000000pt;}
.x3f_c01220{left:505.918907pt;}
.x58_c01220{left:583.359333pt;}
.x5b_c01220{left:617.279333pt;}
.x62_c01220{left:627.518520pt;}
.x5c_c01220{left:632.958907pt;}
.x63_c01220{left:653.438920pt;}
.x5d_c01220{left:658.558507pt;}
.x59_c01220{left:659.519453pt;}
.x5a_c01220{left:672.319333pt;}
.x61_c01220{left:682.239173pt;}
.x5e_c01220{left:698.559080pt;}
.x64_c01220{left:708.479080pt;}
.x5f_c01220{left:728.639573pt;}
.x60_c01220{left:742.079587pt;}
}





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

.ir_c01221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
.sc__c01221{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
}
.y0_c01221{bottom:0.000000px;}
.h0_c01221{height:892.500000px;}
.w0_c01221{width:1263.000000px;}
.x0_c01221{left:0.000000px;}
@media print{
.y0_c01221{bottom:0.000000pt;}
.h0_c01221{height:793.333333pt;}
.w0_c01221{width:1122.666667pt;}
.x0_c01221{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_c01222 {
    display:none;
  }
  .loading-indicator_c01222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01222 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01222 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01222" -> "#page-container .classname_c01222")
 */
.pf_c01222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01222 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01222 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01222 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01222 {overflow:visible;}
  }
}
.c_c01222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01222 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01222:after { /* webkit #35443 */
  content: '';
}
.t_c01222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01222 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01222 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01222 { /* info for Javascript */
  display:none;
}
.l_c01222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_baf80db041358680c089c042.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01222;src:url('chunks/assets/font_aa15fd3cdeb0a7da05f9c8dc.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01222;src:url('chunks/assets/font_c9215d7653d67310a399fb84.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01222;src:url('chunks/assets/font_1efb3374685790098bcb0426.woff2')format("woff");}.ff4_c01222{font-family:ff4_c01222;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01222;src:url('chunks/assets/font_99e071768e6b2dfdfe8f94d4.woff2')format("woff");}.ff5_c01222{font-family:ff5_c01222;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01222;src:url('chunks/assets/font_b3dcd7a519cb6ca17408d9b1.woff2')format("woff");}.ff6_c01222{font-family:ff6_c01222;line-height:1.432129;font-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_c01222{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m1c_c01222{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m34_c01222{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m1b_c01222{transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191781,0.000000,0.000000,0.250000,0,0);}
.m22_c01222{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.m16_c01222{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m26_c01222{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.mc_c01222{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.mb_c01222{transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);}
.m3_c01222{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m23_c01222{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m2_c01222{transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207792,0.000000,0.000000,0.250000,0,0);}
.m27_c01222{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m31_c01222{transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216912,0.000000,0.000000,0.250000,0,0);}
.m5_c01222{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.m25_c01222{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);}
.m2b_c01222{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.me_c01222{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m1d_c01222{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m33_c01222{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_c01222{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m32_c01222{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m21_c01222{transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234177,0.000000,0.000000,0.250000,0,0);}
.md_c01222{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m4_c01222{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m17_c01222{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m36_c01222{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);}
.m1f_c01222{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m2f_c01222{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m35_c01222{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m9_c01222{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m6_c01222{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m0_c01222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m30_c01222{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m2d_c01222{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m1e_c01222{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m12_c01222{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m29_c01222{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m2c_c01222{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m10_c01222{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m24_c01222{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m11_c01222{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_c01222{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m28_c01222{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m18_c01222{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m2e_c01222{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m8_c01222{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m7_c01222{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m14_c01222{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.mf_c01222{transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279221,0.000000,0.000000,0.250000,0,0);}
.m13_c01222{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m20_c01222{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m1a_c01222{transform:matrix(0.351449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351449,0.000000,0.000000,0.250000,0,0);}
.m19_c01222{transform:matrix(0.355634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355634,0.000000,0.000000,0.250000,0,0);}
.m2a_c01222{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.v0_c01222{vertical-align:0.000000px;}
.ls11_c01222{letter-spacing:-12.247028px;}
.ls34_c01222{letter-spacing:-11.832000px;}
.ls1f_c01222{letter-spacing:-11.524328px;}
.ls2a_c01222{letter-spacing:-9.367725px;}
.lsa_c01222{letter-spacing:-8.211953px;}
.ls32_c01222{letter-spacing:-7.958250px;}
.lse_c01222{letter-spacing:-7.922325px;}
.ls2d_c01222{letter-spacing:-7.823775px;}
.ls1a_c01222{letter-spacing:-7.205648px;}
.ls31_c01222{letter-spacing:-7.204800px;}
.ls10_c01222{letter-spacing:-6.879600px;}
.ls19_c01222{letter-spacing:-6.481853px;}
.ls1b_c01222{letter-spacing:-5.765175px;}
.ls23_c01222{letter-spacing:-5.712300px;}
.ls1d_c01222{letter-spacing:-5.249700px;}
.ls40_c01222{letter-spacing:-5.065253px;}
.lsf_c01222{letter-spacing:-5.042475px;}
.ls16_c01222{letter-spacing:-4.810575px;}
.ls15_c01222{letter-spacing:-4.803750px;}
.ls1e_c01222{letter-spacing:-4.701428px;}
.ls18_c01222{letter-spacing:-4.501575px;}
.ls27_c01222{letter-spacing:-4.319775px;}
.ls38_c01222{letter-spacing:-4.210275px;}
.ls2e_c01222{letter-spacing:-4.123350px;}
.ls1c_c01222{letter-spacing:-3.955875px;}
.ls30_c01222{letter-spacing:-3.653700px;}
.ls20_c01222{letter-spacing:-3.643200px;}
.ls3d_c01222{letter-spacing:-3.614018px;}
.lsc_c01222{letter-spacing:-3.602550px;}
.ls2f_c01222{letter-spacing:-3.312795px;}
.ls2b_c01222{letter-spacing:-3.163050px;}
.ls3e_c01222{letter-spacing:-2.998125px;}
.ls22_c01222{letter-spacing:-2.919375px;}
.ls33_c01222{letter-spacing:-2.918175px;}
.ls35_c01222{letter-spacing:-2.916000px;}
.lsd_c01222{letter-spacing:-2.879850px;}
.ls29_c01222{letter-spacing:-2.808300px;}
.ls36_c01222{letter-spacing:-2.745000px;}
.ls24_c01222{letter-spacing:-2.737500px;}
.ls41_c01222{letter-spacing:-2.345625px;}
.ls12_c01222{letter-spacing:-2.163173px;}
.ls2c_c01222{letter-spacing:-2.132100px;}
.ls37_c01222{letter-spacing:-1.477703px;}
.ls8_c01222{letter-spacing:-1.440473px;}
.ls9_c01222{letter-spacing:-0.900323px;}
.ls3f_c01222{letter-spacing:-0.815625px;}
.lsb_c01222{letter-spacing:-0.786600px;}
.ls39_c01222{letter-spacing:-0.772200px;}
.ls7_c01222{letter-spacing:-0.722700px;}
.ls6_c01222{letter-spacing:0.000000px;}
.ls0_c01222{letter-spacing:0.722700px;}
.ls3a_c01222{letter-spacing:0.738705px;}
.ls25_c01222{letter-spacing:0.750075px;}
.ls13_c01222{letter-spacing:0.760350px;}
.ls28_c01222{letter-spacing:0.782243px;}
.ls3c_c01222{letter-spacing:0.803700px;}
.ls26_c01222{letter-spacing:0.804750px;}
.ls3b_c01222{letter-spacing:0.867000px;}
.ls2_c01222{letter-spacing:1.440473px;}
.ls17_c01222{letter-spacing:1.522418px;}
.ls5_c01222{letter-spacing:2.163173px;}
.ls21_c01222{letter-spacing:2.165625px;}
.ls3_c01222{letter-spacing:3.602550px;}
.ls1_c01222{letter-spacing:4.319775px;}
.ls4_c01222{letter-spacing:5.765175px;}
.ls14_c01222{letter-spacing:8.645025px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01222{word-spacing:0.000000px;}
._d_c01222{margin-left:-47.167240px;}
._26_c01222{margin-left:-41.423447px;}
._1a_c01222{margin-left:-33.229792px;}
._20_c01222{margin-left:-29.032888px;}
._23_c01222{margin-left:-25.530000px;}
._19_c01222{margin-left:-22.178822px;}
._1d_c01222{margin-left:-19.824975px;}
._21_c01222{margin-left:-12.553944px;}
._22_c01222{margin-left:-8.835641px;}
._25_c01222{margin-left:-7.544608px;}
._13_c01222{margin-left:-6.514847px;}
._2_c01222{margin-left:-3.821550px;}
._0_c01222{margin-left:-2.485419px;}
._4_c01222{margin-left:-1.232970px;}
._14_c01222{width:1.579595px;}
._1_c01222{width:2.624946px;}
._3_c01222{width:3.834834px;}
._e_c01222{width:4.945308px;}
._5_c01222{width:6.190727px;}
._7_c01222{width:7.818242px;}
._c_c01222{width:8.820023px;}
._a_c01222{width:9.849871px;}
._b_c01222{width:11.346909px;}
._1b_c01222{width:13.010905px;}
._10_c01222{width:14.454288px;}
._6_c01222{width:15.544505px;}
._9_c01222{width:16.572047px;}
._8_c01222{width:17.979785px;}
._24_c01222{width:19.154115px;}
._18_c01222{width:20.202347px;}
._f_c01222{width:21.731629px;}
._1e_c01222{width:23.264773px;}
._16_c01222{width:24.542120px;}
._15_c01222{width:25.890065px;}
._1f_c01222{width:27.182482px;}
._1c_c01222{width:30.749387px;}
._17_c01222{width:32.224380px;}
._11_c01222{width:34.437635px;}
._12_c01222{width:41.635761px;}
.fc0_c01222{color:transparent;}
.fs9_c01222{font-size:49.500000px;}
.fs10_c01222{font-size:51.000000px;}
.fs3_c01222{font-size:51.750000px;}
.fsf_c01222{font-size:52.500000px;}
.fs6_c01222{font-size:53.250000px;}
.fse_c01222{font-size:54.000000px;}
.fs1_c01222{font-size:54.750000px;}
.fs0_c01222{font-size:55.500000px;}
.fs5_c01222{font-size:56.250000px;}
.fs8_c01222{font-size:57.000000px;}
.fs2_c01222{font-size:57.750000px;}
.fs4_c01222{font-size:58.500000px;}
.fsa_c01222{font-size:59.250000px;}
.fsd_c01222{font-size:60.000000px;}
.fs7_c01222{font-size:60.750000px;}
.fsb_c01222{font-size:72.000000px;}
.fsc_c01222{font-size:86.250000px;}
.y0_c01222{bottom:0.000000px;}
.y30_c01222{bottom:44.701035px;}
.y2f_c01222{bottom:44.701125px;}
.y64_c01222{bottom:46.141275px;}
.y65_c01222{bottom:46.141335px;}
.y2e_c01222{bottom:66.300045px;}
.y63_c01222{bottom:67.741440px;}
.y96_c01222{bottom:68.100975px;}
.y2d_c01222{bottom:87.180285px;}
.y62_c01222{bottom:88.620435px;}
.y61_c01222{bottom:88.621140px;}
.y95_c01222{bottom:89.341305px;}
.y2c_c01222{bottom:108.420600px;}
.y2b_c01222{bottom:108.421650px;}
.y60_c01222{bottom:109.861455px;}
.y94_c01222{bottom:110.581605px;}
.y2a_c01222{bottom:129.300630px;}
.y5f_c01222{bottom:130.740435px;}
.y92_c01222{bottom:131.460120px;}
.y93_c01222{bottom:131.460600px;}
.y29_c01222{bottom:151.260870px;}
.y5e_c01222{bottom:152.701035px;}
.y5d_c01222{bottom:152.701440px;}
.y91_c01222{bottom:153.060285px;}
.y28_c01222{bottom:172.501185px;}
.y5c_c01222{bottom:173.580435px;}
.y5b_c01222{bottom:173.580810px;}
.y90_c01222{bottom:174.300585px;}
.y27_c01222{bottom:193.741500px;}
.y5a_c01222{bottom:195.541035px;}
.y8f_c01222{bottom:195.900285px;}
.y8e_c01222{bottom:195.900450px;}
.y26_c01222{bottom:214.979775px;}
.y58_c01222{bottom:216.419385px;}
.y59_c01222{bottom:216.420600px;}
.y8d_c01222{bottom:217.140750px;}
.y25_c01222{bottom:235.861500px;}
.y57_c01222{bottom:237.299625px;}
.y8c_c01222{bottom:238.381740px;}
.y23_c01222{bottom:257.099940px;}
.y24_c01222{bottom:257.100285px;}
.y56_c01222{bottom:258.181350px;}
.y8a_c01222{bottom:259.258065px;}
.y8b_c01222{bottom:259.260720px;}
.y22_c01222{bottom:278.340255px;}
.y55_c01222{bottom:280.140135px;}
.y54_c01222{bottom:280.140285px;}
.y89_c01222{bottom:280.858245px;}
.y21_c01222{bottom:299.940420px;}
.y53_c01222{bottom:301.380585px;}
.y52_c01222{bottom:301.380795px;}
.y88_c01222{bottom:301.739955px;}
.y20_c01222{bottom:321.180720px;}
.y1f_c01222{bottom:321.180885px;}
.y51_c01222{bottom:322.979715px;}
.y87_c01222{bottom:323.340135px;}
.y1d_c01222{bottom:342.420540px;}
.y1e_c01222{bottom:342.421185px;}
.y50_c01222{bottom:343.861425px;}
.y86_c01222{bottom:344.939055px;}
.y1c_c01222{bottom:363.660855px;}
.y4f_c01222{bottom:365.461605px;}
.y85_c01222{bottom:366.539205px;}
.y1b_c01222{bottom:384.899715px;}
.y4d_c01222{bottom:386.340090px;}
.y4e_c01222{bottom:386.340585px;}
.y84_c01222{bottom:387.419445px;}
.y1a_c01222{bottom:405.781425px;}
.y4b_c01222{bottom:407.939025px;}
.y4c_c01222{bottom:407.940255px;}
.y83_c01222{bottom:408.301170px;}
.y82_c01222{bottom:408.301275px;}
.y18_c01222{bottom:427.018890px;}
.y19_c01222{bottom:427.020270px;}
.y4a_c01222{bottom:428.820720px;}
.y81_c01222{bottom:429.541605px;}
.y17_c01222{bottom:447.900600px;}
.y49_c01222{bottom:450.059580px;}
.y7f_c01222{bottom:450.779325px;}
.y80_c01222{bottom:450.780435px;}
.y16_c01222{bottom:469.139445px;}
.y48_c01222{bottom:470.941290px;}
.y7e_c01222{bottom:471.661005px;}
.y15_c01222{bottom:490.741080px;}
.y47_c01222{bottom:492.180135px;}
.y46_c01222{bottom:492.180375px;}
.y7d_c01222{bottom:493.261185px;}
.y7c_c01222{bottom:493.261305px;}
.y14_c01222{bottom:510.899940px;}
.y45_c01222{bottom:512.700780px;}
.y7b_c01222{bottom:514.140285px;}
.y13_c01222{bottom:532.500120px;}
.y44_c01222{bottom:534.661005px;}
.y7a_c01222{bottom:535.380585px;}
.y12_c01222{bottom:553.740420px;}
.y42_c01222{bottom:555.901275px;}
.y43_c01222{bottom:555.901470px;}
.y79_c01222{bottom:556.620915px;}
.y11_c01222{bottom:575.340585px;}
.y41_c01222{bottom:577.140105px;}
.y78_c01222{bottom:577.859760px;}
.y10_c01222{bottom:596.219610px;}
.y40_c01222{bottom:598.021320px;}
.y76_c01222{bottom:598.741440px;}
.y77_c01222{bottom:598.741470px;}
.ye_c01222{bottom:617.100570px;}
.yf_c01222{bottom:617.101320px;}
.y3f_c01222{bottom:619.260135px;}
.y3e_c01222{bottom:619.260240px;}
.y74_c01222{bottom:619.979070px;}
.y75_c01222{bottom:619.980285px;}
.yd_c01222{bottom:637.980810px;}
.y3d_c01222{bottom:639.780630px;}
.y73_c01222{bottom:640.860780px;}
.yc_c01222{bottom:659.221140px;}
.y3c_c01222{bottom:661.020945px;}
.y72_c01222{bottom:662.460960px;}
.yb_c01222{bottom:680.459970px;}
.ya_c01222{bottom:680.460885px;}
.y3b_c01222{bottom:682.261260px;}
.y70_c01222{bottom:682.980840px;}
.y71_c01222{bottom:682.981335px;}
.y9_c01222{bottom:702.421125px;}
.y3a_c01222{bottom:703.500120px;}
.y6f_c01222{bottom:704.581005px;}
.y6e_c01222{bottom:704.581575px;}
.y8_c01222{bottom:723.300105px;}
.y39_c01222{bottom:724.740420px;}
.y6d_c01222{bottom:725.460570px;}
.y6c_c01222{bottom:725.461830px;}
.y7_c01222{bottom:744.181755px;}
.y38_c01222{bottom:745.981275px;}
.y6b_c01222{bottom:746.702130px;}
.y6_c01222{bottom:765.060750px;}
.y5_c01222{bottom:765.060900px;}
.y36_c01222{bottom:766.859805px;}
.y37_c01222{bottom:766.860255px;}
.y6a_c01222{bottom:767.581140px;}
.y3_c01222{bottom:786.300585px;}
.y4_c01222{bottom:786.301215px;}
.y35_c01222{bottom:787.741515px;}
.y34_c01222{bottom:787.741545px;}
.y69_c01222{bottom:788.821455px;}
.y2_c01222{bottom:807.180840px;}
.y33_c01222{bottom:808.620525px;}
.y67_c01222{bottom:809.700045px;}
.y68_c01222{bottom:809.700435px;}
.y1_c01222{bottom:828.421140px;}
.y32_c01222{bottom:830.220705px;}
.y31_c01222{bottom:830.221230px;}
.y66_c01222{bottom:831.300195px;}
.h1d_c01222{height:51.525879px;}
.h10_c01222{height:51.626953px;}
.h9_c01222{height:52.261963px;}
.h1c_c01222{height:52.998047px;}
.h1e_c01222{height:53.191406px;}
.h2_c01222{height:53.734131px;}
.h5_c01222{height:53.973633px;}
.h4_c01222{height:54.108398px;}
.h1_c01222{height:54.470215px;}
.h12_c01222{height:55.177734px;}
.h7_c01222{height:55.206299px;}
.h14_c01222{height:55.538086px;}
.h11_c01222{height:55.933594px;}
.h1f_c01222{height:55.942383px;}
.h8_c01222{height:56.678467px;}
.hf_c01222{height:56.689453px;}
.h3_c01222{height:57.073242px;}
.he_c01222{height:57.414551px;}
.hd_c01222{height:57.445312px;}
.h6_c01222{height:57.814453px;}
.hc_c01222{height:58.201172px;}
.h19_c01222{height:58.666992px;}
.hb_c01222{height:58.957031px;}
.h1b_c01222{height:59.296875px;}
.h16_c01222{height:59.622803px;}
.h15_c01222{height:59.712891px;}
.ha_c01222{height:60.038086px;}
.h13_c01222{height:60.231445px;}
.h1a_c01222{height:62.578125px;}
.h17_c01222{height:75.093750px;}
.h18_c01222{height:89.956055px;}
.h0_c01222{height:892.500000px;}
.w0_c01222{width:1263.000000px;}
.x0_c01222{left:0.000000px;}
.x6_c01222{left:34.918965px;}
.xc_c01222{left:36.360165px;}
.x13_c01222{left:37.439685px;}
.x1a_c01222{left:38.519460px;}
.x1b_c01222{left:39.598245px;}
.x20_c01222{left:41.399850px;}
.x25_c01222{left:42.478965px;}
.x14_c01222{left:52.559685px;}
.x21_c01222{left:57.239850px;}
.x1_c01222{left:74.879565px;}
.x17_c01222{left:77.758560px;}
.x1f_c01222{left:80.639145px;}
.x24_c01222{left:82.799085px;}
.x22_c01222{left:84.958350px;}
.x7_c01222{left:87.118785px;}
.x2_c01222{left:88.918350px;}
.xd_c01222{left:93.598500px;}
.xb_c01222{left:96.838515px;}
.x23_c01222{left:112.678500px;}
.xe_c01222{left:117.358665px;}
.x1c_c01222{left:119.878350px;}
.x8_c01222{left:123.838515px;}
.x15_c01222{left:147.239250px;}
.x16_c01222{left:157.679100px;}
.xf_c01222{left:161.279850px;}
.x10_c01222{left:177.120000px;}
.x1d_c01222{left:182.518665px;}
.x3_c01222{left:184.679100px;}
.x11_c01222{left:192.958350px;}
.x18_c01222{left:200.159850px;}
.x19_c01222{left:210.599700px;}
.x12_c01222{left:212.399250px;}
.x4_c01222{left:216.000000px;}
.x5_c01222{left:231.120000px;}
.x9_c01222{left:246.958350px;}
.x26_c01222{left:257.399850px;}
.xa_c01222{left:268.918950px;}
.x27_c01222{left:272.878950px;}
.x1e_c01222{left:283.318800px;}
.x28_c01222{left:316.079265px;}
.x32_c01222{left:317.157645px;}
.x35_c01222{left:318.238785px;}
.x3d_c01222{left:319.319205px;}
.x42_c01222{left:320.399985px;}
.x43_c01222{left:321.476070px;}
.x50_c01222{left:322.559685px;}
.x55_c01222{left:323.639985px;}
.x36_c01222{left:333.358635px;}
.x48_c01222{left:338.038950px;}
.x51_c01222{left:349.918950px;}
.x38_c01222{left:358.559145px;}
.x52_c01222{left:360.358635px;}
.x46_c01222{left:369.359850px;}
.x31_c01222{left:373.319850px;}
.x33_c01222{left:374.399235px;}
.x3e_c01222{left:376.198785px;}
.x2b_c01222{left:379.079385px;}
.x3f_c01222{left:385.559100px;}
.x40_c01222{left:387.719565px;}
.x56_c01222{left:389.878320px;}
.x57_c01222{left:390.959385px;}
.x47_c01222{left:395.998950px;}
.x2c_c01222{left:398.159415px;}
.x41_c01222{left:404.279850px;}
.x2d_c01222{left:409.678530px;}
.x34_c01222{left:412.918350px;}
.x53_c01222{left:425.518665px;}
.x2e_c01222{left:426.599670px;}
.x54_c01222{left:435.599070px;}
.x4b_c01222{left:440.999400px;}
.x4c_c01222{left:447.838530px;}
.x29_c01222{left:458.279850px;}
.x4d_c01222{left:461.519670px;}
.x2f_c01222{left:483.478635px;}
.x2a_c01222{left:491.759535px;}
.x30_c01222{left:505.080000px;}
.x49_c01222{left:506.159415px;}
.x3a_c01222{left:508.319820px;}
.x3b_c01222{left:512.639100px;}
.x58_c01222{left:516.958335px;}
.x4a_c01222{left:518.039385px;}
.x3c_c01222{left:524.878320px;}
.x44_c01222{left:528.479235px;}
.x4e_c01222{left:537.119385px;}
.x45_c01222{left:542.878920px;}
.x39_c01222{left:548.279250px;}
.x4f_c01222{left:551.519070px;}
.x37_c01222{left:553.679670px;}
.x5a_c01222{left:646.559670px;}
.x59_c01222{left:647.638155px;}
.x70_c01222{left:649.080075px;}
.x7f_c01222{left:650.880300px;}
.x5b_c01222{left:669.238770px;}
.x5c_c01222{left:673.559685px;}
.x5d_c01222{left:684.358605px;}
.x64_c01222{left:688.318635px;}
.x7b_c01222{left:711.358605px;}
.x69_c01222{left:717.119985px;}
.x76_c01222{left:719.998950px;}
.x77_c01222{left:733.678530px;}
.x71_c01222{left:735.838950px;}
.x7c_c01222{left:742.679670px;}
.x6a_c01222{left:745.919535px;}
.x62_c01222{left:752.758530px;}
.x7a_c01222{left:759.239820px;}
.x63_c01222{left:761.039385px;}
.x5e_c01222{left:767.159820px;}
.x65_c01222{left:769.679715px;}
.x72_c01222{left:770.759130px;}
.x5f_c01222{left:778.679070px;}
.x6e_c01222{left:790.559055px;}
.x66_c01222{left:800.998905px;}
.x6c_c01222{left:810.359250px;}
.x7d_c01222{left:815.759490px;}
.x67_c01222{left:818.999355px;}
.x73_c01222{left:822.598575px;}
.x6d_c01222{left:824.038965px;}
.x6b_c01222{left:830.518620px;}
.x74_c01222{left:834.839535px;}
.x75_c01222{left:835.918950px;}
.x68_c01222{left:837.000000px;}
.x7e_c01222{left:838.799565px;}
.x79_c01222{left:842.039340px;}
.x60_c01222{left:844.918305px;}
.x78_c01222{left:860.399235px;}
.x6f_c01222{left:866.158815px;}
.x61_c01222{left:883.798560px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls11_c01222{letter-spacing:-10.886247pt;}
.ls34_c01222{letter-spacing:-10.517333pt;}
.ls1f_c01222{letter-spacing:-10.243847pt;}
.ls2a_c01222{letter-spacing:-8.326867pt;}
.lsa_c01222{letter-spacing:-7.299513pt;}
.ls32_c01222{letter-spacing:-7.074000pt;}
.lse_c01222{letter-spacing:-7.042067pt;}
.ls2d_c01222{letter-spacing:-6.954467pt;}
.ls1a_c01222{letter-spacing:-6.405020pt;}
.ls31_c01222{letter-spacing:-6.404267pt;}
.ls10_c01222{letter-spacing:-6.115200pt;}
.ls19_c01222{letter-spacing:-5.761647pt;}
.ls1b_c01222{letter-spacing:-5.124600pt;}
.ls23_c01222{letter-spacing:-5.077600pt;}
.ls1d_c01222{letter-spacing:-4.666400pt;}
.ls40_c01222{letter-spacing:-4.502447pt;}
.lsf_c01222{letter-spacing:-4.482200pt;}
.ls16_c01222{letter-spacing:-4.276067pt;}
.ls15_c01222{letter-spacing:-4.270000pt;}
.ls1e_c01222{letter-spacing:-4.179047pt;}
.ls18_c01222{letter-spacing:-4.001400pt;}
.ls27_c01222{letter-spacing:-3.839800pt;}
.ls38_c01222{letter-spacing:-3.742467pt;}
.ls2e_c01222{letter-spacing:-3.665200pt;}
.ls1c_c01222{letter-spacing:-3.516333pt;}
.ls30_c01222{letter-spacing:-3.247733pt;}
.ls20_c01222{letter-spacing:-3.238400pt;}
.ls3d_c01222{letter-spacing:-3.212460pt;}
.lsc_c01222{letter-spacing:-3.202267pt;}
.ls2f_c01222{letter-spacing:-2.944707pt;}
.ls2b_c01222{letter-spacing:-2.811600pt;}
.ls3e_c01222{letter-spacing:-2.665000pt;}
.ls22_c01222{letter-spacing:-2.595000pt;}
.ls33_c01222{letter-spacing:-2.593933pt;}
.ls35_c01222{letter-spacing:-2.592000pt;}
.lsd_c01222{letter-spacing:-2.559867pt;}
.ls29_c01222{letter-spacing:-2.496267pt;}
.ls36_c01222{letter-spacing:-2.440000pt;}
.ls24_c01222{letter-spacing:-2.433333pt;}
.ls41_c01222{letter-spacing:-2.085000pt;}
.ls12_c01222{letter-spacing:-1.922820pt;}
.ls2c_c01222{letter-spacing:-1.895200pt;}
.ls37_c01222{letter-spacing:-1.313513pt;}
.ls8_c01222{letter-spacing:-1.280420pt;}
.ls9_c01222{letter-spacing:-0.800287pt;}
.ls3f_c01222{letter-spacing:-0.725000pt;}
.lsb_c01222{letter-spacing:-0.699200pt;}
.ls39_c01222{letter-spacing:-0.686400pt;}
.ls7_c01222{letter-spacing:-0.642400pt;}
.ls6_c01222{letter-spacing:0.000000pt;}
.ls0_c01222{letter-spacing:0.642400pt;}
.ls3a_c01222{letter-spacing:0.656627pt;}
.ls25_c01222{letter-spacing:0.666733pt;}
.ls13_c01222{letter-spacing:0.675867pt;}
.ls28_c01222{letter-spacing:0.695327pt;}
.ls3c_c01222{letter-spacing:0.714400pt;}
.ls26_c01222{letter-spacing:0.715333pt;}
.ls3b_c01222{letter-spacing:0.770667pt;}
.ls2_c01222{letter-spacing:1.280420pt;}
.ls17_c01222{letter-spacing:1.353260pt;}
.ls5_c01222{letter-spacing:1.922820pt;}
.ls21_c01222{letter-spacing:1.925000pt;}
.ls3_c01222{letter-spacing:3.202267pt;}
.ls1_c01222{letter-spacing:3.839800pt;}
.ls4_c01222{letter-spacing:5.124600pt;}
.ls14_c01222{letter-spacing:7.684467pt;}
.ws0_c01222{word-spacing:0.000000pt;}
._d_c01222{margin-left:-41.926436pt;}
._26_c01222{margin-left:-36.820841pt;}
._1a_c01222{margin-left:-29.537593pt;}
._20_c01222{margin-left:-25.807011pt;}
._23_c01222{margin-left:-22.693333pt;}
._19_c01222{margin-left:-19.714508pt;}
._1d_c01222{margin-left:-17.622200pt;}
._21_c01222{margin-left:-11.159062pt;}
._22_c01222{margin-left:-7.853904pt;}
._25_c01222{margin-left:-6.706318pt;}
._13_c01222{margin-left:-5.790975pt;}
._2_c01222{margin-left:-3.396933pt;}
._0_c01222{margin-left:-2.209262pt;}
._4_c01222{margin-left:-1.095973pt;}
._14_c01222{width:1.404085pt;}
._1_c01222{width:2.333285pt;}
._3_c01222{width:3.408741pt;}
._e_c01222{width:4.395829pt;}
._5_c01222{width:5.502868pt;}
._7_c01222{width:6.949549pt;}
._c_c01222{width:7.840021pt;}
._a_c01222{width:8.755441pt;}
._b_c01222{width:10.086141pt;}
._1b_c01222{width:11.565249pt;}
._10_c01222{width:12.848256pt;}
._6_c01222{width:13.817338pt;}
._9_c01222{width:14.730708pt;}
._8_c01222{width:15.982031pt;}
._24_c01222{width:17.025880pt;}
._18_c01222{width:17.957641pt;}
._f_c01222{width:19.317004pt;}
._1e_c01222{width:20.679799pt;}
._16_c01222{width:21.815218pt;}
._15_c01222{width:23.013391pt;}
._1f_c01222{width:24.162206pt;}
._1c_c01222{width:27.332788pt;}
._17_c01222{width:28.643894pt;}
._11_c01222{width:30.611231pt;}
._12_c01222{width:37.009566pt;}
.fs9_c01222{font-size:44.000000pt;}
.fs10_c01222{font-size:45.333333pt;}
.fs3_c01222{font-size:46.000000pt;}
.fsf_c01222{font-size:46.666667pt;}
.fs6_c01222{font-size:47.333333pt;}
.fse_c01222{font-size:48.000000pt;}
.fs1_c01222{font-size:48.666667pt;}
.fs0_c01222{font-size:49.333333pt;}
.fs5_c01222{font-size:50.000000pt;}
.fs8_c01222{font-size:50.666667pt;}
.fs2_c01222{font-size:51.333333pt;}
.fs4_c01222{font-size:52.000000pt;}
.fsa_c01222{font-size:52.666667pt;}
.fsd_c01222{font-size:53.333333pt;}
.fs7_c01222{font-size:54.000000pt;}
.fsb_c01222{font-size:64.000000pt;}
.fsc_c01222{font-size:76.666667pt;}
.y0_c01222{bottom:0.000000pt;}
.y30_c01222{bottom:39.734253pt;}
.y2f_c01222{bottom:39.734333pt;}
.y64_c01222{bottom:41.014467pt;}
.y65_c01222{bottom:41.014520pt;}
.y2e_c01222{bottom:58.933373pt;}
.y63_c01222{bottom:60.214613pt;}
.y96_c01222{bottom:60.534200pt;}
.y2d_c01222{bottom:77.493587pt;}
.y62_c01222{bottom:78.773720pt;}
.y61_c01222{bottom:78.774347pt;}
.y95_c01222{bottom:79.414493pt;}
.y2c_c01222{bottom:96.373867pt;}
.y2b_c01222{bottom:96.374800pt;}
.y60_c01222{bottom:97.654627pt;}
.y94_c01222{bottom:98.294760pt;}
.y2a_c01222{bottom:114.933893pt;}
.y5f_c01222{bottom:116.213720pt;}
.y92_c01222{bottom:116.853440pt;}
.y93_c01222{bottom:116.853867pt;}
.y29_c01222{bottom:134.454107pt;}
.y5e_c01222{bottom:135.734253pt;}
.y5d_c01222{bottom:135.734613pt;}
.y91_c01222{bottom:136.053587pt;}
.y28_c01222{bottom:153.334387pt;}
.y5c_c01222{bottom:154.293720pt;}
.y5b_c01222{bottom:154.294053pt;}
.y90_c01222{bottom:154.933853pt;}
.y27_c01222{bottom:172.214667pt;}
.y5a_c01222{bottom:173.814253pt;}
.y8f_c01222{bottom:174.133587pt;}
.y8e_c01222{bottom:174.133733pt;}
.y26_c01222{bottom:191.093133pt;}
.y58_c01222{bottom:192.372787pt;}
.y59_c01222{bottom:192.373867pt;}
.y8d_c01222{bottom:193.014000pt;}
.y25_c01222{bottom:209.654667pt;}
.y57_c01222{bottom:210.933000pt;}
.y8c_c01222{bottom:211.894880pt;}
.y23_c01222{bottom:228.533280pt;}
.y24_c01222{bottom:228.533587pt;}
.y56_c01222{bottom:229.494533pt;}
.y8a_c01222{bottom:230.451613pt;}
.y8b_c01222{bottom:230.453973pt;}
.y22_c01222{bottom:247.413560pt;}
.y55_c01222{bottom:249.013453pt;}
.y54_c01222{bottom:249.013587pt;}
.y89_c01222{bottom:249.651773pt;}
.y21_c01222{bottom:266.613707pt;}
.y53_c01222{bottom:267.893853pt;}
.y52_c01222{bottom:267.894040pt;}
.y88_c01222{bottom:268.213293pt;}
.y20_c01222{bottom:285.493973pt;}
.y1f_c01222{bottom:285.494120pt;}
.y51_c01222{bottom:287.093080pt;}
.y87_c01222{bottom:287.413453pt;}
.y1d_c01222{bottom:304.373813pt;}
.y1e_c01222{bottom:304.374387pt;}
.y50_c01222{bottom:305.654600pt;}
.y86_c01222{bottom:306.612493pt;}
.y1c_c01222{bottom:323.254093pt;}
.y4f_c01222{bottom:324.854760pt;}
.y85_c01222{bottom:325.812627pt;}
.y1b_c01222{bottom:342.133080pt;}
.y4d_c01222{bottom:343.413413pt;}
.y4e_c01222{bottom:343.413853pt;}
.y84_c01222{bottom:344.372840pt;}
.y1a_c01222{bottom:360.694600pt;}
.y4b_c01222{bottom:362.612467pt;}
.y4c_c01222{bottom:362.613560pt;}
.y83_c01222{bottom:362.934373pt;}
.y82_c01222{bottom:362.934467pt;}
.y18_c01222{bottom:379.572347pt;}
.y19_c01222{bottom:379.573573pt;}
.y4a_c01222{bottom:381.173973pt;}
.y81_c01222{bottom:381.814760pt;}
.y17_c01222{bottom:398.133867pt;}
.y49_c01222{bottom:400.052960pt;}
.y7f_c01222{bottom:400.692733pt;}
.y80_c01222{bottom:400.693720pt;}
.y16_c01222{bottom:417.012840pt;}
.y48_c01222{bottom:418.614480pt;}
.y7e_c01222{bottom:419.254227pt;}
.y15_c01222{bottom:436.214293pt;}
.y47_c01222{bottom:437.493453pt;}
.y46_c01222{bottom:437.493667pt;}
.y7d_c01222{bottom:438.454387pt;}
.y7c_c01222{bottom:438.454493pt;}
.y14_c01222{bottom:454.133280pt;}
.y45_c01222{bottom:455.734027pt;}
.y7b_c01222{bottom:457.013587pt;}
.y13_c01222{bottom:473.333440pt;}
.y44_c01222{bottom:475.254227pt;}
.y7a_c01222{bottom:475.893853pt;}
.y12_c01222{bottom:492.213707pt;}
.y42_c01222{bottom:494.134467pt;}
.y43_c01222{bottom:494.134640pt;}
.y79_c01222{bottom:494.774147pt;}
.y11_c01222{bottom:511.413853pt;}
.y41_c01222{bottom:513.013427pt;}
.y78_c01222{bottom:513.653120pt;}
.y10_c01222{bottom:529.972987pt;}
.y40_c01222{bottom:531.574507pt;}
.y76_c01222{bottom:532.214613pt;}
.y77_c01222{bottom:532.214640pt;}
.ye_c01222{bottom:548.533840pt;}
.yf_c01222{bottom:548.534507pt;}
.y3f_c01222{bottom:550.453453pt;}
.y3e_c01222{bottom:550.453547pt;}
.y74_c01222{bottom:551.092507pt;}
.y75_c01222{bottom:551.093587pt;}
.yd_c01222{bottom:567.094053pt;}
.y3d_c01222{bottom:568.693893pt;}
.y73_c01222{bottom:569.654027pt;}
.yc_c01222{bottom:585.974347pt;}
.y3c_c01222{bottom:587.574173pt;}
.y72_c01222{bottom:588.854187pt;}
.yb_c01222{bottom:604.853307pt;}
.ya_c01222{bottom:604.854120pt;}
.y3b_c01222{bottom:606.454453pt;}
.y70_c01222{bottom:607.094080pt;}
.y71_c01222{bottom:607.094520pt;}
.y9_c01222{bottom:624.374333pt;}
.y3a_c01222{bottom:625.333440pt;}
.y6f_c01222{bottom:626.294227pt;}
.y6e_c01222{bottom:626.294733pt;}
.y8_c01222{bottom:642.933427pt;}
.y39_c01222{bottom:644.213707pt;}
.y6d_c01222{bottom:644.853840pt;}
.y6c_c01222{bottom:644.854960pt;}
.y7_c01222{bottom:661.494893pt;}
.y38_c01222{bottom:663.094467pt;}
.y6b_c01222{bottom:663.735227pt;}
.y6_c01222{bottom:680.054000pt;}
.y5_c01222{bottom:680.054133pt;}
.y36_c01222{bottom:681.653160pt;}
.y37_c01222{bottom:681.653560pt;}
.y6a_c01222{bottom:682.294347pt;}
.y3_c01222{bottom:698.933853pt;}
.y4_c01222{bottom:698.934413pt;}
.y35_c01222{bottom:700.214680pt;}
.y34_c01222{bottom:700.214707pt;}
.y69_c01222{bottom:701.174627pt;}
.y2_c01222{bottom:717.494080pt;}
.y33_c01222{bottom:718.773800pt;}
.y67_c01222{bottom:719.733373pt;}
.y68_c01222{bottom:719.733720pt;}
.y1_c01222{bottom:736.374347pt;}
.y32_c01222{bottom:737.973960pt;}
.y31_c01222{bottom:737.974427pt;}
.y66_c01222{bottom:738.933507pt;}
.h1d_c01222{height:45.800781pt;}
.h10_c01222{height:45.890625pt;}
.h9_c01222{height:46.455078pt;}
.h1c_c01222{height:47.109375pt;}
.h1e_c01222{height:47.281250pt;}
.h2_c01222{height:47.763672pt;}
.h5_c01222{height:47.976562pt;}
.h4_c01222{height:48.096354pt;}
.h1_c01222{height:48.417969pt;}
.h12_c01222{height:49.046875pt;}
.h7_c01222{height:49.072266pt;}
.h14_c01222{height:49.367188pt;}
.h11_c01222{height:49.718750pt;}
.h1f_c01222{height:49.726562pt;}
.h8_c01222{height:50.380859pt;}
.hf_c01222{height:50.390625pt;}
.h3_c01222{height:50.731771pt;}
.he_c01222{height:51.035156pt;}
.hd_c01222{height:51.062500pt;}
.h6_c01222{height:51.390625pt;}
.hc_c01222{height:51.734375pt;}
.h19_c01222{height:52.148438pt;}
.hb_c01222{height:52.406250pt;}
.h1b_c01222{height:52.708333pt;}
.h16_c01222{height:52.998047pt;}
.h15_c01222{height:53.078125pt;}
.ha_c01222{height:53.367188pt;}
.h13_c01222{height:53.539062pt;}
.h1a_c01222{height:55.625000pt;}
.h17_c01222{height:66.750000pt;}
.h18_c01222{height:79.960938pt;}
.h0_c01222{height:793.333333pt;}
.w0_c01222{width:1122.666667pt;}
.x0_c01222{left:0.000000pt;}
.x6_c01222{left:31.039080pt;}
.xc_c01222{left:32.320147pt;}
.x13_c01222{left:33.279720pt;}
.x1a_c01222{left:34.239520pt;}
.x1b_c01222{left:35.198440pt;}
.x20_c01222{left:36.799867pt;}
.x25_c01222{left:37.759080pt;}
.x14_c01222{left:46.719720pt;}
.x21_c01222{left:50.879867pt;}
.x1_c01222{left:66.559613pt;}
.x17_c01222{left:69.118720pt;}
.x1f_c01222{left:71.679240pt;}
.x24_c01222{left:73.599187pt;}
.x22_c01222{left:75.518533pt;}
.x7_c01222{left:77.438920pt;}
.x2_c01222{left:79.038533pt;}
.xd_c01222{left:83.198667pt;}
.xb_c01222{left:86.078680pt;}
.x23_c01222{left:100.158667pt;}
.xe_c01222{left:104.318813pt;}
.x1c_c01222{left:106.558533pt;}
.x8_c01222{left:110.078680pt;}
.x15_c01222{left:130.879333pt;}
.x16_c01222{left:140.159200pt;}
.xf_c01222{left:143.359867pt;}
.x10_c01222{left:157.440000pt;}
.x1d_c01222{left:162.238813pt;}
.x3_c01222{left:164.159200pt;}
.x11_c01222{left:171.518533pt;}
.x18_c01222{left:177.919867pt;}
.x19_c01222{left:187.199733pt;}
.x12_c01222{left:188.799333pt;}
.x4_c01222{left:192.000000pt;}
.x5_c01222{left:205.440000pt;}
.x9_c01222{left:219.518533pt;}
.x26_c01222{left:228.799867pt;}
.xa_c01222{left:239.039067pt;}
.x27_c01222{left:242.559067pt;}
.x1e_c01222{left:251.838933pt;}
.x28_c01222{left:280.959347pt;}
.x32_c01222{left:281.917907pt;}
.x35_c01222{left:282.878920pt;}
.x3d_c01222{left:283.839293pt;}
.x42_c01222{left:284.799987pt;}
.x43_c01222{left:285.756507pt;}
.x50_c01222{left:286.719720pt;}
.x55_c01222{left:287.679987pt;}
.x36_c01222{left:296.318787pt;}
.x48_c01222{left:300.479067pt;}
.x51_c01222{left:311.039067pt;}
.x38_c01222{left:318.719240pt;}
.x52_c01222{left:320.318787pt;}
.x46_c01222{left:328.319867pt;}
.x31_c01222{left:331.839867pt;}
.x33_c01222{left:332.799320pt;}
.x3e_c01222{left:334.398920pt;}
.x2b_c01222{left:336.959453pt;}
.x3f_c01222{left:342.719200pt;}
.x40_c01222{left:344.639613pt;}
.x56_c01222{left:346.558507pt;}
.x57_c01222{left:347.519453pt;}
.x47_c01222{left:351.999067pt;}
.x2c_c01222{left:353.919480pt;}
.x41_c01222{left:359.359867pt;}
.x2d_c01222{left:364.158693pt;}
.x34_c01222{left:367.038533pt;}
.x53_c01222{left:378.238813pt;}
.x2e_c01222{left:379.199707pt;}
.x54_c01222{left:387.199173pt;}
.x4b_c01222{left:391.999467pt;}
.x4c_c01222{left:398.078693pt;}
.x29_c01222{left:407.359867pt;}
.x4d_c01222{left:410.239707pt;}
.x2f_c01222{left:429.758787pt;}
.x2a_c01222{left:437.119587pt;}
.x30_c01222{left:448.960000pt;}
.x49_c01222{left:449.919480pt;}
.x3a_c01222{left:451.839840pt;}
.x3b_c01222{left:455.679200pt;}
.x58_c01222{left:459.518520pt;}
.x4a_c01222{left:460.479453pt;}
.x3c_c01222{left:466.558507pt;}
.x44_c01222{left:469.759320pt;}
.x4e_c01222{left:477.439453pt;}
.x45_c01222{left:482.559040pt;}
.x39_c01222{left:487.359333pt;}
.x4f_c01222{left:490.239173pt;}
.x37_c01222{left:492.159707pt;}
.x5a_c01222{left:574.719707pt;}
.x59_c01222{left:575.678360pt;}
.x70_c01222{left:576.960067pt;}
.x7f_c01222{left:578.560267pt;}
.x5b_c01222{left:594.878907pt;}
.x5c_c01222{left:598.719720pt;}
.x5d_c01222{left:608.318760pt;}
.x64_c01222{left:611.838787pt;}
.x7b_c01222{left:632.318760pt;}
.x69_c01222{left:637.439987pt;}
.x76_c01222{left:639.999067pt;}
.x77_c01222{left:652.158693pt;}
.x71_c01222{left:654.079067pt;}
.x7c_c01222{left:660.159707pt;}
.x6a_c01222{left:663.039587pt;}
.x62_c01222{left:669.118693pt;}
.x7a_c01222{left:674.879840pt;}
.x63_c01222{left:676.479453pt;}
.x5e_c01222{left:681.919840pt;}
.x65_c01222{left:684.159747pt;}
.x72_c01222{left:685.119227pt;}
.x5f_c01222{left:692.159173pt;}
.x6e_c01222{left:702.719160pt;}
.x66_c01222{left:711.999027pt;}
.x6c_c01222{left:720.319333pt;}
.x7d_c01222{left:725.119547pt;}
.x67_c01222{left:727.999427pt;}
.x73_c01222{left:731.198733pt;}
.x6d_c01222{left:732.479080pt;}
.x6b_c01222{left:738.238773pt;}
.x74_c01222{left:742.079587pt;}
.x75_c01222{left:743.039067pt;}
.x68_c01222{left:744.000000pt;}
.x7e_c01222{left:745.599613pt;}
.x79_c01222{left:748.479413pt;}
.x60_c01222{left:751.038493pt;}
.x78_c01222{left:764.799320pt;}
.x6f_c01222{left:769.918947pt;}
.x61_c01222{left:785.598720pt;}
}





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

.ir_c01223:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01223{font-family:sans-serif;visibility:hidden;}
.sc__c01223{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01223{-webkit-text-stroke:0px transparent;}
}
.y0_c01223{bottom:0.000000px;}
.h0_c01223{height:892.500000px;}
.w0_c01223{width:1263.000000px;}
.x0_c01223{left:0.000000px;}
@media print{
.y0_c01223{bottom:0.000000pt;}
.h0_c01223{height:793.333333pt;}
.w0_c01223{width:1122.666667pt;}
.x0_c01223{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_c01224 {
    display:none;
  }
  .loading-indicator_c01224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01224 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01224 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01224" -> "#page-container .classname_c01224")
 */
.pf_c01224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01224 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01224 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01224 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01224 {overflow:visible;}
  }
}
.c_c01224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01224 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01224:after { /* webkit #35443 */
  content: '';
}
.t_c01224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01224 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01224 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01224 { /* info for Javascript */
  display:none;
}
.l_c01224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_a8bd81502412d865f37b508c.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01224;src:url('chunks/assets/font_78289ad025f4b4bf0b6bb3db.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01224;src:url('chunks/assets/font_eec68bb3d7856081e387c0a8.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01224;src:url('chunks/assets/font_d23a3f3edd889028f6f2d4af.woff2')format("woff");}.ff4_c01224{font-family:ff4_c01224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01224;src:url('chunks/assets/font_5b8e8de70a8c989e34f431d5.woff2')format("woff");}.ff5_c01224{font-family:ff5_c01224;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01224;src:url('chunks/assets/font_ca02fc71e862be8f102e3ceb.woff2')format("woff");}.ff6_c01224{font-family:ff6_c01224;line-height:1.311035;font-style:normal;font-weight: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_c01224;src:url('chunks/assets/font_6a7a1cf17e15e791b09fcb83.woff2')format("woff");}.ff7_c01224{font-family:ff7_c01224;line-height:1.364746;font-style:normal;font-weight: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_c01224;src:url('chunks/assets/font_4b85db2572ac0436ac2b1102.woff2')format("woff");}.ff8_c01224{font-family:ff8_c01224;line-height:1.281250;font-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_c01224{transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149351,0.000000,0.000000,0.250000,0,0);}
.m1_c01224{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);}
.m1c_c01224{transform:matrix(0.157534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157534,0.000000,0.000000,0.250000,0,0);}
.m2a_c01224{transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160494,0.000000,0.000000,0.250000,0,0);}
.m1d_c01224{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m14_c01224{transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194805,0.000000,0.000000,0.250000,0,0);}
.m29_c01224{transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198052,0.000000,0.000000,0.250000,0,0);}
.md_c01224{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m4_c01224{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m18_c01224{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m1b_c01224{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m2b_c01224{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);}
.m2d_c01224{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m24_c01224{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m26_c01224{transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226351,0.000000,0.000000,0.250000,0,0);}
.m16_c01224{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m11_c01224{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_c01224{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.mc_c01224{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.mf_c01224{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.me_c01224{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_c01224{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m28_c01224{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m9_c01224{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m2c_c01224{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m15_c01224{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m5_c01224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01224{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m21_c01224{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m25_c01224{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m3_c01224{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m8_c01224{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m1e_c01224{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m10_c01224{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m0_c01224{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m12_c01224{transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262987,0.000000,0.000000,0.250000,0,0);}
.m2_c01224{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m22_c01224{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m13_c01224{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m23_c01224{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m17_c01224{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m7_c01224{transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273973,0.000000,0.000000,0.250000,0,0);}
.m6_c01224{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.mb_c01224{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m1a_c01224{transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);}
.m1f_c01224{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.v1_c01224{vertical-align:1.445340px;}
.ls39_c01224{letter-spacing:-21.036000px;}
.ls2c_c01224{letter-spacing:-13.328700px;}
.ls3a_c01224{letter-spacing:-13.254203px;}
.ls25_c01224{letter-spacing:-12.832050px;}
.ls22_c01224{letter-spacing:-11.062500px;}
.ls32_c01224{letter-spacing:-8.790128px;}
.ls28_c01224{letter-spacing:-8.661923px;}
.ls18_c01224{letter-spacing:-7.205648px;}
.lsd_c01224{letter-spacing:-6.481853px;}
.ls10_c01224{letter-spacing:-5.765175px;}
.ls2e_c01224{letter-spacing:-5.383575px;}
.ls12_c01224{letter-spacing:-5.042475px;}
.ls3b_c01224{letter-spacing:-4.671675px;}
.ls17_c01224{letter-spacing:-4.432050px;}
.ls7_c01224{letter-spacing:-4.319775px;}
.ls30_c01224{letter-spacing:-4.279275px;}
.ls15_c01224{letter-spacing:-3.772125px;}
.ls9_c01224{letter-spacing:-3.602550px;}
.ls27_c01224{letter-spacing:-3.509475px;}
.ls2b_c01224{letter-spacing:-3.435548px;}
.ls3c_c01224{letter-spacing:-3.401700px;}
.ls16_c01224{letter-spacing:-3.396278px;}
.ls36_c01224{letter-spacing:-3.377700px;}
.ls21_c01224{letter-spacing:-3.156000px;}
.ls29_c01224{letter-spacing:-3.039525px;}
.lsf_c01224{letter-spacing:-2.879850px;}
.ls34_c01224{letter-spacing:-2.841525px;}
.ls19_c01224{letter-spacing:-2.249438px;}
.ls2d_c01224{letter-spacing:-2.223000px;}
.ls13_c01224{letter-spacing:-2.216025px;}
.ls1b_c01224{letter-spacing:-2.194500px;}
.lse_c01224{letter-spacing:-2.163173px;}
.ls23_c01224{letter-spacing:-1.443173px;}
.lsa_c01224{letter-spacing:-1.440473px;}
.ls1a_c01224{letter-spacing:-1.368203px;}
.ls1d_c01224{letter-spacing:-1.252800px;}
.ls33_c01224{letter-spacing:-0.742500px;}
.ls8_c01224{letter-spacing:-0.722700px;}
.ls11_c01224{letter-spacing:-0.714375px;}
.ls35_c01224{letter-spacing:-0.695325px;}
.lsc_c01224{letter-spacing:0.000000px;}
.ls0_c01224{letter-spacing:0.722700px;}
.ls1f_c01224{letter-spacing:0.749250px;}
.ls20_c01224{letter-spacing:0.749520px;}
.ls38_c01224{letter-spacing:0.804750px;}
.ls24_c01224{letter-spacing:0.815625px;}
.ls14_c01224{letter-spacing:0.897863px;}
.ls3_c01224{letter-spacing:1.440473px;}
.ls1c_c01224{letter-spacing:1.565303px;}
.ls2_c01224{letter-spacing:2.163173px;}
.ls26_c01224{letter-spacing:2.253600px;}
.ls1e_c01224{letter-spacing:2.396880px;}
.ls2a_c01224{letter-spacing:2.447550px;}
.ls1_c01224{letter-spacing:2.879850px;}
.ls2f_c01224{letter-spacing:3.569700px;}
.ls4_c01224{letter-spacing:5.042475px;}
.ls37_c01224{letter-spacing:5.800305px;}
.lsb_c01224{letter-spacing:7.502250px;}
.ls6_c01224{letter-spacing:8.645025px;}
.ls5_c01224{letter-spacing:16.567350px;}
.ls31_c01224{letter-spacing:19.452675px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01224{word-spacing:0.000000px;}
._17_c01224{margin-left:-45.404348px;}
._1d_c01224{margin-left:-33.398019px;}
._16_c01224{margin-left:-24.408025px;}
._1b_c01224{margin-left:-21.312420px;}
._21_c01224{margin-left:-15.819465px;}
._c_c01224{margin-left:-10.372359px;}
._1a_c01224{margin-left:-8.107524px;}
._20_c01224{margin-left:-6.657773px;}
._d_c01224{margin-left:-5.215687px;}
._19_c01224{margin-left:-4.196789px;}
._b_c01224{margin-left:-2.915639px;}
._12_c01224{margin-left:-1.404251px;}
._10_c01224{width:1.013250px;}
._11_c01224{width:2.466804px;}
._5_c01224{width:4.161346px;}
._e_c01224{width:5.938963px;}
._9_c01224{width:7.502652px;}
._7_c01224{width:8.792965px;}
._1f_c01224{width:9.891366px;}
._6_c01224{width:10.917208px;}
._1c_c01224{width:12.132485px;}
._8_c01224{width:13.934624px;}
._a_c01224{width:15.384808px;}
._14_c01224{width:16.547842px;}
._1_c01224{width:18.396749px;}
._2_c01224{width:20.738436px;}
._15_c01224{width:21.790731px;}
._4_c01224{width:24.007529px;}
._18_c01224{width:25.678442px;}
._13_c01224{width:28.234460px;}
._1e_c01224{width:30.635017px;}
._0_c01224{width:34.974703px;}
._f_c01224{width:36.540035px;}
._3_c01224{width:54.066028px;}
.fc0_c01224{color:transparent;}
.fsc_c01224{font-size:44.250000px;}
.fs3_c01224{font-size:50.250000px;}
.fsf_c01224{font-size:51.000000px;}
.fs1_c01224{font-size:52.500000px;}
.fse_c01224{font-size:53.250000px;}
.fs0_c01224{font-size:54.750000px;}
.fs9_c01224{font-size:55.500000px;}
.fs2_c01224{font-size:56.250000px;}
.fs7_c01224{font-size:57.000000px;}
.fs6_c01224{font-size:57.750000px;}
.fsd_c01224{font-size:59.250000px;}
.fsb_c01224{font-size:60.000000px;}
.fsa_c01224{font-size:60.750000px;}
.fs8_c01224{font-size:72.000000px;}
.fs5_c01224{font-size:78.750000px;}
.fs4_c01224{font-size:86.250000px;}
.y0_c01224{bottom:0.000000px;}
.y68_c01224{bottom:48.299970px;}
.y69_c01224{bottom:48.301800px;}
.y32_c01224{bottom:49.381575px;}
.y67_c01224{bottom:69.538830px;}
.y30_c01224{bottom:71.341605px;}
.y31_c01224{bottom:71.341800px;}
.y66_c01224{bottom:91.139010px;}
.y2e_c01224{bottom:92.580120px;}
.y2f_c01224{bottom:92.580435px;}
.y65_c01224{bottom:112.740630px;}
.y2d_c01224{bottom:114.180285px;}
.y64_c01224{bottom:133.979490px;}
.y2c_c01224{bottom:135.420600px;}
.y63_c01224{bottom:155.219790px;}
.y8f_c01224{bottom:155.581650px;}
.y2b_c01224{bottom:157.020765px;}
.y62_c01224{bottom:176.819955px;}
.y8d_c01224{bottom:177.180060px;}
.y8e_c01224{bottom:177.181350px;}
.y2a_c01224{bottom:178.261065px;}
.y61_c01224{bottom:198.421605px;}
.y8c_c01224{bottom:198.780210px;}
.y29_c01224{bottom:200.221305px;}
.y60_c01224{bottom:219.660435px;}
.y8b_c01224{bottom:220.380390px;}
.y28_c01224{bottom:221.461620px;}
.y5e_c01224{bottom:241.261320px;}
.y5f_c01224{bottom:241.261785px;}
.y8a_c01224{bottom:241.980555px;}
.y27_c01224{bottom:242.700465px;}
.y5c_c01224{bottom:262.861455px;}
.y5d_c01224{bottom:262.861500px;}
.y89_c01224{bottom:263.220870px;}
.y26_c01224{bottom:263.940795px;}
.y25_c01224{bottom:283.561845px;}
.y5a_c01224{bottom:284.099715px;}
.y5b_c01224{bottom:284.100285px;}
.y88_c01224{bottom:284.461185px;}
.y59_c01224{bottom:305.340015px;}
.y87_c01224{bottom:305.701485px;}
.y24_c01224{bottom:306.781260px;}
.y58_c01224{bottom:327.300270px;}
.y85_c01224{bottom:328.021200px;}
.y86_c01224{bottom:328.021335px;}
.y22_c01224{bottom:328.741020px;}
.y23_c01224{bottom:328.741500px;}
.y57_c01224{bottom:348.900420px;}
.y84_c01224{bottom:349.261530px;}
.y21_c01224{bottom:350.341185px;}
.y20_c01224{bottom:350.341260px;}
.y83_c01224{bottom:370.500360px;}
.y56_c01224{bottom:370.500600px;}
.y55_c01224{bottom:370.500705px;}
.y1f_c01224{bottom:371.941425px;}
.y54_c01224{bottom:391.741035px;}
.y82_c01224{bottom:392.100540px;}
.y1e_c01224{bottom:392.820420px;}
.y1d_c01224{bottom:392.820435px;}
.y53_c01224{bottom:412.981335px;}
.y81_c01224{bottom:413.340840px;}
.y1b_c01224{bottom:414.060240px;}
.y1c_c01224{bottom:414.060750px;}
.y51_c01224{bottom:434.219355px;}
.y52_c01224{bottom:434.220150px;}
.y80_c01224{bottom:434.581170px;}
.y1a_c01224{bottom:435.660420px;}
.y19_c01224{bottom:435.660720px;}
.y50_c01224{bottom:455.820990px;}
.y7f_c01224{bottom:455.821470px;}
.y18_c01224{bottom:456.901035px;}
.y4f_c01224{bottom:477.059835px;}
.y7d_c01224{bottom:477.420540px;}
.y7e_c01224{bottom:477.421185px;}
.y17_c01224{bottom:478.141335px;}
.y4e_c01224{bottom:498.661470px;}
.y4d_c01224{bottom:498.661830px;}
.y7b_c01224{bottom:499.020195px;}
.y7c_c01224{bottom:499.020720px;}
.y16_c01224{bottom:499.741035px;}
.y4c_c01224{bottom:519.540855px;}
.y7a_c01224{bottom:519.900450px;}
.y15_c01224{bottom:520.981335px;}
.y79_c01224{bottom:541.140750px;}
.y4b_c01224{bottom:541.501080px;}
.y13_c01224{bottom:542.580555px;}
.y14_c01224{bottom:542.581005px;}
.y4a_c01224{bottom:562.019985px;}
.y78_c01224{bottom:562.381605px;}
.y12_c01224{bottom:564.180720px;}
.y11_c01224{bottom:564.180885px;}
.y48_c01224{bottom:583.621425px;}
.y49_c01224{bottom:583.621635px;}
.y77_c01224{bottom:583.981770px;}
.yf_c01224{bottom:585.420480px;}
.y10_c01224{bottom:585.421185px;}
.y46_c01224{bottom:604.859985px;}
.y47_c01224{bottom:604.860255px;}
.y76_c01224{bottom:605.581920px;}
.ye_c01224{bottom:606.300735px;}
.y45_c01224{bottom:626.461620px;}
.y44_c01224{bottom:626.462190px;}
.y75_c01224{bottom:626.822250px;}
.yd_c01224{bottom:627.541035px;}
.y42_c01224{bottom:647.340690px;}
.y43_c01224{bottom:647.341185px;}
.y74_c01224{bottom:647.701245px;}
.yc_c01224{bottom:648.781425px;}
.y41_c01224{bottom:668.940855px;}
.y40_c01224{bottom:668.941020px;}
.y73_c01224{bottom:669.302850px;}
.yb_c01224{bottom:670.020270px;}
.y3f_c01224{bottom:690.181320px;}
.y3e_c01224{bottom:690.181350px;}
.y72_c01224{bottom:690.181875px;}
.ya_c01224{bottom:691.081005px;}
.y3c_c01224{bottom:711.421575px;}
.y3d_c01224{bottom:711.421650px;}
.y71_c01224{bottom:711.422175px;}
.y9_c01224{bottom:712.860255px;}
.y8_c01224{bottom:712.860600px;}
.y70_c01224{bottom:732.301170px;}
.y3b_c01224{bottom:732.660420px;}
.y3a_c01224{bottom:732.660570px;}
.y7_c01224{bottom:734.100900px;}
.y6f_c01224{bottom:753.900510px;}
.y39_c01224{bottom:753.900885px;}
.y38_c01224{bottom:753.900945px;}
.y6_c01224{bottom:755.699820px;}
.y37_c01224{bottom:775.141245px;}
.y6e_c01224{bottom:775.500690px;}
.y5_c01224{bottom:776.581530px;}
.y6d_c01224{bottom:797.099595px;}
.y36_c01224{bottom:797.461560px;}
.y4_c01224{bottom:797.820390px;}
.y6c_c01224{bottom:817.981320px;}
.y35_c01224{bottom:818.340540px;}
.y34_c01224{bottom:818.340750px;}
.y3_c01224{bottom:819.060705px;}
.y2_c01224{bottom:819.061140px;}
.y6b_c01224{bottom:839.220150px;}
.y6a_c01224{bottom:839.220480px;}
.y33_c01224{bottom:839.581050px;}
.y1_c01224{bottom:841.021365px;}
.he_c01224{height:43.731445px;}
.h2_c01224{height:51.500244px;}
.h13_c01224{height:52.261963px;}
.h4_c01224{height:52.409180px;}
.h14_c01224{height:53.191406px;}
.h1_c01224{height:53.734131px;}
.hb_c01224{height:54.470215px;}
.h1a_c01224{height:55.168491px;}
.h15_c01224{height:55.177734px;}
.h16_c01224{height:55.179471px;}
.h3_c01224{height:55.206299px;}
.h8_c01224{height:55.942383px;}
.h7_c01224{height:56.678467px;}
.hf_c01224{height:56.689453px;}
.h10_c01224{height:57.073242px;}
.h11_c01224{height:58.150635px;}
.h12_c01224{height:58.201172px;}
.h9_c01224{height:58.666992px;}
.hd_c01224{height:58.886719px;}
.h18_c01224{height:59.296875px;}
.h17_c01224{height:59.593140px;}
.hc_c01224{height:59.622803px;}
.h19_c01224{height:60.038086px;}
.ha_c01224{height:75.093750px;}
.h6_c01224{height:82.133789px;}
.h5_c01224{height:89.956055px;}
.h0_c01224{height:892.500000px;}
.w0_c01224{width:1263.000000px;}
.x0_c01224{left:0.000000px;}
.x24_c01224{left:51.843405px;}
.x1a_c01224{left:52.918560px;}
.xa_c01224{left:54.000000px;}
.x1_c01224{left:55.079400px;}
.x14_c01224{left:64.798950px;}
.x15_c01224{left:69.120000px;}
.xc_c01224{left:73.798515px;}
.x16_c01224{left:80.639100px;}
.x11_c01224{left:88.918350px;}
.xb_c01224{left:92.519100px;}
.x12_c01224{left:93.959400px;}
.x5_c01224{left:98.278800px;}
.x6_c01224{left:109.438665px;}
.x13_c01224{left:115.559100px;}
.x27_c01224{left:117.719565px;}
.x7_c01224{left:124.558665px;}
.x1e_c01224{left:127.439250px;}
.x25_c01224{left:135.359250px;}
.xd_c01224{left:141.479715px;}
.x1f_c01224{left:147.959400px;}
.xe_c01224{left:166.678500px;}
.x22_c01224{left:181.798515px;}
.x17_c01224{left:192.599100px;}
.x8_c01224{left:199.439685px;}
.x1b_c01224{left:203.038950px;}
.x23_c01224{left:210.599700px;}
.x18_c01224{left:211.679100px;}
.x1c_c01224{left:214.559685px;}
.x4_c01224{left:219.239850px;}
.x19_c01224{left:226.078785px;}
.x9_c01224{left:231.479235px;}
.x20_c01224{left:235.080000px;}
.x1d_c01224{left:239.399250px;}
.x2_c01224{left:241.198785px;}
.x21_c01224{left:250.559100px;}
.x3_c01224{left:255.239250px;}
.xf_c01224{left:267.119385px;}
.x26_c01224{left:270.718500px;}
.x10_c01224{left:297.000000px;}
.x28_c01224{left:343.798515px;}
.x44_c01224{left:344.881350px;}
.x29_c01224{left:360.719535px;}
.x3e_c01224{left:367.199385px;}
.x47_c01224{left:374.040000px;}
.x3f_c01224{left:381.958350px;}
.x3d_c01224{left:383.399415px;}
.x2a_c01224{left:396.719100px;}
.x37_c01224{left:401.399235px;}
.x48_c01224{left:403.918950px;}
.x2b_c01224{left:412.559100px;}
.x30_c01224{left:414.719565px;}
.x38_c01224{left:416.878320px;}
.x45_c01224{left:420.479235px;}
.x39_c01224{left:423.719100px;}
.x31_c01224{left:431.279850px;}
.x33_c01224{left:436.678530px;}
.x3a_c01224{left:439.199850px;}
.x46_c01224{left:441.358665px;}
.x34_c01224{left:450.719100px;}
.x42_c01224{left:465.479685px;}
.x43_c01224{left:480.599670px;}
.x32_c01224{left:502.558635px;}
.x40_c01224{left:519.838950px;}
.x35_c01224{left:525.959385px;}
.x2e_c01224{left:529.558635px;}
.x3b_c01224{left:533.159415px;}
.x36_c01224{left:535.679070px;}
.x41_c01224{left:542.519670px;}
.x2f_c01224{left:546.479685px;}
.x2c_c01224{left:548.279250px;}
.x3c_c01224{left:564.478635px;}
.x2d_c01224{left:577.798920px;}
.x49_c01224{left:673.919685px;}
.x4e_c01224{left:675.359040px;}
.x54_c01224{left:676.436835px;}
.x4c_c01224{left:713.520840px;}
.x52_c01224{left:714.598680px;}
.x4f_c01224{left:735.118785px;}
.x50_c01224{left:762.479685px;}
.x51_c01224{left:773.998905px;}
.x4a_c01224{left:847.439670px;}
.x4b_c01224{left:860.758575px;}
.x55_c01224{left:896.039340px;}
.x4d_c01224{left:912.599670px;}
.x53_c01224{left:919.079400px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.v1_c01224{vertical-align:1.284747pt;}
.ls39_c01224{letter-spacing:-18.698667pt;}
.ls2c_c01224{letter-spacing:-11.847733pt;}
.ls3a_c01224{letter-spacing:-11.781513pt;}
.ls25_c01224{letter-spacing:-11.406267pt;}
.ls22_c01224{letter-spacing:-9.833333pt;}
.ls32_c01224{letter-spacing:-7.813447pt;}
.ls28_c01224{letter-spacing:-7.699487pt;}
.ls18_c01224{letter-spacing:-6.405020pt;}
.lsd_c01224{letter-spacing:-5.761647pt;}
.ls10_c01224{letter-spacing:-5.124600pt;}
.ls2e_c01224{letter-spacing:-4.785400pt;}
.ls12_c01224{letter-spacing:-4.482200pt;}
.ls3b_c01224{letter-spacing:-4.152600pt;}
.ls17_c01224{letter-spacing:-3.939600pt;}
.ls7_c01224{letter-spacing:-3.839800pt;}
.ls30_c01224{letter-spacing:-3.803800pt;}
.ls15_c01224{letter-spacing:-3.353000pt;}
.ls9_c01224{letter-spacing:-3.202267pt;}
.ls27_c01224{letter-spacing:-3.119533pt;}
.ls2b_c01224{letter-spacing:-3.053820pt;}
.ls3c_c01224{letter-spacing:-3.023733pt;}
.ls16_c01224{letter-spacing:-3.018913pt;}
.ls36_c01224{letter-spacing:-3.002400pt;}
.ls21_c01224{letter-spacing:-2.805333pt;}
.ls29_c01224{letter-spacing:-2.701800pt;}
.lsf_c01224{letter-spacing:-2.559867pt;}
.ls34_c01224{letter-spacing:-2.525800pt;}
.ls19_c01224{letter-spacing:-1.999500pt;}
.ls2d_c01224{letter-spacing:-1.976000pt;}
.ls13_c01224{letter-spacing:-1.969800pt;}
.ls1b_c01224{letter-spacing:-1.950667pt;}
.lse_c01224{letter-spacing:-1.922820pt;}
.ls23_c01224{letter-spacing:-1.282820pt;}
.lsa_c01224{letter-spacing:-1.280420pt;}
.ls1a_c01224{letter-spacing:-1.216180pt;}
.ls1d_c01224{letter-spacing:-1.113600pt;}
.ls33_c01224{letter-spacing:-0.660000pt;}
.ls8_c01224{letter-spacing:-0.642400pt;}
.ls11_c01224{letter-spacing:-0.635000pt;}
.ls35_c01224{letter-spacing:-0.618067pt;}
.lsc_c01224{letter-spacing:0.000000pt;}
.ls0_c01224{letter-spacing:0.642400pt;}
.ls1f_c01224{letter-spacing:0.666000pt;}
.ls20_c01224{letter-spacing:0.666240pt;}
.ls38_c01224{letter-spacing:0.715333pt;}
.ls24_c01224{letter-spacing:0.725000pt;}
.ls14_c01224{letter-spacing:0.798100pt;}
.ls3_c01224{letter-spacing:1.280420pt;}
.ls1c_c01224{letter-spacing:1.391380pt;}
.ls2_c01224{letter-spacing:1.922820pt;}
.ls26_c01224{letter-spacing:2.003200pt;}
.ls1e_c01224{letter-spacing:2.130560pt;}
.ls2a_c01224{letter-spacing:2.175600pt;}
.ls1_c01224{letter-spacing:2.559867pt;}
.ls2f_c01224{letter-spacing:3.173067pt;}
.ls4_c01224{letter-spacing:4.482200pt;}
.ls37_c01224{letter-spacing:5.155827pt;}
.lsb_c01224{letter-spacing:6.668667pt;}
.ls6_c01224{letter-spacing:7.684467pt;}
.ls5_c01224{letter-spacing:14.726533pt;}
.ls31_c01224{letter-spacing:17.291267pt;}
.ws0_c01224{word-spacing:0.000000pt;}
._17_c01224{margin-left:-40.359420pt;}
._1d_c01224{margin-left:-29.687128pt;}
._16_c01224{margin-left:-21.696022pt;}
._1b_c01224{margin-left:-18.944373pt;}
._21_c01224{margin-left:-14.061747pt;}
._c_c01224{margin-left:-9.219874pt;}
._1a_c01224{margin-left:-7.206688pt;}
._20_c01224{margin-left:-5.918020pt;}
._d_c01224{margin-left:-4.636166pt;}
._19_c01224{margin-left:-3.730479pt;}
._b_c01224{margin-left:-2.591679pt;}
._12_c01224{margin-left:-1.248223pt;}
._10_c01224{width:0.900666pt;}
._11_c01224{width:2.192715pt;}
._5_c01224{width:3.698974pt;}
._e_c01224{width:5.279078pt;}
._9_c01224{width:6.669024pt;}
._7_c01224{width:7.815969pt;}
._1f_c01224{width:8.792325pt;}
._6_c01224{width:9.704185pt;}
._1c_c01224{width:10.784431pt;}
._8_c01224{width:12.386333pt;}
._a_c01224{width:13.675385pt;}
._14_c01224{width:14.709193pt;}
._1_c01224{width:16.352666pt;}
._2_c01224{width:18.434165pt;}
._15_c01224{width:19.369538pt;}
._4_c01224{width:21.340026pt;}
._18_c01224{width:22.825281pt;}
._13_c01224{width:25.097298pt;}
._1e_c01224{width:27.231126pt;}
._0_c01224{width:31.088625pt;}
._f_c01224{width:32.480031pt;}
._3_c01224{width:48.058692pt;}
.fsc_c01224{font-size:39.333333pt;}
.fs3_c01224{font-size:44.666667pt;}
.fsf_c01224{font-size:45.333333pt;}
.fs1_c01224{font-size:46.666667pt;}
.fse_c01224{font-size:47.333333pt;}
.fs0_c01224{font-size:48.666667pt;}
.fs9_c01224{font-size:49.333333pt;}
.fs2_c01224{font-size:50.000000pt;}
.fs7_c01224{font-size:50.666667pt;}
.fs6_c01224{font-size:51.333333pt;}
.fsd_c01224{font-size:52.666667pt;}
.fsb_c01224{font-size:53.333333pt;}
.fsa_c01224{font-size:54.000000pt;}
.fs8_c01224{font-size:64.000000pt;}
.fs5_c01224{font-size:70.000000pt;}
.fs4_c01224{font-size:76.666667pt;}
.y0_c01224{bottom:0.000000pt;}
.y68_c01224{bottom:42.933307pt;}
.y69_c01224{bottom:42.934933pt;}
.y32_c01224{bottom:43.894733pt;}
.y67_c01224{bottom:61.812293pt;}
.y30_c01224{bottom:63.414760pt;}
.y31_c01224{bottom:63.414933pt;}
.y66_c01224{bottom:81.012453pt;}
.y2e_c01224{bottom:82.293440pt;}
.y2f_c01224{bottom:82.293720pt;}
.y65_c01224{bottom:100.213893pt;}
.y2d_c01224{bottom:101.493587pt;}
.y64_c01224{bottom:119.092880pt;}
.y2c_c01224{bottom:120.373867pt;}
.y63_c01224{bottom:137.973147pt;}
.y8f_c01224{bottom:138.294800pt;}
.y2b_c01224{bottom:139.574013pt;}
.y62_c01224{bottom:157.173293pt;}
.y8d_c01224{bottom:157.493387pt;}
.y8e_c01224{bottom:157.494533pt;}
.y2a_c01224{bottom:158.454280pt;}
.y61_c01224{bottom:176.374760pt;}
.y8c_c01224{bottom:176.693520pt;}
.y29_c01224{bottom:177.974493pt;}
.y60_c01224{bottom:195.253720pt;}
.y8b_c01224{bottom:195.893680pt;}
.y28_c01224{bottom:196.854773pt;}
.y5e_c01224{bottom:214.454507pt;}
.y5f_c01224{bottom:214.454920pt;}
.y8a_c01224{bottom:215.093827pt;}
.y27_c01224{bottom:215.733747pt;}
.y5c_c01224{bottom:233.654627pt;}
.y5d_c01224{bottom:233.654667pt;}
.y89_c01224{bottom:233.974107pt;}
.y26_c01224{bottom:234.614040pt;}
.y25_c01224{bottom:252.054973pt;}
.y5a_c01224{bottom:252.533080pt;}
.y5b_c01224{bottom:252.533587pt;}
.y88_c01224{bottom:252.854387pt;}
.y59_c01224{bottom:271.413347pt;}
.y87_c01224{bottom:271.734653pt;}
.y24_c01224{bottom:272.694453pt;}
.y58_c01224{bottom:290.933573pt;}
.y85_c01224{bottom:291.574400pt;}
.y86_c01224{bottom:291.574520pt;}
.y22_c01224{bottom:292.214240pt;}
.y23_c01224{bottom:292.214667pt;}
.y57_c01224{bottom:310.133707pt;}
.y84_c01224{bottom:310.454693pt;}
.y21_c01224{bottom:311.414387pt;}
.y20_c01224{bottom:311.414453pt;}
.y83_c01224{bottom:329.333653pt;}
.y56_c01224{bottom:329.333867pt;}
.y55_c01224{bottom:329.333960pt;}
.y1f_c01224{bottom:330.614600pt;}
.y54_c01224{bottom:348.214253pt;}
.y82_c01224{bottom:348.533813pt;}
.y1e_c01224{bottom:349.173707pt;}
.y1d_c01224{bottom:349.173720pt;}
.y53_c01224{bottom:367.094520pt;}
.y81_c01224{bottom:367.414080pt;}
.y1b_c01224{bottom:368.053547pt;}
.y1c_c01224{bottom:368.054000pt;}
.y51_c01224{bottom:385.972760pt;}
.y52_c01224{bottom:385.973467pt;}
.y80_c01224{bottom:386.294373pt;}
.y1a_c01224{bottom:387.253707pt;}
.y19_c01224{bottom:387.253973pt;}
.y50_c01224{bottom:405.174213pt;}
.y7f_c01224{bottom:405.174640pt;}
.y18_c01224{bottom:406.134253pt;}
.y4f_c01224{bottom:424.053187pt;}
.y7d_c01224{bottom:424.373813pt;}
.y7e_c01224{bottom:424.374387pt;}
.y17_c01224{bottom:425.014520pt;}
.y4e_c01224{bottom:443.254640pt;}
.y4d_c01224{bottom:443.254960pt;}
.y7b_c01224{bottom:443.573507pt;}
.y7c_c01224{bottom:443.573973pt;}
.y16_c01224{bottom:444.214253pt;}
.y4c_c01224{bottom:461.814093pt;}
.y7a_c01224{bottom:462.133733pt;}
.y15_c01224{bottom:463.094520pt;}
.y79_c01224{bottom:481.014000pt;}
.y4b_c01224{bottom:481.334293pt;}
.y13_c01224{bottom:482.293827pt;}
.y14_c01224{bottom:482.294227pt;}
.y4a_c01224{bottom:499.573320pt;}
.y78_c01224{bottom:499.894760pt;}
.y12_c01224{bottom:501.493973pt;}
.y11_c01224{bottom:501.494120pt;}
.y48_c01224{bottom:518.774600pt;}
.y49_c01224{bottom:518.774787pt;}
.y77_c01224{bottom:519.094907pt;}
.yf_c01224{bottom:520.373760pt;}
.y10_c01224{bottom:520.374387pt;}
.y46_c01224{bottom:537.653320pt;}
.y47_c01224{bottom:537.653560pt;}
.y76_c01224{bottom:538.295040pt;}
.ye_c01224{bottom:538.933987pt;}
.y45_c01224{bottom:556.854773pt;}
.y44_c01224{bottom:556.855280pt;}
.y75_c01224{bottom:557.175333pt;}
.yd_c01224{bottom:557.814253pt;}
.y42_c01224{bottom:575.413947pt;}
.y43_c01224{bottom:575.414387pt;}
.y74_c01224{bottom:575.734440pt;}
.yc_c01224{bottom:576.694600pt;}
.y41_c01224{bottom:594.614093pt;}
.y40_c01224{bottom:594.614240pt;}
.y73_c01224{bottom:594.935867pt;}
.yb_c01224{bottom:595.573573pt;}
.y3f_c01224{bottom:613.494507pt;}
.y3e_c01224{bottom:613.494533pt;}
.y72_c01224{bottom:613.495000pt;}
.ya_c01224{bottom:614.294227pt;}
.y3c_c01224{bottom:632.374733pt;}
.y3d_c01224{bottom:632.374800pt;}
.y71_c01224{bottom:632.375267pt;}
.y9_c01224{bottom:633.653560pt;}
.y8_c01224{bottom:633.653867pt;}
.y70_c01224{bottom:650.934373pt;}
.y3b_c01224{bottom:651.253707pt;}
.y3a_c01224{bottom:651.253840pt;}
.y7_c01224{bottom:652.534133pt;}
.y6f_c01224{bottom:670.133787pt;}
.y39_c01224{bottom:670.134120pt;}
.y38_c01224{bottom:670.134173pt;}
.y6_c01224{bottom:671.733173pt;}
.y37_c01224{bottom:689.014440pt;}
.y6e_c01224{bottom:689.333947pt;}
.y5_c01224{bottom:690.294693pt;}
.y6d_c01224{bottom:708.532973pt;}
.y36_c01224{bottom:708.854720pt;}
.y4_c01224{bottom:709.173680pt;}
.y6c_c01224{bottom:727.094507pt;}
.y35_c01224{bottom:727.413813pt;}
.y34_c01224{bottom:727.414000pt;}
.y3_c01224{bottom:728.053960pt;}
.y2_c01224{bottom:728.054347pt;}
.y6b_c01224{bottom:745.973467pt;}
.y6a_c01224{bottom:745.973760pt;}
.y33_c01224{bottom:746.294267pt;}
.y1_c01224{bottom:747.574547pt;}
.he_c01224{height:38.872396pt;}
.h2_c01224{height:45.777995pt;}
.h13_c01224{height:46.455078pt;}
.h4_c01224{height:46.585938pt;}
.h14_c01224{height:47.281250pt;}
.h1_c01224{height:47.763672pt;}
.hb_c01224{height:48.417969pt;}
.h1a_c01224{height:49.038659pt;}
.h15_c01224{height:49.046875pt;}
.h16_c01224{height:49.048419pt;}
.h3_c01224{height:49.072266pt;}
.h8_c01224{height:49.726562pt;}
.h7_c01224{height:50.380859pt;}
.hf_c01224{height:50.390625pt;}
.h10_c01224{height:50.731771pt;}
.h11_c01224{height:51.689453pt;}
.h12_c01224{height:51.734375pt;}
.h9_c01224{height:52.148438pt;}
.hd_c01224{height:52.343750pt;}
.h18_c01224{height:52.708333pt;}
.h17_c01224{height:52.971680pt;}
.hc_c01224{height:52.998047pt;}
.h19_c01224{height:53.367188pt;}
.ha_c01224{height:66.750000pt;}
.h6_c01224{height:73.007812pt;}
.h5_c01224{height:79.960938pt;}
.h0_c01224{height:793.333333pt;}
.w0_c01224{width:1122.666667pt;}
.x0_c01224{left:0.000000pt;}
.x24_c01224{left:46.083027pt;}
.x1a_c01224{left:47.038720pt;}
.xa_c01224{left:48.000000pt;}
.x1_c01224{left:48.959467pt;}
.x14_c01224{left:57.599067pt;}
.x15_c01224{left:61.440000pt;}
.xc_c01224{left:65.598680pt;}
.x16_c01224{left:71.679200pt;}
.x11_c01224{left:79.038533pt;}
.xb_c01224{left:82.239200pt;}
.x12_c01224{left:83.519467pt;}
.x5_c01224{left:87.358933pt;}
.x6_c01224{left:97.278813pt;}
.x13_c01224{left:102.719200pt;}
.x27_c01224{left:104.639613pt;}
.x7_c01224{left:110.718813pt;}
.x1e_c01224{left:113.279333pt;}
.x25_c01224{left:120.319333pt;}
.xd_c01224{left:125.759747pt;}
.x1f_c01224{left:131.519467pt;}
.xe_c01224{left:148.158667pt;}
.x22_c01224{left:161.598680pt;}
.x17_c01224{left:171.199200pt;}
.x8_c01224{left:177.279720pt;}
.x1b_c01224{left:180.479067pt;}
.x23_c01224{left:187.199733pt;}
.x18_c01224{left:188.159200pt;}
.x1c_c01224{left:190.719720pt;}
.x4_c01224{left:194.879867pt;}
.x19_c01224{left:200.958920pt;}
.x9_c01224{left:205.759320pt;}
.x20_c01224{left:208.960000pt;}
.x1d_c01224{left:212.799333pt;}
.x2_c01224{left:214.398920pt;}
.x21_c01224{left:222.719200pt;}
.x3_c01224{left:226.879333pt;}
.xf_c01224{left:237.439453pt;}
.x26_c01224{left:240.638667pt;}
.x10_c01224{left:264.000000pt;}
.x28_c01224{left:305.598680pt;}
.x44_c01224{left:306.561200pt;}
.x29_c01224{left:320.639587pt;}
.x3e_c01224{left:326.399453pt;}
.x47_c01224{left:332.480000pt;}
.x3f_c01224{left:339.518533pt;}
.x3d_c01224{left:340.799480pt;}
.x2a_c01224{left:352.639200pt;}
.x37_c01224{left:356.799320pt;}
.x48_c01224{left:359.039067pt;}
.x2b_c01224{left:366.719200pt;}
.x30_c01224{left:368.639613pt;}
.x38_c01224{left:370.558507pt;}
.x45_c01224{left:373.759320pt;}
.x39_c01224{left:376.639200pt;}
.x31_c01224{left:383.359867pt;}
.x33_c01224{left:388.158693pt;}
.x3a_c01224{left:390.399867pt;}
.x46_c01224{left:392.318813pt;}
.x34_c01224{left:400.639200pt;}
.x42_c01224{left:413.759720pt;}
.x43_c01224{left:427.199707pt;}
.x32_c01224{left:446.718787pt;}
.x40_c01224{left:462.079067pt;}
.x35_c01224{left:467.519453pt;}
.x2e_c01224{left:470.718787pt;}
.x3b_c01224{left:473.919480pt;}
.x36_c01224{left:476.159173pt;}
.x41_c01224{left:482.239707pt;}
.x2f_c01224{left:485.759720pt;}
.x2c_c01224{left:487.359333pt;}
.x3c_c01224{left:501.758787pt;}
.x2d_c01224{left:513.599040pt;}
.x49_c01224{left:599.039720pt;}
.x4e_c01224{left:600.319147pt;}
.x54_c01224{left:601.277187pt;}
.x4c_c01224{left:634.240747pt;}
.x52_c01224{left:635.198827pt;}
.x4f_c01224{left:653.438920pt;}
.x50_c01224{left:677.759720pt;}
.x51_c01224{left:687.999027pt;}
.x4a_c01224{left:753.279707pt;}
.x4b_c01224{left:765.118733pt;}
.x55_c01224{left:796.479413pt;}
.x4d_c01224{left:811.199707pt;}
.x53_c01224{left:816.959467pt;}
}





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

.ir_c01225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
.sc__c01225{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01225{-webkit-text-stroke:0px transparent;}
}
.y0_c01225{bottom:0.000000px;}
.h0_c01225{height:892.500000px;}
.w0_c01225{width:1263.000000px;}
.x0_c01225{left:0.000000px;}
@media print{
.y0_c01225{bottom:0.000000pt;}
.h0_c01225{height:793.333333pt;}
.w0_c01225{width:1122.666667pt;}
.x0_c01225{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_c01226 {
    display:none;
  }
  .loading-indicator_c01226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01226 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01226 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01226" -> "#page-container .classname_c01226")
 */
.pf_c01226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01226 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01226 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01226 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01226 {overflow:visible;}
  }
}
.c_c01226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01226 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01226:after { /* webkit #35443 */
  content: '';
}
.t_c01226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01226 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01226 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01226 { /* info for Javascript */
  display:none;
}
.l_c01226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_7c52f160513f51fc7a692955.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01226;src:url('chunks/assets/font_1dc979e448fca0dee7171001.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01226;src:url('chunks/assets/font_bc7f70f0339278d982116502.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01226;src:url('chunks/assets/font_ed38f5a7d424e071f2c3c1fe.woff2')format("woff");}.ff4_c01226{font-family:ff4_c01226;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01226;src:url('chunks/assets/font_4fd60c1b62300221fb6b3c3c.woff2')format("woff");}.ff5_c01226{font-family:ff5_c01226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01226;src:url('chunks/assets/font_9c368bad1399792a3d36e6f9.woff2')format("woff");}.ff6_c01226{font-family:ff6_c01226;line-height:1.432129;font-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_c01226{transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168831,0.000000,0.000000,0.250000,0,0);}
.me_c01226{transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176282,0.000000,0.000000,0.250000,0,0);}
.m1f_c01226{transform:matrix(0.178082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178082,0.000000,0.000000,0.250000,0,0);}
.m22_c01226{transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182432,0.000000,0.000000,0.250000,0,0);}
.mb_c01226{transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188356,0.000000,0.000000,0.250000,0,0);}
.m5_c01226{transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195205,0.000000,0.000000,0.250000,0,0);}
.m19_c01226{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m1_c01226{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m10_c01226{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.m1a_c01226{transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206667,0.000000,0.000000,0.250000,0,0);}
.m13_c01226{transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212329,0.000000,0.000000,0.250000,0,0);}
.md_c01226{transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213333,0.000000,0.000000,0.250000,0,0);}
.m24_c01226{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.ma_c01226{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m1b_c01226{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m8_c01226{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m23_c01226{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m14_c01226{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m9_c01226{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m3_c01226{transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);}
.m0_c01226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01226{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m11_c01226{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m26_c01226{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1e_c01226{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m15_c01226{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m12_c01226{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m18_c01226{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m28_c01226{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m25_c01226{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.mc_c01226{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m17_c01226{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m7_c01226{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m1d_c01226{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m4_c01226{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m21_c01226{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m1c_c01226{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m16_c01226{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m27_c01226{transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306452,0.000000,0.000000,0.250000,0,0);}
.mf_c01226{transform:matrix(0.320423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320423,0.000000,0.000000,0.250000,0,0);}
.m2_c01226{transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);}
.v0_c01226{vertical-align:0.000000px;}
.lse_c01226{letter-spacing:-10.566203px;}
.ls2b_c01226{letter-spacing:-10.401585px;}
.ls27_c01226{letter-spacing:-10.278600px;}
.ls10_c01226{letter-spacing:-10.018125px;}
.ls2e_c01226{letter-spacing:-7.497068px;}
.lsa_c01226{letter-spacing:-6.089250px;}
.ls2c_c01226{letter-spacing:-5.726700px;}
.ls20_c01226{letter-spacing:-5.666625px;}
.ls11_c01226{letter-spacing:-5.250450px;}
.ls13_c01226{letter-spacing:-4.499625px;}
.ls25_c01226{letter-spacing:-4.440975px;}
.ls29_c01226{letter-spacing:-4.260600px;}
.lsf_c01226{letter-spacing:-4.210275px;}
.ls28_c01226{letter-spacing:-3.748800px;}
.ls2a_c01226{letter-spacing:-3.650400px;}
.ls15_c01226{letter-spacing:-3.509175px;}
.lsc_c01226{letter-spacing:-2.997975px;}
.ls1a_c01226{letter-spacing:-2.878200px;}
.ls23_c01226{letter-spacing:-2.802600px;}
.ls22_c01226{letter-spacing:-2.700000px;}
.ls1e_c01226{letter-spacing:-2.524500px;}
.lsb_c01226{letter-spacing:-2.252475px;}
.ls14_c01226{letter-spacing:-2.129468px;}
.lsd_c01226{letter-spacing:-2.076750px;}
.ls1c_c01226{letter-spacing:-1.955123px;}
.ls6_c01226{letter-spacing:-1.501650px;}
.ls2d_c01226{letter-spacing:-1.497600px;}
.ls1b_c01226{letter-spacing:-1.461825px;}
.ls24_c01226{letter-spacing:-1.443000px;}
.ls1f_c01226{letter-spacing:-1.438500px;}
.ls8_c01226{letter-spacing:-0.750825px;}
.ls16_c01226{letter-spacing:-0.728723px;}
.ls26_c01226{letter-spacing:-0.688500px;}
.ls7_c01226{letter-spacing:0.000000px;}
.ls0_c01226{letter-spacing:0.750825px;}
.ls1d_c01226{letter-spacing:1.497600px;}
.ls5_c01226{letter-spacing:1.501650px;}
.ls21_c01226{letter-spacing:1.636200px;}
.ls1_c01226{letter-spacing:2.252475px;}
.ls19_c01226{letter-spacing:2.316375px;}
.ls17_c01226{letter-spacing:2.875500px;}
.ls2_c01226{letter-spacing:2.997975px;}
.ls18_c01226{letter-spacing:3.531375px;}
.ls4_c01226{letter-spacing:4.499625px;}
.ls12_c01226{letter-spacing:5.973225px;}
.ls9_c01226{letter-spacing:6.493898px;}
.ls3_c01226{letter-spacing:19.500150px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01226{word-spacing:0.000000px;}
._19_c01226{margin-left:-83.836680px;}
._f_c01226{margin-left:-28.846455px;}
._13_c01226{margin-left:-27.780345px;}
._1c_c01226{margin-left:-14.835390px;}
._11_c01226{margin-left:-12.492570px;}
._1b_c01226{margin-left:-10.617165px;}
._17_c01226{margin-left:-9.153690px;}
._15_c01226{margin-left:-6.826875px;}
._14_c01226{margin-left:-4.968660px;}
._2_c01226{margin-left:-3.120450px;}
._16_c01226{margin-left:-1.283580px;}
._3_c01226{width:1.172070px;}
._1_c01226{width:2.369445px;}
._7_c01226{width:3.445170px;}
._10_c01226{width:5.437185px;}
._0_c01226{width:6.916980px;}
._1d_c01226{width:7.995960px;}
._4_c01226{width:9.105780px;}
._5_c01226{width:10.756125px;}
._e_c01226{width:11.938545px;}
._12_c01226{width:14.116950px;}
._c_c01226{width:15.149250px;}
._18_c01226{width:16.411500px;}
._1a_c01226{width:18.505065px;}
._d_c01226{width:20.410065px;}
._b_c01226{width:21.779310px;}
._6_c01226{width:23.590515px;}
._8_c01226{width:25.123440px;}
._a_c01226{width:26.183310px;}
._9_c01226{width:34.009995px;}
.fc0_c01226{color:transparent;}
.fs2_c01226{font-size:34.500000px;}
.fsf_c01226{font-size:46.500000px;}
.fs10_c01226{font-size:47.250000px;}
.fs4_c01226{font-size:51.000000px;}
.fse_c01226{font-size:51.750000px;}
.fs3_c01226{font-size:52.278600px;}
.fsb_c01226{font-size:52.500000px;}
.fs0_c01226{font-size:53.250000px;}
.fs8_c01226{font-size:54.000000px;}
.fs1_c01226{font-size:54.750000px;}
.fsc_c01226{font-size:55.500000px;}
.fs5_c01226{font-size:56.250000px;}
.fsd_c01226{font-size:57.750000px;}
.fs6_c01226{font-size:58.500000px;}
.fs7_c01226{font-size:59.250000px;}
.fsa_c01226{font-size:67.500000px;}
.fs9_c01226{font-size:72.000000px;}
.y0_c01226{bottom:0.000000px;}
.y63_c01226{bottom:70.980900px;}
.y32_c01226{bottom:72.421185px;}
.y62_c01226{bottom:91.501050px;}
.y61_c01226{bottom:91.501485px;}
.y31_c01226{bottom:92.941365px;}
.y60_c01226{bottom:112.021335px;}
.y5f_c01226{bottom:112.021815px;}
.y30_c01226{bottom:113.460000px;}
.y2f_c01226{bottom:113.461485px;}
.y5e_c01226{bottom:132.901200px;}
.y2e_c01226{bottom:134.342100px;}
.y5d_c01226{bottom:153.060285px;}
.y5c_c01226{bottom:153.060720px;}
.y2d_c01226{bottom:154.861950px;}
.y5b_c01226{bottom:173.941335px;}
.y2c_c01226{bottom:175.741335px;}
.y5a_c01226{bottom:194.460270px;}
.y2b_c01226{bottom:196.261185px;}
.y2a_c01226{bottom:196.261350px;}
.y59_c01226{bottom:215.700435px;}
.y29_c01226{bottom:217.140750px;}
.y28_c01226{bottom:217.141365px;}
.y58_c01226{bottom:236.220885px;}
.y27_c01226{bottom:237.661200px;}
.y57_c01226{bottom:257.100285px;}
.y56_c01226{bottom:257.101290px;}
.y26_c01226{bottom:258.540600px;}
.y25_c01226{bottom:258.541605px;}
.y55_c01226{bottom:277.261800px;}
.y24_c01226{bottom:279.061425px;}
.y54_c01226{bottom:298.141185px;}
.y23_c01226{bottom:299.940840px;}
.y53_c01226{bottom:318.661035px;}
.y52_c01226{bottom:318.662790px;}
.y22_c01226{bottom:320.101335px;}
.y51_c01226{bottom:339.542175px;}
.y21_c01226{bottom:340.981500px;}
.y50_c01226{bottom:360.421575px;}
.y20_c01226{bottom:362.221635px;}
.y4f_c01226{bottom:381.661740px;}
.y1f_c01226{bottom:382.741500px;}
.y4e_c01226{bottom:401.822250px;}
.y1e_c01226{bottom:402.900885px;}
.y1d_c01226{bottom:402.901035px;}
.y4d_c01226{bottom:422.340870px;}
.y1c_c01226{bottom:423.780435px;}
.y1b_c01226{bottom:423.781500px;}
.y4c_c01226{bottom:442.860720px;}
.y1a_c01226{bottom:444.301350px;}
.y4b_c01226{bottom:463.380570px;}
.y4a_c01226{bottom:463.381485px;}
.y19_c01226{bottom:464.821200px;}
.y49_c01226{bottom:483.901335px;}
.y18_c01226{bottom:484.980285px;}
.y48_c01226{bottom:504.421170px;}
.y7b_c01226{bottom:504.421470px;}
.y17_c01226{bottom:505.861335px;}
.y7a_c01226{bottom:524.941320px;}
.y79_c01226{bottom:524.941950px;}
.y47_c01226{bottom:525.300570px;}
.y46_c01226{bottom:525.301275px;}
.y16_c01226{bottom:526.379970px;}
.y15_c01226{bottom:526.380435px;}
.y78_c01226{bottom:545.821335px;}
.y45_c01226{bottom:546.180675px;}
.y14_c01226{bottom:546.900285px;}
.y13_c01226{bottom:546.901650px;}
.y44_c01226{bottom:566.341185px;}
.y43_c01226{bottom:566.341650px;}
.y12_c01226{bottom:567.421515px;}
.y77_c01226{bottom:586.861500px;}
.y76_c01226{bottom:586.862370px;}
.y42_c01226{bottom:587.221020px;}
.y11_c01226{bottom:587.941365px;}
.y75_c01226{bottom:607.380975px;}
.y41_c01226{bottom:607.740870px;}
.y40_c01226{bottom:607.741650px;}
.y10_c01226{bottom:608.461185px;}
.y3f_c01226{bottom:627.900735px;}
.y74_c01226{bottom:627.900840px;}
.yf_c01226{bottom:629.340585px;}
.ye_c01226{bottom:629.340870px;}
.y73_c01226{bottom:648.061335px;}
.y72_c01226{bottom:648.061755px;}
.y3e_c01226{bottom:648.420600px;}
.yd_c01226{bottom:649.499955px;}
.yc_c01226{bottom:649.501740px;}
.y71_c01226{bottom:668.581605px;}
.y70_c01226{bottom:668.581785px;}
.y3d_c01226{bottom:668.941320px;}
.yb_c01226{bottom:670.021590px;}
.y6f_c01226{bottom:688.740870px;}
.y6e_c01226{bottom:688.741935px;}
.y3c_c01226{bottom:689.461170px;}
.ya_c01226{bottom:690.182100px;}
.y6d_c01226{bottom:709.261785px;}
.y3b_c01226{bottom:709.981335px;}
.y9_c01226{bottom:710.341185px;}
.y6c_c01226{bottom:729.781605px;}
.y3a_c01226{bottom:730.499955px;}
.y8_c01226{bottom:731.220570px;}
.y6b_c01226{bottom:750.661005px;}
.y6a_c01226{bottom:750.661515px;}
.y39_c01226{bottom:751.381170px;}
.y38_c01226{bottom:751.381710px;}
.y7_c01226{bottom:751.740420px;}
.y69_c01226{bottom:771.181365px;}
.y68_c01226{bottom:771.181965px;}
.y37_c01226{bottom:771.901560px;}
.y6_c01226{bottom:772.260675px;}
.y5_c01226{bottom:772.260705px;}
.y67_c01226{bottom:791.701815px;}
.y36_c01226{bottom:792.240420px;}
.y35_c01226{bottom:792.241350px;}
.y3_c01226{bottom:793.139745px;}
.y4_c01226{bottom:793.140105px;}
.y66_c01226{bottom:811.860900px;}
.y65_c01226{bottom:811.861470px;}
.y34_c01226{bottom:812.581440px;}
.y2_c01226{bottom:813.301455px;}
.y64_c01226{bottom:832.740855px;}
.y33_c01226{bottom:833.460840px;}
.y1_c01226{bottom:834.541620px;}
.h3_c01226{height:35.982422px;}
.h16_c01226{height:48.498047px;}
.h17_c01226{height:49.280273px;}
.h6_c01226{height:50.053711px;}
.h4_c01226{height:51.308587px;}
.hf_c01226{height:51.525879px;}
.h1_c01226{height:52.261963px;}
.hc_c01226{height:52.998047px;}
.h10_c01226{height:53.666016px;}
.h2_c01226{height:53.734131px;}
.h14_c01226{height:53.973633px;}
.h5_c01226{height:54.108398px;}
.h15_c01226{height:54.421875px;}
.h11_c01226{height:54.470215px;}
.h13_c01226{height:54.849609px;}
.h7_c01226{height:55.206299px;}
.h8_c01226{height:55.590820px;}
.h9_c01226{height:56.689453px;}
.h12_c01226{height:57.073242px;}
.ha_c01226{height:57.414551px;}
.hb_c01226{height:58.555664px;}
.he_c01226{height:70.400391px;}
.hd_c01226{height:75.090630px;}
.h18_c01226{height:75.093750px;}
.h0_c01226{height:892.500000px;}
.w0_c01226{width:1263.000000px;}
.x0_c01226{left:0.000000px;}
.x21_c01226{left:72.359850px;}
.x14_c01226{left:73.439760px;}
.x8_c01226{left:74.518485px;}
.x2_c01226{left:75.959970px;}
.x12_c01226{left:84.958350px;}
.x9_c01226{left:91.439685px;}
.x18_c01226{left:93.598500px;}
.x3_c01226{left:96.120000px;}
.x1f_c01226{left:98.639700px;}
.xa_c01226{left:105.119415px;}
.x22_c01226{left:108.000000px;}
.x4_c01226{left:112.678500px;}
.xb_c01226{left:113.760675px;}
.x1_c01226{left:114.838950px;}
.x1d_c01226{left:121.679700px;}
.x20_c01226{left:132.478665px;}
.x1e_c01226{left:136.799565px;}
.x19_c01226{left:138.958350px;}
.x1a_c01226{left:150.120000px;}
.x5_c01226{left:176.759100px;}
.x16_c01226{left:179.278800px;}
.xc_c01226{left:185.040000px;}
.x6_c01226{left:191.519685px;}
.x17_c01226{left:192.958350px;}
.xd_c01226{left:199.798950px;}
.x1b_c01226{left:216.359250px;}
.x1c_c01226{left:228.598500px;}
.xe_c01226{left:238.679100px;}
.x7_c01226{left:245.519685px;}
.x10_c01226{left:255.959400px;}
.xf_c01226{left:260.278800px;}
.x11_c01226{left:273.958350px;}
.x13_c01226{left:277.918350px;}
.x15_c01226{left:311.038950px;}
.x30_c01226{left:362.878875px;}
.x24_c01226{left:363.963165px;}
.x23_c01226{left:365.040165px;}
.x2c_c01226{left:378.718530px;}
.x2d_c01226{left:389.159820px;}
.x3e_c01226{left:394.558635px;}
.x41_c01226{left:398.879565px;}
.x3d_c01226{left:401.399235px;}
.x2a_c01226{left:402.478635px;}
.x42_c01226{left:413.638500px;}
.x2b_c01226{left:419.399820px;}
.x37_c01226{left:422.278800px;}
.x38_c01226{left:432.000000px;}
.x35_c01226{left:433.079400px;}
.x31_c01226{left:439.199850px;}
.x3f_c01226{left:451.439250px;}
.x36_c01226{left:458.639100px;}
.x32_c01226{left:466.559100px;}
.x40_c01226{left:469.439670px;}
.x33_c01226{left:473.759085px;}
.x25_c01226{left:474.838530px;}
.x34_c01226{left:495.358665px;}
.x26_c01226{left:497.878320px;}
.x39_c01226{left:499.679670px;}
.x3a_c01226{left:524.878320px;}
.x27_c01226{left:535.319820px;}
.x3b_c01226{left:541.799520px;}
.x2e_c01226{left:545.039385px;}
.x28_c01226{left:553.679670px;}
.x2f_c01226{left:557.998950px;}
.x3c_c01226{left:566.639100px;}
.x29_c01226{left:587.518620px;}
.x43_c01226{left:599.759535px;}
.x44_c01226{left:635.400165px;}
.x52_c01226{left:663.479235px;}
.x53_c01226{left:673.559685px;}
.x4f_c01226{left:686.519070px;}
.x47_c01226{left:692.278800px;}
.x48_c01226{left:707.398635px;}
.x45_c01226{left:713.159820px;}
.x4c_c01226{left:720.359850px;}
.x46_c01226{left:736.559100px;}
.x4d_c01226{left:740.159820px;}
.x49_c01226{left:757.079355px;}
.x4a_c01226{left:770.038965px;}
.x4b_c01226{left:780.839535px;}
.x50_c01226{left:788.039340px;}
.x4e_c01226{left:796.679715px;}
.x55_c01226{left:820.798920px;}
.x51_c01226{left:830.159370px;}
.x56_c01226{left:834.839535px;}
.x54_c01226{left:858.238770px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.lse_c01226{letter-spacing:-9.392180pt;}
.ls2b_c01226{letter-spacing:-9.245853pt;}
.ls27_c01226{letter-spacing:-9.136533pt;}
.ls10_c01226{letter-spacing:-8.905000pt;}
.ls2e_c01226{letter-spacing:-6.664060pt;}
.lsa_c01226{letter-spacing:-5.412667pt;}
.ls2c_c01226{letter-spacing:-5.090400pt;}
.ls20_c01226{letter-spacing:-5.037000pt;}
.ls11_c01226{letter-spacing:-4.667067pt;}
.ls13_c01226{letter-spacing:-3.999667pt;}
.ls25_c01226{letter-spacing:-3.947533pt;}
.ls29_c01226{letter-spacing:-3.787200pt;}
.lsf_c01226{letter-spacing:-3.742467pt;}
.ls28_c01226{letter-spacing:-3.332267pt;}
.ls2a_c01226{letter-spacing:-3.244800pt;}
.ls15_c01226{letter-spacing:-3.119267pt;}
.lsc_c01226{letter-spacing:-2.664867pt;}
.ls1a_c01226{letter-spacing:-2.558400pt;}
.ls23_c01226{letter-spacing:-2.491200pt;}
.ls22_c01226{letter-spacing:-2.400000pt;}
.ls1e_c01226{letter-spacing:-2.244000pt;}
.lsb_c01226{letter-spacing:-2.002200pt;}
.ls14_c01226{letter-spacing:-1.892860pt;}
.lsd_c01226{letter-spacing:-1.846000pt;}
.ls1c_c01226{letter-spacing:-1.737887pt;}
.ls6_c01226{letter-spacing:-1.334800pt;}
.ls2d_c01226{letter-spacing:-1.331200pt;}
.ls1b_c01226{letter-spacing:-1.299400pt;}
.ls24_c01226{letter-spacing:-1.282667pt;}
.ls1f_c01226{letter-spacing:-1.278667pt;}
.ls8_c01226{letter-spacing:-0.667400pt;}
.ls16_c01226{letter-spacing:-0.647753pt;}
.ls26_c01226{letter-spacing:-0.612000pt;}
.ls7_c01226{letter-spacing:0.000000pt;}
.ls0_c01226{letter-spacing:0.667400pt;}
.ls1d_c01226{letter-spacing:1.331200pt;}
.ls5_c01226{letter-spacing:1.334800pt;}
.ls21_c01226{letter-spacing:1.454400pt;}
.ls1_c01226{letter-spacing:2.002200pt;}
.ls19_c01226{letter-spacing:2.059000pt;}
.ls17_c01226{letter-spacing:2.556000pt;}
.ls2_c01226{letter-spacing:2.664867pt;}
.ls18_c01226{letter-spacing:3.139000pt;}
.ls4_c01226{letter-spacing:3.999667pt;}
.ls12_c01226{letter-spacing:5.309533pt;}
.ls9_c01226{letter-spacing:5.772353pt;}
.ls3_c01226{letter-spacing:17.333467pt;}
.ws0_c01226{word-spacing:0.000000pt;}
._19_c01226{margin-left:-74.521493pt;}
._f_c01226{margin-left:-25.641293pt;}
._13_c01226{margin-left:-24.693640pt;}
._1c_c01226{margin-left:-13.187013pt;}
._11_c01226{margin-left:-11.104507pt;}
._1b_c01226{margin-left:-9.437480pt;}
._17_c01226{margin-left:-8.136613pt;}
._15_c01226{margin-left:-6.068333pt;}
._14_c01226{margin-left:-4.416587pt;}
._2_c01226{margin-left:-2.773733pt;}
._16_c01226{margin-left:-1.140960pt;}
._3_c01226{width:1.041840pt;}
._1_c01226{width:2.106173pt;}
._7_c01226{width:3.062373pt;}
._10_c01226{width:4.833053pt;}
._0_c01226{width:6.148427pt;}
._1d_c01226{width:7.107520pt;}
._4_c01226{width:8.094027pt;}
._5_c01226{width:9.561000pt;}
._e_c01226{width:10.612040pt;}
._12_c01226{width:12.548400pt;}
._c_c01226{width:13.466000pt;}
._18_c01226{width:14.588000pt;}
._1a_c01226{width:16.448947pt;}
._d_c01226{width:18.142280pt;}
._b_c01226{width:19.359387pt;}
._6_c01226{width:20.969347pt;}
._8_c01226{width:22.331947pt;}
._a_c01226{width:23.274053pt;}
._9_c01226{width:30.231107pt;}
.fs2_c01226{font-size:30.666667pt;}
.fsf_c01226{font-size:41.333333pt;}
.fs10_c01226{font-size:42.000000pt;}
.fs4_c01226{font-size:45.333333pt;}
.fse_c01226{font-size:46.000000pt;}
.fs3_c01226{font-size:46.469867pt;}
.fsb_c01226{font-size:46.666667pt;}
.fs0_c01226{font-size:47.333333pt;}
.fs8_c01226{font-size:48.000000pt;}
.fs1_c01226{font-size:48.666667pt;}
.fsc_c01226{font-size:49.333333pt;}
.fs5_c01226{font-size:50.000000pt;}
.fsd_c01226{font-size:51.333333pt;}
.fs6_c01226{font-size:52.000000pt;}
.fs7_c01226{font-size:52.666667pt;}
.fsa_c01226{font-size:60.000000pt;}
.fs9_c01226{font-size:64.000000pt;}
.y0_c01226{bottom:0.000000pt;}
.y63_c01226{bottom:63.094133pt;}
.y32_c01226{bottom:64.374387pt;}
.y62_c01226{bottom:81.334267pt;}
.y61_c01226{bottom:81.334653pt;}
.y31_c01226{bottom:82.614547pt;}
.y60_c01226{bottom:99.574520pt;}
.y5f_c01226{bottom:99.574947pt;}
.y30_c01226{bottom:100.853333pt;}
.y2f_c01226{bottom:100.854653pt;}
.y5e_c01226{bottom:118.134400pt;}
.y2e_c01226{bottom:119.415200pt;}
.y5d_c01226{bottom:136.053587pt;}
.y5c_c01226{bottom:136.053973pt;}
.y2d_c01226{bottom:137.655067pt;}
.y5b_c01226{bottom:154.614520pt;}
.y2c_c01226{bottom:156.214520pt;}
.y5a_c01226{bottom:172.853573pt;}
.y2b_c01226{bottom:174.454387pt;}
.y2a_c01226{bottom:174.454533pt;}
.y59_c01226{bottom:191.733720pt;}
.y29_c01226{bottom:193.014000pt;}
.y28_c01226{bottom:193.014547pt;}
.y58_c01226{bottom:209.974120pt;}
.y27_c01226{bottom:211.254400pt;}
.y57_c01226{bottom:228.533587pt;}
.y56_c01226{bottom:228.534480pt;}
.y26_c01226{bottom:229.813867pt;}
.y25_c01226{bottom:229.814760pt;}
.y55_c01226{bottom:246.454933pt;}
.y24_c01226{bottom:248.054600pt;}
.y54_c01226{bottom:265.014387pt;}
.y23_c01226{bottom:266.614080pt;}
.y53_c01226{bottom:283.254253pt;}
.y52_c01226{bottom:283.255813pt;}
.y22_c01226{bottom:284.534520pt;}
.y51_c01226{bottom:301.815267pt;}
.y21_c01226{bottom:303.094667pt;}
.y50_c01226{bottom:320.374733pt;}
.y20_c01226{bottom:321.974787pt;}
.y4f_c01226{bottom:339.254880pt;}
.y1f_c01226{bottom:340.214667pt;}
.y4e_c01226{bottom:357.175333pt;}
.y1e_c01226{bottom:358.134120pt;}
.y1d_c01226{bottom:358.134253pt;}
.y4d_c01226{bottom:375.414107pt;}
.y1c_c01226{bottom:376.693720pt;}
.y1b_c01226{bottom:376.694667pt;}
.y4c_c01226{bottom:393.653973pt;}
.y1a_c01226{bottom:394.934533pt;}
.y4b_c01226{bottom:411.893840pt;}
.y4a_c01226{bottom:411.894653pt;}
.y19_c01226{bottom:413.174400pt;}
.y49_c01226{bottom:430.134520pt;}
.y18_c01226{bottom:431.093587pt;}
.y48_c01226{bottom:448.374373pt;}
.y7b_c01226{bottom:448.374640pt;}
.y17_c01226{bottom:449.654520pt;}
.y7a_c01226{bottom:466.614507pt;}
.y79_c01226{bottom:466.615067pt;}
.y47_c01226{bottom:466.933840pt;}
.y46_c01226{bottom:466.934467pt;}
.y16_c01226{bottom:467.893307pt;}
.y15_c01226{bottom:467.893720pt;}
.y78_c01226{bottom:485.174520pt;}
.y45_c01226{bottom:485.493933pt;}
.y14_c01226{bottom:486.133587pt;}
.y13_c01226{bottom:486.134800pt;}
.y44_c01226{bottom:503.414387pt;}
.y43_c01226{bottom:503.414800pt;}
.y12_c01226{bottom:504.374680pt;}
.y77_c01226{bottom:521.654667pt;}
.y76_c01226{bottom:521.655440pt;}
.y42_c01226{bottom:521.974240pt;}
.y11_c01226{bottom:522.614547pt;}
.y75_c01226{bottom:539.894200pt;}
.y41_c01226{bottom:540.214107pt;}
.y40_c01226{bottom:540.214800pt;}
.y10_c01226{bottom:540.854387pt;}
.y3f_c01226{bottom:558.133987pt;}
.y74_c01226{bottom:558.134080pt;}
.yf_c01226{bottom:559.413853pt;}
.ye_c01226{bottom:559.414107pt;}
.y73_c01226{bottom:576.054520pt;}
.y72_c01226{bottom:576.054893pt;}
.y3e_c01226{bottom:576.373867pt;}
.yd_c01226{bottom:577.333293pt;}
.yc_c01226{bottom:577.334880pt;}
.y71_c01226{bottom:594.294760pt;}
.y70_c01226{bottom:594.294920pt;}
.y3d_c01226{bottom:594.614507pt;}
.yb_c01226{bottom:595.574747pt;}
.y6f_c01226{bottom:612.214107pt;}
.y6e_c01226{bottom:612.215053pt;}
.y3c_c01226{bottom:612.854373pt;}
.ya_c01226{bottom:613.495200pt;}
.y6d_c01226{bottom:630.454920pt;}
.y3b_c01226{bottom:631.094520pt;}
.y9_c01226{bottom:631.414387pt;}
.y6c_c01226{bottom:648.694760pt;}
.y3a_c01226{bottom:649.333293pt;}
.y8_c01226{bottom:649.973840pt;}
.y6b_c01226{bottom:667.254227pt;}
.y6a_c01226{bottom:667.254680pt;}
.y39_c01226{bottom:667.894373pt;}
.y38_c01226{bottom:667.894853pt;}
.y7_c01226{bottom:668.213707pt;}
.y69_c01226{bottom:685.494547pt;}
.y68_c01226{bottom:685.495080pt;}
.y37_c01226{bottom:686.134720pt;}
.y6_c01226{bottom:686.453933pt;}
.y5_c01226{bottom:686.453960pt;}
.y67_c01226{bottom:703.734947pt;}
.y36_c01226{bottom:704.213707pt;}
.y35_c01226{bottom:704.214533pt;}
.y3_c01226{bottom:705.013107pt;}
.y4_c01226{bottom:705.013427pt;}
.y66_c01226{bottom:721.654133pt;}
.y65_c01226{bottom:721.654640pt;}
.y34_c01226{bottom:722.294613pt;}
.y2_c01226{bottom:722.934627pt;}
.y64_c01226{bottom:740.214093pt;}
.y33_c01226{bottom:740.854080pt;}
.y1_c01226{bottom:741.814773pt;}
.h3_c01226{height:31.984375pt;}
.h16_c01226{height:43.109375pt;}
.h17_c01226{height:43.804688pt;}
.h6_c01226{height:44.492188pt;}
.h4_c01226{height:45.607633pt;}
.hf_c01226{height:45.800781pt;}
.h1_c01226{height:46.455078pt;}
.hc_c01226{height:47.109375pt;}
.h10_c01226{height:47.703125pt;}
.h2_c01226{height:47.763672pt;}
.h14_c01226{height:47.976562pt;}
.h5_c01226{height:48.096354pt;}
.h15_c01226{height:48.375000pt;}
.h11_c01226{height:48.417969pt;}
.h13_c01226{height:48.755208pt;}
.h7_c01226{height:49.072266pt;}
.h8_c01226{height:49.414063pt;}
.h9_c01226{height:50.390625pt;}
.h12_c01226{height:50.731771pt;}
.ha_c01226{height:51.035156pt;}
.hb_c01226{height:52.049479pt;}
.he_c01226{height:62.578125pt;}
.hd_c01226{height:66.747227pt;}
.h18_c01226{height:66.750000pt;}
.h0_c01226{height:793.333333pt;}
.w0_c01226{width:1122.666667pt;}
.x0_c01226{left:0.000000pt;}
.x21_c01226{left:64.319867pt;}
.x14_c01226{left:65.279787pt;}
.x8_c01226{left:66.238653pt;}
.x2_c01226{left:67.519973pt;}
.x12_c01226{left:75.518533pt;}
.x9_c01226{left:81.279720pt;}
.x18_c01226{left:83.198667pt;}
.x3_c01226{left:85.440000pt;}
.x1f_c01226{left:87.679733pt;}
.xa_c01226{left:93.439480pt;}
.x22_c01226{left:96.000000pt;}
.x4_c01226{left:100.158667pt;}
.xb_c01226{left:101.120600pt;}
.x1_c01226{left:102.079067pt;}
.x1d_c01226{left:108.159733pt;}
.x20_c01226{left:117.758813pt;}
.x1e_c01226{left:121.599613pt;}
.x19_c01226{left:123.518533pt;}
.x1a_c01226{left:133.440000pt;}
.x5_c01226{left:157.119200pt;}
.x16_c01226{left:159.358933pt;}
.xc_c01226{left:164.480000pt;}
.x6_c01226{left:170.239720pt;}
.x17_c01226{left:171.518533pt;}
.xd_c01226{left:177.599067pt;}
.x1b_c01226{left:192.319333pt;}
.x1c_c01226{left:203.198667pt;}
.xe_c01226{left:212.159200pt;}
.x7_c01226{left:218.239720pt;}
.x10_c01226{left:227.519467pt;}
.xf_c01226{left:231.358933pt;}
.x11_c01226{left:243.518533pt;}
.x13_c01226{left:247.038533pt;}
.x15_c01226{left:276.479067pt;}
.x30_c01226{left:322.559000pt;}
.x24_c01226{left:323.522813pt;}
.x23_c01226{left:324.480147pt;}
.x2c_c01226{left:336.638693pt;}
.x2d_c01226{left:345.919840pt;}
.x3e_c01226{left:350.718787pt;}
.x41_c01226{left:354.559613pt;}
.x3d_c01226{left:356.799320pt;}
.x2a_c01226{left:357.758787pt;}
.x42_c01226{left:367.678667pt;}
.x2b_c01226{left:372.799840pt;}
.x37_c01226{left:375.358933pt;}
.x38_c01226{left:384.000000pt;}
.x35_c01226{left:384.959467pt;}
.x31_c01226{left:390.399867pt;}
.x3f_c01226{left:401.279333pt;}
.x36_c01226{left:407.679200pt;}
.x32_c01226{left:414.719200pt;}
.x40_c01226{left:417.279707pt;}
.x33_c01226{left:421.119187pt;}
.x25_c01226{left:422.078693pt;}
.x34_c01226{left:440.318813pt;}
.x26_c01226{left:442.558507pt;}
.x39_c01226{left:444.159707pt;}
.x3a_c01226{left:466.558507pt;}
.x27_c01226{left:475.839840pt;}
.x3b_c01226{left:481.599573pt;}
.x2e_c01226{left:484.479453pt;}
.x28_c01226{left:492.159707pt;}
.x2f_c01226{left:495.999067pt;}
.x3c_c01226{left:503.679200pt;}
.x29_c01226{left:522.238773pt;}
.x43_c01226{left:533.119587pt;}
.x44_c01226{left:564.800147pt;}
.x52_c01226{left:589.759320pt;}
.x53_c01226{left:598.719720pt;}
.x4f_c01226{left:610.239173pt;}
.x47_c01226{left:615.358933pt;}
.x48_c01226{left:628.798787pt;}
.x45_c01226{left:633.919840pt;}
.x4c_c01226{left:640.319867pt;}
.x46_c01226{left:654.719200pt;}
.x4d_c01226{left:657.919840pt;}
.x49_c01226{left:672.959427pt;}
.x4a_c01226{left:684.479080pt;}
.x4b_c01226{left:694.079587pt;}
.x50_c01226{left:700.479413pt;}
.x4e_c01226{left:708.159747pt;}
.x55_c01226{left:729.599040pt;}
.x51_c01226{left:737.919440pt;}
.x56_c01226{left:742.079587pt;}
.x54_c01226{left:762.878907pt;}
}





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

.ir_c01227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
.sc__c01227{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01227{-webkit-text-stroke:0px transparent;}
}
.y0_c01227{bottom:0.000000px;}
.h0_c01227{height:892.500000px;}
.w0_c01227{width:1263.000000px;}
.x0_c01227{left:0.000000px;}
@media print{
.y0_c01227{bottom:0.000000pt;}
.h0_c01227{height:793.333333pt;}
.w0_c01227{width:1122.666667pt;}
.x0_c01227{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_c01228 {
    display:none;
  }
  .loading-indicator_c01228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01228 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01228 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01228" -> "#page-container .classname_c01228")
 */
.pf_c01228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01228 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01228 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01228 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01228 {overflow:visible;}
  }
}
.c_c01228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01228 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01228:after { /* webkit #35443 */
  content: '';
}
.t_c01228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01228 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01228 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01228 { /* info for Javascript */
  display:none;
}
.l_c01228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_ff534e3225c084f035e7c501.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01228{transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);}
.v0_c01228{vertical-align:0.000000px;}
.ls0_c01228{letter-spacing:14.960678px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01228{word-spacing:0.000000px;}
.fc0_c01228{color:transparent;}
.fs0_c01228{font-size:200.250000px;}
.y0_c01228{bottom:0.000000px;}
.y1_c01228{bottom:435.660420px;}
.h1_c01228{height:196.534424px;}
.h0_c01228{height:892.500000px;}
.w0_c01228{width:1263.000000px;}
.x0_c01228{left:0.000000px;}
.x1_c01228{left:431.279850px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls0_c01228{letter-spacing:13.298380pt;}
.ws0_c01228{word-spacing:0.000000pt;}
.fs0_c01228{font-size:178.000000pt;}
.y0_c01228{bottom:0.000000pt;}
.y1_c01228{bottom:387.253707pt;}
.h1_c01228{height:174.697266pt;}
.h0_c01228{height:793.333333pt;}
.w0_c01228{width:1122.666667pt;}
.x0_c01228{left:0.000000pt;}
.x1_c01228{left:383.359867pt;}
}





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

.ir_c01229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
.sc__c01229{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01229{-webkit-text-stroke:0px transparent;}
}
.y0_c01229{bottom:0.000000px;}
.h0_c01229{height:892.500000px;}
.w0_c01229{width:1263.000000px;}
.x0_c01229{left:0.000000px;}
@media print{
.y0_c01229{bottom:0.000000pt;}
.h0_c01229{height:793.333333pt;}
.w0_c01229{width:1122.666667pt;}
.x0_c01229{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_c01230 {
    display:none;
  }
  .loading-indicator_c01230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01230 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01230 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01230" -> "#page-container .classname_c01230")
 */
.pf_c01230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01230 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01230 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01230 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01230 {overflow:visible;}
  }
}
.c_c01230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01230 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01230:after { /* webkit #35443 */
  content: '';
}
.t_c01230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01230 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01230 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01230 { /* info for Javascript */
  display:none;
}
.l_c01230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_15dea6aaf31befc5f8d3a728.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01230;src:url('chunks/assets/font_1f84541583878423f4818f72.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:1.432129;font-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_c01230{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m2_c01230{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1_c01230{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m3_c01230{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m0_c01230{transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290476,0.000000,0.000000,0.250000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls5_c01230{letter-spacing:-9.371093px;}
.ls3_c01230{letter-spacing:1.937250px;}
.ls6_c01230{letter-spacing:2.596620px;}
.ls0_c01230{letter-spacing:3.463200px;}
.ls1_c01230{letter-spacing:4.336800px;}
.ls7_c01230{letter-spacing:4.378500px;}
.ls4_c01230{letter-spacing:5.102550px;}
.ls8_c01230{letter-spacing:6.068400px;}
.ls2_c01230{letter-spacing:6.126750px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01230{word-spacing:0.000000px;}
._1_c01230{width:30.466731px;}
._0_c01230{width:44.507077px;}
.fc0_c01230{color:transparent;}
.fs3_c01230{font-size:74.250000px;}
.fs1_c01230{font-size:76.500000px;}
.fs2_c01230{font-size:78.000000px;}
.fs0_c01230{font-size:78.750000px;}
.y0_c01230{bottom:0.000000px;}
.y1_c01230{bottom:838.860900px;}
.h2_c01230{height:75.080566px;}
.h3_c01230{height:76.552734px;}
.h1_c01230{height:77.288818px;}
.h4_c01230{height:77.440430px;}
.h0_c01230{height:892.500000px;}
.w0_c01230{width:1263.000000px;}
.x0_c01230{left:0.000000px;}
.x1_c01230{left:89.279250px;}
.x2_c01230{left:176.399850px;}
.x3_c01230{left:217.079385px;}
.x4_c01230{left:498.598530px;}
.x5_c01230{left:536.399235px;}
.x6_c01230{left:677.158770px;}
.x7_c01230{left:812.158815px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls5_c01230{letter-spacing:-8.329860pt;}
.ls3_c01230{letter-spacing:1.722000pt;}
.ls6_c01230{letter-spacing:2.308107pt;}
.ls0_c01230{letter-spacing:3.078400pt;}
.ls1_c01230{letter-spacing:3.854933pt;}
.ls7_c01230{letter-spacing:3.892000pt;}
.ls4_c01230{letter-spacing:4.535600pt;}
.ls8_c01230{letter-spacing:5.394133pt;}
.ls2_c01230{letter-spacing:5.446000pt;}
.ws0_c01230{word-spacing:0.000000pt;}
._1_c01230{width:27.081538pt;}
._0_c01230{width:39.561847pt;}
.fs3_c01230{font-size:66.000000pt;}
.fs1_c01230{font-size:68.000000pt;}
.fs2_c01230{font-size:69.333333pt;}
.fs0_c01230{font-size:70.000000pt;}
.y0_c01230{bottom:0.000000pt;}
.y1_c01230{bottom:745.654133pt;}
.h2_c01230{height:66.738281pt;}
.h3_c01230{height:68.046875pt;}
.h1_c01230{height:68.701172pt;}
.h4_c01230{height:68.835938pt;}
.h0_c01230{height:793.333333pt;}
.w0_c01230{width:1122.666667pt;}
.x0_c01230{left:0.000000pt;}
.x1_c01230{left:79.359333pt;}
.x2_c01230{left:156.799867pt;}
.x3_c01230{left:192.959453pt;}
.x4_c01230{left:443.198693pt;}
.x5_c01230{left:476.799320pt;}
.x6_c01230{left:601.918907pt;}
.x7_c01230{left:721.918947pt;}
}





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

.ir_c01231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_fea3ce8e6c3df5f2b782ee63.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01231;src:url('chunks/assets/font_e5151269bf0f5563f697648c.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01231;src:url('chunks/assets/font_29e1360bd1603d4c4203c862.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01231;src:url('chunks/assets/font_8ada71cce6ec667037680c18.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.432129;font-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_c01231{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.md_c01231{transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);}
.m12_c01231{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);}
.m7_c01231{transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205189,0.000000,0.000000,0.250000,0,0);}
.m3_c01231{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.m2_c01231{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m5_c01231{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m4_c01231{transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223558,0.000000,0.000000,0.250000,0,0);}
.me_c01231{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.mb_c01231{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m8_c01231{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245238,0.000000,0.000000,0.250000,0,0);}
.mf_c01231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01231{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m10_c01231{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m9_c01231{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m11_c01231{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_c01231{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.mc_c01231{transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336207,0.000000,0.000000,0.250000,0,0);}
.v0_c01231{vertical-align:0.000000px;}
.ls5_c01231{letter-spacing:-3.354000px;}
.ls13_c01231{letter-spacing:-1.316250px;}
.lsc_c01231{letter-spacing:0.000000px;}
.ls14_c01231{letter-spacing:0.656250px;}
.ls12_c01231{letter-spacing:0.749835px;}
.ls11_c01231{letter-spacing:0.837900px;}
.ls0_c01231{letter-spacing:0.882750px;}
.ls15_c01231{letter-spacing:0.915000px;}
.lsb_c01231{letter-spacing:1.584525px;}
.lsd_c01231{letter-spacing:2.189475px;}
.lse_c01231{letter-spacing:2.377898px;}
.lsf_c01231{letter-spacing:2.506433px;}
.ls3_c01231{letter-spacing:2.648250px;}
.ls9_c01231{letter-spacing:2.742750px;}
.ls10_c01231{letter-spacing:3.344933px;}
.lsa_c01231{letter-spacing:3.661875px;}
.ls6_c01231{letter-spacing:4.405725px;}
.ls2_c01231{letter-spacing:4.591125px;}
.ls1_c01231{letter-spacing:5.495963px;}
.ls8_c01231{letter-spacing:5.548305px;}
.ls7_c01231{letter-spacing:6.145425px;}
.ls4_c01231{letter-spacing:7.214475px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01231{word-spacing:0.000000px;}
._1_c01231{width:7.184921px;}
._2_c01231{width:9.656553px;}
._0_c01231{width:49.233710px;}
.fc0_c01231{color:transparent;}
.fs9_c01231{font-size:21.750000px;}
.fs5_c01231{font-size:26.250000px;}
.fs7_c01231{font-size:27.000000px;}
.fs6_c01231{font-size:27.750000px;}
.fsb_c01231{font-size:28.500000px;}
.fs8_c01231{font-size:29.250000px;}
.fsa_c01231{font-size:32.250000px;}
.fse_c01231{font-size:36.750000px;}
.fsd_c01231{font-size:37.500000px;}
.fsc_c01231{font-size:39.000000px;}
.fs2_c01231{font-size:78.000000px;}
.fs0_c01231{font-size:78.750000px;}
.fs4_c01231{font-size:79.500000px;}
.fs1_c01231{font-size:80.250000px;}
.fs3_c01231{font-size:82.500000px;}
.y0_c01231{bottom:0.000000px;}
.yc_c01231{bottom:23.460600px;}
.yb_c01231{bottom:114.180150px;}
.ya_c01231{bottom:191.940285px;}
.y9_c01231{bottom:269.700435px;}
.y8_c01231{bottom:346.740435px;}
.y7_c01231{bottom:424.139700px;}
.y6_c01231{bottom:501.899820px;}
.y5_c01231{bottom:579.659820px;}
.y4_c01231{bottom:657.060750px;}
.y3_c01231{bottom:734.100720px;}
.y2_c01231{bottom:811.140750px;}
.y1_c01231{bottom:843.900240px;}
.hb_c01231{height:22.684570px;}
.h7_c01231{height:27.377930px;}
.h9_c01231{height:28.160156px;}
.h8_c01231{height:28.942383px;}
.hd_c01231{height:29.724609px;}
.ha_c01231{height:30.506836px;}
.hc_c01231{height:33.635742px;}
.h10_c01231{height:37.037109px;}
.hf_c01231{height:37.792969px;}
.he_c01231{height:39.304688px;}
.h4_c01231{height:76.552734px;}
.h1_c01231{height:77.288818px;}
.h6_c01231{height:78.024902px;}
.h3_c01231{height:78.760986px;}
.h2_c01231{height:79.365234px;}
.h5_c01231{height:80.969238px;}
.h0_c01231{height:892.500000px;}
.w0_c01231{width:1263.000000px;}
.x0_c01231{left:0.000000px;}
.xa_c01231{left:69.838515px;}
.xb_c01231{left:73.439250px;}
.x1_c01231{left:85.319250px;}
.x2_c01231{left:176.399850px;}
.x3_c01231{left:218.519685px;}
.xc_c01231{left:342.359850px;}
.xd_c01231{left:370.439235px;}
.xe_c01231{left:502.558635px;}
.x4_c01231{left:505.798515px;}
.x5_c01231{left:543.599070px;}
.xf_c01231{left:555.838530px;}
.x6_c01231{left:591.478635px;}
.x7_c01231{left:689.399820px;}
.x8_c01231{left:739.439670px;}
.x9_c01231{left:825.838530px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls5_c01231{letter-spacing:-2.981333pt;}
.ls13_c01231{letter-spacing:-1.170000pt;}
.lsc_c01231{letter-spacing:0.000000pt;}
.ls14_c01231{letter-spacing:0.583333pt;}
.ls12_c01231{letter-spacing:0.666520pt;}
.ls11_c01231{letter-spacing:0.744800pt;}
.ls0_c01231{letter-spacing:0.784667pt;}
.ls15_c01231{letter-spacing:0.813333pt;}
.lsb_c01231{letter-spacing:1.408467pt;}
.lsd_c01231{letter-spacing:1.946200pt;}
.lse_c01231{letter-spacing:2.113687pt;}
.lsf_c01231{letter-spacing:2.227940pt;}
.ls3_c01231{letter-spacing:2.354000pt;}
.ls9_c01231{letter-spacing:2.438000pt;}
.ls10_c01231{letter-spacing:2.973273pt;}
.lsa_c01231{letter-spacing:3.255000pt;}
.ls6_c01231{letter-spacing:3.916200pt;}
.ls2_c01231{letter-spacing:4.081000pt;}
.ls1_c01231{letter-spacing:4.885300pt;}
.ls8_c01231{letter-spacing:4.931827pt;}
.ls7_c01231{letter-spacing:5.462600pt;}
.ls4_c01231{letter-spacing:6.412867pt;}
.ws0_c01231{word-spacing:0.000000pt;}
._1_c01231{width:6.386596pt;}
._2_c01231{width:8.583602pt;}
._0_c01231{width:43.763298pt;}
.fs9_c01231{font-size:19.333333pt;}
.fs5_c01231{font-size:23.333333pt;}
.fs7_c01231{font-size:24.000000pt;}
.fs6_c01231{font-size:24.666667pt;}
.fsb_c01231{font-size:25.333333pt;}
.fs8_c01231{font-size:26.000000pt;}
.fsa_c01231{font-size:28.666667pt;}
.fse_c01231{font-size:32.666667pt;}
.fsd_c01231{font-size:33.333333pt;}
.fsc_c01231{font-size:34.666667pt;}
.fs2_c01231{font-size:69.333333pt;}
.fs0_c01231{font-size:70.000000pt;}
.fs4_c01231{font-size:70.666667pt;}
.fs1_c01231{font-size:71.333333pt;}
.fs3_c01231{font-size:73.333333pt;}
.y0_c01231{bottom:0.000000pt;}
.yc_c01231{bottom:20.853867pt;}
.yb_c01231{bottom:101.493467pt;}
.ya_c01231{bottom:170.613587pt;}
.y9_c01231{bottom:239.733720pt;}
.y8_c01231{bottom:308.213720pt;}
.y7_c01231{bottom:377.013067pt;}
.y6_c01231{bottom:446.133173pt;}
.y5_c01231{bottom:515.253173pt;}
.y4_c01231{bottom:584.054000pt;}
.y3_c01231{bottom:652.533973pt;}
.y2_c01231{bottom:721.014000pt;}
.y1_c01231{bottom:750.133547pt;}
.hb_c01231{height:20.164062pt;}
.h7_c01231{height:24.335938pt;}
.h9_c01231{height:25.031250pt;}
.h8_c01231{height:25.726562pt;}
.hd_c01231{height:26.421875pt;}
.ha_c01231{height:27.117188pt;}
.hc_c01231{height:29.898438pt;}
.h10_c01231{height:32.921875pt;}
.hf_c01231{height:33.593750pt;}
.he_c01231{height:34.937500pt;}
.h4_c01231{height:68.046875pt;}
.h1_c01231{height:68.701172pt;}
.h6_c01231{height:69.355469pt;}
.h3_c01231{height:70.009766pt;}
.h2_c01231{height:70.546875pt;}
.h5_c01231{height:71.972656pt;}
.h0_c01231{height:793.333333pt;}
.w0_c01231{width:1122.666667pt;}
.x0_c01231{left:0.000000pt;}
.xa_c01231{left:62.078680pt;}
.xb_c01231{left:65.279333pt;}
.x1_c01231{left:75.839333pt;}
.x2_c01231{left:156.799867pt;}
.x3_c01231{left:194.239720pt;}
.xc_c01231{left:304.319867pt;}
.xd_c01231{left:329.279320pt;}
.xe_c01231{left:446.718787pt;}
.x4_c01231{left:449.598680pt;}
.x5_c01231{left:483.199173pt;}
.xf_c01231{left:494.078693pt;}
.x6_c01231{left:525.758787pt;}
.x7_c01231{left:612.799840pt;}
.x8_c01231{left:657.279707pt;}
.x9_c01231{left:734.078693pt;}
}





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

.ir_c01232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_de8fb9f16003ca30572721e7.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01232;src:url('chunks/assets/font_f0d2c63221d4b4049faa4d9e.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:1.284180;font-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_c01232{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m3_c01232{transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213303,0.000000,0.000000,0.250000,0,0);}
.m2_c01232{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m4_c01232{transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238318,0.000000,0.000000,0.250000,0,0);}
.m1_c01232{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m0_c01232{transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298611,0.000000,0.000000,0.250000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.ls6_c01232{letter-spacing:-3.932250px;}
.ls3_c01232{letter-spacing:0.000000px;}
.ls1_c01232{letter-spacing:1.255500px;}
.ls0_c01232{letter-spacing:1.653150px;}
.ls7_c01232{letter-spacing:1.764900px;}
.ls4_c01232{letter-spacing:2.479725px;}
.ls5_c01232{letter-spacing:2.640525px;}
.ls2_c01232{letter-spacing:14.118000px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:0.000000px;}
._0_c01232{margin-left:-6.412124px;}
._2_c01232{width:35.045092px;}
._1_c01232{width:38.704360px;}
.fc0_c01232{color:transparent;}
.fs1_c01232{font-size:78.000000px;}
.fs4_c01232{font-size:79.500000px;}
.fs2_c01232{font-size:80.250000px;}
.fs0_c01232{font-size:81.000000px;}
.fs3_c01232{font-size:81.750000px;}
.y0_c01232{bottom:0.000000px;}
.y1_c01232{bottom:850.381620px;}
.h2_c01232{height:76.514648px;}
.h5_c01232{height:78.024902px;}
.h3_c01232{height:78.760986px;}
.h1_c01232{height:79.497070px;}
.h4_c01232{height:80.233154px;}
.h0_c01232{height:892.500000px;}
.w0_c01232{width:1263.000000px;}
.x0_c01232{left:0.000000px;}
.x1_c01232{left:91.078815px;}
.x2_c01232{left:180.359850px;}
.x3_c01232{left:222.838950px;}
.x4_c01232{left:512.639100px;}
.x5_c01232{left:550.798920px;}
.x6_c01232{left:597.239820px;}
.x7_c01232{left:697.319820px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls6_c01232{letter-spacing:-3.495333pt;}
.ls3_c01232{letter-spacing:0.000000pt;}
.ls1_c01232{letter-spacing:1.116000pt;}
.ls0_c01232{letter-spacing:1.469467pt;}
.ls7_c01232{letter-spacing:1.568800pt;}
.ls4_c01232{letter-spacing:2.204200pt;}
.ls5_c01232{letter-spacing:2.347133pt;}
.ls2_c01232{letter-spacing:12.549333pt;}
.ws0_c01232{word-spacing:0.000000pt;}
._0_c01232{margin-left:-5.699666pt;}
._2_c01232{width:31.151193pt;}
._1_c01232{width:34.403875pt;}
.fs1_c01232{font-size:69.333333pt;}
.fs4_c01232{font-size:70.666667pt;}
.fs2_c01232{font-size:71.333333pt;}
.fs0_c01232{font-size:72.000000pt;}
.fs3_c01232{font-size:72.666667pt;}
.y0_c01232{bottom:0.000000pt;}
.y1_c01232{bottom:755.894773pt;}
.h2_c01232{height:68.013021pt;}
.h5_c01232{height:69.355469pt;}
.h3_c01232{height:70.009766pt;}
.h1_c01232{height:70.664062pt;}
.h4_c01232{height:71.318359pt;}
.h0_c01232{height:793.333333pt;}
.w0_c01232{width:1122.666667pt;}
.x0_c01232{left:0.000000pt;}
.x1_c01232{left:80.958947pt;}
.x2_c01232{left:160.319867pt;}
.x3_c01232{left:198.079067pt;}
.x4_c01232{left:455.679200pt;}
.x5_c01232{left:489.599040pt;}
.x6_c01232{left:530.879840pt;}
.x7_c01232{left:619.839840pt;}
}





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

.ir_c01233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_93a28008ae433b5f0418efa3.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01233;src:url('chunks/assets/font_cd55e3bcf82ce2da448853cf.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01233;src:url('chunks/assets/font_b291f690868761e4b823c0cd.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:1.364746;font-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_c01233{transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207547,0.000000,0.000000,0.250000,0,0);}
.m5_c01233{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m6_c01233{transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209906,0.000000,0.000000,0.250000,0,0);}
.m2_c01233{transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212617,0.000000,0.000000,0.250000,0,0);}
.m3_c01233{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.ma_c01233{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_c01233{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m7_c01233{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m1_c01233{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m9_c01233{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_c01233{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.m0_c01233{transform:matrix(0.302752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302752,0.000000,0.000000,0.250000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.ls9_c01233{letter-spacing:-0.902722px;}
.lsa_c01233{letter-spacing:0.000000px;}
.lsb_c01233{letter-spacing:0.682500px;}
.ls3_c01233{letter-spacing:0.858825px;}
.lsd_c01233{letter-spacing:1.359750px;}
.lsc_c01233{letter-spacing:1.665000px;}
.ls4_c01233{letter-spacing:4.102800px;}
.ls5_c01233{letter-spacing:4.405725px;}
.ls8_c01233{letter-spacing:4.921050px;}
.ls7_c01233{letter-spacing:5.358300px;}
.ls6_c01233{letter-spacing:5.379000px;}
.ls0_c01233{letter-spacing:6.171225px;}
.ls2_c01233{letter-spacing:9.307463px;}
.ls1_c01233{letter-spacing:13.627725px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01233{word-spacing:0.000000px;}
._0_c01233{margin-left:-11.667786px;}
.fc0_c01233{color:transparent;}
.fs8_c01233{font-size:36.750000px;}
.fs7_c01233{font-size:37.500000px;}
.fs6_c01233{font-size:39.750000px;}
.fs4_c01233{font-size:78.000000px;}
.fs1_c01233{font-size:78.750000px;}
.fs5_c01233{font-size:79.500000px;}
.fs2_c01233{font-size:80.250000px;}
.fs0_c01233{font-size:81.750000px;}
.fs3_c01233{font-size:82.500000px;}
.y0_c01233{bottom:0.000000px;}
.y2_c01233{bottom:21.300135px;}
.y1_c01233{bottom:842.820825px;}
.h9_c01233{height:37.037109px;}
.h8_c01233{height:37.792969px;}
.h7_c01233{height:39.284180px;}
.h5_c01233{height:76.552734px;}
.h6_c01233{height:78.024902px;}
.h3_c01233{height:78.760986px;}
.h2_c01233{height:79.365234px;}
.h1_c01233{height:80.233154px;}
.h4_c01233{height:80.969238px;}
.h0_c01233{height:892.500000px;}
.w0_c01233{width:1263.000000px;}
.x0_c01233{left:0.000000px;}
.x1_c01233{left:100.439250px;}
.x2_c01233{left:191.878950px;}
.x3_c01233{left:235.439250px;}
.xa_c01233{left:352.079385px;}
.xb_c01233{left:380.519685px;}
.xc_c01233{left:513.718500px;}
.x4_c01233{left:521.999400px;}
.x5_c01233{left:560.159415px;}
.xd_c01233{left:565.918950px;}
.x6_c01233{left:608.759085px;}
.x7_c01233{left:705.958335px;}
.x8_c01233{left:743.759085px;}
.x9_c01233{left:791.638545px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls9_c01233{letter-spacing:-0.802420pt;}
.lsa_c01233{letter-spacing:0.000000pt;}
.lsb_c01233{letter-spacing:0.606667pt;}
.ls3_c01233{letter-spacing:0.763400pt;}
.lsd_c01233{letter-spacing:1.208667pt;}
.lsc_c01233{letter-spacing:1.480000pt;}
.ls4_c01233{letter-spacing:3.646933pt;}
.ls5_c01233{letter-spacing:3.916200pt;}
.ls8_c01233{letter-spacing:4.374267pt;}
.ls7_c01233{letter-spacing:4.762933pt;}
.ls6_c01233{letter-spacing:4.781333pt;}
.ls0_c01233{letter-spacing:5.485533pt;}
.ls2_c01233{letter-spacing:8.273300pt;}
.ls1_c01233{letter-spacing:12.113533pt;}
.ws0_c01233{word-spacing:0.000000pt;}
._0_c01233{margin-left:-10.371365pt;}
.fs8_c01233{font-size:32.666667pt;}
.fs7_c01233{font-size:33.333333pt;}
.fs6_c01233{font-size:35.333333pt;}
.fs4_c01233{font-size:69.333333pt;}
.fs1_c01233{font-size:70.000000pt;}
.fs5_c01233{font-size:70.666667pt;}
.fs2_c01233{font-size:71.333333pt;}
.fs0_c01233{font-size:72.666667pt;}
.fs3_c01233{font-size:73.333333pt;}
.y0_c01233{bottom:0.000000pt;}
.y2_c01233{bottom:18.933453pt;}
.y1_c01233{bottom:749.174067pt;}
.h9_c01233{height:32.921875pt;}
.h8_c01233{height:33.593750pt;}
.h7_c01233{height:34.919271pt;}
.h5_c01233{height:68.046875pt;}
.h6_c01233{height:69.355469pt;}
.h3_c01233{height:70.009766pt;}
.h2_c01233{height:70.546875pt;}
.h1_c01233{height:71.318359pt;}
.h4_c01233{height:71.972656pt;}
.h0_c01233{height:793.333333pt;}
.w0_c01233{width:1122.666667pt;}
.x0_c01233{left:0.000000pt;}
.x1_c01233{left:89.279333pt;}
.x2_c01233{left:170.559067pt;}
.x3_c01233{left:209.279333pt;}
.xa_c01233{left:312.959453pt;}
.xb_c01233{left:338.239720pt;}
.xc_c01233{left:456.638667pt;}
.x4_c01233{left:463.999467pt;}
.x5_c01233{left:497.919480pt;}
.xd_c01233{left:503.039067pt;}
.x6_c01233{left:541.119187pt;}
.x7_c01233{left:627.518520pt;}
.x8_c01233{left:661.119187pt;}
.x9_c01233{left:703.678707pt;}
}





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

.ir_c01234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_55e11db495650a5deec868e0.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01234;src:url('chunks/assets/font_e165d01366cfa06b1de160be.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:1.432129;font-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_c01234{transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206311,0.000000,0.000000,0.250000,0,0);}
.m7_c01234{transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210280,0.000000,0.000000,0.250000,0,0);}
.m4_c01234{transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211165,0.000000,0.000000,0.250000,0,0);}
.m5_c01234{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m3_c01234{transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224299,0.000000,0.000000,0.250000,0,0);}
.m1_c01234{transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255263,0.000000,0.000000,0.250000,0,0);}
.m6_c01234{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.m0_c01234{transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297619,0.000000,0.000000,0.250000,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.ls2_c01234{letter-spacing:-2.935500px;}
.ls3_c01234{letter-spacing:-0.911550px;}
.ls5_c01234{letter-spacing:-0.889148px;}
.ls4_c01234{letter-spacing:-0.835403px;}
.ls7_c01234{letter-spacing:2.567850px;}
.ls8_c01234{letter-spacing:2.711475px;}
.ls6_c01234{letter-spacing:2.726153px;}
.ls9_c01234{letter-spacing:4.543073px;}
.lsa_c01234{letter-spacing:8.915775px;}
.lsb_c01234{letter-spacing:9.084600px;}
.ls0_c01234{letter-spacing:9.995378px;}
.ls1_c01234{letter-spacing:14.490788px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01234{word-spacing:0.000000px;}
._0_c01234{width:24.667952px;}
.fc0_c01234{color:transparent;}
.fs1_c01234{font-size:71.250000px;}
.fs2_c01234{font-size:77.250000px;}
.fs0_c01234{font-size:78.750000px;}
.fs4_c01234{font-size:79.500000px;}
.fs3_c01234{font-size:80.250000px;}
.y0_c01234{bottom:0.000000px;}
.y1_c01234{bottom:829.859805px;}
.h2_c01234{height:74.311523px;}
.h3_c01234{height:75.816650px;}
.h1_c01234{height:77.288818px;}
.h5_c01234{height:78.024902px;}
.h4_c01234{height:78.760986px;}
.h0_c01234{height:892.500000px;}
.w0_c01234{width:1263.000000px;}
.x0_c01234{left:0.000000px;}
.x1_c01234{left:83.158785px;}
.x2_c01234{left:170.999400px;}
.x3_c01234{left:211.679100px;}
.x4_c01234{left:418.679670px;}
.x5_c01234{left:456.478635px;}
.x6_c01234{left:491.398635px;}
.x7_c01234{left:609.479235px;}
.x8_c01234{left:657.358605px;}
.x9_c01234{left:687.598530px;}
.xa_c01234{left:731.878920px;}
.xb_c01234{left:768.959385px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls2_c01234{letter-spacing:-2.609333pt;}
.ls3_c01234{letter-spacing:-0.810267pt;}
.ls5_c01234{letter-spacing:-0.790353pt;}
.ls4_c01234{letter-spacing:-0.742580pt;}
.ls7_c01234{letter-spacing:2.282533pt;}
.ls8_c01234{letter-spacing:2.410200pt;}
.ls6_c01234{letter-spacing:2.423247pt;}
.ls9_c01234{letter-spacing:4.038287pt;}
.lsa_c01234{letter-spacing:7.925133pt;}
.lsb_c01234{letter-spacing:8.075200pt;}
.ls0_c01234{letter-spacing:8.884780pt;}
.ls1_c01234{letter-spacing:12.880700pt;}
.ws0_c01234{word-spacing:0.000000pt;}
._0_c01234{width:21.927068pt;}
.fs1_c01234{font-size:63.333333pt;}
.fs2_c01234{font-size:68.666667pt;}
.fs0_c01234{font-size:70.000000pt;}
.fs4_c01234{font-size:70.666667pt;}
.fs3_c01234{font-size:71.333333pt;}
.y0_c01234{bottom:0.000000pt;}
.y1_c01234{bottom:737.653160pt;}
.h2_c01234{height:66.054688pt;}
.h3_c01234{height:67.392578pt;}
.h1_c01234{height:68.701172pt;}
.h5_c01234{height:69.355469pt;}
.h4_c01234{height:70.009766pt;}
.h0_c01234{height:793.333333pt;}
.w0_c01234{width:1122.666667pt;}
.x0_c01234{left:0.000000pt;}
.x1_c01234{left:73.918920pt;}
.x2_c01234{left:151.999467pt;}
.x3_c01234{left:188.159200pt;}
.x4_c01234{left:372.159707pt;}
.x5_c01234{left:405.758787pt;}
.x6_c01234{left:436.798787pt;}
.x7_c01234{left:541.759320pt;}
.x8_c01234{left:584.318760pt;}
.x9_c01234{left:611.198693pt;}
.xa_c01234{left:650.559040pt;}
.xb_c01234{left:683.519453pt;}
}





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

.ir_c01235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_1c638a9bd0bd93d2d2b6ebdb.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01235;src:url('chunks/assets/font_465ea57c1a851f530e90a13b.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:1.432129;font-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_c01235{transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202381,0.000000,0.000000,0.250000,0,0);}
.m8_c01235{transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212871,0.000000,0.000000,0.250000,0,0);}
.m5_c01235{transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215686,0.000000,0.000000,0.250000,0,0);}
.m2_c01235{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m4_c01235{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m7_c01235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01235{transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255051,0.000000,0.000000,0.250000,0,0);}
.m6_c01235{transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276699,0.000000,0.000000,0.250000,0,0);}
.m0_c01235{transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290094,0.000000,0.000000,0.250000,0,0);}
.v0_c01235{vertical-align:0.000000px;}
.ls1_c01235{letter-spacing:-8.085825px;}
.ls9_c01235{letter-spacing:-5.252625px;}
.ls5_c01235{letter-spacing:-1.737315px;}
.ls4_c01235{letter-spacing:0.834300px;}
.ls7_c01235{letter-spacing:2.495175px;}
.ls8_c01235{letter-spacing:2.711475px;}
.ls2_c01235{letter-spacing:5.090775px;}
.ls6_c01235{letter-spacing:5.218065px;}
.lsa_c01235{letter-spacing:6.643500px;}
.lsb_c01235{letter-spacing:7.044750px;}
.ls3_c01235{letter-spacing:7.410375px;}
.ls0_c01235{letter-spacing:14.221755px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01235{word-spacing:0.000000px;}
._0_c01235{width:44.349693px;}
.fc0_c01235{color:transparent;}
.fs1_c01235{font-size:74.250000px;}
.fs5_c01235{font-size:75.750000px;}
.fs4_c01235{font-size:76.500000px;}
.fs2_c01235{font-size:77.250000px;}
.fs3_c01235{font-size:78.750000px;}
.fs0_c01235{font-size:79.500000px;}
.y0_c01235{bottom:0.000000px;}
.y1_c01235{bottom:820.140105px;}
.h6_c01235{height:74.344482px;}
.h5_c01235{height:75.080566px;}
.h3_c01235{height:75.816650px;}
.h4_c01235{height:77.288818px;}
.h2_c01235{height:77.440430px;}
.h1_c01235{height:78.024902px;}
.h0_c01235{height:892.500000px;}
.w0_c01235{width:1263.000000px;}
.x0_c01235{left:0.000000px;}
.x1_c01235{left:88.918350px;}
.x2_c01235{left:175.679700px;}
.x3_c01235{left:217.079385px;}
.x4_c01235{left:365.399850px;}
.x5_c01235{left:424.080000px;}
.x6_c01235{left:461.158770px;}
.x7_c01235{left:614.159370px;}
.x8_c01235{left:662.038920px;}
.x9_c01235{left:691.919535px;}
.xa_c01235{left:743.038920px;}
.xb_c01235{left:781.198785px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls1_c01235{letter-spacing:-7.187400pt;}
.ls9_c01235{letter-spacing:-4.669000pt;}
.ls5_c01235{letter-spacing:-1.544280pt;}
.ls4_c01235{letter-spacing:0.741600pt;}
.ls7_c01235{letter-spacing:2.217933pt;}
.ls8_c01235{letter-spacing:2.410200pt;}
.ls2_c01235{letter-spacing:4.525133pt;}
.ls6_c01235{letter-spacing:4.638280pt;}
.lsa_c01235{letter-spacing:5.905333pt;}
.lsb_c01235{letter-spacing:6.262000pt;}
.ls3_c01235{letter-spacing:6.587000pt;}
.ls0_c01235{letter-spacing:12.641560pt;}
.ws0_c01235{word-spacing:0.000000pt;}
._0_c01235{width:39.421949pt;}
.fs1_c01235{font-size:66.000000pt;}
.fs5_c01235{font-size:67.333333pt;}
.fs4_c01235{font-size:68.000000pt;}
.fs2_c01235{font-size:68.666667pt;}
.fs3_c01235{font-size:70.000000pt;}
.fs0_c01235{font-size:70.666667pt;}
.y0_c01235{bottom:0.000000pt;}
.y1_c01235{bottom:729.013427pt;}
.h6_c01235{height:66.083984pt;}
.h5_c01235{height:66.738281pt;}
.h3_c01235{height:67.392578pt;}
.h4_c01235{height:68.701172pt;}
.h2_c01235{height:68.835938pt;}
.h1_c01235{height:69.355469pt;}
.h0_c01235{height:793.333333pt;}
.w0_c01235{width:1122.666667pt;}
.x0_c01235{left:0.000000pt;}
.x1_c01235{left:79.038533pt;}
.x2_c01235{left:156.159733pt;}
.x3_c01235{left:192.959453pt;}
.x4_c01235{left:324.799867pt;}
.x5_c01235{left:376.960000pt;}
.x6_c01235{left:409.918907pt;}
.x7_c01235{left:545.919440pt;}
.x8_c01235{left:588.479040pt;}
.x9_c01235{left:615.039587pt;}
.xa_c01235{left:660.479040pt;}
.xb_c01235{left:694.398920pt;}
}





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

.ir_c01236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_327c2ebb5427c4dfdfb78195.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01236;src:url('chunks/assets/font_4d3db29d45b34ac4dd6908c5.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01236;src:url('chunks/assets/font_8882cbd302c537edfb666f11.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01236;src:url('chunks/assets/font_b11be50a0369bb7d3730e82f.woff2')format("woff");}.ff4_c01236{font-family:ff4_c01236;line-height:1.432129;font-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_c01236{transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198113,0.000000,0.000000,0.250000,0,0);}
.m7_c01236{transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204128,0.000000,0.000000,0.250000,0,0);}
.ma_c01236{transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206818,0.000000,0.000000,0.250000,0,0);}
.m6_c01236{transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213592,0.000000,0.000000,0.250000,0,0);}
.mb_c01236{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m4_c01236{transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219340,0.000000,0.000000,0.250000,0,0);}
.m5_c01236{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m2_c01236{transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225728,0.000000,0.000000,0.250000,0,0);}
.m8_c01236{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m1_c01236{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m9_c01236{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m0_c01236{transform:matrix(0.299065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299065,0.000000,0.000000,0.250000,0,0);}
.v0_c01236{vertical-align:0.000000px;}
.ls5_c01236{letter-spacing:-11.021400px;}
.ls9_c01236{letter-spacing:-3.089625px;}
.ls4_c01236{letter-spacing:-0.858600px;}
.ls8_c01236{letter-spacing:-0.820800px;}
.ls1_c01236{letter-spacing:2.345385px;}
.ls7_c01236{letter-spacing:2.755793px;}
.ls6_c01236{letter-spacing:3.514875px;}
.ls2_c01236{letter-spacing:4.982625px;}
.lsb_c01236{letter-spacing:5.202600px;}
.ls3_c01236{letter-spacing:7.568400px;}
.lsa_c01236{letter-spacing:9.065925px;}
.ls0_c01236{letter-spacing:13.795778px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01236{word-spacing:0.000000px;}
.fc0_c01236{color:transparent;}
.fs6_c01236{font-size:72.000000px;}
.fs1_c01236{font-size:73.500000px;}
.fs2_c01236{font-size:77.250000px;}
.fs4_c01236{font-size:78.000000px;}
.fs3_c01236{font-size:79.500000px;}
.fs0_c01236{font-size:80.250000px;}
.fs5_c01236{font-size:81.750000px;}
.fs7_c01236{font-size:82.500000px;}
.y0_c01236{bottom:0.000000px;}
.y1_c01236{bottom:847.140105px;}
.h7_c01236{height:75.093750px;}
.h3_c01236{height:75.816650px;}
.h9_c01236{height:76.552734px;}
.h2_c01236{height:76.658203px;}
.h4_c01236{height:78.024902px;}
.h5_c01236{height:78.609375px;}
.h1_c01236{height:78.760986px;}
.h6_c01236{height:80.233154px;}
.h8_c01236{height:80.969238px;}
.h0_c01236{height:892.500000px;}
.w0_c01236{width:1263.000000px;}
.x0_c01236{left:0.000000px;}
.x1_c01236{left:87.479685px;}
.x2_c01236{left:176.399850px;}
.x3_c01236{left:217.438635px;}
.x4_c01236{left:366.479235px;}
.x5_c01236{left:424.798515px;}
.x6_c01236{left:461.519670px;}
.x7_c01236{left:496.798920px;}
.x8_c01236{left:616.319820px;}
.x9_c01236{left:662.399820px;}
.xa_c01236{left:691.919535px;}
.xb_c01236{left:750.238770px;}
.xc_c01236{left:788.039340px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls5_c01236{letter-spacing:-9.796800pt;}
.ls9_c01236{letter-spacing:-2.746333pt;}
.ls4_c01236{letter-spacing:-0.763200pt;}
.ls8_c01236{letter-spacing:-0.729600pt;}
.ls1_c01236{letter-spacing:2.084787pt;}
.ls7_c01236{letter-spacing:2.449593pt;}
.ls6_c01236{letter-spacing:3.124333pt;}
.ls2_c01236{letter-spacing:4.429000pt;}
.lsb_c01236{letter-spacing:4.624533pt;}
.ls3_c01236{letter-spacing:6.727467pt;}
.lsa_c01236{letter-spacing:8.058600pt;}
.ls0_c01236{letter-spacing:12.262913pt;}
.ws0_c01236{word-spacing:0.000000pt;}
.fs6_c01236{font-size:64.000000pt;}
.fs1_c01236{font-size:65.333333pt;}
.fs2_c01236{font-size:68.666667pt;}
.fs4_c01236{font-size:69.333333pt;}
.fs3_c01236{font-size:70.666667pt;}
.fs0_c01236{font-size:71.333333pt;}
.fs5_c01236{font-size:72.666667pt;}
.fs7_c01236{font-size:73.333333pt;}
.y0_c01236{bottom:0.000000pt;}
.y1_c01236{bottom:753.013427pt;}
.h7_c01236{height:66.750000pt;}
.h3_c01236{height:67.392578pt;}
.h9_c01236{height:68.046875pt;}
.h2_c01236{height:68.140625pt;}
.h4_c01236{height:69.355469pt;}
.h5_c01236{height:69.875000pt;}
.h1_c01236{height:70.009766pt;}
.h6_c01236{height:71.318359pt;}
.h8_c01236{height:71.972656pt;}
.h0_c01236{height:793.333333pt;}
.w0_c01236{width:1122.666667pt;}
.x0_c01236{left:0.000000pt;}
.x1_c01236{left:77.759720pt;}
.x2_c01236{left:156.799867pt;}
.x3_c01236{left:193.278787pt;}
.x4_c01236{left:325.759320pt;}
.x5_c01236{left:377.598680pt;}
.x6_c01236{left:410.239707pt;}
.x7_c01236{left:441.599040pt;}
.x8_c01236{left:547.839840pt;}
.x9_c01236{left:588.799840pt;}
.xa_c01236{left:615.039587pt;}
.xb_c01236{left:666.878907pt;}
.xc_c01236{left:700.479413pt;}
}





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

.ir_c01237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_64e5709fc93dd2250b46c63c.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01237;src:url('chunks/assets/font_a9b34c63f57f3f82b308ec94.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:1.311035;font-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_c01237{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m8_c01237{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m6_c01237{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m3_c01237{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c01237{transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220874,0.000000,0.000000,0.250000,0,0);}
.m4_c01237{transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228774,0.000000,0.000000,0.250000,0,0);}
.m2_c01237{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m1_c01237{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m0_c01237{transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293269,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls6_c01237{letter-spacing:-1.699500px;}
.lsa_c01237{letter-spacing:-0.928200px;}
.ls5_c01237{letter-spacing:0.000000px;}
.ls1_c01237{letter-spacing:1.918800px;}
.ls4_c01237{letter-spacing:2.574000px;}
.ls3_c01237{letter-spacing:3.190050px;}
.ls0_c01237{letter-spacing:3.469298px;}
.ls7_c01237{letter-spacing:4.341450px;}
.ls9_c01237{letter-spacing:5.850000px;}
.lsb_c01237{letter-spacing:6.079575px;}
.ls2_c01237{letter-spacing:8.090100px;}
.ls8_c01237{letter-spacing:9.562500px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01237{word-spacing:0.000000px;}
._0_c01237{width:31.633467px;}
.fc0_c01237{color:transparent;}
.fs1_c01237{font-size:75.750000px;}
.fs2_c01237{font-size:76.500000px;}
.fs4_c01237{font-size:77.250000px;}
.fs0_c01237{font-size:78.000000px;}
.fs3_c01237{font-size:79.500000px;}
.y0_c01237{bottom:0.000000px;}
.y1_c01237{bottom:833.821470px;}
.h3_c01237{height:75.080566px;}
.h5_c01237{height:75.816650px;}
.h2_c01237{height:76.341797px;}
.h1_c01237{height:76.552734px;}
.h4_c01237{height:78.024902px;}
.h0_c01237{height:892.500000px;}
.w0_c01237{width:1263.000000px;}
.x0_c01237{left:0.000000px;}
.x1_c01237{left:84.599100px;}
.x2_c01237{left:170.999400px;}
.x3_c01237{left:213.119385px;}
.x4_c01237{left:362.519100px;}
.x5_c01237{left:421.199385px;}
.x6_c01237{left:459.000000px;}
.x7_c01237{left:494.999400px;}
.x8_c01237{left:660.959385px;}
.x9_c01237{left:689.759085px;}
.xa_c01237{left:731.878920px;}
.xb_c01237{left:768.959385px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls6_c01237{letter-spacing:-1.510667pt;}
.lsa_c01237{letter-spacing:-0.825067pt;}
.ls5_c01237{letter-spacing:0.000000pt;}
.ls1_c01237{letter-spacing:1.705600pt;}
.ls4_c01237{letter-spacing:2.288000pt;}
.ls3_c01237{letter-spacing:2.835600pt;}
.ls0_c01237{letter-spacing:3.083820pt;}
.ls7_c01237{letter-spacing:3.859067pt;}
.ls9_c01237{letter-spacing:5.200000pt;}
.lsb_c01237{letter-spacing:5.404067pt;}
.ls2_c01237{letter-spacing:7.191200pt;}
.ls8_c01237{letter-spacing:8.500000pt;}
.ws0_c01237{word-spacing:0.000000pt;}
._0_c01237{width:28.118637pt;}
.fs1_c01237{font-size:67.333333pt;}
.fs2_c01237{font-size:68.000000pt;}
.fs4_c01237{font-size:68.666667pt;}
.fs0_c01237{font-size:69.333333pt;}
.fs3_c01237{font-size:70.666667pt;}
.y0_c01237{bottom:0.000000pt;}
.y1_c01237{bottom:741.174640pt;}
.h3_c01237{height:66.738281pt;}
.h5_c01237{height:67.392578pt;}
.h2_c01237{height:67.859375pt;}
.h1_c01237{height:68.046875pt;}
.h4_c01237{height:69.355469pt;}
.h0_c01237{height:793.333333pt;}
.w0_c01237{width:1122.666667pt;}
.x0_c01237{left:0.000000pt;}
.x1_c01237{left:75.199200pt;}
.x2_c01237{left:151.999467pt;}
.x3_c01237{left:189.439453pt;}
.x4_c01237{left:322.239200pt;}
.x5_c01237{left:374.399453pt;}
.x6_c01237{left:408.000000pt;}
.x7_c01237{left:439.999467pt;}
.x8_c01237{left:587.519453pt;}
.x9_c01237{left:613.119187pt;}
.xa_c01237{left:650.559040pt;}
.xb_c01237{left:683.519453pt;}
}





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

.ir_c01238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
.sc__c01238{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01238{-webkit-text-stroke:0px transparent;}
}
.y0_c01238{bottom:0.000000px;}
.h0_c01238{height:892.500000px;}
.w0_c01238{width:1263.000000px;}
.x0_c01238{left:0.000000px;}
@media print{
.y0_c01238{bottom:0.000000pt;}
.h0_c01238{height:793.333333pt;}
.w0_c01238{width:1122.666667pt;}
.x0_c01238{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_c01239 {
    display:none;
  }
  .loading-indicator_c01239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01239 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01239 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01239" -> "#page-container .classname_c01239")
 */
.pf_c01239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01239 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01239 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01239 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01239 {overflow:visible;}
  }
}
.c_c01239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01239 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01239:after { /* webkit #35443 */
  content: '';
}
.t_c01239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01239 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01239 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01239 { /* info for Javascript */
  display:none;
}
.l_c01239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_116f285f459868a2b05eaf73.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.284668;font-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_c01239{transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207944,0.000000,0.000000,0.250000,0,0);}
.m4_c01239{transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216019,0.000000,0.000000,0.250000,0,0);}
.m2_c01239{transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222772,0.000000,0.000000,0.250000,0,0);}
.m5_c01239{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m1_c01239{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.m0_c01239{transform:matrix(0.295673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295673,0.000000,0.000000,0.250000,0,0);}
.v0_c01239{vertical-align:0.000000px;}
.ls6_c01239{letter-spacing:-6.315675px;}
.ls8_c01239{letter-spacing:-1.661400px;}
.ls3_c01239{letter-spacing:1.271400px;}
.ls5_c01239{letter-spacing:1.681650px;}
.ls2_c01239{letter-spacing:2.521718px;}
.ls7_c01239{letter-spacing:2.604098px;}
.ls0_c01239{letter-spacing:5.052525px;}
.ls4_c01239{letter-spacing:6.204150px;}
.ls1_c01239{letter-spacing:6.734175px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01239{word-spacing:0.000000px;}
._1_c01239{width:28.111296px;}
._0_c01239{width:34.458911px;}
.fc0_c01239{color:transparent;}
.fs2_c01239{font-size:75.750000px;}
.fs1_c01239{font-size:76.500000px;}
.fs4_c01239{font-size:77.250000px;}
.fs0_c01239{font-size:78.000000px;}
.fs3_c01239{font-size:80.250000px;}
.y0_c01239{bottom:0.000000px;}
.y1_c01239{bottom:833.821470px;}
.h3_c01239{height:74.344482px;}
.h2_c01239{height:75.080566px;}
.h5_c01239{height:75.816650px;}
.h1_c01239{height:76.552734px;}
.h4_c01239{height:78.760986px;}
.h0_c01239{height:892.500000px;}
.w0_c01239{width:1263.000000px;}
.x0_c01239{left:0.000000px;}
.x1_c01239{left:84.958350px;}
.x2_c01239{left:171.719565px;}
.x3_c01239{left:213.119385px;}
.x4_c01239{left:681.479685px;}
.x5_c01239{left:730.079355px;}
.x6_c01239{left:823.679715px;}
.x7_c01239{left:860.399235px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls6_c01239{letter-spacing:-5.613933pt;}
.ls8_c01239{letter-spacing:-1.476800pt;}
.ls3_c01239{letter-spacing:1.130133pt;}
.ls5_c01239{letter-spacing:1.494800pt;}
.ls2_c01239{letter-spacing:2.241527pt;}
.ls7_c01239{letter-spacing:2.314753pt;}
.ls0_c01239{letter-spacing:4.491133pt;}
.ls4_c01239{letter-spacing:5.514800pt;}
.ls1_c01239{letter-spacing:5.985933pt;}
.ws0_c01239{word-spacing:0.000000pt;}
._1_c01239{width:24.987819pt;}
._0_c01239{width:30.630143pt;}
.fs2_c01239{font-size:67.333333pt;}
.fs1_c01239{font-size:68.000000pt;}
.fs4_c01239{font-size:68.666667pt;}
.fs0_c01239{font-size:69.333333pt;}
.fs3_c01239{font-size:71.333333pt;}
.y0_c01239{bottom:0.000000pt;}
.y1_c01239{bottom:741.174640pt;}
.h3_c01239{height:66.083984pt;}
.h2_c01239{height:66.738281pt;}
.h5_c01239{height:67.392578pt;}
.h1_c01239{height:68.046875pt;}
.h4_c01239{height:70.009766pt;}
.h0_c01239{height:793.333333pt;}
.w0_c01239{width:1122.666667pt;}
.x0_c01239{left:0.000000pt;}
.x1_c01239{left:75.518533pt;}
.x2_c01239{left:152.639613pt;}
.x3_c01239{left:189.439453pt;}
.x4_c01239{left:605.759720pt;}
.x5_c01239{left:648.959427pt;}
.x6_c01239{left:732.159747pt;}
.x7_c01239{left:764.799320pt;}
}




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